In this 2-part workshop, we’re going to work through the steps of RNA-seq data analysis. We’ll start with visualizing our raw data and doing some exploratory analysis, then move on to some basic quality control steps to produce cleaned expression counts, finally ending with enrichment analyses.
Start of Part 1
These are the base level packages we will be needing to view and manipulate our data. Along with a dew formatting packages. I’ll load the rest of the packages at the time of using the relevant functions required.
library(tidyverse)
library(here)
library(rmarkdown)
library(knitr)
#formatting packages
library(kableExtra)
library(janitor)
library(scales)
library(ggpubr)The raw sequence data that you get directly output from the sequencing machine is in the format of a FASTQ file. These are unmapped sequencing reads containing the information for each read generated, and is present in the following formatting:
https://compgenomr.github.io/book/fasta-and-fastq-formats.html
These sequence-read files now need to be mapped to the genome. The process of mapping or alignment results in mapped SAM or BAM files.
SAM: human-readable
BAM: binary format of a SAM file (computer-readable)
In order to generate your expression counts file, we need a BAM file. Usually, when you sned samples for sequencing, the centre will send you back the raw FASTQ files as well as aligned BAM files.
The steps of FASTQ alignment / BAM generation generally include:
There are several software available for performing the above steps in a Linux environment, each having it’s own features which might be better suited for different data types:
There are many tutorials available online that work through the steps of alignment: https://bioinformatics-core-shared-training.github.io/cruk-summer-school-2019/Introduction/SS_DB/Materials/Practicals/Practical2_alignment_JK.html
The FASTQ_to_BAM HTML file I made briefly describes the general steps for genome alignment.
Note: You will need access to a high performance computing HPC cluster for this step - it works exclusively in Linux and MACOS, as well several GBs of storage space for the index and BAM files.
Okay, once you have your BAM files, extracting the counts for your reads (i.e. how many times was a particular transcript sequenced) is pretty easy and straightforward, and you can do it in R itself!
library(Rsubread)## Warning: package 'Rsubread' was built under R version 4.0.4
#check the available arguments and options available for the featureCounts functions by running ?featureCounts in your console)
counts <- featureCounts(here::here("data", "HG00097.mapped.ILLUMINA.bwa.GBR.exome.20130415.bam"), annot.inbuilt = "hg19", isPairedEnd = TRUE)## NCBI RefSeq annotation for hg19 (build 37.2) is used.
##
## ========== _____ _ _ ____ _____ ______ _____
## ===== / ____| | | | _ \| __ \| ____| /\ | __ \
## ===== | (___ | | | | |_) | |__) | |__ / \ | | | |
## ==== \___ \| | | | _ <| _ /| __| / /\ \ | | | |
## ==== ____) | |__| | |_) | | \ \| |____ / ____ \| |__| |
## ========== |_____/ \____/|____/|_| \_\______/_/ \_\_____/
## Rsubread 2.4.3
##
## //========================== featureCounts setting ===========================\\
## || ||
## || Input files : 1 BAM file ||
## || ||
## || HG00097.mapped.ILLUMINA.bwa.GBR.exome.201304 ... ||
## || ||
## || Paired-end : yes ||
## || Count read pairs : yes ||
## || Annotation : inbuilt (hg19) ||
## || Dir for temp files : . ||
## || Threads : 1 ||
## || Level : meta-feature level ||
## || Multimapping reads : counted ||
## || Multi-overlapping reads : not counted ||
## || Min overlapping bases : 1 ||
## || ||
## \\============================================================================//
##
## //================================= Running ==================================\\
## || ||
## || Load annotation file hg19_RefSeq_exon.txt ... ||
## || Features : 225074 ||
## || Meta-features : 25702 ||
## || Chromosomes/contigs : 52 ||
## || ||
## || Process BAM file HG00097.mapped.ILLUMINA.bwa.GBR.exome.20130415.bam... ||
## || WARNING: Single-end reads were found. ||
## || Total alignments : 2767182 ||
## || Successfully assigned alignments : 2363708 (85.4%) ||
## || Running time : 0.15 minutes ||
## || ||
## || Write the final count table. ||
## || Write the read assignment summary. ||
## || ||
## \\============================================================================//
expression_counts <- counts$countshere::here()## [1] "/Users/nikitatelkar/Github/TOG_RNAseq_Workshop_2021"
eDat <- read.delim(here::here("data", "GSE157103_formatted_eDat.txt"), sep = "\t")
pDat <- read.delim(here::here("data", "GSE157103_formatted_pDat.txt"), sep = "\t")#several methods to view dataframes
as_tibble(pDat)## # A tibble: 126 x 16
## ID Sample Age Sex COVID ICU APACHEII_Score Charlson_Score
## <chr> <chr> <int> <chr> <chr> <chr> <int> <int>
## 1 C1 COVID_01_39y_mal… 39 male yes no 15 0
## 2 C2 COVID_02_63y_mal… 63 male yes no 0 2
## 3 C3 COVID_03_33y_mal… 33 male yes no 0 2
## 4 C4 COVID_04_49y_mal… 49 male yes no 0 1
## 5 C5 COVID_05_49y_mal… 49 male yes no 19 1
## 6 C6 COVID_06_.y_male… 0 male yes no 0 1
## 7 C7 COVID_07_38y_fem… 38 fema… yes no 0 7
## 8 C8 COVID_08_78y_mal… 78 male yes yes 43 7
## 9 C9 COVID_09_64y_fem… 64 fema… yes yes 31 2
## 10 C10 COVID_10_62y_mal… 62 male yes yes 34 1
## # … with 116 more rows, and 8 more variables: Mechanical_Ventilation <chr>,
## # Ventilator_free_days <int>, Hospital_free_days_post_45_days <int>,
## # Ferritin_ng.ml <int>, CRP_mg.l <dbl>, Procalcitonin_ng.ml <dbl>,
## # Lactate_mmol.l <dbl>, Fibrinogen_mg.dL <int>
# pDat %>%
# kable() %>%
# kable_styling(bootstrap_options = c("striped", "hover", "condensed"), full_width = F, fixed_thead = T)
#
# str(pDat)
#
# as.tibble((eDat[1:10, 1:10]))
#converting our column with all the gene names to assigned row names -- we require certain identifiers (such as gene/sample names) as column and row names and not as a separate column or row for a few analyses downstream
eDat <- eDat %>%
column_to_rownames(var = "gene")
#Do the column names of our expression dataframe (our samples names) match the order of the rows in the ID column of the phenotype dataframe
all(colnames(eDat) == pDat$ID)## [1] TRUE
Pause for questions
#column names of pDat
names(pDat)## [1] "ID" "Sample"
## [3] "Age" "Sex"
## [5] "COVID" "ICU"
## [7] "APACHEII_Score" "Charlson_Score"
## [9] "Mechanical_Ventilation" "Ventilator_free_days"
## [11] "Hospital_free_days_post_45_days" "Ferritin_ng.ml"
## [13] "CRP_mg.l" "Procalcitonin_ng.ml"
## [15] "Lactate_mmol.l" "Fibrinogen_mg.dL"
#what's the separation of patients by sex?
pDat %>%
dplyr::count(COVID, Sex)## COVID Sex n
## 1 no female 13
## 2 no male 12
## 3 no unknown 1
## 4 yes female 38
## 5 yes male 62
#what's the ICU status by COVID status?
pDat %>%
dplyr::count(COVID, ICU)## COVID ICU n
## 1 no no 10
## 2 no yes 16
## 3 yes no 50
## 4 yes yes 50
#Now, we can't do that for age, as it a continuous variable.
# ASSIGNMENT 1: Make a new variable called Age_bracket from age as a categorical variable and check spread of age of patients [5 min]
#making a new categorical variable from a continuous
pDat <- pDat %>%
mutate(Age_bracket = case_when(
Age < 20 ~ "below_20",
between(Age, 21, 40) ~ "21-40",
between(Age, 41, 60) ~ "41-60",
Age > 60 ~ "above_60"
))
pDat$Age_bracket <- as.factor(pDat$Age_bracket)
#This only works because age is present as integers, and does not contain decimals. If so, we would have had to adjust the upper limit of each condition (e.g., between(Age, 21.01, 40))
pDat %>%
count(COVID, Age_bracket)## COVID Age_bracket n
## 1 no 21-40 3
## 2 no 41-60 6
## 3 no above_60 17
## 4 yes 21-40 14
## 5 yes 41-60 29
## 6 yes above_60 56
## 7 yes below_20 1
pDat %>%
ggplot(aes(x = Age_bracket, fill = Age_bracket)) +
geom_bar(stat = "count") +
facet_grid(~COVID)pDat$Age_bracket <- fct_relevel(pDat$Age_bracket, c("below_20", "21-40", "41-60", "above_60"))
#Let's now plot this distribution of our COVID patients by their age bracket
pDat %>%
ggplot(aes(x = Age_bracket, fill = Age_bracket)) +
geom_bar(stat = "count") +
theme_minimal() +
facet_grid(~COVID) +
labs(title = "Distribution of COVID Patients by Age Bracket")### PAUSE FOR QUESTIONS
#Now, let's check how protein levels vary by COVID status
#Making a new variable that only includes protein measurements
#'
names(pDat)## [1] "ID" "Sample"
## [3] "Age" "Sex"
## [5] "COVID" "ICU"
## [7] "APACHEII_Score" "Charlson_Score"
## [9] "Mechanical_Ventilation" "Ventilator_free_days"
## [11] "Hospital_free_days_post_45_days" "Ferritin_ng.ml"
## [13] "CRP_mg.l" "Procalcitonin_ng.ml"
## [15] "Lactate_mmol.l" "Fibrinogen_mg.dL"
## [17] "Age_bracket"
proteins <- pDat %>%
dplyr::select(COVID, Ferritin_ng.ml, CRP_mg.l, Procalcitonin_ng.ml, Lactate_mmol.l, Fibrinogen_mg.dL)
#We're now going to collape this `wide` dataframe into a `longer` one
proteins <- proteins %>%
pivot_longer(cols = 2:6, names_to = "protein", values_to = "measurement")
#plotting the spread of each of the proteins by COVID status:
proteins %>%
ggplot(aes(x = COVID, y = measurement, fill = COVID)) +
geom_boxplot() +
#geom_jitter(shape = 16, colour = "grey", alpha = 0.5, width = 0.2) +
scale_fill_manual(values = c("orange", "grey")) +
facet_wrap(~protein, scales = "free") + #scales = free allows the y-axis of each plot to have variable limits
theme_minimal()#how about mechanical ventilation? what percentage of COVID patients needed mechanical ventilation?
# pDat %>%
# filter(COVID == "yes") %>% #1
# # count(Mechanical_Ventilation) %>% #1
# ## mutate(perc = n*100/nrow(pDat)) %>% #2
# # mutate(perc = round(perc, digits = 0)) %>%
# ggplot(aes(x = Mechanical_Ventilation, fill = Mechanical_Ventilation)) +
# # ggplot(aes(x = Mechanical_Ventilation, y = perc, fill = Mechanical_Ventilation)) +
# geom_bar(stat = "count", width = 0.6) +
# # geom_bar(stat = "identity", width = 0.6) +
# ## geom_text(aes(label = perc), vjust = -0.8, colour = "#333333") + #2
# ## scale_fill_manual(values = c("orange", "grey")) +
# theme_minimal() +
# labs(y = "Percentage of patients", title = "COVID Patients")Let’s now look at the distribution of our data
dim(eDat)## [1] 19472 126
#19372 126
library(reshape2) #similar functioning to pivot_longer##
## Attaching package: 'reshape2'
## The following object is masked from 'package:tidyr':
##
## smiths
e_melt <- melt(eDat)## No id variables; using all as measure variables
head(e_melt)## variable value
## 1 C1 29.01
## 2 C1 0.00
## 3 C1 17.00
## 4 C1 3.00
## 5 C1 1.00
## 6 C1 0.00
colnames(e_melt)[1:2] <- c("sample", "expression")
e_melt %>%
ggplot(aes(x = log2(expression), color = sample, fill = sample)) +
geom_density(alpha = 0.1) +
theme_minimal() +
theme(legend.position = "none") + #has to come after specifying theme
labs(x = "log2RPM", y = "Density", title = "Sample Distribution - Density Plot", subtitle = "Raw Counts\n")## Warning: Removed 544485 rows containing non-finite values (stat_density).
# we get this error - Removed 544485 rows containing non-finite values (stat_density). That's because we have some genes which have an expression value of 0, which when transformed to log2 give infinity as the output as log2(0) does not exist. Hence, we will apply a log2+1 transformation which adds a unit of 1 to all log2 counts, hence converting our log2(0) expression values to 0.
e_melt <- e_melt %>%
mutate(log_x_1 = log2(expression + 1))
#melt is a function that condenses all of your data into only two rows - one with the character value and one with it's correspoinding numerical value
#We'll store this plot in a variable
g1 <- e_melt %>%
ggplot(aes(log_x_1, color = sample, fill = sample)) +
geom_density(alpha = 0.1) +
theme_minimal() +
theme(legend.position = "none") + #has to come after specifying theme
labs(x = "log2(x+1) RPM", y = "Density", title = "Sample Distribution - Density Plot", subtitle = "Raw Counts\n")
g1## PAUSE FOR QUESTIONS
#Okay, now we have an idea about how our expression data looks. Let's now take a look at our samples. How do they correlate with each other?
samp_cor <- cor(eDat)
head(samp_cor)## C1 C2 C3 C4 C5 C6 C7
## C1 1.0000000 0.9295821 0.9000072 0.8299616 0.8581691 0.6516038 0.8423849
## C2 0.9295821 1.0000000 0.8462075 0.9026128 0.8563186 0.7388906 0.9245096
## C3 0.9000072 0.8462075 1.0000000 0.6969214 0.9159993 0.6060607 0.7239140
## C4 0.8299616 0.9026128 0.6969214 1.0000000 0.7420161 0.8161387 0.9486343
## C5 0.8581691 0.8563186 0.9159993 0.7420161 1.0000000 0.6450077 0.7580317
## C6 0.6516038 0.7388906 0.6060607 0.8161387 0.6450077 1.0000000 0.8384309
## C8 C9 C10 C11 C12 C13 C14
## C1 0.7516367 0.8018467 0.7729010 0.7366898 0.8949360 0.8972446 0.8407746
## C2 0.8309304 0.8707177 0.8629207 0.8345275 0.9280598 0.9354729 0.8486954
## C3 0.7431665 0.8112182 0.8073005 0.6008063 0.9086798 0.8487180 0.9237195
## C4 0.7783941 0.7527165 0.6838143 0.9507305 0.8095620 0.9126116 0.7338422
## C5 0.7988432 0.8111901 0.7769206 0.6602077 0.9147148 0.8887266 0.9414013
## C6 0.8930267 0.6633954 0.6681974 0.8056988 0.6811896 0.6966560 0.6262560
## C15 C16 C17 C18 C19 C20 C21
## C1 0.7090464 0.8756402 0.8749574 0.7280420 0.8935272 0.8517515 0.8395808
## C2 0.7723882 0.9479459 0.9358690 0.7890834 0.9348584 0.8758607 0.8594683
## C3 0.7355893 0.7482305 0.8140668 0.6644872 0.8296294 0.8999810 0.9199200
## C4 0.7488418 0.9600920 0.9512778 0.7945447 0.9216559 0.7761565 0.7376438
## C5 0.7757685 0.7891324 0.8302130 0.7035275 0.8627266 0.8891499 0.9341900
## C6 0.8935755 0.7538671 0.8853147 0.9602561 0.6839004 0.6397340 0.6325398
## C22 C23 C24 C25 C26 C27 C28
## C1 0.7704386 0.8570148 0.8527791 0.8474244 0.8764858 0.8823296 0.8427319
## C2 0.8103178 0.9032538 0.8859113 0.9466754 0.8985162 0.9191405 0.8484939
## C3 0.8557381 0.8819224 0.9095758 0.7369133 0.8949332 0.9120486 0.9161167
## C4 0.6455396 0.8022812 0.7681124 0.8257854 0.8329179 0.7521969 0.7540341
## C5 0.9022792 0.9344781 0.9017288 0.7679671 0.8892775 0.9336870 0.9056160
## C6 0.5810247 0.7682075 0.6510449 0.6392331 0.6534245 0.6520876 0.6212602
## C29 C30 C31 C32 C33 C34 C35
## C1 0.8450746 0.3968502 0.8098055 0.6699002 0.9194911 0.3159948 0.8710797
## C2 0.8718704 0.4778248 0.8443925 0.7562388 0.9483796 0.3830771 0.9198240
## C3 0.9185097 0.3670676 0.8893497 0.6504278 0.9178583 0.2754208 0.9119688
## C4 0.7449586 0.5814014 0.6803947 0.7962750 0.8359037 0.5046960 0.7957665
## C5 0.8891225 0.4237043 0.9054974 0.6936725 0.8761817 0.3321685 0.9048927
## C6 0.6594921 0.9159801 0.6917912 0.9165142 0.7373973 0.8793825 0.7087669
## C36 C37 C38 C39 C40 C41 C42
## C1 0.8749966 0.9050098 0.8561299 0.5233813 0.8593808 0.5488581 0.8597322
## C2 0.9075991 0.9348804 0.8750429 0.5972767 0.8780538 0.6127478 0.9144156
## C3 0.9326954 0.9237941 0.9244815 0.5495857 0.9119742 0.6025792 0.9221605
## C4 0.7685056 0.8468703 0.7813277 0.5882445 0.7632806 0.5797418 0.7732913
## C5 0.9261606 0.9368229 0.9263096 0.5828459 0.9149350 0.6080395 0.9296664
## C6 0.7122660 0.6955942 0.6587163 0.9015548 0.6230546 0.8849434 0.7314179
## C43 C44 C45 C46 C47 C48 C49
## C1 0.7321313 0.8480273 0.8438892 0.8475796 0.8523087 0.4842839 0.7962670
## C2 0.7878217 0.8889125 0.8799901 0.9197145 0.8864508 0.5629530 0.8452711
## C3 0.8317681 0.8422329 0.9018247 0.8175050 0.9047375 0.5140041 0.8253991
## C4 0.6092168 0.8044554 0.7939457 0.8988318 0.7911916 0.5425596 0.7270767
## C5 0.8356815 0.8969816 0.9424315 0.8428658 0.9361944 0.5200536 0.7262991
## C6 0.6650386 0.7653898 0.7201531 0.8671166 0.6767235 0.8837767 0.7504924
## C50 C51 C52 C53 C55 C56 C57
## C1 0.3226036 0.9216378 0.8863202 0.8762485 0.8348768 0.9131286 0.8160112
## C2 0.4124753 0.9691517 0.8549797 0.8944535 0.8577715 0.9147875 0.8978773
## C3 0.3382007 0.8527783 0.9777493 0.8834569 0.9155344 0.9363802 0.7007091
## C4 0.3983632 0.9089361 0.6999284 0.8630198 0.7110114 0.8232728 0.9579452
## C5 0.3938600 0.8354073 0.9252710 0.9332416 0.9269390 0.9433972 0.7172023
## C6 0.7854103 0.7594093 0.6329284 0.8084508 0.6537525 0.7695105 0.8451437
## C58 C59 C60 C61 C62 C63 C64
## C1 0.4859916 0.6149865 0.5436028 0.8997447 0.5348666 0.9246329 0.7048357
## C2 0.5657960 0.6874890 0.6507500 0.9354423 0.5899296 0.9245708 0.7496592
## C3 0.4877951 0.5486744 0.4500087 0.8535997 0.5282939 0.9428021 0.7372244
## C4 0.5752367 0.8197371 0.7943193 0.9286706 0.6336197 0.8304042 0.7365244
## C5 0.4500163 0.6044296 0.4950106 0.8966452 0.5502961 0.9472345 0.7515919
## C6 0.8853945 0.9742282 0.9514139 0.8193399 0.9398943 0.7536754 0.9251558
## C65 C66 C67 C68 C69 C70 C71
## C1 0.9507799 0.9129010 0.6422984 0.5683670 0.8611972 0.9690817 0.8315460
## C2 0.9371304 0.8801959 0.7105912 0.6709718 0.9102751 0.9256680 0.8759370
## C3 0.9462516 0.9214461 0.6778940 0.6580115 0.7802599 0.9136046 0.9064794
## C4 0.8140376 0.7674107 0.5925231 0.4285780 0.9292057 0.8533364 0.7290483
## C5 0.9301536 0.8114614 0.6273175 0.5899216 0.8053611 0.9083588 0.9057823
## C6 0.6589411 0.6465700 0.5289063 0.4803699 0.8524267 0.6704277 0.6859469
## C72 C73 C74 C75 C76 C77 C78
## C1 0.8524587 0.9581799 0.4056951 0.9059924 0.6263552 0.8103391 0.9036696
## C2 0.8763791 0.9156644 0.4829729 0.8742534 0.6794399 0.8303069 0.9465178
## C3 0.7820892 0.8122160 0.3752612 0.9558069 0.6847302 0.8750397 0.8542295
## C4 0.8964152 0.8896752 0.5281186 0.7468662 0.5055653 0.7739229 0.8405206
## C5 0.7429304 0.8174561 0.4261142 0.9525357 0.7385509 0.8704495 0.9112292
## C6 0.8533851 0.6564051 0.8979955 0.6090639 0.4639333 0.8686109 0.6955561
## C79 C80 C82 C83 C84 C85 C86
## C1 0.6932468 0.8591426 0.3907723 0.9294635 0.8774557 0.3815844 0.8432936
## C2 0.7716434 0.8415444 0.4585912 0.9252295 0.9073219 0.4446694 0.8927604
## C3 0.6544169 0.9532480 0.3553194 0.9324380 0.9117992 0.3651613 0.8177398
## C4 0.8492895 0.6624095 0.5634823 0.8106958 0.7494774 0.5272843 0.8746290
## C5 0.7041073 0.8838395 0.4077775 0.8974367 0.8862958 0.3961000 0.8222178
## C6 0.9569983 0.6560630 0.9102392 0.7537357 0.6618833 0.8972843 0.9043689
## C87 C89 C90 C91 C92 C93 C94
## C1 0.6143840 0.3308455 0.5949180 0.4745637 0.5495821 0.8142638 0.7690723
## C2 0.6958189 0.3911059 0.6930907 0.5626666 0.6224212 0.8679284 0.8233079
## C3 0.5127885 0.2962952 0.5719803 0.4146335 0.5471811 0.8309355 0.7118224
## C4 0.7736265 0.4977355 0.7349898 0.6936885 0.6310625 0.7707742 0.8754480
## C5 0.5687791 0.3545215 0.6042598 0.4517619 0.5708697 0.7896121 0.6496420
## C6 0.9654852 0.8733349 0.9691725 0.9534312 0.9353983 0.7651662 0.7743399
## C95 C96 C97 C98 C99 C100 C101
## C1 0.9116851 0.6900197 0.8042136 0.7251468 0.7576143 0.8492459 0.6558531
## C2 0.9444594 0.7415683 0.8155122 0.8264336 0.7968242 0.8893249 0.7612256
## C3 0.9216825 0.6541513 0.9397904 0.7357041 0.8563799 0.8802122 0.5679500
## C4 0.8282378 0.7519338 0.6414354 0.7136631 0.6576404 0.7626051 0.8341110
## C5 0.9179411 0.5782475 0.8688527 0.6784474 0.7868887 0.8484813 0.5895270
## C6 0.7492434 0.7498044 0.6458276 0.8106637 0.7055887 0.7698066 0.9572142
## C102 C103 NC1 NC2 NC3 NC4 NC5
## C1 0.7908499 0.8048009 0.4752291 0.7542485 0.6798134 0.6650173 0.7116582
## C2 0.7871500 0.8059153 0.5556837 0.8230267 0.7269413 0.7263417 0.7505285
## C3 0.8770624 0.9111330 0.4179103 0.7693810 0.7281838 0.6631763 0.8065608
## C4 0.6120446 0.6393717 0.6470125 0.7871771 0.6817574 0.7485520 0.5785315
## C5 0.8789384 0.8735659 0.4208727 0.7654018 0.6983075 0.7010571 0.7562029
## C6 0.5656470 0.6867573 0.9101896 0.9079503 0.8920740 0.9556542 0.6297257
## NC6 NC7 NC8 NC9 NC10 NC11 NC12
## C1 0.4108745 0.6840026 0.7492822 0.4699374 0.6549891 0.8574411 0.7930985
## C2 0.4762225 0.7689116 0.8036619 0.5488196 0.7254345 0.8943841 0.8199066
## C3 0.3359313 0.6513590 0.7954385 0.3937566 0.6348828 0.8040749 0.8723709
## C4 0.5795846 0.8242277 0.7426797 0.6928604 0.7362985 0.8974237 0.6484817
## C5 0.3541668 0.6752958 0.7555839 0.4427945 0.6703768 0.8068443 0.8980435
## C6 0.8967707 0.9680224 0.8619048 0.9474772 0.9455470 0.9074459 0.6290204
## NC13 NC14 NC15 NC16 NC17 NC18 NC19
## C1 0.7950716 0.6459181 0.6544612 0.8400169 0.8798853 0.6905167 0.6364048
## C2 0.8471226 0.7023980 0.7271060 0.8986861 0.9157649 0.7482790 0.7003172
## C3 0.8444095 0.6909175 0.5761745 0.8709780 0.8576428 0.7312835 0.7133267
## C4 0.7343360 0.6823565 0.8304297 0.7736459 0.8698463 0.6759067 0.5664957
## C5 0.8241372 0.7205072 0.5884182 0.8358976 0.8515567 0.7208314 0.6984494
## C6 0.7780170 0.9056783 0.9572680 0.7536392 0.8669706 0.8575791 0.7274736
## NC20 NC21 NC22 NC23 NC24 NC25 NC26
## C1 0.7512550 0.7751591 0.4078363 0.8267694 0.8384040 0.6138616 0.5443985
## C2 0.7963016 0.8464503 0.4838621 0.8426566 0.9105946 0.6715288 0.6035926
## C3 0.8148221 0.7429230 0.3914176 0.8756369 0.7499578 0.5869958 0.6425106
## C4 0.7480067 0.8403001 0.5472338 0.7249630 0.9590401 0.6680899 0.4183984
## C5 0.8189295 0.7104398 0.3983012 0.7878238 0.7490728 0.5079667 0.6342207
## C6 0.8706245 0.8697293 0.8829550 0.6922696 0.8209202 0.7121000 0.5549736
dim(samp_cor)## [1] 126 126
#to visualize our correlations, we'll make a heatmap of the sample correlation values
library(pheatmap)
#dfs have to have col names and row names, where the colnames of eDat match rownames of pDat
pDat <- pDat %>%
column_to_rownames(var = "ID")
h1 <- samp_cor %>%
pheatmap(clustering_distance_cols = "euclidean", clustering_method = "complete", cluster_rows = TRUE,
show_colnames = FALSE, show_rownames = FALSE,
annotation_row = pDat[c("COVID", "Sex")], annotation_col = pDat[c("COVID", "Sex")],
main = "Sample Correlations"
)#let's add some custom colours
annot_cols <- list(COVID = c(`yes` = "grey", `no` = "orange"),
Sex = c(`male` = "sea green", `female` = "purple", `unknown` = "yellow"))
h1 <- samp_cor %>%
pheatmap(clustering_distance_cols = "euclidean", clustering_method = "complete", cluster_rows = TRUE,
show_colnames = FALSE, show_rownames = FALSE,
annotation_row = pDat[c("COVID", "Sex")], annotation_col = pDat[c("COVID", "Sex")],
annotation_colors = annot_cols,
main = "Sample Correlations"
)#What do we make of this heatmap?We’ll explore a few different criteria of filtering now and decide on one, and finally and normalizise our data.
dim(eDat)## [1] 19472 126
#removing sequences with RPM of 0 in all samples / keeping only sequences with RPM > 0 in at least 1 sample
e_fil1 <- eDat %>%
rownames_to_column(var = "gene") %>%
filter_at(vars(-gene), any_vars(. != 0)) %>%
column_to_rownames(var = "gene")
dim(e_fil1)## [1] 18340 126
19472 - 18340 ## [1] 1132
# 1132 sequences/genes removed
melt_fil1 <- melt(e_fil1) ## No id variables; using all as measure variables
melt_fil1 <- melt_fil1 %>%
mutate(log_x_1 = log2(value + 1))
g_fil1 <- melt_fil1 %>%
ggplot(aes(log_x_1, color = variable, fill = variable)) +
geom_density(alpha = 0.1) +
theme_minimal() +
theme(legend.position = "none") + #has to come after specifying theme
labs(x = "log2(x+1) RPM", y = "Density", title = "Sample Distribution - Density Plot", subtitle = "Removing Sequences with RPM of 0 in all samples", caption = "Raw counts")
g_fil1#keeping only sequences with RPM >= 1 in all samples
e_fil2 <- eDat %>%
rownames_to_column(var = "gene") %>%
filter_at(vars(-gene), all_vars(. >= 1)) %>%
column_to_rownames(var = "gene")
dim(e_fil2)## [1] 11860 126
19472 - 11860## [1] 7612
#7612 sequences removed
melt_fil2 <- melt(e_fil2) ## No id variables; using all as measure variables
g_fil2 <- melt_fil2 %>%
ggplot(aes(log2(value), color = variable, fill = variable)) +
geom_density(alpha = 0.1) +
theme_minimal() +
theme(legend.position = "none") + #has to come after specifying theme
labs(x = "log2(x+1) RPM", y = "Density", title = "Sample Distribution - Density Plot", subtitle = "Sequences with RPM >= 1 in in all samples", caption = "Raw counts")
g_fil2#keeping only sequences with RPM >= 2 in all samples
e_fil3 <- eDat %>%
rownames_to_column(var = "gene") %>%
filter_at(vars(-gene), all_vars(. >= 2)) %>%
column_to_rownames(var = "gene")
dim(e_fil3)## [1] 11384 126
19472 - 11384## [1] 8088
#8088 sequences removed
#how many sequences are removed between e_fil2 (RPM >=1 ) and e_fil3 (RPM >= 2)
11860 - 11384## [1] 476
#476 sequences
melt_fil3 <- melt(e_fil3) ## No id variables; using all as measure variables
#now here because we already eliminated sequences with an RPM of >=1, that means we don't have any sequences having an RPM of 0. Hence, we don't need to transform it to x+1
g_fil3 <- melt_fil3 %>%
ggplot(aes(log2(value), color = variable, fill = variable)) +
geom_density(alpha = 0.1) +
theme_minimal() +
theme(legend.position = "none") + #has to come after specifying theme
labs(x = "log2RPM", y = "Density", title = "Sample Distribution - Density Plot", subtitle = "Sequences with RPM >= 2 in in all samples", caption = "Raw counts")
g_fil3#keeping only sequences with RPM >= 1 in 30% of samples --> depends on groups in data
(30*126)/100## [1] 37.8
# e_fil4 <- eDat %>%
# filter(rowSums(across(where(is.numeric)) >= 1) > 38)
RPM_morethan1 <- eDat >= 1
#This gives you a matrix with boolean values. Now to get the sum of all the TRUEs in each sample
table(rowSums(RPM_morethan1))##
## 0 1 2 3 4 5 6 7 8 9 10 11 12
## 1172 369 223 150 122 123 101 85 90 82 71 68 55
## 13 14 15 16 17 18 19 20 21 22 23 24 25
## 47 48 46 45 49 58 30 49 45 49 47 32 44
## 26 27 28 29 30 31 32 33 34 35 36 37 38
## 32 39 35 35 38 30 41 34 36 40 25 33 24
## 39 40 41 42 43 44 45 46 47 48 49 50 51
## 27 23 27 20 25 37 30 36 19 34 30 32 16
## 52 53 54 55 56 57 58 59 60 61 62 63 64
## 22 22 30 33 26 25 28 26 38 21 21 18 19
## 65 66 67 68 69 70 71 72 73 74 75 76 77
## 23 17 34 27 30 27 31 29 25 23 22 20 22
## 78 79 80 81 82 83 84 85 86 87 88 89 90
## 15 30 27 31 29 24 26 30 22 37 25 26 31
## 91 92 93 94 95 96 97 98 99 100 101 102 103
## 27 32 32 25 31 35 25 35 35 35 22 43 41
## 104 105 106 107 108 109 110 111 112 113 114 115 116
## 31 34 37 42 43 47 52 50 42 58 55 62 72
## 117 118 119 120 121 122 123 124 125 126
## 82 75 71 95 97 134 175 263 467 11860
#this shows that there are 1172 sequences where all samples have a RPM of less than 1. And there are 11860 sequences which have a RPM pf >= 1 in all 126 samples --> the same number we got for e_fil2.
#'This matching of the results/numbers is called a sanity-check, which you should be doing often i.e., making sure that the results that you are getting are indeed correct and are cross-checked by someother method.
e_fil4 <- as.data.frame(rowSums(RPM_morethan1) >= 38)
#keeping only sequences which have a total of 38 TRUE (i.e. an RPM of >= 1) values or more
e_fil4 <- e_fil4 %>%
filter(.[1] == "TRUE")
e_fil4 <- eDat %>%
filter(rownames(eDat) %in% rownames(e_fil4))
dim(e_fil4)## [1] 15754 126
19472 - 15754## [1] 3718
#3718 sequences removed
melt_fil4 <- melt(e_fil4) ## No id variables; using all as measure variables
g_fil4 <- melt_fil4 %>%
ggplot(aes(log2(value), color = variable, fill = variable)) +
geom_density(alpha = 0.1) +
theme_minimal() +
theme(legend.position = "none") + #has to come after specifying theme
labs(x = "log2RPM", y = "Density", title = "Sample Distribution - Density Plot", subtitle = "Sequences with RPM >= 1 in 30% of samples", caption = "Raw counts")
g_fil4## Warning: Removed 108857 rows containing non-finite values (stat_density).
nrow(e_fil1)## [1] 18340
nrow(e_fil2)## [1] 11860
nrow(e_fil3)## [1] 11384
nrow(e_fil4)## [1] 15754
#let's now put the total number of sequences retained after each of the filtering steps into a separate dataframe
# seq_counts <- data.frame(nrow(eDat))
# seq_counts$fil_1 <- nrow(e_fil1)
# seq_counts$fil_2 <- nrow(e_fil2)
# seq_counts$fil_3 <- nrow(e_fil3)
# seq_counts$fil_4 <- nrow(e_fil4)
# colnames(seq_counts) <- c("All sequences", "Sequences with RPM > 0 in at least 1 sample", "Sequences with RPM >= 1 in all samples", "Sequences with RPM >= 2 in all samples", "Sequences with RPM >= 1 in 30% of samples")
# seq_counts <- as.data.frame(t(seq_counts))
# seq_counts <- seq_counts %>%
# rownames_to_column()
# colnames(seq_counts)[1:2] <- c("filtering_criteria", "sequences")
# seq_counts %>%
# ggplot(aes(x = filtering_criteria, y = sequences, fill = filtering_criteria)) +
# geom_bar(stat = "identity") +
# theme_minimal()
#
# seq_counts$filtering_criteria <- c("All sequences", "Sequences with\nRPM > 0 in atleast\n1 sample", "Sequences with\nRPM >= 1 in\nall samples", "Sequences with\nRPM >= 2 in\nall samples", "Sequences with\nRPM >= 1 in\n30% of samples")
#
# seq_counts %>%
# ggplot(aes(x = filtering_criteria, y = sequences, fill = filtering_criteria)) +
# geom_bar(stat = "identity", width = 0.6) +
# # scale_fill_viridis_d() +
# # geom_text(aes(label = sequences), vjust = -0.8, colour = "#333333", position = position_dodge(0.65)) +
# # scale_y_continuous(expand = expansion(mult = c(0, .09))) +
# theme_minimal() +
# # theme(legend.position = "none") +
# labs(x = "Filtering Criteria", y = "No. of Sequences", title = "No. of sequences by filtering criteria")
ggarrange(g_fil1, g_fil2, g_fil3, g_fil4)## Warning: Removed 108857 rows containing non-finite values (stat_density).
The filtering step you choose depends upon the question you’re asking of your data:
We’re now going to apply the Relative-Log Expression method to normalize our data - an essential step to make sure that we curb any outliers in our data as to not overestimate highly-expressed genes and have the expression distributed normally.
RLE accounts for between-sample variation, after which we’ll scale by RPM to account for within-sample variation
library(edgeR)## Loading required package: limma
genes <- as.data.frame(row.names(e_fil2))
norm <- DGEList(counts = e_fil2, samples = pDat, genes = genes, group = pDat$COVID)
eNorm <- calcNormFactors(norm, method = "RLE")
eNorm <- cpm(eNorm)
eNorm <- as.data.frame(eNorm)
melt_norm <- melt(eNorm) ## No id variables; using all as measure variables
melt_norm %>%
ggplot(aes(log2(value), color = variable, fill = variable)) +
geom_density(alpha = 0.1) +
theme_minimal() +
theme(legend.position = "none") + #has to come after specifying theme
labs(x = "log2 RPM", y = "Density", title = "Sample Distribution - Density Plot: RLE Normalized Counts", subtitle = "Sequences with RPM >= 1 in all samples")#however, now that we normalized our data, that means that some of the expression counts might have been changed to 0, as we can very well see. We'll perform the same x+1 trnasformation again
melt_norm <- melt_norm %>%
mutate(log_x_1 = log2(value + 1))
g2 <- melt_norm %>%
ggplot(aes(log_x_1, color = variable, fill = variable)) +
geom_density(alpha = 0.1) +
theme_minimal() +
theme(legend.position = "none") + #has to come after specifying theme
labs(x = "log2 (x+1) RPM", y = "Density", title = "Sample Distribution - Density Plot: RLE Normalized Counts", subtitle = "Sequences with RPM >= 1 in all samples")
g2#Raw versus normalized counts
ggarrange(g1, g2)Let’s now plot the raw and normalized expression counts of a random gene
#'I'm going to select the gene TRIM62, however, you can get a random gene by the following
#set.seed(20)
random_sample <- eDat %>%
sample_n(1)
row.names(random_sample)## [1] "AMZ1"
sample_from_eNorm <- eNorm %>%
rownames_to_column(var = "gene") %>%
filter(gene == "TRIM62") %>%
column_to_rownames(var = "gene")
row.names(random_sample)[1] <- "TRIM62_raw"
row.names(sample_from_eNorm)[1] <- "TRIM62_norm"
TRIM62 <- rbind(random_sample, sample_from_eNorm)
TRIM62 <- TRIM62 %>%
rownames_to_column(var = "TRIM62_value")
TRIM62 <- TRIM62 %>%
pivot_longer(cols = -c(TRIM62_value), names_to = "sample", values_to = "RPM")
TRIM62 %>%
ggplot(aes(x = sample, y = RPM, colour = TRIM62_value)) +
geom_point(size = 2) +
scale_colour_manual(values = c("forest green", "orange")) +
theme_classic() +
theme(legend.position = "bottom") +
labs(x = "Sample", y = "RPM", title = "Change in TRIM62 expression value before and after normalization", subtitle = "raw vs. RLE Normalized Counts")# HOMEWORK 1: Compare the raw vs normalized counts for the methods 1.TMM, 2.Quantile, and 3.only CPM - compare the expression count for the same random gene you got for all 4 methods. Do they differ? By how much?We’ll now save our normalized expression dataframe as a tab-delimited text file which we can load in for Part 2.
write_delim(eNorm, file = here::here("data", "eNorm.txt"), delim = "\t")End of Part 1
Start of Part 2
So, in Part 1 of the workshop, we worked through our raw data to make it fit for downstream analysis. This type of data, is called as processed/clean data - and is the most common data made available through GEO.
However, when submitting/releasing your data publicly, it is always good practice to make sure that you release both your raw and processed data, as researchers might want to apply their own analysis methods right from the start to the raw data. When only processed data is present, it is difficult to use it for comparison (e.g., with your own data or as part of a meta-analysis) as some of the upstream data cleanup steps have already been applied.
Loading our processed data from Part 1:
# eNorm <- read.delim(here::here("data", "eNorm.txt"), sep = "\t")We’ll now move on to principle component analysis - a dimensionality reduction method that accounts for sample variation while maximizing variance.
#transforming eNorm values to log2(x)+1
e_log2 <- log2(eNorm + 1)
#t_eNorm <- as.data.frame(t(eNorm))
t_log2 <- as.data.frame(t(e_log2))
pca <- prcomp(t_log2, scale=FALSE, center=TRUE)
summary(pca)## Importance of components:
## PC1 PC2 PC3 PC4 PC5 PC6
## Standard deviation 41.0557 31.8352 16.87121 16.31509 13.18914 11.19760
## Proportion of Variance 0.3402 0.2046 0.05745 0.05373 0.03511 0.02531
## Cumulative Proportion 0.3402 0.5448 0.60224 0.65597 0.69108 0.71639
## PC7 PC8 PC9 PC10 PC11 PC12 PC13
## Standard deviation 10.37244 9.53338 9.19518 8.30441 7.37335 6.83398 6.53914
## Proportion of Variance 0.02172 0.01834 0.01707 0.01392 0.01097 0.00943 0.00863
## Cumulative Proportion 0.73811 0.75645 0.77352 0.78744 0.79841 0.80784 0.81647
## PC14 PC15 PC16 PC17 PC18 PC19 PC20
## Standard deviation 6.32803 6.00289 5.81234 5.52242 5.38500 5.27893 4.9749
## Proportion of Variance 0.00808 0.00727 0.00682 0.00616 0.00585 0.00562 0.0050
## Cumulative Proportion 0.82455 0.83182 0.83864 0.84480 0.85065 0.85628 0.8613
## PC21 PC22 PC23 PC24 PC25 PC26 PC27
## Standard deviation 4.70361 4.46980 4.31067 4.19950 4.13166 3.90826 3.87466
## Proportion of Variance 0.00447 0.00403 0.00375 0.00356 0.00345 0.00308 0.00303
## Cumulative Proportion 0.86574 0.86977 0.87352 0.87708 0.88053 0.88361 0.88664
## PC28 PC29 PC30 PC31 PC32 PC33 PC34
## Standard deviation 3.80382 3.69138 3.63825 3.55485 3.53036 3.49935 3.38607
## Proportion of Variance 0.00292 0.00275 0.00267 0.00255 0.00252 0.00247 0.00231
## Cumulative Proportion 0.88956 0.89231 0.89498 0.89753 0.90005 0.90252 0.90484
## PC35 PC36 PC37 PC38 PC39 PC40 PC41
## Standard deviation 3.35091 3.29705 3.26900 3.13231 3.11780 3.10250 3.0668
## Proportion of Variance 0.00227 0.00219 0.00216 0.00198 0.00196 0.00194 0.0019
## Cumulative Proportion 0.90710 0.90930 0.91145 0.91343 0.91540 0.91734 0.9192
## PC42 PC43 PC44 PC45 PC46 PC47 PC48
## Standard deviation 3.04679 2.99990 2.9863 2.89121 2.88019 2.83986 2.80711
## Proportion of Variance 0.00187 0.00182 0.0018 0.00169 0.00167 0.00163 0.00159
## Cumulative Proportion 0.92111 0.92293 0.9247 0.92641 0.92809 0.92972 0.93131
## PC49 PC50 PC51 PC52 PC53 PC54 PC55
## Standard deviation 2.76396 2.73644 2.71850 2.66955 2.64527 2.62578 2.58984
## Proportion of Variance 0.00154 0.00151 0.00149 0.00144 0.00141 0.00139 0.00135
## Cumulative Proportion 0.93285 0.93436 0.93585 0.93729 0.93870 0.94009 0.94145
## PC56 PC57 PC58 PC59 PC60 PC61 PC62
## Standard deviation 2.56655 2.55546 2.5405 2.51424 2.48881 2.4404 2.43117
## Proportion of Variance 0.00133 0.00132 0.0013 0.00128 0.00125 0.0012 0.00119
## Cumulative Proportion 0.94278 0.94410 0.9454 0.94667 0.94792 0.9491 0.95032
## PC63 PC64 PC65 PC66 PC67 PC68 PC69
## Standard deviation 2.42115 2.40518 2.37050 2.35448 2.3376 2.32644 2.31949
## Proportion of Variance 0.00118 0.00117 0.00113 0.00112 0.0011 0.00109 0.00109
## Cumulative Proportion 0.95150 0.95267 0.95380 0.95492 0.9560 0.95712 0.95821
## PC70 PC71 PC72 PC73 PC74 PC75 PC76
## Standard deviation 2.29092 2.27788 2.26053 2.25332 2.21967 2.20886 2.19186
## Proportion of Variance 0.00106 0.00105 0.00103 0.00102 0.00099 0.00098 0.00097
## Cumulative Proportion 0.95926 0.96031 0.96134 0.96237 0.96336 0.96435 0.96532
## PC77 PC78 PC79 PC80 PC81 PC82 PC83
## Standard deviation 2.18305 2.16804 2.15911 2.14584 2.14381 2.11848 2.1134
## Proportion of Variance 0.00096 0.00095 0.00094 0.00093 0.00093 0.00091 0.0009
## Cumulative Proportion 0.96628 0.96723 0.96817 0.96910 0.97003 0.97093 0.9718
## PC84 PC85 PC86 PC87 PC88 PC89 PC90
## Standard deviation 2.1071 2.09216 2.04671 2.03922 2.03681 2.02731 1.9933
## Proportion of Variance 0.0009 0.00088 0.00085 0.00084 0.00084 0.00083 0.0008
## Cumulative Proportion 0.9727 0.97361 0.97446 0.97530 0.97614 0.97696 0.9778
## PC91 PC92 PC93 PC94 PC95 PC96 PC97
## Standard deviation 1.9866 1.96442 1.95434 1.94944 1.94280 1.93121 1.91434
## Proportion of Variance 0.0008 0.00078 0.00077 0.00077 0.00076 0.00075 0.00074
## Cumulative Proportion 0.9786 0.97934 0.98011 0.98088 0.98164 0.98239 0.98313
## PC98 PC99 PC100 PC101 PC102 PC103 PC104
## Standard deviation 1.90260 1.88979 1.87651 1.8622 1.85251 1.85020 1.83393
## Proportion of Variance 0.00073 0.00072 0.00071 0.0007 0.00069 0.00069 0.00068
## Cumulative Proportion 0.98387 0.98459 0.98530 0.9860 0.98669 0.98738 0.98806
## PC105 PC106 PC107 PC108 PC109 PC110 PC111
## Standard deviation 1.82217 1.81063 1.78988 1.78016 1.76770 1.75176 1.74683
## Proportion of Variance 0.00067 0.00066 0.00065 0.00064 0.00063 0.00062 0.00062
## Cumulative Proportion 0.98873 0.98939 0.99004 0.99068 0.99131 0.99193 0.99254
## PC112 PC113 PC114 PC115 PC116 PC117 PC118
## Standard deviation 1.73147 1.7183 1.70072 1.69249 1.68830 1.66037 1.65790
## Proportion of Variance 0.00061 0.0006 0.00058 0.00058 0.00058 0.00056 0.00055
## Cumulative Proportion 0.99315 0.9937 0.99433 0.99491 0.99548 0.99604 0.99659
## PC119 PC120 PC121 PC122 PC123 PC124 PC125
## Standard deviation 1.62470 1.61169 1.59106 1.58183 1.53138 1.48186 1.43721
## Proportion of Variance 0.00053 0.00052 0.00051 0.00051 0.00047 0.00044 0.00042
## Cumulative Proportion 0.99713 0.99765 0.99816 0.99867 0.99914 0.99958 1.00000
## PC126
## Standard deviation 2.98e-14
## Proportion of Variance 0.00e+00
## Cumulative Proportion 1.00e+00
screeplot(pca)#dataframe with all PCs, their variance, and cumulative variance of all PCs
summary <- data.frame(PC = 1:126, var_explained = (pca$sdev)^2/sum((pca$sdev)^2), cumulative = cumsum(pca$sdev^2 / sum(pca$sdev^2)))
summary <- summary %>%
mutate(cumulative_perc = cumulative*100)
#usually we only consider the first 30 PCs
summary <- summary[1:30,]
#different ways to represent the same data
summary %>%
ggplot(aes(x = sort(as.factor(PC)), y = var_explained)) +
geom_bar(stat = "identity", fill = "forest green") +
# geom_text(aes(label = round(var_explained, digits = 2), vjust = -0.8), size = 2) +
theme_minimal() +
labs(title = "Variance Explained by each PC") summary %>%
ggplot(aes(x = sort(as.factor(PC)), y = var_explained))+
geom_point(colour = "forest green") +
geom_line(group = "PC", colour = "forest green") +
theme_minimal() +
labs(title = "Variance Explained by each PC") summary %>%
ggplot(aes(x = sort(as.factor(PC)), y = cumulative_perc))+
geom_point(colour = "forest green") +
geom_line(group = "PC", colour = "forest green") +
theme_minimal() +
labs(title = "Cumulative Proportion of Variation") #separating the PCA values into its won separate df
scores <- as.data.frame(pca$x)
scores <- scores[c(1:30)]
scores## PC1 PC2 PC3 PC4 PC5 PC6
## C1 -2.8735767 31.51346481 4.5812415 -34.7477193 15.7020701 -29.36189612
## C2 1.0696805 21.24605011 -10.9684026 8.3399874 -3.2606392 -17.24159732
## C3 -21.2657323 -16.39817584 11.4051538 -49.4060150 -10.6989519 -6.12853684
## C4 8.3606598 48.59996866 9.7825275 12.5689878 2.6405616 -2.13556718
## C5 -52.2640899 7.88600612 7.7487672 -25.9256341 9.4531917 15.59904215
## C6 13.6132150 29.32088999 -6.7058832 15.1985577 -7.1761405 1.18869842
## C7 11.7289879 59.37509778 -10.9534113 8.3129775 -3.7402528 2.58654978
## C8 -52.3379890 -12.57765944 -14.4680073 21.4549951 13.2434814 -16.50524836
## C9 -16.9307744 7.30919448 -28.3724261 11.6695583 -11.3015209 -13.43763265
## C10 -1.4725142 -13.23546665 -31.0338833 7.3419292 -1.4168433 -14.64575801
## C11 10.4480665 79.37585543 -10.1869624 14.7970832 -0.4649323 14.04563068
## C12 -36.1631050 7.79798602 -12.0447026 10.7721519 -7.7872902 -13.09456338
## C13 -5.5574737 53.27710375 -9.0520758 -5.4691025 7.2162700 15.57718237
## C14 -60.6274284 -7.43015315 -11.1442455 -4.8349727 -17.0083432 6.60642475
## C15 -52.4013427 -6.91853428 0.6415187 16.7324268 -21.3462728 -11.29132560
## C16 -0.8993121 56.78113571 -9.1720883 10.8699865 5.7867350 -6.78059322
## C17 4.5133510 30.56635131 2.6421647 7.9530167 -5.8718471 -12.56054761
## C18 4.0905123 21.72741179 0.9632782 1.3600894 -0.2841255 -20.87374992
## C19 -29.1601061 46.41159593 5.7519586 7.3718262 6.2634230 -2.63997414
## C20 -50.1607957 -11.33181364 6.3289845 7.7785731 -20.2734495 -0.16880615
## C21 -68.6003780 -13.36653053 3.8016522 0.4894689 -12.3272008 15.41264290
## C22 -74.5939322 -28.01361829 -17.1113441 22.9647734 16.8574882 17.00879249
## C23 -55.4997189 -20.79343564 9.3475452 8.7705398 4.5517717 -8.72206166
## C24 -52.4194266 -17.43477487 10.1376621 13.4762505 -13.5706857 -7.48178313
## C25 8.6120647 31.48772861 -14.8365089 12.8736950 10.2025174 -11.50467283
## C26 -37.9719744 5.08810404 10.3035001 4.5696137 -20.5442332 -1.35342380
## C27 -29.3469275 5.80587771 -13.7887014 0.8981418 -6.9949871 -8.84134213
## C28 -61.1184895 -24.47819561 1.9331277 -2.2513583 -19.0207214 6.70152875
## C29 -25.4748905 -41.58386602 -1.5313758 10.2222654 -4.4991428 6.13191401
## C30 -24.4812864 22.56887901 -10.5680436 27.9378965 0.7765907 6.98617299
## C31 -35.3022105 -0.07157431 -28.6712449 -11.9292357 5.9648339 10.38097951
## C32 -24.1588519 -6.01852945 -24.0365898 31.7682200 -23.2779704 9.16281563
## C33 17.1293178 11.83029454 -19.4731000 -12.3273813 -10.0976952 -14.27157235
## C34 -17.0619791 32.07708615 9.9943276 10.9492387 -7.0311320 -3.44788352
## C35 -18.8447163 9.49918012 -19.5082223 3.7108350 -13.5557452 -1.47141316
## C36 -17.8487794 -2.69696012 -9.5950354 -7.0182018 -0.3734065 -4.02470020
## C37 -29.4363457 13.05094456 11.7426937 -1.0895752 -5.6802309 6.11672459
## C38 -34.1749682 -30.03903419 1.4908081 -6.0219134 -14.7658673 19.14149827
## C39 -9.6191362 -33.10095327 -26.1797206 16.6333867 9.4756159 10.76746539
## C40 -52.3011423 -2.04586567 -21.1635483 -4.1627775 -7.3730615 0.41903499
## C41 -22.3994596 -57.80666911 -2.6167751 10.1186616 -12.3687259 -6.91194120
## C42 -25.0474528 3.65788783 -14.6294161 2.8695577 0.5920472 5.06487482
## C43 -28.0303566 -59.17159111 -9.3088014 7.9213899 -8.7584479 -5.17464074
## C44 -43.3640306 17.87225976 2.5299872 5.5651378 5.6270908 -13.22824949
## C45 -56.8375523 -6.02655514 15.1445051 1.6650662 -16.7240780 9.66782624
## C46 14.3803194 1.80124292 27.7028571 12.3821204 7.6787897 6.62470699
## C47 -44.6271229 8.26355781 7.4593267 4.9256886 -14.4546417 1.64509261
## C48 19.7003400 -52.68499344 -22.6889741 9.2185336 -4.4099527 -14.68611139
## C49 87.2687898 -34.30443391 -9.2499983 -8.7368867 -10.6937796 -18.96875171
## C50 46.8125447 -53.55598737 -47.8248331 26.9444135 38.1082923 5.95333028
## C51 5.2537664 10.42611272 -5.8939263 2.6237714 5.9880561 -14.70619206
## C52 -24.5233302 -13.40606753 9.7300443 -50.0615591 7.4732469 -0.75110560
## C53 -39.2728445 51.95658567 -8.6297974 -8.3489211 2.8917763 16.80615719
## C55 -51.3335414 -17.55063225 -9.1841383 -6.7560185 5.2414180 20.51526220
## C56 -25.7765267 15.49748354 -4.8462414 -25.2347532 -12.6869463 -1.33787798
## C57 25.8468095 56.80006343 -6.7045038 9.4956631 -7.5407080 -1.91562334
## C58 111.0884636 -31.01455741 -7.6782851 -6.2734834 -15.8916557 -5.90138956
## C59 -7.0457777 55.72744904 25.9062514 6.5771592 -5.9407454 7.56299965
## C60 46.5178001 40.48601492 -6.2004759 16.0852946 2.1948612 9.28946432
## C61 -8.5956190 53.01076963 -13.4143970 -2.2048182 5.2141056 10.13980640
## C62 9.7727325 11.17128430 -18.3813661 -14.7778975 1.6409312 6.50611131
## C63 -27.7873287 29.32010333 -12.6856012 -18.1741287 2.5313199 11.77563111
## C64 -40.0517420 -27.86025404 17.2608339 3.0561531 -17.2236647 -20.45615955
## C65 -19.1355331 16.44381549 3.0276679 -22.9370742 -2.3316325 -6.11385236
## C66 59.6998380 5.14502371 -7.8208738 -34.3327255 -1.3982182 -4.49887968
## C67 49.3272427 -15.55286689 -41.9265511 3.7311530 -20.1590974 6.62659414
## C68 77.7426170 -52.61769400 -29.7872160 0.9063118 -3.7391947 -16.75821598
## C69 -1.1324455 55.25106117 -9.3827289 -0.5527837 -0.7584754 -2.79741431
## C70 -8.7129675 41.69050428 -3.9063249 -30.9499859 11.3079533 -2.86250624
## C71 -35.0138149 -15.33157632 -30.3845845 9.8399623 2.7887623 12.98789922
## C72 66.8863314 26.35299696 -8.7771757 -15.6136528 0.3111505 3.39011120
## C73 1.8752014 65.43240817 7.1276545 -23.5276238 16.2140348 -8.65344589
## C74 -5.1733485 9.51975449 -13.2506897 10.0773806 4.2340035 -19.69136637
## C75 -44.4408407 25.54953659 2.2626007 -31.9606112 8.2289510 1.77492236
## C76 -49.8679218 -22.01344237 -7.5062823 20.5260328 61.9987639 11.69491895
## C77 -33.3299068 -25.47047011 -2.9497969 -20.7094887 -6.3146127 1.38930639
## C78 -34.1618707 13.87618334 18.0162027 -0.3897963 19.2634842 -13.15589224
## C79 -13.1070373 30.55042974 23.0561654 19.2085249 0.6963787 15.12919976
## C80 -0.3314539 -35.15598844 -13.1056671 -49.2141202 -5.2649619 -3.10323045
## C82 -0.6560235 23.33500652 24.0671399 4.4399876 5.3881182 -6.52163355
## C83 20.8176437 14.82844409 -10.5480726 -29.9131295 3.3765776 -8.34279818
## C84 11.6060862 -8.65570759 -0.7882246 -6.0158777 14.7161748 0.09968178
## C85 36.2957766 -27.90687331 22.6689426 1.0934545 3.0570935 7.16461385
## C86 21.8773527 25.53516275 -13.2580481 -10.2764554 0.9272902 4.19171337
## C87 18.5635186 38.28597799 3.0009203 8.9024536 6.7440733 -0.89091832
## C89 -38.6692917 10.62630243 24.8616685 10.5195785 -10.8776895 -14.15936523
## C90 12.8233996 13.54111793 -13.3225475 17.2194328 -10.3828293 4.56232011
## C91 43.7760082 22.99475334 16.9721205 15.3807018 -7.1425456 17.95299189
## C92 -6.9458754 -16.52096835 -5.0010651 2.6746154 0.8497831 -26.46241717
## C93 38.6619230 -3.23507801 -24.5582001 1.4301578 4.1332049 1.26860340
## C94 80.4224122 23.98642466 -1.8563199 -5.2312776 -16.7540502 18.05119411
## C95 -15.0636019 9.76086220 0.8552985 -0.1462889 -10.5263065 -11.33498331
## C96 90.7042544 -13.92864114 19.9640041 6.8561658 -12.4822958 19.11321851
## C97 -8.4847833 -50.27737577 -8.3280647 -18.7071660 -29.8740173 22.14499237
## C98 47.2271193 -28.22943642 -21.0834482 17.5806396 -9.3724145 -11.56320760
## C99 26.9943629 -65.30998987 6.1716809 -2.0888208 -16.9017573 15.38103163
## C100 27.7336340 -1.88165935 -13.4953143 -18.7294080 9.3621225 6.17454786
## C101 40.3594588 29.63482337 -1.7207095 17.7161034 8.8676483 6.80938345
## C102 -51.2491095 -7.19248145 -9.0335216 -25.8195195 21.0575411 18.89756462
## C103 -14.7613943 -43.84674983 -3.2981601 -50.9094934 -0.5688369 3.51509570
## NC1 82.4301741 -2.01355048 18.9891231 8.1692454 -5.0934603 6.25315674
## NC2 -2.5098413 -21.38371441 20.2795273 14.9317837 2.2368513 -3.00945953
## NC3 2.1549307 -65.69754723 23.2531689 2.6404151 5.9450430 -2.53249023
## NC4 -22.8176020 -5.86913588 29.9472927 7.3046930 -3.4676418 -5.70222057
## NC5 46.9476164 -26.36597426 8.6464101 -16.9869565 8.1960421 10.61244847
## NC6 88.8088112 15.94013901 -7.9596661 -3.5094332 20.7871354 -12.36171434
## NC7 11.3706782 7.10169283 29.6329707 13.8540718 4.1441746 5.83823865
## NC8 10.9486842 -33.66795186 27.3710496 10.5297544 -7.6932224 -9.83980059
## NC9 33.9643474 50.18884137 11.4296976 0.8149819 -1.5695264 14.33781395
## NC10 -0.7904461 -5.65648976 12.2571105 9.7027440 22.4791512 -10.10895779
## NC11 25.3486883 7.60994101 19.9464703 -6.6914693 10.5634843 -5.04027894
## NC12 -34.6271137 -28.27406283 20.2976639 -14.6047362 34.3725134 13.14808760
## NC13 5.3696428 -26.60602324 29.7064759 3.4459358 16.7132524 -5.79310368
## NC14 -56.9978582 -47.11763859 38.4694851 11.2157633 2.3022334 -0.18819335
## NC15 51.3165678 24.38653157 18.5575635 6.5877850 -1.6455551 3.94094290
## NC16 15.3648836 -28.27104306 12.0391116 17.5229315 10.7268769 -0.38155865
## NC17 -5.4756530 11.35378446 23.3140824 -5.6446636 2.6518040 -11.90482536
## NC18 12.3742160 -36.05556837 18.4042270 4.0348055 16.1459330 -15.01010364
## NC19 1.7250023 -50.64926247 19.3517666 9.7805743 25.1438222 -10.17403103
## NC20 -24.4214796 -24.66530636 20.7036132 4.6371129 -10.5563958 9.91503717
## NC21 59.3339323 -4.55272897 17.2049446 7.4733681 -0.9452500 7.95992903
## NC22 91.8502060 -21.49315067 14.9088587 8.1301487 -3.7642275 6.04080453
## NC23 72.7397155 -26.32864244 21.4582197 -21.1358811 0.3849585 -3.51579161
## NC24 36.7404732 20.62617179 26.3682232 11.7643701 -8.0244770 2.36291263
## NC25 124.4847085 -19.48147737 13.2699167 -5.8492335 -7.5991739 14.94407563
## NC26 30.0644121 -79.94156299 -18.6374477 10.3218023 32.0110299 15.43763533
## PC7 PC8 PC9 PC10 PC11
## C1 8.50841944 -10.14696686 -1.73934853 8.52826968 -2.43187737
## C2 -3.52301484 -3.66036552 -0.82539419 -1.79792520 -5.23040718
## C3 -1.06460175 -5.07137542 18.43345705 14.03194690 -3.29701201
## C4 -3.01436734 -2.97149189 -5.18699853 1.10660866 0.60955763
## C5 -6.82680390 2.49245134 -2.46950170 -19.80138298 -5.06958240
## C6 -10.09352334 -3.20897543 2.78446560 -6.12761287 -1.05784756
## C7 6.50687946 -0.15595281 3.58240611 -8.13954747 1.26221541
## C8 -11.83071862 -2.99357193 9.86564615 8.02220383 6.26560521
## C9 30.36568196 13.07662174 3.50850057 -12.81879897 -1.82062612
## C10 3.58530112 -9.41715428 15.62536412 13.09064287 3.62441568
## C11 5.03599550 -0.62683193 -3.43493771 -7.77654999 -2.17742868
## C12 10.30206286 2.17805447 1.70848189 0.36280039 18.38037308
## C13 -5.15912808 13.73325844 -8.34207329 1.30754005 -8.09715664
## C14 10.72555358 -0.81843121 -0.08565984 -2.43818528 -1.43771351
## C15 -0.35295848 -14.07236706 -5.94242002 -17.80056305 22.20878542
## C16 2.80505533 4.24866385 -10.76754907 2.00178549 3.24366683
## C17 -0.24790335 1.99726357 9.12895298 -4.09813221 -1.16960996
## C18 -5.02606045 -1.35895411 -1.94259346 -4.89378258 -5.69286538
## C19 -3.19544451 14.40950610 -5.86302920 10.69032774 -1.05747572
## C20 0.99025750 9.62838743 11.82804699 14.42990302 -4.13552025
## C21 9.50526759 -0.13506181 -6.15209857 5.91521988 8.82386764
## C22 -14.07910172 14.83849123 7.27040316 17.52101307 2.29075678
## C23 -14.82157464 3.89106776 -0.77850716 -3.92366566 0.85768131
## C24 6.82120039 8.20402613 4.44660405 9.99752608 -5.73543620
## C25 -5.71732351 -2.83132458 16.97741567 -1.34339859 6.13010020
## C26 0.03146706 11.51350059 -4.45199576 6.27356873 -0.24464103
## C27 -7.50787934 2.64805161 3.37726900 -10.43971162 4.80579874
## C28 7.17268286 9.20116114 -2.66610956 8.00517283 -10.50487074
## C29 10.63869556 3.45139983 -18.76136090 8.79710639 -1.57127964
## C30 10.30547477 -0.32183478 -15.39279740 6.77700611 7.43459701
## C31 -8.11592521 -7.03389931 4.03045139 -12.93836682 -10.25500851
## C32 6.40023993 -58.20583901 -35.03343370 21.01006741 -21.42725700
## C33 3.65219067 -0.08905910 -6.57112915 -7.73788244 -4.64180616
## C34 -15.18964715 -6.20786369 2.45303299 -3.07354755 -6.80332332
## C35 -6.28814883 10.36959982 3.99756589 -8.58266195 -10.15260270
## C36 -12.96271465 9.88964551 -2.38396897 2.47376805 0.53078982
## C37 -4.53595227 2.77653510 -5.65874812 1.06817324 -0.18796031
## C38 2.32455097 13.17060452 -0.69716624 1.73537311 -12.94804475
## C39 -0.31995671 2.09665502 0.92395388 6.24139330 -9.02034744
## C40 16.38312487 9.36763790 -3.72427324 2.73358996 -1.10007922
## C41 13.47623483 -4.67259010 -0.70102863 -11.38015944 -3.14747611
## C42 -12.41128705 8.60362579 -0.06208104 -11.87932550 -7.90353027
## C43 -26.54721238 -8.03327791 -7.56711253 -11.51966569 17.00469677
## C44 -7.60287232 8.66632716 -19.51520257 -7.66018853 2.65880770
## C45 -24.72479334 4.10048532 -17.88192023 -16.78587940 3.22564871
## C46 -7.05500352 7.19695529 -10.55322866 -6.22837676 -2.33775205
## C47 -11.51468121 14.06539831 -9.50741833 -12.57143873 5.80829140
## C48 -15.70989247 -5.15178813 2.92710416 5.46417337 -2.61386455
## C49 -14.71028735 1.69845489 -8.29168089 -3.86438907 7.71767660
## C50 -35.45454267 -6.11190908 10.60239497 5.21871502 -9.27279778
## C51 -7.34510615 2.38211351 -10.17948036 12.16928683 2.34522365
## C52 -7.10245552 3.14897965 -6.71398310 14.00722992 5.35091191
## C53 -11.92181812 2.95624351 3.64544056 1.45509956 5.87478313
## C55 -6.72416401 -5.99979811 10.79426163 14.84712041 -4.30358031
## C56 -5.66002870 -18.60924523 -6.05381842 -8.77581483 -17.64877361
## C57 10.56169559 -6.36730473 5.45820663 -4.65529613 2.75180937
## C58 -5.09126437 9.70554312 4.08997747 -0.48722499 -3.21726352
## C59 -1.21439993 -12.33330970 11.09904224 -2.21951451 -6.35909670
## C60 -6.71290978 -7.75076258 -0.02002715 1.05018073 3.85298310
## C61 -2.36148400 9.34127759 -4.48766090 -1.23697119 1.74126282
## C62 3.09982449 -18.05645459 7.10955739 10.60536268 9.66783595
## C63 -1.05836526 -0.80230508 -2.03314707 -4.18618419 2.45950153
## C64 -3.63358878 -3.00924600 10.40696605 -3.47515132 -3.39287954
## C65 4.04766152 4.15785594 -0.32248779 1.13157333 -0.23512701
## C66 -2.95188466 -3.61604288 -7.46248261 10.58922026 -1.31181591
## C67 17.84511616 26.79224652 -7.17160363 -5.87178239 -3.54459181
## C68 5.34038373 11.87311300 6.68344079 -0.04925179 12.95175174
## C69 6.83571501 4.17125218 0.88399182 -2.96023748 -0.01986390
## C70 2.92012915 6.90645205 -4.74923448 11.08325115 2.90960546
## C71 -9.01244016 -3.51524239 15.95346128 9.07002113 9.68460358
## C72 1.50306518 -2.88745523 -1.72049125 0.69552378 5.91344003
## C73 9.55704998 -4.02388127 0.98165545 8.61194730 -0.65121734
## C74 -6.90530016 -7.08755515 17.01809910 -17.87282939 -3.20404215
## C75 -0.98744366 2.97791318 -7.62702083 6.39946892 3.36211009
## C76 17.21914158 4.84344133 1.22079548 -0.83485587 0.02749562
## C77 -6.86971434 -4.28257638 -0.64483419 16.44099299 2.66567664
## C78 0.15593660 11.65373260 -18.38953740 -1.39312529 -0.62716799
## C79 -4.61468363 3.01208203 2.99389976 4.63872580 8.10007498
## C80 -12.58824231 -9.44444486 -1.05381268 -4.62785747 1.15836864
## C82 1.15302351 -6.45632847 6.14784473 -0.71525488 3.21728491
## C83 3.26334868 -0.02863756 -0.71052702 6.36658228 5.06977266
## C84 -1.87510824 7.37111364 9.91174430 2.09917979 -2.65249517
## C85 -12.41481573 13.76447870 2.37445918 0.20006581 -0.10305055
## C86 -0.02110416 5.78690879 -9.06003347 0.73694077 -1.86076795
## C87 -0.77379837 2.38587033 3.99800722 1.99273950 -3.16650652
## C89 -6.05102745 -13.91220894 3.50729466 5.90419446 -8.70624553
## C90 11.88472224 6.79729896 5.57248529 -0.86384239 -7.05943173
## C91 -4.68489708 -4.25789556 9.32194290 -2.02449936 8.19882966
## C92 -11.26671787 1.25939759 14.07472118 -1.55972273 -4.47888283
## C93 30.40132591 12.53437744 -5.75244002 -2.58721259 -14.01642719
## C94 9.62339328 -3.36687043 13.24594357 -3.35989564 1.75116704
## C95 3.41610241 3.66637892 1.62643188 -10.05635223 -3.53889427
## C96 -12.43090562 8.64614638 2.55747554 3.41096157 -0.58681894
## C97 15.64955547 4.30226783 15.75897300 -1.56266230 4.13950729
## C98 11.39028471 -4.56155185 5.21769372 10.53886498 8.37368328
## C99 4.29437808 1.45292722 -14.40535006 -0.98468916 4.88572123
## C100 -9.08888255 4.34468247 -10.13619462 7.77635398 3.18571347
## C101 -2.56707380 -0.08975938 8.01640369 5.57953390 -2.50745374
## C102 22.48258417 -19.72422095 19.17173628 -14.62429544 14.09132378
## C103 -7.47022199 -7.28708100 -1.36870151 -12.41782019 -7.89182687
## NC1 -8.12923161 -5.53005224 -3.17611737 -0.51446662 0.87925839
## NC2 10.52758345 3.24843911 -2.02918890 14.51474012 8.36782792
## NC3 5.97816115 3.54439231 -4.75386107 12.90240872 -2.36274435
## NC4 0.22710807 -8.20175608 -3.46216712 -3.60112566 7.29319547
## NC5 2.77935458 0.38009671 -10.46849673 -4.73703698 10.93215399
## NC6 16.67225947 -5.15611550 -20.33283014 4.89480617 8.89101206
## NC7 2.35346382 -7.97010145 5.85802169 0.81982200 -11.66792917
## NC8 13.82632457 -1.60223782 7.42787049 1.95510681 1.67756854
## NC9 -0.56165664 -15.70500580 14.14826411 -5.07155084 -3.55033463
## NC10 0.29313490 -0.14860030 -15.92875652 -5.60249341 1.68174119
## NC11 -4.13595427 -2.76158875 3.38882583 1.29335935 -0.09710309
## NC12 8.17564493 -2.54750678 7.81826742 -10.51796466 1.12718145
## NC13 4.23580912 7.24441756 6.60262894 -2.46104749 -2.96550891
## NC14 10.39547417 -2.93291307 4.84194797 0.46793012 -1.47845185
## NC15 6.67909871 -5.16807708 6.49613514 3.80873564 10.28004108
## NC16 -1.87962746 7.35565015 15.17518875 -1.16443184 -11.81438178
## NC17 8.88251246 -2.51301883 1.54092695 -0.26378052 -2.98887046
## NC18 5.61290763 3.65725791 -8.04390670 -1.65056554 -0.50809864
## NC19 19.04600077 1.42627884 -0.76299848 -5.50516827 -16.95373370
## NC20 12.46010537 -10.52552152 7.72422652 -0.80290838 22.83617509
## NC21 -14.19351535 4.30761381 -12.77696018 7.89032619 10.23542326
## NC22 -3.43154184 -3.19323630 -8.81977410 -5.84914174 -0.61250734
## NC23 5.29615626 -3.77205104 5.60130858 -6.67060028 -13.93327052
## NC24 -0.99457264 -0.50711279 5.63644739 0.93884001 -6.15030749
## NC25 -2.46527020 5.70142950 3.38962682 2.97468028 -4.91562564
## NC26 11.17266434 -21.61154060 -14.39446296 -23.22930799 2.81093723
## PC12 PC13 PC14 PC15 PC16
## C1 1.76449410 -5.11246171 1.64234485 -8.87589766 9.95800782
## C2 -0.73919593 -15.26869483 -2.13955113 -1.67364180 -3.37137669
## C3 -6.83739874 -0.42721420 1.50003764 1.66860746 8.30474068
## C4 -5.04018624 -6.45073892 2.68135437 -9.78173969 3.39539791
## C5 -6.20034364 -2.40900446 11.88334250 3.81259973 10.18029850
## C6 0.45319122 -10.95673016 3.50628726 1.70944660 -2.95114779
## C7 3.87270337 -3.38670149 -5.68596069 0.32041241 1.08779347
## C8 -0.35753034 4.36392914 -3.82939803 -2.45389866 10.09785887
## C9 -2.16079689 7.17958666 2.22286463 -0.02881005 6.03832357
## C10 -6.48274530 -8.55151396 2.67328146 -0.01698939 -4.41615154
## C11 -3.43852917 2.23666123 4.02990528 -6.23941688 2.42132555
## C12 -5.74496668 10.35257151 3.04262607 7.78547277 9.77541984
## C13 -2.34467649 3.06085094 5.59718650 1.82891425 4.95046646
## C14 -0.05499733 -0.17558174 -5.98439658 -9.61437342 8.98399292
## C15 8.42832917 3.01927876 -8.36422531 -11.26578930 9.75076913
## C16 -5.95653941 -5.48222760 3.62092874 -2.14844877 -0.37385806
## C17 -4.74851167 -12.26043051 2.39014049 1.27521823 2.94999109
## C18 -4.32259740 -2.89454399 8.64386000 -2.73680394 -2.61145190
## C19 -2.92914123 -0.85373723 -8.02936259 -4.03760578 3.58110059
## C20 -5.74791794 -13.75821314 -3.06301736 -6.84198134 0.75078978
## C21 3.41696382 -1.19787510 2.83350647 -8.24339566 -4.46516014
## C22 -3.86617213 -1.04535809 -5.76842516 0.25156699 8.86445322
## C23 0.42181024 6.01766163 -1.24582416 6.86813955 -0.59570924
## C24 -7.89640262 -1.02383078 0.08837515 -4.04963982 0.79383765
## C25 -6.68192480 -5.81148040 -7.87834800 12.10920370 -0.55163786
## C26 0.90048366 0.52964947 1.94022127 -0.95864072 -1.39145714
## C27 -13.26395774 4.84627449 7.22935151 8.60869155 -0.32712973
## C28 -3.37590428 0.27333681 -1.35909094 -7.52462674 -5.99135195
## C29 8.75873333 -6.20249467 -2.33577395 -5.51572600 0.94302630
## C30 7.54691158 13.92935915 7.12755623 -2.88086417 -6.02365236
## C31 7.53169492 -2.10957894 1.17101080 -7.74375237 -1.22029291
## C32 -20.39098973 3.66652489 -7.89189082 19.75055297 9.45906757
## C33 7.59239824 -8.99560452 -5.05751261 -0.03616654 -1.61780600
## C34 3.80385679 -0.55278678 9.42150280 -10.00627773 -0.95872320
## C35 0.04831070 -7.38135921 0.78877668 1.35509626 0.78460581
## C36 0.60337690 -6.77758714 -9.13720860 4.54654079 -1.71246622
## C37 -5.05577816 -14.52056746 -1.21190561 -3.02134038 -5.35773572
## C38 -0.08210362 -1.02768455 10.83413372 0.26856740 3.64266964
## C39 7.50445774 -1.92697589 7.02809451 -4.45235960 -1.43623029
## C40 -2.19930880 2.38965967 2.90212584 -4.36424710 -0.43184242
## C41 5.14348788 -2.65746372 3.49938379 -12.93831670 -7.96850738
## C42 0.07967836 1.84721908 -3.51063444 4.42977465 -18.61474151
## C43 0.10240004 -5.25831576 4.47173442 -0.52836553 8.22101015
## C44 3.06028929 5.75637597 -5.84140860 -4.03483142 1.35016798
## C45 -3.60162897 -2.64431211 6.78589472 3.33488705 2.13994697
## C46 -5.83992558 10.30661304 5.98935546 5.89657738 -4.36819952
## C47 -6.52570509 13.70748145 -3.68202175 8.13538058 6.14857989
## C48 -3.32804654 12.69087274 5.24160540 -3.55687360 -9.93898634
## C49 -14.19661216 -4.42292014 -2.60309004 -9.53816900 -7.36983188
## C50 9.78027720 4.18459647 23.55570566 -9.41907155 12.30794563
## C51 -4.46651438 -11.01543034 -4.39755979 -4.01889571 -9.07869330
## C52 -0.81376349 5.42137432 -0.58710395 -0.72247334 -0.93861393
## C53 -4.20088684 5.87867975 -3.50822148 3.48016307 -13.89750673
## C55 -2.66631946 -8.14456026 -6.50089221 -10.69999367 -8.32636093
## C56 -14.01790290 7.45291887 4.15894844 3.63278490 -7.88454341
## C57 0.59146927 -4.26088938 -4.49405589 -2.13414660 -1.29486597
## C58 -13.72634211 5.62320074 -1.86974755 -6.52258809 -6.29806924
## C59 -0.02232548 6.59187287 -1.79607917 -6.24077289 -3.92431457
## C60 -3.53488142 -2.30494766 11.19307465 3.29625170 -4.31396830
## C61 4.21546037 2.32364781 -1.80139138 2.21333639 2.10115134
## C62 20.47909000 12.20071338 0.80190125 3.70006662 1.52283144
## C63 16.59601477 8.20839718 -14.15399418 0.89764993 -4.41758039
## C64 3.33349854 8.83954191 -9.18399684 -8.07263198 1.82096495
## C65 -2.27396761 -2.34286813 -5.63109496 -0.40636624 -1.32181983
## C66 -0.52376609 1.17488841 -3.56008879 -4.37465781 -2.54083910
## C67 6.01513454 -5.25808449 -3.68251794 6.89829777 3.72050151
## C68 -16.65317291 10.18479547 -3.50103276 -0.67846539 -8.34316496
## C69 0.88634356 -1.80024406 -0.78900187 -2.59267261 1.28785419
## C70 -0.29574340 4.50719806 3.70693657 -0.42004742 2.49346026
## C71 -1.61836407 -6.51246503 -6.28587785 -0.33199179 1.23876874
## C72 -3.74276454 -4.21889813 6.50102462 -0.60295106 2.63783267
## C73 -2.35573345 9.34669501 0.64642272 -5.83320732 5.19639699
## C74 8.60204047 4.97511419 -8.74606554 0.67398399 -2.16664996
## C75 -5.69734036 -1.35207248 -3.35390701 -4.19292441 -5.59149847
## C76 -14.59157541 5.95845000 -6.72877006 -3.66011094 5.06449314
## C77 15.17603600 2.28723830 6.55533459 0.76580622 0.05423887
## C78 -1.69011898 8.15786688 -4.77756209 2.04361219 4.27358924
## C79 1.97324744 0.50087460 -1.58731637 2.29471856 -6.16891550
## C80 14.22702569 -1.83287494 -5.72154326 9.15665479 -0.23451321
## C82 3.24630321 -4.78990151 1.98202247 -1.71433875 2.13041028
## C83 -2.99718627 -0.06187396 12.41642498 4.45960788 -1.27096087
## C84 -4.45896127 -9.25219174 0.93084723 10.46556846 3.62306040
## C85 -0.67422976 0.58034861 1.28840828 -0.51980733 4.53118162
## C86 9.99938225 -1.63277591 -3.74648932 2.64340967 -1.52399566
## C87 4.28194208 7.74082796 3.34021000 4.28681596 -3.43977305
## C89 1.65723457 8.85327310 4.65263691 -7.16420750 -3.58380482
## C90 7.11948015 -2.46234444 15.68066145 5.49846171 -3.31197681
## C91 8.43037709 -5.04426374 -0.92548904 6.95408790 1.26731325
## C92 6.21463596 11.26267728 1.75697602 3.13104034 1.18213428
## C93 6.45955492 4.82796772 6.35812702 2.82736114 1.93551971
## C94 -2.91145897 -4.18640664 5.19948453 2.03238412 3.18788027
## C95 1.93794745 -2.98196890 -6.78586464 3.88849467 9.69254013
## C96 -5.41302241 7.32452268 -7.71818172 -8.61462363 16.93497753
## C97 0.84906497 6.33897356 -0.02574036 4.53436524 5.10614497
## C98 4.92972981 -0.04327147 -2.26708142 10.06804479 0.06445172
## C99 7.26101559 -13.32611200 0.18592610 -1.31938387 -4.60776561
## C100 5.14873641 3.58473249 -3.59807499 6.23055918 -13.08909669
## C101 4.08719907 7.90498790 -15.66522514 8.56355242 -6.61995374
## C102 -15.29593942 1.78354141 3.09893790 -5.86733278 -9.98317532
## C103 6.46110089 1.04464304 -1.27979736 12.78480319 3.83224581
## NC1 5.30034254 4.84289293 -10.50065843 -6.70096612 -1.80679727
## NC2 5.00593435 3.93103210 5.53588949 10.23398318 -0.27562946
## NC3 5.76824436 -6.66958194 -0.67761050 6.47493432 2.14318797
## NC4 1.46326324 -6.14037063 6.78340988 1.66373647 1.98141515
## NC5 -9.33085791 -1.22132409 3.00127735 -4.09982746 0.22104138
## NC6 8.27652612 -3.78852377 2.82435998 -7.43285182 5.11332111
## NC7 8.06370390 -2.12344768 -8.33983208 -1.45973126 -0.52662085
## NC8 4.07999460 4.93156154 -1.07768305 4.86508025 -1.98298347
## NC9 9.29744208 4.25112026 -0.02806740 -2.67987066 -2.38443642
## NC10 12.70340634 -11.35541029 4.14196597 6.58641453 -2.67529130
## NC11 5.31415850 -7.17393322 2.53955779 2.08434364 2.02731576
## NC12 -8.81683136 -8.70048946 -4.09246640 2.45017329 7.52899706
## NC13 -3.06409403 1.00602922 2.77662537 10.89493067 -10.82511543
## NC14 6.90811147 4.20185461 6.03516267 -4.33306079 -4.57011244
## NC15 -0.43242121 -11.51081674 4.34976657 4.28049876 2.47117741
## NC16 -0.43127906 -9.33796867 -15.14193448 10.42740121 2.02581588
## NC17 3.90815622 0.35747435 -4.34824023 2.31879647 4.55532310
## NC18 -0.79748006 -0.99244596 6.87442137 9.03480182 0.64085252
## NC19 1.55470948 5.20917433 0.90800528 -4.16511328 -12.68327245
## NC20 -2.75246482 0.71890285 12.98271451 4.92098969 -6.41561893
## NC21 -1.55473564 -1.14289963 -5.66547310 0.08006579 -4.55205192
## NC22 -3.56513984 5.35469589 4.89564543 -3.08565611 -0.37434626
## NC23 -2.23940884 -3.69557133 1.55711840 -1.81210423 6.95649190
## NC24 -4.84014447 2.57345968 2.14398048 5.02562330 1.14620551
## NC25 -4.50069679 13.95208989 -8.64459005 -10.26898701 9.50490347
## NC26 -2.25853707 -4.34753648 -14.34133350 -5.44848528 -0.78743417
## PC17 PC18 PC19 PC20 PC21
## C1 -2.2575769 0.07609820 5.001302470 -3.70188171 11.10005355
## C2 3.3386607 -4.58779597 4.823671380 -2.60303601 4.83962826
## C3 -5.0594598 6.87855750 9.384536131 3.35363483 5.71649920
## C4 2.9555977 3.55147631 4.759451972 0.72356605 2.17812556
## C5 19.0587198 -4.18205185 1.252260057 6.60428067 -12.06344033
## C6 2.9324376 -2.63846733 0.237960556 -2.51725405 5.71244178
## C7 -7.5224174 0.23217386 -0.840366434 -1.86274002 0.24874137
## C8 4.0538866 -4.08002964 3.182206768 4.58074966 1.99874725
## C9 3.9363572 0.01875754 -3.128066341 3.68855185 -1.07668279
## C10 9.3015884 -3.37259202 0.014682870 -7.16762998 -8.87853096
## C11 -0.4760581 6.27004713 3.058190277 -4.28294665 1.01398430
## C12 4.2348322 -2.84830676 0.255473681 -1.05847371 -5.47580423
## C13 1.7473709 4.00983238 6.002630274 -1.01672543 2.24700061
## C14 0.1277585 2.01955018 2.267904337 2.31354741 -7.37136173
## C15 2.6266034 1.38689622 7.037971878 4.97752099 6.84272278
## C16 -2.3471310 -4.59595974 0.667853242 -1.83813485 -2.51850509
## C17 -0.8454409 -1.61450673 1.317833845 1.56148305 5.23994547
## C18 -3.3656402 -5.13907024 -1.029080646 -0.71693468 -1.03200219
## C19 -5.0987427 -2.71567957 4.143346979 4.75037082 0.01874478
## C20 -0.8598006 -2.66803447 2.251591057 -0.38929957 1.16106835
## C21 -7.0504937 -3.39580723 -2.013747427 -4.38180191 3.35310927
## C22 4.1589918 -1.15362051 -3.470754155 -8.74475329 -5.83197976
## C23 -1.0010997 -2.08624916 -1.975142173 -6.91019530 3.74091434
## C24 0.9959400 -1.03361837 -0.009310708 -4.33780666 -1.01551850
## C25 2.9480295 0.53922075 4.484794556 -0.98655282 1.79795436
## C26 3.0703076 -2.18381435 3.039359281 -4.80401860 -3.58434291
## C27 4.4454528 -0.42957694 -3.856736413 -4.88844475 -3.12139618
## C28 -3.8498343 0.32354497 1.115530345 -6.44692177 -8.49407485
## C29 1.8494458 2.56952386 -2.136914495 -5.02003452 -3.59484896
## C30 2.4150447 -3.26041147 1.205672476 9.52019426 1.46365000
## C31 11.4919624 -3.65153345 -7.399691905 0.05083167 -0.29439740
## C32 -4.2014106 1.74917059 -12.334839259 8.61923383 5.47044902
## C33 -3.0182703 0.63310398 2.910803147 -0.21675327 -6.46005725
## C34 -1.5104213 -7.79907210 -3.766864517 -0.29816617 3.99622221
## C35 -0.7594074 -2.24997549 -2.713483030 -0.34695397 6.46636516
## C36 -5.3884818 -0.70348292 -0.551307087 0.78916460 3.04243918
## C37 -4.0345707 -1.17307589 -4.580952563 -3.61119705 -1.59004899
## C38 11.7800357 2.49403870 3.222490246 -0.30609344 6.46773882
## C39 7.2612587 4.73314278 -6.593991218 3.83935882 7.46406053
## C40 -1.6303893 -2.78447172 -2.425439006 -1.82700423 1.29779485
## C41 0.1405291 12.55859889 -7.379564437 -0.94223478 3.35541111
## C42 2.3406428 1.90381593 -3.243365498 -0.05738335 0.62048375
## C43 -6.2670357 7.14538091 4.666700796 -14.08837401 -4.05379988
## C44 2.9212007 0.05099628 -4.804862369 -3.77207660 -1.40797315
## C45 0.4371807 -1.15725288 1.439533909 -5.89728988 2.31002220
## C46 2.5534155 9.85300193 7.811309424 -2.97498766 3.22005059
## C47 -2.4281788 10.96294530 3.077805234 -2.00586254 3.31683419
## C48 1.2430281 5.39339257 -1.916550883 -6.68088784 -7.38643924
## C49 6.7679435 12.77010219 1.831452583 4.55029390 5.10181606
## C50 -23.2504396 2.63404886 8.725498976 12.05856968 -8.12170650
## C51 2.7648943 -0.49242856 2.253875303 1.39825207 0.23065105
## C52 -5.6138289 9.99829268 2.264088323 1.97431793 8.78632078
## C53 -6.3454768 -3.17734562 -1.551076978 3.84227781 -2.83359426
## C55 7.3082217 3.70119403 0.993292347 7.74046149 0.76491542
## C56 0.8465882 -5.62944712 7.032295434 5.23256757 -7.16869223
## C57 -7.7359845 4.89412982 -0.320943835 -3.63481724 -5.01335330
## C58 -6.8807605 -3.97072621 -0.815135264 3.18084101 3.53245088
## C59 1.1294145 0.70610615 3.989829295 -3.60330557 0.80618735
## C60 2.0860150 8.99367247 2.804582924 -5.06262724 7.58177650
## C61 0.5881059 2.15952589 -2.422523735 5.20739626 2.78147845
## C62 9.5765269 1.53020616 1.396548233 -7.71010365 3.49415451
## C63 -2.8248766 -1.16131829 0.519249991 5.04993303 -3.32499829
## C64 -2.1886203 10.87820526 -10.666383113 3.56836724 -4.10965231
## C65 -8.1589339 1.99824668 -3.990922886 1.12584674 -0.76139571
## C66 1.7628108 3.02277546 11.632004462 0.16843728 -1.77721470
## C67 -0.5070905 5.02623551 4.207026874 10.27003922 -1.48548166
## C68 2.5153937 -0.16636355 -0.164559622 6.68824418 4.81993743
## C69 -1.8895207 -2.43703559 -7.812904611 3.73616882 -1.04225351
## C70 -1.3364050 -1.47099954 -5.967193702 0.08723383 2.47935720
## C71 9.4372235 -3.71068507 4.456583493 5.82280875 -2.36249364
## C72 -0.1932961 5.98900538 -9.551203292 -5.44378127 -8.87200714
## C73 0.4635708 3.73056814 0.985438243 -4.76869878 -0.32163436
## C74 2.9772681 -1.02315406 -5.868544614 10.60941998 2.50896952
## C75 -8.6884266 -6.52025152 3.477866947 3.31702970 -6.04679942
## C76 1.1310537 2.89306474 8.285626788 -5.64535188 10.71685743
## C77 10.7146073 0.47610492 -0.058476213 -3.20804663 11.37875306
## C78 8.7517373 2.11275539 -0.890058303 5.24672199 -3.80379325
## C79 -0.8017057 1.59030553 -2.594851846 4.39843015 -0.13280374
## C80 4.6637814 -8.37221569 4.068958973 -1.21302342 0.36007757
## C82 -5.1564221 -1.46308952 -2.022139860 7.82574653 3.92309813
## C83 -2.6260923 -6.50717694 0.917881577 -3.37381415 -1.88265612
## C84 4.2393771 4.24069750 -9.975749044 -4.68924283 8.84968992
## C85 -4.9229621 5.65994423 -18.819904269 6.49635496 7.25771864
## C86 -9.0619786 -1.53599023 -0.348547035 -0.94544187 -5.52348573
## C87 0.3321656 -1.38615274 -5.443202898 -3.12115878 -2.43198256
## C89 0.1618967 -2.03362568 -0.378482880 1.52193330 -7.02965378
## C90 -4.1339732 -9.08282820 1.114699724 0.19033239 4.39954929
## C91 -1.4267485 1.47165117 -2.662696102 -2.41481716 1.41731211
## C92 -5.4800776 -0.16392284 -10.038207116 -3.90805749 -0.24406891
## C93 -1.8813715 0.37585739 3.036769396 -1.83835623 4.64797787
## C94 -4.5102780 7.62882901 1.736178300 -9.80565055 -3.16961831
## C95 -9.9145158 -4.54844608 9.521769569 0.39692452 0.94655334
## C96 0.8838391 -19.27932112 -9.060094852 -4.18610363 4.20184765
## C97 -10.7197599 6.24500407 1.518472043 4.66369779 -0.16011807
## C98 3.7360916 -6.95740095 5.132709989 -4.35147721 -1.54318536
## C99 0.9800001 -0.42622577 4.420009373 4.16612699 3.56570485
## C100 -1.6745684 -3.16436328 -0.145420282 1.00104124 -2.98960978
## C101 4.2327306 7.25088074 5.098328695 -0.79473718 -2.86736227
## C102 -7.5121406 -9.67229100 -11.038417592 -2.75399961 4.61196148
## C103 -5.0235416 0.39279171 -6.304124919 -9.36366425 3.69584608
## NC1 3.7193197 0.81338290 -2.100602004 -1.56452634 -1.04306037
## NC2 -2.1923767 -5.77182419 4.610318793 -2.65232496 -2.97967468
## NC3 -3.0002786 2.29164377 -4.772085884 -1.17782381 -10.23419228
## NC4 -4.0858396 -6.45802856 0.502210219 1.59929170 0.02239483
## NC5 5.6630150 -8.51727352 -4.359853781 9.02701367 -3.17987443
## NC6 5.2656285 11.52885826 -13.081846514 -2.43545372 -7.61462819
## NC7 -3.0497726 7.75579202 7.224856269 1.75212512 3.41713765
## NC8 4.0217325 -5.66262718 2.581094444 1.79378918 0.72241801
## NC9 6.5243365 2.77874036 2.674292443 -2.39689466 -2.11184669
## NC10 -0.7218647 -11.45169778 -1.545549731 5.36875005 3.90696204
## NC11 7.6860251 -0.53598390 -4.340585116 6.69103923 -3.14683849
## NC12 -0.2343821 9.19516585 -3.659527418 5.49226881 -10.96470799
## NC13 -4.0236673 2.34291250 0.782439292 6.69567818 3.88081978
## NC14 -4.9069066 0.44557216 -0.914856393 2.61694652 -2.69471531
## NC15 -2.5657126 6.61166000 -9.315002545 0.30173670 -1.81058812
## NC16 -0.8102475 -1.40805941 -0.359301165 -0.80554940 -4.90883304
## NC17 -2.8946662 -2.96230672 4.439162260 3.87483835 -1.15165056
## NC18 -2.0865812 -1.40923021 -0.355245905 0.73580073 0.29475399
## NC19 1.3150703 -3.14077316 2.537602023 -11.76651790 0.59561226
## NC20 2.4525130 0.68599320 6.208665861 9.45987074 -0.57023043
## NC21 -0.4386678 -2.78860901 0.349877899 -1.29487943 -1.59417932
## NC22 0.4809422 -3.98718536 8.242760929 4.61930765 -2.34348493
## NC23 14.9851743 1.30384086 5.536650035 4.72582977 -4.17554578
## NC24 1.2476527 3.13390636 8.886482953 -4.92069134 -4.50275277
## NC25 1.3258510 -17.39121936 -4.174933786 -4.69010758 2.47092058
## NC26 -6.6621764 -5.26885578 9.431867210 -9.42069446 1.42443813
## PC22 PC23 PC24 PC25 PC26
## C1 -1.183086231 -4.370151556 -6.02694525 2.48773077 -3.91767749
## C2 -0.143736557 -4.062298409 0.65676616 1.46971093 -3.00974407
## C3 7.605657370 1.169663531 -1.02295734 1.07853255 1.98165326
## C4 -5.257754103 8.610023002 1.07618609 -0.49569295 0.21916563
## C5 4.203145942 4.343211769 3.71124339 3.54763357 3.02138629
## C6 2.282187834 -0.952306166 -1.69602342 2.70026287 3.75298614
## C7 2.321246548 0.444870085 1.42900710 2.89614293 -0.48170771
## C8 -1.586859558 4.580129726 3.67709001 4.09449643 0.55681796
## C9 5.564412950 -2.154732223 -5.24543555 -5.03160914 -5.41662607
## C10 0.641150323 2.799815260 -4.28497238 0.70739430 -3.52339673
## C11 -0.905667032 5.692056079 6.83787788 3.69579216 -3.40734005
## C12 -2.134542241 -0.527708331 1.56098466 -4.68694330 1.32186947
## C13 -0.796683067 5.698995414 -1.47089183 6.30717788 0.98836293
## C14 0.504561449 -6.704866219 1.52494039 -0.41278122 -0.13938528
## C15 -8.478970625 3.450394266 2.28446765 -2.95693826 -5.94728771
## C16 -0.301665488 -1.286472216 2.49505481 2.97839123 -2.35846925
## C17 4.318046627 1.406374820 -2.24932602 4.10133781 2.02547927
## C18 -1.666666611 -5.097226849 4.92529194 0.64513869 8.41190430
## C19 2.622460540 -2.345761084 -0.89695026 -1.91451601 4.75328269
## C20 1.511710681 6.613108829 1.69747807 -9.35308778 3.68159479
## C21 -3.624263134 -2.220218688 -4.20107160 5.90762083 -4.34308997
## C22 -2.036957104 -3.173298387 2.04571134 -5.06778876 2.29960678
## C23 0.745242432 1.654829985 0.35718600 6.24118516 -1.07750988
## C24 0.525032909 4.605763904 -2.91685708 -2.53857052 -3.32219028
## C25 -2.268648318 3.035119562 -5.75712495 7.34236869 -8.97530680
## C26 3.454019752 6.713952944 -4.34112044 -6.59772320 2.86654368
## C27 -1.633185842 -8.481328881 -1.30863881 -4.36543948 -0.88224567
## C28 -0.220314568 2.457210118 3.87470290 -4.13949273 -8.13151050
## C29 -6.591071135 -1.495184904 -2.52510026 9.51851231 -3.71279337
## C30 -2.764419564 -2.718781823 4.11807863 0.55726527 0.37380617
## C31 1.053658570 -5.181359846 -5.72540364 -5.68335234 -2.61086375
## C32 -0.003473131 2.768126873 -4.88792593 -3.05769235 2.48908703
## C33 0.747162873 1.957578672 2.32802106 0.80875056 -4.84697848
## C34 2.981689730 -1.282502125 8.01004452 -2.01955999 10.34735585
## C35 4.341693255 -2.715531477 -2.41981189 -1.11997852 1.20173099
## C36 3.003733200 -2.366802578 5.83318983 -3.36829456 -0.68587955
## C37 1.275782035 -1.123737030 0.57636940 2.03753812 -4.93825971
## C38 -7.711501780 10.938225032 0.40199014 5.25434495 -3.16341428
## C39 -6.609391263 -4.643915178 0.43975261 5.70798295 2.83014837
## C40 -0.233719586 -4.029799633 -1.59818622 -1.40761372 -6.26792309
## C41 0.431483958 -7.343064451 -3.76334150 -1.09857571 1.29321301
## C42 2.795762881 2.211003850 -3.12889284 1.31000265 -6.22814936
## C43 -2.093860420 -1.399539187 -9.85295147 3.69162028 8.42815286
## C44 -2.073305390 -4.361849114 -4.78371755 -1.05824281 4.77766833
## C45 -3.049894353 -1.578423976 -0.27511158 -5.36574859 1.67556305
## C46 -5.287755328 -1.268429195 -3.28573356 2.41273352 -2.83900389
## C47 3.354252825 -5.399112305 -2.80179505 -0.32926836 2.85134429
## C48 3.433380675 -4.015712111 -4.97545155 3.15938467 5.14908349
## C49 -0.837713234 4.127549274 1.80943221 0.49862163 -2.81189574
## C50 -1.490259652 0.773132620 -4.23702922 -7.03509865 -11.14262213
## C51 -3.750631764 3.198508061 0.93206432 4.22314262 0.97077454
## C52 4.946454482 -4.922298814 0.03118008 -5.37966294 2.62172649
## C53 2.661899157 -0.994606044 -1.13863059 6.30082440 1.83443221
## C55 -4.843387315 -6.868496075 4.90646520 2.73030100 5.64710248
## C56 0.267220252 1.019982387 2.00485596 3.35010925 -5.70801934
## C57 -1.245346106 -0.695204935 3.19402651 1.42786308 -2.19672722
## C58 4.233036553 -5.695998126 9.75893224 -1.20456172 6.33679962
## C59 1.370052209 0.009527553 -5.73515035 -4.65626389 -2.06795148
## C60 -0.703214920 -2.654594782 5.94539966 -0.41724007 -5.40552381
## C61 0.195825100 4.078410714 2.48343460 4.03589664 0.86270548
## C62 3.687916694 -2.710729901 -1.32640199 1.02414037 0.89499757
## C63 -3.772351506 -1.041511307 -4.60161899 0.01030605 1.24207543
## C64 1.191191796 7.160048771 2.31891693 0.85202655 -0.37707103
## C65 -2.737346524 -1.282367800 -2.44108813 1.94256385 -0.72205161
## C66 -9.160722347 3.523741832 -1.96277242 -5.75631747 6.46951548
## C67 10.002428539 3.205920211 -6.05969817 -12.79843036 1.36952350
## C68 -6.686253609 6.942435357 4.68415121 -0.94706151 0.04608399
## C69 4.313635462 2.002511722 2.59319816 2.78053336 2.61690264
## C70 -0.766628259 3.404588428 -5.12441394 -3.49506907 -0.08192934
## C71 2.312419223 -2.330193832 2.01248603 -2.23758256 3.56603565
## C72 -4.730810525 3.245369256 -0.43202262 1.99433825 4.90275190
## C73 -3.337313170 5.493852291 -5.92235288 0.30918909 2.83970392
## C74 -0.692091467 -0.583377069 0.73504786 0.40250840 0.74726104
## C75 -1.975211242 2.575145959 -5.67184605 -0.15721920 -3.42814408
## C76 2.591895972 -1.218616199 6.57409457 -4.11500137 -0.57349537
## C77 13.603766338 1.117607392 5.08321029 0.56470564 -0.61333901
## C78 0.988649282 -0.564516895 3.59771576 -1.18924583 -3.95291942
## C79 -0.738208198 5.540348598 1.27702593 -6.06754908 1.83479826
## C80 0.822195113 8.882832802 -1.49995295 -2.56852795 -2.31177480
## C82 7.427345267 -1.773445355 0.42898402 2.85688691 -5.11371670
## C83 -2.538712254 1.843994217 0.14403033 -2.51839092 7.81165371
## C84 2.136245495 -6.378782531 3.37830645 1.31862324 -8.49005400
## C85 -2.039623248 4.797532309 -4.64929475 -3.36840075 2.02047466
## C86 -0.676374063 -1.357290184 3.12532937 4.03143181 0.86527339
## C87 2.669177299 1.414588895 3.10828693 4.62058081 0.79580265
## C89 8.974842066 2.125318589 10.54378732 -0.99660907 -2.42961925
## C90 0.971407252 -1.244717803 2.07196972 2.37665801 8.56428446
## C91 -0.292340251 5.381678292 -2.67641388 -6.20493540 1.60528073
## C92 0.330495273 7.288081161 -4.82691797 8.98490024 2.68007034
## C93 -1.568507438 -0.660380276 -3.83604891 0.85689534 4.19798309
## C94 1.929468324 0.377940545 1.20710671 -1.75256148 -3.46414027
## C95 -1.118472091 -7.514793429 5.06914630 2.73980670 1.00556692
## C96 0.457210677 2.332886010 -3.21414676 6.43766868 -2.71985200
## C97 -4.554198000 3.769374072 4.46802189 11.95882733 4.22218264
## C98 0.439454399 -2.959341973 1.77114956 1.56581778 -1.49935194
## C99 -0.861020669 -1.509306950 -2.47863995 4.27811295 -0.20175067
## C100 1.042090579 -3.712294552 -2.19032309 0.48522109 -1.85432718
## C101 -1.045511813 -1.696149037 3.26751895 1.49492372 2.74206405
## C102 -10.495129772 -3.192645137 -4.32589445 -6.85651064 0.80601449
## C103 -8.279846896 -1.015989508 19.98933578 -8.81901111 -6.65572679
## NC1 2.706068006 0.031626726 -0.86922265 -4.01469999 -4.39912651
## NC2 3.037437112 -5.173820908 1.08663360 -0.08380536 -1.05302025
## NC3 -1.693271376 -0.362634143 3.76017038 5.54794365 -4.39114298
## NC4 3.362700388 -2.892884541 0.49796183 -2.24874831 -1.43767596
## NC5 7.920243481 -8.255881945 -5.55727234 3.54357918 -1.84111652
## NC6 0.942819619 0.230683356 9.13051742 -2.03695171 2.26181594
## NC7 -0.037474621 -9.730014880 -4.13573238 1.92872934 0.88601059
## NC8 -1.690167476 -1.582436358 -0.49574851 -1.59891179 -3.22009063
## NC9 -1.887539115 -1.385309088 -2.90123817 -6.67986656 0.37485082
## NC10 -9.419101724 9.060145605 0.30793242 -5.81196898 1.45272826
## NC11 0.356646813 -1.128741696 -4.16440316 -1.17597124 0.20273882
## NC12 7.775507147 -0.239020907 1.34155063 5.27445396 1.45840820
## NC13 1.522797211 5.789851094 -6.47279762 0.13988806 -2.17905717
## NC14 0.484097858 3.857418445 2.17948930 -0.67035708 3.65919288
## NC15 3.237838259 2.206752239 -1.58834299 -3.92420635 -1.06412262
## NC16 -15.590644648 -1.922105956 0.14659779 -4.03290119 6.32343460
## NC17 -5.900152722 -5.643446192 -0.94197364 1.48687967 3.52989105
## NC18 0.895830693 -5.632730602 -0.60229099 1.01787647 0.28517226
## NC19 2.444093187 6.899662607 -1.68271460 -3.94694388 1.57185756
## NC20 0.282867341 2.237544688 1.86737616 2.56793401 -0.21810983
## NC21 7.090214646 -3.607977208 -1.19670549 -4.53622939 -3.22330784
## NC22 -7.603542244 -4.352675385 3.90766537 0.41254929 -1.40093063
## NC23 -3.723200570 -5.820160280 -4.87227256 1.59775012 3.11453311
## NC24 -0.038912988 -3.592801544 -1.42968948 -5.13170319 1.10075448
## NC25 -0.727325837 -1.034047028 -1.04039772 2.47599370 -4.83376257
## NC26 16.562992158 12.137405321 1.14125800 3.39737203 7.67118312
## PC27 PC28 PC29 PC30
## C1 7.20843910 -1.93178068 7.1364450462 -1.27354936
## C2 1.41430643 -1.38700321 -2.0213152170 -1.19972570
## C3 -0.21579570 1.22708826 7.3628155275 12.38335042
## C4 -0.80760548 2.52299237 -3.9418234580 -0.03496177
## C5 4.08049272 -4.75776923 0.7855329171 0.31440811
## C6 2.82362210 -2.47695537 0.1467464500 0.12057683
## C7 2.72079626 0.97266007 2.6334176849 0.38948932
## C8 -6.19871399 7.96216546 -3.0377772791 -7.71236498
## C9 0.73006666 4.55691224 0.5312843964 -5.23491924
## C10 -1.24149958 2.49981529 -1.2181026685 -1.68130771
## C11 -2.18042028 -0.58233316 2.2283601717 -1.76471458
## C12 -2.05253378 -6.87049793 3.7105244330 2.16900504
## C13 0.83527359 1.02735128 -2.9160051129 1.49515905
## C14 -9.54688483 -5.63883347 -2.1845542631 -1.06377690
## C15 -1.23313818 4.42400499 -1.7938721469 3.75819440
## C16 0.38265623 -3.53603760 1.3045426673 3.95587228
## C17 0.87958522 -4.35153900 0.4395696471 0.28057490
## C18 -1.62252924 -0.39715647 4.5002811407 -0.26460858
## C19 0.90964879 -1.98816520 -3.0771556156 6.01158662
## C20 0.66148319 -6.48020956 -0.6390497476 -0.09832599
## C21 -4.28560361 -1.75046736 3.1187388946 -0.39172096
## C22 3.62655020 2.87943445 5.3166824172 4.62672203
## C23 3.99933274 -0.26858495 -7.4165760637 -1.86866395
## C24 1.78417212 -1.94375819 -0.2926728102 -0.29429180
## C25 3.71624177 -1.41782310 0.4467189458 -0.31248009
## C26 0.74270021 -2.49648900 -2.8074604240 1.46483053
## C27 -2.72734189 2.98859111 2.6102317184 1.98457171
## C28 -3.89258747 1.92437690 -0.3005582332 1.99553775
## C29 -1.36032986 2.09954556 2.8066378865 -1.07813284
## C30 -1.70391357 4.51351669 2.6519683940 5.14566398
## C31 1.83665876 0.68286818 -0.5839094219 6.38746819
## C32 0.50113189 -2.52502237 -1.4235860656 -2.79352430
## C33 -2.10534837 3.67010449 5.6320255271 -3.20429113
## C34 1.29965637 4.49499552 1.0785516223 -2.25061693
## C35 2.46100943 2.31989433 -3.3933497336 -0.25458322
## C36 -0.17386363 2.16865801 -3.3504632135 -1.03749010
## C37 -0.89119922 -0.73750936 -4.6981252230 -1.24043475
## C38 3.77878376 -0.89770731 -8.1446110694 -0.98224308
## C39 -1.15570060 -3.11750097 4.4045073024 7.05655428
## C40 -8.80144974 -2.62557644 -2.4867472375 -2.55609541
## C41 3.09311902 -1.71185655 2.0015543240 -3.14191955
## C42 1.43602654 4.15722010 3.2872930244 -0.71767870
## C43 -2.65681427 2.27210363 -2.8683439013 -2.18483959
## C44 0.43950120 -5.69247680 1.4268504329 -1.83371478
## C45 2.03830744 4.35799853 5.5267782992 3.79722903
## C46 -4.81300607 -1.74095728 2.0984333962 -5.12698097
## C47 4.74728866 -5.24546609 0.9251906314 5.78452500
## C48 4.07088643 0.30402026 -2.4957501466 -7.34065121
## C49 1.51266006 -3.34619470 0.1650280248 2.54848526
## C50 1.60061189 -7.40658869 -2.5046682043 2.97003364
## C51 -0.81738297 -3.87854565 0.1218804289 -0.46190067
## C52 0.59565960 1.26185714 4.6084198384 -11.94732054
## C53 -1.27170809 -2.36813571 4.2376419752 3.09677225
## C55 -1.46089837 3.02354410 -1.1335968074 -5.52610981
## C56 -1.02570615 9.46473539 7.1902190881 3.07683532
## C57 1.26172970 -2.17740519 7.6597087801 0.59799227
## C58 3.55868698 -4.61817936 2.4213191351 -2.33468945
## C59 2.89865373 -2.27957132 -3.0646073742 -2.71966145
## C60 -0.06290260 -2.89095124 7.1638832407 -2.67147399
## C61 -1.51619362 1.29589265 1.7285276943 2.34054736
## C62 -0.85094975 -3.61755037 5.5979770917 -1.23193711
## C63 1.52406711 1.42980498 1.0014832822 -4.16139880
## C64 -2.33189833 -5.08973468 2.9640242392 2.07464119
## C65 0.15464228 -0.08470294 -7.5446376669 -2.68024074
## C66 3.25575340 4.04572635 1.5837909565 1.83230186
## C67 3.58265822 2.52944819 1.7961365273 -4.31420259
## C68 -8.05474052 -4.50179122 -3.3154478468 1.13250364
## C69 -0.91314685 -2.17732906 1.9511791460 -1.36563092
## C70 0.20222317 0.87420105 0.4205271935 5.10614884
## C71 -0.74562831 4.76540487 1.2935067027 -1.12466359
## C72 -2.88239763 6.69197101 2.8190842479 0.21297474
## C73 5.62463282 -1.13222744 -3.2366737133 1.94757021
## C74 1.96262594 -0.28892510 1.3728188252 -1.72778411
## C75 -3.70888064 1.87315290 0.2868929294 -3.33635041
## C76 0.79622554 5.41493660 3.3357894264 -5.83524787
## C77 -7.92608634 -4.38512318 0.8249841166 -2.25052163
## C78 3.72405273 -1.92412908 -5.0411400095 -2.62768676
## C79 0.93951620 -5.62467399 1.3254731631 0.21035517
## C80 3.64991800 3.20590907 1.1810578046 -0.43391845
## C82 -1.22522009 1.79670223 0.0458316107 1.28440897
## C83 -4.02179944 1.76322805 -4.6786571060 -1.62141569
## C84 1.05471420 6.22178927 -3.4255349042 5.60615347
## C85 -6.36365164 13.34084949 -0.2760257905 4.61446141
## C86 -2.28078601 0.80148865 -0.3897809446 -1.82891247
## C87 -3.42558314 -5.28261157 -3.2727871023 2.97844543
## C89 8.31719569 6.01088176 -3.7730370559 2.37528382
## C90 -0.64666619 -0.56398807 -2.8658374784 -3.39541839
## C91 -3.04052450 1.54333638 2.0067897168 -2.64343803
## C92 -0.86733435 -1.25307377 -1.6147048641 -1.28806719
## C93 0.43644730 1.48965152 -0.5252331115 2.10417145
## C94 -3.22987793 -0.41619335 0.1868779233 -2.44624466
## C95 0.86111213 2.34766670 -4.7978226162 2.08265850
## C96 -1.98856986 0.90863145 6.7770280553 -5.82535617
## C97 3.60691094 3.39079180 -5.0287264686 -1.94759182
## C98 4.19151130 2.96750104 -2.8539136577 1.02476954
## C99 14.34700615 -2.88793037 -0.5042943302 2.06835038
## C100 -1.24083621 -0.27574592 -3.5782040521 3.57359645
## C101 1.56211373 -4.98010257 -6.7794061692 4.92571526
## C102 8.99462201 -2.76547606 -6.3704287682 3.41611461
## C103 -4.69881201 -7.83373353 -4.4455901867 -1.06024128
## NC1 0.02787146 1.23623345 -2.4400404460 0.13872039
## NC2 1.55097376 -1.02584577 -0.6756452346 -0.79317350
## NC3 3.65491140 -3.05803920 6.6797685269 2.98187606
## NC4 -5.04570353 3.73775169 -4.1538521224 0.23705193
## NC5 -6.60396764 -5.98628138 -1.4092037304 3.24450160
## NC6 7.17544596 6.16682880 -5.2772503760 4.22325612
## NC7 -6.66053481 1.66615761 -9.0056214790 3.78832094
## NC8 1.31000710 -1.64710771 7.8933333223 3.19686703
## NC9 -1.26261445 -1.17717171 -2.4407801083 -3.50102748
## NC10 0.28866524 -8.98597140 1.6283258700 -7.17723361
## NC11 -3.92062565 4.15702754 -1.5533525796 -0.47058091
## NC12 5.32548794 -3.39740145 0.5624017780 -11.91250360
## NC13 -3.52946827 1.42824966 3.6478436804 -1.71723832
## NC14 4.95047745 -1.64944479 5.6688338322 0.67932495
## NC15 -3.46572138 -0.72011104 0.8044219386 0.33952091
## NC16 0.02976076 0.31410742 8.1893788868 3.01903111
## NC17 -4.75483640 2.58061510 -1.1297331514 1.60294076
## NC18 2.51280105 4.46756531 -2.2439876793 0.94684324
## NC19 -4.90822828 3.64259388 0.0006159789 2.81347040
## NC20 3.31407237 3.33229259 -3.1705735796 1.57360384
## NC21 1.08809575 1.03288850 -4.2868056883 0.10079625
## NC22 -0.03301764 5.03100638 3.7182070165 -5.90052381
## NC23 -9.91756112 -6.85140602 -2.1613603236 2.88793662
## NC24 0.65268074 2.10740616 -2.4261244911 -2.14455414
## NC25 8.59325675 -1.26352274 -1.1771302280 -1.11622848
## NC26 -6.54145532 -1.00375048 0.6913316059 8.38242395
#making a metadat df containing all sample infromation data
mDat <- cbind(pDat, scores)
#remotes::install_github("wvictor14/plomics")
library(plomics)
#here, we'll select the Pvalue metric
variable_variance <- lmmatrix(dep = scores, ind = pDat[c(2:15)], metric = "Pvalue")
head(variable_variance)## PC1 PC2 PC3 PC4 PC5
## Age 4.433720e-01 1.024292e-03 5.357586e-01 0.1227241839 0.530243367
## Sex 2.270582e-01 2.730491e-01 4.905150e-01 0.9222153751 0.985665262
## COVID 3.356380e-04 3.558523e-03 3.231238e-11 0.2342246582 0.005592154
## ICU 8.607671e-04 1.152275e-10 1.203749e-01 0.0004498275 0.761884831
## APACHEII_Score 9.648283e-06 4.796524e-11 6.234301e-03 0.0039225543 0.022536445
## Charlson_Score 4.551605e-01 1.596603e-03 3.119950e-01 0.4360322298 0.847497524
## PC6 PC7 PC8 PC9 PC10 PC11
## Age 0.003551443 0.04887319 0.9698820 0.08404132 0.4838427 0.14276659
## Sex 0.924984016 0.74093414 0.6743761 0.53969685 0.5688295 0.21571274
## COVID 0.765978287 0.02029783 0.1465711 0.82483687 0.5066316 0.83510449
## ICU 0.698404893 0.19821494 0.6957646 0.92452028 0.9779782 0.50625488
## APACHEII_Score 0.456567963 0.51758869 0.2700249 0.37744914 0.6434340 0.47439984
## Charlson_Score 0.249114900 0.10373783 0.3765287 0.69639356 0.3802474 0.02343673
## PC12 PC13 PC14 PC15 PC16 PC17
## Age 0.88361422 0.29556981 0.1560049 0.6758504 0.94884057 0.6832243
## Sex 0.12288159 0.17095735 0.2707008 0.7513489 0.08798836 0.3760878
## COVID 0.28871134 0.36779251 0.8489379 0.2753187 0.89386734 0.4998182
## ICU 0.08508769 0.07605797 0.4620665 0.3548583 0.90081795 0.1395691
## APACHEII_Score 0.47503481 0.03731661 0.6887634 0.6241562 0.96863246 0.3662505
## Charlson_Score 0.06465515 0.17139990 0.8719106 0.5129812 0.90253659 0.5135770
## PC18 PC19 PC20 PC21 PC22 PC23
## Age 0.88442521 0.005217742 0.9607615 0.37280299 0.5185930 0.3420459
## Sex 0.43156896 0.142272226 0.4658982 0.35591767 0.7702244 0.5003367
## COVID 0.25625700 0.532989041 0.3405511 0.02320487 0.6135451 0.3112817
## ICU 0.01080291 0.583716805 0.7760423 0.79522088 0.3668543 0.2460771
## APACHEII_Score 0.09355615 0.961482917 0.7125361 0.95046979 0.9949991 0.9708908
## Charlson_Score 0.43556492 0.269060667 0.4242116 0.07719944 0.3677115 0.1525067
## PC24 PC25 PC26 PC27 PC28
## Age 0.23333502 0.52453069 0.71000558 0.5339782 0.45641686
## Sex 0.92204393 0.57985293 0.01979339 0.3029324 0.02703745
## COVID 0.51166564 0.38139380 0.79538660 0.3603583 0.81197760
## ICU 0.06641195 0.90489350 0.88716159 0.5934191 0.73924939
## APACHEII_Score 0.15238958 0.53764391 0.66193829 0.8974279 0.50100394
## Charlson_Score 0.11556830 0.09411374 0.38307618 0.2623510 0.02145716
## PC29 PC30
## Age 0.0001336431 0.1245905
## Sex 0.1733599130 0.9956886
## COVID 0.8094699294 0.7442335
## ICU 0.5637311577 0.7969355
## APACHEII_Score 0.3283939438 0.4591115
## Charlson_Score 0.0298356039 0.7890196
vv_plot <- variable_variance %>%
as.data.frame()
vv_plot <- as.data.frame(t(vv_plot))
vv_plot <- vv_plot %>%
mutate(Principle_Component = 1:30) %>%
dplyr::select(Principle_Component, everything())
head(vv_plot)## Principle_Component Age Sex COVID ICU
## PC1 1 0.443372048 0.2270582 3.356380e-04 8.607671e-04
## PC2 2 0.001024292 0.2730491 3.558523e-03 1.152275e-10
## PC3 3 0.535758592 0.4905150 3.231238e-11 1.203749e-01
## PC4 4 0.122724184 0.9222154 2.342247e-01 4.498275e-04
## PC5 5 0.530243367 0.9856653 5.592154e-03 7.618848e-01
## PC6 6 0.003551443 0.9249840 7.659783e-01 6.984049e-01
## APACHEII_Score Charlson_Score Mechanical_Ventilation Ventilator_free_days
## PC1 9.648283e-06 0.455160547 2.035603e-07 5.407286e-03
## PC2 4.796524e-11 0.001596603 3.001057e-06 6.660971e-05
## PC3 6.234301e-03 0.311995034 3.438765e-02 1.140585e-04
## PC4 3.922554e-03 0.436032230 1.228092e-02 4.958919e-01
## PC5 2.253645e-02 0.847497524 2.315671e-01 1.297751e-01
## PC6 4.565680e-01 0.249114900 2.960095e-01 3.598802e-01
## Hospital_free_days_post_45_days Ferritin_ng.ml CRP_mg.l
## PC1 2.161055e-03 5.641500e-02 0.0013990643
## PC2 9.070318e-09 3.268577e-01 0.0870827222
## PC3 1.276553e-06 7.301131e-06 0.0000294515
## PC4 3.399023e-01 5.905019e-01 0.7613512673
## PC5 3.001829e-01 8.238546e-01 0.7530516400
## PC6 1.702699e-01 7.176295e-01 0.8095881925
## Procalcitonin_ng.ml Lactate_mmol.l Fibrinogen_mg.dL
## PC1 0.466435480 0.359643697 0.084735902
## PC2 0.407907372 0.006193814 0.900148170
## PC3 0.029758491 0.095157140 0.002538692
## PC4 0.410411302 0.286958286 0.818851094
## PC5 0.008701715 0.821823536 0.336487280
## PC6 0.665651463 0.432498676 0.149312722
vv_plot <- vv_plot %>%
pivot_longer(cols = -c(Principle_Component), names_to = "variables", values_to = "pval")
vv_plot <- vv_plot %>%
mutate(pval_cat = case_when(
pval > 0.05 ~ "> 0.05",
pval < 0.05 & pval > 0.01 ~ "< 0.05",
pval < 0.01 & pval > 0.001 ~ "< 0.01",
pval < 0.001 ~ "< 0.001"
))
vv_plot %>%
ggplot(aes(x = Principle_Component, y = variables, fill = pval_cat)) +
geom_tile() +
theme_bw() +
labs(x = "PC", y = "Variables" , fill = "P value")vv_colpal <- c("< 0.001" = "#ef6a4c", "< 0.01" = "#f59e72", "< 0.05" = "#fde0c5", "> 0.05" = "white")
vv_plot$Principle_Component <- as.factor(vv_plot$Principle_Component)
str(vv_plot)## tibble [420 × 4] (S3: tbl_df/tbl/data.frame)
## $ Principle_Component: Factor w/ 30 levels "1","2","3","4",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ variables : chr [1:420] "Age" "Sex" "COVID" "ICU" ...
## $ pval : num [1:420] 4.43e-01 2.27e-01 3.36e-04 8.61e-04 9.65e-06 ...
## $ pval_cat : chr [1:420] "> 0.05" "> 0.05" "< 0.001" "< 0.001" ...
g3 <- vv_plot %>%
ggplot(aes(x = Principle_Component, y = variables, fill = pval_cat)) +
geom_tile(col = "lightgrey") +
theme_bw() +
scale_x_discrete(expand = c(0, 0)) +
scale_y_discrete(expand = c(0, 0)) +
scale_fill_manual(values = vv_colpal) +
coord_fixed() +
# theme(legend.position = "bottom") +
labs(x = "PC", y = "Variables" , fill = "P value")
# ASSIGNMENT 1: Repeat the lmmatrix function, but this time with using the Rsqaured value. Store it as a separate variable, and plot both the pval and rsquared plots one below each other.
# Instead of using `scale_fill_manual` for the plot, use `scale_fill_gradient(low = "", high = "#")`
rsq <- lmmatrix(dep = scores, ind = pDat[c(2:15)], metric = "Rsquared")
rsq <- rsq %>%
as.data.frame()
rsq <- as.data.frame(t(rsq))
rsq <- rsq %>%
mutate(Principle_Component = 1:30) %>%
dplyr::select(Principle_Component, everything())
head(rsq)## Principle_Component Age Sex COVID ICU
## PC1 1 0.004746062 0.0238182452 0.098889121 0.0859946047
## PC2 2 0.083606593 0.0208861737 0.066481503 0.2856273580
## PC3 3 0.003100076 0.0115152891 0.299867096 0.0193440583
## PC4 4 0.019103990 0.0013158244 0.011392135 0.0948872854
## PC5 5 0.003184566 0.0002347444 0.060269454 0.0007431426
## PC6 6 0.066508892 0.0012671448 0.000717059 0.0012149315
## APACHEII_Score Charlson_Score Mechanical_Ventilation Ventilator_free_days
## PC1 0.14660374 0.0045061211 0.19635489 0.060731067
## PC2 0.29547182 0.0775061355 0.16191424 0.120830111
## PC3 0.05877739 0.0082427650 0.03558802 0.113565869
## PC4 0.06514221 0.0049004727 0.04949967 0.003747719
## PC5 0.04126041 0.0002994187 0.01152171 0.018412669
## PC6 0.00447812 0.0106973907 0.00880372 0.006764889
## Hospital_free_days_post_45_days Ferritin_ng.ml CRP_mg.l
## PC1 0.073342365 0.0290411798 0.0793220901
## PC2 0.234656728 0.0077535666 0.0234252650
## PC3 0.172984201 0.1502774278 0.1317808459
## PC4 0.007347690 0.0023418570 0.0007465799
## PC5 0.008653592 0.0004011011 0.0008011664
## PC6 0.015111705 0.0010583402 0.0004700105
## Procalcitonin_ng.ml Lactate_mmol.l Fibrinogen_mg.dL
## PC1 0.004285549 0.0067715297 0.0237743019
## PC2 0.005530277 0.0588667977 0.0001274707
## PC3 0.037521591 0.0222970352 0.0711267185
## PC4 0.005471633 0.0091387516 0.0004246148
## PC5 0.054207104 0.0004105611 0.0074519270
## PC6 0.001510836 0.0049762262 0.0166949341
rsq <- rsq %>%
pivot_longer(cols = -c(Principle_Component), names_to = "variables", values_to = "rsq")
rsq$Principle_Component <- as.factor(rsq$Principle_Component)
str(rsq)## tibble [420 × 3] (S3: tbl_df/tbl/data.frame)
## $ Principle_Component: Factor w/ 30 levels "1","2","3","4",..: 1 1 1 1 1 1 1 1 1 1 ...
## $ variables : chr [1:420] "Age" "Sex" "COVID" "ICU" ...
## $ rsq : num [1:420] 0.00475 0.02382 0.09889 0.08599 0.1466 ...
g4 <- rsq %>%
ggplot(aes(x = Principle_Component, y = variables, fill = rsq)) +
geom_tile(col = "lightgrey") +
theme_bw() +
scale_x_discrete(expand = c(0, 0)) +
scale_y_discrete(expand = c(0, 0)) +
scale_fill_gradient(low = "white", high = "#ef6a4c") +
coord_fixed() +
# theme(legend.position = "bottom") +
labs(x = "PC", y = "Variables" , fill = "R-square")
ggarrange(g3, g4, ncol = 1, nrow = 2)We’ll now plot the first 2 PCs with the variables that seem to be contributing to the most variance in the data.
mDat %>%
ggplot(aes(x = PC1, y = PC2, colour = COVID)) +
geom_point(size = 3) +
# coord_cartesian(ylim = c(-130, 130), xlim = c(-130, 130)) +
labs( x = "Principle Component 1", y = "Principle Component 2", title = "COVID: PC1 vs PC2") +
scale_colour_manual(values = c("#5d666e", "#ff8533")) +
theme_minimal() mDat %>%
ggplot(aes(x = PC1, y = PC2, colour = ICU)) +
geom_point(size = 3) +
coord_cartesian(ylim = c(-130, 130), xlim = c(-130, 130)) +
labs( x = "Principle Component 1", y = "Principle Component 2", title = "ICU: PC1 vs PC2") +
scale_colour_manual(values = c("grey", "blue")) +
theme_minimal() mDat %>%
ggplot(aes(x = PC1, y = PC2, colour = Mechanical_Ventilation)) +
geom_point(size = 3) +
coord_cartesian(ylim = c(-130, 130), xlim = c(-130, 130)) +
labs( x = "Principle Component 1", y = "Principle Component 2", title = "Mechanical Ventilation: PC1 vs PC2") +
scale_colour_manual(values = c("grey", "purple")) +
theme_minimal()mDat %>%
# mutate(AP_score = case_when(
# APACHEII_Score <= 10 ~ "less_than_10",
# between(APACHEII_Score, 11, 20) ~ "eleven_to_20",
# between(APACHEII_Score, 21, 30) ~ "twentyone_to_30",
# between(APACHEII_Score, 31, 40) ~ "thirtyone_to_40",
# APACHEII_Score > 40 ~ "more_than_40")) %>%
ggplot(aes(x = PC1, y = PC2, colour = APACHEII_Score)) +
geom_point(size = 3) +
coord_cartesian(ylim = c(-130, 130), xlim = c(-130, 130)) +
labs( x = "Principle Component 1", y = "Principle Component 2", title = "APACHEII_Score", subtitle = "Score of disease-severity measured upon admittance to ICU") +
theme_minimal() #EXTRA - COMPARE PC2 and PC3
#PC2-3
mDat %>%
ggplot(aes(x = PC2, y = PC3, colour = Ventilator_free_days)) +
geom_point(size = 3) +
coord_cartesian(ylim = c(-100, 100), xlim = c(-100, 100)) +
labs( x = "Principle Component 1", y = "Principle Component 2", title = "Ventilator Free Days : PC1 vs PC2") +
#scale_colour_manual(values = c("grey", "purple")) +
theme_minimal()mDat %>%
ggplot(aes(x = PC2, y = PC3, colour = ICU)) +
geom_point(size = 3) +
coord_cartesian(ylim = c(-100, 100), xlim = c(-100, 100)) +
labs( x = "Principle Component 1", y = "Principle Component 2", title = "ICU: PC1 vs PC2") +
scale_colour_manual(values = c("grey", "blue")) +
theme_minimal() Okay, now moving into DE analysis: we’re going to use the limma package, rather than th emore popualr DESeq2 or edgeR packages. There’s broadly 3 steps to pulling out DE genes:
mm_covid <- model.matrix(~COVID, pDat)
#always better to use an intercept, as the starting value is not forced to zero
mm_covid## (Intercept) COVIDyes
## C1 1 1
## C2 1 1
## C3 1 1
## C4 1 1
## C5 1 1
## C6 1 1
## C7 1 1
## C8 1 1
## C9 1 1
## C10 1 1
## C11 1 1
## C12 1 1
## C13 1 1
## C14 1 1
## C15 1 1
## C16 1 1
## C17 1 1
## C18 1 1
## C19 1 1
## C20 1 1
## C21 1 1
## C22 1 1
## C23 1 1
## C24 1 1
## C25 1 1
## C26 1 1
## C27 1 1
## C28 1 1
## C29 1 1
## C30 1 1
## C31 1 1
## C32 1 1
## C33 1 1
## C34 1 1
## C35 1 1
## C36 1 1
## C37 1 1
## C38 1 1
## C39 1 1
## C40 1 1
## C41 1 1
## C42 1 1
## C43 1 1
## C44 1 1
## C45 1 1
## C46 1 1
## C47 1 1
## C48 1 1
## C49 1 1
## C50 1 1
## C51 1 1
## C52 1 1
## C53 1 1
## C55 1 1
## C56 1 1
## C57 1 1
## C58 1 1
## C59 1 1
## C60 1 1
## C61 1 1
## C62 1 1
## C63 1 1
## C64 1 1
## C65 1 1
## C66 1 1
## C67 1 1
## C68 1 1
## C69 1 1
## C70 1 1
## C71 1 1
## C72 1 1
## C73 1 1
## C74 1 1
## C75 1 1
## C76 1 1
## C77 1 1
## C78 1 1
## C79 1 1
## C80 1 1
## C82 1 1
## C83 1 1
## C84 1 1
## C85 1 1
## C86 1 1
## C87 1 1
## C89 1 1
## C90 1 1
## C91 1 1
## C92 1 1
## C93 1 1
## C94 1 1
## C95 1 1
## C96 1 1
## C97 1 1
## C98 1 1
## C99 1 1
## C100 1 1
## C101 1 1
## C102 1 1
## C103 1 1
## NC1 1 0
## NC2 1 0
## NC3 1 0
## NC4 1 0
## NC5 1 0
## NC6 1 0
## NC7 1 0
## NC8 1 0
## NC9 1 0
## NC10 1 0
## NC11 1 0
## NC12 1 0
## NC13 1 0
## NC14 1 0
## NC15 1 0
## NC16 1 0
## NC17 1 0
## NC18 1 0
## NC19 1 0
## NC20 1 0
## NC21 1 0
## NC22 1 0
## NC23 1 0
## NC24 1 0
## NC25 1 0
## NC26 1 0
## attr(,"assign")
## [1] 0 1
## attr(,"contrasts")
## attr(,"contrasts")$COVID
## [1] "contr.treatment"
rownames(pDat) == colnames(eDat)## [1] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
## [16] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
## [31] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
## [46] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
## [61] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
## [76] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
## [91] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
## [106] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
## [121] TRUE TRUE TRUE TRUE TRUE TRUE
efit_COVID <- lmFit(eNorm, mm_covid)
efit_COVID <- efit_COVID %>%
eBayes()
#"BH", "BY" and "holm"
topTable(efit_COVID, coef = "COVIDyes", adjust.method = "fdr", p.value = 0.05)## logFC AveExpr t P.Value adj.P.Val B
## GBGT1 -14.346965 13.119938 -8.608852 2.704926e-14 3.208042e-10 21.74699
## MCM6 13.006445 20.821294 8.119125 3.863965e-13 1.759204e-09 19.24480
## SLC12A9 -95.036340 100.648629 -8.092907 4.449926e-13 1.759204e-09 19.11189
## SLC15A3 -59.232204 68.814556 -7.998129 7.405414e-13 2.195705e-09 18.63245
## MAPK8IP3 -18.433847 29.398845 -7.874219 1.437384e-12 3.409474e-09 18.00811
## CDC7 3.365151 5.656738 7.711515 3.417089e-12 6.754446e-09 17.19281
## AIF1 -323.686454 472.519567 -7.566778 7.346232e-12 1.244662e-08 16.47216
## CLSPN 2.952676 4.133007 7.437656 1.448122e-11 2.146841e-08 15.83317
## PITPNM1 -16.397367 24.699942 -7.409046 1.682170e-11 2.216727e-08 15.69211
## TWF2 -84.289346 100.564424 -7.327147 2.580083e-11 3.059979e-08 15.28940
topTable(efit_COVID, coef = "COVIDyes", adjust.method = "fdr", p.value = 0.05, n = Inf)## logFC AveExpr t P.Value adj.P.Val
## GBGT1 -1.434697e+01 1.311994e+01 -8.608852 2.704926e-14 3.208042e-10
## MCM6 1.300644e+01 2.082129e+01 8.119125 3.863965e-13 1.759204e-09
## SLC12A9 -9.503634e+01 1.006486e+02 -8.092907 4.449926e-13 1.759204e-09
## SLC15A3 -5.923220e+01 6.881456e+01 -7.998129 7.405414e-13 2.195705e-09
## MAPK8IP3 -1.843385e+01 2.939884e+01 -7.874219 1.437384e-12 3.409474e-09
## CDC7 3.365151e+00 5.656738e+00 7.711515 3.417089e-12 6.754446e-09
## AIF1 -3.236865e+02 4.725196e+02 -7.566778 7.346232e-12 1.244662e-08
## CLSPN 2.952676e+00 4.133007e+00 7.437656 1.448122e-11 2.146841e-08
## PITPNM1 -1.639737e+01 2.469994e+01 -7.409046 1.682170e-11 2.216727e-08
## TWF2 -8.428935e+01 1.005644e+02 -7.327147 2.580083e-11 3.059979e-08
## METRNL -1.687047e+01 1.563471e+01 -7.302704 2.930404e-11 3.159509e-08
## CARS2 -1.769328e+01 3.037522e+01 -7.267471 3.519766e-11 3.316324e-08
## COTL1 -7.538105e+02 1.129329e+03 -7.261266 3.635094e-11 3.316324e-08
## TTC9 -2.453700e+01 1.943297e+01 -7.232080 4.229734e-11 3.583189e-08
## HPS6 -1.083323e+01 1.705239e+01 -7.196176 5.094719e-11 4.028224e-08
## RNA28SN4 -2.351735e+03 1.437686e+03 -7.147384 6.556764e-11 4.860201e-08
## VPS37C -6.757038e+00 1.213700e+01 -7.131494 7.117211e-11 4.965301e-08
## GPR132 -1.910672e+01 2.743879e+01 -7.095412 8.572033e-11 5.648017e-08
## PLEC -4.944514e+01 6.690541e+01 -7.033476 1.178580e-10 6.429025e-08
## RNA18SN2 -1.765594e+03 1.965368e+03 -7.031177 1.192568e-10 6.429025e-08
## RNA18SN3 -1.765594e+03 1.965368e+03 -7.031177 1.192568e-10 6.429025e-08
## RNA18SN4 -1.765594e+03 1.965368e+03 -7.031177 1.192568e-10 6.429025e-08
## SLC8B1 -2.405528e+01 4.169616e+01 -6.987616 1.490853e-10 7.687616e-08
## PELI3 -3.388208e+00 4.537970e+00 -6.956046 1.752061e-10 8.658102e-08
## FBP1 -2.401931e+01 2.618608e+01 -6.929205 2.009373e-10 9.532467e-08
## SYNGR2 -6.091035e+01 8.737147e+01 -6.917805 2.129648e-10 9.714471e-08
## TMCO6 -6.313286e+00 1.591094e+01 -6.902518 2.302167e-10 1.000180e-07
## MCM4 9.218095e+00 1.195038e+01 6.890663 2.445403e-10 1.000180e-07
## STK11IP -1.188605e+01 2.060218e+01 -6.890644 2.445634e-10 1.000180e-07
## HAAO -3.431322e+00 3.365732e+00 -6.867883 2.745787e-10 1.085501e-07
## EZH2 4.604770e+00 9.072242e+00 6.852524 2.968619e-10 1.107072e-07
## SIN3B -9.051460e+00 2.379947e+01 -6.851306 2.987041e-10 1.107072e-07
## DTL 3.365054e+00 3.235270e+00 6.836979 3.212329e-10 1.139801e-07
## ZNF362 -3.390724e+00 9.425953e+00 -6.833618 3.267557e-10 1.139801e-07
## NAPSA -2.570444e+01 2.401286e+01 -6.786494 4.148376e-10 1.405707e-07
## STRN4 -2.633574e+01 5.213295e+01 -6.775573 4.383851e-10 1.444235e-07
## RFC5 2.779520e+00 6.068064e+00 6.763647 4.656111e-10 1.463858e-07
## SLC44A1 1.933902e+01 4.453388e+01 6.762200 4.690270e-10 1.463858e-07
## IER5L -9.564019e-01 9.050714e-01 -6.730716 5.497625e-10 1.671842e-07
## SUV39H2 1.242065e+00 2.070052e+00 6.719719 5.810791e-10 1.722900e-07
## CSK -1.448668e+02 2.366198e+02 -6.706690 6.204697e-10 1.794822e-07
## TNFRSF8 -1.032646e+01 1.208855e+01 -6.673915 7.315955e-10 1.936512e-07
## TRAPPC12 -1.014942e+01 1.905027e+01 -6.672843 7.355456e-10 1.936512e-07
## GINS4 1.555484e+00 2.236294e+00 6.670259 7.451476e-10 1.936512e-07
## RACGAP1 5.228206e+00 9.414088e+00 6.669703 7.472331e-10 1.936512e-07
## OXER1 -7.318034e+00 9.987774e+00 -6.668676 7.510923e-10 1.936512e-07
## MELK 1.974919e+00 1.925849e+00 6.644067 8.497659e-10 2.135347e-07
## SELENOI 4.929237e+00 9.995349e+00 6.640701 8.642213e-10 2.135347e-07
## ZNF367 2.110405e+00 3.446861e+00 6.631763 9.037884e-10 2.162149e-07
## SIPA1 -9.705955e+01 1.324994e+02 -6.630060 9.115298e-10 2.162149e-07
## STIL 1.868496e+00 2.017819e+00 6.617917 9.686473e-10 2.217978e-07
## SIGLEC7 -1.925121e+01 2.992479e+01 -6.615254 9.816386e-10 2.217978e-07
## PITPNC1 -1.624348e+01 3.865031e+01 -6.613322 9.911705e-10 2.217978e-07
## KPNA2 1.054039e+01 3.099392e+01 6.598429 1.067778e-09 2.345157e-07
## CEP57L1 1.190039e+00 3.212878e+00 6.573353 1.210173e-09 2.609573e-07
## FBXO5 3.233711e+00 5.296409e+00 6.567694 1.244811e-09 2.636332e-07
## CD1D -2.669206e+01 4.675289e+01 -6.555611 1.322083e-09 2.750860e-07
## VENTX -6.656384e+00 8.677281e+00 -6.547011 1.379940e-09 2.821739e-07
## CEBPA -6.062752e+01 7.814298e+01 -6.526476 1.528388e-09 3.069950e-07
## WEE1 2.815491e+00 4.494965e+00 6.523251 1.553094e-09 3.069950e-07
## TECPR1 -1.673644e+01 3.910663e+01 -6.509893 1.659673e-09 3.226840e-07
## ATAD2 8.193469e+00 1.211435e+01 6.479874 1.926203e-09 3.684640e-07
## PPP1R9B -4.637310e+01 1.324204e+02 -6.471380 2.008994e-09 3.782011e-07
## AP2A1 -1.458013e+01 3.873160e+01 -6.447800 2.257671e-09 4.183747e-07
## SPRYD3 -2.278590e+01 4.861012e+01 -6.441414 2.330081e-09 4.238679e-07
## PLD2 -7.752977e+00 1.482156e+01 -6.438883 2.359418e-09 4.238679e-07
## CHEK1 3.152437e+00 4.014832e+00 6.435893 2.394532e-09 4.238679e-07
## SLC39A13 -7.315309e+00 9.362732e+00 -6.427152 2.500176e-09 4.360600e-07
## CIC -2.152742e+01 3.983140e+01 -6.423808 2.541794e-09 4.368939e-07
## TBC1D10A -9.413707e+00 1.535882e+01 -6.419741 2.593325e-09 4.393833e-07
## SLFN13 8.397156e+00 1.754261e+01 6.397938 2.887693e-09 4.823668e-07
## CDK2 4.421401e+00 1.049011e+01 6.394161 2.941920e-09 4.834077e-07
## FBH1 1.250903e+01 5.344644e+01 6.391861 2.975444e-09 4.834077e-07
## ZWILCH 2.725492e+00 4.909032e+00 6.385719 3.066796e-09 4.865877e-07
## NDC80 3.541071e+00 5.917033e+00 6.385040 3.077072e-09 4.865877e-07
## RRM2 2.459294e+01 2.452927e+01 6.379165 3.167339e-09 4.942715e-07
## PALM2AKAP2 1.440982e+01 1.760557e+01 6.372235 3.277181e-09 5.031301e-07
## SH3TC1 -1.417935e+01 1.552069e+01 -6.370273 3.308950e-09 5.031301e-07
## BRAT1 -1.373363e+01 1.303038e+01 -6.364075 3.411324e-09 5.121304e-07
## MKI67 1.277033e+01 1.319601e+01 6.361466 3.455360e-09 5.122571e-07
## NCKAP5L -5.855128e+00 8.289657e+00 -6.358039 3.514031e-09 5.145236e-07
## FUT8 4.274893e+00 8.212014e+00 6.353879 3.586570e-09 5.187405e-07
## CDC6 4.620975e+00 4.799886e+00 6.350459 3.647327e-09 5.211723e-07
## MAFK -4.588700e+00 9.546257e+00 -6.320655 4.221441e-09 5.960273e-07
## ZNF775 -1.926506e+00 2.188327e+00 -6.310336 4.440270e-09 6.195482e-07
## IMPDH1 -1.468623e+02 2.316221e+02 -6.280438 5.139308e-09 7.033194e-07
## MED22 -1.197258e+01 3.048407e+01 -6.279645 5.159257e-09 7.033194e-07
## COLGALT1 -6.244117e+01 1.124530e+02 -6.272740 5.336174e-09 7.191707e-07
## GINS1 1.864102e+00 1.987370e+00 6.266253 5.507843e-09 7.274151e-07
## SGSM2 -1.271225e+01 2.487688e+01 -6.265800 5.520014e-09 7.274151e-07
## WDHD1 1.957802e+00 2.838481e+00 6.245613 6.090928e-09 7.875990e-07
## EFHD2 -2.315758e+02 4.131762e+02 -6.244987 6.109537e-09 7.875990e-07
## GEN1 2.517165e+00 5.313267e+00 6.225380 6.721395e-09 8.532384e-07
## CDC42EP2 -2.506899e+01 2.776886e+01 -6.222597 6.812987e-09 8.532384e-07
## C19orf38 -1.263749e+02 1.659232e+02 -6.221948 6.834540e-09 8.532384e-07
## FAM89B -3.946473e+01 5.020861e+01 -6.214544 7.085015e-09 8.743713e-07
## HDGFL2 -1.045937e+01 1.668326e+01 -6.212227 7.165242e-09 8.743713e-07
## ASGR1 -6.601795e+00 5.879841e+00 -6.208723 7.288248e-09 8.743713e-07
## GNPTG -1.590430e+01 3.084933e+01 -6.208428 7.298715e-09 8.743713e-07
## AAMP -1.771167e+01 4.330290e+01 -6.194270 7.818052e-09 9.272210e-07
## WDR76 2.875126e+00 5.510450e+00 6.184808 8.185252e-09 9.601628e-07
## NCAPH 2.535512e+00 2.934950e+00 6.182990 8.257724e-09 9.601628e-07
## NAGS -7.411353e-01 9.556516e-01 -6.176749 8.511311e-09 9.800402e-07
## PARPBP 1.526223e+00 2.206733e+00 6.173002 8.667248e-09 9.883997e-07
## LSP1 -3.612833e+02 6.114417e+02 -6.166517 8.943777e-09 1.010221e-06
## ARHGAP11A 3.378091e+00 5.148749e+00 6.162789 9.106659e-09 1.018915e-06
## FUT7 -3.577613e+01 3.223891e+01 -6.150112 9.682694e-09 1.073241e-06
## DONSON 2.452144e+00 6.118128e+00 6.147679 9.797251e-09 1.075883e-06
## RAB40C -5.440551e+00 8.201873e+00 -6.121473 1.111915e-08 1.209845e-06
## SREBF1 -7.638235e+00 1.180905e+01 -6.107269 1.190739e-08 1.273418e-06
## SCAP -2.241244e+01 4.630877e+01 -6.107081 1.191816e-08 1.273418e-06
## CD37 -8.445797e+01 1.999032e+02 -6.088067 1.306088e-08 1.383054e-06
## CUEDC1 -8.524510e+00 1.455608e+01 -6.084514 1.328606e-08 1.394448e-06
## SLC25A11 -1.858472e+01 3.749459e+01 -6.072898 1.404916e-08 1.461606e-06
## TIMELESS 5.027039e+00 9.411419e+00 6.066599 1.448083e-08 1.493414e-06
## FAM20C -5.460280e+00 5.563845e+00 -6.063731 1.468166e-08 1.501074e-06
## PAGR1 -1.027707e+01 2.312246e+01 -6.060974 1.487733e-08 1.508078e-06
## PGLS -3.902057e+01 4.444768e+01 -6.055158 1.529847e-08 1.533525e-06
## NUSAP1 7.947137e+00 9.537710e+00 6.053956 1.538697e-08 1.533525e-06
## TAGLN -2.403904e+01 2.005573e+01 -6.049808 1.569623e-08 1.551311e-06
## SPAG7 -1.793228e+01 2.973020e+01 -6.044078 1.613349e-08 1.581349e-06
## AP1M1 -1.895539e+01 4.827055e+01 -6.040839 1.638594e-08 1.592929e-06
## TNNI2 -7.844730e+00 6.999728e+00 -6.033903 1.693970e-08 1.627430e-06
## LRRC25 -1.260779e+02 2.524165e+02 -6.032973 1.701529e-08 1.627430e-06
## TOP2A 1.173764e+01 1.095043e+01 6.029749 1.728004e-08 1.627736e-06
## ARHGAP4 -1.150623e+02 1.336422e+02 -6.027816 1.744074e-08 1.627736e-06
## TTLL12 -5.193665e+00 1.099754e+01 -6.027398 1.747567e-08 1.627736e-06
## PGAP6 -3.674416e+01 5.542591e+01 -6.026304 1.756748e-08 1.627736e-06
## ACTB -4.416516e+03 7.242785e+03 -6.023213 1.782930e-08 1.639190e-06
## CARD9 -5.148067e+00 4.883578e+00 -6.014486 1.858950e-08 1.695934e-06
## HELLS 1.434287e+00 1.789444e+00 6.010297 1.896560e-08 1.711549e-06
## SMC2 4.941588e+00 7.879914e+00 6.009376 1.904928e-08 1.711549e-06
## CEP20 5.250986e+00 1.786974e+01 5.996530 2.025509e-08 1.806205e-06
## KNL1 3.142014e+00 3.506061e+00 5.987436 2.115375e-08 1.872265e-06
## TRIP13 1.701860e+00 1.759339e+00 5.981703 2.174023e-08 1.909920e-06
## TOR4A -1.436832e+01 2.554924e+01 -5.978529 2.207178e-08 1.924789e-06
## DNA2 1.815758e+00 3.229567e+00 5.970755 2.290506e-08 1.982876e-06
## DHRSX -6.304801e+00 1.429759e+01 -5.966080 2.342084e-08 2.012834e-06
## MMP17 -1.828603e+00 1.189793e+00 -5.956441 2.452077e-08 2.092204e-06
## ASPM 4.030027e+00 3.928611e+00 5.954733 2.472090e-08 2.094213e-06
## CD300C -1.320832e+01 1.878104e+01 -5.944251 2.598460e-08 2.185655e-06
## SMC4 1.294286e+01 3.347087e+01 5.935408 2.709984e-08 2.263409e-06
## NUCB1 -1.160390e+02 1.311204e+02 -5.927199 2.817714e-08 2.336929e-06
## TRAF7 -1.402147e+01 3.146933e+01 -5.912939 3.014949e-08 2.483145e-06
## PDLIM2 -1.786317e+01 3.011743e+01 -5.903775 3.148785e-08 2.575489e-06
## PLK4 2.686394e+00 3.109371e+00 5.899384 3.214957e-08 2.587763e-06
## GPR35 -2.861118e+00 2.643002e+00 -5.898829 3.223415e-08 2.587763e-06
## CENPF 4.990910e+00 5.338564e+00 5.898447 3.229248e-08 2.587763e-06
## KNTC1 5.045357e+00 1.035805e+01 5.896876 3.253369e-08 2.589595e-06
## LRRC61 -3.670367e+00 4.476915e+00 -5.893677 3.303013e-08 2.611582e-06
## CSNK1G2 -1.992533e+01 4.134168e+01 -5.882360 3.484675e-08 2.736970e-06
## BRCA2 2.576919e+00 3.651334e+00 5.866319 3.759095e-08 2.933083e-06
## NOTCH4 -1.471728e+00 1.992060e+00 -5.857608 3.916885e-08 3.036226e-06
## CYBA -1.913609e+02 2.018822e+02 -5.855928 3.948055e-08 3.037412e-06
## MARCO -2.886291e+01 2.188781e+01 -5.854772 3.969636e-08 3.037412e-06
## SHCBP1 5.649576e+00 6.224003e+00 5.852804 4.006660e-08 3.046089e-06
## GAA -4.058794e+01 5.734432e+01 -5.851115 4.038702e-08 3.050892e-06
## GFPT1 5.589995e+00 1.363996e+01 5.846374 4.129997e-08 3.085015e-06
## LSM6 -1.100738e+01 2.195575e+01 -5.846071 4.135897e-08 3.085015e-06
## SEPTIN11 6.931311e+00 1.473516e+01 5.841482 4.226333e-08 3.132769e-06
## TBC1D22A -1.246106e+01 3.013958e+01 -5.828431 4.494212e-08 3.310643e-06
## KIF11 6.789374e+00 7.513803e+00 5.824794 4.571779e-08 3.346994e-06
## TTYH3 -1.137337e+01 2.129215e+01 -5.821553 4.642022e-08 3.377569e-06
## NCAPG 5.864143e+00 6.135755e+00 5.819171 4.694313e-08 3.394789e-06
## SUMF1 -1.269296e+01 2.799574e+01 -5.817707 4.726742e-08 3.397525e-06
## SLC43A2 -6.180080e+01 1.304071e+02 -5.809907 4.903238e-08 3.503157e-06
## OSGIN1 -2.272714e+00 2.115793e+00 -5.798214 5.180016e-08 3.678742e-06
## ZNF385A -3.119815e+01 3.754878e+01 -5.793677 5.291481e-08 3.697343e-06
## STK32C -5.433245e+00 6.029002e+00 -5.793342 5.299798e-08 3.697343e-06
## SPDL1 1.993779e+00 3.972153e+00 5.792006 5.333133e-08 3.697343e-06
## FANCI 6.509963e+00 1.061400e+01 5.791112 5.355538e-08 3.697343e-06
## NCAPD2 1.350116e+01 3.616550e+01 5.790851 5.362082e-08 3.697343e-06
## SLC25A6 -1.272837e+02 1.450113e+02 -5.780514 5.628362e-08 3.858519e-06
## CEP55 2.675836e+00 2.924191e+00 5.777817 5.699931e-08 3.885125e-06
## EIF3D -5.413262e+01 1.697161e+02 -5.776052 5.747253e-08 3.894996e-06
## MNT -9.135113e+00 2.408578e+01 -5.765957 6.025406e-08 4.032520e-06
## ADIPOR2 1.726768e+01 6.453421e+01 5.764277 6.072965e-08 4.032520e-06
## ZGPAT -1.519889e+01 2.003335e+01 -5.764200 6.075164e-08 4.032520e-06
## NSD2 7.176432e+00 1.704069e+01 5.763812 6.086181e-08 4.032520e-06
## CFP -1.380864e+02 1.664709e+02 -5.761692 6.146853e-08 4.050093e-06
## CRYL1 -5.438219e+00 1.266628e+01 -5.757460 6.269737e-08 4.087273e-06
## ORC1 2.207785e+00 2.570500e+00 5.757067 6.281275e-08 4.087273e-06
## CIP2A 1.980445e+00 2.647639e+00 5.756204 6.306669e-08 4.087273e-06
## RAB11B -1.165190e+01 1.793012e+01 -5.751236 6.454855e-08 4.160575e-06
## LILRB2 -1.399386e+02 2.983491e+02 -5.747038 6.582712e-08 4.220052e-06
## REXO1 -3.722024e+00 8.139960e+00 -5.740625 6.782840e-08 4.324972e-06
## RIPOR1 -1.272287e+01 3.157259e+01 -5.739440 6.820478e-08 4.325715e-06
## SLC27A1 -8.867537e+00 9.182019e+00 -5.737494 6.882721e-08 4.341972e-06
## TNFAIP8L2 -5.366415e+01 1.078734e+02 -5.735864 6.935261e-08 4.351968e-06
## DSCC1 1.120921e+00 1.277179e+00 5.732365 7.049447e-08 4.400339e-06
## ZWINT 6.425062e+00 7.083687e+00 5.723555 7.345093e-08 4.560880e-06
## KLF16 -1.188263e+01 2.217280e+01 -5.720795 7.440177e-08 4.589014e-06
## ARF5 -9.363464e+01 1.345374e+02 -5.720001 7.467788e-08 4.589014e-06
## MVP -1.996165e+02 3.117979e+02 -5.715734 7.617708e-08 4.655175e-06
## NANS -1.686090e+01 2.880041e+01 -5.714715 7.653955e-08 4.655175e-06
## XRCC2 8.081690e-01 1.202861e+00 5.711696 7.762322e-08 4.696446e-06
## CYTH4 -4.388167e+02 6.955792e+02 -5.710629 7.801011e-08 4.696446e-06
## TCF19 6.052519e+00 8.786556e+00 5.707247 7.924795e-08 4.733722e-06
## NSMF -8.185821e+00 1.117961e+01 -5.706276 7.960689e-08 4.733722e-06
## RNA28SN1 -2.740657e+03 2.785014e+03 -5.705683 7.982667e-08 4.733722e-06
## MTRF1 2.296057e+00 7.471736e+00 5.704292 8.034512e-08 4.740762e-06
## PPP1R12C -4.055237e+01 6.496655e+01 -5.694581 8.405734e-08 4.935248e-06
## SF3B4 -8.922112e+00 3.606203e+01 -5.692003 8.507067e-08 4.970139e-06
## PSKH1 -6.732842e+00 1.908057e+01 -5.690642 8.561052e-08 4.977161e-06
## FKRP -1.664295e+00 5.317226e+00 -5.689022 8.625744e-08 4.990309e-06
## TUBA1A -5.404777e+02 8.119862e+02 -5.687649 8.680930e-08 4.997856e-06
## UCHL5 4.576874e+00 1.745539e+01 5.685450 8.770079e-08 5.024789e-06
## CENPJ 1.658181e+00 3.495916e+00 5.682554 8.888819e-08 5.068336e-06
## KIF23 2.102446e+00 3.069673e+00 5.679686 9.007990e-08 5.081370e-06
## ARRDC1 -1.380806e+01 2.473697e+01 -5.679490 9.016217e-08 5.081370e-06
## FCGRT -1.759900e+02 2.520064e+02 -5.678917 9.040211e-08 5.081370e-06
## PSAT1 2.597894e+00 4.080667e+00 5.677180 9.113415e-08 5.098354e-06
## PRPF6 -3.149215e+01 6.287130e+01 -5.669539 9.442288e-08 5.241298e-06
## BUB1B 3.027118e+00 2.893909e+00 5.669196 9.457317e-08 5.241298e-06
## SYTL1 -2.583248e+01 3.094226e+01 -5.668118 9.504725e-08 5.243071e-06
## TYMS 1.217314e+01 1.204017e+01 5.664449 9.667793e-08 5.308334e-06
## ALDOA -4.492800e+02 6.776759e+02 -5.662907 9.737122e-08 5.321764e-06
## POLM -7.572852e+00 2.148772e+01 -5.659753 9.880498e-08 5.355835e-06
## PELATON -9.451366e+01 1.215682e+02 -5.659266 9.902825e-08 5.355835e-06
## RXRA -7.386569e+01 1.622886e+02 -5.658567 9.934939e-08 5.355835e-06
## PIP4K2C 1.188234e+01 3.374976e+01 5.652642 1.021136e-07 5.469679e-06
## RNPEPL1 -1.008510e+02 1.060256e+02 -5.652072 1.023835e-07 5.469679e-06
## SUGP1 -1.027284e+01 2.453559e+01 -5.649215 1.037471e-07 5.517673e-06
## IKBKG -2.493048e+01 5.184681e+01 -5.645587 1.055037e-07 5.578146e-06
## PHRF1 -4.677367e+00 1.260564e+01 -5.644054 1.062549e-07 5.578146e-06
## CCNA2 5.688480e+00 6.591694e+00 5.643972 1.062952e-07 5.578146e-06
## RTL8C -8.171803e+00 1.131030e+01 -5.641681 1.074278e-07 5.612746e-06
## RFWD3 6.546143e+00 1.810170e+01 5.639017 1.087594e-07 5.657398e-06
## TRABD -3.137940e+01 3.744705e+01 -5.637898 1.093237e-07 5.661915e-06
## CATSPER1 -4.552769e+00 5.990464e+00 -5.633508 1.115652e-07 5.752883e-06
## ZNF865 -8.312071e+00 1.158684e+01 -5.626517 1.152277e-07 5.916021e-06
## GNB2 -2.109958e+02 2.760143e+02 -5.624638 1.162323e-07 5.927895e-06
## SKA3 1.438813e+00 1.473196e+00 5.624217 1.164586e-07 5.927895e-06
## SNAPC2 -4.962748e+00 4.923667e+00 -5.619776 1.188710e-07 6.024828e-06
## ZBTB7A -8.725320e+00 2.384968e+01 -5.615616 1.211753e-07 6.067961e-06
## SPAG5 5.193726e+00 6.717902e+00 5.615517 1.212307e-07 6.067961e-06
## DOK1 -3.503910e+01 6.841051e+01 -5.615470 1.212569e-07 6.067961e-06
## NAPRT -2.854350e+01 2.198267e+01 -5.613168 1.225516e-07 6.106984e-06
## PSMF1 -1.958157e+01 7.245226e+01 -5.610644 1.239868e-07 6.151100e-06
## ZNF467 -3.118722e+01 4.233810e+01 -5.609793 1.244742e-07 6.151100e-06
## FXYD5 -1.756734e+02 1.842737e+02 -5.605742 1.268212e-07 6.241074e-06
## PARL -1.905559e+01 3.934935e+01 -5.601259 1.294685e-07 6.340306e-06
## AGAP3 -9.725233e+00 1.427110e+01 -5.600526 1.299068e-07 6.340306e-06
## TMEM187 -3.342810e+00 4.428668e+00 -5.599121 1.307500e-07 6.355307e-06
## AKT1 -3.564523e+01 1.027137e+02 -5.592049 1.350787e-07 6.538911e-06
## DENND6B -3.811199e+00 3.805693e+00 -5.585229 1.393854e-07 6.711120e-06
## TOM1L2 -3.993263e+00 1.523963e+01 -5.584634 1.397678e-07 6.711120e-06
## CDC25A 1.965911e+00 2.056359e+00 5.581859 1.415632e-07 6.765331e-06
## ZNF524 -7.565237e+00 6.226857e+00 -5.581131 1.420377e-07 6.765331e-06
## SUN2 -7.598045e+01 2.153823e+02 -5.577673 1.443140e-07 6.819144e-06
## CDC45 2.822410e+00 3.003641e+00 5.577668 1.443175e-07 6.819144e-06
## RNH1 -3.029380e+01 3.276725e+01 -5.572806 1.475786e-07 6.936939e-06
## C1orf54 -1.542913e+00 1.723211e+00 -5.572215 1.479802e-07 6.936939e-06
## HMOX1 -6.350148e+01 7.744090e+01 -5.568122 1.507888e-07 7.040769e-06
## ZYX -5.319777e+02 7.049949e+02 -5.565376 1.527021e-07 7.102147e-06
## LIMD2 -2.553577e+02 3.674818e+02 -5.559754 1.566947e-07 7.232642e-06
## ARFGAP1 -2.390732e+01 3.094574e+01 -5.559708 1.567276e-07 7.232642e-06
## BUB1 7.548501e+00 7.294151e+00 5.556365 1.591506e-07 7.315991e-06
## MAP1S -7.152296e+00 8.371213e+00 -5.553229 1.614558e-07 7.393306e-06
## WDR25 -2.525141e+00 4.539490e+00 -5.551471 1.627628e-07 7.424486e-06
## AKT2 -1.679806e+01 6.823690e+01 -5.547872 1.654709e-07 7.519098e-06
## SLC12A2 1.916934e+00 3.596070e+00 5.545930 1.669503e-07 7.557366e-06
## FTL -4.187909e+03 6.897358e+03 -5.544648 1.679337e-07 7.572980e-06
## FAM98A 4.752059e+00 1.188365e+01 5.540550 1.711169e-07 7.687296e-06
## HADHA -5.269269e+01 1.995597e+02 -5.536497 1.743227e-07 7.801764e-06
## DCAF15 -7.614252e+00 1.807130e+01 -5.535443 1.751655e-07 7.810009e-06
## GSTZ1 -3.918747e+00 5.734021e+00 -5.532924 1.771968e-07 7.870991e-06
## EEF1D -2.857540e+02 2.657495e+02 -5.520415 1.876313e-07 8.303384e-06
## IFFO1 -1.022575e+01 2.912753e+01 -5.515356 1.920204e-07 8.466028e-06
## DVL1 -4.069836e+00 5.111012e+00 -5.514457 1.928110e-07 8.469403e-06
## TRAPPC2B -2.200170e+00 3.184848e+00 -5.512382 1.946468e-07 8.518492e-06
## PARVG -5.003978e+01 1.533990e+02 -5.510436 1.963844e-07 8.562939e-06
## NUDT22 -1.156934e+01 1.316011e+01 -5.509484 1.972406e-07 8.568768e-06
## HSD17B1 -4.665586e-01 6.280013e-01 -5.504085 2.021624e-07 8.750533e-06
## XRCC1 -7.949064e+00 2.436230e+01 -5.502249 2.038627e-07 8.769564e-06
## SGO1 9.623787e-01 1.233835e+00 5.502015 2.040809e-07 8.769564e-06
## SCAMP2 -3.063344e+01 9.379822e+01 -5.498543 2.073392e-07 8.877412e-06
## DGKQ -8.881928e+00 1.339824e+01 -5.491549 2.140581e-07 9.132117e-06
## POLA1 2.097098e+00 4.077027e+00 5.488418 2.171336e-07 9.230125e-06
## CDCA2 1.795770e+00 1.762604e+00 5.486228 2.193117e-07 9.289417e-06
## CCDC130 -5.708232e+00 1.241224e+01 -5.484636 2.209077e-07 9.323720e-06
## ABHD17A -1.276787e+01 1.314446e+01 -5.482182 2.233899e-07 9.324948e-06
## CORO7 -5.140445e+01 6.196403e+01 -5.481893 2.236844e-07 9.324948e-06
## CD48 -1.731792e+02 4.285098e+02 -5.481832 2.237472e-07 9.324948e-06
## HIRA 1.278372e+01 3.862961e+01 5.481503 2.240818e-07 9.324948e-06
## HSPA1A -1.255024e+02 1.697230e+02 -5.479736 2.258918e-07 9.367400e-06
## EXOC3 -1.175825e+01 4.017123e+01 -5.478745 2.269134e-07 9.376979e-06
## ARNTL2 1.623485e+00 2.754961e+00 5.475902 2.298694e-07 9.466148e-06
## MCM8 2.461352e+00 4.723672e+00 5.472391 2.335702e-07 9.585269e-06
## ZSCAN29 7.520233e+00 1.847486e+01 5.469197 2.369889e-07 9.692028e-06
## PLA2G6 -6.243831e+00 1.043224e+01 -5.460944 2.460489e-07 1.001324e-05
## CENPU 3.794188e+00 5.718738e+00 5.460512 2.465317e-07 1.001324e-05
## PPP6R2 -1.743933e+01 4.765179e+01 -5.457450 2.499856e-07 1.011887e-05
## DOK4 -3.062270e+00 4.788552e+00 -5.452675 2.554660e-07 1.030553e-05
## ACADM 8.728080e+00 2.094770e+01 5.450837 2.576062e-07 1.035664e-05
## ZFAND4 1.913510e+00 5.305844e+00 5.448806 2.599916e-07 1.039204e-05
## SERPINB6 -3.423668e+01 6.216465e+01 -5.448597 2.602391e-07 1.039204e-05
## CCNQ -5.173481e+00 9.102508e+00 -5.446772 2.624028e-07 1.044328e-05
## ATAD5 1.309173e+00 2.339838e+00 5.441433 2.688355e-07 1.064455e-05
## MTHFD1 5.005224e+00 1.111267e+01 5.441089 2.692550e-07 1.064455e-05
## SPNS1 -8.331380e+00 1.207527e+01 -5.440123 2.704373e-07 1.065577e-05
## SART1 -3.138160e+01 5.642193e+01 -5.433921 2.781473e-07 1.091002e-05
## PYCARD -5.502662e+01 7.104117e+01 -5.433053 2.792439e-07 1.091002e-05
## KCNQ1 -1.114314e+01 2.659564e+01 -5.432732 2.796498e-07 1.091002e-05
## MAN2B1 -5.319673e+01 9.714994e+01 -5.430884 2.820010e-07 1.093240e-05
## YEATS2 7.497742e+00 2.274426e+01 5.430833 2.820669e-07 1.093240e-05
## AKT1S1 -6.921332e+00 1.139058e+01 -5.427934 2.857939e-07 1.103167e-05
## ATF6B -1.674200e+01 7.748992e+01 -5.426702 2.873933e-07 1.103167e-05
## EGLN2 -1.217990e+02 1.603529e+02 -5.426683 2.874187e-07 1.103167e-05
## CDC37 -4.142183e+01 9.211347e+01 -5.425009 2.896048e-07 1.107972e-05
## TMEM129 -8.682461e+00 1.830864e+01 -5.423682 2.913499e-07 1.110675e-05
## TMEM259 -3.005839e+01 6.005994e+01 -5.422531 2.928720e-07 1.110675e-05
## RTL8A -3.312197e+00 6.778449e+00 -5.422343 2.931207e-07 1.110675e-05
## CDCA7 2.491215e+00 3.371571e+00 5.413176 3.055319e-07 1.153285e-05
## POLR2E -2.848734e+01 3.925324e+01 -5.412300 3.067446e-07 1.153285e-05
## TMEM115 -1.371302e+01 2.430034e+01 -5.411419 3.079686e-07 1.153285e-05
## BCKDHA -1.715660e+01 3.072037e+01 -5.411213 3.082557e-07 1.153285e-05
## KIF15 2.445759e+00 2.471721e+00 5.408182 3.125080e-07 1.162492e-05
## TBCB -2.228206e+01 4.505945e+01 -5.408063 3.126770e-07 1.162492e-05
## NET1 5.560357e+00 8.979555e+00 5.406404 3.150286e-07 1.167575e-05
## UBXN1 -5.936937e+01 8.588660e+01 -5.402131 3.211698e-07 1.186627e-05
## LPCAT1 -2.931652e+01 1.039814e+02 -5.396994 3.287064e-07 1.210701e-05
## B3GNT8 -2.059564e+01 2.107599e+01 -5.393931 3.332826e-07 1.223756e-05
## PDP2 1.912454e+00 4.398036e+00 5.392674 3.351779e-07 1.226917e-05
## SLC16A1 3.599729e+00 7.814640e+00 5.389386 3.401864e-07 1.237677e-05
## UBXN11 -4.535009e+01 5.223788e+01 -5.389374 3.402045e-07 1.237677e-05
## PSTPIP1 -7.589183e+01 1.156801e+02 -5.387071 3.437565e-07 1.246774e-05
## TNIK 7.496714e+00 1.449295e+01 5.382970 3.501709e-07 1.266167e-05
## BARD1 1.797786e+00 3.664282e+00 5.381464 3.525561e-07 1.270917e-05
## STK10 -9.617172e+01 3.211683e+02 -5.379341 3.559453e-07 1.278665e-05
## ARHGEF1 -8.843648e+01 1.995232e+02 -5.378770 3.568619e-07 1.278665e-05
## TPX2 5.182086e+00 5.671138e+00 5.376959 3.597867e-07 1.285262e-05
## TMEM250 -1.648194e+01 3.189680e+01 -5.372668 3.668062e-07 1.306403e-05
## BLM 3.750712e+00 7.675997e+00 5.368508 3.737406e-07 1.327115e-05
## SNX21 -3.346141e+00 7.582398e+00 -5.363302 3.825983e-07 1.354512e-05
## FKBP14 1.151920e+00 2.738380e+00 5.360388 3.876453e-07 1.364755e-05
## SDF4 -1.791374e+01 4.612987e+01 -5.360303 3.877929e-07 1.364755e-05
## SASS6 1.990176e+00 4.424492e+00 5.356127 3.951429e-07 1.386507e-05
## ARL6IP4 -6.837412e+01 8.013245e+01 -5.353586 3.996817e-07 1.398296e-05
## DBNL -1.161713e+02 2.778256e+02 -5.350420 4.054073e-07 1.414156e-05
## ZRSR2 -9.467434e+00 2.293016e+01 -5.345188 4.150457e-07 1.443531e-05
## ADAP1 -1.612134e+01 3.430717e+01 -5.343526 4.181529e-07 1.450086e-05
## ABHD11 -4.624788e+00 8.280971e+00 -5.342163 4.207190e-07 1.451124e-05
## HDHD5 -9.737224e+00 1.875453e+01 -5.342068 4.208995e-07 1.451124e-05
## UCP2 -1.228326e+02 1.718684e+02 -5.338795 4.271265e-07 1.468325e-05
## PLEKHM2 -1.963007e+01 4.673070e+01 -5.337439 4.297329e-07 1.473015e-05
## SPICE1 1.566220e+00 3.300865e+00 5.334365 4.356988e-07 1.489161e-05
## C15orf39 -7.498826e+01 1.381994e+02 -5.332791 4.387846e-07 1.493482e-05
## EIF4E 1.079234e+01 3.974712e+01 5.332437 4.394816e-07 1.493482e-05
## CACFD1 -2.782354e+00 3.413359e+00 -5.329475 4.453558e-07 1.509120e-05
## FOLR2 -2.707012e+00 2.761971e+00 -5.326212 4.519157e-07 1.526986e-05
## CATIP -5.783819e-01 5.528792e-01 -5.324694 4.550003e-07 1.533041e-05
## ALG11 6.991174e+00 1.672117e+01 5.320779 4.630473e-07 1.555734e-05
## LRCH4 -5.964585e+01 1.139145e+02 -5.319572 4.655567e-07 1.559746e-05
## INO80B -3.282846e+00 8.678664e+00 -5.317494 4.699077e-07 1.569889e-05
## EIF3G -5.825078e+01 7.738905e+01 -5.315327 4.744891e-07 1.577923e-05
## TRAM2 1.330935e+01 1.831649e+01 5.315099 4.749736e-07 1.577923e-05
## FRS3 -1.457850e+00 2.447842e+00 -5.313598 4.781743e-07 1.581091e-05
## FAAH -5.733482e+00 5.163740e+00 -5.313402 4.785932e-07 1.581091e-05
## INTS7 2.855443e+00 8.363574e+00 5.312026 4.815492e-07 1.582931e-05
## TNFSF13 -2.864555e+01 8.516356e+01 -5.311900 4.818195e-07 1.582931e-05
## CRTC1 -3.010819e+00 5.402910e+00 -5.311005 4.837530e-07 1.584892e-05
## FAM234A -8.669179e+00 1.168475e+01 -5.306278 4.940891e-07 1.614297e-05
## GPR137 -6.481722e+00 9.550849e+00 -5.305510 4.957878e-07 1.615396e-05
## SAT2 -1.772715e+01 3.396465e+01 -5.304076 4.989766e-07 1.621332e-05
## GTSE1 1.498665e+00 1.650940e+00 5.302800 5.018289e-07 1.626145e-05
## RCN3 -1.546904e+01 1.853455e+01 -5.296353 5.164936e-07 1.667120e-05
## DENND1C -2.572260e+01 6.290853e+01 -5.296010 5.172852e-07 1.667120e-05
## LYPLA2 -3.126574e+01 4.850174e+01 -5.294724 5.202666e-07 1.672185e-05
## S100PBP 6.218908e+00 2.305948e+01 5.291358 5.281419e-07 1.692909e-05
## FAM111A 2.970469e+01 7.331442e+01 5.288057 5.359806e-07 1.713404e-05
## CLTB -2.537551e+01 3.613798e+01 -5.279430 5.570048e-07 1.775827e-05
## PPP2R1B 3.368964e+00 1.189528e+01 5.276932 5.632417e-07 1.790897e-05
## CKAP2 4.416028e+00 1.082355e+01 5.276325 5.647687e-07 1.790951e-05
## NFIC -5.450886e+00 1.359472e+01 -5.273573 5.717373e-07 1.808215e-05
## SGTA -1.365416e+01 2.309352e+01 -5.271921 5.759600e-07 1.816725e-05
## FGD3 -1.384846e+02 2.872203e+02 -5.270022 5.808524e-07 1.827297e-05
## C18orf21 -5.174662e+00 1.751539e+01 -5.257857 6.131656e-07 1.923848e-05
## ZNF513 -2.984364e+00 9.470021e+00 -5.255661 6.191832e-07 1.937602e-05
## TNFRSF14 -5.996334e+01 8.717731e+01 -5.254430 6.225800e-07 1.943105e-05
## TSPAN4 -2.692855e+00 2.597940e+00 -5.250131 6.345915e-07 1.975395e-05
## ATP6V0D1 -1.665558e+02 3.232266e+02 -5.248395 6.395058e-07 1.985481e-05
## SLC35F2 2.143722e+00 3.301884e+00 5.243017 6.549655e-07 2.019393e-05
## PKN1 -9.323278e+01 1.353741e+02 -5.242961 6.551266e-07 2.019393e-05
## SLC66A2 -2.801891e+01 3.194441e+01 -5.242821 6.555364e-07 2.019393e-05
## HNRNPLL 1.341577e+01 3.087377e+01 5.239657 6.648065e-07 2.042644e-05
## RAD51 2.426656e+00 2.763694e+00 5.235732 6.764877e-07 2.068516e-05
## CCDC71 -7.136765e+00 1.504596e+01 -5.235657 6.767152e-07 2.068516e-05
## CNPY3 -1.864796e+02 3.547225e+02 -5.232650 6.857995e-07 2.090895e-05
## BCKDK -2.282520e+01 3.943819e+01 -5.231428 6.895284e-07 2.096874e-05
## ICAM3 -4.052528e+02 6.793966e+02 -5.224815 7.100393e-07 2.153725e-05
## UHRF1 3.235284e+00 4.605744e+00 5.221511 7.205116e-07 2.179559e-05
## ERF -1.074781e+01 1.976245e+01 -5.220972 7.222317e-07 2.179559e-05
## ZNF710 -1.107787e+01 2.654146e+01 -5.216628 7.362601e-07 2.211650e-05
## E4F1 -5.152914e+00 6.734053e+00 -5.216525 7.365951e-07 2.211650e-05
## SCYL1 -2.232244e+01 4.785456e+01 -5.213744 7.457203e-07 2.228436e-05
## NR1H2 -1.872536e+01 3.380674e+01 -5.213676 7.459436e-07 2.228436e-05
## XPOT 1.097023e+01 3.630472e+01 5.212277 7.505788e-07 2.236649e-05
## SOCS4 7.029888e+00 1.959322e+01 5.210773 7.555891e-07 2.241690e-05
## NT5C -6.796664e+00 9.491093e+00 -5.210635 7.560506e-07 2.241690e-05
## RNASEK -1.020025e+02 1.489011e+02 -5.209576 7.596004e-07 2.246599e-05
## CHD1L 5.755892e+00 1.843546e+01 5.205308 7.740758e-07 2.283716e-05
## PRKCSH -4.337975e+01 9.262552e+01 -5.204558 7.766471e-07 2.285616e-05
## LARP1 2.789898e+01 7.621258e+01 5.202596 7.834116e-07 2.293171e-05
## TBC1D10C -9.933761e+01 1.237966e+02 -5.202366 7.842093e-07 2.293171e-05
## NCAPD3 4.172680e+00 1.025959e+01 5.202134 7.850148e-07 2.293171e-05
## CAPNS1 -1.228500e+02 2.459115e+02 -5.199074 7.957010e-07 2.318677e-05
## TNFRSF1B -2.314604e+02 6.979230e+02 -5.196773 8.038343e-07 2.336636e-05
## MDH2 -2.878359e+01 5.830712e+01 -5.195446 8.085573e-07 2.344619e-05
## SH3BP1 -2.929038e+01 5.284604e+01 -5.194718 8.111616e-07 2.345005e-05
## GNL3L 8.337315e+00 2.936114e+01 5.194305 8.126450e-07 2.345005e-05
## EPN1 -2.750787e+01 3.854586e+01 -5.192107 8.205679e-07 2.354195e-05
## JUNB -1.547350e+02 1.695710e+02 -5.191706 8.220234e-07 2.354195e-05
## TTK 1.879087e+00 2.108625e+00 5.191587 8.224536e-07 2.354195e-05
## MASTL 3.682808e+00 8.050500e+00 5.191211 8.238204e-07 2.354195e-05
## ARSA -2.129979e+01 3.680211e+01 -5.190363 8.269101e-07 2.354195e-05
## SEPTIN9 -1.045177e+02 1.770292e+02 -5.190136 8.277396e-07 2.354195e-05
## LRP8 2.163803e+00 5.351551e+00 5.189207 8.311400e-07 2.358211e-05
## STARD4 7.060669e+00 1.238112e+01 5.188216 8.347852e-07 2.362900e-05
## SPHK2 -1.538172e+00 2.405806e+00 -5.183168 8.535855e-07 2.409529e-05
## NACA -1.540624e+02 4.856995e+02 -5.182707 8.553217e-07 2.409529e-05
## CENPL 8.315384e-01 2.131621e+00 5.180424 8.639760e-07 2.426224e-05
## POLE2 1.142797e+00 1.416959e+00 5.180067 8.653397e-07 2.426224e-05
## SOWAHD -3.878368e+00 6.818966e+00 -5.177688 8.744634e-07 2.446023e-05
## BATF3 -2.428046e+00 2.223752e+00 -5.168735 9.096472e-07 2.538451e-05
## RANBP3 -9.453311e+00 2.980396e+01 -5.166480 9.187219e-07 2.556470e-05
## ARHGAP1 -2.134991e+01 7.660466e+01 -5.166062 9.204155e-07 2.556470e-05
## APP 3.610120e+01 8.579951e+01 5.164568 9.264890e-07 2.567327e-05
## IMPA2 -4.121789e+01 5.859757e+01 -5.160279 9.441395e-07 2.610139e-05
## CTSZ -1.412274e+02 4.423528e+02 -5.149600 9.895283e-07 2.725484e-05
## MAP2K5 -1.749224e+00 5.856772e+00 -5.149386 9.904585e-07 2.725484e-05
## C1orf112 1.292732e+00 4.741065e+00 5.147850 9.971621e-07 2.737579e-05
## CEP152 2.873498e+00 5.899880e+00 5.146820 1.001686e-06 2.739009e-05
## GRK6 -1.163172e+02 2.211526e+02 -5.146680 1.002302e-06 2.739009e-05
## ATP2C1 1.097342e+01 3.465919e+01 5.143928 1.014490e-06 2.765943e-05
## SPIN1 6.020575e+00 1.530550e+01 5.142800 1.019526e-06 2.770901e-05
## RPL19 -5.098200e+02 7.975828e+02 -5.142476 1.020981e-06 2.770901e-05
## SHARPIN -1.701676e+01 1.932599e+01 -5.139857 1.032786e-06 2.796539e-05
## MTOR 9.471675e+00 3.125682e+01 5.139071 1.036352e-06 2.799803e-05
## SMARCD2 -2.829111e+01 1.008590e+02 -5.135111 1.054519e-06 2.824947e-05
## PAICS 8.939490e+00 2.055779e+01 5.135059 1.054760e-06 2.824947e-05
## LIN9 9.433957e-01 1.900948e+00 5.134973 1.055159e-06 2.824947e-05
## KCNAB2 -2.903896e+01 1.084747e+02 -5.134967 1.055187e-06 2.824947e-05
## IDH3G -1.791224e+01 3.108879e+01 -5.130972 1.073837e-06 2.868403e-05
## ALG10 6.864603e-01 1.896770e+00 5.128735 1.084419e-06 2.890159e-05
## RPS2 -5.644451e+02 6.653893e+02 -5.127224 1.091626e-06 2.902673e-05
## IGFLR1 -3.870699e+01 5.324574e+01 -5.126726 1.094009e-06 2.902673e-05
## EDEM1 3.283154e+01 8.903135e+01 5.125381 1.100477e-06 2.913317e-05
## GMEB1 4.341285e+00 2.241214e+01 5.122477 1.114569e-06 2.944051e-05
## USF2 -3.589892e+01 9.784618e+01 -5.119466 1.129366e-06 2.976506e-05
## GALK2 3.427455e+00 1.196634e+01 5.115366 1.149820e-06 3.023695e-05
## DHCR24 8.358509e+00 1.364447e+01 5.112227 1.165721e-06 3.058729e-05
## ATG4B -1.405355e+01 3.126570e+01 -5.111481 1.169534e-06 3.059768e-05
## TSC22D4 -6.453348e+01 1.116143e+02 -5.111140 1.171277e-06 3.059768e-05
## ZBTB47 -4.575022e+00 1.085733e+01 -5.109883 1.177737e-06 3.069880e-05
## ZNF688 -4.823102e+00 6.496270e+00 -5.105637 1.199811e-06 3.120561e-05
## CD300LF -6.240351e+01 1.197838e+02 -5.102823 1.214657e-06 3.140772e-05
## GLI4 -1.366139e+00 1.514855e+00 -5.102702 1.215302e-06 3.140772e-05
## COMT -9.896319e+00 1.564950e+01 -5.102660 1.215527e-06 3.140772e-05
## MTDH 3.193705e+01 9.650345e+01 5.097451 1.243507e-06 3.206085e-05
## BTBD2 -7.032845e+00 1.029058e+01 -5.094735 1.258342e-06 3.237298e-05
## PPP2R3B -3.481438e+00 4.742568e+00 -5.093888 1.263007e-06 3.241162e-05
## DNAJC4 -1.842709e+01 2.498282e+01 -5.093470 1.265310e-06 3.241162e-05
## ATP8A1 1.901638e+01 3.887458e+01 5.087236 1.300211e-06 3.323384e-05
## SPSB3 -2.717991e+01 3.523570e+01 -5.085970 1.307408e-06 3.334594e-05
## FCHO1 -1.559407e+01 2.976469e+01 -5.083351 1.322428e-06 3.365664e-05
## UBR1 1.010805e+01 2.268988e+01 5.080142 1.341064e-06 3.405786e-05
## PPP1R35 -6.827208e+00 1.035266e+01 -5.075714 1.367195e-06 3.464729e-05
## HJURP 3.424896e+00 3.574267e+00 5.074219 1.376128e-06 3.479931e-05
## AP4M1 -2.266641e+00 5.696577e+00 -5.073445 1.380773e-06 3.484247e-05
## HBA2 -4.627381e+03 2.670516e+03 -5.072714 1.385177e-06 3.487942e-05
## NCAPG2 4.803071e+00 6.530449e+00 5.068846 1.408701e-06 3.538221e-05
## ARSB 8.436429e+00 2.308291e+01 5.068454 1.411112e-06 3.538221e-05
## REEP3 7.637914e+00 2.334613e+01 5.066590 1.422607e-06 3.559518e-05
## CASTOR1 -1.394114e+00 1.811159e+00 -5.065561 1.428987e-06 3.567954e-05
## SARS1 -2.526893e+01 8.426163e+01 -5.058381 1.474323e-06 3.665965e-05
## NADSYN1 -2.681602e+01 7.232743e+01 -5.058365 1.474423e-06 3.665965e-05
## ZNF358 -3.133056e+00 2.678694e+00 -5.055654 1.491906e-06 3.701675e-05
## TAF5 1.162613e+00 6.139433e+00 5.052659 1.511451e-06 3.742341e-05
## CD2BP2 -3.936612e+01 1.251863e+02 -5.052130 1.514929e-06 3.743138e-05
## PLA2G7 -3.676990e+00 4.290104e+00 -5.050378 1.526502e-06 3.763891e-05
## MCUR1 5.107078e+00 1.395039e+01 5.044088 1.568769e-06 3.860082e-05
## CCDC134 3.148213e+00 8.867526e+00 5.043497 1.572803e-06 3.861996e-05
## MAPK9 4.545278e+00 2.051185e+01 5.042707 1.578199e-06 3.867241e-05
## CDH13 -7.842200e-01 1.223656e+00 -5.041685 1.585219e-06 3.876432e-05
## PKD2 2.975938e+00 6.841540e+00 5.040713 1.591917e-06 3.884802e-05
## UBOX5 -5.090633e+00 1.442422e+01 -5.038874 1.604667e-06 3.906926e-05
## PLA2G15 -9.670760e+00 1.364228e+01 -5.038458 1.607572e-06 3.906926e-05
## ACAA1 -8.267789e+01 1.934182e+02 -5.037267 1.615894e-06 3.919121e-05
## INTS1 -1.153403e+01 1.784814e+01 -5.036639 1.620302e-06 3.921793e-05
## SLC2A6 -1.344060e+01 1.438559e+01 -5.033940 1.639374e-06 3.951510e-05
## RPL8 -6.113283e+02 6.032670e+02 -5.033593 1.641842e-06 3.951510e-05
## CCDC88B -9.350420e+01 1.197151e+02 -5.033422 1.643063e-06 3.951510e-05
## EEF2 -1.425343e+02 3.273209e+02 -5.033023 1.645907e-06 3.951510e-05
## NCOA3 3.690765e+01 8.477207e+01 5.032556 1.649241e-06 3.951514e-05
## MYG1 -8.194135e+00 1.438284e+01 -5.031939 1.653659e-06 3.954111e-05
## TARS1 1.003769e+01 3.090826e+01 5.028172 1.680873e-06 4.011096e-05
## POGLUT3 2.462503e+00 5.595443e+00 5.026799 1.690902e-06 4.026928e-05
## MED11 -1.020106e+01 2.602434e+01 -5.024788 1.705696e-06 4.054019e-05
## MPHOSPH9 3.705478e+00 7.194862e+00 5.023730 1.713531e-06 4.064495e-05
## DLGAP5 4.221903e+00 4.193011e+00 5.022958 1.719268e-06 4.069964e-05
## RACK1 -3.490109e+02 6.840549e+02 -5.018240 1.754734e-06 4.145646e-05
## CYHR1 -1.010151e+01 1.810429e+01 -5.016652 1.766836e-06 4.165938e-05
## NACC1 -9.505342e+00 2.547819e+01 -5.015481 1.775809e-06 4.174712e-05
## SCD 6.603614e+00 8.327400e+00 5.015008 1.779444e-06 4.174712e-05
## EIF2AK1 4.174348e+01 1.240806e+02 5.014444 1.783797e-06 4.174712e-05
## EME1 6.554512e-01 8.328714e-01 5.013969 1.787461e-06 4.174712e-05
## KIF20B 2.861484e+00 5.553991e+00 5.013828 1.788551e-06 4.174712e-05
## CBX8 -1.583981e+00 2.949253e+00 -5.013424 1.791677e-06 4.174712e-05
## CENPE 3.688219e+00 4.188713e+00 5.012568 1.798322e-06 4.181980e-05
## CHMP6 -1.098404e+01 1.500705e+01 -5.005015 1.858005e-06 4.312317e-05
## CEP128 2.080825e+00 2.654485e+00 5.003869 1.867226e-06 4.325255e-05
## CYBC1 -1.188685e+02 1.942781e+02 -5.001406 1.887201e-06 4.361215e-05
## PNPLA6 -4.778818e+01 6.076791e+01 -5.001050 1.890105e-06 4.361215e-05
## MAF1 -2.968849e+01 6.724306e+01 -4.999952 1.899086e-06 4.373430e-05
## MED1 1.316425e+01 3.488881e+01 4.995911 1.932503e-06 4.441760e-05
## ESRRA -8.624043e+00 2.287860e+01 -4.994133 1.947392e-06 4.467325e-05
## CIRBP -9.226270e+01 2.013316e+02 -4.993439 1.953228e-06 4.472063e-05
## CCDC61 -3.433878e+00 4.173247e+00 -4.990190 1.980799e-06 4.526451e-05
## TBC1D10B -3.001026e+01 6.165357e+01 -4.989236 1.988966e-06 4.536373e-05
## MMP14 -2.965386e+00 3.941682e+00 -4.988617 1.994282e-06 4.539766e-05
## TOR2A -7.285221e+00 1.410818e+01 -4.988012 1.999490e-06 4.542902e-05
## AP5Z1 -1.248864e+01 2.355558e+01 -4.987397 2.004800e-06 4.546258e-05
## NNT 9.113995e+00 3.187482e+01 4.985693 2.019578e-06 4.571030e-05
## KIF24 5.932156e-01 8.539490e-01 4.983605 2.037834e-06 4.603564e-05
## ALKBH4 -1.733563e+00 5.552355e+00 -4.981120 2.059777e-06 4.644288e-05
## CCDC106 -8.876826e-01 1.103475e+00 -4.979868 2.070910e-06 4.660529e-05
## DEF6 -6.066499e+01 1.396421e+02 -4.976558 2.100647e-06 4.711460e-05
## TMUB1 -6.584936e+00 6.908028e+00 -4.976144 2.104393e-06 4.711460e-05
## PCGF5 2.742175e+01 5.694832e+01 4.976026 2.105459e-06 4.711460e-05
## BRIP1 1.112802e+00 2.504174e+00 4.972017 2.142109e-06 4.784447e-05
## ANKIB1 9.720362e+00 2.255026e+01 4.970486 2.156274e-06 4.807031e-05
## LHPP -5.811476e+00 8.294695e+00 -4.967152 2.187420e-06 4.867317e-05
## DCAF10 8.949659e+00 2.555328e+01 4.966048 2.197825e-06 4.881312e-05
## EML3 -1.834513e+01 4.758364e+01 -4.964077 2.216532e-06 4.913658e-05
## SGSM3 -1.294812e+01 2.723509e+01 -4.963013 2.226697e-06 4.919486e-05
## BIRC6 3.451856e+01 7.190745e+01 4.962779 2.228938e-06 4.919486e-05
## NOP53 -1.057081e+02 9.809079e+01 -4.962501 2.231605e-06 4.919486e-05
## INTS4 4.003093e+00 2.197453e+01 4.961305 2.243099e-06 4.935651e-05
## DHX33 2.248548e+00 7.645431e+00 4.959447 2.261085e-06 4.963534e-05
## ABCD4 -7.136766e+00 1.887275e+01 -4.958814 2.267242e-06 4.963534e-05
## CD38 1.849832e+01 2.185368e+01 4.958398 2.271301e-06 4.963534e-05
## STXBP2 -1.485427e+02 2.493379e+02 -4.958274 2.272512e-06 4.963534e-05
## SIKE1 7.623599e+00 2.195678e+01 4.957385 2.281205e-06 4.973363e-05
## S1PR4 -9.542286e+01 8.645349e+01 -4.956550 2.289400e-06 4.982070e-05
## G6PC3 -1.047600e+01 1.557827e+01 -4.955323 2.301503e-06 4.999236e-05
## RIMKLB 1.719609e+00 3.286410e+00 4.952474 2.329825e-06 5.051503e-05
## LMAN1 2.249614e+01 2.938228e+01 4.951785 2.336728e-06 5.057226e-05
## UBTD1 -7.093816e+00 9.114590e+00 -4.949730 2.357437e-06 5.091951e-05
## NFATC2IP 6.856000e+00 2.723838e+01 4.949342 2.361360e-06 5.091951e-05
## NDUFB5 -8.465036e+00 3.728487e+01 -4.946976 2.385455e-06 5.134573e-05
## DLG1 6.830573e+00 1.788671e+01 4.945044 2.405308e-06 5.167926e-05
## RHOT2 -2.971099e+01 4.303786e+01 -4.943721 2.418995e-06 5.187935e-05
## NECAP2 -2.079981e+01 8.799286e+01 -4.942267 2.434130e-06 5.210972e-05
## PHB2 -3.935954e+01 9.922310e+01 -4.936483 2.495234e-06 5.332157e-05
## MYCBP2 3.269707e+01 6.689463e+01 4.934222 2.519519e-06 5.374369e-05
## SLC9A3R1 -7.695778e+01 1.637925e+02 -4.933784 2.524254e-06 5.374803e-05
## TGFBI -6.618281e+01 1.059929e+02 -4.931714 2.546730e-06 5.412413e-05
## ARHGEF12 1.373407e+01 2.203827e+01 4.931319 2.551044e-06 5.412413e-05
## CASP10 2.790094e+01 6.485548e+01 4.930284 2.562368e-06 5.426729e-05
## OCEL1 -6.053988e+00 8.598829e+00 -4.929262 2.573610e-06 5.440822e-05
## SLC16A3 -1.306397e+02 1.816934e+02 -4.927903 2.588619e-06 5.462816e-05
## MBOAT7 -2.059560e+02 3.280778e+02 -4.927319 2.595103e-06 5.466771e-05
## BABAM2 -8.067966e+00 2.734741e+01 -4.926859 2.600211e-06 5.467820e-05
## CALU 1.146926e+01 2.990786e+01 4.925475 2.615661e-06 5.490574e-05
## CTDSP1 -1.406174e+02 2.903284e+02 -4.924604 2.625427e-06 5.501337e-05
## WDR13 -2.159398e+01 3.330578e+01 -4.923739 2.635166e-06 5.512005e-05
## MYO1G -4.856297e+01 9.704217e+01 -4.922412 2.650158e-06 5.533604e-05
## RENBP -1.597450e+01 2.630851e+01 -4.921279 2.663038e-06 5.540181e-05
## PNKP -6.808318e+00 1.543807e+01 -4.920949 2.666801e-06 5.540181e-05
## DPY19L1 4.988423e+00 1.366785e+01 4.920903 2.667321e-06 5.540181e-05
## IRF2BP1 -1.806453e+00 3.893644e+00 -4.916170 2.721853e-06 5.643563e-05
## HMGCS1 7.478294e+00 2.155242e+01 4.914841 2.737349e-06 5.665786e-05
## RRM1 6.627295e+00 1.716788e+01 4.912898 2.760168e-06 5.682886e-05
## TTF1 4.494513e+00 1.657198e+01 4.912839 2.760865e-06 5.682886e-05
## INO80E -8.179555e+00 1.610606e+01 -4.912602 2.763667e-06 5.682886e-05
## EDRF1 3.695850e+00 1.457291e+01 4.912508 2.764777e-06 5.682886e-05
## DDRGK1 -7.057465e+00 1.619401e+01 -4.910010 2.794430e-06 5.733899e-05
## RABEPK -4.820007e+00 1.522785e+01 -4.905297 2.851231e-06 5.840346e-05
## ORC6 9.911427e-01 1.587685e+00 4.903894 2.868357e-06 5.865295e-05
## RBM10 -1.304823e+01 3.476605e+01 -4.902339 2.887462e-06 5.894199e-05
## MAP3K11 -4.930691e+01 8.308636e+01 -4.898666 2.933055e-06 5.976981e-05
## BMP8B 1.303022e+00 2.344230e+00 4.896786 2.956664e-06 6.014758e-05
## MRTFA -2.316602e+01 6.588437e+01 -4.895568 2.972058e-06 6.035721e-05
## RAB4B -2.243256e+01 3.842153e+01 -4.894232 2.989031e-06 6.059813e-05
## FKBP8 -3.136539e+02 3.546305e+02 -4.892318 3.013525e-06 6.099046e-05
## KIFC2 -6.693231e+00 8.742958e+00 -4.891321 3.026346e-06 6.114559e-05
## SRD5A3 -2.979382e+00 5.860785e+00 -4.890383 3.038472e-06 6.128618e-05
## KLHL22 -6.257750e+00 1.148237e+01 -4.889937 3.044245e-06 6.129838e-05
## TMEM88 -3.032368e+00 4.722608e+00 -4.889464 3.050389e-06 6.131800e-05
## PFKL -2.598373e+01 3.511668e+01 -4.887804 3.072032e-06 6.164856e-05
## NHLRC2 3.873005e+00 1.106596e+01 4.886511 3.088999e-06 6.182020e-05
## LRRC37A3 3.021246e+00 6.371172e+00 4.886358 3.091010e-06 6.182020e-05
## TNK2 -2.488773e+01 4.660747e+01 -4.884759 3.112134e-06 6.201149e-05
## EHBP1L1 -7.668734e+01 2.309080e+02 -4.884595 3.114306e-06 6.201149e-05
## RPS9 -5.010002e+02 7.184505e+02 -4.884447 3.116260e-06 6.201149e-05
## ADAM8 -1.583780e+02 3.010802e+02 -4.878092 3.201689e-06 6.360240e-05
## TFAP4 -1.147664e+00 1.811167e+00 -4.877708 3.206934e-06 6.360240e-05
## ARHGDIA -5.166008e+01 7.885851e+01 -4.876417 3.224581e-06 6.384563e-05
## MANEA 4.921488e+00 8.094560e+00 4.875255 3.240566e-06 6.405518e-05
## SH3BGRL3 -4.880365e+02 8.286535e+02 -4.873985 3.258113e-06 6.429487e-05
## GART 7.685460e+00 2.536515e+01 4.872511 3.278591e-06 6.459152e-05
## MCM2 6.577156e+00 9.678482e+00 4.871818 3.288261e-06 6.467458e-05
## GPBAR1 -7.692225e+00 8.252092e+00 -4.870985 3.299928e-06 6.477402e-05
## CHMP2A -1.086893e+02 2.089416e+02 -4.870613 3.305148e-06 6.477402e-05
## UHRF2 7.844043e+00 3.005601e+01 4.870289 3.309701e-06 6.477402e-05
## MPG -7.811562e+00 8.838878e+00 -4.869520 3.320537e-06 6.487902e-05
## ENDOV -1.154225e+00 1.723702e+00 -4.864933 3.385880e-06 6.591599e-05
## PLCB3 -4.025879e+00 9.166749e+00 -4.864732 3.388772e-06 6.591599e-05
## OSGEP -1.020918e+01 2.499738e+01 -4.864627 3.390283e-06 6.591599e-05
## DNAJB2 -2.273647e+01 3.986088e+01 -4.863442 3.407382e-06 6.614002e-05
## CDC14B 7.743101e+00 1.230706e+01 4.862053 3.427538e-06 6.642255e-05
## PACS1 -4.342740e+01 1.243962e+02 -4.861285 3.438728e-06 6.653069e-05
## FAM149B1 4.971116e+00 1.422734e+01 4.860365 3.452189e-06 6.668234e-05
## BCAP31 -7.141722e+01 1.461989e+02 -4.858375 3.481471e-06 6.713862e-05
## ERCC6L 8.834414e-01 1.118754e+00 4.857381 3.496177e-06 6.731277e-05
## PPP2R1A -5.938187e+01 1.109987e+02 -4.855440 3.525084e-06 6.775931e-05
## RNASEH1 4.089774e+00 1.494570e+01 4.854830 3.534222e-06 6.782504e-05
## SETX 7.575580e+01 1.878250e+02 4.851919 3.578120e-06 6.855654e-05
## HEATR5B 1.440003e+01 3.040281e+01 4.850288 3.602943e-06 6.892081e-05
## CDCA5 4.308789e+00 4.949994e+00 4.849302 3.618043e-06 6.909821e-05
## USP6NL 4.282083e+00 9.523376e+00 4.846588 3.659891e-06 6.978506e-05
## CDK9 -1.144847e+01 3.864615e+01 -4.842544 3.723137e-06 7.077964e-05
## C12orf75 1.159714e+01 1.883601e+01 4.842490 3.723988e-06 7.077964e-05
## PNPLA2 -2.463751e+01 4.696022e+01 -4.841681 3.736756e-06 7.090869e-05
## CAPZB -1.406434e+02 4.180101e+02 -4.838891 3.781158e-06 7.163664e-05
## MED15 -1.422927e+01 3.682910e+01 -4.837715 3.800028e-06 7.173184e-05
## CAPN10 -4.667844e+00 7.217240e+00 -4.837498 3.803529e-06 7.173184e-05
## SCAMP4 -4.374742e+00 1.125526e+01 -4.837448 3.804328e-06 7.173184e-05
## LIN52 1.861369e+00 6.449285e+00 4.836386 3.821467e-06 7.194064e-05
## NFX1 6.652697e+00 2.472729e+01 4.835856 3.830042e-06 7.198780e-05
## PWWP2B -3.030413e+00 4.062516e+00 -4.833627 3.866329e-06 7.255485e-05
## TAPBP -1.158274e+02 2.464338e+02 -4.830204 3.922724e-06 7.349685e-05
## COASY -2.243975e+01 4.948381e+01 -4.829370 3.936577e-06 7.352666e-05
## TCF25 -2.594384e+01 6.821969e+01 -4.829362 3.936714e-06 7.352666e-05
## USP48 1.049842e+01 5.022570e+01 4.826579 3.983291e-06 7.425418e-05
## TP53I11 -5.028784e+01 8.715598e+01 -4.826288 3.988188e-06 7.425418e-05
## JAML -6.474979e+02 1.197389e+03 -4.824445 4.019375e-06 7.471754e-05
## BAG6 -2.662151e+01 1.182935e+02 -4.823168 4.041116e-06 7.500413e-05
## CDC42BPA 1.196475e+00 1.982018e+00 4.822499 4.052557e-06 7.509895e-05
## AATF -1.284334e+01 5.585634e+01 -4.817398 4.140796e-06 7.661442e-05
## CROCC -3.498733e+00 4.274006e+00 -4.816769 4.151814e-06 7.669862e-05
## MAPKAPK3 -5.195215e+01 1.593994e+02 -4.816089 4.163746e-06 7.673370e-05
## GNAI2 -2.143387e+02 6.991300e+02 -4.815747 4.169763e-06 7.673370e-05
## FAM98C -5.080821e+00 9.498352e+00 -4.815556 4.173123e-06 7.673370e-05
## RDX 3.971318e+00 9.716763e+00 4.814553 4.190820e-06 7.693982e-05
## ECT2 3.292440e+00 7.316110e+00 4.813103 4.216546e-06 7.729247e-05
## DOK2 -5.836907e+01 7.500722e+01 -4.811567 4.243960e-06 7.755747e-05
## FOXM1 3.890518e+00 4.901730e+00 4.811257 4.249514e-06 7.755747e-05
## CEP76 8.288247e-01 2.212199e+00 4.811195 4.250620e-06 7.755747e-05
## PITPNB 7.461481e+00 3.265382e+01 4.808845 4.292952e-06 7.811824e-05
## AGPAT2 -1.866584e+01 2.308495e+01 -4.808418 4.300689e-06 7.811824e-05
## TYROBP -3.912923e+02 6.529630e+02 -4.808395 4.301114e-06 7.811824e-05
## CSF1R -6.407443e+01 9.314737e+01 -4.807758 4.312689e-06 7.820871e-05
## FAM122C 1.161969e+00 3.209902e+00 4.804780 4.367160e-06 7.893132e-05
## TAB1 -6.818221e+00 1.541310e+01 -4.804591 4.370638e-06 7.893132e-05
## BRCA1 6.180032e+00 1.275272e+01 4.804490 4.372503e-06 7.893132e-05
## TMEM134 -4.426232e+00 5.038670e+00 -4.803751 4.386147e-06 7.905729e-05
## SRF -2.295890e+01 5.850857e+01 -4.801664 4.424880e-06 7.963442e-05
## EEF1G -7.785628e+02 1.192537e+03 -4.801262 4.432384e-06 7.964860e-05
## ARRB1 -3.687931e+01 1.067599e+02 -4.800560 4.445517e-06 7.976375e-05
## CENPK 2.737779e+00 3.789117e+00 4.799694 4.461756e-06 7.993418e-05
## SOS1 1.490570e+01 3.596716e+01 4.798787 4.478826e-06 8.011896e-05
## SCRN2 -7.422941e+00 1.024813e+01 -4.797591 4.501456e-06 8.040251e-05
## GSDMD -4.390974e+01 5.409087e+01 -4.796570 4.520836e-06 8.062724e-05
## SLC25A28 -2.017275e+01 4.201629e+01 -4.795437 4.542453e-06 8.087910e-05
## COMMD5 -8.888828e+00 1.860388e+01 -4.795116 4.548597e-06 8.087910e-05
## MARS1 2.146715e+01 1.075905e+02 4.794425 4.561852e-06 8.099337e-05
## CDCA8 2.830496e+00 4.144365e+00 4.789607 4.655273e-06 8.252847e-05
## POLD4 -5.719753e+01 8.465221e+01 -4.786731 4.711923e-06 8.330320e-05
## H2BC11 1.819984e+00 3.239165e+00 4.786676 4.713023e-06 8.330320e-05
## SPC25 1.625616e+00 2.387813e+00 4.782658 4.793309e-06 8.459619e-05
## TRPM7 1.207314e+01 3.352956e+01 4.781685 4.812946e-06 8.481656e-05
## RPUSD1 -6.705009e+00 6.725533e+00 -4.778594 4.875851e-06 8.579762e-05
## SSNA1 -2.041021e+01 2.442246e+01 -4.777411 4.900130e-06 8.602046e-05
## RGS12 -1.822091e+00 2.385566e+00 -4.777168 4.905148e-06 8.602046e-05
## ELOB -6.105466e+01 5.956803e+01 -4.776919 4.910274e-06 8.602046e-05
## NDUFS1 9.325921e+00 3.990601e+01 4.775395 4.941799e-06 8.644503e-05
## TELO2 -5.459936e+00 5.477321e+00 -4.771472 5.023862e-06 8.775111e-05
## EIF3F -5.759996e+01 1.320393e+02 -4.769260 5.070696e-06 8.843890e-05
## EIF4EBP3 -7.574716e+00 1.196776e+01 -4.768019 5.097171e-06 8.877011e-05
## MTFR2 7.856086e-01 1.739175e+00 4.766998 5.119053e-06 8.902048e-05
## TAF2 6.327261e+00 1.564937e+01 4.765444 5.152519e-06 8.947127e-05
## PPP1R32 -9.988175e-01 1.814344e+00 -4.762634 5.213583e-06 9.033359e-05
## ENG -6.448950e+00 7.517699e+00 -4.762459 5.217412e-06 9.033359e-05
## CENPB -2.500812e+01 3.313386e+01 -4.761458 5.239337e-06 9.058096e-05
## ZFPL1 -5.784410e+00 1.067588e+01 -4.758734 5.299487e-06 9.148751e-05
## KCNK6 -1.237331e+01 3.633130e+01 -4.757048 5.337048e-06 9.200202e-05
## GMEB2 -4.439272e+00 1.546603e+01 -4.754408 5.396392e-06 9.289000e-05
## SH2B2 -7.218767e+00 1.146082e+01 -4.751831 5.454913e-06 9.368969e-05
## JPT1 -8.351518e+01 1.543234e+02 -4.751668 5.458649e-06 9.368969e-05
## EMC10 -1.818876e+01 3.324849e+01 -4.750146 5.493540e-06 9.415229e-05
## PKHD1L1 4.676636e+00 6.406403e+00 4.748851 5.523377e-06 9.452706e-05
## MCFD2 1.291884e+01 4.247083e+01 4.747790 5.547951e-06 9.478677e-05
## WBP1 -2.073530e+01 4.403225e+01 -4.747507 5.554537e-06 9.478677e-05
## MIB2 -2.762684e+00 3.460727e+00 -4.747158 5.562635e-06 9.478858e-05
## ACD -5.078389e+00 8.312843e+00 -4.746356 5.581339e-06 9.497084e-05
## COPS7A -7.901275e+00 3.298952e+01 -4.744624 5.621909e-06 9.552412e-05
## TIPIN 9.783798e-01 2.310445e+00 4.743465 5.649222e-06 9.585089e-05
## CMTM7 -1.729439e+01 5.335599e+01 -4.740256 5.725528e-06 9.700681e-05
## STMN1 2.104951e+01 3.292449e+01 4.738635 5.764450e-06 9.742725e-05
## SPATS2 4.497649e+00 6.266650e+00 4.738459 5.768681e-06 9.742725e-05
## KIAA1614 2.491452e+00 4.105178e+00 4.737968 5.780535e-06 9.742725e-05
## ERCC1 -1.059891e+01 2.602666e+01 -4.737857 5.783203e-06 9.742725e-05
## ENO1 -3.309831e+02 6.216098e+02 -4.737081 5.801997e-06 9.760522e-05
## NUMA1 -2.006057e+01 6.524004e+01 -4.735824 5.832535e-06 9.797999e-05
## CCDC22 -9.606425e+00 1.477379e+01 -4.735218 5.847313e-06 9.799218e-05
## PSAP -6.411406e+02 2.632804e+03 -4.735117 5.849786e-06 9.799218e-05
## MPND -6.646546e+00 8.577298e+00 -4.731246 5.945111e-06 9.944854e-05
## ID3 -1.615214e+00 1.593617e+00 -4.730026 5.975469e-06 9.960793e-05
## ARFRP1 -1.343306e+01 1.691713e+01 -4.729661 5.984587e-06 9.960793e-05
## ZNF511 -5.890862e+00 1.132002e+01 -4.729546 5.987451e-06 9.960793e-05
## SGSH -1.266773e+01 2.312408e+01 -4.729515 5.988234e-06 9.960793e-05
## LYRM9 -1.965258e+00 4.286510e+00 -4.728994 6.001260e-06 9.968480e-05
## ZNF784 -3.958653e+00 6.822751e+00 -4.727595 6.036406e-06 1.001284e-04
## C1QTNF6 -2.037859e+00 3.743056e+00 -4.726782 6.056905e-06 1.003072e-04
## RIN1 -4.366428e+00 4.628575e+00 -4.726498 6.064106e-06 1.003072e-04
## RNF167 -7.330406e+01 1.992480e+02 -4.725728 6.083610e-06 1.004897e-04
## EFNB1 -2.188699e+00 3.525066e+00 -4.722682 6.161392e-06 1.016330e-04
## SKA1 2.159670e+00 2.946798e+00 4.722046 6.177743e-06 1.017612e-04
## NAA35 2.179896e+00 7.548764e+00 4.711072 6.466773e-06 1.063744e-04
## TMEM150A -2.880671e+00 4.694545e+00 -4.708216 6.544111e-06 1.074974e-04
## OXLD1 -9.624509e+00 1.535605e+01 -4.706392 6.593993e-06 1.081670e-04
## ARFGEF2 1.037384e+01 2.004439e+01 4.705220 6.626209e-06 1.085454e-04
## EIF3M -3.622158e+01 1.046939e+02 -4.701949 6.716982e-06 1.097438e-04
## C1orf35 -2.527267e+00 4.197782e+00 -4.701917 6.717876e-06 1.097438e-04
## MCRS1 -1.843783e+01 4.663987e+01 -4.697057 6.854981e-06 1.117485e-04
## TMEM175 -6.034034e+00 1.329342e+01 -4.696901 6.859435e-06 1.117485e-04
## TSPO -1.359584e+02 1.217790e+02 -4.695766 6.891843e-06 1.121224e-04
## CDC27 1.019814e+01 3.699892e+01 4.692129 6.996786e-06 1.136738e-04
## FBRSL1 -6.798189e+00 1.222482e+01 -4.691579 7.012782e-06 1.137778e-04
## CCDC18 1.741897e+00 5.339632e+00 4.690430 7.046297e-06 1.139407e-04
## LAMTOR2 -2.380087e+01 3.675093e+01 -4.690407 7.046997e-06 1.139407e-04
## CYB561A3 -1.490713e+01 4.109154e+01 -4.690038 7.057796e-06 1.139407e-04
## RPS6 -6.178566e+02 1.194081e+03 -4.689865 7.062868e-06 1.139407e-04
## CD74 -7.358764e+02 1.048920e+03 -4.689592 7.070857e-06 1.139407e-04
## RELT -2.825044e+01 7.667061e+01 -4.688440 7.104761e-06 1.143317e-04
## PHYH -1.310800e+00 3.697303e+00 -4.687723 7.125933e-06 1.144412e-04
## ANAPC1 1.005639e+01 4.388257e+01 4.687557 7.130866e-06 1.144412e-04
## CSNK2B -2.940978e+01 8.004811e+01 -4.685949 7.178611e-06 1.150518e-04
## CDK2AP2 -1.571894e+01 2.138118e+01 -4.684797 7.212999e-06 1.154469e-04
## GAK -1.041087e+01 4.015485e+01 -4.683438 7.253784e-06 1.158841e-04
## JOSD2 -2.839348e+00 2.372521e+00 -4.683236 7.259856e-06 1.158841e-04
## PPM1F -8.180606e+01 1.712101e+02 -4.682889 7.270316e-06 1.158951e-04
## GINS2 3.465802e+00 4.211891e+00 4.682327 7.287285e-06 1.160097e-04
## APEH -2.962377e+01 7.373473e+01 -4.681869 7.301137e-06 1.160744e-04
## FAM193B -2.513690e+01 7.591747e+01 -4.680680 7.337217e-06 1.164918e-04
## MMP24OS -2.058306e+01 3.034755e+01 -4.679857 7.362314e-06 1.167340e-04
## CORO1A -5.621241e+02 9.710792e+02 -4.678707 7.397488e-06 1.171351e-04
## EXOSC5 -3.420081e+00 3.921173e+00 -4.672176 7.600421e-06 1.201880e-04
## MIER2 -2.093070e+00 4.815209e+00 -4.671223 7.630493e-06 1.205029e-04
## RFC3 1.741416e+00 3.856438e+00 4.665927 7.799639e-06 1.228666e-04
## ZBTB22 -9.437828e+00 2.735622e+01 -4.665888 7.800888e-06 1.228666e-04
## FCER2 -1.158710e+01 8.835297e+00 -4.664782 7.836684e-06 1.232667e-04
## TUBGCP2 -1.020882e+01 3.021933e+01 -4.663127 7.890528e-06 1.238936e-04
## INCENP 1.240659e+00 2.695294e+00 4.662916 7.897433e-06 1.238936e-04
## AURKA 2.812899e+00 4.470423e+00 4.662402 7.914234e-06 1.239932e-04
## LAPTM5 -8.730081e+02 2.310992e+03 -4.662022 7.926699e-06 1.240246e-04
## DHFR 1.550792e+01 2.806569e+01 4.660244 7.985192e-06 1.247752e-04
## ACSF3 -5.988548e+00 1.153599e+01 -4.659455 8.011294e-06 1.250183e-04
## RECQL5 -4.797211e+00 1.335482e+01 -4.658487 8.043424e-06 1.251428e-04
## VPS13A 7.997002e+00 1.623763e+01 4.658475 8.043795e-06 1.251428e-04
## NEK2 1.587104e+00 1.748322e+00 4.658179 8.053657e-06 1.251428e-04
## UBE2J2 -8.563699e+00 2.843482e+01 -4.657944 8.061476e-06 1.251428e-04
## PACS2 -5.443097e+00 1.100868e+01 -4.655484 8.143870e-06 1.262566e-04
## ATPAF2 -2.552582e+00 6.526448e+00 -4.654563 8.174929e-06 1.265727e-04
## TTLL5 1.574143e+00 5.402496e+00 4.653930 8.196339e-06 1.267387e-04
## KIFC1 3.373296e+00 3.895032e+00 4.652856 8.232783e-06 1.271365e-04
## FLYWCH2 -2.657069e+00 2.980148e+00 -4.649704 8.340682e-06 1.281414e-04
## TSC2 -1.048637e+01 2.702053e+01 -4.649694 8.341025e-06 1.281414e-04
## C7orf50 -9.774666e+00 8.402341e+00 -4.649557 8.345746e-06 1.281414e-04
## C6orf226 -7.225258e-01 9.471067e-01 -4.649463 8.348996e-06 1.281414e-04
## CDIPT -2.558794e+01 6.149917e+01 -4.649379 8.351881e-06 1.281414e-04
## ITGB1 9.300135e+01 2.508506e+02 4.646946 8.436184e-06 1.292676e-04
## NDRG2 -3.164556e+00 4.379704e+00 -4.645700 8.479678e-06 1.296414e-04
## PSMB10 -5.540965e+01 6.302457e+01 -4.645622 8.482442e-06 1.296414e-04
## TACC3 -6.179143e+01 1.445115e+02 -4.643445 8.558958e-06 1.306425e-04
## BTN3A1 1.531090e+02 2.566035e+02 4.640114 8.677380e-06 1.322799e-04
## CHMP4B -4.840091e+01 1.371259e+02 -4.639404 8.702820e-06 1.324387e-04
## TPT1 -1.269153e+03 2.890233e+03 -4.639201 8.710136e-06 1.324387e-04
## AKAP8L -1.437428e+01 5.281197e+01 -4.638795 8.724722e-06 1.324391e-04
## RPL6 -3.992426e+02 8.469566e+02 -4.638579 8.732492e-06 1.324391e-04
## C19orf25 -7.686394e+00 9.995925e+00 -4.636374 8.812239e-06 1.334778e-04
## NSD3 3.809594e+01 9.646241e+01 4.635271 8.852406e-06 1.339152e-04
## PCLAF 6.720287e+00 8.655233e+00 4.634359 8.885711e-06 1.342478e-04
## RAD54B 6.893022e-01 1.374293e+00 4.631975 8.973442e-06 1.354008e-04
## RASGRP3 3.396020e+00 5.629790e+00 4.629610 9.061257e-06 1.365521e-04
## SNRNP70 -2.072479e+01 6.214085e+01 -4.628185 9.114599e-06 1.368276e-04
## TOLLIP -1.813754e+01 4.089486e+01 -4.628145 9.116101e-06 1.368276e-04
## ZNF707 -1.512360e+00 4.475382e+00 -4.628008 9.121262e-06 1.368276e-04
## TMEM53 -5.950469e-01 9.642774e-01 -4.627890 9.125684e-06 1.368276e-04
## ARFGAP2 -3.131354e+01 9.070118e+01 -4.627417 9.143483e-06 1.369214e-04
## PI4K2B 6.435561e+00 1.531449e+01 4.626979 9.159974e-06 1.369953e-04
## PDXDC1 9.277706e+00 2.722793e+01 4.626333 9.184379e-06 1.371873e-04
## ANP32E 1.562603e+01 4.607049e+01 4.625787 9.205014e-06 1.373226e-04
## CYB5R3 -2.223024e+01 4.821838e+01 -4.625454 9.217652e-06 1.373384e-04
## ATG16L2 -1.416164e+02 3.370351e+02 -4.624328 9.260475e-06 1.378033e-04
## FHOD1 -1.602725e+01 4.207058e+01 -4.623851 9.278677e-06 1.379011e-04
## TMEM64 3.146108e+00 1.042728e+01 4.622423 9.333360e-06 1.385402e-04
## TCEA1 1.252521e+01 6.240201e+01 4.619229 9.456778e-06 1.399545e-04
## ABCD1 -4.777117e+00 1.007647e+01 -4.619177 9.458796e-06 1.399545e-04
## DECR2 -9.250100e-01 1.056399e+00 -4.619042 9.464040e-06 1.399545e-04
## MCRIP1 -1.960878e+01 1.728762e+01 -4.618423 9.488157e-06 1.401364e-04
## PRR14L 2.010876e+01 4.775455e+01 4.617125 9.538940e-06 1.407112e-04
## CLASRP -1.116161e+01 3.717272e+01 -4.616793 9.551973e-06 1.407284e-04
## EHD1 -7.976642e+01 1.832896e+02 -4.615848 9.589145e-06 1.411008e-04
## B3GNTL1 -7.284468e+00 1.279576e+01 -4.612613 9.717484e-06 1.426713e-04
## UBE2C 2.865827e+00 4.610626e+00 4.612464 9.723448e-06 1.426713e-04
## B3GALT6 -6.354119e+00 9.230131e+00 -4.612251 9.731963e-06 1.426713e-04
## SMC6 5.783441e+00 1.899626e+01 4.611774 9.751031e-06 1.427744e-04
## ZNF385D -2.844912e+00 5.222245e+00 -4.609331 9.849382e-06 1.440366e-04
## UBXN2A 2.419941e+00 8.049690e+00 4.608797 9.871020e-06 1.441752e-04
## C2CD3 7.998266e+00 1.859546e+01 4.608460 9.884664e-06 1.441969e-04
## DHX15 1.359610e+01 5.893604e+01 4.607221 9.935100e-06 1.447546e-04
## NELFB -9.778609e+00 2.089472e+01 -4.605452 1.000749e-05 1.456305e-04
## TMEM102 -3.071876e+00 5.149900e+00 -4.602276 1.013880e-05 1.473271e-04
## ARID1B 9.381811e+00 2.962887e+01 4.602032 1.014892e-05 1.473271e-04
## SSX2IP 4.424806e+00 1.099070e+01 4.599343 1.026149e-05 1.487791e-04
## TCF20 1.751890e+01 4.303633e+01 4.598600 1.029282e-05 1.490510e-04
## SYNJ2 4.407715e+00 9.003649e+00 4.595796 1.041182e-05 1.505904e-04
## JMJD7 -2.412283e+00 5.397760e+00 -4.595046 1.044389e-05 1.507661e-04
## ZNF664 9.218992e+00 2.391788e+01 4.594509 1.046688e-05 1.507661e-04
## KIAA0930 -5.545376e+01 1.297134e+02 -4.594340 1.047414e-05 1.507661e-04
## B3GALT4 -1.087301e+01 1.684980e+01 -4.594325 1.047481e-05 1.507661e-04
## LTB -1.170965e+02 1.145366e+02 -4.593765 1.049886e-05 1.509290e-04
## GSTK1 -7.874155e+01 2.186417e+02 -4.592156 1.056831e-05 1.517435e-04
## STON1 9.689990e-01 1.746819e+00 4.591600 1.059240e-05 1.519056e-04
## TPI1 -1.626014e+02 3.607991e+02 -4.590012 1.066157e-05 1.527128e-04
## RPAP2 7.978806e+00 2.077064e+01 4.589174 1.069818e-05 1.530524e-04
## CYCS 1.321171e+01 4.779386e+01 4.588844 1.071266e-05 1.530749e-04
## FRMD3 9.696336e+00 1.583204e+01 4.586792 1.080306e-05 1.541809e-04
## CHMP1A -3.869671e+01 8.704788e+01 -4.585952 1.084027e-05 1.545260e-04
## FAM3A -7.915349e+00 1.098795e+01 -4.585121 1.087722e-05 1.547719e-04
## TXNRD2 -6.061830e+00 1.009480e+01 -4.584851 1.088926e-05 1.547719e-04
## TFEB -5.878368e+01 9.473989e+01 -4.584684 1.089668e-05 1.547719e-04
## GPAA1 -1.811142e+01 2.123605e+01 -4.584295 1.091407e-05 1.548336e-04
## SELENOO -9.103616e+00 1.127924e+01 -4.583624 1.094408e-05 1.550738e-04
## RPL27A -5.670836e+02 6.994942e+02 -4.583231 1.096166e-05 1.551376e-04
## MIER3 3.891784e+00 1.024188e+01 4.582491 1.099493e-05 1.554230e-04
## ZNF778 1.632957e+00 6.761855e+00 4.580691 1.107619e-05 1.562424e-04
## STMN3 -1.624409e+01 1.759112e+01 -4.580623 1.107924e-05 1.562424e-04
## NRM -8.009683e+00 1.595552e+01 -4.578910 1.115717e-05 1.570331e-04
## CYP51A1 5.534448e+00 1.331550e+01 4.578808 1.116180e-05 1.570331e-04
## SS18L1 2.065932e+00 9.890588e+00 4.578185 1.119031e-05 1.571114e-04
## RAD51AP1 1.869022e+00 2.255727e+00 4.578107 1.119386e-05 1.571114e-04
## HSF1 -6.453139e+00 1.526797e+01 -4.576910 1.124878e-05 1.576956e-04
## MXD4 -1.271249e+01 2.061608e+01 -4.576308 1.127652e-05 1.578979e-04
## ADRM1 -1.209985e+01 2.622650e+01 -4.575436 1.131679e-05 1.582749e-04
## PPP1CA -9.281177e+01 2.112399e+02 -4.574842 1.134430e-05 1.584728e-04
## ACAP1 -9.205917e+01 1.814443e+02 -4.574260 1.137130e-05 1.586631e-04
## TLK1 2.917925e+01 7.687831e+01 4.573847 1.139050e-05 1.587442e-04
## HIGD2A -2.138436e+01 3.950013e+01 -4.573457 1.140868e-05 1.587493e-04
## CACTIN -3.312806e+00 5.544140e+00 -4.573119 1.142447e-05 1.587493e-04
## TMEM161A -2.100574e+00 2.388716e+00 -4.572888 1.143525e-05 1.587493e-04
## GSTP1 -7.127316e+01 8.592448e+01 -4.572692 1.144440e-05 1.587493e-04
## CEP295 5.506089e+00 1.548510e+01 4.572148 1.146986e-05 1.589165e-04
## KCNQ5 6.117867e-01 1.012879e+00 4.570307 1.155645e-05 1.599294e-04
## IL18BP -2.896984e+00 6.305278e+00 -4.569582 1.159071e-05 1.600715e-04
## SUZ12 1.820865e+01 5.628733e+01 4.569519 1.159371e-05 1.600715e-04
## GPR180 2.198621e+00 5.340497e+00 4.568816 1.162705e-05 1.602146e-04
## RPS11 -9.251632e+02 1.485880e+03 -4.568457 1.164413e-05 1.602146e-04
## SMC3 1.402844e+01 4.415372e+01 4.568199 1.165639e-05 1.602146e-04
## RIC1 2.036287e+01 4.648304e+01 4.568163 1.165811e-05 1.602146e-04
## HECTD4 6.333140e+00 1.841572e+01 4.564946 1.181221e-05 1.621445e-04
## ZNF414 -1.625142e+00 1.781093e+00 -4.563289 1.189236e-05 1.629109e-04
## SH3TC2 2.375039e+00 3.758019e+00 4.563224 1.189552e-05 1.629109e-04
## LRRC29 -8.080372e-01 1.152030e+00 -4.561514 1.197884e-05 1.638628e-04
## LARP4 4.047100e+00 1.249580e+01 4.560493 1.202882e-05 1.643569e-04
## KIFAP3 5.219478e+00 1.393447e+01 4.559599 1.207277e-05 1.647675e-04
## CKAP5 7.654220e+00 2.002765e+01 4.557936 1.215494e-05 1.656983e-04
## BBS5 -2.432960e+00 6.521254e+00 -4.556892 1.220678e-05 1.662140e-04
## ZKSCAN3 1.088319e+00 4.269976e+00 4.556329 1.223480e-05 1.664045e-04
## POLH 2.939445e+00 1.322299e+01 4.555902 1.225613e-05 1.664515e-04
## RBBP8 3.993017e+00 1.393609e+01 4.555698 1.226633e-05 1.664515e-04
## MLLT1 -2.837615e+01 4.617664e+01 -4.554728 1.231491e-05 1.669198e-04
## GGA1 -1.653567e+01 3.310172e+01 -4.553345 1.238452e-05 1.676717e-04
## FSCN1 -7.469945e-01 1.136395e+00 -4.551355 1.248539e-05 1.687932e-04
## NSMCE1 -1.887628e+01 2.904887e+01 -4.551049 1.250092e-05 1.687932e-04
## GNB1L -9.128182e-01 8.240062e-01 -4.550618 1.252292e-05 1.687932e-04
## NCLN -2.705430e+01 4.016096e+01 -4.550591 1.252428e-05 1.687932e-04
## CNOT6 9.588616e+00 2.988508e+01 4.547095 1.270389e-05 1.710194e-04
## BBX 1.559064e+01 3.457360e+01 4.546733 1.272263e-05 1.710457e-04
## ASMTL -7.416375e+00 1.662093e+01 -4.546500 1.273468e-05 1.710457e-04
## SCAF1 -5.681919e+00 1.161429e+01 -4.544537 1.283685e-05 1.722229e-04
## GRHPR -9.658054e+00 2.369453e+01 -4.543327 1.290025e-05 1.727776e-04
## HAUS7 -4.525966e+00 6.169819e+00 -4.542966 1.291920e-05 1.727776e-04
## SLC22A18 -5.551606e+00 6.354724e+00 -4.542677 1.293438e-05 1.727776e-04
## SIRT6 -7.004866e+00 8.585883e+00 -4.542638 1.293647e-05 1.727776e-04
## COPE -4.584188e+01 7.238238e+01 -4.541471 1.299802e-05 1.733665e-04
## H2BC8 1.552358e+00 2.516798e+00 4.541248 1.300979e-05 1.733665e-04
## STX4 -1.808469e+01 5.384012e+01 -4.537421 1.321391e-05 1.758889e-04
## NSF 1.346555e+01 4.643718e+01 4.536314 1.327348e-05 1.761971e-04
## ANKRD36C 8.707438e-01 1.395668e+00 4.536166 1.328151e-05 1.761971e-04
## ZDHHC8 -2.258352e+00 3.354689e+00 -4.536104 1.328483e-05 1.761971e-04
## MAD2L1 3.645094e+00 5.855353e+00 4.535888 1.329649e-05 1.761971e-04
## SCAND1 -5.002725e+00 4.666259e+00 -4.532578 1.347656e-05 1.783840e-04
## ARHGEF5 2.026483e+00 3.774047e+00 4.531382 1.354222e-05 1.790531e-04
## D2HGDH -2.735631e+00 2.923586e+00 -4.530944 1.356633e-05 1.791722e-04
## AKR7A2 -6.821687e+00 1.283851e+01 -4.529061 1.367053e-05 1.803476e-04
## RSU1 2.846733e+01 7.403378e+01 4.525876 1.384843e-05 1.824915e-04
## C18orf54 6.474866e-01 1.642474e+00 4.525153 1.388918e-05 1.828254e-04
## SCUBE1 -6.946466e-01 1.213141e+00 -4.523809 1.396514e-05 1.836215e-04
## CREB3L2 7.557523e+00 1.981567e+01 4.522880 1.401788e-05 1.839136e-04
## BDP1 9.026508e+00 2.056879e+01 4.522871 1.401838e-05 1.839136e-04
## MIIP -2.022756e+01 3.057718e+01 -4.522461 1.404172e-05 1.839605e-04
## CCDC12 -2.177824e+01 3.068563e+01 -4.522221 1.405542e-05 1.839605e-04
## ZDHHC12 -1.192589e+01 1.645825e+01 -4.521992 1.406848e-05 1.839605e-04
## LANCL3 1.253916e+00 2.256862e+00 4.521690 1.408570e-05 1.839828e-04
## PATL1 4.138519e+01 9.050442e+01 4.518074 1.429381e-05 1.864957e-04
## ARHGAP21 1.109044e+01 2.269131e+01 4.517002 1.435607e-05 1.871022e-04
## LNPEP 2.572530e+01 7.994613e+01 4.516485 1.438621e-05 1.872892e-04
## VPS51 -2.231818e+01 2.467671e+01 -4.515770 1.442799e-05 1.876271e-04
## VANGL1 1.547832e+00 3.245556e+00 4.513765 1.454568e-05 1.889505e-04
## RABGAP1 6.870440e+00 2.488278e+01 4.513006 1.459051e-05 1.893255e-04
## HSPA13 1.089961e+01 2.075128e+01 4.511438 1.468349e-05 1.903238e-04
## TYK2 -4.327962e+01 1.468494e+02 -4.510584 1.473436e-05 1.906488e-04
## RAB3A -5.265182e-01 8.812048e-01 -4.510478 1.474072e-05 1.906488e-04
## AIP -2.080104e+01 4.099780e+01 -4.509413 1.480444e-05 1.911603e-04
## LILRB3 -2.509676e+02 4.729252e+02 -4.509278 1.481250e-05 1.911603e-04
## PUSL1 -2.851430e+00 3.141627e+00 -4.508577 1.485465e-05 1.914959e-04
## SPIN4 1.159967e+00 2.247519e+00 4.507781 1.490257e-05 1.919049e-04
## GMNN 3.233196e+00 6.201325e+00 4.507001 1.494974e-05 1.921908e-04
## EFR3A 2.162194e+01 5.636296e+01 4.506749 1.496500e-05 1.921908e-04
## HSF4 -1.376636e+00 2.233804e+00 -4.506611 1.497338e-05 1.921908e-04
## KLHDC3 -2.243563e+01 5.692648e+01 -4.505936 1.501432e-05 1.925080e-04
## SERF2 -3.019517e+02 4.475110e+02 -4.503019 1.519261e-05 1.945836e-04
## XPNPEP1 1.044397e+01 3.470850e+01 4.501897 1.526174e-05 1.952581e-04
## SLC25A1 -7.860055e+00 1.218737e+01 -4.500901 1.532339e-05 1.958356e-04
## XK 6.849745e+00 1.068010e+01 4.499495 1.541076e-05 1.966246e-04
## RETSAT 6.156744e+00 2.434155e+01 4.499374 1.541829e-05 1.966246e-04
## HCK -3.559470e+02 7.718585e+02 -4.497397 1.554202e-05 1.978774e-04
## PEAK1 5.558198e+00 1.193587e+01 4.497272 1.554990e-05 1.978774e-04
## NDUFC2 -1.377495e+01 2.833184e+01 -4.496585 1.559317e-05 1.980063e-04
## PFDN5 -2.726877e+02 4.489034e+02 -4.496581 1.559341e-05 1.980063e-04
## SNAPC4 -2.154340e+00 5.430458e+00 -4.496020 1.562880e-05 1.982434e-04
## GALK1 -1.045526e+01 1.286662e+01 -4.495126 1.568542e-05 1.987491e-04
## UBE3C 9.989640e+00 4.073525e+01 4.494148 1.574754e-05 1.993232e-04
## GPR162 -8.809435e+00 1.056945e+01 -4.493757 1.577242e-05 1.994252e-04
## RBM15B -7.466719e+00 3.841760e+01 -4.493470 1.579075e-05 1.994444e-04
## STUB1 -2.075953e+01 2.941626e+01 -4.492790 1.583417e-05 1.997801e-04
## RBM42 -1.671501e+01 2.330363e+01 -4.491483 1.591799e-05 2.006242e-04
## RPS4X -4.566615e+02 8.255936e+02 -4.491172 1.593799e-05 2.006630e-04
## XPNPEP3 1.832005e+00 9.121096e+00 4.490753 1.596503e-05 2.007904e-04
## CAPS -3.626775e+00 3.179834e+00 -4.487300 1.618919e-05 2.033938e-04
## FAU -2.529266e+02 3.203537e+02 -4.486280 1.625597e-05 2.037863e-04
## DBT 2.620298e+00 8.330932e+00 4.486078 1.626927e-05 2.037863e-04
## ACOT8 -6.963002e+00 1.303125e+01 -4.486036 1.627198e-05 2.037863e-04
## FRG1 -1.284361e+01 4.000742e+01 -4.484908 1.634627e-05 2.045008e-04
## PTPN11 1.658068e+01 4.422719e+01 4.483359 1.644873e-05 2.055658e-04
## NUP205 8.236098e+00 1.882619e+01 4.482568 1.650133e-05 2.058489e-04
## ZBTB38 1.462599e+01 3.039728e+01 4.482496 1.650609e-05 2.058489e-04
## TIGD5 -1.944518e+00 2.591716e+00 -4.480866 1.661500e-05 2.069893e-04
## LMF2 -2.074041e+01 2.634210e+01 -4.480129 1.666451e-05 2.073883e-04
## CIAO3 -4.929150e+00 6.969813e+00 -4.478070 1.680345e-05 2.088826e-04
## SPI1 -2.528621e+02 4.114436e+02 -4.477828 1.681980e-05 2.088826e-04
## SURF2 -4.010799e+00 5.003539e+00 -4.477178 1.686393e-05 2.092115e-04
## TP53BP1 6.952871e+00 2.019902e+01 4.476496 1.691040e-05 2.095688e-04
## RALY -5.846200e+01 1.311957e+02 -4.475620 1.697020e-05 2.100904e-04
## GINS3 9.444554e-01 2.159317e+00 4.475139 1.700314e-05 2.101402e-04
## DARS2 1.747537e+00 6.751483e+00 4.475044 1.700966e-05 2.101402e-04
## TCIRG1 -1.536112e+02 2.462051e+02 -4.472851 1.716062e-05 2.117846e-04
## PRICKLE3 -1.085294e+00 3.878913e+00 -4.469803 1.737262e-05 2.138771e-04
## BAZ1B 1.120037e+01 3.996364e+01 4.469755 1.737597e-05 2.138771e-04
## SETD2 2.926178e+01 8.511057e+01 4.469251 1.741127e-05 2.138771e-04
## ARAP1 -2.267104e+02 5.173862e+02 -4.469147 1.741855e-05 2.138771e-04
## BRF1 -3.250440e+00 5.506299e+00 -4.469122 1.742034e-05 2.138771e-04
## C5orf51 8.422332e+00 2.241249e+01 4.468231 1.748289e-05 2.144230e-04
## PHETA1 -3.672489e+00 5.213331e+00 -4.466417 1.761106e-05 2.156310e-04
## RGS14 -7.845208e+01 1.545188e+02 -4.466137 1.763093e-05 2.156310e-04
## LDB1 -3.216831e+01 1.415039e+02 -4.466043 1.763761e-05 2.156310e-04
## UBE3B 6.781778e+00 2.854776e+01 4.465810 1.765410e-05 2.156310e-04
## CUEDC2 -1.434292e+01 3.129498e+01 -4.465333 1.768809e-05 2.156956e-04
## PRIM1 1.850934e+00 5.484404e+00 4.465225 1.769577e-05 2.156956e-04
## PRIM2 1.200782e+00 5.037376e+00 4.464690 1.773387e-05 2.159381e-04
## ALDH3B1 -2.779032e+01 5.200472e+01 -4.464376 1.775630e-05 2.159895e-04
## POLL -8.104739e+00 1.538896e+01 -4.463861 1.779313e-05 2.162157e-04
## USP24 1.510426e+01 4.766086e+01 4.463307 1.783285e-05 2.164766e-04
## KATNB1 -4.697958e+00 1.215088e+01 -4.460486 1.803637e-05 2.187232e-04
## REPIN1 -8.096974e+00 2.288002e+01 -4.459431 1.811303e-05 2.194286e-04
## DAGLB -8.594286e+00 2.410453e+01 -4.457572 1.824894e-05 2.208494e-04
## MND1 8.890727e-01 1.056202e+00 4.456760 1.830861e-05 2.210862e-04
## PPM1M -1.141908e+02 2.218853e+02 -4.456438 1.833229e-05 2.210862e-04
## FES -8.945093e+01 1.466250e+02 -4.456149 1.835364e-05 2.210862e-04
## PCNA 1.299447e+01 3.390473e+01 4.456121 1.835567e-05 2.210862e-04
## EIF3C -4.213423e+01 1.050756e+02 -4.455982 1.836596e-05 2.210862e-04
## CINP -9.367843e+00 1.988453e+01 -4.455787 1.838035e-05 2.210862e-04
## BMPR2 9.782449e+00 2.047370e+01 4.454494 1.847608e-05 2.220124e-04
## ACY1 -1.461946e+00 2.749381e+00 -4.453753 1.853121e-05 2.224495e-04
## ZSCAN18 -3.312333e+00 5.291161e+00 -4.451285 1.871583e-05 2.241235e-04
## TMEM141 -1.585325e+01 2.084994e+01 -4.451143 1.872648e-05 2.241235e-04
## PPAT 1.705954e+00 3.558442e+00 4.451132 1.872735e-05 2.241235e-04
## GET4 -9.032216e+00 1.780252e+01 -4.447856 1.897533e-05 2.268247e-04
## NELFA -1.523461e+00 4.133731e+00 -4.447646 1.899131e-05 2.268247e-04
## BTN3A3 3.775218e+01 7.670434e+01 4.446065 1.911224e-05 2.280394e-04
## CNN2 -2.533713e+02 5.810240e+02 -4.443735 1.929175e-05 2.298631e-04
## FAAP20 -4.906017e+00 6.403650e+00 -4.443579 1.930385e-05 2.298631e-04
## BLOC1S3 -3.281999e+00 1.518008e+01 -4.443184 1.933439e-05 2.299958e-04
## SPG7 -1.203304e+01 3.092756e+01 -4.441044 1.950109e-05 2.317464e-04
## ROGDI -2.654857e+01 3.294670e+01 -4.440419 1.955001e-05 2.320952e-04
## RPL12 -3.706398e+02 5.833387e+02 -4.436556 1.985513e-05 2.353151e-04
## PUS7L 4.291033e+00 1.317004e+01 4.436484 1.986091e-05 2.353151e-04
## SIVA1 -4.254342e+00 3.976360e+00 -4.434652 2.000724e-05 2.368122e-04
## AP4E1 4.294026e+00 1.253658e+01 4.433865 2.007042e-05 2.373232e-04
## KCNN4 -8.189785e+00 1.033067e+01 -4.433068 2.013463e-05 2.377817e-04
## CCDC124 -5.749637e+00 6.240660e+00 -4.432886 2.014929e-05 2.377817e-04
## TP53I13 -8.669515e+00 7.957969e+00 -4.428567 2.050077e-05 2.416890e-04
## TYMP -1.657611e+02 1.938283e+02 -4.427944 2.055196e-05 2.420518e-04
## RFC4 3.032604e+00 8.599739e+00 4.427017 2.062838e-05 2.427109e-04
## RPL13A -1.187928e+03 1.394651e+03 -4.425858 2.072432e-05 2.435981e-04
## SMG1 7.184438e+01 1.639072e+02 4.425082 2.078869e-05 2.439007e-04
## BAG2 1.050046e+00 3.437048e+00 4.425052 2.079120e-05 2.439007e-04
## NIPA1 2.489180e+00 5.963572e+00 4.424305 2.085343e-05 2.443890e-04
## CHMP4A -2.638249e+01 6.563874e+01 -4.422353 2.101696e-05 2.454985e-04
## ESPL1 1.377139e+00 1.738439e+00 4.422321 2.101960e-05 2.454985e-04
## PRAM1 -4.065091e+01 6.144100e+01 -4.422291 2.102210e-05 2.454985e-04
## ABI3 -1.962801e+01 2.608378e+01 -4.422145 2.103437e-05 2.454985e-04
## AMDHD2 -6.922038e+00 9.567544e+00 -4.421941 2.105160e-05 2.454985e-04
## NOC2L -8.731109e+00 1.878158e+01 -4.421197 2.111432e-05 2.459880e-04
## MRPL49 6.075565e+00 3.850536e+01 4.419800 2.123255e-05 2.471227e-04
## PIP4K2A 2.304279e+01 1.349147e+02 4.417936 2.139140e-05 2.487275e-04
## SLC39A1 -2.213254e+01 6.807186e+01 -4.417398 2.143738e-05 2.488495e-04
## SLC7A7 -5.761244e+01 1.638978e+02 -4.416955 2.147537e-05 2.488495e-04
## JCHAIN 7.949634e+02 6.739732e+02 4.416598 2.150604e-05 2.488495e-04
## SF3A2 -8.685079e+00 1.103003e+01 -4.416595 2.150633e-05 2.488495e-04
## MRPL42 4.169076e+00 1.959851e+01 4.416549 2.151030e-05 2.488495e-04
## TCHP 4.179027e+00 1.758723e+01 4.416345 2.152779e-05 2.488495e-04
## ZNF219 -7.970565e-01 1.032236e+00 -4.414888 2.165349e-05 2.500588e-04
## FZR1 -1.025917e+01 2.218043e+01 -4.413753 2.175193e-05 2.509512e-04
## ARAF -2.525413e+01 6.003651e+01 -4.412854 2.183018e-05 2.516093e-04
## PPCS -1.157506e+01 4.554313e+01 -4.412063 2.189926e-05 2.521604e-04
## GUK1 -4.775540e+01 6.148328e+01 -4.409707 2.210623e-05 2.542966e-04
## MZF1 -9.373612e-01 2.037143e+00 -4.408763 2.218970e-05 2.550095e-04
## TNKS2 2.842121e+01 7.444453e+01 4.408175 2.224177e-05 2.551429e-04
## CIT 1.100695e+00 1.329366e+00 4.408147 2.224433e-05 2.551429e-04
## PRXL2B -3.393572e+00 8.273215e+00 -4.406183 2.241934e-05 2.568653e-04
## ARPC1B -1.652885e+02 3.803105e+02 -4.405976 2.243781e-05 2.568653e-04
## EVI5L -2.380261e+00 4.592831e+00 -4.404788 2.254448e-05 2.575024e-04
## SPTBN1 1.686085e+01 3.219713e+01 4.404687 2.255351e-05 2.575024e-04
## TMEM179B -6.919484e+00 2.938063e+01 -4.404631 2.255860e-05 2.575024e-04
## ZBTB45 -1.585638e+00 2.702421e+00 -4.401621 2.283098e-05 2.603610e-04
## ZMYND15 -2.637870e+00 3.878085e+00 -4.400051 2.297441e-05 2.617450e-04
## KIF18B 1.141919e+00 2.002096e+00 4.398109 2.315291e-05 2.635254e-04
## ERP29 -6.319170e+01 1.449785e+02 -4.397588 2.320098e-05 2.638194e-04
## IFT122 -1.504672e+00 5.680293e+00 -4.396517 2.330024e-05 2.646943e-04
## CASP3 1.380364e+01 5.589537e+01 4.394929 2.344811e-05 2.661192e-04
## MAN1A2 8.867009e+00 2.294460e+01 4.393867 2.354749e-05 2.667672e-04
## DPP7 -3.054141e+01 2.498545e+01 -4.393838 2.355019e-05 2.667672e-04
## HERC2 1.811934e+01 3.273910e+01 4.393475 2.358432e-05 2.668989e-04
## UBA1 -4.788885e+01 1.873462e+02 -4.392605 2.366620e-05 2.675702e-04
## PGAP3 -5.340412e+00 8.750789e+00 -4.392030 2.372043e-05 2.679279e-04
## MORN2 -7.163130e-01 1.565137e+00 -4.390730 2.384352e-05 2.690620e-04
## RPL15 -2.663745e+02 6.730490e+02 -4.390254 2.388869e-05 2.693154e-04
## BORCS6 -1.161975e+01 1.692804e+01 -4.389374 2.397250e-05 2.700036e-04
## SLC35A3 3.115444e+00 1.108306e+01 4.388866 2.402106e-05 2.702939e-04
## COBLL1 2.586859e+00 3.479418e+00 4.388315 2.407379e-05 2.704210e-04
## ENTPD4 2.176059e+01 7.385286e+01 4.388253 2.407977e-05 2.704210e-04
## PLOD3 -5.746971e+00 1.374470e+01 -4.388034 2.410076e-05 2.704210e-04
## TAF4B 1.925959e+00 3.161009e+00 4.387716 2.413121e-05 2.705067e-04
## SIRT2 -1.601494e+01 5.563416e+01 -4.385231 2.437099e-05 2.729367e-04
## ANKRD13D -4.026992e+01 1.041355e+02 -4.384459 2.444596e-05 2.735180e-04
## ANO6 2.388717e+01 5.733702e+01 4.384187 2.447244e-05 2.735562e-04
## ZGRF1 1.202805e+00 2.908208e+00 4.383811 2.450903e-05 2.737073e-04
## RPS14 -4.755412e+02 7.788518e+02 -4.381686 2.471700e-05 2.752945e-04
## NANP 6.898222e-01 2.393846e+00 4.381640 2.472154e-05 2.752945e-04
## SMIM13 1.319378e+00 5.972887e+00 4.381504 2.473488e-05 2.752945e-04
## BPTF 1.990045e+01 4.924442e+01 4.381411 2.474401e-05 2.752945e-04
## TRPM4 -7.103095e-01 7.660720e-01 -4.380972 2.478728e-05 2.755175e-04
## COX4I1 -1.798185e+02 3.397489e+02 -4.377589 2.512279e-05 2.789853e-04
## BRMS1 -2.628805e+01 5.200969e+01 -4.376410 2.524074e-05 2.798529e-04
## LRRC8B 4.285970e+00 9.636119e+00 4.376336 2.524811e-05 2.798529e-04
## SNTB1 9.884752e+00 3.299569e+01 4.375824 2.529955e-05 2.801612e-04
## ATP6V1F -2.678286e+01 5.748247e+01 -4.372756 2.560962e-05 2.833191e-04
## CHAC2 2.200819e+00 2.937801e+00 4.372532 2.563249e-05 2.833191e-04
## CLCN7 -1.417343e+01 2.415015e+01 -4.370800 2.580931e-05 2.850078e-04
## GIMAP1-GIMAP5 -1.976177e+01 3.764135e+01 -4.370479 2.584217e-05 2.851053e-04
## APRT -3.257247e+01 3.286586e+01 -4.369564 2.593617e-05 2.855712e-04
## POLRMT -8.728333e+00 1.124837e+01 -4.369483 2.594455e-05 2.855712e-04
## UBXN6 -2.464126e+01 3.852493e+01 -4.369366 2.595664e-05 2.855712e-04
## FANCL 1.092352e+00 2.872283e+00 4.368740 2.602121e-05 2.859173e-04
## RABEP2 -4.160110e+00 4.150292e+00 -4.368593 2.603631e-05 2.859173e-04
## RNF126 -3.873819e+00 5.363808e+00 -4.367674 2.613147e-05 2.866968e-04
## TRMT2A -1.130110e+01 1.576644e+01 -4.365911 2.631482e-05 2.884415e-04
## DGKZ -2.948371e+01 7.529135e+01 -4.365056 2.640426e-05 2.891547e-04
## RASGRP2 -4.957966e+01 1.684985e+02 -4.363838 2.653210e-05 2.902866e-04
## HSCB -1.924093e+00 5.028321e+00 -4.362256 2.669897e-05 2.918432e-04
## AIFM3 -2.158146e+00 2.507852e+00 -4.361985 2.672772e-05 2.918884e-04
## NPEPL1 -1.806075e+01 4.376779e+01 -4.360210 2.691644e-05 2.934831e-04
## RPL3 -7.336713e+02 1.152295e+03 -4.360146 2.692324e-05 2.934831e-04
## DUS3L -2.320604e+00 3.230816e+00 -4.359289 2.701485e-05 2.941484e-04
## DHPS -6.486139e+00 2.445493e+01 -4.359111 2.703387e-05 2.941484e-04
## TBC1D20 1.024325e+01 5.433277e+01 4.358584 2.709036e-05 2.944928e-04
## ADCK2 -4.016421e+00 8.212438e+00 -4.357803 2.717437e-05 2.951355e-04
## STX17 8.543946e+00 1.881522e+01 4.354931 2.748519e-05 2.982382e-04
## LATS1 7.284174e+00 1.826010e+01 4.353354 2.765741e-05 2.998326e-04
## EPB41L5 2.003054e+00 4.358731e+00 4.352434 2.775832e-05 3.006517e-04
## AP2A2 -6.232725e+00 2.404788e+01 -4.351377 2.787461e-05 3.016358e-04
## SDHAF1 -3.837187e+00 6.307657e+00 -4.350722 2.794701e-05 3.021436e-04
## CCNE1 1.307204e+00 1.938149e+00 4.349553 2.807658e-05 3.030040e-04
## PEX16 -8.383064e+00 1.218291e+01 -4.349543 2.807769e-05 3.030040e-04
## SUCNR1 3.326879e+00 3.860900e+00 4.348892 2.815008e-05 3.033388e-04
## CHPF2 -1.651879e+01 5.356536e+01 -4.348605 2.818208e-05 3.033388e-04
## CCS -1.334222e+01 1.625326e+01 -4.348575 2.818544e-05 3.033388e-04
## ARL5A 8.606697e+00 3.234736e+01 4.347490 2.830660e-05 3.040945e-04
## CD99L2 -1.147377e+01 2.948080e+01 -4.347487 2.830694e-05 3.040945e-04
## PARP6 1.228659e+01 4.794632e+01 4.346948 2.836742e-05 3.044684e-04
## RHOBTB1 6.332590e+00 1.013776e+01 4.346318 2.843812e-05 3.049513e-04
## PQBP1 -1.904990e+01 3.757419e+01 -4.344074 2.869164e-05 3.073919e-04
## ANKRD33B 5.527362e+00 1.126740e+01 4.342469 2.887418e-05 3.090684e-04
## TPPP3 -7.032412e+00 4.216053e+00 -4.341899 2.893934e-05 3.094865e-04
## BRICD5 -1.219632e+00 1.341393e+00 -4.340684 2.907862e-05 3.106959e-04
## ST14 -1.281479e+01 2.232159e+01 -4.339643 2.919852e-05 3.113890e-04
## SMG9 -6.634472e+00 1.302365e+01 -4.339594 2.920408e-05 3.113890e-04
## ESYT2 1.823205e+01 5.671876e+01 4.339279 2.924052e-05 3.113890e-04
## MED16 -9.295787e+00 1.375212e+01 -4.339210 2.924851e-05 3.113890e-04
## MEGF8 -1.739998e+00 5.122226e+00 -4.337825 2.940887e-05 3.128155e-04
## ZC3H6 4.900168e+00 1.307652e+01 4.337540 2.944202e-05 3.128875e-04
## ROCK2 1.387596e+01 2.984139e+01 4.335889 2.963456e-05 3.146138e-04
## SPG11 4.786048e+01 1.212577e+02 4.335693 2.965753e-05 3.146138e-04
## GNA15 -1.226257e+01 2.381137e+01 -4.334608 2.978489e-05 3.156826e-04
## RAB1B -8.156464e+01 2.190219e+02 -4.334284 2.982294e-05 3.157096e-04
## DTX2 -1.079600e+01 2.113412e+01 -4.334134 2.984068e-05 3.157096e-04
## PGM3 2.859595e+00 9.785178e+00 4.333381 2.992943e-05 3.163664e-04
## RYR1 -1.183824e+00 1.546502e+00 -4.332534 3.002966e-05 3.171432e-04
## CRTAP -3.665993e+01 1.004140e+02 -4.332256 3.006264e-05 3.172089e-04
## ELOF1 -1.465827e+01 3.308626e+01 -4.330369 3.028738e-05 3.192963e-04
## PIK3C2A 8.273188e+00 1.992995e+01 4.330063 3.032395e-05 3.193979e-04
## WIZ -2.327922e+00 6.936220e+00 -4.329725 3.036434e-05 3.195395e-04
## THEM6 -2.811470e+00 3.528391e+00 -4.329405 3.040272e-05 3.196244e-04
## NFKBIL1 -4.938342e+00 8.411734e+00 -4.329209 3.042630e-05 3.196244e-04
## BTN2A2 1.493925e+01 3.296008e+01 4.328906 3.046265e-05 3.197230e-04
## PEX5 -3.554870e+00 1.715291e+01 -4.327697 3.060828e-05 3.205640e-04
## PRMT3 1.404156e+00 5.450884e+00 4.327666 3.061202e-05 3.205640e-04
## VPS72 -4.889724e+00 2.672480e+01 -4.327568 3.062386e-05 3.205640e-04
## PHACTR4 3.910132e+00 1.447161e+01 4.326144 3.079625e-05 3.220843e-04
## PAXIP1 1.781538e+00 6.051895e+00 4.325262 3.090353e-05 3.229215e-04
## CSNK1G1 7.244119e+00 2.278862e+01 4.324042 3.105251e-05 3.241926e-04
## MYO9B -5.256463e+01 1.816536e+02 -4.323555 3.111214e-05 3.245181e-04
## NUDT16L1 -8.080813e+00 1.700588e+01 -4.323341 3.113842e-05 3.245181e-04
## TALDO1 -3.731416e+02 7.690418e+02 -4.323082 3.117023e-05 3.245389e-04
## FRYL 1.556451e+01 4.537357e+01 4.322879 3.119514e-05 3.245389e-04
## LRRC37B 5.902228e+00 1.816606e+01 4.322168 3.128273e-05 3.251650e-04
## DGAT1 -2.161632e+01 4.230236e+01 -4.321271 3.139345e-05 3.260301e-04
## EPG5 2.580961e+01 5.076223e+01 4.320606 3.147576e-05 3.265989e-04
## HCFC2 2.700624e+00 8.464388e+00 4.318408 3.174950e-05 3.291513e-04
## RALGAPB 1.701094e+01 5.390568e+01 4.317717 3.183603e-05 3.296167e-04
## CRKL 3.002488e+01 9.064875e+01 4.317582 3.185288e-05 3.296167e-04
## NFAM1 -2.385965e+02 6.159283e+02 -4.317384 3.187777e-05 3.296167e-04
## TMEM189 -6.186166e+00 1.619761e+01 -4.317125 3.191024e-05 3.296650e-04
## CNOT1 3.517910e+01 1.413727e+02 4.316416 3.199949e-05 3.302767e-04
## DCTN1 -1.859850e+01 8.389166e+01 -4.316212 3.202514e-05 3.302767e-04
## PIP5K1C -5.825052e+00 1.354032e+01 -4.315923 3.206164e-05 3.303658e-04
## FAM110A -1.209457e+01 1.801229e+01 -4.315026 3.217507e-05 3.312469e-04
## RPL18A -3.905724e+02 3.745194e+02 -4.313032 3.242856e-05 3.335669e-04
## KIAA1191 5.746886e+00 2.839742e+01 4.312744 3.246528e-05 3.336553e-04
## CCAR2 -1.647791e+01 6.108747e+01 -4.312128 3.254411e-05 3.341758e-04
## RPS6KB1 5.889863e+00 2.593115e+01 4.308831 3.296892e-05 3.381030e-04
## XPO7 1.708517e+01 4.926980e+01 4.308718 3.298357e-05 3.381030e-04
## MAML2 1.193117e+01 2.263292e+01 4.307902 3.308956e-05 3.388965e-04
## LENG1 -4.313025e+00 7.684041e+00 -4.307652 3.312200e-05 3.389069e-04
## MAP3K14 -8.409789e+00 1.994426e+01 -4.307455 3.314772e-05 3.389069e-04
## PSMB3 -1.116538e+02 2.138546e+02 -4.306581 3.326188e-05 3.397260e-04
## RAD17 3.440769e+00 1.547157e+01 4.306403 3.328513e-05 3.397260e-04
## SENP1 4.498488e+00 1.516419e+01 4.304062 3.359273e-05 3.425707e-04
## CXCR5 -9.417146e+00 1.186253e+01 -4.303040 3.372796e-05 3.434277e-04
## NCOR1 2.316405e+01 9.055509e+01 4.302989 3.373468e-05 3.434277e-04
## LY86 -1.864359e+01 3.761406e+01 -4.302344 3.382034e-05 3.440045e-04
## SESTD1 1.281517e+01 2.891688e+01 4.301937 3.387439e-05 3.442590e-04
## SH2B1 -8.025044e+00 2.723072e+01 -4.300685 3.404135e-05 3.456596e-04
## TASOR2 7.386266e+00 1.534560e+01 4.298464 3.433954e-05 3.483892e-04
## GTPBP6 -6.813976e+00 7.632038e+00 -4.298101 3.438860e-05 3.485887e-04
## MTMR2 2.011502e+00 7.173805e+00 4.297368 3.448761e-05 3.492938e-04
## ARPC4-TTLL3 -1.503626e+01 3.585958e+01 -4.296910 3.454976e-05 3.496247e-04
## INO80D 1.118060e+01 2.880287e+01 4.294992 3.481081e-05 3.519661e-04
## TM7SF3 7.112488e+00 3.271562e+01 4.293976 3.494982e-05 3.530706e-04
## FERMT3 -1.121546e+02 2.103145e+02 -4.293707 3.498679e-05 3.531432e-04
## ASB13 -3.585194e+00 8.068603e+00 -4.292830 3.510731e-05 3.540584e-04
## MUTYH -3.308953e+00 6.164116e+00 -4.292578 3.514201e-05 3.541073e-04
## EIF3K -7.847702e+01 1.420417e+02 -4.292096 3.520854e-05 3.544765e-04
## DCLRE1A 2.931159e+00 7.064350e+00 4.291228 3.532854e-05 3.553830e-04
## ZNF75D 4.347123e+00 1.705072e+01 4.290630 3.541158e-05 3.559164e-04
## PNMA1 5.669602e+00 1.804228e+01 4.289272 3.560064e-05 3.575136e-04
## TOP3B -3.655150e+00 1.327283e+01 -4.287297 3.587733e-05 3.599874e-04
## EOLA2 -4.502927e+00 1.464802e+01 -4.286013 3.605831e-05 3.614975e-04
## MKLN1 3.040551e+01 8.586137e+01 4.285245 3.616698e-05 3.622807e-04
## CLIC4 1.457501e+01 3.683004e+01 4.283326 3.643987e-05 3.644050e-04
## PGGHG -1.914419e+02 2.902349e+02 -4.283322 3.644050e-05 3.644050e-04
## SMIM29 -1.079901e+01 1.803404e+01 -4.280807 3.680113e-05 3.675155e-04
## HLA-DPB1 -1.299728e+02 1.731408e+02 -4.280721 3.681353e-05 3.675155e-04
## LARP1B 2.193963e+00 5.579827e+00 4.280217 3.688623e-05 3.679316e-04
## RAI1 -1.006647e+00 2.227215e+00 -4.279488 3.699167e-05 3.686733e-04
## INAFM1 -4.971610e+00 5.178638e+00 -4.278223 3.717534e-05 3.701928e-04
## CCDC96 -5.759382e-01 1.130881e+00 -4.276227 3.746679e-05 3.727820e-04
## KIF2C 3.942531e+00 4.777789e+00 4.275853 3.752176e-05 3.730160e-04
## NOL12 -6.920449e+00 2.286315e+01 -4.274273 3.775442e-05 3.750146e-04
## DENND4C 9.384565e+00 2.295997e+01 4.273501 3.786858e-05 3.758306e-04
## ACTG1 -5.399432e+02 1.362670e+03 -4.273289 3.789995e-05 3.758306e-04
## SYNRG 1.438899e+01 4.828859e+01 4.272648 3.799510e-05 3.764594e-04
## LDLR 8.515866e+00 1.492274e+01 4.269570 3.845511e-05 3.805167e-04
## NUBP2 -6.564367e+00 6.268246e+00 -4.269479 3.846877e-05 3.805167e-04
## AATK -1.564530e+01 2.784013e+01 -4.268739 3.858014e-05 3.813004e-04
## TRIM28 -2.802432e+01 5.913307e+01 -4.267529 3.876300e-05 3.827887e-04
## RPS6KA4 -1.164733e+01 2.686564e+01 -4.265956 3.900196e-05 3.848280e-04
## NIBAN2 -1.320104e+01 2.647380e+01 -4.265650 3.904867e-05 3.849686e-04
## COG3 6.969608e+00 2.536233e+01 4.265026 3.914404e-05 3.855883e-04
## PDHX 2.299053e+00 7.971595e+00 4.264280 3.925816e-05 3.863915e-04
## TMEM101 -7.142625e+00 2.204445e+01 -4.263640 3.935651e-05 3.870383e-04
## FBRS -3.104846e+01 9.235538e+01 -4.262154 3.958554e-05 3.886797e-04
## STON2 5.037661e+00 9.101118e+00 4.262131 3.958896e-05 3.886797e-04
## SAP25 -1.711861e+01 1.959619e+01 -4.260562 3.983220e-05 3.907443e-04
## AP1B1 -1.936058e+01 5.288828e+01 -4.259805 3.995011e-05 3.914809e-04
## ARL15 4.308436e+00 1.407171e+01 4.259656 3.997330e-05 3.914809e-04
## WASF1 1.877185e+00 3.100667e+00 4.259415 4.001097e-05 3.915265e-04
## UAP1 9.706199e+00 1.591913e+01 4.257961 4.023859e-05 3.933843e-04
## UBR7 4.134491e+00 2.258471e+01 4.257779 4.026716e-05 3.933843e-04
## PCOLCE -8.355067e-01 1.317475e+00 -4.256799 4.042143e-05 3.945664e-04
## CCNB1 4.483181e+00 5.424136e+00 4.256557 4.045960e-05 3.946142e-04
## ACACA 2.630519e+00 7.632913e+00 4.256082 4.053473e-05 3.950221e-04
## TMEM120A -4.437768e+01 7.230839e+01 -4.253403 4.096035e-05 3.988422e-04
## GALNT10 7.826944e+00 4.787751e+01 4.250671 4.139899e-05 4.027826e-04
## TNIP2 -1.192564e+01 3.592328e+01 -4.249645 4.156490e-05 4.040654e-04
## EIF2AK4 5.323108e+00 1.596136e+01 4.248911 4.168395e-05 4.048908e-04
## GPATCH3 -5.900748e+00 1.686023e+01 -4.245843 4.218513e-05 4.094236e-04
## CEP44 2.473499e+00 9.416458e+00 4.243743 4.253146e-05 4.124473e-04
## FANCM 1.121034e+00 2.828959e+00 4.243008 4.265324e-05 4.132904e-04
## TMEM222 -1.896326e+01 3.463368e+01 -4.242524 4.273365e-05 4.137315e-04
## TEX264 -1.785980e+01 3.376475e+01 -4.241000 4.298793e-05 4.155352e-04
## PLK1 1.804673e+00 2.521290e+00 4.240988 4.299002e-05 4.155352e-04
## PEX14 -1.720126e+00 3.735753e+00 -4.240773 4.302594e-05 4.155437e-04
## EIF4EBP1 -1.225348e+01 1.583013e+01 -4.240290 4.310689e-05 4.157583e-04
## TBC1D5 1.098301e+01 4.285644e+01 4.240222 4.311827e-05 4.157583e-04
## FBXL15 -2.349245e+00 2.371857e+00 -4.238617 4.338839e-05 4.180230e-04
## FLOT2 -6.027036e+02 9.928826e+02 -4.237652 4.355161e-05 4.192549e-04
## NOSIP -4.092415e+01 5.621492e+01 -4.237383 4.359706e-05 4.193521e-04
## BCL2L2 2.897481e+00 1.026324e+01 4.237145 4.363754e-05 4.194013e-04
## MED7 -5.284706e+00 1.627404e+01 -4.236314 4.377883e-05 4.204186e-04
## CLCN3 1.013704e+01 2.990211e+01 4.235790 4.386810e-05 4.209350e-04
## LAX1 5.321927e+00 7.071200e+00 4.234213 4.413786e-05 4.231811e-04
## WDR91 -5.966516e+00 2.213817e+01 -4.233699 4.422609e-05 4.236001e-04
## HDAC7 -5.341649e+01 1.545089e+02 -4.233543 4.425300e-05 4.236001e-04
## SLC49A3 -2.674109e+00 4.653460e+00 -4.231996 4.451977e-05 4.258101e-04
## HBS1L 5.696522e+00 2.258934e+01 4.231452 4.461410e-05 4.263684e-04
## ZCCHC2 5.132204e+01 6.420986e+01 4.230951 4.470091e-05 4.265615e-04
## CCDC32 4.236883e+00 2.227692e+01 4.230921 4.470623e-05 4.265615e-04
## RPS3 -5.536141e+02 1.090454e+03 -4.230348 4.480578e-05 4.269319e-04
## PAOX -1.482533e+00 2.008571e+00 -4.230284 4.481705e-05 4.269319e-04
## ZNF580 -5.204633e+00 7.745392e+00 -4.229794 4.490245e-05 4.274022e-04
## SFXN5 -1.001796e+01 3.142315e+01 -4.229183 4.500906e-05 4.280734e-04
## WDR45 -2.009447e+01 6.259678e+01 -4.228403 4.514569e-05 4.289856e-04
## ACADVL -5.140843e+01 1.710647e+02 -4.228162 4.518785e-05 4.289856e-04
## ERMP1 3.405802e+00 1.049954e+01 4.228016 4.521349e-05 4.289856e-04
## RPLP1 -3.592901e+02 3.387761e+02 -4.227632 4.528109e-05 4.292835e-04
## VSIR -6.627353e+02 1.318588e+03 -4.227321 4.533566e-05 4.294576e-04
## BORCS8 -1.241415e+01 2.273991e+01 -4.226111 4.554921e-05 4.306581e-04
## G6PD -5.235573e+01 1.197778e+02 -4.226013 4.556655e-05 4.306581e-04
## C16orf87 2.045058e+00 6.091570e+00 4.225986 4.557132e-05 4.306581e-04
## RPL26 -3.493382e+02 6.829367e+02 -4.225606 4.563864e-05 4.309508e-04
## PEAK3 -8.962047e+00 1.547851e+01 -4.224501 4.583484e-05 4.324592e-04
## CYLD 5.228189e+01 1.725038e+02 4.221145 4.643568e-05 4.377485e-04
## ATF7IP 2.738067e+01 7.425007e+01 4.220958 4.646925e-05 4.377485e-04
## RPL4 -4.567957e+02 1.106526e+03 -4.220505 4.655107e-05 4.379971e-04
## INTS11 -1.619401e+01 3.166988e+01 -4.220403 4.656951e-05 4.379971e-04
## DENND5B 3.658794e+00 4.222445e+00 4.219823 4.667447e-05 4.386364e-04
## NAGPA -6.033266e+00 9.030750e+00 -4.219207 4.678596e-05 4.390459e-04
## SIDT2 -2.105939e+01 4.756924e+01 -4.219174 4.679208e-05 4.390459e-04
## MOSPD3 -7.115979e+00 7.036004e+00 -4.218768 4.686571e-05 4.393892e-04
## GOLGB1 1.932304e+01 6.867235e+01 4.217954 4.701400e-05 4.404314e-04
## C9orf16 -1.420213e+01 1.389679e+01 -4.216587 4.726374e-05 4.424214e-04
## ZSWIM7 -3.969160e+00 1.089111e+01 -4.215882 4.739315e-05 4.431111e-04
## ZNF764 -1.022915e+00 4.090278e+00 -4.215778 4.741214e-05 4.431111e-04
## NDC1 2.811961e+00 8.953929e+00 4.215392 4.748326e-05 4.434263e-04
## SMIM12 -1.132612e+01 4.306449e+01 -4.214410 4.766430e-05 4.447668e-04
## LEMD2 -7.988769e+00 4.078282e+01 -4.212928 4.793881e-05 4.469767e-04
## WDR24 -1.543111e+00 2.938215e+00 -4.212278 4.805973e-05 4.477520e-04
## PPP1R37 -1.901873e+00 3.768274e+00 -4.211771 4.815419e-05 4.482800e-04
## HMG20B -1.123278e+01 1.962604e+01 -4.210509 4.839007e-05 4.501226e-04
## MFSD10 -9.081759e+00 1.274814e+01 -4.210056 4.847506e-05 4.505597e-04
## XAB2 -1.109992e+01 2.158461e+01 -4.209100 4.865493e-05 4.516442e-04
## GPSM3 -3.455055e+02 7.229320e+02 -4.208754 4.872002e-05 4.516442e-04
## TBCD -9.551469e+00 2.108134e+01 -4.208724 4.872573e-05 4.516442e-04
## RPL11 -7.000160e+02 1.135183e+03 -4.208627 4.874406e-05 4.516442e-04
## CCDC57 -6.126845e+00 1.573375e+01 -4.206939 4.906368e-05 4.540202e-04
## PIGN 2.188432e+00 8.850118e+00 4.206868 4.907706e-05 4.540202e-04
## ADCK5 -2.043325e+00 2.614462e+00 -4.206017 4.923908e-05 4.547660e-04
## OXA1L -1.778730e+01 8.050274e+01 -4.205971 4.924791e-05 4.547660e-04
## RFNG -7.318773e+00 1.035427e+01 -4.205840 4.927271e-05 4.547660e-04
## NPDC1 -2.899985e+00 2.348900e+00 -4.205220 4.939110e-05 4.553342e-04
## GIMAP1 -1.386165e+01 3.657418e+01 -4.205116 4.941106e-05 4.553342e-04
## MAP2K2 -2.561870e+01 5.718113e+01 -4.204843 4.946330e-05 4.554618e-04
## NBPF10 6.771747e+01 1.138213e+02 4.204111 4.960363e-05 4.560721e-04
## PLXNB2 -2.643328e+01 4.299010e+01 -4.204096 4.960649e-05 4.560721e-04
## CD14 -1.220878e+02 1.982496e+02 -4.203110 4.979612e-05 4.574402e-04
## STX5 -2.386984e+01 5.960294e+01 -4.202921 4.983244e-05 4.574402e-04
## BANP -5.845196e+00 1.627693e+01 -4.201576 5.009241e-05 4.594710e-04
## RINL -8.316701e+00 3.743900e+01 -4.201210 5.016338e-05 4.597664e-04
## ZNF574 -2.070989e+00 5.547733e+00 -4.200525 5.029633e-05 4.606289e-04
## H4C8 5.434904e+00 5.878736e+00 4.200074 5.038424e-05 4.607512e-04
## FIGNL1 1.862183e+00 4.554028e+00 4.200058 5.038738e-05 4.607512e-04
## PHKG2 -1.838753e+01 3.977870e+01 -4.198725 5.064776e-05 4.627754e-04
## WASHC1 -6.742393e+01 1.276131e+02 -4.197517 5.088474e-05 4.645828e-04
## UHMK1 2.779466e+01 9.391854e+01 4.192468 5.188713e-05 4.733702e-04
## MTF2 5.509853e+00 2.614021e+01 4.192044 5.197207e-05 4.737807e-04
## KRI1 -1.088220e+01 2.320893e+01 -4.191348 5.211202e-05 4.746916e-04
## ZMYND8 7.012061e+00 2.655382e+01 4.190206 5.234226e-05 4.763426e-04
## GGT1 -1.223685e+01 1.670209e+01 -4.190051 5.237359e-05 4.763426e-04
## CIB1 -3.775049e+01 7.120905e+01 -4.189330 5.251958e-05 4.773044e-04
## CAPN15 -3.543292e+00 5.202729e+00 -4.189001 5.258641e-05 4.775458e-04
## TSSC4 -1.373482e+01 1.449539e+01 -4.188730 5.264138e-05 4.776793e-04
## BRPF3 1.048971e+01 2.636480e+01 4.185966 5.320588e-05 4.820958e-04
## RSF1 8.671226e+00 2.169969e+01 4.185949 5.320940e-05 4.820958e-04
## PPP1R14B -7.486369e+00 1.286853e+01 -4.185405 5.332107e-05 4.827389e-04
## PRKRIP1 -7.795748e+00 2.551916e+01 -4.185125 5.337882e-05 4.827945e-04
## DDI2 4.950030e+00 1.775701e+01 4.184980 5.340863e-05 4.827945e-04
## B3GAT3 -1.409900e+01 1.835872e+01 -4.183797 5.365278e-05 4.846321e-04
## NDUFA3 -1.430936e+01 1.969129e+01 -4.182483 5.392533e-05 4.867233e-04
## HMGCL -8.961031e+00 2.599589e+01 -4.181976 5.403094e-05 4.873057e-04
## ACTR1A -4.376194e+01 1.517200e+02 -4.180219 5.439816e-05 4.902448e-04
## FCSK -4.519446e+00 1.015727e+01 -4.178960 5.466282e-05 4.922559e-04
## FEN1 7.382725e+00 1.415048e+01 4.178435 5.477349e-05 4.928783e-04
## PPP6R1 -2.031683e+01 7.938191e+01 -4.177720 5.492463e-05 4.938070e-04
## HGS -1.606620e+01 5.154154e+01 -4.177553 5.495997e-05 4.938070e-04
## KATNAL1 1.131210e+00 3.879421e+00 4.175319 5.543490e-05 4.976972e-04
## ERC1 2.936559e+00 9.859469e+00 4.174702 5.556690e-05 4.985049e-04
## PIK3R4 5.436926e+00 1.805780e+01 4.174005 5.571618e-05 4.994663e-04
## CSRP1 -1.869368e+01 5.188594e+01 -4.173305 5.586655e-05 4.999994e-04
## ZNF444 -4.357583e+00 5.833269e+00 -4.173238 5.588092e-05 4.999994e-04
## RPL13 -6.574678e+02 6.604025e+02 -4.173049 5.592171e-05 4.999994e-04
## FBXW5 -2.563236e+01 3.542401e+01 -4.172944 5.594429e-05 4.999994e-04
## LIPH 8.614882e-01 1.626697e+00 4.171715 5.620961e-05 5.019924e-04
## KCTD11 -3.158299e+00 1.050792e+01 -4.170462 5.648133e-05 5.040395e-04
## HMGN4 3.185433e+01 1.096389e+02 4.170012 5.657915e-05 5.045329e-04
## C2orf88 1.496487e+01 3.627545e+01 4.169650 5.665803e-05 5.048567e-04
## YAF2 5.282949e+00 1.855719e+01 4.168863 5.682986e-05 5.057891e-04
## PRR14 -1.830215e+01 4.328289e+01 -4.168780 5.684797e-05 5.057891e-04
## RPS5 -2.298279e+02 3.041199e+02 -4.168272 5.695920e-05 5.063989e-04
## LRSAM1 -4.520493e+00 1.464646e+01 -4.167755 5.707265e-05 5.070275e-04
## MFSD12 -6.756833e+00 9.787782e+00 -4.167497 5.712945e-05 5.070721e-04
## VPS13D 1.366847e+01 3.948155e+01 4.167343 5.716319e-05 5.070721e-04
## CLNS1A -1.071324e+01 4.082330e+01 -4.166947 5.725043e-05 5.074665e-04
## ZBTB48 -1.144611e+01 2.623453e+01 -4.166490 5.735105e-05 5.079787e-04
## HDAC3 -9.597228e+00 5.945637e+01 -4.166054 5.744730e-05 5.080792e-04
## RBBP6 1.307451e+01 4.084993e+01 4.166051 5.744808e-05 5.080792e-04
## TNFAIP8L2-SCNM1 -6.713526e+00 1.586966e+01 -4.165706 5.752430e-05 5.083743e-04
## CDK6 5.328243e+00 1.585066e+01 4.164382 5.781791e-05 5.102534e-04
## GGH 6.454127e+00 9.187290e+00 4.164359 5.782298e-05 5.102534e-04
## PES1 -1.253964e+01 2.375141e+01 -4.162712 5.819032e-05 5.131131e-04
## SMCO4 -1.071865e+01 2.082502e+01 -4.159759 5.885433e-05 5.185827e-04
## TRAPPC10 1.865330e+01 7.131962e+01 4.158592 5.911875e-05 5.205095e-04
## CCSER2 9.252189e+00 2.716709e+01 4.158407 5.916077e-05 5.205095e-04
## TBC1D17 -6.767726e+00 1.685730e+01 -4.158186 5.921114e-05 5.205664e-04
## MLST8 -5.015464e+00 6.853178e+00 -4.157614 5.934136e-05 5.213248e-04
## RPS8 -4.465821e+02 7.798878e+02 -4.156696 5.955080e-05 5.227776e-04
## ESS2 -4.343813e+00 1.197674e+01 -4.156371 5.962518e-05 5.228208e-04
## COA8 -5.189461e+00 1.241960e+01 -4.156290 5.964389e-05 5.228208e-04
## CCDC153 -1.255547e+00 1.783605e+00 -4.155738 5.977024e-05 5.235414e-04
## AMPD2 -7.819186e+01 1.416329e+02 -4.154921 5.995811e-05 5.245381e-04
## FBL -5.145727e+01 7.987545e+01 -4.154859 5.997248e-05 5.245381e-04
## U2SURP 1.474926e+01 5.825129e+01 4.154392 6.007992e-05 5.250906e-04
## DIPK1A 3.288271e+00 6.401045e+00 4.154172 6.013078e-05 5.251480e-04
## HK3 -2.523822e+02 3.791184e+02 -4.153625 6.025717e-05 5.254897e-04
## CDK17 1.427746e+01 3.502346e+01 4.153417 6.030523e-05 5.254897e-04
## ALDH16A1 -6.394423e+00 7.824351e+00 -4.153322 6.032732e-05 5.254897e-04
## CHD9 7.302913e+00 1.898585e+01 4.153236 6.034713e-05 5.254897e-04
## NEURL4 -4.344973e+00 1.358058e+01 -4.151174 6.082659e-05 5.292224e-04
## RNF25 -6.464866e+00 1.846544e+01 -4.151009 6.086504e-05 5.292224e-04
## RGPD8 3.483867e+00 7.697106e+00 4.149596 6.119596e-05 5.317100e-04
## KCTD3 1.703312e+00 4.933285e+00 4.148856 6.136986e-05 5.328306e-04
## TAZ -2.105196e+01 4.737609e+01 -4.147359 6.172330e-05 5.355072e-04
## OGFR -2.839169e+01 5.197173e+01 -4.147091 6.178670e-05 5.356654e-04
## SLC25A29 -9.383139e+00 1.768666e+01 -4.146627 6.189670e-05 5.362271e-04
## CLDN12 4.525100e-01 1.004470e+00 4.145914 6.206606e-05 5.373018e-04
## TNNC2 -1.154809e+00 1.436843e+00 -4.145575 6.214688e-05 5.373324e-04
## MTHFD2L 1.609721e+00 5.595890e+00 4.145519 6.216021e-05 5.373324e-04
## CCDC93 1.466927e+01 4.769011e+01 4.145038 6.227493e-05 5.379320e-04
## LTBP4 -2.683837e+00 3.915807e+00 -4.142905 6.278590e-05 5.419511e-04
## LRBA 8.675177e+00 2.016484e+01 4.141997 6.300484e-05 5.434454e-04
## PLA2G4B -4.913890e+00 1.162282e+01 -4.141238 6.318819e-05 5.446308e-04
## ZNF692 -1.049510e+01 2.986729e+01 -4.140707 6.331699e-05 5.453446e-04
## PSMD4 -6.949247e+01 2.292773e+02 -4.138308 6.390117e-05 5.499767e-04
## TENT5C 4.776982e+01 6.198452e+01 4.137582 6.407924e-05 5.511093e-04
## POR -4.604475e+01 6.314590e+01 -4.137376 6.412979e-05 5.511444e-04
## CEP131 -9.190640e-01 1.575724e+00 -4.137107 6.419584e-05 5.513126e-04
## RPL35 -2.157745e+02 2.659602e+02 -4.136546 6.433384e-05 5.520979e-04
## ARHGEF10L -4.258879e+00 6.468444e+00 -4.135608 6.456514e-05 5.534601e-04
## F2R 6.704026e+00 1.494173e+01 4.135524 6.458591e-05 5.534601e-04
## TMEM86B -3.042689e+00 4.339878e+00 -4.134152 6.492584e-05 5.559714e-04
## HOOK2 -1.387148e+00 3.464195e+00 -4.133587 6.506638e-05 5.567729e-04
## NUDT14 -2.249441e+00 2.040977e+00 -4.132763 6.527185e-05 5.581284e-04
## PCYT1B 2.236767e+00 3.967098e+00 4.132066 6.544594e-05 5.592139e-04
## SLC39A14 1.768005e+00 3.344150e+00 4.131750 6.552532e-05 5.594891e-04
## EIF4A1 -1.112519e+02 4.049447e+02 -4.131005 6.571223e-05 5.606813e-04
## ZHX1 4.684513e+00 1.298460e+01 4.130721 6.578350e-05 5.607116e-04
## SMARCD1 5.151541e+00 3.854408e+01 4.130615 6.581034e-05 5.607116e-04
## CLEC10A -1.095787e+01 1.104050e+01 -4.129214 6.616372e-05 5.633178e-04
## SNX19 1.144995e+01 4.080178e+01 4.128233 6.641243e-05 5.650297e-04
## MBTPS2 1.351599e+00 3.748538e+00 4.127965 6.648035e-05 5.652021e-04
## MRPL28 -2.434829e+01 3.672365e+01 -4.126918 6.674704e-05 5.670630e-04
## SS18 6.415017e+00 3.520226e+01 4.125238 6.717692e-05 5.703065e-04
## ALKBH7 -5.360051e+00 4.973667e+00 -4.124261 6.742793e-05 5.720281e-04
## LFNG -4.920904e+01 6.125100e+01 -4.123107 6.772584e-05 5.741447e-04
## LRRC47 -5.896781e+00 2.235072e+01 -4.122731 6.782336e-05 5.745608e-04
## COQ8A -1.538108e+01 3.535968e+01 -4.122220 6.795582e-05 5.746755e-04
## RPL22 -1.449259e+02 2.970501e+02 -4.122065 6.799593e-05 5.746755e-04
## ANXA11 -2.134079e+02 5.232896e+02 -4.121963 6.802252e-05 5.746755e-04
## PPAN -3.113136e+00 5.320803e+00 -4.121931 6.803073e-05 5.746755e-04
## OTUD4 9.146545e+00 2.311827e+01 4.121351 6.818158e-05 5.752153e-04
## HNMT -8.138178e+00 1.926410e+01 -4.121135 6.823794e-05 5.752153e-04
## EDC4 -1.191403e+01 3.438807e+01 -4.121126 6.824013e-05 5.752153e-04
## PLD6 1.865903e+00 4.416462e+00 4.119706 6.861119e-05 5.779323e-04
## RPS20 -4.504922e+02 6.199251e+02 -4.118975 6.880282e-05 5.791352e-04
## WDR83 -1.605141e+00 3.226678e+00 -4.118384 6.895817e-05 5.800311e-04
## ASGR2 -2.376845e+01 3.299900e+01 -4.117621 6.915928e-05 5.813105e-04
## ARL6IP1 2.920509e+01 1.047719e+02 4.116672 6.941024e-05 5.830067e-04
## SLC25A45 -3.525823e+00 7.124357e+00 -4.116217 6.953092e-05 5.836070e-04
## SECTM1 -1.275898e+02 2.043904e+02 -4.115730 6.966024e-05 5.838808e-04
## RPL10 -7.579797e+02 1.452109e+03 -4.115723 6.966200e-05 5.838808e-04
## TBL3 -5.858276e+00 7.311305e+00 -4.114105 7.009320e-05 5.870801e-04
## HGH1 -5.119569e+00 7.169800e+00 -4.113080 7.036784e-05 5.889644e-04
## SKA2 3.458149e+00 1.253413e+01 4.110683 7.101378e-05 5.939516e-04
## SGF29 -6.054257e+00 1.059404e+01 -4.109984 7.120326e-05 5.951168e-04
## TTBK2 5.190858e+00 1.411520e+01 4.108857 7.150975e-05 5.972575e-04
## TKT -2.968755e+02 7.439736e+02 -4.108385 7.163833e-05 5.979104e-04
## HARBI1 1.077877e+00 4.396917e+00 4.107804 7.179724e-05 5.988152e-04
## UHRF1BP1 4.137898e+00 1.049230e+01 4.107614 7.184910e-05 5.988266e-04
## EPB41 5.646410e+01 1.634100e+02 4.107275 7.194197e-05 5.991796e-04
## EHBP1 1.500642e+00 4.589209e+00 4.106614 7.212325e-05 6.002035e-04
## C12orf76 3.797646e+00 1.295168e+01 4.106458 7.216612e-05 6.002035e-04
## KCTD17 -4.857968e+00 6.639303e+00 -4.105952 7.230547e-05 6.009411e-04
## SLC37A1 2.871392e+00 1.032149e+01 4.105228 7.250503e-05 6.021776e-04
## RABL6 -1.434425e+01 2.391767e+01 -4.103785 7.290456e-05 6.047737e-04
## KAT5 -9.112935e+00 3.823578e+01 -4.103731 7.291959e-05 6.047737e-04
## THEMIS2 -1.163380e+02 3.447426e+02 -4.102250 7.333195e-05 6.077686e-04
## PRUNE1 1.303988e+01 4.397889e+01 4.099793 7.402069e-05 6.130484e-04
## FARSA -6.022189e+00 1.241728e+01 -4.099533 7.409401e-05 6.132275e-04
## FAF2 6.178723e+00 3.122031e+01 4.099026 7.423723e-05 6.138353e-04
## CDK5 -3.886972e+00 1.028263e+01 -4.098906 7.427096e-05 6.138353e-04
## RNF113A -6.219360e+00 2.277846e+01 -4.098510 7.438301e-05 6.143333e-04
## EGF 8.270179e+00 1.065500e+01 4.097685 7.461678e-05 6.158351e-04
## CHCHD5 -5.030154e+00 5.918081e+00 -4.097272 7.473409e-05 6.163743e-04
## WDR48 1.195918e+01 4.323479e+01 4.096993 7.481350e-05 6.166005e-04
## HLA-DPA1 -1.237074e+02 2.059903e+02 -4.096236 7.502920e-05 6.179488e-04
## TMEM8B -1.211101e+00 2.113129e+00 -4.093610 7.578199e-05 6.234176e-04
## TMEM68 1.384084e+00 7.484016e+00 4.093553 7.579833e-05 6.234176e-04
## ACADS -3.718655e+00 4.749622e+00 -4.092408 7.612908e-05 6.257040e-04
## RPL24 -1.829808e+02 3.951215e+02 -4.091705 7.633268e-05 6.269429e-04
## UBL7 -1.738224e+01 4.444979e+01 -4.090136 7.678905e-05 6.302548e-04
## DPP8 1.511930e+01 4.744703e+01 4.087412 7.758746e-05 6.361041e-04
## KIAA1958 7.446754e+00 1.026758e+01 4.087223 7.764329e-05 6.361041e-04
## TGFB1 -8.364296e+01 2.032272e+02 -4.087157 7.766263e-05 6.361041e-04
## SLFN12 5.500791e+00 1.253977e+01 4.086931 7.772955e-05 6.362129e-04
## FLNA -1.857546e+02 4.771500e+02 -4.086296 7.791705e-05 6.373078e-04
## TEN1 -6.210067e+00 9.883984e+00 -4.085052 7.828589e-05 6.398833e-04
## MIEF2 -1.316116e+00 4.339859e+00 -4.083743 7.867587e-05 6.426279e-04
## PSMG3 -7.349854e+00 1.167551e+01 -4.083346 7.879451e-05 6.431541e-04
## RPS23 -3.857431e+02 7.103642e+02 -4.083016 7.889310e-05 6.435159e-04
## STX8 -9.877363e+00 2.600792e+01 -4.081927 7.921977e-05 6.457364e-04
## PDLIM7 -5.276811e+01 9.641261e+01 -4.081042 7.948604e-05 6.474618e-04
## SAV1 2.343020e+00 6.493361e+00 4.080801 7.955891e-05 6.476106e-04
## DHRS4 -8.596700e+00 1.587576e+01 -4.080356 7.969341e-05 6.482605e-04
## RER1 -2.143624e+01 9.603072e+01 -4.079903 7.983028e-05 6.489288e-04
## RNF169 2.565881e+01 5.189974e+01 4.079105 8.007217e-05 6.504492e-04
## HECTD1 1.508732e+01 4.431339e+01 4.078646 8.021169e-05 6.511367e-04
## PRC1 5.445604e+00 7.020148e+00 4.078355 8.030034e-05 6.514104e-04
## CASP6 1.417189e+00 6.602254e+00 4.077986 8.041266e-05 6.518757e-04
## CAV2 1.782894e+00 2.579547e+00 4.077725 8.049246e-05 6.520769e-04
## TUBGCP4 2.131935e+00 5.749259e+00 4.077200 8.065283e-05 6.529300e-04
## TEPSIN -1.195488e+01 2.877054e+01 -4.076456 8.088060e-05 6.543274e-04
## MTRNR2L3 -8.669074e+00 1.428124e+01 -4.075108 8.129486e-05 6.572304e-04
## CDC34 -2.149885e+01 3.895673e+01 -4.073382 8.182829e-05 6.610923e-04
## EMSY 5.272858e+00 1.685720e+01 4.073000 8.194662e-05 6.615976e-04
## GTF2F1 -9.744141e+00 3.457997e+01 -4.072586 8.207517e-05 6.621847e-04
## NDUFAF7 -3.470047e+00 1.187214e+01 -4.072313 8.216028e-05 6.624208e-04
## SPPL2B -3.385479e+00 5.348899e+00 -4.071106 8.253649e-05 6.650019e-04
## RPL7A -3.479145e+02 9.370175e+02 -4.069822 8.293898e-05 6.677911e-04
## ANKRD52 4.120220e+00 2.173494e+01 4.068294 8.342005e-05 6.712088e-04
## THAP7 -3.945191e+00 4.236115e+00 -4.067090 8.380104e-05 6.738172e-04
## CASP8AP2 6.954431e+00 1.582888e+01 4.066336 8.404069e-05 6.752863e-04
## FAM214A 9.170631e+00 2.911284e+01 4.064080 8.476104e-05 6.806134e-04
## PANX1 2.146579e+00 7.663442e+00 4.063198 8.504406e-05 6.822911e-04
## CDK1 6.809453e+00 6.945888e+00 4.063071 8.508503e-05 6.822911e-04
## VPS13B 1.932133e+01 4.326907e+01 4.062811 8.516864e-05 6.825000e-04
## SORBS3 -4.193084e+00 4.846766e+00 -4.062575 8.524466e-05 6.826479e-04
## RABEP1 1.026706e+01 3.869741e+01 4.061249 8.567315e-05 6.856164e-04
## PDE5A 5.900513e+00 1.268432e+01 4.060402 8.594793e-05 6.873516e-04
## SEC31A 1.133363e+01 3.968046e+01 4.059018 8.639885e-05 6.904921e-04
## LATS2 8.367969e+00 1.903370e+01 4.058828 8.646100e-05 6.905236e-04
## RPL27 -2.623525e+02 5.364111e+02 -4.058162 8.667890e-05 6.917979e-04
## SLC2A13 1.001113e+00 2.540598e+00 4.057947 8.674944e-05 6.918953e-04
## TOPBP1 1.387550e+01 4.816746e+01 4.056988 8.706419e-05 6.939390e-04
## RFC1 5.919568e+00 2.313335e+01 4.056436 8.724600e-05 6.949211e-04
## ECH1 -2.013682e+01 4.688155e+01 -4.055785 8.746078e-05 6.960662e-04
## BAD -5.202922e+00 7.763530e+00 -4.055645 8.750715e-05 6.960662e-04
## NAA10 -1.394252e+01 2.821516e+01 -4.054698 8.782076e-05 6.980927e-04
## RPL38 -1.582787e+02 2.303508e+02 -4.054517 8.788070e-05 6.981012e-04
## NR4A1 -4.068535e+00 4.219090e+00 -4.054312 8.794881e-05 6.981746e-04
## POLR1D -1.446756e+01 6.077475e+01 -4.053473 8.822781e-05 6.991095e-04
## GIGYF1 -1.833247e+01 6.456015e+01 -4.053279 8.829235e-05 6.991095e-04
## CDKL1 1.560604e+00 5.002712e+00 4.053260 8.829878e-05 6.991095e-04
## UXT -2.181470e+01 4.278123e+01 -4.053249 8.830236e-05 6.991095e-04
## PPP4C -8.206248e+01 1.614571e+02 -4.052597 8.852001e-05 7.001172e-04
## NUTM2D -2.775093e+00 5.869624e+00 -4.052515 8.854771e-05 7.001172e-04
## CCNB2 3.880167e+00 4.519676e+00 4.052093 8.868873e-05 7.007651e-04
## RPL21 -5.630054e+02 1.023501e+03 -4.051312 8.895069e-05 7.023670e-04
## RAVER1 -1.300461e+01 3.064898e+01 -4.050450 8.924038e-05 7.041855e-04
## TIA1 1.715055e+01 7.442085e+01 4.049624 8.951909e-05 7.056754e-04
## YDJC -2.567128e+00 4.389892e+00 -4.049366 8.960616e-05 7.056754e-04
## NSD1 2.282483e+01 8.064910e+01 4.049306 8.962642e-05 7.056754e-04
## RC3H2 1.515024e+01 5.048998e+01 4.049186 8.966718e-05 7.056754e-04
## NDUFB7 -1.417303e+01 1.281657e+01 -4.047585 9.021032e-05 7.094790e-04
## TMEM38B 1.112333e+00 3.900253e+00 4.046358 9.062903e-05 7.122997e-04
## PIKFYVE 2.421432e+01 5.550777e+01 4.045971 9.076128e-05 7.128668e-04
## FAM50A -2.389291e+01 5.044365e+01 -4.045488 9.092659e-05 7.136925e-04
## INPP4A 1.446262e+01 5.956502e+01 4.044191 9.137268e-05 7.167196e-04
## PTK2 4.011801e+00 8.331115e+00 4.044013 9.143383e-05 7.167252e-04
## IRF3 -2.732630e+01 4.385028e+01 -4.043145 9.173337e-05 7.185983e-04
## EDEM3 3.129611e+01 7.418345e+01 4.042273 9.203561e-05 7.204900e-04
## NUDT4 1.055032e+01 3.352954e+01 4.041808 9.219695e-05 7.212770e-04
## CCM2 -4.627502e+01 1.243615e+02 -4.041289 9.237736e-05 7.222119e-04
## SNX8 -3.660433e+00 6.323892e+00 -4.040156 9.277281e-05 7.248257e-04
## EIF2AK3 6.528761e+00 1.166398e+01 4.039921 9.285496e-05 7.249900e-04
## TWSG1 2.356760e+00 6.287963e+00 4.039227 9.309788e-05 7.264084e-04
## TPRN -2.935978e+00 2.888773e+00 -4.038506 9.335132e-05 7.276802e-04
## TOGARAM1 1.625562e+00 4.533942e+00 4.038414 9.338358e-05 7.276802e-04
## HOMER3 -6.272591e+00 1.220168e+01 -4.038168 9.347016e-05 7.278766e-04
## TRMT61A -3.004255e+00 3.457566e+00 -4.037653 9.365155e-05 7.288106e-04
## CERS6 6.001324e+00 2.227757e+01 4.037405 9.373907e-05 7.290134e-04
## NBEAL1 1.901472e+00 5.194572e+00 4.036253 9.414660e-05 7.317030e-04
## CAMK1 -1.633786e+01 2.373025e+01 -4.035231 9.450943e-05 7.338596e-04
## GON4L 9.350584e+00 4.522734e+01 4.035123 9.454785e-05 7.338596e-04
## SIGLEC9 -2.596501e+01 6.044614e+01 -4.033327 9.518925e-05 7.381148e-04
## CMC4 -1.601769e+00 4.140022e+00 -4.033240 9.522054e-05 7.381148e-04
## TTF2 3.035668e+00 8.141427e+00 4.032696 9.541568e-05 7.391443e-04
## HELB 2.405131e+00 3.936331e+00 4.032320 9.555051e-05 7.397056e-04
## FOXJ3 1.014438e+01 3.821496e+01 4.031703 9.577286e-05 7.406217e-04
## E2F6 1.131870e+00 6.140207e+00 4.031645 9.579373e-05 7.406217e-04
## MMD 2.545676e+01 5.295268e+01 4.031143 9.597489e-05 7.411830e-04
## FOXP4 -1.731430e+00 3.184719e+00 -4.031097 9.599132e-05 7.411830e-04
## GOLGA5 7.022777e+00 3.120932e+01 4.028594 9.689924e-05 7.476110e-04
## FEM1A -3.602201e+00 2.698472e+01 -4.028455 9.694989e-05 7.476110e-04
## PHC3 1.483847e+01 4.706296e+01 4.027830 9.717825e-05 7.488850e-04
## RPRD2 7.305853e+00 2.670022e+01 4.026859 9.753336e-05 7.508270e-04
## GTF3C4 2.488106e+00 8.958395e+00 4.026795 9.755687e-05 7.508270e-04
## CCDC9 -7.955029e+00 1.475414e+01 -4.025791 9.792581e-05 7.531777e-04
## UNC13D -5.653687e+01 1.432537e+02 -4.025358 9.808537e-05 7.539161e-04
## CCDC137 -6.153590e+00 1.435268e+01 -4.023814 9.865601e-05 7.575713e-04
## USP16 9.205572e+00 3.370198e+01 4.023726 9.868868e-05 7.575713e-04
## SEPSECS 2.175817e+00 9.833919e+00 4.023425 9.880046e-05 7.579389e-04
## ACLY 1.373248e+01 6.642809e+01 4.023006 9.895593e-05 7.585778e-04
## AGPS 8.381226e+00 2.898108e+01 4.022856 9.901167e-05 7.585778e-04
## EPSTI1 1.708001e+02 1.882055e+02 4.020146 1.000247e-04 7.655296e-04
## PFN1 -4.252034e+02 9.599760e+02 -4.019971 1.000906e-04 7.655296e-04
## ZNF316 -1.247030e+01 3.979331e+01 -4.019850 1.001359e-04 7.655296e-04
## PUF60 -1.839041e+01 4.447099e+01 -4.019645 1.002133e-04 7.655296e-04
## RUBCN 1.896566e+01 4.736894e+01 4.019525 1.002584e-04 7.655296e-04
## KCTD15 -2.362359e+00 5.033526e+00 -4.019397 1.003063e-04 7.655296e-04
## SH3GL1 -1.047506e+01 2.443641e+01 -4.018439 1.006678e-04 7.677940e-04
## TPD52 7.031737e+00 1.201302e+01 4.017997 1.008349e-04 7.685744e-04
## ZNF81 3.782446e+00 1.015307e+01 4.017655 1.009645e-04 7.690679e-04
## S100A13 -1.636702e+00 2.825308e+00 -4.016646 1.013476e-04 7.714907e-04
## BTF3 -5.314498e+01 2.373983e+02 -4.015650 1.017272e-04 7.738839e-04
## GTF3C5 -1.478599e+01 3.660590e+01 -4.015206 1.018968e-04 7.746772e-04
## RPL32 -4.507449e+02 7.569707e+02 -4.014564 1.021426e-04 7.760482e-04
## MYL5 -1.644620e+00 2.187574e+00 -4.013735 1.024606e-04 7.776737e-04
## BMP6 6.234044e+00 1.167175e+01 4.013665 1.024877e-04 7.776737e-04
## RWDD1 -8.625216e+00 2.810940e+01 -4.012717 1.028525e-04 7.799431e-04
## SRGAP2B 1.034003e+01 2.119827e+01 4.012339 1.029985e-04 7.801284e-04
## IDUA -2.238457e+00 2.836378e+00 -4.012313 1.030085e-04 7.801284e-04
## TUFM -2.971507e+01 7.979441e+01 -4.011586 1.032896e-04 7.817580e-04
## PSENEN -3.784612e+01 8.391309e+01 -4.010761 1.036099e-04 7.833599e-04
## FBXL18 -1.655150e+00 6.821226e+00 -4.010683 1.036402e-04 7.833599e-04
## NEDD8 -5.325460e+01 1.413112e+02 -4.010504 1.037097e-04 7.833599e-04
## EDF1 -7.016006e+01 9.163668e+01 -4.010361 1.037655e-04 7.833599e-04
## NUDT4B 1.458881e+01 4.657074e+01 4.007775 1.047760e-04 7.904853e-04
## FBXO34 1.140279e+01 2.824598e+01 4.007534 1.048704e-04 7.905628e-04
## ERAP1 2.261741e+01 6.179211e+01 4.007187 1.050071e-04 7.905628e-04
## SPATA2L -4.682292e+00 6.162861e+00 -4.007115 1.050356e-04 7.905628e-04
## IARS1 8.170435e+00 2.129363e+01 4.007009 1.050771e-04 7.905628e-04
## FASTKD1 2.811102e+00 1.053862e+01 4.006901 1.051195e-04 7.905628e-04
## RASA4B -7.637748e+00 1.221461e+01 -4.006415 1.053111e-04 7.915019e-04
## FPGS -7.681046e+00 1.260087e+01 -4.005027 1.058600e-04 7.948873e-04
## C11orf49 -1.257658e+00 3.427721e+00 -4.004938 1.058956e-04 7.948873e-04
## USO1 1.263038e+01 4.623941e+01 4.004582 1.060369e-04 7.954447e-04
## SPSB1 9.510276e-01 2.543345e+00 4.003684 1.063939e-04 7.969243e-04
## ASPSCR1 -4.508565e+00 5.321511e+00 -4.003672 1.063988e-04 7.969243e-04
## YRDC 2.625340e+00 9.707811e+00 4.003523 1.064582e-04 7.969243e-04
## PLB1 -4.210777e+01 5.871048e+01 -4.003335 1.065331e-04 7.969243e-04
## MGMT -4.996002e+00 5.498776e+00 -4.003242 1.065701e-04 7.969243e-04
## MAP4K5 4.124516e+00 1.338117e+01 4.002670 1.067986e-04 7.978319e-04
## PABPC1 -1.399233e+02 6.655593e+02 -4.002602 1.068261e-04 7.978319e-04
## HVCN1 -1.508029e+01 4.399802e+01 -4.002300 1.069466e-04 7.982292e-04
## RPLP0 -6.009989e+02 1.012390e+03 -4.000703 1.075879e-04 8.022393e-04
## SKP1 -5.335248e+01 1.994948e+02 -4.000626 1.076191e-04 8.022393e-04
## GNE 3.023839e+00 1.085411e+01 3.998008 1.086785e-04 8.096279e-04
## DNAJC13 3.817480e+01 8.729956e+01 3.997752 1.087826e-04 8.098940e-04
## TRIM5 2.256573e+01 3.731099e+01 3.996934 1.091159e-04 8.118658e-04
## PPDPF -1.447162e+01 1.495431e+01 -3.996049 1.094779e-04 8.140492e-04
## ZNF653 -7.906950e-01 1.136965e+00 -3.995851 1.095587e-04 8.141394e-04
## NDUFS7 -5.809779e+00 4.704812e+00 -3.995012 1.099031e-04 8.161874e-04
## TIMM17B -2.421754e+01 4.423219e+01 -3.994421 1.101461e-04 8.174795e-04
## RBM12 9.631822e+00 5.145961e+01 3.994126 1.102676e-04 8.178213e-04
## ATXN3 5.706345e+00 2.255061e+01 3.993975 1.103300e-04 8.178213e-04
## TMEM97 8.442692e-01 1.949132e+00 3.993625 1.104745e-04 8.183808e-04
## NAA16 3.138410e+00 1.149473e+01 3.992787 1.108212e-04 8.204367e-04
## INTS9 -1.964751e+00 1.000025e+01 -3.992147 1.110864e-04 8.218868e-04
## ZNF598 -3.238850e+00 7.452848e+00 -3.991334 1.114246e-04 8.238753e-04
## CC2D1A -5.113870e+00 1.088891e+01 -3.990484 1.117792e-04 8.259818e-04
## TMEM205 -1.410288e+01 2.900078e+01 -3.989236 1.123015e-04 8.293246e-04
## SLC9A3 -2.817419e+00 7.545866e+00 -3.988577 1.125783e-04 8.308517e-04
## LMAN2 -4.985705e+01 1.254091e+02 -3.988152 1.127570e-04 8.316530e-04
## NUP160 6.272840e+00 1.823241e+01 3.987503 1.130305e-04 8.331522e-04
## TGFBRAP1 3.542595e+00 1.744006e+01 3.987247 1.131386e-04 8.334311e-04
## HM13 -2.577635e+01 8.163811e+01 -3.986727 1.133589e-04 8.345355e-04
## ZC3H11A 9.559034e+01 2.547754e+02 3.985428 1.139099e-04 8.380714e-04
## CNTRL 1.690476e+01 5.283669e+01 3.984558 1.142805e-04 8.402766e-04
## KCNA2 5.939239e-01 8.876496e-01 3.983257 1.148367e-04 8.438434e-04
## SQLE 3.219934e+00 8.555923e+00 3.982972 1.149586e-04 8.442164e-04
## AGO3 6.894197e+00 2.559811e+01 3.982616 1.151115e-04 8.448159e-04
## LTBP3 -5.524769e+00 7.196099e+00 -3.981041 1.157900e-04 8.492698e-04
## NAA38 -1.694655e+01 2.271306e+01 -3.979904 1.162819e-04 8.523507e-04
## FLJ44635 -1.775177e+00 3.438260e+00 -3.978064 1.170829e-04 8.576922e-04
## LSM8 -8.249026e+00 3.452969e+01 -3.977522 1.173195e-04 8.588631e-04
## PCGF6 8.923958e-01 3.656142e+00 3.977366 1.173876e-04 8.588631e-04
## ECHS1 -8.927613e+00 1.847767e+01 -3.976504 1.177655e-04 8.610969e-04
## MTHFSD -1.783534e+00 7.413862e+00 -3.975455 1.182269e-04 8.639376e-04
## PRPF31 -1.008786e+01 1.753053e+01 -3.974875 1.184826e-04 8.647721e-04
## CEBPB -1.402706e+02 2.601786e+02 -3.974866 1.184869e-04 8.647721e-04
## SAP30BP -1.471843e+01 6.242850e+01 -3.974636 1.185884e-04 8.649807e-04
## PLSCR3 -1.464699e+01 2.927789e+01 -3.974372 1.187050e-04 8.652989e-04
## ZNF622 -9.062754e+00 3.338130e+01 -3.973787 1.189639e-04 8.666538e-04
## TMEM170A 6.098794e+00 2.262480e+01 3.973503 1.190898e-04 8.670383e-04
## EOGT 1.350181e+00 5.719742e+00 3.973258 1.191986e-04 8.671411e-04
## REEP5 -2.597508e+01 1.299043e+02 -3.973142 1.192502e-04 8.671411e-04
## DMAP1 -7.457021e+00 1.628393e+01 -3.972490 1.195402e-04 8.687171e-04
## PHF6 4.086700e+00 1.144247e+01 3.971829 1.198350e-04 8.703267e-04
## C1orf159 -1.228628e+00 1.311305e+00 -3.971329 1.200583e-04 8.714144e-04
## EWSR1 -1.664130e+01 1.511758e+02 -3.970634 1.203693e-04 8.731373e-04
## CHAF1B 9.952676e-01 3.494046e+00 3.970335 1.205034e-04 8.735758e-04
## NUDC -2.203186e+01 4.170508e+01 -3.969711 1.207838e-04 8.750739e-04
## STK25 -1.030326e+01 2.402542e+01 -3.969437 1.209074e-04 8.754343e-04
## COG6 2.936132e+00 1.039650e+01 3.968678 1.212494e-04 8.773751e-04
## RIPK3 -1.132375e+01 3.618256e+01 -3.967703 1.216901e-04 8.794906e-04
## PPIL2 -7.537850e+00 2.895664e+01 -3.967593 1.217400e-04 8.794906e-04
## USP28 6.223695e+00 1.504889e+01 3.967539 1.217642e-04 8.794906e-04
## MRPL20 -1.666753e+01 3.487864e+01 -3.966804 1.220977e-04 8.813629e-04
## DHRS4L2 -9.214535e+00 1.293471e+01 -3.966480 1.222450e-04 8.816741e-04
## PYGB -1.293330e+01 3.795660e+01 -3.966383 1.222895e-04 8.816741e-04
## DHX36 7.225964e+00 2.615112e+01 3.965976 1.224747e-04 8.824727e-04
## HSBP1 -3.184428e+01 1.159853e+02 -3.965150 1.228516e-04 8.846510e-04
## ATG101 -1.055252e+01 1.961917e+01 -3.964884 1.229735e-04 8.849913e-04
## ELF1 8.294162e+01 1.895308e+02 3.964183 1.232942e-04 8.867609e-04
## LRCH3 4.016028e+00 2.333332e+01 3.963553 1.235834e-04 8.883026e-04
## STK26 1.950128e+01 5.509762e+01 3.960237 1.251168e-04 8.987794e-04
## RDH10 8.211827e-01 4.159491e+00 3.959880 1.252829e-04 8.994281e-04
## ANAPC15 -1.924011e+01 3.635041e+01 -3.959470 1.254738e-04 9.002538e-04
## ZNF428 -3.691777e+00 5.318681e+00 -3.958661 1.258518e-04 9.024199e-04
## RPH3A 6.513188e+01 6.782958e+01 3.957965 1.261776e-04 9.035740e-04
## RELL2 -3.748099e+00 7.260266e+00 -3.957866 1.262242e-04 9.035740e-04
## RPS7 -2.266406e+02 5.779519e+02 -3.957829 1.262413e-04 9.035740e-04
## GABARAP -5.056838e+02 1.144464e+03 -3.957248 1.265143e-04 9.049818e-04
## RHPN1 -1.683724e+00 1.631164e+00 -3.955283 1.274413e-04 9.105248e-04
## TCEA2 -1.958176e+00 2.814431e+00 -3.955280 1.274428e-04 9.105248e-04
## ADAR 2.838353e+02 7.163728e+02 3.954968 1.275902e-04 9.108486e-04
## TDG 5.635293e+00 2.408861e+01 3.954860 1.276417e-04 9.108486e-04
## ZNF226 -2.940887e+00 1.282068e+01 -3.954110 1.279974e-04 9.128375e-04
## STRADA -8.233705e+00 3.738181e+01 -3.952646 1.286953e-04 9.172632e-04
## RASA4 -1.428921e+01 2.263613e+01 -3.951809 1.290957e-04 9.195644e-04
## RAB30 4.059127e+00 7.387232e+00 3.951389 1.292972e-04 9.200508e-04
## MED9 -1.771428e+00 6.636698e+00 -3.951343 1.293191e-04 9.200508e-04
## LAMP1 -3.014804e+01 1.181997e+02 -3.951122 1.294251e-04 9.202525e-04
## HCFC1R1 -5.567000e+00 7.651438e+00 -3.949011 1.304430e-04 9.269344e-04
## CTNNAL1 3.434200e+00 6.573702e+00 3.946900 1.314685e-04 9.333096e-04
## KIAA1109 5.192080e+01 1.164281e+02 3.946840 1.314975e-04 9.333096e-04
## CARNMT1 2.317168e+00 6.683046e+00 3.946369 1.317274e-04 9.343821e-04
## SH2D3C -2.584251e+01 7.585229e+01 -3.945964 1.319253e-04 9.352269e-04
## TAF10 -3.695528e+01 1.088662e+02 -3.945437 1.321835e-04 9.364971e-04
## PRELID3B 9.565060e+00 3.881452e+01 3.944958 1.324183e-04 9.376007e-04
## ADORA2A -1.553346e+01 2.737159e+01 -3.944147 1.328171e-04 9.398629e-04
## CPTP -3.381766e+00 5.274636e+00 -3.943556 1.331084e-04 9.413630e-04
## VEGFB -6.887590e+00 7.137093e+00 -3.942969 1.333984e-04 9.428519e-04
## RAB34 -8.968002e+00 1.661925e+01 -3.942617 1.335728e-04 9.435217e-04
## IRF4 1.387643e+01 2.002576e+01 3.940554 1.345976e-04 9.501953e-04
## HACE1 1.496584e+00 3.573234e+00 3.940077 1.348354e-04 9.513073e-04
## SEMA7A -4.060656e+00 6.358780e+00 -3.939439 1.351543e-04 9.529906e-04
## RPS16 -3.021340e+02 3.986775e+02 -3.939024 1.353626e-04 9.538919e-04
## TPCN1 -7.558017e+00 1.895048e+01 -3.938513 1.356190e-04 9.551317e-04
## TRMT1 -1.161202e+01 1.890975e+01 -3.938003 1.358755e-04 9.563699e-04
## KCTD5 -4.193422e+00 2.158560e+01 -3.937663 1.360463e-04 9.566100e-04
## RPS10 -3.688721e+02 5.866406e+02 -3.937614 1.360709e-04 9.566100e-04
## RPL29 -1.952305e+02 4.046779e+02 -3.934376 1.377121e-04 9.675742e-04
## CLASP2 4.599588e+00 1.568982e+01 3.933749 1.380318e-04 9.692465e-04
## IFI30 -3.817221e+02 8.837136e+02 -3.933575 1.381208e-04 9.692976e-04
## AMIGO2 3.969602e+00 1.002078e+01 3.933288 1.382674e-04 9.697523e-04
## FBXW9 -1.321036e+00 1.491701e+00 -3.933033 1.383979e-04 9.700942e-04
## ZNF236 1.840253e+00 5.345087e+00 3.932355 1.387458e-04 9.715885e-04
## FCN1 -5.270869e+02 1.185167e+03 -3.932298 1.387750e-04 9.715885e-04
## EIF4E2 -1.335437e+01 7.844089e+01 -3.931878 1.389906e-04 9.716912e-04
## RRP8 -2.807292e+00 1.294658e+01 -3.931838 1.390112e-04 9.716912e-04
## RPL23A -3.130425e+02 5.566685e+02 -3.931791 1.390354e-04 9.716912e-04
## METAP1 4.775600e+00 1.861043e+01 3.929612 1.401604e-04 9.789764e-04
## EPDR1 5.440123e-01 1.176926e+00 3.929352 1.402950e-04 9.793399e-04
## CD226 1.320035e+01 3.589041e+01 3.929059 1.404473e-04 9.798262e-04
## RPL7 -4.798489e+02 1.020900e+03 -3.928665 1.406516e-04 9.806750e-04
## MYO1F -2.894530e+02 8.823565e+02 -3.928413 1.407828e-04 9.810129e-04
## ACBD4 -2.943827e+00 6.645627e+00 -3.928075 1.409592e-04 9.816653e-04
## PRX -7.442768e-01 1.646852e+00 -3.927257 1.413858e-04 9.836815e-04
## PSMD5 5.566513e+00 1.972056e+01 3.927202 1.414146e-04 9.836815e-04
## SRGAP2C 7.087736e+00 1.667102e+01 3.926620 1.417192e-04 9.852226e-04
## CDK12 1.139456e+01 4.035948e+01 3.925761 1.421697e-04 9.877753e-04
## FRS2 4.799838e+00 1.390117e+01 3.924832 1.426583e-04 9.904420e-04
## MAPK7 -1.980215e+00 7.408218e+00 -3.924714 1.427205e-04 9.904420e-04
## PARG 3.675033e+00 1.400629e+01 3.924379 1.428973e-04 9.910892e-04
## SSR1 2.464229e+01 1.405781e+02 3.923976 1.431104e-04 9.919870e-04
## RHBDD3 -1.226889e+00 1.742790e+00 -3.923433 1.433976e-04 9.930989e-04
## RPL18 -2.344015e+02 3.225091e+02 -3.923352 1.434407e-04 9.930989e-04
## PGP -6.572301e+00 1.401906e+01 -3.923058 1.435966e-04 9.930989e-04
## OCRL 2.007173e+00 5.708875e+00 3.923040 1.436058e-04 9.930989e-04
## LILRA2 -1.545140e+02 4.083333e+02 -3.922145 1.440813e-04 9.958064e-04
## LEPR 2.743923e+00 7.060569e+00 3.921816 1.442564e-04 9.964361e-04
## ABCF3 -7.724433e+00 2.887444e+01 -3.921228 1.445700e-04 9.980213e-04
## RPS18 -4.568995e+02 1.000275e+03 -3.920589 1.449114e-04 9.996763e-04
## MICOS13 -8.492032e+00 9.441504e+00 -3.920464 1.449784e-04 9.996763e-04
## C17orf49 -2.358878e+01 4.899262e+01 -3.919981 1.452371e-04 1.000879e-03
## SIK3 1.110145e+01 5.527531e+01 3.919571 1.454572e-04 1.001813e-03
## SBF1 -1.150122e+01 3.838872e+01 -3.919395 1.455517e-04 1.001882e-03
## CDPF1 -2.493231e+00 4.154368e+00 -3.917470 1.465892e-04 1.008439e-03
## RBMX2 -5.834334e+00 1.831858e+01 -3.915534 1.476403e-04 1.015080e-03
## VGLL4 2.792294e+00 8.831687e+00 3.915004 1.479291e-04 1.016477e-03
## PCED1A -1.485852e+01 2.710439e+01 -3.914365 1.482778e-04 1.018283e-03
## UCKL1 -5.385683e+00 8.424512e+00 -3.914056 1.484472e-04 1.018857e-03
## CD82 -7.940592e+01 1.359257e+02 -3.913331 1.488447e-04 1.020994e-03
## EOLA1 -2.926932e+00 1.819797e+01 -3.912550 1.492737e-04 1.023344e-03
## SLC66A1 -2.249055e+00 5.241048e+00 -3.911417 1.498986e-04 1.026665e-03
## ANKZF1 -1.231795e+01 4.886287e+01 -3.911358 1.499311e-04 1.026665e-03
## SLX1A -1.152546e+01 2.377912e+01 -3.909127 1.511686e-04 1.033945e-03
## C16orf91 -2.123123e+00 4.667212e+00 -3.909127 1.511686e-04 1.033945e-03
## SDE2 7.853494e+00 2.019426e+01 3.908826 1.513368e-04 1.034498e-03
## KDM4B -2.368809e+01 6.111368e+01 -3.908029 1.517814e-04 1.036940e-03
## ATE1 5.474404e+00 1.848914e+01 3.906538 1.526171e-04 1.042049e-03
## SMPD2 -4.295336e+00 1.086746e+01 -3.905234 1.533522e-04 1.046466e-03
## VPS28 -4.524785e+01 7.076920e+01 -3.904632 1.536924e-04 1.048184e-03
## ATP5MC2 -5.064397e+01 1.550039e+02 -3.903401 1.543904e-04 1.052339e-03
## LTBR -2.536742e+01 6.887649e+01 -3.902907 1.546715e-04 1.053019e-03
## STK11 -1.074391e+01 2.416527e+01 -3.902825 1.547179e-04 1.053019e-03
## FAAP100 -4.888527e+00 7.343460e+00 -3.902757 1.547565e-04 1.053019e-03
## TNFAIP8L1 -4.203892e+00 1.129388e+01 -3.902072 1.551476e-04 1.055075e-03
## GFM2 3.419693e+00 1.627594e+01 3.901688 1.553668e-04 1.055960e-03
## ZNF714 1.065193e+00 3.046234e+00 3.901393 1.555352e-04 1.056499e-03
## RPS17 -3.005247e+02 5.248163e+02 -3.901223 1.556330e-04 1.056558e-03
## OGFOD3 -3.209107e+00 6.277364e+00 -3.900493 1.560511e-04 1.058790e-03
## KXD1 -1.363508e+01 5.303491e+01 -3.899352 1.567078e-04 1.062638e-03
## DNAL4 -1.984907e+00 8.689553e+00 -3.898288 1.573220e-04 1.066194e-03
## MAD2L2 -1.165859e+01 2.424771e+01 -3.896762 1.582072e-04 1.071580e-03
## MBD3 -1.086368e+01 1.022561e+01 -3.895954 1.586777e-04 1.074154e-03
## NR1H3 -1.763310e+00 3.587953e+00 -3.895538 1.589207e-04 1.075185e-03
## CEP104 2.678182e+00 1.183220e+01 3.894539 1.595056e-04 1.078527e-03
## ANKRA2 3.731419e+00 1.404003e+01 3.893558 1.600816e-04 1.081805e-03
## RAB3GAP2 1.092834e+01 3.235553e+01 3.893339 1.602101e-04 1.082057e-03
## SIL1 -8.583249e+00 1.473963e+01 -3.892036 1.609789e-04 1.086631e-03
## RPL5 -2.372974e+02 6.126065e+02 -3.891306 1.614112e-04 1.088929e-03
## FIZ1 -2.306413e+00 5.056317e+00 -3.890599 1.618309e-04 1.091140e-03
## AK1 -5.498873e+00 7.739893e+00 -3.889966 1.622074e-04 1.093057e-03
## SSBP4 -5.441216e+00 7.062787e+00 -3.888843 1.628779e-04 1.096952e-03
## SRP72 1.320828e+01 5.232833e+01 3.888476 1.630976e-04 1.097808e-03
## MON2 1.127148e+01 3.877696e+01 3.888178 1.632762e-04 1.098387e-03
## CHD2 6.200124e+01 1.699545e+02 3.886632 1.642050e-04 1.104009e-03
## CBY1 -1.284202e+00 4.702091e+00 -3.886287 1.644131e-04 1.104782e-03
## SLC29A3 -1.982386e+00 4.857206e+00 -3.885883 1.646574e-04 1.105796e-03
## SETBP1 1.512995e+00 3.115494e+00 3.885168 1.650899e-04 1.107652e-03
## SLC7A1 2.674351e+00 7.062949e+00 3.885117 1.651205e-04 1.107652e-03
## ARCN1 2.098553e+01 1.004514e+02 3.884857 1.652784e-04 1.107779e-03
## PDE1B -4.404382e+00 1.109671e+01 -3.884778 1.653263e-04 1.107779e-03
## EEF1B2 -1.390444e+02 3.136372e+02 -3.883240 1.662612e-04 1.113415e-03
## SGO2 2.032396e+00 4.123897e+00 3.882242 1.668710e-04 1.116868e-03
## MED13 3.197651e+01 8.061566e+01 3.881850 1.671111e-04 1.117844e-03
## ITGB2 -2.452058e+02 8.217875e+02 -3.881145 1.675440e-04 1.120108e-03
## GNPTAB 1.354036e+01 4.090593e+01 3.880969 1.676520e-04 1.120199e-03
## ARPC4 -1.923635e+02 5.025762e+02 -3.880390 1.680079e-04 1.121429e-03
## THAP3 -4.572023e+00 8.212353e+00 -3.880362 1.680252e-04 1.121429e-03
## CCDC189 -7.871423e-01 1.440579e+00 -3.879140 1.687798e-04 1.125831e-03
## WRN 1.441589e+00 5.436949e+00 3.878779 1.690032e-04 1.126177e-03
## PCIF1 -1.237342e+01 4.536989e+01 -3.878708 1.690473e-04 1.126177e-03
## OTULIN 7.776313e+00 2.837373e+01 3.878596 1.691165e-04 1.126177e-03
## PCNX3 -1.185904e+01 2.663338e+01 -3.878312 1.692924e-04 1.126716e-03
## DEF8 -4.391456e+01 1.550802e+02 -3.877762 1.696339e-04 1.127717e-03
## CAPN2 4.446129e+01 1.490575e+02 3.877577 1.697493e-04 1.127717e-03
## ZNF765 2.224560e+00 7.979432e+00 3.877532 1.697774e-04 1.127717e-03
## USP12 5.107304e+00 1.805303e+01 3.877375 1.698749e-04 1.127717e-03
## HELZ 1.672373e+01 4.709536e+01 3.877305 1.699183e-04 1.127717e-03
## KRBA1 -1.030994e+00 2.329323e+00 -3.876633 1.703374e-04 1.129867e-03
## CLEC7A 1.145860e+02 3.088035e+02 3.875258 1.711973e-04 1.134936e-03
## ZNF500 -1.836883e+00 4.895895e+00 -3.875100 1.712964e-04 1.134958e-03
## HMOX2 -1.910058e+01 5.262125e+01 -3.874412 1.717285e-04 1.136627e-03
## C5AR2 -4.599432e+01 1.259894e+02 -3.874394 1.717399e-04 1.136627e-03
## APOBR -1.512141e+02 3.566010e+02 -3.873957 1.720148e-04 1.137811e-03
## LTN1 1.294796e+01 3.265337e+01 3.873604 1.722375e-04 1.138649e-03
## U2AF1L4 -5.998016e+00 9.493169e+00 -3.873300 1.724291e-04 1.139281e-03
## ACAP3 -7.584212e+00 1.500451e+01 -3.872545 1.729064e-04 1.141716e-03
## QARS1 -3.262756e+01 1.124299e+02 -3.872315 1.730526e-04 1.141716e-03
## NAPB 4.553291e+00 1.268102e+01 3.872261 1.730865e-04 1.141716e-03
## GPS1 -1.251059e+01 2.055775e+01 -3.870123 1.744465e-04 1.150047e-03
## ANKMY2 2.100578e+00 9.701918e+00 3.869927 1.745715e-04 1.150232e-03
## CDYL2 3.154669e+00 9.220896e+00 3.869662 1.747407e-04 1.150708e-03
## AK3 3.415824e+00 1.842348e+01 3.867681 1.760115e-04 1.158433e-03
## STT3A 1.340048e+01 4.161521e+01 3.866749 1.766126e-04 1.161241e-03
## STARD5 8.240401e-01 2.043127e+00 3.866716 1.766340e-04 1.161241e-03
## IQCB1 3.777801e+00 1.512658e+01 3.863177 1.789343e-04 1.175713e-03
## ASL -9.478831e+00 2.054356e+01 -3.862471 1.793963e-04 1.177528e-03
## SEC23IP 5.000016e+00 2.513588e+01 3.862452 1.794092e-04 1.177528e-03
## CWF19L1 -1.420237e+01 5.329476e+01 -3.861942 1.797438e-04 1.179072e-03
## NEK1 1.424167e+00 4.852121e+00 3.861005 1.803602e-04 1.182461e-03
## GHDC -6.037482e+00 1.338641e+01 -3.859953 1.810543e-04 1.186356e-03
## SRPRA 1.674777e+01 1.257673e+02 3.859716 1.812114e-04 1.186729e-03
## TRIP11 5.507436e+00 1.993404e+01 3.859165 1.815768e-04 1.188466e-03
## TOMM7 -8.413431e+01 1.460260e+02 -3.858524 1.820022e-04 1.190593e-03
## CRTC2 -3.007273e+01 1.006048e+02 -3.857266 1.828399e-04 1.195414e-03
## SUDS3 1.405552e+01 4.831490e+01 3.856339 1.834595e-04 1.198804e-03
## VPS4A -1.917176e+01 7.216327e+01 -3.855925 1.837373e-04 1.199958e-03
## PDS5A 1.338793e+01 4.995416e+01 3.855394 1.840935e-04 1.201623e-03
## GPD2 1.160456e+01 2.811369e+01 3.855107 1.842864e-04 1.202221e-03
## PURB 1.334991e+01 4.766740e+01 3.854803 1.844915e-04 1.202897e-03
## RO60 1.190113e+01 3.688943e+01 3.854436 1.847384e-04 1.203791e-03
## DDX52 3.040593e+00 1.568359e+01 3.854204 1.848951e-04 1.203791e-03
## REV3L 7.557730e+00 1.774182e+01 3.854147 1.849331e-04 1.203791e-03
## ZNFX1 7.768744e+01 1.987261e+02 3.853203 1.855713e-04 1.206520e-03
## WDR81 -7.828339e+00 1.590335e+01 -3.853183 1.855850e-04 1.206520e-03
## HDAC11 -1.853890e+00 4.338856e+00 -3.853076 1.856576e-04 1.206520e-03
## ZNF691 -2.206900e+00 7.326318e+00 -3.851223 1.869164e-04 1.214035e-03
## GPATCH2L 1.275827e+01 4.436338e+01 3.850922 1.871220e-04 1.214706e-03
## FASTK -1.221133e+01 1.917378e+01 -3.850358 1.875075e-04 1.216542e-03
## PEAR1 4.496495e+00 8.648463e+00 3.849412 1.881552e-04 1.220077e-03
## TUT1 -2.461932e+00 6.978918e+00 -3.848756 1.886056e-04 1.222329e-03
## RPS27A -4.043311e+02 8.250003e+02 -3.847716 1.893220e-04 1.225359e-03
## HBA1 -2.103973e+03 1.667291e+03 -3.847665 1.893569e-04 1.225359e-03
## RPS19BP1 -1.492991e+01 2.785257e+01 -3.847628 1.893830e-04 1.225359e-03
## FAM214B -5.781150e+01 1.511736e+02 -3.846082 1.904528e-04 1.231609e-03
## RPL17 -3.191826e+02 7.536195e+02 -3.845126 1.911173e-04 1.235232e-03
## VAV2 -3.018007e+00 8.208061e+00 -3.844370 1.916444e-04 1.237965e-03
## TFPT -6.792730e+00 1.134438e+01 -3.844047 1.918696e-04 1.238744e-03
## MYLK 8.657475e+00 1.493465e+01 3.843468 1.922751e-04 1.240687e-03
## WDR33 -4.595511e+00 5.250688e+01 -3.843208 1.924569e-04 1.241185e-03
## CNOT9 4.525143e+00 2.827073e+01 3.842271 1.931149e-04 1.244007e-03
## MYSM1 1.342306e+01 3.101399e+01 3.842163 1.931911e-04 1.244007e-03
## ELOVL7 5.274655e+00 9.774018e+00 3.842137 1.932093e-04 1.244007e-03
## EIF2B4 -7.441838e+00 2.255576e+01 -3.841844 1.934156e-04 1.244660e-03
## PSMB4 -6.033523e+01 1.868292e+02 -3.840608 1.942875e-04 1.249593e-03
## VAMP8 -7.076420e+01 1.398074e+02 -3.839418 1.951310e-04 1.254338e-03
## PBRM1 9.130389e+00 3.209826e+01 3.838912 1.954908e-04 1.255970e-03
## NIP7 1.948100e+00 1.508204e+01 3.838351 1.958902e-04 1.257855e-03
## CHTOP -1.201643e+01 6.536219e+01 -3.837941 1.961826e-04 1.259050e-03
## MAP3K6 -3.399365e+00 6.981483e+00 -3.837203 1.967103e-04 1.261198e-03
## C16orf86 -1.217761e+00 1.445341e+00 -3.837036 1.968297e-04 1.261198e-03
## TTC21B 2.387106e+00 7.534113e+00 3.837027 1.968363e-04 1.261198e-03
## USP33 1.658062e+01 6.113851e+01 3.836680 1.970846e-04 1.262055e-03
## RGS19 -4.701744e+01 1.154492e+02 -3.836543 1.971828e-04 1.262055e-03
## BAHD1 -5.238704e+00 1.815283e+01 -3.835735 1.977634e-04 1.265089e-03
## FZD3 6.664492e-01 1.567895e+00 3.834587 1.985910e-04 1.269698e-03
## CTPS1 2.247968e+00 8.866075e+00 3.833778 1.991756e-04 1.271861e-03
## SNX25 2.230646e+00 5.475031e+00 3.833725 1.992144e-04 1.271861e-03
## OAZ1 -6.026428e+02 1.263818e+03 -3.833674 1.992511e-04 1.271861e-03
## TRADD -1.329416e+01 2.889772e+01 -3.832853 1.998468e-04 1.274978e-03
## SIGIRR -1.818807e+01 2.176615e+01 -3.832530 2.000816e-04 1.275789e-03
## LTA -1.765123e+00 3.263284e+00 -3.832368 2.001996e-04 1.275856e-03
## LRRC45 -2.150371e+00 3.421982e+00 -3.832079 2.004100e-04 1.276461e-03
## CCDC115 -6.354504e+00 2.770323e+01 -3.831942 2.005098e-04 1.276461e-03
## ZNF341 -1.685522e+00 6.068680e+00 -3.831698 2.006876e-04 1.276907e-03
## SENP2 9.167506e+00 3.246777e+01 3.831249 2.010150e-04 1.278305e-03
## BRD9 -5.579767e+00 1.974526e+01 -3.830831 2.013207e-04 1.279562e-03
## TRIR -6.818525e+01 1.294770e+02 -3.830405 2.016325e-04 1.280858e-03
## TYSND1 -4.659034e+00 9.054637e+00 -3.830028 2.019091e-04 1.281928e-03
## FUOM -4.146972e+00 3.384459e+00 -3.829400 2.023706e-04 1.282888e-03
## RPL10A -1.779739e+02 3.855645e+02 -3.829392 2.023765e-04 1.282888e-03
## COQ2 -4.169012e+00 1.348426e+01 -3.829380 2.023848e-04 1.282888e-03
## SLFN11 1.475333e+01 3.929425e+01 3.828543 2.030009e-04 1.285947e-03
## SSBP2 5.014423e+00 1.985354e+01 3.828431 2.030842e-04 1.285947e-03
## POLR2F -5.613400e+00 1.787746e+01 -3.828122 2.033118e-04 1.286701e-03
## NBPF14 8.546894e+01 1.938345e+02 3.827311 2.039115e-04 1.289808e-03
## IZUMO4 -8.934447e-01 1.271574e+00 -3.826792 2.042964e-04 1.291067e-03
## SLC48A1 -6.271563e+00 1.747207e+01 -3.826749 2.043282e-04 1.291067e-03
## PFKM 1.536043e+00 6.160440e+00 3.826231 2.047125e-04 1.292807e-03
## DNAJC14 8.229237e+00 3.068707e+01 3.825678 2.051245e-04 1.294719e-03
## MICB 1.044248e+01 3.013400e+01 3.825215 2.054692e-04 1.296205e-03
## DESI2 4.464273e+00 2.281496e+01 3.824602 2.059268e-04 1.298401e-03
## PPP2R5E 4.934458e+00 2.808026e+01 3.823637 2.066500e-04 1.301680e-03
## ZNHIT1 -2.227255e+01 3.595589e+01 -3.823615 2.066663e-04 1.301680e-03
## SURF1 -1.792212e+01 5.475207e+01 -3.822699 2.073545e-04 1.305321e-03
## SERPINH1 -1.743914e+00 2.296805e+00 -3.822456 2.075375e-04 1.305780e-03
## CCDC77 -1.209116e+00 6.643483e+00 -3.821167 2.085101e-04 1.311203e-03
## UVRAG 6.689687e+00 2.743571e+01 3.820623 2.089218e-04 1.313096e-03
## SLC25A25 -3.416960e+00 1.216950e+01 -3.818618 2.104462e-04 1.321976e-03
## WAS -1.021417e+02 2.968501e+02 -3.818378 2.106298e-04 1.322429e-03
## METTL26 -8.045210e+00 7.711972e+00 -3.818189 2.107740e-04 1.322635e-03
## PRELID1 -8.981990e+01 2.591440e+02 -3.815944 2.124963e-04 1.332737e-03
## SP4 4.849291e+00 1.337871e+01 3.815334 2.129668e-04 1.334982e-03
## POU2AF1 1.797550e+01 2.255729e+01 3.814657 2.134899e-04 1.337554e-03
## SLC10A7 1.684225e+00 5.177957e+00 3.814137 2.138920e-04 1.339366e-03
## RPL9 -6.469231e+02 1.129985e+03 -3.813673 2.142523e-04 1.340914e-03
## IL6ST 2.582736e+01 7.018728e+01 3.813360 2.144956e-04 1.341184e-03
## ENKD1 -2.589817e+00 3.950843e+00 -3.813281 2.145563e-04 1.341184e-03
## BCAT2 -3.500490e+00 5.510112e+00 -3.813181 2.146346e-04 1.341184e-03
## RASSF4 -2.323108e+01 5.750386e+01 -3.812251 2.153585e-04 1.344453e-03
## UBXN7 1.804566e+01 4.947988e+01 3.812169 2.154229e-04 1.344453e-03
## KLHL20 2.286956e+00 6.873662e+00 3.812072 2.154980e-04 1.344453e-03
## AAAS -6.025724e+00 2.098386e+01 -3.810848 2.164555e-04 1.349525e-03
## RBBP5 6.686363e+00 2.772433e+01 3.810742 2.165384e-04 1.349525e-03
## CDK14 1.419179e+01 2.908659e+01 3.810470 2.167522e-04 1.350148e-03
## RAB3IP 5.177163e+00 1.368427e+01 3.809382 2.176074e-04 1.354712e-03
## SNF8 -1.662043e+01 4.642449e+01 -3.809247 2.177134e-04 1.354712e-03
## IDE 3.273245e+00 1.526620e+01 3.808869 2.180121e-04 1.355859e-03
## LENG9 -2.673780e+00 2.339504e+00 -3.807982 2.187126e-04 1.359503e-03
## MAPK11 -3.016698e+00 3.276328e+00 -3.807523 2.190763e-04 1.361050e-03
## NCK1 7.612620e+00 2.926003e+01 3.806623 2.197910e-04 1.364775e-03
## NR6A1 -3.318838e+00 8.241806e+00 -3.806406 2.199640e-04 1.365105e-03
## HACD2 4.654754e+00 1.611157e+01 3.806238 2.200976e-04 1.365105e-03
## SLC30A6 4.954678e+00 2.152792e+01 3.806123 2.201893e-04 1.365105e-03
## CRACR2A 1.693322e+00 3.480265e+00 3.805757 2.204811e-04 1.366199e-03
## TSEN34 -4.570774e+01 1.151767e+02 -3.805104 2.210021e-04 1.368713e-03
## LRRC23 -1.299251e+00 2.637460e+00 -3.804949 2.211260e-04 1.368765e-03
## CABIN1 -2.132303e+01 4.119331e+01 -3.803709 2.221201e-04 1.374201e-03
## MCCC2 3.228389e+00 1.023146e+01 3.803381 2.223838e-04 1.375115e-03
## VPS39 1.547003e+01 9.002657e+01 3.802870 2.227952e-04 1.376941e-03
## QTRT1 -2.749523e+00 3.254806e+00 -3.802604 2.230093e-04 1.377547e-03
## ECSIT -4.947374e+00 9.465281e+00 -3.802167 2.233617e-04 1.378521e-03
## FAM53B -1.378911e+01 6.358495e+01 -3.802120 2.233994e-04 1.378521e-03
## NECAB2 -6.761314e+00 9.255283e+00 -3.800892 2.243939e-04 1.383937e-03
## PSMD13 -4.406010e+01 1.625850e+02 -3.800570 2.246546e-04 1.384825e-03
## BIN3 -1.935533e+01 4.934805e+01 -3.800188 2.249650e-04 1.385010e-03
## LRRC58 4.799083e+00 1.824548e+01 3.800110 2.250284e-04 1.385010e-03
## ELOVL6 1.423362e+00 3.519954e+00 3.800004 2.251147e-04 1.385010e-03
## PI16 -2.251861e+00 2.062281e+00 -3.799959 2.251518e-04 1.385010e-03
## USP25 2.687946e+01 6.833131e+01 3.799415 2.255947e-04 1.387015e-03
## USP31 1.146007e+00 4.433027e+00 3.799076 2.258713e-04 1.387734e-03
## BOD1 -3.402001e+00 9.862066e+00 -3.798985 2.259456e-04 1.387734e-03
## GPKOW -5.460239e+00 2.144052e+01 -3.798491 2.263492e-04 1.389494e-03
## PIH1D1 -1.147342e+01 2.301395e+01 -3.798037 2.267202e-04 1.391051e-03
## DPH5 -3.611414e+00 1.455070e+01 -3.795461 2.288396e-04 1.403328e-03
## CEBPZOS -9.531322e+00 2.850579e+01 -3.794913 2.292933e-04 1.405384e-03
## ENGASE -6.715809e+00 1.680177e+01 -3.794702 2.294678e-04 1.405727e-03
## TTC17 9.329636e+00 4.557256e+01 3.793785 2.302283e-04 1.409658e-03
## AXIN1 -5.968185e+00 2.901411e+01 -3.793594 2.303876e-04 1.409906e-03
## CORO1B -1.295699e+01 2.380160e+01 -3.793311 2.306228e-04 1.410617e-03
## KLHL24 1.629711e+01 4.580787e+01 3.792678 2.311504e-04 1.412835e-03
## SLC5A3 6.762636e+00 1.543358e+01 3.792590 2.312237e-04 1.412835e-03
## GOLIM4 1.538804e+00 4.754365e+00 3.791865 2.318296e-04 1.415808e-03
## UBA52 -3.715446e+02 7.891039e+02 -3.791650 2.320094e-04 1.416177e-03
## RPS3A -8.729908e+02 1.531365e+03 -3.791143 2.324341e-04 1.417694e-03
## ATR 4.966033e+00 1.461578e+01 3.791068 2.324971e-04 1.417694e-03
## ITFG1 1.004127e+01 3.305206e+01 3.790221 2.332089e-04 1.421304e-03
## TADA3 -5.185536e+01 1.381441e+02 -3.789892 2.334851e-04 1.422257e-03
## PTDSS2 -2.859937e+00 5.440338e+00 -3.788948 2.342816e-04 1.426272e-03
## NMRAL1 -1.000442e+01 1.672887e+01 -3.788635 2.345468e-04 1.426272e-03
## PRKCI 2.606027e+00 1.052824e+01 3.788608 2.345695e-04 1.426272e-03
## COQ9 -3.253868e+00 1.839751e+01 -3.788527 2.346380e-04 1.426272e-03
## TIAF1 -1.780848e+01 2.625894e+01 -3.788400 2.347456e-04 1.426272e-03
## FER 1.480554e+00 3.823844e+00 3.788095 2.350034e-04 1.426752e-03
## DGCR6L -1.258260e+01 1.389479e+01 -3.788022 2.350652e-04 1.426752e-03
## FRA10AC1 -2.035176e+00 7.471636e+00 -3.787155 2.358015e-04 1.430489e-03
## TESK1 -3.665199e+00 9.805560e+00 -3.786788 2.361133e-04 1.431545e-03
## MME 2.725015e+02 4.623207e+02 3.786654 2.362274e-04 1.431545e-03
## KPNA6 8.411552e+00 4.246204e+01 3.786525 2.363377e-04 1.431545e-03
## WDR70 -4.416509e+00 1.612595e+01 -3.785411 2.372882e-04 1.436569e-03
## CENPA 1.303511e+00 1.450877e+00 3.785139 2.375209e-04 1.436583e-03
## NDOR1 -8.661786e+00 1.651867e+01 -3.785125 2.375328e-04 1.436583e-03
## RABL3 2.389588e+00 1.204163e+01 3.784746 2.378579e-04 1.437816e-03
## PTPN6 -1.368766e+02 5.268262e+02 -3.784099 2.384135e-04 1.440440e-03
## ARHGAP45 -1.057195e+02 2.357847e+02 -3.783164 2.392174e-04 1.444176e-03
## PLEKHO1 -9.512740e+01 1.823990e+02 -3.783074 2.392952e-04 1.444176e-03
## UBALD1 -3.361644e+00 4.023117e+00 -3.782956 2.393972e-04 1.444176e-03
## MSRB3 6.115453e+00 1.287583e+01 3.782709 2.396099e-04 1.444725e-03
## PLEKHA8 2.150124e+00 8.093103e+00 3.782510 2.397822e-04 1.445029e-03
## ARID5A -4.345053e+01 6.795398e+01 -3.781607 2.405627e-04 1.448996e-03
## DGCR2 -2.656957e+01 9.258023e+01 -3.781454 2.406955e-04 1.449060e-03
## PMM1 -7.505957e+00 1.697339e+01 -3.780701 2.413494e-04 1.451609e-03
## CTDNEP1 -3.801098e+01 1.228679e+02 -3.780685 2.413636e-04 1.451609e-03
## ISY1 -1.426847e+01 5.001492e+01 -3.779157 2.426952e-04 1.458877e-03
## ETFB -1.889623e+01 2.558850e+01 -3.777336 2.442908e-04 1.467725e-03
## RNF213 2.584441e+02 4.557329e+02 3.776737 2.448178e-04 1.470146e-03
## ZMIZ2 -7.117732e+00 2.160966e+01 -3.776463 2.450594e-04 1.470853e-03
## MAPK3 -4.148627e+01 1.167952e+02 -3.776246 2.452510e-04 1.471258e-03
## FDXR -2.190280e+00 3.060171e+00 -3.775881 2.455733e-04 1.471981e-03
## SEMA3E -1.092491e+00 1.539377e+00 -3.775828 2.456198e-04 1.471981e-03
## MTFR1 6.201385e-01 2.852083e+00 3.775284 2.461013e-04 1.474122e-03
## MYO1D 2.825059e+00 3.711571e+00 3.775040 2.463177e-04 1.474673e-03
## IRAK2 7.054777e+00 1.125861e+01 3.774883 2.464565e-04 1.474760e-03
## LMBRD2 4.812965e+00 1.451010e+01 3.773673 2.475318e-04 1.480206e-03
## EIF6 -3.129515e+01 7.179992e+01 -3.773578 2.476162e-04 1.480206e-03
## CCL3 -4.625988e+00 8.235264e+00 -3.773418 2.477583e-04 1.480309e-03
## UBAC2 -1.226346e+01 6.960979e+01 -3.772439 2.486324e-04 1.484183e-03
## RHOG -2.659925e+02 5.131822e+02 -3.772411 2.486570e-04 1.484183e-03
## NEK4 4.264752e+00 1.222143e+01 3.772105 2.489311e-04 1.484569e-03
## GRAMD4 -3.351802e+00 1.295125e+01 -3.772059 2.489720e-04 1.484569e-03
## MAN2A1 1.094881e+01 4.161320e+01 3.771574 2.494071e-04 1.486339e-03
## NINJ2 -1.193585e+01 2.848899e+01 -3.771448 2.495194e-04 1.486339e-03
## ECI1 -3.148200e+00 4.541724e+00 -3.770467 2.504016e-04 1.490845e-03
## DNAJB4 1.142873e+00 3.413015e+00 3.766866 2.536620e-04 1.509499e-03
## ZNF669 1.541306e+00 6.245737e+00 3.766148 2.543177e-04 1.512642e-03
## BAX -2.281173e+01 5.942547e+01 -3.765793 2.546414e-04 1.513808e-03
## TRIP6 -1.973153e+00 4.341131e+00 -3.765161 2.552208e-04 1.516492e-03
## TRIM11 -7.127008e+00 2.216226e+01 -3.764472 2.558526e-04 1.519222e-03
## HAUS2 2.206117e+00 1.140757e+01 3.764381 2.559364e-04 1.519222e-03
## ZNF671 -3.172690e+00 1.503733e+01 -3.764129 2.561677e-04 1.519478e-03
## ZNF581 -8.014281e+00 1.407894e+01 -3.764055 2.562358e-04 1.519478e-03
## CNST 8.422672e+00 3.201148e+01 3.763119 2.570981e-04 1.523830e-03
## TPP2 1.101797e+01 3.408538e+01 3.762883 2.573167e-04 1.524363e-03
## MED6 -2.151230e+00 1.610671e+01 -3.762341 2.578177e-04 1.526569e-03
## PIDD1 -2.083058e+00 2.507303e+00 -3.762101 2.580395e-04 1.527120e-03
## DBP -1.865338e+00 3.415151e+00 -3.761944 2.581848e-04 1.527218e-03
## MORF4L2 7.757616e+00 4.127090e+01 3.761607 2.584969e-04 1.528302e-03
## SBF2 2.201537e+01 4.786018e+01 3.761318 2.587652e-04 1.529126e-03
## ZDHHC23 9.893167e-01 2.360267e+00 3.760860 2.591912e-04 1.530880e-03
## RPS25 -2.048400e+02 4.875764e+02 -3.760080 2.599175e-04 1.534406e-03
## APEX1 -1.663267e+01 5.645519e+01 -3.759694 2.602774e-04 1.535506e-03
## TAB3 1.238691e+01 3.729086e+01 3.759603 2.603628e-04 1.535506e-03
## TNFRSF10C -1.797639e+02 4.380031e+02 -3.759069 2.608617e-04 1.537587e-03
## HPS3 7.069255e+00 3.272897e+01 3.758699 2.612087e-04 1.537587e-03
## ATP6V0E2 -6.086691e+00 8.987266e+00 -3.758464 2.614284e-04 1.537587e-03
## KLRB1 -2.930696e+01 4.120303e+01 -3.758398 2.614900e-04 1.537587e-03
## SMCHD1 3.151983e+02 7.308843e+02 3.758395 2.614935e-04 1.537587e-03
## HMGXB4 3.420485e+00 1.218550e+01 3.758301 2.615815e-04 1.537587e-03
## PBLD 1.246348e+00 3.704078e+00 3.758210 2.616669e-04 1.537587e-03
## LPAR2 -6.475904e+01 1.384895e+02 -3.758118 2.617527e-04 1.537587e-03
## YJU2 -4.442894e+00 8.966040e+00 -3.757455 2.623759e-04 1.540484e-03
## TEX2 1.221087e+01 1.955946e+01 3.757256 2.625635e-04 1.540823e-03
## CLCC1 2.095010e+00 8.700595e+00 3.756391 2.633789e-04 1.543968e-03
## BTN3A2 7.470000e+01 2.241474e+02 3.756259 2.635034e-04 1.543968e-03
## GGCX 3.007616e+00 1.796261e+01 3.756246 2.635162e-04 1.543968e-03
## FAM199X 1.015768e+01 3.456611e+01 3.756046 2.637053e-04 1.543968e-03
## ANKRD26 1.038639e+00 2.666260e+00 3.755998 2.637504e-04 1.543968e-03
## RMC1 5.139146e+00 3.124943e+01 3.755555 2.641700e-04 1.545661e-03
## FNDC3A 2.089290e+01 4.673518e+01 3.755292 2.644192e-04 1.546357e-03
## TSC1 6.339273e+00 2.520761e+01 3.755039 2.646589e-04 1.546996e-03
## XRN1 5.245608e+01 9.117972e+01 3.754848 2.648402e-04 1.547293e-03
## EIF3H -2.523622e+01 1.270660e+02 -3.754655 2.650231e-04 1.547599e-03
## LONP1 -7.578937e+00 1.202611e+01 -3.754051 2.655976e-04 1.550191e-03
## CENPN 3.223504e+00 6.068023e+00 3.752412 2.671617e-04 1.558270e-03
## CDC26 -1.483632e+01 4.956672e+01 -3.752325 2.672446e-04 1.558270e-03
## KANSL3 6.150493e+00 3.350078e+01 3.751438 2.680959e-04 1.562466e-03
## C6orf47 -1.216399e+01 5.058061e+01 -3.750259 2.692302e-04 1.568306e-03
## SZRD1 -2.915949e+01 1.369710e+02 -3.749947 2.695307e-04 1.569286e-03
## PTPRA 1.025839e+01 6.472976e+01 3.749598 2.698679e-04 1.570114e-03
## ATXN7 2.682478e+01 6.438516e+01 3.749526 2.699377e-04 1.570114e-03
## APPBP2 8.790470e+00 3.302521e+01 3.749140 2.703110e-04 1.571514e-03
## CEP162 4.008583e+00 1.075719e+01 3.748759 2.706798e-04 1.572622e-03
## ZNF852 8.724034e-01 2.387923e+00 3.748669 2.707668e-04 1.572622e-03
## PDK2 -3.222668e+00 7.084785e+00 -3.748260 2.711636e-04 1.574156e-03
## PXN -1.748908e+02 5.532081e+02 -3.747597 2.718082e-04 1.577126e-03
## GOLT1B 3.960652e+00 2.098623e+01 3.746315 2.730581e-04 1.583604e-03
## BRD2 4.394000e+01 2.390096e+02 3.745350 2.740026e-04 1.588304e-03
## CD4 -5.384606e+01 1.056741e+02 -3.744719 2.746216e-04 1.591115e-03
## NELFE -2.130252e+01 5.379988e+01 -3.744357 2.749780e-04 1.592402e-03
## MIF4GD -8.372870e+00 2.396256e+01 -3.743972 2.753568e-04 1.593125e-03
## VPS25 -1.213111e+01 4.402055e+01 -3.743861 2.754658e-04 1.593125e-03
## LILRA1 -3.649428e+01 1.003846e+02 -3.743821 2.755058e-04 1.593125e-03
## PNPLA7 -9.236918e-01 1.013381e+00 -3.743499 2.758231e-04 1.594182e-03
## NFATC1 -3.657374e+00 1.200746e+01 -3.743252 2.760664e-04 1.594526e-03
## IRF8 -1.162482e+01 4.913949e+01 -3.743166 2.761514e-04 1.594526e-03
## ATL1 6.216647e-01 1.615097e+00 3.742589 2.767224e-04 1.596294e-03
## N4BP2 3.185102e+00 7.302057e+00 3.742584 2.767269e-04 1.596294e-03
## ZNF446 -2.864160e+00 5.543368e+00 -3.742260 2.770479e-04 1.597369e-03
## IGFL4 4.218307e+00 7.592843e+00 3.741176 2.781232e-04 1.602790e-03
## RPL36 -1.096966e+02 1.128532e+02 -3.739886 2.794089e-04 1.609417e-03
## PLEKHM3 8.147862e+00 1.785398e+01 3.739395 2.799000e-04 1.611463e-03
## ATAD2B 7.929089e+00 2.246466e+01 3.739002 2.802935e-04 1.612945e-03
## LGALS1 -9.822799e+01 1.560579e+02 -3.738866 2.804299e-04 1.612948e-03
## NCOA6 1.337801e+01 4.195751e+01 3.738596 2.807004e-04 1.613721e-03
## GPER1 -2.382425e+00 2.359528e+00 -3.737322 2.819808e-04 1.619949e-03
## CTDP1 -1.070125e+01 2.589872e+01 -3.737190 2.821136e-04 1.619949e-03
## FLT3LG -9.521503e+00 1.002819e+01 -3.737111 2.821935e-04 1.619949e-03
## PRDM4 5.648702e+00 2.520332e+01 3.736572 2.827379e-04 1.622289e-03
## SH3D21 -1.316026e+00 3.131447e+00 -3.735069 2.842594e-04 1.630230e-03
## CAPG -1.085632e+02 1.862372e+02 -3.734334 2.850063e-04 1.633724e-03
## FAM126A 5.083078e+00 1.735030e+01 3.734138 2.852057e-04 1.634077e-03
## NCF4 -2.478161e+02 5.687098e+02 -3.733800 2.855503e-04 1.634805e-03
## ARHGAP5 4.197457e+00 1.044044e+01 3.733743 2.856085e-04 1.634805e-03
## WDR7 2.858741e+00 1.093938e+01 3.733515 2.858411e-04 1.634957e-03
## KCTD9 4.444331e+00 1.433280e+01 3.733447 2.859108e-04 1.634957e-03
## EEFSEC -4.127477e+00 6.400606e+00 -3.733052 2.863143e-04 1.636476e-03
## PTGES2 -6.381049e+00 9.792072e+00 -3.731968 2.874240e-04 1.642027e-03
## WASHC2A 1.329008e+01 5.737396e+01 3.731732 2.876664e-04 1.642118e-03
## KDM5A 3.208623e+01 1.203062e+02 3.731682 2.877168e-04 1.642118e-03
## TMED1 -5.529179e+00 1.255846e+01 -3.729515 2.899506e-04 1.654071e-03
## DUS1L -1.234602e+01 2.322127e+01 -3.728565 2.909349e-04 1.658888e-03
## SLC33A1 3.381048e+00 1.850734e+01 3.728236 2.912767e-04 1.660039e-03
## RAB2B 2.411137e+00 1.148864e+01 3.727882 2.916443e-04 1.661336e-03
## CEP63 3.228608e+01 9.140290e+01 3.727295 2.922558e-04 1.664020e-03
## CFL1 -3.224803e+02 9.282552e+02 -3.726777 2.927953e-04 1.666292e-03
## USE1 -4.058224e+00 6.885723e+00 -3.726491 2.930944e-04 1.667194e-03
## MCM9 4.319706e+00 1.651753e+01 3.724214 2.954833e-04 1.679659e-03
## CYP4F3 1.134943e+02 2.319367e+02 3.724133 2.955690e-04 1.679659e-03
## MRPL4 -5.415779e+00 6.632145e+00 -3.723812 2.959067e-04 1.680099e-03
## LIMS1 3.337464e+01 9.863491e+01 3.723790 2.959298e-04 1.680099e-03
## IDH3B -1.745103e+01 5.581112e+01 -3.723432 2.963074e-04 1.681332e-03
## ABRAXAS2 3.114643e+00 1.367703e+01 3.723316 2.964305e-04 1.681332e-03
## SEMA4C -2.373107e+00 4.868428e+00 -3.723100 2.966587e-04 1.681822e-03
## LSM11 9.458718e-01 3.490817e+00 3.722933 2.968348e-04 1.682017e-03
## NUP155 2.197414e+00 1.010517e+01 3.722445 2.973515e-04 1.684140e-03
## KPNA3 5.817698e+00 2.299328e+01 3.722248 2.975606e-04 1.684520e-03
## SH2D3A -1.744528e+00 2.920412e+00 -3.722026 2.977961e-04 1.685048e-03
## ST6GAL1 2.710843e+01 7.503714e+01 3.721563 2.982873e-04 1.687023e-03
## PATL2 7.439009e+00 1.928900e+01 3.721126 2.987523e-04 1.688848e-03
## EXOC7 -1.781705e+01 1.037912e+02 -3.720029 2.999215e-04 1.694649e-03
## CTNNBIP1 -4.803639e+00 1.671485e+01 -3.719303 3.006983e-04 1.697980e-03
## OGT 6.461978e+01 2.333961e+02 3.719210 3.007974e-04 1.697980e-03
## SLC25A30 2.694606e+00 8.382502e+00 3.718549 3.015060e-04 1.701171e-03
## CPSF2 1.310789e+01 5.700730e+01 3.717576 3.025528e-04 1.706265e-03
## TMEM39B -2.178888e+00 7.144007e+00 -3.717041 3.031293e-04 1.708704e-03
## UNC5A -7.221349e-01 8.168418e-01 -3.716087 3.041597e-04 1.713698e-03
## ADNP 1.413843e+01 6.282001e+01 3.715386 3.049198e-04 1.717165e-03
## MOB3A -1.858233e+02 4.839249e+02 -3.714518 3.058630e-04 1.721659e-03
## LPCAT4 -7.105483e+00 2.093302e+01 -3.713749 3.067007e-04 1.725555e-03
## SCP2 1.304611e+01 5.528480e+01 3.712919 3.076075e-04 1.729836e-03
## MIF -6.001501e+00 6.159010e+00 -3.712724 3.078205e-04 1.730214e-03
## DEK 3.646862e+01 1.299614e+02 3.711780 3.088562e-04 1.735213e-03
## TRAF1 -8.714057e+00 2.053752e+01 -3.709901 3.109259e-04 1.746014e-03
## USP49 2.622084e+00 8.151365e+00 3.708141 3.128764e-04 1.756135e-03
## UBTF -1.379778e+01 8.486721e+01 -3.707639 3.134355e-04 1.757623e-03
## CENPT -8.919034e+00 2.019970e+01 -3.707625 3.134505e-04 1.757623e-03
## TAF1 1.051095e+01 3.287209e+01 3.707503 3.135861e-04 1.757623e-03
## PCDH12 -6.818857e-01 1.708182e+00 -3.707251 3.138671e-04 1.758214e-03
## TAF1B 1.693007e+00 5.208159e+00 3.707143 3.139880e-04 1.758214e-03
## PIGC 3.316433e+00 2.101348e+01 3.706809 3.143613e-04 1.759474e-03
## MYL6 -1.230692e+03 2.073412e+03 -3.705438 3.158948e-04 1.767223e-03
## NDUFV1 -2.270646e+01 3.372970e+01 -3.704702 3.167220e-04 1.770561e-03
## PRRG4 5.342365e+01 7.128888e+01 3.704628 3.168056e-04 1.770561e-03
## LRRC8D 7.453402e+00 2.933636e+01 3.704509 3.169394e-04 1.770561e-03
## NUS1 9.289865e+00 3.757963e+01 3.703646 3.179115e-04 1.775156e-03
## PRMT2 -2.578337e+01 1.297037e+02 -3.702076 3.196880e-04 1.784235e-03
## RFX1 -1.772935e+00 5.288178e+00 -3.701007 3.209032e-04 1.790175e-03
## CDIP1 -7.757637e+00 1.878473e+01 -3.700683 3.212728e-04 1.791151e-03
## ZBTB46 -6.344479e-01 1.175160e+00 -3.700589 3.213801e-04 1.791151e-03
## SLC2A4RG -6.499102e+00 1.031328e+01 -3.700232 3.217872e-04 1.792577e-03
## RAD18 1.253494e+00 5.186807e+00 3.699906 3.221594e-04 1.793808e-03
## TESC -1.763397e+01 2.362683e+01 -3.699656 3.224451e-04 1.794556e-03
## TNPO1 3.399436e+01 8.426560e+01 3.699387 3.227534e-04 1.795429e-03
## RBM27 8.010752e+00 2.871347e+01 3.699064 3.231234e-04 1.796645e-03
## CMTM3 -2.667333e+01 9.704492e+01 -3.698902 3.233092e-04 1.796836e-03
## MSH6 3.708020e+00 2.168682e+01 3.698606 3.236484e-04 1.797878e-03
## C19orf53 -1.832979e+01 3.260124e+01 -3.697843 3.245255e-04 1.801907e-03
## TMEM234 -3.662867e+00 9.954188e+00 -3.697283 3.251713e-04 1.804648e-03
## MEF2B -1.601756e+00 2.260429e+00 -3.696043 3.266036e-04 1.810904e-03
## RPL30 -3.046104e+02 7.576033e+02 -3.696043 3.266040e-04 1.810904e-03
## ACTL6A 3.538498e+00 1.502742e+01 3.695587 3.271324e-04 1.812912e-03
## ZRANB1 1.475332e+01 3.288000e+01 3.695466 3.272719e-04 1.812912e-03
## INF2 -5.467478e+00 9.369260e+00 -3.694373 3.285430e-04 1.819104e-03
## RHOF -1.362774e+01 3.008967e+01 -3.693973 3.290092e-04 1.820093e-03
## ACBD3 7.028315e+00 2.900214e+01 3.693956 3.290286e-04 1.820093e-03
## IPO9 4.612519e+00 2.128201e+01 3.693496 3.295653e-04 1.820836e-03
## CTSF -2.858385e+00 4.320339e+00 -3.693488 3.295745e-04 1.820836e-03
## TXNDC5 2.995249e+02 2.778705e+02 3.693446 3.296236e-04 1.820836e-03
## SCARB2 1.878929e+01 4.767871e+01 3.693164 3.299532e-04 1.821809e-03
## SPATA20 -4.506344e+00 8.463381e+00 -3.692844 3.303275e-04 1.823026e-03
## TRAPPC1 -4.785545e+01 1.334744e+02 -3.692462 3.307750e-04 1.824647e-03
## RPP21 -3.130072e+00 4.346456e+00 -3.692135 3.311586e-04 1.825914e-03
## SLC38A1 2.673506e+01 6.328160e+01 3.691566 3.318268e-04 1.827927e-03
## GRAP -1.152316e+01 1.639445e+01 -3.691562 3.318319e-04 1.827927e-03
## PIN1 -1.067383e+01 1.756315e+01 -3.691102 3.323729e-04 1.830057e-03
## IRAK1 -1.831881e+01 6.347228e+01 -3.690607 3.329561e-04 1.831580e-03
## KRBA2 9.262405e-01 5.176327e+00 3.690605 3.329585e-04 1.831580e-03
## SH3BP5L -2.990187e+01 9.975082e+01 -3.689308 3.344908e-04 1.839156e-03
## SPAG1 3.741493e+00 7.047075e+00 3.688800 3.350925e-04 1.841611e-03
## HSPA1B -2.189941e+01 2.484944e+01 -3.688155 3.358586e-04 1.844967e-03
## B3GALNT2 2.145017e+00 7.077720e+00 3.687979 3.360679e-04 1.845262e-03
## SUPT16H 1.160194e+01 6.353515e+01 3.687421 3.367332e-04 1.848059e-03
## EIF3A 2.933931e+01 1.238513e+02 3.686961 3.372812e-04 1.850210e-03
## ILVBL -4.381855e+00 6.593759e+00 -3.686257 3.381224e-04 1.853967e-03
## RCBTB1 7.040226e+00 2.234775e+01 3.685830 3.386338e-04 1.855561e-03
## USP20 -1.317580e+01 3.525384e+01 -3.685753 3.387259e-04 1.855561e-03
## BOP1 -5.840469e+00 6.985680e+00 -3.685247 3.393334e-04 1.858030e-03
## SCRIB -1.858720e+00 3.799350e+00 -3.684547 3.401751e-04 1.861780e-03
## NEMP1 2.642654e+00 7.893184e+00 3.684390 3.403631e-04 1.861950e-03
## RABAC1 -1.758665e+01 2.794759e+01 -3.683962 3.408790e-04 1.863912e-03
## NDUFA13 -5.482893e+01 7.325513e+01 -3.682554 3.425816e-04 1.872359e-03
## WDR74 -7.117044e+00 1.363374e+01 -3.682324 3.428600e-04 1.873017e-03
## FLII -3.393658e+01 1.642210e+02 -3.681739 3.435693e-04 1.876028e-03
## RIF1 7.608518e+00 2.654692e+01 3.681518 3.438387e-04 1.876635e-03
## ZNF507 2.947320e+00 1.056775e+01 3.680578 3.449827e-04 1.882013e-03
## DENND1B 6.706954e+00 2.025507e+01 3.680416 3.451802e-04 1.882129e-03
## THOC6 -7.354110e+00 1.286914e+01 -3.680198 3.454468e-04 1.882129e-03
## SLC25A32 2.389577e+00 1.008751e+01 3.680170 3.454802e-04 1.882129e-03
## MANEAL -7.434681e-01 1.880665e+00 -3.679936 3.457667e-04 1.882825e-03
## POGZ 1.072249e+01 4.534624e+01 3.678927 3.470022e-04 1.888686e-03
## RPLP2 -3.149869e+02 2.782993e+02 -3.678524 3.474968e-04 1.890510e-03
## PLIN3 -4.253595e+01 1.068782e+02 -3.678108 3.480076e-04 1.891682e-03
## HS1BP3 -1.378633e+01 3.926229e+01 -3.678089 3.480312e-04 1.891682e-03
## BLOC1S4 -2.817082e+00 8.199685e+00 -3.677550 3.486941e-04 1.894417e-03
## YIF1B -8.831260e+00 1.808188e+01 -3.676786 3.496370e-04 1.896748e-03
## KLF2 -9.384581e+01 2.064148e+02 -3.676775 3.496507e-04 1.896748e-03
## DHX29 3.881271e+00 1.834194e+01 3.676757 3.496727e-04 1.896748e-03
## ZFYVE26 8.905999e+00 2.543646e+01 3.676684 3.497629e-04 1.896748e-03
## FMR1 1.710311e+01 5.758137e+01 3.675851 3.507934e-04 1.901467e-03
## PUS1 -3.010184e+00 5.357162e+00 -3.675661 3.510284e-04 1.901781e-03
## USP54 5.955624e-01 1.902972e+00 3.675482 3.512505e-04 1.901781e-03
## TMEM184C 5.498499e+00 1.841636e+01 3.675388 3.513668e-04 1.901781e-03
## SEPHS1 3.638128e+00 1.593709e+01 3.675227 3.515676e-04 1.901781e-03
## RAB11FIP2 5.837744e+00 1.849863e+01 3.675158 3.516531e-04 1.901781e-03
## BSG -7.969042e+01 1.354238e+02 -3.674742 3.521701e-04 1.903709e-03
## NAE1 3.206771e+00 1.552913e+01 3.674491 3.524823e-04 1.904529e-03
## BPNT2 6.373546e+00 3.121925e+01 3.673764 3.533884e-04 1.908555e-03
## AAR2 -4.421051e+00 2.004174e+01 -3.672913 3.544505e-04 1.913419e-03
## WASHC5 6.331436e+00 2.981605e+01 3.672384 3.551130e-04 1.916124e-03
## JMJD8 -9.853021e+00 1.656877e+01 -3.671856 3.557758e-04 1.918286e-03
## ORC2 4.576216e+00 1.750766e+01 3.671620 3.560726e-04 1.918286e-03
## CD81 -1.982050e+01 3.513478e+01 -3.671603 3.560934e-04 1.918286e-03
## ATP2A2 1.111202e+01 3.710836e+01 3.671550 3.561607e-04 1.918286e-03
## OSCAR -6.125023e+01 1.194916e+02 -3.671172 3.566354e-04 1.919971e-03
## FEM1B 1.174523e+01 4.638225e+01 3.670604 3.573517e-04 1.922954e-03
## COMMD9 -9.235183e+00 3.856956e+01 -3.670310 3.577220e-04 1.924074e-03
## PPM1L 2.539965e+00 9.154108e+00 3.669989 3.581268e-04 1.924902e-03
## ABHD14B -1.741354e+01 2.785926e+01 -3.669931 3.582005e-04 1.924902e-03
## MSRA -1.033607e+01 1.989037e+01 -3.669540 3.586952e-04 1.926347e-03
## NBPF12 6.020871e+00 1.675312e+01 3.669462 3.587943e-04 1.926347e-03
## AP1S3 6.990810e-01 2.740719e+00 3.668405 3.601340e-04 1.932665e-03
## SFXN3 -6.772214e+00 3.279589e+01 -3.667269 3.615793e-04 1.939544e-03
## RPS24 -3.330503e+02 7.285410e+02 -3.666501 3.625603e-04 1.943926e-03
## PEX6 -1.116550e+01 2.642859e+01 -3.665320 3.640727e-04 1.951154e-03
## MYZAP 5.895145e+00 8.267161e+00 3.664817 3.647190e-04 1.953734e-03
## MROH1 -3.229415e+00 7.455327e+00 -3.664512 3.651101e-04 1.954197e-03
## CARMIL2 -6.478091e+00 9.665258e+00 -3.664493 3.651350e-04 1.954197e-03
## FIS1 -2.985527e+01 5.308226e+01 -3.663743 3.661020e-04 1.958489e-03
## RABGGTA -5.014878e+00 1.531104e+01 -3.662740 3.673979e-04 1.964535e-03
## LYL1 -1.318202e+01 1.800618e+01 -3.662576 3.676099e-04 1.964783e-03
## KMT5C -1.310042e+00 2.773191e+00 -3.662054 3.682867e-04 1.967514e-03
## INTS5 -4.846051e+00 1.438611e+01 -3.660211 3.706851e-04 1.979435e-03
## IFITM2 -2.848844e+03 5.357986e+03 -3.659910 3.710775e-04 1.980639e-03
## NUF2 2.724779e+00 3.343925e+00 3.659141 3.720842e-04 1.985119e-03
## HSD17B10 -1.680462e+01 3.583463e+01 -3.658544 3.728670e-04 1.988401e-03
## APBA3 -2.172139e+00 5.240749e+00 -3.658017 3.735586e-04 1.991193e-03
## PLD3 -1.406250e+01 3.540101e+01 -3.657433 3.743281e-04 1.994399e-03
## MRPL24 -9.408460e+00 1.931318e+01 -3.657010 3.748860e-04 1.996474e-03
## SCYL2 2.183028e+01 6.530541e+01 3.656653 3.753565e-04 1.998082e-03
## VRK3 -1.450263e+01 5.842421e+01 -3.656121 3.760597e-04 2.000602e-03
## LTBP1 6.640562e+00 1.225122e+01 3.656040 3.761671e-04 2.000602e-03
## SURF4 -2.091637e+01 1.022172e+02 -3.654547 3.781486e-04 2.010239e-03
## KIF2A 1.752380e+01 7.356831e+01 3.653850 3.790766e-04 2.014269e-03
## BAMBI 1.192064e+00 1.766533e+00 3.652992 3.802223e-04 2.018840e-03
## ZMAT5 -8.456786e+00 1.938715e+01 -3.652951 3.802774e-04 2.018840e-03
## CCDC107 -9.982659e+00 1.338205e+01 -3.652059 3.814708e-04 2.024270e-03
## NAALADL1 -3.763585e+00 5.807295e+00 -3.649687 3.846648e-04 2.040306e-03
## DENND4B -1.485356e+01 1.012668e+02 -3.649364 3.851020e-04 2.041712e-03
## UBA5 3.638598e+00 1.449998e+01 3.648872 3.857688e-04 2.044333e-03
## CCDC142 -1.192360e+00 6.586726e+00 -3.646796 3.885927e-04 2.057798e-03
## USF3 1.460143e+01 3.340978e+01 3.646650 3.887911e-04 2.057798e-03
## SIMC1 1.273377e+00 5.006946e+00 3.646615 3.888395e-04 2.057798e-03
## NAT9 -4.587822e+00 1.533557e+01 -3.646495 3.890037e-04 2.057798e-03
## CTSH -4.799392e+01 1.260717e+02 -3.646188 3.894229e-04 2.059097e-03
## SEPTIN2 2.950206e+01 1.525657e+02 3.646026 3.896443e-04 2.059350e-03
## PRRC1 4.682719e+00 1.791919e+01 3.645651 3.901576e-04 2.061145e-03
## SENP5 4.237789e+00 2.901791e+01 3.645212 3.907595e-04 2.062850e-03
## INPP5K -2.030519e+01 6.800043e+01 -3.645162 3.908283e-04 2.062850e-03
## R3HDM4 -1.850354e+02 4.578008e+02 -3.644420 3.918478e-04 2.067311e-03
## URM1 -1.197059e+01 3.645555e+01 -3.643712 3.928235e-04 2.070597e-03
## PRADC1 -5.865252e+00 9.096291e+00 -3.643686 3.928595e-04 2.070597e-03
## UPF3B 1.206706e+00 8.109281e+00 3.643588 3.929943e-04 2.070597e-03
## NCKAP1 2.910344e+00 6.203910e+00 3.643248 3.934634e-04 2.071396e-03
## STAT5A -4.435036e+01 1.592304e+02 -3.643225 3.934954e-04 2.071396e-03
## ABCC4 8.372046e+00 1.594838e+01 3.642494 3.945058e-04 2.075198e-03
## RGS3 -2.107418e+01 5.650161e+01 -3.642450 3.945675e-04 2.075198e-03
## CYC1 -1.558949e+01 3.715765e+01 -3.642144 3.949904e-04 2.076501e-03
## HLA-DRB1 -2.441480e+02 3.976591e+02 -3.641964 3.952402e-04 2.076894e-03
## PSMG4 -1.638171e+00 4.468802e+00 -3.641305 3.961550e-04 2.080779e-03
## ZBTB17 -4.926258e+00 1.551052e+01 -3.640898 3.967217e-04 2.082833e-03
## CD7 -1.391468e+01 1.269969e+01 -3.640714 3.969773e-04 2.083253e-03
## ALKBH2 -1.485305e+00 3.203358e+00 -3.640307 3.975448e-04 2.085308e-03
## STK19 -4.125071e+00 1.266014e+01 -3.640047 3.979082e-04 2.086292e-03
## IGBP1 -1.418758e+01 9.315010e+01 -3.639638 3.984791e-04 2.088336e-03
## DERPC -1.603660e+01 3.455066e+01 -3.639516 3.986502e-04 2.088336e-03
## DSN1 2.314628e+00 1.080937e+01 3.638941 3.994543e-04 2.089964e-03
## TIMM13 -7.058597e+00 9.269463e+00 -3.638934 3.994635e-04 2.089964e-03
## ZNF28 3.249275e+00 1.160783e+01 3.638857 3.995717e-04 2.089964e-03
## RBM14 -5.643784e+00 2.020115e+01 -3.638701 3.997911e-04 2.089964e-03
## CAND1 8.127618e+00 3.886795e+01 3.638664 3.998422e-04 2.089964e-03
## ZNF578 -7.352209e-01 1.902252e+00 -3.638252 4.004206e-04 2.092066e-03
## ERCC6 3.146431e+00 1.040618e+01 3.637168 4.019452e-04 2.098842e-03
## EML6 6.182216e-01 1.241100e+00 3.637078 4.020716e-04 2.098842e-03
## MICAL1 -7.743616e+01 2.019733e+02 -3.635465 4.043514e-04 2.109814e-03
## ERLEC1 1.112977e+01 3.817985e+01 3.634440 4.058069e-04 2.116478e-03
## ABLIM3 1.374245e+01 2.660013e+01 3.634207 4.061381e-04 2.116576e-03
## ERI2 9.486358e-01 3.443466e+00 3.634176 4.061828e-04 2.116576e-03
## WDR97 -4.167770e-01 8.739580e-01 -3.633838 4.066642e-04 2.118154e-03
## RNF6 1.086557e+01 3.834992e+01 3.633472 4.071858e-04 2.119940e-03
## ZNF8 2.265268e+00 9.043717e+00 3.632391 4.087301e-04 2.127046e-03
## TATDN2 7.898259e+00 6.748421e+01 3.631967 4.093376e-04 2.129274e-03
## NKD1 2.163089e+00 3.876576e+00 3.630143 4.119615e-04 2.141362e-03
## EMP3 -7.784490e+01 1.863266e+02 -3.630100 4.120226e-04 2.141362e-03
## TPM2 -3.926843e+00 5.117356e+00 -3.629932 4.122662e-04 2.141689e-03
## ASTN2 2.980752e+00 6.078699e+00 3.629693 4.126113e-04 2.142544e-03
## GATAD1 2.612307e+00 1.537554e+01 3.629329 4.131361e-04 2.144330e-03
## MAP3K21 7.097237e-01 1.711377e+00 3.628314 4.146075e-04 2.151026e-03
## MRPL43 -5.008146e+00 1.271728e+01 -3.628101 4.149167e-04 2.151689e-03
## NAA15 4.190678e+00 1.702195e+01 3.626281 4.175669e-04 2.164486e-03
## REX1BD -3.458198e+00 3.423726e+00 -3.624896 4.195946e-04 2.173696e-03
## DCUN1D3 3.236932e+00 9.086661e+00 3.624818 4.197103e-04 2.173696e-03
## UCK1 -5.853245e+00 2.329643e+01 -3.624531 4.201311e-04 2.174926e-03
## BTLA 3.813030e+00 9.656279e+00 3.624177 4.206518e-04 2.176671e-03
## IGHG1 1.357278e+03 1.138835e+03 3.623890 4.210739e-04 2.177905e-03
## ANKS3 -1.291045e+00 2.066478e+00 -3.622951 4.224585e-04 2.183753e-03
## TMEM245 5.495165e+00 1.805798e+01 3.622874 4.225728e-04 2.183753e-03
## CBWD2 5.757977e+00 2.994019e+01 3.622661 4.228869e-04 2.184424e-03
## VAMP1 1.354868e+01 5.703691e+01 3.621539 4.245491e-04 2.192056e-03
## STING1 -2.261992e+01 7.368207e+01 -3.620940 4.254386e-04 2.195693e-03
## MAMDC4 -6.791950e-01 8.934200e-01 -3.620523 4.260589e-04 2.197555e-03
## B9D2 -5.025387e+00 1.082149e+01 -3.620410 4.262283e-04 2.197555e-03
## TM2D2 -3.359581e+00 1.716392e+01 -3.620324 4.263553e-04 2.197555e-03
## DAAM1 1.594566e+00 5.636923e+00 3.619552 4.275070e-04 2.202182e-03
## NBPF19 7.723578e+01 1.276146e+02 3.619474 4.276244e-04 2.202182e-03
## C18orf25 3.231895e+01 6.291991e+01 3.618160 4.295921e-04 2.211355e-03
## ALPL -4.859620e+02 7.099232e+02 -3.617937 4.299261e-04 2.212114e-03
## HLA-DMA -3.586885e+01 7.506412e+01 -3.617243 4.309701e-04 2.216525e-03
## ZBTB42 -1.353617e+00 1.962875e+00 -3.616590 4.319536e-04 2.220620e-03
## MTRES1 -1.283426e+00 4.660758e+00 -3.616432 4.321920e-04 2.220883e-03
## DAB2 6.930279e+00 1.773419e+01 3.616188 4.325608e-04 2.221619e-03
## POP4 -5.078525e+00 2.253557e+01 -3.616089 4.327099e-04 2.221619e-03
## NIPSNAP1 -5.465818e+00 2.269746e+01 -3.615836 4.330922e-04 2.222619e-03
## ACP5 -8.756209e+00 1.561636e+01 -3.615363 4.338078e-04 2.225329e-03
## MARCHF9 -4.463103e+00 7.931730e+00 -3.614861 4.345695e-04 2.228273e-03
## ATRX 1.890835e+01 5.216689e+01 3.614282 4.354491e-04 2.231818e-03
## TCF12 5.882471e+00 2.037587e+01 3.614080 4.357555e-04 2.232424e-03
## CNOT3 -9.278894e+00 3.386693e+01 -3.613766 4.362337e-04 2.233908e-03
## BANF1 -2.335290e+01 4.939688e+01 -3.612632 4.379633e-04 2.241798e-03
## ANKRD27 4.389819e+00 2.370359e+01 3.612252 4.385442e-04 2.243802e-03
## RNF187 -1.570927e+01 3.671700e+01 -3.611976 4.389665e-04 2.244995e-03
## PPARD -2.614142e+00 1.077193e+01 -3.610945 4.405487e-04 2.252115e-03
## XYLT2 -3.119230e+00 8.142774e+00 -3.610661 4.409857e-04 2.253378e-03
## INVS 1.045930e+00 4.965375e+00 3.610322 4.415074e-04 2.255072e-03
## RSL1D1 -1.857807e+01 7.996146e+01 -3.610092 4.418618e-04 2.255911e-03
## ZNF768 -2.669613e+00 9.028955e+00 -3.609355 4.429991e-04 2.260744e-03
## PEX13 3.177844e+00 1.442421e+01 3.608556 4.442338e-04 2.266070e-03
## PIGQ -5.427737e+00 6.741879e+00 -3.608058 4.450058e-04 2.269032e-03
## LILRA5 -4.374655e+02 6.052065e+02 -3.606746 4.470463e-04 2.278457e-03
## FAM8A1 8.701219e+01 2.186716e+02 3.605925 4.483267e-04 2.284001e-03
## JAG1 2.706913e+00 7.101478e+00 3.605562 4.488951e-04 2.285915e-03
## IREB2 1.339051e+01 5.079464e+01 3.604474 4.505991e-04 2.293607e-03
## ZNF668 -1.289867e+00 1.976076e+00 -3.603895 4.515094e-04 2.297255e-03
## PRPF4B 1.722355e+01 6.849967e+01 3.603037 4.528616e-04 2.303147e-03
## OVCA2 -7.701235e+00 1.762639e+01 -3.602233 4.541307e-04 2.308530e-03
## KLHL17 -8.773304e-01 1.517939e+00 -3.602120 4.543093e-04 2.308530e-03
## UTRN 2.283302e+01 5.905859e+01 3.601048 4.560086e-04 2.316172e-03
## DAGLA -5.295466e-01 8.452911e-01 -3.600439 4.569755e-04 2.320090e-03
## RNF19A 1.969031e+01 6.059115e+01 3.599045 4.591993e-04 2.329895e-03
## C17orf80 2.499731e+00 1.375346e+01 3.598982 4.592998e-04 2.329895e-03
## FAXDC2 1.044352e+01 2.348800e+01 3.598755 4.596622e-04 2.330737e-03
## SNTA1 -1.379108e+00 1.745718e+00 -3.598448 4.601537e-04 2.332232e-03
## PIM3 -2.926983e+01 6.916755e+01 -3.598128 4.606665e-04 2.333834e-03
## SLC4A2 -6.386736e+00 1.786706e+01 -3.596513 4.632628e-04 2.345147e-03
## ARIH1 1.353023e+01 5.536855e+01 3.596493 4.632951e-04 2.345147e-03
## ARMC5 -2.394003e+00 4.093646e+00 -3.596279 4.636391e-04 2.345887e-03
## DDX49 -7.331425e+00 1.523671e+01 -3.595002 4.657032e-04 2.355326e-03
## SON 5.057977e+01 2.002074e+02 3.593927 4.674472e-04 2.362486e-03
## GPS2 -1.671245e+01 5.330418e+01 -3.593884 4.675172e-04 2.362486e-03
## IGHMBP2 -3.040540e+00 1.056043e+01 -3.593616 4.679525e-04 2.363678e-03
## ANKRD40 3.607710e+00 1.607301e+01 3.593279 4.685021e-04 2.365447e-03
## MED12L 1.798621e+00 2.302674e+00 3.592910 4.691022e-04 2.367469e-03
## ZNF761 2.277336e+00 7.829581e+00 3.592432 4.698823e-04 2.370397e-03
## NCOR2 -5.093537e+00 1.550172e+01 -3.591659 4.711474e-04 2.375769e-03
## THOC5 -2.706746e+01 8.236836e+01 -3.591237 4.718388e-04 2.378244e-03
## PEMT -1.023585e+00 1.908379e+00 -3.590853 4.724692e-04 2.380410e-03
## HSP90B1 2.315883e+02 4.310104e+02 3.590626 4.728410e-04 2.381272e-03
## GNL1 -1.041502e+01 2.955268e+01 -3.589746 4.742899e-04 2.387554e-03
## ABHD8 -1.815952e+00 2.969135e+00 -3.589423 4.748213e-04 2.389215e-03
## KCNMB1 -1.621955e+00 4.568279e+00 -3.589121 4.753195e-04 2.390708e-03
## ANAPC2 -5.447282e+00 1.141795e+01 -3.588718 4.759860e-04 2.393045e-03
## COX6B1 -9.738939e+01 2.210346e+02 -3.587586 4.778611e-04 2.400748e-03
## TBP 1.283115e+00 9.441433e+00 3.587549 4.779229e-04 2.400748e-03
## CLPX 7.033733e+00 3.607939e+01 3.587202 4.784990e-04 2.402624e-03
## FBXL13 5.654924e+00 8.770962e+00 3.586964 4.788941e-04 2.403591e-03
## MMS22L 1.141185e+00 3.994012e+00 3.586644 4.794257e-04 2.405240e-03
## ZFAND2B -2.233631e+01 5.251443e+01 -3.586516 4.796401e-04 2.405299e-03
## RPL36A -2.251945e+02 3.750905e+02 -3.585918 4.806360e-04 2.409274e-03
## CLPTM1 -5.961746e+00 3.432840e+01 -3.585320 4.816342e-04 2.413258e-03
## ABCA1 5.115620e+01 9.167669e+01 3.584332 4.832901e-04 2.420532e-03
## HMBOX1 1.411483e+00 4.292516e+00 3.584076 4.837189e-04 2.421657e-03
## RASSF7 -8.362538e+00 7.936898e+00 -3.583807 4.841703e-04 2.422895e-03
## IFT80 2.759166e+00 8.677430e+00 3.583621 4.844837e-04 2.423440e-03
## NME3 -3.840872e+00 3.381609e+00 -3.583436 4.847937e-04 2.423968e-03
## THAP4 -4.086477e+00 9.293156e+00 -3.583068 4.854128e-04 2.426041e-03
## ETNK1 9.629237e+00 4.377615e+01 3.582630 4.861520e-04 2.428307e-03
## BBC3 -5.767822e+00 1.025264e+01 -3.582557 4.862756e-04 2.428307e-03
## ABT1 -4.507988e+00 2.377140e+01 -3.581507 4.880493e-04 2.436138e-03
## ATP5F1D -1.093292e+01 8.241636e+00 -3.581221 4.885340e-04 2.437532e-03
## CBX5 6.552432e+00 2.299816e+01 3.580450 4.898415e-04 2.443028e-03
## SLC1A4 5.657054e+00 1.174624e+01 3.579970 4.906579e-04 2.446071e-03
## BTAF1 2.079471e+01 5.556688e+01 3.579351 4.917118e-04 2.450295e-03
## SH3BP2 -5.051598e+01 2.169452e+02 -3.578802 4.926484e-04 2.453931e-03
## GPX1 -1.292382e+02 2.005700e+02 -3.577925 4.941483e-04 2.459718e-03
## TRAK2 9.250025e+00 3.640937e+01 3.577880 4.942250e-04 2.459718e-03
## DHRS13 -4.136181e+01 7.013825e+01 -3.577500 4.948767e-04 2.461929e-03
## AFF4 1.834219e+01 4.742511e+01 3.577052 4.956454e-04 2.464719e-03
## RPL23 -2.608425e+02 6.485856e+02 -3.576828 4.960299e-04 2.465597e-03
## PPCDC -2.234007e+01 4.968927e+01 -3.575716 4.979458e-04 2.474083e-03
## FYTTD1 8.334421e+00 4.199973e+01 3.574951 4.992669e-04 2.479609e-03
## MED18 -7.220440e+00 2.443455e+01 -3.574499 5.000498e-04 2.481407e-03
## RPS27 -9.217908e+02 1.484866e+03 -3.574438 5.001551e-04 2.481407e-03
## EPC2 1.149650e+01 3.475894e+01 3.574379 5.002567e-04 2.481407e-03
## CHCHD10 -5.897245e+00 7.115650e+00 -3.574154 5.006465e-04 2.482201e-03
## KIAA2026 8.815147e+00 2.650521e+01 3.574045 5.008353e-04 2.482201e-03
## YBX1 -6.360199e+01 2.855851e+02 -3.573170 5.023567e-04 2.488701e-03
## HECTD3 -4.567154e+00 2.772989e+01 -3.572985 5.026787e-04 2.489257e-03
## MANBAL -4.741669e+00 1.770430e+01 -3.572825 5.029569e-04 2.489594e-03
## DNAJC17 -4.934782e+00 1.218526e+01 -3.572585 5.033749e-04 2.489599e-03
## MLF2 -4.666605e+01 1.443005e+02 -3.572583 5.033775e-04 2.489599e-03
## C12orf57 -1.823599e+01 1.789455e+01 -3.571727 5.048717e-04 2.495948e-03
## LRMDA -2.134615e+00 4.899770e+00 -3.570061 5.077918e-04 2.507564e-03
## NOC4L -1.594619e+00 2.475631e+00 -3.569870 5.081268e-04 2.507564e-03
## ZNF672 -8.251938e+00 2.761042e+01 -3.569819 5.082179e-04 2.507564e-03
## WDR62 6.155587e-01 9.978733e-01 3.569816 5.082233e-04 2.507564e-03
## ENTPD6 -1.019810e+01 2.340023e+01 -3.569784 5.082786e-04 2.507564e-03
## ARID5B 7.253538e+00 1.937040e+01 3.569378 5.089927e-04 2.510043e-03
## NLRX1 -9.322968e+00 2.722800e+01 -3.568854 5.099169e-04 2.513555e-03
## MROH6 -6.000117e+00 8.219432e+00 -3.568518 5.105100e-04 2.515433e-03
## NUGGC 2.141232e+00 3.148243e+00 3.568348 5.108110e-04 2.515872e-03
## SRGAP2 1.456537e+01 3.942572e+01 3.567903 5.115965e-04 2.518468e-03
## RANGAP1 -1.381950e+01 2.825330e+01 -3.567810 5.117628e-04 2.518468e-03
## LST1 -2.168959e+02 3.942650e+02 -3.567567 5.121926e-04 2.519537e-03
## FAM122B 4.198580e+00 2.266170e+01 3.566624 5.138652e-04 2.526717e-03
## THAP11 -5.848688e+00 2.474974e+01 -3.566486 5.141117e-04 2.526881e-03
## B4GALT7 -4.222251e+00 6.365812e+00 -3.566347 5.143579e-04 2.527044e-03
## ARHGAP15 -4.547173e+01 1.275339e+02 -3.565979 5.150128e-04 2.529214e-03
## FAM20B 3.624252e+00 2.014781e+01 3.564622 5.174355e-04 2.539507e-03
## VPS52 -3.683180e+00 2.290242e+01 -3.564514 5.176288e-04 2.539507e-03
## ANKRD17 1.228875e+01 3.976812e+01 3.564445 5.177512e-04 2.539507e-03
## XPR1 4.815018e+00 1.933676e+01 3.564166 5.182519e-04 2.540913e-03
## LUC7L -6.106642e+00 2.263940e+01 -3.563655 5.191670e-04 2.544347e-03
## ERCC4 1.357374e+00 4.003893e+00 3.562046 5.220621e-04 2.557479e-03
## ZNF621 3.279515e+00 1.099581e+01 3.561148 5.236850e-04 2.564370e-03
## PRPF4 1.911502e+00 1.785673e+01 3.560150 5.254936e-04 2.572165e-03
## RPS15A -3.503164e+02 7.551598e+02 -3.559821 5.260910e-04 2.574026e-03
## REXO4 -4.670741e+00 1.197259e+01 -3.559415 5.268286e-04 2.576572e-03
## CLK2 -3.968421e+00 3.994927e+01 -3.559187 5.272429e-04 2.577535e-03
## OPA1 7.415201e+00 3.245593e+01 3.558981 5.276185e-04 2.578309e-03
## ADAT1 5.430223e+00 2.084674e+01 3.558545 5.284135e-04 2.581130e-03
## ZMYM4 4.813958e+00 1.877902e+01 3.558300 5.288607e-04 2.582209e-03
## PPP2CB 8.664705e+00 2.876596e+01 3.558186 5.290699e-04 2.582209e-03
## FBXW11 8.599911e+00 3.109664e+01 3.557845 5.296927e-04 2.584185e-03
## SERAC1 2.294974e+00 7.581262e+00 3.557614 5.301146e-04 2.585181e-03
## SCIN 4.191804e-01 1.002622e+00 3.556686 5.318156e-04 2.592410e-03
## PAXX -1.072431e+01 1.168513e+01 -3.556190 5.327270e-04 2.595785e-03
## UNC119 -3.541109e+01 1.044217e+02 -3.555971 5.331290e-04 2.596678e-03
## HSPD1 1.413427e+01 7.123412e+01 3.555441 5.341050e-04 2.599990e-03
## GFER -4.805454e+00 8.896291e+00 -3.555294 5.343774e-04 2.599990e-03
## TRIM8 -2.130507e+01 7.694182e+01 -3.555245 5.344668e-04 2.599990e-03
## ZDHHC6 5.062188e+00 3.693531e+01 3.554979 5.349574e-04 2.601310e-03
## CLINT1 2.192350e+01 5.934045e+01 3.554212 5.363749e-04 2.606185e-03
## JADE3 4.519595e-01 9.399663e-01 3.554199 5.363994e-04 2.606185e-03
## DCAF5 1.036153e+01 5.725262e+01 3.553270 5.381207e-04 2.612833e-03
## GATA2 -2.817121e+00 4.237327e+00 -3.553203 5.382454e-04 2.612833e-03
## DTX3L 8.760819e+01 1.784870e+02 3.553104 5.384287e-04 2.612833e-03
## POLR2C -1.192894e+01 6.906363e+01 -3.551739 5.409706e-04 2.624095e-03
## TMEM107 -2.130428e+00 7.840540e+00 -3.550871 5.425918e-04 2.630883e-03
## TMED4 4.489263e+00 4.843742e+01 3.550160 5.439237e-04 2.636263e-03
## HDAC10 -6.769989e+00 1.072716e+01 -3.550023 5.441806e-04 2.636431e-03
## DIMT1 2.679773e+00 8.100835e+00 3.549639 5.449004e-04 2.638046e-03
## DBF4 2.568637e+00 6.344090e+00 3.549608 5.449589e-04 2.638046e-03
## SNX17 -3.125688e+01 1.125624e+02 -3.549049 5.460090e-04 2.641011e-03
## ZNF408 -2.970931e+00 7.434030e+00 -3.548967 5.461647e-04 2.641011e-03
## ZNF788P 2.065000e+00 3.710909e+00 3.548927 5.462394e-04 2.641011e-03
## GCC2 1.250110e+01 3.305878e+01 3.548285 5.474501e-04 2.645786e-03
## PIK3R6 -4.802513e+00 9.613134e+00 -3.547744 5.484706e-04 2.649638e-03
## SLC25A3 -4.561971e+01 1.959651e+02 -3.547547 5.488434e-04 2.650115e-03
## DNPH1 -1.741254e+00 2.217869e+00 -3.547456 5.490162e-04 2.650115e-03
## CHKB -2.210119e+01 8.134594e+01 -3.547268 5.493710e-04 2.650749e-03
## PICK1 -3.722163e+00 9.753561e+00 -3.546471 5.508806e-04 2.656952e-03
## R3HCC1 -5.622979e+00 1.552926e+01 -3.546267 5.512688e-04 2.657743e-03
## CFD -1.813149e+01 2.060355e+01 -3.545353 5.530071e-04 2.665040e-03
## TNFSF8 1.359894e+01 4.500588e+01 3.545050 5.535850e-04 2.666742e-03
## UTP3 -5.256647e+00 2.509253e+01 -3.544709 5.542347e-04 2.668788e-03
## G3BP2 1.940956e+01 8.254191e+01 3.544322 5.549727e-04 2.671257e-03
## NFKBIE -8.650968e+00 1.940920e+01 -3.543971 5.556446e-04 2.673406e-03
## TMEM203 -9.724729e+00 2.160083e+01 -3.543811 5.559514e-04 2.673797e-03
## ITGAV 2.959286e+00 9.370621e+00 3.542510 5.584464e-04 2.684708e-03
## BIN1 -1.597971e+01 2.477512e+01 -3.542087 5.592602e-04 2.687531e-03
## MAN1B1 -1.873345e+01 3.860330e+01 -3.540562 5.622023e-04 2.700575e-03
## PELP1 -6.934242e+00 1.144704e+01 -3.540194 5.629150e-04 2.702903e-03
## MRE11 4.260605e+00 1.950657e+01 3.539901 5.634822e-04 2.704532e-03
## RPL28 -2.828882e+02 3.684683e+02 -3.539766 5.637441e-04 2.704695e-03
## TBK1 2.162363e+01 6.103732e+01 3.539035 5.651627e-04 2.709388e-03
## COQ4 -4.950971e+00 7.047491e+00 -3.539027 5.651793e-04 2.709388e-03
## ATP13A2 -4.473081e+00 9.373363e+00 -3.537649 5.678642e-04 2.721160e-03
## DRG2 -6.113830e+00 1.504177e+01 -3.537182 5.687762e-04 2.724295e-03
## PANK3 1.167014e+01 3.892376e+01 3.537079 5.689781e-04 2.724295e-03
## ARL3 -6.514303e+00 1.995138e+01 -3.536909 5.693114e-04 2.724791e-03
## EIF4G3 2.048267e+01 5.492458e+01 3.536591 5.699325e-04 2.726664e-03
## HINT3 9.153431e+00 2.993292e+01 3.536081 5.709330e-04 2.730349e-03
## FASTKD5 7.116465e+00 2.528509e+01 3.535577 5.719229e-04 2.733981e-03
## GIT1 -9.056201e+00 2.683896e+01 -3.535202 5.726612e-04 2.736407e-03
## CENPBD1 -2.183154e+00 9.399546e+00 -3.534881 5.732927e-04 2.738321e-03
## NARF -6.416227e+01 1.496072e+02 -3.534321 5.743978e-04 2.742495e-03
## MPP5 1.323941e+00 4.875689e+00 3.533724 5.755769e-04 2.747019e-03
## ZDHHC21 2.106380e+00 5.760158e+00 3.533545 5.759314e-04 2.747605e-03
## TICAM1 -2.323063e+00 6.145860e+00 -3.532652 5.777008e-04 2.754938e-03
## ABCB8 -3.218905e+00 6.121221e+00 -3.532116 5.787659e-04 2.758378e-03
## NAA60 -1.044683e+01 3.321897e+01 -3.532055 5.788872e-04 2.758378e-03
## DDA1 -4.852672e+00 2.078446e+01 -3.531626 5.797395e-04 2.761329e-03
## SMG7 2.309172e+01 9.100097e+01 3.530844 5.813001e-04 2.767651e-03
## PLXND1 -1.019314e+01 2.630384e+01 -3.530339 5.823086e-04 2.771340e-03
## RANGRF -7.071585e+00 1.559046e+01 -3.529758 5.834717e-04 2.775762e-03
## C5 1.589996e+00 4.165035e+00 3.528320 5.863589e-04 2.787774e-03
## HAPLN3 -4.959582e+00 5.257257e+00 -3.528266 5.864668e-04 2.787774e-03
## GBF1 5.526192e+00 3.235765e+01 3.527406 5.882000e-04 2.794892e-03
## ZNF616 1.383325e+00 5.664482e+00 3.527205 5.886069e-04 2.795706e-03
## HAGH -1.023599e+01 1.970788e+01 -3.526903 5.892174e-04 2.797485e-03
## MAN2B2 -5.988086e+00 3.755041e+01 -3.526558 5.899149e-04 2.799676e-03
## PCBD1 -1.339774e+00 4.670637e+00 -3.526065 5.909126e-04 2.802896e-03
## PEX10 -7.136907e-01 2.277136e+00 -3.525990 5.910661e-04 2.802896e-03
## PRPS2 3.924880e+00 1.599031e+01 3.525830 5.913895e-04 2.803309e-03
## CDK10 -1.013080e+01 1.716372e+01 -3.525680 5.916943e-04 2.803633e-03
## BEND7 4.632401e+00 7.674486e+00 3.524633 5.938229e-04 2.812596e-03
## SWT1 3.646529e+00 1.053536e+01 3.523150 5.968509e-04 2.825809e-03
## FBXO31 -3.687171e+00 8.484113e+00 -3.522906 5.973508e-04 2.827047e-03
## SLC6A16 4.758346e-01 1.320153e+00 3.522565 5.980485e-04 2.828884e-03
## RPS6KC1 4.457563e+00 1.663964e+01 3.522484 5.982159e-04 2.828884e-03
## VIM -5.014333e+02 1.523395e+03 -3.521812 5.995957e-04 2.833800e-03
## DYRK1B -1.991538e+00 6.251720e+00 -3.521745 5.997335e-04 2.833800e-03
## RPS6KB2 -1.961186e+01 4.355116e+01 -3.520156 6.030067e-04 2.848132e-03
## ANKRD54 -2.191399e+00 8.073713e+00 -3.519901 6.035338e-04 2.849487e-03
## ZNF547 -5.500084e-01 1.212514e+00 -3.519604 6.041495e-04 2.851259e-03
## MIGA2 -8.388667e+00 2.307077e+01 -3.519312 6.047535e-04 2.852974e-03
## POLR2G -1.237773e+01 4.910076e+01 -3.518309 6.068347e-04 2.861654e-03
## YTHDF2 -5.450516e+00 5.323008e+01 -3.517973 6.075334e-04 2.863810e-03
## GLS 1.404687e+01 6.555293e+01 3.517101 6.093516e-04 2.871239e-03
## MREG 1.135808e+00 3.418508e+00 3.516760 6.100633e-04 2.873451e-03
## ARRB2 -3.951387e+02 1.097418e+03 -3.516094 6.114560e-04 2.878868e-03
## ZFP91 1.637462e+01 5.371768e+01 3.515211 6.133070e-04 2.886437e-03
## SH3GLB2 -1.246789e+01 2.797316e+01 -3.514982 6.137886e-04 2.887557e-03
## MYBL2 1.377393e+01 1.552904e+01 3.514595 6.146021e-04 2.890238e-03
## RGS6 1.722055e+00 3.861306e+00 3.514421 6.149684e-04 2.890814e-03
## EFCAB14 1.842860e+01 9.661470e+01 3.513979 6.158990e-04 2.894042e-03
## RAPGEF6 1.371101e+01 3.986585e+01 3.513785 6.163088e-04 2.894821e-03
## GCHFR -4.336957e+00 5.653780e+00 -3.513597 6.167055e-04 2.895537e-03
## RPS15 -1.507536e+02 1.712884e+02 -3.513151 6.176469e-04 2.898810e-03
## WDR47 6.607160e+00 1.887631e+01 3.512926 6.181239e-04 2.899901e-03
## DUSP18 3.491280e+00 1.203169e+01 3.512620 6.187695e-04 2.901782e-03
## OIP5 7.785611e-01 1.118985e+00 3.512285 6.194809e-04 2.903970e-03
## UQCC3 -1.837242e+00 2.492238e+00 -3.511954 6.201814e-04 2.906105e-03
## NKTR 2.057058e+01 6.373023e+01 3.511511 6.211218e-04 2.909362e-03
## LILRA3 -5.717718e+01 8.682558e+01 -3.510564 6.231375e-04 2.917651e-03
## CD72 -4.993592e+00 8.457486e+00 -3.510375 6.235403e-04 2.917757e-03
## SBNO1 1.626596e+01 5.723994e+01 3.510323 6.236520e-04 2.917757e-03
## MVB12A -4.815371e+00 1.016360e+01 -3.509855 6.246502e-04 2.920611e-03
## MYO15B -1.676946e+01 5.486274e+01 -3.509806 6.247546e-04 2.920611e-03
## ABHD18 3.603137e+00 1.646802e+01 3.509597 6.252011e-04 2.921547e-03
## MAP3K1 5.525091e+01 1.591445e+02 3.509372 6.256824e-04 2.922644e-03
## MEIS1 2.359326e+00 5.378549e+00 3.509036 6.264013e-04 2.924850e-03
## HP1BP3 2.267434e+01 9.159015e+01 3.508193 6.282103e-04 2.932143e-03
## BLZF1 7.763227e+00 2.160260e+01 3.507643 6.293931e-04 2.936508e-03
## DHRS3 -4.260709e+00 6.324083e+00 -3.506930 6.309277e-04 2.942510e-03
## SRRT -1.261458e+01 4.574573e+01 -3.506640 6.315543e-04 2.944274e-03
## EHD3 7.987604e+00 2.032934e+01 3.505993 6.329525e-04 2.949633e-03
## MRPS34 -9.734514e+00 1.684001e+01 -3.505652 6.336901e-04 2.951911e-03
## TINF2 -2.296334e+01 1.076528e+02 -3.504848 6.354326e-04 2.958530e-03
## LAMC1 5.382122e+00 7.348252e+00 3.504766 6.356100e-04 2.958530e-03
## CALHM5 5.580827e-01 1.104768e+00 3.504134 6.369837e-04 2.963663e-03
## PYM1 -7.105848e+00 1.947500e+01 -3.504029 6.372126e-04 2.963663e-03
## LETM2 6.686424e+00 1.092490e+01 3.503822 6.376634e-04 2.964597e-03
## PDZD4 -8.309500e+00 1.144778e+01 -3.503621 6.381024e-04 2.965476e-03
## ZCWPW1 -2.334547e+00 6.955573e+00 -3.503130 6.391728e-04 2.969287e-03
## MVD -4.883584e+00 6.312871e+00 -3.502801 6.398913e-04 2.971461e-03
## MIEF1 4.071264e+00 2.204912e+01 3.502683 6.401482e-04 2.971490e-03
## PDE6G -9.496942e-01 1.858678e+00 -3.501806 6.420681e-04 2.979236e-03
## KAT6B 3.593160e+00 9.824632e+00 3.501051 6.437252e-04 2.985757e-03
## ATG4D -6.828278e+00 1.474693e+01 -3.500821 6.442318e-04 2.986939e-03
## STK40 -5.279312e+01 1.975066e+02 -3.500595 6.447285e-04 2.988074e-03
## IGSF8 -3.984015e+00 7.130157e+00 -3.500141 6.457292e-04 2.991542e-03
## TTC37 8.400857e+00 2.561168e+01 3.499394 6.473765e-04 2.998003e-03
## SELENON -8.816794e+00 2.696512e+01 -3.498352 6.496832e-04 3.007511e-03
## CEP83 7.791999e-01 2.951110e+00 3.497868 6.507566e-04 3.011305e-03
## MTCP1 3.572455e-01 1.041086e+00 3.497553 6.514560e-04 3.013365e-03
## SRI -1.799917e+01 5.618161e+01 -3.497283 6.520565e-04 3.014654e-03
## KHDC4 4.902142e+00 2.524410e+01 3.497199 6.522431e-04 3.014654e-03
## KMT2E 3.536666e+01 1.066485e+02 3.496856 6.530070e-04 3.017009e-03
## BCL7B -1.436439e+01 4.130552e+01 -3.496501 6.537968e-04 3.019482e-03
## IGKC 1.623365e+03 1.619772e+03 3.495529 6.559694e-04 3.028337e-03
## HSPB1 -1.131159e+01 6.645424e+00 -3.494788 6.576286e-04 3.033313e-03
## DMXL2 5.236157e+01 1.334923e+02 3.494635 6.579713e-04 3.033313e-03
## OSGIN2 3.401857e+01 7.306707e+01 3.494597 6.580570e-04 3.033313e-03
## FAM174C -5.855967e+00 5.313790e+00 -3.494591 6.580703e-04 3.033313e-03
## TOP1 2.179492e+01 7.723353e+01 3.494229 6.588827e-04 3.035878e-03
## HEBP1 -5.114030e+00 1.833452e+01 -3.493976 6.594503e-04 3.037313e-03
## PTOV1 -2.011846e+01 3.583851e+01 -3.493621 6.602495e-04 3.039813e-03
## ASH1L 1.564714e+01 4.233724e+01 3.492005 6.638952e-04 3.055412e-03
## PALB2 1.469322e+00 4.903372e+00 3.491261 6.655799e-04 3.061977e-03
## TOP1MT -3.269098e+00 5.481799e+00 -3.491098 6.659501e-04 3.062493e-03
## CDK19 1.811408e+01 5.172317e+01 3.490877 6.664529e-04 3.063617e-03
## RBL1 1.875984e+00 7.491732e+00 3.490588 6.671094e-04 3.065447e-03
## PSMD9 -1.258903e+01 4.157325e+01 -3.490463 6.673921e-04 3.065558e-03
## SIRT7 -1.615292e+01 4.780414e+01 -3.490026 6.683855e-04 3.068932e-03
## PIGW 6.733606e-01 2.418164e+00 3.489640 6.692651e-04 3.071782e-03
## MSH2 2.916098e+00 9.829185e+00 3.489454 6.696898e-04 3.072542e-03
## SLA2 1.974013e+01 4.602632e+01 3.489028 6.706622e-04 3.075814e-03
## PRKD3 6.249147e+00 2.675089e+01 3.488840 6.710924e-04 3.076597e-03
## APBB1 -6.297193e+00 1.029755e+01 -3.488406 6.720847e-04 3.079955e-03
## LSR -1.698516e+00 2.717078e+00 -3.486957 6.754086e-04 3.093992e-03
## VCL 4.040129e+01 1.254732e+02 3.486314 6.768873e-04 3.099569e-03
## NDUFA11 -1.848760e+01 2.527139e+01 -3.486074 6.774409e-04 3.100907e-03
## CHERP -2.791133e+00 1.143976e+01 -3.485934 6.777645e-04 3.101191e-03
## ABCE1 7.812833e+00 2.419615e+01 3.485691 6.783255e-04 3.101993e-03
## LCLAT1 1.989279e+00 7.711663e+00 3.485631 6.784629e-04 3.101993e-03
## UBAP2L 1.186331e+01 5.572715e+01 3.484431 6.812385e-04 3.113483e-03
## STRBP 3.168963e+00 8.940492e+00 3.483959 6.823333e-04 3.117285e-03
## METTL4 4.363258e+00 1.514392e+01 3.483660 6.830293e-04 3.119264e-03
## MDM4 1.466915e+01 5.477261e+01 3.483424 6.835765e-04 3.120561e-03
## RPS19 -3.977664e+02 4.883219e+02 -3.482435 6.858804e-04 3.129873e-03
## PSMB1 -3.412560e+01 1.283435e+02 -3.481999 6.868977e-04 3.133310e-03
## ZNF841 1.835299e+00 6.951769e+00 3.481820 6.873164e-04 3.134015e-03
## KIAA1841 1.717088e+00 5.410219e+00 3.481694 6.876095e-04 3.134146e-03
## PAWR 7.301421e-01 2.197997e+00 3.481005 6.892243e-04 3.140109e-03
## MRPL41 -3.084255e+00 3.160560e+00 -3.480909 6.894473e-04 3.140109e-03
## AP2S1 -2.192818e+01 4.404107e+01 -3.480709 6.899182e-04 3.141048e-03
## SREBF2 9.415553e+00 4.336545e+01 3.480541 6.903118e-04 3.141634e-03
## CSF1 7.136937e+00 1.604447e+01 3.480011 6.915563e-04 3.145636e-03
## HERC1 1.968830e+01 7.746065e+01 3.479941 6.917216e-04 3.145636e-03
## LIN7C 2.536695e+00 1.433878e+01 3.479179 6.935151e-04 3.152583e-03
## UBE2E1 7.862319e+00 4.265987e+01 3.478417 6.953128e-04 3.157713e-03
## CFAP36 -2.532072e+00 8.554080e+00 -3.478372 6.954202e-04 3.157713e-03
## RB1 1.512702e+01 4.613643e+01 3.478362 6.954424e-04 3.157713e-03
## ZBTB21 2.382542e+00 8.360560e+00 3.478003 6.962915e-04 3.160359e-03
## WAC 7.368941e+01 2.422765e+02 3.477619 6.972003e-04 3.163273e-03
## PARP2 1.635279e+00 5.247251e+00 3.476746 6.992721e-04 3.171460e-03
## ATP2A3 -7.709331e+01 2.092872e+02 -3.476597 6.996248e-04 3.171846e-03
## KRR1 4.986640e+00 2.028162e+01 3.475757 7.016246e-04 3.179697e-03
## POLR2L -1.078814e+01 1.206856e+01 -3.475096 7.032018e-04 3.185628e-03
## TMEM192 1.547413e+00 1.293951e+01 3.474675 7.042068e-04 3.188962e-03
## TXNDC16 1.481996e+00 4.983668e+00 3.474277 7.051600e-04 3.192060e-03
## SERPINF2 -7.330217e-01 1.182672e+00 -3.473718 7.064984e-04 3.196898e-03
## STX10 -5.189749e+01 1.517715e+02 -3.473395 7.072755e-04 3.199194e-03
## MRPL52 -7.159027e+00 1.131877e+01 -3.472736 7.088586e-04 3.205133e-03
## LONRF3 2.655041e+00 4.007938e+00 3.472566 7.092682e-04 3.205644e-03
## FBXW4 -8.332737e+00 2.167381e+01 -3.472369 7.097413e-04 3.205644e-03
## ZNF853 -1.282729e+00 2.134514e+00 -3.472352 7.097826e-04 3.205644e-03
## APEX2 -3.678963e+00 1.617381e+01 -3.472212 7.101194e-04 3.205945e-03
## PAPOLG 1.069385e+01 3.390322e+01 3.471335 7.122365e-04 3.214279e-03
## SDR39U1 -5.960192e+00 1.199168e+01 -3.470923 7.132345e-04 3.217558e-03
## PPM1J -5.218407e-01 8.856314e-01 -3.469802 7.159513e-04 3.228586e-03
## AQR 7.330679e+00 3.045538e+01 3.469194 7.174287e-04 3.234019e-03
## EEF1A1 -2.146417e+03 8.071037e+03 -3.468840 7.182910e-04 3.236676e-03
## WASHC2C 2.533847e+01 9.573364e+01 3.468339 7.195120e-04 3.240576e-03
## TKFC -4.226534e+00 9.708086e+00 -3.468261 7.197031e-04 3.240576e-03
## PARP9 1.867855e+02 3.519181e+02 3.467971 7.204102e-04 3.242529e-03
## FAM13B 1.250955e+01 4.654983e+01 3.467524 7.215030e-04 3.246216e-03
## NECTIN1 -3.853323e+00 9.194156e+00 -3.467409 7.217841e-04 3.246250e-03
## RPP25L -5.585537e+00 1.265085e+01 -3.467105 7.225293e-04 3.247404e-03
## SLC35E1 4.269212e+00 2.980168e+01 3.467081 7.225884e-04 3.247404e-03
## AMMECR1L 3.123428e+00 1.874704e+01 3.466733 7.234410e-04 3.250004e-03
## VDAC3 9.838361e+00 8.245638e+01 3.465569 7.263002e-04 3.261613e-03
## RPS6KA1 -1.470333e+02 4.504943e+02 -3.464837 7.281054e-04 3.268192e-03
## ZNF623 2.262169e+00 7.597434e+00 3.464752 7.283163e-04 3.268192e-03
## GIPC1 -4.047854e+00 5.809523e+00 -3.463877 7.304787e-04 3.276655e-03
## CERS5 -1.084424e+01 4.569431e+01 -3.463458 7.315153e-04 3.280065e-03
## CBFA2T2 2.474023e+00 1.133471e+01 3.463055 7.325156e-04 3.283309e-03
## BAG5 5.636183e+00 3.207113e+01 3.462424 7.340823e-04 3.288781e-03
## LMLN 6.059906e-01 1.771806e+00 3.462340 7.342911e-04 3.288781e-03
## CD2AP 7.144255e+00 1.629266e+01 3.461749 7.357635e-04 3.293514e-03
## PDZK1IP1 -7.547017e+00 9.907581e+00 -3.461692 7.359032e-04 3.293514e-03
## TMSB10 -7.837947e+02 1.540732e+03 -3.461448 7.365138e-04 3.295003e-03
## UNK -1.498964e+00 5.764356e+00 -3.460507 7.388621e-04 3.301926e-03
## TSC22D1 1.812585e+01 5.140493e+01 3.460489 7.389088e-04 3.301926e-03
## FAM241A 1.897317e+01 5.828870e+01 3.460351 7.392547e-04 3.301926e-03
## ADGRG3 -2.768907e+02 4.771069e+02 -3.460322 7.393266e-04 3.301926e-03
## SLAIN1 1.641960e+00 5.090475e+00 3.460271 7.394532e-04 3.301926e-03
## C5orf22 2.732547e+00 1.313112e+01 3.457582 7.462150e-04 3.330254e-03
## ZNF254 -9.201609e+00 1.428192e+01 -3.457356 7.467862e-04 3.330254e-03
## PTPRS -1.043870e+00 1.541531e+00 -3.457349 7.468024e-04 3.330254e-03
## MRFAP1 -3.476572e+01 1.634503e+02 -3.457257 7.470363e-04 3.330254e-03
## SEC13 -1.265889e+01 5.413360e+01 -3.457092 7.474534e-04 3.330254e-03
## SCAPER 2.387169e+00 8.222480e+00 3.457081 7.474819e-04 3.330254e-03
## SPCS2 1.254638e+01 6.406968e+01 3.456741 7.483419e-04 3.332833e-03
## ARL5B 7.450499e+00 1.800796e+01 3.455762 7.508229e-04 3.342627e-03
## QSOX1 -6.412736e+01 1.285050e+02 -3.455211 7.522240e-04 3.347608e-03
## FRK 2.304478e+00 5.208222e+00 3.454200 7.548011e-04 3.357817e-03
## ZSWIM9 -1.277460e+00 4.628154e+00 -3.452792 7.584031e-04 3.371518e-03
## VPS9D1 -3.321801e+01 5.384773e+01 -3.452774 7.584495e-04 3.371518e-03
## SELENOW -2.564789e+01 4.948854e+01 -3.451576 7.615270e-04 3.383930e-03
## CCNT1 1.029999e+01 3.231011e+01 3.450804 7.635146e-04 3.391492e-03
## DDX39B -3.041598e+01 1.821055e+02 -3.450287 7.648511e-04 3.395611e-03
## TMEM128 -1.815382e+00 9.579223e+00 -3.450223 7.650146e-04 3.395611e-03
## ZC3H12C 6.122879e-01 1.611875e+00 3.449759 7.662160e-04 3.399671e-03
## NDRG3 7.779880e+00 4.080456e+01 3.449010 7.681563e-04 3.406518e-03
## SEMA6B -2.833499e+00 1.846020e+00 -3.448942 7.683336e-04 3.406518e-03
## CSF3R -1.407459e+03 3.345071e+03 -3.448611 7.691937e-04 3.407949e-03
## RPL37A -3.250429e+02 5.893191e+02 -3.448596 7.692309e-04 3.407949e-03
## FADS1 3.834707e+00 1.026303e+01 3.447658 7.716732e-04 3.416869e-03
## GCNT1 6.277887e+00 1.954592e+01 3.447601 7.718206e-04 3.416869e-03
## DCK 8.747065e+00 4.034795e+01 3.446864 7.737449e-04 3.424110e-03
## ATP11C 4.254262e+00 1.601883e+01 3.445968 7.760891e-04 3.433203e-03
## SEL1L 3.562137e+01 1.146033e+02 3.445221 7.780493e-04 3.440507e-03
## ZNF440 1.561995e+00 6.699211e+00 3.445117 7.783205e-04 3.440507e-03
## DDX54 -5.058316e+00 1.102870e+01 -3.444315 7.804316e-04 3.448554e-03
## ZFYVE19 -5.916480e+00 1.608515e+01 -3.443945 7.814063e-04 3.451575e-03
## WDR12 1.631504e+00 9.028192e+00 3.439658 7.927866e-04 3.500540e-03
## MIA3 1.905444e+01 6.565482e+01 3.439247 7.938849e-04 3.504085e-03
## OXCT1 4.217908e+00 1.213257e+01 3.438160 7.968013e-04 3.515649e-03
## WDR83OS -2.874767e+01 7.107354e+01 -3.437039 7.998150e-04 3.527633e-03
## RASGRP4 -8.125191e+01 2.604875e+02 -3.436611 8.009700e-04 3.531414e-03
## SLC39A9 7.410154e+00 3.976978e+01 3.436299 8.018140e-04 3.533822e-03
## DLAT 2.220246e+00 9.339011e+00 3.434376 8.070232e-04 3.555459e-03
## TCF4 4.473006e+00 9.909642e+00 3.433793 8.086105e-04 3.561129e-03
## SLAIN2 1.024862e+01 4.312159e+01 3.433320 8.098991e-04 3.565480e-03
## RASA1 7.027914e+00 2.479803e+01 3.433191 8.102500e-04 3.565701e-03
## NETO2 2.990336e+00 9.078100e+00 3.432837 8.112165e-04 3.567542e-03
## SAMD1 -4.907639e+00 1.268671e+01 -3.432817 8.112699e-04 3.567542e-03
## ANXA2R -1.075896e+01 1.930509e+01 -3.432585 8.119048e-04 3.569011e-03
## FIBP -1.239942e+01 3.238332e+01 -3.431833 8.139636e-04 3.576735e-03
## PARP14 1.640744e+02 2.498047e+02 3.431444 8.150291e-04 3.580091e-03
## IFT43 -1.582846e+00 3.631648e+00 -3.431284 8.154674e-04 3.580456e-03
## E2F1 8.159875e+00 1.297867e+01 3.431191 8.157240e-04 3.580456e-03
## DNAL1 1.120255e+00 6.766036e+00 3.431084 8.160179e-04 3.580456e-03
## TRAPPC5 -7.631783e+00 1.130855e+01 -3.430886 8.165622e-04 3.581519e-03
## PMVK -9.526728e+00 1.652029e+01 -3.429379 8.207134e-04 3.598396e-03
## LSM4 -8.280997e+00 2.153803e+01 -3.428732 8.225015e-04 3.604903e-03
## E2F5 1.419499e+00 2.769126e+00 3.427709 8.253366e-04 3.615993e-03
## RPL35A -1.511237e+02 3.597403e+02 -3.427361 8.263017e-04 3.618812e-03
## UQCR11 -2.615265e+01 5.132063e+01 -3.427257 8.265904e-04 3.618812e-03
## TES 2.629559e+01 8.796754e+01 3.426978 8.273676e-04 3.620878e-03
## NRF1 -3.376368e+00 2.468651e+01 -3.423929 8.358920e-04 3.656835e-03
## MARCHF2 -3.346824e+01 7.536482e+01 -3.423705 8.365203e-04 3.658234e-03
## ATM 3.905442e+01 1.240426e+02 3.423427 8.373031e-04 3.660308e-03
## C9orf139 -4.765162e+00 1.419504e+01 -3.423295 8.376744e-04 3.660582e-03
## MAP2K3 -7.178343e+01 1.944811e+02 -3.422666 8.394456e-04 3.666971e-03
## PLIN5 -2.308587e+01 3.173251e+01 -3.421890 8.416363e-04 3.675187e-03
## ARHGAP6 2.222999e+00 5.115979e+00 3.421684 8.422209e-04 3.676386e-03
## ZNF263 -4.664574e+00 2.348134e+01 -3.420334 8.460489e-04 3.691737e-03
## WLS 5.092050e+01 8.562399e+01 3.419503 8.484119e-04 3.699376e-03
## LEPROT 2.579875e+01 8.947314e+01 3.419499 8.484235e-04 3.699376e-03
## ELK4 8.433220e+00 2.604580e+01 3.419200 8.492761e-04 3.700496e-03
## RNA28SN3 -1.359905e+03 2.155951e+03 -3.419190 8.493045e-04 3.700496e-03
## ABTB1 -2.809775e+02 5.332241e+02 -3.418607 8.509673e-04 3.706380e-03
## SLC35F5 7.987436e+00 2.968134e+01 3.417463 8.542427e-04 3.718976e-03
## ANXA4 7.392661e+00 3.157039e+01 3.417378 8.544865e-04 3.718976e-03
## AURKAIP1 -1.616024e+01 2.883187e+01 -3.416240 8.577532e-04 3.731207e-03
## SLC2A8 -1.053145e+00 1.523039e+00 -3.416180 8.579260e-04 3.731207e-03
## COMMD6 -2.617693e+01 6.616956e+01 -3.415448 8.600374e-04 3.739019e-03
## NUDT17 -6.534055e-01 2.127483e+00 -3.414880 8.616765e-04 3.742733e-03
## SLC30A7 5.479994e+00 2.538686e+01 3.414840 8.617929e-04 3.742733e-03
## PDIK1L 1.619494e+00 6.609427e+00 3.414824 8.618384e-04 3.742733e-03
## TXNL4A -9.279821e+00 2.897186e+01 -3.413587 8.654224e-04 3.756922e-03
## SMG6 -2.920577e+00 1.636467e+01 -3.413134 8.667360e-04 3.761248e-03
## TRAM1 2.570387e+01 1.306377e+02 3.412235 8.693547e-04 3.771231e-03
## YME1L1 2.499572e+01 1.133109e+02 3.411617 8.711565e-04 3.777666e-03
## DAPK3 -4.876477e+00 1.366495e+01 -3.411166 8.724744e-04 3.781099e-03
## IL4R -1.642894e+02 4.042782e+02 -3.411128 8.725859e-04 3.781099e-03
## ADCK1 -1.640992e+00 3.334364e+00 -3.410344 8.748823e-04 3.788791e-03
## EPRS1 1.136308e+01 4.890320e+01 3.410304 8.750000e-04 3.788791e-03
## RECQL 9.919206e+00 4.278681e+01 3.409530 8.772725e-04 3.797245e-03
## WIPF2 1.855539e+01 6.652457e+01 3.408771 8.795056e-04 3.805522e-03
## ARL16 -3.717920e+00 1.312072e+01 -3.408332 8.807991e-04 3.809729e-03
## OSBP 5.928371e+00 3.421764e+01 3.407517 8.832063e-04 3.817411e-03
## TIMP1 -1.493890e+02 2.282849e+02 -3.407450 8.834056e-04 3.817411e-03
## CPNE1 -2.930074e+01 1.233677e+02 -3.407404 8.835408e-04 3.817411e-03
## OTUB1 -2.173933e+01 7.650581e+01 -3.407234 8.840453e-04 3.818200e-03
## SNAPIN -5.827542e+00 2.264554e+01 -3.407093 8.844612e-04 3.818606e-03
## MEA1 -1.595369e+01 5.827329e+01 -3.406699 8.856310e-04 3.819549e-03
## DNAJC7 -1.271249e+01 7.539283e+01 -3.406697 8.856346e-04 3.819549e-03
## ZC3H7A 1.818019e+01 5.200075e+01 3.406688 8.856631e-04 3.819549e-03
## WDFY1 1.693678e+01 4.960455e+01 3.406565 8.860258e-04 3.819549e-03
## TXNDC11 1.661719e+01 4.448300e+01 3.406418 8.864637e-04 3.819549e-03
## TRAPPC9 -3.642503e+00 1.611589e+01 -3.406368 8.866121e-04 3.819549e-03
## SYN2 -2.455863e+00 3.475432e+00 -3.406218 8.870560e-04 3.820074e-03
## SMN1 2.966636e+00 1.036015e+01 3.405870 8.880912e-04 3.823144e-03
## EPC1 1.291617e+01 5.822345e+01 3.405668 8.886913e-04 3.824339e-03
## ZKSCAN7 2.887575e+00 5.455537e+00 3.405397 8.894994e-04 3.826428e-03
## DMXL1 7.469216e+00 2.465946e+01 3.404628 8.917907e-04 3.834894e-03
## REV1 3.960203e+00 1.620872e+01 3.404139 8.932532e-04 3.838435e-03
## TXN2 -2.113419e+01 5.223611e+01 -3.404136 8.932615e-04 3.838435e-03
## ABL2 5.444234e+00 1.639332e+01 3.403971 8.937538e-04 3.839160e-03
## RBM43 4.420429e+00 9.406702e+00 3.403836 8.941587e-04 3.839457e-03
## HYAL2 -3.748911e+00 9.461095e+00 -3.403732 8.944706e-04 3.839457e-03
## DOP1B 5.338582e+00 1.931065e+01 3.402545 8.980286e-04 3.853335e-03
## HSPA4 5.998304e+00 5.706318e+01 3.402027 8.995881e-04 3.858631e-03
## BIRC5 5.229751e+00 6.315856e+00 3.401662 9.006862e-04 3.861945e-03
## MRAS -1.918031e+00 3.335592e+00 -3.401257 9.019079e-04 3.865785e-03
## VPS13C 2.552292e+01 6.096054e+01 3.401141 9.022576e-04 3.865887e-03
## SWI5 -3.231394e+00 8.839777e+00 -3.400977 9.027537e-04 3.866616e-03
## ANKRD36B 1.360193e+00 3.478468e+00 3.400452 9.043379e-04 3.872003e-03
## SETD5 1.637514e+01 5.800582e+01 3.400021 9.056444e-04 3.876197e-03
## KIZ 2.368759e+00 1.313133e+01 3.399040 9.086198e-04 3.887529e-03
## HACD3 2.654155e+00 1.073915e+01 3.397413 9.135732e-04 3.907313e-03
## TFAM 5.049202e+00 2.412904e+01 3.397282 9.139752e-04 3.907623e-03
## DDHD1 5.051572e+00 1.583248e+01 3.396496 9.163789e-04 3.916488e-03
## CAPN1 -2.672726e+01 1.002344e+02 -3.396285 9.170258e-04 3.917841e-03
## CISD3 -6.272017e+00 1.071860e+01 -3.396053 9.177346e-04 3.919457e-03
## GPATCH8 8.526511e+00 2.878337e+01 3.395212 9.203174e-04 3.929073e-03
## OTUD3 1.410794e+00 4.521405e+00 3.394525 9.224309e-04 3.936679e-03
## USP1 1.067851e+01 5.052917e+01 3.394081 9.238024e-04 3.941114e-03
## ZNF335 -5.994435e+00 2.504953e+01 -3.392565 9.284905e-04 3.959690e-03
## NEK9 1.603720e+01 7.601523e+01 3.392423 9.289299e-04 3.960140e-03
## IMPDH2 -1.387424e+01 3.910486e+01 -3.391550 9.316428e-04 3.970278e-03
## UBFD1 2.978643e+00 1.061324e+01 3.390798 9.339839e-04 3.978825e-03
## FIP1L1 3.578766e+00 2.867529e+01 3.390455 9.350529e-04 3.981949e-03
## PCNX4 7.661278e+00 2.670849e+01 3.390338 9.354176e-04 3.982072e-03
## SOD1 -2.078116e+01 5.595933e+01 -3.389849 9.369442e-04 3.987140e-03
## ZNF22 4.173871e+00 1.954409e+01 3.389564 9.378361e-04 3.989504e-03
## RING1 -6.301430e+00 2.217091e+01 -3.389125 9.392121e-04 3.993924e-03
## KMT2C 3.213807e+01 8.591296e+01 3.388716 9.404953e-04 3.997948e-03
## CST3 -1.891180e+02 2.747407e+02 -3.387756 9.435094e-04 4.009323e-03
## LRFN4 -6.803037e-01 9.580936e-01 -3.387503 9.443078e-04 4.010506e-03
## CHAMP1 2.076261e+00 7.345854e+00 3.387381 9.446918e-04 4.010506e-03
## CXXC1 -7.706853e+00 2.787513e+01 -3.387346 9.448023e-04 4.010506e-03
## RBM4 -1.728249e+01 9.074107e+01 -3.386074 9.488177e-04 4.026110e-03
## COA7 1.086880e+00 5.340126e+00 3.385818 9.496295e-04 4.028114e-03
## LPIN2 5.170992e+01 1.283581e+02 3.385416 9.509032e-04 4.032074e-03
## RAP1GDS1 3.469906e+00 2.541334e+01 3.385119 9.518442e-04 4.034622e-03
## STAT1 2.263026e+02 4.288975e+02 3.384750 9.530146e-04 4.038140e-03
## JMJD4 -4.290188e+00 6.850376e+00 -3.383498 9.570020e-04 4.053587e-03
## PCNP 1.636270e+01 8.967242e+01 3.383134 9.581608e-04 4.056985e-03
## CCNF 1.455155e+00 2.866262e+00 3.383032 9.584883e-04 4.056985e-03
## C16orf74 -2.009627e+00 2.209318e+00 -3.382616 9.598161e-04 4.061155e-03
## TRAPPC6A -5.991024e+00 6.693045e+00 -3.382457 9.603261e-04 4.061864e-03
## SERGEF -3.591803e+00 8.533401e+00 -3.382307 9.608057e-04 4.062444e-03
## CSPP1 1.110452e+00 4.377968e+00 3.381486 9.634378e-04 4.072121e-03
## IL11RA -7.007228e+00 9.889316e+00 -3.381313 9.639922e-04 4.073013e-03
## LRRC46 -3.942653e-01 8.210395e-01 -3.381079 9.647436e-04 4.074736e-03
## MIB1 1.080610e+01 3.257249e+01 3.380844 9.655002e-04 4.076480e-03
## IPPK 1.373001e+00 6.941924e+00 3.380409 9.669009e-04 4.080941e-03
## HNRNPR 1.332925e+01 7.475318e+01 3.380136 9.677785e-04 4.083192e-03
## LARP7 9.214612e+00 4.758516e+01 3.379146 9.709752e-04 4.095223e-03
## PRCC -9.602216e+00 3.817117e+01 -3.377946 9.748634e-04 4.110160e-03
## PDIA5 2.347848e+00 5.246741e+00 3.376604 9.792260e-04 4.127086e-03
## VPS18 -1.393697e+01 3.883587e+01 -3.376050 9.810316e-04 4.133227e-03
## ICE1 6.132259e+00 2.366489e+01 3.375072 9.842301e-04 4.145231e-03
## ANO9 -8.881305e+00 9.193611e+00 -3.374726 9.853637e-04 4.146817e-03
## TAF8 8.523749e+00 3.178794e+01 3.374722 9.853753e-04 4.146817e-03
## HSPBP1 -3.634793e+00 4.388639e+00 -3.374637 9.856558e-04 4.146817e-03
## PHACTR2 8.699426e+00 1.961838e+01 3.373492 9.894166e-04 4.161163e-03
## DCAF7 1.111692e+01 5.670916e+01 3.372654 9.921757e-04 4.170038e-03
## SNRNP35 -8.378568e+00 2.813585e+01 -3.372638 9.922299e-04 4.170038e-03
## TSR3 -6.951598e+00 1.278686e+01 -3.372188 9.937158e-04 4.174803e-03
## MTRNR2L6 -3.148477e+01 4.498673e+01 -3.370783 9.983688e-04 4.192866e-03
## TRIM22 3.946764e+02 6.802649e+02 3.370219 1.000242e-03 4.196960e-03
## E2F4 -1.446481e+01 7.390580e+01 -3.370174 1.000389e-03 4.196960e-03
## TBC1D22B 3.190438e+00 1.272462e+01 3.370169 1.000405e-03 4.196960e-03
## RNPS1 -1.462666e+01 4.826228e+01 -3.369889 1.001339e-03 4.199393e-03
## MPST -6.741378e+00 1.031564e+01 -3.369078 1.004041e-03 4.209234e-03
## ABI2 2.675631e+00 7.786202e+00 3.368870 1.004735e-03 4.210656e-03
## FUT10 8.677539e-01 1.775982e+00 3.368185 1.007022e-03 4.218749e-03
## MUS81 -5.076319e+00 2.122691e+01 -3.367646 1.008827e-03 4.224819e-03
## MC1R -8.324667e-01 1.474273e+00 -3.367173 1.010414e-03 4.229973e-03
## ALDH18A1 3.345696e+00 9.977832e+00 3.365917 1.014636e-03 4.246149e-03
## DDX28 -3.332807e+00 1.279964e+01 -3.364923 1.017990e-03 4.258683e-03
## MYB 4.992903e+00 7.418803e+00 3.364666 1.018858e-03 4.260811e-03
## TNRC18 -8.750973e+00 3.905694e+01 -3.364445 1.019607e-03 4.262439e-03
## SLC23A2 5.573481e+00 1.910793e+01 3.364163 1.020562e-03 4.264927e-03
## PIK3R2 -2.301324e+00 7.528999e+00 -3.363682 1.022193e-03 4.270238e-03
## DEDD2 -3.808682e+01 1.291831e+02 -3.363095 1.024185e-03 4.277056e-03
## LARS2 1.498217e+00 6.436108e+00 3.362850 1.025019e-03 4.279028e-03
## ARHGAP32 9.612332e-01 2.544693e+00 3.362479 1.026280e-03 4.282785e-03
## CFAP410 -3.609940e+00 5.579006e+00 -3.362275 1.026978e-03 4.283544e-03
## CYSTM1 -1.833462e+02 1.942429e+02 -3.362214 1.027184e-03 4.283544e-03
## FUCA1 -6.504963e+00 2.310023e+01 -3.362088 1.027615e-03 4.283834e-03
## CD68 -8.176823e+01 2.689111e+02 -3.360604 1.032685e-03 4.303460e-03
## USP34 3.673428e+01 1.223386e+02 3.360134 1.034295e-03 4.308655e-03
## HEATR1 3.770922e+00 9.263991e+00 3.359617 1.036069e-03 4.314530e-03
## ITGA1 3.541247e+00 7.039792e+00 3.358660 1.039362e-03 4.326723e-03
## CEP85L 8.878391e+00 2.792517e+01 3.357833 1.042217e-03 4.337086e-03
## ODC1 1.813879e+01 6.080888e+01 3.357532 1.043258e-03 4.339893e-03
## TLK2 1.107764e+01 4.990203e+01 3.356716 1.046082e-03 4.349525e-03
## TCOF1 -7.638357e+00 1.955055e+01 -3.356636 1.046358e-03 4.349525e-03
## ARMC6 -4.331109e+00 9.994980e+00 -3.356545 1.046673e-03 4.349525e-03
## DELE1 -5.049312e+00 3.296236e+01 -3.356325 1.047439e-03 4.350482e-03
## DOCK8 9.905161e+01 3.126439e+02 3.356268 1.047637e-03 4.350482e-03
## PLD1 3.171217e+00 9.232717e+00 3.355826 1.049170e-03 4.355322e-03
## UNC13B 6.518226e-01 1.599115e+00 3.355231 1.051241e-03 4.362394e-03
## RRP36 -5.294864e+00 2.243288e+01 -3.354370 1.054244e-03 4.372989e-03
## WRAP53 -1.994471e+00 5.915849e+00 -3.354287 1.054532e-03 4.372989e-03
## PPP1R16A -9.022673e-01 1.630258e+00 -3.353824 1.056152e-03 4.375946e-03
## PARP11 6.428867e+00 1.214285e+01 3.353786 1.056285e-03 4.375946e-03
## DIS3L 3.017108e+00 1.067322e+01 3.353767 1.056352e-03 4.375946e-03
## MAL -1.336019e+01 1.532058e+01 -3.353145 1.058530e-03 4.383437e-03
## SLC38A10 -1.407851e+01 4.034945e+01 -3.352268 1.061606e-03 4.394641e-03
## DOT1L -2.696227e+00 8.184520e+00 -3.351849 1.063081e-03 4.399210e-03
## ENTPD5 1.437283e+00 5.403470e+00 3.350176 1.068983e-03 4.420846e-03
## CCDC80 5.164999e-01 8.918237e-01 3.350156 1.069054e-03 4.420846e-03
## ZNF451 4.912545e+00 2.258545e+01 3.349904 1.069948e-03 4.422997e-03
## PNKD -1.003160e+01 3.639197e+01 -3.348469 1.075039e-03 4.442494e-03
## OLFM2 -8.468852e-01 1.435571e+00 -3.348337 1.075508e-03 4.442887e-03
## NDUFC1 -2.199192e+00 8.786406e+00 -3.347252 1.079377e-03 4.457314e-03
## WDR18 -2.004015e+00 3.384955e+00 -3.346797 1.081001e-03 4.462469e-03
## POLR2J -1.824711e+01 5.636251e+01 -3.346582 1.081770e-03 4.464087e-03
## CERK -1.339318e+01 8.355223e+01 -3.346463 1.082194e-03 4.464285e-03
## NRAS 1.346439e+01 5.229278e+01 3.346313 1.082733e-03 4.464957e-03
## PSME4 7.237708e+00 5.103910e+01 3.345561 1.085426e-03 4.474009e-03
## CCNYL1 2.588124e+00 1.112069e+01 3.345490 1.085683e-03 4.474009e-03
## SMAD2 1.487953e+01 8.402819e+01 3.345210 1.086687e-03 4.476592e-03
## PPM1K 1.187103e+01 2.537856e+01 3.344622 1.088804e-03 4.482029e-03
## SLC52A2 -2.968550e+00 6.032908e+00 -3.344616 1.088823e-03 4.482029e-03
## FBLN5 -1.715201e+00 2.666329e+00 -3.344476 1.089328e-03 4.482029e-03
## NFAT5 2.494368e+01 5.619766e+01 3.344423 1.089518e-03 4.482029e-03
## PPFIA1 1.576532e+01 4.560539e+01 3.344007 1.091016e-03 4.486288e-03
## AP3B1 1.214588e+01 4.896297e+01 3.343926 1.091310e-03 4.486288e-03
## LILRB4 -1.891010e+01 4.152024e+01 -3.343639 1.092344e-03 4.488980e-03
## MATK -8.388332e+00 9.315206e+00 -3.343359 1.093356e-03 4.491586e-03
## TRMU -3.574641e+00 9.363853e+00 -3.342179 1.097627e-03 4.507567e-03
## ZSCAN12 8.459137e-01 1.838900e+00 3.341220 1.101109e-03 4.520304e-03
## TIMM9 -2.968681e+00 8.627813e+00 -3.340881 1.102344e-03 4.523807e-03
## NCR1 1.224381e+00 2.678526e+00 3.340433 1.103978e-03 4.528944e-03
## NUBP1 -3.655321e+00 1.721894e+01 -3.339601 1.107015e-03 4.539691e-03
## PLCD1 -3.759566e+00 1.155611e+01 -3.339505 1.107363e-03 4.539691e-03
## ASIC3 -3.581575e-01 5.728481e-01 -3.339084 1.108906e-03 4.543067e-03
## THOC2 6.675120e+00 2.350514e+01 3.339058 1.108999e-03 4.543067e-03
## ATG4A 2.449223e+00 1.336205e+01 3.338966 1.109336e-03 4.543067e-03
## C3orf14 -5.955280e-01 1.314562e+00 -3.338078 1.112595e-03 4.554843e-03
## DPM3 -2.582944e+00 3.044090e+00 -3.337581 1.114420e-03 4.560738e-03
## POLR1H -9.327654e+00 2.668011e+01 -3.335386 1.122521e-03 4.592306e-03
## GLYCTK -5.026301e+00 1.169280e+01 -3.335255 1.123008e-03 4.592714e-03
## DENND4A 8.192785e+00 3.262415e+01 3.334913 1.124275e-03 4.595098e-03
## MMP25 -4.100175e+02 8.946589e+02 -3.334888 1.124366e-03 4.595098e-03
## PIGT -1.153514e+01 4.189608e+01 -3.333873 1.128136e-03 4.608920e-03
## TBRG4 -5.799778e+00 1.722667e+01 -3.333534 1.129400e-03 4.612397e-03
## NEIL3 7.676353e-01 9.016860e-01 3.333436 1.129765e-03 4.612397e-03
## ESF1 1.678849e+00 5.234544e+00 3.333115 1.130961e-03 4.615690e-03
## C2CD5 1.100903e+01 3.936890e+01 3.332977 1.131477e-03 4.616207e-03
## SLC22A16 2.102572e+00 3.172906e+00 3.331826 1.135776e-03 4.632154e-03
## NUDT1 -5.896183e+00 8.347041e+00 -3.331415 1.137318e-03 4.636850e-03
## KAT2B 2.768042e+01 8.504289e+01 3.329114 1.145974e-03 4.669016e-03
## GATD1 -5.381580e+00 1.717060e+01 -3.329108 1.145995e-03 4.669016e-03
## NISCH -9.866647e+00 4.568418e+01 -3.328340 1.148898e-03 4.677790e-03
## ABHD10 -4.371546e+00 1.903502e+01 -3.328330 1.148938e-03 4.677790e-03
## AURKB 2.323746e+00 3.815974e+00 3.327590 1.151741e-03 4.687593e-03
## CCND2 1.136287e+01 4.193033e+01 3.326894 1.154384e-03 4.695732e-03
## TLE5 -1.113613e+02 1.823832e+02 -3.326855 1.154533e-03 4.695732e-03
## WDR46 -9.084891e+00 2.379193e+01 -3.326006 1.157765e-03 4.706571e-03
## POLE4 -1.142889e+01 2.540997e+01 -3.325946 1.157991e-03 4.706571e-03
## PSMB6 -2.085430e+01 6.851829e+01 -3.325739 1.158783e-03 4.708177e-03
## SAC3D1 -1.701582e+00 2.035092e+00 -3.325138 1.161079e-03 4.715887e-03
## CEP192 7.776935e+00 2.353103e+01 3.324788 1.162417e-03 4.719708e-03
## LSM14A 2.448560e+01 1.306511e+02 3.324598 1.163143e-03 4.720428e-03
## DHRS7B -3.791589e+00 1.486559e+01 -3.324533 1.163390e-03 4.720428e-03
## ZNF836 -1.484072e+00 7.651357e+00 -3.324387 1.163952e-03 4.721091e-03
## RPL14 -1.615374e+02 4.359828e+02 -3.324125 1.164954e-03 4.723539e-03
## RPS21 -1.084760e+02 1.582505e+02 -3.323624 1.166878e-03 4.728125e-03
## C4orf46 1.839384e+00 6.413515e+00 3.323623 1.166882e-03 4.728125e-03
## ACP2 -6.068007e+00 1.381038e+01 -3.322474 1.171300e-03 4.744406e-03
## GRK2 -7.426101e+01 3.422874e+02 -3.321905 1.173494e-03 4.751669e-03
## BCL2L13 6.468307e+00 3.905025e+01 3.320602 1.178533e-03 4.770445e-03
## ANKMY1 -2.510878e+00 9.051543e+00 -3.319136 1.184229e-03 4.791863e-03
## CAPRIN1 1.063161e+01 9.429874e+01 3.318923 1.185059e-03 4.793588e-03
## HPS5 4.149794e+00 1.502502e+01 3.317775 1.189540e-03 4.810071e-03
## MCAT -1.463045e+00 3.748407e+00 -3.317490 1.190653e-03 4.812931e-03
## CCDC30 9.444926e-01 2.899017e+00 3.316586 1.194198e-03 4.825617e-03
## TMEM106C 6.617059e+00 1.945106e+01 3.315685 1.197738e-03 4.838154e-03
## BAZ2A 5.131444e+01 1.888915e+02 3.315512 1.198418e-03 4.838154e-03
## CEP97 1.374686e+01 1.919710e+01 3.315485 1.198524e-03 4.838154e-03
## KIAA1586 9.288270e-01 4.083829e+00 3.315246 1.199465e-03 4.839818e-03
## BRWD1 1.093944e+01 4.859498e+01 3.315173 1.199753e-03 4.839818e-03
## YIPF2 -2.584059e+00 5.261648e+00 -3.314235 1.203455e-03 4.853105e-03
## SCARB1 -1.157288e+00 3.578753e+00 -3.313975 1.204482e-03 4.855592e-03
## RBBP4 1.235365e+01 8.173500e+01 3.313369 1.206880e-03 4.863126e-03
## EFEMP2 -3.102556e+00 6.392319e+00 -3.313296 1.207171e-03 4.863126e-03
## NAGA -1.468795e+01 5.467961e+01 -3.312985 1.208403e-03 4.866438e-03
## TRIM33 1.796683e+01 5.967808e+01 3.312267 1.211255e-03 4.876268e-03
## GTF3C3 3.387336e+00 1.454921e+01 3.311490 1.214351e-03 4.887073e-03
## BRD1 -2.397757e+00 1.482579e+01 -3.311050 1.216104e-03 4.892468e-03
## SAMD9 1.040670e+02 1.715035e+02 3.310845 1.216922e-03 4.894097e-03
## A1BG -9.094955e-01 1.011980e+00 -3.310366 1.218839e-03 4.900148e-03
## SEC63 8.340228e+00 4.194978e+01 3.309503 1.222295e-03 4.912377e-03
## EEPD1 -6.246464e+00 2.263370e+01 -3.309258 1.223275e-03 4.914649e-03
## FBXL8 -6.914778e-01 6.848887e-01 -3.308908 1.224683e-03 4.918638e-03
## IKZF4 9.590657e-01 2.972551e+00 3.308750 1.225315e-03 4.919513e-03
## ERGIC3 -2.839145e+01 9.158749e+01 -3.308116 1.227869e-03 4.928052e-03
## TTPAL 6.911879e+00 2.230395e+01 3.308015 1.228273e-03 4.928052e-03
## WASHC4 4.883156e+01 1.371519e+02 3.307388 1.230803e-03 4.934916e-03
## CES2 -3.300869e+00 2.257962e+01 -3.307385 1.230816e-03 4.934916e-03
## CCDC138 3.386285e-01 1.137407e+00 3.307081 1.232041e-03 4.938157e-03
## ZKSCAN1 8.816659e+00 3.904944e+01 3.306734 1.233446e-03 4.942120e-03
## ASCC3 5.353283e+00 1.604485e+01 3.306607 1.233960e-03 4.942508e-03
## STK38 -3.724837e+01 2.130187e+02 -3.306491 1.234428e-03 4.942714e-03
## NAPG 4.862272e+00 2.510467e+01 3.305858 1.236994e-03 4.949871e-03
## POLR2I -3.053365e+00 5.214807e+00 -3.305844 1.237050e-03 4.949871e-03
## NAA30 2.135846e+00 1.022050e+01 3.305735 1.237493e-03 4.949972e-03
## SYMPK -7.571718e+00 2.506982e+01 -3.303266 1.247546e-03 4.988500e-03
## FKBP2 -1.067516e+01 1.840962e+01 -3.302862 1.249199e-03 4.993428e-03
## TRAF2 -3.542282e+00 7.122814e+00 -3.302434 1.250948e-03 4.998736e-03
## TLNRD1 -2.945743e+00 1.627159e+01 -3.301809 1.253513e-03 5.007297e-03
## SCOC 2.487527e+00 1.593377e+01 3.301287 1.255660e-03 5.014186e-03
## TRIM56 2.298515e+01 9.278373e+01 3.301160 1.256181e-03 5.014576e-03
## LMBR1L -9.734670e+00 3.839617e+01 -3.300980 1.256922e-03 5.015845e-03
## RICTOR 5.758490e+01 1.414603e+02 3.300712 1.258027e-03 5.018569e-03
## MED13L 6.606559e+01 1.527720e+02 3.300488 1.258948e-03 5.019754e-03
## DHRS1 -4.703706e+00 1.472088e+01 -3.300391 1.259348e-03 5.019754e-03
## COQ8B -1.217874e+01 2.772529e+01 -3.300331 1.259594e-03 5.019754e-03
## ACSF2 -4.248005e+00 8.752576e+00 -3.300119 1.260473e-03 5.021567e-03
## ARMC7 -8.230090e+00 2.531383e+01 -3.299753 1.261983e-03 5.025150e-03
## DIABLO -3.980366e+00 2.386523e+01 -3.299696 1.262219e-03 5.025150e-03
## TOM1 -4.148386e+01 9.757974e+01 -3.299540 1.262864e-03 5.026028e-03
## SMAD5 3.773583e+00 1.192468e+01 3.298772 1.266043e-03 5.036990e-03
## GAN 9.611026e-01 3.963195e+00 3.298307 1.267970e-03 5.042965e-03
## ADSS1 -2.554774e-01 4.803343e-01 -3.297543 1.271143e-03 5.052611e-03
## DNLZ -1.758035e+00 2.137907e+00 -3.297518 1.271247e-03 5.052611e-03
## MRPL19 2.328715e+00 1.176687e+01 3.297400 1.271740e-03 5.052804e-03
## STARD3 -9.330620e+00 4.642118e+01 -3.297302 1.272148e-03 5.052804e-03
## LRRCC1 1.031614e+00 3.115080e+00 3.296963 1.273560e-03 5.055632e-03
## HERC3 3.131571e+01 7.371338e+01 3.296926 1.273712e-03 5.055632e-03
## FBXO28 5.079674e+00 2.305460e+01 3.296369 1.276037e-03 5.063166e-03
## FZD2 -1.011373e+00 2.146637e+00 -3.295272 1.280623e-03 5.079660e-03
## ZNF280C 4.927488e-01 1.340856e+00 3.294452 1.284063e-03 5.090842e-03
## DRAP1 -3.157818e+01 6.098790e+01 -3.294395 1.284300e-03 5.090842e-03
## ZSCAN2 -1.563856e+00 5.631078e+00 -3.293232 1.289193e-03 5.108531e-03
## TCP11L2 1.564840e+01 3.490892e+01 3.292734 1.291295e-03 5.115150e-03
## ARAP2 1.706859e+01 4.519780e+01 3.292420 1.292620e-03 5.118690e-03
## ZNF629 -1.117579e+00 3.616183e+00 -3.291748 1.295462e-03 5.128233e-03
## SENP8 2.909785e-01 1.238043e+00 3.291146 1.298017e-03 5.136630e-03
## BABAM1 -1.475253e+01 4.057294e+01 -3.290894 1.299084e-03 5.138977e-03
## NAAA -1.937464e+01 5.565332e+01 -3.290802 1.299477e-03 5.138977e-03
## MCM3 8.028378e+00 3.101750e+01 3.290465 1.300909e-03 5.142925e-03
## SC5D 2.027093e+00 9.730385e+00 3.290117 1.302386e-03 5.147052e-03
## ACVR1 2.849991e+00 1.197090e+01 3.289486 1.305076e-03 5.155964e-03
## KBTBD3 -1.204570e+00 4.509391e+00 -3.288841 1.307826e-03 5.165108e-03
## RINT1 1.627054e+00 9.476999e+00 3.288688 1.308479e-03 5.165195e-03
## SLC37A2 -6.732706e+00 2.758971e+01 -3.288632 1.308719e-03 5.165195e-03
## EYA3 5.203345e+00 2.485161e+01 3.288322 1.310045e-03 5.168707e-03
## DNM1L 4.646191e+00 2.414621e+01 3.287912 1.311803e-03 5.173920e-03
## LHFPL2 1.579092e+01 3.078348e+01 3.287686 1.312770e-03 5.176016e-03
## B3GLCT 8.104322e-01 3.320756e+00 3.287446 1.313800e-03 5.178355e-03
## ABHD17B 2.814935e+00 1.388921e+01 3.286541 1.317685e-03 5.191941e-03
## SORD -4.843224e+00 1.739980e+01 -3.285140 1.323727e-03 5.214016e-03
## ZNF133 -1.857819e+00 7.075448e+00 -3.284029 1.328533e-03 5.231210e-03
## GSE1 4.292412e+00 1.562932e+01 3.283836 1.329372e-03 5.232774e-03
## STRIP1 3.850976e+00 2.905519e+01 3.283603 1.330382e-03 5.235015e-03
## EAF1 1.419949e+01 3.598020e+01 3.282025 1.337245e-03 5.260127e-03
## PLA2G12A 4.875494e+00 1.614042e+01 3.281932 1.337651e-03 5.260127e-03
## SHISA9 5.846330e+00 1.863861e+01 3.281235 1.340695e-03 5.270348e-03
## FAM160B2 -4.647923e+00 1.334812e+01 -3.280652 1.343249e-03 5.278640e-03
## OASL 1.459873e+02 1.697173e+02 3.280431 1.344217e-03 5.280694e-03
## MFSD3 -1.102651e+00 1.270886e+00 -3.279741 1.347243e-03 5.290828e-03
## MINDY3 2.653824e+00 1.187627e+01 3.279501 1.348299e-03 5.293221e-03
## PAQR7 -2.718418e+00 6.692685e+00 -3.278994 1.350527e-03 5.300214e-03
## NADK2 1.540432e+00 7.657185e+00 3.278609 1.352224e-03 5.304270e-03
## MAP7D1 -4.020110e+01 1.373781e+02 -3.278556 1.352455e-03 5.304270e-03
## PTRHD1 -3.299203e+00 7.100940e+00 -3.278077 1.354569e-03 5.310804e-03
## CCL24 -3.224083e-01 5.501559e-01 -3.277929 1.355223e-03 5.311613e-03
## ZER1 -1.261837e+01 4.875429e+01 -3.277373 1.357682e-03 5.318668e-03
## LYST 1.175697e+02 3.138105e+02 3.277319 1.357920e-03 5.318668e-03
## KCNMB4 -4.961251e-01 1.185359e+00 -3.276412 1.361939e-03 5.332652e-03
## HECA 6.461067e+01 2.105327e+02 3.275592 1.365580e-03 5.345143e-03
## FUZ -2.369641e+00 6.359326e+00 -3.274787 1.369165e-03 5.357405e-03
## STAMBP 5.540189e+00 3.094877e+01 3.274246 1.371580e-03 5.365084e-03
## RPL39 -3.626980e+02 6.796865e+02 -3.274104 1.372214e-03 5.365794e-03
## XPO1 2.772906e+01 1.037991e+02 3.273678 1.374116e-03 5.370283e-03
## COX18 1.513656e+00 1.143435e+01 3.273645 1.374267e-03 5.370283e-03
## LSM2 -6.681189e+00 1.747873e+01 -3.273227 1.376138e-03 5.375823e-03
## ORC3 2.409934e+00 1.192844e+01 3.272831 1.377914e-03 5.380986e-03
## SINHCAF 5.438359e+00 2.571026e+01 3.271773 1.382666e-03 5.397768e-03
## TUBB1 5.072575e+01 9.688470e+01 3.271275 1.384908e-03 5.404742e-03
## MTCH1 -2.697333e+01 1.391175e+02 -3.270589 1.388001e-03 5.415030e-03
## METTL14 3.765830e+00 1.674182e+01 3.269965 1.390822e-03 5.424250e-03
## ATG2B 9.999582e+00 3.168065e+01 3.269823 1.391466e-03 5.424978e-03
## CDC20 4.916191e+00 5.501718e+00 3.269266 1.393986e-03 5.433018e-03
## TRPT1 -1.727963e+00 5.435570e+00 -3.269146 1.394531e-03 5.433357e-03
## LSM7 -9.786302e+00 1.604372e+01 -3.268749 1.396335e-03 5.438598e-03
## PTAR1 2.453670e+01 6.570521e+01 3.268614 1.396949e-03 5.439203e-03
## PDE7A 1.984063e+01 8.462636e+01 3.267951 1.399960e-03 5.449139e-03
## PTK6 -6.027564e-01 1.471093e+00 -3.267443 1.402276e-03 5.456364e-03
## MZT2B -4.827412e+00 4.755649e+00 -3.267319 1.402844e-03 5.456781e-03
## CTNNBL1 -8.560396e+00 3.493474e+01 -3.267046 1.404086e-03 5.459823e-03
## KCNN3 1.916811e+00 1.832696e+00 3.266795 1.405233e-03 5.462493e-03
## REEP4 -3.560670e+00 1.188265e+01 -3.265760 1.409970e-03 5.479111e-03
## TUFT1 4.167838e+00 9.264024e+00 3.265370 1.411758e-03 5.484260e-03
## NUP107 3.145308e+00 1.780963e+01 3.265232 1.412391e-03 5.484923e-03
## TRPM6 1.130053e+01 2.782517e+01 3.264976 1.413566e-03 5.487689e-03
## SLC2A5 8.413099e+00 9.218800e+00 3.264800 1.414374e-03 5.489030e-03
## PRRC2C 2.847542e+01 1.108168e+02 3.264611 1.415243e-03 5.490607e-03
## EPHB6 -6.900118e+00 1.670746e+01 -3.263686 1.419502e-03 5.503772e-03
## HPF1 -2.629546e+00 1.099528e+01 -3.263672 1.419565e-03 5.503772e-03
## PPP1R7 -9.397516e+00 4.626269e+01 -3.262293 1.425938e-03 5.526675e-03
## ST3GAL1 1.523357e+01 7.788900e+01 3.262075 1.426947e-03 5.527270e-03
## INPP5E -1.457871e+00 3.934240e+00 -3.262059 1.427024e-03 5.527270e-03
## TOMM6 -1.972367e+01 5.964225e+01 -3.261626 1.429030e-03 5.532774e-03
## RPL36AL -6.986753e+01 2.487973e+02 -3.261551 1.429378e-03 5.532774e-03
## CHCHD6 -6.550458e-01 8.816320e-01 -3.261439 1.429897e-03 5.532978e-03
## VNN3 5.955848e+01 1.254469e+02 3.261028 1.431809e-03 5.538569e-03
## SLC26A2 2.546764e+00 9.960958e+00 3.259861 1.437243e-03 5.557776e-03
## HMG20A 3.015270e+00 1.444773e+01 3.259260 1.440050e-03 5.566818e-03
## NDUFV3 -3.092626e+00 1.748673e+01 -3.258436 1.443904e-03 5.579896e-03
## GCSH 9.077403e-01 2.159640e+00 3.258314 1.444475e-03 5.580286e-03
## ZNF747 -1.472116e+00 7.011110e+00 -3.258073 1.445608e-03 5.582843e-03
## CNOT7 9.217114e+00 6.337168e+01 3.257832 1.446736e-03 5.585380e-03
## SPATA7 -3.828586e-01 1.202327e+00 -3.257291 1.449278e-03 5.593375e-03
## MORC3 2.874561e+01 8.802963e+01 3.256850 1.451356e-03 5.597897e-03
## MTRF1L 6.193539e+00 3.075054e+01 3.256841 1.451394e-03 5.597897e-03
## RBBP9 1.298483e+00 5.171973e+00 3.256520 1.452907e-03 5.601910e-03
## DEAF1 -3.408913e+00 1.034211e+01 -3.255837 1.456132e-03 5.612519e-03
## MBTD1 6.317254e+00 2.273434e+01 3.254861 1.460744e-03 5.628468e-03
## PIWIL4 4.714201e+00 9.270949e+00 3.254724 1.461395e-03 5.629146e-03
## DMTF1 1.133184e+01 4.803148e+01 3.254506 1.462427e-03 5.629926e-03
## ELL2 2.184447e+01 3.826902e+01 3.254481 1.462547e-03 5.629926e-03
## BRD7 1.661123e+01 9.699937e+01 3.253995 1.464850e-03 5.636964e-03
## WASL 1.078930e+00 5.664260e+00 3.253809 1.465734e-03 5.638536e-03
## INTS2 1.994024e+00 6.623384e+00 3.253666 1.466413e-03 5.639318e-03
## FNBP1L 9.533320e-01 2.346202e+00 3.253530 1.467064e-03 5.639992e-03
## CDC23 2.855430e+00 1.199490e+01 3.253381 1.467773e-03 5.640889e-03
## ZNF48 -1.772499e+00 3.972516e+00 -3.252141 1.473681e-03 5.661761e-03
## SART3 3.983913e+00 2.322677e+01 3.251994 1.474384e-03 5.662626e-03
## HLA-DMB -2.689727e+01 7.190885e+01 -3.251777 1.475421e-03 5.664774e-03
## WNK1 4.233533e+01 1.310469e+02 3.250911 1.479567e-03 5.678857e-03
## HNRNPAB 6.795170e+00 4.151170e+01 3.250410 1.481970e-03 5.685686e-03
## UBR4 1.739810e+01 1.047262e+02 3.249938 1.484236e-03 5.685686e-03
## UQCRB -5.657972e+01 1.766402e+02 -3.249874 1.484542e-03 5.685686e-03
## PCBP4 -3.545639e+00 5.078516e+00 -3.249841 1.484703e-03 5.685686e-03
## ATOX1 -1.039729e+01 1.878354e+01 -3.249809 1.484858e-03 5.685686e-03
## SLC25A22 -2.023443e+00 4.013721e+00 -3.249805 1.484875e-03 5.685686e-03
## UBR3 8.429753e+00 2.758518e+01 3.249754 1.485121e-03 5.685686e-03
## TMF1 1.920230e+01 6.342939e+01 3.249741 1.485182e-03 5.685686e-03
## KANSL1 1.259269e+01 5.360751e+01 3.249489 1.486394e-03 5.688490e-03
## SELENOH -9.704855e+00 1.989418e+01 -3.249239 1.487601e-03 5.691274e-03
## TP53INP1 6.621873e+01 1.800324e+02 3.247300 1.496970e-03 5.725269e-03
## DLGAP4 -4.857451e+00 2.451897e+01 -3.246969 1.498573e-03 5.727452e-03
## COL18A1 -2.129435e+01 3.524071e+01 -3.246929 1.498765e-03 5.727452e-03
## CTBP1 -9.796685e+00 4.617189e+01 -3.246883 1.498989e-03 5.727452e-03
## HS6ST1 -2.660941e+00 1.059926e+01 -3.245479 1.505813e-03 5.751674e-03
## ZNF71 -9.675225e-01 3.016998e+00 -3.245330 1.506543e-03 5.752609e-03
## PPP1R15B 4.245363e+01 1.214792e+02 3.243936 1.513351e-03 5.776742e-03
## EXO5 2.072942e+00 6.732986e+00 3.243771 1.514160e-03 5.777519e-03
## GLI1 2.098767e+00 3.458689e+00 3.243696 1.514528e-03 5.777519e-03
## PAXBP1 4.559701e+00 2.355145e+01 3.243508 1.515448e-03 5.779167e-03
## HDHD3 -4.143826e+00 8.956087e+00 -3.242450 1.520641e-03 5.797109e-03
## RAB5C -4.250189e+01 2.103433e+02 -3.242331 1.521226e-03 5.797475e-03
## CBR3 -1.482890e+00 1.579246e+00 -3.241585 1.524900e-03 5.808496e-03
## RBM33 1.689515e+01 7.705365e+01 3.241545 1.525098e-03 5.808496e-03
## TUBB4B -2.554439e+01 7.236131e+01 -3.241163 1.526982e-03 5.813805e-03
## TUBGCP6 -8.251369e+00 2.662201e+01 -3.240859 1.528484e-03 5.817657e-03
## C21orf58 5.798236e-01 1.457600e+00 3.240657 1.529481e-03 5.819585e-03
## PTAFR -1.420336e+02 5.063361e+02 -3.240245 1.531519e-03 5.825469e-03
## DHX16 -4.492348e+00 4.375778e+01 -3.239903 1.533210e-03 5.830033e-03
## SLC35D1 3.313856e+00 1.060355e+01 3.239241 1.536497e-03 5.840657e-03
## SMC5 7.228786e+00 2.756512e+01 3.238826 1.538555e-03 5.846608e-03
## PPARA 1.777359e+00 6.965596e+00 3.238707 1.539147e-03 5.846985e-03
## RTF1 1.306007e+01 6.566072e+01 3.238541 1.539973e-03 5.848249e-03
## USP8 1.513803e+01 6.292121e+01 3.238434 1.540509e-03 5.848409e-03
## TNFSF12 -8.210714e+00 2.620079e+01 -3.237372 1.545800e-03 5.866619e-03
## ZNF497 -1.491372e+00 3.232523e+00 -3.237113 1.547094e-03 5.869654e-03
## EIF3L -5.058518e+01 2.008918e+02 -3.236477 1.550277e-03 5.879848e-03
## UBR2 6.333398e+01 1.951267e+02 3.235525 1.555049e-03 5.895846e-03
## SLC19A1 -3.258201e+01 7.846143e+01 -3.235437 1.555489e-03 5.895846e-03
## ZNF436 1.878110e+00 7.393578e+00 3.234464 1.560386e-03 5.912515e-03
## NEMP2 1.033514e+00 4.109036e+00 3.233949 1.562979e-03 5.920451e-03
## NINJ1 -9.917005e+01 2.246074e+02 -3.232816 1.568707e-03 5.940251e-03
## PRKAR2B 4.394556e+01 9.233238e+01 3.232670 1.569445e-03 5.940972e-03
## DNAJC27 1.282001e+00 3.945380e+00 3.232580 1.569899e-03 5.940972e-03
## MAP2K1 1.417122e+01 6.019692e+01 3.232140 1.572132e-03 5.947523e-03
## TBKBP1 -2.090038e+01 4.645333e+01 -3.231695 1.574387e-03 5.954155e-03
## PTPN18 -2.845639e+01 1.747350e+02 -3.231444 1.575661e-03 5.957074e-03
## CCDC13 -7.298097e-01 1.952256e+00 -3.231138 1.577219e-03 5.961063e-03
## EIF2AK2 8.713217e+01 1.460407e+02 3.230897 1.578445e-03 5.963796e-03
## NRIP1 7.940350e+00 2.160272e+01 3.230651 1.579700e-03 5.966639e-03
## GTF2A1 1.031046e+01 3.817889e+01 3.228678 1.589783e-03 6.002809e-03
## SLC11A1 -2.318660e+02 4.879473e+02 -3.227066 1.598064e-03 6.032157e-03
## MOB3B 9.895955e-01 2.925225e+00 3.226900 1.598919e-03 6.033465e-03
## NDUFS8 -5.152929e+00 6.602091e+00 -3.226716 1.599864e-03 6.034807e-03
## H2AJ -8.089007e+00 1.515995e+01 -3.226633 1.600293e-03 6.034807e-03
## MRPL38 -8.411706e+00 1.417414e+01 -3.225220 1.607596e-03 6.060422e-03
## H2BC15 4.158292e-01 5.357225e-01 3.224848 1.609521e-03 6.065753e-03
## LRCH1 2.137059e+00 8.424754e+00 3.223468 1.616693e-03 6.089141e-03
## NLRP12 -3.591940e+01 1.132651e+02 -3.223456 1.616754e-03 6.089141e-03
## NECAB3 -1.077456e+00 2.165013e+00 -3.220406 1.632707e-03 6.147270e-03
## ST7 1.486361e+00 6.817270e+00 3.217372 1.648717e-03 6.205579e-03
## ATP10D 4.445325e+00 1.253299e+01 3.216177 1.655067e-03 6.227505e-03
## FNBP4 9.318345e+00 3.836534e+01 3.214539 1.663800e-03 6.258380e-03
## STYXL1 -1.081808e+01 3.175269e+01 -3.212865 1.672773e-03 6.290137e-03
## GPR108 -2.811615e+01 9.714116e+01 -3.212151 1.676613e-03 6.302175e-03
## EFCAB7 1.103244e+00 3.072523e+00 3.212073 1.677037e-03 6.302175e-03
## FAM207A -1.381358e+00 2.279916e+00 -3.211353 1.680918e-03 6.314759e-03
## PPP1R3F -4.656558e-01 1.999511e+00 -3.210997 1.682842e-03 6.319983e-03
## MDP1 -3.173839e+00 7.681028e+00 -3.210757 1.684138e-03 6.322848e-03
## C3orf86 -2.920073e+01 4.870458e+01 -3.210199 1.687157e-03 6.332176e-03
## RELB -9.704443e+00 2.527917e+01 -3.209695 1.689888e-03 6.340421e-03
## ACTR8 1.563053e+00 1.325107e+01 3.209406 1.691459e-03 6.344309e-03
## ZBTB37 1.427430e+01 4.558402e+01 3.209135 1.692928e-03 6.347810e-03
## BCL7C -1.313527e+01 1.304869e+01 -3.208789 1.694811e-03 6.352865e-03
## DALRD3 -4.121355e+00 1.644585e+01 -3.208495 1.696410e-03 6.356848e-03
## TRPV2 -9.771030e+00 3.707748e+01 -3.208011 1.699049e-03 6.364115e-03
## FAM43A -1.512363e+00 4.893110e+00 -3.207942 1.699423e-03 6.364115e-03
## STK4 8.101175e+01 2.956413e+02 3.206970 1.704732e-03 6.381335e-03
## CCDC117 5.293641e+00 2.479243e+01 3.206901 1.705112e-03 6.381335e-03
## ZC3H10 -2.445745e+00 1.320082e+01 -3.206805 1.705635e-03 6.381335e-03
## OGFOD2 -3.581814e+00 9.250384e+00 -3.206706 1.706180e-03 6.381360e-03
## UBE2G1 1.283328e+01 5.955070e+01 3.206576 1.706892e-03 6.382011e-03
## CARD19 -7.891992e+00 1.928393e+01 -3.206409 1.707803e-03 6.383405e-03
## C5orf24 3.921622e+00 1.594183e+01 3.205912 1.710530e-03 6.391585e-03
## RUVBL2 -7.296781e+00 1.285314e+01 -3.205642 1.712009e-03 6.395094e-03
## SAMD10 -1.482466e+00 2.040856e+00 -3.205339 1.713676e-03 6.398960e-03
## NAV1 1.180032e+00 2.520998e+00 3.205258 1.714123e-03 6.398960e-03
## LIMS2 -1.014497e+00 1.200250e+00 -3.205052 1.715251e-03 6.401157e-03
## DCTN3 -1.322740e+01 3.742373e+01 -3.204934 1.715904e-03 6.401581e-03
## C1orf162 -9.251414e+01 2.135242e+02 -3.204253 1.719652e-03 6.413546e-03
## FBXL20 1.370828e+01 4.423513e+01 3.204114 1.720419e-03 6.414389e-03
## GPAM 1.092936e+00 3.870907e+00 3.202375 1.730038e-03 6.448226e-03
## AGAP2 -1.245511e+01 5.163394e+01 -3.201202 1.736553e-03 6.469543e-03
## EP300 3.557255e+01 1.004415e+02 3.201149 1.736849e-03 6.469543e-03
## AAMDC -1.602553e+00 4.168536e+00 -3.200794 1.738823e-03 6.474865e-03
## MRM1 -1.009159e+00 2.091572e+00 -3.200062 1.742909e-03 6.488040e-03
## EXOC5 8.508840e+00 3.666966e+01 3.199561 1.745706e-03 6.496414e-03
## COA3 -6.175552e+00 1.456493e+01 -3.199435 1.746412e-03 6.497004e-03
## EDC3 -3.553052e+00 2.121562e+01 -3.198988 1.748913e-03 6.504266e-03
## NUDCD1 1.550882e+00 7.171650e+00 3.198516 1.751560e-03 6.510407e-03
## RHBDD2 -1.497618e+01 3.706205e+01 -3.198497 1.751662e-03 6.510407e-03
## GOLGA4 9.178501e+00 3.466121e+01 3.197891 1.755064e-03 6.521009e-03
## RUFY2 1.069329e+00 5.046102e+00 3.196803 1.761191e-03 6.541725e-03
## ZNF32 -7.341311e+00 1.629417e+01 -3.196612 1.762266e-03 6.543669e-03
## ATAD1 4.152379e+00 2.214331e+01 3.196168 1.764773e-03 6.550924e-03
## NTMT1 -2.993925e+00 7.979702e+00 -3.196027 1.765571e-03 6.551839e-03
## ECHDC1 -8.981798e+00 5.240248e+01 -3.195475 1.768692e-03 6.561366e-03
## ARL2 -4.885256e+00 9.062380e+00 -3.194673 1.773240e-03 6.576180e-03
## ZBTB39 1.520913e+00 3.930734e+00 3.194141 1.776257e-03 6.585311e-03
## CELF1 2.716580e+01 1.141638e+02 3.193666 1.778958e-03 6.593264e-03
## ZBTB11 8.699903e+00 3.351740e+01 3.193536 1.779697e-03 6.593941e-03
## DGAT2 -1.880363e+02 4.032274e+02 -3.193411 1.780408e-03 6.594516e-03
## GYPC -5.376195e+01 8.305970e+01 -3.193069 1.782357e-03 6.599674e-03
## HRAS -3.798815e+00 5.487688e+00 -3.192635 1.784835e-03 6.606785e-03
## H2BC21 3.190426e+01 9.096919e+01 3.192055 1.788146e-03 6.616975e-03
## RBM11 9.056683e-01 1.756431e+00 3.191917 1.788940e-03 6.617851e-03
## ARV1 1.190742e+00 7.050759e+00 3.191641 1.790517e-03 6.621619e-03
## COX17 -4.758624e+00 1.665823e+01 -3.191095 1.793643e-03 6.631110e-03
## OTUD6B 1.598824e+00 5.811019e+00 3.190872 1.794923e-03 6.633778e-03
## ATP5ME -2.067733e+01 3.814345e+01 -3.190308 1.798165e-03 6.643687e-03
## KTN1 1.265457e+01 6.916742e+01 3.190108 1.799313e-03 6.644304e-03
## AP2M1 -4.422211e+01 2.064488e+02 -3.190084 1.799452e-03 6.644304e-03
## REXO5 5.949838e-01 1.370325e+00 3.189788 1.801155e-03 6.648522e-03
## VPS53 4.323203e+00 2.735479e+01 3.189413 1.803314e-03 6.654418e-03
## RPS12 -4.281500e+02 7.046718e+02 -3.188931 1.806091e-03 6.662595e-03
## CYB5R1 -1.757301e+01 5.285440e+01 -3.188625 1.807861e-03 6.667050e-03
## DARS1 6.006460e+00 3.036689e+01 3.188370 1.809335e-03 6.670412e-03
## UQCRC1 -3.139698e+01 1.053646e+02 -3.188265 1.809941e-03 6.670571e-03
## KEAP1 -7.017557e+00 2.661450e+01 -3.188032 1.811289e-03 6.673467e-03
## NUDT21 7.869543e+00 4.767534e+01 3.187802 1.812623e-03 6.676307e-03
## MTMR9 2.863840e+00 1.339593e+01 3.187521 1.814248e-03 6.680217e-03
## PHLDB3 -5.203949e-01 9.218508e-01 -3.187029 1.817104e-03 6.688657e-03
## ATG13 -1.745417e+01 1.048043e+02 -3.185809 1.824194e-03 6.711030e-03
## CHRNA10 -9.114513e-01 2.490098e+00 -3.185789 1.824314e-03 6.711030e-03
## MGAT1 -7.751387e+01 2.801515e+02 -3.183966 1.834962e-03 6.748107e-03
## TNF -3.973309e+00 1.049249e+01 -3.183277 1.838997e-03 6.760851e-03
## PSMA7 -3.729087e+01 1.303205e+02 -3.182578 1.843104e-03 6.773851e-03
## PUM1 7.959933e+00 4.105636e+01 3.182441 1.843910e-03 6.774713e-03
## ZNF419 -1.570768e+00 6.193570e+00 -3.182206 1.845297e-03 6.776960e-03
## TM9SF1 5.908321e+00 3.385422e+01 3.182143 1.845665e-03 6.776960e-03
## SMIM4 -1.300823e+00 2.872167e+00 -3.180626 1.854622e-03 6.807743e-03
## TMX1 9.252756e+00 4.994364e+01 3.180426 1.855803e-03 6.809970e-03
## MLLT10 4.183107e+00 2.162956e+01 3.180016 1.858234e-03 6.816781e-03
## ABCB10 5.223823e+00 2.075458e+01 3.179790 1.859569e-03 6.819570e-03
## RPL31 -2.033095e+02 5.798508e+02 -3.179183 1.863172e-03 6.830369e-03
## DHX37 -2.190081e+00 5.786447e+00 -3.179100 1.863666e-03 6.830369e-03
## KIF5B 3.756131e+01 1.318361e+02 3.178699 1.866051e-03 6.836998e-03
## FAM78A -1.407812e+01 5.976105e+01 -3.178528 1.867070e-03 6.837154e-03
## TSNARE1 -1.539737e+00 3.936729e+00 -3.178498 1.867246e-03 6.837154e-03
## C1GALT1 1.993681e+01 5.852892e+01 3.178353 1.868108e-03 6.838199e-03
## TRAF6 5.893390e+00 2.421382e+01 3.177591 1.872656e-03 6.852729e-03
## CLIC1 -4.415874e+02 1.415129e+03 -3.177073 1.875746e-03 6.861920e-03
## MLLT11 7.200543e-01 2.757407e+00 3.176588 1.878651e-03 6.870427e-03
## G2E3 2.599280e+00 1.160361e+01 3.176253 1.880654e-03 6.874462e-03
## MGAT4A 1.226287e+01 5.895381e+01 3.176210 1.880913e-03 6.874462e-03
## UNC93B1 -2.101661e+01 5.683454e+01 -3.175953 1.882453e-03 6.876784e-03
## ZNF66 4.723592e+00 1.034215e+01 3.175911 1.882708e-03 6.876784e-03
## MRFAP1L1 -9.883695e+00 6.573678e+01 -3.175342 1.886123e-03 6.887137e-03
## STX18 -2.608384e+00 1.523342e+01 -3.175152 1.887265e-03 6.889184e-03
## ABCA5 3.213127e+00 1.266321e+01 3.174763 1.889602e-03 6.895592e-03
## EEA1 4.029743e+00 1.316197e+01 3.174608 1.890539e-03 6.896892e-03
## JADE1 -1.447067e+01 5.746459e+01 -3.174220 1.892875e-03 6.903291e-03
## BRAF 1.398326e+01 4.499659e+01 3.173893 1.894845e-03 6.908349e-03
## RAD50 3.920624e+00 1.636742e+01 3.173693 1.896053e-03 6.910629e-03
## UBE2M -1.092380e+01 3.773458e+01 -3.173100 1.899637e-03 6.921566e-03
## ZNF850 4.074289e-01 1.992499e+00 3.172898 1.900861e-03 6.923897e-03
## GTF2H3 2.095328e+00 8.981806e+00 3.172794 1.901491e-03 6.924065e-03
## ELK3 6.333084e+00 3.455622e+01 3.172500 1.903269e-03 6.928414e-03
## TMEM186 -1.967358e+00 8.079584e+00 -3.172035 1.906090e-03 6.936555e-03
## NPAT 4.708974e+00 1.584570e+01 3.171794 1.907555e-03 6.939755e-03
## HAUS6 2.668468e+00 1.388787e+01 3.171666 1.908330e-03 6.940446e-03
## RPS26 -1.346801e+02 2.203303e+02 -3.171182 1.911272e-03 6.949016e-03
## LRP12 9.067141e-01 2.042920e+00 3.170632 1.914619e-03 6.959051e-03
## MEX3C 6.829892e+00 2.403613e+01 3.170218 1.917145e-03 6.966095e-03
## PSMC3 -1.488471e+01 4.726482e+01 -3.169461 1.921765e-03 6.980747e-03
## LSM10 -1.509239e+01 5.713971e+01 -3.169320 1.922630e-03 6.981509e-03
## GANC 2.525708e+00 1.304719e+01 3.169235 1.923153e-03 6.981509e-03
## DERL2 -8.143316e+00 4.675822e+01 -3.168944 1.924931e-03 6.984958e-03
## DDX41 -9.392444e+00 3.839261e+01 -3.168887 1.925281e-03 6.984958e-03
## PGRMC1 2.771852e+01 7.516286e+01 3.168494 1.927690e-03 6.991561e-03
## LAPTM4B 2.975278e+00 6.250814e+00 3.166947 1.937199e-03 7.023899e-03
## DAD1 1.487407e+01 9.216252e+01 3.166672 1.938891e-03 7.027889e-03
## GRAMD2B 6.519079e-01 1.933442e+00 3.166094 1.942458e-03 7.038664e-03
## AMMECR1 1.340590e+00 5.085063e+00 3.165682 1.945004e-03 7.042396e-03
## FADS3 -1.248067e+00 3.447368e+00 -3.165626 1.945349e-03 7.042396e-03
## TRIM26 8.242118e+00 3.837458e+01 3.165623 1.945364e-03 7.042396e-03
## ZNF699 3.239816e+00 8.758494e+00 3.165543 1.945863e-03 7.042396e-03
## APOL6 1.258004e+02 1.887671e+02 3.165313 1.947284e-03 7.045389e-03
## MFAP3 1.082444e+01 3.367424e+01 3.165057 1.948868e-03 7.048969e-03
## C8orf82 -1.325601e+00 2.961072e+00 -3.164895 1.949877e-03 7.050469e-03
## MFSD14A 2.089825e+01 7.224146e+01 3.162313 1.965939e-03 7.103699e-03
## NAGLU -4.861581e+00 1.127876e+01 -3.162310 1.965954e-03 7.103699e-03
## ICOSLG -2.008673e+00 4.295330e+00 -3.162240 1.966395e-03 7.103699e-03
## SERPINA1 -7.613046e+02 2.286524e+03 -3.161619 1.970276e-03 7.113455e-03
## ODF3B -6.066737e+00 6.399269e+00 -3.161529 1.970836e-03 7.113455e-03
## GIGYF2 8.698084e+00 3.991660e+01 3.161520 1.970895e-03 7.113455e-03
## BORA 1.290854e+00 5.074057e+00 3.159970 1.980620e-03 7.146380e-03
## MIGA1 1.663052e+00 7.134786e+00 3.158880 1.987482e-03 7.168958e-03
## NAA80 -2.745463e+00 4.282632e+00 -3.158749 1.988306e-03 7.169751e-03
## ATXN1L 1.760449e+01 4.331353e+01 3.158328 1.990964e-03 7.177154e-03
## IGSF6 -1.505348e+02 4.148170e+02 -3.158083 1.992519e-03 7.180574e-03
## TMEM212 1.665886e+00 5.080624e+00 3.156797 2.000663e-03 7.207734e-03
## CLTA -1.809125e+01 6.304633e+01 -3.156314 2.003733e-03 7.216602e-03
## MEPCE -1.211380e+01 4.292490e+01 -3.155914 2.006272e-03 7.222563e-03
## DYRK1A 3.141109e+01 1.169311e+02 3.155862 2.006606e-03 7.222563e-03
## HNRNPH3 3.515062e+01 1.583682e+02 3.155403 2.009527e-03 7.230884e-03
## NIPAL3 3.260828e+00 1.313330e+01 3.154993 2.012141e-03 7.237104e-03
## FANCG 1.927995e+00 6.806998e+00 3.154941 2.012476e-03 7.237104e-03
## COA4 -3.893211e+00 1.090686e+01 -3.153281 2.023096e-03 7.273088e-03
## RETREG3 -1.844529e+01 6.969379e+01 -3.152517 2.028001e-03 7.286587e-03
## TRIM59 1.545842e+00 6.174073e+00 3.152505 2.028079e-03 7.286587e-03
## RELCH 9.367916e+00 4.382168e+01 3.151887 2.032055e-03 7.298658e-03
## TACC1 2.734259e+01 1.064991e+02 3.150973 2.037945e-03 7.317597e-03
## MLH1 2.873876e+00 1.870455e+01 3.149982 2.044355e-03 7.338393e-03
## NKAIN3 1.829590e+00 5.275168e+00 3.149616 2.046723e-03 7.344669e-03
## NSUN2 5.587837e+00 2.688126e+01 3.149385 2.048222e-03 7.347826e-03
## LRRK2 3.244830e+02 7.133897e+02 3.149219 2.049299e-03 7.349468e-03
## ASB3 1.575279e+00 8.578420e+00 3.148971 2.050909e-03 7.352814e-03
## CACNB1 -8.398706e-01 2.481048e+00 -3.148885 2.051472e-03 7.352814e-03
## CAMTA2 -9.807971e+00 4.590435e+01 -3.148395 2.054657e-03 7.362004e-03
## KLHL26 -6.893275e-01 3.219880e+00 -3.147773 2.058702e-03 7.374270e-03
## P3H1 -5.034776e+00 2.098750e+01 -3.147170 2.062641e-03 7.385508e-03
## DDX60 8.035218e+01 9.344242e+01 3.147102 2.063085e-03 7.385508e-03
## LZTR1 -6.627672e+00 2.282526e+01 -3.146625 2.066201e-03 7.394027e-03
## CILK1 2.244626e+00 9.893442e+00 3.146547 2.066712e-03 7.394027e-03
## ACO1 1.330065e+00 5.432511e+00 3.144926 2.077339e-03 7.429806e-03
## TMEM123 1.714965e+02 3.200924e+02 3.143407 2.087343e-03 7.463337e-03
## CIZ1 -6.500645e+00 2.720539e+01 -3.143093 2.089416e-03 7.468497e-03
## TEDC1 -1.331302e+00 1.382271e+00 -3.142585 2.092776e-03 7.478252e-03
## SLC10A3 -4.052641e+00 1.375667e+01 -3.141956 2.096946e-03 7.490899e-03
## SDHAF4 -1.570896e+00 5.064403e+00 -3.141796 2.098003e-03 7.492418e-03
## MRPL53 -5.161678e+00 1.228370e+01 -3.141074 2.102798e-03 7.507279e-03
## LRPAP1 -3.131020e+01 9.556031e+01 -3.140783 2.104734e-03 7.511930e-03
## EPS15 2.353613e+01 8.613818e+01 3.140042 2.109671e-03 7.527287e-03
## NBDY -3.151038e+00 9.286331e+00 -3.139664 2.112190e-03 7.534007e-03
## EMC6 -2.674559e+00 8.438409e+00 -3.139338 2.114370e-03 7.539516e-03
## SLFN5 5.977609e+01 8.678247e+01 3.138595 2.119341e-03 7.554968e-03
## DNAJC30 -1.146739e+00 2.862615e+00 -3.138095 2.122689e-03 7.564631e-03
## ZNF787 -7.604479e+00 2.024726e+01 -3.137654 2.125647e-03 7.572897e-03
## TFDP1 1.416576e+01 5.232525e+01 3.136702 2.132048e-03 7.591213e-03
## TAOK1 2.844575e+01 9.036542e+01 3.136699 2.132068e-03 7.591213e-03
## PTPRCAP -3.562318e+01 3.035666e+01 -3.136434 2.133857e-03 7.595302e-03
## BUD13 -3.110268e+00 2.442742e+01 -3.136021 2.136638e-03 7.602918e-03
## SEC14L5 1.720064e+00 3.350264e+00 3.135841 2.137853e-03 7.603156e-03
## CAVIN2 3.447637e+01 9.727598e+01 3.135821 2.137987e-03 7.603156e-03
## SWSAP1 -1.484291e+00 3.381582e+00 -3.135031 2.143325e-03 7.619854e-03
## DYNC1LI2 9.645265e+00 4.561655e+01 3.133834 2.151439e-03 7.646407e-03
## VIRMA 7.237225e+00 4.041834e+01 3.133019 2.156981e-03 7.661084e-03
## TMC6 -2.567326e+01 8.870563e+01 -3.132890 2.157858e-03 7.661084e-03
## CDK16 -8.767098e+00 2.956962e+01 -3.132839 2.158205e-03 7.661084e-03
## JUN 5.838469e+00 1.295628e+01 3.132810 2.158404e-03 7.661084e-03
## ADAM17 3.945114e+01 6.728714e+01 3.132752 2.158798e-03 7.661084e-03
## C10orf143 -6.790101e-01 1.522015e+00 -3.132499 2.160522e-03 7.663658e-03
## RASAL3 -2.141362e+01 5.587792e+01 -3.132456 2.160815e-03 7.663658e-03
## MIDN -4.362983e+01 1.448856e+02 -3.132270 2.162081e-03 7.665854e-03
## GPX4 -3.260214e+01 8.001004e+01 -3.131919 2.164482e-03 7.671242e-03
## PSRC1 -1.987131e+00 8.164901e+00 -3.131782 2.165413e-03 7.671242e-03
## P4HTM -2.079098e+00 5.995981e+00 -3.131764 2.165541e-03 7.671242e-03
## ANAPC13 1.385721e+01 5.842393e+01 3.131657 2.166272e-03 7.671540e-03
## PARP15 8.883106e+00 4.232133e+01 3.131248 2.169069e-03 7.679151e-03
## ZBTB33 5.154398e+00 2.057145e+01 3.130322 2.175411e-03 7.698445e-03
## RAD51D 1.824337e+00 8.382773e+00 3.130263 2.175817e-03 7.698445e-03
## MPV17L2 -1.787202e+00 5.120855e+00 -3.129806 2.178952e-03 7.706586e-03
## SF3B5 -2.758575e+01 6.150043e+01 -3.129738 2.179417e-03 7.706586e-03
## MTX1 -2.549455e+01 6.535539e+01 -3.129384 2.181853e-03 7.712898e-03
## MCMBP 3.506434e+01 1.342862e+02 3.126434 2.202232e-03 7.782619e-03
## SMURF2 5.944624e+00 2.515510e+01 3.125873 2.206129e-03 7.794070e-03
## MRPL55 -2.898102e+00 3.920676e+00 -3.125516 2.208609e-03 7.800508e-03
## DDX17 1.001935e+02 5.416477e+02 3.125008 2.212151e-03 7.810690e-03
## GON7 -1.120604e+00 7.016080e+00 -3.124705 2.214258e-03 7.815803e-03
## SNRPD3 -9.824476e+00 6.628231e+01 -3.124282 2.217212e-03 7.823844e-03
## SBNO2 -4.252525e+01 1.072384e+02 -3.124190 2.217855e-03 7.823844e-03
## AGPAT5 2.379396e+00 9.237360e+00 3.122983 2.226298e-03 7.851292e-03
## KCTD2 -1.550255e+01 7.947674e+01 -3.122533 2.229455e-03 7.859378e-03
## FLAD1 -5.026901e+00 2.095031e+01 -3.122467 2.229916e-03 7.859378e-03
## SNIP1 3.303784e+00 1.656125e+01 3.121556 2.236319e-03 7.879602e-03
## MDN1 6.247320e+00 1.625109e+01 3.120108 2.246533e-03 7.911245e-03
## TTC7B 2.840051e+00 8.643513e+00 3.120094 2.246634e-03 7.911245e-03
## NAXE -9.767159e+00 2.138874e+01 -3.119577 2.250288e-03 7.921764e-03
## TGS1 2.597380e+00 1.334297e+01 3.119468 2.251059e-03 7.922126e-03
## POLR1E -2.483250e+00 7.351630e+00 -3.118960 2.254665e-03 7.932460e-03
## NBPF1 2.995247e+00 8.137959e+00 3.118811 2.255721e-03 7.932823e-03
## BCAS4 -2.756023e+00 3.058864e+00 -3.118756 2.256106e-03 7.932823e-03
## ZNF213 -1.763963e+00 6.368852e+00 -3.117872 2.262388e-03 7.951879e-03
## SFI1 -4.451845e+00 1.551822e+01 -3.117805 2.262866e-03 7.951879e-03
## DPH7 -6.999908e+00 1.941031e+01 -3.117454 2.265365e-03 7.958302e-03
## ZNF619 9.484269e-01 5.841133e+00 3.117106 2.267842e-03 7.964644e-03
## SLC27A5 -1.078389e+00 1.237225e+00 -3.116722 2.270582e-03 7.971907e-03
## CDIN1 3.425667e-01 9.359835e-01 3.116456 2.272484e-03 7.976223e-03
## PAK4 -6.415650e-01 2.334588e+00 -3.115757 2.277484e-03 7.990346e-03
## TOMM22 -9.932004e+00 3.776476e+01 -3.115705 2.277855e-03 7.990346e-03
## SFN -9.367490e-01 1.388447e+00 -3.114901 2.283614e-03 8.008178e-03
## PIEZO1 -1.042093e+01 2.345828e+01 -3.114459 2.286793e-03 8.016958e-03
## ATAD3B -3.140590e+00 5.989959e+00 -3.113668 2.292481e-03 8.034523e-03
## CTDSPL2 5.170603e+00 2.482936e+01 3.112448 2.301285e-03 8.062103e-03
## PSMC5 -1.770691e+01 6.931705e+01 -3.112305 2.302319e-03 8.062103e-03
## NBPF11 4.225317e+00 1.473116e+01 3.112295 2.302390e-03 8.062103e-03
## RUNX2 1.038413e+01 2.999564e+01 3.110559 2.314970e-03 8.103761e-03
## KLHL11 1.664696e+00 7.187823e+00 3.110117 2.318183e-03 8.112614e-03
## SMARCA5 1.210971e+01 7.238429e+01 3.109896 2.319797e-03 8.115666e-03
## AUH 1.502208e+00 6.933930e+00 3.109810 2.320424e-03 8.115666e-03
## ARHGAP27 -6.716770e+01 2.879656e+02 -3.109331 2.323910e-03 8.125462e-03
## SEL1L3 3.116833e+01 6.457743e+01 3.108389 2.330794e-03 8.147132e-03
## NCOA2 3.306669e+01 9.099769e+01 3.108248 2.331823e-03 8.148326e-03
## SPARC 1.273496e+02 2.452228e+02 3.107733 2.335596e-03 8.157063e-03
## NDUFA7 -6.067760e+00 1.563909e+01 -3.107719 2.335699e-03 8.157063e-03
## BCLAF3 4.577637e+00 1.529940e+01 3.106039 2.348040e-03 8.197748e-03
## IPO7 8.658290e+00 2.954097e+01 3.105429 2.352532e-03 8.211016e-03
## RPL37 -2.646421e+02 7.505007e+02 -3.104842 2.356867e-03 8.223727e-03
## LRRC34 4.913139e-01 1.853664e+00 3.104713 2.357820e-03 8.224630e-03
## BID -3.199003e+01 1.278205e+02 -3.104527 2.359196e-03 8.227011e-03
## SARS2 -2.253290e+00 4.118629e+00 -3.103684 2.365440e-03 8.246360e-03
## ERI3 -4.852639e+00 1.160699e+01 -3.103288 2.368373e-03 8.254158e-03
## HENMT1 -6.262719e+00 2.612720e+01 -3.103059 2.370075e-03 8.257664e-03
## HLA-DQB1 -4.450901e+01 8.499740e+01 -3.102743 2.372424e-03 8.263422e-03
## ZNF197 2.365334e+00 9.191447e+00 3.102290 2.375794e-03 8.272729e-03
## RAB27B 5.753497e+00 1.530065e+01 3.101716 2.380069e-03 8.285184e-03
## RGS16 6.655516e-01 1.018245e+00 3.101537 2.381401e-03 8.285741e-03
## CTSC -7.189480e+01 1.944628e+02 -3.101502 2.381664e-03 8.285741e-03
## DDX18 8.960200e+00 3.476933e+01 3.101413 2.382325e-03 8.285741e-03
## RCOR3 7.956961e+00 3.665050e+01 3.100804 2.386876e-03 8.299134e-03
## RFX5 9.485046e+00 3.812953e+01 3.099762 2.394682e-03 8.323835e-03
## FAM102B 3.985473e+00 2.062025e+01 3.098368 2.405156e-03 8.356692e-03
## MAT2B 2.912611e+01 1.422819e+02 3.098232 2.406179e-03 8.356692e-03
## DGKG 1.745605e+00 7.272686e+00 3.098223 2.406248e-03 8.356692e-03
## UBN2 3.783756e+00 1.534881e+01 3.097892 2.408742e-03 8.362905e-03
## TXLNG 2.728394e+00 9.740697e+00 3.097536 2.411429e-03 8.369781e-03
## CREBRF 7.923700e+01 1.868625e+02 3.096686 2.417851e-03 8.386813e-03
## CLASP1 9.469650e+00 3.223553e+01 3.096649 2.418132e-03 8.386813e-03
## MCEMP1 -3.349052e+02 4.061669e+02 -3.096606 2.418457e-03 8.386813e-03
## MUSTN1 -1.888119e+00 3.420320e+00 -3.096095 2.422327e-03 8.397779e-03
## DNAAF4 -1.419987e+00 3.362708e+00 -3.095361 2.427895e-03 8.414620e-03
## PLEKHO2 -1.046876e+02 3.508440e+02 -3.095248 2.428754e-03 8.415138e-03
## MRPL11 -9.087362e+00 1.970341e+01 -3.094742 2.432598e-03 8.425995e-03
## RMI2 1.433998e+00 2.761673e+00 3.093948 2.438647e-03 8.442603e-03
## PHTF2 4.113699e+00 2.344879e+01 3.093926 2.438816e-03 8.442603e-03
## GTF3A -2.183976e+01 9.971062e+01 -3.093153 2.444713e-03 8.460548e-03
## RCE1 -2.371085e+00 7.901381e+00 -3.092959 2.446198e-03 8.463218e-03
## RRP9 -2.192132e+00 4.980052e+00 -3.092548 2.449344e-03 8.469437e-03
## DENND1A -6.355294e+00 2.905876e+01 -3.092538 2.449424e-03 8.469437e-03
## TMEM209 2.099090e+00 1.012231e+01 3.091230 2.459456e-03 8.499427e-03
## NDUFAF8 -2.620533e+00 5.177936e+00 -3.091220 2.459531e-03 8.499427e-03
## CLPP -4.921387e+00 1.129989e+01 -3.090866 2.462255e-03 8.506362e-03
## SLC38A2 1.034688e+02 2.550631e+02 3.090665 2.463800e-03 8.509221e-03
## SPOCK2 -4.105418e+01 8.982975e+01 -3.090521 2.464909e-03 8.510575e-03
## SERTAD3 -9.578373e+00 3.845581e+01 -3.090385 2.465958e-03 8.511718e-03
## CST7 -3.211980e+02 4.633194e+02 -3.089937 2.469412e-03 8.521161e-03
## VEGFA 7.184210e+00 1.753790e+01 3.089816 2.470346e-03 8.521905e-03
## MEGF6 -6.684218e+00 1.931750e+01 -3.089646 2.471657e-03 8.523946e-03
## TMOD3 2.563702e+01 7.800535e+01 3.089308 2.474270e-03 8.530477e-03
## PAPOLA 5.699570e+01 2.530105e+02 3.088493 2.480575e-03 8.548905e-03
## TEX10 1.203682e+00 6.772992e+00 3.088431 2.481057e-03 8.548905e-03
## UBR5 2.694908e+01 1.123865e+02 3.088088 2.483716e-03 8.555582e-03
## UBE2T 2.747356e+00 3.633067e+00 3.087868 2.485424e-03 8.558982e-03
## TMPO 1.731543e+01 8.012343e+01 3.087131 2.491147e-03 8.576200e-03
## CLN3 -2.096863e+01 5.489069e+01 -3.086207 2.498347e-03 8.598488e-03
## UCK2 1.612236e+00 7.303900e+00 3.085764 2.501806e-03 8.607896e-03
## WDR36 3.233347e+00 1.407454e+01 3.084660 2.510438e-03 8.633727e-03
## SMARCAD1 3.764408e+00 1.120224e+01 3.084618 2.510769e-03 8.633727e-03
## VAC14 -2.678695e+00 9.370250e+00 -3.084436 2.512194e-03 8.636121e-03
## SELPLG -3.338458e+02 9.494910e+02 -3.084092 2.514890e-03 8.642885e-03
## DNAJB12 -7.925786e+00 4.418852e+01 -3.083947 2.516027e-03 8.644289e-03
## OGFOD1 2.265084e+00 1.351192e+01 3.083637 2.518465e-03 8.650156e-03
## YLPM1 3.355678e+00 1.652196e+01 3.083449 2.519946e-03 8.652740e-03
## GAMT -1.240043e+00 1.547255e+00 -3.083195 2.521943e-03 8.657090e-03
## STAB1 -3.728348e+01 8.270922e+01 -3.082024 2.531166e-03 8.684576e-03
## PATZ1 -4.003685e+00 1.413974e+01 -3.081993 2.531415e-03 8.684576e-03
## ZNF136 3.606459e+00 1.346685e+01 3.081518 2.535165e-03 8.692373e-03
## SPINT2 -2.087369e+01 5.487710e+01 -3.081508 2.535245e-03 8.692373e-03
## ZMAT3 4.005083e+00 2.203178e+01 3.081427 2.535886e-03 8.692373e-03
## FANCC 4.917496e-01 2.008549e+00 3.081082 2.538612e-03 8.699203e-03
## GET3 -1.229133e+01 4.197249e+01 -3.079896 2.548017e-03 8.728908e-03
## KANSL1L 3.076176e+00 9.319335e+00 3.079640 2.550049e-03 8.733347e-03
## SYNE1 4.826019e+01 1.224060e+02 3.078854 2.556309e-03 8.752258e-03
## ZSCAN32 3.693346e+00 1.941421e+01 3.078191 2.561593e-03 8.766611e-03
## EPHB1 4.724910e+00 1.101810e+01 3.078143 2.561979e-03 8.766611e-03
## NR2C2 1.820069e+01 5.029766e+01 3.077716 2.565387e-03 8.772537e-03
## IQCE -4.571527e+00 1.673687e+01 -3.077656 2.565868e-03 8.772537e-03
## TMEM159 1.951538e+00 1.023573e+01 3.077648 2.565930e-03 8.772537e-03
## GFUS -1.113200e+01 2.559143e+01 -3.077015 2.570993e-03 8.787312e-03
## WNT10B -1.242317e+00 2.295194e+00 -3.076848 2.572329e-03 8.789347e-03
## PSMD11 3.829760e+00 3.415894e+01 3.075715 2.581427e-03 8.817895e-03
## UBN1 6.119814e+01 2.279030e+02 3.075468 2.583413e-03 8.822136e-03
## FHL2 1.482182e+00 4.269777e+00 3.075134 2.586103e-03 8.828781e-03
## RP9 -2.968526e+00 7.968395e+00 -3.074934 2.587713e-03 8.831733e-03
## CSE1L 4.459975e+00 2.860318e+01 3.074652 2.589985e-03 8.836946e-03
## YY1 1.563206e+01 1.061422e+02 3.073322 2.600725e-03 8.871037e-03
## ALMS1 1.844296e+00 5.039630e+00 3.072885 2.604269e-03 8.880573e-03
## TBCK 2.358863e+00 8.811330e+00 3.072476 2.607581e-03 8.889219e-03
## HIBCH 2.558266e+00 7.869389e+00 3.072325 2.608813e-03 8.889219e-03
## RITA1 -2.121451e+00 6.178398e+00 -3.072295 2.609053e-03 8.889219e-03
## ERCC3 3.363731e+00 2.778887e+01 3.071888 2.612363e-03 8.897940e-03
## ANKFY1 1.599028e+01 5.898861e+01 3.071462 2.615826e-03 8.907177e-03
## FKBPL -3.002982e+00 8.103339e+00 -3.071228 2.617730e-03 8.911100e-03
## RPS28 -1.489976e+02 1.339300e+02 -3.070582 2.622991e-03 8.926448e-03
## CD79A -2.269996e+01 3.696312e+01 -3.070115 2.626806e-03 8.936866e-03
## AP3D1 -5.433697e+00 3.915788e+01 -3.069924 2.628369e-03 8.939620e-03
## CDK5RAP1 -3.919485e+00 1.508499e+01 -3.069791 2.629452e-03 8.940739e-03
## TRUB1 1.526279e+00 4.664349e+00 3.069645 2.630651e-03 8.942252e-03
## CBX1 1.090722e+01 4.810889e+01 3.069126 2.634894e-03 8.951836e-03
## TG 1.773410e+00 2.999186e+00 3.069116 2.634980e-03 8.951836e-03
## POLR3B 6.354001e-01 3.886780e+00 3.068569 2.639464e-03 8.964504e-03
## CNPY4 -2.335653e+00 1.075072e+01 -3.067690 2.646684e-03 8.985891e-03
## SMIM19 -2.147830e+00 1.051331e+01 -3.067618 2.647277e-03 8.985891e-03
## TRNT1 2.675833e+00 1.629360e+01 3.067391 2.649144e-03 8.988839e-03
## NDUFS3 -8.145994e+00 3.057298e+01 -3.067329 2.649661e-03 8.988839e-03
## RRP7A -1.675507e+01 3.740405e+01 -3.066521 2.656320e-03 9.008853e-03
## TRANK1 5.298462e+01 1.464117e+02 3.065912 2.661353e-03 9.023340e-03
## MGA 4.590545e+00 1.588797e+01 3.065720 2.662937e-03 9.026130e-03
## MBD1 5.118474e+00 4.770795e+01 3.065351 2.665994e-03 9.033911e-03
## SSH3 -7.442391e+00 2.604403e+01 -3.064934 2.669446e-03 9.043025e-03
## DOP1A 3.117766e+00 9.170055e+00 3.063944 2.677666e-03 9.067122e-03
## CD52 -2.480024e+02 4.501647e+02 -3.063894 2.678088e-03 9.067122e-03
## ORAI1 -1.122575e+01 1.950644e+01 -3.062797 2.687222e-03 9.093795e-03
## PAFAH1B3 -2.995974e+00 4.704533e+00 -3.062764 2.687500e-03 9.093795e-03
## PHF3 2.636336e+01 9.405755e+01 3.062576 2.689068e-03 9.096504e-03
## USP5 -9.923964e+00 2.845790e+01 -3.062288 2.691475e-03 9.102052e-03
## AASS 4.160259e-01 1.022028e+00 3.061817 2.695409e-03 9.109142e-03
## ST6GALNAC6 -1.166807e+01 3.027056e+01 -3.061776 2.695758e-03 9.109142e-03
## F13A1 9.311826e+01 2.145782e+02 3.061761 2.695876e-03 9.109142e-03
## DNAJC9 5.137893e+00 1.594943e+01 3.061645 2.696846e-03 9.109825e-03
## CHD8 1.225705e+01 7.355215e+01 3.061536 2.697761e-03 9.110321e-03
## FAM3C 4.288314e+00 1.279755e+01 3.060918 2.702939e-03 9.123959e-03
## RFXANK -1.739066e+01 4.244945e+01 -3.060871 2.703338e-03 9.123959e-03
## SHLD3 8.103918e-01 3.902340e+00 3.060472 2.706688e-03 9.132667e-03
## FAHD1 -1.455087e+00 5.384156e+00 -3.059786 2.712457e-03 9.146197e-03
## CUL2 3.267894e+00 2.219729e+01 3.059777 2.712528e-03 9.146197e-03
## BFAR 2.771564e+00 2.622119e+01 3.059720 2.713012e-03 9.146197e-03
## TRAPPC2 1.962000e+00 1.772602e+01 3.058909 2.719846e-03 9.166630e-03
## MSRB1 -3.065653e+02 7.424339e+02 -3.058500 2.723296e-03 9.175650e-03
## ANAPC11 -6.745225e+00 1.364216e+01 -3.058150 2.726253e-03 9.183004e-03
## RNF38 1.990595e+01 6.358499e+01 3.058019 2.727363e-03 9.184134e-03
## ME3 -6.536749e-01 1.309368e+00 -3.057549 2.731341e-03 9.193498e-03
## PYCR1 1.916721e+00 2.020009e+00 3.057507 2.731694e-03 9.193498e-03
## C20orf27 -1.482080e+01 2.245078e+01 -3.055762 2.746516e-03 9.240759e-03
## NCBP1 3.421997e+00 2.127427e+01 3.055409 2.749523e-03 9.248254e-03
## CARMIL1 6.591257e-01 1.526675e+00 3.055153 2.751699e-03 9.252949e-03
## GOPC 4.749444e+00 2.275215e+01 3.055023 2.752810e-03 9.253583e-03
## ETHE1 -9.003359e+00 2.039038e+01 -3.054948 2.753448e-03 9.253583e-03
## STX2 2.434428e+00 1.068066e+01 3.054264 2.759295e-03 9.270607e-03
## GADD45GIP1 -1.264300e+01 1.349253e+01 -3.054000 2.761548e-03 9.274456e-03
## LZTS2 -1.601724e+00 4.465167e+00 -3.053947 2.762005e-03 9.274456e-03
## UBE2K 6.947759e+00 5.215666e+01 3.053404 2.766659e-03 9.287453e-03
## NHP2 -7.335961e+00 1.478487e+01 -3.053303 2.767517e-03 9.287705e-03
## TRIM68 1.269788e+00 6.333891e+00 3.053129 2.769009e-03 9.290084e-03
## C1orf198 2.104111e+00 6.082813e+00 3.052400 2.775273e-03 9.308467e-03
## PGAP1 1.301816e+00 2.596372e+00 3.051947 2.779170e-03 9.318903e-03
## DMAC1 -5.472518e+00 1.317692e+01 -3.051322 2.784552e-03 9.334309e-03
## MRPL54 -1.111058e+01 2.150218e+01 -3.050866 2.788483e-03 9.344846e-03
## UQCR10 -1.433678e+01 4.208845e+01 -3.049793 2.797766e-03 9.372367e-03
## NR2C2AP -2.202140e+00 6.491272e+00 -3.049734 2.798276e-03 9.372367e-03
## PSMG2 -4.531662e+00 2.825350e+01 -3.049633 2.799148e-03 9.372640e-03
## PTPA -2.231795e+01 6.543058e+01 -3.049216 2.802764e-03 9.382100e-03
## NREP 1.687074e+00 8.542821e+00 3.048597 2.808142e-03 9.397449e-03
## MTA1 -2.138623e+00 8.067803e+00 -3.048313 2.810604e-03 9.403035e-03
## FBXL6 -3.254256e+00 6.115787e+00 -3.048039 2.812991e-03 9.408369e-03
## MFSD5 -7.227039e+00 2.866155e+01 -3.047861 2.814544e-03 9.410254e-03
## LIME1 -9.176110e+00 8.501134e+00 -3.047792 2.815142e-03 9.410254e-03
## FLCN 1.458787e+01 4.531634e+01 3.047565 2.817123e-03 9.414222e-03
## YWHAH 3.394943e+01 1.134181e+02 3.046844 2.823406e-03 9.432394e-03
## ZNF587 5.138769e+00 1.715486e+01 3.046759 2.824151e-03 9.432394e-03
## BAG1 -2.750289e+01 7.074354e+01 -3.046419 2.827124e-03 9.439666e-03
## ZFC3H1 1.479983e+01 5.988510e+01 3.046168 2.829322e-03 9.442230e-03
## ZEB1 7.702768e+00 2.465885e+01 3.045999 2.830797e-03 9.442230e-03
## THAP9 5.207960e-01 2.111199e+00 3.045974 2.831016e-03 9.442230e-03
## VPS33A 2.768906e+00 2.945702e+01 3.045967 2.831077e-03 9.442230e-03
## YBEY -1.764978e+00 5.374931e+00 -3.045186 2.837923e-03 9.462404e-03
## CS 8.382804e+00 6.918905e+01 3.043122 2.856089e-03 9.520295e-03
## COIL 1.597559e+00 1.150454e+01 3.042855 2.858448e-03 9.525484e-03
## C1orf109 9.002500e-01 3.256964e+00 3.042723 2.859609e-03 9.526673e-03
## PER2 1.809656e+00 7.395293e+00 3.042234 2.863936e-03 9.538411e-03
## TBCA -1.114828e+01 4.722366e+01 -3.041896 2.866928e-03 9.544887e-03
## MRPL23 -9.154183e+00 1.853853e+01 -3.041817 2.867626e-03 9.544887e-03
## IFIT5 5.772589e+01 8.400345e+01 3.041655 2.869067e-03 9.544887e-03
## F12 -8.465408e-01 1.546974e+00 -3.041651 2.869100e-03 9.544887e-03
## CMC2 2.932365e+00 1.266003e+01 3.041416 2.871182e-03 9.549135e-03
## PAF1 -1.060906e+01 4.691603e+01 -3.041180 2.873280e-03 9.553434e-03
## ARID2 5.550827e+00 2.132931e+01 3.040617 2.878273e-03 9.567354e-03
## MPP6 9.974643e-01 2.802503e+00 3.040297 2.881121e-03 9.574138e-03
## ATP6AP1 -2.956231e+01 1.256068e+02 -3.039835 2.885241e-03 9.585142e-03
## H2BC5 1.153660e+01 1.996329e+01 3.039054 2.892206e-03 9.605591e-03
## CASP7 6.238096e+00 1.821751e+01 3.038648 2.895828e-03 9.614929e-03
## KCNA3 1.995341e+00 4.606723e+00 3.038527 2.896911e-03 9.615830e-03
## TRPM2 -1.278587e+01 2.399374e+01 -3.036693 2.913356e-03 9.667713e-03
## CUL4A 4.638954e+00 3.796653e+01 3.036540 2.914731e-03 9.669569e-03
## QSER1 2.230255e+00 6.886135e+00 3.035505 2.924057e-03 9.697797e-03
## CTU2 -9.378092e-01 2.152264e+00 -3.034819 2.930247e-03 9.715607e-03
## SAMD9L 1.624020e+02 2.506602e+02 3.034538 2.932790e-03 9.721323e-03
## RIC8A -9.931683e+00 7.083822e+01 -3.034224 2.935629e-03 9.728014e-03
## MAPRE2 7.292545e+00 3.949713e+01 3.033587 2.941403e-03 9.744426e-03
## NR1D1 -1.012471e+00 1.989791e+00 -3.033426 2.942862e-03 9.746534e-03
## SMAP1 -2.829481e+00 2.645970e+01 -3.033165 2.945232e-03 9.751660e-03
## DNAJC8 -1.356839e+01 8.880909e+01 -3.032988 2.946844e-03 9.754275e-03
## CDKN1C -4.341767e+00 3.971863e+00 -3.031519 2.960218e-03 9.795812e-03
## COMMD7 -9.192467e+00 3.257114e+01 -3.031145 2.963628e-03 9.802903e-03
## ITPA -7.250592e+00 1.822375e+01 -3.031086 2.964163e-03 9.802903e-03
## CUL1 1.035875e+01 3.484763e+01 3.030963 2.965291e-03 9.802903e-03
## RNF144A 2.792790e+00 1.045950e+01 3.030922 2.965667e-03 9.802903e-03
## R3HDM1 1.900186e+00 1.206262e+01 3.030464 2.969854e-03 9.814007e-03
## IDH1 1.658158e+01 6.050865e+01 3.030022 2.973897e-03 9.824631e-03
## ANGEL2 2.634216e+00 1.761940e+01 3.029873 2.975271e-03 9.824929e-03
## URGCP -2.045219e+00 6.727349e+00 -3.029832 2.975645e-03 9.824929e-03
## ATG7 -9.889167e+00 6.132540e+01 -3.029536 2.978362e-03 9.831164e-03
## SCFD2 1.723989e+00 7.682012e+00 3.029155 2.981856e-03 9.839958e-03
## GLCCI1 7.544349e+00 2.352113e+01 3.028211 2.990536e-03 9.865856e-03
## COPS9 -7.110651e+00 1.397782e+01 -3.027991 2.992566e-03 9.869808e-03
## TMEM104 -2.571866e+00 1.124395e+01 -3.027463 2.997431e-03 9.883104e-03
## RRAS -8.709565e+00 1.392990e+01 -3.027140 3.000411e-03 9.890183e-03
## SMIM3 1.799728e+01 4.929895e+01 3.026382 3.007429e-03 9.910559e-03
## BAZ2B 2.986464e+01 9.035474e+01 3.026136 3.009708e-03 9.915316e-03
## POLR3G 4.767389e-01 1.347490e+00 3.025624 3.014451e-03 9.928182e-03
## GPANK1 -9.323666e+00 3.499910e+01 -3.025232 3.018085e-03 9.935241e-03
## SOCS5 6.963958e+00 1.694297e+01 3.025141 3.018931e-03 9.935241e-03
## MPV17L 1.006293e+00 3.473934e+00 3.025112 3.019203e-03 9.935241e-03
## ZNF808 2.025744e+00 6.967464e+00 3.025032 3.019945e-03 9.935241e-03
## NEXN 5.629392e+00 9.894202e+00 3.024832 3.021808e-03 9.938613e-03
## FAR2 2.526812e+01 5.885948e+01 3.024648 3.023520e-03 9.941487e-03
## CDKN2D -1.040403e+02 2.568970e+02 -3.023739 3.031983e-03 9.966553e-03
## PHETA2 -1.071668e+00 4.191451e+00 -3.023318 3.035913e-03 9.976705e-03
## INTS13 1.865513e+00 1.106256e+01 3.023025 3.038651e-03 9.982936e-03
## TMEM87A 5.483609e+00 3.802758e+01 3.022600 3.042628e-03 9.993235e-03
## UGDH 1.395814e+00 6.331026e+00 3.022335 3.045111e-03 9.997781e-03
## PNRC2 2.110622e+01 1.367760e+02 3.022272 3.045698e-03 9.997781e-03
## TENT5A 1.127710e+01 3.525549e+01 3.022054 3.047740e-03 1.000003e-02
## U2AF1L5 -1.122393e+01 4.876335e+01 -3.022019 3.048071e-03 1.000003e-02
## POLR3H -4.491104e+00 1.125702e+01 -3.021919 3.049005e-03 1.000033e-02
## UQCRFS1 -1.837235e+01 6.939107e+01 -3.020687 3.060578e-03 1.003552e-02
## SLC27A4 -3.226147e+00 7.812821e+00 -3.019936 3.067654e-03 1.005525e-02
## MTMR4 1.016514e+01 4.664058e+01 3.019868 3.068291e-03 1.005525e-02
## TRIM58 1.914333e+01 4.058413e+01 3.019523 3.071547e-03 1.006313e-02
## MITF 9.470966e-01 3.186825e+00 3.018595 3.080321e-03 1.008909e-02
## UBC -1.004961e+03 3.852682e+03 -3.018494 3.081272e-03 1.008942e-02
## KCTD13 -1.931632e+00 8.575395e+00 -3.017954 3.086386e-03 1.010338e-02
## LCOR 1.816003e+01 5.215263e+01 3.017833 3.087534e-03 1.010435e-02
## TARDBP 9.834519e+00 8.104648e+01 3.016565 3.099584e-03 1.014098e-02
## KLHL25 -4.419844e-01 9.562206e-01 -3.015592 3.108860e-03 1.016827e-02
## TMEM39A 4.186615e+00 1.924127e+01 3.015511 3.109638e-03 1.016827e-02
## FBXL19 -2.578360e+00 9.718664e+00 -3.014427 3.120004e-03 1.019935e-02
## VPS37B -1.453474e+01 5.135728e+01 -3.014178 3.122383e-03 1.020432e-02
## C6orf136 -1.338620e+00 6.670025e+00 -3.013068 3.133043e-03 1.023633e-02
## NLE1 -1.634204e+00 4.429862e+00 -3.012969 3.133988e-03 1.023660e-02
## VCPIP1 4.166757e+01 1.132242e+02 3.012554 3.137989e-03 1.024685e-02
## RPSA -4.328294e+02 9.156639e+02 -3.012005 3.143277e-03 1.026129e-02
## TRIM46 -6.259933e-01 1.150601e+00 -3.011728 3.145942e-03 1.026716e-02
## FNDC3B 3.690902e+01 9.921672e+01 3.011397 3.149146e-03 1.027479e-02
## DCAF17 2.231309e+00 7.498758e+00 3.011180 3.151240e-03 1.027880e-02
## TRMT13 2.264781e+00 8.742033e+00 3.010547 3.157364e-03 1.029594e-02
## NCOA7 1.920315e+01 3.206978e+01 3.010399 3.158796e-03 1.029778e-02
## DOCK7 9.933157e-01 2.774259e+00 3.010277 3.159979e-03 1.029880e-02
## UBE4A 1.606861e+01 6.951969e+01 3.009952 3.163125e-03 1.030623e-02
## GATA3 -3.228773e+00 4.840346e+00 -3.009771 3.164886e-03 1.030913e-02
## ERCC2 -2.465377e+00 5.580682e+00 -3.009162 3.170800e-03 1.032556e-02
## EXOC2 3.931499e+00 1.759741e+01 3.008820 3.174123e-03 1.033354e-02
## LRRC7 -3.917712e-01 1.081276e+00 -3.008438 3.177844e-03 1.034282e-02
## TBCEL 2.822123e+00 7.423975e+00 3.008332 3.178875e-03 1.034333e-02
## HSD3B7 -2.677699e+00 5.049075e+00 -3.008103 3.181108e-03 1.034603e-02
## GUCY1A1 3.532386e+00 6.703931e+00 3.008068 3.181447e-03 1.034603e-02
## POU2F1 4.101558e+00 1.961298e+01 3.007854 3.183542e-03 1.034881e-02
## HPS1 -1.433163e+01 6.547653e+01 -3.007802 3.184047e-03 1.034881e-02
## GPATCH1 1.122323e+00 6.017622e+00 3.007475 3.187235e-03 1.035633e-02
## CLOCK 2.021227e+00 7.306462e+00 3.007037 3.191515e-03 1.036740e-02
## ZNF684 3.590475e+00 5.441514e+00 3.006056 3.201127e-03 1.039577e-02
## ZBTB20 2.066161e+00 6.400153e+00 3.005805 3.203585e-03 1.040091e-02
## SKIV2L -7.185172e+00 4.727971e+01 -3.004127 3.220097e-03 1.045166e-02
## WBP2 -4.149954e+01 1.803700e+02 -3.003593 3.225362e-03 1.046533e-02
## CBX7 -1.638532e+01 8.334104e+01 -3.003521 3.226076e-03 1.046533e-02
## NDUFB9 -1.973244e+01 6.045578e+01 -3.002905 3.232160e-03 1.048220e-02
## UTP18 -3.746052e+00 2.293167e+01 -3.002435 3.236816e-03 1.049443e-02
## ZNF468 3.118177e+00 1.291771e+01 3.002315 3.238003e-03 1.049541e-02
## PTCD2 9.420270e-01 3.773746e+00 3.001749 3.243616e-03 1.051073e-02
## GDPGP1 -5.077848e-01 2.245276e+00 -3.001433 3.246759e-03 1.051804e-02
## AUP1 -3.030509e+01 1.253401e+02 -3.001290 3.248181e-03 1.051978e-02
## MFNG -2.387221e+01 8.476068e+01 -3.000974 3.251323e-03 1.052142e-02
## ZNF460 4.535635e-01 1.432244e+00 3.000919 3.251866e-03 1.052142e-02
## CEP350 1.919770e+01 6.702272e+01 3.000883 3.252226e-03 1.052142e-02
## SLC27A2 1.517436e+00 1.900271e+00 3.000882 3.252236e-03 1.052142e-02
## MFSD6 2.924379e+00 1.397862e+01 3.000232 3.258707e-03 1.053948e-02
## SIRT1 7.766878e+00 2.661332e+01 3.000134 3.259688e-03 1.053978e-02
## PROCA1 -1.519657e+00 3.907384e+00 -2.999758 3.263436e-03 1.054902e-02
## GEMIN6 -2.108795e+00 1.045493e+01 -2.999274 3.268273e-03 1.056178e-02
## TMED7 1.145729e+01 4.681076e+01 2.998195 3.279073e-03 1.059379e-02
## CNPPD1 -3.018029e+01 1.013221e+02 -2.998103 3.279993e-03 1.059388e-02
## BEX2 -2.232294e+00 4.092596e+00 -2.997178 3.289282e-03 1.062099e-02
## ZRANB3 3.305188e-01 1.510941e+00 2.996030 3.300851e-03 1.065544e-02
## ACBD5 5.761331e+00 2.471806e+01 2.995337 3.307848e-03 1.067512e-02
## SNTB2 7.551490e+00 2.300223e+01 2.995119 3.310050e-03 1.067932e-02
## COG8 1.230036e+00 1.378825e+01 2.994886 3.312406e-03 1.068334e-02
## ITCH 2.606287e+01 9.900280e+01 2.994818 3.313095e-03 1.068334e-02
## SRP54 7.937710e+00 4.311980e+01 2.994418 3.317143e-03 1.069348e-02
## BLVRB -2.684620e+01 4.367586e+01 -2.993848 3.322929e-03 1.070922e-02
## ITSN2 3.575028e+01 1.178624e+02 2.993671 3.324726e-03 1.071210e-02
## DUSP7 -4.914820e+00 2.252231e+01 -2.993439 3.327078e-03 1.071677e-02
## MCU 9.433737e+00 3.360175e+01 2.993056 3.330978e-03 1.072642e-02
## COPA 2.589342e+01 1.265631e+02 2.992798 3.333598e-03 1.073194e-02
## FGFR1 1.814401e+00 5.117522e+00 2.992312 3.338552e-03 1.074497e-02
## VPS36 7.282680e+00 3.787610e+01 2.992046 3.341270e-03 1.075080e-02
## CDYL 1.541616e+00 1.183027e+01 2.991606 3.345757e-03 1.076232e-02
## EPS8L2 -1.272138e+00 2.161680e+00 -2.991477 3.347079e-03 1.076365e-02
## IFIH1 5.681801e+01 7.607794e+01 2.991305 3.348835e-03 1.076638e-02
## RARA -4.111851e+01 1.399666e+02 -2.989922 3.362996e-03 1.080898e-02
## TNFRSF25 -4.324599e+00 6.405671e+00 -2.989765 3.364610e-03 1.080974e-02
## BCOR 3.377003e+00 1.210760e+01 2.989722 3.365055e-03 1.080974e-02
## INO80C -1.446627e+00 8.325959e+00 -2.988470 3.377928e-03 1.084815e-02
## STT3B 1.857556e+01 1.144594e+02 2.988302 3.379659e-03 1.085077e-02
## VASP -2.264187e+02 8.106965e+02 -2.988045 3.382317e-03 1.085637e-02
## BTG3 1.445376e+00 3.740489e+00 2.987913 3.383670e-03 1.085734e-02
## ZNF791 3.049531e+00 2.165035e+01 2.987780 3.385048e-03 1.085734e-02
## CUL5 3.368105e+00 1.720670e+01 2.987749 3.385365e-03 1.085734e-02
## LMF1 -9.438660e-01 2.269577e+00 -2.987491 3.388034e-03 1.086296e-02
## HCLS1 -4.308708e+02 1.384445e+03 -2.987368 3.389306e-03 1.086343e-02
## CDK11B -1.043721e+01 5.065261e+01 -2.987299 3.390014e-03 1.086343e-02
## SRSF9 -2.174552e+01 1.132605e+02 -2.986133 3.402088e-03 1.089918e-02
## TMEM241 5.348731e-01 2.146202e+00 2.985892 3.404591e-03 1.090425e-02
## TCERG1 3.794992e+00 1.565597e+01 2.985673 3.406868e-03 1.090860e-02
## DGUOK -1.103709e+01 4.071040e+01 -2.984278 3.421386e-03 1.095213e-02
## KCNC4 -3.722196e-01 8.713637e-01 -2.984115 3.423083e-03 1.095460e-02
## OSBPL3 3.364061e+00 1.017479e+01 2.983897 3.425355e-03 1.095818e-02
## LAMTOR1 -7.525470e+01 2.472719e+02 -2.983831 3.426047e-03 1.095818e-02
## MRPL33 -5.553233e+00 3.856385e+01 -2.982999 3.434738e-03 1.097898e-02
## GOLGA2 6.815267e+00 3.262925e+01 2.982981 3.434926e-03 1.097898e-02
## RFXAP 7.181807e-01 3.263114e+00 2.982943 3.435327e-03 1.097898e-02
## ZKSCAN8 3.897961e+00 1.158964e+01 2.982261 3.442476e-03 1.099886e-02
## LOC100421372 1.556343e+00 1.044805e+01 2.981131 3.454342e-03 1.103380e-02
## KCND1 4.244484e+00 8.704328e+00 2.980844 3.457356e-03 1.104045e-02
## RPS29 -1.499165e+02 3.203185e+02 -2.979992 3.466339e-03 1.106616e-02
## GGT6 -4.319240e-01 1.189500e+00 -2.978250 3.484770e-03 1.112200e-02
## SHISA4 -7.507021e-01 1.411928e+00 -2.977631 3.491335e-03 1.113996e-02
## PRSS36 -1.697838e+00 3.097334e+00 -2.977238 3.495518e-03 1.115031e-02
## B4GALT5 1.355415e+02 3.283939e+02 2.977020 3.497834e-03 1.115470e-02
## NME4 -5.006775e+00 1.014303e+01 -2.976344 3.505040e-03 1.117467e-02
## FTH1 -2.088952e+03 5.797449e+03 -2.976022 3.508472e-03 1.118261e-02
## NDUFB10 -1.727487e+01 3.962241e+01 -2.974930 3.520142e-03 1.121679e-02
## ARFGEF1 2.118575e+01 7.973127e+01 2.974188 3.528087e-03 1.123909e-02
## EHMT2 -5.067861e+00 1.617896e+01 -2.973949 3.530654e-03 1.124424e-02
## MED12 1.110381e+01 3.561850e+01 2.973752 3.532771e-03 1.124617e-02
## FRMD8 -8.806580e+00 4.482045e+01 -2.973716 3.533156e-03 1.124617e-02
## EIF2S1 4.621582e+00 3.251727e+01 2.973081 3.539980e-03 1.126276e-02
## AARSD1 -3.365532e+00 8.709452e+00 -2.973055 3.540267e-03 1.126276e-02
## PLCE1 -4.600599e-01 1.467656e+00 -2.972369 3.547657e-03 1.128324e-02
## SUGP2 7.814532e+00 4.621708e+01 2.971049 3.561904e-03 1.132552e-02
## DNM2 -2.612683e+01 1.414486e+02 -2.970545 3.567361e-03 1.133983e-02
## FAM216A -6.063096e-01 2.930699e+00 -2.969113 3.582909e-03 1.138620e-02
## SNN 6.638427e+01 2.542842e+02 2.968109 3.593852e-03 1.141550e-02
## CREG1 2.591899e+01 1.090574e+02 2.968090 3.594055e-03 1.141550e-02
## COL8A2 -9.716735e-01 2.827473e+00 -2.966729 3.608938e-03 1.145971e-02
## DUSP12 -2.008608e+00 1.244491e+01 -2.965977 3.617176e-03 1.148279e-02
## CENPS 4.096413e-01 1.065779e+00 2.965459 3.622873e-03 1.149780e-02
## TMEM219 -2.641559e+01 7.548929e+01 -2.965315 3.624448e-03 1.149972e-02
## ALAS1 9.845518e+00 5.096235e+01 2.965088 3.626946e-03 1.150457e-02
## PPTC7 2.204826e+01 7.583239e+01 2.964311 3.635510e-03 1.152793e-02
## REL 3.014773e+01 1.015583e+02 2.964243 3.636257e-03 1.152793e-02
## LAS1L -4.658489e+00 1.644443e+01 -2.964041 3.638482e-03 1.153191e-02
## ULK1 -1.690506e+01 5.273353e+01 -2.961724 3.664139e-03 1.161012e-02
## DHFR2 1.426809e+00 5.450357e+00 2.961311 3.668726e-03 1.162155e-02
## NIPBL 3.143823e+01 1.104868e+02 2.960485 3.677922e-03 1.164757e-02
## ZBED4 2.071691e+00 1.134551e+01 2.959968 3.683682e-03 1.166270e-02
## SUCLA2 2.436987e+00 1.166638e+01 2.958667 3.698232e-03 1.170564e-02
## PIM2 3.170542e+01 1.381539e+02 2.958557 3.699461e-03 1.170640e-02
## KRTCAP2 -1.552190e+01 3.171061e+01 -2.957841 3.707494e-03 1.172870e-02
## MOB1B 4.394054e+00 1.889591e+01 2.957543 3.710839e-03 1.173615e-02
## TNK1 -8.999750e-01 1.346362e+00 -2.957309 3.713473e-03 1.174135e-02
## GALNT7 1.279350e+01 3.724127e+01 2.957020 3.716723e-03 1.174849e-02
## RIN3 -4.468593e+01 1.458163e+02 -2.956757 3.719687e-03 1.175473e-02
## ZNF620 2.484710e-01 1.111005e+00 2.956249 3.725408e-03 1.176893e-02
## KLF3 5.487070e+01 1.861907e+02 2.956182 3.726166e-03 1.176893e-02
## RBL2 5.204807e+01 1.712824e+02 2.955641 3.732273e-03 1.178508e-02
## DNM3 1.984344e+00 5.609791e+00 2.955527 3.733559e-03 1.178600e-02
## TMPRSS13 -6.393304e-01 1.618883e+00 -2.955246 3.736730e-03 1.179287e-02
## SLC25A20 -7.358681e+00 4.535745e+01 -2.954764 3.742191e-03 1.180697e-02
## MYC -8.193839e+00 2.615070e+01 -2.954407 3.746230e-03 1.181575e-02
## FBXW8 1.204925e+00 3.216289e+00 2.954342 3.746968e-03 1.181575e-02
## ALYREF -5.872040e+00 1.808976e+01 -2.953425 3.757385e-03 1.184545e-02
## RBM18 4.785133e+00 2.740087e+01 2.953273 3.759107e-03 1.184773e-02
## KPNA5 8.727140e+00 2.838497e+01 2.953142 3.760601e-03 1.184929e-02
## VTI1A 4.515669e+00 2.549703e+01 2.952770 3.764832e-03 1.185947e-02
## PDAP1 -1.280910e+01 7.026995e+01 -2.952598 3.766791e-03 1.186249e-02
## INO80 3.589599e+00 2.256520e+01 2.952459 3.768372e-03 1.186432e-02
## ESCO1 5.538263e+00 2.550469e+01 2.952290 3.770302e-03 1.186725e-02
## NBPF3 1.790105e+00 5.432229e+00 2.951943 3.774253e-03 1.187653e-02
## NDUFS6 -9.224464e+00 1.720792e+01 -2.951785 3.776061e-03 1.187907e-02
## PIGBOS1 -3.428067e+00 1.692936e+01 -2.951113 3.783738e-03 1.190006e-02
## ZNF318 7.820271e+00 2.568627e+01 2.950302 3.793030e-03 1.192610e-02
## AIDA 6.450823e+00 5.059493e+01 2.950215 3.794028e-03 1.192610e-02
## ACSS2 -8.859679e+00 4.490624e+01 -2.949736 3.799523e-03 1.194021e-02
## SYTL4 1.317986e+00 3.325325e+00 2.948378 3.815152e-03 1.198615e-02
## EFCAB11 3.880701e-01 1.920036e+00 2.948223 3.816937e-03 1.198616e-02
## MTIF3 -9.190329e+00 4.236750e+01 -2.948202 3.817176e-03 1.198616e-02
## FAM185A 5.152473e-01 2.421610e+00 2.948059 3.818829e-03 1.198817e-02
## ABHD14A -2.196400e+00 4.115691e+00 -2.947814 3.821659e-03 1.199388e-02
## DIP2A 7.762184e+00 3.502928e+01 2.947297 3.827627e-03 1.200943e-02
## C12orf4 2.848213e+00 1.173463e+01 2.947069 3.830258e-03 1.201451e-02
## XPA -1.480449e+00 7.300014e+00 -2.946138 3.841049e-03 1.204517e-02
## NUP85 -2.963255e+00 2.246862e+01 -2.946027 3.842338e-03 1.204603e-02
## ARHGAP18 5.673784e+00 2.449746e+01 2.945558 3.847781e-03 1.205991e-02
## PIGF 2.722619e+00 1.674583e+01 2.945215 3.851763e-03 1.206920e-02
## STIM1 1.075959e+01 7.598464e+01 2.944421 3.861006e-03 1.209496e-02
## NPIPB11 1.318941e+00 3.952164e+00 2.944148 3.864187e-03 1.210018e-02
## ATXN7L3B 8.420384e+00 5.556249e+01 2.944104 3.864710e-03 1.210018e-02
## BICRAL 1.462595e+01 4.974306e+01 2.943707 3.869333e-03 1.211145e-02
## AVL9 1.466257e+01 6.014709e+01 2.943035 3.877195e-03 1.213286e-02
## MTHFD1L 9.451989e-01 2.951414e+00 2.942873 3.879086e-03 1.213445e-02
## SERTAD1 -4.910119e+00 1.194549e+01 -2.942798 3.879969e-03 1.213445e-02
## DRAM2 -8.329028e+00 5.342142e+01 -2.942729 3.880775e-03 1.213445e-02
## AKAP9 8.570839e+00 3.393378e+01 2.942625 3.881988e-03 1.213505e-02
## ZNF639 2.536883e+00 1.376298e+01 2.942396 3.884678e-03 1.214026e-02
## FBXL4 5.060453e+00 1.877315e+01 2.941377 3.896636e-03 1.217442e-02
## RBMXL1 4.716220e+00 2.344773e+01 2.940739 3.904137e-03 1.219464e-02
## CBLL1 5.202860e+00 2.807184e+01 2.940586 3.905943e-03 1.219707e-02
## IFNLR1 1.085119e+00 5.060651e+00 2.939775 3.915499e-03 1.222369e-02
## ALDH6A1 1.170663e+00 8.584034e+00 2.939380 3.920174e-03 1.223507e-02
## RTN2 -3.111622e+00 7.924557e+00 -2.939213 3.922140e-03 1.223798e-02
## ZNF324B -4.280196e-01 1.494305e+00 -2.938677 3.928487e-03 1.225457e-02
## PPP2R5C 2.629579e+01 1.555864e+02 2.938182 3.934345e-03 1.226699e-02
## MAPK13 3.940119e+01 1.071179e+02 2.938166 3.934538e-03 1.226699e-02
## ITPRIPL2 2.870848e+00 1.257233e+01 2.937939 3.937227e-03 1.226905e-02
## PCYT2 -4.741996e+00 1.050559e+01 -2.937921 3.937445e-03 1.226905e-02
## ZDHHC17 1.717985e+01 5.333495e+01 2.937849 3.938304e-03 1.226905e-02
## FBF1 -1.803043e+00 3.855134e+00 -2.937031 3.948018e-03 1.229609e-02
## AK9 1.210307e+00 4.325557e+00 2.936441 3.955046e-03 1.231474e-02
## PEA15 -1.489901e+01 5.234471e+01 -2.936021 3.960049e-03 1.232708e-02
## GLT8D1 2.232151e+00 2.335021e+01 2.935859 3.961987e-03 1.232988e-02
## CPEB3 2.972573e+00 8.221757e+00 2.935350 3.968059e-03 1.234554e-02
## MLYCD -1.060975e+00 6.967407e+00 -2.935137 3.970607e-03 1.235022e-02
## PDK1 6.688821e+00 2.856314e+01 2.934569 3.977407e-03 1.236813e-02
## TIMM44 -2.366196e+00 7.465000e+00 -2.934228 3.981491e-03 1.237758e-02
## ARHGEF6 2.567823e+01 1.070178e+02 2.933701 3.987819e-03 1.239401e-02
## CHST14 -8.913309e-01 4.590768e+00 -2.933557 3.989538e-03 1.239610e-02
## MDM1 6.822183e+00 2.360747e+01 2.932697 3.999884e-03 1.242198e-02
## TBC1D13 -4.526448e+00 2.688484e+01 -2.932690 3.999962e-03 1.242198e-02
## TMEM256 -6.229764e+00 1.264563e+01 -2.932358 4.003963e-03 1.242954e-02
## RPL41 -4.135319e+02 1.413507e+03 -2.932314 4.004492e-03 1.242954e-02
## XPO4 3.570993e+00 1.176345e+01 2.931829 4.010350e-03 1.244266e-02
## HIP1R -4.594809e+00 9.582014e+00 -2.931790 4.010817e-03 1.244266e-02
## UGGT1 1.331014e+01 6.859581e+01 2.931636 4.012670e-03 1.244515e-02
## RANBP9 1.676723e+01 5.218978e+01 2.931546 4.013756e-03 1.244527e-02
## SLC17A5 3.372011e+00 1.547184e+01 2.930967 4.020758e-03 1.246372e-02
## TMEM79 -1.875327e+00 8.155048e+00 -2.930072 4.031596e-03 1.249405e-02
## HIPK2 1.324755e+01 3.288403e+01 2.929787 4.035051e-03 1.250149e-02
## CLUH -2.434561e+00 5.924444e+00 -2.928846 4.046496e-03 1.253111e-02
## PTTG1 6.159619e+00 9.821735e+00 2.928827 4.046724e-03 1.253111e-02
## TMEM80 -2.512524e+00 1.341032e+01 -2.927685 4.060645e-03 1.257093e-02
## GPRC5C -4.175295e-01 7.084544e-01 -2.926855 4.070787e-03 1.259904e-02
## CPEB2 1.259941e+01 3.367483e+01 2.926665 4.073109e-03 1.260294e-02
## DTNBP1 -6.521506e+00 2.669733e+01 -2.926450 4.075740e-03 1.260779e-02
## KDELR1 -8.094406e+00 4.302458e+01 -2.925697 4.084973e-03 1.263306e-02
## TST -6.569817e+00 1.558343e+01 -2.925208 4.090979e-03 1.264834e-02
## INPP5B -3.325535e+00 2.233440e+01 -2.924969 4.093911e-03 1.265410e-02
## RMND5B -3.834480e+00 1.969871e+01 -2.923807 4.108228e-03 1.269239e-02
## HSD17B7 1.420613e+00 1.025720e+01 2.923790 4.108438e-03 1.269239e-02
## ZFP69B 3.809332e-01 1.021524e+00 2.923444 4.112709e-03 1.270227e-02
## SHKBP1 -1.268605e+02 3.166935e+02 -2.923166 4.116146e-03 1.270627e-02
## GPR137B -2.956626e+00 8.107503e+00 -2.923166 4.116147e-03 1.270627e-02
## AGK 3.322158e+00 1.185189e+01 2.922938 4.118965e-03 1.271167e-02
## NWD1 3.267879e-01 6.645564e-01 2.922370 4.125999e-03 1.273006e-02
## INTU 4.074353e-01 1.435362e+00 2.921932 4.131419e-03 1.274347e-02
## TIMMDC1 -3.144778e+00 3.044333e+01 -2.921531 4.136399e-03 1.275551e-02
## OXR1 9.179418e+00 3.364684e+01 2.921003 4.142953e-03 1.277240e-02
## UBE2E2 -1.257131e+00 5.685146e+00 -2.920660 4.147231e-03 1.278227e-02
## RPN1 -2.979080e+01 2.078619e+02 -2.919850 4.157322e-03 1.281004e-02
## SNAI3 -5.446683e+00 1.161980e+01 -2.919611 4.160297e-03 1.281338e-02
## NCF1 -2.597055e+02 8.546713e+02 -2.919589 4.160568e-03 1.281338e-02
## WWC2 8.123586e-01 2.016655e+00 2.919421 4.162677e-03 1.281655e-02
## EIF5A2 7.443330e-01 4.360189e+00 2.919282 4.164404e-03 1.281666e-02
## ATMIN 4.393119e+00 3.150146e+01 2.919245 4.164876e-03 1.281666e-02
## CGGBP1 2.213025e+01 1.293696e+02 2.918771 4.170798e-03 1.283156e-02
## BOD1L1 5.023022e+01 1.387488e+02 2.917857 4.182249e-03 1.286345e-02
## PHIP 2.575714e+01 8.980356e+01 2.917212 4.190339e-03 1.288499e-02
## CSRNP2 3.012953e+00 1.500102e+01 2.916762 4.196000e-03 1.289906e-02
## GABPB2 2.203126e+00 1.467883e+01 2.915510 4.211777e-03 1.294420e-02
## KLHDC4 -3.882355e+00 9.421845e+00 -2.915350 4.213792e-03 1.294704e-02
## TTI1 1.476048e+00 1.076233e+01 2.914024 4.230570e-03 1.299371e-02
## ISOC1 2.181929e+00 7.637516e+00 2.913976 4.231174e-03 1.299371e-02
## LNX2 9.261741e-01 5.372403e+00 2.913639 4.235455e-03 1.300349e-02
## TAX1BP3 -7.684961e+00 2.593053e+01 -2.912156 4.254307e-03 1.305799e-02
## PLAG1 8.041363e-01 2.677675e+00 2.912018 4.256061e-03 1.305999e-02
## PTX3 7.076533e+00 8.696532e+00 2.911708 4.260014e-03 1.306875e-02
## ST8SIA6 7.291051e-01 1.627960e+00 2.911530 4.262293e-03 1.307045e-02
## PHKB 7.661264e+00 4.623304e+01 2.911492 4.262773e-03 1.307045e-02
## OSM -2.473002e+01 3.946931e+01 -2.911206 4.266422e-03 1.307825e-02
## IMPA1 5.431768e+00 2.113875e+01 2.910808 4.271510e-03 1.309047e-02
## MYO9A 2.470908e+00 8.313552e+00 2.909262 4.291319e-03 1.314778e-02
## SACS 3.787913e+00 8.787320e+00 2.909034 4.294251e-03 1.315336e-02
## LOXHD1 3.187668e+00 6.948033e+00 2.908119 4.306028e-03 1.318355e-02
## UGT8 3.391238e-01 1.101377e+00 2.908095 4.306330e-03 1.318355e-02
## MARS2 9.773968e-01 3.196093e+00 2.907852 4.309464e-03 1.318974e-02
## AGTRAP -8.502254e+01 1.879971e+02 -2.907624 4.312409e-03 1.319535e-02
## AP1M2 1.482850e+00 3.628289e+00 2.907261 4.317087e-03 1.320625e-02
## PLEKHJ1 -1.191203e+01 2.948693e+01 -2.906834 4.322611e-03 1.321974e-02
## NDFIP2 6.577256e-01 1.610832e+00 2.906700 4.324342e-03 1.322163e-02
## NEK7 5.380865e+01 1.417374e+02 2.906314 4.329335e-03 1.323348e-02
## RBBP7 5.582158e+00 3.417174e+01 2.906166 4.331252e-03 1.323528e-02
## LUZP1 2.511970e+00 9.065831e+00 2.906096 4.332155e-03 1.323528e-02
## FUS -2.016587e+01 1.326888e+02 -2.905596 4.338638e-03 1.325167e-02
## ZNF212 -1.534240e+00 9.367830e+00 -2.904565 4.352027e-03 1.328914e-02
## GAPDH -9.177228e+02 2.151126e+03 -2.903668 4.363714e-03 1.332140e-02
## XBP1 6.823065e+01 1.621142e+02 2.903074 4.371473e-03 1.334142e-02
## H2BC4 4.921950e+01 1.102399e+02 2.902993 4.372523e-03 1.334142e-02
## IL12RB2 8.709867e-01 1.931912e+00 2.902802 4.375022e-03 1.334562e-02
## FLOT1 -2.449576e+02 5.915143e+02 -2.901379 4.393663e-03 1.339903e-02
## CCR7 -2.366237e+01 4.138170e+01 -2.900784 4.401472e-03 1.341940e-02
## LYSMD3 8.855305e+00 3.226299e+01 2.900019 4.411541e-03 1.344664e-02
## CAPN7 4.584796e+00 2.147013e+01 2.899809 4.414301e-03 1.345159e-02
## DNAJC10 1.099358e+01 4.753952e+01 2.899524 4.418067e-03 1.345835e-02
## PPP1R8 2.915307e+00 3.369086e+01 2.899469 4.418788e-03 1.345835e-02
## SEC24A 8.705712e+00 2.681140e+01 2.899267 4.421457e-03 1.346302e-02
## AKAP10 1.301872e+01 5.595202e+01 2.898452 4.432226e-03 1.349235e-02
## PLCB2 -5.039035e+01 2.934669e+02 -2.898195 4.435624e-03 1.349923e-02
## UBL5 -4.154963e+01 1.293483e+02 -2.897432 4.445737e-03 1.352654e-02
## NDUFB2 -1.465957e+01 3.145912e+01 -2.897128 4.449767e-03 1.353532e-02
## AGAP5 2.118342e+00 7.263153e+00 2.897006 4.451384e-03 1.353677e-02
## YPEL2 9.864021e+00 3.750076e+01 2.896631 4.456366e-03 1.354845e-02
## DNAJC18 4.892871e-01 1.998183e+00 2.896373 4.459804e-03 1.355543e-02
## RTRAF -1.546342e+01 7.284550e+01 -2.895932 4.465671e-03 1.356978e-02
## DUSP22 -1.310601e+01 8.623116e+01 -2.895500 4.471422e-03 1.358378e-02
## FLT1 2.258420e+00 4.549040e+00 2.895205 4.475367e-03 1.359228e-02
## SMC1A 9.445939e+00 4.665230e+01 2.894949 4.478781e-03 1.359594e-02
## MSI2 4.049772e+00 1.646098e+01 2.894943 4.478865e-03 1.359594e-02
## XAF1 1.602310e+02 1.972448e+02 2.894497 4.484822e-03 1.361054e-02
## DIP2B 2.606890e+01 8.847932e+01 2.894275 4.487786e-03 1.361605e-02
## GNGT2 -2.694111e+00 6.307515e+00 -2.893195 4.502265e-03 1.365649e-02
## DHX38 -4.130193e+00 4.268733e+01 -2.892123 4.516674e-03 1.369669e-02
## RBM41 1.624154e+00 8.090103e+00 2.891946 4.519050e-03 1.370039e-02
## GNL3 7.014943e+00 3.206503e+01 2.891093 4.530547e-03 1.373049e-02
## ELMO3 -1.863744e+00 4.025029e+00 -2.891038 4.531293e-03 1.373049e-02
## FBXO10 7.465053e-01 2.625028e+00 2.890326 4.540909e-03 1.375611e-02
## SNRK 4.480390e+01 1.634270e+02 2.890098 4.543993e-03 1.376194e-02
## CTCF 5.756561e+00 3.778656e+01 2.889713 4.549218e-03 1.377425e-02
## TTLL1 -7.249201e-01 2.397822e+00 -2.889534 4.551639e-03 1.377806e-02
## SEMA4B -1.552842e+01 6.337355e+01 -2.889369 4.553877e-03 1.378132e-02
## DPY19L4 1.304210e+00 4.967538e+00 2.888956 4.559478e-03 1.379475e-02
## SLC22A15 1.701506e+01 4.100394e+01 2.888727 4.562583e-03 1.379880e-02
## GCDH -3.348925e+00 9.478377e+00 -2.888686 4.563143e-03 1.379880e-02
## NPIPA8 6.538977e-01 1.905008e+00 2.888103 4.571071e-03 1.381924e-02
## ZNF568 -6.631141e-01 2.682268e+00 -2.887616 4.577707e-03 1.383578e-02
## DHX40 7.940110e+00 3.718926e+01 2.887491 4.579401e-03 1.383737e-02
## GALNT2 -1.824047e+01 4.087008e+01 -2.886890 4.587607e-03 1.385284e-02
## TSPYL4 2.353805e+00 1.031825e+01 2.886861 4.587999e-03 1.385284e-02
## YIPF3 -2.868371e+01 1.152890e+02 -2.886859 4.588023e-03 1.385284e-02
## ATF1 4.083462e+00 1.875766e+01 2.886562 4.592086e-03 1.385846e-02
## EPAS1 5.615520e+00 8.852375e+00 2.886552 4.592221e-03 1.385846e-02
## ZCCHC4 6.141373e-01 3.306997e+00 2.885697 4.603922e-03 1.388766e-02
## NEMF 7.090386e+00 2.997226e+01 2.885674 4.604240e-03 1.388766e-02
## TARBP2 -2.697216e+00 6.617235e+00 -2.884874 4.615201e-03 1.391403e-02
## HDAC5 -2.608563e+01 8.636239e+01 -2.884865 4.615330e-03 1.391403e-02
## CEMP1 -2.347214e+00 5.007336e+00 -2.884677 4.617909e-03 1.391827e-02
## BTRC 1.552522e+00 8.399350e+00 2.884453 4.620984e-03 1.392400e-02
## TBC1D2 -5.324582e+00 2.210001e+01 -2.884046 4.626582e-03 1.393733e-02
## PSPH 1.922901e+00 4.751889e+00 2.883948 4.627939e-03 1.393788e-02
## MED19 -1.105465e+00 5.387049e+00 -2.883546 4.633471e-03 1.395069e-02
## RRS1 -1.063079e+00 4.683742e+00 -2.883468 4.634546e-03 1.395069e-02
## LCMT1 -3.098361e+00 1.328296e+01 -2.882882 4.642629e-03 1.397147e-02
## TAP2 6.368916e+01 1.655187e+02 2.882411 4.649135e-03 1.398750e-02
## C11orf68 -1.483281e+01 4.894142e+01 -2.882066 4.653901e-03 1.399759e-02
## CCDC186 1.601503e+01 4.464278e+01 2.881998 4.654846e-03 1.399759e-02
## IL21R -3.922346e+00 9.077452e+00 -2.881900 4.656195e-03 1.399809e-02
## RREB1 2.660649e+00 1.595914e+01 2.881755 4.658211e-03 1.400060e-02
## DNPEP -7.006926e+00 1.850241e+01 -2.880614 4.674021e-03 1.404456e-02
## ANO5 5.760159e-01 1.203212e+00 2.879790 4.685484e-03 1.407544e-02
## PIF1 8.618225e-01 1.555607e+00 2.879258 4.692894e-03 1.409413e-02
## CATSPERG -2.498952e-01 5.568691e-01 -2.878870 4.698309e-03 1.410682e-02
## MTRNR2L10 -1.980858e+01 4.819139e+01 -2.878690 4.700818e-03 1.411078e-02
## GRB14 4.142393e-01 1.002550e+00 2.878334 4.705794e-03 1.412074e-02
## TNFSF4 2.563492e+00 7.992977e+00 2.878282 4.706517e-03 1.412074e-02
## LAT -2.016075e+01 4.094321e+01 -2.877631 4.715617e-03 1.414447e-02
## FAM32A -1.901711e+01 1.230006e+02 -2.877151 4.722352e-03 1.416108e-02
## APAF1 5.107216e+01 1.655364e+02 2.876140 4.736546e-03 1.420006e-02
## CPED1 1.638149e+00 3.810962e+00 2.875808 4.741203e-03 1.421043e-02
## TMEM94 -4.048422e+00 1.972200e+01 -2.875610 4.743995e-03 1.421521e-02
## CLN6 -9.708438e+00 2.197383e+01 -2.875409 4.746834e-03 1.422012e-02
## NUFIP2 3.708325e+01 1.414914e+02 2.874819 4.755150e-03 1.424143e-02
## GALT -3.249384e+00 1.076786e+01 -2.874498 4.759670e-03 1.425137e-02
## P2RX4 -5.996449e+00 2.019813e+01 -2.874109 4.765175e-03 1.426426e-02
## PI4KB -1.161029e+01 9.368295e+01 -2.872336 4.790298e-03 1.433584e-02
## LRRC40 1.913843e+00 7.298671e+00 2.871878 4.796806e-03 1.435170e-02
## MAEA -1.256151e+01 5.262908e+01 -2.871747 4.798674e-03 1.435366e-02
## BMP1 -6.812136e-01 1.842075e+00 -2.871426 4.803232e-03 1.436367e-02
## PSMC2 8.392420e+00 5.054249e+01 2.870833 4.811687e-03 1.438533e-02
## PARD6A -1.127702e+00 2.308288e+00 -2.869694 4.827959e-03 1.443034e-02
## GABBR1 1.089649e+01 3.953987e+01 2.869457 4.831349e-03 1.443683e-02
## MAP2K7 -3.262155e+00 1.644871e+01 -2.869289 4.833761e-03 1.444040e-02
## NPLOC4 -1.165506e+01 7.647469e+01 -2.869041 4.837302e-03 1.444734e-02
## ALDOC -6.175552e+00 1.501200e+01 -2.868902 4.839295e-03 1.444747e-02
## GPATCH11 2.493981e+00 9.434440e+00 2.868868 4.839781e-03 1.444747e-02
## NOB1 -2.980190e+00 1.124976e+01 -2.868622 4.843314e-03 1.445438e-02
## CEP85 2.540974e+00 1.216090e+01 2.868474 4.845443e-03 1.445710e-02
## TRAPPC11 6.947131e+00 3.241809e+01 2.866483 4.874098e-03 1.453893e-02
## RNF40 -1.132325e+01 7.419362e+01 -2.865471 4.888724e-03 1.457890e-02
## TIMM23B 9.036383e-01 3.428654e+00 2.864314 4.905494e-03 1.462523e-02
## MAB21L3 8.784949e-01 1.583380e+00 2.864029 4.909626e-03 1.463219e-02
## USP14 3.395393e+00 1.817708e+01 2.863983 4.910295e-03 1.463219e-02
## TMEM204 -2.723490e+00 4.402109e+00 -2.862193 4.936364e-03 1.470617e-02
## INTS8 1.303004e+01 6.157028e+01 2.861672 4.943980e-03 1.472516e-02
## RPP25 -1.214213e+00 2.577725e+00 -2.861509 4.946363e-03 1.472856e-02
## FARP1 4.353905e-01 1.287432e+00 2.860584 4.959915e-03 1.476521e-02
## ATP6V0A2 2.183401e+00 1.695438e+01 2.860006 4.968386e-03 1.478671e-02
## ZBTB2 4.217573e+00 2.431637e+01 2.858803 4.986085e-03 1.483209e-02
## TRIM65 -2.778577e+00 1.137430e+01 -2.858753 4.986822e-03 1.483209e-02
## MEI1 -4.592924e+00 9.547366e+00 -2.858715 4.987383e-03 1.483209e-02
## MPDU1 -1.199721e+01 4.153855e+01 -2.857343 5.007647e-03 1.488862e-02
## SCML2 2.275307e-01 5.013808e-01 2.857133 5.010747e-03 1.489410e-02
## GTF2H2C 6.919384e+00 2.918868e+01 2.856081 5.026343e-03 1.493672e-02
## ZNF280D 3.449052e+00 1.587320e+01 2.855072 5.041344e-03 1.497754e-02
## AFF2 1.624304e+00 2.363112e+00 2.854640 5.047775e-03 1.499128e-02
## KIDINS220 2.837972e+01 8.987570e+01 2.854592 5.048498e-03 1.499128e-02
## CALHM2 -4.160280e+00 1.316614e+01 -2.854077 5.056166e-03 1.501029e-02
## ARG2 1.519508e+00 3.299904e+00 2.852988 5.072456e-03 1.505489e-02
## SPATA33 -5.905162e-01 1.245432e+00 -2.852864 5.074301e-03 1.505660e-02
## RNF31 -1.607352e+01 6.911293e+01 -2.852311 5.082595e-03 1.507743e-02
## RFFL 2.947562e+01 1.079016e+02 2.852173 5.084669e-03 1.507981e-02
## L3MBTL4 3.592081e-01 1.170795e+00 2.851945 5.088077e-03 1.508341e-02
## CRYM 9.089431e-01 1.360570e+00 2.851898 5.088785e-03 1.508341e-02
## SCYL3 5.142057e+00 2.588316e+01 2.851838 5.089696e-03 1.508341e-02
## CBFA2T3 -5.238158e+00 1.983658e+01 -2.851690 5.091919e-03 1.508623e-02
## RHBDD1 1.870772e+00 1.197727e+01 2.850924 5.103429e-03 1.511655e-02
## DNAJC5 -2.659630e+01 1.258177e+02 -2.850303 5.112783e-03 1.514048e-02
## MAP6D1 -3.936145e-01 1.334564e+00 -2.849985 5.117580e-03 1.515028e-02
## NDUFB8 -1.409827e+01 4.772423e+01 -2.849914 5.118647e-03 1.515028e-02
## KDM5B 1.156163e+01 4.159757e+01 2.849516 5.124666e-03 1.516431e-02
## GPLD1 2.785048e-01 6.561487e-01 2.848948 5.133258e-03 1.518594e-02
## SEC23B 8.627157e+00 5.015761e+01 2.847815 5.150415e-03 1.523290e-02
## RAD54L2 1.877633e+00 1.226087e+01 2.847069 5.161752e-03 1.526262e-02
## BNIPL 1.022514e+00 2.612308e+00 2.846792 5.165970e-03 1.527129e-02
## OAS1 1.960653e+02 2.445976e+02 2.846336 5.172921e-03 1.528803e-02
## CNTLN 1.260988e+00 4.327969e+00 2.845064 5.192332e-03 1.534157e-02
## ZNF783 -3.314957e+00 1.092345e+01 -2.844635 5.198903e-03 1.535716e-02
## FN3K -3.014024e-01 5.278538e-01 -2.844497 5.201006e-03 1.535954e-02
## PM20D2 2.562022e+00 1.020218e+01 2.844380 5.202806e-03 1.536104e-02
## PARD6G 2.851180e-01 7.660642e-01 2.844224 5.205193e-03 1.536426e-02
## ARPC3 -2.146433e+02 8.826408e+02 -2.843642 5.214117e-03 1.538392e-02
## ENOPH1 2.384804e+00 1.221730e+01 2.843618 5.214485e-03 1.538392e-02
## TTYH2 -3.760105e+00 1.125504e+01 -2.843536 5.215745e-03 1.538392e-02
## ANXA9 1.288372e+00 4.519119e+00 2.841239 5.251122e-03 1.548441e-02
## MTREX 5.066419e+00 2.840722e+01 2.839984 5.270545e-03 1.553733e-02
## SLC39A6 3.900852e+00 2.295276e+01 2.839910 5.271689e-03 1.553733e-02
## DOLK -9.655137e-01 4.295139e+00 -2.839659 5.275584e-03 1.554495e-02
## ZNF576 -1.125608e+00 6.341939e+00 -2.839251 5.281918e-03 1.555975e-02
## WDR82 2.390911e+01 1.305999e+02 2.838870 5.287835e-03 1.557331e-02
## PUS7 4.636448e-01 1.676554e+00 2.837993 5.301486e-03 1.560964e-02
## PRDX5 -8.333956e+01 1.977528e+02 -2.837889 5.303108e-03 1.561054e-02
## ELOVL1 -1.160055e+01 7.439302e+01 -2.837798 5.304528e-03 1.561085e-02
## TNFRSF1A -9.363000e+01 3.181100e+02 -2.837549 5.308416e-03 1.561748e-02
## JARID2 1.294793e+01 5.002538e+01 2.837485 5.309416e-03 1.561748e-02
## TK1 3.743805e+00 5.283466e+00 2.837359 5.311377e-03 1.561898e-02
## ERBIN 5.131714e+01 1.783405e+02 2.837284 5.312560e-03 1.561898e-02
## NOL8 3.949538e+00 2.246275e+01 2.836995 5.317060e-03 1.562834e-02
## ZW10 1.235773e+00 7.974917e+00 2.836714 5.321464e-03 1.563740e-02
## HMGN3 -6.404706e+00 2.976979e+01 -2.836424 5.326000e-03 1.564686e-02
## SNRNP48 3.250553e+00 1.562827e+01 2.835830 5.335308e-03 1.567032e-02
## COX19 -2.372896e+00 1.716230e+01 -2.835563 5.339493e-03 1.567873e-02
## UPF2 1.166834e+01 5.856242e+01 2.835267 5.344129e-03 1.568846e-02
## CYSLTR1 1.190716e+01 3.478829e+01 2.834737 5.352463e-03 1.570904e-02
## SCRN3 2.204400e+00 1.065063e+01 2.834253 5.360072e-03 1.572500e-02
## KMT2A 8.657618e+00 2.829603e+01 2.834223 5.360553e-03 1.572500e-02
## BIVM 9.912949e-01 3.791649e+00 2.833713 5.368587e-03 1.574467e-02
## SEPTIN1 -1.843251e+01 3.454141e+01 -2.833092 5.378374e-03 1.576947e-02
## NCBP2AS2 -2.422101e+00 9.126740e+00 -2.832937 5.380835e-03 1.577279e-02
## PWWP2A 4.227816e+00 2.304911e+01 2.832464 5.388311e-03 1.579080e-02
## LGALS9 -8.239376e+01 1.996380e+02 -2.831539 5.402956e-03 1.582981e-02
## LMNA -6.850465e+00 1.345381e+01 -2.830939 5.412475e-03 1.585378e-02
## OGA 6.681501e+01 2.992402e+02 2.830854 5.413827e-03 1.585383e-02
## SSPN 1.301609e+00 2.199426e+00 2.830643 5.417176e-03 1.585972e-02
## PTPN12 6.344199e+01 2.119369e+02 2.830116 5.425566e-03 1.588036e-02
## FOXN2 2.906759e+01 8.517708e+01 2.829253 5.439310e-03 1.591666e-02
## C19orf47 -1.067553e+00 5.208254e+00 -2.828663 5.448733e-03 1.593964e-02
## SOCS7 1.824680e+00 6.979578e+00 2.828592 5.449880e-03 1.593964e-02
## SPTBN5 -6.537561e-01 1.637391e+00 -2.828509 5.451196e-03 1.593964e-02
## ATAD3A -2.012206e+00 3.543895e+00 -2.828105 5.457668e-03 1.595463e-02
## NSDHL -2.246594e+00 8.814317e+00 -2.827679 5.464474e-03 1.597059e-02
## TRAPPC8 2.029397e+01 6.987621e+01 2.827386 5.469185e-03 1.598042e-02
## ZNF512B -1.615092e+00 4.074057e+00 -2.826947 5.476227e-03 1.599397e-02
## KDM7A 3.835429e+01 1.187623e+02 2.826928 5.476519e-03 1.599397e-02
## CCDC86 -7.892318e-01 3.068816e+00 -2.826485 5.483640e-03 1.601082e-02
## DCXR -1.036529e+01 1.824967e+01 -2.825750 5.495468e-03 1.604141e-02
## GEMIN5 1.384796e+00 6.379240e+00 2.825605 5.497813e-03 1.604431e-02
## REST 7.043536e+00 3.532080e+01 2.825154 5.505068e-03 1.606153e-02
## MAD1L1 -6.603803e+00 1.178844e+01 -2.824996 5.507633e-03 1.606506e-02
## OPLAH -7.017371e+00 8.764658e+00 -2.823533 5.531284e-03 1.613008e-02
## RPRD1B 3.389021e+00 1.997588e+01 2.823402 5.533403e-03 1.613229e-02
## NBN 5.402861e+01 1.330333e+02 2.823001 5.539907e-03 1.614728e-02
## STAT2 1.032634e+02 2.076732e+02 2.822689 5.544975e-03 1.615808e-02
## DNAJB14 1.266922e+01 4.928187e+01 2.821681 5.561356e-03 1.620174e-02
## RAD21 5.062688e+01 2.241692e+02 2.821599 5.562687e-03 1.620174e-02
## CDR2 3.087348e+00 1.259112e+01 2.821026 5.572032e-03 1.622497e-02
## BICRA -1.304631e+00 5.170974e+00 -2.820153 5.586288e-03 1.626249e-02
## KDM1B 1.259060e+01 4.592843e+01 2.819231 5.601383e-03 1.630243e-02
## SNAP47 -1.605086e+00 7.187783e+00 -2.818887 5.607021e-03 1.631484e-02
## HSD17B8 -2.154317e+00 3.798992e+00 -2.818446 5.614259e-03 1.633189e-02
## GOLPH3L 4.237988e+00 1.486673e+01 2.817754 5.625631e-03 1.636096e-02
## OAS2 2.208339e+02 2.480898e+02 2.817452 5.630607e-03 1.637142e-02
## TRAPPC2L -6.864908e+00 2.156604e+01 -2.817234 5.634200e-03 1.637785e-02
## VEZT 2.954366e+00 1.268307e+01 2.816969 5.638570e-03 1.638653e-02
## PEF1 -2.551131e+01 7.664237e+01 -2.816579 5.644994e-03 1.640118e-02
## MYO1A -2.642081e-01 6.631207e-01 -2.814929 5.672289e-03 1.647645e-02
## SNRPA -8.051214e+00 2.112387e+01 -2.814831 5.673916e-03 1.647714e-02
## GCLC 2.860327e+00 1.331350e+01 2.814037 5.687089e-03 1.651135e-02
## AHI1 4.663010e-01 1.419891e+00 2.813850 5.690195e-03 1.651633e-02
## GALM 2.222539e+01 3.332247e+01 2.813575 5.694769e-03 1.652331e-02
## GFI1 7.734784e+00 1.506129e+01 2.813538 5.695386e-03 1.652331e-02
## PECAM1 -1.183437e+02 5.697328e+02 -2.813225 5.700602e-03 1.653439e-02
## SCAF11 3.508078e+01 1.420130e+02 2.812486 5.712914e-03 1.656340e-02
## SAMM50 -4.192822e+00 1.939349e+01 -2.812458 5.713396e-03 1.656340e-02
## CMPK2 7.966926e+01 8.260055e+01 2.811672 5.726512e-03 1.659518e-02
## NEGR1 5.162132e-01 2.112816e+00 2.811595 5.727809e-03 1.659518e-02
## ROM1 -1.577726e+00 3.040250e+00 -2.811550 5.728555e-03 1.659518e-02
## SMDT1 -9.580466e+00 2.230625e+01 -2.811402 5.731037e-03 1.659831e-02
## AZIN2 -3.471414e-01 9.100170e-01 -2.811039 5.737108e-03 1.661184e-02
## FNIP2 2.914204e+00 9.233160e+00 2.810800 5.741114e-03 1.661938e-02
## ANKRD12 2.322017e+01 9.082200e+01 2.810625 5.744057e-03 1.662384e-02
## UTP20 1.522374e+00 4.647699e+00 2.810161 5.751843e-03 1.664232e-02
## MRPL2 -1.960866e+00 6.783673e+00 -2.809994 5.754647e-03 1.664637e-02
## ITM2C 4.361678e+01 5.459665e+01 2.809587 5.761485e-03 1.666208e-02
## NPFF -1.415209e+00 3.625030e+00 -2.809092 5.769809e-03 1.668074e-02
## PRR11 2.218816e+00 1.070429e+01 2.809036 5.770750e-03 1.668074e-02
## ADSS2 1.563989e+01 5.848943e+01 2.808640 5.777433e-03 1.669599e-02
## PRMT7 -2.870117e+00 8.293110e+00 -2.808255 5.783920e-03 1.671067e-02
## CMAS 2.536708e+00 1.506844e+01 2.808071 5.787023e-03 1.671556e-02
## BAP1 -9.908082e+00 6.256992e+01 -2.807811 5.791418e-03 1.672418e-02
## SREK1 6.038467e+00 3.240577e+01 2.807576 5.795390e-03 1.673154e-02
## EFNA3 -3.614661e-01 1.096881e+00 -2.807493 5.796788e-03 1.673154e-02
## DNAJC15 4.363562e+00 2.523826e+01 2.807150 5.802588e-03 1.674421e-02
## BBS7 1.013915e+00 4.894015e+00 2.806736 5.809610e-03 1.676039e-02
## ZFX 1.039162e+01 3.738306e+01 2.804327 5.850561e-03 1.687038e-02
## PPP1R12B 2.074372e+01 5.287306e+01 2.804325 5.850579e-03 1.687038e-02
## ALS2 2.026663e+00 1.020565e+01 2.803043 5.872490e-03 1.692944e-02
## TMEM62 3.042569e+00 1.265611e+01 2.802806 5.876535e-03 1.693461e-02
## PLK2 8.010018e-01 2.035528e+00 2.802771 5.877137e-03 1.693461e-02
## APPL1 4.396400e+00 2.426074e+01 2.801885 5.892339e-03 1.697429e-02
## SMIM7 -4.157441e+00 2.801361e+01 -2.800203 5.921260e-03 1.705346e-02
## POP7 -1.650358e+00 5.072606e+00 -2.799995 5.924857e-03 1.705968e-02
## ACP1 5.293109e+00 3.509216e+01 2.799493 5.933510e-03 1.708044e-02
## GSTO1 -4.625515e+01 1.312624e+02 -2.799136 5.939691e-03 1.709370e-02
## CAT -8.131221e+01 2.294727e+02 -2.799060 5.940997e-03 1.709370e-02
## TNFRSF10A 1.637830e+00 6.817997e+00 2.798662 5.947888e-03 1.710938e-02
## NME2 -3.374966e+01 8.205699e+01 -2.798032 5.958799e-03 1.713661e-02
## AASDHPPT 3.096443e+00 1.933586e+01 2.796996 5.976796e-03 1.718419e-02
## FUT11 1.001800e+00 3.035451e+00 2.796809 5.980052e-03 1.718939e-02
## MTLN -1.398400e+00 2.240073e+00 -2.795541 6.002143e-03 1.724871e-02
## KATNA1 -2.908824e+00 1.846442e+01 -2.792623 6.053273e-03 1.739143e-02
## POLD2 -4.918837e+00 1.147778e+01 -2.792377 6.057599e-03 1.739964e-02
## SLC35A4 -9.875217e+00 5.713100e+01 -2.791982 6.064547e-03 1.741294e-02
## ZNF510 1.775873e+00 7.945826e+00 2.791947 6.065164e-03 1.741294e-02
## MTERF2 -1.054939e+00 4.866048e+00 -2.791658 6.070270e-03 1.742338e-02
## ACOT11 1.259965e+00 6.939236e+00 2.790762 6.086088e-03 1.746456e-02
## TLE3 -5.314742e+01 1.980045e+02 -2.790674 6.087645e-03 1.746480e-02
## GUCY1B1 3.876782e+00 1.001657e+01 2.788890 6.119268e-03 1.755127e-02
## PHLPP2 1.106630e+00 3.143928e+00 2.788763 6.121518e-03 1.755259e-02
## LIN37 -3.585981e+00 1.274398e+01 -2.788697 6.122687e-03 1.755259e-02
## SPSB2 -2.769233e+00 5.437133e+00 -2.788554 6.125230e-03 1.755564e-02
## CPLANE1 8.124036e-01 2.175872e+00 2.788338 6.129082e-03 1.756243e-02
## WHAMM 4.353664e+00 2.010645e+01 2.787735 6.139811e-03 1.758893e-02
## SLC26A8 1.583858e+01 3.280014e+01 2.787561 6.142922e-03 1.759359e-02
## CCNY -2.771291e+01 1.369076e+02 -2.787039 6.152233e-03 1.761600e-02
## ELP5 -3.239750e+00 1.575679e+01 -2.786853 6.155552e-03 1.762125e-02
## RIMS3 6.016682e-01 2.478128e+00 2.785275 6.183786e-03 1.769577e-02
## USP3 3.050658e+01 1.450562e+02 2.785232 6.184567e-03 1.769577e-02
## DTWD2 1.345190e+00 4.652920e+00 2.784822 6.191923e-03 1.771254e-02
## PMPCA -3.154318e+00 1.365694e+01 -2.784553 6.196753e-03 1.772208e-02
## C11orf98 -1.091108e+01 3.301385e+01 -2.784248 6.202235e-03 1.773349e-02
## WDR44 4.465058e+00 1.693130e+01 2.782385 6.235823e-03 1.782523e-02
## SARNP -2.050495e+01 6.445111e+01 -2.782050 6.241884e-03 1.783610e-02
## YWHAQ 1.262566e+01 1.029340e+02 2.782008 6.242636e-03 1.783610e-02
## SPOUT1 -7.399055e+00 2.331154e+01 -2.781843 6.245630e-03 1.784036e-02
## METTL3 3.590414e+00 2.451178e+01 2.781106 6.258988e-03 1.787421e-02
## TRIM38 4.887547e+01 1.433815e+02 2.780173 6.275926e-03 1.791827e-02
## SECISBP2 5.122827e+00 4.681965e+01 2.779407 6.289856e-03 1.795344e-02
## SPTY2D1 1.002303e+01 3.829898e+01 2.779276 6.292240e-03 1.795344e-02
## IFI27 1.570882e+02 1.304780e+02 2.779246 6.292787e-03 1.795344e-02
## ZBTB44 1.181578e+01 5.867273e+01 2.778526 6.305919e-03 1.798658e-02
## MRPS25 -3.877433e+00 1.919950e+01 -2.778299 6.310065e-03 1.799408e-02
## SCO1 1.611046e+00 1.588251e+01 2.777283 6.328666e-03 1.804278e-02
## ZC3H13 7.554945e+00 3.932553e+01 2.777176 6.330617e-03 1.804401e-02
## CDK3 -1.848276e+00 8.252463e+00 -2.776909 6.335513e-03 1.805038e-02
## SLC25A17 1.144996e+00 7.619363e+00 2.776888 6.335897e-03 1.805038e-02
## ZNF346 1.586659e+00 1.263160e+01 2.776130 6.349809e-03 1.808567e-02
## THUMPD3 2.267963e+00 1.289320e+01 2.775599 6.359575e-03 1.810914e-02
## PRKAB2 2.776522e+00 1.409569e+01 2.774458 6.380597e-03 1.816406e-02
## PSMC3IP 3.978389e-01 1.694968e+00 2.774386 6.381925e-03 1.816406e-02
## LRFN1 -4.509503e+00 1.284972e+01 -2.774282 6.383860e-03 1.816521e-02
## MYCL -5.620725e+00 1.579197e+01 -2.773735 6.393960e-03 1.818958e-02
## C21orf91 9.835742e+00 4.130028e+01 2.772886 6.409675e-03 1.822992e-02
## BTBD3 1.272135e+00 4.210206e+00 2.771129 6.442315e-03 1.831835e-02
## IBTK 5.311473e+00 2.250158e+01 2.770474 6.454517e-03 1.834865e-02
## BCL3 -2.273718e+01 6.741211e+01 -2.769942 6.464442e-03 1.837246e-02
## IFI44 1.883531e+02 2.112690e+02 2.769638 6.470123e-03 1.838135e-02
## NFKBIB -3.850601e+00 1.648650e+01 -2.769609 6.470670e-03 1.838135e-02
## TMX3 7.807701e+00 3.815555e+01 2.769485 6.472976e-03 1.838350e-02
## NFE2 -1.939715e+02 5.156431e+02 -2.769313 6.476193e-03 1.838823e-02
## HEXD -6.208532e+00 1.465741e+01 -2.769196 6.478389e-03 1.839007e-02
## BET1L -6.263732e+00 5.463977e+01 -2.768442 6.492515e-03 1.842575e-02
## MVK -1.092883e+00 3.331573e+00 -2.768322 6.494771e-03 1.842775e-02
## MED10 -2.257668e+00 1.490351e+01 -2.768052 6.499830e-03 1.843769e-02
## VAMP2 -3.243502e+01 1.433549e+02 -2.767872 6.503210e-03 1.844123e-02
## CEP120 5.728949e+00 2.569100e+01 2.767784 6.504867e-03 1.844123e-02
## AHCTF1 4.064148e+01 1.191115e+02 2.767673 6.506947e-03 1.844123e-02
## HMGCR 1.921150e+01 8.049557e+01 2.767654 6.507297e-03 1.844123e-02
## KCNMB3 2.465081e-01 8.327175e-01 2.767462 6.510914e-03 1.844707e-02
## EBPL -2.589807e+00 1.060662e+01 -2.767356 6.512910e-03 1.844832e-02
## ZFP64 -1.259948e+00 3.132364e+00 -2.767224 6.515392e-03 1.845028e-02
## CDK13 7.672857e+00 3.860281e+01 2.767153 6.516714e-03 1.845028e-02
## IFI27L1 2.171981e+00 4.431149e+00 2.766948 6.520587e-03 1.845626e-02
## MIS18BP1 8.485608e+00 3.257726e+01 2.766847 6.522482e-03 1.845626e-02
## PARP8 8.285057e+01 2.770455e+02 2.766793 6.523495e-03 1.845626e-02
## MRPS11 -3.911339e+00 1.483592e+01 -2.765514 6.547616e-03 1.852009e-02
## TTN 8.845359e+00 2.737567e+01 2.765286 6.551931e-03 1.852787e-02
## KLC1 -7.232746e+00 5.548037e+01 -2.765105 6.555364e-03 1.853316e-02
## ZNF257 3.526823e-01 9.942495e-01 2.764606 6.564796e-03 1.855541e-02
## PTGS1 4.511154e+01 1.412529e+02 2.764449 6.567765e-03 1.855937e-02
## GOLGA3 3.280247e+00 2.604738e+01 2.764064 6.575081e-03 1.857150e-02
## KDM4A 4.466832e+00 3.218762e+01 2.764058 6.575188e-03 1.857150e-02
## IL23A -6.572435e-01 1.405165e+00 -2.763208 6.591327e-03 1.861265e-02
## PRKAA1 2.119611e+01 7.547090e+01 2.763038 6.594565e-03 1.861736e-02
## ZNRF1 -1.519228e+00 4.057024e+00 -2.762635 6.602236e-03 1.863318e-02
## RPL34 -2.059011e+02 4.798503e+02 -2.762578 6.603309e-03 1.863318e-02
## CCDC9B 1.237310e+00 3.939992e+00 2.761601 6.621944e-03 1.868132e-02
## ZFYVE28 -9.969954e-01 2.388811e+00 -2.759326 6.665506e-03 1.879974e-02
## GTF2E1 2.594994e+00 1.610145e+01 2.758977 6.672203e-03 1.881415e-02
## PRPSAP1 2.717910e+00 1.801430e+01 2.758577 6.679901e-03 1.883138e-02
## ALG8 1.749796e+00 9.727654e+00 2.758191 6.687324e-03 1.884783e-02
## SASH3 -6.771697e+01 3.505792e+02 -2.758057 6.689911e-03 1.885064e-02
## MRM2 -2.023777e+00 1.210393e+01 -2.757172 6.706974e-03 1.888989e-02
## SCCPDH -3.462969e+00 1.456021e+01 -2.757170 6.707025e-03 1.888989e-02
## USP45 1.030584e+00 3.448391e+00 2.756871 6.712792e-03 1.889821e-02
## PSD4 -4.295615e+01 2.345328e+02 -2.756852 6.713168e-03 1.889821e-02
## DDX58 7.941297e+01 1.574548e+02 2.756119 6.727340e-03 1.893361e-02
## ABCA13 1.148180e+01 1.089245e+01 2.755625 6.736925e-03 1.895609e-02
## ITPR2 9.657074e+00 3.673179e+01 2.755436 6.740575e-03 1.896186e-02
## KDM6A 1.417839e+01 5.067786e+01 2.755234 6.744505e-03 1.896842e-02
## GSN -5.978124e+01 1.754722e+02 -2.755020 6.748658e-03 1.897560e-02
## SSR2 -5.039150e+01 3.097936e+02 -2.754709 6.754709e-03 1.898563e-02
## DCP1A 4.587925e+00 2.479981e+01 2.754672 6.755427e-03 1.898563e-02
## PAN3 1.970946e+01 7.822233e+01 2.754266 6.763311e-03 1.900329e-02
## IARS2 6.480032e+00 3.979436e+01 2.753853 6.771352e-03 1.902137e-02
## APC 1.770022e+01 5.278771e+01 2.752851 6.790900e-03 1.907177e-02
## HSD17B4 8.882599e+00 4.753865e+01 2.752750 6.792873e-03 1.907279e-02
## COPB1 2.124076e+01 1.048339e+02 2.752583 6.796149e-03 1.907747e-02
## ATF5 -2.463936e+00 7.087778e+00 -2.751910 6.809307e-03 1.910562e-02
## CPNE3 3.217607e+01 8.814839e+01 2.751905 6.809397e-03 1.910562e-02
## SLAMF7 2.223905e+01 5.802571e+01 2.751582 6.815723e-03 1.911884e-02
## AGFG2 -3.410241e+00 7.216096e+00 -2.750459 6.837772e-03 1.917616e-02
## ZZEF1 1.461123e+01 7.937154e+01 2.750285 6.841187e-03 1.918120e-02
## PIN4 -2.508325e+00 1.310390e+01 -2.749918 6.848417e-03 1.919693e-02
## TSR2 -4.365545e+00 2.741597e+01 -2.749151 6.863519e-03 1.923472e-02
## FDX2 -1.229490e+00 2.842168e+00 -2.749014 6.866229e-03 1.923777e-02
## ZDHHC19 -2.523278e+01 1.671525e+01 -2.747995 6.886353e-03 1.928751e-02
## RFX2 -1.122586e+01 2.818168e+01 -2.747951 6.887236e-03 1.928751e-02
## FUBP1 1.133099e+01 4.982512e+01 2.747746 6.891291e-03 1.929431e-02
## IRF5 -1.383131e+01 5.233745e+01 -2.747457 6.897010e-03 1.930577e-02
## ANKRD39 -9.369924e-01 2.196243e+00 -2.747150 6.903087e-03 1.931822e-02
## SULT1A3 -2.069276e+01 8.117230e+01 -2.746590 6.914206e-03 1.934477e-02
## ADCY7 2.708287e+01 9.889263e+01 2.746349 6.918992e-03 1.935359e-02
## SMCR8 1.850241e+01 7.548509e+01 2.745832 6.929272e-03 1.937778e-02
## FAM76B 8.295567e+00 3.031518e+01 2.745631 6.933260e-03 1.938436e-02
## EPHB4 -8.175308e+00 1.796142e+01 -2.745409 6.937676e-03 1.939214e-02
## SP140 1.830691e+01 4.515005e+01 2.744693 6.951969e-03 1.942751e-02
## S100A11 -6.650553e+02 1.988458e+03 -2.743699 6.971811e-03 1.947837e-02
## CLIP4 4.567084e+00 1.803065e+01 2.743185 6.982114e-03 1.950256e-02
## PCDHA4 1.179882e+00 4.803577e+00 2.742660 6.992621e-03 1.952731e-02
## FLYWCH1 -2.760542e+00 6.890713e+00 -2.742474 6.996369e-03 1.953318e-02
## NFYA 1.356501e+01 5.633768e+01 2.742041 7.005054e-03 1.955282e-02
## CFDP1 -3.778281e+00 2.735743e+01 -2.741798 7.009940e-03 1.956186e-02
## C6orf120 5.232131e+00 3.054948e+01 2.741537 7.015195e-03 1.957192e-02
## ADD3 7.305815e+01 2.493372e+02 2.741069 7.024609e-03 1.959357e-02
## GPD1L 1.784107e+00 9.288984e+00 2.739993 7.046310e-03 1.964826e-02
## R3HDM2 9.593963e+00 4.754458e+01 2.739933 7.047528e-03 1.964826e-02
## COMTD1 -5.391831e-01 7.595181e-01 -2.739674 7.052770e-03 1.965825e-02
## PEX1 2.438882e+00 1.211659e+01 2.739284 7.060659e-03 1.967562e-02
## RSAD1 -4.918876e+00 1.997019e+01 -2.739053 7.065322e-03 1.967968e-02
## KLHDC10 3.261333e+00 2.108948e+01 2.739047 7.065438e-03 1.967968e-02
## MTHFD2 1.454089e+01 4.943303e+01 2.738622 7.074048e-03 1.969904e-02
## PNPT1 8.577728e+00 1.826990e+01 2.738521 7.076096e-03 1.970012e-02
## EIF3I -1.640626e+01 8.362708e+01 -2.738202 7.082566e-03 1.971202e-02
## KIF13B 2.968887e+00 1.598210e+01 2.738147 7.083697e-03 1.971202e-02
## RPS13 -8.664772e+01 3.360920e+02 -2.737728 7.092196e-03 1.973105e-02
## PCYOX1 2.110930e+00 1.019511e+01 2.737379 7.099288e-03 1.974614e-02
## BTBD6 -5.239386e+00 2.206897e+01 -2.736938 7.108271e-03 1.976649e-02
## ZDHHC2 9.219360e+00 3.960195e+01 2.736023 7.126927e-03 1.981373e-02
## ADRB2 -4.114412e+00 1.692708e+01 -2.735276 7.142176e-03 1.985147e-02
## PPP1R21 1.027886e+01 5.109023e+01 2.734772 7.152490e-03 1.987548e-02
## TRRAP 4.347863e+00 1.691544e+01 2.734342 7.161310e-03 1.989532e-02
## RSKR 7.452049e-01 3.583314e+00 2.733905 7.170260e-03 1.991552e-02
## INTS10 -4.780123e+00 4.195062e+01 -2.732780 7.193385e-03 1.997508e-02
## SPEN 1.498927e+01 5.806554e+01 2.732467 7.199824e-03 1.998550e-02
## TSPAN17 -6.455184e+00 2.286245e+01 -2.732434 7.200509e-03 1.998550e-02
## ZAP70 -3.217184e+01 5.520149e+01 -2.730296 7.244676e-03 2.010338e-02
## KLC4 -2.993699e+00 1.591845e+01 -2.729469 7.261824e-03 2.014625e-02
## ODR4 2.153885e+00 1.227280e+01 2.729228 7.266831e-03 2.015543e-02
## CPSF1 -8.095717e+00 2.130243e+01 -2.726605 7.321499e-03 2.030231e-02
## CENPQ 9.861794e-01 3.905702e+00 2.726448 7.324789e-03 2.030669e-02
## CCNJ 9.867630e-01 3.942130e+00 2.725412 7.346486e-03 2.036208e-02
## VOPP1 -3.550026e+01 1.332950e+02 -2.725276 7.349355e-03 2.036527e-02
## GDPD5 -5.198837e+00 9.429344e+00 -2.724954 7.356107e-03 2.037922e-02
## UBXN4 2.672385e+01 1.113414e+02 2.724686 7.361737e-03 2.039005e-02
## ATP8B3 4.419013e-01 1.436782e+00 2.724458 7.366528e-03 2.039856e-02
## RSPRY1 4.232772e+00 2.862161e+01 2.724182 7.372331e-03 2.040986e-02
## ARHGAP30 -1.157399e+02 8.068845e+02 -2.723985 7.376490e-03 2.041661e-02
## PPM1G -7.592424e+00 5.501452e+01 -2.723781 7.380772e-03 2.042370e-02
## TMEM154 1.308978e+02 4.303347e+02 2.722974 7.397795e-03 2.046602e-02
## UBALD2 -6.355811e+01 1.670303e+02 -2.722759 7.402345e-03 2.047384e-02
## TMEM18 -1.848468e+00 9.872214e+00 -2.722597 7.405760e-03 2.047851e-02
## UFL1 4.528730e+00 1.805867e+01 2.722144 7.415353e-03 2.050025e-02
## CDC73 9.063683e+00 3.898623e+01 2.721992 7.418567e-03 2.050050e-02
## BTBD7 3.444196e+00 1.779174e+01 2.721976 7.418901e-03 2.050050e-02
## RNPEP -1.557433e+01 7.660925e+01 -2.720982 7.439955e-03 2.055390e-02
## ZNF276 -1.043966e+01 7.823383e+01 -2.720881 7.442106e-03 2.055505e-02
## MED21 2.222818e+00 1.232508e+01 2.720665 7.446696e-03 2.056294e-02
## UXS1 3.499918e+00 2.384312e+01 2.720390 7.452534e-03 2.057427e-02
## SCAF4 2.040631e+00 1.302500e+01 2.720093 7.458843e-03 2.058689e-02
## ELAVL1 2.105524e+00 2.192804e+01 2.719490 7.471693e-03 2.061756e-02
## CEACAM6 3.370567e+01 3.525454e+01 2.719088 7.480250e-03 2.063637e-02
## MR1 1.217681e+01 5.909118e+01 2.718131 7.500699e-03 2.068798e-02
## RPRD1A 4.795053e+00 2.419009e+01 2.717402 7.516283e-03 2.072151e-02
## NT5C3B -2.464256e+00 5.489423e+00 -2.717399 7.516353e-03 2.072151e-02
## CCAR1 4.776060e+00 3.225730e+01 2.717305 7.518375e-03 2.072227e-02
## MAGI3 4.527974e-01 1.382790e+00 2.717069 7.523437e-03 2.072266e-02
## C7orf26 -3.321729e+00 2.206129e+01 -2.716988 7.525153e-03 2.072266e-02
## KLF6 1.716155e+02 5.865033e+02 2.716957 7.525831e-03 2.072266e-02
## ZNF383 -1.046261e+00 7.555948e+00 -2.716896 7.527139e-03 2.072266e-02
## TDRKH 6.335389e-01 2.357464e+00 2.716891 7.527251e-03 2.072266e-02
## IGFBP4 -1.996917e+00 2.835312e+00 -2.716575 7.534029e-03 2.073650e-02
## ABCG1 1.297776e+01 3.368594e+01 2.716207 7.541917e-03 2.075340e-02
## KHK -1.421336e+00 2.326318e+00 -2.715203 7.563526e-03 2.080619e-02
## MTMR1 -9.259252e+00 2.914113e+01 -2.715153 7.564613e-03 2.080619e-02
## STRN3 3.468084e+00 1.439236e+01 2.714562 7.577338e-03 2.083636e-02
## ZDHHC13 3.318225e+00 1.513708e+01 2.714460 7.579541e-03 2.083759e-02
## MTMR11 -4.097002e+00 1.378616e+01 -2.714295 7.583101e-03 2.084255e-02
## LILRB5 -2.518284e+00 5.902708e+00 -2.713881 7.592047e-03 2.085962e-02
## OAS3 2.236413e+02 2.316988e+02 2.713845 7.592833e-03 2.085962e-02
## ENPP4 5.830852e+00 1.494631e+01 2.713760 7.594677e-03 2.085986e-02
## RCHY1 7.343626e+00 3.129796e+01 2.713675 7.596506e-03 2.086005e-02
## ENTR1 -2.310286e+00 1.042726e+01 -2.713567 7.598842e-03 2.086164e-02
## PRKD2 -2.453125e+01 8.720458e+01 -2.712605 7.619684e-03 2.091303e-02
## DDX19B -2.487459e+00 1.611731e+01 -2.712540 7.621090e-03 2.091303e-02
## TNPO2 -3.299242e+00 2.371625e+01 -2.712194 7.628594e-03 2.092878e-02
## USP32 7.179714e+01 2.223904e+02 2.711676 7.639846e-03 2.095192e-02
## HSPA4L 4.795732e-01 1.974137e+00 2.711643 7.640562e-03 2.095192e-02
## ARMH1 -5.149719e+00 9.602009e+00 -2.711356 7.646806e-03 2.096057e-02
## HDDC2 -3.369245e+00 1.591801e+01 -2.711336 7.647251e-03 2.096057e-02
## NSA2 -1.133393e+01 6.509212e+01 -2.710490 7.665674e-03 2.100621e-02
## TAGAP 8.954181e+01 2.715670e+02 2.710391 7.667825e-03 2.100725e-02
## MEGF9 2.336350e+02 6.226543e+02 2.709881 7.678950e-03 2.103288e-02
## WBP1L -2.303294e+01 1.315447e+02 -2.709300 7.691658e-03 2.106282e-02
## LEMD3 7.419732e+00 3.364193e+01 2.708387 7.711643e-03 2.111267e-02
## NIBAN3 -5.062104e+00 1.009506e+01 -2.708055 7.718941e-03 2.112777e-02
## ZNRD2 -1.474375e+00 2.601572e+00 -2.706909 7.744103e-03 2.119175e-02
## FHL1 5.278595e+00 1.411544e+01 2.706582 7.751317e-03 2.120660e-02
## RAF1 8.132253e+01 3.638603e+02 2.706099 7.761965e-03 2.123084e-02
## AKAP5 6.329157e-01 1.764332e+00 2.705632 7.772272e-03 2.125413e-02
## IFI44L 2.220630e+02 2.146960e+02 2.705316 7.779235e-03 2.126826e-02
## PTMA -7.582060e+01 4.247802e+02 -2.704088 7.806419e-03 2.133460e-02
## SLC35A1 9.527369e+00 4.787335e+01 2.704058 7.807095e-03 2.133460e-02
## MED14 3.875934e+00 1.837739e+01 2.703707 7.814871e-03 2.134945e-02
## CD79B -2.854502e+01 4.278334e+01 -2.703650 7.816131e-03 2.134945e-02
## XRRA1 -8.376822e+00 1.953467e+01 -2.702715 7.836903e-03 2.139940e-02
## PROSER3 -9.143807e-01 6.664087e+00 -2.702665 7.838027e-03 2.139940e-02
## FRMD4A 1.218816e+00 3.503061e+00 2.702441 7.842997e-03 2.140804e-02
## GGT7 -1.938190e+00 5.028157e+00 -2.702242 7.847432e-03 2.141522e-02
## RAB43 -3.080651e+01 6.569360e+01 -2.701312 7.868173e-03 2.146688e-02
## TAP1 2.391817e+02 5.968937e+02 2.701097 7.872988e-03 2.147508e-02
## MED27 -2.328863e+00 9.809472e+00 -2.700883 7.877753e-03 2.148313e-02
## ABCC2 2.798295e+00 7.386530e+00 2.700314 7.890489e-03 2.151292e-02
## MAZ -3.533277e+01 1.201400e+02 -2.700008 7.897330e-03 2.152662e-02
## TMOD2 1.006875e+01 3.218961e+01 2.699817 7.901622e-03 2.153337e-02
## RWDD2B 9.076375e-01 4.272339e+00 2.699736 7.903446e-03 2.153339e-02
## SRRM1 7.116846e+00 4.027897e+01 2.699219 7.915041e-03 2.156003e-02
## GTF2F2 -4.424567e+00 1.956746e+01 -2.698186 7.938260e-03 2.161832e-02
## INPP5D 4.109166e+01 2.307735e+02 2.697661 7.950065e-03 2.164490e-02
## UBQLN4 -3.979904e+00 1.762492e+01 -2.697590 7.951670e-03 2.164490e-02
## MRM3 -1.596965e+00 5.350658e+00 -2.697173 7.961089e-03 2.166556e-02
## SLC25A51 1.287836e+00 3.039906e+00 2.696685 7.972089e-03 2.169052e-02
## CCDC84 -1.511297e+00 7.097132e+00 -2.695963 7.988419e-03 2.172997e-02
## ENO3 -1.267011e+00 3.130735e+00 -2.694506 8.021456e-03 2.181064e-02
## PDLIM5 6.283129e+00 3.178956e+01 2.694493 8.021755e-03 2.181064e-02
## TDRD7 2.236037e+01 6.044724e+01 2.693947 8.034170e-03 2.183149e-02
## SLX4IP 1.459541e+00 6.511272e+00 2.693921 8.034771e-03 2.183149e-02
## GPRIN1 6.515291e-01 2.205504e+00 2.693913 8.034945e-03 2.183149e-02
## AP5M1 7.628235e+00 4.154590e+01 2.693458 8.045309e-03 2.185464e-02
## MORN3 -8.376128e-01 2.673827e+00 -2.692788 8.060581e-03 2.189111e-02
## ERCC8 8.577116e-01 5.337944e+00 2.692239 8.073117e-03 2.192014e-02
## LYRM4 -3.628616e+00 9.831868e+00 -2.692029 8.077915e-03 2.192589e-02
## TMEM135 1.109647e+00 5.174368e+00 2.691985 8.078934e-03 2.192589e-02
## SECISBP2L 8.597850e+00 3.151118e+01 2.691741 8.084518e-03 2.193583e-02
## IFIT2 4.952128e+02 6.826143e+02 2.691663 8.086292e-03 2.193583e-02
## AMD1 3.421636e+01 1.446059e+02 2.690986 8.101794e-03 2.196945e-02
## LONP2 1.543477e+01 4.934011e+01 2.690960 8.102394e-03 2.196945e-02
## BTBD1 6.648631e+00 4.617942e+01 2.690677 8.108889e-03 2.198204e-02
## CA13 5.017514e-01 2.137345e+00 2.689666 8.132115e-03 2.203375e-02
## DHX30 -3.400314e+00 1.784720e+01 -2.689628 8.132986e-03 2.203375e-02
## CENPC 3.512093e+00 1.437690e+01 2.689604 8.133537e-03 2.203375e-02
## GOT1 1.382192e+00 6.205814e+00 2.689282 8.140955e-03 2.204881e-02
## SLC44A2 -1.023325e+02 4.998173e+02 -2.688506 8.158839e-03 2.209220e-02
## DHX9 1.630183e+01 1.185330e+02 2.687729 8.176778e-03 2.213572e-02
## SEPTIN7 3.309450e+01 1.790245e+02 2.686567 8.203692e-03 2.220351e-02
## GABPA 7.148650e+00 3.536235e+01 2.685759 8.222451e-03 2.224911e-02
## RPUSD3 -2.161126e+00 9.020370e+00 -2.685680 8.224291e-03 2.224911e-02
## PNMA3 -1.104871e+00 1.748211e+00 -2.685237 8.234575e-03 2.227185e-02
## CA11 -1.048408e+00 2.080973e+00 -2.684917 8.242025e-03 2.228692e-02
## ETV3 5.357237e+00 2.467128e+01 2.683465 8.275899e-03 2.237330e-02
## COLEC12 -4.867266e-01 1.902017e+00 -2.683386 8.277743e-03 2.237330e-02
## MRPS2 -3.758798e+00 8.503008e+00 -2.683108 8.284259e-03 2.238581e-02
## PTPMT1 -3.966329e+00 1.691512e+01 -2.682490 8.298728e-03 2.241980e-02
## URB2 6.710011e-01 2.695909e+00 2.682307 8.303003e-03 2.242624e-02
## TRAFD1 5.476530e+01 1.844486e+02 2.681441 8.323331e-03 2.247383e-02
## MTMR6 2.372476e+01 8.538179e+01 2.681395 8.324412e-03 2.247383e-02
## EEF2KMT -1.764950e+00 5.516544e+00 -2.681122 8.330827e-03 2.248603e-02
## S1PR3 3.597325e+00 1.022066e+01 2.680742 8.339777e-03 2.250506e-02
## FAHD2B -1.557105e+00 3.477513e+00 -2.680599 8.343128e-03 2.250898e-02
## UHRF1BP1L 1.995905e+01 6.272811e+01 2.679775 8.362566e-03 2.255630e-02
## ZNF224 4.233203e+00 2.327206e+01 2.679681 8.364783e-03 2.255648e-02
## NAA50 1.477031e+01 9.630966e+01 2.679611 8.366438e-03 2.255648e-02
## LILRB1 -1.514468e+01 4.010830e+01 -2.679185 8.376480e-03 2.257842e-02
## SLC4A7 3.618099e+00 9.586608e+00 2.678979 8.381356e-03 2.258643e-02
## MFSD4B 5.509260e-01 3.108766e+00 2.678358 8.396061e-03 2.262092e-02
## CANX 2.924822e+01 1.956729e+02 2.677920 8.406425e-03 2.264370e-02
## ARNT 1.003814e+01 5.080378e+01 2.677738 8.410732e-03 2.264893e-02
## CENPO 2.074228e+00 6.808000e+00 2.677677 8.412188e-03 2.264893e-02
## C7orf31 6.345086e-01 4.481170e+00 2.677529 8.415694e-03 2.265323e-02
## MAN2A2 1.339373e+02 3.448806e+02 2.677447 8.417658e-03 2.265337e-02
## H1-10 -1.030230e+01 1.852315e+01 -2.677199 8.423527e-03 2.266403e-02
## HCST -2.132071e+01 4.651372e+01 -2.676748 8.434258e-03 2.268614e-02
## PARD3 1.308184e+00 3.609685e+00 2.676692 8.435572e-03 2.268614e-02
## PTGIR -3.265921e+00 7.081861e+00 -2.675685 8.459563e-03 2.274550e-02
## GCC1 7.870252e+00 3.954041e+01 2.674737 8.482178e-03 2.280114e-02
## DPH3P1 4.296009e-01 1.590977e+00 2.674346 8.491550e-03 2.282116e-02
## AP3M1 5.492635e+00 3.754818e+01 2.673767 8.505392e-03 2.285318e-02
## MAP3K10 -6.639000e-01 2.064994e+00 -2.672921 8.525679e-03 2.289956e-02
## PRR12 -1.131797e+00 4.883483e+00 -2.672887 8.526514e-03 2.289956e-02
## CASR 1.314881e+00 5.321598e+00 2.672055 8.546502e-03 2.294706e-02
## NXPE3 1.070068e+01 5.248253e+01 2.671990 8.548070e-03 2.294706e-02
## C1QA -1.534429e+01 1.742241e+01 -2.671856 8.551286e-03 2.295050e-02
## FTO 1.645189e+00 6.696907e+00 2.671310 8.564448e-03 2.298062e-02
## SETDB2 2.258486e+00 1.293624e+01 2.671171 8.567805e-03 2.298443e-02
## POLR2H -5.361157e+00 1.661062e+01 -2.670741 8.578173e-03 2.300704e-02
## ZNF609 4.893619e+00 2.070060e+01 2.670590 8.581817e-03 2.300851e-02
## SRSF4 8.434309e+00 6.388645e+01 2.670558 8.582602e-03 2.300851e-02
## BBS12 3.599030e-01 1.604934e+00 2.670156 8.592302e-03 2.302931e-02
## PDIA6 2.498147e+01 1.040426e+02 2.669369 8.611349e-03 2.307515e-02
## RNGTT 3.301254e+00 1.787533e+01 2.668663 8.628489e-03 2.311585e-02
## THYN1 -7.078846e+00 3.044662e+01 -2.668209 8.639505e-03 2.314014e-02
## MOB2 -1.134581e+01 3.492555e+01 -2.667787 8.649770e-03 2.316240e-02
## NAP1L5 3.142674e-01 1.092955e+00 2.667351 8.660386e-03 2.318559e-02
## SPC24 1.495696e+00 2.788181e+00 2.666495 8.681257e-03 2.323548e-02
## DNAH1 3.896914e+00 2.261873e+01 2.666426 8.682936e-03 2.323548e-02
## SMU1 5.526816e+00 6.270923e+01 2.665942 8.694749e-03 2.326184e-02
## DAZAP1 -6.142978e+00 2.823407e+01 -2.665449 8.706802e-03 2.328883e-02
## ZNF654 5.891810e+00 2.141354e+01 2.664938 8.719324e-03 2.331707e-02
## SETD6 -2.221627e+00 7.474746e+00 -2.664513 8.729736e-03 2.333965e-02
## SLC9A6 3.041435e+00 1.768685e+01 2.664049 8.741118e-03 2.336481e-02
## ELOA 2.943666e+00 2.736178e+01 2.663863 8.745700e-03 2.337179e-02
## PCK2 -3.636881e+00 1.423518e+01 -2.663755 8.748342e-03 2.337358e-02
## ALKBH5 -5.074654e+00 5.162064e+01 -2.663263 8.760450e-03 2.340066e-02
## IFIT3 5.914019e+02 7.003602e+02 2.662585 8.777160e-03 2.343522e-02
## NFS1 1.023320e+00 1.025568e+01 2.662577 8.777339e-03 2.343522e-02
## NRBP1 -1.933343e+01 1.331079e+02 -2.662362 8.782640e-03 2.344409e-02
## ALG12 -1.665377e+00 9.022112e+00 -2.662120 8.788622e-03 2.345478e-02
## LRG1 -1.472144e+02 2.910852e+02 -2.661736 8.798104e-03 2.347481e-02
## NOLC1 5.319665e+00 2.680148e+01 2.661082 8.814271e-03 2.351265e-02
## ZSCAN9 8.937529e-01 4.782326e+00 2.658192 8.886038e-03 2.369877e-02
## EID2B -4.093028e-01 1.626585e+00 -2.657621 8.900282e-03 2.372986e-02
## PERP 1.213967e+00 2.418782e+00 2.657486 8.903644e-03 2.372986e-02
## CBX6 -7.013909e+00 3.779113e+01 -2.657484 8.903699e-03 2.372986e-02
## AKR1A1 -1.187953e+01 4.717125e+01 -2.656718 8.922860e-03 2.377395e-02
## EIF3B -1.263588e+01 5.184686e+01 -2.656662 8.924253e-03 2.377395e-02
## SHPRH 2.040075e+00 7.974053e+00 2.656527 8.927623e-03 2.377759e-02
## TMEM223 -1.315801e+00 4.657895e+00 -2.656196 8.935907e-03 2.378910e-02
## FUT4 7.086180e+00 1.925956e+01 2.656194 8.935956e-03 2.378910e-02
## SNRNP200 1.656486e+01 1.389758e+02 2.656016 8.940419e-03 2.379564e-02
## PNISR 3.257600e+01 1.664202e+02 2.655447 8.954698e-03 2.382830e-02
## TOPORS 1.659350e+01 5.086077e+01 2.655118 8.962969e-03 2.384496e-02
## USP47 7.360429e+00 4.739430e+01 2.654828 8.970254e-03 2.385512e-02
## CHRNE -1.142248e+00 2.193163e+00 -2.654805 8.970814e-03 2.385512e-02
## LPP 1.094293e+01 4.009717e+01 2.654583 8.976414e-03 2.386467e-02
## WIPI2 -8.011385e+00 6.782077e+01 -2.654451 8.979726e-03 2.386812e-02
## EMD -4.630967e+00 1.839581e+01 -2.654271 8.984259e-03 2.387482e-02
## AKAP13 5.720263e+01 2.290312e+02 2.653345 9.007600e-03 2.393148e-02
## ING3 6.118534e+00 2.469458e+01 2.652895 9.018949e-03 2.395627e-02
## ZNF518A 7.690144e+00 3.079097e+01 2.652620 9.025914e-03 2.396940e-02
## ZBTB41 1.590841e+00 6.390101e+00 2.652105 9.038946e-03 2.399787e-02
## COPB2 2.160334e+01 1.192865e+02 2.652036 9.040683e-03 2.399787e-02
## PBDC1 -3.535848e+00 1.601970e+01 -2.651506 9.054111e-03 2.402412e-02
## NT5C3A 5.353637e+01 1.339374e+02 2.651486 9.054621e-03 2.402412e-02
## PRMT1 -1.061897e+01 2.990035e+01 -2.651043 9.065858e-03 2.404855e-02
## MBD5 1.870114e+00 9.170422e+00 2.650954 9.068124e-03 2.404918e-02
## ENDOD1 7.202466e+00 2.710927e+01 2.650858 9.070553e-03 2.405025e-02
## ST13 -9.965077e+00 8.170272e+01 -2.650200 9.087283e-03 2.408922e-02
## SIAE 3.054705e+00 1.134729e+01 2.649551 9.103808e-03 2.412763e-02
## RALGAPA1 2.716182e+00 9.593842e+00 2.649288 9.110491e-03 2.413995e-02
## SYNCRIP 9.487803e+00 5.656288e+01 2.649196 9.112843e-03 2.414079e-02
## ZMYND19 -1.253559e+00 3.781144e+00 -2.648000 9.143384e-03 2.421629e-02
## ACVRL1 -1.003789e+00 2.229447e+00 -2.647839 9.147497e-03 2.422177e-02
## SLC16A7 3.519377e+00 1.160564e+01 2.647026 9.168340e-03 2.427154e-02
## FCRLB -2.763805e-01 7.086895e-01 -2.646585 9.179648e-03 2.429606e-02
## TNRC6A 4.453861e+00 2.137933e+01 2.646467 9.182686e-03 2.429867e-02
## GBP4 4.542268e+01 7.451168e+01 2.646258 9.188048e-03 2.430744e-02
## PRPSAP2 1.875874e+00 1.592003e+01 2.646011 9.194389e-03 2.431879e-02
## TRDMT1 1.391226e+00 7.586136e+00 2.644541 9.232258e-03 2.441351e-02
## ITGA9 2.320970e+00 3.148738e+00 2.643586 9.256931e-03 2.447330e-02
## LOC100133315 1.843221e-01 4.838266e-01 2.642630 9.281684e-03 2.453327e-02
## POLR2M 4.000155e+00 1.955286e+01 2.642142 9.294342e-03 2.456125e-02
## ATF2 6.976855e+00 3.727888e+01 2.642026 9.297360e-03 2.456375e-02
## ZNF777 -8.992725e-01 3.357228e+00 -2.641907 9.300442e-03 2.456642e-02
## GRINA -9.886098e+01 2.191972e+02 -2.640427 9.338945e-03 2.466263e-02
## AKAP11 5.014154e+00 1.744752e+01 2.639929 9.351945e-03 2.469147e-02
## FCGR3A 2.887342e+02 9.488448e+02 2.639830 9.354524e-03 2.469278e-02
## FRY 1.772425e+01 5.823806e+01 2.639643 9.359411e-03 2.469654e-02
## MSMO1 3.057404e+00 1.239637e+01 2.639616 9.360112e-03 2.469654e-02
## PRKCB 7.784455e+01 3.776651e+02 2.639384 9.366171e-03 2.470703e-02
## MTIF2 1.831839e+00 1.704702e+01 2.639260 9.369426e-03 2.471012e-02
## GPR107 1.089904e+01 5.775534e+01 2.638841 9.380372e-03 2.473349e-02
## MOGS -7.778500e+00 3.939152e+01 -2.637302 9.420750e-03 2.483443e-02
## ZCCHC14 1.900973e+00 8.135402e+00 2.636892 9.431522e-03 2.485299e-02
## MON1A -1.145779e+00 3.209275e+00 -2.636874 9.431984e-03 2.485299e-02
## TACO1 -1.927256e+00 8.590247e+00 -2.636066 9.453264e-03 2.490354e-02
## HYPK -6.011392e+00 2.001202e+01 -2.635942 9.456548e-03 2.490665e-02
## TAPBPL -1.103339e+01 3.829578e+01 -2.635844 9.459132e-03 2.490793e-02
## VPS16 -1.096633e+01 6.272973e+01 -2.633929 9.509760e-03 2.503568e-02
## ZSCAN30 1.889031e+00 6.901201e+00 2.633442 9.522655e-03 2.506407e-02
## CEACAM8 6.137918e+01 6.231524e+01 2.633208 9.528879e-03 2.507148e-02
## PRKAG2 9.636438e+00 4.281959e+01 2.633177 9.529697e-03 2.507148e-02
## CD3E -4.585505e+01 9.747340e+01 -2.632297 9.553103e-03 2.512469e-02
## GBP3 2.911184e+01 5.272194e+01 2.632257 9.554162e-03 2.512469e-02
## FAM91A1 1.884788e+01 7.974683e+01 2.631981 9.561506e-03 2.513843e-02
## ATP13A1 -7.383992e+00 2.281762e+01 -2.631237 9.581346e-03 2.518501e-02
## NAA25 1.824803e+00 7.751185e+00 2.630438 9.602667e-03 2.523546e-02
## STK39 2.862079e+00 1.322061e+01 2.629980 9.614933e-03 2.526210e-02
## CD164 8.992131e+01 3.924765e+02 2.629811 9.619442e-03 2.526835e-02
## ZNF175 1.213693e+00 5.446901e+00 2.629372 9.631204e-03 2.529364e-02
## FBXO45 2.168777e+00 1.239601e+01 2.629240 9.634749e-03 2.529735e-02
## TMED10 1.298420e+01 1.198959e+02 2.628539 9.653569e-03 2.534115e-02
## PRPS1 3.668624e+00 2.240772e+01 2.628085 9.665754e-03 2.536753e-02
## KDM3B 3.186549e+01 1.335177e+02 2.627732 9.675271e-03 2.538688e-02
## HIKESHI -3.613254e+00 1.597694e+01 -2.626270 9.714699e-03 2.548470e-02
## RBM12B 3.802325e+00 1.741799e+01 2.625922 9.724106e-03 2.550242e-02
## FANCE 8.779516e-01 4.627691e+00 2.625861 9.725755e-03 2.550242e-02
## C12orf45 2.455860e+00 1.306772e+01 2.625684 9.730533e-03 2.550931e-02
## GRPEL2 1.397598e+00 9.412169e+00 2.625299 9.740949e-03 2.553097e-02
## PHF20L1 3.310105e+01 1.218556e+02 2.625067 9.747233e-03 2.554180e-02
## ORAI2 -3.669482e+01 1.408884e+02 -2.624603 9.759828e-03 2.556915e-02
## LYPLAL1 -2.580232e+00 1.627181e+01 -2.624043 9.775014e-03 2.560328e-02
## SYK -5.990680e+01 3.257982e+02 -2.623774 9.782323e-03 2.561677e-02
## TNRC6B 1.184554e+01 5.202516e+01 2.623650 9.785699e-03 2.561995e-02
## C22orf34 -1.739596e+00 3.797665e+00 -2.622926 9.805421e-03 2.566592e-02
## CMTR1 2.536574e+01 6.785118e+01 2.622253 9.823754e-03 2.570788e-02
## ATG16L1 2.633414e+00 2.406044e+01 2.622179 9.825784e-03 2.570788e-02
## APOOL 1.074606e+00 5.427433e+00 2.619770 9.891730e-03 2.587415e-02
## TBC1D23 7.476680e+00 3.863476e+01 2.619652 9.894968e-03 2.587415e-02
## HNRNPA0 -7.165298e+00 5.231583e+01 -2.619551 9.897748e-03 2.587415e-02
## HDLBP 1.679605e+01 1.125088e+02 2.619539 9.898062e-03 2.587415e-02
## GNG7 -4.207032e+00 1.507455e+01 -2.619153 9.908673e-03 2.589618e-02
## GLB1 -7.580130e+00 6.334692e+01 -2.619065 9.911114e-03 2.589685e-02
## ABCC6 9.671808e-01 3.504481e+00 2.618790 9.918669e-03 2.591088e-02
## SCRN1 3.522477e+00 1.257360e+01 2.618544 9.925446e-03 2.592265e-02
## NDUFA8 -3.639061e+00 1.787617e+01 -2.618468 9.927546e-03 2.592265e-02
## KRIT1 2.812740e+00 1.518428e+01 2.618365 9.930386e-03 2.592436e-02
## RUSF1 -5.698728e+00 2.130184e+01 -2.617038 9.967006e-03 2.601424e-02
## STXBP5 4.168042e+01 1.107839e+02 2.616891 9.971057e-03 2.601908e-02
## MYH10 4.144332e-01 1.159752e+00 2.616064 9.993952e-03 2.607136e-02
## PIAS3 1.738188e+00 1.113880e+01 2.616009 9.995488e-03 2.607136e-02
## FAM104B -9.002522e-01 5.192011e+00 -2.615295 1.001531e-02 2.611732e-02
## GPN2 -3.118016e+00 2.161797e+01 -2.614967 1.002441e-02 2.613530e-02
## SPATS2L 1.458862e+01 1.667069e+01 2.614691 1.003207e-02 2.614450e-02
## EGFL8 -3.743692e-01 6.893250e-01 -2.614682 1.003234e-02 2.614450e-02
## ARMC1 2.159620e+00 1.237289e+01 2.614382 1.004067e-02 2.616044e-02
## ZNF146 6.613679e+00 2.879880e+01 2.614274 1.004370e-02 2.616134e-02
## DUS2 -5.188538e+00 2.216241e+01 -2.614212 1.004542e-02 2.616134e-02
## AFAP1L2 5.471429e-01 1.847041e+00 2.613893 1.005429e-02 2.617868e-02
## ITGB3 6.154225e+01 1.344838e+02 2.613018 1.007872e-02 2.623653e-02
## CTSD -1.870756e+02 4.440580e+02 -2.612810 1.008450e-02 2.624582e-02
## TMEM69 1.850725e+00 1.481066e+01 2.612526 1.009247e-02 2.626079e-02
## MAP4K3 9.744551e-01 3.646618e+00 2.611772 1.011355e-02 2.630986e-02
## INTS6L 3.711811e+00 2.228831e+01 2.611245 1.012833e-02 2.634254e-02
## TEX22 -3.582125e-01 8.313437e-01 -2.610884 1.013846e-02 2.636312e-02
## TM7SF2 -1.134936e+00 2.276657e+00 -2.609940 1.016499e-02 2.642629e-02
## BACH1 9.012924e+01 3.123030e+02 2.609070 1.018951e-02 2.648425e-02
## RCL1 1.599333e+00 4.011113e+00 2.608167 1.021501e-02 2.654471e-02
## SLC30A5 3.367897e+00 2.559714e+01 2.607842 1.022420e-02 2.656049e-02
## RRP12 -2.185431e+01 7.295115e+01 -2.607745 1.022694e-02 2.656049e-02
## FAM83H -3.976500e-01 1.219264e+00 -2.607714 1.022780e-02 2.656049e-02
## PLP2 -1.124246e+02 3.173592e+02 -2.607414 1.023631e-02 2.657522e-02
## RAB19 1.451765e+00 2.951988e+00 2.607356 1.023796e-02 2.657522e-02
## CKB -1.162422e+00 1.329976e+00 -2.606016 1.027597e-02 2.666804e-02
## ATP6V0A1 -8.939130e+00 5.292454e+01 -2.605775 1.028282e-02 2.668001e-02
## TBPL1 4.209841e+00 2.635264e+01 2.605484 1.029110e-02 2.669563e-02
## MOCS2 1.346760e+00 9.137600e+00 2.605123 1.030137e-02 2.671644e-02
## ARID4B 2.814151e+01 1.045844e+02 2.604876 1.030842e-02 2.672886e-02
## DOCK4 7.332639e+00 1.922267e+01 2.604409 1.032172e-02 2.675750e-02
## ZGLP1 -1.049694e+00 2.340164e+00 -2.604113 1.033019e-02 2.677361e-02
## AMFR -6.878028e+00 4.960672e+01 -2.603983 1.033389e-02 2.677735e-02
## INTS6 1.310038e+01 5.530760e+01 2.603733 1.034104e-02 2.678905e-02
## SNX27 3.075481e+01 1.223616e+02 2.603650 1.034340e-02 2.678905e-02
## SUSD1 5.812788e+00 3.349218e+01 2.603556 1.034610e-02 2.678905e-02
## NUP153 1.979880e+01 6.752663e+01 2.603487 1.034805e-02 2.678905e-02
## GSS -4.552849e+00 1.797060e+01 -2.603430 1.034970e-02 2.678905e-02
## PRDM2 1.247347e+01 5.794222e+01 2.602043 1.038944e-02 2.688606e-02
## MAPK6 6.934121e+00 1.946851e+01 2.600877 1.042295e-02 2.696689e-02
## RRP1 -2.572387e+00 6.928780e+00 -2.600527 1.043302e-02 2.698704e-02
## PTPN22 1.178446e+01 3.875292e+01 2.600257 1.044080e-02 2.700129e-02
## PTER 1.419920e+00 6.386741e+00 2.599689 1.045720e-02 2.703781e-02
## ARSK 4.205405e-01 1.587801e+00 2.598809 1.048262e-02 2.709761e-02
## VAMP4 3.180498e+00 2.447515e+01 2.598287 1.049775e-02 2.713081e-02
## EXTL2 3.373573e-01 1.216805e+00 2.597825 1.051115e-02 2.715952e-02
## SLTM 1.503441e+01 9.324867e+01 2.597463 1.052165e-02 2.717464e-02
## FGF11 -6.531670e-01 2.107552e+00 -2.597412 1.052312e-02 2.717464e-02
## PLEKHB1 -2.993420e+00 6.360133e+00 -2.597386 1.052387e-02 2.717464e-02
## SKAP1 -9.911710e+00 2.524326e+01 -2.596809 1.054063e-02 2.721200e-02
## SLC26A11 -2.283714e+00 8.702901e+00 -2.596147 1.055989e-02 2.725578e-02
## RAB39B 1.428749e+00 6.234750e+00 2.595695 1.057309e-02 2.728390e-02
## ATP5PO -2.237062e+01 1.055607e+02 -2.594637 1.060397e-02 2.735765e-02
## GID4 1.305907e+00 1.111266e+01 2.593960 1.062379e-02 2.740281e-02
## NOM1 1.338229e+00 7.310789e+00 2.592611 1.066335e-02 2.749887e-02
## ALKBH3 -2.048487e+00 8.083538e+00 -2.591667 1.069110e-02 2.756445e-02
## TAF5L 2.124914e+00 1.582283e+01 2.590610 1.072227e-02 2.763881e-02
## RHOT1 2.201217e+01 8.289552e+01 2.590335 1.073042e-02 2.765379e-02
## DEXI -2.599466e+00 5.925844e+00 -2.590111 1.073702e-02 2.766101e-02
## CEP57 3.594691e+00 2.293802e+01 2.590082 1.073788e-02 2.766101e-02
## MINK1 -8.180096e+00 6.387061e+01 -2.589371 1.075893e-02 2.770921e-02
## SNRPB2 -4.090494e+00 3.409251e+01 -2.589045 1.076858e-02 2.772664e-02
## QRSL1 1.851812e+00 9.624723e+00 2.588985 1.077037e-02 2.772664e-02
## SPAG16 -4.371253e-01 1.090955e+00 -2.588180 1.079424e-02 2.778204e-02
## SCAMP3 -4.914258e+00 1.888963e+01 -2.588074 1.079739e-02 2.778413e-02
## MKNK2 -3.873564e+01 1.762444e+02 -2.587143 1.082511e-02 2.784941e-02
## PRTFDC1 5.236641e-01 1.277977e+00 2.586766 1.083634e-02 2.787226e-02
## RAB11A 2.201398e+01 1.410280e+02 2.585941 1.086094e-02 2.792947e-02
## PRPF40A 1.540880e+01 9.444992e+01 2.585650 1.086964e-02 2.794578e-02
## MPHOSPH8 7.787564e+00 6.376356e+01 2.584447 1.090566e-02 2.802789e-02
## EEF1E1 2.162895e+00 9.160501e+00 2.584426 1.090630e-02 2.802789e-02
## FBXO22 1.106205e+00 1.132537e+01 2.583961 1.092024e-02 2.805765e-02
## SLC35E4 -4.048227e-01 9.743732e-01 -2.583619 1.093050e-02 2.807791e-02
## IMP3 -4.843377e+00 1.711971e+01 -2.583307 1.093989e-02 2.809595e-02
## HDAC9 2.758533e+00 9.619631e+00 2.583227 1.094229e-02 2.809603e-02
## ATP8B4 1.295592e+01 2.685775e+01 2.582953 1.095054e-02 2.810534e-02
## DDX46 7.395155e+00 4.691826e+01 2.582949 1.095065e-02 2.810534e-02
## BBOF1 5.757028e-01 1.678686e+00 2.582773 1.095594e-02 2.811281e-02
## CBFB 5.839142e+00 5.376841e+01 2.581685 1.098876e-02 2.819093e-02
## PPT1 -1.595339e+02 5.965717e+02 -2.580930 1.101156e-02 2.824331e-02
## MEN1 -3.138149e+00 1.135054e+01 -2.580365 1.102865e-02 2.828075e-02
## NOD2 2.274797e+01 7.447489e+01 2.580290 1.103092e-02 2.828075e-02
## CPEB4 3.871985e+01 1.023659e+02 2.580189 1.103398e-02 2.828247e-02
## STK17B 1.473249e+02 4.969193e+02 2.579081 1.106761e-02 2.836254e-02
## GRK5 4.412894e+00 3.155185e+01 2.578598 1.108228e-02 2.839401e-02
## DDX21 1.482585e+01 4.772051e+01 2.578463 1.108639e-02 2.839840e-02
## TMEM109 -6.616349e+00 2.901525e+01 -2.577393 1.111901e-02 2.847581e-02
## PIAS4 -1.470302e+00 8.388484e+00 -2.576949 1.113256e-02 2.850434e-02
## ATP5F1E -1.358299e+02 4.871762e+02 -2.576423 1.114863e-02 2.853934e-02
## SAMD8 1.578047e+01 5.824889e+01 2.575985 1.116204e-02 2.856750e-02
## TNFRSF9 -3.414460e+00 7.481335e+00 -2.575902 1.116456e-02 2.856778e-02
## NDUFAF2 -1.053223e+00 4.506628e+00 -2.575817 1.116717e-02 2.856830e-02
## NOTCH2 8.096553e+01 2.724189e+02 2.575510 1.117658e-02 2.858357e-02
## ZNF493 5.959261e+00 1.815725e+01 2.575465 1.117796e-02 2.858357e-02
## CASD1 2.069944e+00 8.515218e+00 2.575104 1.118902e-02 2.860568e-02
## ZFP69 5.875319e-01 3.746610e+00 2.574534 1.120652e-02 2.864425e-02
## PARK7 -1.945000e+01 1.207459e+02 -2.574224 1.121605e-02 2.865923e-02
## NPHP4 -5.683041e-01 3.062974e+00 -2.574186 1.121721e-02 2.865923e-02
## CYFIP2 -2.413189e+01 1.618604e+02 -2.572823 1.125919e-02 2.876030e-02
## CACNA1I -2.850021e+00 5.741571e+00 -2.572731 1.126203e-02 2.876135e-02
## VSIG10 3.467299e+00 6.069372e+00 2.571598 1.129705e-02 2.884456e-02
## CISD1 -1.471082e+00 6.009505e+00 -2.571442 1.130191e-02 2.885075e-02
## DDX56 -6.900166e+00 2.690079e+01 -2.571183 1.130992e-02 2.886501e-02
## WDR43 3.575491e+00 1.520267e+01 2.570645 1.132659e-02 2.890132e-02
## RNF168 3.245874e+00 2.170754e+01 2.569406 1.136507e-02 2.899328e-02
## DICER1 5.808124e+01 1.614229e+02 2.568427 1.139557e-02 2.906482e-02
## TMC8 -3.553550e+01 1.104688e+02 -2.567895 1.141219e-02 2.910097e-02
## PSME3 1.507590e+01 9.448871e+01 2.567765 1.141623e-02 2.910501e-02
## S100A9 -1.055411e+04 2.237284e+04 -2.567381 1.142823e-02 2.912609e-02
## TADA1 1.069702e+00 6.346924e+00 2.567344 1.142941e-02 2.912609e-02
## GRN -1.837249e+02 5.313598e+02 -2.567066 1.143811e-02 2.914199e-02
## LIG3 2.031569e+00 1.172082e+01 2.566775 1.144722e-02 2.915895e-02
## NUDT18 -5.443874e+00 1.225316e+01 -2.565537 1.148603e-02 2.925152e-02
## PELI2 2.094922e+01 8.550254e+01 2.565307 1.149327e-02 2.926366e-02
## ARPP19 1.939168e+01 1.074464e+02 2.565069 1.150074e-02 2.927640e-02
## ZNF506 2.388109e+00 1.059132e+01 2.563599 1.154706e-02 2.938802e-02
## SP100 6.918461e+01 2.643511e+02 2.563101 1.156279e-02 2.942173e-02
## ARL1 2.362210e+00 1.658319e+01 2.562849 1.157076e-02 2.943569e-02
## CTU1 -8.533756e-01 2.318572e+00 -2.562742 1.157413e-02 2.943796e-02
## ZNF799 3.432920e+00 8.736181e+00 2.562430 1.158402e-02 2.945190e-02
## KMT2D 2.617404e+01 1.069567e+02 2.562412 1.158458e-02 2.945190e-02
## TAB2 4.290632e+01 1.842722e+02 2.562196 1.159142e-02 2.945378e-02
## MRPL45 -2.151203e+00 1.451130e+01 -2.562154 1.159274e-02 2.945378e-02
## SIDT1 2.614732e+00 8.330734e+00 2.562093 1.159468e-02 2.945378e-02
## SYNM 1.155582e+00 3.136887e+00 2.562075 1.159525e-02 2.945378e-02
## CCT2 7.321871e+00 4.494309e+01 2.561710 1.160683e-02 2.947688e-02
## MZT2A -1.599923e+00 1.805651e+00 -2.561566 1.161139e-02 2.948214e-02
## CORO2A 6.151353e+00 2.303928e+01 2.561037 1.162818e-02 2.951845e-02
## ANXA2 -7.099347e+01 3.756854e+02 -2.560013 1.166075e-02 2.959481e-02
## TMEM44 3.431656e-01 1.122166e+00 2.559768 1.166853e-02 2.960821e-02
## TMED2 1.673548e+01 1.279011e+02 2.559354 1.168175e-02 2.963541e-02
## SIPA1L1 1.700675e+01 7.976661e+01 2.559064 1.169101e-02 2.964283e-02
## GATAD2B 1.016005e+01 5.197707e+01 2.559050 1.169145e-02 2.964283e-02
## RBAK 2.513824e+00 1.133658e+01 2.559027 1.169217e-02 2.964283e-02
## CDKN3 2.081080e+00 3.118757e+00 2.558765 1.170054e-02 2.965771e-02
## MARF1 3.476990e+01 1.548640e+02 2.558522 1.170830e-02 2.967104e-02
## NME7 4.954403e-01 2.856890e+00 2.558031 1.172399e-02 2.970445e-02
## UBAP2 1.030376e+00 6.711356e+00 2.557697 1.173470e-02 2.972523e-02
## KAT2A -4.800293e+00 1.636017e+01 -2.556759 1.176476e-02 2.979501e-02
## NDUFA1 -2.698323e+01 1.163793e+02 -2.556572 1.177075e-02 2.980383e-02
## SLC11A2 2.363063e+00 1.377493e+01 2.556444 1.177487e-02 2.980789e-02
## SRFBP1 7.625014e-01 3.240072e+00 2.556176 1.178350e-02 2.982320e-02
## ABRAXAS1 1.388401e+00 7.843159e+00 2.556100 1.178595e-02 2.982320e-02
## CLTCL1 4.608728e+00 1.053767e+01 2.554758 1.182916e-02 2.992616e-02
## FGFR1OP2 1.768208e+01 7.865893e+01 2.554658 1.183238e-02 2.992793e-02
## RBM25 1.786538e+01 9.309987e+01 2.552156 1.191332e-02 3.012621e-02
## SUCLG1 -1.025618e+01 5.835953e+01 -2.551769 1.192591e-02 3.015163e-02
## DSTYK 3.271212e+00 1.804712e+01 2.550647 1.196240e-02 3.023159e-02
## CANT1 -2.225659e+01 1.007905e+02 -2.550640 1.196264e-02 3.023159e-02
## TVP23B 5.771453e+00 3.106555e+01 2.550440 1.196915e-02 3.024162e-02
## GNPNAT1 1.245892e+00 6.601890e+00 2.550121 1.197954e-02 3.026142e-02
## DERA 3.173037e+00 2.078248e+01 2.549839 1.198874e-02 3.027821e-02
## RESF1 2.633676e+02 7.096737e+02 2.548898 1.201952e-02 3.034947e-02
## IMP4 -4.073529e+00 1.551667e+01 -2.547604 1.206193e-02 3.044614e-02
## FICD 6.171059e-01 2.978338e+00 2.547573 1.206294e-02 3.044614e-02
## ZNF615 1.470742e+00 7.225470e+00 2.547433 1.206753e-02 3.045125e-02
## BCL2L15 4.975723e+00 6.069439e+00 2.547060 1.207978e-02 3.047373e-02
## ATP6AP2 -1.663389e+01 1.315359e+02 -2.546966 1.208287e-02 3.047373e-02
## ORC4 6.588436e+00 4.620457e+01 2.546927 1.208414e-02 3.047373e-02
## TOR1B 2.322526e+01 5.528300e+01 2.546660 1.209292e-02 3.048452e-02
## ADD1 -1.636651e+01 1.611918e+02 -2.546641 1.209356e-02 3.048452e-02
## CLEC2D 1.487806e+01 5.965721e+01 2.546444 1.210004e-02 3.049436e-02
## TENT4B 4.518514e+00 2.079962e+01 2.545185 1.214156e-02 3.059250e-02
## CABLES2 7.819527e-01 5.607016e+00 2.544912 1.215056e-02 3.060868e-02
## MAP3K2 6.800600e+01 2.218011e+02 2.543859 1.218538e-02 3.068505e-02
## RTN1 -2.203562e+00 7.194776e+00 -2.543839 1.218605e-02 3.068505e-02
## ZNF697 1.171199e+00 3.507411e+00 2.542865 1.221835e-02 3.075984e-02
## PIGB 6.589413e+00 2.445336e+01 2.542098 1.224384e-02 3.081747e-02
## CCP110 5.153282e+00 1.997068e+01 2.541979 1.224782e-02 3.082094e-02
## MTURN 1.996188e+01 8.618507e+01 2.541415 1.226660e-02 3.086166e-02
## UBE2D4 -1.173103e+00 5.316323e+00 -2.541264 1.227164e-02 3.086550e-02
## BLOC1S1 -7.032260e+01 1.778309e+02 -2.541213 1.227333e-02 3.086550e-02
## ANAPC7 2.199602e+00 2.897211e+01 2.539604 1.232706e-02 3.099405e-02
## AFF1 2.497652e+01 7.991046e+01 2.539520 1.232988e-02 3.099456e-02
## VPS26C 9.117852e+00 5.577481e+01 2.539337 1.233599e-02 3.100337e-02
## YAE1 -5.641323e-01 2.625677e+00 -2.539167 1.234169e-02 3.101112e-02
## TRAF3IP1 5.284931e-01 2.780169e+00 2.538974 1.234817e-02 3.102082e-02
## WDR54 -2.354738e+00 4.946373e+00 -2.538544 1.236258e-02 3.105043e-02
## ZDHHC5 1.008192e+01 7.892320e+01 2.538161 1.237544e-02 3.107286e-02
## RCCD1 5.366254e-01 2.116400e+00 2.538122 1.237675e-02 3.107286e-02
## EMG1 -8.024029e+00 3.052906e+01 -2.536704 1.242446e-02 3.118604e-02
## ZNF45 1.442963e+00 9.325411e+00 2.536444 1.243322e-02 3.120144e-02
## FAM228B -2.410119e+00 7.620070e+00 -2.536052 1.244647e-02 3.122808e-02
## POGK 3.696926e+00 2.561519e+01 2.535924 1.245077e-02 3.123227e-02
## CIAO2B -8.899034e+00 2.813526e+01 -2.535765 1.245614e-02 3.123913e-02
## TIMM8B -9.416333e+00 2.565855e+01 -2.534810 1.248845e-02 3.131354e-02
## TBC1D25 -3.275473e+00 1.967767e+01 -2.533798 1.252276e-02 3.138102e-02
## REC8 5.201892e+00 1.908573e+01 2.533772 1.252364e-02 3.138102e-02
## BOLA2B -4.505944e+00 9.346033e+00 -2.533712 1.252567e-02 3.138102e-02
## POLD1 -1.569528e+00 4.016221e+00 -2.533704 1.252595e-02 3.138102e-02
## NT5DC3 1.983981e+00 6.803999e+00 2.532598 1.256354e-02 3.146854e-02
## PCBP3 -9.314674e-01 1.923354e+00 -2.532492 1.256717e-02 3.147101e-02
## IFIT1 4.520018e+02 4.701501e+02 2.532195 1.257729e-02 3.148969e-02
## GLE1 6.144902e+00 4.926146e+01 2.531765 1.259194e-02 3.151970e-02
## SPNS3 -4.302903e+00 3.924589e+00 -2.531679 1.259488e-02 3.152043e-02
## TFRC 1.107333e+01 2.410539e+01 2.530869 1.262252e-02 3.158294e-02
## UBQLN1 1.271021e+01 8.366452e+01 2.530100 1.264886e-02 3.164216e-02
## SPATA5L1 2.033989e+00 1.079640e+01 2.529903 1.265559e-02 3.164825e-02
## TRIP12 3.820747e+01 1.994150e+02 2.529817 1.265853e-02 3.164825e-02
## GLO1 3.313202e+00 2.510294e+01 2.529719 1.266190e-02 3.164825e-02
## SLC35C2 -9.720613e+00 4.094905e+01 -2.529584 1.266655e-02 3.164825e-02
## RFTN1 -5.656117e+00 2.251808e+01 -2.529576 1.266680e-02 3.164825e-02
## RAC2 -1.352542e+02 6.394770e+02 -2.529562 1.266730e-02 3.164825e-02
## EXOSC4 -8.673161e+00 8.740912e+00 -2.529000 1.268658e-02 3.168972e-02
## DBI -1.490688e+01 9.614689e+01 -2.528880 1.269069e-02 3.169333e-02
## B4GALT4 8.923724e+00 2.418808e+01 2.528777 1.269422e-02 3.169547e-02
## TPP1 3.430171e+01 2.078114e+02 2.528670 1.269792e-02 3.169802e-02
## LDLRAD3 1.688681e+00 4.434473e+00 2.527682 1.273191e-02 3.177620e-02
## SNRPB -1.790708e+01 7.053258e+01 -2.527487 1.273863e-02 3.178626e-02
## COX6A1 -1.740319e+01 8.649238e+01 -2.527344 1.274355e-02 3.179187e-02
## ACAP2 6.291797e+01 2.308484e+02 2.527025 1.275455e-02 3.181261e-02
## PDE3A 5.388162e-01 1.338506e+00 2.526819 1.276168e-02 3.182327e-02
## LRRC14 -2.460289e+00 8.942702e+00 -2.526746 1.276419e-02 3.182327e-02
## SPRTN 1.996423e+00 9.633731e+00 2.526564 1.277046e-02 3.182909e-02
## FFAR3 -5.734961e+00 6.900860e+00 -2.526523 1.277189e-02 3.182909e-02
## POLR3A 1.365316e+00 9.810883e+00 2.526318 1.277897e-02 3.184004e-02
## SMUG1 -2.513293e+00 1.639757e+01 -2.526225 1.278221e-02 3.184142e-02
## NIPA2 6.796406e+00 4.500456e+01 2.525752 1.279855e-02 3.187543e-02
## FKBP11 1.250975e+01 2.263391e+01 2.525323 1.281340e-02 3.190571e-02
## SDR42E1 5.887969e-01 1.897883e+00 2.524667 1.283616e-02 3.195462e-02
## ABCB7 -1.601558e+00 1.423068e+01 -2.524602 1.283843e-02 3.195462e-02
## ARHGEF18 -7.882418e+00 5.622365e+01 -2.524455 1.284352e-02 3.196058e-02
## TOR1AIP2 1.070743e+01 5.590155e+01 2.524067 1.285699e-02 3.198740e-02
## ECPAS 7.507881e+00 5.179794e+01 2.523828 1.286530e-02 3.200135e-02
## SPAG9 2.972831e+01 1.064268e+02 2.523584 1.287380e-02 3.201579e-02
## BLNK 1.962385e+00 6.007002e+00 2.522718 1.290397e-02 3.208408e-02
## PTP4A1 3.171210e+01 1.037282e+02 2.522484 1.291214e-02 3.209766e-02
## MTMR12 3.970103e+00 2.617007e+01 2.521599 1.294302e-02 3.216770e-02
## RNF7 -5.742542e+00 4.031531e+01 -2.521511 1.294610e-02 3.216859e-02
## DDX60L 1.244952e+02 3.287047e+02 2.521203 1.295688e-02 3.218865e-02
## CMC1 -2.705885e+00 1.313216e+01 -2.520805 1.297081e-02 3.221650e-02
## ZNF888 7.767257e-01 2.734716e+00 2.520607 1.297775e-02 3.222640e-02
## ZNF670 3.025612e-01 1.529215e+00 2.520536 1.298023e-02 3.222640e-02
## RTTN 9.307300e-01 3.618170e+00 2.519393 1.302036e-02 3.231258e-02
## PHPT1 -6.354045e+00 1.315330e+01 -2.519392 1.302039e-02 3.231258e-02
## DENR 4.393017e+00 4.751001e+01 2.519246 1.302553e-02 3.231857e-02
## FAM168A 8.389101e+00 4.525422e+01 2.519071 1.303169e-02 3.232710e-02
## CDK20 -3.070905e-01 7.955739e-01 -2.518708 1.304445e-02 3.235197e-02
## POLR1B 2.104745e+00 9.759477e+00 2.518463 1.305308e-02 3.236661e-02
## MRGBP -2.815299e+00 1.621016e+01 -2.517607 1.308326e-02 3.243468e-02
## MDM2 5.066875e+01 1.458468e+02 2.517387 1.309105e-02 3.244529e-02
## TAF1D 2.573629e+00 1.788070e+01 2.517331 1.309302e-02 3.244529e-02
## RNF220 -6.217016e+00 4.907199e+01 -2.516840 1.311036e-02 3.248149e-02
## PDIA4 2.318903e+01 5.593395e+01 2.516454 1.312404e-02 3.250858e-02
## AP1G1 1.763865e+01 7.768832e+01 2.514890 1.317949e-02 3.263912e-02
## TM9SF3 1.114797e+01 9.688584e+01 2.514752 1.318441e-02 3.264448e-02
## RAB11FIP4 -1.312034e+01 7.769235e+01 -2.514455 1.319496e-02 3.266380e-02
## SLFN14 1.143305e+00 3.494918e+00 2.514099 1.320764e-02 3.268835e-02
## UBE4B 7.031484e+00 3.908683e+01 2.513694 1.322206e-02 3.271722e-02
## CHST7 -1.363036e+00 4.284618e+00 -2.513522 1.322820e-02 3.272484e-02
## GPRIN3 7.051648e+00 2.072171e+01 2.513399 1.323258e-02 3.272484e-02
## ZNF275 1.623123e+00 6.549024e+00 2.513376 1.323342e-02 3.272484e-02
## YWHAG 1.003586e+01 6.568807e+01 2.513056 1.324484e-02 3.274625e-02
## TRAPPC4 -6.591413e+00 3.443879e+01 -2.512370 1.326931e-02 3.279993e-02
## MMP19 -1.548876e+00 5.630683e+00 -2.512259 1.327329e-02 3.280291e-02
## CHUK 1.387007e+01 5.250260e+01 2.511671 1.329434e-02 3.284811e-02
## SCAF8 8.074170e+00 4.052256e+01 2.510262 1.334489e-02 3.296613e-02
## CD3D -3.521715e+01 6.773680e+01 -2.510090 1.335107e-02 3.297453e-02
## TBL1XR1 -1.636637e+01 9.219307e+01 -2.509508 1.337200e-02 3.301485e-02
## HYLS1 5.166309e-01 3.551171e+00 2.509410 1.337553e-02 3.301485e-02
## ICMT 2.925407e+00 1.931146e+01 2.509404 1.337575e-02 3.301485e-02
## MTF1 2.383295e+01 8.288418e+01 2.509224 1.338223e-02 3.302397e-02
## ABRACL -6.342794e+00 4.455222e+01 -2.508495 1.340849e-02 3.308191e-02
## BPHL -3.924080e-01 1.550904e+00 -2.507964 1.342769e-02 3.312239e-02
## CPSF3 -2.554146e+00 2.198405e+01 -2.507480 1.344519e-02 3.315865e-02
## RPSAP58 -1.943049e+01 4.319015e+01 -2.507216 1.345473e-02 3.317529e-02
## FXR2 -3.770962e+00 3.413960e+01 -2.507009 1.346223e-02 3.318688e-02
## IRAG1 -4.085937e+01 1.145352e+02 -2.506727 1.347244e-02 3.319578e-02
## AMIGO3 -4.501387e-01 1.157669e+00 -2.506683 1.347404e-02 3.319578e-02
## CEP170 9.928298e+00 3.643879e+01 2.506677 1.347424e-02 3.319578e-02
## ILK -4.215631e+01 2.121647e+02 -2.506546 1.347899e-02 3.319596e-02
## TMEM263 2.534449e+00 9.363230e+00 2.506521 1.347991e-02 3.319596e-02
## AKT3 2.587020e+00 9.796585e+00 2.506098 1.349525e-02 3.322684e-02
## FAM189B -1.362383e+00 6.273706e+00 -2.506018 1.349815e-02 3.322708e-02
## CENPP 5.709713e-01 2.306867e+00 2.505762 1.350745e-02 3.324307e-02
## UNC5CL -4.554590e-01 2.499475e+00 -2.504960 1.353660e-02 3.330789e-02
## NFRKB 3.020474e+00 2.628609e+01 2.504399 1.355703e-02 3.335125e-02
## TRNAU1AP -4.109401e+00 2.255634e+01 -2.503430 1.359239e-02 3.343131e-02
## ZNF37A 1.993182e+00 1.151861e+01 2.503018 1.360745e-02 3.346141e-02
## MMP9 -2.882377e+02 3.462148e+02 -2.502182 1.363804e-02 3.352968e-02
## CSGALNACT2 1.242768e+02 2.362771e+02 2.501852 1.365016e-02 3.355252e-02
## GIMAP5 -2.858756e+01 8.577913e+01 -2.501543 1.366147e-02 3.357335e-02
## MRPS23 -3.805007e+00 2.095550e+01 -2.500947 1.368336e-02 3.362019e-02
## HSD17B13 6.902109e-01 1.965186e+00 2.499741 1.372774e-02 3.372226e-02
## IL17RC -6.497637e-01 1.757813e+00 -2.498173 1.378566e-02 3.385752e-02
## LPCAT3 -1.193540e+01 4.303278e+01 -2.497896 1.379589e-02 3.387561e-02
## PCNX1 9.116588e+01 2.675124e+02 2.496954 1.383079e-02 3.394878e-02
## SSC4D -2.140668e-01 4.950435e-01 -2.496917 1.383219e-02 3.394878e-02
## GFM1 2.506885e+00 1.494705e+01 2.496812 1.383606e-02 3.394878e-02
## ZNF207 1.373173e+01 8.861035e+01 2.496783 1.383714e-02 3.394878e-02
## SAP30 1.876106e+01 3.269407e+01 2.496341 1.385356e-02 3.398206e-02
## UPK3BL1 -8.452693e+00 2.331188e+01 -2.494854 1.390892e-02 3.411079e-02
## LUZP6 4.386590e+01 1.960422e+02 2.494679 1.391543e-02 3.411266e-02
## MTPN 4.386590e+01 1.960422e+02 2.494679 1.391543e-02 3.411266e-02
## FOCAD 1.901405e+00 1.268748e+01 2.494155 1.393499e-02 3.415354e-02
## MRPS12 -2.778211e+00 5.952540e+00 -2.493913 1.394405e-02 3.416869e-02
## ZFYVE21 -1.469044e+00 9.759003e+00 -2.493568 1.395693e-02 3.418509e-02
## ISG20L2 4.483035e+00 4.408755e+01 2.493564 1.395708e-02 3.418509e-02
## CZIB -3.129535e+00 2.281314e+01 -2.493502 1.395939e-02 3.418509e-02
## DYNLL2 9.488125e+00 8.140808e+01 2.493281 1.396768e-02 3.419831e-02
## RTEL1 -1.457834e+00 5.039526e+00 -2.493199 1.397073e-02 3.419873e-02
## LZTFL1 1.211460e+00 6.559705e+00 2.492353 1.400244e-02 3.426394e-02
## ZC3HAV1 4.217380e+01 1.424413e+02 2.492277 1.400530e-02 3.426394e-02
## BAIAP2 -1.233763e+00 3.930960e+00 -2.492257 1.400604e-02 3.426394e-02
## PRMT9 1.176319e+00 6.298467e+00 2.491156 1.404742e-02 3.435809e-02
## UFM1 7.081716e+00 4.554481e+01 2.490945 1.405537e-02 3.436261e-02
## FUBP3 2.550897e+00 1.415145e+01 2.490920 1.405630e-02 3.436261e-02
## TUT4 4.222471e+00 1.829120e+01 2.490876 1.405796e-02 3.436261e-02
## ZC3H3 -5.977745e+00 1.505171e+01 -2.490382 1.407654e-02 3.440095e-02
## NDUFB11 -1.507918e+01 3.412486e+01 -2.490051 1.408904e-02 3.442440e-02
## CD24 9.866857e+01 1.206098e+02 2.489325 1.411643e-02 3.448421e-02
## ASCC1 2.921720e+00 1.512868e+01 2.488803 1.413618e-02 3.452535e-02
## MAN2C1 -1.241110e+01 4.115284e+01 -2.488444 1.414975e-02 3.455062e-02
## IL24 -4.777560e-01 1.157309e+00 -2.488376 1.415235e-02 3.455062e-02
## RNF216 -5.242359e+00 4.148618e+01 -2.488296 1.415538e-02 3.455089e-02
## ARIH2 4.786847e+00 6.893537e+01 2.487814 1.417363e-02 3.458833e-02
## TMEM147 -5.391966e+00 1.830401e+01 -2.487056 1.420240e-02 3.464572e-02
## LMBRD1 -1.808725e+01 8.372535e+01 -2.487041 1.420299e-02 3.464572e-02
## DOCK11 3.648551e+01 1.609723e+02 2.486185 1.423554e-02 3.471797e-02
## SND1 -1.063988e+01 6.432781e+01 -2.485899 1.424642e-02 3.473663e-02
## TULP3 4.514438e-01 2.055632e+00 2.485830 1.424905e-02 3.473663e-02
## LDAH 1.116779e+00 6.194975e+00 2.485342 1.426766e-02 3.477484e-02
## GTF2H1 2.252440e+00 2.305593e+01 2.485172 1.427416e-02 3.478354e-02
## C9orf40 2.384336e+00 6.742911e+00 2.484779 1.428913e-02 3.481288e-02
## ZBTB34 2.877014e+01 1.014707e+02 2.484573 1.429700e-02 3.482104e-02
## EXOSC7 -2.373720e+00 1.010529e+01 -2.484517 1.429916e-02 3.482104e-02
## RNFT1 5.760902e+00 2.797873e+01 2.484461 1.430129e-02 3.482104e-02
## KCNIP2 -4.008372e-01 1.316227e+00 -2.484279 1.430827e-02 3.483088e-02
## TMEM11 -4.149288e+00 2.044951e+01 -2.483702 1.433033e-02 3.487051e-02
## DUSP23 -3.156520e+00 8.907170e+00 -2.483700 1.433043e-02 3.487051e-02
## SLBP 7.546096e+00 5.114101e+01 2.483076 1.435432e-02 3.492148e-02
## MAD2L1BP 7.664527e+00 3.398890e+01 2.482548 1.437457e-02 3.496216e-02
## MEFV 5.124804e+01 2.121622e+02 2.482487 1.437694e-02 3.496216e-02
## WDR26 6.643694e+01 2.800902e+02 2.482037 1.439422e-02 3.499701e-02
## S100A10 -4.157135e+01 1.530519e+02 -2.481923 1.439860e-02 3.500048e-02
## LDOC1 -5.225833e-01 1.071736e+00 -2.481640 1.440951e-02 3.501983e-02
## HERC6 1.956895e+01 2.820221e+01 2.479903 1.447647e-02 3.517536e-02
## SRBD1 8.619691e+00 3.101500e+01 2.479702 1.448426e-02 3.518708e-02
## PCF11 2.469020e+01 1.057245e+02 2.479305 1.449959e-02 3.521701e-02
## HDGFL3 2.188791e+00 9.306207e+00 2.479227 1.450262e-02 3.521701e-02
## NEIL2 -1.103645e+00 4.264154e+00 -2.479118 1.450686e-02 3.521701e-02
## MRPL17 -2.656420e+00 1.030868e+01 -2.479076 1.450846e-02 3.521701e-02
## S100A6 -2.997230e+02 1.118226e+03 -2.478511 1.453035e-02 3.525945e-02
## PITPNA -2.051842e+01 1.210846e+02 -2.478472 1.453189e-02 3.525945e-02
## ZNF282 -2.676058e+00 1.095556e+01 -2.478358 1.453628e-02 3.526288e-02
## QKI 5.555024e+01 2.115372e+02 2.477550 1.456767e-02 3.533182e-02
## SATB1 1.085786e+01 4.867791e+01 2.476683 1.460139e-02 3.540636e-02
## GORASP2 3.660770e+00 3.007691e+01 2.476332 1.461505e-02 3.542509e-02
## TXNL1 -5.547940e+00 3.942697e+01 -2.476318 1.461561e-02 3.542509e-02
## FAM136A 2.794007e+00 1.833310e+01 2.476255 1.461808e-02 3.542509e-02
## ATP6V0C -1.492779e+01 5.574234e+01 -2.475758 1.463744e-02 3.546374e-02
## USP53 1.673219e+00 5.756835e+00 2.475692 1.464001e-02 3.546374e-02
## ZSCAN25 1.355866e+00 1.331000e+01 2.475215 1.465864e-02 3.549818e-02
## HMGB3 2.817499e+00 6.394433e+00 2.475175 1.466021e-02 3.549818e-02
## PTBP2 5.274296e+00 1.714210e+01 2.475020 1.466629e-02 3.550564e-02
## PCYOX1L -1.927126e+00 1.018455e+01 -2.473265 1.473501e-02 3.566474e-02
## OXSR1 1.918746e+01 7.923882e+01 2.473151 1.473951e-02 3.566836e-02
## COPS2 7.720060e+00 4.140735e+01 2.472824 1.475235e-02 3.569213e-02
## NGRN -3.392130e+00 2.365247e+01 -2.472108 1.478052e-02 3.575300e-02
## MDH1 7.727507e+00 5.655451e+01 2.471859 1.479031e-02 3.576939e-02
## C11orf71 -1.149495e+00 8.395453e+00 -2.471460 1.480605e-02 3.579713e-02
## TRMT112 -1.137276e+01 5.643521e+01 -2.471415 1.480782e-02 3.579713e-02
## NUP37 2.099981e+00 1.211658e+01 2.470277 1.485276e-02 3.589845e-02
## HEMK1 -3.944579e+00 1.651636e+01 -2.470048 1.486182e-02 3.591303e-02
## PYROXD1 -1.977971e+00 1.986844e+01 -2.469853 1.486954e-02 3.592436e-02
## LAGE3 -1.724130e+00 3.435749e+00 -2.469158 1.489704e-02 3.598348e-02
## ZNF24 2.069765e+01 1.078281e+02 2.468929 1.490612e-02 3.599428e-02
## NOTCH1 -1.482408e+01 7.588455e+01 -2.468789 1.491167e-02 3.599428e-02
## PLEKHA5 5.414153e-01 2.092805e+00 2.468757 1.491297e-02 3.599428e-02
## GP9 -4.896931e+00 7.177245e+00 -2.468739 1.491365e-02 3.599428e-02
## PDE6D -2.843148e+00 2.145613e+01 -2.468533 1.492185e-02 3.600674e-02
## PHF12 1.966138e+01 9.665000e+01 2.468410 1.492672e-02 3.601117e-02
## CEP135 3.465421e+00 1.292994e+01 2.467838 1.494946e-02 3.605869e-02
## ATF7 5.606046e+00 2.988050e+01 2.467293 1.497116e-02 3.610370e-02
## RPN2 2.507155e+01 1.441178e+02 2.466917 1.498613e-02 3.613244e-02
## LLGL1 -1.368363e+00 6.318037e+00 -2.466485 1.500336e-02 3.616570e-02
## CCDC15 3.368076e-01 1.057565e+00 2.466418 1.500602e-02 3.616570e-02
## AEBP1 -9.604309e-01 1.780795e+00 -2.466276 1.501170e-02 3.617205e-02
## HK1 -1.636563e+01 1.131243e+02 -2.466189 1.501515e-02 3.617300e-02
## CFAP97D1 2.233970e-01 6.577462e-01 2.465263 1.505217e-02 3.625362e-02
## RSBN1L 1.492971e+01 6.680096e+01 2.465177 1.505560e-02 3.625362e-02
## YKT6 -8.417048e+00 8.339764e+01 -2.465123 1.505779e-02 3.625362e-02
## NUDT2 -3.107263e+00 1.421060e+01 -2.464611 1.507830e-02 3.629565e-02
## SLC46A2 -3.152186e+00 9.503168e+00 -2.464328 1.508964e-02 3.631556e-02
## TSR1 2.222659e+00 1.252175e+01 2.463909 1.510642e-02 3.634503e-02
## FUNDC2 -1.129090e+01 4.428829e+01 -2.463870 1.510801e-02 3.634503e-02
## NCOA1 3.780348e+01 1.496879e+02 2.463041 1.514132e-02 3.641779e-02
## MTG1 -4.413704e+00 1.044783e+01 -2.462842 1.514932e-02 3.642962e-02
## SNRPD2 -2.968560e+01 8.833110e+01 -2.462321 1.517028e-02 3.647264e-02
## G3BP1 7.722245e+00 5.644260e+01 2.460943 1.522593e-02 3.659901e-02
## PRDM10 2.245890e+00 1.017151e+01 2.460448 1.524592e-02 3.663963e-02
## MZT1 1.179475e+00 8.102980e+00 2.460060 1.526165e-02 3.667001e-02
## TP53BP2 8.187184e+00 3.436596e+01 2.458831 1.531149e-02 3.677962e-02
## RHOBTB3 5.487807e-01 1.656373e+00 2.458722 1.531591e-02 3.677962e-02
## GALE -1.304283e+00 6.604650e+00 -2.458706 1.531657e-02 3.677962e-02
## VKORC1L1 6.221429e+00 1.815543e+01 2.458539 1.532334e-02 3.678843e-02
## GAPVD1 7.237910e+00 4.474549e+01 2.457691 1.535788e-02 3.686389e-02
## VAMP3 -2.941849e+01 1.391106e+02 -2.457496 1.536581e-02 3.687544e-02
## NDE1 1.055640e+01 4.949876e+01 2.457076 1.538292e-02 3.690906e-02
## DPM2 -8.293453e+00 1.847944e+01 -2.456392 1.541087e-02 3.696466e-02
## CCNK 6.594349e+00 4.080686e+01 2.456356 1.541233e-02 3.696466e-02
## PNN 1.717503e+01 9.887861e+01 2.455671 1.544033e-02 3.702433e-02
## ST3GAL4 -2.409424e+01 6.369103e+01 -2.455458 1.544906e-02 3.703778e-02
## PRIMPOL 1.030308e+00 7.038778e+00 2.455051 1.546575e-02 3.706919e-02
## MAP1A 2.993414e+00 7.732170e+00 2.454986 1.546841e-02 3.706919e-02
## NEIL1 -1.638762e+00 4.627217e+00 -2.453929 1.551181e-02 3.716568e-02
## KCTD10 2.402634e+00 2.765802e+01 2.453763 1.551864e-02 3.717451e-02
## TJAP1 -1.951436e+00 1.175996e+01 -2.453589 1.552575e-02 3.718405e-02
## CRYZ 2.174941e+00 7.434375e+00 2.453086 1.554645e-02 3.722612e-02
## KRT18 -5.679887e-01 1.647307e+00 -2.452995 1.555021e-02 3.722760e-02
## MRPS10 1.762591e+00 2.141636e+01 2.452835 1.555683e-02 3.723592e-02
## RGL4 -6.550448e+01 1.091921e+02 -2.452471 1.557182e-02 3.726429e-02
## MECR -8.941518e-01 2.993961e+00 -2.452090 1.558755e-02 3.729441e-02
## MLXIP -2.112854e+01 7.149146e+01 -2.451929 1.559416e-02 3.730270e-02
## NAP1L1 -4.929369e+01 2.810142e+02 -2.451532 1.561056e-02 3.733440e-02
## POMT1 -2.093571e+00 8.146058e+00 -2.449395 1.569912e-02 3.753863e-02
## TTL 2.286682e+00 1.797326e+01 2.449128 1.571021e-02 3.755165e-02
## NBEAL2 -1.123044e+02 4.667544e+02 -2.449112 1.571090e-02 3.755165e-02
## COG5 3.225957e+00 2.359828e+01 2.448732 1.572670e-02 3.758184e-02
## SLC38A6 -6.214847e-01 3.370163e+00 -2.448507 1.573604e-02 3.759659e-02
## LIG4 5.968804e+00 2.408274e+01 2.448033 1.575580e-02 3.763622e-02
## RNASE1 1.036993e+01 1.575656e+01 2.447823 1.576455e-02 3.764952e-02
## GANAB 1.204427e+01 1.427960e+02 2.447529 1.577680e-02 3.767120e-02
## CD44 -1.486698e+02 5.128918e+02 -2.447451 1.578007e-02 3.767143e-02
## SLC35E3 4.238822e+00 2.077680e+01 2.446984 1.579955e-02 3.771034e-02
## GOLGA7B -3.711703e+00 6.787066e+00 -2.446769 1.580853e-02 3.772419e-02
## KRTCAP3 -1.983662e-01 5.837618e-01 -2.446472 1.582095e-02 3.774623e-02
## WWP2 -1.261369e+01 9.005559e+01 -2.446303 1.582805e-02 3.775557e-02
## TET3 1.532638e+01 6.028762e+01 2.446178 1.583329e-02 3.776046e-02
## APOBEC3A_B 5.382494e+01 1.202150e+02 2.445564 1.585898e-02 3.781414e-02
## MED17 3.686459e+00 2.408551e+01 2.445195 1.587448e-02 3.784347e-02
## PVRIG -3.026248e+00 7.353762e+00 -2.444592 1.589977e-02 3.789298e-02
## ZNF844 4.212550e+00 1.766881e+01 2.444548 1.590163e-02 3.789298e-02
## CENPX -3.438919e+00 8.374589e+00 -2.444146 1.591853e-02 3.792563e-02
## MYORG 2.731152e-01 1.655845e+00 2.443492 1.594606e-02 3.797650e-02
## ELOVL3 5.862599e-01 1.462435e+00 2.443486 1.594629e-02 3.797650e-02
## ICAM2 -1.758223e+01 5.028034e+01 -2.441902 1.601314e-02 3.812806e-02
## HERC5 9.716892e+01 1.214148e+02 2.441601 1.602589e-02 3.815076e-02
## CTDSPL 6.265425e+00 2.087581e+01 2.441321 1.603771e-02 3.817123e-02
## COX10 8.907751e-01 5.420455e+00 2.440637 1.606671e-02 3.823258e-02
## RXRB -8.472593e+00 7.544514e+01 -2.440536 1.607098e-02 3.823508e-02
## ZFP1 7.456972e-01 3.471857e+00 2.439604 1.611054e-02 3.832150e-02
## ALPK3 1.303829e+00 2.586811e+00 2.438487 1.615809e-02 3.842689e-02
## AK4 7.813850e-01 2.908255e+00 2.437962 1.618049e-02 3.847246e-02
## STAU2 4.408634e+00 2.132552e+01 2.437543 1.619836e-02 3.850690e-02
## CHAF1A 1.081438e+00 6.383250e+00 2.437471 1.620147e-02 3.850690e-02
## MAP3K13 2.447968e-01 1.073659e+00 2.437308 1.620841e-02 3.851567e-02
## NPRL3 -2.534066e+00 8.948226e+00 -2.436860 1.622758e-02 3.854152e-02
## RAE1 -6.027026e+00 3.551888e+01 -2.436813 1.622960e-02 3.854152e-02
## RNF114 9.552049e+00 7.231145e+01 2.436759 1.623190e-02 3.854152e-02
## ANKRD28 1.554861e+01 4.109088e+01 2.436750 1.623228e-02 3.854152e-02
## UNC50 3.337987e+00 2.825608e+01 2.436641 1.623694e-02 3.854486e-02
## ROMO1 -5.411586e+00 1.096683e+01 -2.436500 1.624300e-02 3.854675e-02
## DHTKD1 7.093490e+00 3.051807e+01 2.436471 1.624424e-02 3.854675e-02
## SERINC5 5.199576e+00 2.426804e+01 2.435826 1.627186e-02 3.860458e-02
## ZEB2 2.981680e+01 1.107059e+02 2.435384 1.629083e-02 3.864184e-02
## EMC8 -2.011380e+00 1.396832e+01 -2.434764 1.631746e-02 3.868396e-02
## BCL2L11 1.400907e+01 6.230889e+01 2.434744 1.631832e-02 3.868396e-02
## TIMM50 -4.810021e+00 1.912518e+01 -2.434743 1.631837e-02 3.868396e-02
## ERO1B 1.869166e+00 1.353535e+01 2.434484 1.632950e-02 3.870261e-02
## ARHGDIB -4.811769e+02 2.203179e+03 -2.433439 1.637451e-02 3.879912e-02
## CHD1 2.774664e+01 8.106465e+01 2.433354 1.637819e-02 3.879912e-02
## SP3 5.641755e+01 2.218778e+02 2.433311 1.638003e-02 3.879912e-02
## ARHGEF40 -6.694607e+01 1.780522e+02 -2.433233 1.638339e-02 3.879931e-02
## NAF1 2.295183e-01 9.078471e-01 2.432922 1.639683e-02 3.882340e-02
## RSAD2 2.730261e+02 2.769457e+02 2.431346 1.646501e-02 3.897706e-02
## CUTA -1.435618e+01 3.048356e+01 -2.430773 1.648984e-02 3.902514e-02
## CD40 -2.049148e+00 7.647977e+00 -2.430726 1.649190e-02 3.902514e-02
## PSTPIP2 5.937846e+01 1.418600e+02 2.429899 1.652781e-02 3.910229e-02
## MAST3 -3.371476e+01 1.388694e+02 -2.428174 1.660299e-02 3.927233e-02
## CCNT2 9.278594e+00 4.794816e+01 2.427944 1.661301e-02 3.928820e-02
## SEMA4A -6.059117e+01 2.184932e+02 -2.427441 1.663502e-02 3.933241e-02
## SHISAL2A -9.508367e-01 1.921058e+00 -2.427202 1.664545e-02 3.934923e-02
## MCC 1.039340e+00 3.368672e+00 2.427056 1.665186e-02 3.935157e-02
## TERF1 1.906260e+00 1.566183e+01 2.427028 1.665308e-02 3.935157e-02
## KIF21A 1.167091e+00 2.907779e+00 2.426466 1.667768e-02 3.940186e-02
## ITPR1 4.272783e+00 1.809554e+01 2.425346 1.672687e-02 3.951018e-02
## IFT81 3.339264e-01 1.196678e+00 2.424947 1.674438e-02 3.954368e-02
## DYM -3.070055e+00 3.008620e+01 -2.424726 1.675414e-02 3.955884e-02
## NF1 9.905118e+00 3.389437e+01 2.424529 1.676278e-02 3.957138e-02
## COX8A -1.214631e+01 4.517830e+01 -2.424058 1.678355e-02 3.961251e-02
## ZBTB26 1.470305e+00 8.262354e+00 2.423728 1.679809e-02 3.963894e-02
## DDX51 -2.400429e+00 9.271125e+00 -2.423433 1.681113e-02 3.966182e-02
## PIAS1 2.944878e+01 1.315906e+02 2.422526 1.685119e-02 3.974844e-02
## SLC6A4 4.882813e-01 2.218951e+00 2.422296 1.686136e-02 3.976376e-02
## ADGRE5 -1.951948e+02 7.254363e+02 -2.422228 1.686440e-02 3.976376e-02
## KDM8 -5.499274e-01 2.048480e+00 -2.421852 1.688106e-02 3.979515e-02
## TEC 8.004041e-01 4.397626e+00 2.421589 1.689270e-02 3.981466e-02
## RAD23A -8.513403e+00 2.717567e+01 -2.420860 1.692503e-02 3.987290e-02
## POU2F2 -1.288760e+01 6.306457e+01 -2.420854 1.692533e-02 3.987290e-02
## MALSU1 -2.167791e+00 1.167633e+01 -2.420805 1.692749e-02 3.987290e-02
## SOCS3 -1.115655e+02 2.589499e+02 -2.420335 1.694837e-02 3.991416e-02
## RBM15 2.142199e+00 1.072733e+01 2.419590 1.698152e-02 3.998427e-02
## AHSA1 -4.469086e+00 4.621075e+01 -2.419370 1.699135e-02 3.999948e-02
## PPIP5K1 1.401754e+00 5.739614e+00 2.419277 1.699547e-02 4.000124e-02
## CCDC14 2.907883e+00 1.230481e+01 2.418662 1.702292e-02 4.005790e-02
## NPC2 -2.761222e+01 1.421390e+02 -2.418543 1.702823e-02 4.006244e-02
## BPI 7.159594e+01 8.152870e+01 2.418327 1.703790e-02 4.007724e-02
## ADPGK 1.081082e+01 1.031675e+02 2.416602 1.711510e-02 4.023894e-02
## COMMD3-BMI1 3.240549e+00 1.957333e+01 2.416585 1.711587e-02 4.023894e-02
## ANKRD13A 5.644621e+01 2.569890e+02 2.416564 1.711682e-02 4.023894e-02
## TXLNB 5.286637e-01 1.520963e+00 2.416298 1.712873e-02 4.025895e-02
## NIN 7.680674e+01 2.998832e+02 2.415973 1.714334e-02 4.028533e-02
## ALOX5 -1.387113e+02 5.187100e+02 -2.415535 1.716299e-02 4.032352e-02
## C21orf62 3.981807e-01 1.612874e+00 2.415105 1.718237e-02 4.036105e-02
## LAMB3 -6.386282e-01 7.699130e-01 -2.414972 1.718836e-02 4.036711e-02
## VAV1 -3.190108e+01 1.905019e+02 -2.414587 1.720571e-02 4.039839e-02
## SLC35B4 1.224594e+00 7.843377e+00 2.414525 1.720849e-02 4.039839e-02
## LRP3 -1.398198e+00 2.415816e+00 -2.414130 1.722629e-02 4.043219e-02
## CASK 1.317757e+00 7.032421e+00 2.413440 1.725743e-02 4.049726e-02
## LRRC59 6.861709e+00 4.510553e+01 2.412359 1.730637e-02 4.060406e-02
## RB1CC1 2.596563e+01 9.750158e+01 2.411739 1.733445e-02 4.065317e-02
## GTPBP3 -9.546376e-01 3.047540e+00 -2.411715 1.733556e-02 4.065317e-02
## KCNH3 -3.322338e+00 5.687760e+00 -2.411670 1.733758e-02 4.065317e-02
## DGLUCY 1.605631e+01 9.082943e+01 2.411448 1.734768e-02 4.066881e-02
## ZNF431 2.044448e+00 1.337439e+01 2.410575 1.738734e-02 4.075372e-02
## CTSB -1.221735e+02 5.858071e+02 -2.410208 1.740406e-02 4.078485e-02
## POLG2 -5.378548e-01 4.241741e+00 -2.409037 1.745744e-02 4.090186e-02
## ASB1 -2.316053e+00 2.034317e+01 -2.408772 1.746952e-02 4.092207e-02
## LRRC8A 1.807665e+00 1.155726e+01 2.408326 1.748991e-02 4.096176e-02
## BMP8A 3.790094e-01 1.404541e+00 2.407939 1.750761e-02 4.099512e-02
## TRMT10A 8.089612e-01 4.627912e+00 2.407530 1.752632e-02 4.102469e-02
## MED29 -2.551403e+00 3.489606e+01 -2.407512 1.752716e-02 4.102469e-02
## GNAS 1.056368e+02 6.489505e+02 2.406993 1.755096e-02 4.107229e-02
## RNF8 1.331501e+00 8.267978e+00 2.406580 1.756991e-02 4.110853e-02
## MTHFS -2.229127e+01 7.350149e+01 -2.406424 1.757708e-02 4.111720e-02
## ALDH2 -3.126225e+01 1.105892e+02 -2.405870 1.760253e-02 4.116862e-02
## POU5F1 7.231083e-01 2.925267e+00 2.405652 1.761255e-02 4.118392e-02
## PRR13 -1.147216e+02 5.289671e+02 -2.405269 1.763017e-02 4.121699e-02
## MRPL12 -5.405217e+00 1.237536e+01 -2.405077 1.763902e-02 4.122955e-02
## PCBP2 -6.714522e+01 4.539405e+02 -2.404865 1.764878e-02 4.123890e-02
## TOMM40 -3.114647e+00 1.089243e+01 -2.404840 1.764997e-02 4.123890e-02
## CLDND1 6.742687e+00 4.380425e+01 2.404627 1.765975e-02 4.125363e-02
## MAPK1IP1L 6.696805e+00 4.939786e+01 2.404379 1.767119e-02 4.127222e-02
## EVL -2.539413e+01 6.519973e+01 -2.403906 1.769306e-02 4.131467e-02
## PEX19 4.507099e+00 4.544849e+01 2.403835 1.769633e-02 4.131467e-02
## NDUFA2 -9.851515e+00 3.469396e+01 -2.403687 1.770318e-02 4.132251e-02
## SH3BGRL2 1.278260e+01 3.740755e+01 2.402380 1.776365e-02 4.145551e-02
## IL1B -4.829344e+01 1.220984e+02 -2.402130 1.777527e-02 4.147446e-02
## UBA2 6.104451e+00 4.649271e+01 2.401918 1.778509e-02 4.148920e-02
## ABHD3 3.566835e+01 1.245124e+02 2.401843 1.778859e-02 4.148923e-02
## THAP2 6.741284e-01 3.164721e+00 2.401258 1.781573e-02 4.154436e-02
## PEPD -3.058768e+00 1.507985e+01 -2.400791 1.783745e-02 4.158682e-02
## ZZZ3 2.506402e+00 1.250822e+01 2.400121 1.786867e-02 4.165107e-02
## TBXAS1 -5.273675e+01 2.171022e+02 -2.400049 1.787203e-02 4.165107e-02
## ARL17B 2.172161e+00 9.646725e+00 2.399118 1.791548e-02 4.174395e-02
## TECR -1.247935e+01 2.935526e+01 -2.399044 1.791893e-02 4.174395e-02
## EIF5 2.945842e+01 1.723897e+02 2.398055 1.796519e-02 4.184175e-02
## MRPS18A -6.220401e+00 2.013211e+01 -2.397987 1.796838e-02 4.184175e-02
## ATP6V0B -9.311163e+01 3.709345e+02 -2.397920 1.797149e-02 4.184175e-02
## BCL11A -1.327171e+00 5.220450e+00 -2.397391 1.799629e-02 4.189127e-02
## TPH1 -2.115376e-01 6.945819e-01 -2.396177 1.805333e-02 4.201580e-02
## PKN2 2.044210e+01 8.184720e+01 2.395581 1.808136e-02 4.207130e-02
## VPS37A 3.507586e+00 2.034202e+01 2.395519 1.808428e-02 4.207130e-02
## SNX33 -1.167060e+00 5.135357e+00 -2.395045 1.810661e-02 4.211501e-02
## FOXP3 -1.049349e+00 1.938904e+00 -2.394482 1.813318e-02 4.216852e-02
## KHDRBS1 -5.847215e+00 7.682263e+01 -2.394273 1.814305e-02 4.218321e-02
## PDPR 6.759636e+00 3.659483e+01 2.394144 1.814917e-02 4.218916e-02
## CHD7 1.886839e+01 4.486913e+01 2.393932 1.815915e-02 4.220410e-02
## CDKN2AIP 3.190295e+00 2.376953e+01 2.393843 1.816338e-02 4.220536e-02
## NUP43 -2.282598e+00 1.474970e+01 -2.393770 1.816681e-02 4.220536e-02
## TAPT1 3.261607e+00 2.214571e+01 2.393453 1.818184e-02 4.223201e-02
## C8orf58 -1.365667e+00 6.774849e+00 -2.393362 1.818614e-02 4.223371e-02
## B4GALNT2 1.879940e+00 5.062191e+00 2.393084 1.819928e-02 4.225570e-02
## SCLY -4.336061e-01 2.599165e+00 -2.393011 1.820273e-02 4.225570e-02
## CDC42EP4 -1.815844e+00 1.018529e+01 -2.392912 1.820745e-02 4.225838e-02
## TRPC6 3.281230e-01 9.027659e-01 2.392460 1.822889e-02 4.229986e-02
## LLGL2 -1.747035e+00 3.625928e+00 -2.392107 1.824562e-02 4.233042e-02
## LTO1 -9.787928e-01 9.091057e+00 -2.391563 1.827148e-02 4.238211e-02
## FGFRL1 -1.028458e+00 3.056748e+00 -2.391130 1.829203e-02 4.242149e-02
## ARHGEF2 -2.435398e+01 1.785842e+02 -2.390776 1.830888e-02 4.244597e-02
## ATRAID -8.937052e+00 5.035186e+01 -2.390758 1.830975e-02 4.244597e-02
## MMACHC 4.389047e-01 1.995317e+00 2.389812 1.835486e-02 4.254224e-02
## POLK 5.121325e+00 2.009408e+01 2.388750 1.840561e-02 4.264394e-02
## TSPAN15 -3.178310e-01 6.990599e-01 -2.388743 1.840593e-02 4.264394e-02
## CDK5RAP3 -3.560387e+01 2.413536e+02 -2.388501 1.841754e-02 4.265754e-02
## NRG1 -2.983786e+00 6.878998e+00 -2.388400 1.842234e-02 4.265754e-02
## ILKAP -2.895475e+00 1.502851e+01 -2.388361 1.842424e-02 4.265754e-02
## TMEM170B 2.567742e+01 1.049071e+02 2.388320 1.842619e-02 4.265754e-02
## RPH3AL -1.006287e+00 2.837813e+00 -2.387425 1.846911e-02 4.274857e-02
## SIGLEC10 -4.430194e+01 1.200481e+02 -2.386249 1.852558e-02 4.287013e-02
## CRIP1 -6.875791e+01 8.135996e+01 -2.386170 1.852938e-02 4.287013e-02
## GLMN 4.693231e-01 2.871021e+00 2.386106 1.853248e-02 4.287013e-02
## TTC33 3.663799e+00 1.880220e+01 2.386018 1.853673e-02 4.287160e-02
## NUP58 1.646763e+01 6.098182e+01 2.385302 1.857120e-02 4.294296e-02
## PIK3R3 5.870154e-01 2.134135e+00 2.384725 1.859906e-02 4.299900e-02
## SCN9A 1.970189e+00 3.471534e+00 2.384162 1.862624e-02 4.305344e-02
## FCGR3B 2.140546e+03 6.069773e+03 2.383893 1.863926e-02 4.307319e-02
## OAF -2.786795e+00 1.065974e+01 -2.383836 1.864205e-02 4.307319e-02
## IFI27L2 -1.084947e+01 2.122706e+01 -2.383536 1.865655e-02 4.308878e-02
## ZNF441 2.737593e+00 8.332394e+00 2.383497 1.865842e-02 4.308878e-02
## RGL2 -4.193510e+01 2.274544e+02 -2.383471 1.865970e-02 4.308878e-02
## KIF3A 8.213346e-01 3.951729e+00 2.383216 1.867204e-02 4.310891e-02
## TSPAN33 -1.541919e+01 4.558144e+01 -2.382832 1.869069e-02 4.314354e-02
## SMS 6.064220e+00 4.362716e+01 2.382716 1.869630e-02 4.314811e-02
## PLEKHA3 2.873693e+00 1.959763e+01 2.382609 1.870147e-02 4.315164e-02
## CLEC5A 8.177565e+00 1.976708e+01 2.382201 1.872129e-02 4.318896e-02
## ATXN7L1 1.764578e+00 9.068632e+00 2.381485 1.875608e-02 4.326083e-02
## GOLGA8H 9.818506e-01 3.468855e+00 2.381309 1.876466e-02 4.327219e-02
## TOX4 1.358869e+01 9.386951e+01 2.381148 1.877249e-02 4.328182e-02
## MXD1 3.409405e+02 1.244850e+03 2.381046 1.877748e-02 4.328492e-02
## GABPB1 2.113245e+00 1.739452e+01 2.380806 1.878917e-02 4.330346e-02
## SLC35G1 1.840644e-01 5.646184e-01 2.380394 1.880924e-02 4.334129e-02
## ZC3H15 7.596622e+00 4.990139e+01 2.380144 1.882142e-02 4.336091e-02
## TIGD3 -4.980094e+00 1.031599e+01 -2.379710 1.884261e-02 4.340131e-02
## AFAP1 -1.661642e+00 4.676465e+00 -2.379398 1.885784e-02 4.342783e-02
## MTX3 1.719999e+00 6.242047e+00 2.379325 1.886145e-02 4.342783e-02
## CELF2 8.308864e+01 3.380498e+02 2.378763 1.888894e-02 4.348269e-02
## RLF 1.039324e+01 3.510974e+01 2.378523 1.890069e-02 4.350131e-02
## CHD6 3.853831e+00 1.290575e+01 2.378072 1.892280e-02 4.354373e-02
## BIRC2 1.772018e+01 1.027338e+02 2.377770 1.893761e-02 4.356936e-02
## MBD6 -3.236279e+01 1.288315e+02 -2.376731 1.898861e-02 4.367223e-02
## RNF181 -1.612531e+01 7.283246e+01 -2.376676 1.899134e-02 4.367223e-02
## DHRS12 -6.612086e+00 2.423196e+01 -2.376587 1.899572e-02 4.367223e-02
## MIEN1 -9.215455e+00 4.660618e+01 -2.376560 1.899705e-02 4.367223e-02
## USP18 1.892198e+01 1.791235e+01 2.375781 1.903539e-02 4.375189e-02
## ALS2CL -2.035427e+00 4.226670e+00 -2.375562 1.904622e-02 4.376416e-02
## MX1 1.989812e+02 2.609680e+02 2.375523 1.904811e-02 4.376416e-02
## SEC11A -1.313592e+01 1.105663e+02 -2.375078 1.907007e-02 4.380613e-02
## PDRG1 -2.910316e+00 1.468776e+01 -2.374393 1.910390e-02 4.387533e-02
## RAP2A 4.357472e+00 2.219980e+01 2.373921 1.912725e-02 4.392046e-02
## PLEKHF1 -2.183760e+00 4.088781e+00 -2.373845 1.913105e-02 4.392069e-02
## RPA2 -7.437591e+00 5.804162e+01 -2.373580 1.914416e-02 4.394227e-02
## ZNF100 3.063363e+00 1.207066e+01 2.372666 1.918950e-02 4.403782e-02
## BCORL1 -3.537456e+00 1.536225e+01 -2.372415 1.920196e-02 4.405789e-02
## CCDC6 2.846594e+00 1.785300e+01 2.372184 1.921340e-02 4.406897e-02
## NDUFAB1 -4.909884e+00 1.792403e+01 -2.372168 1.921422e-02 4.406897e-02
## RARS1 -3.055767e+00 2.727670e+01 -2.371907 1.922720e-02 4.409022e-02
## PURA 2.012851e+00 9.817666e+00 2.371321 1.925632e-02 4.414847e-02
## RPE 2.245667e+00 1.534480e+01 2.370841 1.928027e-02 4.418720e-02
## SERPINF1 -1.064518e+00 3.423952e+00 -2.370833 1.928067e-02 4.418720e-02
## TRIM24 3.601621e+00 2.171718e+01 2.369758 1.933433e-02 4.429384e-02
## UACA 8.688168e-01 3.029000e+00 2.369751 1.933467e-02 4.429384e-02
## KIAA0319 3.992811e+00 1.110885e+01 2.369476 1.934840e-02 4.431559e-02
## ACTR1B -6.360037e+00 3.230692e+01 -2.369363 1.935406e-02 4.431559e-02
## DDHD2 2.831407e+00 1.173952e+01 2.369337 1.935538e-02 4.431559e-02
## CACNA2D4 -2.159580e+00 7.927264e+00 -2.368963 1.937409e-02 4.434987e-02
## PET100 -1.604511e+01 5.337917e+01 -2.368433 1.940064e-02 4.440208e-02
## ZNF223 -4.354789e-01 1.914829e+00 -2.367988 1.942294e-02 4.444455e-02
## TBCC -5.825471e+00 3.799948e+01 -2.367097 1.946768e-02 4.453832e-02
## PDCL 9.440405e-01 1.126053e+01 2.366730 1.948615e-02 4.457199e-02
## TBC1D1 1.392559e+01 8.625291e+01 2.365931 1.952638e-02 4.465539e-02
## PTPRE 4.858318e+01 2.166827e+02 2.365427 1.955183e-02 4.470496e-02
## FAM210A 6.924837e-01 4.477924e+00 2.365173 1.956464e-02 4.472564e-02
## ZNF526 -1.061208e+00 5.420247e+00 -2.364438 1.960178e-02 4.480191e-02
## HAUS8 -1.063832e+00 5.389528e+00 -2.364172 1.961524e-02 4.482404e-02
## ARID1A 1.792633e+01 9.428265e+01 2.363831 1.963253e-02 4.485491e-02
## SMYD5 -2.861707e+00 9.047072e+00 -2.363349 1.965693e-02 4.490200e-02
## AKR1B1 -8.091414e+00 2.668506e+01 -2.362979 1.967571e-02 4.493625e-02
## SPCS3 1.587338e+01 1.342507e+02 2.362257 1.971237e-02 4.501130e-02
## TYW1B 6.165642e-01 2.262828e+00 2.362173 1.971667e-02 4.501246e-02
## IGFBP2 -2.531575e+00 3.117651e+00 -2.362012 1.972486e-02 4.501418e-02
## NOL7 -4.942263e+00 2.716856e+01 -2.362009 1.972502e-02 4.501418e-02
## M1AP 1.418752e+00 2.552213e+00 2.361761 1.973761e-02 4.503426e-02
## WTIP 3.225076e-01 2.166025e+00 2.361673 1.974209e-02 4.503581e-02
## DYNLL1 -1.433010e+01 7.980739e+01 -2.360510 1.980137e-02 4.516235e-02
## TRIO 2.615531e+00 9.871065e+00 2.360230 1.981567e-02 4.518628e-02
## GLYR1 1.140809e+01 9.631619e+01 2.359927 1.983113e-02 4.521284e-02
## BRK1 -2.686588e+01 1.710527e+02 -2.359242 1.986619e-02 4.528407e-02
## ZBTB32 9.790751e-01 1.441802e+00 2.359018 1.987767e-02 4.530152e-02
## FAM156A -1.856933e+00 5.038230e+00 -2.358786 1.988952e-02 4.531984e-02
## ZNF611 2.133972e+00 8.239436e+00 2.356801 1.999149e-02 4.554342e-02
## MOCS3 -5.968267e-01 5.218685e+00 -2.356232 2.002075e-02 4.560133e-02
## NT5C2 4.672657e+01 2.124893e+02 2.356017 2.003185e-02 4.561784e-02
## PDE4DIP 3.898010e+00 1.750962e+01 2.355800 2.004305e-02 4.563459e-02
## C1orf131 1.028269e+00 1.079578e+01 2.355723 2.004704e-02 4.563491e-02
## FBXO44 -6.519324e+00 1.659027e+01 -2.355383 2.006455e-02 4.566601e-02
## TOX 1.105005e+00 4.183430e+00 2.354340 2.011849e-02 4.577999e-02
## MED23 7.530890e+00 3.481579e+01 2.354102 2.013081e-02 4.579923e-02
## CWC15 -5.078924e+00 4.753225e+01 -2.353479 2.016308e-02 4.585850e-02
## ZNF471 2.928202e-01 9.145706e-01 2.353450 2.016459e-02 4.585850e-02
## TCEANC2 2.074674e+00 1.543131e+01 2.353064 2.018464e-02 4.589528e-02
## RCOR1 2.037070e+01 9.074520e+01 2.352353 2.022157e-02 4.596341e-02
## PAG1 5.496817e+01 1.555030e+02 2.352338 2.022235e-02 4.596341e-02
## PDSS2 6.575495e-01 6.071353e+00 2.351377 2.027236e-02 4.606006e-02
## GSTO2 9.339694e-01 2.164190e+00 2.351372 2.027264e-02 4.606006e-02
## CRELD1 -1.891732e+00 9.180591e+00 -2.350031 2.034264e-02 4.621024e-02
## C15orf40 -2.647226e+00 2.747028e+01 -2.349888 2.035012e-02 4.621838e-02
## FAM86B1 -6.843883e-01 2.181992e+00 -2.349723 2.035874e-02 4.622420e-02
## FCHSD2 1.207835e+01 6.265653e+01 2.349690 2.036047e-02 4.622420e-02
## DAG1 1.024625e+00 8.247110e+00 2.349221 2.038497e-02 4.627096e-02
## MGAT5 6.029525e+00 4.416082e+01 2.348521 2.042169e-02 4.634543e-02
## CYB5D1 2.942419e+00 8.488635e+00 2.348055 2.044614e-02 4.639203e-02
## ZNF518B 2.788994e+00 1.440457e+01 2.347897 2.045442e-02 4.640196e-02
## CAMLG -5.015563e+00 3.164762e+01 -2.347500 2.047531e-02 4.644046e-02
## ITGA4 3.679367e+01 1.355601e+02 2.347091 2.049679e-02 4.648029e-02
## COX7C -3.509200e+01 1.291261e+02 -2.346624 2.052137e-02 4.652713e-02
## NBPF20 5.309094e+00 7.111792e+00 2.346517 2.052701e-02 4.653103e-02
## EIF4G1 8.589353e+00 7.173805e+01 2.346223 2.054254e-02 4.654766e-02
## NPIPA7 -3.178847e+00 1.139457e+01 -2.346165 2.054557e-02 4.654766e-02
## WNT2B 1.955939e-01 8.187923e-01 2.346155 2.054612e-02 4.654766e-02
## STBD1 6.496623e+00 1.136897e+01 2.346008 2.055384e-02 4.655625e-02
## FZD6 5.108215e-01 1.551125e+00 2.345485 2.058143e-02 4.660984e-02
## PRPF19 -8.060101e+00 4.128558e+01 -2.345133 2.060006e-02 4.663995e-02
## MPI -6.318820e+00 2.455735e+01 -2.345026 2.060570e-02 4.663995e-02
## C2orf42 9.003941e-01 8.084941e+00 2.345011 2.060652e-02 4.663995e-02
## SMURF1 3.797371e+00 1.848964e+01 2.343948 2.066274e-02 4.675827e-02
## TMEM60 4.017275e+00 2.154349e+01 2.342912 2.071770e-02 4.686850e-02
## ARPC5 -1.797973e+02 8.170247e+02 -2.342881 2.071935e-02 4.686850e-02
## LANCL1 2.985533e+00 1.324769e+01 2.342670 2.073060e-02 4.688499e-02
## TFEC 1.132290e+01 3.921318e+01 2.342478 2.074080e-02 4.689913e-02
## ADGRE1 -4.029771e+01 8.087104e+01 -2.342382 2.074588e-02 4.690167e-02
## VKORC1 -6.716686e+00 2.440993e+01 -2.342069 2.076256e-02 4.693044e-02
## PRKCE 5.541801e+00 1.138614e+01 2.341623 2.078631e-02 4.697258e-02
## RBSN 2.388601e+00 1.969911e+01 2.341570 2.078913e-02 4.697258e-02
## CYB5D2 -1.790625e+00 8.321056e+00 -2.340008 2.087247e-02 4.714756e-02
## MYBBP1A -1.812174e+00 6.380048e+00 -2.339970 2.087452e-02 4.714756e-02
## KIAA2013 -1.990227e+01 8.915603e+01 -2.339709 2.088849e-02 4.717013e-02
## AP1G2 -2.130812e+01 1.103251e+02 -2.339425 2.090366e-02 4.719540e-02
## CRY1 2.468973e+00 7.842803e+00 2.338805 2.093689e-02 4.726001e-02
## NUP214 -4.625784e+01 1.911196e+02 -2.338742 2.094025e-02 4.726001e-02
## SEC11C 1.964337e+01 3.590295e+01 2.338462 2.095528e-02 4.728494e-02
## MCOLN1 -4.170971e+00 1.607359e+01 -2.337858 2.098773e-02 4.734915e-02
## LRIG2 1.358330e+00 9.407140e+00 2.336784 2.104548e-02 4.747041e-02
## FAM200B -8.858955e+00 4.426267e+01 -2.336084 2.108325e-02 4.753973e-02
## SMIM5 3.234954e+00 7.977298e+00 2.336065 2.108423e-02 4.753973e-02
## PLCL2 1.334697e+01 8.763922e+01 2.335558 2.111164e-02 4.759248e-02
## ZNF720 6.744596e-01 4.263660e+00 2.334595 2.116368e-02 4.769557e-02
## SUPT5H -1.434800e+01 7.357200e+01 -2.334563 2.116541e-02 4.769557e-02
## ACBD7 1.043573e+00 2.422620e+00 2.333768 2.120851e-02 4.777439e-02
## SMARCC2 -7.045125e+00 5.809793e+01 -2.333765 2.120864e-02 4.777439e-02
## PBXIP1 -6.549004e+01 2.398842e+02 -2.333694 2.121247e-02 4.777439e-02
## ACAD11 1.626518e+00 7.709358e+00 2.332786 2.126181e-02 4.787640e-02
## CENPM 9.848174e-01 1.562284e+00 2.331749 2.131824e-02 4.799436e-02
## RAD9A -2.511125e+00 1.299548e+01 -2.331641 2.132411e-02 4.799847e-02
## CCDC82 6.057799e+00 3.463308e+01 2.331388 2.133790e-02 4.801645e-02
## OBSCN -2.120000e+00 4.263741e+00 -2.331327 2.134123e-02 4.801645e-02
## LITAF -4.225954e+02 1.695519e+03 -2.331272 2.134424e-02 4.801645e-02
## LAMTOR5 -2.748276e+01 9.674124e+01 -2.330496 2.138656e-02 4.810253e-02
## STX16 2.647313e+01 1.431381e+02 2.330272 2.139881e-02 4.812096e-02
## LMBR1 4.737661e+00 1.822222e+01 2.329992 2.141411e-02 4.814624e-02
## ZFAND5 6.033476e+01 2.388022e+02 2.329469 2.144274e-02 4.820146e-02
## SERINC2 -1.835548e+00 3.447299e+00 -2.329358 2.144880e-02 4.820594e-02
## B4GAT1 -4.966352e-01 1.598192e+00 -2.328299 2.150689e-02 4.832735e-02
## TLCD4 2.803722e+00 3.671654e+00 2.327458 2.155308e-02 4.841316e-02
## CSNK1G3 3.898498e+00 2.119050e+01 2.327455 2.155324e-02 4.841316e-02
## OS9 -7.493362e+01 4.900790e+02 -2.327052 2.157544e-02 4.845383e-02
## TAF9 4.738672e+00 3.076792e+01 2.326906 2.158346e-02 4.846268e-02
## EXT2 2.653164e+00 2.043653e+01 2.326825 2.158792e-02 4.846351e-02
## TREX1 -1.173568e+01 2.155944e+01 -2.326739 2.159266e-02 4.846497e-02
## SIPA1L2 3.218874e+01 7.630592e+01 2.326332 2.161508e-02 4.850612e-02
## MYL12B -1.113387e+02 5.420822e+02 -2.325977 2.163470e-02 4.854096e-02
## SCAMP1 4.376627e+00 2.308457e+01 2.325636 2.165353e-02 4.857403e-02
## ABHD12 -2.781561e+00 1.046983e+01 -2.325202 2.167751e-02 4.861863e-02
## MRPL14 -5.163916e+00 1.666765e+01 -2.324825 2.169832e-02 4.865609e-02
## SRSF10 6.728189e+00 5.712247e+01 2.324590 2.171135e-02 4.867611e-02
## CSNK1A1 2.441014e+01 1.691170e+02 2.324240 2.173071e-02 4.871030e-02
## PIK3CB 1.104720e+01 5.083445e+01 2.323707 2.176028e-02 4.876736e-02
## CHMP5 5.648692e+01 1.664297e+02 2.323627 2.176470e-02 4.876805e-02
## TMEM208 -7.552003e+00 2.840579e+01 -2.323510 2.177123e-02 4.877347e-02
## TMEM243 -1.765251e+00 1.558741e+01 -2.323303 2.178267e-02 4.878989e-02
## JTB -3.447338e+01 1.369361e+02 -2.322630 2.182010e-02 4.886449e-02
## KDM4C 3.719714e+00 2.293489e+01 2.322316 2.183753e-02 4.889429e-02
## CDK11A -5.981653e+00 3.797667e+01 -2.321978 2.185639e-02 4.892729e-02
## MED20 1.549877e+00 1.116383e+01 2.321430 2.188692e-02 4.898639e-02
## DTX1 -9.621196e-01 2.220793e+00 -2.321337 2.189209e-02 4.898872e-02
## PLXNA1 -5.765600e-01 1.748965e+00 -2.320967 2.191270e-02 4.902558e-02
## MOSMO 9.536097e-01 4.881234e+00 2.320114 2.196037e-02 4.912297e-02
## TMEM35B -1.787665e+00 1.474854e+01 -2.319921 2.197115e-02 4.913718e-02
## FBXO8 2.212737e+00 1.404209e+01 2.319852 2.197501e-02 4.913718e-02
## CPLANE2 -2.497356e-01 6.914240e-01 -2.319672 2.198510e-02 4.915048e-02
## LAMTOR4 -8.210451e+01 1.927988e+02 -2.319233 2.200970e-02 4.919619e-02
## AEBP2 1.980623e+00 1.282738e+01 2.319095 2.201740e-02 4.920412e-02
## SHLD2 2.763512e+00 2.035907e+01 2.319021 2.202154e-02 4.920412e-02
## SCMH1 1.045632e+00 5.731456e+00 2.318709 2.203904e-02 4.923394e-02
## WDR1 -5.202025e+01 3.990696e+02 -2.318402 2.205629e-02 4.926223e-02
## RBM44 8.425303e-01 2.126454e+00 2.318336 2.206001e-02 4.926223e-02
## PSMD7 -8.881679e+00 6.501870e+01 -2.318245 2.206508e-02 4.926428e-02
## EHHADH 3.199492e-01 1.220799e+00 2.317715 2.209490e-02 4.932157e-02
## ARNTL 1.059828e+01 4.545895e+01 2.317554 2.210395e-02 4.933248e-02
## IL27RA -7.824109e+00 4.168119e+01 -2.317422 2.211138e-02 4.933979e-02
## ZNF606 -4.830399e-01 2.971470e+00 -2.317167 2.212573e-02 4.936252e-02
## PYCR3 -7.303397e-01 1.437874e+00 -2.317044 2.213261e-02 4.936859e-02
## LRRC3 -3.191191e-01 1.221760e+00 -2.316848 2.214367e-02 4.938396e-02
## SLC22A1 2.847686e+00 7.523701e+00 2.316670 2.215369e-02 4.939703e-02
## PEX11B -2.424019e+00 2.087471e+01 -2.316443 2.216650e-02 4.941631e-02
## SIRT3 -1.601866e+00 8.250311e+00 -2.316237 2.217810e-02 4.943286e-02
## TAF13 2.025166e+00 6.980751e+00 2.315962 2.219364e-02 4.945552e-02
## VRK2 3.125169e+00 1.473284e+01 2.315909 2.219661e-02 4.945552e-02
## XKR8 -1.536505e+01 8.095189e+01 -2.315677 2.220969e-02 4.947539e-02
## SOX12 -6.759388e-01 2.236598e+00 -2.315123 2.224101e-02 4.953584e-02
## PDE6B -7.756191e-01 2.813572e+00 -2.314911 2.225301e-02 4.955328e-02
## LGMN 8.383033e-01 3.548687e+00 2.314243 2.229083e-02 4.962816e-02
## KLHL8 2.847720e+01 6.464648e+01 2.313715 2.232078e-02 4.968551e-02
## ME2 1.483109e+01 7.556347e+01 2.313588 2.232799e-02 4.969160e-02
## SMARCA4 -2.887305e+00 1.715594e+01 -2.313519 2.233189e-02 4.969160e-02
## MTG2 -2.471731e+00 1.532331e+01 -2.313215 2.234911e-02 4.972058e-02
## USP39 3.510204e+00 4.384130e+01 2.313075 2.235711e-02 4.972905e-02
## SET 1.540792e+01 1.590795e+02 2.312268 2.240299e-02 4.981248e-02
## GARS1 3.903432e+00 4.002217e+01 2.312267 2.240302e-02 4.981248e-02
## B
## GBGT1 21.7469865064
## MCM6 19.2447950452
## SLC12A9 19.1118932677
## SLC15A3 18.6324515490
## MAPK8IP3 18.0081073463
## CDC7 17.1928081817
## AIF1 16.4721578476
## CLSPN 15.8331698984
## PITPNM1 15.6921139408
## TWF2 15.2893997983
## METRNL 15.1695323836
## CARS2 14.9970065423
## COTL1 14.9666537877
## TTC9 14.8240227256
## HPS6 14.6488591176
## RNA28SN4 14.4113570107
## VPS37C 14.3341489342
## GPR132 14.1590736500
## PLEC 13.8593827029
## RNA18SN2 13.8482773660
## RNA18SN3 13.8482773660
## RNA18SN4 13.8482773660
## SLC8B1 13.6381633788
## PELI3 13.4862191138
## FBP1 13.3572580961
## SYNGR2 13.3025491686
## TMCO6 13.2292455525
## MCM4 13.1724448247
## STK11IP 13.1723557133
## HAAO 13.0634204159
## EZH2 12.9899956994
## SIN3B 12.9841746403
## DTL 12.9157542237
## ZNF362 12.8997145167
## NAPSA 12.6751451490
## STRN4 12.6232001091
## RFC5 12.5665123499
## SLC44A1 12.5596353067
## IER5L 12.4102141494
## SUV39H2 12.3580964118
## CSK 12.2963947513
## TNFRSF8 12.1414181349
## TRAPPC12 12.1363530157
## GINS4 12.1241533070
## RACGAP1 12.1215243601
## OXER1 12.1166788097
## MELK 12.0005785172
## SELENOI 11.9847130295
## ZNF367 11.9426079045
## SIPA1 11.9345859792
## STIL 11.8774242919
## SIGLEC7 11.8648942321
## PITPNC1 11.8558058545
## KPNA2 11.7857882940
## CEP57L1 11.6680610936
## FBXO5 11.6415226328
## CD1D 11.5848887129
## VENTX 11.5446123250
## CEBPA 11.4485371263
## WEE1 11.4334587466
## TECPR1 11.3710521266
## ATAD2 11.2310277563
## PPP1R9B 11.1914629321
## AP2A1 11.0817526319
## SPRYD3 11.0520756877
## PLD2 11.0403137686
## CHEK1 11.0264265410
## SLC39A13 10.9858426717
## CIC 10.9703237519
## TBC1D10A 10.9514575929
## SLFN13 10.8503955805
## CDK2 10.8329087693
## FBH1 10.8222589764
## ZWILCH 10.7938361455
## NDC80 10.7906920631
## RRM2 10.7635171300
## PALM2AKAP2 10.7314753913
## SH3TC1 10.7224085191
## BRAT1 10.6937721784
## MKI67 10.6817179792
## NCKAP5L 10.6658940181
## FUT8 10.6466917343
## CDC6 10.6309047750
## MAFK 10.4935326522
## ZNF775 10.4460431701
## IMPDH1 10.3086700847
## MED22 10.3050301475
## COLGALT1 10.2733524455
## GINS1 10.2436035069
## SGSM2 10.2415297378
## WDHD1 10.1490672652
## EFHD2 10.1462015424
## GEN1 10.0565412795
## CDC42EP2 10.0438271118
## C19orf38 10.0408601926
## FAM89B 10.0070508635
## HDGFL2 9.9964743247
## ASGR1 9.9804860543
## GNPTG 9.9791381359
## AAMP 9.9145752126
## WDR76 9.8714659301
## NCAPH 9.8631868964
## NAGS 9.8347791769
## PARPBP 9.8177280688
## LSP1 9.7882324000
## ARHGAP11A 9.7712830042
## FUT7 9.7136837634
## DONSON 9.7026386820
## RAB40C 9.5837901645
## SREBF1 9.5194816358
## SCAP 9.5186326657
## CD37 9.4326714947
## CUEDC1 9.4166236830
## SLC25A11 9.3641944697
## TIMELESS 9.3357850094
## FAM20C 9.3228549425
## PAGR1 9.3104268997
## PGLS 9.2842234188
## NUSAP1 9.2788091165
## TAGLN 9.2601298447
## SPAG7 9.2343384984
## AP1M1 9.2197645538
## TNNI2 9.1885685930
## LRRC25 9.1843894610
## TOP2A 9.1698982236
## ARHGAP4 9.1612098151
## TTLL12 9.1593317495
## PGAP6 9.1544141055
## ACTB 9.1405291755
## CARD9 9.1013417234
## HELLS 9.0825433251
## SMC2 9.0784115406
## CEP20 9.0208115362
## KNL1 8.9800733477
## TRIP13 8.9544110648
## TOR4A 8.9402085995
## DNA2 8.9054355525
## DHRSX 8.8845410396
## MMP17 8.8414792488
## ASPM 8.8338526938
## CD300C 8.7870772552
## SMC4 8.7476514298
## NUCB1 8.7110799057
## TRAF7 8.6476116963
## PDLIM2 8.6068696331
## PLK4 8.5873616787
## GPR35 8.5848971508
## CENPF 8.5832012796
## KNTC1 8.5762210891
## LRRC61 8.5620165813
## CSNK1G2 8.5118001081
## BRCA2 8.4407067868
## NOTCH4 8.4021457740
## CYBA 8.3947124335
## MARCO 8.3896003761
## SHCBP1 8.3808946489
## GAA 8.3734252263
## GFPT1 8.3524635948
## LSM6 8.3511250685
## SEPTIN11 8.3308418801
## TBC1D22A 8.2732170705
## KIF11 8.2571723072
## TTYH3 8.2428762337
## NCAPG 8.2323736121
## SUMF1 8.2259188926
## SLC43A2 8.1915484669
## OSGIN1 8.1400679740
## ZNF385A 8.1201092613
## STK32C 8.1186369371
## SPDL1 8.1127591497
## FANCI 8.1088290005
## NCAPD2 8.1076842804
## SLC25A6 8.0622518271
## CEP55 8.0504076050
## EIF3D 8.0426575062
## MNT 7.9983567410
## ADIPOR2 7.9909877150
## ZGPAT 7.9906484425
## NSD2 7.9889502275
## CFP 7.9796528909
## CRYL1 7.9611004920
## ORC1 7.9593772696
## CIP2A 7.9555957337
## RAB11B 7.9338286968
## LILRB2 7.9154459894
## REXO1 7.8873783592
## RIPOR1 7.8821924589
## SLC27A1 7.8736788813
## TNFAIP8L2 7.8665523767
## DSCC1 7.8512486582
## ZWINT 7.8127499020
## KLF16 7.8006973238
## ARF5 7.7972263277
## MVP 7.7786012143
## NANS 7.7741532011
## XRCC2 7.7609799220
## CYTH4 7.7563213093
## TCF19 7.7415703094
## NSMF 7.7373360263
## RNA28SN1 7.7347527443
## MTRF1 7.7286872661
## PPP1R12C 7.6863682410
## SF3B4 7.6751412832
## PSKH1 7.6692147911
## FKRP 7.6621618331
## TUBA1A 7.6561871188
## UCHL5 7.6466150797
## CENPJ 7.6340161765
## KIF23 7.6215397967
## ARRDC1 7.6206845928
## FCGRT 7.6181948080
## PSAT1 7.6106396042
## PRPF6 7.5774301063
## BUB1B 7.5759402401
## SYTL1 7.5712562657
## TYMS 7.5553214738
## ALDOA 7.5486280575
## POLM 7.5349359710
## PELATON 7.5328217382
## RXRA 7.5297890128
## PIP4K2C 7.5040835090
## RNPEPL1 7.5016111765
## SUGP1 7.4892188041
## IKBKG 7.4734932299
## PHRF1 7.4668484768
## CCNA2 7.4664932317
## RTL8C 7.4565665939
## RFWD3 7.4450282261
## TRABD 7.4401819615
## CATSPER1 7.4211735897
## ZNF865 7.3909227876
## GNB2 7.3827933846
## SKA3 7.3809719110
## SNAPC2 7.3617719416
## ZBTB7A 7.3437925864
## SPAG5 7.3433643355
## DOK1 7.3431624321
## NAPRT 7.3332166890
## PSMF1 7.3223145137
## ZNF467 7.3186405522
## FXYD5 7.3011495266
## PARL 7.2818045955
## AGAP3 7.2786403469
## TMEM187 7.2725822961
## AKT1 7.2420865221
## DENND6B 7.2127014761
## TOM1L2 7.2101364387
## CDC25A 7.1981866855
## ZNF524 7.1950540105
## SUN2 7.1801693536
## CDC45 7.1801469892
## RNH1 7.1592276815
## C1orf54 7.1566835631
## HMOX1 7.1390825443
## ZYX 7.1272790013
## LIMD2 7.1031184878
## ARFGAP1 7.1029219823
## BUB1 7.0885612479
## MAP1S 7.0750999836
## WDR25 7.0675537777
## AKT2 7.0521081240
## SLC12A2 7.0437771781
## FTL 7.0382798150
## FAM98A 7.0207046295
## HADHA 7.0033322645
## DCAF15 6.9988186135
## GSTZ1 6.9880273771
## EEF1D 6.9344798094
## IFFO1 6.9128415241
## DVL1 6.9089962480
## TRAPPC2B 6.9001287299
## PARVG 6.8918122786
## NUDT22 6.8877414686
## HSD17B1 6.8646787128
## XRCC1 6.8568418278
## SGO1 6.8558407282
## SCAMP2 6.8410198279
## DGKQ 6.8111809880
## POLA1 6.7978338037
## CDCA2 6.7884956255
## CCDC130 6.7817116969
## ABHD17A 6.7712579187
## CORO7 6.7700252404
## CD48 6.7697629449
## HIRA 6.7683647086
## HSPA1A 6.7608384170
## EXOC3 6.7566167620
## ARNTL2 6.7445085825
## MCM8 6.7295670436
## ZSCAN29 6.7159739910
## PLA2G6 6.6808790431
## CENPU 6.6790453610
## PPP6R2 6.6660311046
## DOK4 6.6457468620
## ACADM 6.6379432953
## ZFAND4 6.6293220153
## SERPINB6 6.6284323255
## CCNQ 6.6206878992
## ATAD5 6.5980360252
## MTHFD1 6.5965776662
## SPNS1 6.5924798096
## SART1 6.5661893656
## PYCARD 6.5625095706
## KCNQ1 6.5611513726
## MAN2B1 6.5533212428
## YEATS2 6.5531026344
## AKT1S1 6.5408267615
## ATF6B 6.5356078742
## EGLN2 6.5355251827
## CDC37 6.5284391770
## TMEM129 6.5228208625
## TMEM259 6.5179483292
## RTL8A 6.5171543673
## CDCA7 6.4783759005
## POLR2E 6.4746716086
## TMEM115 6.4709479316
## BCKDHA 6.4700765430
## KIF15 6.4572660489
## TBCB 6.4567604076
## NET1 6.4497545812
## UBXN1 6.4317027161
## LPCAT1 6.4100158312
## B3GNT8 6.3970896279
## PDP2 6.3917879598
## SLC16A1 6.3779209382
## UBXN11 6.3778711559
## PSTPIP1 6.3681609070
## TNIK 6.3508770713
## BARD1 6.3445308715
## STK10 6.3355871386
## ARHGEF1 6.3331829749
## TPX2 6.3255525034
## TMEM250 6.3074901908
## BLM 6.2899835022
## SNX21 6.2680888745
## FKBP14 6.2558395980
## SDF4 6.2554836113
## SASS6 6.2379343112
## ARL6IP4 6.2272596971
## DBNL 6.2139658708
## ZRSR2 6.1920063102
## ADAP1 6.1850358686
## ABHD11 6.1793181926
## HDHD5 6.1789173241
## UCP2 6.1651926032
## PLEKHM2 6.1595074095
## SPICE1 6.1466231133
## C15orf39 6.1400280468
## EIF4E 6.1385448406
## CACFD1 6.1261373647
## FOLR2 6.1124737279
## CATIP 6.1061174329
## ALG11 6.0897363757
## LRCH4 6.0846864607
## INO80B 6.0759945201
## EIF3G 6.0669291250
## TRAM2 6.0659756227
## FRS3 6.0597005171
## FAAH 6.0588822844
## INTS7 6.0531293916
## TNFSF13 6.0526049579
## CRTC1 6.0488632719
## FAM234A 6.0291109935
## GPR137 6.0259045285
## SAT2 6.0199146849
## GTSE1 6.0145895221
## RCN3 5.9876805330
## DENND1C 5.9862498650
## LYPLA2 5.9808810740
## S100PBP 5.9668464747
## FAM111A 5.9530839269
## CLTB 5.9171438181
## PPP2R1B 5.9067431031
## CKAP2 5.9042142374
## NFIC 5.8927600366
## SGTA 5.8858871024
## FGD3 5.8779869415
## C18orf21 5.8274252653
## ZNF513 5.8183049195
## TNFRSF14 5.8131958266
## TSPAN4 5.7953507903
## ATP6V0D1 5.7881470576
## SLC35F2 5.7658418371
## PKN1 5.7656121809
## SLC66A2 5.7650283593
## HNRNPLL 5.7519163439
## RAD51 5.7356526628
## CCDC71 5.7353387098
## CNPY3 5.7228881566
## BCKDK 5.7178251614
## ICAM3 5.6904579447
## UHRF1 5.6767888891
## ERF 5.6745628235
## ZNF710 5.6566034188
## E4F1 5.6561787078
## SCYL1 5.6446848488
## NR1H2 5.6444053592
## XPOT 5.6386226175
## SOCS4 5.6324118771
## NT5C 5.6318419163
## RNASEK 5.6274692352
## CHD1L 5.6098479648
## PRKCSH 5.6067524223
## LARP1 5.5986574181
## TBC1D10C 5.5977074689
## NCAPD3 5.5967492761
## CAPNS1 5.5841286969
## TNFRSF1B 5.5746364373
## MDH2 5.5691683552
## SH3BP1 5.5661669060
## GNL3L 5.5644615869
## EPN1 5.5554059608
## JUNB 5.5537519063
## TTK 5.5532636402
## MASTL 5.5517138055
## ARSA 5.5482200117
## SEPTIN9 5.5472841975
## LRP8 5.5434579745
## STARD4 5.5393736415
## SPHK2 5.5185881881
## NACA 5.5166918626
## CENPL 5.5072966100
## POLE2 5.5058247169
## SOWAHD 5.4960368041
## BATF3 5.4592264126
## RANBP3 5.4499635531
## ARHGAP1 5.4482450579
## APP 5.4421079963
## IMPA2 5.4244990912
## CTSZ 5.3806898605
## MAP2K5 5.3798132490
## C1orf112 5.3735200582
## CEP152 5.3692969982
## GRK6 5.3687236272
## ATP2C1 5.3574474183
## SPIN1 5.3528278912
## RPL19 5.3514973860
## SHARPIN 5.3407730801
## MTOR 5.3375572518
## SMARCD2 5.3213460512
## PAICS 5.3211333373
## LIN9 5.3207799246
## KCNAB2 5.3207557245
## IDH3G 5.3044120431
## ALG10 5.2952651350
## RPS2 5.2890864484
## IGFLR1 5.2870524690
## EDEM1 5.2815539190
## GMEB1 5.2696858279
## USF2 5.2573849313
## GALK2 5.2406438564
## DHCR24 5.2278342518
## ATG4B 5.2247886875
## TSC22D4 5.2233998571
## ZBTB47 5.2182708028
## ZNF688 5.2009528825
## CD300LF 5.1894845994
## GLI4 5.1889893408
## COMT 5.1888171206
## MTDH 5.1675944936
## BTBD2 5.1565353975
## PPP2R3B 5.1530851266
## DNAJC4 5.1513862032
## ATP8A1 5.1260153972
## SPSB3 5.1208683353
## FCHO1 5.1102182162
## UBR1 5.0971707063
## PPP1R35 5.0791790404
## HJURP 5.0731073495
## AP4M1 5.0699661607
## HBA2 5.0669967417
## NCAPG2 5.0512978932
## ARSB 5.0497038046
## REEP3 5.0421408000
## CASTOR1 5.0379693009
## SARS1 5.0088546594
## NADSYN1 5.0087913515
## ZNF358 4.9978034539
## TAF5 4.9856714820
## CD2BP2 4.9835292883
## PLA2G7 4.9764358831
## MCUR1 4.9509802544
## CCDC134 4.9485866176
## MAPK9 4.9453943058
## CDH13 4.9412582050
## PKD2 4.9373284732
## UBOX5 4.9298938928
## PLA2G15 4.9282086737
## ACAA1 4.9233964116
## INTS1 4.9208575578
## SLC2A6 4.9099521480
## RPL8 4.9085503905
## CCDC88B 4.9078576256
## EEF2 4.9062460069
## NCOA3 4.9043606186
## MYG1 4.9018675640
## TARS1 4.8866567613
## POGLUT3 4.8811129160
## MED11 4.8729959792
## MPHOSPH9 4.8687256318
## DLGAP5 4.8656108689
## RACK1 4.8465853574
## CYHR1 4.8401815770
## NACC1 4.8354614975
## SCD 4.8335561912
## EIF2AK1 4.8312797427
## EME1 4.8293676897
## KIF20B 4.8287997607
## CBX8 4.8271730159
## CENPE 4.8237238711
## CHMP6 4.7933056759
## CEP128 4.7886933882
## CYBC1 4.7787804036
## PNPLA6 4.7773481560
## MAF1 4.7729318294
## MED1 4.7566828422
## ESRRA 4.7495331272
## CIRBP 4.7467456598
## CCDC61 4.7336889607
## TBC1D10B 4.7298563418
## MMP14 4.7273703018
## TOR2A 4.7249409722
## AP5Z1 4.7224705053
## NNT 4.7156295728
## KIF24 4.7072479183
## ALKBH4 4.6972723166
## CCDC106 4.6922519468
## DEF6 4.6789732940
## TMUB1 4.6773136354
## PCGF5 4.6768422794
## BRIP1 4.6607700338
## ANKIB1 4.6546321910
## LHPP 4.6412767809
## DCAF10 4.6368575011
## EML3 4.6289648269
## SGSM3 4.6247042260
## BIRC6 4.6237672292
## NOP53 4.6226537795
## INTS4 4.6178697244
## DHX33 4.6104330550
## ABCD4 4.6079010136
## CD38 4.6062353753
## STXBP2 4.6057392221
## SIKE1 4.6021837800
## S1PR4 4.5988449679
## G6PC3 4.5939352560
## RIMKLB 4.5825472420
## LMAN1 4.5797922229
## UBTD1 4.5715769722
## NFATC2IP 4.5700290153
## NDUFB5 4.5605767738
## DLG1 4.5528602509
## RHOT2 4.5475775074
## NECAP2 4.5417705773
## PHB2 4.5186891406
## MYCBP2 4.5096726359
## SLC9A3R1 4.5079247135
## TGFBI 4.4996726402
## ARHGEF12 4.4980969448
## CASP10 4.4939741096
## OCEL1 4.4898990232
## SLC16A3 4.4844860594
## MBOAT7 4.4821574944
## BABAM2 4.4803270174
## CALU 4.4748124853
## CTDSP1 4.4713435685
## WDR13 4.4678972354
## MYO1G 4.4626168421
## RENBP 4.4581039850
## PNKP 4.4567897495
## DPY19L1 4.4566080721
## IRF2BP1 4.4377712063
## HMGCS1 4.4324877178
## RRM1 4.4247611851
## TTF1 4.4245261680
## INO80E 4.4235823905
## EDRF1 4.4232086238
## DDRGK1 4.4132799649
## RABEPK 4.3945528974
## ORC6 4.3889800972
## RBM10 4.3828023846
## MAP3K11 4.3682235333
## BMP8B 4.3607631633
## MRTFA 4.3559310576
## RAB4B 4.3506323534
## FKBP8 4.3430382397
## KIFC2 4.3390880793
## SRD5A3 4.3353673963
## KLHL22 4.3336011163
## TMEM88 4.3317251068
## PFKL 4.3251469698
## NHLRC2 4.3200224073
## LRRC37A3 4.3194167153
## TNK2 4.3130801261
## EHBP1L1 4.3124309161
## RPS9 4.3118472235
## ADAM8 4.2866858375
## TFAP4 4.2851631350
## ARHGDIA 4.2800578277
## MANEA 4.2754576010
## SH3BGRL3 4.2704338599
## GART 4.2646049661
## MCM2 4.2618654098
## GPBAR1 4.2585706432
## CHMP2A 4.2571003867
## UHRF2 4.2558195735
## MPG 4.2527790821
## ENDOV 4.2346518250
## PLCB3 4.2338577604
## OSGEP 4.2334431064
## DNAJB2 4.2287634230
## CDC14B 4.2232773711
## PACS1 4.2202457371
## FAM149B1 4.2166117791
## BCAP31 4.2087554191
## ERCC6L 4.2048348763
## PPP2R1A 4.1971765427
## RNASEH1 4.1947685179
## SETX 4.1832877453
## HEATR5B 4.1768578582
## CDCA5 4.1729683349
## USP6NL 4.1622731923
## CDK9 4.1463400217
## C12orf75 4.1461275511
## PNPLA2 4.1429445609
## CAPZB 4.1319600363
## MED15 4.1273308634
## CAPN10 4.1264746586
## SCAMP4 4.1262793635
## LIN52 4.1220994027
## NFX1 4.1200153002
## PWWP2B 4.1112469852
## TAPBP 4.0977825568
## COASY 4.0945048396
## TCF25 4.0944724268
## USP48 4.0835363758
## TP53I11 4.0823939882
## JAML 4.0751518189
## BAG6 4.0701364288
## CDC42BPA 4.0675079952
## AATF 4.0474824664
## CROCC 4.0450121601
## MAPKAPK3 4.0423442048
## GNAI2 4.0410017827
## FAM98C 4.0402530459
## RDX 4.0363190745
## ECT2 4.0306299899
## DOK2 4.0246055531
## FOXM1 4.0233899493
## CEP76 4.0231479713
## PITPNB 4.0139360476
## AGPAT2 4.0122623565
## TYROBP 4.0121704383
## CSF1R 4.0096721612
## FAM122C 3.9980053531
## TAB1 3.9972653299
## BRCA1 3.9968689737
## TMEM134 3.9939730039
## SRF 3.9858007580
## EEF1G 3.9842259219
## ARRB1 3.9814759143
## CENPK 3.9780869516
## SOS1 3.9745378806
## SCRN2 3.9698535333
## GSDMD 3.9658606313
## SLC25A28 3.9614269995
## COMMD5 3.9601708895
## MARS1 3.9574663298
## CDCA8 3.9386262151
## POLD4 3.9273855941
## H2BC11 3.9271687562
## SPC25 3.9114717073
## TRPM7 3.9076724170
## RPUSD1 3.8956061311
## SSNA1 3.8909906214
## RGS12 3.8900396445
## ELOB 3.8890689943
## NDUFS1 3.8831226429
## TELO2 3.8678197528
## EIF3F 3.8591983666
## EIF4EBP3 3.8543599563
## MTFR2 3.8503799401
## TAF2 3.8443258332
## PPP1R32 3.8333800945
## ENG 3.8326980570
## CENPB 3.8288022852
## ZFPL1 3.8181976226
## KCNK6 3.8116365883
## GMEB2 3.8013643788
## SH2B2 3.7913449676
## JPT1 3.7907090333
## EMC10 3.7847905302
## PKHD1L1 3.7797591754
## MCFD2 3.7756357520
## WBP1 3.7745337568
## MIB2 3.7731805442
## ACD 3.7700626014
## COPS7A 3.7633355282
## TIPIN 3.7588339212
## CMTM7 3.7463723721
## STMN1 3.7400801385
## SPATS2 3.7393987560
## KIAA1614 3.7374920958
## ERCC1 3.7370636827
## ENO1 3.7340503499
## NUMA1 3.7291748852
## CCDC22 3.7268247812
## PSAP 3.7264321051
## MPND 3.7114207569
## ID3 3.7066908258
## ARFRP1 3.7052747568
## ZNF511 3.7048305704
## SGSH 3.7047091350
## LYRM9 3.7026912121
## ZNF784 3.6972686158
## C1QTNF6 3.6941205826
## RIN1 3.6930171693
## RNF167 3.6900353435
## EFNB1 3.6782382746
## SKA1 3.6757773321
## NAA35 3.6333229873
## TMEM150A 3.6222859059
## OXLD1 3.6152363109
## ARFGEF2 3.6107117237
## EIF3M 3.5980807427
## C1orf35 3.5979571878
## MCRS1 3.5792027484
## TMEM175 3.5785997628
## TSPO 3.5742245617
## CDC27 3.5601970688
## FBRSL1 3.5580774704
## CCDC18 3.5536521941
## LAMTOR2 3.5535599955
## CYB561A3 3.5521388244
## RPS6 3.5514719937
## CD74 3.5504227502
## RELT 3.5459829399
## PHYH 3.5432212412
## ANAPC1 3.5425789521
## CSNK2B 3.5363853745
## CDK2AP2 3.5319501163
## GAK 3.5267171269
## JOSD2 3.5259405656
## PPM1F 3.5246043021
## GINS2 3.5224407726
## APEH 3.5206782328
## FAM193B 3.5161034671
## MMP24OS 3.5129344461
## CORO1A 3.5085113350
## EXOSC5 3.4833971136
## MIER2 3.4797329102
## RFC3 3.4593888240
## ZBTB22 3.4592402051
## FCER2 3.4549922611
## TUBGCP2 3.4486391003
## INCENP 3.4478275152
## AURKA 3.4458557413
## LAPTM5 3.4443956185
## DHFR 3.4375742661
## ACSF3 3.4345464649
## RECQL5 3.4308330101
## VPS13A 3.4307901621
## NEK2 3.4296534348
## UBE2J2 3.4287530335
## PACS2 3.4193190124
## ATPAF2 3.4157875121
## TTLL5 3.4133610120
## KIFC1 3.4092453040
## FLYWCH2 3.3971660166
## TSC2 3.3971279492
## C7orf50 3.3966029612
## C6orf226 3.3962418165
## CDIPT 3.3959212698
## ITGB1 3.3866047257
## NDRG2 3.3818345886
## PSMB10 3.3815322986
## TACC3 3.3732024127
## BTN3A1 3.3604565732
## CHMP4B 3.3577412911
## TPT1 3.3569618771
## AKAP8L 3.3554099714
## RPL6 3.3545843010
## C19orf25 3.3461526290
## NSD3 3.3419346181
## PCLAF 3.3384517516
## RAD54B 3.3293397557
## RASGRP3 3.3203080775
## SNRNP70 3.3148646192
## TOLLIP 3.3147117963
## ZNF707 3.3141869403
## TMEM53 3.3137374429
## ARFGAP2 3.3119304058
## PI4K2B 3.3102593205
## PDXDC1 3.3077918276
## ANP32E 3.3057106487
## CYB5R3 3.3044383045
## ATG16L2 3.3001400697
## FHOD1 3.2983191573
## TMEM64 3.2928701433
## TCEA1 3.2806886114
## ABCD1 3.2804907037
## DECR2 3.2799768011
## MCRIP1 3.2776168554
## PRR14L 3.2726672148
## CLASRP 3.2714012154
## EHD1 3.2677998568
## B3GNTL1 3.2554726090
## UBE2C 3.2549037998
## B3GALT6 3.2540921570
## SMC6 3.2522772775
## ZNF385D 3.2429726166
## UBXN2A 3.2409380265
## C2CD3 3.2396574206
## DHX15 3.2349388651
## NELFB 3.2282078314
## TMEM102 3.2161226471
## ARID1B 3.2151980844
## SSX2IP 3.2049719181
## TCF20 3.2021466748
## SYNJ2 3.1914909782
## JMJD7 3.1886401821
## ZNF664 3.1866011744
## KIAA0930 3.1859585893
## B3GALT4 3.1858994743
## LTB 3.1837738857
## GSTK1 3.1776624097
## STON1 3.1755515939
## TPI1 3.1695189334
## RPAP2 3.1663410155
## CYCS 3.1650877812
## FRMD3 3.1572988556
## CHMP1A 3.1541121263
## FAM3A 3.1509584296
## TXNRD2 3.1499329949
## TFEB 3.1493021475
## GPAA1 3.1478238139
## SELENOO 3.1452788624
## RPL27A 3.1437909765
## MIER3 3.1409824549
## ZNF778 3.1341580847
## STMN3 3.1339027837
## NRM 3.1274073602
## CYP51A1 3.1270228787
## SS18L1 3.1246583833
## RAD51AP1 3.1243647986
## HSF1 3.1198292004
## MXD4 3.1175468771
## ADRM1 3.1142433451
## PPP1CA 3.1119931798
## ACAP1 3.1097898470
## TLK1 3.1082271430
## HIGD2A 3.1067490049
## CACTIN 3.1054677712
## TMEM161A 3.1045931410
## GSTP1 3.1038519093
## CEP295 3.1017930493
## KCNQ5 3.0948235818
## IL18BP 3.0920806070
## SUZ12 3.0918406696
## GPR180 3.0891801574
## RPS11 3.0878201134
## SMC3 3.0868446701
## RIC1 3.0867079197
## HECTD4 3.0745403506
## ZNF414 3.0682751067
## SH3TC2 3.0680289159
## LRRC29 3.0615618167
## LARP4 3.0577043144
## KIFAP3 3.0543255010
## CKAP5 3.0480409681
## BBS5 3.0440979785
## ZKSCAN3 3.0419736516
## POLH 3.0403601765
## RBBP8 3.0395896389
## MLLT1 3.0359274002
## GGA1 3.0307059373
## FSCN1 3.0231913252
## NSMCE1 3.0220393643
## GNB1L 3.0204106760
## NCLN 3.0203098000
## CNOT6 3.0071198438
## BBX 3.0057546142
## ASMTL 3.0048773067
## SCAF1 2.9974756552
## GRHPR 2.9929119402
## HAUS7 2.9915525245
## SLC22A18 2.9904646025
## SIRT6 2.9903150112
## COPE 2.9859187817
## H2BC8 2.9850799226
## STX4 2.9706608126
## NSF 2.9664950740
## ANKRD36C 2.9659352827
## ZDHHC8 2.9657034641
## MAD2L1 2.9648907834
## SCAND1 2.9524325283
## ARHGEF5 2.9479318514
## D2HGDH 2.9462842663
## AKR7A2 2.9391983753
## RSU1 2.9272250532
## C18orf54 2.9245042807
## SCUBE1 2.9194537366
## CREB3L2 2.9159634647
## BDP1 2.9159304947
## MIIP 2.9143900742
## CCDC12 2.9134864851
## ZDHHC12 2.9126270369
## LANCL3 2.9114944062
## PATL1 2.8979137530
## ARHGAP21 2.8938893949
## LNPEP 2.8919478924
## VPS51 2.8892629305
## VANGL1 2.8817406662
## RABGAP1 2.8788917672
## HSPA13 2.8730102640
## TYK2 2.8698089232
## RAB3A 2.8694091559
## AIP 2.8654160319
## LILRB3 2.8649115790
## PUSL1 2.8622809398
## SPIN4 2.8592998001
## GMNN 2.8563736166
## EFR3A 2.8554295551
## HSF4 2.8549110846
## KLHDC3 2.8523832643
## SERF2 2.8414552335
## XPNPEP1 2.8372528695
## SLC25A1 2.8335211734
## XK 2.8282581213
## RETSAT 2.8278061189
## HCK 2.8204073118
## PEAK1 2.8199386512
## NDUFC2 2.8173660629
## PFDN5 2.8173519046
## SNAPC4 2.8152535207
## GALK1 2.8119063150
## UBE3C 2.8082478524
## GPR162 2.8067869570
## RBM15B 2.8057120099
## STUB1 2.8031702566
## RBM42 2.7982838192
## RPS4X 2.7971215026
## XPNPEP3 2.7955524000
## CAPS 2.7826482599
## FAU 2.7788386060
## DBT 2.7780816142
## ACOT8 2.7779277546
## FRG1 2.7737119097
## PTPN11 2.7679294932
## NUP205 2.7649745738
## ZBTB38 2.7647075415
## TIGD5 2.7586220888
## LMF2 2.7558687114
## CIAO3 2.7481852964
## SPI1 2.7472851914
## SURF2 2.7448608827
## TP53BP1 2.7423142032
## RALY 2.7390479628
## GINS3 2.7372534410
## DARS2 2.7368986688
## TCIRG1 2.7287229076
## PRICKLE3 2.7173626379
## BAZ1B 2.7171844606
## SETD2 2.7153064786
## ARAP1 2.7149197160
## BRF1 2.7148244185
## C5orf51 2.7115084922
## PHETA1 2.7047504797
## RGS14 2.7037072052
## LDB1 2.7033569816
## UBE3B 2.7024919459
## CUEDC2 2.7007126999
## PRIM1 2.7003110372
## PRIM2 2.6983209667
## ALDH3B1 2.6971515575
## POLL 2.6952347175
## USP24 2.6931718946
## KATNB1 2.6826737502
## REPIN1 2.6787498373
## DAGLB 2.6718349042
## MND1 2.6688148374
## PPM1M 2.6676195734
## FES 2.6665425737
## PCNA 2.6664404788
## EIF3C 2.6659218881
## CINP 2.6651971939
## BMPR2 2.6603923370
## ACY1 2.6576361914
## ZSCAN18 2.6484665044
## TMEM141 2.6479404200
## PPAT 2.6478971234
## GET4 2.6357301572
## NELFA 2.6349515500
## BTN3A3 2.6290806218
## CNN2 2.6204342833
## FAAP20 2.6198546261
## BLOC1S3 2.6183925884
## SPG7 2.6104527605
## ROGDI 2.6081359501
## RPL12 2.5938143002
## PUS7L 2.5935448163
## SIVA1 2.5867568462
## AP4E1 2.5838412895
## KCNN4 2.5808876022
## CCDC124 2.5802144078
## TP53I13 2.5642241060
## TYMP 2.5619182562
## RFC4 2.5584864287
## RPL13A 2.5541961140
## SMG1 2.5513288014
## BAG2 2.5512174006
## NIPA1 2.5484538789
## CHMP4A 2.5412321315
## ESPL1 2.5411158849
## PRAM1 2.5410058652
## ABI3 2.5404663004
## AMDHD2 2.5397095962
## NOC2L 2.5369591219
## MRPL49 2.5317966041
## PIP4K2A 2.5249057660
## SLC39A1 2.5229207751
## SLC7A7 2.5212840121
## JCHAIN 2.5199647948
## SF3A2 2.5199525389
## MRPL42 2.5197817430
## TCHP 2.5190303881
## ZNF219 2.5136483623
## FZR1 2.5094553573
## ARAF 2.5061357694
## PPCS 2.5032153339
## GUK1 2.4945201699
## MZF1 2.4910365141
## TNKS2 2.4888697234
## CIT 2.4887633847
## PRXL2B 2.4815197269
## ARPC1B 2.4807586398
## EVI5L 2.4763750563
## SPTBN1 2.4760047863
## TMEM179B 2.4757964622
## ZBTB45 2.4647033425
## ZMYND15 2.4589153165
## KIF18B 2.4517626884
## ERP29 2.4498458146
## IFT122 2.4459003447
## CASP3 2.4400542795
## MAN1A2 2.4361456440
## DPP7 2.4360398139
## HERC2 2.4347013100
## UBA1 2.4314986209
## PGAP3 2.4293835708
## MORN2 2.4246009558
## RPL15 2.4228520200
## BORCS6 2.4196158703
## SLC35A3 2.4177456774
## COBLL1 2.4157196152
## ENTPD4 2.4154903255
## PLOD3 2.4146850424
## TAF4B 2.4135184955
## SIRT2 2.4043821618
## ANKRD13D 2.4015443567
## ANO6 2.4005441378
## ZGRF1 2.3991634939
## RPS14 2.3913566918
## NANP 2.3911868175
## SMIM13 2.3906885654
## BPTF 2.3903475866
## TRPM4 2.3887333209
## COX4I1 2.3763118343
## BRMS1 2.3719845344
## LRRC8B 2.3717148447
## SNTB1 2.3698346047
## ATP6V1F 2.3585810893
## CHAC2 2.3577563874
## CLCN7 2.3514059627
## GIMAP1-GIMAP5 2.3502304935
## APRT 2.3468765303
## POLRMT 2.3465782627
## UBXN6 2.3461476620
## FANCL 2.3438529178
## RABEP2 2.3433169090
## RNF126 2.3399468403
## TRMT2A 2.3334885610
## DGKZ 2.3303542466
## RASGRP2 2.3258932316
## HSCB 2.3201020736
## AIFM3 2.3191080334
## NPEPL1 2.3126097535
## RPL3 2.3123764377
## DUS3L 2.3092389130
## DHPS 2.3085888987
## TBC1D20 2.3066612563
## ADCK2 2.3038015913
## STX17 2.2932980361
## LATS1 2.2875295774
## EPB41L5 2.2841664234
## AP2A2 2.2803057149
## SDHAF1 2.2779101244
## CCNE1 2.2736388001
## PEX16 2.2736023109
## SUCNR1 2.2712246895
## CHPF2 2.2701755712
## CCS 2.2700652560
## ARL5A 2.2661045542
## CD99L2 2.2660933975
## PARP6 2.2641227062
## RHOBTB1 2.2618240959
## PQBP1 2.2536289225
## ANKRD33B 2.2477731093
## TPPP3 2.2456921006
## BRICD5 2.2412590168
## ST14 2.2374599467
## SMG9 2.2372839964
## ESYT2 2.2361326805
## MED16 2.2358804405
## MEGF8 2.2308322716
## ZC3H6 2.2297921350
## ROCK2 2.2237743300
## SPG11 2.2230591465
## GNA15 2.2191028033
## RAB1B 2.2179242562
## DTX2 2.2173753694
## PGM3 2.2146336218
## RYR1 2.2115472179
## CRTAP 2.2105341825
## ELOF1 2.2036585750
## PIK3C2A 2.2025447727
## WIZ 2.2013160016
## THEM6 2.2001497956
## NFKBIL1 2.1994341424
## BTN2A2 2.1983319769
## PEX5 2.1939294549
## PRMT3 2.1938168006
## VPS72 2.1934597550
## PHACTR4 2.1882780738
## PAXIP1 2.1850682834
## CSNK1G1 2.1806292014
## MYO9B 2.1788585015
## NUDT16L1 2.1780791350
## TALDO1 2.1771366626
## FRYL 2.1763991950
## LRRC37B 2.1738112062
## DGAT1 2.1705501557
## EPG5 2.1681335337
## HCFC2 2.1601413066
## RALGAPB 2.1576294107
## CRKL 2.1571410889
## NFAM1 2.1564202319
## TMEM189 2.1554806837
## CNOT1 2.1529030040
## DCTN1 2.1521635078
## PIP5K1C 2.1511123616
## FAM110A 2.1478528417
## RPL18A 2.1406107705
## KIAA1191 2.1395661719
## CCAR2 2.1373283255
## RPS6KB1 2.1253603480
## XPO7 2.1249503904
## MAML2 2.1219899872
## LENG1 2.1210855980
## MAP3K14 2.1203693887
## PSMB3 2.1171968841
## RAD17 2.1165523311
## SENP1 2.1080642008
## CXCR5 2.1043573044
## NCOR1 2.1041734457
## LY86 2.1018335084
## SESTD1 2.1003600413
## SH2B1 2.0958235913
## TASOR2 2.0877769421
## GTPBP6 2.0864596355
## MTMR2 2.0838071760
## ARPC4-TTLL3 2.0821460606
## INO80D 2.0752015669
## TM7SF3 2.0715249348
## FERMT3 2.0705496097
## ASB13 2.0673772425
## MUTYH 2.0664656716
## EIF3K 2.0647208972
## DCLRE1A 2.0615820407
## ZNF75D 2.0594163109
## PNMA1 2.0545043690
## TOP3B 2.0473627363
## EOLA2 2.0427213784
## MKLN1 2.0399456831
## CLIC4 2.0330122747
## PGGHG 2.0329963584
## SMIM29 2.0239132300
## HLA-DPB1 2.0236025722
## LARP1B 2.0217829217
## RAI1 2.0191502160
## INAFM1 2.0145820492
## CCDC96 2.0073798586
## KIF2C 2.0060278457
## NOL12 2.0003268875
## DENND4C 1.9975426243
## ACTG1 1.9967789454
## SYNRG 1.9944666391
## LDLR 1.9833689014
## NUBP2 1.9830415472
## AATK 1.9803756932
## TRIM28 1.9760154022
## RPS6KA4 1.9703484718
## NIBAN2 1.9692448406
## COG3 1.9669954652
## PDHX 1.9643113374
## TMEM101 1.9620044067
## FBRS 1.9566541223
## STON2 1.9565745304
## SAP25 1.9509270724
## AP1B1 1.9482017095
## ARL15 1.9476667519
## WASF1 1.9467983380
## UAP1 1.9415681548
## UBR7 1.9409137328
## PCOLCE 1.9373884422
## CCNB1 1.9365183342
## ACACA 1.9348079851
## TMEM120A 1.9251784333
## GALNT10 1.9153589697
## TNIP2 1.9116719655
## EIF2AK4 1.9090356060
## GPATCH3 1.8980189327
## CEP44 1.8904827567
## FANCM 1.8878473611
## TMEM222 1.8861113252
## TEX264 1.8806433346
## PLK1 1.8805984912
## PEX14 1.8798287923
## EIF4EBP1 1.8780964861
## TBC1D5 1.8778531208
## FBXL15 1.8720975139
## FLOT2 1.8686370813
## NOSIP 1.8676756069
## BCL2L2 1.8668204363
## MED7 1.8638412883
## CLCN3 1.8619639509
## LAX1 1.8563143814
## WDR91 1.8544739987
## HDAC7 1.8539135865
## SLC49A3 1.8483748665
## HBS1L 1.8464245708
## ZCCHC2 1.8446332704
## CCDC32 1.8445234589
## RPS3 1.8424739057
## PAOX 1.8422422269
## ZNF580 1.8404878530
## SFXN5 1.8383026300
## WDR45 1.8355097325
## ACADVL 1.8346496897
## ERMP1 1.8341269051
## RPLP1 1.8327503727
## VSIR 1.8316404899
## BORCS8 1.8273103761
## G6PD 1.8269597296
## C16orf87 1.8268632864
## RPL26 1.8255032468
## PEAK3 1.8215506647
## CYLD 1.8095511795
## ATF7IP 1.8088853901
## RPL4 1.8072646280
## INTS11 1.8068998688
## DENND5B 1.8048257155
## NAGPA 1.8026276329
## SIDT2 1.8025071882
## MOSPD3 1.8010584881
## GOLGB1 1.7981479990
## C9orf16 1.7932672788
## ZSWIM7 1.7907483339
## ZNF764 1.7903792512
## NDC1 1.7889985267
## SMIM12 1.7854927943
## LEMD2 1.7802025631
## WDR24 1.7778820650
## PPP1R37 1.7760731505
## HMG20B 1.7715719771
## MFSD10 1.7699555853
## XAB2 1.7665439820
## GPSM3 1.7653125268
## TBCD 1.7652047045
## RPL11 1.7648581622
## CCDC57 1.7588382110
## PIGN 1.7585870810
## ADCK5 1.7555513566
## OXA1L 1.7553861901
## RFNG 1.7549224575
## NPDC1 1.7527121079
## GIMAP1 1.7523399726
## MAP2K2 1.7513666141
## NBPF10 1.7487572945
## PLXNB2 1.7487041141
## CD14 1.7451900535
## STX5 1.7445185451
## BANP 1.7397263263
## RINL 1.7384224855
## ZNF574 1.7359848431
## H4C8 1.7343764462
## FIGNL1 1.7343191666
## PHKG2 1.7295722920
## WASHC1 1.7252733029
## UHMK1 1.7073093132
## MTF2 1.7058030934
## KRI1 1.7033268999
## ZMYND8 1.6992675592
## GGT1 1.6987166380
## CIB1 1.6961535238
## CAPN15 1.6949825838
## TSSC4 1.6940205310
## BRPF3 1.6841996256
## RSF1 1.6841387808
## PPP1R14B 1.6822083746
## PRKRIP1 1.6812118346
## DDI2 1.6806978072
## B3GAT3 1.6764985861
## NDUFA3 1.6718335401
## HMGCL 1.6700322362
## ACTR1A 1.6637964165
## FCSK 1.6593283634
## FEN1 1.6574664385
## PPP6R1 1.6549296814
## HGS 1.6543376350
## KATNAL1 1.6464169205
## ERC1 1.6442276323
## PIK3R4 1.6417579869
## CSRP1 1.6392770489
## ZNF444 1.6390403701
## RPL13 1.6383687115
## FBXW5 1.6379971260
## LIPH 1.6336420376
## KCTD11 1.6292032614
## HMGN4 1.6276104893
## C2orf88 1.6263282226
## YAF2 1.6235409962
## PRR14 1.6232477457
## RPS5 1.6214485529
## LRSAM1 1.6196171484
## MFSD12 1.6187016563
## VPS13D 1.6181582802
## CLNS1A 1.6167546367
## ZBTB48 1.6151385255
## HDAC3 1.6135951533
## RBBP6 1.6135826915
## TNFAIP8L2-SCNM1 1.6123623509
## CDK6 1.6076767957
## GGH 1.6075961062
## PES1 1.6017681008
## SMCO4 1.5913262396
## TRAPPC10 1.5872011105
## CCSER2 1.5865472003
## TBC1D17 1.5857641101
## MLST8 1.5837424864
## RPS8 1.5805004582
## ESS2 1.5793518600
## COA8 1.5790632022
## CCDC153 1.5771158975
## AMPD2 1.5742281508
## FBL 1.5740076451
## U2SURP 1.5723606103
## DIPK1A 1.5715820813
## HK3 1.5696500550
## CDK17 1.5689163735
## ALDH16A1 1.5685794043
## CHD9 1.5682773316
## NEURL4 1.5609958475
## RNF25 1.5604145182
## RGPD8 1.5554255911
## KCTD3 1.5528147186
## TAZ 1.5475313703
## OGFR 1.5465867290
## SLC25A29 1.5449503137
## CLDN12 1.5424365245
## TNNC2 1.5412392307
## MTHFD2L 1.5410419362
## CCDC93 1.5393456054
## LTBP4 1.5318280061
## LRBA 1.5286257942
## PLA2G4B 1.5259525275
## ZNF692 1.5240793546
## PSMD4 1.5156311422
## TENT5C 1.5130714604
## POR 1.5123461291
## CEP131 1.5113992006
## RPL35 1.5094240412
## ARHGEF10L 1.5061229062
## F2R 1.5058271106
## TMEM86B 1.5009986748
## HOOK2 1.4990098252
## NUDT14 1.4961099191
## PCYT1B 1.4936600014
## SLC39A14 1.4925451529
## EIF4A1 1.4899253462
## ZHX1 1.4889284521
## SMARCD1 1.4885532532
## CLEC10A 1.4836278977
## SNX19 1.4801772785
## MBTPS2 1.4792371513
## MRPL28 1.4755552287
## SS18 1.4696514742
## ALKBH7 1.4662216252
## LFNG 1.4621676123
## LRRC47 1.4608444297
## COQ8A 1.4590502802
## RPL22 1.4585077137
## ANXA11 1.4581482029
## PPAN 1.4580371847
## OTUD4 1.4560003791
## HNMT 1.4552405715
## EDC4 1.4552111502
## PLD6 1.4502246156
## RPS20 1.4476600079
## WDR83 1.4455862441
## ASGR2 1.4429085078
## ARL6IP1 1.4395781105
## SLC25A45 1.4379807860
## SECTM1 1.4362723346
## RPL10 1.4362490635
## TBL3 1.4305754598
## HGH1 1.4269801370
## SKA2 1.4185792551
## SGF29 1.4161294171
## TTBK2 1.4121807586
## TKT 1.4105291904
## HARBI1 1.4084922689
## UHRF1BP1 1.4078285512
## EPB41 1.4066409670
## EHBP1 1.4043274771
## C12orf76 1.4037812508
## KCTD17 1.4020078710
## SLC37A1 1.3994743105
## RABL6 1.3944228502
## KAT5 1.3942333515
## THEMIS2 1.3890498868
## PRUNE1 1.3804572340
## FARSA 1.3795471268
## FAF2 1.3777722237
## CDK5 1.3773546901
## RNF113A 1.3759690542
## EGF 1.3730850013
## CHCHD5 1.3716412474
## WDR48 1.3706651244
## HLA-DPA1 1.3680190055
## TMEM8B 1.3588438463
## TMEM68 1.3586456626
## ACADS 1.3546441559
## RPL24 1.3521896949
## UBL7 1.3467117047
## DPP8 1.3372063531
## KIAA1958 1.3365454169
## TGFB1 1.3363164968
## SLFN12 1.3355250777
## FLNA 1.3333110879
## TEN1 1.3289716151
## MIEF2 1.3244057463
## PSMG3 1.3230211245
## RPS23 1.3218722031
## STX8 1.3180754624
## PDLIM7 1.3149924543
## SAV1 1.3141505078
## DHRS4 1.3125985700
## RER1 1.3110219794
## RNF169 1.3082422794
## HECTD1 1.3066427356
## PRC1 1.3056279081
## CASP6 1.3043437162
## CAV2 1.3034323950
## TUBGCP4 1.3016038663
## TEPSIN 1.2990129234
## MTRNR2L3 1.2943195071
## CDC34 1.2883111705
## EMSY 1.2869836995
## GTF2F1 1.2855437622
## NDUFAF7 1.2845916477
## SPPL2B 1.2803949221
## RPL7A 1.2759263208
## ANKRD52 1.2706137478
## THAP7 1.2664281519
## CASP8AP2 1.2638052150
## FAM214A 1.2559658543
## PANX1 1.2529041764
## CDK1 1.2524617957
## VPS13B 1.2515597696
## SORBS3 1.2507403900
## RABEP1 1.2461353681
## PDE5A 1.2431944243
## SEC31A 1.2383887562
## LATS2 1.2377283153
## RPL27 1.2354168283
## SLC2A13 1.2346697799
## TOPBP1 1.2313437837
## RFC1 1.2294281085
## ECH1 1.2271701449
## BAD 1.2266834506
## NAA10 1.2233982155
## RPL38 1.2227716954
## NR4A1 1.2220603276
## POLR1D 1.2191518054
## GIGYF1 1.2184803726
## CDKL1 1.2184135239
## UXT 1.2183762174
## PPP4C 1.2161157457
## NUTM2D 1.2158283847
## CCNB2 1.2143671573
## RPL21 1.2116589625
## RAVER1 1.2086734758
## TIA1 1.2058102529
## YDJC 1.2049176397
## NSD1 1.2047100660
## RC3H2 1.2042925127
## NDUFB7 1.1987476904
## TMEM38B 1.1944960181
## PIKFYVE 1.1931571724
## FAM50A 1.1914864855
## INPP4A 1.1869932389
## PTK2 1.1863790443
## IRF3 1.1833762913
## EDEM3 1.1803565135
## NUDT4 1.1787485121
## CCM2 1.1769538996
## SNX8 1.1730324624
## EIF2AK3 1.1722199041
## TWSG1 1.1698214407
## TPRN 1.1673257778
## TOGARAM1 1.1670086046
## HOMER3 1.1661579451
## TRMT61A 1.1643781868
## CERS6 1.1635207613
## NBEAL1 1.1595386234
## CAMK1 1.1560078494
## GON4L 1.1556347825
## SIGLEC9 1.1494289630
## CMC4 1.1491272640
## TTF2 1.1472481537
## HELB 1.1459520907
## FOXJ3 1.1438186414
## E2F6 1.1436186525
## MMD 1.1418845666
## FOXP4 1.1417274413
## GOLGA5 1.1330872563
## FEM1A 1.1326076551
## PHC3 1.1304484336
## RPRD2 1.1271009163
## GTF3C4 1.1268796987
## CCDC9 1.1234155693
## UNC13D 1.1219214007
## CCDC137 1.1165978680
## USP16 1.1162940762
## SEPSECS 1.1152552016
## ACLY 1.1138123066
## AGPS 1.1132955962
## EPSTI1 1.1039547057
## PFN1 1.1033497984
## ZNF316 1.1029349074
## PUF60 1.1022257489
## RUBCN 1.1018129704
## KCTD15 1.1013745052
## SH3GL1 1.0980740787
## TPD52 1.0965520054
## ZNF81 1.0953735585
## S100A13 1.0918983236
## BTF3 1.0884677201
## GTF3C5 1.0869393764
## RPL32 1.0847290920
## MYL5 1.0818772858
## BMP6 1.0816345094
## RWDD1 1.0783741829
## SRGAP2B 1.0770729477
## IDUA 1.0769837604
## TUFM 1.0744836888
## PSENEN 1.0716433154
## FBXL18 1.0713750954
## NEDD8 1.0707599059
## EDF1 1.0702667410
## NUDT4B 1.0613760943
## FBXO34 1.0605494141
## ERAP1 1.0593550336
## SPATA2L 1.0591060054
## IARS1 1.0587433661
## FASTKD1 1.0583730163
## RASA4B 1.0567024810
## FPGS 1.0519337922
## C11orf49 1.0516253386
## USO1 1.0504019549
## SPSB1 1.0473194587
## ASPSCR1 1.0472764604
## YRDC 1.0467649252
## PLB1 1.0461201054
## MGMT 1.0458007958
## MAP4K5 1.0438366306
## PABPC1 1.0436007460
## HVCN1 1.0425667024
## RPLP0 1.0370825832
## SKP1 1.0368164805
## GNE 1.0278314216
## DNAJC13 1.0269540385
## TRIM5 1.0241482973
## PPDPF 1.0211098789
## ZNF653 1.0204333807
## NDUFS7 1.0175547488
## TIMM17B 1.0155299803
## RBM12 1.0145181698
## ATXN3 1.0139994769
## TMEM97 1.0127993612
## NAA16 1.0099257712
## INTS9 1.0077339659
## ZNF598 1.0049460860
## CC2D1A 1.0020328049
## TMEM205 0.9977579134
## SLC9A3 0.9955001907
## LMAN2 0.9940458162
## NUP160 0.9918242435
## TGFBRAP1 0.9909476185
## HM13 0.9891639643
## ZC3H11A 0.9847181922
## CNTRL 0.9817399907
## KCNA2 0.9772880480
## SQLE 0.9763149005
## AGO3 0.9750965163
## LTBP3 0.9697083371
## NAA38 0.9658216043
## FLJ44635 0.9595278221
## LSM8 0.9576772428
## PCGF6 0.9571452665
## ECHS1 0.9541987035
## MTHFSD 0.9506144248
## PRPF31 0.9486337379
## CEBPB 0.9486004328
## SAP30BP 0.9478153913
## PLSCR3 0.9469145512
## ZNF622 0.9449170947
## TMEM170A 0.9439476338
## EOGT 0.9431109544
## REEP5 0.9427141760
## DMAP1 0.9404878108
## PHF6 0.9382295035
## C1orf159 0.9365234609
## EWSR1 0.9341521281
## CHAF1B 0.9331315143
## NUDC 0.9310008621
## STK25 0.9300637315
## COG6 0.9274744945
## RIPK3 0.9241491618
## PPIL2 0.9237735050
## USP28 0.9235910693
## MRPL20 0.9210838916
## DHRS4L2 0.9199791459
## PYGB 0.9196453232
## DHX36 0.9182585451
## HSBP1 0.9154423606
## ATG101 0.9145336192
## ELF1 0.9121468231
## LRCH3 0.9099992473
## STK26 0.8986986493
## RDH10 0.8974825063
## ANAPC15 0.8960871070
## ZNF428 0.8933306716
## RPH3A 0.8909615929
## RELL2 0.8906229732
## RPS7 0.8904988908
## GABARAP 0.8885194069
## RHPN1 0.8818301465
## TCEA2 0.8818194287
## ADAR 0.8807596572
## TDG 0.8803903656
## ZNF226 0.8778406378
## STRADA 0.8728582135
## RASA4 0.8700120698
## RAB30 0.8685830360
## MED9 0.8684275987
## LAMP1 0.8676773249
## HCFC1R1 0.8604998548
## CTNNAL1 0.8533251106
## KIAA1109 0.8531232131
## CARNMT1 0.8515229393
## SH2D3C 0.8501473284
## TAF10 0.8483565387
## PRELID3B 0.8467304851
## ADORA2A 0.8439761218
## CPTP 0.8419688463
## VEGFB 0.8399749734
## RAB34 0.8387787257
## IRF4 0.8317771056
## HACE1 0.8301606662
## SEMA7A 0.8279965340
## RPS16 0.8265863119
## TPCN1 0.8248525245
## TRMT1 0.8231221198
## KCTD5 0.8219717167
## RPS10 0.8218056522
## RPL29 0.8108250505
## CLASP2 0.8087010771
## IFI30 0.8081107508
## AMIGO2 0.8071394414
## FBXW9 0.8062752023
## ZNF236 0.8039763589
## FCN1 0.8037836434
## EIF4E2 0.8023614820
## RRP8 0.8022258830
## RPL23A 0.8020664107
## METAP1 0.7946864433
## EPDR1 0.7938073156
## CD226 0.7928138840
## RPL7 0.7914824571
## MYO1F 0.7906287877
## ACBD4 0.7894820608
## PRX 0.7867147583
## PSMD5 0.7865284451
## SRGAP2C 0.7845580648
## CDK12 0.7816520483
## FRS2 0.7785101107
## MAPK7 0.7781110627
## PARG 0.7769773370
## SSR1 0.7756129108
## RHBDD3 0.7737773316
## RPL18 0.7735021798
## PGP 0.7725078756
## OCRL 0.7724491175
## LILRA2 0.7694225076
## LEPR 0.7683103072
## ABCF3 0.7663217970
## RPS18 0.7641621960
## MICOS13 0.7637394710
## C17orf49 0.7621068684
## SIK3 0.7607203326
## SBF1 0.7601258765
## CDPF1 0.7536229036
## RBMX2 0.7470822226
## VGLL4 0.7452931381
## PCED1A 0.7431375417
## UCKL1 0.7420923892
## CD82 0.7396443914
## EOLA1 0.7370101784
## SLC66A1 0.7331857080
## ANKZF1 0.7329874486
## SLX1A 0.7254635270
## C16orf91 0.7254632297
## SDE2 0.7244455767
## KDM4B 0.7217602442
## ATE1 0.7167344927
## SMPD2 0.7123368165
## VPS28 0.7103088711
## ATP5MC2 0.7061617675
## LTBR 0.7044965935
## STK11 0.7042222618
## FAAP100 0.7039941347
## TNFAIP8L1 0.7016842181
## GFM2 0.7003918474
## ZNF714 0.6994007366
## RPS17 0.6988252947
## OGFOD3 0.6963704029
## KXD1 0.6925272489
## DNAL4 0.6889475965
## MAD2L2 0.6838133082
## MBD3 0.6810956817
## NR1H3 0.6796956601
## CEP104 0.6763342545
## ANKRA2 0.6730356246
## RAB3GAP2 0.6723017590
## SIL1 0.6679213354
## RPL5 0.6654674333
## FIZ1 0.6630916085
## AK1 0.6609654241
## SSBP4 0.6571914273
## SRP72 0.6559581642
## MON2 0.6549572148
## CHD2 0.6497677523
## CBY1 0.6486089468
## SLC29A3 0.6472508753
## SETBP1 0.6448508125
## SLC7A1 0.6446813934
## ARCN1 0.6438069071
## PDE1B 0.6435421291
## EEF1B2 0.6383833974
## SGO2 0.6350345025
## MED13 0.6337194106
## ITGB2 0.6313529303
## GNPTAB 0.6307635551
## ARPC4 0.6288236209
## THAP3 0.6287294545
## CCDC189 0.6246310805
## WRN 0.6234207286
## PCIF1 0.6231822555
## OTULIN 0.6228078996
## PCNX3 0.6218573022
## DEF8 0.6200140513
## CAPN2 0.6193921598
## ZNF765 0.6192403003
## USP12 0.6187155838
## HELZ 0.6184817130
## KRBA1 0.6162285860
## CLEC7A 0.6116228700
## ZNF500 0.6110938986
## HMOX2 0.6087898097
## C5AR2 0.6087290487
## APOBR 0.6072663205
## LTN1 0.6060828529
## U2AF1L4 0.6050661614
## ACAP3 0.6025382330
## QARS1 0.6017650532
## NAPB 0.6015859117
## GPS1 0.5944287454
## ANKMY2 0.5937733242
## CDYL2 0.5928875626
## AK3 0.5862612064
## STT3A 0.5831438588
## STARD5 0.5830332645
## IQCB1 0.5712020925
## ASL 0.5688443773
## SEC23IP 0.5687786377
## CWF19L1 0.5670750702
## NEK1 0.5639450510
## GHDC 0.5604332465
## SRPRA 0.5596406807
## TRIP11 0.5577988479
## TOMM7 0.5556597021
## CRTC2 0.5514615359
## SUDS3 0.5483684963
## VPS4A 0.5469856901
## PDS5A 0.5452150706
## GPD2 0.5442575072
## PURB 0.5432408874
## RO60 0.5420182419
## DDX52 0.5412433079
## REV3L 0.5410551650
## ZNFX1 0.5379063204
## WDR81 0.5378384933
## HDAC11 0.5374811321
## ZNF691 0.5313046069
## GPATCH2L 0.5302993876
## FASTK 0.5284185179
## PEAR1 0.5252664205
## TUT1 0.5230814779
## RPS27A 0.5196162085
## HBA1 0.5194474458
## RPS19BP1 0.5193216519
## FAM214B 0.5141733791
## RPL17 0.5109903011
## VAV2 0.5084729502
## TFPT 0.5073997194
## MYLK 0.5054703333
## WDR33 0.5046066059
## CNOT9 0.5014876310
## MYSM1 0.5011268988
## ELOVL7 0.5010411948
## EIF2B4 0.5000657137
## PSMB4 0.4959553626
## VAMP8 0.4919970207
## PBRM1 0.4903132330
## NIP7 0.4884484460
## CHTOP 0.4870856273
## MAP3K6 0.4846307824
## C16orf86 0.4840765564
## TTC21B 0.4840458967
## USP33 0.4828940339
## RGS19 0.4824388039
## BAHD1 0.4797522294
## FZD3 0.4759365133
## CTPS1 0.4732509703
## SNX25 0.4730728134
## OAZ1 0.4729049501
## TRADD 0.4701771247
## SIGIRR 0.4691043358
## LTA 0.4685656193
## LRRC45 0.4676058957
## CCDC115 0.4671513585
## ZNF341 0.4663412830
## SENP2 0.4648520443
## BRD9 0.4634638526
## TRIR 0.4620502205
## TYSND1 0.4607977358
## FUOM 0.4587118967
## RPL10A 0.4586853565
## COQ2 0.4586479746
## SLFN11 0.4558707907
## SSBP2 0.4554961605
## POLR2F 0.4544729810
## NBPF14 0.4517823046
## IZUMO4 0.4500594104
## SLC48A1 0.4499174105
## PFKM 0.4482007585
## DNAJC14 0.4463642164
## MICB 0.4448305036
## DESI2 0.4427984236
## PPP2R5E 0.4395961766
## ZNHIT1 0.4395238469
## SURF1 0.4364872305
## SERPINH1 0.4356815532
## CCDC77 0.4314113322
## UVRAG 0.4296095654
## SLC25A25 0.4229695831
## WAS 0.4221730613
## METTL26 0.4215480334
## PRELID1 0.4141156900
## SP4 0.4120958458
## POU2AF1 0.4098553162
## SLC10A7 0.4081367958
## RPL9 0.4065998774
## IL6ST 0.4055636682
## ENKD1 0.4053050543
## BCAT2 0.4049718595
## RASSF4 0.4018970299
## UBXN7 0.4016241979
## KLHL20 0.4013059530
## AAAS 0.3972575666
## RBBP5 0.3969077847
## CDK14 0.3960065484
## RAB3IP 0.3924111176
## SNF8 0.3919662129
## IDE 0.3907146259
## LENG9 0.3877853579
## MAPK11 0.3862681174
## NCK1 0.3832945628
## NR6A1 0.3825759078
## HACD2 0.3820218685
## SLC30A6 0.3816413573
## CRACR2A 0.3804322824
## TSEN34 0.3782773276
## LRRC23 0.3777655017
## CABIN1 0.3736704428
## MCCC2 0.3725872160
## VPS39 0.3708998697
## QTRT1 0.3700229213
## ECSIT 0.3685811714
## FAM53B 0.3684270870
## NECAB2 0.3643721606
## PSMD13 0.3633121177
## BIN3 0.3620516710
## LRRC58 0.3617942844
## ELOVL6 0.3614444029
## PI16 0.3612940603
## USP25 0.3595002115
## USP31 0.3583816171
## BOD1 0.3580813475
## GPKOW 0.3564519943
## PIH1D1 0.3549571298
## DPH5 0.3464637614
## CEBPZOS 0.3446558101
## ENGASE 0.3439614786
## TTC17 0.3409413723
## AXIN1 0.3403099609
## CORO1B 0.3393786374
## KLHL24 0.3372931493
## SLC5A3 0.3370035524
## GOLIM4 0.3346150455
## UBA52 0.3339073863
## RPS3A 0.3322385016
## ATR 0.3319909390
## ITFG1 0.3292011554
## TADA3 0.3281207282
## PTDSS2 0.3250128443
## NMRAL1 0.3239803952
## PRKCI 0.3238919160
## COQ9 0.3236256017
## TIAF1 0.3232069024
## FER 0.3222054601
## DGCR6L 0.3219654850
## FRA10AC1 0.3191114881
## TESK1 0.3179052261
## MME 0.3174646118
## KPNA6 0.3170384685
## WDR70 0.3133757114
## CENPA 0.3124814514
## NDOR1 0.3124354408
## RABL3 0.3111873911
## PTPN6 0.3090585207
## ARHGAP45 0.3059867152
## PLEKHO1 0.3056901102
## UBALD1 0.3053011651
## MSRB3 0.3044906307
## PLEKHA8 0.3038349062
## ARID5A 0.3008696070
## DGCR2 0.3003658964
## PMM1 0.2978905023
## CTDNEP1 0.2978369263
## ISY1 0.2928168269
## ETFB 0.2868381165
## RNF213 0.2848720981
## ZMIZ2 0.2839719028
## MAPK3 0.2832590995
## FDXR 0.2820607048
## SEMA3E 0.2818881921
## MTFR1 0.2801013056
## MYO1D 0.2792995172
## IRAK2 0.2787855496
## LMBRD2 0.2748140392
## EIF6 0.2745030596
## CCL3 0.2739794137
## UBAC2 0.2707669512
## RHOG 0.2706766887
## NEK4 0.2696714096
## GRAMD4 0.2695218038
## MAN2A1 0.2679287864
## NINJ2 0.2675180655
## ECI1 0.2642986078
## DNAJB4 0.2524983294
## ZNF669 0.2501438020
## BAX 0.2489835679
## TRIP6 0.2469105847
## TRIM11 0.2446557283
## HAUS2 0.2443569044
## ZNF671 0.2435331226
## ZNF581 0.2432905484
## CNST 0.2402266528
## TPP2 0.2394516334
## MED6 0.2376774366
## PIDD1 0.2368934145
## DBP 0.2363798460
## MORF4L2 0.2352781511
## SBF2 0.2343320760
## ZDHHC23 0.2328317712
## RPS25 0.2302798662
## APEX1 0.2290179873
## TAB3 0.2287188328
## TNFRSF10C 0.2269731848
## HPS3 0.2257611473
## ATP6V0E2 0.2249941831
## KLRB1 0.2247794287
## SMCHD1 0.2247673190
## HMGXB4 0.2244605912
## PBLD 0.2241626154
## LPAR2 0.2238636876
## YJU2 0.2216953788
## TEX2 0.2210435964
## CLCC1 0.2182160086
## BTN3A2 0.2177851654
## GGCX 0.2177408391
## FAM199X 0.2170865829
## ANKRD26 0.2169309022
## RMC1 0.2154813992
## FNDC3A 0.2146216402
## TSC1 0.2137952086
## XRN1 0.2131707332
## EIF3H 0.2125415024
## LONP1 0.2105668279
## CENPN 0.2052133399
## CDC26 0.2049302527
## KANSL3 0.2020306239
## C6orf47 0.1981812086
## SZRD1 0.1971640836
## PTPRA 0.1960244917
## ATXN7 0.1957884810
## APPBP2 0.1945286576
## CEP162 0.1932856507
## ZNF852 0.1929927027
## PDK2 0.1916576710
## PXN 0.1894930850
## GOLT1B 0.1853105316
## BRD2 0.1821627883
## CD4 0.1801056888
## NELFE 0.1789236048
## MIF4GD 0.1776684878
## VPS25 0.1773077460
## LILRA1 0.1771754736
## PNPLA7 0.1761261615
## NFATC1 0.1753224547
## IRF8 0.1750418132
## ATL1 0.1731591888
## N4BP2 0.1731442608
## ZNF446 0.1720876279
## IGFL4 0.1685565417
## RPL36 0.1643526138
## PLEKHM3 0.1627519707
## ATAD2B 0.1614717566
## LGALS1 0.1610281498
## NCOA6 0.1601495069
## GPER1 0.1560016352
## CTDP1 0.1555724057
## FLT3LG 0.1553142500
## PRDM4 0.1535578903
## SH3D21 0.1486667003
## CAPG 0.1462751659
## FAM126A 0.1456378551
## NCF4 0.1445373396
## ARHGAP5 0.1443517941
## WDR7 0.1436098345
## KCTD9 0.1433877926
## EEFSEC 0.1421025200
## PTGES2 0.1385774408
## WASHC2A 0.1378092687
## KDM5A 0.1376496568
## TMED1 0.1306021155
## DUS1L 0.1275141054
## SLC33A1 0.1264440889
## RAB2B 0.1252949507
## CEP63 0.1233864746
## CFL1 0.1217061285
## USE1 0.1207758372
## MCM9 0.1133798245
## CYP4F3 0.1131158152
## MRPL4 0.1120754622
## LIMS1 0.1120041972
## IDH3B 0.1108425247
## ABRAXAS2 0.1104641459
## SEMA4C 0.1097630959
## LSM11 0.1092222724
## NUP155 0.1076379006
## KPNA3 0.1069973942
## SH2D3A 0.1062768119
## ST6GAL1 0.1047751561
## PATL2 0.1033561340
## EXOC7 0.0997979504
## CTNNBIP1 0.0974415889
## OGT 0.0971414598
## SLC25A30 0.0949979453
## CPSF2 0.0918408923
## TMEM39B 0.0901067916
## UNC5A 0.0870157854
## ADNP 0.0847422862
## MOB3A 0.0819290495
## LPCAT4 0.0794377552
## SCP2 0.0767490069
## MIF 0.0761183587
## DEK 0.0730592870
## TRAF1 0.0669764865
## USP49 0.0612813666
## UBTF 0.0596552770
## CENPT 0.0596117020
## TAF1 0.0592178848
## PCDH12 0.0584020990
## TAF1B 0.0580514258
## PIGC 0.0569695726
## MYL6 0.0525380431
## NDUFV1 0.0501567639
## PRRG4 0.0499163194
## LRRC8D 0.0495317575
## NUS1 0.0467431507
## PRMT2 0.0416692657
## RFX1 0.0382146710
## CDIP1 0.0371667150
## ZBTB46 0.0368625385
## SLC2A4RG 0.0357101882
## RAD18 0.0346574112
## TESC 0.0338504918
## TNPO1 0.0329803951
## RBM27 0.0319371875
## CMTM3 0.0314138461
## MSH6 0.0304592614
## C19orf53 0.0279952063
## TMEM234 0.0261852228
## MEF2B 0.0221839243
## RPL30 0.0221828274
## ACTL6A 0.0207112518
## ZRANB1 0.0203231218
## INF2 0.0167940995
## RHOF 0.0155033025
## ACBD3 0.0154498215
## IPO9 0.0139660659
## CTSF 0.0139405367
## TXNDC5 0.0138050724
## SCARB2 0.0128952180
## SPATA20 0.0118632175
## TRAPPC1 0.0106307554
## RPP21 0.0095756236
## SLC38A1 0.0077409068
## GRAP 0.0077267754
## PIN1 0.0062441673
## IRAK1 0.0046482335
## KRBA2 0.0046418143
## SH3BP5L 0.0004624919
## SPAG1 -0.0011734709
## HSPA1B -0.0032519239
## B3GALNT2 -0.0038190715
## SUPT16H -0.0056190221
## EIF3A -0.0070990379
## ILVBL -0.0093661432
## RCBTB1 -0.0107416128
## USP20 -0.0109890348
## BOP1 -0.0126198978
## SCRIB -0.0148746763
## NEMP1 -0.0153775265
## RABAC1 -0.0167559797
## NDUFA13 -0.0212901073
## WDR74 -0.0220293790
## FLII -0.0239100754
## RIF1 -0.0246233727
## ZNF507 -0.0276460619
## DENND1B -0.0281668307
## THOC6 -0.0288694401
## SLC25A32 -0.0289571781
## MANEAL -0.0297116366
## POGZ -0.0329573302
## RPLP2 -0.0342532978
## PLIN3 -0.0355898375
## HS1BP3 -0.0356515022
## BLOC1S4 -0.0373831794
## YIF1B -0.0398403091
## KLF2 -0.0398758916
## DHX29 -0.0399332166
## ZFYVE26 -0.0401677584
## FMR1 -0.0428447472
## PUS1 -0.0434540987
## USP54 -0.0440295045
## TMEM184C -0.0443306211
## SEPHS1 -0.0448503809
## RAB11FIP2 -0.0450717799
## BSG -0.0464082950
## NAE1 -0.0472146942
## BPNT2 -0.0495503637
## AAR2 -0.0522806731
## WASHC5 -0.0539797258
## JMJD8 -0.0556759964
## ORC2 -0.0564348386
## CD81 -0.0564879263
## ATP2A2 -0.0566597477
## OSCAR -0.0578716191
## FEM1B -0.0596968339
## COMMD9 -0.0606391973
## PPM1L -0.0616679960
## ABHD14B -0.0618552167
## MSRA -0.0631108239
## NBPF12 -0.0633619508
## AP1S3 -0.0667523334
## SFXN3 -0.0703958056
## RPS24 -0.0728602589
## PEX6 -0.0766469726
## MYZAP -0.0782600364
## MROH1 -0.0792350666
## CARMIL2 -0.0792970699
## FIS1 -0.0817027438
## RABGGTA -0.0849164914
## LYL1 -0.0854411818
## KMT5C -0.0871142434
## INTS5 -0.0930179789
## IFITM2 -0.0939801631
## NUF2 -0.0964440281
## HSD17B10 -0.0983554400
## APBA3 -0.1000405996
## PLD3 -0.1019119007
## MRPL24 -0.1032663598
## SCYL2 -0.1044068046
## VRK3 -0.1061089836
## LTBP1 -0.1063685498
## SURF4 -0.1111461369
## KIF2A -0.1133749269
## BAMBI -0.1161187999
## ZMAT5 -0.1162506002
## CCDC107 -0.1190995919
## NAALADL1 -0.1266809260
## DENND4B -0.1277135108
## UBA5 -0.1292863796
## CCDC142 -0.1359174514
## USF3 -0.1363813797
## SIMC1 -0.1364946296
## NAT9 -0.1368784787
## CTSH -0.1378574840
## SEPTIN2 -0.1383743412
## PRRC1 -0.1395711883
## SENP5 -0.1409723714
## INPP5K -0.1411325671
## R3HDM4 -0.1435009003
## URM1 -0.1457614876
## PRADC1 -0.1458448284
## UPF3B -0.1461567636
## NCKAP1 -0.1472410966
## STAT5A -0.1473150468
## ABCC4 -0.1496460969
## RGS3 -0.1497883640
## CYC1 -0.1507621700
## HLA-DRB1 -0.1513367883
## PSMG4 -0.1534382901
## ZBTB17 -0.1547375660
## CD7 -0.1553230858
## ALKBH2 -0.1566216248
## STK19 -0.1574520460
## IGBP1 -0.1587552927
## DERPC -0.1591454673
## DSN1 -0.1609768791
## TIMM13 -0.1609978934
## ZNF28 -0.1612439300
## RBM14 -0.1617428730
## CAND1 -0.1618591345
## ZNF578 -0.1631730162
## ERCC6 -0.1666268482
## EML6 -0.1669127490
## MICAL1 -0.1720514311
## ERLEC1 -0.1753169388
## ABLIM3 -0.1760583700
## ERI2 -0.1761582894
## WDR97 -0.1772348131
## RNF6 -0.1783997412
## ZNF8 -0.1818396445
## TATDN2 -0.1831893603
## NKD1 -0.1889956264
## EMP3 -0.1891304008
## TPM2 -0.1896674586
## ASTN2 -0.1904277802
## GATAD1 -0.1915829636
## MAP3K21 -0.1948133848
## MRPL43 -0.1954907657
## NAA15 -0.2012757615
## REX1BD -0.2056770884
## DCUN1D3 -0.2059275122
## UCK1 -0.2068381294
## BTLA -0.2079633797
## IGHG1 -0.2088744604
## ANKS3 -0.2118570487
## TMEM245 -0.2121027418
## CBWD2 -0.2127778335
## VAMP1 -0.2163417701
## STING1 -0.2182431314
## MAMDC4 -0.2195666051
## B9D2 -0.2199277265
## TM2D2 -0.2201984738
## DAAM1 -0.2226489897
## NBPF19 -0.2228983147
## C18orf25 -0.2270686187
## ALPL -0.2277747267
## HLA-DMA -0.2299777974
## ZBTB42 -0.2320483464
## MTRES1 -0.2325494737
## DAB2 -0.2333242245
## POP4 -0.2336372138
## NIPSNAP1 -0.2344393153
## ACP5 -0.2359388635
## MARCHF9 -0.2375324565
## ATRX -0.2393689450
## TCF12 -0.2400078326
## CNOT3 -0.2410039785
## BANF1 -0.2445979478
## ANKRD27 -0.2458016838
## RNF187 -0.2466759208
## PPARD -0.2499434019
## XYLT2 -0.2508438033
## INVS -0.2519175243
## RSL1D1 -0.2526462457
## ZNF768 -0.2549806793
## PEX13 -0.2575083287
## PIGQ -0.2590849797
## LILRA5 -0.2632392948
## FAM8A1 -0.2658364768
## JAG1 -0.2669869693
## IREB2 -0.2704271664
## ZNF668 -0.2722596587
## PRPF4B -0.2749748178
## OVCA2 -0.2775157901
## KLHL17 -0.2778728760
## UTRN -0.2812625528
## DAGLA -0.2831854637
## RNF19A -0.2875928237
## C17orf80 -0.2877914687
## FAXDC2 -0.2885075791
## SNTA1 -0.2894778355
## PIM3 -0.2904888144
## SLC4A2 -0.2955909658
## ARIH1 -0.2956542813
## ARMC5 -0.2963279430
## DDX49 -0.3003603805
## SON -0.3037532547
## GPS2 -0.3038893640
## IGHMBP2 -0.3047340999
## ANKRD40 -0.3057994027
## MED12L -0.3069614531
## ZNF761 -0.3084696428
## NCOR2 -0.3109100253
## THOC5 -0.3122411859
## PEMT -0.3134530202
## HSP90B1 -0.3141669469
## GNL1 -0.3169438329
## ABHD8 -0.3179600737
## KCNMB1 -0.3189119787
## ANAPC2 -0.3201836439
## COX6B1 -0.3237518169
## TBP -0.3238692608
## CLPX -0.3249626377
## FBXL13 -0.3257116586
## MMS22L -0.3267183823
## ZFAND2B -0.3271241847
## RPL36A -0.3290066325
## CLPTM1 -0.3308894019
## ABCA1 -0.3340038965
## HMBOX1 -0.3348086750
## RASSF7 -0.3356551936
## IFT80 -0.3362423029
## NME3 -0.3368227479
## THAP4 -0.3379809188
## ETNK1 -0.3393616725
## BBC3 -0.3395923107
## ABT1 -0.3428960254
## ATP5F1D -0.3437968222
## CBX5 -0.3462219558
## SLC1A4 -0.3477329951
## BTAF1 -0.3496797135
## SH3BP2 -0.3514063207
## GPX1 -0.3541645022
## TRAK2 -0.3543052266
## DHRS13 -0.3555008052
## AFF4 -0.3569090406
## RPL23 -0.3576125888
## PPCDC -0.3611099331
## FYTTD1 -0.3635137934
## MED18 -0.3649351065
## RPS27 -0.3651261004
## EPC2 -0.3653105274
## CHCHD10 -0.3660170431
## KIAA2026 -0.3663591220
## YBX1 -0.3691105746
## HECTD3 -0.3696919952
## MANBAL -0.3701937288
## DNAJC17 -0.3709474777
## MLF2 -0.3709521310
## C12orf57 -0.3736407529
## LRMDA -0.3788720527
## NOC4L -0.3794703444
## ZNF672 -0.3796329109
## WDR62 -0.3796425256
## ENTPD6 -0.3797412636
## ARID5B -0.3810146712
## NLRX1 -0.3826601528
## MROH6 -0.3837145635
## NUGGC -0.3842492545
## SRGAP2 -0.3856429931
## RANGAP1 -0.3859377592
## LST1 -0.3866991150
## FAM122B -0.3896562025
## THAP11 -0.3900910470
## B4GALT7 -0.3905253361
## ARHGAP15 -0.3916793002
## FAM20B -0.3959357018
## VPS52 -0.3962743834
## ANKRD17 -0.3964888326
## XPR1 -0.3973655404
## LUC7L -0.3989654091
## ERCC4 -0.4040084239
## ZNF621 -0.4068231873
## PRPF4 -0.4099495585
## RPS15A -0.4109797066
## REXO4 -0.4122502611
## CLK2 -0.4129629437
## OPA1 -0.4136088157
## ADAT1 -0.4149739526
## ZMYM4 -0.4157410901
## PPP2CB -0.4160996125
## FBXW11 -0.4171663350
## SERAC1 -0.4178883345
## SCIN -0.4207930189
## PAXX -0.4223455383
## UNC119 -0.4230296006
## HSPD1 -0.4246879301
## GFER -0.4251501612
## TRIM8 -0.4253017870
## ZDHHC6 -0.4261336509
## CLINT1 -0.4285327711
## JADE3 -0.4285742400
## DCAF5 -0.4314788742
## GATA2 -0.4316890141
## DTX3L -0.4319976150
## POLR2C -0.4362675792
## TMEM107 -0.4389802858
## TMED4 -0.4412028123
## HDAC10 -0.4416308279
## DIMT1 -0.4428291556
## DBF4 -0.4429264662
## SNX17 -0.4446714188
## ZNF408 -0.4449299201
## ZNF788P -0.4450539095
## GCC2 -0.4470607946
## PIK3R6 -0.4487489936
## SLC25A3 -0.4493649217
## DNPH1 -0.4496502512
## CHKB -0.4502358745
## PICK1 -0.4527231424
## R3HCC1 -0.4533616257
## CFD -0.4562152497
## TNFSF8 -0.4571619519
## UTP3 -0.4582250988
## G3BP2 -0.4594311682
## NFKBIE -0.4605278122
## TMEM203 -0.4610281179
## ITGAV -0.4650863934
## BIN1 -0.4664060144
## MAN1B1 -0.4711611235
## PELP1 -0.4723092550
## MRE11 -0.4732219161
## RPL28 -0.4736431294
## TBK1 -0.4759206303
## COQ4 -0.4759472541
## ATP13A2 -0.4802419181
## DRG2 -0.4816959990
## PANK3 -0.4820175288
## ARL3 -0.4825482745
## EIF4G3 -0.4835362987
## HINT3 -0.4851256017
## FASTKD5 -0.4866952702
## GIT1 -0.4878642272
## CENPBD1 -0.4888628999
## NARF -0.4906077853
## MPP5 -0.4924658152
## ZDHHC21 -0.4930235696
## TICAM1 -0.4958028657
## ABCB8 -0.4974717303
## NAA60 -0.4976616948
## DDA1 -0.4989945786
## SMG7 -0.5014300637
## PLXND1 -0.5030005534
## RANGRF -0.5048081968
## C5 -0.5092800475
## HAPLN3 -0.5094467167
## GBF1 -0.5121198515
## ZNF616 -0.5127463534
## HAGH -0.5136853642
## MAN2B2 -0.5147570839
## PCBD1 -0.5162879157
## PEX10 -0.5165230512
## PRPS2 -0.5170185395
## CDK10 -0.5174853229
## BEND7 -0.5207381781
## SWT1 -0.5253450670
## FBXO31 -0.5261033463
## SLC6A16 -0.5271606682
## RPS6KC1 -0.5274141104
## VIM -0.5295008014
## DYRK1B -0.5297089308
## RPS6KB2 -0.5346385817
## ANKRD54 -0.5354298450
## ZNF547 -0.5363533606
## MIGA2 -0.5372583409
## POLR2G -0.5403695542
## YTHDF2 -0.5414116477
## GLS -0.5441177915
## MREG -0.5451749174
## ARRB2 -0.5472397939
## ZFP91 -0.5499768776
## SH3GLB2 -0.5506876659
## MYBL2 -0.5518870204
## RGS6 -0.5524265382
## EFCAB14 -0.5537958681
## RAPGEF6 -0.5543981176
## GCHFR -0.5549807885
## RPS15 -0.5563618876
## WDR47 -0.5570608220
## DUSP18 -0.5580061475
## OIP5 -0.5590465635
## UQCC3 -0.5600697624
## NKTR -0.5614416284
## LILRA3 -0.5643752289
## CD72 -0.5649602808
## SBNO1 -0.5651224788
## MVB12A -0.5665704396
## MYO15B -0.5667216809
## ABHD18 -0.5673685714
## MAP3K1 -0.5680651686
## MEIS1 -0.5691048292
## HP1BP3 -0.5717156542
## BLZF1 -0.5734185615
## DHRS3 -0.5756232199
## SRRT -0.5765218499
## EHD3 -0.5785238370
## MRPS34 -0.5795780968
## TINF2 -0.5820639422
## LAMC1 -0.5823166355
## CALHM5 -0.5842708371
## PYM1 -0.5845960909
## LETM2 -0.5852361784
## PDZD4 -0.5858591673
## ZCWPW1 -0.5873763581
## MVD -0.5883933302
## MIEF1 -0.5887566613
## PDE6G -0.5914672144
## KAT6B -0.5938002798
## ATG4D -0.5945122752
## STK40 -0.5952098826
## IGSF8 -0.5966135724
## TTC37 -0.5989195370
## SELENON -0.6021387072
## CEP83 -0.6036327833
## MTCP1 -0.6046048965
## SRI -0.6054386759
## KHDC4 -0.6056976163
## KMT2E -0.6067569401
## BCL7B -0.6078508535
## IGKC -0.6108531395
## HSPB1 -0.6131392056
## DMXL2 -0.6136107665
## OSGIN2 -0.6137285621
## FAM174C -0.6137468296
## TOP1 -0.6148633110
## HEBP1 -0.6156424729
## PTOV1 -0.6167385732
## ASH1L -0.6217212721
## PALB2 -0.6240144656
## TOP1MT -0.6245176505
## CDK19 -0.6252004790
## RBL1 -0.6260914322
## PSMD9 -0.6264747526
## SIRT7 -0.6278205249
## PIGW -0.6290104817
## MSH2 -0.6295843773
## SLA2 -0.6308972499
## PRKD3 -0.6314773164
## APBB1 -0.6328142117
## LSR -0.6372776383
## VCL -0.6392561654
## NDUFA11 -0.6399957874
## CHERP -0.6404277740
## ABCE1 -0.6411763827
## LCLAT1 -0.6413595530
## UBAP2L -0.6450529510
## STRBP -0.6465055226
## METTL4 -0.6474278306
## MDM4 -0.6481522973
## RPS19 -0.6511958698
## PSMB1 -0.6525366142
## ZNF841 -0.6530878331
## KIAA1841 -0.6534734945
## PAWR -0.6555952066
## MRPL41 -0.6558877771
## AP2S1 -0.6565054195
## SREBF2 -0.6570213148
## CSF1 -0.6586504566
## HERC1 -0.6588666093
## LIN7C -0.6612087578
## UBE2E1 -0.6635502968
## CFAP36 -0.6636899373
## RB1 -0.6637188540
## ZBTB21 -0.6648224403
## WAC -0.6660021456
## PARP2 -0.6686857293
## ATP2A3 -0.6691417929
## KRR1 -0.6717232653
## POLR2L -0.6737538795
## TMEM192 -0.6750454180
## TXNDC16 -0.6762687073
## SERPINF2 -0.6779834702
## STX10 -0.6789776809
## MRPL52 -0.6809994955
## LONRF3 -0.6815218907
## FBXW4 -0.6821248003
## ZNF853 -0.6821774040
## APEX2 -0.6826064501
## PAPOLG -0.6852983123
## SDR39U1 -0.6865644686
## PPM1J -0.6900021465
## AQR -0.6918661273
## EEF1A1 -0.6929521998
## WASHC2C -0.6944878849
## TKFC -0.6947279629
## PARP9 -0.6956158975
## FAM13B -0.6969863510
## NECTIN1 -0.6973385886
## RPP25L -0.6982714884
## SLC35E1 -0.6983454439
## AMMECR1L -0.6994116712
## VDAC3 -0.7029777781
## RPS6KA1 -0.7052219322
## ZNF623 -0.7054837643
## GIPC1 -0.7081639059
## CERS5 -0.7094459290
## CBFA2T2 -0.7106812308
## BAG5 -0.7126126126
## LMLN -0.7128696943
## CD2AP -0.7146805954
## PDZK1IP1 -0.7148522070
## TMSB10 -0.7156018726
## UNK -0.7184794056
## TSC22D1 -0.7185365925
## FAM241A -0.7189595416
## ADGRG3 -0.7190474901
## SLAIN1 -0.7192022811
## C5orf22 -0.7274300972
## ZNF254 -0.7281216152
## PTPRS -0.7281413137
## MRFAP1 -0.7284243425
## SEC13 -0.7289288085
## SCAPER -0.7289632816
## SPCS2 -0.7300025536
## ARL5B -0.7329939307
## QSOX1 -0.7346788624
## FRK -0.7377698529
## ZSWIM9 -0.7420721862
## VPS9D1 -0.7421274678
## SELENOW -0.7457868401
## CCNT1 -0.7481423267
## DDX39B -0.7497227234
## TMEM128 -0.7499158524
## ZC3H12C -0.7513337611
## NDRG3 -0.7536190808
## SEMA6B -0.7538275966
## CSF3R -0.7548385185
## RPL37A -0.7548821679
## FADS1 -0.7577464135
## GCNT1 -0.7579189737
## DCK -0.7601688210
## ATP11C -0.7629020766
## SEL1L -0.7651811587
## ZNF440 -0.7654959887
## DDX54 -0.7679431416
## ZFYVE19 -0.7690707270
## WDR12 -0.7821323617
## MIA3 -0.7833828689
## OXCT1 -0.7866950361
## WDR83OS -0.7901047552
## RASGRP4 -0.7914081991
## SLC39A9 -0.7923594018
## DLAT -0.7982080170
## TCF4 -0.7999826420
## SLAIN2 -0.8014207238
## RASA1 -0.8018119159
## NETO2 -0.8028884532
## SAMD1 -0.8029479581
## ANXA2R -0.8036543839
## FIBP -0.8059415257
## PARP14 -0.8071227739
## IFT43 -0.8076083451
## E2F1 -0.8078924429
## DNAL1 -0.8082177493
## TRAPPC5 -0.8088198995
## PMVK -0.8133989393
## LSM4 -0.8153640908
## E2F5 -0.8184711583
## RPL35A -0.8195263644
## UQCR11 -0.8198418053
## TES -0.8206902728
## NRF1 -0.8299449526
## MARCHF2 -0.8306233164
## ATM -0.8314677424
## C9orf139 -0.8318679696
## MAP2K3 -0.8337748707
## PLIN5 -0.8361277237
## ARHGAP6 -0.8367545219
## ZNF263 -0.8408482941
## WLS -0.8433659707
## LEPROT -0.8433782331
## ELK4 -0.8442849908
## RNA28SN3 -0.8443151172
## ABTB1 -0.8460806482
## SLC35F5 -0.8495483021
## ANXA4 -0.8498058280
## AURKAIP1 -0.8532499032
## SLC2A8 -0.8534316474
## COMMD6 -0.8556502213
## NUDT17 -0.8573687079
## SLC30A7 -0.8574906056
## PDIK1L -0.8575382605
## TXNL4A -0.8612836518
## SMG6 -0.8626525060
## TRAM1 -0.8653749656
## YME1L1 -0.8672434658
## DAPK3 -0.8686075862
## IL4R -0.8687229495
## ADCK1 -0.8710946821
## EPRS1 -0.8712160892
## RECQL -0.8735566976
## WIPF2 -0.8758506944
## ARL16 -0.8771768126
## OSBP -0.8796394665
## TIMP1 -0.8798431071
## CPNE1 -0.8799811694
## OTUB1 -0.8804962035
## SNAPIN -0.8809205974
## MEA1 -0.8821131742
## DNAJC7 -0.8821168986
## ZC3H7A -0.8821458805
## WDFY1 -0.8825153904
## TXNDC11 -0.8829611464
## TRAPPC9 -0.8831121728
## SYN2 -0.8835637776
## SMN1 -0.8846161342
## EPC1 -0.8852255813
## ZKSCAN7 -0.8860456323
## DMXL1 -0.8883668023
## REV1 -0.8898452016
## TXN2 -0.8898535466
## ABL2 -0.8903505947
## RBM43 -0.8907593020
## HYAL2 -0.8910738617
## DOP1B -0.8946553777
## HSPA4 -0.8962207266
## BIRC5 -0.8973212828
## MRAS -0.8985440270
## VPS13C -0.8988937388
## SWI5 -0.8993896640
## ANKRD36B -0.9009712895
## SETD5 -0.9022736443
## KIZ -0.9052323390
## HACD3 -0.9101363760
## TFAM -0.9105332390
## DDHD1 -0.9129023063
## CAPN1 -0.9135387249
## CISD3 -0.9142356141
## GPATCH8 -0.9167703938
## OTUD3 -0.9188392807
## USP1 -0.9201792853
## ZNF335 -0.9247444385
## NEK9 -0.9251710978
## IMPDH2 -0.9278010638
## UBFD1 -0.9300642428
## FIP1L1 -0.9310958439
## PCNX4 -0.9314474915
## SOD1 -0.9329179628
## ZNF22 -0.9337759556
## RING1 -0.9350979851
## KMT2C -0.9363291899
## CST3 -0.9392143329
## LRFN4 -0.9399769762
## CHAMP1 -0.9403435889
## CXXC1 -0.9404490277
## RBM4 -0.9442729658
## COA7 -0.9450441035
## LPIN2 -0.9462525738
## RAP1GDS1 -0.9471443259
## STAT1 -0.9482522782
## JMJD4 -0.9520165477
## PCNP -0.9531076126
## CCNF -0.9534156873
## C16orf74 -0.9546636761
## TRAPPC6A -0.9551426196
## SERGEF -0.9555926983
## CSPP1 -0.9580589465
## IL11RA -0.9585775879
## LRRC46 -0.9592799433
## MIB1 -0.9599866996
## IPPK -0.9612935157
## HNRNPR -0.9621113439
## LARP7 -0.9650840448
## PRCC -0.9686863419
## PDIA5 -0.9727110101
## VPS18 -0.9743714330
## ICE1 -0.9773052650
## ANO9 -0.9783426848
## TAF8 -0.9783533448
## HSPBP1 -0.9786097830
## PHACTR2 -0.9820420371
## DCAF7 -0.9845516940
## SNRNP35 -0.9846009356
## TSR3 -0.9859495085
## MTRNR2L6 -0.9901593547
## TRIM22 -0.9918483026
## E2F4 -0.9919810717
## TBC1D22B -0.9919956396
## RNPS1 -0.9928364963
## MPST -0.9952642063
## ABI2 -0.9958871060
## FUT10 -0.9979356482
## MUS81 -0.9995493752
## MC1R -1.0009660163
## ALDH18A1 -1.0047230111
## DDX28 -1.0076966167
## MYB -1.0084643409
## TNRC18 -1.0091262976
## SLC23A2 -1.0099695361
## PIK3R2 -1.0114079680
## DEDD2 -1.0131625673
## LARS2 -1.0138951441
## ARHGAP32 -1.0150028240
## CFAP410 -1.0156153382
## CYSTM1 -1.0157961562
## FUCA1 -1.0161739080
## CD68 -1.0206081643
## USP34 -1.0220113195
## HEATR1 -1.0235550890
## ITGA1 -1.0264134598
## CEP85L -1.0288844067
## ODC1 -1.0297830326
## TLK2 -1.0322184901
## TCOF1 -1.0324563045
## ARMC6 -1.0327272740
## DELE1 -1.0333857776
## DOCK8 -1.0335563619
## PLD1 -1.0348731740
## UNC13B -1.0366494723
## RRP36 -1.0392185616
## WRAP53 -1.0394642857
## PPP1R16A -1.0408464364
## PARP11 -1.0409599196
## DIS3L -1.0410173600
## MAL -1.0428721330
## SLC38A10 -1.0454854719
## DOT1L -1.0467355212
## ENTPD5 -1.0517213066
## CCDC80 -1.0517816223
## ZNF451 -1.0525336302
## PNKD -1.0568080763
## OLFM2 -1.0572012569
## NDUFC1 -1.0604339713
## WDR18 -1.0617881599
## POLR2J -1.0624279030
## CERK -1.0627810926
## NRAS -1.0632297544
## PSME4 -1.0654662350
## CCNYL1 -1.0656789835
## SMAD2 -1.0665114196
## PPM1K -1.0682634795
## SLC52A2 -1.0682795079
## FBLN5 -1.0686971112
## NFAT5 -1.0688541583
## PPFIA1 -1.0700906441
## AP3B1 -1.0703336487
## LILRB4 -1.0711857723
## MATK -1.0720199917
## TRMU -1.0755292078
## ZSCAN12 -1.0783809573
## TIMM9 -1.0793898120
## NCR1 -1.0807229588
## NUBP1 -1.0831957030
## PLCD1 -1.0834788948
## ASIC3 -1.0847319283
## THOC2 -1.0848078160
## ATG4A -1.0850810412
## C3orf14 -1.0877217528
## DPM3 -1.0891966834
## POLR1H -1.0957155477
## GLYCTK -1.0961058628
## DENND4A -1.0971210903
## MMP25 -1.0971933797
## PIGT -1.1002063487
## TBRG4 -1.1012142212
## NEIL3 -1.1015049228
## ESF1 -1.1024568303
## C2CD5 -1.1028674060
## SLC22A16 -1.1062803265
## NUDT1 -1.1075014456
## KAT2B -1.1143235084
## GATD1 -1.1143405813
## NISCH -1.1166169158
## ABHD10 -1.1166478790
## AURKB -1.1188402993
## CCND2 -1.1209026060
## TLE5 -1.1210184368
## WDR46 -1.1235340080
## POLE4 -1.1237095902
## PSMB6 -1.1243247370
## SAC3D1 -1.1261051213
## CEP192 -1.1271417651
## LSM14A -1.1277036144
## DHRS7B -1.1278947128
## ZNF836 -1.1283288169
## RPL14 -1.1291027250
## RPS21 -1.1305876371
## C4orf46 -1.1305908152
## ACP2 -1.1339904644
## GRK2 -1.1356737053
## BCL2L13 -1.1395281562
## ANKMY1 -1.1438645177
## CAPRIN1 -1.1444950878
## HPS5 -1.1478893062
## MCAT -1.1487304322
## CCDC30 -1.1514044694
## TMEM106C -1.1540664862
## BAZ2A -1.1545771038
## CEP97 -1.1546567044
## KIAA1586 -1.1553625411
## BRWD1 -1.1555780317
## YIPF2 -1.1583493941
## SCARB1 -1.1591158431
## RBBP4 -1.1609051341
## EFEMP2 -1.1611212724
## NAGA -1.1620389693
## TRIM33 -1.1641587703
## GTF3C3 -1.1664542341
## BRD1 -1.1677514068
## SAMD9 -1.1683557609
## A1BG -1.1697716341
## SEC63 -1.1723176010
## EEPD1 -1.1730380905
## FBXL8 -1.1740720612
## IKZF4 -1.1745363197
## ERGIC3 -1.1764079298
## TTPAL -1.1767042147
## WASHC4 -1.1785537468
## CES2 -1.1785637776
## CCDC138 -1.1794579070
## ZKSCAN1 -1.1804828621
## ASCC3 -1.1808571174
## STK38 -1.1811981301
## NAPG -1.1830645799
## POLR2I -1.1831057915
## NAA30 -1.1834274339
## SYMPK -1.1907007463
## FKBP2 -1.1918912772
## TRAF2 -1.1931491595
## TLNRD1 -1.1949902652
## SCOC -1.1965287324
## TRIM56 -1.1969012562
## LMBR1L -1.1974310978
## RICTOR -1.1982215587
## MED13L -1.1988787341
## DHRS1 -1.1991644488
## COQ8B -1.1993402212
## ACSF2 -1.1999668639
## ARMC7 -1.2010435891
## DIABLO -1.2012115879
## TOM1 -1.2016702836
## SMAD5 -1.2039300151
## GAN -1.2052970586
## ADSS1 -1.2075432626
## DNLZ -1.2076170842
## MRPL19 -1.2079651600
## STARD3 -1.2082534774
## LRRCC1 -1.2092508337
## HERC3 -1.2093580815
## FBXO28 -1.2109971892
## FZD2 -1.2142206584
## ZNF280C -1.2166314068
## DRAP1 -1.2167975685
## ZSCAN2 -1.2202148553
## TCP11L2 -1.2216785246
## ARAP2 -1.2226001833
## ZNF629 -1.2245737622
## SENP8 -1.2263436556
## BABAM1 -1.2270822625
## NAAA -1.2273535693
## MCM3 -1.2283431816
## SC5D -1.2293633190
## ACVR1 -1.2312170638
## KBTBD3 -1.2331081553
## RINT1 -1.2335567235
## SLC37A2 -1.2337214676
## EYA3 -1.2346310395
## DNM1L -1.2358356364
## LHFPL2 -1.2364982055
## B3GLCT -1.2372026493
## ABHD17B -1.2398551531
## SORD -1.2439650271
## ZNF133 -1.2472206275
## GSE1 -1.2477873430
## STRIP1 -1.2484700675
## EAF1 -1.2530919498
## PLA2G12A -1.2533643798
## SHISA9 -1.2554057297
## FAM160B2 -1.2571154930
## OASL -1.2577623699
## MFSD3 -1.2597817129
## MINDY3 -1.2604852995
## PAQR7 -1.2619682979
## NADK2 -1.2630962484
## MAP7D1 -1.2632495098
## PTRHD1 -1.2646520136
## CCL24 -1.2650856611
## ZER1 -1.2667139437
## LYST -1.2668710097
## KCNMB4 -1.2695254834
## HECA -1.2719230158
## FUZ -1.2742769610
## STAMBP -1.2758593441
## RPL39 -1.2762741798
## XPO1 -1.2775181048
## COX18 -1.2776170031
## LSM2 -1.2788385757
## ORC3 -1.2799962805
## SINHCAF -1.2830877572
## TUBB1 -1.2845425542
## MTCH1 -1.2865454176
## METTL14 -1.2883680327
## ATG2B -1.2887837118
## CDC20 -1.2904082649
## TRPT1 -1.2907593180
## LSM7 -1.2919197277
## PTAR1 -1.2923144438
## PDE7A -1.2942475721
## PTK6 -1.2957316062
## MZT2B -1.2960946680
## CTNNBL1 -1.2968892932
## KCNN3 -1.2976225175
## REEP4 -1.3006433422
## TUFT1 -1.3017806322
## NUP107 -1.3021830737
## TRPM6 -1.3029295642
## SLC2A5 -1.3034425655
## PRRC2C -1.3039941911
## EPHB6 -1.3066909481
## HPF1 -1.3067307863
## PPP1R7 -1.3107514945
## ST3GAL1 -1.3113865066
## INPP5E -1.3114343985
## TOMM6 -1.3126956055
## RPL36AL -1.3129138008
## CHCHD6 -1.3132398309
## VNN3 -1.3144389703
## SLC26A2 -1.3178384969
## HMG20A -1.3195899252
## NDUFV3 -1.3219882183
## GCSH -1.3223433189
## ZNF747 -1.3230466511
## CNOT7 -1.3237465960
## SPATA7 -1.3253221765
## MORC3 -1.3266073969
## MTRF1L -1.3266311854
## RBBP9 -1.3275660171
## DEAF1 -1.3295554692
## MBTD1 -1.3323931232
## PIWIL4 -1.3327926562
## DMTF1 -1.3334263164
## ELL2 -1.3334996668
## BRD7 -1.3349117326
## WASL -1.3354529637
## INTS2 -1.3358684281
## FNBP1L -1.3362665578
## CDC23 -1.3366999577
## ZNF48 -1.3403043930
## SART3 -1.3407320336
## HLA-DMB -1.3413627491
## WNK1 -1.3438806825
## HNRNPAB -1.3453361596
## UBR4 -1.3467067514
## UQCRB -1.3468919297
## PCBP4 -1.3469892471
## ATOX1 -1.3470829435
## SLC25A22 -1.3470934608
## UBR3 -1.3472415312
## TMF1 -1.3472785400
## KANSL1 -1.3480102932
## SELENOH -1.3487387072
## TP53INP1 -1.3543702027
## DLGAP4 -1.3553303669
## COL18A1 -1.3554452017
## CTBP1 -1.3555795363
## HS6ST1 -1.3596537590
## ZNF71 -1.3600884007
## PPP1R15B -1.3641319700
## EXO5 -1.3646116513
## GLI1 -1.3648296620
## PAXBP1 -1.3653739189
## HDHD3 -1.3684422839
## RAB5C -1.3687871113
## CBR3 -1.3709507071
## RBM33 -1.3710666601
## TUBB4B -1.3721739051
## TUBGCP6 -1.3730556132
## C21orf58 -1.3736405460
## PTAFR -1.3748345003
## DHX16 -1.3758243097
## SLC35D1 -1.3777444199
## SMC5 -1.3789449605
## PPARA -1.3792900116
## RTF1 -1.3797709521
## USP8 -1.3800826682
## TNFSF12 -1.3831571552
## ZNF497 -1.3839077548
## EIF3L -1.3857504183
## UBR2 -1.3885061965
## SLC19A1 -1.3887600007
## ZNF436 -1.3915777312
## NEMP2 -1.3930665725
## NINJ1 -1.3963461546
## PRKAR2B -1.3967675345
## DNAJC27 -1.3970272760
## MAP2K1 -1.3983012951
## TBKBP1 -1.3995861347
## PTPN18 -1.4003113821
## CCDC13 -1.4011971680
## EIF2AK2 -1.4018936483
## NRIP1 -1.4026063874
## GTF2A1 -1.4083093052
## SLC11A1 -1.4129661003
## MOB3B -1.4134456540
## NDUFS8 -1.4139752586
## H2AJ -1.4142152237
## MRPL38 -1.4182961768
## H2BC15 -1.4193689783
## LRCH1 -1.4233532157
## NLRP12 -1.4233871706
## NECAB3 -1.4321856346
## ST7 -1.4409287724
## ATP10D -1.4443729971
## FNBP4 -1.4490879030
## STYXL1 -1.4539060318
## GPR108 -1.4559598522
## EFCAB7 -1.4561865260
## FAM207A -1.4582570320
## PPP1R3F -1.4592814418
## MDP1 -1.4599710570
## C3orf86 -1.4615749658
## RELB -1.4630237824
## ACTR8 -1.4638561157
## ZBTB37 -1.4646334816
## BCL7C -1.4656294564
## DALRD3 -1.4664738427
## TRPV2 -1.4678659393
## FAM43A -1.4680629102
## STK4 -1.4708566441
## CCDC117 -1.4710559690
## ZC3H10 -1.4713307927
## OGFOD2 -1.4716168456
## UBE2G1 -1.4719905279
## CARD19 -1.4724684445
## C5orf24 -1.4738973989
## RUVBL2 -1.4746710296
## SAMD10 -1.4755430082
## NAV1 -1.4757761550
## LIMS2 -1.4763653853
## DCTN3 -1.4767064091
## C1orf162 -1.4786602327
## FBXL20 -1.4790594698
## GPAM -1.4840520357
## AGAP2 -1.4874171627
## EP300 -1.4875697756
## AAMDC -1.4885871340
## MRM1 -1.4906881543
## EXOC5 -1.4921239547
## COA3 -1.4924861245
## EDC3 -1.4937670523
## NUDCD1 -1.4951210303
## RHBDD2 -1.4951732691
## GOLGA4 -1.4969104644
## RUFY2 -1.5000301759
## ZNF32 -1.5005765043
## ATAD1 -1.5018487611
## NTMT1 -1.5022538694
## ECHDC1 -1.5038345950
## ARL2 -1.5061331969
## ZBTB39 -1.5076550587
## CELF1 -1.5090151543
## ZBTB11 -1.5093866970
## DGAT2 -1.5097444187
## GYPC -1.5107236637
## HRAS -1.5119669269
## H2BC21 -1.5136257074
## RBM11 -1.5140232713
## ARV1 -1.5148118565
## COX17 -1.5163728427
## OTUD6B -1.5170117419
## ATP5ME -1.5186265152
## KTN1 -1.5191978090
## AP2M1 -1.5192670099
## REXO5 -1.5201135658
## VPS53 -1.5211853202
## RPS12 -1.5225626958
## CYB5R1 -1.5234392827
## DARS1 -1.5241685490
## UQCRC1 -1.5244680044
## KEAP1 -1.5251345420
## NUDT21 -1.5257932034
## MTMR9 -1.5265949916
## PHLDB3 -1.5280025917
## ATG13 -1.5314870922
## CHRNA10 -1.5315459628
## MGAT1 -1.5367531730
## TNF -1.5387186813
## PSMA7 -1.5407145693
## PUM1 -1.5411056206
## ZNF419 -1.5417785182
## TM9SF1 -1.5419565454
## SMIM4 -1.5462878985
## TMX1 -1.5468573050
## MLLT10 -1.5480283522
## ABCB10 -1.5486709103
## RPL31 -1.5504025182
## DHX37 -1.5506394128
## KIF5B -1.5517835817
## FAM78A -1.5522721565
## TSNARE1 -1.5523564465
## C1GALT1 -1.5527692704
## TRAF6 -1.5549440243
## CLIC1 -1.5564188017
## MLLT11 -1.5578029097
## G2E3 -1.5587561480
## MGAT4A -1.5588794460
## UNC93B1 -1.5596116571
## ZNF66 -1.5597325444
## MRFAP1L1 -1.5613535590
## STX18 -1.5618946563
## ABCA5 -1.5630014599
## EEA1 -1.5634451580
## JADE1 -1.5645496248
## BRAF -1.5654796869
## RAD50 -1.5660497095
## UBE2M -1.5677387145
## ZNF850 -1.5683145985
## GTF2H3 -1.5686109103
## ELK3 -1.5694470195
## TMEM186 -1.5707715642
## NPAT -1.5714584656
## HAUS6 -1.5718217539
## RPS26 -1.5731995345
## LRP12 -1.5747640249
## MEX3C -1.5759426810
## PSMC3 -1.5780953874
## LSM10 -1.5784975155
## GANC -1.5787405823
## DERL2 -1.5795668422
## DDX41 -1.5797294433
## PGRMC1 -1.5808477806
## LAPTM4B -1.5852472158
## DAD1 -1.5860282182
## GRAMD2B -1.5876711403
## AMMECR1 -1.5888423518
## FADS3 -1.5890011087
## TRIM26 -1.5890079667
## ZNF699 -1.5892370113
## APOL6 -1.5898897101
## MFAP3 -1.5906165655
## C8orf82 -1.5910793922
## MFSD14A -1.5984132757
## NAGLU -1.5984202678
## ICOSLG -1.5986205545
## SERPINA1 -1.6003829468
## ODF3B -1.6006373148
## GIGYF2 -1.6006637860
## BORA -1.6050634737
## MIGA1 -1.6081548045
## NAA80 -1.6085254387
## ATXN1L -1.6097195547
## IGSF6 -1.6104169621
## TMEM212 -1.6140625295
## CLTA -1.6154329272
## MEPCE -1.6165645540
## DYRK1A -1.6167133576
## HNRNPH3 -1.6180134921
## NIPAL3 -1.6191753177
## FANCG -1.6193240476
## COA4 -1.6240270984
## RETREG3 -1.6261909100
## TRIM59 -1.6262254950
## RELCH -1.6279751885
## TACC1 -1.6305612770
## MLH1 -1.6333672325
## NKAIN3 -1.6344014064
## NSUN2 -1.6350556756
## LRRK2 -1.6355254639
## ASB3 -1.6362268333
## CACNB1 -1.6364722613
## CAMTA2 -1.6378581301
## KLHL26 -1.6396152713
## P3H1 -1.6413229021
## DDX60 -1.6415151001
## LZTR1 -1.6428634126
## CILK1 -1.6430840661
## ACO1 -1.6476656429
## TMEM123 -1.6519569846
## CIZ1 -1.6528435401
## TEDC1 -1.6542786230
## SLC10A3 -1.6560568152
## SDHAF4 -1.6565069314
## MRPL53 -1.6585455862
## LRPAP1 -1.6593674766
## EPS15 -1.6614601143
## NBDY -1.6625256763
## EMC6 -1.6634470019
## SLFN5 -1.6655438051
## DNAJC30 -1.6669536148
## ZNF787 -1.6681972044
## TFDP1 -1.6708821587
## TAOK1 -1.6708906043
## PTPRCAP -1.6716395314
## BUD13 -1.6728023507
## SEC14L5 -1.6733099506
## CAVIN2 -1.6733659753
## SWSAP1 -1.6755924483
## DYNC1LI2 -1.6789660190
## VIRMA -1.6812630913
## TMC6 -1.6816260239
## CDK16 -1.6817697156
## JUN -1.6818517349
## ADAM17 -1.6820147604
## C10orf143 -1.6827274535
## RASAL3 -1.6828487775
## MIDN -1.6833715690
## GPX4 -1.6843623753
## PSRC1 -1.6847464314
## P4HTM -1.6847991320
## ANAPC13 -1.6851004603
## PARP15 -1.6862522146
## ZBTB33 -1.6888586634
## RAD51D -1.6890252115
## MPV17L2 -1.6903105425
## SF3B5 -1.6905011686
## MTX1 -1.6914980553
## MCMBP -1.6997965824
## SMURF2 -1.7013746924
## MRPL55 -1.7023774945
## DDX17 -1.7038074232
## GON7 -1.7046572036
## SNRPD3 -1.7058471875
## SBNO2 -1.7061059477
## AGPAT5 -1.7094967525
## KCTD2 -1.7107612391
## FLAD1 -1.7109459273
## SNIP1 -1.7135044214
## MDN1 -1.7175709806
## TTC7B -1.7176107172
## NAXE -1.7190611823
## TGS1 -1.7193668072
## POLR1E -1.7207946711
## NBPF1 -1.7212126327
## BCAS4 -1.7213647849
## ZNF213 -1.7238459100
## SFI1 -1.7240342906
## DPH7 -1.7250189966
## ZNF619 -1.7259939830
## SLC27A5 -1.7270713817
## CDIN1 -1.7278183266
## PAK4 -1.7297790762
## TOMM22 -1.7299244114
## SFN -1.7321770346
## PIEZO1 -1.7334182343
## ATAD3B -1.7356342233
## CTDSPL2 -1.7390532030
## PSMC5 -1.7394539171
## NBPF11 -1.7394815361
## RUNX2 -1.7443418722
## KLHL11 -1.7455788859
## SMARCA5 -1.7461998905
## AUH -1.7464406450
## ARHGAP27 -1.7477795218
## SEL1L3 -1.7504176952
## NCOA2 -1.7508112324
## SPARC -1.7522530771
## NDUFA7 -1.7522923677
## BCLAF3 -1.7569918118
## IPO7 -1.7586964130
## RPL37 -1.7603381060
## LRRC34 -1.7606983908
## BID -1.7612186465
## SARS2 -1.7635754594
## ERI3 -1.7646802581
## HENMT1 -1.7653208903
## HLA-DQB1 -1.7662043517
## ZNF197 -1.7674697900
## RAB27B -1.7690728166
## RGS16 -1.7695715895
## CTSC -1.7696701187
## DDX18 -1.7699175285
## RCOR3 -1.7716189073
## RFX5 -1.7745297715
## FAM102B -1.7784204637
## MAT2B -1.7787996611
## DGKG -1.7788252832
## UBN2 -1.7797487180
## TXLNG -1.7807423391
## CREBRF -1.7831133578
## CLASP1 -1.7832170451
## MCEMP1 -1.7833366362
## MUSTN1 -1.7847619920
## DNAAF4 -1.7868082273
## PLEKHO2 -1.7871235445
## MRPL11 -1.7885331416
## RMI2 -1.7907468324
## PHTF2 -1.7908085540
## GTF3A -1.7929610461
## RCE1 -1.7935023602
## RRP9 -1.7946476864
## DENND1A -1.7946768057
## TMEM209 -1.7983195080
## NDUFAF8 -1.7983464004
## CLPP -1.7993328948
## SLC38A2 -1.7998918652
## SPOCK2 -1.8002931316
## SERTAD3 -1.8006722339
## CST7 -1.8019196022
## VEGFA -1.8022565992
## MEGF6 -1.8027292030
## TMOD3 -1.8036707866
## PAPOLA -1.8059384480
## TEX10 -1.8061114975
## UBR5 -1.8070659747
## UBE2T -1.8076787830
## TMPO -1.8097281159
## CLN3 -1.8122992535
## UCK2 -1.8135320476
## WDR36 -1.8166006230
## SMARCAD1 -1.8167184020
## VAC14 -1.8172236641
## SELPLG -1.8181793263
## DNAJB12 -1.8185820818
## OGFOD1 -1.8194446253
## YLPM1 -1.8199686261
## GAMT -1.8206742434
## STAB1 -1.8239262151
## PATZ1 -1.8240136318
## ZNF136 -1.8253322235
## SPINT2 -1.8253606010
## ZMAT3 -1.8255857810
## FANCC -1.8265427334
## GET3 -1.8298365365
## KANSL1L -1.8305465788
## SYNE1 -1.8327303233
## ZSCAN32 -1.8345694779
## EPHB1 -1.8347038191
## NR2C2 -1.8358875740
## IQCE -1.8360545696
## TMEM159 -1.8360762877
## GFUS -1.8378317268
## WNT10B -1.8382945362
## PSMD11 -1.8414389209
## UBN1 -1.8421235910
## FHL2 -1.8430505429
## RP9 -1.8436045104
## CSE1L -1.8443862219
## YY1 -1.8480710441
## ALMS1 -1.8492836994
## TBCK -1.8504154122
## HIBCH -1.8508360628
## RITA1 -1.8509179117
## ERCC3 -1.8520468521
## ANKFY1 -1.8532263444
## FKBPL -1.8538739904
## RPS28 -1.8556616263
## CD79A -1.8569556031
## AP3D1 -1.8574852807
## CDK5RAP1 -1.8578519526
## TRUB1 -1.8582578398
## CBX1 -1.8596926658
## TG -1.8597217497
## POLR3B -1.8612356584
## CNPY4 -1.8636672904
## SMIM19 -1.8638667408
## TRNT1 -1.8644944639
## NDUFS3 -1.8646681308
## RRP7A -1.8669025590
## TRANK1 -1.8685874086
## MGA -1.8691170016
## MBD1 -1.8701384252
## SSH3 -1.8712902209
## DOP1A -1.8740269963
## CD52 -1.8741672420
## ORAI1 -1.8771976638
## PAFAH1B3 -1.8772897288
## PHF3 -1.8778086794
## USP5 -1.8786051153
## AASS -1.8799049693
## ST6GALNAC6 -1.8800202391
## F13A1 -1.8800591699
## DNAJC9 -1.8803794207
## CHD8 -1.8806813285
## FAM3C -1.8823876062
## RFXANK -1.8825192152
## SHLD3 -1.8836213578
## FAHD1 -1.8855158937
## CUL2 -1.8855392803
## BFAR -1.8856980096
## TRAPPC2 -1.8879367228
## MSRB1 -1.8890648108
## ANAPC11 -1.8900304502
## RNF38 -1.8903925924
## ME3 -1.8916897088
## PYCR1 -1.8918045007
## C20orf27 -1.8966192818
## NCBP1 -1.8975930733
## CARMIL1 -1.8982968582
## GOPC -1.8986560560
## ETHE1 -1.8988621813
## STX2 -1.9007496093
## GADD45GIP1 -1.9014756898
## LZTS2 -1.9016228234
## UBE2K -1.9031204654
## NHP2 -1.9033963765
## TRIM68 -1.9038759287
## C1orf198 -1.9058862209
## PGAP1 -1.9071345504
## DMAC1 -1.9088553882
## MRPL54 -1.9101103507
## UQCR10 -1.9130667290
## NR2C2AP -1.9132287845
## PSMG2 -1.9135058101
## PTPA -1.9146542025
## NREP -1.9163591556
## MTA1 -1.9171386362
## FBXL6 -1.9178938833
## MFSD5 -1.9183847118
## LIME1 -1.9185735711
## FLCN -1.9191991888
## YWHAH -1.9211805809
## ZNF587 -1.9214153538
## BAG1 -1.9223511195
## ZFC3H1 -1.9230420976
## ZEB1 -1.9235058783
## THAP9 -1.9235744328
## VPS33A -1.9235936407
## YBEY -1.9257417541
## CS -1.9314156613
## COIL -1.9321500877
## C1orf109 -1.9325108728
## PER2 -1.9338555362
## TBCA -1.9347840319
## MRPL23 -1.9350004425
## IFIT5 -1.9354471051
## F12 -1.9354571743
## CMC2 -1.9361022573
## PAF1 -1.9367516804
## ARID2 -1.9382954874
## MPP6 -1.9391748926
## ATP6AP1 -1.9404453003
## H2BC5 -1.9425890094
## CASP7 -1.9437017512
## KCNA3 -1.9440339260
## TRPM2 -1.9490664439
## CUL4A -1.9494857248
## QSER1 -1.9523255498
## CTU2 -1.9542050354
## SAMD9L -1.9549763492
## RIC8A -1.9558363081
## MAPRE2 -1.9575828428
## NR1D1 -1.9580233364
## SMAP1 -1.9587388779
## DNAJC8 -1.9592252177
## CDKN1C -1.9632498822
## COMMD7 -1.9642729740
## ITPA -1.9644334759
## CUL1 -1.9647714068
## RNF144A -1.9648843055
## R3HDM1 -1.9661380570
## IDH1 -1.9673471085
## ANGEL2 -1.9677574269
## URGCP -1.9678690764
## ATG7 -1.9686802273
## SCFD2 -1.9697220071
## GLCCI1 -1.9723049697
## COPS9 -1.9729079462
## TMEM104 -1.9743512847
## RRAS -1.9752344802
## SMIM3 -1.9773100975
## BAZ2B -1.9779832647
## POLR3G -1.9793822554
## GPANK1 -1.9804528745
## SOCS5 -1.9807017337
## MPV17L -1.9807818873
## ZNF808 -1.9810000577
## NEXN -1.9815480541
## FAR2 -1.9820512204
## CDKN2D -1.9845347547
## PHETA2 -1.9856854065
## INTS13 -1.9864861693
## TMEM87A -1.9876482520
## UGDH -1.9883727783
## PNRC2 -1.9885442149
## TENT5A -1.9891393872
## U2AF1L5 -1.9892359223
## POLR3H -1.9895082634
## UQCRFS1 -1.9928735767
## SLC27A4 -1.9949247592
## MTMR4 -1.9951092541
## TRIM58 -1.9960511655
## MITF -1.9985848525
## UBC -1.9988589938
## KCTD13 -2.0003319907
## LCOR -2.0006621395
## TARDBP -2.0041215599
## KLHL25 -2.0067755048
## TMEM39A -2.0069975440
## FBXL19 -2.0099530706
## VPS37B -2.0106300040
## C6orf136 -2.0136563673
## NLE1 -2.0139241379
## VCPIP1 -2.0150569280
## RPSA -2.0165520697
## TRIM46 -2.0173045949
## FNDC3B -2.0182083701
## DCAF17 -2.0187985724
## TRMT13 -2.0205224092
## NCOA7 -2.0209248422
## DOCK7 -2.0212573196
## UBE4A -2.0221409140
## GATA3 -2.0226350999
## ERCC2 -2.0242924649
## EXOC2 -2.0252224245
## LRRC7 -2.0262625722
## TBCEL -2.0265502701
## HSD3B7 -2.0271737386
## GUCY1A1 -2.0272685255
## POU2F1 -2.0278528022
## HPS1 -2.0279935064
## GPATCH1 -2.0288819910
## CLOCK -2.0300732763
## ZNF684 -2.0327426309
## ZBTB20 -2.0334239575
## SKIV2L -2.0379873211
## WBP2 -2.0394373606
## CBX7 -2.0396338026
## NDUFB9 -2.0413059630
## UTP18 -2.0425834436
## ZNF468 -2.0429089527
## PTCD2 -2.0444459465
## GDPGP1 -2.0453054714
## AUP1 -2.0456941799
## MFNG -2.0465521699
## ZNF460 -2.0467004618
## CEP350 -2.0467987181
## SLC27A2 -2.0468012622
## MFSD6 -2.0485653423
## SIRT1 -2.0488325187
## PROCA1 -2.0498521873
## GEMIN6 -2.0511665252
## TMED7 -2.0540938238
## CNPPD1 -2.0543429496
## BEX2 -2.0568521383
## ZRANB3 -2.0599672234
## ACBD5 -2.0618461391
## SNTB2 -2.0624364233
## COG8 -2.0630675587
## ITCH -2.0632522765
## SRP54 -2.0643356024
## BLVRB -2.0658816900
## ITSN2 -2.0663611235
## DUSP7 -2.0669886767
## MCU -2.0680279340
## COPA -2.0687252450
## FGFR1 -2.0700426607
## VPS36 -2.0707644698
## CDYL -2.0719549833
## EPS8L2 -2.0723053661
## IFIH1 -2.0727707395
## RARA -2.0765135469
## TNFRSF25 -2.0769392348
## BCOR -2.0770564451
## INO80C -2.0804429081
## STT3B -2.0808974105
## VASP -2.0815944216
## BTG3 -2.0819493621
## ZNF791 -2.0823103139
## CUL5 -2.0823934123
## LMF1 -2.0830923920
## HCLS1 -2.0834252908
## CDK11B -2.0836103838
## SRSF9 -2.0867635505
## TMEM241 -2.0874157192
## TCERG1 -2.0880084180
## DGUOK -2.0917792399
## KCNC4 -2.0922190536
## OSBPL3 -2.0928073332
## LAMTOR1 -2.0929866059
## MRPL33 -2.0952329936
## GOLGA2 -2.0952814622
## RFXAP -2.0953850495
## ZKSCAN8 -2.0972282269
## LOC100421372 -2.1002789747
## KCND1 -2.1010524242
## RPS29 -2.1033527062
## GGT6 -2.1080539587
## SHISA4 -2.1097224023
## PRSS36 -2.1107837945
## B4GALT5 -2.1113710536
## NME4 -2.1131952042
## FTH1 -2.1140627778
## NDUFB10 -2.1170060737
## ARFGEF1 -2.1190041763
## EHMT2 -2.1196486850
## MED12 -2.1201798752
## FRMD8 -2.1202766047
## EIF2S1 -2.1219867316
## AARSD1 -2.1220585297
## PLCE1 -2.1239064846
## SUGP2 -2.1274580752
## DNM2 -2.1288147204
## FAM216A -2.1326683443
## SNN -2.1353703785
## CREG1 -2.1354203725
## COL8A2 -2.1390818099
## DUSP12 -2.1411018650
## CENPS -2.1424960354
## TMEM219 -2.1428810777
## ALAS1 -2.1434913857
## PPTC7 -2.1455806226
## REL -2.1457625848
## LAS1L -2.1463045385
## ULK1 -2.1525287925
## DHFR2 -2.1536369686
## NIPBL -2.1558542483
## ZBED4 -2.1572403889
## SUCLA2 -2.1607314874
## PIM2 -2.1610257310
## KRTCAP2 -2.1629467661
## MOB1B -2.1637454044
## TNK1 -2.1643737530
## GALNT7 -2.1651482335
## RIN3 -2.1658541916
## ZNF620 -2.1672151718
## KLF3 -2.1673953293
## RBL2 -2.1688453842
## DNM3 -2.1691503208
## TMPRSS13 -2.1699022301
## SLC25A20 -2.1711952908
## MYC -2.1721503750
## FBXW8 -2.1723246832
## ALYREF -2.1747828742
## RBM18 -2.1751884558
## KPNA5 -2.1755404412
## VTI1A -2.1765359302
## PDAP1 -2.1769964852
## INO80 -2.1773678472
## ESCO1 -2.1778213285
## NBPF3 -2.1787486152
## NDUFS6 -2.1791724682
## PIGBOS1 -2.1809704873
## ZNF318 -2.1831417845
## AIDA -2.1833747491
## ACSS2 -2.1846560148
## SYTL4 -2.1882896618
## EFCAB11 -2.1887035529
## MTIF3 -2.1887591331
## FAM185A -2.1891423377
## ABHD14A -2.1897978540
## DIP2A -2.1911791658
## C12orf4 -2.1917872138
## XPA -2.1942772362
## NUP85 -2.1945741832
## ARHGAP18 -2.1958271517
## PIGF -2.1967424381
## STIM1 -2.1988637227
## NPIPB11 -2.1995924260
## ATXN7L3B -2.1997123323
## BICRAL -2.2007701198
## AVL9 -2.2025663613
## MTHFD1L -2.2029979548
## SERTAD1 -2.2031993932
## DRAM2 -2.2033830502
## AKAP9 -2.2036595854
## ZNF639 -2.2042726428
## FBXL4 -2.2069922291
## RBMXL1 -2.2086938481
## CBLL1 -2.2091032484
## IFNLR1 -2.2112650627
## ALDH6A1 -2.2123208510
## RTN2 -2.2127644666
## ZNF324B -2.2141951092
## PPP2R5C -2.2155132102
## MAPK13 -2.2155566289
## ITPRIPL2 -2.2161610501
## PCYT2 -2.2162100985
## ZDHHC17 -2.2164030957
## FBF1 -2.2185824354
## AK9 -2.2201558890
## PEA15 -2.2212742188
## GLT8D1 -2.2217069871
## CPEB3 -2.2230615872
## MLYCD -2.2236292851
## PDK1 -2.2251429517
## TIMM44 -2.2260506102
## ARHGEF6 -2.2274553022
## CHST14 -2.2278366255
## MDM1 -2.2301272888
## TBC1D13 -2.2301444334
## TMEM256 -2.2310286811
## RPL41 -2.2311456278
## XPO4 -2.2324384891
## HIP1R -2.2325414945
## UGGT1 -2.2329498830
## RANBP9 -2.2331891922
## SLC17A5 -2.2347308096
## TMEM79 -2.2371112847
## HIPK2 -2.2378687441
## CLUH -2.2403735037
## PTTG1 -2.2404232032
## TMEM80 -2.2434599429
## GPRC5C -2.2456655501
## CPEB2 -2.2461698952
## DTNBP1 -2.2467408491
## KDELR1 -2.2487414715
## TST -2.2500404092
## INPP5B -2.2506737578
## RMND5B -2.2537600463
## HSD17B7 -2.2538051788
## ZFP69B -2.2547238015
## SHKBP1 -2.2554621763
## GPR137B -2.2554624307
## AGK -2.2560675904
## NWD1 -2.2575758767
## INTU -2.2587361650
## TIMMDC1 -2.2598012320
## OXR1 -2.2612005779
## UBE2E2 -2.2621128691
## RPN1 -2.2642608101
## SNAI3 -2.2648931488
## NCF1 -2.2649507862
## WWC2 -2.2653986766
## EIF5A2 -2.2657652541
## ATMIN -2.2658653320
## CGGBP1 -2.2671211817
## BOD1L1 -2.2695443607
## PHIP -2.2712522476
## CSRNP2 -2.2724453878
## GABPB2 -2.2757618428
## KLHDC4 -2.2761845542
## TTI1 -2.2796957500
## ISOC1 -2.2798219494
## LNX2 -2.2807155385
## TAX1BP3 -2.2846394793
## PLAG1 -2.2850035859
## PTX3 -2.2858239284
## ST8SIA6 -2.2862963025
## PHKB -2.2863958541
## OSM -2.2871516970
## IMPA1 -2.2882047191
## MYO9A -2.2922921312
## SACS -2.2928955199
## LOXHD1 -2.2953147897
## UGT8 -2.2953767448
## MARS2 -2.2960193655
## AGTRAP -2.2966227068
## AP1M2 -2.2975803687
## PLEKHJ1 -2.2987098280
## NDFIP2 -2.2990635879
## NEK7 -2.3000828308
## RBBP7 -2.3004737436
## LUZP1 -2.3006578617
## FUS -2.3019785396
## ZNF212 -2.3046998727
## GAPDH -2.3070682919
## XBP1 -2.3086372875
## H2BC4 -2.3088492111
## IL12RB2 -2.3093538182
## FLOT1 -2.3131083502
## CCR7 -2.3146763414
## LYSMD3 -2.3166939141
## CAPN7 -2.3172461036
## DNAJC10 -2.3179991383
## PPP1R8 -2.3181432774
## SEC24A -2.3186763049
## AKAP10 -2.3208241934
## PLCB2 -2.3215006770
## UBL5 -2.3235112895
## NDUFB2 -2.3243111513
## AGAP5 -2.3246320686
## YPEL2 -2.3256194086
## DNAJC18 -2.3263002832
## RTRAF -2.3274607503
## DUSP22 -2.3285968957
## FLT1 -2.3293754330
## SMC1A -2.3300485291
## MSI2 -2.3300650354
## XAF1 -2.3312382801
## DIP2B -2.3318214132
## GNGT2 -2.3346646755
## DHX38 -2.3374848052
## RBM41 -2.3379490819
## GNL3 -2.3401915650
## ELMO3 -2.3403368449
## FBXO10 -2.3422076986
## SNRK -2.3428068805
## CTCF -2.3438208877
## TTLL1 -2.3442903777
## SEMA4B -2.3447241846
## DPY19L4 -2.3458089726
## SLC22A15 -2.3464096413
## GCDH -2.3465180218
## NPIPA8 -2.3480496703
## ZNF568 -2.3493298249
## DHX40 -2.3496562864
## GALNT2 -2.3512360573
## TSPYL4 -2.3513113449
## YIPF3 -2.3513159716
## ATF1 -2.3520970907
## EPAS1 -2.3521230426
## ZCCHC4 -2.3543682182
## NEMF -2.3544291102
## TARBP2 -2.3565269984
## HDAC5 -2.3565515879
## CEMP1 -2.3570445971
## BTRC -2.3576318252
## TBC1D2 -2.3586998343
## PSPH -2.3589586735
## MED19 -2.3600125008
## RRS1 -2.3602171987
## LCMT1 -2.3617543686
## TAP2 -2.3629896689
## C11orf68 -2.3638934784
## CCDC186 -2.3640727394
## IL21R -2.3643282648
## RREB1 -2.3647100252
## DNPEP -2.3676987860
## ANO5 -2.3698594072
## PIF1 -2.3712530038
## CATSPERG -2.3722701251
## MTRNR2L10 -2.3727409627
## GRB14 -2.3736741970
## TNFSF4 -2.3738095884
## LAT -2.3755131741
## FAM32A -2.3767717522
## APAF1 -2.3794185260
## CPED1 -2.3802850896
## TMEM94 -2.3808042258
## CLN6 -2.3813316950
## NUFIP2 -2.3828751083
## GALT -2.3837129665
## P2RX4 -2.3847322655
## PI4KB -2.3893684795
## LRRC40 -2.3905655465
## MAEA -2.3909086521
## BMP1 -2.3917457394
## PSMC2 -2.3932961826
## PARD6A -2.3962724317
## GABBR1 -2.3968911297
## MAP2K7 -2.3973311058
## NPLOC4 -2.3979767363
## ALDOC -2.3983397441
## GPATCH11 -2.3984283126
## NOB1 -2.3990715969
## CEP85 -2.3994589238
## TRAPPC11 -2.4046561725
## RNF40 -2.4072969484
## TIMM23B -2.4103149344
## MAB21L3 -2.4110569957
## USP14 -2.4111769959
## TMEM204 -2.4158429901
## INTS8 -2.4172014368
## RPP25 -2.4176261896
## FARP1 -2.4200369419
## ATP6V0A2 -2.4215403891
## ZBTB2 -2.4246733577
## TRIM65 -2.4248036228
## MEI1 -2.4249026896
## MPDU1 -2.4284748262
## SCML2 -2.4290199992
## GTF2H2C -2.4317576993
## ZNF280D -2.4343826227
## AFF2 -2.4355054437
## KIDINS220 -2.4356316559
## CALHM2 -2.4369684224
## ARG2 -2.4398015813
## SPATA33 -2.4401218720
## RNF31 -2.4415601677
## RFFL -2.4419194875
## L3MBTL4 -2.4425095043
## CRYM -2.4426320476
## SCYL3 -2.4427898543
## CBFA2T3 -2.4431743438
## RHBDD1 -2.4451627937
## DNAJC5 -2.4467753185
## MAP6D1 -2.4476010969
## NDUFB8 -2.4477847828
## KDM5B -2.4488196466
## GPLD1 -2.4502946486
## SEC23B -2.4532327403
## RAD54L2 -2.4551686856
## BNIPL -2.4558877949
## OAS1 -2.4570717096
## CNTLN -2.4603691378
## ZNF783 -2.4614824693
## FN3K -2.4618384954
## PM20D2 -2.4621431716
## PARD6G -2.4625468038
## ARPC3 -2.4640547885
## ENOPH1 -2.4641168830
## TTYH2 -2.4643295948
## ANXA9 -2.4702797499
## MTREX -2.4735292135
## SLC39A6 -2.4737201806
## DOLK -2.4743703082
## ZNF576 -2.4754262953
## WDR82 -2.4764114988
## PUS7 -2.4786805017
## PRDX5 -2.4789496463
## ELOVL1 -2.4791853643
## TNFRSF1A -2.4798300736
## JARID2 -2.4799957672
## TK1 -2.4803208080
## ERBIN -2.4805167543
## NOL8 -2.4812618296
## ZW10 -2.4819903161
## HMGN3 -2.4827400847
## SNRNP48 -2.4842765989
## COX19 -2.4849664278
## UPF2 -2.4857299899
## CYSLTR1 -2.4871010988
## SCRN3 -2.4883510658
## KMT2A -2.4884299803
## BIVM -2.4897475069
## SEPTIN1 -2.4913498675
## NCBP2AS2 -2.4917523874
## PWWP2A -2.4929738880
## LGALS9 -2.4953615990
## LMNA -2.4969101055
## OGA -2.4971298078
## SSPN -2.4976737832
## PTPN12 -2.4990351133
## FOXN2 -2.5012604837
## C19orf47 -2.5027828128
## SOCS7 -2.5029679184
## SPTBN5 -2.5031803856
## ATAD3A -2.5042240140
## NSDHL -2.5053201554
## TRAPPC8 -2.5060779646
## ZNF512B -2.5072097121
## KDM7A -2.5072565724
## CCDC86 -2.5083993115
## DCXR -2.5102942335
## GEMIN5 -2.5106692650
## REST -2.5118291030
## MAD1L1 -2.5122385916
## OPLAH -2.5160066770
## RPRD1B -2.5163433896
## NBN -2.5173762627
## STAT2 -2.5181802588
## DNAJB14 -2.5207739786
## RAD21 -2.5209843877
## CDR2 -2.5224600926
## BICRA -2.5247064992
## KDM1B -2.5270787743
## SNAP47 -2.5279631855
## HSD17B8 -2.5290971474
## GOLPH3L -2.5308758178
## OAS2 -2.5316530855
## TRAPPC2L -2.5322137995
## VEZT -2.5328952039
## PEF1 -2.5338960836
## MYO1A -2.5381356226
## SNRPA -2.5383877253
## GCLC -2.5404256170
## AHI1 -2.5409054778
## GALM -2.5416116231
## GFI1 -2.5417069316
## PECAM1 -2.5425112770
## SCAF11 -2.5444072095
## SAMM50 -2.5444813033
## CMPK2 -2.5464962975
## NEGR1 -2.5466953196
## ROM1 -2.5468097997
## SMDT1 -2.5471903643
## AZIN2 -2.5481206623
## FNIP2 -2.5487340273
## ANKRD12 -2.5491842691
## UTP20 -2.5503744549
## MRPL2 -2.5508027679
## ITM2C -2.5518461042
## NPFF -2.5531146394
## PRR11 -2.5532578032
## ADSS2 -2.5542747637
## PRMT7 -2.5552605493
## CMAS -2.5557318413
## BAP1 -2.5563987413
## SREK1 -2.5570010621
## EFNA3 -2.5572129717
## DNAJC15 -2.5580915698
## BBS7 -2.5591540144
## ZFX -2.5653238803
## PPP1R12B -2.5653266518
## ALS2 -2.5686099055
## TMEM62 -2.5692145581
## PLK2 -2.5693045130
## APPL1 -2.5715733720
## SMIM7 -2.5758730640
## POP7 -2.5764063958
## ACP1 -2.5776879121
## GSTO1 -2.5786020317
## CAT -2.5787951234
## TNFRSF10A -2.5798130943
## NME2 -2.5814223321
## AASDHPPT -2.5840700462
## FUT11 -2.5845481928
## MTLN -2.5877854169
## KATNA1 -2.5952316556
## POLD2 -2.5958586722
## SLC35A4 -2.5968648459
## ZNF510 -2.5969542029
## MTERF2 -2.5976927326
## ACOT11 -2.5999768845
## TLE3 -2.6002013380
## GUCY1B1 -2.6047483612
## PHLPP2 -2.6050709108
## LIN37 -2.6052384916
## SPSB2 -2.6056028903
## CPLANE1 -2.6061546761
## WHAMM -2.6076893686
## SLC26A8 -2.6081339610
## CCNY -2.6094628880
## ELP5 -2.6099362061
## RIMS3 -2.6139514337
## USP3 -2.6140622607
## DTWD2 -2.6151052313
## PMPCA -2.6157892759
## C11orf98 -2.6165650952
## WDR44 -2.6213031590
## SARNP -2.6221553926
## YWHAQ -2.6222610724
## SPOUT1 -2.6226816862
## METTL3 -2.6245557553
## TRIM38 -2.6269262779
## SECISBP2 -2.6288709003
## SPTY2D1 -2.6292032806
## IFI27 -2.6292795211
## ZBTB44 -2.6311078473
## MRPS25 -2.6316843400
## SCO1 -2.6342658300
## ZC3H13 -2.6345361610
## CDK3 -2.6352140673
## SLC25A17 -2.6352672258
## ZNF346 -2.6371906412
## THUMPD3 -2.6385382465
## PRKAB2 -2.6414320143
## PSMC3IP -2.6416144707
## LRFN1 -2.6418802248
## MYCL -2.6432664152
## C21orf91 -2.6454186519
## BTBD3 -2.6498716591
## IBTK -2.6515304763
## BCL3 -2.6528774430
## IFI44 -2.6536473893
## NFKBIB -2.6537216007
## TMX3 -2.6540338922
## NFE2 -2.6544694406
## HEXD -2.6547666756
## BET1L -2.6566757382
## MVK -2.6569803524
## MED10 -2.6576627304
## VAMP2 -2.6581184065
## CEP120 -2.6583416856
## AHCTF1 -2.6586219689
## HMGCR -2.6586690784
## KCNMB3 -2.6591560993
## EBPL -2.6594247529
## ZFP64 -2.6597587704
## CDK13 -2.6599365841
## IFI27L1 -2.6604573319
## MIS18BP1 -2.6607119483
## PARP8 -2.6608480901
## MRPS11 -2.6640826054
## TTN -2.6646600167
## KLC1 -2.6651190849
## ZNF257 -2.6663790672
## PTGS1 -2.6667752507
## GOLGA3 -2.6677507885
## KDM4A -2.6677651281
## IL23A -2.6699133434
## PRKAA1 -2.6703436673
## ZNRF1 -2.6713623140
## RPL34 -2.6715046926
## CCDC9B -2.6739738131
## ZFYVE28 -2.6797184267
## GTF2E1 -2.6805980923
## PRPSAP1 -2.6816081616
## ALG8 -2.6825810978
## SASH3 -2.6829199549
## MRM2 -2.6851511887
## SCCPDH -2.6851579170
## USP45 -2.6859108037
## PSD4 -2.6859598013
## DDX58 -2.6878069251
## ABCA13 -2.6890539682
## ITPR2 -2.6895283724
## KDM6A -2.6900388530
## GSN -2.6905779916
## SSR2 -2.6913628931
## DCP1A -2.6914560452
## PAN3 -2.6924775629
## IARS2 -2.6935180467
## APC -2.6960425603
## HSD17B4 -2.6962969924
## COPB1 -2.6967191949
## ATF5 -2.6984128918
## CPNE3 -2.6984245657
## SLAMF7 -2.6992375806
## AGFG2 -2.7020656556
## ZZEF1 -2.7025028877
## PIN4 -2.7034276835
## TSR2 -2.7053562429
## FDX2 -2.7057018678
## ZDHHC19 -2.7082640261
## RFX2 -2.7083762771
## FUBP1 -2.7088915763
## IRF5 -2.7096177535
## ANKRD39 -2.7103887548
## SULT1A3 -2.7117976929
## ADCY7 -2.7124033229
## SMCR8 -2.7137030254
## FAM76B -2.7142065956
## EPHB4 -2.7147639960
## SP140 -2.7165653429
## S100A11 -2.7190599749
## CLIP4 -2.7203523419
## PCDHA4 -2.7216684126
## FLYWCH1 -2.7221373830
## NFYA -2.7232230879
## CFDP1 -2.7238332556
## C6orf120 -2.7244890037
## ADD3 -2.7256625810
## GPD1L -2.7283617350
## R3HDM2 -2.7285129591
## COMTD1 -2.7291635866
## PEX1 -2.7301417870
## RSAD1 -2.7307194592
## KLHDC10 -2.7307337286
## MTHFD2 -2.7317994050
## PNPT1 -2.7320526059
## EIF3I -2.7328523142
## KIF13B -2.7329919812
## RPS13 -2.7340411074
## PCYOX1 -2.7349154897
## BTBD6 -2.7360218811
## ZDHHC2 -2.7383148807
## ADRB2 -2.7401846393
## PPP1R21 -2.7414469865
## TRRAP -2.7425249769
## RSKR -2.7436175666
## INTS10 -2.7464339349
## SPEN -2.7472164458
## TSPAN17 -2.7472997072
## ZAP70 -2.7526478182
## KLC4 -2.7547153227
## ODR4 -2.7553180103
## CPSF1 -2.7618713169
## CENPQ -2.7622642125
## CCNJ -2.7648500564
## VOPP1 -2.7651914019
## GDPD5 -2.7659942132
## UBXN4 -2.7666630944
## ATP8B3 -2.7672318182
## RSPRY1 -2.7679201383
## ARHGAP30 -2.7684132277
## PPM1G -2.7689205594
## TMEM154 -2.7709342562
## UBALD2 -2.7714717335
## TMEM18 -2.7718749200
## UFL1 -2.7730064629
## CDC73 -2.7733852744
## BTBD7 -2.7734245249
## RNPEP -2.7759015483
## ZNF276 -2.7761542008
## MED21 -2.7766930756
## UXS1 -2.7773779456
## SCAF4 -2.7781175376
## ELAVL1 -2.7796218964
## CEACAM6 -2.7806221160
## MR1 -2.7830079044
## RPRD1A -2.7848214859
## NT5C3B -2.7848296776
## CCAR1 -2.7850646967
## MAGI3 -2.7856527814
## C7orf26 -2.7858521319
## KLF6 -2.7859308309
## ZNF383 -2.7860827304
## TDRKH -2.7860957229
## IGFBP4 -2.7868822086
## ABCG1 -2.7877965094
## KHK -2.7902963626
## MTMR1 -2.7904218984
## STRN3 -2.7918903798
## ZDHHC13 -2.7921443499
## MTMR11 -2.7925546098
## LILRB5 -2.7935846511
## OAS3 -2.7936750241
## ENPP4 -2.7938871500
## RCHY1 -2.7940975845
## ENTR1 -2.7943662195
## PRKD2 -2.7967589236
## DDX19B -2.7969201050
## TNPO2 -2.7977798886
## USP32 -2.7990672934
## HSPA4L -2.7991492285
## ARMH1 -2.7998627652
## HDDC2 -2.7999135177
## NSA2 -2.8020152835
## TAGAP -2.8022603896
## MEGF9 -2.8035267339
## WBP1L -2.8049709344
## LEMD3 -2.8072371601
## NIBAN3 -2.8080632383
## ZNRD2 -2.8109053554
## FHL1 -2.8117184289
## RAF1 -2.8129172335
## AKAP5 -2.8140759576
## IFI44L -2.8148578076
## PTMA -2.8179036690
## SLC35A1 -2.8179792346
## MED14 -2.8188483938
## CD79B -2.8189891496
## XRRA1 -2.8213062808
## PROSER3 -2.8214314505
## FRMD4A -2.8219849253
## GGT7 -2.8224784450
## RAB43 -2.8247826339
## TAP1 -2.8253167476
## MED27 -2.8258448392
## ABCC2 -2.8272549521
## MAZ -2.8280114757
## TMOD2 -2.8284856790
## RWDD2B -2.8286871617
## SRRM1 -2.8299668129
## GTF2F2 -2.8325234546
## INPP5D -2.8338204145
## UBQLN4 -2.8339965578
## MRM3 -2.8350297491
## SLC25A51 -2.8362347414
## CCDC84 -2.8380204934
## ENO3 -2.8416219076
## PDLIM5 -2.8416543841
## TDRD7 -2.8430037853
## SLX4IP -2.8430690929
## GPRIN1 -2.8430879824
## AP5M1 -2.8442126816
## MORN3 -2.8458673466
## ERCC8 -2.8472231022
## LYRM4 -2.8477415121
## TMEM135 -2.8478515610
## SECISBP2L -2.8484543102
## IFIT2 -2.8486458126
## AMD1 -2.8503166572
## LONP2 -2.8503812116
## BTBD1 -2.8510802824
## CA13 -2.8535752583
## DHX30 -2.8536687695
## CENPC -2.8537278559
## GOT1 -2.8545229774
## SLC44A2 -2.8564370918
## DHX9 -2.8583527773
## SEPTIN7 -2.8612188522
## GABPA -2.8632108322
## RPUSD3 -2.8634059178
## PNMA3 -2.8644957469
## CA11 -2.8652843089
## ETV3 -2.8688608478
## COLEC12 -2.8690551632
## MRPS2 -2.8697412229
## PTPMT1 -2.8712627891
## URB2 -2.8717118230
## TRAFD1 -2.8738438543
## MTMR6 -2.8739570408
## EEF2KMT -2.8746287089
## S1PR3 -2.8755648267
## FAHD2B -2.8759149881
## UHRF1BP1L -2.8779438179
## ZNF224 -2.8781748490
## NAA50 -2.8783472706
## LILRB1 -2.8793930234
## SLC4A7 -2.8799003282
## MFSD4B -2.8814283947
## CANX -2.8825036406
## ARNT -2.8829501030
## CENPO -2.8831010084
## C7orf31 -2.8834642716
## MAN2A2 -2.8836675966
## H1-10 -2.8842750881
## HCST -2.8853847522
## PARD3 -2.8855205591
## PTGIR -2.8879958284
## GCC1 -2.8903224810
## DPH3P1 -2.8912848690
## AP3M1 -2.8927042476
## MAP3K10 -2.8947802552
## PRR12 -2.8948656044
## CASR -2.8969057960
## NXPE3 -2.8970656399
## C1QA -2.8973934764
## FTO -2.8987335529
## SETDB2 -2.8990749948
## POLR2H -2.9001286140
## ZNF609 -2.9004986933
## SRSF4 -2.9005783686
## BBS12 -2.9015624989
## PDIA6 -2.9034915488
## RNGTT -2.9052238150
## THYN1 -2.9063352676
## MOB2 -2.9073697182
## NAP1L5 -2.9084381336
## SPC24 -2.9105347967
## DNAH1 -2.9107032422
## SMU1 -2.9118874155
## DAZAP1 -2.9130938763
## ZNF654 -2.9143456383
## SETD6 -2.9153849975
## SLC9A6 -2.9165196946
## ELOA -2.9169760768
## PCK2 -2.9172391202
## ALKBH5 -2.9184436128
## IFIT3 -2.9201031036
## NFS1 -2.9201207728
## NRBP1 -2.9206466006
## ALG12 -2.9212394803
## LRG1 -2.9221783911
## NOLC1 -2.9237770187
## ZSCAN9 -2.9308371065
## EID2B -2.9322313891
## PERP -2.9325602328
## CBX6 -2.9325655816
## AKR1A1 -2.9344368689
## EIF3B -2.9345727400
## SHPRH -2.9349013931
## TMEM223 -2.9357087034
## FUT4 -2.9357134476
## SNRNP200 -2.9361480762
## PNISR -2.9375371575
## TOPORS -2.9383407707
## USP47 -2.9390478309
## CHRNE -2.9391022211
## LPP -2.9396453928
## WIPI2 -2.9399664452
## EMD -2.9404056975
## AKAP13 -2.9426637579
## ING3 -2.9437595795
## ZNF518A -2.9444313500
## ZBTB41 -2.9456869151
## COPB2 -2.9458540827
## PBDC1 -2.9471456552
## NT5C3A -2.9471946321
## PRMT1 -2.9482738682
## MBD5 -2.9484913138
## ENDOD1 -2.9487243447
## ST13 -2.9503278040
## SIAE -2.9519085289
## RALGAPA1 -2.9525470030
## SYNCRIP -2.9527715936
## ZMYND19 -2.9556824808
## ACVRL1 -2.9560737007
## SLC16A7 -2.9580536600
## FCRLB -2.9591259526
## TNRC6A -2.9594137483
## GBP4 -2.9599215761
## PRPSAP2 -2.9605216532
## TRDMT1 -2.9640968650
## ITGA9 -2.9664181545
## LOC100133315 -2.9687405697
## POLR2M -2.9699257308
## ATF2 -2.9702080627
## ZNF777 -2.9704963311
## GRINA -2.9740888837
## AKAP11 -2.9752984156
## FCGR3A -2.9755381732
## FRY -2.9759922668
## MSMO1 -2.9760574149
## PRKCB -2.9766201010
## MTIF2 -2.9769222377
## GPR107 -2.9779373926
## MOGS -2.9816716546
## ZCCHC14 -2.9826651500
## MON1A -2.9827077381
## TACO1 -2.9846668618
## HYPK -2.9849687503
## TAPBPL -2.9852062808
## VPS16 -2.9898461677
## ZSCAN30 -2.9910238713
## CEACAM8 -2.9915918137
## PRKAG2 -2.9916664174
## CD3E -2.9937983916
## GBP3 -2.9938947270
## FAM91A1 -2.9945624984
## ATP13A1 -2.9963638473
## NAA25 -2.9982953775
## STK39 -2.9994046148
## CD164 -2.9998120768
## ZNF175 -3.0008737966
## FBXO45 -3.0011935784
## TMED10 -3.0028891144
## PRPS1 -3.0039851443
## KDM3B -3.0048401067
## HIKESHI -3.0083732434
## RBM12B -3.0092140265
## FANCE -3.0093613816
## C12orf45 -3.0097879987
## GRPEL2 -3.0107173406
## PHF20L1 -3.0112775756
## ORAI2 -3.0123992875
## LYPLAL1 -3.0137497274
## SYK -3.0143989655
## TNRC6B -3.0146987078
## C22orf34 -3.0164473300
## CMTR1 -3.0180697156
## ATG16L1 -3.0182491253
## APOOL -3.0240579641
## TBC1D23 -3.0243422123
## HNRNPA0 -3.0245861062
## HDLBP -3.0246136711
## GNG7 -3.0255440335
## GLB1 -3.0257578729
## ABCC6 -3.0264195154
## SCRN1 -3.0270126165
## NDUFA8 -3.0271962410
## KRIT1 -3.0274445970
## RUSF1 -3.0306404033
## STXBP5 -3.0309932355
## MYH10 -3.0329843551
## PIAS3 -3.0331177370
## FAM104B -3.0348375521
## GPN2 -3.0356256992
## SPATS2L -3.0362892869
## EGFL8 -3.0363127918
## ARMC1 -3.0370327388
## ZNF146 -3.0372946129
## DUS2 -3.0374436369
## AFAP1L2 -3.0382095212
## ITGB3 -3.0403159056
## CTSD -3.0408138454
## TMEM69 -3.0414990627
## MAP4K3 -3.0433097664
## INTS6L -3.0445772780
## TEX22 -3.0454452803
## TM7SF2 -3.0477124446
## BACH1 -3.0498036099
## RCL1 -3.0519722465
## SLC30A5 -3.0527526027
## RRP12 -3.0529849370
## FAM83H -3.0530582061
## PLP2 -3.0537791277
## RAB19 -3.0539191883
## CKB -3.0571338885
## ATP6V0A1 -3.0577127849
## TBPL1 -3.0584105471
## MOCS2 -3.0592761188
## ARID4B -3.0598690065
## DOCK4 -3.0609874456
## ZGLP1 -3.0616991146
## AMFR -3.0620097986
## INTS6 -3.0626098754
## SNX27 -3.0628075497
## SUSD1 -3.0630341939
## NUP153 -3.0631979112
## GSS -3.0633360414
## PRDM2 -3.0666603709
## MAPK6 -3.0694531116
## RRP1 -3.0702899476
## PTPN22 -3.0709367602
## PTER -3.0722980089
## ARSK -3.0744025756
## VAMP4 -3.0756533021
## EXTL2 -3.0767593695
## SLTM -3.0776254389
## FGF11 -3.0777465036
## PLEKHB1 -3.0778082279
## SKAP1 -3.0791881473
## SLC26A11 -3.0807706942
## RAB39B -3.0818533604
## ATP5PO -3.0843820124
## GID4 -3.0860000984
## NOM1 -3.0892217090
## ALKBH3 -3.0914747871
## TAF5L -3.0939978235
## RHOT1 -3.0946559038
## DEXI -3.0951889687
## CEP57 -3.0952585737
## MINK1 -3.0969552833
## SNRPB2 -3.0977326676
## QRSL1 -3.0978765921
## SPAG16 -3.0997943194
## SCAMP3 -3.1000473263
## MKNK2 -3.1022686237
## PRTFDC1 -3.1031670655
## RAB11A -3.1051314406
## PRPF40A -3.1058252180
## MPHOSPH8 -3.1086912736
## EEF1E1 -3.1087421193
## FBXO22 -3.1098490021
## SLC35E4 -3.1106618387
## IMP3 -3.1114060009
## HDAC9 -3.1115960357
## ATP8B4 -3.1122483739
## DDX46 -3.1122577180
## BBOF1 -3.1126753989
## CBFB -3.1152662485
## PPT1 -3.1170611868
## MEN1 -3.1184046357
## NOD2 -3.1185828026
## CPEB4 -3.1188228366
## STK17B -3.1214579823
## GRK5 -3.1226054040
## DDX21 -3.1229263071
## TMEM109 -3.1254702014
## PIAS4 -3.1265241546
## ATP5F1E -3.1277733579
## SAMD8 -3.1288140800
## TNFRSF9 -3.1290092562
## NDUFAF2 -3.1292119944
## NOTCH2 -3.1299407487
## ZNF493 -3.1300479826
## CASD1 -3.1309039364
## ZFP69 -3.1322570370
## PARK7 -3.1329929990
## NPHP4 -3.1330823937
## CYFIP2 -3.1363160039
## CACNA1I -3.1365342360
## VSIG10 -3.1392209068
## CISD1 -3.1395929244
## DDX56 -3.1402066527
## WDR43 -3.1414810022
## RNF168 -3.1444161554
## DICER1 -3.1467349087
## TMC8 -3.1479962695
## PSME3 -3.1483025889
## S100A9 -3.1492116919
## TADA1 -3.1493006488
## GRN -3.1499588836
## LIG3 -3.1506479175
## NUDT18 -3.1535761137
## PELI2 -3.1541208020
## ARPP19 -3.1546828890
## ZNF506 -3.1581602391
## SP100 -3.1593374878
## ARL1 -3.1599332610
## CTU1 -3.1601856211
## ZNF799 -3.1609241120
## KMT2D -3.1609657782
## TAB2 -3.1614765631
## MRPL45 -3.1615750171
## SIDT1 -3.1617198096
## SYNM -3.1617624556
## CCT2 -3.1626257138
## MZT2A -3.1629650196
## CORO2A -3.1642145673
## ANXA2 -3.1666339103
## TMEM44 -3.1672104982
## TMED2 -3.1681895357
## SIPA1L1 -3.1688743896
## GATAD2B -3.1689069741
## RBAK -3.1689605993
## CDKN3 -3.1695794326
## MARF1 -3.1701528225
## NME7 -3.1713104988
## UBAP2 -3.1720998293
## KAT2A -3.1743115975
## NDUFA1 -3.1747520443
## SLC11A2 -3.1750545630
## SRFBP1 -3.1756877833
## ABRAXAS1 -3.1758672887
## CLTCL1 -3.1790310217
## FGFR1OP2 -3.1792665108
## RBM25 -3.1851586037
## SUCLG1 -3.1860716125
## DSTYK -3.1887117515
## CANT1 -3.1887288721
## TVP23B -3.1891996271
## GNPNAT1 -3.1899494365
## DERA -3.1906125749
## RESF1 -3.1928279366
## IMP4 -3.1958712122
## FICD -3.1959435552
## ZNF615 -3.1962722984
## BCL2L15 -3.1971493207
## ATP6AP2 -3.1973698553
## ORC4 -3.1974610857
## TOR1B -3.1980883307
## ADD1 -3.1981343109
## CLEC2D -3.1985968402
## TENT4B -3.2015558775
## CABLES2 -3.2021963683
## MAP3K2 -3.2046677022
## RTN1 -3.2047156679
## ZNF697 -3.2070015733
## PIGB -3.2088013677
## CCP110 -3.2090820544
## MTURN -3.2104053231
## UBE2D4 -3.2107599953
## BLOC1S1 -3.2108792198
## ANAPC7 -3.2146513804
## AFF1 -3.2148486159
## VPS26C -3.2152768731
## YAE1 -3.2156757014
## TRAF3IP1 -3.2161287961
## WDR54 -3.2171354148
## ZDHHC5 -3.2180337462
## RCCD1 -3.2181245224
## EMG1 -3.2214461251
## ZNF45 -3.2220550405
## FAM228B -3.2229743815
## POGK -3.2232727299
## CIAO2B -3.2236450296
## TIMM8B -3.2258811904
## TBC1D25 -3.2282490888
## REC8 -3.2283096708
## BOLA2B -3.2284494944
## POLD1 -3.2284688193
## NT5DC3 -3.2310549275
## PCBP3 -3.2313047370
## IFIT1 -3.2319991858
## GLE1 -3.2330034750
## SPNS3 -3.2332055296
## TFRC -3.2350972280
## UBQLN1 -3.2368958958
## SPATA5L1 -3.2373547675
## TRIP12 -3.2375551500
## GLO1 -3.2377845683
## SLC35C2 -3.2381015150
## RFTN1 -3.2381189905
## RAC2 -3.2381531293
## EXOSC4 -3.2394647185
## DBI -3.2397447586
## B4GALT4 -3.2399845800
## TPP1 -3.2402357972
## LDLRAD3 -3.2425425828
## SNRPB -3.2429973090
## COX6A1 -3.2433308777
## ACAP2 -3.2440750799
## PDE3A -3.2445570939
## LRRC14 -3.2447269360
## SPRTN -3.2451507253
## FFAR3 -3.2452472620
## POLR3A -3.2457251095
## SMUG1 -3.2459438034
## NIPA2 -3.2470458951
## FKBP11 -3.2480459963
## SDR42E1 -3.2495771633
## ABCB7 -3.2497293444
## ARHGEF18 -3.2500712880
## TOR1AIP2 -3.2509755648
## ECPAS -3.2515326202
## SPAG9 -3.2521026067
## BLNK -3.2541211080
## PTP4A1 -3.2546667390
## MTMR12 -3.2567271398
## RNF7 -3.2569318706
## DDX60L -3.2576499855
## CMC1 -3.2585763658
## ZNF888 -3.2590377207
## ZNF670 -3.2592022352
## RTTN -3.2618643809
## PHPT1 -3.2618659762
## DENR -3.2622063438
## FAM168A -3.2626140296
## CDK20 -3.2634575751
## POLR1B -3.2640277566
## MRGBP -3.2660192391
## MDM2 -3.2665324194
## TAF1D -3.2666615650
## RNF220 -3.2678028594
## PDIA4 -3.2687015952
## AP1G1 -3.2723360423
## TM9SF3 -3.2726574231
## RAB11FIP4 -3.2733472454
## SLFN14 -3.2741747872
## UBE4B -3.2751154845
## CHST7 -3.2755153225
## GPRIN3 -3.2758011247
## ZNF275 -3.2758552756
## YWHAG -3.2765986862
## TRAPPC4 -3.2781897311
## MMP19 -3.2784477300
## CHUK -3.2798137413
## SCAF8 -3.2830836605
## CD3D -3.2834826349
## TBL1XR1 -3.2848323383
## HYLS1 -3.2850599243
## ICMT -3.2850736517
## MTF1 -3.2854909516
## ABRACL -3.2871802231
## BPHL -3.2884130302
## CPSF3 -3.2895348375
## RPSAP58 -3.2901459432
## FXR2 -3.2906259253
## IRAG1 -3.2912787979
## AMIGO3 -3.2913812592
## CEP170 -3.2913938122
## ILK -3.2916975042
## TMEM263 -3.2917564760
## AKT3 -3.2927360711
## FAM189B -3.2929212333
## CENPP -3.2935141782
## UNC5CL -3.2953708678
## NFRKB -3.2966699618
## TRNAU1AP -3.2989133968
## ZNF37A -3.2998669854
## MMP9 -3.3018007009
## CSGALNACT2 -3.3025656064
## GIMAP5 -3.3032784278
## MRPS23 -3.3046571159
## HSD17B13 -3.3074453799
## IL17RC -3.3110698699
## LPCAT3 -3.3117080817
## PCNX1 -3.3138833704
## SSC4D -3.3139704248
## GFM1 -3.3142110204
## ZNF207 -3.3142778803
## SAP30 -3.3152992639
## UPK3BL1 -3.3187313847
## LUZP6 -3.3191344384
## MTPN -3.3191344384
## FOCAD -3.3203430560
## MRPS12 -3.3209023541
## ZFYVE21 -3.3216966100
## ISG20L2 -3.3217058556
## CZIB -3.3218486776
## DYNLL2 -3.3223590794
## RTEL1 -3.3225471139
## LZTFL1 -3.3244979030
## ZC3HAV1 -3.3246739442
## BAIAP2 -3.3247190439
## PRMT9 -3.3272576175
## UFM1 -3.3277441038
## FUBP3 -3.3278015197
## TUT4 -3.3279027621
## ZC3H3 -3.3290394371
## NDUFB11 -3.3298029276
## CD24 -3.3314736078
## ASCC1 -3.3326764547
## MAN2C1 -3.3335018129
## IL24 -3.3336600071
## RNF216 -3.3338438443
## ARIH2 -3.3349523550
## TMEM147 -3.3366966850
## LMBRD1 -3.3367322861
## DOCK11 -3.3387008401
## SND1 -3.3393579452
## TULP3 -3.3395167120
## LDAH -3.3406390695
## GTF2H1 -3.3410308936
## C9orf40 -3.3419325868
## ZBTB34 -3.3424057677
## EXOSC7 -3.3425360444
## RNFT1 -3.3426639181
## KCNIP2 -3.3430835233
## TMEM11 -3.3444080901
## DUSP23 -3.3444142595
## SLBP -3.3458465498
## MAD2L1BP -3.3470587460
## MEFV -3.3472003380
## WDR26 -3.3482332255
## S100A10 -3.3484946545
## LDOC1 -3.3491458885
## HERC6 -3.3531317169
## SRBD1 -3.3535941759
## PCF11 -3.3545037928
## HDGFL3 -3.3546834497
## NEIL2 -3.3549342324
## MRPL17 -3.3550291108
## S100A6 -3.3563251952
## PITPNA -3.3564161522
## ZNF282 -3.3566756348
## QKI -3.3585300602
## SATB1 -3.3605171024
## GORASP2 -3.3613206393
## TXNL1 -3.3613534765
## FAM136A -3.3614987276
## ATP6V0C -3.3626360566
## USP53 -3.3627869851
## ZSCAN25 -3.3638799069
## HMGB3 -3.3639719437
## PTBP2 -3.3643280726
## PCYOX1L -3.3683451646
## OXSR1 -3.3686074992
## COPS2 -3.3693552734
## NGRN -3.3709945591
## MDH1 -3.3715633839
## C11orf71 -3.3724770286
## TRMT112 -3.3725797355
## NUP37 -3.3751827682
## HEMK1 -3.3757067327
## PYROXD1 -3.3761526248
## LAGE3 -3.3777400092
## ZNF24 -3.3782631890
## NOTCH1 -3.3785831525
## PLEKHA5 -3.3786579103
## GP9 -3.3786971406
## PDE6D -3.3791691210
## PHF12 -3.3794496351
## CEP135 -3.3807568611
## ATF7 -3.3820028266
## RPN2 -3.3828607331
## LLGL1 -3.3838476842
## CCDC15 -3.3840000175
## AEBP1 -3.3843251838
## HK1 -3.3845222350
## CFAP97D1 -3.3866366316
## RSBN1L -3.3868325900
## YKT6 -3.3869570924
## NUDT2 -3.3881261856
## SLC46A2 -3.3887713510
## TSR1 -3.3897256983
## FUNDC2 -3.3898161688
## NCOA1 -3.3917072734
## MTG1 -3.3921602823
## SNRPD2 -3.3933474114
## G3BP1 -3.3964906313
## PRDM10 -3.3976167510
## MZT1 -3.3985020732
## TP53BP2 -3.4013001945
## RHOBTB3 -3.4015478459
## GALE -3.4015850726
## VKORC1L1 -3.4019644083
## GAPVD1 -3.4038967322
## VAMP3 -3.4043392628
## NDE1 -3.4052947140
## DPM2 -3.4068520431
## CCNK -3.4069336429
## PNN -3.4084910662
## ST3GAL4 -3.4089761575
## PRIMPOL -3.4099025593
## MAP1A -3.4100501876
## NEIL1 -3.4124538776
## KCTD10 -3.4128311148
## TJAP1 -3.4132244207
## CRYZ -3.4143675718
## KRT18 -3.4145748643
## MRPS10 -3.4149398761
## RGL4 -3.4157662188
## MECR -3.4166323854
## MLXIP -3.4169960017
## NAP1L1 -3.4178976285
## POMT1 -3.4227494540
## TTL -3.4233549514
## NBEAL2 -3.4233925115
## COG5 -3.4242545261
## SLC38A6 -3.4247639082
## LIG4 -3.4258399141
## RNASE1 -3.4263156923
## GANAB -3.4269820178
## CD44 -3.4271597135
## SLC35E3 -3.4282175369
## GOLGA7B -3.4287049515
## KRTCAP3 -3.4293782026
## WWP2 -3.4297627455
## TET3 -3.4300463850
## APOBEC3A_B -3.4314366516
## MED17 -3.4322737597
## PVRIG -3.4336387917
## ZNF844 -3.4337391774
## CENPX -3.4346495850
## MYORG -3.4361309802
## ELOVL3 -3.4361430319
## ICAM2 -3.4397289925
## HERC5 -3.4404111621
## CTDSPL -3.4410430699
## COX10 -3.4425914098
## RXRB -3.4428192268
## ZFP1 -3.4449260357
## ALPK3 -3.4474511415
## AK4 -3.4486385110
## STAU2 -3.4495841115
## CHAF1A -3.4497486721
## MAP3K13 -3.4501153297
## NPRL3 -3.4511283256
## RAE1 -3.4512347812
## RNF114 -3.4513560408
## ANKRD28 -3.4513765613
## UNC50 -3.4516224007
## ROMO1 -3.4519421025
## DHTKD1 -3.4520072741
## SERINC5 -3.4534629331
## ZEB2 -3.4544606061
## EMC8 -3.4558598928
## BCL2L11 -3.4559052839
## TIMM50 -3.4559076878
## ERO1B -3.4564917704
## ARHGDIB -3.4588497645
## CHD1 -3.4590418019
## SP3 -3.4591382897
## ARHGEF40 -3.4593136754
## NAF1 -3.4600162158
## RSAD2 -3.4635701122
## CUTA -3.4648605489
## CD40 -3.4649675052
## PSTPIP2 -3.4668295691
## MAST3 -3.4707156489
## CCNT2 -3.4712321957
## SEMA4A -3.4723657895
## SHISAL2A -3.4729023503
## MCC -3.4732316623
## TERF1 -3.4732945697
## KIF21A -3.4745583045
## ITPR1 -3.4770789389
## IFT81 -3.4779747783
## DYM -3.4784733276
## NF1 -3.4789148623
## COX8A -3.4799743587
## ZBTB26 -3.4807155868
## DDX51 -3.4813795487
## PIAS1 -3.4834167596
## SLC6A4 -3.4839330116
## ADGRE5 -3.4840869597
## KDM8 -3.4849322560
## TEC -3.4855217124
## RAD23A -3.4871581961
## POU2F2 -3.4871733145
## MALSU1 -3.4872824412
## SOCS3 -3.4883372078
## RBM15 -3.4900087611
## AHSA1 -3.4905039807
## PPIP5K1 -3.4907113408
## CCDC14 -3.4920920043
## NPC2 -3.4923586634
## BPI -3.4928443947
## ADPGK -3.4967119167
## COMMD3-BMI1 -3.4967502564
## ANKRD13A -3.4967975762
## TXLNB -3.4973923710
## NIN -3.4981219606
## ALOX5 -3.4991018376
## C21orf62 -3.5000669093
## LAMB3 -3.5003647111
## VAV1 -3.5012278906
## SLC35B4 -3.5013656802
## LRP3 -3.5022501203
## CASK -3.5037945643
## LRRC59 -3.5062157281
## RB1CC1 -3.5076021299
## GTPBP3 -3.5076567483
## KCNH3 -3.5077565034
## DGLUCY -3.5082544385
## ZNF431 -3.5102066625
## CTSB -3.5110284130
## POLG2 -3.5136461467
## ASB1 -3.5142374565
## LRRC8A -3.5152348833
## BMP8A -3.5160994127
## TRMT10A -3.5170123674
## MED29 -3.5170530990
## GNAS -3.5182129289
## RNF8 -3.5191352343
## MTHFS -3.5194840672
## ALDH2 -3.5207206928
## POU5F1 -3.5212068431
## PRR13 -3.5220612095
## MRPL12 -3.5224899317
## PCBP2 -3.5229629948
## TOMM40 -3.5230203961
## CLDND1 -3.5234940427
## MAPK1IP1L -3.5240472232
## EVL -3.5251039409
## PEX19 -3.5252620723
## NDUFA2 -3.5255923787
## SH3BGRL2 -3.5285060942
## IL1B -3.5290646316
## UBA2 -3.5295362960
## ABHD3 -3.5297048345
## THAP2 -3.5310072634
## PEPD -3.5320479183
## ZZZ3 -3.5335416058
## TBXAS1 -3.5337022162
## ARL17B -3.5357761366
## TECR -3.5359405494
## EIF5 -3.5381426938
## MRPS18A -3.5382942369
## ATP6V0B -3.5384422886
## BCL11A -3.5396199253
## TPH1 -3.5423223305
## PKN2 -3.5436470126
## VPS37A -3.5437846600
## SNX33 -3.5448386432
## FOXP3 -3.5460902468
## KHDRBS1 -3.5465549147
## PDPR -3.5468427833
## CHD7 -3.5473124263
## CDKN2AIP -3.5475110750
## NUP43 -3.5476724233
## TAPT1 -3.5483784342
## C8orf58 -3.5485801048
## B4GALNT2 -3.5491968325
## SCLY -3.5493586864
## CDC42EP4 -3.5495799439
## TRPC6 -3.5505845532
## LLGL2 -3.5513679411
## LTO1 -3.5525765639
## FGFRL1 -3.5535362518
## ARHGEF2 -3.5543220228
## ATRAID -3.5543624434
## MMACHC -3.5564628598
## POLK -3.5588192624
## TSPAN15 -3.5588340158
## CDK5RAP3 -3.5593719899
## NRG1 -3.5595945551
## ILKAP -3.5596825120
## TMEM170B -3.5597726098
## RPH3AL -3.5617582317
## SIGLEC10 -3.5643630812
## CRIP1 -3.5645378778
## GLMN -3.5646804396
## TTC33 -3.5648760284
## NUP58 -3.5664613016
## PIK3R3 -3.5677401178
## SCN9A -3.5689858755
## FCGR3B -3.5695819969
## OAF -3.5697095152
## IFI27L2 -3.5703728963
## ZNF441 -3.5704581892
## RGL2 -3.5705166043
## KIF3A -3.5710809170
## TSPAN33 -3.5719320461
## SMS -3.5721882505
## PLEKHA3 -3.5724239960
## CLEC5A -3.5733273252
## ATXN7L1 -3.5749111384
## GOLGA8H -3.5753009849
## TOX4 -3.5756566154
## MXD1 -3.5758835285
## GABPB1 -3.5764142769
## SLC35G1 -3.5773247460
## ZC3H15 -3.5778764253
## TIGD3 -3.5788361360
## AFAP1 -3.5795252856
## MTX3 -3.5796881517
## CELF2 -3.5809301439
## RLF -3.5814606201
## CHD6 -3.5824570812
## BIRC2 -3.5831242984
## MBD6 -3.5854169508
## RNF181 -3.5855398855
## DHRS12 -3.5857362681
## MIEN1 -3.5857960206
## USP18 -3.5875147929
## ALS2CL -3.5879995344
## MX1 -3.5880840573
## SEC11A -3.5890663503
## PDRG1 -3.5905768038
## RAP2A -3.5916181645
## PLEKHF1 -3.5917875418
## RPA2 -3.5923711985
## ZNF100 -3.5943872123
## BCORL1 -3.5949403793
## CCDC6 -3.5954482418
## NDUFAB1 -3.5954842804
## RARS1 -3.5960600076
## PURA -3.5973496972
## RPE -3.5984084381
## SERPINF1 -3.5984263494
## TRIM24 -3.6007943922
## UACA -3.6008092973
## KIAA0319 -3.6014139363
## ACTR1B -3.6016633965
## DDHD2 -3.6017212524
## CACNA2D4 -3.6025444456
## PET100 -3.6037111335
## ZNF223 -3.6046899963
## TBCC -3.6066496013
## PDCL -3.6074576886
## TBC1D1 -3.6092142465
## PTPRE -3.6103233667
## FAM210A -3.6108813806
## ZNF526 -3.6124964819
## HAUS8 -3.6130812755
## ARID1A -3.6138315547
## SMYD5 -3.6148890730
## AKR1B1 -3.6157022681
## SPCS3 -3.6172872978
## TYW1B -3.6174731128
## IGFBP2 -3.6178267956
## NOL7 -3.6178333255
## M1AP -3.6183769048
## WTIP -3.6185700072
## DYNLL1 -3.6211224241
## TRIO -3.6217371142
## GLYR1 -3.6224011183
## BRK1 -3.6239047110
## ZBTB32 -3.6243963428
## FAM156A -3.6249039383
## ZNF611 -3.6292561230
## MOCS3 -3.6305008830
## NT5C2 -3.6309724468
## PDE4DIP -3.6314481826
## C1orf131 -3.6316174775
## FBXO44 -3.6323606527
## TOX -3.6346450856
## MED23 -3.6351658834
## CWC15 -3.6365285172
## ZNF471 -3.6365925461
## TCEANC2 -3.6374378084
## RCOR1 -3.6389929537
## PAG1 -3.6390258286
## PDSS2 -3.6411271089
## GSTO2 -3.6411388422
## CRELD1 -3.6440706035
## C15orf40 -3.6443833206
## FAM86B1 -3.6447435271
## FCHSD2 -3.6448160539
## DAG1 -3.6458388191
## MGAT5 -3.6473693257
## CYB5D1 -3.6483867445
## ZNF518B -3.6487313258
## CAMLG -3.6495992578
## ITGA4 -3.6504908190
## COX7C -3.6515099643
## NBPF20 -3.6517437242
## EIF4G1 -3.6523865435
## NPIPA7 -3.6525120532
## WNT2B -3.6525350131
## STBD1 -3.6528542694
## FZD6 -3.6539947601
## PRPF19 -3.6547640144
## MPI -3.6549969036
## C2orf42 -3.6550306233
## SMURF1 -3.6573468983
## TMEM60 -3.6596051101
## ARPC5 -3.6596728278
## LANCL1 -3.6601339211
## TFEC -3.6605523095
## ADGRE1 -3.6607603476
## VKORC1 -3.6614435864
## PRKCE -3.6624149768
## RBSN -3.6625303687
## CYB5D2 -3.6659305037
## MYBBP1A -3.6660140997
## KIAA2013 -3.6665826820
## AP1G2 -3.6671996064
## CRY1 -3.6685490651
## NUP214 -3.6686855686
## SEC11C -3.6692952917
## MCOLN1 -3.6706098922
## LRIG2 -3.6729445351
## FAM200B -3.6744678585
## SMIM5 -3.6745073635
## PLCL2 -3.6756109971
## ZNF720 -3.6777023211
## SUPT5H -3.6777716891
## ACBD7 -3.6794994889
## SMARCC2 -3.6795045504
## PBXIP1 -3.6796582815
## ACAD11 -3.6816311109
## CENPM -3.6838819723
## RAD9A -3.6841158858
## CCDC82 -3.6846648953
## OBSCN -3.6847975219
## LITAF -3.6849172984
## LAMTOR5 -3.6865992494
## STX16 -3.6870854651
## LMBR1 -3.6876923615
## ZFAND5 -3.6888266089
## SERINC2 -3.6890664389
## B4GAT1 -3.6913626992
## TLCD4 -3.6931840087
## CSNK1G3 -3.6931902496
## OS9 -3.6940639317
## TAF9 -3.6943796100
## EXT2 -3.6945548537
## TREX1 -3.6947410506
## SIPA1L2 -3.6956220578
## MYL12B -3.6963920519
## SCAMP1 -3.6971305599
## ABHD12 -3.6980700284
## MRPL14 -3.6988841568
## SRSF10 -3.6993936901
## CSNK1A1 -3.7001499732
## PIK3CB -3.7013038520
## CHMP5 -3.7014762244
## TMEM208 -3.7017308738
## TMEM243 -3.7021767458
## JTB -3.7036334031
## KDM4C -3.7043108773
## CDK11A -3.7050434664
## MED20 -3.7062278620
## DTX1 -3.7064282329
## PLXNA1 -3.7072263527
## MOSMO -3.7090699417
## TMEM35B -3.7094864763
## FBXO8 -3.7096352849
## CPLANE2 -3.7100246990
## LAMTOR4 -3.7109732240
## AEBP2 -3.7112699788
## SHLD2 -3.7114294975
## SCMH1 -3.7121032727
## WDR1 -3.7127669964
## RBM44 -3.7129098910
## PSMD7 -3.7131048532
## EHHADH -3.7142502791
## ARNTL -3.7145975733
## IL27RA -3.7148827642
## ZNF606 -3.7154329643
## PYCR3 -3.7156967484
## LRRC3 -3.7161202284
## SLC22A1 -3.7165040210
## PEX11B -3.7169943183
## SIRT3 -3.7174377180
## TAF13 -3.7180319535
## VRK2 -3.7181450948
## XKR8 -3.7186449111
## SOX12 -3.7198396708
## PDE6B -3.7202972521
## LGMN -3.7217367191
## KLHL8 -3.7228751505
## ME2 -3.7231490558
## SMARCA4 -3.7232972695
## MTG2 -3.7239505261
## USP39 -3.7242539738
## SET -3.7259919976
## GARS1 -3.7259929170
topTable(efit_COVID, coef = "COVIDyes", adjust.method = "fdr", p.value = 0.05, n = Inf, sort.by = "p")## logFC AveExpr t P.Value adj.P.Val
## GBGT1 -1.434697e+01 1.311994e+01 -8.608852 2.704926e-14 3.208042e-10
## MCM6 1.300644e+01 2.082129e+01 8.119125 3.863965e-13 1.759204e-09
## SLC12A9 -9.503634e+01 1.006486e+02 -8.092907 4.449926e-13 1.759204e-09
## SLC15A3 -5.923220e+01 6.881456e+01 -7.998129 7.405414e-13 2.195705e-09
## MAPK8IP3 -1.843385e+01 2.939884e+01 -7.874219 1.437384e-12 3.409474e-09
## CDC7 3.365151e+00 5.656738e+00 7.711515 3.417089e-12 6.754446e-09
## AIF1 -3.236865e+02 4.725196e+02 -7.566778 7.346232e-12 1.244662e-08
## CLSPN 2.952676e+00 4.133007e+00 7.437656 1.448122e-11 2.146841e-08
## PITPNM1 -1.639737e+01 2.469994e+01 -7.409046 1.682170e-11 2.216727e-08
## TWF2 -8.428935e+01 1.005644e+02 -7.327147 2.580083e-11 3.059979e-08
## METRNL -1.687047e+01 1.563471e+01 -7.302704 2.930404e-11 3.159509e-08
## CARS2 -1.769328e+01 3.037522e+01 -7.267471 3.519766e-11 3.316324e-08
## COTL1 -7.538105e+02 1.129329e+03 -7.261266 3.635094e-11 3.316324e-08
## TTC9 -2.453700e+01 1.943297e+01 -7.232080 4.229734e-11 3.583189e-08
## HPS6 -1.083323e+01 1.705239e+01 -7.196176 5.094719e-11 4.028224e-08
## RNA28SN4 -2.351735e+03 1.437686e+03 -7.147384 6.556764e-11 4.860201e-08
## VPS37C -6.757038e+00 1.213700e+01 -7.131494 7.117211e-11 4.965301e-08
## GPR132 -1.910672e+01 2.743879e+01 -7.095412 8.572033e-11 5.648017e-08
## PLEC -4.944514e+01 6.690541e+01 -7.033476 1.178580e-10 6.429025e-08
## RNA18SN2 -1.765594e+03 1.965368e+03 -7.031177 1.192568e-10 6.429025e-08
## RNA18SN3 -1.765594e+03 1.965368e+03 -7.031177 1.192568e-10 6.429025e-08
## RNA18SN4 -1.765594e+03 1.965368e+03 -7.031177 1.192568e-10 6.429025e-08
## SLC8B1 -2.405528e+01 4.169616e+01 -6.987616 1.490853e-10 7.687616e-08
## PELI3 -3.388208e+00 4.537970e+00 -6.956046 1.752061e-10 8.658102e-08
## FBP1 -2.401931e+01 2.618608e+01 -6.929205 2.009373e-10 9.532467e-08
## SYNGR2 -6.091035e+01 8.737147e+01 -6.917805 2.129648e-10 9.714471e-08
## TMCO6 -6.313286e+00 1.591094e+01 -6.902518 2.302167e-10 1.000180e-07
## MCM4 9.218095e+00 1.195038e+01 6.890663 2.445403e-10 1.000180e-07
## STK11IP -1.188605e+01 2.060218e+01 -6.890644 2.445634e-10 1.000180e-07
## HAAO -3.431322e+00 3.365732e+00 -6.867883 2.745787e-10 1.085501e-07
## EZH2 4.604770e+00 9.072242e+00 6.852524 2.968619e-10 1.107072e-07
## SIN3B -9.051460e+00 2.379947e+01 -6.851306 2.987041e-10 1.107072e-07
## DTL 3.365054e+00 3.235270e+00 6.836979 3.212329e-10 1.139801e-07
## ZNF362 -3.390724e+00 9.425953e+00 -6.833618 3.267557e-10 1.139801e-07
## NAPSA -2.570444e+01 2.401286e+01 -6.786494 4.148376e-10 1.405707e-07
## STRN4 -2.633574e+01 5.213295e+01 -6.775573 4.383851e-10 1.444235e-07
## RFC5 2.779520e+00 6.068064e+00 6.763647 4.656111e-10 1.463858e-07
## SLC44A1 1.933902e+01 4.453388e+01 6.762200 4.690270e-10 1.463858e-07
## IER5L -9.564019e-01 9.050714e-01 -6.730716 5.497625e-10 1.671842e-07
## SUV39H2 1.242065e+00 2.070052e+00 6.719719 5.810791e-10 1.722900e-07
## CSK -1.448668e+02 2.366198e+02 -6.706690 6.204697e-10 1.794822e-07
## TNFRSF8 -1.032646e+01 1.208855e+01 -6.673915 7.315955e-10 1.936512e-07
## TRAPPC12 -1.014942e+01 1.905027e+01 -6.672843 7.355456e-10 1.936512e-07
## GINS4 1.555484e+00 2.236294e+00 6.670259 7.451476e-10 1.936512e-07
## RACGAP1 5.228206e+00 9.414088e+00 6.669703 7.472331e-10 1.936512e-07
## OXER1 -7.318034e+00 9.987774e+00 -6.668676 7.510923e-10 1.936512e-07
## MELK 1.974919e+00 1.925849e+00 6.644067 8.497659e-10 2.135347e-07
## SELENOI 4.929237e+00 9.995349e+00 6.640701 8.642213e-10 2.135347e-07
## ZNF367 2.110405e+00 3.446861e+00 6.631763 9.037884e-10 2.162149e-07
## SIPA1 -9.705955e+01 1.324994e+02 -6.630060 9.115298e-10 2.162149e-07
## STIL 1.868496e+00 2.017819e+00 6.617917 9.686473e-10 2.217978e-07
## SIGLEC7 -1.925121e+01 2.992479e+01 -6.615254 9.816386e-10 2.217978e-07
## PITPNC1 -1.624348e+01 3.865031e+01 -6.613322 9.911705e-10 2.217978e-07
## KPNA2 1.054039e+01 3.099392e+01 6.598429 1.067778e-09 2.345157e-07
## CEP57L1 1.190039e+00 3.212878e+00 6.573353 1.210173e-09 2.609573e-07
## FBXO5 3.233711e+00 5.296409e+00 6.567694 1.244811e-09 2.636332e-07
## CD1D -2.669206e+01 4.675289e+01 -6.555611 1.322083e-09 2.750860e-07
## VENTX -6.656384e+00 8.677281e+00 -6.547011 1.379940e-09 2.821739e-07
## CEBPA -6.062752e+01 7.814298e+01 -6.526476 1.528388e-09 3.069950e-07
## WEE1 2.815491e+00 4.494965e+00 6.523251 1.553094e-09 3.069950e-07
## TECPR1 -1.673644e+01 3.910663e+01 -6.509893 1.659673e-09 3.226840e-07
## ATAD2 8.193469e+00 1.211435e+01 6.479874 1.926203e-09 3.684640e-07
## PPP1R9B -4.637310e+01 1.324204e+02 -6.471380 2.008994e-09 3.782011e-07
## AP2A1 -1.458013e+01 3.873160e+01 -6.447800 2.257671e-09 4.183747e-07
## SPRYD3 -2.278590e+01 4.861012e+01 -6.441414 2.330081e-09 4.238679e-07
## PLD2 -7.752977e+00 1.482156e+01 -6.438883 2.359418e-09 4.238679e-07
## CHEK1 3.152437e+00 4.014832e+00 6.435893 2.394532e-09 4.238679e-07
## SLC39A13 -7.315309e+00 9.362732e+00 -6.427152 2.500176e-09 4.360600e-07
## CIC -2.152742e+01 3.983140e+01 -6.423808 2.541794e-09 4.368939e-07
## TBC1D10A -9.413707e+00 1.535882e+01 -6.419741 2.593325e-09 4.393833e-07
## SLFN13 8.397156e+00 1.754261e+01 6.397938 2.887693e-09 4.823668e-07
## CDK2 4.421401e+00 1.049011e+01 6.394161 2.941920e-09 4.834077e-07
## FBH1 1.250903e+01 5.344644e+01 6.391861 2.975444e-09 4.834077e-07
## ZWILCH 2.725492e+00 4.909032e+00 6.385719 3.066796e-09 4.865877e-07
## NDC80 3.541071e+00 5.917033e+00 6.385040 3.077072e-09 4.865877e-07
## RRM2 2.459294e+01 2.452927e+01 6.379165 3.167339e-09 4.942715e-07
## PALM2AKAP2 1.440982e+01 1.760557e+01 6.372235 3.277181e-09 5.031301e-07
## SH3TC1 -1.417935e+01 1.552069e+01 -6.370273 3.308950e-09 5.031301e-07
## BRAT1 -1.373363e+01 1.303038e+01 -6.364075 3.411324e-09 5.121304e-07
## MKI67 1.277033e+01 1.319601e+01 6.361466 3.455360e-09 5.122571e-07
## NCKAP5L -5.855128e+00 8.289657e+00 -6.358039 3.514031e-09 5.145236e-07
## FUT8 4.274893e+00 8.212014e+00 6.353879 3.586570e-09 5.187405e-07
## CDC6 4.620975e+00 4.799886e+00 6.350459 3.647327e-09 5.211723e-07
## MAFK -4.588700e+00 9.546257e+00 -6.320655 4.221441e-09 5.960273e-07
## ZNF775 -1.926506e+00 2.188327e+00 -6.310336 4.440270e-09 6.195482e-07
## IMPDH1 -1.468623e+02 2.316221e+02 -6.280438 5.139308e-09 7.033194e-07
## MED22 -1.197258e+01 3.048407e+01 -6.279645 5.159257e-09 7.033194e-07
## COLGALT1 -6.244117e+01 1.124530e+02 -6.272740 5.336174e-09 7.191707e-07
## GINS1 1.864102e+00 1.987370e+00 6.266253 5.507843e-09 7.274151e-07
## SGSM2 -1.271225e+01 2.487688e+01 -6.265800 5.520014e-09 7.274151e-07
## WDHD1 1.957802e+00 2.838481e+00 6.245613 6.090928e-09 7.875990e-07
## EFHD2 -2.315758e+02 4.131762e+02 -6.244987 6.109537e-09 7.875990e-07
## GEN1 2.517165e+00 5.313267e+00 6.225380 6.721395e-09 8.532384e-07
## CDC42EP2 -2.506899e+01 2.776886e+01 -6.222597 6.812987e-09 8.532384e-07
## C19orf38 -1.263749e+02 1.659232e+02 -6.221948 6.834540e-09 8.532384e-07
## FAM89B -3.946473e+01 5.020861e+01 -6.214544 7.085015e-09 8.743713e-07
## HDGFL2 -1.045937e+01 1.668326e+01 -6.212227 7.165242e-09 8.743713e-07
## ASGR1 -6.601795e+00 5.879841e+00 -6.208723 7.288248e-09 8.743713e-07
## GNPTG -1.590430e+01 3.084933e+01 -6.208428 7.298715e-09 8.743713e-07
## AAMP -1.771167e+01 4.330290e+01 -6.194270 7.818052e-09 9.272210e-07
## WDR76 2.875126e+00 5.510450e+00 6.184808 8.185252e-09 9.601628e-07
## NCAPH 2.535512e+00 2.934950e+00 6.182990 8.257724e-09 9.601628e-07
## NAGS -7.411353e-01 9.556516e-01 -6.176749 8.511311e-09 9.800402e-07
## PARPBP 1.526223e+00 2.206733e+00 6.173002 8.667248e-09 9.883997e-07
## LSP1 -3.612833e+02 6.114417e+02 -6.166517 8.943777e-09 1.010221e-06
## ARHGAP11A 3.378091e+00 5.148749e+00 6.162789 9.106659e-09 1.018915e-06
## FUT7 -3.577613e+01 3.223891e+01 -6.150112 9.682694e-09 1.073241e-06
## DONSON 2.452144e+00 6.118128e+00 6.147679 9.797251e-09 1.075883e-06
## RAB40C -5.440551e+00 8.201873e+00 -6.121473 1.111915e-08 1.209845e-06
## SREBF1 -7.638235e+00 1.180905e+01 -6.107269 1.190739e-08 1.273418e-06
## SCAP -2.241244e+01 4.630877e+01 -6.107081 1.191816e-08 1.273418e-06
## CD37 -8.445797e+01 1.999032e+02 -6.088067 1.306088e-08 1.383054e-06
## CUEDC1 -8.524510e+00 1.455608e+01 -6.084514 1.328606e-08 1.394448e-06
## SLC25A11 -1.858472e+01 3.749459e+01 -6.072898 1.404916e-08 1.461606e-06
## TIMELESS 5.027039e+00 9.411419e+00 6.066599 1.448083e-08 1.493414e-06
## FAM20C -5.460280e+00 5.563845e+00 -6.063731 1.468166e-08 1.501074e-06
## PAGR1 -1.027707e+01 2.312246e+01 -6.060974 1.487733e-08 1.508078e-06
## PGLS -3.902057e+01 4.444768e+01 -6.055158 1.529847e-08 1.533525e-06
## NUSAP1 7.947137e+00 9.537710e+00 6.053956 1.538697e-08 1.533525e-06
## TAGLN -2.403904e+01 2.005573e+01 -6.049808 1.569623e-08 1.551311e-06
## SPAG7 -1.793228e+01 2.973020e+01 -6.044078 1.613349e-08 1.581349e-06
## AP1M1 -1.895539e+01 4.827055e+01 -6.040839 1.638594e-08 1.592929e-06
## TNNI2 -7.844730e+00 6.999728e+00 -6.033903 1.693970e-08 1.627430e-06
## LRRC25 -1.260779e+02 2.524165e+02 -6.032973 1.701529e-08 1.627430e-06
## TOP2A 1.173764e+01 1.095043e+01 6.029749 1.728004e-08 1.627736e-06
## ARHGAP4 -1.150623e+02 1.336422e+02 -6.027816 1.744074e-08 1.627736e-06
## TTLL12 -5.193665e+00 1.099754e+01 -6.027398 1.747567e-08 1.627736e-06
## PGAP6 -3.674416e+01 5.542591e+01 -6.026304 1.756748e-08 1.627736e-06
## ACTB -4.416516e+03 7.242785e+03 -6.023213 1.782930e-08 1.639190e-06
## CARD9 -5.148067e+00 4.883578e+00 -6.014486 1.858950e-08 1.695934e-06
## HELLS 1.434287e+00 1.789444e+00 6.010297 1.896560e-08 1.711549e-06
## SMC2 4.941588e+00 7.879914e+00 6.009376 1.904928e-08 1.711549e-06
## CEP20 5.250986e+00 1.786974e+01 5.996530 2.025509e-08 1.806205e-06
## KNL1 3.142014e+00 3.506061e+00 5.987436 2.115375e-08 1.872265e-06
## TRIP13 1.701860e+00 1.759339e+00 5.981703 2.174023e-08 1.909920e-06
## TOR4A -1.436832e+01 2.554924e+01 -5.978529 2.207178e-08 1.924789e-06
## DNA2 1.815758e+00 3.229567e+00 5.970755 2.290506e-08 1.982876e-06
## DHRSX -6.304801e+00 1.429759e+01 -5.966080 2.342084e-08 2.012834e-06
## MMP17 -1.828603e+00 1.189793e+00 -5.956441 2.452077e-08 2.092204e-06
## ASPM 4.030027e+00 3.928611e+00 5.954733 2.472090e-08 2.094213e-06
## CD300C -1.320832e+01 1.878104e+01 -5.944251 2.598460e-08 2.185655e-06
## SMC4 1.294286e+01 3.347087e+01 5.935408 2.709984e-08 2.263409e-06
## NUCB1 -1.160390e+02 1.311204e+02 -5.927199 2.817714e-08 2.336929e-06
## TRAF7 -1.402147e+01 3.146933e+01 -5.912939 3.014949e-08 2.483145e-06
## PDLIM2 -1.786317e+01 3.011743e+01 -5.903775 3.148785e-08 2.575489e-06
## PLK4 2.686394e+00 3.109371e+00 5.899384 3.214957e-08 2.587763e-06
## GPR35 -2.861118e+00 2.643002e+00 -5.898829 3.223415e-08 2.587763e-06
## CENPF 4.990910e+00 5.338564e+00 5.898447 3.229248e-08 2.587763e-06
## KNTC1 5.045357e+00 1.035805e+01 5.896876 3.253369e-08 2.589595e-06
## LRRC61 -3.670367e+00 4.476915e+00 -5.893677 3.303013e-08 2.611582e-06
## CSNK1G2 -1.992533e+01 4.134168e+01 -5.882360 3.484675e-08 2.736970e-06
## BRCA2 2.576919e+00 3.651334e+00 5.866319 3.759095e-08 2.933083e-06
## NOTCH4 -1.471728e+00 1.992060e+00 -5.857608 3.916885e-08 3.036226e-06
## CYBA -1.913609e+02 2.018822e+02 -5.855928 3.948055e-08 3.037412e-06
## MARCO -2.886291e+01 2.188781e+01 -5.854772 3.969636e-08 3.037412e-06
## SHCBP1 5.649576e+00 6.224003e+00 5.852804 4.006660e-08 3.046089e-06
## GAA -4.058794e+01 5.734432e+01 -5.851115 4.038702e-08 3.050892e-06
## GFPT1 5.589995e+00 1.363996e+01 5.846374 4.129997e-08 3.085015e-06
## LSM6 -1.100738e+01 2.195575e+01 -5.846071 4.135897e-08 3.085015e-06
## SEPTIN11 6.931311e+00 1.473516e+01 5.841482 4.226333e-08 3.132769e-06
## TBC1D22A -1.246106e+01 3.013958e+01 -5.828431 4.494212e-08 3.310643e-06
## KIF11 6.789374e+00 7.513803e+00 5.824794 4.571779e-08 3.346994e-06
## TTYH3 -1.137337e+01 2.129215e+01 -5.821553 4.642022e-08 3.377569e-06
## NCAPG 5.864143e+00 6.135755e+00 5.819171 4.694313e-08 3.394789e-06
## SUMF1 -1.269296e+01 2.799574e+01 -5.817707 4.726742e-08 3.397525e-06
## SLC43A2 -6.180080e+01 1.304071e+02 -5.809907 4.903238e-08 3.503157e-06
## OSGIN1 -2.272714e+00 2.115793e+00 -5.798214 5.180016e-08 3.678742e-06
## ZNF385A -3.119815e+01 3.754878e+01 -5.793677 5.291481e-08 3.697343e-06
## STK32C -5.433245e+00 6.029002e+00 -5.793342 5.299798e-08 3.697343e-06
## SPDL1 1.993779e+00 3.972153e+00 5.792006 5.333133e-08 3.697343e-06
## FANCI 6.509963e+00 1.061400e+01 5.791112 5.355538e-08 3.697343e-06
## NCAPD2 1.350116e+01 3.616550e+01 5.790851 5.362082e-08 3.697343e-06
## SLC25A6 -1.272837e+02 1.450113e+02 -5.780514 5.628362e-08 3.858519e-06
## CEP55 2.675836e+00 2.924191e+00 5.777817 5.699931e-08 3.885125e-06
## EIF3D -5.413262e+01 1.697161e+02 -5.776052 5.747253e-08 3.894996e-06
## MNT -9.135113e+00 2.408578e+01 -5.765957 6.025406e-08 4.032520e-06
## ADIPOR2 1.726768e+01 6.453421e+01 5.764277 6.072965e-08 4.032520e-06
## ZGPAT -1.519889e+01 2.003335e+01 -5.764200 6.075164e-08 4.032520e-06
## NSD2 7.176432e+00 1.704069e+01 5.763812 6.086181e-08 4.032520e-06
## CFP -1.380864e+02 1.664709e+02 -5.761692 6.146853e-08 4.050093e-06
## CRYL1 -5.438219e+00 1.266628e+01 -5.757460 6.269737e-08 4.087273e-06
## ORC1 2.207785e+00 2.570500e+00 5.757067 6.281275e-08 4.087273e-06
## CIP2A 1.980445e+00 2.647639e+00 5.756204 6.306669e-08 4.087273e-06
## RAB11B -1.165190e+01 1.793012e+01 -5.751236 6.454855e-08 4.160575e-06
## LILRB2 -1.399386e+02 2.983491e+02 -5.747038 6.582712e-08 4.220052e-06
## REXO1 -3.722024e+00 8.139960e+00 -5.740625 6.782840e-08 4.324972e-06
## RIPOR1 -1.272287e+01 3.157259e+01 -5.739440 6.820478e-08 4.325715e-06
## SLC27A1 -8.867537e+00 9.182019e+00 -5.737494 6.882721e-08 4.341972e-06
## TNFAIP8L2 -5.366415e+01 1.078734e+02 -5.735864 6.935261e-08 4.351968e-06
## DSCC1 1.120921e+00 1.277179e+00 5.732365 7.049447e-08 4.400339e-06
## ZWINT 6.425062e+00 7.083687e+00 5.723555 7.345093e-08 4.560880e-06
## KLF16 -1.188263e+01 2.217280e+01 -5.720795 7.440177e-08 4.589014e-06
## ARF5 -9.363464e+01 1.345374e+02 -5.720001 7.467788e-08 4.589014e-06
## MVP -1.996165e+02 3.117979e+02 -5.715734 7.617708e-08 4.655175e-06
## NANS -1.686090e+01 2.880041e+01 -5.714715 7.653955e-08 4.655175e-06
## XRCC2 8.081690e-01 1.202861e+00 5.711696 7.762322e-08 4.696446e-06
## CYTH4 -4.388167e+02 6.955792e+02 -5.710629 7.801011e-08 4.696446e-06
## TCF19 6.052519e+00 8.786556e+00 5.707247 7.924795e-08 4.733722e-06
## NSMF -8.185821e+00 1.117961e+01 -5.706276 7.960689e-08 4.733722e-06
## RNA28SN1 -2.740657e+03 2.785014e+03 -5.705683 7.982667e-08 4.733722e-06
## MTRF1 2.296057e+00 7.471736e+00 5.704292 8.034512e-08 4.740762e-06
## PPP1R12C -4.055237e+01 6.496655e+01 -5.694581 8.405734e-08 4.935248e-06
## SF3B4 -8.922112e+00 3.606203e+01 -5.692003 8.507067e-08 4.970139e-06
## PSKH1 -6.732842e+00 1.908057e+01 -5.690642 8.561052e-08 4.977161e-06
## FKRP -1.664295e+00 5.317226e+00 -5.689022 8.625744e-08 4.990309e-06
## TUBA1A -5.404777e+02 8.119862e+02 -5.687649 8.680930e-08 4.997856e-06
## UCHL5 4.576874e+00 1.745539e+01 5.685450 8.770079e-08 5.024789e-06
## CENPJ 1.658181e+00 3.495916e+00 5.682554 8.888819e-08 5.068336e-06
## KIF23 2.102446e+00 3.069673e+00 5.679686 9.007990e-08 5.081370e-06
## ARRDC1 -1.380806e+01 2.473697e+01 -5.679490 9.016217e-08 5.081370e-06
## FCGRT -1.759900e+02 2.520064e+02 -5.678917 9.040211e-08 5.081370e-06
## PSAT1 2.597894e+00 4.080667e+00 5.677180 9.113415e-08 5.098354e-06
## PRPF6 -3.149215e+01 6.287130e+01 -5.669539 9.442288e-08 5.241298e-06
## BUB1B 3.027118e+00 2.893909e+00 5.669196 9.457317e-08 5.241298e-06
## SYTL1 -2.583248e+01 3.094226e+01 -5.668118 9.504725e-08 5.243071e-06
## TYMS 1.217314e+01 1.204017e+01 5.664449 9.667793e-08 5.308334e-06
## ALDOA -4.492800e+02 6.776759e+02 -5.662907 9.737122e-08 5.321764e-06
## POLM -7.572852e+00 2.148772e+01 -5.659753 9.880498e-08 5.355835e-06
## PELATON -9.451366e+01 1.215682e+02 -5.659266 9.902825e-08 5.355835e-06
## RXRA -7.386569e+01 1.622886e+02 -5.658567 9.934939e-08 5.355835e-06
## PIP4K2C 1.188234e+01 3.374976e+01 5.652642 1.021136e-07 5.469679e-06
## RNPEPL1 -1.008510e+02 1.060256e+02 -5.652072 1.023835e-07 5.469679e-06
## SUGP1 -1.027284e+01 2.453559e+01 -5.649215 1.037471e-07 5.517673e-06
## IKBKG -2.493048e+01 5.184681e+01 -5.645587 1.055037e-07 5.578146e-06
## PHRF1 -4.677367e+00 1.260564e+01 -5.644054 1.062549e-07 5.578146e-06
## CCNA2 5.688480e+00 6.591694e+00 5.643972 1.062952e-07 5.578146e-06
## RTL8C -8.171803e+00 1.131030e+01 -5.641681 1.074278e-07 5.612746e-06
## RFWD3 6.546143e+00 1.810170e+01 5.639017 1.087594e-07 5.657398e-06
## TRABD -3.137940e+01 3.744705e+01 -5.637898 1.093237e-07 5.661915e-06
## CATSPER1 -4.552769e+00 5.990464e+00 -5.633508 1.115652e-07 5.752883e-06
## ZNF865 -8.312071e+00 1.158684e+01 -5.626517 1.152277e-07 5.916021e-06
## GNB2 -2.109958e+02 2.760143e+02 -5.624638 1.162323e-07 5.927895e-06
## SKA3 1.438813e+00 1.473196e+00 5.624217 1.164586e-07 5.927895e-06
## SNAPC2 -4.962748e+00 4.923667e+00 -5.619776 1.188710e-07 6.024828e-06
## ZBTB7A -8.725320e+00 2.384968e+01 -5.615616 1.211753e-07 6.067961e-06
## SPAG5 5.193726e+00 6.717902e+00 5.615517 1.212307e-07 6.067961e-06
## DOK1 -3.503910e+01 6.841051e+01 -5.615470 1.212569e-07 6.067961e-06
## NAPRT -2.854350e+01 2.198267e+01 -5.613168 1.225516e-07 6.106984e-06
## PSMF1 -1.958157e+01 7.245226e+01 -5.610644 1.239868e-07 6.151100e-06
## ZNF467 -3.118722e+01 4.233810e+01 -5.609793 1.244742e-07 6.151100e-06
## FXYD5 -1.756734e+02 1.842737e+02 -5.605742 1.268212e-07 6.241074e-06
## PARL -1.905559e+01 3.934935e+01 -5.601259 1.294685e-07 6.340306e-06
## AGAP3 -9.725233e+00 1.427110e+01 -5.600526 1.299068e-07 6.340306e-06
## TMEM187 -3.342810e+00 4.428668e+00 -5.599121 1.307500e-07 6.355307e-06
## AKT1 -3.564523e+01 1.027137e+02 -5.592049 1.350787e-07 6.538911e-06
## DENND6B -3.811199e+00 3.805693e+00 -5.585229 1.393854e-07 6.711120e-06
## TOM1L2 -3.993263e+00 1.523963e+01 -5.584634 1.397678e-07 6.711120e-06
## CDC25A 1.965911e+00 2.056359e+00 5.581859 1.415632e-07 6.765331e-06
## ZNF524 -7.565237e+00 6.226857e+00 -5.581131 1.420377e-07 6.765331e-06
## SUN2 -7.598045e+01 2.153823e+02 -5.577673 1.443140e-07 6.819144e-06
## CDC45 2.822410e+00 3.003641e+00 5.577668 1.443175e-07 6.819144e-06
## RNH1 -3.029380e+01 3.276725e+01 -5.572806 1.475786e-07 6.936939e-06
## C1orf54 -1.542913e+00 1.723211e+00 -5.572215 1.479802e-07 6.936939e-06
## HMOX1 -6.350148e+01 7.744090e+01 -5.568122 1.507888e-07 7.040769e-06
## ZYX -5.319777e+02 7.049949e+02 -5.565376 1.527021e-07 7.102147e-06
## LIMD2 -2.553577e+02 3.674818e+02 -5.559754 1.566947e-07 7.232642e-06
## ARFGAP1 -2.390732e+01 3.094574e+01 -5.559708 1.567276e-07 7.232642e-06
## BUB1 7.548501e+00 7.294151e+00 5.556365 1.591506e-07 7.315991e-06
## MAP1S -7.152296e+00 8.371213e+00 -5.553229 1.614558e-07 7.393306e-06
## WDR25 -2.525141e+00 4.539490e+00 -5.551471 1.627628e-07 7.424486e-06
## AKT2 -1.679806e+01 6.823690e+01 -5.547872 1.654709e-07 7.519098e-06
## SLC12A2 1.916934e+00 3.596070e+00 5.545930 1.669503e-07 7.557366e-06
## FTL -4.187909e+03 6.897358e+03 -5.544648 1.679337e-07 7.572980e-06
## FAM98A 4.752059e+00 1.188365e+01 5.540550 1.711169e-07 7.687296e-06
## HADHA -5.269269e+01 1.995597e+02 -5.536497 1.743227e-07 7.801764e-06
## DCAF15 -7.614252e+00 1.807130e+01 -5.535443 1.751655e-07 7.810009e-06
## GSTZ1 -3.918747e+00 5.734021e+00 -5.532924 1.771968e-07 7.870991e-06
## EEF1D -2.857540e+02 2.657495e+02 -5.520415 1.876313e-07 8.303384e-06
## IFFO1 -1.022575e+01 2.912753e+01 -5.515356 1.920204e-07 8.466028e-06
## DVL1 -4.069836e+00 5.111012e+00 -5.514457 1.928110e-07 8.469403e-06
## TRAPPC2B -2.200170e+00 3.184848e+00 -5.512382 1.946468e-07 8.518492e-06
## PARVG -5.003978e+01 1.533990e+02 -5.510436 1.963844e-07 8.562939e-06
## NUDT22 -1.156934e+01 1.316011e+01 -5.509484 1.972406e-07 8.568768e-06
## HSD17B1 -4.665586e-01 6.280013e-01 -5.504085 2.021624e-07 8.750533e-06
## XRCC1 -7.949064e+00 2.436230e+01 -5.502249 2.038627e-07 8.769564e-06
## SGO1 9.623787e-01 1.233835e+00 5.502015 2.040809e-07 8.769564e-06
## SCAMP2 -3.063344e+01 9.379822e+01 -5.498543 2.073392e-07 8.877412e-06
## DGKQ -8.881928e+00 1.339824e+01 -5.491549 2.140581e-07 9.132117e-06
## POLA1 2.097098e+00 4.077027e+00 5.488418 2.171336e-07 9.230125e-06
## CDCA2 1.795770e+00 1.762604e+00 5.486228 2.193117e-07 9.289417e-06
## CCDC130 -5.708232e+00 1.241224e+01 -5.484636 2.209077e-07 9.323720e-06
## ABHD17A -1.276787e+01 1.314446e+01 -5.482182 2.233899e-07 9.324948e-06
## CORO7 -5.140445e+01 6.196403e+01 -5.481893 2.236844e-07 9.324948e-06
## CD48 -1.731792e+02 4.285098e+02 -5.481832 2.237472e-07 9.324948e-06
## HIRA 1.278372e+01 3.862961e+01 5.481503 2.240818e-07 9.324948e-06
## HSPA1A -1.255024e+02 1.697230e+02 -5.479736 2.258918e-07 9.367400e-06
## EXOC3 -1.175825e+01 4.017123e+01 -5.478745 2.269134e-07 9.376979e-06
## ARNTL2 1.623485e+00 2.754961e+00 5.475902 2.298694e-07 9.466148e-06
## MCM8 2.461352e+00 4.723672e+00 5.472391 2.335702e-07 9.585269e-06
## ZSCAN29 7.520233e+00 1.847486e+01 5.469197 2.369889e-07 9.692028e-06
## PLA2G6 -6.243831e+00 1.043224e+01 -5.460944 2.460489e-07 1.001324e-05
## CENPU 3.794188e+00 5.718738e+00 5.460512 2.465317e-07 1.001324e-05
## PPP6R2 -1.743933e+01 4.765179e+01 -5.457450 2.499856e-07 1.011887e-05
## DOK4 -3.062270e+00 4.788552e+00 -5.452675 2.554660e-07 1.030553e-05
## ACADM 8.728080e+00 2.094770e+01 5.450837 2.576062e-07 1.035664e-05
## ZFAND4 1.913510e+00 5.305844e+00 5.448806 2.599916e-07 1.039204e-05
## SERPINB6 -3.423668e+01 6.216465e+01 -5.448597 2.602391e-07 1.039204e-05
## CCNQ -5.173481e+00 9.102508e+00 -5.446772 2.624028e-07 1.044328e-05
## ATAD5 1.309173e+00 2.339838e+00 5.441433 2.688355e-07 1.064455e-05
## MTHFD1 5.005224e+00 1.111267e+01 5.441089 2.692550e-07 1.064455e-05
## SPNS1 -8.331380e+00 1.207527e+01 -5.440123 2.704373e-07 1.065577e-05
## SART1 -3.138160e+01 5.642193e+01 -5.433921 2.781473e-07 1.091002e-05
## PYCARD -5.502662e+01 7.104117e+01 -5.433053 2.792439e-07 1.091002e-05
## KCNQ1 -1.114314e+01 2.659564e+01 -5.432732 2.796498e-07 1.091002e-05
## MAN2B1 -5.319673e+01 9.714994e+01 -5.430884 2.820010e-07 1.093240e-05
## YEATS2 7.497742e+00 2.274426e+01 5.430833 2.820669e-07 1.093240e-05
## AKT1S1 -6.921332e+00 1.139058e+01 -5.427934 2.857939e-07 1.103167e-05
## ATF6B -1.674200e+01 7.748992e+01 -5.426702 2.873933e-07 1.103167e-05
## EGLN2 -1.217990e+02 1.603529e+02 -5.426683 2.874187e-07 1.103167e-05
## CDC37 -4.142183e+01 9.211347e+01 -5.425009 2.896048e-07 1.107972e-05
## TMEM129 -8.682461e+00 1.830864e+01 -5.423682 2.913499e-07 1.110675e-05
## TMEM259 -3.005839e+01 6.005994e+01 -5.422531 2.928720e-07 1.110675e-05
## RTL8A -3.312197e+00 6.778449e+00 -5.422343 2.931207e-07 1.110675e-05
## CDCA7 2.491215e+00 3.371571e+00 5.413176 3.055319e-07 1.153285e-05
## POLR2E -2.848734e+01 3.925324e+01 -5.412300 3.067446e-07 1.153285e-05
## TMEM115 -1.371302e+01 2.430034e+01 -5.411419 3.079686e-07 1.153285e-05
## BCKDHA -1.715660e+01 3.072037e+01 -5.411213 3.082557e-07 1.153285e-05
## KIF15 2.445759e+00 2.471721e+00 5.408182 3.125080e-07 1.162492e-05
## TBCB -2.228206e+01 4.505945e+01 -5.408063 3.126770e-07 1.162492e-05
## NET1 5.560357e+00 8.979555e+00 5.406404 3.150286e-07 1.167575e-05
## UBXN1 -5.936937e+01 8.588660e+01 -5.402131 3.211698e-07 1.186627e-05
## LPCAT1 -2.931652e+01 1.039814e+02 -5.396994 3.287064e-07 1.210701e-05
## B3GNT8 -2.059564e+01 2.107599e+01 -5.393931 3.332826e-07 1.223756e-05
## PDP2 1.912454e+00 4.398036e+00 5.392674 3.351779e-07 1.226917e-05
## SLC16A1 3.599729e+00 7.814640e+00 5.389386 3.401864e-07 1.237677e-05
## UBXN11 -4.535009e+01 5.223788e+01 -5.389374 3.402045e-07 1.237677e-05
## PSTPIP1 -7.589183e+01 1.156801e+02 -5.387071 3.437565e-07 1.246774e-05
## TNIK 7.496714e+00 1.449295e+01 5.382970 3.501709e-07 1.266167e-05
## BARD1 1.797786e+00 3.664282e+00 5.381464 3.525561e-07 1.270917e-05
## STK10 -9.617172e+01 3.211683e+02 -5.379341 3.559453e-07 1.278665e-05
## ARHGEF1 -8.843648e+01 1.995232e+02 -5.378770 3.568619e-07 1.278665e-05
## TPX2 5.182086e+00 5.671138e+00 5.376959 3.597867e-07 1.285262e-05
## TMEM250 -1.648194e+01 3.189680e+01 -5.372668 3.668062e-07 1.306403e-05
## BLM 3.750712e+00 7.675997e+00 5.368508 3.737406e-07 1.327115e-05
## SNX21 -3.346141e+00 7.582398e+00 -5.363302 3.825983e-07 1.354512e-05
## FKBP14 1.151920e+00 2.738380e+00 5.360388 3.876453e-07 1.364755e-05
## SDF4 -1.791374e+01 4.612987e+01 -5.360303 3.877929e-07 1.364755e-05
## SASS6 1.990176e+00 4.424492e+00 5.356127 3.951429e-07 1.386507e-05
## ARL6IP4 -6.837412e+01 8.013245e+01 -5.353586 3.996817e-07 1.398296e-05
## DBNL -1.161713e+02 2.778256e+02 -5.350420 4.054073e-07 1.414156e-05
## ZRSR2 -9.467434e+00 2.293016e+01 -5.345188 4.150457e-07 1.443531e-05
## ADAP1 -1.612134e+01 3.430717e+01 -5.343526 4.181529e-07 1.450086e-05
## ABHD11 -4.624788e+00 8.280971e+00 -5.342163 4.207190e-07 1.451124e-05
## HDHD5 -9.737224e+00 1.875453e+01 -5.342068 4.208995e-07 1.451124e-05
## UCP2 -1.228326e+02 1.718684e+02 -5.338795 4.271265e-07 1.468325e-05
## PLEKHM2 -1.963007e+01 4.673070e+01 -5.337439 4.297329e-07 1.473015e-05
## SPICE1 1.566220e+00 3.300865e+00 5.334365 4.356988e-07 1.489161e-05
## C15orf39 -7.498826e+01 1.381994e+02 -5.332791 4.387846e-07 1.493482e-05
## EIF4E 1.079234e+01 3.974712e+01 5.332437 4.394816e-07 1.493482e-05
## CACFD1 -2.782354e+00 3.413359e+00 -5.329475 4.453558e-07 1.509120e-05
## FOLR2 -2.707012e+00 2.761971e+00 -5.326212 4.519157e-07 1.526986e-05
## CATIP -5.783819e-01 5.528792e-01 -5.324694 4.550003e-07 1.533041e-05
## ALG11 6.991174e+00 1.672117e+01 5.320779 4.630473e-07 1.555734e-05
## LRCH4 -5.964585e+01 1.139145e+02 -5.319572 4.655567e-07 1.559746e-05
## INO80B -3.282846e+00 8.678664e+00 -5.317494 4.699077e-07 1.569889e-05
## EIF3G -5.825078e+01 7.738905e+01 -5.315327 4.744891e-07 1.577923e-05
## TRAM2 1.330935e+01 1.831649e+01 5.315099 4.749736e-07 1.577923e-05
## FRS3 -1.457850e+00 2.447842e+00 -5.313598 4.781743e-07 1.581091e-05
## FAAH -5.733482e+00 5.163740e+00 -5.313402 4.785932e-07 1.581091e-05
## INTS7 2.855443e+00 8.363574e+00 5.312026 4.815492e-07 1.582931e-05
## TNFSF13 -2.864555e+01 8.516356e+01 -5.311900 4.818195e-07 1.582931e-05
## CRTC1 -3.010819e+00 5.402910e+00 -5.311005 4.837530e-07 1.584892e-05
## FAM234A -8.669179e+00 1.168475e+01 -5.306278 4.940891e-07 1.614297e-05
## GPR137 -6.481722e+00 9.550849e+00 -5.305510 4.957878e-07 1.615396e-05
## SAT2 -1.772715e+01 3.396465e+01 -5.304076 4.989766e-07 1.621332e-05
## GTSE1 1.498665e+00 1.650940e+00 5.302800 5.018289e-07 1.626145e-05
## RCN3 -1.546904e+01 1.853455e+01 -5.296353 5.164936e-07 1.667120e-05
## DENND1C -2.572260e+01 6.290853e+01 -5.296010 5.172852e-07 1.667120e-05
## LYPLA2 -3.126574e+01 4.850174e+01 -5.294724 5.202666e-07 1.672185e-05
## S100PBP 6.218908e+00 2.305948e+01 5.291358 5.281419e-07 1.692909e-05
## FAM111A 2.970469e+01 7.331442e+01 5.288057 5.359806e-07 1.713404e-05
## CLTB -2.537551e+01 3.613798e+01 -5.279430 5.570048e-07 1.775827e-05
## PPP2R1B 3.368964e+00 1.189528e+01 5.276932 5.632417e-07 1.790897e-05
## CKAP2 4.416028e+00 1.082355e+01 5.276325 5.647687e-07 1.790951e-05
## NFIC -5.450886e+00 1.359472e+01 -5.273573 5.717373e-07 1.808215e-05
## SGTA -1.365416e+01 2.309352e+01 -5.271921 5.759600e-07 1.816725e-05
## FGD3 -1.384846e+02 2.872203e+02 -5.270022 5.808524e-07 1.827297e-05
## C18orf21 -5.174662e+00 1.751539e+01 -5.257857 6.131656e-07 1.923848e-05
## ZNF513 -2.984364e+00 9.470021e+00 -5.255661 6.191832e-07 1.937602e-05
## TNFRSF14 -5.996334e+01 8.717731e+01 -5.254430 6.225800e-07 1.943105e-05
## TSPAN4 -2.692855e+00 2.597940e+00 -5.250131 6.345915e-07 1.975395e-05
## ATP6V0D1 -1.665558e+02 3.232266e+02 -5.248395 6.395058e-07 1.985481e-05
## SLC35F2 2.143722e+00 3.301884e+00 5.243017 6.549655e-07 2.019393e-05
## PKN1 -9.323278e+01 1.353741e+02 -5.242961 6.551266e-07 2.019393e-05
## SLC66A2 -2.801891e+01 3.194441e+01 -5.242821 6.555364e-07 2.019393e-05
## HNRNPLL 1.341577e+01 3.087377e+01 5.239657 6.648065e-07 2.042644e-05
## RAD51 2.426656e+00 2.763694e+00 5.235732 6.764877e-07 2.068516e-05
## CCDC71 -7.136765e+00 1.504596e+01 -5.235657 6.767152e-07 2.068516e-05
## CNPY3 -1.864796e+02 3.547225e+02 -5.232650 6.857995e-07 2.090895e-05
## BCKDK -2.282520e+01 3.943819e+01 -5.231428 6.895284e-07 2.096874e-05
## ICAM3 -4.052528e+02 6.793966e+02 -5.224815 7.100393e-07 2.153725e-05
## UHRF1 3.235284e+00 4.605744e+00 5.221511 7.205116e-07 2.179559e-05
## ERF -1.074781e+01 1.976245e+01 -5.220972 7.222317e-07 2.179559e-05
## ZNF710 -1.107787e+01 2.654146e+01 -5.216628 7.362601e-07 2.211650e-05
## E4F1 -5.152914e+00 6.734053e+00 -5.216525 7.365951e-07 2.211650e-05
## SCYL1 -2.232244e+01 4.785456e+01 -5.213744 7.457203e-07 2.228436e-05
## NR1H2 -1.872536e+01 3.380674e+01 -5.213676 7.459436e-07 2.228436e-05
## XPOT 1.097023e+01 3.630472e+01 5.212277 7.505788e-07 2.236649e-05
## SOCS4 7.029888e+00 1.959322e+01 5.210773 7.555891e-07 2.241690e-05
## NT5C -6.796664e+00 9.491093e+00 -5.210635 7.560506e-07 2.241690e-05
## RNASEK -1.020025e+02 1.489011e+02 -5.209576 7.596004e-07 2.246599e-05
## CHD1L 5.755892e+00 1.843546e+01 5.205308 7.740758e-07 2.283716e-05
## PRKCSH -4.337975e+01 9.262552e+01 -5.204558 7.766471e-07 2.285616e-05
## LARP1 2.789898e+01 7.621258e+01 5.202596 7.834116e-07 2.293171e-05
## TBC1D10C -9.933761e+01 1.237966e+02 -5.202366 7.842093e-07 2.293171e-05
## NCAPD3 4.172680e+00 1.025959e+01 5.202134 7.850148e-07 2.293171e-05
## CAPNS1 -1.228500e+02 2.459115e+02 -5.199074 7.957010e-07 2.318677e-05
## TNFRSF1B -2.314604e+02 6.979230e+02 -5.196773 8.038343e-07 2.336636e-05
## MDH2 -2.878359e+01 5.830712e+01 -5.195446 8.085573e-07 2.344619e-05
## SH3BP1 -2.929038e+01 5.284604e+01 -5.194718 8.111616e-07 2.345005e-05
## GNL3L 8.337315e+00 2.936114e+01 5.194305 8.126450e-07 2.345005e-05
## EPN1 -2.750787e+01 3.854586e+01 -5.192107 8.205679e-07 2.354195e-05
## JUNB -1.547350e+02 1.695710e+02 -5.191706 8.220234e-07 2.354195e-05
## TTK 1.879087e+00 2.108625e+00 5.191587 8.224536e-07 2.354195e-05
## MASTL 3.682808e+00 8.050500e+00 5.191211 8.238204e-07 2.354195e-05
## ARSA -2.129979e+01 3.680211e+01 -5.190363 8.269101e-07 2.354195e-05
## SEPTIN9 -1.045177e+02 1.770292e+02 -5.190136 8.277396e-07 2.354195e-05
## LRP8 2.163803e+00 5.351551e+00 5.189207 8.311400e-07 2.358211e-05
## STARD4 7.060669e+00 1.238112e+01 5.188216 8.347852e-07 2.362900e-05
## SPHK2 -1.538172e+00 2.405806e+00 -5.183168 8.535855e-07 2.409529e-05
## NACA -1.540624e+02 4.856995e+02 -5.182707 8.553217e-07 2.409529e-05
## CENPL 8.315384e-01 2.131621e+00 5.180424 8.639760e-07 2.426224e-05
## POLE2 1.142797e+00 1.416959e+00 5.180067 8.653397e-07 2.426224e-05
## SOWAHD -3.878368e+00 6.818966e+00 -5.177688 8.744634e-07 2.446023e-05
## BATF3 -2.428046e+00 2.223752e+00 -5.168735 9.096472e-07 2.538451e-05
## RANBP3 -9.453311e+00 2.980396e+01 -5.166480 9.187219e-07 2.556470e-05
## ARHGAP1 -2.134991e+01 7.660466e+01 -5.166062 9.204155e-07 2.556470e-05
## APP 3.610120e+01 8.579951e+01 5.164568 9.264890e-07 2.567327e-05
## IMPA2 -4.121789e+01 5.859757e+01 -5.160279 9.441395e-07 2.610139e-05
## CTSZ -1.412274e+02 4.423528e+02 -5.149600 9.895283e-07 2.725484e-05
## MAP2K5 -1.749224e+00 5.856772e+00 -5.149386 9.904585e-07 2.725484e-05
## C1orf112 1.292732e+00 4.741065e+00 5.147850 9.971621e-07 2.737579e-05
## CEP152 2.873498e+00 5.899880e+00 5.146820 1.001686e-06 2.739009e-05
## GRK6 -1.163172e+02 2.211526e+02 -5.146680 1.002302e-06 2.739009e-05
## ATP2C1 1.097342e+01 3.465919e+01 5.143928 1.014490e-06 2.765943e-05
## SPIN1 6.020575e+00 1.530550e+01 5.142800 1.019526e-06 2.770901e-05
## RPL19 -5.098200e+02 7.975828e+02 -5.142476 1.020981e-06 2.770901e-05
## SHARPIN -1.701676e+01 1.932599e+01 -5.139857 1.032786e-06 2.796539e-05
## MTOR 9.471675e+00 3.125682e+01 5.139071 1.036352e-06 2.799803e-05
## SMARCD2 -2.829111e+01 1.008590e+02 -5.135111 1.054519e-06 2.824947e-05
## PAICS 8.939490e+00 2.055779e+01 5.135059 1.054760e-06 2.824947e-05
## LIN9 9.433957e-01 1.900948e+00 5.134973 1.055159e-06 2.824947e-05
## KCNAB2 -2.903896e+01 1.084747e+02 -5.134967 1.055187e-06 2.824947e-05
## IDH3G -1.791224e+01 3.108879e+01 -5.130972 1.073837e-06 2.868403e-05
## ALG10 6.864603e-01 1.896770e+00 5.128735 1.084419e-06 2.890159e-05
## RPS2 -5.644451e+02 6.653893e+02 -5.127224 1.091626e-06 2.902673e-05
## IGFLR1 -3.870699e+01 5.324574e+01 -5.126726 1.094009e-06 2.902673e-05
## EDEM1 3.283154e+01 8.903135e+01 5.125381 1.100477e-06 2.913317e-05
## GMEB1 4.341285e+00 2.241214e+01 5.122477 1.114569e-06 2.944051e-05
## USF2 -3.589892e+01 9.784618e+01 -5.119466 1.129366e-06 2.976506e-05
## GALK2 3.427455e+00 1.196634e+01 5.115366 1.149820e-06 3.023695e-05
## DHCR24 8.358509e+00 1.364447e+01 5.112227 1.165721e-06 3.058729e-05
## ATG4B -1.405355e+01 3.126570e+01 -5.111481 1.169534e-06 3.059768e-05
## TSC22D4 -6.453348e+01 1.116143e+02 -5.111140 1.171277e-06 3.059768e-05
## ZBTB47 -4.575022e+00 1.085733e+01 -5.109883 1.177737e-06 3.069880e-05
## ZNF688 -4.823102e+00 6.496270e+00 -5.105637 1.199811e-06 3.120561e-05
## CD300LF -6.240351e+01 1.197838e+02 -5.102823 1.214657e-06 3.140772e-05
## GLI4 -1.366139e+00 1.514855e+00 -5.102702 1.215302e-06 3.140772e-05
## COMT -9.896319e+00 1.564950e+01 -5.102660 1.215527e-06 3.140772e-05
## MTDH 3.193705e+01 9.650345e+01 5.097451 1.243507e-06 3.206085e-05
## BTBD2 -7.032845e+00 1.029058e+01 -5.094735 1.258342e-06 3.237298e-05
## PPP2R3B -3.481438e+00 4.742568e+00 -5.093888 1.263007e-06 3.241162e-05
## DNAJC4 -1.842709e+01 2.498282e+01 -5.093470 1.265310e-06 3.241162e-05
## ATP8A1 1.901638e+01 3.887458e+01 5.087236 1.300211e-06 3.323384e-05
## SPSB3 -2.717991e+01 3.523570e+01 -5.085970 1.307408e-06 3.334594e-05
## FCHO1 -1.559407e+01 2.976469e+01 -5.083351 1.322428e-06 3.365664e-05
## UBR1 1.010805e+01 2.268988e+01 5.080142 1.341064e-06 3.405786e-05
## PPP1R35 -6.827208e+00 1.035266e+01 -5.075714 1.367195e-06 3.464729e-05
## HJURP 3.424896e+00 3.574267e+00 5.074219 1.376128e-06 3.479931e-05
## AP4M1 -2.266641e+00 5.696577e+00 -5.073445 1.380773e-06 3.484247e-05
## HBA2 -4.627381e+03 2.670516e+03 -5.072714 1.385177e-06 3.487942e-05
## NCAPG2 4.803071e+00 6.530449e+00 5.068846 1.408701e-06 3.538221e-05
## ARSB 8.436429e+00 2.308291e+01 5.068454 1.411112e-06 3.538221e-05
## REEP3 7.637914e+00 2.334613e+01 5.066590 1.422607e-06 3.559518e-05
## CASTOR1 -1.394114e+00 1.811159e+00 -5.065561 1.428987e-06 3.567954e-05
## SARS1 -2.526893e+01 8.426163e+01 -5.058381 1.474323e-06 3.665965e-05
## NADSYN1 -2.681602e+01 7.232743e+01 -5.058365 1.474423e-06 3.665965e-05
## ZNF358 -3.133056e+00 2.678694e+00 -5.055654 1.491906e-06 3.701675e-05
## TAF5 1.162613e+00 6.139433e+00 5.052659 1.511451e-06 3.742341e-05
## CD2BP2 -3.936612e+01 1.251863e+02 -5.052130 1.514929e-06 3.743138e-05
## PLA2G7 -3.676990e+00 4.290104e+00 -5.050378 1.526502e-06 3.763891e-05
## MCUR1 5.107078e+00 1.395039e+01 5.044088 1.568769e-06 3.860082e-05
## CCDC134 3.148213e+00 8.867526e+00 5.043497 1.572803e-06 3.861996e-05
## MAPK9 4.545278e+00 2.051185e+01 5.042707 1.578199e-06 3.867241e-05
## CDH13 -7.842200e-01 1.223656e+00 -5.041685 1.585219e-06 3.876432e-05
## PKD2 2.975938e+00 6.841540e+00 5.040713 1.591917e-06 3.884802e-05
## UBOX5 -5.090633e+00 1.442422e+01 -5.038874 1.604667e-06 3.906926e-05
## PLA2G15 -9.670760e+00 1.364228e+01 -5.038458 1.607572e-06 3.906926e-05
## ACAA1 -8.267789e+01 1.934182e+02 -5.037267 1.615894e-06 3.919121e-05
## INTS1 -1.153403e+01 1.784814e+01 -5.036639 1.620302e-06 3.921793e-05
## SLC2A6 -1.344060e+01 1.438559e+01 -5.033940 1.639374e-06 3.951510e-05
## RPL8 -6.113283e+02 6.032670e+02 -5.033593 1.641842e-06 3.951510e-05
## CCDC88B -9.350420e+01 1.197151e+02 -5.033422 1.643063e-06 3.951510e-05
## EEF2 -1.425343e+02 3.273209e+02 -5.033023 1.645907e-06 3.951510e-05
## NCOA3 3.690765e+01 8.477207e+01 5.032556 1.649241e-06 3.951514e-05
## MYG1 -8.194135e+00 1.438284e+01 -5.031939 1.653659e-06 3.954111e-05
## TARS1 1.003769e+01 3.090826e+01 5.028172 1.680873e-06 4.011096e-05
## POGLUT3 2.462503e+00 5.595443e+00 5.026799 1.690902e-06 4.026928e-05
## MED11 -1.020106e+01 2.602434e+01 -5.024788 1.705696e-06 4.054019e-05
## MPHOSPH9 3.705478e+00 7.194862e+00 5.023730 1.713531e-06 4.064495e-05
## DLGAP5 4.221903e+00 4.193011e+00 5.022958 1.719268e-06 4.069964e-05
## RACK1 -3.490109e+02 6.840549e+02 -5.018240 1.754734e-06 4.145646e-05
## CYHR1 -1.010151e+01 1.810429e+01 -5.016652 1.766836e-06 4.165938e-05
## NACC1 -9.505342e+00 2.547819e+01 -5.015481 1.775809e-06 4.174712e-05
## SCD 6.603614e+00 8.327400e+00 5.015008 1.779444e-06 4.174712e-05
## EIF2AK1 4.174348e+01 1.240806e+02 5.014444 1.783797e-06 4.174712e-05
## EME1 6.554512e-01 8.328714e-01 5.013969 1.787461e-06 4.174712e-05
## KIF20B 2.861484e+00 5.553991e+00 5.013828 1.788551e-06 4.174712e-05
## CBX8 -1.583981e+00 2.949253e+00 -5.013424 1.791677e-06 4.174712e-05
## CENPE 3.688219e+00 4.188713e+00 5.012568 1.798322e-06 4.181980e-05
## CHMP6 -1.098404e+01 1.500705e+01 -5.005015 1.858005e-06 4.312317e-05
## CEP128 2.080825e+00 2.654485e+00 5.003869 1.867226e-06 4.325255e-05
## CYBC1 -1.188685e+02 1.942781e+02 -5.001406 1.887201e-06 4.361215e-05
## PNPLA6 -4.778818e+01 6.076791e+01 -5.001050 1.890105e-06 4.361215e-05
## MAF1 -2.968849e+01 6.724306e+01 -4.999952 1.899086e-06 4.373430e-05
## MED1 1.316425e+01 3.488881e+01 4.995911 1.932503e-06 4.441760e-05
## ESRRA -8.624043e+00 2.287860e+01 -4.994133 1.947392e-06 4.467325e-05
## CIRBP -9.226270e+01 2.013316e+02 -4.993439 1.953228e-06 4.472063e-05
## CCDC61 -3.433878e+00 4.173247e+00 -4.990190 1.980799e-06 4.526451e-05
## TBC1D10B -3.001026e+01 6.165357e+01 -4.989236 1.988966e-06 4.536373e-05
## MMP14 -2.965386e+00 3.941682e+00 -4.988617 1.994282e-06 4.539766e-05
## TOR2A -7.285221e+00 1.410818e+01 -4.988012 1.999490e-06 4.542902e-05
## AP5Z1 -1.248864e+01 2.355558e+01 -4.987397 2.004800e-06 4.546258e-05
## NNT 9.113995e+00 3.187482e+01 4.985693 2.019578e-06 4.571030e-05
## KIF24 5.932156e-01 8.539490e-01 4.983605 2.037834e-06 4.603564e-05
## ALKBH4 -1.733563e+00 5.552355e+00 -4.981120 2.059777e-06 4.644288e-05
## CCDC106 -8.876826e-01 1.103475e+00 -4.979868 2.070910e-06 4.660529e-05
## DEF6 -6.066499e+01 1.396421e+02 -4.976558 2.100647e-06 4.711460e-05
## TMUB1 -6.584936e+00 6.908028e+00 -4.976144 2.104393e-06 4.711460e-05
## PCGF5 2.742175e+01 5.694832e+01 4.976026 2.105459e-06 4.711460e-05
## BRIP1 1.112802e+00 2.504174e+00 4.972017 2.142109e-06 4.784447e-05
## ANKIB1 9.720362e+00 2.255026e+01 4.970486 2.156274e-06 4.807031e-05
## LHPP -5.811476e+00 8.294695e+00 -4.967152 2.187420e-06 4.867317e-05
## DCAF10 8.949659e+00 2.555328e+01 4.966048 2.197825e-06 4.881312e-05
## EML3 -1.834513e+01 4.758364e+01 -4.964077 2.216532e-06 4.913658e-05
## SGSM3 -1.294812e+01 2.723509e+01 -4.963013 2.226697e-06 4.919486e-05
## BIRC6 3.451856e+01 7.190745e+01 4.962779 2.228938e-06 4.919486e-05
## NOP53 -1.057081e+02 9.809079e+01 -4.962501 2.231605e-06 4.919486e-05
## INTS4 4.003093e+00 2.197453e+01 4.961305 2.243099e-06 4.935651e-05
## DHX33 2.248548e+00 7.645431e+00 4.959447 2.261085e-06 4.963534e-05
## ABCD4 -7.136766e+00 1.887275e+01 -4.958814 2.267242e-06 4.963534e-05
## CD38 1.849832e+01 2.185368e+01 4.958398 2.271301e-06 4.963534e-05
## STXBP2 -1.485427e+02 2.493379e+02 -4.958274 2.272512e-06 4.963534e-05
## SIKE1 7.623599e+00 2.195678e+01 4.957385 2.281205e-06 4.973363e-05
## S1PR4 -9.542286e+01 8.645349e+01 -4.956550 2.289400e-06 4.982070e-05
## G6PC3 -1.047600e+01 1.557827e+01 -4.955323 2.301503e-06 4.999236e-05
## RIMKLB 1.719609e+00 3.286410e+00 4.952474 2.329825e-06 5.051503e-05
## LMAN1 2.249614e+01 2.938228e+01 4.951785 2.336728e-06 5.057226e-05
## UBTD1 -7.093816e+00 9.114590e+00 -4.949730 2.357437e-06 5.091951e-05
## NFATC2IP 6.856000e+00 2.723838e+01 4.949342 2.361360e-06 5.091951e-05
## NDUFB5 -8.465036e+00 3.728487e+01 -4.946976 2.385455e-06 5.134573e-05
## DLG1 6.830573e+00 1.788671e+01 4.945044 2.405308e-06 5.167926e-05
## RHOT2 -2.971099e+01 4.303786e+01 -4.943721 2.418995e-06 5.187935e-05
## NECAP2 -2.079981e+01 8.799286e+01 -4.942267 2.434130e-06 5.210972e-05
## PHB2 -3.935954e+01 9.922310e+01 -4.936483 2.495234e-06 5.332157e-05
## MYCBP2 3.269707e+01 6.689463e+01 4.934222 2.519519e-06 5.374369e-05
## SLC9A3R1 -7.695778e+01 1.637925e+02 -4.933784 2.524254e-06 5.374803e-05
## TGFBI -6.618281e+01 1.059929e+02 -4.931714 2.546730e-06 5.412413e-05
## ARHGEF12 1.373407e+01 2.203827e+01 4.931319 2.551044e-06 5.412413e-05
## CASP10 2.790094e+01 6.485548e+01 4.930284 2.562368e-06 5.426729e-05
## OCEL1 -6.053988e+00 8.598829e+00 -4.929262 2.573610e-06 5.440822e-05
## SLC16A3 -1.306397e+02 1.816934e+02 -4.927903 2.588619e-06 5.462816e-05
## MBOAT7 -2.059560e+02 3.280778e+02 -4.927319 2.595103e-06 5.466771e-05
## BABAM2 -8.067966e+00 2.734741e+01 -4.926859 2.600211e-06 5.467820e-05
## CALU 1.146926e+01 2.990786e+01 4.925475 2.615661e-06 5.490574e-05
## CTDSP1 -1.406174e+02 2.903284e+02 -4.924604 2.625427e-06 5.501337e-05
## WDR13 -2.159398e+01 3.330578e+01 -4.923739 2.635166e-06 5.512005e-05
## MYO1G -4.856297e+01 9.704217e+01 -4.922412 2.650158e-06 5.533604e-05
## RENBP -1.597450e+01 2.630851e+01 -4.921279 2.663038e-06 5.540181e-05
## PNKP -6.808318e+00 1.543807e+01 -4.920949 2.666801e-06 5.540181e-05
## DPY19L1 4.988423e+00 1.366785e+01 4.920903 2.667321e-06 5.540181e-05
## IRF2BP1 -1.806453e+00 3.893644e+00 -4.916170 2.721853e-06 5.643563e-05
## HMGCS1 7.478294e+00 2.155242e+01 4.914841 2.737349e-06 5.665786e-05
## RRM1 6.627295e+00 1.716788e+01 4.912898 2.760168e-06 5.682886e-05
## TTF1 4.494513e+00 1.657198e+01 4.912839 2.760865e-06 5.682886e-05
## INO80E -8.179555e+00 1.610606e+01 -4.912602 2.763667e-06 5.682886e-05
## EDRF1 3.695850e+00 1.457291e+01 4.912508 2.764777e-06 5.682886e-05
## DDRGK1 -7.057465e+00 1.619401e+01 -4.910010 2.794430e-06 5.733899e-05
## RABEPK -4.820007e+00 1.522785e+01 -4.905297 2.851231e-06 5.840346e-05
## ORC6 9.911427e-01 1.587685e+00 4.903894 2.868357e-06 5.865295e-05
## RBM10 -1.304823e+01 3.476605e+01 -4.902339 2.887462e-06 5.894199e-05
## MAP3K11 -4.930691e+01 8.308636e+01 -4.898666 2.933055e-06 5.976981e-05
## BMP8B 1.303022e+00 2.344230e+00 4.896786 2.956664e-06 6.014758e-05
## MRTFA -2.316602e+01 6.588437e+01 -4.895568 2.972058e-06 6.035721e-05
## RAB4B -2.243256e+01 3.842153e+01 -4.894232 2.989031e-06 6.059813e-05
## FKBP8 -3.136539e+02 3.546305e+02 -4.892318 3.013525e-06 6.099046e-05
## KIFC2 -6.693231e+00 8.742958e+00 -4.891321 3.026346e-06 6.114559e-05
## SRD5A3 -2.979382e+00 5.860785e+00 -4.890383 3.038472e-06 6.128618e-05
## KLHL22 -6.257750e+00 1.148237e+01 -4.889937 3.044245e-06 6.129838e-05
## TMEM88 -3.032368e+00 4.722608e+00 -4.889464 3.050389e-06 6.131800e-05
## PFKL -2.598373e+01 3.511668e+01 -4.887804 3.072032e-06 6.164856e-05
## NHLRC2 3.873005e+00 1.106596e+01 4.886511 3.088999e-06 6.182020e-05
## LRRC37A3 3.021246e+00 6.371172e+00 4.886358 3.091010e-06 6.182020e-05
## TNK2 -2.488773e+01 4.660747e+01 -4.884759 3.112134e-06 6.201149e-05
## EHBP1L1 -7.668734e+01 2.309080e+02 -4.884595 3.114306e-06 6.201149e-05
## RPS9 -5.010002e+02 7.184505e+02 -4.884447 3.116260e-06 6.201149e-05
## ADAM8 -1.583780e+02 3.010802e+02 -4.878092 3.201689e-06 6.360240e-05
## TFAP4 -1.147664e+00 1.811167e+00 -4.877708 3.206934e-06 6.360240e-05
## ARHGDIA -5.166008e+01 7.885851e+01 -4.876417 3.224581e-06 6.384563e-05
## MANEA 4.921488e+00 8.094560e+00 4.875255 3.240566e-06 6.405518e-05
## SH3BGRL3 -4.880365e+02 8.286535e+02 -4.873985 3.258113e-06 6.429487e-05
## GART 7.685460e+00 2.536515e+01 4.872511 3.278591e-06 6.459152e-05
## MCM2 6.577156e+00 9.678482e+00 4.871818 3.288261e-06 6.467458e-05
## GPBAR1 -7.692225e+00 8.252092e+00 -4.870985 3.299928e-06 6.477402e-05
## CHMP2A -1.086893e+02 2.089416e+02 -4.870613 3.305148e-06 6.477402e-05
## UHRF2 7.844043e+00 3.005601e+01 4.870289 3.309701e-06 6.477402e-05
## MPG -7.811562e+00 8.838878e+00 -4.869520 3.320537e-06 6.487902e-05
## ENDOV -1.154225e+00 1.723702e+00 -4.864933 3.385880e-06 6.591599e-05
## PLCB3 -4.025879e+00 9.166749e+00 -4.864732 3.388772e-06 6.591599e-05
## OSGEP -1.020918e+01 2.499738e+01 -4.864627 3.390283e-06 6.591599e-05
## DNAJB2 -2.273647e+01 3.986088e+01 -4.863442 3.407382e-06 6.614002e-05
## CDC14B 7.743101e+00 1.230706e+01 4.862053 3.427538e-06 6.642255e-05
## PACS1 -4.342740e+01 1.243962e+02 -4.861285 3.438728e-06 6.653069e-05
## FAM149B1 4.971116e+00 1.422734e+01 4.860365 3.452189e-06 6.668234e-05
## BCAP31 -7.141722e+01 1.461989e+02 -4.858375 3.481471e-06 6.713862e-05
## ERCC6L 8.834414e-01 1.118754e+00 4.857381 3.496177e-06 6.731277e-05
## PPP2R1A -5.938187e+01 1.109987e+02 -4.855440 3.525084e-06 6.775931e-05
## RNASEH1 4.089774e+00 1.494570e+01 4.854830 3.534222e-06 6.782504e-05
## SETX 7.575580e+01 1.878250e+02 4.851919 3.578120e-06 6.855654e-05
## HEATR5B 1.440003e+01 3.040281e+01 4.850288 3.602943e-06 6.892081e-05
## CDCA5 4.308789e+00 4.949994e+00 4.849302 3.618043e-06 6.909821e-05
## USP6NL 4.282083e+00 9.523376e+00 4.846588 3.659891e-06 6.978506e-05
## CDK9 -1.144847e+01 3.864615e+01 -4.842544 3.723137e-06 7.077964e-05
## C12orf75 1.159714e+01 1.883601e+01 4.842490 3.723988e-06 7.077964e-05
## PNPLA2 -2.463751e+01 4.696022e+01 -4.841681 3.736756e-06 7.090869e-05
## CAPZB -1.406434e+02 4.180101e+02 -4.838891 3.781158e-06 7.163664e-05
## MED15 -1.422927e+01 3.682910e+01 -4.837715 3.800028e-06 7.173184e-05
## CAPN10 -4.667844e+00 7.217240e+00 -4.837498 3.803529e-06 7.173184e-05
## SCAMP4 -4.374742e+00 1.125526e+01 -4.837448 3.804328e-06 7.173184e-05
## LIN52 1.861369e+00 6.449285e+00 4.836386 3.821467e-06 7.194064e-05
## NFX1 6.652697e+00 2.472729e+01 4.835856 3.830042e-06 7.198780e-05
## PWWP2B -3.030413e+00 4.062516e+00 -4.833627 3.866329e-06 7.255485e-05
## TAPBP -1.158274e+02 2.464338e+02 -4.830204 3.922724e-06 7.349685e-05
## COASY -2.243975e+01 4.948381e+01 -4.829370 3.936577e-06 7.352666e-05
## TCF25 -2.594384e+01 6.821969e+01 -4.829362 3.936714e-06 7.352666e-05
## USP48 1.049842e+01 5.022570e+01 4.826579 3.983291e-06 7.425418e-05
## TP53I11 -5.028784e+01 8.715598e+01 -4.826288 3.988188e-06 7.425418e-05
## JAML -6.474979e+02 1.197389e+03 -4.824445 4.019375e-06 7.471754e-05
## BAG6 -2.662151e+01 1.182935e+02 -4.823168 4.041116e-06 7.500413e-05
## CDC42BPA 1.196475e+00 1.982018e+00 4.822499 4.052557e-06 7.509895e-05
## AATF -1.284334e+01 5.585634e+01 -4.817398 4.140796e-06 7.661442e-05
## CROCC -3.498733e+00 4.274006e+00 -4.816769 4.151814e-06 7.669862e-05
## MAPKAPK3 -5.195215e+01 1.593994e+02 -4.816089 4.163746e-06 7.673370e-05
## GNAI2 -2.143387e+02 6.991300e+02 -4.815747 4.169763e-06 7.673370e-05
## FAM98C -5.080821e+00 9.498352e+00 -4.815556 4.173123e-06 7.673370e-05
## RDX 3.971318e+00 9.716763e+00 4.814553 4.190820e-06 7.693982e-05
## ECT2 3.292440e+00 7.316110e+00 4.813103 4.216546e-06 7.729247e-05
## DOK2 -5.836907e+01 7.500722e+01 -4.811567 4.243960e-06 7.755747e-05
## FOXM1 3.890518e+00 4.901730e+00 4.811257 4.249514e-06 7.755747e-05
## CEP76 8.288247e-01 2.212199e+00 4.811195 4.250620e-06 7.755747e-05
## PITPNB 7.461481e+00 3.265382e+01 4.808845 4.292952e-06 7.811824e-05
## AGPAT2 -1.866584e+01 2.308495e+01 -4.808418 4.300689e-06 7.811824e-05
## TYROBP -3.912923e+02 6.529630e+02 -4.808395 4.301114e-06 7.811824e-05
## CSF1R -6.407443e+01 9.314737e+01 -4.807758 4.312689e-06 7.820871e-05
## FAM122C 1.161969e+00 3.209902e+00 4.804780 4.367160e-06 7.893132e-05
## TAB1 -6.818221e+00 1.541310e+01 -4.804591 4.370638e-06 7.893132e-05
## BRCA1 6.180032e+00 1.275272e+01 4.804490 4.372503e-06 7.893132e-05
## TMEM134 -4.426232e+00 5.038670e+00 -4.803751 4.386147e-06 7.905729e-05
## SRF -2.295890e+01 5.850857e+01 -4.801664 4.424880e-06 7.963442e-05
## EEF1G -7.785628e+02 1.192537e+03 -4.801262 4.432384e-06 7.964860e-05
## ARRB1 -3.687931e+01 1.067599e+02 -4.800560 4.445517e-06 7.976375e-05
## CENPK 2.737779e+00 3.789117e+00 4.799694 4.461756e-06 7.993418e-05
## SOS1 1.490570e+01 3.596716e+01 4.798787 4.478826e-06 8.011896e-05
## SCRN2 -7.422941e+00 1.024813e+01 -4.797591 4.501456e-06 8.040251e-05
## GSDMD -4.390974e+01 5.409087e+01 -4.796570 4.520836e-06 8.062724e-05
## SLC25A28 -2.017275e+01 4.201629e+01 -4.795437 4.542453e-06 8.087910e-05
## COMMD5 -8.888828e+00 1.860388e+01 -4.795116 4.548597e-06 8.087910e-05
## MARS1 2.146715e+01 1.075905e+02 4.794425 4.561852e-06 8.099337e-05
## CDCA8 2.830496e+00 4.144365e+00 4.789607 4.655273e-06 8.252847e-05
## POLD4 -5.719753e+01 8.465221e+01 -4.786731 4.711923e-06 8.330320e-05
## H2BC11 1.819984e+00 3.239165e+00 4.786676 4.713023e-06 8.330320e-05
## SPC25 1.625616e+00 2.387813e+00 4.782658 4.793309e-06 8.459619e-05
## TRPM7 1.207314e+01 3.352956e+01 4.781685 4.812946e-06 8.481656e-05
## RPUSD1 -6.705009e+00 6.725533e+00 -4.778594 4.875851e-06 8.579762e-05
## SSNA1 -2.041021e+01 2.442246e+01 -4.777411 4.900130e-06 8.602046e-05
## RGS12 -1.822091e+00 2.385566e+00 -4.777168 4.905148e-06 8.602046e-05
## ELOB -6.105466e+01 5.956803e+01 -4.776919 4.910274e-06 8.602046e-05
## NDUFS1 9.325921e+00 3.990601e+01 4.775395 4.941799e-06 8.644503e-05
## TELO2 -5.459936e+00 5.477321e+00 -4.771472 5.023862e-06 8.775111e-05
## EIF3F -5.759996e+01 1.320393e+02 -4.769260 5.070696e-06 8.843890e-05
## EIF4EBP3 -7.574716e+00 1.196776e+01 -4.768019 5.097171e-06 8.877011e-05
## MTFR2 7.856086e-01 1.739175e+00 4.766998 5.119053e-06 8.902048e-05
## TAF2 6.327261e+00 1.564937e+01 4.765444 5.152519e-06 8.947127e-05
## PPP1R32 -9.988175e-01 1.814344e+00 -4.762634 5.213583e-06 9.033359e-05
## ENG -6.448950e+00 7.517699e+00 -4.762459 5.217412e-06 9.033359e-05
## CENPB -2.500812e+01 3.313386e+01 -4.761458 5.239337e-06 9.058096e-05
## ZFPL1 -5.784410e+00 1.067588e+01 -4.758734 5.299487e-06 9.148751e-05
## KCNK6 -1.237331e+01 3.633130e+01 -4.757048 5.337048e-06 9.200202e-05
## GMEB2 -4.439272e+00 1.546603e+01 -4.754408 5.396392e-06 9.289000e-05
## SH2B2 -7.218767e+00 1.146082e+01 -4.751831 5.454913e-06 9.368969e-05
## JPT1 -8.351518e+01 1.543234e+02 -4.751668 5.458649e-06 9.368969e-05
## EMC10 -1.818876e+01 3.324849e+01 -4.750146 5.493540e-06 9.415229e-05
## PKHD1L1 4.676636e+00 6.406403e+00 4.748851 5.523377e-06 9.452706e-05
## MCFD2 1.291884e+01 4.247083e+01 4.747790 5.547951e-06 9.478677e-05
## WBP1 -2.073530e+01 4.403225e+01 -4.747507 5.554537e-06 9.478677e-05
## MIB2 -2.762684e+00 3.460727e+00 -4.747158 5.562635e-06 9.478858e-05
## ACD -5.078389e+00 8.312843e+00 -4.746356 5.581339e-06 9.497084e-05
## COPS7A -7.901275e+00 3.298952e+01 -4.744624 5.621909e-06 9.552412e-05
## TIPIN 9.783798e-01 2.310445e+00 4.743465 5.649222e-06 9.585089e-05
## CMTM7 -1.729439e+01 5.335599e+01 -4.740256 5.725528e-06 9.700681e-05
## STMN1 2.104951e+01 3.292449e+01 4.738635 5.764450e-06 9.742725e-05
## SPATS2 4.497649e+00 6.266650e+00 4.738459 5.768681e-06 9.742725e-05
## KIAA1614 2.491452e+00 4.105178e+00 4.737968 5.780535e-06 9.742725e-05
## ERCC1 -1.059891e+01 2.602666e+01 -4.737857 5.783203e-06 9.742725e-05
## ENO1 -3.309831e+02 6.216098e+02 -4.737081 5.801997e-06 9.760522e-05
## NUMA1 -2.006057e+01 6.524004e+01 -4.735824 5.832535e-06 9.797999e-05
## CCDC22 -9.606425e+00 1.477379e+01 -4.735218 5.847313e-06 9.799218e-05
## PSAP -6.411406e+02 2.632804e+03 -4.735117 5.849786e-06 9.799218e-05
## MPND -6.646546e+00 8.577298e+00 -4.731246 5.945111e-06 9.944854e-05
## ID3 -1.615214e+00 1.593617e+00 -4.730026 5.975469e-06 9.960793e-05
## ARFRP1 -1.343306e+01 1.691713e+01 -4.729661 5.984587e-06 9.960793e-05
## ZNF511 -5.890862e+00 1.132002e+01 -4.729546 5.987451e-06 9.960793e-05
## SGSH -1.266773e+01 2.312408e+01 -4.729515 5.988234e-06 9.960793e-05
## LYRM9 -1.965258e+00 4.286510e+00 -4.728994 6.001260e-06 9.968480e-05
## ZNF784 -3.958653e+00 6.822751e+00 -4.727595 6.036406e-06 1.001284e-04
## C1QTNF6 -2.037859e+00 3.743056e+00 -4.726782 6.056905e-06 1.003072e-04
## RIN1 -4.366428e+00 4.628575e+00 -4.726498 6.064106e-06 1.003072e-04
## RNF167 -7.330406e+01 1.992480e+02 -4.725728 6.083610e-06 1.004897e-04
## EFNB1 -2.188699e+00 3.525066e+00 -4.722682 6.161392e-06 1.016330e-04
## SKA1 2.159670e+00 2.946798e+00 4.722046 6.177743e-06 1.017612e-04
## NAA35 2.179896e+00 7.548764e+00 4.711072 6.466773e-06 1.063744e-04
## TMEM150A -2.880671e+00 4.694545e+00 -4.708216 6.544111e-06 1.074974e-04
## OXLD1 -9.624509e+00 1.535605e+01 -4.706392 6.593993e-06 1.081670e-04
## ARFGEF2 1.037384e+01 2.004439e+01 4.705220 6.626209e-06 1.085454e-04
## EIF3M -3.622158e+01 1.046939e+02 -4.701949 6.716982e-06 1.097438e-04
## C1orf35 -2.527267e+00 4.197782e+00 -4.701917 6.717876e-06 1.097438e-04
## MCRS1 -1.843783e+01 4.663987e+01 -4.697057 6.854981e-06 1.117485e-04
## TMEM175 -6.034034e+00 1.329342e+01 -4.696901 6.859435e-06 1.117485e-04
## TSPO -1.359584e+02 1.217790e+02 -4.695766 6.891843e-06 1.121224e-04
## CDC27 1.019814e+01 3.699892e+01 4.692129 6.996786e-06 1.136738e-04
## FBRSL1 -6.798189e+00 1.222482e+01 -4.691579 7.012782e-06 1.137778e-04
## CCDC18 1.741897e+00 5.339632e+00 4.690430 7.046297e-06 1.139407e-04
## LAMTOR2 -2.380087e+01 3.675093e+01 -4.690407 7.046997e-06 1.139407e-04
## CYB561A3 -1.490713e+01 4.109154e+01 -4.690038 7.057796e-06 1.139407e-04
## RPS6 -6.178566e+02 1.194081e+03 -4.689865 7.062868e-06 1.139407e-04
## CD74 -7.358764e+02 1.048920e+03 -4.689592 7.070857e-06 1.139407e-04
## RELT -2.825044e+01 7.667061e+01 -4.688440 7.104761e-06 1.143317e-04
## PHYH -1.310800e+00 3.697303e+00 -4.687723 7.125933e-06 1.144412e-04
## ANAPC1 1.005639e+01 4.388257e+01 4.687557 7.130866e-06 1.144412e-04
## CSNK2B -2.940978e+01 8.004811e+01 -4.685949 7.178611e-06 1.150518e-04
## CDK2AP2 -1.571894e+01 2.138118e+01 -4.684797 7.212999e-06 1.154469e-04
## GAK -1.041087e+01 4.015485e+01 -4.683438 7.253784e-06 1.158841e-04
## JOSD2 -2.839348e+00 2.372521e+00 -4.683236 7.259856e-06 1.158841e-04
## PPM1F -8.180606e+01 1.712101e+02 -4.682889 7.270316e-06 1.158951e-04
## GINS2 3.465802e+00 4.211891e+00 4.682327 7.287285e-06 1.160097e-04
## APEH -2.962377e+01 7.373473e+01 -4.681869 7.301137e-06 1.160744e-04
## FAM193B -2.513690e+01 7.591747e+01 -4.680680 7.337217e-06 1.164918e-04
## MMP24OS -2.058306e+01 3.034755e+01 -4.679857 7.362314e-06 1.167340e-04
## CORO1A -5.621241e+02 9.710792e+02 -4.678707 7.397488e-06 1.171351e-04
## EXOSC5 -3.420081e+00 3.921173e+00 -4.672176 7.600421e-06 1.201880e-04
## MIER2 -2.093070e+00 4.815209e+00 -4.671223 7.630493e-06 1.205029e-04
## RFC3 1.741416e+00 3.856438e+00 4.665927 7.799639e-06 1.228666e-04
## ZBTB22 -9.437828e+00 2.735622e+01 -4.665888 7.800888e-06 1.228666e-04
## FCER2 -1.158710e+01 8.835297e+00 -4.664782 7.836684e-06 1.232667e-04
## TUBGCP2 -1.020882e+01 3.021933e+01 -4.663127 7.890528e-06 1.238936e-04
## INCENP 1.240659e+00 2.695294e+00 4.662916 7.897433e-06 1.238936e-04
## AURKA 2.812899e+00 4.470423e+00 4.662402 7.914234e-06 1.239932e-04
## LAPTM5 -8.730081e+02 2.310992e+03 -4.662022 7.926699e-06 1.240246e-04
## DHFR 1.550792e+01 2.806569e+01 4.660244 7.985192e-06 1.247752e-04
## ACSF3 -5.988548e+00 1.153599e+01 -4.659455 8.011294e-06 1.250183e-04
## RECQL5 -4.797211e+00 1.335482e+01 -4.658487 8.043424e-06 1.251428e-04
## VPS13A 7.997002e+00 1.623763e+01 4.658475 8.043795e-06 1.251428e-04
## NEK2 1.587104e+00 1.748322e+00 4.658179 8.053657e-06 1.251428e-04
## UBE2J2 -8.563699e+00 2.843482e+01 -4.657944 8.061476e-06 1.251428e-04
## PACS2 -5.443097e+00 1.100868e+01 -4.655484 8.143870e-06 1.262566e-04
## ATPAF2 -2.552582e+00 6.526448e+00 -4.654563 8.174929e-06 1.265727e-04
## TTLL5 1.574143e+00 5.402496e+00 4.653930 8.196339e-06 1.267387e-04
## KIFC1 3.373296e+00 3.895032e+00 4.652856 8.232783e-06 1.271365e-04
## FLYWCH2 -2.657069e+00 2.980148e+00 -4.649704 8.340682e-06 1.281414e-04
## TSC2 -1.048637e+01 2.702053e+01 -4.649694 8.341025e-06 1.281414e-04
## C7orf50 -9.774666e+00 8.402341e+00 -4.649557 8.345746e-06 1.281414e-04
## C6orf226 -7.225258e-01 9.471067e-01 -4.649463 8.348996e-06 1.281414e-04
## CDIPT -2.558794e+01 6.149917e+01 -4.649379 8.351881e-06 1.281414e-04
## ITGB1 9.300135e+01 2.508506e+02 4.646946 8.436184e-06 1.292676e-04
## NDRG2 -3.164556e+00 4.379704e+00 -4.645700 8.479678e-06 1.296414e-04
## PSMB10 -5.540965e+01 6.302457e+01 -4.645622 8.482442e-06 1.296414e-04
## TACC3 -6.179143e+01 1.445115e+02 -4.643445 8.558958e-06 1.306425e-04
## BTN3A1 1.531090e+02 2.566035e+02 4.640114 8.677380e-06 1.322799e-04
## CHMP4B -4.840091e+01 1.371259e+02 -4.639404 8.702820e-06 1.324387e-04
## TPT1 -1.269153e+03 2.890233e+03 -4.639201 8.710136e-06 1.324387e-04
## AKAP8L -1.437428e+01 5.281197e+01 -4.638795 8.724722e-06 1.324391e-04
## RPL6 -3.992426e+02 8.469566e+02 -4.638579 8.732492e-06 1.324391e-04
## C19orf25 -7.686394e+00 9.995925e+00 -4.636374 8.812239e-06 1.334778e-04
## NSD3 3.809594e+01 9.646241e+01 4.635271 8.852406e-06 1.339152e-04
## PCLAF 6.720287e+00 8.655233e+00 4.634359 8.885711e-06 1.342478e-04
## RAD54B 6.893022e-01 1.374293e+00 4.631975 8.973442e-06 1.354008e-04
## RASGRP3 3.396020e+00 5.629790e+00 4.629610 9.061257e-06 1.365521e-04
## SNRNP70 -2.072479e+01 6.214085e+01 -4.628185 9.114599e-06 1.368276e-04
## TOLLIP -1.813754e+01 4.089486e+01 -4.628145 9.116101e-06 1.368276e-04
## ZNF707 -1.512360e+00 4.475382e+00 -4.628008 9.121262e-06 1.368276e-04
## TMEM53 -5.950469e-01 9.642774e-01 -4.627890 9.125684e-06 1.368276e-04
## ARFGAP2 -3.131354e+01 9.070118e+01 -4.627417 9.143483e-06 1.369214e-04
## PI4K2B 6.435561e+00 1.531449e+01 4.626979 9.159974e-06 1.369953e-04
## PDXDC1 9.277706e+00 2.722793e+01 4.626333 9.184379e-06 1.371873e-04
## ANP32E 1.562603e+01 4.607049e+01 4.625787 9.205014e-06 1.373226e-04
## CYB5R3 -2.223024e+01 4.821838e+01 -4.625454 9.217652e-06 1.373384e-04
## ATG16L2 -1.416164e+02 3.370351e+02 -4.624328 9.260475e-06 1.378033e-04
## FHOD1 -1.602725e+01 4.207058e+01 -4.623851 9.278677e-06 1.379011e-04
## TMEM64 3.146108e+00 1.042728e+01 4.622423 9.333360e-06 1.385402e-04
## TCEA1 1.252521e+01 6.240201e+01 4.619229 9.456778e-06 1.399545e-04
## ABCD1 -4.777117e+00 1.007647e+01 -4.619177 9.458796e-06 1.399545e-04
## DECR2 -9.250100e-01 1.056399e+00 -4.619042 9.464040e-06 1.399545e-04
## MCRIP1 -1.960878e+01 1.728762e+01 -4.618423 9.488157e-06 1.401364e-04
## PRR14L 2.010876e+01 4.775455e+01 4.617125 9.538940e-06 1.407112e-04
## CLASRP -1.116161e+01 3.717272e+01 -4.616793 9.551973e-06 1.407284e-04
## EHD1 -7.976642e+01 1.832896e+02 -4.615848 9.589145e-06 1.411008e-04
## B3GNTL1 -7.284468e+00 1.279576e+01 -4.612613 9.717484e-06 1.426713e-04
## UBE2C 2.865827e+00 4.610626e+00 4.612464 9.723448e-06 1.426713e-04
## B3GALT6 -6.354119e+00 9.230131e+00 -4.612251 9.731963e-06 1.426713e-04
## SMC6 5.783441e+00 1.899626e+01 4.611774 9.751031e-06 1.427744e-04
## ZNF385D -2.844912e+00 5.222245e+00 -4.609331 9.849382e-06 1.440366e-04
## UBXN2A 2.419941e+00 8.049690e+00 4.608797 9.871020e-06 1.441752e-04
## C2CD3 7.998266e+00 1.859546e+01 4.608460 9.884664e-06 1.441969e-04
## DHX15 1.359610e+01 5.893604e+01 4.607221 9.935100e-06 1.447546e-04
## NELFB -9.778609e+00 2.089472e+01 -4.605452 1.000749e-05 1.456305e-04
## TMEM102 -3.071876e+00 5.149900e+00 -4.602276 1.013880e-05 1.473271e-04
## ARID1B 9.381811e+00 2.962887e+01 4.602032 1.014892e-05 1.473271e-04
## SSX2IP 4.424806e+00 1.099070e+01 4.599343 1.026149e-05 1.487791e-04
## TCF20 1.751890e+01 4.303633e+01 4.598600 1.029282e-05 1.490510e-04
## SYNJ2 4.407715e+00 9.003649e+00 4.595796 1.041182e-05 1.505904e-04
## JMJD7 -2.412283e+00 5.397760e+00 -4.595046 1.044389e-05 1.507661e-04
## ZNF664 9.218992e+00 2.391788e+01 4.594509 1.046688e-05 1.507661e-04
## KIAA0930 -5.545376e+01 1.297134e+02 -4.594340 1.047414e-05 1.507661e-04
## B3GALT4 -1.087301e+01 1.684980e+01 -4.594325 1.047481e-05 1.507661e-04
## LTB -1.170965e+02 1.145366e+02 -4.593765 1.049886e-05 1.509290e-04
## GSTK1 -7.874155e+01 2.186417e+02 -4.592156 1.056831e-05 1.517435e-04
## STON1 9.689990e-01 1.746819e+00 4.591600 1.059240e-05 1.519056e-04
## TPI1 -1.626014e+02 3.607991e+02 -4.590012 1.066157e-05 1.527128e-04
## RPAP2 7.978806e+00 2.077064e+01 4.589174 1.069818e-05 1.530524e-04
## CYCS 1.321171e+01 4.779386e+01 4.588844 1.071266e-05 1.530749e-04
## FRMD3 9.696336e+00 1.583204e+01 4.586792 1.080306e-05 1.541809e-04
## CHMP1A -3.869671e+01 8.704788e+01 -4.585952 1.084027e-05 1.545260e-04
## FAM3A -7.915349e+00 1.098795e+01 -4.585121 1.087722e-05 1.547719e-04
## TXNRD2 -6.061830e+00 1.009480e+01 -4.584851 1.088926e-05 1.547719e-04
## TFEB -5.878368e+01 9.473989e+01 -4.584684 1.089668e-05 1.547719e-04
## GPAA1 -1.811142e+01 2.123605e+01 -4.584295 1.091407e-05 1.548336e-04
## SELENOO -9.103616e+00 1.127924e+01 -4.583624 1.094408e-05 1.550738e-04
## RPL27A -5.670836e+02 6.994942e+02 -4.583231 1.096166e-05 1.551376e-04
## MIER3 3.891784e+00 1.024188e+01 4.582491 1.099493e-05 1.554230e-04
## ZNF778 1.632957e+00 6.761855e+00 4.580691 1.107619e-05 1.562424e-04
## STMN3 -1.624409e+01 1.759112e+01 -4.580623 1.107924e-05 1.562424e-04
## NRM -8.009683e+00 1.595552e+01 -4.578910 1.115717e-05 1.570331e-04
## CYP51A1 5.534448e+00 1.331550e+01 4.578808 1.116180e-05 1.570331e-04
## SS18L1 2.065932e+00 9.890588e+00 4.578185 1.119031e-05 1.571114e-04
## RAD51AP1 1.869022e+00 2.255727e+00 4.578107 1.119386e-05 1.571114e-04
## HSF1 -6.453139e+00 1.526797e+01 -4.576910 1.124878e-05 1.576956e-04
## MXD4 -1.271249e+01 2.061608e+01 -4.576308 1.127652e-05 1.578979e-04
## ADRM1 -1.209985e+01 2.622650e+01 -4.575436 1.131679e-05 1.582749e-04
## PPP1CA -9.281177e+01 2.112399e+02 -4.574842 1.134430e-05 1.584728e-04
## ACAP1 -9.205917e+01 1.814443e+02 -4.574260 1.137130e-05 1.586631e-04
## TLK1 2.917925e+01 7.687831e+01 4.573847 1.139050e-05 1.587442e-04
## HIGD2A -2.138436e+01 3.950013e+01 -4.573457 1.140868e-05 1.587493e-04
## CACTIN -3.312806e+00 5.544140e+00 -4.573119 1.142447e-05 1.587493e-04
## TMEM161A -2.100574e+00 2.388716e+00 -4.572888 1.143525e-05 1.587493e-04
## GSTP1 -7.127316e+01 8.592448e+01 -4.572692 1.144440e-05 1.587493e-04
## CEP295 5.506089e+00 1.548510e+01 4.572148 1.146986e-05 1.589165e-04
## KCNQ5 6.117867e-01 1.012879e+00 4.570307 1.155645e-05 1.599294e-04
## IL18BP -2.896984e+00 6.305278e+00 -4.569582 1.159071e-05 1.600715e-04
## SUZ12 1.820865e+01 5.628733e+01 4.569519 1.159371e-05 1.600715e-04
## GPR180 2.198621e+00 5.340497e+00 4.568816 1.162705e-05 1.602146e-04
## RPS11 -9.251632e+02 1.485880e+03 -4.568457 1.164413e-05 1.602146e-04
## SMC3 1.402844e+01 4.415372e+01 4.568199 1.165639e-05 1.602146e-04
## RIC1 2.036287e+01 4.648304e+01 4.568163 1.165811e-05 1.602146e-04
## HECTD4 6.333140e+00 1.841572e+01 4.564946 1.181221e-05 1.621445e-04
## ZNF414 -1.625142e+00 1.781093e+00 -4.563289 1.189236e-05 1.629109e-04
## SH3TC2 2.375039e+00 3.758019e+00 4.563224 1.189552e-05 1.629109e-04
## LRRC29 -8.080372e-01 1.152030e+00 -4.561514 1.197884e-05 1.638628e-04
## LARP4 4.047100e+00 1.249580e+01 4.560493 1.202882e-05 1.643569e-04
## KIFAP3 5.219478e+00 1.393447e+01 4.559599 1.207277e-05 1.647675e-04
## CKAP5 7.654220e+00 2.002765e+01 4.557936 1.215494e-05 1.656983e-04
## BBS5 -2.432960e+00 6.521254e+00 -4.556892 1.220678e-05 1.662140e-04
## ZKSCAN3 1.088319e+00 4.269976e+00 4.556329 1.223480e-05 1.664045e-04
## POLH 2.939445e+00 1.322299e+01 4.555902 1.225613e-05 1.664515e-04
## RBBP8 3.993017e+00 1.393609e+01 4.555698 1.226633e-05 1.664515e-04
## MLLT1 -2.837615e+01 4.617664e+01 -4.554728 1.231491e-05 1.669198e-04
## GGA1 -1.653567e+01 3.310172e+01 -4.553345 1.238452e-05 1.676717e-04
## FSCN1 -7.469945e-01 1.136395e+00 -4.551355 1.248539e-05 1.687932e-04
## NSMCE1 -1.887628e+01 2.904887e+01 -4.551049 1.250092e-05 1.687932e-04
## GNB1L -9.128182e-01 8.240062e-01 -4.550618 1.252292e-05 1.687932e-04
## NCLN -2.705430e+01 4.016096e+01 -4.550591 1.252428e-05 1.687932e-04
## CNOT6 9.588616e+00 2.988508e+01 4.547095 1.270389e-05 1.710194e-04
## BBX 1.559064e+01 3.457360e+01 4.546733 1.272263e-05 1.710457e-04
## ASMTL -7.416375e+00 1.662093e+01 -4.546500 1.273468e-05 1.710457e-04
## SCAF1 -5.681919e+00 1.161429e+01 -4.544537 1.283685e-05 1.722229e-04
## GRHPR -9.658054e+00 2.369453e+01 -4.543327 1.290025e-05 1.727776e-04
## HAUS7 -4.525966e+00 6.169819e+00 -4.542966 1.291920e-05 1.727776e-04
## SLC22A18 -5.551606e+00 6.354724e+00 -4.542677 1.293438e-05 1.727776e-04
## SIRT6 -7.004866e+00 8.585883e+00 -4.542638 1.293647e-05 1.727776e-04
## COPE -4.584188e+01 7.238238e+01 -4.541471 1.299802e-05 1.733665e-04
## H2BC8 1.552358e+00 2.516798e+00 4.541248 1.300979e-05 1.733665e-04
## STX4 -1.808469e+01 5.384012e+01 -4.537421 1.321391e-05 1.758889e-04
## NSF 1.346555e+01 4.643718e+01 4.536314 1.327348e-05 1.761971e-04
## ANKRD36C 8.707438e-01 1.395668e+00 4.536166 1.328151e-05 1.761971e-04
## ZDHHC8 -2.258352e+00 3.354689e+00 -4.536104 1.328483e-05 1.761971e-04
## MAD2L1 3.645094e+00 5.855353e+00 4.535888 1.329649e-05 1.761971e-04
## SCAND1 -5.002725e+00 4.666259e+00 -4.532578 1.347656e-05 1.783840e-04
## ARHGEF5 2.026483e+00 3.774047e+00 4.531382 1.354222e-05 1.790531e-04
## D2HGDH -2.735631e+00 2.923586e+00 -4.530944 1.356633e-05 1.791722e-04
## AKR7A2 -6.821687e+00 1.283851e+01 -4.529061 1.367053e-05 1.803476e-04
## RSU1 2.846733e+01 7.403378e+01 4.525876 1.384843e-05 1.824915e-04
## C18orf54 6.474866e-01 1.642474e+00 4.525153 1.388918e-05 1.828254e-04
## SCUBE1 -6.946466e-01 1.213141e+00 -4.523809 1.396514e-05 1.836215e-04
## CREB3L2 7.557523e+00 1.981567e+01 4.522880 1.401788e-05 1.839136e-04
## BDP1 9.026508e+00 2.056879e+01 4.522871 1.401838e-05 1.839136e-04
## MIIP -2.022756e+01 3.057718e+01 -4.522461 1.404172e-05 1.839605e-04
## CCDC12 -2.177824e+01 3.068563e+01 -4.522221 1.405542e-05 1.839605e-04
## ZDHHC12 -1.192589e+01 1.645825e+01 -4.521992 1.406848e-05 1.839605e-04
## LANCL3 1.253916e+00 2.256862e+00 4.521690 1.408570e-05 1.839828e-04
## PATL1 4.138519e+01 9.050442e+01 4.518074 1.429381e-05 1.864957e-04
## ARHGAP21 1.109044e+01 2.269131e+01 4.517002 1.435607e-05 1.871022e-04
## LNPEP 2.572530e+01 7.994613e+01 4.516485 1.438621e-05 1.872892e-04
## VPS51 -2.231818e+01 2.467671e+01 -4.515770 1.442799e-05 1.876271e-04
## VANGL1 1.547832e+00 3.245556e+00 4.513765 1.454568e-05 1.889505e-04
## RABGAP1 6.870440e+00 2.488278e+01 4.513006 1.459051e-05 1.893255e-04
## HSPA13 1.089961e+01 2.075128e+01 4.511438 1.468349e-05 1.903238e-04
## TYK2 -4.327962e+01 1.468494e+02 -4.510584 1.473436e-05 1.906488e-04
## RAB3A -5.265182e-01 8.812048e-01 -4.510478 1.474072e-05 1.906488e-04
## AIP -2.080104e+01 4.099780e+01 -4.509413 1.480444e-05 1.911603e-04
## LILRB3 -2.509676e+02 4.729252e+02 -4.509278 1.481250e-05 1.911603e-04
## PUSL1 -2.851430e+00 3.141627e+00 -4.508577 1.485465e-05 1.914959e-04
## SPIN4 1.159967e+00 2.247519e+00 4.507781 1.490257e-05 1.919049e-04
## GMNN 3.233196e+00 6.201325e+00 4.507001 1.494974e-05 1.921908e-04
## EFR3A 2.162194e+01 5.636296e+01 4.506749 1.496500e-05 1.921908e-04
## HSF4 -1.376636e+00 2.233804e+00 -4.506611 1.497338e-05 1.921908e-04
## KLHDC3 -2.243563e+01 5.692648e+01 -4.505936 1.501432e-05 1.925080e-04
## SERF2 -3.019517e+02 4.475110e+02 -4.503019 1.519261e-05 1.945836e-04
## XPNPEP1 1.044397e+01 3.470850e+01 4.501897 1.526174e-05 1.952581e-04
## SLC25A1 -7.860055e+00 1.218737e+01 -4.500901 1.532339e-05 1.958356e-04
## XK 6.849745e+00 1.068010e+01 4.499495 1.541076e-05 1.966246e-04
## RETSAT 6.156744e+00 2.434155e+01 4.499374 1.541829e-05 1.966246e-04
## HCK -3.559470e+02 7.718585e+02 -4.497397 1.554202e-05 1.978774e-04
## PEAK1 5.558198e+00 1.193587e+01 4.497272 1.554990e-05 1.978774e-04
## NDUFC2 -1.377495e+01 2.833184e+01 -4.496585 1.559317e-05 1.980063e-04
## PFDN5 -2.726877e+02 4.489034e+02 -4.496581 1.559341e-05 1.980063e-04
## SNAPC4 -2.154340e+00 5.430458e+00 -4.496020 1.562880e-05 1.982434e-04
## GALK1 -1.045526e+01 1.286662e+01 -4.495126 1.568542e-05 1.987491e-04
## UBE3C 9.989640e+00 4.073525e+01 4.494148 1.574754e-05 1.993232e-04
## GPR162 -8.809435e+00 1.056945e+01 -4.493757 1.577242e-05 1.994252e-04
## RBM15B -7.466719e+00 3.841760e+01 -4.493470 1.579075e-05 1.994444e-04
## STUB1 -2.075953e+01 2.941626e+01 -4.492790 1.583417e-05 1.997801e-04
## RBM42 -1.671501e+01 2.330363e+01 -4.491483 1.591799e-05 2.006242e-04
## RPS4X -4.566615e+02 8.255936e+02 -4.491172 1.593799e-05 2.006630e-04
## XPNPEP3 1.832005e+00 9.121096e+00 4.490753 1.596503e-05 2.007904e-04
## CAPS -3.626775e+00 3.179834e+00 -4.487300 1.618919e-05 2.033938e-04
## FAU -2.529266e+02 3.203537e+02 -4.486280 1.625597e-05 2.037863e-04
## DBT 2.620298e+00 8.330932e+00 4.486078 1.626927e-05 2.037863e-04
## ACOT8 -6.963002e+00 1.303125e+01 -4.486036 1.627198e-05 2.037863e-04
## FRG1 -1.284361e+01 4.000742e+01 -4.484908 1.634627e-05 2.045008e-04
## PTPN11 1.658068e+01 4.422719e+01 4.483359 1.644873e-05 2.055658e-04
## NUP205 8.236098e+00 1.882619e+01 4.482568 1.650133e-05 2.058489e-04
## ZBTB38 1.462599e+01 3.039728e+01 4.482496 1.650609e-05 2.058489e-04
## TIGD5 -1.944518e+00 2.591716e+00 -4.480866 1.661500e-05 2.069893e-04
## LMF2 -2.074041e+01 2.634210e+01 -4.480129 1.666451e-05 2.073883e-04
## CIAO3 -4.929150e+00 6.969813e+00 -4.478070 1.680345e-05 2.088826e-04
## SPI1 -2.528621e+02 4.114436e+02 -4.477828 1.681980e-05 2.088826e-04
## SURF2 -4.010799e+00 5.003539e+00 -4.477178 1.686393e-05 2.092115e-04
## TP53BP1 6.952871e+00 2.019902e+01 4.476496 1.691040e-05 2.095688e-04
## RALY -5.846200e+01 1.311957e+02 -4.475620 1.697020e-05 2.100904e-04
## GINS3 9.444554e-01 2.159317e+00 4.475139 1.700314e-05 2.101402e-04
## DARS2 1.747537e+00 6.751483e+00 4.475044 1.700966e-05 2.101402e-04
## TCIRG1 -1.536112e+02 2.462051e+02 -4.472851 1.716062e-05 2.117846e-04
## PRICKLE3 -1.085294e+00 3.878913e+00 -4.469803 1.737262e-05 2.138771e-04
## BAZ1B 1.120037e+01 3.996364e+01 4.469755 1.737597e-05 2.138771e-04
## SETD2 2.926178e+01 8.511057e+01 4.469251 1.741127e-05 2.138771e-04
## ARAP1 -2.267104e+02 5.173862e+02 -4.469147 1.741855e-05 2.138771e-04
## BRF1 -3.250440e+00 5.506299e+00 -4.469122 1.742034e-05 2.138771e-04
## C5orf51 8.422332e+00 2.241249e+01 4.468231 1.748289e-05 2.144230e-04
## PHETA1 -3.672489e+00 5.213331e+00 -4.466417 1.761106e-05 2.156310e-04
## RGS14 -7.845208e+01 1.545188e+02 -4.466137 1.763093e-05 2.156310e-04
## LDB1 -3.216831e+01 1.415039e+02 -4.466043 1.763761e-05 2.156310e-04
## UBE3B 6.781778e+00 2.854776e+01 4.465810 1.765410e-05 2.156310e-04
## CUEDC2 -1.434292e+01 3.129498e+01 -4.465333 1.768809e-05 2.156956e-04
## PRIM1 1.850934e+00 5.484404e+00 4.465225 1.769577e-05 2.156956e-04
## PRIM2 1.200782e+00 5.037376e+00 4.464690 1.773387e-05 2.159381e-04
## ALDH3B1 -2.779032e+01 5.200472e+01 -4.464376 1.775630e-05 2.159895e-04
## POLL -8.104739e+00 1.538896e+01 -4.463861 1.779313e-05 2.162157e-04
## USP24 1.510426e+01 4.766086e+01 4.463307 1.783285e-05 2.164766e-04
## KATNB1 -4.697958e+00 1.215088e+01 -4.460486 1.803637e-05 2.187232e-04
## REPIN1 -8.096974e+00 2.288002e+01 -4.459431 1.811303e-05 2.194286e-04
## DAGLB -8.594286e+00 2.410453e+01 -4.457572 1.824894e-05 2.208494e-04
## MND1 8.890727e-01 1.056202e+00 4.456760 1.830861e-05 2.210862e-04
## PPM1M -1.141908e+02 2.218853e+02 -4.456438 1.833229e-05 2.210862e-04
## FES -8.945093e+01 1.466250e+02 -4.456149 1.835364e-05 2.210862e-04
## PCNA 1.299447e+01 3.390473e+01 4.456121 1.835567e-05 2.210862e-04
## EIF3C -4.213423e+01 1.050756e+02 -4.455982 1.836596e-05 2.210862e-04
## CINP -9.367843e+00 1.988453e+01 -4.455787 1.838035e-05 2.210862e-04
## BMPR2 9.782449e+00 2.047370e+01 4.454494 1.847608e-05 2.220124e-04
## ACY1 -1.461946e+00 2.749381e+00 -4.453753 1.853121e-05 2.224495e-04
## ZSCAN18 -3.312333e+00 5.291161e+00 -4.451285 1.871583e-05 2.241235e-04
## TMEM141 -1.585325e+01 2.084994e+01 -4.451143 1.872648e-05 2.241235e-04
## PPAT 1.705954e+00 3.558442e+00 4.451132 1.872735e-05 2.241235e-04
## GET4 -9.032216e+00 1.780252e+01 -4.447856 1.897533e-05 2.268247e-04
## NELFA -1.523461e+00 4.133731e+00 -4.447646 1.899131e-05 2.268247e-04
## BTN3A3 3.775218e+01 7.670434e+01 4.446065 1.911224e-05 2.280394e-04
## CNN2 -2.533713e+02 5.810240e+02 -4.443735 1.929175e-05 2.298631e-04
## FAAP20 -4.906017e+00 6.403650e+00 -4.443579 1.930385e-05 2.298631e-04
## BLOC1S3 -3.281999e+00 1.518008e+01 -4.443184 1.933439e-05 2.299958e-04
## SPG7 -1.203304e+01 3.092756e+01 -4.441044 1.950109e-05 2.317464e-04
## ROGDI -2.654857e+01 3.294670e+01 -4.440419 1.955001e-05 2.320952e-04
## RPL12 -3.706398e+02 5.833387e+02 -4.436556 1.985513e-05 2.353151e-04
## PUS7L 4.291033e+00 1.317004e+01 4.436484 1.986091e-05 2.353151e-04
## SIVA1 -4.254342e+00 3.976360e+00 -4.434652 2.000724e-05 2.368122e-04
## AP4E1 4.294026e+00 1.253658e+01 4.433865 2.007042e-05 2.373232e-04
## KCNN4 -8.189785e+00 1.033067e+01 -4.433068 2.013463e-05 2.377817e-04
## CCDC124 -5.749637e+00 6.240660e+00 -4.432886 2.014929e-05 2.377817e-04
## TP53I13 -8.669515e+00 7.957969e+00 -4.428567 2.050077e-05 2.416890e-04
## TYMP -1.657611e+02 1.938283e+02 -4.427944 2.055196e-05 2.420518e-04
## RFC4 3.032604e+00 8.599739e+00 4.427017 2.062838e-05 2.427109e-04
## RPL13A -1.187928e+03 1.394651e+03 -4.425858 2.072432e-05 2.435981e-04
## SMG1 7.184438e+01 1.639072e+02 4.425082 2.078869e-05 2.439007e-04
## BAG2 1.050046e+00 3.437048e+00 4.425052 2.079120e-05 2.439007e-04
## NIPA1 2.489180e+00 5.963572e+00 4.424305 2.085343e-05 2.443890e-04
## CHMP4A -2.638249e+01 6.563874e+01 -4.422353 2.101696e-05 2.454985e-04
## ESPL1 1.377139e+00 1.738439e+00 4.422321 2.101960e-05 2.454985e-04
## PRAM1 -4.065091e+01 6.144100e+01 -4.422291 2.102210e-05 2.454985e-04
## ABI3 -1.962801e+01 2.608378e+01 -4.422145 2.103437e-05 2.454985e-04
## AMDHD2 -6.922038e+00 9.567544e+00 -4.421941 2.105160e-05 2.454985e-04
## NOC2L -8.731109e+00 1.878158e+01 -4.421197 2.111432e-05 2.459880e-04
## MRPL49 6.075565e+00 3.850536e+01 4.419800 2.123255e-05 2.471227e-04
## PIP4K2A 2.304279e+01 1.349147e+02 4.417936 2.139140e-05 2.487275e-04
## SLC39A1 -2.213254e+01 6.807186e+01 -4.417398 2.143738e-05 2.488495e-04
## SLC7A7 -5.761244e+01 1.638978e+02 -4.416955 2.147537e-05 2.488495e-04
## JCHAIN 7.949634e+02 6.739732e+02 4.416598 2.150604e-05 2.488495e-04
## SF3A2 -8.685079e+00 1.103003e+01 -4.416595 2.150633e-05 2.488495e-04
## MRPL42 4.169076e+00 1.959851e+01 4.416549 2.151030e-05 2.488495e-04
## TCHP 4.179027e+00 1.758723e+01 4.416345 2.152779e-05 2.488495e-04
## ZNF219 -7.970565e-01 1.032236e+00 -4.414888 2.165349e-05 2.500588e-04
## FZR1 -1.025917e+01 2.218043e+01 -4.413753 2.175193e-05 2.509512e-04
## ARAF -2.525413e+01 6.003651e+01 -4.412854 2.183018e-05 2.516093e-04
## PPCS -1.157506e+01 4.554313e+01 -4.412063 2.189926e-05 2.521604e-04
## GUK1 -4.775540e+01 6.148328e+01 -4.409707 2.210623e-05 2.542966e-04
## MZF1 -9.373612e-01 2.037143e+00 -4.408763 2.218970e-05 2.550095e-04
## TNKS2 2.842121e+01 7.444453e+01 4.408175 2.224177e-05 2.551429e-04
## CIT 1.100695e+00 1.329366e+00 4.408147 2.224433e-05 2.551429e-04
## PRXL2B -3.393572e+00 8.273215e+00 -4.406183 2.241934e-05 2.568653e-04
## ARPC1B -1.652885e+02 3.803105e+02 -4.405976 2.243781e-05 2.568653e-04
## EVI5L -2.380261e+00 4.592831e+00 -4.404788 2.254448e-05 2.575024e-04
## SPTBN1 1.686085e+01 3.219713e+01 4.404687 2.255351e-05 2.575024e-04
## TMEM179B -6.919484e+00 2.938063e+01 -4.404631 2.255860e-05 2.575024e-04
## ZBTB45 -1.585638e+00 2.702421e+00 -4.401621 2.283098e-05 2.603610e-04
## ZMYND15 -2.637870e+00 3.878085e+00 -4.400051 2.297441e-05 2.617450e-04
## KIF18B 1.141919e+00 2.002096e+00 4.398109 2.315291e-05 2.635254e-04
## ERP29 -6.319170e+01 1.449785e+02 -4.397588 2.320098e-05 2.638194e-04
## IFT122 -1.504672e+00 5.680293e+00 -4.396517 2.330024e-05 2.646943e-04
## CASP3 1.380364e+01 5.589537e+01 4.394929 2.344811e-05 2.661192e-04
## MAN1A2 8.867009e+00 2.294460e+01 4.393867 2.354749e-05 2.667672e-04
## DPP7 -3.054141e+01 2.498545e+01 -4.393838 2.355019e-05 2.667672e-04
## HERC2 1.811934e+01 3.273910e+01 4.393475 2.358432e-05 2.668989e-04
## UBA1 -4.788885e+01 1.873462e+02 -4.392605 2.366620e-05 2.675702e-04
## PGAP3 -5.340412e+00 8.750789e+00 -4.392030 2.372043e-05 2.679279e-04
## MORN2 -7.163130e-01 1.565137e+00 -4.390730 2.384352e-05 2.690620e-04
## RPL15 -2.663745e+02 6.730490e+02 -4.390254 2.388869e-05 2.693154e-04
## BORCS6 -1.161975e+01 1.692804e+01 -4.389374 2.397250e-05 2.700036e-04
## SLC35A3 3.115444e+00 1.108306e+01 4.388866 2.402106e-05 2.702939e-04
## COBLL1 2.586859e+00 3.479418e+00 4.388315 2.407379e-05 2.704210e-04
## ENTPD4 2.176059e+01 7.385286e+01 4.388253 2.407977e-05 2.704210e-04
## PLOD3 -5.746971e+00 1.374470e+01 -4.388034 2.410076e-05 2.704210e-04
## TAF4B 1.925959e+00 3.161009e+00 4.387716 2.413121e-05 2.705067e-04
## SIRT2 -1.601494e+01 5.563416e+01 -4.385231 2.437099e-05 2.729367e-04
## ANKRD13D -4.026992e+01 1.041355e+02 -4.384459 2.444596e-05 2.735180e-04
## ANO6 2.388717e+01 5.733702e+01 4.384187 2.447244e-05 2.735562e-04
## ZGRF1 1.202805e+00 2.908208e+00 4.383811 2.450903e-05 2.737073e-04
## RPS14 -4.755412e+02 7.788518e+02 -4.381686 2.471700e-05 2.752945e-04
## NANP 6.898222e-01 2.393846e+00 4.381640 2.472154e-05 2.752945e-04
## SMIM13 1.319378e+00 5.972887e+00 4.381504 2.473488e-05 2.752945e-04
## BPTF 1.990045e+01 4.924442e+01 4.381411 2.474401e-05 2.752945e-04
## TRPM4 -7.103095e-01 7.660720e-01 -4.380972 2.478728e-05 2.755175e-04
## COX4I1 -1.798185e+02 3.397489e+02 -4.377589 2.512279e-05 2.789853e-04
## BRMS1 -2.628805e+01 5.200969e+01 -4.376410 2.524074e-05 2.798529e-04
## LRRC8B 4.285970e+00 9.636119e+00 4.376336 2.524811e-05 2.798529e-04
## SNTB1 9.884752e+00 3.299569e+01 4.375824 2.529955e-05 2.801612e-04
## ATP6V1F -2.678286e+01 5.748247e+01 -4.372756 2.560962e-05 2.833191e-04
## CHAC2 2.200819e+00 2.937801e+00 4.372532 2.563249e-05 2.833191e-04
## CLCN7 -1.417343e+01 2.415015e+01 -4.370800 2.580931e-05 2.850078e-04
## GIMAP1-GIMAP5 -1.976177e+01 3.764135e+01 -4.370479 2.584217e-05 2.851053e-04
## APRT -3.257247e+01 3.286586e+01 -4.369564 2.593617e-05 2.855712e-04
## POLRMT -8.728333e+00 1.124837e+01 -4.369483 2.594455e-05 2.855712e-04
## UBXN6 -2.464126e+01 3.852493e+01 -4.369366 2.595664e-05 2.855712e-04
## FANCL 1.092352e+00 2.872283e+00 4.368740 2.602121e-05 2.859173e-04
## RABEP2 -4.160110e+00 4.150292e+00 -4.368593 2.603631e-05 2.859173e-04
## RNF126 -3.873819e+00 5.363808e+00 -4.367674 2.613147e-05 2.866968e-04
## TRMT2A -1.130110e+01 1.576644e+01 -4.365911 2.631482e-05 2.884415e-04
## DGKZ -2.948371e+01 7.529135e+01 -4.365056 2.640426e-05 2.891547e-04
## RASGRP2 -4.957966e+01 1.684985e+02 -4.363838 2.653210e-05 2.902866e-04
## HSCB -1.924093e+00 5.028321e+00 -4.362256 2.669897e-05 2.918432e-04
## AIFM3 -2.158146e+00 2.507852e+00 -4.361985 2.672772e-05 2.918884e-04
## NPEPL1 -1.806075e+01 4.376779e+01 -4.360210 2.691644e-05 2.934831e-04
## RPL3 -7.336713e+02 1.152295e+03 -4.360146 2.692324e-05 2.934831e-04
## DUS3L -2.320604e+00 3.230816e+00 -4.359289 2.701485e-05 2.941484e-04
## DHPS -6.486139e+00 2.445493e+01 -4.359111 2.703387e-05 2.941484e-04
## TBC1D20 1.024325e+01 5.433277e+01 4.358584 2.709036e-05 2.944928e-04
## ADCK2 -4.016421e+00 8.212438e+00 -4.357803 2.717437e-05 2.951355e-04
## STX17 8.543946e+00 1.881522e+01 4.354931 2.748519e-05 2.982382e-04
## LATS1 7.284174e+00 1.826010e+01 4.353354 2.765741e-05 2.998326e-04
## EPB41L5 2.003054e+00 4.358731e+00 4.352434 2.775832e-05 3.006517e-04
## AP2A2 -6.232725e+00 2.404788e+01 -4.351377 2.787461e-05 3.016358e-04
## SDHAF1 -3.837187e+00 6.307657e+00 -4.350722 2.794701e-05 3.021436e-04
## CCNE1 1.307204e+00 1.938149e+00 4.349553 2.807658e-05 3.030040e-04
## PEX16 -8.383064e+00 1.218291e+01 -4.349543 2.807769e-05 3.030040e-04
## SUCNR1 3.326879e+00 3.860900e+00 4.348892 2.815008e-05 3.033388e-04
## CHPF2 -1.651879e+01 5.356536e+01 -4.348605 2.818208e-05 3.033388e-04
## CCS -1.334222e+01 1.625326e+01 -4.348575 2.818544e-05 3.033388e-04
## ARL5A 8.606697e+00 3.234736e+01 4.347490 2.830660e-05 3.040945e-04
## CD99L2 -1.147377e+01 2.948080e+01 -4.347487 2.830694e-05 3.040945e-04
## PARP6 1.228659e+01 4.794632e+01 4.346948 2.836742e-05 3.044684e-04
## RHOBTB1 6.332590e+00 1.013776e+01 4.346318 2.843812e-05 3.049513e-04
## PQBP1 -1.904990e+01 3.757419e+01 -4.344074 2.869164e-05 3.073919e-04
## ANKRD33B 5.527362e+00 1.126740e+01 4.342469 2.887418e-05 3.090684e-04
## TPPP3 -7.032412e+00 4.216053e+00 -4.341899 2.893934e-05 3.094865e-04
## BRICD5 -1.219632e+00 1.341393e+00 -4.340684 2.907862e-05 3.106959e-04
## ST14 -1.281479e+01 2.232159e+01 -4.339643 2.919852e-05 3.113890e-04
## SMG9 -6.634472e+00 1.302365e+01 -4.339594 2.920408e-05 3.113890e-04
## ESYT2 1.823205e+01 5.671876e+01 4.339279 2.924052e-05 3.113890e-04
## MED16 -9.295787e+00 1.375212e+01 -4.339210 2.924851e-05 3.113890e-04
## MEGF8 -1.739998e+00 5.122226e+00 -4.337825 2.940887e-05 3.128155e-04
## ZC3H6 4.900168e+00 1.307652e+01 4.337540 2.944202e-05 3.128875e-04
## ROCK2 1.387596e+01 2.984139e+01 4.335889 2.963456e-05 3.146138e-04
## SPG11 4.786048e+01 1.212577e+02 4.335693 2.965753e-05 3.146138e-04
## GNA15 -1.226257e+01 2.381137e+01 -4.334608 2.978489e-05 3.156826e-04
## RAB1B -8.156464e+01 2.190219e+02 -4.334284 2.982294e-05 3.157096e-04
## DTX2 -1.079600e+01 2.113412e+01 -4.334134 2.984068e-05 3.157096e-04
## PGM3 2.859595e+00 9.785178e+00 4.333381 2.992943e-05 3.163664e-04
## RYR1 -1.183824e+00 1.546502e+00 -4.332534 3.002966e-05 3.171432e-04
## CRTAP -3.665993e+01 1.004140e+02 -4.332256 3.006264e-05 3.172089e-04
## ELOF1 -1.465827e+01 3.308626e+01 -4.330369 3.028738e-05 3.192963e-04
## PIK3C2A 8.273188e+00 1.992995e+01 4.330063 3.032395e-05 3.193979e-04
## WIZ -2.327922e+00 6.936220e+00 -4.329725 3.036434e-05 3.195395e-04
## THEM6 -2.811470e+00 3.528391e+00 -4.329405 3.040272e-05 3.196244e-04
## NFKBIL1 -4.938342e+00 8.411734e+00 -4.329209 3.042630e-05 3.196244e-04
## BTN2A2 1.493925e+01 3.296008e+01 4.328906 3.046265e-05 3.197230e-04
## PEX5 -3.554870e+00 1.715291e+01 -4.327697 3.060828e-05 3.205640e-04
## PRMT3 1.404156e+00 5.450884e+00 4.327666 3.061202e-05 3.205640e-04
## VPS72 -4.889724e+00 2.672480e+01 -4.327568 3.062386e-05 3.205640e-04
## PHACTR4 3.910132e+00 1.447161e+01 4.326144 3.079625e-05 3.220843e-04
## PAXIP1 1.781538e+00 6.051895e+00 4.325262 3.090353e-05 3.229215e-04
## CSNK1G1 7.244119e+00 2.278862e+01 4.324042 3.105251e-05 3.241926e-04
## MYO9B -5.256463e+01 1.816536e+02 -4.323555 3.111214e-05 3.245181e-04
## NUDT16L1 -8.080813e+00 1.700588e+01 -4.323341 3.113842e-05 3.245181e-04
## TALDO1 -3.731416e+02 7.690418e+02 -4.323082 3.117023e-05 3.245389e-04
## FRYL 1.556451e+01 4.537357e+01 4.322879 3.119514e-05 3.245389e-04
## LRRC37B 5.902228e+00 1.816606e+01 4.322168 3.128273e-05 3.251650e-04
## DGAT1 -2.161632e+01 4.230236e+01 -4.321271 3.139345e-05 3.260301e-04
## EPG5 2.580961e+01 5.076223e+01 4.320606 3.147576e-05 3.265989e-04
## HCFC2 2.700624e+00 8.464388e+00 4.318408 3.174950e-05 3.291513e-04
## RALGAPB 1.701094e+01 5.390568e+01 4.317717 3.183603e-05 3.296167e-04
## CRKL 3.002488e+01 9.064875e+01 4.317582 3.185288e-05 3.296167e-04
## NFAM1 -2.385965e+02 6.159283e+02 -4.317384 3.187777e-05 3.296167e-04
## TMEM189 -6.186166e+00 1.619761e+01 -4.317125 3.191024e-05 3.296650e-04
## CNOT1 3.517910e+01 1.413727e+02 4.316416 3.199949e-05 3.302767e-04
## DCTN1 -1.859850e+01 8.389166e+01 -4.316212 3.202514e-05 3.302767e-04
## PIP5K1C -5.825052e+00 1.354032e+01 -4.315923 3.206164e-05 3.303658e-04
## FAM110A -1.209457e+01 1.801229e+01 -4.315026 3.217507e-05 3.312469e-04
## RPL18A -3.905724e+02 3.745194e+02 -4.313032 3.242856e-05 3.335669e-04
## KIAA1191 5.746886e+00 2.839742e+01 4.312744 3.246528e-05 3.336553e-04
## CCAR2 -1.647791e+01 6.108747e+01 -4.312128 3.254411e-05 3.341758e-04
## RPS6KB1 5.889863e+00 2.593115e+01 4.308831 3.296892e-05 3.381030e-04
## XPO7 1.708517e+01 4.926980e+01 4.308718 3.298357e-05 3.381030e-04
## MAML2 1.193117e+01 2.263292e+01 4.307902 3.308956e-05 3.388965e-04
## LENG1 -4.313025e+00 7.684041e+00 -4.307652 3.312200e-05 3.389069e-04
## MAP3K14 -8.409789e+00 1.994426e+01 -4.307455 3.314772e-05 3.389069e-04
## PSMB3 -1.116538e+02 2.138546e+02 -4.306581 3.326188e-05 3.397260e-04
## RAD17 3.440769e+00 1.547157e+01 4.306403 3.328513e-05 3.397260e-04
## SENP1 4.498488e+00 1.516419e+01 4.304062 3.359273e-05 3.425707e-04
## CXCR5 -9.417146e+00 1.186253e+01 -4.303040 3.372796e-05 3.434277e-04
## NCOR1 2.316405e+01 9.055509e+01 4.302989 3.373468e-05 3.434277e-04
## LY86 -1.864359e+01 3.761406e+01 -4.302344 3.382034e-05 3.440045e-04
## SESTD1 1.281517e+01 2.891688e+01 4.301937 3.387439e-05 3.442590e-04
## SH2B1 -8.025044e+00 2.723072e+01 -4.300685 3.404135e-05 3.456596e-04
## TASOR2 7.386266e+00 1.534560e+01 4.298464 3.433954e-05 3.483892e-04
## GTPBP6 -6.813976e+00 7.632038e+00 -4.298101 3.438860e-05 3.485887e-04
## MTMR2 2.011502e+00 7.173805e+00 4.297368 3.448761e-05 3.492938e-04
## ARPC4-TTLL3 -1.503626e+01 3.585958e+01 -4.296910 3.454976e-05 3.496247e-04
## INO80D 1.118060e+01 2.880287e+01 4.294992 3.481081e-05 3.519661e-04
## TM7SF3 7.112488e+00 3.271562e+01 4.293976 3.494982e-05 3.530706e-04
## FERMT3 -1.121546e+02 2.103145e+02 -4.293707 3.498679e-05 3.531432e-04
## ASB13 -3.585194e+00 8.068603e+00 -4.292830 3.510731e-05 3.540584e-04
## MUTYH -3.308953e+00 6.164116e+00 -4.292578 3.514201e-05 3.541073e-04
## EIF3K -7.847702e+01 1.420417e+02 -4.292096 3.520854e-05 3.544765e-04
## DCLRE1A 2.931159e+00 7.064350e+00 4.291228 3.532854e-05 3.553830e-04
## ZNF75D 4.347123e+00 1.705072e+01 4.290630 3.541158e-05 3.559164e-04
## PNMA1 5.669602e+00 1.804228e+01 4.289272 3.560064e-05 3.575136e-04
## TOP3B -3.655150e+00 1.327283e+01 -4.287297 3.587733e-05 3.599874e-04
## EOLA2 -4.502927e+00 1.464802e+01 -4.286013 3.605831e-05 3.614975e-04
## MKLN1 3.040551e+01 8.586137e+01 4.285245 3.616698e-05 3.622807e-04
## CLIC4 1.457501e+01 3.683004e+01 4.283326 3.643987e-05 3.644050e-04
## PGGHG -1.914419e+02 2.902349e+02 -4.283322 3.644050e-05 3.644050e-04
## SMIM29 -1.079901e+01 1.803404e+01 -4.280807 3.680113e-05 3.675155e-04
## HLA-DPB1 -1.299728e+02 1.731408e+02 -4.280721 3.681353e-05 3.675155e-04
## LARP1B 2.193963e+00 5.579827e+00 4.280217 3.688623e-05 3.679316e-04
## RAI1 -1.006647e+00 2.227215e+00 -4.279488 3.699167e-05 3.686733e-04
## INAFM1 -4.971610e+00 5.178638e+00 -4.278223 3.717534e-05 3.701928e-04
## CCDC96 -5.759382e-01 1.130881e+00 -4.276227 3.746679e-05 3.727820e-04
## KIF2C 3.942531e+00 4.777789e+00 4.275853 3.752176e-05 3.730160e-04
## NOL12 -6.920449e+00 2.286315e+01 -4.274273 3.775442e-05 3.750146e-04
## DENND4C 9.384565e+00 2.295997e+01 4.273501 3.786858e-05 3.758306e-04
## ACTG1 -5.399432e+02 1.362670e+03 -4.273289 3.789995e-05 3.758306e-04
## SYNRG 1.438899e+01 4.828859e+01 4.272648 3.799510e-05 3.764594e-04
## LDLR 8.515866e+00 1.492274e+01 4.269570 3.845511e-05 3.805167e-04
## NUBP2 -6.564367e+00 6.268246e+00 -4.269479 3.846877e-05 3.805167e-04
## AATK -1.564530e+01 2.784013e+01 -4.268739 3.858014e-05 3.813004e-04
## TRIM28 -2.802432e+01 5.913307e+01 -4.267529 3.876300e-05 3.827887e-04
## RPS6KA4 -1.164733e+01 2.686564e+01 -4.265956 3.900196e-05 3.848280e-04
## NIBAN2 -1.320104e+01 2.647380e+01 -4.265650 3.904867e-05 3.849686e-04
## COG3 6.969608e+00 2.536233e+01 4.265026 3.914404e-05 3.855883e-04
## PDHX 2.299053e+00 7.971595e+00 4.264280 3.925816e-05 3.863915e-04
## TMEM101 -7.142625e+00 2.204445e+01 -4.263640 3.935651e-05 3.870383e-04
## FBRS -3.104846e+01 9.235538e+01 -4.262154 3.958554e-05 3.886797e-04
## STON2 5.037661e+00 9.101118e+00 4.262131 3.958896e-05 3.886797e-04
## SAP25 -1.711861e+01 1.959619e+01 -4.260562 3.983220e-05 3.907443e-04
## AP1B1 -1.936058e+01 5.288828e+01 -4.259805 3.995011e-05 3.914809e-04
## ARL15 4.308436e+00 1.407171e+01 4.259656 3.997330e-05 3.914809e-04
## WASF1 1.877185e+00 3.100667e+00 4.259415 4.001097e-05 3.915265e-04
## UAP1 9.706199e+00 1.591913e+01 4.257961 4.023859e-05 3.933843e-04
## UBR7 4.134491e+00 2.258471e+01 4.257779 4.026716e-05 3.933843e-04
## PCOLCE -8.355067e-01 1.317475e+00 -4.256799 4.042143e-05 3.945664e-04
## CCNB1 4.483181e+00 5.424136e+00 4.256557 4.045960e-05 3.946142e-04
## ACACA 2.630519e+00 7.632913e+00 4.256082 4.053473e-05 3.950221e-04
## TMEM120A -4.437768e+01 7.230839e+01 -4.253403 4.096035e-05 3.988422e-04
## GALNT10 7.826944e+00 4.787751e+01 4.250671 4.139899e-05 4.027826e-04
## TNIP2 -1.192564e+01 3.592328e+01 -4.249645 4.156490e-05 4.040654e-04
## EIF2AK4 5.323108e+00 1.596136e+01 4.248911 4.168395e-05 4.048908e-04
## GPATCH3 -5.900748e+00 1.686023e+01 -4.245843 4.218513e-05 4.094236e-04
## CEP44 2.473499e+00 9.416458e+00 4.243743 4.253146e-05 4.124473e-04
## FANCM 1.121034e+00 2.828959e+00 4.243008 4.265324e-05 4.132904e-04
## TMEM222 -1.896326e+01 3.463368e+01 -4.242524 4.273365e-05 4.137315e-04
## TEX264 -1.785980e+01 3.376475e+01 -4.241000 4.298793e-05 4.155352e-04
## PLK1 1.804673e+00 2.521290e+00 4.240988 4.299002e-05 4.155352e-04
## PEX14 -1.720126e+00 3.735753e+00 -4.240773 4.302594e-05 4.155437e-04
## EIF4EBP1 -1.225348e+01 1.583013e+01 -4.240290 4.310689e-05 4.157583e-04
## TBC1D5 1.098301e+01 4.285644e+01 4.240222 4.311827e-05 4.157583e-04
## FBXL15 -2.349245e+00 2.371857e+00 -4.238617 4.338839e-05 4.180230e-04
## FLOT2 -6.027036e+02 9.928826e+02 -4.237652 4.355161e-05 4.192549e-04
## NOSIP -4.092415e+01 5.621492e+01 -4.237383 4.359706e-05 4.193521e-04
## BCL2L2 2.897481e+00 1.026324e+01 4.237145 4.363754e-05 4.194013e-04
## MED7 -5.284706e+00 1.627404e+01 -4.236314 4.377883e-05 4.204186e-04
## CLCN3 1.013704e+01 2.990211e+01 4.235790 4.386810e-05 4.209350e-04
## LAX1 5.321927e+00 7.071200e+00 4.234213 4.413786e-05 4.231811e-04
## WDR91 -5.966516e+00 2.213817e+01 -4.233699 4.422609e-05 4.236001e-04
## HDAC7 -5.341649e+01 1.545089e+02 -4.233543 4.425300e-05 4.236001e-04
## SLC49A3 -2.674109e+00 4.653460e+00 -4.231996 4.451977e-05 4.258101e-04
## HBS1L 5.696522e+00 2.258934e+01 4.231452 4.461410e-05 4.263684e-04
## ZCCHC2 5.132204e+01 6.420986e+01 4.230951 4.470091e-05 4.265615e-04
## CCDC32 4.236883e+00 2.227692e+01 4.230921 4.470623e-05 4.265615e-04
## RPS3 -5.536141e+02 1.090454e+03 -4.230348 4.480578e-05 4.269319e-04
## PAOX -1.482533e+00 2.008571e+00 -4.230284 4.481705e-05 4.269319e-04
## ZNF580 -5.204633e+00 7.745392e+00 -4.229794 4.490245e-05 4.274022e-04
## SFXN5 -1.001796e+01 3.142315e+01 -4.229183 4.500906e-05 4.280734e-04
## WDR45 -2.009447e+01 6.259678e+01 -4.228403 4.514569e-05 4.289856e-04
## ACADVL -5.140843e+01 1.710647e+02 -4.228162 4.518785e-05 4.289856e-04
## ERMP1 3.405802e+00 1.049954e+01 4.228016 4.521349e-05 4.289856e-04
## RPLP1 -3.592901e+02 3.387761e+02 -4.227632 4.528109e-05 4.292835e-04
## VSIR -6.627353e+02 1.318588e+03 -4.227321 4.533566e-05 4.294576e-04
## BORCS8 -1.241415e+01 2.273991e+01 -4.226111 4.554921e-05 4.306581e-04
## G6PD -5.235573e+01 1.197778e+02 -4.226013 4.556655e-05 4.306581e-04
## C16orf87 2.045058e+00 6.091570e+00 4.225986 4.557132e-05 4.306581e-04
## RPL26 -3.493382e+02 6.829367e+02 -4.225606 4.563864e-05 4.309508e-04
## PEAK3 -8.962047e+00 1.547851e+01 -4.224501 4.583484e-05 4.324592e-04
## CYLD 5.228189e+01 1.725038e+02 4.221145 4.643568e-05 4.377485e-04
## ATF7IP 2.738067e+01 7.425007e+01 4.220958 4.646925e-05 4.377485e-04
## RPL4 -4.567957e+02 1.106526e+03 -4.220505 4.655107e-05 4.379971e-04
## INTS11 -1.619401e+01 3.166988e+01 -4.220403 4.656951e-05 4.379971e-04
## DENND5B 3.658794e+00 4.222445e+00 4.219823 4.667447e-05 4.386364e-04
## NAGPA -6.033266e+00 9.030750e+00 -4.219207 4.678596e-05 4.390459e-04
## SIDT2 -2.105939e+01 4.756924e+01 -4.219174 4.679208e-05 4.390459e-04
## MOSPD3 -7.115979e+00 7.036004e+00 -4.218768 4.686571e-05 4.393892e-04
## GOLGB1 1.932304e+01 6.867235e+01 4.217954 4.701400e-05 4.404314e-04
## C9orf16 -1.420213e+01 1.389679e+01 -4.216587 4.726374e-05 4.424214e-04
## ZSWIM7 -3.969160e+00 1.089111e+01 -4.215882 4.739315e-05 4.431111e-04
## ZNF764 -1.022915e+00 4.090278e+00 -4.215778 4.741214e-05 4.431111e-04
## NDC1 2.811961e+00 8.953929e+00 4.215392 4.748326e-05 4.434263e-04
## SMIM12 -1.132612e+01 4.306449e+01 -4.214410 4.766430e-05 4.447668e-04
## LEMD2 -7.988769e+00 4.078282e+01 -4.212928 4.793881e-05 4.469767e-04
## WDR24 -1.543111e+00 2.938215e+00 -4.212278 4.805973e-05 4.477520e-04
## PPP1R37 -1.901873e+00 3.768274e+00 -4.211771 4.815419e-05 4.482800e-04
## HMG20B -1.123278e+01 1.962604e+01 -4.210509 4.839007e-05 4.501226e-04
## MFSD10 -9.081759e+00 1.274814e+01 -4.210056 4.847506e-05 4.505597e-04
## XAB2 -1.109992e+01 2.158461e+01 -4.209100 4.865493e-05 4.516442e-04
## GPSM3 -3.455055e+02 7.229320e+02 -4.208754 4.872002e-05 4.516442e-04
## TBCD -9.551469e+00 2.108134e+01 -4.208724 4.872573e-05 4.516442e-04
## RPL11 -7.000160e+02 1.135183e+03 -4.208627 4.874406e-05 4.516442e-04
## CCDC57 -6.126845e+00 1.573375e+01 -4.206939 4.906368e-05 4.540202e-04
## PIGN 2.188432e+00 8.850118e+00 4.206868 4.907706e-05 4.540202e-04
## ADCK5 -2.043325e+00 2.614462e+00 -4.206017 4.923908e-05 4.547660e-04
## OXA1L -1.778730e+01 8.050274e+01 -4.205971 4.924791e-05 4.547660e-04
## RFNG -7.318773e+00 1.035427e+01 -4.205840 4.927271e-05 4.547660e-04
## NPDC1 -2.899985e+00 2.348900e+00 -4.205220 4.939110e-05 4.553342e-04
## GIMAP1 -1.386165e+01 3.657418e+01 -4.205116 4.941106e-05 4.553342e-04
## MAP2K2 -2.561870e+01 5.718113e+01 -4.204843 4.946330e-05 4.554618e-04
## NBPF10 6.771747e+01 1.138213e+02 4.204111 4.960363e-05 4.560721e-04
## PLXNB2 -2.643328e+01 4.299010e+01 -4.204096 4.960649e-05 4.560721e-04
## CD14 -1.220878e+02 1.982496e+02 -4.203110 4.979612e-05 4.574402e-04
## STX5 -2.386984e+01 5.960294e+01 -4.202921 4.983244e-05 4.574402e-04
## BANP -5.845196e+00 1.627693e+01 -4.201576 5.009241e-05 4.594710e-04
## RINL -8.316701e+00 3.743900e+01 -4.201210 5.016338e-05 4.597664e-04
## ZNF574 -2.070989e+00 5.547733e+00 -4.200525 5.029633e-05 4.606289e-04
## H4C8 5.434904e+00 5.878736e+00 4.200074 5.038424e-05 4.607512e-04
## FIGNL1 1.862183e+00 4.554028e+00 4.200058 5.038738e-05 4.607512e-04
## PHKG2 -1.838753e+01 3.977870e+01 -4.198725 5.064776e-05 4.627754e-04
## WASHC1 -6.742393e+01 1.276131e+02 -4.197517 5.088474e-05 4.645828e-04
## UHMK1 2.779466e+01 9.391854e+01 4.192468 5.188713e-05 4.733702e-04
## MTF2 5.509853e+00 2.614021e+01 4.192044 5.197207e-05 4.737807e-04
## KRI1 -1.088220e+01 2.320893e+01 -4.191348 5.211202e-05 4.746916e-04
## ZMYND8 7.012061e+00 2.655382e+01 4.190206 5.234226e-05 4.763426e-04
## GGT1 -1.223685e+01 1.670209e+01 -4.190051 5.237359e-05 4.763426e-04
## CIB1 -3.775049e+01 7.120905e+01 -4.189330 5.251958e-05 4.773044e-04
## CAPN15 -3.543292e+00 5.202729e+00 -4.189001 5.258641e-05 4.775458e-04
## TSSC4 -1.373482e+01 1.449539e+01 -4.188730 5.264138e-05 4.776793e-04
## BRPF3 1.048971e+01 2.636480e+01 4.185966 5.320588e-05 4.820958e-04
## RSF1 8.671226e+00 2.169969e+01 4.185949 5.320940e-05 4.820958e-04
## PPP1R14B -7.486369e+00 1.286853e+01 -4.185405 5.332107e-05 4.827389e-04
## PRKRIP1 -7.795748e+00 2.551916e+01 -4.185125 5.337882e-05 4.827945e-04
## DDI2 4.950030e+00 1.775701e+01 4.184980 5.340863e-05 4.827945e-04
## B3GAT3 -1.409900e+01 1.835872e+01 -4.183797 5.365278e-05 4.846321e-04
## NDUFA3 -1.430936e+01 1.969129e+01 -4.182483 5.392533e-05 4.867233e-04
## HMGCL -8.961031e+00 2.599589e+01 -4.181976 5.403094e-05 4.873057e-04
## ACTR1A -4.376194e+01 1.517200e+02 -4.180219 5.439816e-05 4.902448e-04
## FCSK -4.519446e+00 1.015727e+01 -4.178960 5.466282e-05 4.922559e-04
## FEN1 7.382725e+00 1.415048e+01 4.178435 5.477349e-05 4.928783e-04
## PPP6R1 -2.031683e+01 7.938191e+01 -4.177720 5.492463e-05 4.938070e-04
## HGS -1.606620e+01 5.154154e+01 -4.177553 5.495997e-05 4.938070e-04
## KATNAL1 1.131210e+00 3.879421e+00 4.175319 5.543490e-05 4.976972e-04
## ERC1 2.936559e+00 9.859469e+00 4.174702 5.556690e-05 4.985049e-04
## PIK3R4 5.436926e+00 1.805780e+01 4.174005 5.571618e-05 4.994663e-04
## CSRP1 -1.869368e+01 5.188594e+01 -4.173305 5.586655e-05 4.999994e-04
## ZNF444 -4.357583e+00 5.833269e+00 -4.173238 5.588092e-05 4.999994e-04
## RPL13 -6.574678e+02 6.604025e+02 -4.173049 5.592171e-05 4.999994e-04
## FBXW5 -2.563236e+01 3.542401e+01 -4.172944 5.594429e-05 4.999994e-04
## LIPH 8.614882e-01 1.626697e+00 4.171715 5.620961e-05 5.019924e-04
## KCTD11 -3.158299e+00 1.050792e+01 -4.170462 5.648133e-05 5.040395e-04
## HMGN4 3.185433e+01 1.096389e+02 4.170012 5.657915e-05 5.045329e-04
## C2orf88 1.496487e+01 3.627545e+01 4.169650 5.665803e-05 5.048567e-04
## YAF2 5.282949e+00 1.855719e+01 4.168863 5.682986e-05 5.057891e-04
## PRR14 -1.830215e+01 4.328289e+01 -4.168780 5.684797e-05 5.057891e-04
## RPS5 -2.298279e+02 3.041199e+02 -4.168272 5.695920e-05 5.063989e-04
## LRSAM1 -4.520493e+00 1.464646e+01 -4.167755 5.707265e-05 5.070275e-04
## MFSD12 -6.756833e+00 9.787782e+00 -4.167497 5.712945e-05 5.070721e-04
## VPS13D 1.366847e+01 3.948155e+01 4.167343 5.716319e-05 5.070721e-04
## CLNS1A -1.071324e+01 4.082330e+01 -4.166947 5.725043e-05 5.074665e-04
## ZBTB48 -1.144611e+01 2.623453e+01 -4.166490 5.735105e-05 5.079787e-04
## HDAC3 -9.597228e+00 5.945637e+01 -4.166054 5.744730e-05 5.080792e-04
## RBBP6 1.307451e+01 4.084993e+01 4.166051 5.744808e-05 5.080792e-04
## TNFAIP8L2-SCNM1 -6.713526e+00 1.586966e+01 -4.165706 5.752430e-05 5.083743e-04
## CDK6 5.328243e+00 1.585066e+01 4.164382 5.781791e-05 5.102534e-04
## GGH 6.454127e+00 9.187290e+00 4.164359 5.782298e-05 5.102534e-04
## PES1 -1.253964e+01 2.375141e+01 -4.162712 5.819032e-05 5.131131e-04
## SMCO4 -1.071865e+01 2.082502e+01 -4.159759 5.885433e-05 5.185827e-04
## TRAPPC10 1.865330e+01 7.131962e+01 4.158592 5.911875e-05 5.205095e-04
## CCSER2 9.252189e+00 2.716709e+01 4.158407 5.916077e-05 5.205095e-04
## TBC1D17 -6.767726e+00 1.685730e+01 -4.158186 5.921114e-05 5.205664e-04
## MLST8 -5.015464e+00 6.853178e+00 -4.157614 5.934136e-05 5.213248e-04
## RPS8 -4.465821e+02 7.798878e+02 -4.156696 5.955080e-05 5.227776e-04
## ESS2 -4.343813e+00 1.197674e+01 -4.156371 5.962518e-05 5.228208e-04
## COA8 -5.189461e+00 1.241960e+01 -4.156290 5.964389e-05 5.228208e-04
## CCDC153 -1.255547e+00 1.783605e+00 -4.155738 5.977024e-05 5.235414e-04
## AMPD2 -7.819186e+01 1.416329e+02 -4.154921 5.995811e-05 5.245381e-04
## FBL -5.145727e+01 7.987545e+01 -4.154859 5.997248e-05 5.245381e-04
## U2SURP 1.474926e+01 5.825129e+01 4.154392 6.007992e-05 5.250906e-04
## DIPK1A 3.288271e+00 6.401045e+00 4.154172 6.013078e-05 5.251480e-04
## HK3 -2.523822e+02 3.791184e+02 -4.153625 6.025717e-05 5.254897e-04
## CDK17 1.427746e+01 3.502346e+01 4.153417 6.030523e-05 5.254897e-04
## ALDH16A1 -6.394423e+00 7.824351e+00 -4.153322 6.032732e-05 5.254897e-04
## CHD9 7.302913e+00 1.898585e+01 4.153236 6.034713e-05 5.254897e-04
## NEURL4 -4.344973e+00 1.358058e+01 -4.151174 6.082659e-05 5.292224e-04
## RNF25 -6.464866e+00 1.846544e+01 -4.151009 6.086504e-05 5.292224e-04
## RGPD8 3.483867e+00 7.697106e+00 4.149596 6.119596e-05 5.317100e-04
## KCTD3 1.703312e+00 4.933285e+00 4.148856 6.136986e-05 5.328306e-04
## TAZ -2.105196e+01 4.737609e+01 -4.147359 6.172330e-05 5.355072e-04
## OGFR -2.839169e+01 5.197173e+01 -4.147091 6.178670e-05 5.356654e-04
## SLC25A29 -9.383139e+00 1.768666e+01 -4.146627 6.189670e-05 5.362271e-04
## CLDN12 4.525100e-01 1.004470e+00 4.145914 6.206606e-05 5.373018e-04
## TNNC2 -1.154809e+00 1.436843e+00 -4.145575 6.214688e-05 5.373324e-04
## MTHFD2L 1.609721e+00 5.595890e+00 4.145519 6.216021e-05 5.373324e-04
## CCDC93 1.466927e+01 4.769011e+01 4.145038 6.227493e-05 5.379320e-04
## LTBP4 -2.683837e+00 3.915807e+00 -4.142905 6.278590e-05 5.419511e-04
## LRBA 8.675177e+00 2.016484e+01 4.141997 6.300484e-05 5.434454e-04
## PLA2G4B -4.913890e+00 1.162282e+01 -4.141238 6.318819e-05 5.446308e-04
## ZNF692 -1.049510e+01 2.986729e+01 -4.140707 6.331699e-05 5.453446e-04
## PSMD4 -6.949247e+01 2.292773e+02 -4.138308 6.390117e-05 5.499767e-04
## TENT5C 4.776982e+01 6.198452e+01 4.137582 6.407924e-05 5.511093e-04
## POR -4.604475e+01 6.314590e+01 -4.137376 6.412979e-05 5.511444e-04
## CEP131 -9.190640e-01 1.575724e+00 -4.137107 6.419584e-05 5.513126e-04
## RPL35 -2.157745e+02 2.659602e+02 -4.136546 6.433384e-05 5.520979e-04
## ARHGEF10L -4.258879e+00 6.468444e+00 -4.135608 6.456514e-05 5.534601e-04
## F2R 6.704026e+00 1.494173e+01 4.135524 6.458591e-05 5.534601e-04
## TMEM86B -3.042689e+00 4.339878e+00 -4.134152 6.492584e-05 5.559714e-04
## HOOK2 -1.387148e+00 3.464195e+00 -4.133587 6.506638e-05 5.567729e-04
## NUDT14 -2.249441e+00 2.040977e+00 -4.132763 6.527185e-05 5.581284e-04
## PCYT1B 2.236767e+00 3.967098e+00 4.132066 6.544594e-05 5.592139e-04
## SLC39A14 1.768005e+00 3.344150e+00 4.131750 6.552532e-05 5.594891e-04
## EIF4A1 -1.112519e+02 4.049447e+02 -4.131005 6.571223e-05 5.606813e-04
## ZHX1 4.684513e+00 1.298460e+01 4.130721 6.578350e-05 5.607116e-04
## SMARCD1 5.151541e+00 3.854408e+01 4.130615 6.581034e-05 5.607116e-04
## CLEC10A -1.095787e+01 1.104050e+01 -4.129214 6.616372e-05 5.633178e-04
## SNX19 1.144995e+01 4.080178e+01 4.128233 6.641243e-05 5.650297e-04
## MBTPS2 1.351599e+00 3.748538e+00 4.127965 6.648035e-05 5.652021e-04
## MRPL28 -2.434829e+01 3.672365e+01 -4.126918 6.674704e-05 5.670630e-04
## SS18 6.415017e+00 3.520226e+01 4.125238 6.717692e-05 5.703065e-04
## ALKBH7 -5.360051e+00 4.973667e+00 -4.124261 6.742793e-05 5.720281e-04
## LFNG -4.920904e+01 6.125100e+01 -4.123107 6.772584e-05 5.741447e-04
## LRRC47 -5.896781e+00 2.235072e+01 -4.122731 6.782336e-05 5.745608e-04
## COQ8A -1.538108e+01 3.535968e+01 -4.122220 6.795582e-05 5.746755e-04
## RPL22 -1.449259e+02 2.970501e+02 -4.122065 6.799593e-05 5.746755e-04
## ANXA11 -2.134079e+02 5.232896e+02 -4.121963 6.802252e-05 5.746755e-04
## PPAN -3.113136e+00 5.320803e+00 -4.121931 6.803073e-05 5.746755e-04
## OTUD4 9.146545e+00 2.311827e+01 4.121351 6.818158e-05 5.752153e-04
## HNMT -8.138178e+00 1.926410e+01 -4.121135 6.823794e-05 5.752153e-04
## EDC4 -1.191403e+01 3.438807e+01 -4.121126 6.824013e-05 5.752153e-04
## PLD6 1.865903e+00 4.416462e+00 4.119706 6.861119e-05 5.779323e-04
## RPS20 -4.504922e+02 6.199251e+02 -4.118975 6.880282e-05 5.791352e-04
## WDR83 -1.605141e+00 3.226678e+00 -4.118384 6.895817e-05 5.800311e-04
## ASGR2 -2.376845e+01 3.299900e+01 -4.117621 6.915928e-05 5.813105e-04
## ARL6IP1 2.920509e+01 1.047719e+02 4.116672 6.941024e-05 5.830067e-04
## SLC25A45 -3.525823e+00 7.124357e+00 -4.116217 6.953092e-05 5.836070e-04
## SECTM1 -1.275898e+02 2.043904e+02 -4.115730 6.966024e-05 5.838808e-04
## RPL10 -7.579797e+02 1.452109e+03 -4.115723 6.966200e-05 5.838808e-04
## TBL3 -5.858276e+00 7.311305e+00 -4.114105 7.009320e-05 5.870801e-04
## HGH1 -5.119569e+00 7.169800e+00 -4.113080 7.036784e-05 5.889644e-04
## SKA2 3.458149e+00 1.253413e+01 4.110683 7.101378e-05 5.939516e-04
## SGF29 -6.054257e+00 1.059404e+01 -4.109984 7.120326e-05 5.951168e-04
## TTBK2 5.190858e+00 1.411520e+01 4.108857 7.150975e-05 5.972575e-04
## TKT -2.968755e+02 7.439736e+02 -4.108385 7.163833e-05 5.979104e-04
## HARBI1 1.077877e+00 4.396917e+00 4.107804 7.179724e-05 5.988152e-04
## UHRF1BP1 4.137898e+00 1.049230e+01 4.107614 7.184910e-05 5.988266e-04
## EPB41 5.646410e+01 1.634100e+02 4.107275 7.194197e-05 5.991796e-04
## EHBP1 1.500642e+00 4.589209e+00 4.106614 7.212325e-05 6.002035e-04
## C12orf76 3.797646e+00 1.295168e+01 4.106458 7.216612e-05 6.002035e-04
## KCTD17 -4.857968e+00 6.639303e+00 -4.105952 7.230547e-05 6.009411e-04
## SLC37A1 2.871392e+00 1.032149e+01 4.105228 7.250503e-05 6.021776e-04
## RABL6 -1.434425e+01 2.391767e+01 -4.103785 7.290456e-05 6.047737e-04
## KAT5 -9.112935e+00 3.823578e+01 -4.103731 7.291959e-05 6.047737e-04
## THEMIS2 -1.163380e+02 3.447426e+02 -4.102250 7.333195e-05 6.077686e-04
## PRUNE1 1.303988e+01 4.397889e+01 4.099793 7.402069e-05 6.130484e-04
## FARSA -6.022189e+00 1.241728e+01 -4.099533 7.409401e-05 6.132275e-04
## FAF2 6.178723e+00 3.122031e+01 4.099026 7.423723e-05 6.138353e-04
## CDK5 -3.886972e+00 1.028263e+01 -4.098906 7.427096e-05 6.138353e-04
## RNF113A -6.219360e+00 2.277846e+01 -4.098510 7.438301e-05 6.143333e-04
## EGF 8.270179e+00 1.065500e+01 4.097685 7.461678e-05 6.158351e-04
## CHCHD5 -5.030154e+00 5.918081e+00 -4.097272 7.473409e-05 6.163743e-04
## WDR48 1.195918e+01 4.323479e+01 4.096993 7.481350e-05 6.166005e-04
## HLA-DPA1 -1.237074e+02 2.059903e+02 -4.096236 7.502920e-05 6.179488e-04
## TMEM8B -1.211101e+00 2.113129e+00 -4.093610 7.578199e-05 6.234176e-04
## TMEM68 1.384084e+00 7.484016e+00 4.093553 7.579833e-05 6.234176e-04
## ACADS -3.718655e+00 4.749622e+00 -4.092408 7.612908e-05 6.257040e-04
## RPL24 -1.829808e+02 3.951215e+02 -4.091705 7.633268e-05 6.269429e-04
## UBL7 -1.738224e+01 4.444979e+01 -4.090136 7.678905e-05 6.302548e-04
## DPP8 1.511930e+01 4.744703e+01 4.087412 7.758746e-05 6.361041e-04
## KIAA1958 7.446754e+00 1.026758e+01 4.087223 7.764329e-05 6.361041e-04
## TGFB1 -8.364296e+01 2.032272e+02 -4.087157 7.766263e-05 6.361041e-04
## SLFN12 5.500791e+00 1.253977e+01 4.086931 7.772955e-05 6.362129e-04
## FLNA -1.857546e+02 4.771500e+02 -4.086296 7.791705e-05 6.373078e-04
## TEN1 -6.210067e+00 9.883984e+00 -4.085052 7.828589e-05 6.398833e-04
## MIEF2 -1.316116e+00 4.339859e+00 -4.083743 7.867587e-05 6.426279e-04
## PSMG3 -7.349854e+00 1.167551e+01 -4.083346 7.879451e-05 6.431541e-04
## RPS23 -3.857431e+02 7.103642e+02 -4.083016 7.889310e-05 6.435159e-04
## STX8 -9.877363e+00 2.600792e+01 -4.081927 7.921977e-05 6.457364e-04
## PDLIM7 -5.276811e+01 9.641261e+01 -4.081042 7.948604e-05 6.474618e-04
## SAV1 2.343020e+00 6.493361e+00 4.080801 7.955891e-05 6.476106e-04
## DHRS4 -8.596700e+00 1.587576e+01 -4.080356 7.969341e-05 6.482605e-04
## RER1 -2.143624e+01 9.603072e+01 -4.079903 7.983028e-05 6.489288e-04
## RNF169 2.565881e+01 5.189974e+01 4.079105 8.007217e-05 6.504492e-04
## HECTD1 1.508732e+01 4.431339e+01 4.078646 8.021169e-05 6.511367e-04
## PRC1 5.445604e+00 7.020148e+00 4.078355 8.030034e-05 6.514104e-04
## CASP6 1.417189e+00 6.602254e+00 4.077986 8.041266e-05 6.518757e-04
## CAV2 1.782894e+00 2.579547e+00 4.077725 8.049246e-05 6.520769e-04
## TUBGCP4 2.131935e+00 5.749259e+00 4.077200 8.065283e-05 6.529300e-04
## TEPSIN -1.195488e+01 2.877054e+01 -4.076456 8.088060e-05 6.543274e-04
## MTRNR2L3 -8.669074e+00 1.428124e+01 -4.075108 8.129486e-05 6.572304e-04
## CDC34 -2.149885e+01 3.895673e+01 -4.073382 8.182829e-05 6.610923e-04
## EMSY 5.272858e+00 1.685720e+01 4.073000 8.194662e-05 6.615976e-04
## GTF2F1 -9.744141e+00 3.457997e+01 -4.072586 8.207517e-05 6.621847e-04
## NDUFAF7 -3.470047e+00 1.187214e+01 -4.072313 8.216028e-05 6.624208e-04
## SPPL2B -3.385479e+00 5.348899e+00 -4.071106 8.253649e-05 6.650019e-04
## RPL7A -3.479145e+02 9.370175e+02 -4.069822 8.293898e-05 6.677911e-04
## ANKRD52 4.120220e+00 2.173494e+01 4.068294 8.342005e-05 6.712088e-04
## THAP7 -3.945191e+00 4.236115e+00 -4.067090 8.380104e-05 6.738172e-04
## CASP8AP2 6.954431e+00 1.582888e+01 4.066336 8.404069e-05 6.752863e-04
## FAM214A 9.170631e+00 2.911284e+01 4.064080 8.476104e-05 6.806134e-04
## PANX1 2.146579e+00 7.663442e+00 4.063198 8.504406e-05 6.822911e-04
## CDK1 6.809453e+00 6.945888e+00 4.063071 8.508503e-05 6.822911e-04
## VPS13B 1.932133e+01 4.326907e+01 4.062811 8.516864e-05 6.825000e-04
## SORBS3 -4.193084e+00 4.846766e+00 -4.062575 8.524466e-05 6.826479e-04
## RABEP1 1.026706e+01 3.869741e+01 4.061249 8.567315e-05 6.856164e-04
## PDE5A 5.900513e+00 1.268432e+01 4.060402 8.594793e-05 6.873516e-04
## SEC31A 1.133363e+01 3.968046e+01 4.059018 8.639885e-05 6.904921e-04
## LATS2 8.367969e+00 1.903370e+01 4.058828 8.646100e-05 6.905236e-04
## RPL27 -2.623525e+02 5.364111e+02 -4.058162 8.667890e-05 6.917979e-04
## SLC2A13 1.001113e+00 2.540598e+00 4.057947 8.674944e-05 6.918953e-04
## TOPBP1 1.387550e+01 4.816746e+01 4.056988 8.706419e-05 6.939390e-04
## RFC1 5.919568e+00 2.313335e+01 4.056436 8.724600e-05 6.949211e-04
## ECH1 -2.013682e+01 4.688155e+01 -4.055785 8.746078e-05 6.960662e-04
## BAD -5.202922e+00 7.763530e+00 -4.055645 8.750715e-05 6.960662e-04
## NAA10 -1.394252e+01 2.821516e+01 -4.054698 8.782076e-05 6.980927e-04
## RPL38 -1.582787e+02 2.303508e+02 -4.054517 8.788070e-05 6.981012e-04
## NR4A1 -4.068535e+00 4.219090e+00 -4.054312 8.794881e-05 6.981746e-04
## POLR1D -1.446756e+01 6.077475e+01 -4.053473 8.822781e-05 6.991095e-04
## GIGYF1 -1.833247e+01 6.456015e+01 -4.053279 8.829235e-05 6.991095e-04
## CDKL1 1.560604e+00 5.002712e+00 4.053260 8.829878e-05 6.991095e-04
## UXT -2.181470e+01 4.278123e+01 -4.053249 8.830236e-05 6.991095e-04
## PPP4C -8.206248e+01 1.614571e+02 -4.052597 8.852001e-05 7.001172e-04
## NUTM2D -2.775093e+00 5.869624e+00 -4.052515 8.854771e-05 7.001172e-04
## CCNB2 3.880167e+00 4.519676e+00 4.052093 8.868873e-05 7.007651e-04
## RPL21 -5.630054e+02 1.023501e+03 -4.051312 8.895069e-05 7.023670e-04
## RAVER1 -1.300461e+01 3.064898e+01 -4.050450 8.924038e-05 7.041855e-04
## TIA1 1.715055e+01 7.442085e+01 4.049624 8.951909e-05 7.056754e-04
## YDJC -2.567128e+00 4.389892e+00 -4.049366 8.960616e-05 7.056754e-04
## NSD1 2.282483e+01 8.064910e+01 4.049306 8.962642e-05 7.056754e-04
## RC3H2 1.515024e+01 5.048998e+01 4.049186 8.966718e-05 7.056754e-04
## NDUFB7 -1.417303e+01 1.281657e+01 -4.047585 9.021032e-05 7.094790e-04
## TMEM38B 1.112333e+00 3.900253e+00 4.046358 9.062903e-05 7.122997e-04
## PIKFYVE 2.421432e+01 5.550777e+01 4.045971 9.076128e-05 7.128668e-04
## FAM50A -2.389291e+01 5.044365e+01 -4.045488 9.092659e-05 7.136925e-04
## INPP4A 1.446262e+01 5.956502e+01 4.044191 9.137268e-05 7.167196e-04
## PTK2 4.011801e+00 8.331115e+00 4.044013 9.143383e-05 7.167252e-04
## IRF3 -2.732630e+01 4.385028e+01 -4.043145 9.173337e-05 7.185983e-04
## EDEM3 3.129611e+01 7.418345e+01 4.042273 9.203561e-05 7.204900e-04
## NUDT4 1.055032e+01 3.352954e+01 4.041808 9.219695e-05 7.212770e-04
## CCM2 -4.627502e+01 1.243615e+02 -4.041289 9.237736e-05 7.222119e-04
## SNX8 -3.660433e+00 6.323892e+00 -4.040156 9.277281e-05 7.248257e-04
## EIF2AK3 6.528761e+00 1.166398e+01 4.039921 9.285496e-05 7.249900e-04
## TWSG1 2.356760e+00 6.287963e+00 4.039227 9.309788e-05 7.264084e-04
## TPRN -2.935978e+00 2.888773e+00 -4.038506 9.335132e-05 7.276802e-04
## TOGARAM1 1.625562e+00 4.533942e+00 4.038414 9.338358e-05 7.276802e-04
## HOMER3 -6.272591e+00 1.220168e+01 -4.038168 9.347016e-05 7.278766e-04
## TRMT61A -3.004255e+00 3.457566e+00 -4.037653 9.365155e-05 7.288106e-04
## CERS6 6.001324e+00 2.227757e+01 4.037405 9.373907e-05 7.290134e-04
## NBEAL1 1.901472e+00 5.194572e+00 4.036253 9.414660e-05 7.317030e-04
## CAMK1 -1.633786e+01 2.373025e+01 -4.035231 9.450943e-05 7.338596e-04
## GON4L 9.350584e+00 4.522734e+01 4.035123 9.454785e-05 7.338596e-04
## SIGLEC9 -2.596501e+01 6.044614e+01 -4.033327 9.518925e-05 7.381148e-04
## CMC4 -1.601769e+00 4.140022e+00 -4.033240 9.522054e-05 7.381148e-04
## TTF2 3.035668e+00 8.141427e+00 4.032696 9.541568e-05 7.391443e-04
## HELB 2.405131e+00 3.936331e+00 4.032320 9.555051e-05 7.397056e-04
## FOXJ3 1.014438e+01 3.821496e+01 4.031703 9.577286e-05 7.406217e-04
## E2F6 1.131870e+00 6.140207e+00 4.031645 9.579373e-05 7.406217e-04
## MMD 2.545676e+01 5.295268e+01 4.031143 9.597489e-05 7.411830e-04
## FOXP4 -1.731430e+00 3.184719e+00 -4.031097 9.599132e-05 7.411830e-04
## GOLGA5 7.022777e+00 3.120932e+01 4.028594 9.689924e-05 7.476110e-04
## FEM1A -3.602201e+00 2.698472e+01 -4.028455 9.694989e-05 7.476110e-04
## PHC3 1.483847e+01 4.706296e+01 4.027830 9.717825e-05 7.488850e-04
## RPRD2 7.305853e+00 2.670022e+01 4.026859 9.753336e-05 7.508270e-04
## GTF3C4 2.488106e+00 8.958395e+00 4.026795 9.755687e-05 7.508270e-04
## CCDC9 -7.955029e+00 1.475414e+01 -4.025791 9.792581e-05 7.531777e-04
## UNC13D -5.653687e+01 1.432537e+02 -4.025358 9.808537e-05 7.539161e-04
## CCDC137 -6.153590e+00 1.435268e+01 -4.023814 9.865601e-05 7.575713e-04
## USP16 9.205572e+00 3.370198e+01 4.023726 9.868868e-05 7.575713e-04
## SEPSECS 2.175817e+00 9.833919e+00 4.023425 9.880046e-05 7.579389e-04
## ACLY 1.373248e+01 6.642809e+01 4.023006 9.895593e-05 7.585778e-04
## AGPS 8.381226e+00 2.898108e+01 4.022856 9.901167e-05 7.585778e-04
## EPSTI1 1.708001e+02 1.882055e+02 4.020146 1.000247e-04 7.655296e-04
## PFN1 -4.252034e+02 9.599760e+02 -4.019971 1.000906e-04 7.655296e-04
## ZNF316 -1.247030e+01 3.979331e+01 -4.019850 1.001359e-04 7.655296e-04
## PUF60 -1.839041e+01 4.447099e+01 -4.019645 1.002133e-04 7.655296e-04
## RUBCN 1.896566e+01 4.736894e+01 4.019525 1.002584e-04 7.655296e-04
## KCTD15 -2.362359e+00 5.033526e+00 -4.019397 1.003063e-04 7.655296e-04
## SH3GL1 -1.047506e+01 2.443641e+01 -4.018439 1.006678e-04 7.677940e-04
## TPD52 7.031737e+00 1.201302e+01 4.017997 1.008349e-04 7.685744e-04
## ZNF81 3.782446e+00 1.015307e+01 4.017655 1.009645e-04 7.690679e-04
## S100A13 -1.636702e+00 2.825308e+00 -4.016646 1.013476e-04 7.714907e-04
## BTF3 -5.314498e+01 2.373983e+02 -4.015650 1.017272e-04 7.738839e-04
## GTF3C5 -1.478599e+01 3.660590e+01 -4.015206 1.018968e-04 7.746772e-04
## RPL32 -4.507449e+02 7.569707e+02 -4.014564 1.021426e-04 7.760482e-04
## MYL5 -1.644620e+00 2.187574e+00 -4.013735 1.024606e-04 7.776737e-04
## BMP6 6.234044e+00 1.167175e+01 4.013665 1.024877e-04 7.776737e-04
## RWDD1 -8.625216e+00 2.810940e+01 -4.012717 1.028525e-04 7.799431e-04
## SRGAP2B 1.034003e+01 2.119827e+01 4.012339 1.029985e-04 7.801284e-04
## IDUA -2.238457e+00 2.836378e+00 -4.012313 1.030085e-04 7.801284e-04
## TUFM -2.971507e+01 7.979441e+01 -4.011586 1.032896e-04 7.817580e-04
## PSENEN -3.784612e+01 8.391309e+01 -4.010761 1.036099e-04 7.833599e-04
## FBXL18 -1.655150e+00 6.821226e+00 -4.010683 1.036402e-04 7.833599e-04
## NEDD8 -5.325460e+01 1.413112e+02 -4.010504 1.037097e-04 7.833599e-04
## EDF1 -7.016006e+01 9.163668e+01 -4.010361 1.037655e-04 7.833599e-04
## NUDT4B 1.458881e+01 4.657074e+01 4.007775 1.047760e-04 7.904853e-04
## FBXO34 1.140279e+01 2.824598e+01 4.007534 1.048704e-04 7.905628e-04
## ERAP1 2.261741e+01 6.179211e+01 4.007187 1.050071e-04 7.905628e-04
## SPATA2L -4.682292e+00 6.162861e+00 -4.007115 1.050356e-04 7.905628e-04
## IARS1 8.170435e+00 2.129363e+01 4.007009 1.050771e-04 7.905628e-04
## FASTKD1 2.811102e+00 1.053862e+01 4.006901 1.051195e-04 7.905628e-04
## RASA4B -7.637748e+00 1.221461e+01 -4.006415 1.053111e-04 7.915019e-04
## FPGS -7.681046e+00 1.260087e+01 -4.005027 1.058600e-04 7.948873e-04
## C11orf49 -1.257658e+00 3.427721e+00 -4.004938 1.058956e-04 7.948873e-04
## USO1 1.263038e+01 4.623941e+01 4.004582 1.060369e-04 7.954447e-04
## SPSB1 9.510276e-01 2.543345e+00 4.003684 1.063939e-04 7.969243e-04
## ASPSCR1 -4.508565e+00 5.321511e+00 -4.003672 1.063988e-04 7.969243e-04
## YRDC 2.625340e+00 9.707811e+00 4.003523 1.064582e-04 7.969243e-04
## PLB1 -4.210777e+01 5.871048e+01 -4.003335 1.065331e-04 7.969243e-04
## MGMT -4.996002e+00 5.498776e+00 -4.003242 1.065701e-04 7.969243e-04
## MAP4K5 4.124516e+00 1.338117e+01 4.002670 1.067986e-04 7.978319e-04
## PABPC1 -1.399233e+02 6.655593e+02 -4.002602 1.068261e-04 7.978319e-04
## HVCN1 -1.508029e+01 4.399802e+01 -4.002300 1.069466e-04 7.982292e-04
## RPLP0 -6.009989e+02 1.012390e+03 -4.000703 1.075879e-04 8.022393e-04
## SKP1 -5.335248e+01 1.994948e+02 -4.000626 1.076191e-04 8.022393e-04
## GNE 3.023839e+00 1.085411e+01 3.998008 1.086785e-04 8.096279e-04
## DNAJC13 3.817480e+01 8.729956e+01 3.997752 1.087826e-04 8.098940e-04
## TRIM5 2.256573e+01 3.731099e+01 3.996934 1.091159e-04 8.118658e-04
## PPDPF -1.447162e+01 1.495431e+01 -3.996049 1.094779e-04 8.140492e-04
## ZNF653 -7.906950e-01 1.136965e+00 -3.995851 1.095587e-04 8.141394e-04
## NDUFS7 -5.809779e+00 4.704812e+00 -3.995012 1.099031e-04 8.161874e-04
## TIMM17B -2.421754e+01 4.423219e+01 -3.994421 1.101461e-04 8.174795e-04
## RBM12 9.631822e+00 5.145961e+01 3.994126 1.102676e-04 8.178213e-04
## ATXN3 5.706345e+00 2.255061e+01 3.993975 1.103300e-04 8.178213e-04
## TMEM97 8.442692e-01 1.949132e+00 3.993625 1.104745e-04 8.183808e-04
## NAA16 3.138410e+00 1.149473e+01 3.992787 1.108212e-04 8.204367e-04
## INTS9 -1.964751e+00 1.000025e+01 -3.992147 1.110864e-04 8.218868e-04
## ZNF598 -3.238850e+00 7.452848e+00 -3.991334 1.114246e-04 8.238753e-04
## CC2D1A -5.113870e+00 1.088891e+01 -3.990484 1.117792e-04 8.259818e-04
## TMEM205 -1.410288e+01 2.900078e+01 -3.989236 1.123015e-04 8.293246e-04
## SLC9A3 -2.817419e+00 7.545866e+00 -3.988577 1.125783e-04 8.308517e-04
## LMAN2 -4.985705e+01 1.254091e+02 -3.988152 1.127570e-04 8.316530e-04
## NUP160 6.272840e+00 1.823241e+01 3.987503 1.130305e-04 8.331522e-04
## TGFBRAP1 3.542595e+00 1.744006e+01 3.987247 1.131386e-04 8.334311e-04
## HM13 -2.577635e+01 8.163811e+01 -3.986727 1.133589e-04 8.345355e-04
## ZC3H11A 9.559034e+01 2.547754e+02 3.985428 1.139099e-04 8.380714e-04
## CNTRL 1.690476e+01 5.283669e+01 3.984558 1.142805e-04 8.402766e-04
## KCNA2 5.939239e-01 8.876496e-01 3.983257 1.148367e-04 8.438434e-04
## SQLE 3.219934e+00 8.555923e+00 3.982972 1.149586e-04 8.442164e-04
## AGO3 6.894197e+00 2.559811e+01 3.982616 1.151115e-04 8.448159e-04
## LTBP3 -5.524769e+00 7.196099e+00 -3.981041 1.157900e-04 8.492698e-04
## NAA38 -1.694655e+01 2.271306e+01 -3.979904 1.162819e-04 8.523507e-04
## FLJ44635 -1.775177e+00 3.438260e+00 -3.978064 1.170829e-04 8.576922e-04
## LSM8 -8.249026e+00 3.452969e+01 -3.977522 1.173195e-04 8.588631e-04
## PCGF6 8.923958e-01 3.656142e+00 3.977366 1.173876e-04 8.588631e-04
## ECHS1 -8.927613e+00 1.847767e+01 -3.976504 1.177655e-04 8.610969e-04
## MTHFSD -1.783534e+00 7.413862e+00 -3.975455 1.182269e-04 8.639376e-04
## PRPF31 -1.008786e+01 1.753053e+01 -3.974875 1.184826e-04 8.647721e-04
## CEBPB -1.402706e+02 2.601786e+02 -3.974866 1.184869e-04 8.647721e-04
## SAP30BP -1.471843e+01 6.242850e+01 -3.974636 1.185884e-04 8.649807e-04
## PLSCR3 -1.464699e+01 2.927789e+01 -3.974372 1.187050e-04 8.652989e-04
## ZNF622 -9.062754e+00 3.338130e+01 -3.973787 1.189639e-04 8.666538e-04
## TMEM170A 6.098794e+00 2.262480e+01 3.973503 1.190898e-04 8.670383e-04
## EOGT 1.350181e+00 5.719742e+00 3.973258 1.191986e-04 8.671411e-04
## REEP5 -2.597508e+01 1.299043e+02 -3.973142 1.192502e-04 8.671411e-04
## DMAP1 -7.457021e+00 1.628393e+01 -3.972490 1.195402e-04 8.687171e-04
## PHF6 4.086700e+00 1.144247e+01 3.971829 1.198350e-04 8.703267e-04
## C1orf159 -1.228628e+00 1.311305e+00 -3.971329 1.200583e-04 8.714144e-04
## EWSR1 -1.664130e+01 1.511758e+02 -3.970634 1.203693e-04 8.731373e-04
## CHAF1B 9.952676e-01 3.494046e+00 3.970335 1.205034e-04 8.735758e-04
## NUDC -2.203186e+01 4.170508e+01 -3.969711 1.207838e-04 8.750739e-04
## STK25 -1.030326e+01 2.402542e+01 -3.969437 1.209074e-04 8.754343e-04
## COG6 2.936132e+00 1.039650e+01 3.968678 1.212494e-04 8.773751e-04
## RIPK3 -1.132375e+01 3.618256e+01 -3.967703 1.216901e-04 8.794906e-04
## PPIL2 -7.537850e+00 2.895664e+01 -3.967593 1.217400e-04 8.794906e-04
## USP28 6.223695e+00 1.504889e+01 3.967539 1.217642e-04 8.794906e-04
## MRPL20 -1.666753e+01 3.487864e+01 -3.966804 1.220977e-04 8.813629e-04
## DHRS4L2 -9.214535e+00 1.293471e+01 -3.966480 1.222450e-04 8.816741e-04
## PYGB -1.293330e+01 3.795660e+01 -3.966383 1.222895e-04 8.816741e-04
## DHX36 7.225964e+00 2.615112e+01 3.965976 1.224747e-04 8.824727e-04
## HSBP1 -3.184428e+01 1.159853e+02 -3.965150 1.228516e-04 8.846510e-04
## ATG101 -1.055252e+01 1.961917e+01 -3.964884 1.229735e-04 8.849913e-04
## ELF1 8.294162e+01 1.895308e+02 3.964183 1.232942e-04 8.867609e-04
## LRCH3 4.016028e+00 2.333332e+01 3.963553 1.235834e-04 8.883026e-04
## STK26 1.950128e+01 5.509762e+01 3.960237 1.251168e-04 8.987794e-04
## RDH10 8.211827e-01 4.159491e+00 3.959880 1.252829e-04 8.994281e-04
## ANAPC15 -1.924011e+01 3.635041e+01 -3.959470 1.254738e-04 9.002538e-04
## ZNF428 -3.691777e+00 5.318681e+00 -3.958661 1.258518e-04 9.024199e-04
## RPH3A 6.513188e+01 6.782958e+01 3.957965 1.261776e-04 9.035740e-04
## RELL2 -3.748099e+00 7.260266e+00 -3.957866 1.262242e-04 9.035740e-04
## RPS7 -2.266406e+02 5.779519e+02 -3.957829 1.262413e-04 9.035740e-04
## GABARAP -5.056838e+02 1.144464e+03 -3.957248 1.265143e-04 9.049818e-04
## RHPN1 -1.683724e+00 1.631164e+00 -3.955283 1.274413e-04 9.105248e-04
## TCEA2 -1.958176e+00 2.814431e+00 -3.955280 1.274428e-04 9.105248e-04
## ADAR 2.838353e+02 7.163728e+02 3.954968 1.275902e-04 9.108486e-04
## TDG 5.635293e+00 2.408861e+01 3.954860 1.276417e-04 9.108486e-04
## ZNF226 -2.940887e+00 1.282068e+01 -3.954110 1.279974e-04 9.128375e-04
## STRADA -8.233705e+00 3.738181e+01 -3.952646 1.286953e-04 9.172632e-04
## RASA4 -1.428921e+01 2.263613e+01 -3.951809 1.290957e-04 9.195644e-04
## RAB30 4.059127e+00 7.387232e+00 3.951389 1.292972e-04 9.200508e-04
## MED9 -1.771428e+00 6.636698e+00 -3.951343 1.293191e-04 9.200508e-04
## LAMP1 -3.014804e+01 1.181997e+02 -3.951122 1.294251e-04 9.202525e-04
## HCFC1R1 -5.567000e+00 7.651438e+00 -3.949011 1.304430e-04 9.269344e-04
## CTNNAL1 3.434200e+00 6.573702e+00 3.946900 1.314685e-04 9.333096e-04
## KIAA1109 5.192080e+01 1.164281e+02 3.946840 1.314975e-04 9.333096e-04
## CARNMT1 2.317168e+00 6.683046e+00 3.946369 1.317274e-04 9.343821e-04
## SH2D3C -2.584251e+01 7.585229e+01 -3.945964 1.319253e-04 9.352269e-04
## TAF10 -3.695528e+01 1.088662e+02 -3.945437 1.321835e-04 9.364971e-04
## PRELID3B 9.565060e+00 3.881452e+01 3.944958 1.324183e-04 9.376007e-04
## ADORA2A -1.553346e+01 2.737159e+01 -3.944147 1.328171e-04 9.398629e-04
## CPTP -3.381766e+00 5.274636e+00 -3.943556 1.331084e-04 9.413630e-04
## VEGFB -6.887590e+00 7.137093e+00 -3.942969 1.333984e-04 9.428519e-04
## RAB34 -8.968002e+00 1.661925e+01 -3.942617 1.335728e-04 9.435217e-04
## IRF4 1.387643e+01 2.002576e+01 3.940554 1.345976e-04 9.501953e-04
## HACE1 1.496584e+00 3.573234e+00 3.940077 1.348354e-04 9.513073e-04
## SEMA7A -4.060656e+00 6.358780e+00 -3.939439 1.351543e-04 9.529906e-04
## RPS16 -3.021340e+02 3.986775e+02 -3.939024 1.353626e-04 9.538919e-04
## TPCN1 -7.558017e+00 1.895048e+01 -3.938513 1.356190e-04 9.551317e-04
## TRMT1 -1.161202e+01 1.890975e+01 -3.938003 1.358755e-04 9.563699e-04
## KCTD5 -4.193422e+00 2.158560e+01 -3.937663 1.360463e-04 9.566100e-04
## RPS10 -3.688721e+02 5.866406e+02 -3.937614 1.360709e-04 9.566100e-04
## RPL29 -1.952305e+02 4.046779e+02 -3.934376 1.377121e-04 9.675742e-04
## CLASP2 4.599588e+00 1.568982e+01 3.933749 1.380318e-04 9.692465e-04
## IFI30 -3.817221e+02 8.837136e+02 -3.933575 1.381208e-04 9.692976e-04
## AMIGO2 3.969602e+00 1.002078e+01 3.933288 1.382674e-04 9.697523e-04
## FBXW9 -1.321036e+00 1.491701e+00 -3.933033 1.383979e-04 9.700942e-04
## ZNF236 1.840253e+00 5.345087e+00 3.932355 1.387458e-04 9.715885e-04
## FCN1 -5.270869e+02 1.185167e+03 -3.932298 1.387750e-04 9.715885e-04
## EIF4E2 -1.335437e+01 7.844089e+01 -3.931878 1.389906e-04 9.716912e-04
## RRP8 -2.807292e+00 1.294658e+01 -3.931838 1.390112e-04 9.716912e-04
## RPL23A -3.130425e+02 5.566685e+02 -3.931791 1.390354e-04 9.716912e-04
## METAP1 4.775600e+00 1.861043e+01 3.929612 1.401604e-04 9.789764e-04
## EPDR1 5.440123e-01 1.176926e+00 3.929352 1.402950e-04 9.793399e-04
## CD226 1.320035e+01 3.589041e+01 3.929059 1.404473e-04 9.798262e-04
## RPL7 -4.798489e+02 1.020900e+03 -3.928665 1.406516e-04 9.806750e-04
## MYO1F -2.894530e+02 8.823565e+02 -3.928413 1.407828e-04 9.810129e-04
## ACBD4 -2.943827e+00 6.645627e+00 -3.928075 1.409592e-04 9.816653e-04
## PRX -7.442768e-01 1.646852e+00 -3.927257 1.413858e-04 9.836815e-04
## PSMD5 5.566513e+00 1.972056e+01 3.927202 1.414146e-04 9.836815e-04
## SRGAP2C 7.087736e+00 1.667102e+01 3.926620 1.417192e-04 9.852226e-04
## CDK12 1.139456e+01 4.035948e+01 3.925761 1.421697e-04 9.877753e-04
## FRS2 4.799838e+00 1.390117e+01 3.924832 1.426583e-04 9.904420e-04
## MAPK7 -1.980215e+00 7.408218e+00 -3.924714 1.427205e-04 9.904420e-04
## PARG 3.675033e+00 1.400629e+01 3.924379 1.428973e-04 9.910892e-04
## SSR1 2.464229e+01 1.405781e+02 3.923976 1.431104e-04 9.919870e-04
## RHBDD3 -1.226889e+00 1.742790e+00 -3.923433 1.433976e-04 9.930989e-04
## RPL18 -2.344015e+02 3.225091e+02 -3.923352 1.434407e-04 9.930989e-04
## PGP -6.572301e+00 1.401906e+01 -3.923058 1.435966e-04 9.930989e-04
## OCRL 2.007173e+00 5.708875e+00 3.923040 1.436058e-04 9.930989e-04
## LILRA2 -1.545140e+02 4.083333e+02 -3.922145 1.440813e-04 9.958064e-04
## LEPR 2.743923e+00 7.060569e+00 3.921816 1.442564e-04 9.964361e-04
## ABCF3 -7.724433e+00 2.887444e+01 -3.921228 1.445700e-04 9.980213e-04
## RPS18 -4.568995e+02 1.000275e+03 -3.920589 1.449114e-04 9.996763e-04
## MICOS13 -8.492032e+00 9.441504e+00 -3.920464 1.449784e-04 9.996763e-04
## C17orf49 -2.358878e+01 4.899262e+01 -3.919981 1.452371e-04 1.000879e-03
## SIK3 1.110145e+01 5.527531e+01 3.919571 1.454572e-04 1.001813e-03
## SBF1 -1.150122e+01 3.838872e+01 -3.919395 1.455517e-04 1.001882e-03
## CDPF1 -2.493231e+00 4.154368e+00 -3.917470 1.465892e-04 1.008439e-03
## RBMX2 -5.834334e+00 1.831858e+01 -3.915534 1.476403e-04 1.015080e-03
## VGLL4 2.792294e+00 8.831687e+00 3.915004 1.479291e-04 1.016477e-03
## PCED1A -1.485852e+01 2.710439e+01 -3.914365 1.482778e-04 1.018283e-03
## UCKL1 -5.385683e+00 8.424512e+00 -3.914056 1.484472e-04 1.018857e-03
## CD82 -7.940592e+01 1.359257e+02 -3.913331 1.488447e-04 1.020994e-03
## EOLA1 -2.926932e+00 1.819797e+01 -3.912550 1.492737e-04 1.023344e-03
## SLC66A1 -2.249055e+00 5.241048e+00 -3.911417 1.498986e-04 1.026665e-03
## ANKZF1 -1.231795e+01 4.886287e+01 -3.911358 1.499311e-04 1.026665e-03
## SLX1A -1.152546e+01 2.377912e+01 -3.909127 1.511686e-04 1.033945e-03
## C16orf91 -2.123123e+00 4.667212e+00 -3.909127 1.511686e-04 1.033945e-03
## SDE2 7.853494e+00 2.019426e+01 3.908826 1.513368e-04 1.034498e-03
## KDM4B -2.368809e+01 6.111368e+01 -3.908029 1.517814e-04 1.036940e-03
## ATE1 5.474404e+00 1.848914e+01 3.906538 1.526171e-04 1.042049e-03
## SMPD2 -4.295336e+00 1.086746e+01 -3.905234 1.533522e-04 1.046466e-03
## VPS28 -4.524785e+01 7.076920e+01 -3.904632 1.536924e-04 1.048184e-03
## ATP5MC2 -5.064397e+01 1.550039e+02 -3.903401 1.543904e-04 1.052339e-03
## LTBR -2.536742e+01 6.887649e+01 -3.902907 1.546715e-04 1.053019e-03
## STK11 -1.074391e+01 2.416527e+01 -3.902825 1.547179e-04 1.053019e-03
## FAAP100 -4.888527e+00 7.343460e+00 -3.902757 1.547565e-04 1.053019e-03
## TNFAIP8L1 -4.203892e+00 1.129388e+01 -3.902072 1.551476e-04 1.055075e-03
## GFM2 3.419693e+00 1.627594e+01 3.901688 1.553668e-04 1.055960e-03
## ZNF714 1.065193e+00 3.046234e+00 3.901393 1.555352e-04 1.056499e-03
## RPS17 -3.005247e+02 5.248163e+02 -3.901223 1.556330e-04 1.056558e-03
## OGFOD3 -3.209107e+00 6.277364e+00 -3.900493 1.560511e-04 1.058790e-03
## KXD1 -1.363508e+01 5.303491e+01 -3.899352 1.567078e-04 1.062638e-03
## DNAL4 -1.984907e+00 8.689553e+00 -3.898288 1.573220e-04 1.066194e-03
## MAD2L2 -1.165859e+01 2.424771e+01 -3.896762 1.582072e-04 1.071580e-03
## MBD3 -1.086368e+01 1.022561e+01 -3.895954 1.586777e-04 1.074154e-03
## NR1H3 -1.763310e+00 3.587953e+00 -3.895538 1.589207e-04 1.075185e-03
## CEP104 2.678182e+00 1.183220e+01 3.894539 1.595056e-04 1.078527e-03
## ANKRA2 3.731419e+00 1.404003e+01 3.893558 1.600816e-04 1.081805e-03
## RAB3GAP2 1.092834e+01 3.235553e+01 3.893339 1.602101e-04 1.082057e-03
## SIL1 -8.583249e+00 1.473963e+01 -3.892036 1.609789e-04 1.086631e-03
## RPL5 -2.372974e+02 6.126065e+02 -3.891306 1.614112e-04 1.088929e-03
## FIZ1 -2.306413e+00 5.056317e+00 -3.890599 1.618309e-04 1.091140e-03
## AK1 -5.498873e+00 7.739893e+00 -3.889966 1.622074e-04 1.093057e-03
## SSBP4 -5.441216e+00 7.062787e+00 -3.888843 1.628779e-04 1.096952e-03
## SRP72 1.320828e+01 5.232833e+01 3.888476 1.630976e-04 1.097808e-03
## MON2 1.127148e+01 3.877696e+01 3.888178 1.632762e-04 1.098387e-03
## CHD2 6.200124e+01 1.699545e+02 3.886632 1.642050e-04 1.104009e-03
## CBY1 -1.284202e+00 4.702091e+00 -3.886287 1.644131e-04 1.104782e-03
## SLC29A3 -1.982386e+00 4.857206e+00 -3.885883 1.646574e-04 1.105796e-03
## SETBP1 1.512995e+00 3.115494e+00 3.885168 1.650899e-04 1.107652e-03
## SLC7A1 2.674351e+00 7.062949e+00 3.885117 1.651205e-04 1.107652e-03
## ARCN1 2.098553e+01 1.004514e+02 3.884857 1.652784e-04 1.107779e-03
## PDE1B -4.404382e+00 1.109671e+01 -3.884778 1.653263e-04 1.107779e-03
## EEF1B2 -1.390444e+02 3.136372e+02 -3.883240 1.662612e-04 1.113415e-03
## SGO2 2.032396e+00 4.123897e+00 3.882242 1.668710e-04 1.116868e-03
## MED13 3.197651e+01 8.061566e+01 3.881850 1.671111e-04 1.117844e-03
## ITGB2 -2.452058e+02 8.217875e+02 -3.881145 1.675440e-04 1.120108e-03
## GNPTAB 1.354036e+01 4.090593e+01 3.880969 1.676520e-04 1.120199e-03
## ARPC4 -1.923635e+02 5.025762e+02 -3.880390 1.680079e-04 1.121429e-03
## THAP3 -4.572023e+00 8.212353e+00 -3.880362 1.680252e-04 1.121429e-03
## CCDC189 -7.871423e-01 1.440579e+00 -3.879140 1.687798e-04 1.125831e-03
## WRN 1.441589e+00 5.436949e+00 3.878779 1.690032e-04 1.126177e-03
## PCIF1 -1.237342e+01 4.536989e+01 -3.878708 1.690473e-04 1.126177e-03
## OTULIN 7.776313e+00 2.837373e+01 3.878596 1.691165e-04 1.126177e-03
## PCNX3 -1.185904e+01 2.663338e+01 -3.878312 1.692924e-04 1.126716e-03
## DEF8 -4.391456e+01 1.550802e+02 -3.877762 1.696339e-04 1.127717e-03
## CAPN2 4.446129e+01 1.490575e+02 3.877577 1.697493e-04 1.127717e-03
## ZNF765 2.224560e+00 7.979432e+00 3.877532 1.697774e-04 1.127717e-03
## USP12 5.107304e+00 1.805303e+01 3.877375 1.698749e-04 1.127717e-03
## HELZ 1.672373e+01 4.709536e+01 3.877305 1.699183e-04 1.127717e-03
## KRBA1 -1.030994e+00 2.329323e+00 -3.876633 1.703374e-04 1.129867e-03
## CLEC7A 1.145860e+02 3.088035e+02 3.875258 1.711973e-04 1.134936e-03
## ZNF500 -1.836883e+00 4.895895e+00 -3.875100 1.712964e-04 1.134958e-03
## HMOX2 -1.910058e+01 5.262125e+01 -3.874412 1.717285e-04 1.136627e-03
## C5AR2 -4.599432e+01 1.259894e+02 -3.874394 1.717399e-04 1.136627e-03
## APOBR -1.512141e+02 3.566010e+02 -3.873957 1.720148e-04 1.137811e-03
## LTN1 1.294796e+01 3.265337e+01 3.873604 1.722375e-04 1.138649e-03
## U2AF1L4 -5.998016e+00 9.493169e+00 -3.873300 1.724291e-04 1.139281e-03
## ACAP3 -7.584212e+00 1.500451e+01 -3.872545 1.729064e-04 1.141716e-03
## QARS1 -3.262756e+01 1.124299e+02 -3.872315 1.730526e-04 1.141716e-03
## NAPB 4.553291e+00 1.268102e+01 3.872261 1.730865e-04 1.141716e-03
## GPS1 -1.251059e+01 2.055775e+01 -3.870123 1.744465e-04 1.150047e-03
## ANKMY2 2.100578e+00 9.701918e+00 3.869927 1.745715e-04 1.150232e-03
## CDYL2 3.154669e+00 9.220896e+00 3.869662 1.747407e-04 1.150708e-03
## AK3 3.415824e+00 1.842348e+01 3.867681 1.760115e-04 1.158433e-03
## STT3A 1.340048e+01 4.161521e+01 3.866749 1.766126e-04 1.161241e-03
## STARD5 8.240401e-01 2.043127e+00 3.866716 1.766340e-04 1.161241e-03
## IQCB1 3.777801e+00 1.512658e+01 3.863177 1.789343e-04 1.175713e-03
## ASL -9.478831e+00 2.054356e+01 -3.862471 1.793963e-04 1.177528e-03
## SEC23IP 5.000016e+00 2.513588e+01 3.862452 1.794092e-04 1.177528e-03
## CWF19L1 -1.420237e+01 5.329476e+01 -3.861942 1.797438e-04 1.179072e-03
## NEK1 1.424167e+00 4.852121e+00 3.861005 1.803602e-04 1.182461e-03
## GHDC -6.037482e+00 1.338641e+01 -3.859953 1.810543e-04 1.186356e-03
## SRPRA 1.674777e+01 1.257673e+02 3.859716 1.812114e-04 1.186729e-03
## TRIP11 5.507436e+00 1.993404e+01 3.859165 1.815768e-04 1.188466e-03
## TOMM7 -8.413431e+01 1.460260e+02 -3.858524 1.820022e-04 1.190593e-03
## CRTC2 -3.007273e+01 1.006048e+02 -3.857266 1.828399e-04 1.195414e-03
## SUDS3 1.405552e+01 4.831490e+01 3.856339 1.834595e-04 1.198804e-03
## VPS4A -1.917176e+01 7.216327e+01 -3.855925 1.837373e-04 1.199958e-03
## PDS5A 1.338793e+01 4.995416e+01 3.855394 1.840935e-04 1.201623e-03
## GPD2 1.160456e+01 2.811369e+01 3.855107 1.842864e-04 1.202221e-03
## PURB 1.334991e+01 4.766740e+01 3.854803 1.844915e-04 1.202897e-03
## RO60 1.190113e+01 3.688943e+01 3.854436 1.847384e-04 1.203791e-03
## DDX52 3.040593e+00 1.568359e+01 3.854204 1.848951e-04 1.203791e-03
## REV3L 7.557730e+00 1.774182e+01 3.854147 1.849331e-04 1.203791e-03
## ZNFX1 7.768744e+01 1.987261e+02 3.853203 1.855713e-04 1.206520e-03
## WDR81 -7.828339e+00 1.590335e+01 -3.853183 1.855850e-04 1.206520e-03
## HDAC11 -1.853890e+00 4.338856e+00 -3.853076 1.856576e-04 1.206520e-03
## ZNF691 -2.206900e+00 7.326318e+00 -3.851223 1.869164e-04 1.214035e-03
## GPATCH2L 1.275827e+01 4.436338e+01 3.850922 1.871220e-04 1.214706e-03
## FASTK -1.221133e+01 1.917378e+01 -3.850358 1.875075e-04 1.216542e-03
## PEAR1 4.496495e+00 8.648463e+00 3.849412 1.881552e-04 1.220077e-03
## TUT1 -2.461932e+00 6.978918e+00 -3.848756 1.886056e-04 1.222329e-03
## RPS27A -4.043311e+02 8.250003e+02 -3.847716 1.893220e-04 1.225359e-03
## HBA1 -2.103973e+03 1.667291e+03 -3.847665 1.893569e-04 1.225359e-03
## RPS19BP1 -1.492991e+01 2.785257e+01 -3.847628 1.893830e-04 1.225359e-03
## FAM214B -5.781150e+01 1.511736e+02 -3.846082 1.904528e-04 1.231609e-03
## RPL17 -3.191826e+02 7.536195e+02 -3.845126 1.911173e-04 1.235232e-03
## VAV2 -3.018007e+00 8.208061e+00 -3.844370 1.916444e-04 1.237965e-03
## TFPT -6.792730e+00 1.134438e+01 -3.844047 1.918696e-04 1.238744e-03
## MYLK 8.657475e+00 1.493465e+01 3.843468 1.922751e-04 1.240687e-03
## WDR33 -4.595511e+00 5.250688e+01 -3.843208 1.924569e-04 1.241185e-03
## CNOT9 4.525143e+00 2.827073e+01 3.842271 1.931149e-04 1.244007e-03
## MYSM1 1.342306e+01 3.101399e+01 3.842163 1.931911e-04 1.244007e-03
## ELOVL7 5.274655e+00 9.774018e+00 3.842137 1.932093e-04 1.244007e-03
## EIF2B4 -7.441838e+00 2.255576e+01 -3.841844 1.934156e-04 1.244660e-03
## PSMB4 -6.033523e+01 1.868292e+02 -3.840608 1.942875e-04 1.249593e-03
## VAMP8 -7.076420e+01 1.398074e+02 -3.839418 1.951310e-04 1.254338e-03
## PBRM1 9.130389e+00 3.209826e+01 3.838912 1.954908e-04 1.255970e-03
## NIP7 1.948100e+00 1.508204e+01 3.838351 1.958902e-04 1.257855e-03
## CHTOP -1.201643e+01 6.536219e+01 -3.837941 1.961826e-04 1.259050e-03
## MAP3K6 -3.399365e+00 6.981483e+00 -3.837203 1.967103e-04 1.261198e-03
## C16orf86 -1.217761e+00 1.445341e+00 -3.837036 1.968297e-04 1.261198e-03
## TTC21B 2.387106e+00 7.534113e+00 3.837027 1.968363e-04 1.261198e-03
## USP33 1.658062e+01 6.113851e+01 3.836680 1.970846e-04 1.262055e-03
## RGS19 -4.701744e+01 1.154492e+02 -3.836543 1.971828e-04 1.262055e-03
## BAHD1 -5.238704e+00 1.815283e+01 -3.835735 1.977634e-04 1.265089e-03
## FZD3 6.664492e-01 1.567895e+00 3.834587 1.985910e-04 1.269698e-03
## CTPS1 2.247968e+00 8.866075e+00 3.833778 1.991756e-04 1.271861e-03
## SNX25 2.230646e+00 5.475031e+00 3.833725 1.992144e-04 1.271861e-03
## OAZ1 -6.026428e+02 1.263818e+03 -3.833674 1.992511e-04 1.271861e-03
## TRADD -1.329416e+01 2.889772e+01 -3.832853 1.998468e-04 1.274978e-03
## SIGIRR -1.818807e+01 2.176615e+01 -3.832530 2.000816e-04 1.275789e-03
## LTA -1.765123e+00 3.263284e+00 -3.832368 2.001996e-04 1.275856e-03
## LRRC45 -2.150371e+00 3.421982e+00 -3.832079 2.004100e-04 1.276461e-03
## CCDC115 -6.354504e+00 2.770323e+01 -3.831942 2.005098e-04 1.276461e-03
## ZNF341 -1.685522e+00 6.068680e+00 -3.831698 2.006876e-04 1.276907e-03
## SENP2 9.167506e+00 3.246777e+01 3.831249 2.010150e-04 1.278305e-03
## BRD9 -5.579767e+00 1.974526e+01 -3.830831 2.013207e-04 1.279562e-03
## TRIR -6.818525e+01 1.294770e+02 -3.830405 2.016325e-04 1.280858e-03
## TYSND1 -4.659034e+00 9.054637e+00 -3.830028 2.019091e-04 1.281928e-03
## FUOM -4.146972e+00 3.384459e+00 -3.829400 2.023706e-04 1.282888e-03
## RPL10A -1.779739e+02 3.855645e+02 -3.829392 2.023765e-04 1.282888e-03
## COQ2 -4.169012e+00 1.348426e+01 -3.829380 2.023848e-04 1.282888e-03
## SLFN11 1.475333e+01 3.929425e+01 3.828543 2.030009e-04 1.285947e-03
## SSBP2 5.014423e+00 1.985354e+01 3.828431 2.030842e-04 1.285947e-03
## POLR2F -5.613400e+00 1.787746e+01 -3.828122 2.033118e-04 1.286701e-03
## NBPF14 8.546894e+01 1.938345e+02 3.827311 2.039115e-04 1.289808e-03
## IZUMO4 -8.934447e-01 1.271574e+00 -3.826792 2.042964e-04 1.291067e-03
## SLC48A1 -6.271563e+00 1.747207e+01 -3.826749 2.043282e-04 1.291067e-03
## PFKM 1.536043e+00 6.160440e+00 3.826231 2.047125e-04 1.292807e-03
## DNAJC14 8.229237e+00 3.068707e+01 3.825678 2.051245e-04 1.294719e-03
## MICB 1.044248e+01 3.013400e+01 3.825215 2.054692e-04 1.296205e-03
## DESI2 4.464273e+00 2.281496e+01 3.824602 2.059268e-04 1.298401e-03
## PPP2R5E 4.934458e+00 2.808026e+01 3.823637 2.066500e-04 1.301680e-03
## ZNHIT1 -2.227255e+01 3.595589e+01 -3.823615 2.066663e-04 1.301680e-03
## SURF1 -1.792212e+01 5.475207e+01 -3.822699 2.073545e-04 1.305321e-03
## SERPINH1 -1.743914e+00 2.296805e+00 -3.822456 2.075375e-04 1.305780e-03
## CCDC77 -1.209116e+00 6.643483e+00 -3.821167 2.085101e-04 1.311203e-03
## UVRAG 6.689687e+00 2.743571e+01 3.820623 2.089218e-04 1.313096e-03
## SLC25A25 -3.416960e+00 1.216950e+01 -3.818618 2.104462e-04 1.321976e-03
## WAS -1.021417e+02 2.968501e+02 -3.818378 2.106298e-04 1.322429e-03
## METTL26 -8.045210e+00 7.711972e+00 -3.818189 2.107740e-04 1.322635e-03
## PRELID1 -8.981990e+01 2.591440e+02 -3.815944 2.124963e-04 1.332737e-03
## SP4 4.849291e+00 1.337871e+01 3.815334 2.129668e-04 1.334982e-03
## POU2AF1 1.797550e+01 2.255729e+01 3.814657 2.134899e-04 1.337554e-03
## SLC10A7 1.684225e+00 5.177957e+00 3.814137 2.138920e-04 1.339366e-03
## RPL9 -6.469231e+02 1.129985e+03 -3.813673 2.142523e-04 1.340914e-03
## IL6ST 2.582736e+01 7.018728e+01 3.813360 2.144956e-04 1.341184e-03
## ENKD1 -2.589817e+00 3.950843e+00 -3.813281 2.145563e-04 1.341184e-03
## BCAT2 -3.500490e+00 5.510112e+00 -3.813181 2.146346e-04 1.341184e-03
## RASSF4 -2.323108e+01 5.750386e+01 -3.812251 2.153585e-04 1.344453e-03
## UBXN7 1.804566e+01 4.947988e+01 3.812169 2.154229e-04 1.344453e-03
## KLHL20 2.286956e+00 6.873662e+00 3.812072 2.154980e-04 1.344453e-03
## AAAS -6.025724e+00 2.098386e+01 -3.810848 2.164555e-04 1.349525e-03
## RBBP5 6.686363e+00 2.772433e+01 3.810742 2.165384e-04 1.349525e-03
## CDK14 1.419179e+01 2.908659e+01 3.810470 2.167522e-04 1.350148e-03
## RAB3IP 5.177163e+00 1.368427e+01 3.809382 2.176074e-04 1.354712e-03
## SNF8 -1.662043e+01 4.642449e+01 -3.809247 2.177134e-04 1.354712e-03
## IDE 3.273245e+00 1.526620e+01 3.808869 2.180121e-04 1.355859e-03
## LENG9 -2.673780e+00 2.339504e+00 -3.807982 2.187126e-04 1.359503e-03
## MAPK11 -3.016698e+00 3.276328e+00 -3.807523 2.190763e-04 1.361050e-03
## NCK1 7.612620e+00 2.926003e+01 3.806623 2.197910e-04 1.364775e-03
## NR6A1 -3.318838e+00 8.241806e+00 -3.806406 2.199640e-04 1.365105e-03
## HACD2 4.654754e+00 1.611157e+01 3.806238 2.200976e-04 1.365105e-03
## SLC30A6 4.954678e+00 2.152792e+01 3.806123 2.201893e-04 1.365105e-03
## CRACR2A 1.693322e+00 3.480265e+00 3.805757 2.204811e-04 1.366199e-03
## TSEN34 -4.570774e+01 1.151767e+02 -3.805104 2.210021e-04 1.368713e-03
## LRRC23 -1.299251e+00 2.637460e+00 -3.804949 2.211260e-04 1.368765e-03
## CABIN1 -2.132303e+01 4.119331e+01 -3.803709 2.221201e-04 1.374201e-03
## MCCC2 3.228389e+00 1.023146e+01 3.803381 2.223838e-04 1.375115e-03
## VPS39 1.547003e+01 9.002657e+01 3.802870 2.227952e-04 1.376941e-03
## QTRT1 -2.749523e+00 3.254806e+00 -3.802604 2.230093e-04 1.377547e-03
## ECSIT -4.947374e+00 9.465281e+00 -3.802167 2.233617e-04 1.378521e-03
## FAM53B -1.378911e+01 6.358495e+01 -3.802120 2.233994e-04 1.378521e-03
## NECAB2 -6.761314e+00 9.255283e+00 -3.800892 2.243939e-04 1.383937e-03
## PSMD13 -4.406010e+01 1.625850e+02 -3.800570 2.246546e-04 1.384825e-03
## BIN3 -1.935533e+01 4.934805e+01 -3.800188 2.249650e-04 1.385010e-03
## LRRC58 4.799083e+00 1.824548e+01 3.800110 2.250284e-04 1.385010e-03
## ELOVL6 1.423362e+00 3.519954e+00 3.800004 2.251147e-04 1.385010e-03
## PI16 -2.251861e+00 2.062281e+00 -3.799959 2.251518e-04 1.385010e-03
## USP25 2.687946e+01 6.833131e+01 3.799415 2.255947e-04 1.387015e-03
## USP31 1.146007e+00 4.433027e+00 3.799076 2.258713e-04 1.387734e-03
## BOD1 -3.402001e+00 9.862066e+00 -3.798985 2.259456e-04 1.387734e-03
## GPKOW -5.460239e+00 2.144052e+01 -3.798491 2.263492e-04 1.389494e-03
## PIH1D1 -1.147342e+01 2.301395e+01 -3.798037 2.267202e-04 1.391051e-03
## DPH5 -3.611414e+00 1.455070e+01 -3.795461 2.288396e-04 1.403328e-03
## CEBPZOS -9.531322e+00 2.850579e+01 -3.794913 2.292933e-04 1.405384e-03
## ENGASE -6.715809e+00 1.680177e+01 -3.794702 2.294678e-04 1.405727e-03
## TTC17 9.329636e+00 4.557256e+01 3.793785 2.302283e-04 1.409658e-03
## AXIN1 -5.968185e+00 2.901411e+01 -3.793594 2.303876e-04 1.409906e-03
## CORO1B -1.295699e+01 2.380160e+01 -3.793311 2.306228e-04 1.410617e-03
## KLHL24 1.629711e+01 4.580787e+01 3.792678 2.311504e-04 1.412835e-03
## SLC5A3 6.762636e+00 1.543358e+01 3.792590 2.312237e-04 1.412835e-03
## GOLIM4 1.538804e+00 4.754365e+00 3.791865 2.318296e-04 1.415808e-03
## UBA52 -3.715446e+02 7.891039e+02 -3.791650 2.320094e-04 1.416177e-03
## RPS3A -8.729908e+02 1.531365e+03 -3.791143 2.324341e-04 1.417694e-03
## ATR 4.966033e+00 1.461578e+01 3.791068 2.324971e-04 1.417694e-03
## ITFG1 1.004127e+01 3.305206e+01 3.790221 2.332089e-04 1.421304e-03
## TADA3 -5.185536e+01 1.381441e+02 -3.789892 2.334851e-04 1.422257e-03
## PTDSS2 -2.859937e+00 5.440338e+00 -3.788948 2.342816e-04 1.426272e-03
## NMRAL1 -1.000442e+01 1.672887e+01 -3.788635 2.345468e-04 1.426272e-03
## PRKCI 2.606027e+00 1.052824e+01 3.788608 2.345695e-04 1.426272e-03
## COQ9 -3.253868e+00 1.839751e+01 -3.788527 2.346380e-04 1.426272e-03
## TIAF1 -1.780848e+01 2.625894e+01 -3.788400 2.347456e-04 1.426272e-03
## FER 1.480554e+00 3.823844e+00 3.788095 2.350034e-04 1.426752e-03
## DGCR6L -1.258260e+01 1.389479e+01 -3.788022 2.350652e-04 1.426752e-03
## FRA10AC1 -2.035176e+00 7.471636e+00 -3.787155 2.358015e-04 1.430489e-03
## TESK1 -3.665199e+00 9.805560e+00 -3.786788 2.361133e-04 1.431545e-03
## MME 2.725015e+02 4.623207e+02 3.786654 2.362274e-04 1.431545e-03
## KPNA6 8.411552e+00 4.246204e+01 3.786525 2.363377e-04 1.431545e-03
## WDR70 -4.416509e+00 1.612595e+01 -3.785411 2.372882e-04 1.436569e-03
## CENPA 1.303511e+00 1.450877e+00 3.785139 2.375209e-04 1.436583e-03
## NDOR1 -8.661786e+00 1.651867e+01 -3.785125 2.375328e-04 1.436583e-03
## RABL3 2.389588e+00 1.204163e+01 3.784746 2.378579e-04 1.437816e-03
## PTPN6 -1.368766e+02 5.268262e+02 -3.784099 2.384135e-04 1.440440e-03
## ARHGAP45 -1.057195e+02 2.357847e+02 -3.783164 2.392174e-04 1.444176e-03
## PLEKHO1 -9.512740e+01 1.823990e+02 -3.783074 2.392952e-04 1.444176e-03
## UBALD1 -3.361644e+00 4.023117e+00 -3.782956 2.393972e-04 1.444176e-03
## MSRB3 6.115453e+00 1.287583e+01 3.782709 2.396099e-04 1.444725e-03
## PLEKHA8 2.150124e+00 8.093103e+00 3.782510 2.397822e-04 1.445029e-03
## ARID5A -4.345053e+01 6.795398e+01 -3.781607 2.405627e-04 1.448996e-03
## DGCR2 -2.656957e+01 9.258023e+01 -3.781454 2.406955e-04 1.449060e-03
## PMM1 -7.505957e+00 1.697339e+01 -3.780701 2.413494e-04 1.451609e-03
## CTDNEP1 -3.801098e+01 1.228679e+02 -3.780685 2.413636e-04 1.451609e-03
## ISY1 -1.426847e+01 5.001492e+01 -3.779157 2.426952e-04 1.458877e-03
## ETFB -1.889623e+01 2.558850e+01 -3.777336 2.442908e-04 1.467725e-03
## RNF213 2.584441e+02 4.557329e+02 3.776737 2.448178e-04 1.470146e-03
## ZMIZ2 -7.117732e+00 2.160966e+01 -3.776463 2.450594e-04 1.470853e-03
## MAPK3 -4.148627e+01 1.167952e+02 -3.776246 2.452510e-04 1.471258e-03
## FDXR -2.190280e+00 3.060171e+00 -3.775881 2.455733e-04 1.471981e-03
## SEMA3E -1.092491e+00 1.539377e+00 -3.775828 2.456198e-04 1.471981e-03
## MTFR1 6.201385e-01 2.852083e+00 3.775284 2.461013e-04 1.474122e-03
## MYO1D 2.825059e+00 3.711571e+00 3.775040 2.463177e-04 1.474673e-03
## IRAK2 7.054777e+00 1.125861e+01 3.774883 2.464565e-04 1.474760e-03
## LMBRD2 4.812965e+00 1.451010e+01 3.773673 2.475318e-04 1.480206e-03
## EIF6 -3.129515e+01 7.179992e+01 -3.773578 2.476162e-04 1.480206e-03
## CCL3 -4.625988e+00 8.235264e+00 -3.773418 2.477583e-04 1.480309e-03
## UBAC2 -1.226346e+01 6.960979e+01 -3.772439 2.486324e-04 1.484183e-03
## RHOG -2.659925e+02 5.131822e+02 -3.772411 2.486570e-04 1.484183e-03
## NEK4 4.264752e+00 1.222143e+01 3.772105 2.489311e-04 1.484569e-03
## GRAMD4 -3.351802e+00 1.295125e+01 -3.772059 2.489720e-04 1.484569e-03
## MAN2A1 1.094881e+01 4.161320e+01 3.771574 2.494071e-04 1.486339e-03
## NINJ2 -1.193585e+01 2.848899e+01 -3.771448 2.495194e-04 1.486339e-03
## ECI1 -3.148200e+00 4.541724e+00 -3.770467 2.504016e-04 1.490845e-03
## DNAJB4 1.142873e+00 3.413015e+00 3.766866 2.536620e-04 1.509499e-03
## ZNF669 1.541306e+00 6.245737e+00 3.766148 2.543177e-04 1.512642e-03
## BAX -2.281173e+01 5.942547e+01 -3.765793 2.546414e-04 1.513808e-03
## TRIP6 -1.973153e+00 4.341131e+00 -3.765161 2.552208e-04 1.516492e-03
## TRIM11 -7.127008e+00 2.216226e+01 -3.764472 2.558526e-04 1.519222e-03
## HAUS2 2.206117e+00 1.140757e+01 3.764381 2.559364e-04 1.519222e-03
## ZNF671 -3.172690e+00 1.503733e+01 -3.764129 2.561677e-04 1.519478e-03
## ZNF581 -8.014281e+00 1.407894e+01 -3.764055 2.562358e-04 1.519478e-03
## CNST 8.422672e+00 3.201148e+01 3.763119 2.570981e-04 1.523830e-03
## TPP2 1.101797e+01 3.408538e+01 3.762883 2.573167e-04 1.524363e-03
## MED6 -2.151230e+00 1.610671e+01 -3.762341 2.578177e-04 1.526569e-03
## PIDD1 -2.083058e+00 2.507303e+00 -3.762101 2.580395e-04 1.527120e-03
## DBP -1.865338e+00 3.415151e+00 -3.761944 2.581848e-04 1.527218e-03
## MORF4L2 7.757616e+00 4.127090e+01 3.761607 2.584969e-04 1.528302e-03
## SBF2 2.201537e+01 4.786018e+01 3.761318 2.587652e-04 1.529126e-03
## ZDHHC23 9.893167e-01 2.360267e+00 3.760860 2.591912e-04 1.530880e-03
## RPS25 -2.048400e+02 4.875764e+02 -3.760080 2.599175e-04 1.534406e-03
## APEX1 -1.663267e+01 5.645519e+01 -3.759694 2.602774e-04 1.535506e-03
## TAB3 1.238691e+01 3.729086e+01 3.759603 2.603628e-04 1.535506e-03
## TNFRSF10C -1.797639e+02 4.380031e+02 -3.759069 2.608617e-04 1.537587e-03
## HPS3 7.069255e+00 3.272897e+01 3.758699 2.612087e-04 1.537587e-03
## ATP6V0E2 -6.086691e+00 8.987266e+00 -3.758464 2.614284e-04 1.537587e-03
## KLRB1 -2.930696e+01 4.120303e+01 -3.758398 2.614900e-04 1.537587e-03
## SMCHD1 3.151983e+02 7.308843e+02 3.758395 2.614935e-04 1.537587e-03
## HMGXB4 3.420485e+00 1.218550e+01 3.758301 2.615815e-04 1.537587e-03
## PBLD 1.246348e+00 3.704078e+00 3.758210 2.616669e-04 1.537587e-03
## LPAR2 -6.475904e+01 1.384895e+02 -3.758118 2.617527e-04 1.537587e-03
## YJU2 -4.442894e+00 8.966040e+00 -3.757455 2.623759e-04 1.540484e-03
## TEX2 1.221087e+01 1.955946e+01 3.757256 2.625635e-04 1.540823e-03
## CLCC1 2.095010e+00 8.700595e+00 3.756391 2.633789e-04 1.543968e-03
## BTN3A2 7.470000e+01 2.241474e+02 3.756259 2.635034e-04 1.543968e-03
## GGCX 3.007616e+00 1.796261e+01 3.756246 2.635162e-04 1.543968e-03
## FAM199X 1.015768e+01 3.456611e+01 3.756046 2.637053e-04 1.543968e-03
## ANKRD26 1.038639e+00 2.666260e+00 3.755998 2.637504e-04 1.543968e-03
## RMC1 5.139146e+00 3.124943e+01 3.755555 2.641700e-04 1.545661e-03
## FNDC3A 2.089290e+01 4.673518e+01 3.755292 2.644192e-04 1.546357e-03
## TSC1 6.339273e+00 2.520761e+01 3.755039 2.646589e-04 1.546996e-03
## XRN1 5.245608e+01 9.117972e+01 3.754848 2.648402e-04 1.547293e-03
## EIF3H -2.523622e+01 1.270660e+02 -3.754655 2.650231e-04 1.547599e-03
## LONP1 -7.578937e+00 1.202611e+01 -3.754051 2.655976e-04 1.550191e-03
## CENPN 3.223504e+00 6.068023e+00 3.752412 2.671617e-04 1.558270e-03
## CDC26 -1.483632e+01 4.956672e+01 -3.752325 2.672446e-04 1.558270e-03
## KANSL3 6.150493e+00 3.350078e+01 3.751438 2.680959e-04 1.562466e-03
## C6orf47 -1.216399e+01 5.058061e+01 -3.750259 2.692302e-04 1.568306e-03
## SZRD1 -2.915949e+01 1.369710e+02 -3.749947 2.695307e-04 1.569286e-03
## PTPRA 1.025839e+01 6.472976e+01 3.749598 2.698679e-04 1.570114e-03
## ATXN7 2.682478e+01 6.438516e+01 3.749526 2.699377e-04 1.570114e-03
## APPBP2 8.790470e+00 3.302521e+01 3.749140 2.703110e-04 1.571514e-03
## CEP162 4.008583e+00 1.075719e+01 3.748759 2.706798e-04 1.572622e-03
## ZNF852 8.724034e-01 2.387923e+00 3.748669 2.707668e-04 1.572622e-03
## PDK2 -3.222668e+00 7.084785e+00 -3.748260 2.711636e-04 1.574156e-03
## PXN -1.748908e+02 5.532081e+02 -3.747597 2.718082e-04 1.577126e-03
## GOLT1B 3.960652e+00 2.098623e+01 3.746315 2.730581e-04 1.583604e-03
## BRD2 4.394000e+01 2.390096e+02 3.745350 2.740026e-04 1.588304e-03
## CD4 -5.384606e+01 1.056741e+02 -3.744719 2.746216e-04 1.591115e-03
## NELFE -2.130252e+01 5.379988e+01 -3.744357 2.749780e-04 1.592402e-03
## MIF4GD -8.372870e+00 2.396256e+01 -3.743972 2.753568e-04 1.593125e-03
## VPS25 -1.213111e+01 4.402055e+01 -3.743861 2.754658e-04 1.593125e-03
## LILRA1 -3.649428e+01 1.003846e+02 -3.743821 2.755058e-04 1.593125e-03
## PNPLA7 -9.236918e-01 1.013381e+00 -3.743499 2.758231e-04 1.594182e-03
## NFATC1 -3.657374e+00 1.200746e+01 -3.743252 2.760664e-04 1.594526e-03
## IRF8 -1.162482e+01 4.913949e+01 -3.743166 2.761514e-04 1.594526e-03
## ATL1 6.216647e-01 1.615097e+00 3.742589 2.767224e-04 1.596294e-03
## N4BP2 3.185102e+00 7.302057e+00 3.742584 2.767269e-04 1.596294e-03
## ZNF446 -2.864160e+00 5.543368e+00 -3.742260 2.770479e-04 1.597369e-03
## IGFL4 4.218307e+00 7.592843e+00 3.741176 2.781232e-04 1.602790e-03
## RPL36 -1.096966e+02 1.128532e+02 -3.739886 2.794089e-04 1.609417e-03
## PLEKHM3 8.147862e+00 1.785398e+01 3.739395 2.799000e-04 1.611463e-03
## ATAD2B 7.929089e+00 2.246466e+01 3.739002 2.802935e-04 1.612945e-03
## LGALS1 -9.822799e+01 1.560579e+02 -3.738866 2.804299e-04 1.612948e-03
## NCOA6 1.337801e+01 4.195751e+01 3.738596 2.807004e-04 1.613721e-03
## GPER1 -2.382425e+00 2.359528e+00 -3.737322 2.819808e-04 1.619949e-03
## CTDP1 -1.070125e+01 2.589872e+01 -3.737190 2.821136e-04 1.619949e-03
## FLT3LG -9.521503e+00 1.002819e+01 -3.737111 2.821935e-04 1.619949e-03
## PRDM4 5.648702e+00 2.520332e+01 3.736572 2.827379e-04 1.622289e-03
## SH3D21 -1.316026e+00 3.131447e+00 -3.735069 2.842594e-04 1.630230e-03
## CAPG -1.085632e+02 1.862372e+02 -3.734334 2.850063e-04 1.633724e-03
## FAM126A 5.083078e+00 1.735030e+01 3.734138 2.852057e-04 1.634077e-03
## NCF4 -2.478161e+02 5.687098e+02 -3.733800 2.855503e-04 1.634805e-03
## ARHGAP5 4.197457e+00 1.044044e+01 3.733743 2.856085e-04 1.634805e-03
## WDR7 2.858741e+00 1.093938e+01 3.733515 2.858411e-04 1.634957e-03
## KCTD9 4.444331e+00 1.433280e+01 3.733447 2.859108e-04 1.634957e-03
## EEFSEC -4.127477e+00 6.400606e+00 -3.733052 2.863143e-04 1.636476e-03
## PTGES2 -6.381049e+00 9.792072e+00 -3.731968 2.874240e-04 1.642027e-03
## WASHC2A 1.329008e+01 5.737396e+01 3.731732 2.876664e-04 1.642118e-03
## KDM5A 3.208623e+01 1.203062e+02 3.731682 2.877168e-04 1.642118e-03
## TMED1 -5.529179e+00 1.255846e+01 -3.729515 2.899506e-04 1.654071e-03
## DUS1L -1.234602e+01 2.322127e+01 -3.728565 2.909349e-04 1.658888e-03
## SLC33A1 3.381048e+00 1.850734e+01 3.728236 2.912767e-04 1.660039e-03
## RAB2B 2.411137e+00 1.148864e+01 3.727882 2.916443e-04 1.661336e-03
## CEP63 3.228608e+01 9.140290e+01 3.727295 2.922558e-04 1.664020e-03
## CFL1 -3.224803e+02 9.282552e+02 -3.726777 2.927953e-04 1.666292e-03
## USE1 -4.058224e+00 6.885723e+00 -3.726491 2.930944e-04 1.667194e-03
## MCM9 4.319706e+00 1.651753e+01 3.724214 2.954833e-04 1.679659e-03
## CYP4F3 1.134943e+02 2.319367e+02 3.724133 2.955690e-04 1.679659e-03
## MRPL4 -5.415779e+00 6.632145e+00 -3.723812 2.959067e-04 1.680099e-03
## LIMS1 3.337464e+01 9.863491e+01 3.723790 2.959298e-04 1.680099e-03
## IDH3B -1.745103e+01 5.581112e+01 -3.723432 2.963074e-04 1.681332e-03
## ABRAXAS2 3.114643e+00 1.367703e+01 3.723316 2.964305e-04 1.681332e-03
## SEMA4C -2.373107e+00 4.868428e+00 -3.723100 2.966587e-04 1.681822e-03
## LSM11 9.458718e-01 3.490817e+00 3.722933 2.968348e-04 1.682017e-03
## NUP155 2.197414e+00 1.010517e+01 3.722445 2.973515e-04 1.684140e-03
## KPNA3 5.817698e+00 2.299328e+01 3.722248 2.975606e-04 1.684520e-03
## SH2D3A -1.744528e+00 2.920412e+00 -3.722026 2.977961e-04 1.685048e-03
## ST6GAL1 2.710843e+01 7.503714e+01 3.721563 2.982873e-04 1.687023e-03
## PATL2 7.439009e+00 1.928900e+01 3.721126 2.987523e-04 1.688848e-03
## EXOC7 -1.781705e+01 1.037912e+02 -3.720029 2.999215e-04 1.694649e-03
## CTNNBIP1 -4.803639e+00 1.671485e+01 -3.719303 3.006983e-04 1.697980e-03
## OGT 6.461978e+01 2.333961e+02 3.719210 3.007974e-04 1.697980e-03
## SLC25A30 2.694606e+00 8.382502e+00 3.718549 3.015060e-04 1.701171e-03
## CPSF2 1.310789e+01 5.700730e+01 3.717576 3.025528e-04 1.706265e-03
## TMEM39B -2.178888e+00 7.144007e+00 -3.717041 3.031293e-04 1.708704e-03
## UNC5A -7.221349e-01 8.168418e-01 -3.716087 3.041597e-04 1.713698e-03
## ADNP 1.413843e+01 6.282001e+01 3.715386 3.049198e-04 1.717165e-03
## MOB3A -1.858233e+02 4.839249e+02 -3.714518 3.058630e-04 1.721659e-03
## LPCAT4 -7.105483e+00 2.093302e+01 -3.713749 3.067007e-04 1.725555e-03
## SCP2 1.304611e+01 5.528480e+01 3.712919 3.076075e-04 1.729836e-03
## MIF -6.001501e+00 6.159010e+00 -3.712724 3.078205e-04 1.730214e-03
## DEK 3.646862e+01 1.299614e+02 3.711780 3.088562e-04 1.735213e-03
## TRAF1 -8.714057e+00 2.053752e+01 -3.709901 3.109259e-04 1.746014e-03
## USP49 2.622084e+00 8.151365e+00 3.708141 3.128764e-04 1.756135e-03
## UBTF -1.379778e+01 8.486721e+01 -3.707639 3.134355e-04 1.757623e-03
## CENPT -8.919034e+00 2.019970e+01 -3.707625 3.134505e-04 1.757623e-03
## TAF1 1.051095e+01 3.287209e+01 3.707503 3.135861e-04 1.757623e-03
## PCDH12 -6.818857e-01 1.708182e+00 -3.707251 3.138671e-04 1.758214e-03
## TAF1B 1.693007e+00 5.208159e+00 3.707143 3.139880e-04 1.758214e-03
## PIGC 3.316433e+00 2.101348e+01 3.706809 3.143613e-04 1.759474e-03
## MYL6 -1.230692e+03 2.073412e+03 -3.705438 3.158948e-04 1.767223e-03
## NDUFV1 -2.270646e+01 3.372970e+01 -3.704702 3.167220e-04 1.770561e-03
## PRRG4 5.342365e+01 7.128888e+01 3.704628 3.168056e-04 1.770561e-03
## LRRC8D 7.453402e+00 2.933636e+01 3.704509 3.169394e-04 1.770561e-03
## NUS1 9.289865e+00 3.757963e+01 3.703646 3.179115e-04 1.775156e-03
## PRMT2 -2.578337e+01 1.297037e+02 -3.702076 3.196880e-04 1.784235e-03
## RFX1 -1.772935e+00 5.288178e+00 -3.701007 3.209032e-04 1.790175e-03
## CDIP1 -7.757637e+00 1.878473e+01 -3.700683 3.212728e-04 1.791151e-03
## ZBTB46 -6.344479e-01 1.175160e+00 -3.700589 3.213801e-04 1.791151e-03
## SLC2A4RG -6.499102e+00 1.031328e+01 -3.700232 3.217872e-04 1.792577e-03
## RAD18 1.253494e+00 5.186807e+00 3.699906 3.221594e-04 1.793808e-03
## TESC -1.763397e+01 2.362683e+01 -3.699656 3.224451e-04 1.794556e-03
## TNPO1 3.399436e+01 8.426560e+01 3.699387 3.227534e-04 1.795429e-03
## RBM27 8.010752e+00 2.871347e+01 3.699064 3.231234e-04 1.796645e-03
## CMTM3 -2.667333e+01 9.704492e+01 -3.698902 3.233092e-04 1.796836e-03
## MSH6 3.708020e+00 2.168682e+01 3.698606 3.236484e-04 1.797878e-03
## C19orf53 -1.832979e+01 3.260124e+01 -3.697843 3.245255e-04 1.801907e-03
## TMEM234 -3.662867e+00 9.954188e+00 -3.697283 3.251713e-04 1.804648e-03
## MEF2B -1.601756e+00 2.260429e+00 -3.696043 3.266036e-04 1.810904e-03
## RPL30 -3.046104e+02 7.576033e+02 -3.696043 3.266040e-04 1.810904e-03
## ACTL6A 3.538498e+00 1.502742e+01 3.695587 3.271324e-04 1.812912e-03
## ZRANB1 1.475332e+01 3.288000e+01 3.695466 3.272719e-04 1.812912e-03
## INF2 -5.467478e+00 9.369260e+00 -3.694373 3.285430e-04 1.819104e-03
## RHOF -1.362774e+01 3.008967e+01 -3.693973 3.290092e-04 1.820093e-03
## ACBD3 7.028315e+00 2.900214e+01 3.693956 3.290286e-04 1.820093e-03
## IPO9 4.612519e+00 2.128201e+01 3.693496 3.295653e-04 1.820836e-03
## CTSF -2.858385e+00 4.320339e+00 -3.693488 3.295745e-04 1.820836e-03
## TXNDC5 2.995249e+02 2.778705e+02 3.693446 3.296236e-04 1.820836e-03
## SCARB2 1.878929e+01 4.767871e+01 3.693164 3.299532e-04 1.821809e-03
## SPATA20 -4.506344e+00 8.463381e+00 -3.692844 3.303275e-04 1.823026e-03
## TRAPPC1 -4.785545e+01 1.334744e+02 -3.692462 3.307750e-04 1.824647e-03
## RPP21 -3.130072e+00 4.346456e+00 -3.692135 3.311586e-04 1.825914e-03
## SLC38A1 2.673506e+01 6.328160e+01 3.691566 3.318268e-04 1.827927e-03
## GRAP -1.152316e+01 1.639445e+01 -3.691562 3.318319e-04 1.827927e-03
## PIN1 -1.067383e+01 1.756315e+01 -3.691102 3.323729e-04 1.830057e-03
## IRAK1 -1.831881e+01 6.347228e+01 -3.690607 3.329561e-04 1.831580e-03
## KRBA2 9.262405e-01 5.176327e+00 3.690605 3.329585e-04 1.831580e-03
## SH3BP5L -2.990187e+01 9.975082e+01 -3.689308 3.344908e-04 1.839156e-03
## SPAG1 3.741493e+00 7.047075e+00 3.688800 3.350925e-04 1.841611e-03
## HSPA1B -2.189941e+01 2.484944e+01 -3.688155 3.358586e-04 1.844967e-03
## B3GALNT2 2.145017e+00 7.077720e+00 3.687979 3.360679e-04 1.845262e-03
## SUPT16H 1.160194e+01 6.353515e+01 3.687421 3.367332e-04 1.848059e-03
## EIF3A 2.933931e+01 1.238513e+02 3.686961 3.372812e-04 1.850210e-03
## ILVBL -4.381855e+00 6.593759e+00 -3.686257 3.381224e-04 1.853967e-03
## RCBTB1 7.040226e+00 2.234775e+01 3.685830 3.386338e-04 1.855561e-03
## USP20 -1.317580e+01 3.525384e+01 -3.685753 3.387259e-04 1.855561e-03
## BOP1 -5.840469e+00 6.985680e+00 -3.685247 3.393334e-04 1.858030e-03
## SCRIB -1.858720e+00 3.799350e+00 -3.684547 3.401751e-04 1.861780e-03
## NEMP1 2.642654e+00 7.893184e+00 3.684390 3.403631e-04 1.861950e-03
## RABAC1 -1.758665e+01 2.794759e+01 -3.683962 3.408790e-04 1.863912e-03
## NDUFA13 -5.482893e+01 7.325513e+01 -3.682554 3.425816e-04 1.872359e-03
## WDR74 -7.117044e+00 1.363374e+01 -3.682324 3.428600e-04 1.873017e-03
## FLII -3.393658e+01 1.642210e+02 -3.681739 3.435693e-04 1.876028e-03
## RIF1 7.608518e+00 2.654692e+01 3.681518 3.438387e-04 1.876635e-03
## ZNF507 2.947320e+00 1.056775e+01 3.680578 3.449827e-04 1.882013e-03
## DENND1B 6.706954e+00 2.025507e+01 3.680416 3.451802e-04 1.882129e-03
## THOC6 -7.354110e+00 1.286914e+01 -3.680198 3.454468e-04 1.882129e-03
## SLC25A32 2.389577e+00 1.008751e+01 3.680170 3.454802e-04 1.882129e-03
## MANEAL -7.434681e-01 1.880665e+00 -3.679936 3.457667e-04 1.882825e-03
## POGZ 1.072249e+01 4.534624e+01 3.678927 3.470022e-04 1.888686e-03
## RPLP2 -3.149869e+02 2.782993e+02 -3.678524 3.474968e-04 1.890510e-03
## PLIN3 -4.253595e+01 1.068782e+02 -3.678108 3.480076e-04 1.891682e-03
## HS1BP3 -1.378633e+01 3.926229e+01 -3.678089 3.480312e-04 1.891682e-03
## BLOC1S4 -2.817082e+00 8.199685e+00 -3.677550 3.486941e-04 1.894417e-03
## YIF1B -8.831260e+00 1.808188e+01 -3.676786 3.496370e-04 1.896748e-03
## KLF2 -9.384581e+01 2.064148e+02 -3.676775 3.496507e-04 1.896748e-03
## DHX29 3.881271e+00 1.834194e+01 3.676757 3.496727e-04 1.896748e-03
## ZFYVE26 8.905999e+00 2.543646e+01 3.676684 3.497629e-04 1.896748e-03
## FMR1 1.710311e+01 5.758137e+01 3.675851 3.507934e-04 1.901467e-03
## PUS1 -3.010184e+00 5.357162e+00 -3.675661 3.510284e-04 1.901781e-03
## USP54 5.955624e-01 1.902972e+00 3.675482 3.512505e-04 1.901781e-03
## TMEM184C 5.498499e+00 1.841636e+01 3.675388 3.513668e-04 1.901781e-03
## SEPHS1 3.638128e+00 1.593709e+01 3.675227 3.515676e-04 1.901781e-03
## RAB11FIP2 5.837744e+00 1.849863e+01 3.675158 3.516531e-04 1.901781e-03
## BSG -7.969042e+01 1.354238e+02 -3.674742 3.521701e-04 1.903709e-03
## NAE1 3.206771e+00 1.552913e+01 3.674491 3.524823e-04 1.904529e-03
## BPNT2 6.373546e+00 3.121925e+01 3.673764 3.533884e-04 1.908555e-03
## AAR2 -4.421051e+00 2.004174e+01 -3.672913 3.544505e-04 1.913419e-03
## WASHC5 6.331436e+00 2.981605e+01 3.672384 3.551130e-04 1.916124e-03
## JMJD8 -9.853021e+00 1.656877e+01 -3.671856 3.557758e-04 1.918286e-03
## ORC2 4.576216e+00 1.750766e+01 3.671620 3.560726e-04 1.918286e-03
## CD81 -1.982050e+01 3.513478e+01 -3.671603 3.560934e-04 1.918286e-03
## ATP2A2 1.111202e+01 3.710836e+01 3.671550 3.561607e-04 1.918286e-03
## OSCAR -6.125023e+01 1.194916e+02 -3.671172 3.566354e-04 1.919971e-03
## FEM1B 1.174523e+01 4.638225e+01 3.670604 3.573517e-04 1.922954e-03
## COMMD9 -9.235183e+00 3.856956e+01 -3.670310 3.577220e-04 1.924074e-03
## PPM1L 2.539965e+00 9.154108e+00 3.669989 3.581268e-04 1.924902e-03
## ABHD14B -1.741354e+01 2.785926e+01 -3.669931 3.582005e-04 1.924902e-03
## MSRA -1.033607e+01 1.989037e+01 -3.669540 3.586952e-04 1.926347e-03
## NBPF12 6.020871e+00 1.675312e+01 3.669462 3.587943e-04 1.926347e-03
## AP1S3 6.990810e-01 2.740719e+00 3.668405 3.601340e-04 1.932665e-03
## SFXN3 -6.772214e+00 3.279589e+01 -3.667269 3.615793e-04 1.939544e-03
## RPS24 -3.330503e+02 7.285410e+02 -3.666501 3.625603e-04 1.943926e-03
## PEX6 -1.116550e+01 2.642859e+01 -3.665320 3.640727e-04 1.951154e-03
## MYZAP 5.895145e+00 8.267161e+00 3.664817 3.647190e-04 1.953734e-03
## MROH1 -3.229415e+00 7.455327e+00 -3.664512 3.651101e-04 1.954197e-03
## CARMIL2 -6.478091e+00 9.665258e+00 -3.664493 3.651350e-04 1.954197e-03
## FIS1 -2.985527e+01 5.308226e+01 -3.663743 3.661020e-04 1.958489e-03
## RABGGTA -5.014878e+00 1.531104e+01 -3.662740 3.673979e-04 1.964535e-03
## LYL1 -1.318202e+01 1.800618e+01 -3.662576 3.676099e-04 1.964783e-03
## KMT5C -1.310042e+00 2.773191e+00 -3.662054 3.682867e-04 1.967514e-03
## INTS5 -4.846051e+00 1.438611e+01 -3.660211 3.706851e-04 1.979435e-03
## IFITM2 -2.848844e+03 5.357986e+03 -3.659910 3.710775e-04 1.980639e-03
## NUF2 2.724779e+00 3.343925e+00 3.659141 3.720842e-04 1.985119e-03
## HSD17B10 -1.680462e+01 3.583463e+01 -3.658544 3.728670e-04 1.988401e-03
## APBA3 -2.172139e+00 5.240749e+00 -3.658017 3.735586e-04 1.991193e-03
## PLD3 -1.406250e+01 3.540101e+01 -3.657433 3.743281e-04 1.994399e-03
## MRPL24 -9.408460e+00 1.931318e+01 -3.657010 3.748860e-04 1.996474e-03
## SCYL2 2.183028e+01 6.530541e+01 3.656653 3.753565e-04 1.998082e-03
## VRK3 -1.450263e+01 5.842421e+01 -3.656121 3.760597e-04 2.000602e-03
## LTBP1 6.640562e+00 1.225122e+01 3.656040 3.761671e-04 2.000602e-03
## SURF4 -2.091637e+01 1.022172e+02 -3.654547 3.781486e-04 2.010239e-03
## KIF2A 1.752380e+01 7.356831e+01 3.653850 3.790766e-04 2.014269e-03
## BAMBI 1.192064e+00 1.766533e+00 3.652992 3.802223e-04 2.018840e-03
## ZMAT5 -8.456786e+00 1.938715e+01 -3.652951 3.802774e-04 2.018840e-03
## CCDC107 -9.982659e+00 1.338205e+01 -3.652059 3.814708e-04 2.024270e-03
## NAALADL1 -3.763585e+00 5.807295e+00 -3.649687 3.846648e-04 2.040306e-03
## DENND4B -1.485356e+01 1.012668e+02 -3.649364 3.851020e-04 2.041712e-03
## UBA5 3.638598e+00 1.449998e+01 3.648872 3.857688e-04 2.044333e-03
## CCDC142 -1.192360e+00 6.586726e+00 -3.646796 3.885927e-04 2.057798e-03
## USF3 1.460143e+01 3.340978e+01 3.646650 3.887911e-04 2.057798e-03
## SIMC1 1.273377e+00 5.006946e+00 3.646615 3.888395e-04 2.057798e-03
## NAT9 -4.587822e+00 1.533557e+01 -3.646495 3.890037e-04 2.057798e-03
## CTSH -4.799392e+01 1.260717e+02 -3.646188 3.894229e-04 2.059097e-03
## SEPTIN2 2.950206e+01 1.525657e+02 3.646026 3.896443e-04 2.059350e-03
## PRRC1 4.682719e+00 1.791919e+01 3.645651 3.901576e-04 2.061145e-03
## SENP5 4.237789e+00 2.901791e+01 3.645212 3.907595e-04 2.062850e-03
## INPP5K -2.030519e+01 6.800043e+01 -3.645162 3.908283e-04 2.062850e-03
## R3HDM4 -1.850354e+02 4.578008e+02 -3.644420 3.918478e-04 2.067311e-03
## URM1 -1.197059e+01 3.645555e+01 -3.643712 3.928235e-04 2.070597e-03
## PRADC1 -5.865252e+00 9.096291e+00 -3.643686 3.928595e-04 2.070597e-03
## UPF3B 1.206706e+00 8.109281e+00 3.643588 3.929943e-04 2.070597e-03
## NCKAP1 2.910344e+00 6.203910e+00 3.643248 3.934634e-04 2.071396e-03
## STAT5A -4.435036e+01 1.592304e+02 -3.643225 3.934954e-04 2.071396e-03
## ABCC4 8.372046e+00 1.594838e+01 3.642494 3.945058e-04 2.075198e-03
## RGS3 -2.107418e+01 5.650161e+01 -3.642450 3.945675e-04 2.075198e-03
## CYC1 -1.558949e+01 3.715765e+01 -3.642144 3.949904e-04 2.076501e-03
## HLA-DRB1 -2.441480e+02 3.976591e+02 -3.641964 3.952402e-04 2.076894e-03
## PSMG4 -1.638171e+00 4.468802e+00 -3.641305 3.961550e-04 2.080779e-03
## ZBTB17 -4.926258e+00 1.551052e+01 -3.640898 3.967217e-04 2.082833e-03
## CD7 -1.391468e+01 1.269969e+01 -3.640714 3.969773e-04 2.083253e-03
## ALKBH2 -1.485305e+00 3.203358e+00 -3.640307 3.975448e-04 2.085308e-03
## STK19 -4.125071e+00 1.266014e+01 -3.640047 3.979082e-04 2.086292e-03
## IGBP1 -1.418758e+01 9.315010e+01 -3.639638 3.984791e-04 2.088336e-03
## DERPC -1.603660e+01 3.455066e+01 -3.639516 3.986502e-04 2.088336e-03
## DSN1 2.314628e+00 1.080937e+01 3.638941 3.994543e-04 2.089964e-03
## TIMM13 -7.058597e+00 9.269463e+00 -3.638934 3.994635e-04 2.089964e-03
## ZNF28 3.249275e+00 1.160783e+01 3.638857 3.995717e-04 2.089964e-03
## RBM14 -5.643784e+00 2.020115e+01 -3.638701 3.997911e-04 2.089964e-03
## CAND1 8.127618e+00 3.886795e+01 3.638664 3.998422e-04 2.089964e-03
## ZNF578 -7.352209e-01 1.902252e+00 -3.638252 4.004206e-04 2.092066e-03
## ERCC6 3.146431e+00 1.040618e+01 3.637168 4.019452e-04 2.098842e-03
## EML6 6.182216e-01 1.241100e+00 3.637078 4.020716e-04 2.098842e-03
## MICAL1 -7.743616e+01 2.019733e+02 -3.635465 4.043514e-04 2.109814e-03
## ERLEC1 1.112977e+01 3.817985e+01 3.634440 4.058069e-04 2.116478e-03
## ABLIM3 1.374245e+01 2.660013e+01 3.634207 4.061381e-04 2.116576e-03
## ERI2 9.486358e-01 3.443466e+00 3.634176 4.061828e-04 2.116576e-03
## WDR97 -4.167770e-01 8.739580e-01 -3.633838 4.066642e-04 2.118154e-03
## RNF6 1.086557e+01 3.834992e+01 3.633472 4.071858e-04 2.119940e-03
## ZNF8 2.265268e+00 9.043717e+00 3.632391 4.087301e-04 2.127046e-03
## TATDN2 7.898259e+00 6.748421e+01 3.631967 4.093376e-04 2.129274e-03
## NKD1 2.163089e+00 3.876576e+00 3.630143 4.119615e-04 2.141362e-03
## EMP3 -7.784490e+01 1.863266e+02 -3.630100 4.120226e-04 2.141362e-03
## TPM2 -3.926843e+00 5.117356e+00 -3.629932 4.122662e-04 2.141689e-03
## ASTN2 2.980752e+00 6.078699e+00 3.629693 4.126113e-04 2.142544e-03
## GATAD1 2.612307e+00 1.537554e+01 3.629329 4.131361e-04 2.144330e-03
## MAP3K21 7.097237e-01 1.711377e+00 3.628314 4.146075e-04 2.151026e-03
## MRPL43 -5.008146e+00 1.271728e+01 -3.628101 4.149167e-04 2.151689e-03
## NAA15 4.190678e+00 1.702195e+01 3.626281 4.175669e-04 2.164486e-03
## REX1BD -3.458198e+00 3.423726e+00 -3.624896 4.195946e-04 2.173696e-03
## DCUN1D3 3.236932e+00 9.086661e+00 3.624818 4.197103e-04 2.173696e-03
## UCK1 -5.853245e+00 2.329643e+01 -3.624531 4.201311e-04 2.174926e-03
## BTLA 3.813030e+00 9.656279e+00 3.624177 4.206518e-04 2.176671e-03
## IGHG1 1.357278e+03 1.138835e+03 3.623890 4.210739e-04 2.177905e-03
## ANKS3 -1.291045e+00 2.066478e+00 -3.622951 4.224585e-04 2.183753e-03
## TMEM245 5.495165e+00 1.805798e+01 3.622874 4.225728e-04 2.183753e-03
## CBWD2 5.757977e+00 2.994019e+01 3.622661 4.228869e-04 2.184424e-03
## VAMP1 1.354868e+01 5.703691e+01 3.621539 4.245491e-04 2.192056e-03
## STING1 -2.261992e+01 7.368207e+01 -3.620940 4.254386e-04 2.195693e-03
## MAMDC4 -6.791950e-01 8.934200e-01 -3.620523 4.260589e-04 2.197555e-03
## B9D2 -5.025387e+00 1.082149e+01 -3.620410 4.262283e-04 2.197555e-03
## TM2D2 -3.359581e+00 1.716392e+01 -3.620324 4.263553e-04 2.197555e-03
## DAAM1 1.594566e+00 5.636923e+00 3.619552 4.275070e-04 2.202182e-03
## NBPF19 7.723578e+01 1.276146e+02 3.619474 4.276244e-04 2.202182e-03
## C18orf25 3.231895e+01 6.291991e+01 3.618160 4.295921e-04 2.211355e-03
## ALPL -4.859620e+02 7.099232e+02 -3.617937 4.299261e-04 2.212114e-03
## HLA-DMA -3.586885e+01 7.506412e+01 -3.617243 4.309701e-04 2.216525e-03
## ZBTB42 -1.353617e+00 1.962875e+00 -3.616590 4.319536e-04 2.220620e-03
## MTRES1 -1.283426e+00 4.660758e+00 -3.616432 4.321920e-04 2.220883e-03
## DAB2 6.930279e+00 1.773419e+01 3.616188 4.325608e-04 2.221619e-03
## POP4 -5.078525e+00 2.253557e+01 -3.616089 4.327099e-04 2.221619e-03
## NIPSNAP1 -5.465818e+00 2.269746e+01 -3.615836 4.330922e-04 2.222619e-03
## ACP5 -8.756209e+00 1.561636e+01 -3.615363 4.338078e-04 2.225329e-03
## MARCHF9 -4.463103e+00 7.931730e+00 -3.614861 4.345695e-04 2.228273e-03
## ATRX 1.890835e+01 5.216689e+01 3.614282 4.354491e-04 2.231818e-03
## TCF12 5.882471e+00 2.037587e+01 3.614080 4.357555e-04 2.232424e-03
## CNOT3 -9.278894e+00 3.386693e+01 -3.613766 4.362337e-04 2.233908e-03
## BANF1 -2.335290e+01 4.939688e+01 -3.612632 4.379633e-04 2.241798e-03
## ANKRD27 4.389819e+00 2.370359e+01 3.612252 4.385442e-04 2.243802e-03
## RNF187 -1.570927e+01 3.671700e+01 -3.611976 4.389665e-04 2.244995e-03
## PPARD -2.614142e+00 1.077193e+01 -3.610945 4.405487e-04 2.252115e-03
## XYLT2 -3.119230e+00 8.142774e+00 -3.610661 4.409857e-04 2.253378e-03
## INVS 1.045930e+00 4.965375e+00 3.610322 4.415074e-04 2.255072e-03
## RSL1D1 -1.857807e+01 7.996146e+01 -3.610092 4.418618e-04 2.255911e-03
## ZNF768 -2.669613e+00 9.028955e+00 -3.609355 4.429991e-04 2.260744e-03
## PEX13 3.177844e+00 1.442421e+01 3.608556 4.442338e-04 2.266070e-03
## PIGQ -5.427737e+00 6.741879e+00 -3.608058 4.450058e-04 2.269032e-03
## LILRA5 -4.374655e+02 6.052065e+02 -3.606746 4.470463e-04 2.278457e-03
## FAM8A1 8.701219e+01 2.186716e+02 3.605925 4.483267e-04 2.284001e-03
## JAG1 2.706913e+00 7.101478e+00 3.605562 4.488951e-04 2.285915e-03
## IREB2 1.339051e+01 5.079464e+01 3.604474 4.505991e-04 2.293607e-03
## ZNF668 -1.289867e+00 1.976076e+00 -3.603895 4.515094e-04 2.297255e-03
## PRPF4B 1.722355e+01 6.849967e+01 3.603037 4.528616e-04 2.303147e-03
## OVCA2 -7.701235e+00 1.762639e+01 -3.602233 4.541307e-04 2.308530e-03
## KLHL17 -8.773304e-01 1.517939e+00 -3.602120 4.543093e-04 2.308530e-03
## UTRN 2.283302e+01 5.905859e+01 3.601048 4.560086e-04 2.316172e-03
## DAGLA -5.295466e-01 8.452911e-01 -3.600439 4.569755e-04 2.320090e-03
## RNF19A 1.969031e+01 6.059115e+01 3.599045 4.591993e-04 2.329895e-03
## C17orf80 2.499731e+00 1.375346e+01 3.598982 4.592998e-04 2.329895e-03
## FAXDC2 1.044352e+01 2.348800e+01 3.598755 4.596622e-04 2.330737e-03
## SNTA1 -1.379108e+00 1.745718e+00 -3.598448 4.601537e-04 2.332232e-03
## PIM3 -2.926983e+01 6.916755e+01 -3.598128 4.606665e-04 2.333834e-03
## SLC4A2 -6.386736e+00 1.786706e+01 -3.596513 4.632628e-04 2.345147e-03
## ARIH1 1.353023e+01 5.536855e+01 3.596493 4.632951e-04 2.345147e-03
## ARMC5 -2.394003e+00 4.093646e+00 -3.596279 4.636391e-04 2.345887e-03
## DDX49 -7.331425e+00 1.523671e+01 -3.595002 4.657032e-04 2.355326e-03
## SON 5.057977e+01 2.002074e+02 3.593927 4.674472e-04 2.362486e-03
## GPS2 -1.671245e+01 5.330418e+01 -3.593884 4.675172e-04 2.362486e-03
## IGHMBP2 -3.040540e+00 1.056043e+01 -3.593616 4.679525e-04 2.363678e-03
## ANKRD40 3.607710e+00 1.607301e+01 3.593279 4.685021e-04 2.365447e-03
## MED12L 1.798621e+00 2.302674e+00 3.592910 4.691022e-04 2.367469e-03
## ZNF761 2.277336e+00 7.829581e+00 3.592432 4.698823e-04 2.370397e-03
## NCOR2 -5.093537e+00 1.550172e+01 -3.591659 4.711474e-04 2.375769e-03
## THOC5 -2.706746e+01 8.236836e+01 -3.591237 4.718388e-04 2.378244e-03
## PEMT -1.023585e+00 1.908379e+00 -3.590853 4.724692e-04 2.380410e-03
## HSP90B1 2.315883e+02 4.310104e+02 3.590626 4.728410e-04 2.381272e-03
## GNL1 -1.041502e+01 2.955268e+01 -3.589746 4.742899e-04 2.387554e-03
## ABHD8 -1.815952e+00 2.969135e+00 -3.589423 4.748213e-04 2.389215e-03
## KCNMB1 -1.621955e+00 4.568279e+00 -3.589121 4.753195e-04 2.390708e-03
## ANAPC2 -5.447282e+00 1.141795e+01 -3.588718 4.759860e-04 2.393045e-03
## COX6B1 -9.738939e+01 2.210346e+02 -3.587586 4.778611e-04 2.400748e-03
## TBP 1.283115e+00 9.441433e+00 3.587549 4.779229e-04 2.400748e-03
## CLPX 7.033733e+00 3.607939e+01 3.587202 4.784990e-04 2.402624e-03
## FBXL13 5.654924e+00 8.770962e+00 3.586964 4.788941e-04 2.403591e-03
## MMS22L 1.141185e+00 3.994012e+00 3.586644 4.794257e-04 2.405240e-03
## ZFAND2B -2.233631e+01 5.251443e+01 -3.586516 4.796401e-04 2.405299e-03
## RPL36A -2.251945e+02 3.750905e+02 -3.585918 4.806360e-04 2.409274e-03
## CLPTM1 -5.961746e+00 3.432840e+01 -3.585320 4.816342e-04 2.413258e-03
## ABCA1 5.115620e+01 9.167669e+01 3.584332 4.832901e-04 2.420532e-03
## HMBOX1 1.411483e+00 4.292516e+00 3.584076 4.837189e-04 2.421657e-03
## RASSF7 -8.362538e+00 7.936898e+00 -3.583807 4.841703e-04 2.422895e-03
## IFT80 2.759166e+00 8.677430e+00 3.583621 4.844837e-04 2.423440e-03
## NME3 -3.840872e+00 3.381609e+00 -3.583436 4.847937e-04 2.423968e-03
## THAP4 -4.086477e+00 9.293156e+00 -3.583068 4.854128e-04 2.426041e-03
## ETNK1 9.629237e+00 4.377615e+01 3.582630 4.861520e-04 2.428307e-03
## BBC3 -5.767822e+00 1.025264e+01 -3.582557 4.862756e-04 2.428307e-03
## ABT1 -4.507988e+00 2.377140e+01 -3.581507 4.880493e-04 2.436138e-03
## ATP5F1D -1.093292e+01 8.241636e+00 -3.581221 4.885340e-04 2.437532e-03
## CBX5 6.552432e+00 2.299816e+01 3.580450 4.898415e-04 2.443028e-03
## SLC1A4 5.657054e+00 1.174624e+01 3.579970 4.906579e-04 2.446071e-03
## BTAF1 2.079471e+01 5.556688e+01 3.579351 4.917118e-04 2.450295e-03
## SH3BP2 -5.051598e+01 2.169452e+02 -3.578802 4.926484e-04 2.453931e-03
## GPX1 -1.292382e+02 2.005700e+02 -3.577925 4.941483e-04 2.459718e-03
## TRAK2 9.250025e+00 3.640937e+01 3.577880 4.942250e-04 2.459718e-03
## DHRS13 -4.136181e+01 7.013825e+01 -3.577500 4.948767e-04 2.461929e-03
## AFF4 1.834219e+01 4.742511e+01 3.577052 4.956454e-04 2.464719e-03
## RPL23 -2.608425e+02 6.485856e+02 -3.576828 4.960299e-04 2.465597e-03
## PPCDC -2.234007e+01 4.968927e+01 -3.575716 4.979458e-04 2.474083e-03
## FYTTD1 8.334421e+00 4.199973e+01 3.574951 4.992669e-04 2.479609e-03
## MED18 -7.220440e+00 2.443455e+01 -3.574499 5.000498e-04 2.481407e-03
## RPS27 -9.217908e+02 1.484866e+03 -3.574438 5.001551e-04 2.481407e-03
## EPC2 1.149650e+01 3.475894e+01 3.574379 5.002567e-04 2.481407e-03
## CHCHD10 -5.897245e+00 7.115650e+00 -3.574154 5.006465e-04 2.482201e-03
## KIAA2026 8.815147e+00 2.650521e+01 3.574045 5.008353e-04 2.482201e-03
## YBX1 -6.360199e+01 2.855851e+02 -3.573170 5.023567e-04 2.488701e-03
## HECTD3 -4.567154e+00 2.772989e+01 -3.572985 5.026787e-04 2.489257e-03
## MANBAL -4.741669e+00 1.770430e+01 -3.572825 5.029569e-04 2.489594e-03
## DNAJC17 -4.934782e+00 1.218526e+01 -3.572585 5.033749e-04 2.489599e-03
## MLF2 -4.666605e+01 1.443005e+02 -3.572583 5.033775e-04 2.489599e-03
## C12orf57 -1.823599e+01 1.789455e+01 -3.571727 5.048717e-04 2.495948e-03
## LRMDA -2.134615e+00 4.899770e+00 -3.570061 5.077918e-04 2.507564e-03
## NOC4L -1.594619e+00 2.475631e+00 -3.569870 5.081268e-04 2.507564e-03
## ZNF672 -8.251938e+00 2.761042e+01 -3.569819 5.082179e-04 2.507564e-03
## WDR62 6.155587e-01 9.978733e-01 3.569816 5.082233e-04 2.507564e-03
## ENTPD6 -1.019810e+01 2.340023e+01 -3.569784 5.082786e-04 2.507564e-03
## ARID5B 7.253538e+00 1.937040e+01 3.569378 5.089927e-04 2.510043e-03
## NLRX1 -9.322968e+00 2.722800e+01 -3.568854 5.099169e-04 2.513555e-03
## MROH6 -6.000117e+00 8.219432e+00 -3.568518 5.105100e-04 2.515433e-03
## NUGGC 2.141232e+00 3.148243e+00 3.568348 5.108110e-04 2.515872e-03
## SRGAP2 1.456537e+01 3.942572e+01 3.567903 5.115965e-04 2.518468e-03
## RANGAP1 -1.381950e+01 2.825330e+01 -3.567810 5.117628e-04 2.518468e-03
## LST1 -2.168959e+02 3.942650e+02 -3.567567 5.121926e-04 2.519537e-03
## FAM122B 4.198580e+00 2.266170e+01 3.566624 5.138652e-04 2.526717e-03
## THAP11 -5.848688e+00 2.474974e+01 -3.566486 5.141117e-04 2.526881e-03
## B4GALT7 -4.222251e+00 6.365812e+00 -3.566347 5.143579e-04 2.527044e-03
## ARHGAP15 -4.547173e+01 1.275339e+02 -3.565979 5.150128e-04 2.529214e-03
## FAM20B 3.624252e+00 2.014781e+01 3.564622 5.174355e-04 2.539507e-03
## VPS52 -3.683180e+00 2.290242e+01 -3.564514 5.176288e-04 2.539507e-03
## ANKRD17 1.228875e+01 3.976812e+01 3.564445 5.177512e-04 2.539507e-03
## XPR1 4.815018e+00 1.933676e+01 3.564166 5.182519e-04 2.540913e-03
## LUC7L -6.106642e+00 2.263940e+01 -3.563655 5.191670e-04 2.544347e-03
## ERCC4 1.357374e+00 4.003893e+00 3.562046 5.220621e-04 2.557479e-03
## ZNF621 3.279515e+00 1.099581e+01 3.561148 5.236850e-04 2.564370e-03
## PRPF4 1.911502e+00 1.785673e+01 3.560150 5.254936e-04 2.572165e-03
## RPS15A -3.503164e+02 7.551598e+02 -3.559821 5.260910e-04 2.574026e-03
## REXO4 -4.670741e+00 1.197259e+01 -3.559415 5.268286e-04 2.576572e-03
## CLK2 -3.968421e+00 3.994927e+01 -3.559187 5.272429e-04 2.577535e-03
## OPA1 7.415201e+00 3.245593e+01 3.558981 5.276185e-04 2.578309e-03
## ADAT1 5.430223e+00 2.084674e+01 3.558545 5.284135e-04 2.581130e-03
## ZMYM4 4.813958e+00 1.877902e+01 3.558300 5.288607e-04 2.582209e-03
## PPP2CB 8.664705e+00 2.876596e+01 3.558186 5.290699e-04 2.582209e-03
## FBXW11 8.599911e+00 3.109664e+01 3.557845 5.296927e-04 2.584185e-03
## SERAC1 2.294974e+00 7.581262e+00 3.557614 5.301146e-04 2.585181e-03
## SCIN 4.191804e-01 1.002622e+00 3.556686 5.318156e-04 2.592410e-03
## PAXX -1.072431e+01 1.168513e+01 -3.556190 5.327270e-04 2.595785e-03
## UNC119 -3.541109e+01 1.044217e+02 -3.555971 5.331290e-04 2.596678e-03
## HSPD1 1.413427e+01 7.123412e+01 3.555441 5.341050e-04 2.599990e-03
## GFER -4.805454e+00 8.896291e+00 -3.555294 5.343774e-04 2.599990e-03
## TRIM8 -2.130507e+01 7.694182e+01 -3.555245 5.344668e-04 2.599990e-03
## ZDHHC6 5.062188e+00 3.693531e+01 3.554979 5.349574e-04 2.601310e-03
## CLINT1 2.192350e+01 5.934045e+01 3.554212 5.363749e-04 2.606185e-03
## JADE3 4.519595e-01 9.399663e-01 3.554199 5.363994e-04 2.606185e-03
## DCAF5 1.036153e+01 5.725262e+01 3.553270 5.381207e-04 2.612833e-03
## GATA2 -2.817121e+00 4.237327e+00 -3.553203 5.382454e-04 2.612833e-03
## DTX3L 8.760819e+01 1.784870e+02 3.553104 5.384287e-04 2.612833e-03
## POLR2C -1.192894e+01 6.906363e+01 -3.551739 5.409706e-04 2.624095e-03
## TMEM107 -2.130428e+00 7.840540e+00 -3.550871 5.425918e-04 2.630883e-03
## TMED4 4.489263e+00 4.843742e+01 3.550160 5.439237e-04 2.636263e-03
## HDAC10 -6.769989e+00 1.072716e+01 -3.550023 5.441806e-04 2.636431e-03
## DIMT1 2.679773e+00 8.100835e+00 3.549639 5.449004e-04 2.638046e-03
## DBF4 2.568637e+00 6.344090e+00 3.549608 5.449589e-04 2.638046e-03
## SNX17 -3.125688e+01 1.125624e+02 -3.549049 5.460090e-04 2.641011e-03
## ZNF408 -2.970931e+00 7.434030e+00 -3.548967 5.461647e-04 2.641011e-03
## ZNF788P 2.065000e+00 3.710909e+00 3.548927 5.462394e-04 2.641011e-03
## GCC2 1.250110e+01 3.305878e+01 3.548285 5.474501e-04 2.645786e-03
## PIK3R6 -4.802513e+00 9.613134e+00 -3.547744 5.484706e-04 2.649638e-03
## SLC25A3 -4.561971e+01 1.959651e+02 -3.547547 5.488434e-04 2.650115e-03
## DNPH1 -1.741254e+00 2.217869e+00 -3.547456 5.490162e-04 2.650115e-03
## CHKB -2.210119e+01 8.134594e+01 -3.547268 5.493710e-04 2.650749e-03
## PICK1 -3.722163e+00 9.753561e+00 -3.546471 5.508806e-04 2.656952e-03
## R3HCC1 -5.622979e+00 1.552926e+01 -3.546267 5.512688e-04 2.657743e-03
## CFD -1.813149e+01 2.060355e+01 -3.545353 5.530071e-04 2.665040e-03
## TNFSF8 1.359894e+01 4.500588e+01 3.545050 5.535850e-04 2.666742e-03
## UTP3 -5.256647e+00 2.509253e+01 -3.544709 5.542347e-04 2.668788e-03
## G3BP2 1.940956e+01 8.254191e+01 3.544322 5.549727e-04 2.671257e-03
## NFKBIE -8.650968e+00 1.940920e+01 -3.543971 5.556446e-04 2.673406e-03
## TMEM203 -9.724729e+00 2.160083e+01 -3.543811 5.559514e-04 2.673797e-03
## ITGAV 2.959286e+00 9.370621e+00 3.542510 5.584464e-04 2.684708e-03
## BIN1 -1.597971e+01 2.477512e+01 -3.542087 5.592602e-04 2.687531e-03
## MAN1B1 -1.873345e+01 3.860330e+01 -3.540562 5.622023e-04 2.700575e-03
## PELP1 -6.934242e+00 1.144704e+01 -3.540194 5.629150e-04 2.702903e-03
## MRE11 4.260605e+00 1.950657e+01 3.539901 5.634822e-04 2.704532e-03
## RPL28 -2.828882e+02 3.684683e+02 -3.539766 5.637441e-04 2.704695e-03
## TBK1 2.162363e+01 6.103732e+01 3.539035 5.651627e-04 2.709388e-03
## COQ4 -4.950971e+00 7.047491e+00 -3.539027 5.651793e-04 2.709388e-03
## ATP13A2 -4.473081e+00 9.373363e+00 -3.537649 5.678642e-04 2.721160e-03
## DRG2 -6.113830e+00 1.504177e+01 -3.537182 5.687762e-04 2.724295e-03
## PANK3 1.167014e+01 3.892376e+01 3.537079 5.689781e-04 2.724295e-03
## ARL3 -6.514303e+00 1.995138e+01 -3.536909 5.693114e-04 2.724791e-03
## EIF4G3 2.048267e+01 5.492458e+01 3.536591 5.699325e-04 2.726664e-03
## HINT3 9.153431e+00 2.993292e+01 3.536081 5.709330e-04 2.730349e-03
## FASTKD5 7.116465e+00 2.528509e+01 3.535577 5.719229e-04 2.733981e-03
## GIT1 -9.056201e+00 2.683896e+01 -3.535202 5.726612e-04 2.736407e-03
## CENPBD1 -2.183154e+00 9.399546e+00 -3.534881 5.732927e-04 2.738321e-03
## NARF -6.416227e+01 1.496072e+02 -3.534321 5.743978e-04 2.742495e-03
## MPP5 1.323941e+00 4.875689e+00 3.533724 5.755769e-04 2.747019e-03
## ZDHHC21 2.106380e+00 5.760158e+00 3.533545 5.759314e-04 2.747605e-03
## TICAM1 -2.323063e+00 6.145860e+00 -3.532652 5.777008e-04 2.754938e-03
## ABCB8 -3.218905e+00 6.121221e+00 -3.532116 5.787659e-04 2.758378e-03
## NAA60 -1.044683e+01 3.321897e+01 -3.532055 5.788872e-04 2.758378e-03
## DDA1 -4.852672e+00 2.078446e+01 -3.531626 5.797395e-04 2.761329e-03
## SMG7 2.309172e+01 9.100097e+01 3.530844 5.813001e-04 2.767651e-03
## PLXND1 -1.019314e+01 2.630384e+01 -3.530339 5.823086e-04 2.771340e-03
## RANGRF -7.071585e+00 1.559046e+01 -3.529758 5.834717e-04 2.775762e-03
## C5 1.589996e+00 4.165035e+00 3.528320 5.863589e-04 2.787774e-03
## HAPLN3 -4.959582e+00 5.257257e+00 -3.528266 5.864668e-04 2.787774e-03
## GBF1 5.526192e+00 3.235765e+01 3.527406 5.882000e-04 2.794892e-03
## ZNF616 1.383325e+00 5.664482e+00 3.527205 5.886069e-04 2.795706e-03
## HAGH -1.023599e+01 1.970788e+01 -3.526903 5.892174e-04 2.797485e-03
## MAN2B2 -5.988086e+00 3.755041e+01 -3.526558 5.899149e-04 2.799676e-03
## PCBD1 -1.339774e+00 4.670637e+00 -3.526065 5.909126e-04 2.802896e-03
## PEX10 -7.136907e-01 2.277136e+00 -3.525990 5.910661e-04 2.802896e-03
## PRPS2 3.924880e+00 1.599031e+01 3.525830 5.913895e-04 2.803309e-03
## CDK10 -1.013080e+01 1.716372e+01 -3.525680 5.916943e-04 2.803633e-03
## BEND7 4.632401e+00 7.674486e+00 3.524633 5.938229e-04 2.812596e-03
## SWT1 3.646529e+00 1.053536e+01 3.523150 5.968509e-04 2.825809e-03
## FBXO31 -3.687171e+00 8.484113e+00 -3.522906 5.973508e-04 2.827047e-03
## SLC6A16 4.758346e-01 1.320153e+00 3.522565 5.980485e-04 2.828884e-03
## RPS6KC1 4.457563e+00 1.663964e+01 3.522484 5.982159e-04 2.828884e-03
## VIM -5.014333e+02 1.523395e+03 -3.521812 5.995957e-04 2.833800e-03
## DYRK1B -1.991538e+00 6.251720e+00 -3.521745 5.997335e-04 2.833800e-03
## RPS6KB2 -1.961186e+01 4.355116e+01 -3.520156 6.030067e-04 2.848132e-03
## ANKRD54 -2.191399e+00 8.073713e+00 -3.519901 6.035338e-04 2.849487e-03
## ZNF547 -5.500084e-01 1.212514e+00 -3.519604 6.041495e-04 2.851259e-03
## MIGA2 -8.388667e+00 2.307077e+01 -3.519312 6.047535e-04 2.852974e-03
## POLR2G -1.237773e+01 4.910076e+01 -3.518309 6.068347e-04 2.861654e-03
## YTHDF2 -5.450516e+00 5.323008e+01 -3.517973 6.075334e-04 2.863810e-03
## GLS 1.404687e+01 6.555293e+01 3.517101 6.093516e-04 2.871239e-03
## MREG 1.135808e+00 3.418508e+00 3.516760 6.100633e-04 2.873451e-03
## ARRB2 -3.951387e+02 1.097418e+03 -3.516094 6.114560e-04 2.878868e-03
## ZFP91 1.637462e+01 5.371768e+01 3.515211 6.133070e-04 2.886437e-03
## SH3GLB2 -1.246789e+01 2.797316e+01 -3.514982 6.137886e-04 2.887557e-03
## MYBL2 1.377393e+01 1.552904e+01 3.514595 6.146021e-04 2.890238e-03
## RGS6 1.722055e+00 3.861306e+00 3.514421 6.149684e-04 2.890814e-03
## EFCAB14 1.842860e+01 9.661470e+01 3.513979 6.158990e-04 2.894042e-03
## RAPGEF6 1.371101e+01 3.986585e+01 3.513785 6.163088e-04 2.894821e-03
## GCHFR -4.336957e+00 5.653780e+00 -3.513597 6.167055e-04 2.895537e-03
## RPS15 -1.507536e+02 1.712884e+02 -3.513151 6.176469e-04 2.898810e-03
## WDR47 6.607160e+00 1.887631e+01 3.512926 6.181239e-04 2.899901e-03
## DUSP18 3.491280e+00 1.203169e+01 3.512620 6.187695e-04 2.901782e-03
## OIP5 7.785611e-01 1.118985e+00 3.512285 6.194809e-04 2.903970e-03
## UQCC3 -1.837242e+00 2.492238e+00 -3.511954 6.201814e-04 2.906105e-03
## NKTR 2.057058e+01 6.373023e+01 3.511511 6.211218e-04 2.909362e-03
## LILRA3 -5.717718e+01 8.682558e+01 -3.510564 6.231375e-04 2.917651e-03
## CD72 -4.993592e+00 8.457486e+00 -3.510375 6.235403e-04 2.917757e-03
## SBNO1 1.626596e+01 5.723994e+01 3.510323 6.236520e-04 2.917757e-03
## MVB12A -4.815371e+00 1.016360e+01 -3.509855 6.246502e-04 2.920611e-03
## MYO15B -1.676946e+01 5.486274e+01 -3.509806 6.247546e-04 2.920611e-03
## ABHD18 3.603137e+00 1.646802e+01 3.509597 6.252011e-04 2.921547e-03
## MAP3K1 5.525091e+01 1.591445e+02 3.509372 6.256824e-04 2.922644e-03
## MEIS1 2.359326e+00 5.378549e+00 3.509036 6.264013e-04 2.924850e-03
## HP1BP3 2.267434e+01 9.159015e+01 3.508193 6.282103e-04 2.932143e-03
## BLZF1 7.763227e+00 2.160260e+01 3.507643 6.293931e-04 2.936508e-03
## DHRS3 -4.260709e+00 6.324083e+00 -3.506930 6.309277e-04 2.942510e-03
## SRRT -1.261458e+01 4.574573e+01 -3.506640 6.315543e-04 2.944274e-03
## EHD3 7.987604e+00 2.032934e+01 3.505993 6.329525e-04 2.949633e-03
## MRPS34 -9.734514e+00 1.684001e+01 -3.505652 6.336901e-04 2.951911e-03
## TINF2 -2.296334e+01 1.076528e+02 -3.504848 6.354326e-04 2.958530e-03
## LAMC1 5.382122e+00 7.348252e+00 3.504766 6.356100e-04 2.958530e-03
## CALHM5 5.580827e-01 1.104768e+00 3.504134 6.369837e-04 2.963663e-03
## PYM1 -7.105848e+00 1.947500e+01 -3.504029 6.372126e-04 2.963663e-03
## LETM2 6.686424e+00 1.092490e+01 3.503822 6.376634e-04 2.964597e-03
## PDZD4 -8.309500e+00 1.144778e+01 -3.503621 6.381024e-04 2.965476e-03
## ZCWPW1 -2.334547e+00 6.955573e+00 -3.503130 6.391728e-04 2.969287e-03
## MVD -4.883584e+00 6.312871e+00 -3.502801 6.398913e-04 2.971461e-03
## MIEF1 4.071264e+00 2.204912e+01 3.502683 6.401482e-04 2.971490e-03
## PDE6G -9.496942e-01 1.858678e+00 -3.501806 6.420681e-04 2.979236e-03
## KAT6B 3.593160e+00 9.824632e+00 3.501051 6.437252e-04 2.985757e-03
## ATG4D -6.828278e+00 1.474693e+01 -3.500821 6.442318e-04 2.986939e-03
## STK40 -5.279312e+01 1.975066e+02 -3.500595 6.447285e-04 2.988074e-03
## IGSF8 -3.984015e+00 7.130157e+00 -3.500141 6.457292e-04 2.991542e-03
## TTC37 8.400857e+00 2.561168e+01 3.499394 6.473765e-04 2.998003e-03
## SELENON -8.816794e+00 2.696512e+01 -3.498352 6.496832e-04 3.007511e-03
## CEP83 7.791999e-01 2.951110e+00 3.497868 6.507566e-04 3.011305e-03
## MTCP1 3.572455e-01 1.041086e+00 3.497553 6.514560e-04 3.013365e-03
## SRI -1.799917e+01 5.618161e+01 -3.497283 6.520565e-04 3.014654e-03
## KHDC4 4.902142e+00 2.524410e+01 3.497199 6.522431e-04 3.014654e-03
## KMT2E 3.536666e+01 1.066485e+02 3.496856 6.530070e-04 3.017009e-03
## BCL7B -1.436439e+01 4.130552e+01 -3.496501 6.537968e-04 3.019482e-03
## IGKC 1.623365e+03 1.619772e+03 3.495529 6.559694e-04 3.028337e-03
## HSPB1 -1.131159e+01 6.645424e+00 -3.494788 6.576286e-04 3.033313e-03
## DMXL2 5.236157e+01 1.334923e+02 3.494635 6.579713e-04 3.033313e-03
## OSGIN2 3.401857e+01 7.306707e+01 3.494597 6.580570e-04 3.033313e-03
## FAM174C -5.855967e+00 5.313790e+00 -3.494591 6.580703e-04 3.033313e-03
## TOP1 2.179492e+01 7.723353e+01 3.494229 6.588827e-04 3.035878e-03
## HEBP1 -5.114030e+00 1.833452e+01 -3.493976 6.594503e-04 3.037313e-03
## PTOV1 -2.011846e+01 3.583851e+01 -3.493621 6.602495e-04 3.039813e-03
## ASH1L 1.564714e+01 4.233724e+01 3.492005 6.638952e-04 3.055412e-03
## PALB2 1.469322e+00 4.903372e+00 3.491261 6.655799e-04 3.061977e-03
## TOP1MT -3.269098e+00 5.481799e+00 -3.491098 6.659501e-04 3.062493e-03
## CDK19 1.811408e+01 5.172317e+01 3.490877 6.664529e-04 3.063617e-03
## RBL1 1.875984e+00 7.491732e+00 3.490588 6.671094e-04 3.065447e-03
## PSMD9 -1.258903e+01 4.157325e+01 -3.490463 6.673921e-04 3.065558e-03
## SIRT7 -1.615292e+01 4.780414e+01 -3.490026 6.683855e-04 3.068932e-03
## PIGW 6.733606e-01 2.418164e+00 3.489640 6.692651e-04 3.071782e-03
## MSH2 2.916098e+00 9.829185e+00 3.489454 6.696898e-04 3.072542e-03
## SLA2 1.974013e+01 4.602632e+01 3.489028 6.706622e-04 3.075814e-03
## PRKD3 6.249147e+00 2.675089e+01 3.488840 6.710924e-04 3.076597e-03
## APBB1 -6.297193e+00 1.029755e+01 -3.488406 6.720847e-04 3.079955e-03
## LSR -1.698516e+00 2.717078e+00 -3.486957 6.754086e-04 3.093992e-03
## VCL 4.040129e+01 1.254732e+02 3.486314 6.768873e-04 3.099569e-03
## NDUFA11 -1.848760e+01 2.527139e+01 -3.486074 6.774409e-04 3.100907e-03
## CHERP -2.791133e+00 1.143976e+01 -3.485934 6.777645e-04 3.101191e-03
## ABCE1 7.812833e+00 2.419615e+01 3.485691 6.783255e-04 3.101993e-03
## LCLAT1 1.989279e+00 7.711663e+00 3.485631 6.784629e-04 3.101993e-03
## UBAP2L 1.186331e+01 5.572715e+01 3.484431 6.812385e-04 3.113483e-03
## STRBP 3.168963e+00 8.940492e+00 3.483959 6.823333e-04 3.117285e-03
## METTL4 4.363258e+00 1.514392e+01 3.483660 6.830293e-04 3.119264e-03
## MDM4 1.466915e+01 5.477261e+01 3.483424 6.835765e-04 3.120561e-03
## RPS19 -3.977664e+02 4.883219e+02 -3.482435 6.858804e-04 3.129873e-03
## PSMB1 -3.412560e+01 1.283435e+02 -3.481999 6.868977e-04 3.133310e-03
## ZNF841 1.835299e+00 6.951769e+00 3.481820 6.873164e-04 3.134015e-03
## KIAA1841 1.717088e+00 5.410219e+00 3.481694 6.876095e-04 3.134146e-03
## PAWR 7.301421e-01 2.197997e+00 3.481005 6.892243e-04 3.140109e-03
## MRPL41 -3.084255e+00 3.160560e+00 -3.480909 6.894473e-04 3.140109e-03
## AP2S1 -2.192818e+01 4.404107e+01 -3.480709 6.899182e-04 3.141048e-03
## SREBF2 9.415553e+00 4.336545e+01 3.480541 6.903118e-04 3.141634e-03
## CSF1 7.136937e+00 1.604447e+01 3.480011 6.915563e-04 3.145636e-03
## HERC1 1.968830e+01 7.746065e+01 3.479941 6.917216e-04 3.145636e-03
## LIN7C 2.536695e+00 1.433878e+01 3.479179 6.935151e-04 3.152583e-03
## UBE2E1 7.862319e+00 4.265987e+01 3.478417 6.953128e-04 3.157713e-03
## CFAP36 -2.532072e+00 8.554080e+00 -3.478372 6.954202e-04 3.157713e-03
## RB1 1.512702e+01 4.613643e+01 3.478362 6.954424e-04 3.157713e-03
## ZBTB21 2.382542e+00 8.360560e+00 3.478003 6.962915e-04 3.160359e-03
## WAC 7.368941e+01 2.422765e+02 3.477619 6.972003e-04 3.163273e-03
## PARP2 1.635279e+00 5.247251e+00 3.476746 6.992721e-04 3.171460e-03
## ATP2A3 -7.709331e+01 2.092872e+02 -3.476597 6.996248e-04 3.171846e-03
## KRR1 4.986640e+00 2.028162e+01 3.475757 7.016246e-04 3.179697e-03
## POLR2L -1.078814e+01 1.206856e+01 -3.475096 7.032018e-04 3.185628e-03
## TMEM192 1.547413e+00 1.293951e+01 3.474675 7.042068e-04 3.188962e-03
## TXNDC16 1.481996e+00 4.983668e+00 3.474277 7.051600e-04 3.192060e-03
## SERPINF2 -7.330217e-01 1.182672e+00 -3.473718 7.064984e-04 3.196898e-03
## STX10 -5.189749e+01 1.517715e+02 -3.473395 7.072755e-04 3.199194e-03
## MRPL52 -7.159027e+00 1.131877e+01 -3.472736 7.088586e-04 3.205133e-03
## LONRF3 2.655041e+00 4.007938e+00 3.472566 7.092682e-04 3.205644e-03
## FBXW4 -8.332737e+00 2.167381e+01 -3.472369 7.097413e-04 3.205644e-03
## ZNF853 -1.282729e+00 2.134514e+00 -3.472352 7.097826e-04 3.205644e-03
## APEX2 -3.678963e+00 1.617381e+01 -3.472212 7.101194e-04 3.205945e-03
## PAPOLG 1.069385e+01 3.390322e+01 3.471335 7.122365e-04 3.214279e-03
## SDR39U1 -5.960192e+00 1.199168e+01 -3.470923 7.132345e-04 3.217558e-03
## PPM1J -5.218407e-01 8.856314e-01 -3.469802 7.159513e-04 3.228586e-03
## AQR 7.330679e+00 3.045538e+01 3.469194 7.174287e-04 3.234019e-03
## EEF1A1 -2.146417e+03 8.071037e+03 -3.468840 7.182910e-04 3.236676e-03
## WASHC2C 2.533847e+01 9.573364e+01 3.468339 7.195120e-04 3.240576e-03
## TKFC -4.226534e+00 9.708086e+00 -3.468261 7.197031e-04 3.240576e-03
## PARP9 1.867855e+02 3.519181e+02 3.467971 7.204102e-04 3.242529e-03
## FAM13B 1.250955e+01 4.654983e+01 3.467524 7.215030e-04 3.246216e-03
## NECTIN1 -3.853323e+00 9.194156e+00 -3.467409 7.217841e-04 3.246250e-03
## RPP25L -5.585537e+00 1.265085e+01 -3.467105 7.225293e-04 3.247404e-03
## SLC35E1 4.269212e+00 2.980168e+01 3.467081 7.225884e-04 3.247404e-03
## AMMECR1L 3.123428e+00 1.874704e+01 3.466733 7.234410e-04 3.250004e-03
## VDAC3 9.838361e+00 8.245638e+01 3.465569 7.263002e-04 3.261613e-03
## RPS6KA1 -1.470333e+02 4.504943e+02 -3.464837 7.281054e-04 3.268192e-03
## ZNF623 2.262169e+00 7.597434e+00 3.464752 7.283163e-04 3.268192e-03
## GIPC1 -4.047854e+00 5.809523e+00 -3.463877 7.304787e-04 3.276655e-03
## CERS5 -1.084424e+01 4.569431e+01 -3.463458 7.315153e-04 3.280065e-03
## CBFA2T2 2.474023e+00 1.133471e+01 3.463055 7.325156e-04 3.283309e-03
## BAG5 5.636183e+00 3.207113e+01 3.462424 7.340823e-04 3.288781e-03
## LMLN 6.059906e-01 1.771806e+00 3.462340 7.342911e-04 3.288781e-03
## CD2AP 7.144255e+00 1.629266e+01 3.461749 7.357635e-04 3.293514e-03
## PDZK1IP1 -7.547017e+00 9.907581e+00 -3.461692 7.359032e-04 3.293514e-03
## TMSB10 -7.837947e+02 1.540732e+03 -3.461448 7.365138e-04 3.295003e-03
## UNK -1.498964e+00 5.764356e+00 -3.460507 7.388621e-04 3.301926e-03
## TSC22D1 1.812585e+01 5.140493e+01 3.460489 7.389088e-04 3.301926e-03
## FAM241A 1.897317e+01 5.828870e+01 3.460351 7.392547e-04 3.301926e-03
## ADGRG3 -2.768907e+02 4.771069e+02 -3.460322 7.393266e-04 3.301926e-03
## SLAIN1 1.641960e+00 5.090475e+00 3.460271 7.394532e-04 3.301926e-03
## C5orf22 2.732547e+00 1.313112e+01 3.457582 7.462150e-04 3.330254e-03
## ZNF254 -9.201609e+00 1.428192e+01 -3.457356 7.467862e-04 3.330254e-03
## PTPRS -1.043870e+00 1.541531e+00 -3.457349 7.468024e-04 3.330254e-03
## MRFAP1 -3.476572e+01 1.634503e+02 -3.457257 7.470363e-04 3.330254e-03
## SEC13 -1.265889e+01 5.413360e+01 -3.457092 7.474534e-04 3.330254e-03
## SCAPER 2.387169e+00 8.222480e+00 3.457081 7.474819e-04 3.330254e-03
## SPCS2 1.254638e+01 6.406968e+01 3.456741 7.483419e-04 3.332833e-03
## ARL5B 7.450499e+00 1.800796e+01 3.455762 7.508229e-04 3.342627e-03
## QSOX1 -6.412736e+01 1.285050e+02 -3.455211 7.522240e-04 3.347608e-03
## FRK 2.304478e+00 5.208222e+00 3.454200 7.548011e-04 3.357817e-03
## ZSWIM9 -1.277460e+00 4.628154e+00 -3.452792 7.584031e-04 3.371518e-03
## VPS9D1 -3.321801e+01 5.384773e+01 -3.452774 7.584495e-04 3.371518e-03
## SELENOW -2.564789e+01 4.948854e+01 -3.451576 7.615270e-04 3.383930e-03
## CCNT1 1.029999e+01 3.231011e+01 3.450804 7.635146e-04 3.391492e-03
## DDX39B -3.041598e+01 1.821055e+02 -3.450287 7.648511e-04 3.395611e-03
## TMEM128 -1.815382e+00 9.579223e+00 -3.450223 7.650146e-04 3.395611e-03
## ZC3H12C 6.122879e-01 1.611875e+00 3.449759 7.662160e-04 3.399671e-03
## NDRG3 7.779880e+00 4.080456e+01 3.449010 7.681563e-04 3.406518e-03
## SEMA6B -2.833499e+00 1.846020e+00 -3.448942 7.683336e-04 3.406518e-03
## CSF3R -1.407459e+03 3.345071e+03 -3.448611 7.691937e-04 3.407949e-03
## RPL37A -3.250429e+02 5.893191e+02 -3.448596 7.692309e-04 3.407949e-03
## FADS1 3.834707e+00 1.026303e+01 3.447658 7.716732e-04 3.416869e-03
## GCNT1 6.277887e+00 1.954592e+01 3.447601 7.718206e-04 3.416869e-03
## DCK 8.747065e+00 4.034795e+01 3.446864 7.737449e-04 3.424110e-03
## ATP11C 4.254262e+00 1.601883e+01 3.445968 7.760891e-04 3.433203e-03
## SEL1L 3.562137e+01 1.146033e+02 3.445221 7.780493e-04 3.440507e-03
## ZNF440 1.561995e+00 6.699211e+00 3.445117 7.783205e-04 3.440507e-03
## DDX54 -5.058316e+00 1.102870e+01 -3.444315 7.804316e-04 3.448554e-03
## ZFYVE19 -5.916480e+00 1.608515e+01 -3.443945 7.814063e-04 3.451575e-03
## WDR12 1.631504e+00 9.028192e+00 3.439658 7.927866e-04 3.500540e-03
## MIA3 1.905444e+01 6.565482e+01 3.439247 7.938849e-04 3.504085e-03
## OXCT1 4.217908e+00 1.213257e+01 3.438160 7.968013e-04 3.515649e-03
## WDR83OS -2.874767e+01 7.107354e+01 -3.437039 7.998150e-04 3.527633e-03
## RASGRP4 -8.125191e+01 2.604875e+02 -3.436611 8.009700e-04 3.531414e-03
## SLC39A9 7.410154e+00 3.976978e+01 3.436299 8.018140e-04 3.533822e-03
## DLAT 2.220246e+00 9.339011e+00 3.434376 8.070232e-04 3.555459e-03
## TCF4 4.473006e+00 9.909642e+00 3.433793 8.086105e-04 3.561129e-03
## SLAIN2 1.024862e+01 4.312159e+01 3.433320 8.098991e-04 3.565480e-03
## RASA1 7.027914e+00 2.479803e+01 3.433191 8.102500e-04 3.565701e-03
## NETO2 2.990336e+00 9.078100e+00 3.432837 8.112165e-04 3.567542e-03
## SAMD1 -4.907639e+00 1.268671e+01 -3.432817 8.112699e-04 3.567542e-03
## ANXA2R -1.075896e+01 1.930509e+01 -3.432585 8.119048e-04 3.569011e-03
## FIBP -1.239942e+01 3.238332e+01 -3.431833 8.139636e-04 3.576735e-03
## PARP14 1.640744e+02 2.498047e+02 3.431444 8.150291e-04 3.580091e-03
## IFT43 -1.582846e+00 3.631648e+00 -3.431284 8.154674e-04 3.580456e-03
## E2F1 8.159875e+00 1.297867e+01 3.431191 8.157240e-04 3.580456e-03
## DNAL1 1.120255e+00 6.766036e+00 3.431084 8.160179e-04 3.580456e-03
## TRAPPC5 -7.631783e+00 1.130855e+01 -3.430886 8.165622e-04 3.581519e-03
## PMVK -9.526728e+00 1.652029e+01 -3.429379 8.207134e-04 3.598396e-03
## LSM4 -8.280997e+00 2.153803e+01 -3.428732 8.225015e-04 3.604903e-03
## E2F5 1.419499e+00 2.769126e+00 3.427709 8.253366e-04 3.615993e-03
## RPL35A -1.511237e+02 3.597403e+02 -3.427361 8.263017e-04 3.618812e-03
## UQCR11 -2.615265e+01 5.132063e+01 -3.427257 8.265904e-04 3.618812e-03
## TES 2.629559e+01 8.796754e+01 3.426978 8.273676e-04 3.620878e-03
## NRF1 -3.376368e+00 2.468651e+01 -3.423929 8.358920e-04 3.656835e-03
## MARCHF2 -3.346824e+01 7.536482e+01 -3.423705 8.365203e-04 3.658234e-03
## ATM 3.905442e+01 1.240426e+02 3.423427 8.373031e-04 3.660308e-03
## C9orf139 -4.765162e+00 1.419504e+01 -3.423295 8.376744e-04 3.660582e-03
## MAP2K3 -7.178343e+01 1.944811e+02 -3.422666 8.394456e-04 3.666971e-03
## PLIN5 -2.308587e+01 3.173251e+01 -3.421890 8.416363e-04 3.675187e-03
## ARHGAP6 2.222999e+00 5.115979e+00 3.421684 8.422209e-04 3.676386e-03
## ZNF263 -4.664574e+00 2.348134e+01 -3.420334 8.460489e-04 3.691737e-03
## WLS 5.092050e+01 8.562399e+01 3.419503 8.484119e-04 3.699376e-03
## LEPROT 2.579875e+01 8.947314e+01 3.419499 8.484235e-04 3.699376e-03
## ELK4 8.433220e+00 2.604580e+01 3.419200 8.492761e-04 3.700496e-03
## RNA28SN3 -1.359905e+03 2.155951e+03 -3.419190 8.493045e-04 3.700496e-03
## ABTB1 -2.809775e+02 5.332241e+02 -3.418607 8.509673e-04 3.706380e-03
## SLC35F5 7.987436e+00 2.968134e+01 3.417463 8.542427e-04 3.718976e-03
## ANXA4 7.392661e+00 3.157039e+01 3.417378 8.544865e-04 3.718976e-03
## AURKAIP1 -1.616024e+01 2.883187e+01 -3.416240 8.577532e-04 3.731207e-03
## SLC2A8 -1.053145e+00 1.523039e+00 -3.416180 8.579260e-04 3.731207e-03
## COMMD6 -2.617693e+01 6.616956e+01 -3.415448 8.600374e-04 3.739019e-03
## NUDT17 -6.534055e-01 2.127483e+00 -3.414880 8.616765e-04 3.742733e-03
## SLC30A7 5.479994e+00 2.538686e+01 3.414840 8.617929e-04 3.742733e-03
## PDIK1L 1.619494e+00 6.609427e+00 3.414824 8.618384e-04 3.742733e-03
## TXNL4A -9.279821e+00 2.897186e+01 -3.413587 8.654224e-04 3.756922e-03
## SMG6 -2.920577e+00 1.636467e+01 -3.413134 8.667360e-04 3.761248e-03
## TRAM1 2.570387e+01 1.306377e+02 3.412235 8.693547e-04 3.771231e-03
## YME1L1 2.499572e+01 1.133109e+02 3.411617 8.711565e-04 3.777666e-03
## DAPK3 -4.876477e+00 1.366495e+01 -3.411166 8.724744e-04 3.781099e-03
## IL4R -1.642894e+02 4.042782e+02 -3.411128 8.725859e-04 3.781099e-03
## ADCK1 -1.640992e+00 3.334364e+00 -3.410344 8.748823e-04 3.788791e-03
## EPRS1 1.136308e+01 4.890320e+01 3.410304 8.750000e-04 3.788791e-03
## RECQL 9.919206e+00 4.278681e+01 3.409530 8.772725e-04 3.797245e-03
## WIPF2 1.855539e+01 6.652457e+01 3.408771 8.795056e-04 3.805522e-03
## ARL16 -3.717920e+00 1.312072e+01 -3.408332 8.807991e-04 3.809729e-03
## OSBP 5.928371e+00 3.421764e+01 3.407517 8.832063e-04 3.817411e-03
## TIMP1 -1.493890e+02 2.282849e+02 -3.407450 8.834056e-04 3.817411e-03
## CPNE1 -2.930074e+01 1.233677e+02 -3.407404 8.835408e-04 3.817411e-03
## OTUB1 -2.173933e+01 7.650581e+01 -3.407234 8.840453e-04 3.818200e-03
## SNAPIN -5.827542e+00 2.264554e+01 -3.407093 8.844612e-04 3.818606e-03
## MEA1 -1.595369e+01 5.827329e+01 -3.406699 8.856310e-04 3.819549e-03
## DNAJC7 -1.271249e+01 7.539283e+01 -3.406697 8.856346e-04 3.819549e-03
## ZC3H7A 1.818019e+01 5.200075e+01 3.406688 8.856631e-04 3.819549e-03
## WDFY1 1.693678e+01 4.960455e+01 3.406565 8.860258e-04 3.819549e-03
## TXNDC11 1.661719e+01 4.448300e+01 3.406418 8.864637e-04 3.819549e-03
## TRAPPC9 -3.642503e+00 1.611589e+01 -3.406368 8.866121e-04 3.819549e-03
## SYN2 -2.455863e+00 3.475432e+00 -3.406218 8.870560e-04 3.820074e-03
## SMN1 2.966636e+00 1.036015e+01 3.405870 8.880912e-04 3.823144e-03
## EPC1 1.291617e+01 5.822345e+01 3.405668 8.886913e-04 3.824339e-03
## ZKSCAN7 2.887575e+00 5.455537e+00 3.405397 8.894994e-04 3.826428e-03
## DMXL1 7.469216e+00 2.465946e+01 3.404628 8.917907e-04 3.834894e-03
## REV1 3.960203e+00 1.620872e+01 3.404139 8.932532e-04 3.838435e-03
## TXN2 -2.113419e+01 5.223611e+01 -3.404136 8.932615e-04 3.838435e-03
## ABL2 5.444234e+00 1.639332e+01 3.403971 8.937538e-04 3.839160e-03
## RBM43 4.420429e+00 9.406702e+00 3.403836 8.941587e-04 3.839457e-03
## HYAL2 -3.748911e+00 9.461095e+00 -3.403732 8.944706e-04 3.839457e-03
## DOP1B 5.338582e+00 1.931065e+01 3.402545 8.980286e-04 3.853335e-03
## HSPA4 5.998304e+00 5.706318e+01 3.402027 8.995881e-04 3.858631e-03
## BIRC5 5.229751e+00 6.315856e+00 3.401662 9.006862e-04 3.861945e-03
## MRAS -1.918031e+00 3.335592e+00 -3.401257 9.019079e-04 3.865785e-03
## VPS13C 2.552292e+01 6.096054e+01 3.401141 9.022576e-04 3.865887e-03
## SWI5 -3.231394e+00 8.839777e+00 -3.400977 9.027537e-04 3.866616e-03
## ANKRD36B 1.360193e+00 3.478468e+00 3.400452 9.043379e-04 3.872003e-03
## SETD5 1.637514e+01 5.800582e+01 3.400021 9.056444e-04 3.876197e-03
## KIZ 2.368759e+00 1.313133e+01 3.399040 9.086198e-04 3.887529e-03
## HACD3 2.654155e+00 1.073915e+01 3.397413 9.135732e-04 3.907313e-03
## TFAM 5.049202e+00 2.412904e+01 3.397282 9.139752e-04 3.907623e-03
## DDHD1 5.051572e+00 1.583248e+01 3.396496 9.163789e-04 3.916488e-03
## CAPN1 -2.672726e+01 1.002344e+02 -3.396285 9.170258e-04 3.917841e-03
## CISD3 -6.272017e+00 1.071860e+01 -3.396053 9.177346e-04 3.919457e-03
## GPATCH8 8.526511e+00 2.878337e+01 3.395212 9.203174e-04 3.929073e-03
## OTUD3 1.410794e+00 4.521405e+00 3.394525 9.224309e-04 3.936679e-03
## USP1 1.067851e+01 5.052917e+01 3.394081 9.238024e-04 3.941114e-03
## ZNF335 -5.994435e+00 2.504953e+01 -3.392565 9.284905e-04 3.959690e-03
## NEK9 1.603720e+01 7.601523e+01 3.392423 9.289299e-04 3.960140e-03
## IMPDH2 -1.387424e+01 3.910486e+01 -3.391550 9.316428e-04 3.970278e-03
## UBFD1 2.978643e+00 1.061324e+01 3.390798 9.339839e-04 3.978825e-03
## FIP1L1 3.578766e+00 2.867529e+01 3.390455 9.350529e-04 3.981949e-03
## PCNX4 7.661278e+00 2.670849e+01 3.390338 9.354176e-04 3.982072e-03
## SOD1 -2.078116e+01 5.595933e+01 -3.389849 9.369442e-04 3.987140e-03
## ZNF22 4.173871e+00 1.954409e+01 3.389564 9.378361e-04 3.989504e-03
## RING1 -6.301430e+00 2.217091e+01 -3.389125 9.392121e-04 3.993924e-03
## KMT2C 3.213807e+01 8.591296e+01 3.388716 9.404953e-04 3.997948e-03
## CST3 -1.891180e+02 2.747407e+02 -3.387756 9.435094e-04 4.009323e-03
## LRFN4 -6.803037e-01 9.580936e-01 -3.387503 9.443078e-04 4.010506e-03
## CHAMP1 2.076261e+00 7.345854e+00 3.387381 9.446918e-04 4.010506e-03
## CXXC1 -7.706853e+00 2.787513e+01 -3.387346 9.448023e-04 4.010506e-03
## RBM4 -1.728249e+01 9.074107e+01 -3.386074 9.488177e-04 4.026110e-03
## COA7 1.086880e+00 5.340126e+00 3.385818 9.496295e-04 4.028114e-03
## LPIN2 5.170992e+01 1.283581e+02 3.385416 9.509032e-04 4.032074e-03
## RAP1GDS1 3.469906e+00 2.541334e+01 3.385119 9.518442e-04 4.034622e-03
## STAT1 2.263026e+02 4.288975e+02 3.384750 9.530146e-04 4.038140e-03
## JMJD4 -4.290188e+00 6.850376e+00 -3.383498 9.570020e-04 4.053587e-03
## PCNP 1.636270e+01 8.967242e+01 3.383134 9.581608e-04 4.056985e-03
## CCNF 1.455155e+00 2.866262e+00 3.383032 9.584883e-04 4.056985e-03
## C16orf74 -2.009627e+00 2.209318e+00 -3.382616 9.598161e-04 4.061155e-03
## TRAPPC6A -5.991024e+00 6.693045e+00 -3.382457 9.603261e-04 4.061864e-03
## SERGEF -3.591803e+00 8.533401e+00 -3.382307 9.608057e-04 4.062444e-03
## CSPP1 1.110452e+00 4.377968e+00 3.381486 9.634378e-04 4.072121e-03
## IL11RA -7.007228e+00 9.889316e+00 -3.381313 9.639922e-04 4.073013e-03
## LRRC46 -3.942653e-01 8.210395e-01 -3.381079 9.647436e-04 4.074736e-03
## MIB1 1.080610e+01 3.257249e+01 3.380844 9.655002e-04 4.076480e-03
## IPPK 1.373001e+00 6.941924e+00 3.380409 9.669009e-04 4.080941e-03
## HNRNPR 1.332925e+01 7.475318e+01 3.380136 9.677785e-04 4.083192e-03
## LARP7 9.214612e+00 4.758516e+01 3.379146 9.709752e-04 4.095223e-03
## PRCC -9.602216e+00 3.817117e+01 -3.377946 9.748634e-04 4.110160e-03
## PDIA5 2.347848e+00 5.246741e+00 3.376604 9.792260e-04 4.127086e-03
## VPS18 -1.393697e+01 3.883587e+01 -3.376050 9.810316e-04 4.133227e-03
## ICE1 6.132259e+00 2.366489e+01 3.375072 9.842301e-04 4.145231e-03
## ANO9 -8.881305e+00 9.193611e+00 -3.374726 9.853637e-04 4.146817e-03
## TAF8 8.523749e+00 3.178794e+01 3.374722 9.853753e-04 4.146817e-03
## HSPBP1 -3.634793e+00 4.388639e+00 -3.374637 9.856558e-04 4.146817e-03
## PHACTR2 8.699426e+00 1.961838e+01 3.373492 9.894166e-04 4.161163e-03
## DCAF7 1.111692e+01 5.670916e+01 3.372654 9.921757e-04 4.170038e-03
## SNRNP35 -8.378568e+00 2.813585e+01 -3.372638 9.922299e-04 4.170038e-03
## TSR3 -6.951598e+00 1.278686e+01 -3.372188 9.937158e-04 4.174803e-03
## MTRNR2L6 -3.148477e+01 4.498673e+01 -3.370783 9.983688e-04 4.192866e-03
## TRIM22 3.946764e+02 6.802649e+02 3.370219 1.000242e-03 4.196960e-03
## E2F4 -1.446481e+01 7.390580e+01 -3.370174 1.000389e-03 4.196960e-03
## TBC1D22B 3.190438e+00 1.272462e+01 3.370169 1.000405e-03 4.196960e-03
## RNPS1 -1.462666e+01 4.826228e+01 -3.369889 1.001339e-03 4.199393e-03
## MPST -6.741378e+00 1.031564e+01 -3.369078 1.004041e-03 4.209234e-03
## ABI2 2.675631e+00 7.786202e+00 3.368870 1.004735e-03 4.210656e-03
## FUT10 8.677539e-01 1.775982e+00 3.368185 1.007022e-03 4.218749e-03
## MUS81 -5.076319e+00 2.122691e+01 -3.367646 1.008827e-03 4.224819e-03
## MC1R -8.324667e-01 1.474273e+00 -3.367173 1.010414e-03 4.229973e-03
## ALDH18A1 3.345696e+00 9.977832e+00 3.365917 1.014636e-03 4.246149e-03
## DDX28 -3.332807e+00 1.279964e+01 -3.364923 1.017990e-03 4.258683e-03
## MYB 4.992903e+00 7.418803e+00 3.364666 1.018858e-03 4.260811e-03
## TNRC18 -8.750973e+00 3.905694e+01 -3.364445 1.019607e-03 4.262439e-03
## SLC23A2 5.573481e+00 1.910793e+01 3.364163 1.020562e-03 4.264927e-03
## PIK3R2 -2.301324e+00 7.528999e+00 -3.363682 1.022193e-03 4.270238e-03
## DEDD2 -3.808682e+01 1.291831e+02 -3.363095 1.024185e-03 4.277056e-03
## LARS2 1.498217e+00 6.436108e+00 3.362850 1.025019e-03 4.279028e-03
## ARHGAP32 9.612332e-01 2.544693e+00 3.362479 1.026280e-03 4.282785e-03
## CFAP410 -3.609940e+00 5.579006e+00 -3.362275 1.026978e-03 4.283544e-03
## CYSTM1 -1.833462e+02 1.942429e+02 -3.362214 1.027184e-03 4.283544e-03
## FUCA1 -6.504963e+00 2.310023e+01 -3.362088 1.027615e-03 4.283834e-03
## CD68 -8.176823e+01 2.689111e+02 -3.360604 1.032685e-03 4.303460e-03
## USP34 3.673428e+01 1.223386e+02 3.360134 1.034295e-03 4.308655e-03
## HEATR1 3.770922e+00 9.263991e+00 3.359617 1.036069e-03 4.314530e-03
## ITGA1 3.541247e+00 7.039792e+00 3.358660 1.039362e-03 4.326723e-03
## CEP85L 8.878391e+00 2.792517e+01 3.357833 1.042217e-03 4.337086e-03
## ODC1 1.813879e+01 6.080888e+01 3.357532 1.043258e-03 4.339893e-03
## TLK2 1.107764e+01 4.990203e+01 3.356716 1.046082e-03 4.349525e-03
## TCOF1 -7.638357e+00 1.955055e+01 -3.356636 1.046358e-03 4.349525e-03
## ARMC6 -4.331109e+00 9.994980e+00 -3.356545 1.046673e-03 4.349525e-03
## DELE1 -5.049312e+00 3.296236e+01 -3.356325 1.047439e-03 4.350482e-03
## DOCK8 9.905161e+01 3.126439e+02 3.356268 1.047637e-03 4.350482e-03
## PLD1 3.171217e+00 9.232717e+00 3.355826 1.049170e-03 4.355322e-03
## UNC13B 6.518226e-01 1.599115e+00 3.355231 1.051241e-03 4.362394e-03
## RRP36 -5.294864e+00 2.243288e+01 -3.354370 1.054244e-03 4.372989e-03
## WRAP53 -1.994471e+00 5.915849e+00 -3.354287 1.054532e-03 4.372989e-03
## PPP1R16A -9.022673e-01 1.630258e+00 -3.353824 1.056152e-03 4.375946e-03
## PARP11 6.428867e+00 1.214285e+01 3.353786 1.056285e-03 4.375946e-03
## DIS3L 3.017108e+00 1.067322e+01 3.353767 1.056352e-03 4.375946e-03
## MAL -1.336019e+01 1.532058e+01 -3.353145 1.058530e-03 4.383437e-03
## SLC38A10 -1.407851e+01 4.034945e+01 -3.352268 1.061606e-03 4.394641e-03
## DOT1L -2.696227e+00 8.184520e+00 -3.351849 1.063081e-03 4.399210e-03
## ENTPD5 1.437283e+00 5.403470e+00 3.350176 1.068983e-03 4.420846e-03
## CCDC80 5.164999e-01 8.918237e-01 3.350156 1.069054e-03 4.420846e-03
## ZNF451 4.912545e+00 2.258545e+01 3.349904 1.069948e-03 4.422997e-03
## PNKD -1.003160e+01 3.639197e+01 -3.348469 1.075039e-03 4.442494e-03
## OLFM2 -8.468852e-01 1.435571e+00 -3.348337 1.075508e-03 4.442887e-03
## NDUFC1 -2.199192e+00 8.786406e+00 -3.347252 1.079377e-03 4.457314e-03
## WDR18 -2.004015e+00 3.384955e+00 -3.346797 1.081001e-03 4.462469e-03
## POLR2J -1.824711e+01 5.636251e+01 -3.346582 1.081770e-03 4.464087e-03
## CERK -1.339318e+01 8.355223e+01 -3.346463 1.082194e-03 4.464285e-03
## NRAS 1.346439e+01 5.229278e+01 3.346313 1.082733e-03 4.464957e-03
## PSME4 7.237708e+00 5.103910e+01 3.345561 1.085426e-03 4.474009e-03
## CCNYL1 2.588124e+00 1.112069e+01 3.345490 1.085683e-03 4.474009e-03
## SMAD2 1.487953e+01 8.402819e+01 3.345210 1.086687e-03 4.476592e-03
## PPM1K 1.187103e+01 2.537856e+01 3.344622 1.088804e-03 4.482029e-03
## SLC52A2 -2.968550e+00 6.032908e+00 -3.344616 1.088823e-03 4.482029e-03
## FBLN5 -1.715201e+00 2.666329e+00 -3.344476 1.089328e-03 4.482029e-03
## NFAT5 2.494368e+01 5.619766e+01 3.344423 1.089518e-03 4.482029e-03
## PPFIA1 1.576532e+01 4.560539e+01 3.344007 1.091016e-03 4.486288e-03
## AP3B1 1.214588e+01 4.896297e+01 3.343926 1.091310e-03 4.486288e-03
## LILRB4 -1.891010e+01 4.152024e+01 -3.343639 1.092344e-03 4.488980e-03
## MATK -8.388332e+00 9.315206e+00 -3.343359 1.093356e-03 4.491586e-03
## TRMU -3.574641e+00 9.363853e+00 -3.342179 1.097627e-03 4.507567e-03
## ZSCAN12 8.459137e-01 1.838900e+00 3.341220 1.101109e-03 4.520304e-03
## TIMM9 -2.968681e+00 8.627813e+00 -3.340881 1.102344e-03 4.523807e-03
## NCR1 1.224381e+00 2.678526e+00 3.340433 1.103978e-03 4.528944e-03
## NUBP1 -3.655321e+00 1.721894e+01 -3.339601 1.107015e-03 4.539691e-03
## PLCD1 -3.759566e+00 1.155611e+01 -3.339505 1.107363e-03 4.539691e-03
## ASIC3 -3.581575e-01 5.728481e-01 -3.339084 1.108906e-03 4.543067e-03
## THOC2 6.675120e+00 2.350514e+01 3.339058 1.108999e-03 4.543067e-03
## ATG4A 2.449223e+00 1.336205e+01 3.338966 1.109336e-03 4.543067e-03
## C3orf14 -5.955280e-01 1.314562e+00 -3.338078 1.112595e-03 4.554843e-03
## DPM3 -2.582944e+00 3.044090e+00 -3.337581 1.114420e-03 4.560738e-03
## POLR1H -9.327654e+00 2.668011e+01 -3.335386 1.122521e-03 4.592306e-03
## GLYCTK -5.026301e+00 1.169280e+01 -3.335255 1.123008e-03 4.592714e-03
## DENND4A 8.192785e+00 3.262415e+01 3.334913 1.124275e-03 4.595098e-03
## MMP25 -4.100175e+02 8.946589e+02 -3.334888 1.124366e-03 4.595098e-03
## PIGT -1.153514e+01 4.189608e+01 -3.333873 1.128136e-03 4.608920e-03
## TBRG4 -5.799778e+00 1.722667e+01 -3.333534 1.129400e-03 4.612397e-03
## NEIL3 7.676353e-01 9.016860e-01 3.333436 1.129765e-03 4.612397e-03
## ESF1 1.678849e+00 5.234544e+00 3.333115 1.130961e-03 4.615690e-03
## C2CD5 1.100903e+01 3.936890e+01 3.332977 1.131477e-03 4.616207e-03
## SLC22A16 2.102572e+00 3.172906e+00 3.331826 1.135776e-03 4.632154e-03
## NUDT1 -5.896183e+00 8.347041e+00 -3.331415 1.137318e-03 4.636850e-03
## KAT2B 2.768042e+01 8.504289e+01 3.329114 1.145974e-03 4.669016e-03
## GATD1 -5.381580e+00 1.717060e+01 -3.329108 1.145995e-03 4.669016e-03
## NISCH -9.866647e+00 4.568418e+01 -3.328340 1.148898e-03 4.677790e-03
## ABHD10 -4.371546e+00 1.903502e+01 -3.328330 1.148938e-03 4.677790e-03
## AURKB 2.323746e+00 3.815974e+00 3.327590 1.151741e-03 4.687593e-03
## CCND2 1.136287e+01 4.193033e+01 3.326894 1.154384e-03 4.695732e-03
## TLE5 -1.113613e+02 1.823832e+02 -3.326855 1.154533e-03 4.695732e-03
## WDR46 -9.084891e+00 2.379193e+01 -3.326006 1.157765e-03 4.706571e-03
## POLE4 -1.142889e+01 2.540997e+01 -3.325946 1.157991e-03 4.706571e-03
## PSMB6 -2.085430e+01 6.851829e+01 -3.325739 1.158783e-03 4.708177e-03
## SAC3D1 -1.701582e+00 2.035092e+00 -3.325138 1.161079e-03 4.715887e-03
## CEP192 7.776935e+00 2.353103e+01 3.324788 1.162417e-03 4.719708e-03
## LSM14A 2.448560e+01 1.306511e+02 3.324598 1.163143e-03 4.720428e-03
## DHRS7B -3.791589e+00 1.486559e+01 -3.324533 1.163390e-03 4.720428e-03
## ZNF836 -1.484072e+00 7.651357e+00 -3.324387 1.163952e-03 4.721091e-03
## RPL14 -1.615374e+02 4.359828e+02 -3.324125 1.164954e-03 4.723539e-03
## RPS21 -1.084760e+02 1.582505e+02 -3.323624 1.166878e-03 4.728125e-03
## C4orf46 1.839384e+00 6.413515e+00 3.323623 1.166882e-03 4.728125e-03
## ACP2 -6.068007e+00 1.381038e+01 -3.322474 1.171300e-03 4.744406e-03
## GRK2 -7.426101e+01 3.422874e+02 -3.321905 1.173494e-03 4.751669e-03
## BCL2L13 6.468307e+00 3.905025e+01 3.320602 1.178533e-03 4.770445e-03
## ANKMY1 -2.510878e+00 9.051543e+00 -3.319136 1.184229e-03 4.791863e-03
## CAPRIN1 1.063161e+01 9.429874e+01 3.318923 1.185059e-03 4.793588e-03
## HPS5 4.149794e+00 1.502502e+01 3.317775 1.189540e-03 4.810071e-03
## MCAT -1.463045e+00 3.748407e+00 -3.317490 1.190653e-03 4.812931e-03
## CCDC30 9.444926e-01 2.899017e+00 3.316586 1.194198e-03 4.825617e-03
## TMEM106C 6.617059e+00 1.945106e+01 3.315685 1.197738e-03 4.838154e-03
## BAZ2A 5.131444e+01 1.888915e+02 3.315512 1.198418e-03 4.838154e-03
## CEP97 1.374686e+01 1.919710e+01 3.315485 1.198524e-03 4.838154e-03
## KIAA1586 9.288270e-01 4.083829e+00 3.315246 1.199465e-03 4.839818e-03
## BRWD1 1.093944e+01 4.859498e+01 3.315173 1.199753e-03 4.839818e-03
## YIPF2 -2.584059e+00 5.261648e+00 -3.314235 1.203455e-03 4.853105e-03
## SCARB1 -1.157288e+00 3.578753e+00 -3.313975 1.204482e-03 4.855592e-03
## RBBP4 1.235365e+01 8.173500e+01 3.313369 1.206880e-03 4.863126e-03
## EFEMP2 -3.102556e+00 6.392319e+00 -3.313296 1.207171e-03 4.863126e-03
## NAGA -1.468795e+01 5.467961e+01 -3.312985 1.208403e-03 4.866438e-03
## TRIM33 1.796683e+01 5.967808e+01 3.312267 1.211255e-03 4.876268e-03
## GTF3C3 3.387336e+00 1.454921e+01 3.311490 1.214351e-03 4.887073e-03
## BRD1 -2.397757e+00 1.482579e+01 -3.311050 1.216104e-03 4.892468e-03
## SAMD9 1.040670e+02 1.715035e+02 3.310845 1.216922e-03 4.894097e-03
## A1BG -9.094955e-01 1.011980e+00 -3.310366 1.218839e-03 4.900148e-03
## SEC63 8.340228e+00 4.194978e+01 3.309503 1.222295e-03 4.912377e-03
## EEPD1 -6.246464e+00 2.263370e+01 -3.309258 1.223275e-03 4.914649e-03
## FBXL8 -6.914778e-01 6.848887e-01 -3.308908 1.224683e-03 4.918638e-03
## IKZF4 9.590657e-01 2.972551e+00 3.308750 1.225315e-03 4.919513e-03
## ERGIC3 -2.839145e+01 9.158749e+01 -3.308116 1.227869e-03 4.928052e-03
## TTPAL 6.911879e+00 2.230395e+01 3.308015 1.228273e-03 4.928052e-03
## WASHC4 4.883156e+01 1.371519e+02 3.307388 1.230803e-03 4.934916e-03
## CES2 -3.300869e+00 2.257962e+01 -3.307385 1.230816e-03 4.934916e-03
## CCDC138 3.386285e-01 1.137407e+00 3.307081 1.232041e-03 4.938157e-03
## ZKSCAN1 8.816659e+00 3.904944e+01 3.306734 1.233446e-03 4.942120e-03
## ASCC3 5.353283e+00 1.604485e+01 3.306607 1.233960e-03 4.942508e-03
## STK38 -3.724837e+01 2.130187e+02 -3.306491 1.234428e-03 4.942714e-03
## NAPG 4.862272e+00 2.510467e+01 3.305858 1.236994e-03 4.949871e-03
## POLR2I -3.053365e+00 5.214807e+00 -3.305844 1.237050e-03 4.949871e-03
## NAA30 2.135846e+00 1.022050e+01 3.305735 1.237493e-03 4.949972e-03
## SYMPK -7.571718e+00 2.506982e+01 -3.303266 1.247546e-03 4.988500e-03
## FKBP2 -1.067516e+01 1.840962e+01 -3.302862 1.249199e-03 4.993428e-03
## TRAF2 -3.542282e+00 7.122814e+00 -3.302434 1.250948e-03 4.998736e-03
## TLNRD1 -2.945743e+00 1.627159e+01 -3.301809 1.253513e-03 5.007297e-03
## SCOC 2.487527e+00 1.593377e+01 3.301287 1.255660e-03 5.014186e-03
## TRIM56 2.298515e+01 9.278373e+01 3.301160 1.256181e-03 5.014576e-03
## LMBR1L -9.734670e+00 3.839617e+01 -3.300980 1.256922e-03 5.015845e-03
## RICTOR 5.758490e+01 1.414603e+02 3.300712 1.258027e-03 5.018569e-03
## MED13L 6.606559e+01 1.527720e+02 3.300488 1.258948e-03 5.019754e-03
## DHRS1 -4.703706e+00 1.472088e+01 -3.300391 1.259348e-03 5.019754e-03
## COQ8B -1.217874e+01 2.772529e+01 -3.300331 1.259594e-03 5.019754e-03
## ACSF2 -4.248005e+00 8.752576e+00 -3.300119 1.260473e-03 5.021567e-03
## ARMC7 -8.230090e+00 2.531383e+01 -3.299753 1.261983e-03 5.025150e-03
## DIABLO -3.980366e+00 2.386523e+01 -3.299696 1.262219e-03 5.025150e-03
## TOM1 -4.148386e+01 9.757974e+01 -3.299540 1.262864e-03 5.026028e-03
## SMAD5 3.773583e+00 1.192468e+01 3.298772 1.266043e-03 5.036990e-03
## GAN 9.611026e-01 3.963195e+00 3.298307 1.267970e-03 5.042965e-03
## ADSS1 -2.554774e-01 4.803343e-01 -3.297543 1.271143e-03 5.052611e-03
## DNLZ -1.758035e+00 2.137907e+00 -3.297518 1.271247e-03 5.052611e-03
## MRPL19 2.328715e+00 1.176687e+01 3.297400 1.271740e-03 5.052804e-03
## STARD3 -9.330620e+00 4.642118e+01 -3.297302 1.272148e-03 5.052804e-03
## LRRCC1 1.031614e+00 3.115080e+00 3.296963 1.273560e-03 5.055632e-03
## HERC3 3.131571e+01 7.371338e+01 3.296926 1.273712e-03 5.055632e-03
## FBXO28 5.079674e+00 2.305460e+01 3.296369 1.276037e-03 5.063166e-03
## FZD2 -1.011373e+00 2.146637e+00 -3.295272 1.280623e-03 5.079660e-03
## ZNF280C 4.927488e-01 1.340856e+00 3.294452 1.284063e-03 5.090842e-03
## DRAP1 -3.157818e+01 6.098790e+01 -3.294395 1.284300e-03 5.090842e-03
## ZSCAN2 -1.563856e+00 5.631078e+00 -3.293232 1.289193e-03 5.108531e-03
## TCP11L2 1.564840e+01 3.490892e+01 3.292734 1.291295e-03 5.115150e-03
## ARAP2 1.706859e+01 4.519780e+01 3.292420 1.292620e-03 5.118690e-03
## ZNF629 -1.117579e+00 3.616183e+00 -3.291748 1.295462e-03 5.128233e-03
## SENP8 2.909785e-01 1.238043e+00 3.291146 1.298017e-03 5.136630e-03
## BABAM1 -1.475253e+01 4.057294e+01 -3.290894 1.299084e-03 5.138977e-03
## NAAA -1.937464e+01 5.565332e+01 -3.290802 1.299477e-03 5.138977e-03
## MCM3 8.028378e+00 3.101750e+01 3.290465 1.300909e-03 5.142925e-03
## SC5D 2.027093e+00 9.730385e+00 3.290117 1.302386e-03 5.147052e-03
## ACVR1 2.849991e+00 1.197090e+01 3.289486 1.305076e-03 5.155964e-03
## KBTBD3 -1.204570e+00 4.509391e+00 -3.288841 1.307826e-03 5.165108e-03
## RINT1 1.627054e+00 9.476999e+00 3.288688 1.308479e-03 5.165195e-03
## SLC37A2 -6.732706e+00 2.758971e+01 -3.288632 1.308719e-03 5.165195e-03
## EYA3 5.203345e+00 2.485161e+01 3.288322 1.310045e-03 5.168707e-03
## DNM1L 4.646191e+00 2.414621e+01 3.287912 1.311803e-03 5.173920e-03
## LHFPL2 1.579092e+01 3.078348e+01 3.287686 1.312770e-03 5.176016e-03
## B3GLCT 8.104322e-01 3.320756e+00 3.287446 1.313800e-03 5.178355e-03
## ABHD17B 2.814935e+00 1.388921e+01 3.286541 1.317685e-03 5.191941e-03
## SORD -4.843224e+00 1.739980e+01 -3.285140 1.323727e-03 5.214016e-03
## ZNF133 -1.857819e+00 7.075448e+00 -3.284029 1.328533e-03 5.231210e-03
## GSE1 4.292412e+00 1.562932e+01 3.283836 1.329372e-03 5.232774e-03
## STRIP1 3.850976e+00 2.905519e+01 3.283603 1.330382e-03 5.235015e-03
## EAF1 1.419949e+01 3.598020e+01 3.282025 1.337245e-03 5.260127e-03
## PLA2G12A 4.875494e+00 1.614042e+01 3.281932 1.337651e-03 5.260127e-03
## SHISA9 5.846330e+00 1.863861e+01 3.281235 1.340695e-03 5.270348e-03
## FAM160B2 -4.647923e+00 1.334812e+01 -3.280652 1.343249e-03 5.278640e-03
## OASL 1.459873e+02 1.697173e+02 3.280431 1.344217e-03 5.280694e-03
## MFSD3 -1.102651e+00 1.270886e+00 -3.279741 1.347243e-03 5.290828e-03
## MINDY3 2.653824e+00 1.187627e+01 3.279501 1.348299e-03 5.293221e-03
## PAQR7 -2.718418e+00 6.692685e+00 -3.278994 1.350527e-03 5.300214e-03
## NADK2 1.540432e+00 7.657185e+00 3.278609 1.352224e-03 5.304270e-03
## MAP7D1 -4.020110e+01 1.373781e+02 -3.278556 1.352455e-03 5.304270e-03
## PTRHD1 -3.299203e+00 7.100940e+00 -3.278077 1.354569e-03 5.310804e-03
## CCL24 -3.224083e-01 5.501559e-01 -3.277929 1.355223e-03 5.311613e-03
## ZER1 -1.261837e+01 4.875429e+01 -3.277373 1.357682e-03 5.318668e-03
## LYST 1.175697e+02 3.138105e+02 3.277319 1.357920e-03 5.318668e-03
## KCNMB4 -4.961251e-01 1.185359e+00 -3.276412 1.361939e-03 5.332652e-03
## HECA 6.461067e+01 2.105327e+02 3.275592 1.365580e-03 5.345143e-03
## FUZ -2.369641e+00 6.359326e+00 -3.274787 1.369165e-03 5.357405e-03
## STAMBP 5.540189e+00 3.094877e+01 3.274246 1.371580e-03 5.365084e-03
## RPL39 -3.626980e+02 6.796865e+02 -3.274104 1.372214e-03 5.365794e-03
## XPO1 2.772906e+01 1.037991e+02 3.273678 1.374116e-03 5.370283e-03
## COX18 1.513656e+00 1.143435e+01 3.273645 1.374267e-03 5.370283e-03
## LSM2 -6.681189e+00 1.747873e+01 -3.273227 1.376138e-03 5.375823e-03
## ORC3 2.409934e+00 1.192844e+01 3.272831 1.377914e-03 5.380986e-03
## SINHCAF 5.438359e+00 2.571026e+01 3.271773 1.382666e-03 5.397768e-03
## TUBB1 5.072575e+01 9.688470e+01 3.271275 1.384908e-03 5.404742e-03
## MTCH1 -2.697333e+01 1.391175e+02 -3.270589 1.388001e-03 5.415030e-03
## METTL14 3.765830e+00 1.674182e+01 3.269965 1.390822e-03 5.424250e-03
## ATG2B 9.999582e+00 3.168065e+01 3.269823 1.391466e-03 5.424978e-03
## CDC20 4.916191e+00 5.501718e+00 3.269266 1.393986e-03 5.433018e-03
## TRPT1 -1.727963e+00 5.435570e+00 -3.269146 1.394531e-03 5.433357e-03
## LSM7 -9.786302e+00 1.604372e+01 -3.268749 1.396335e-03 5.438598e-03
## PTAR1 2.453670e+01 6.570521e+01 3.268614 1.396949e-03 5.439203e-03
## PDE7A 1.984063e+01 8.462636e+01 3.267951 1.399960e-03 5.449139e-03
## PTK6 -6.027564e-01 1.471093e+00 -3.267443 1.402276e-03 5.456364e-03
## MZT2B -4.827412e+00 4.755649e+00 -3.267319 1.402844e-03 5.456781e-03
## CTNNBL1 -8.560396e+00 3.493474e+01 -3.267046 1.404086e-03 5.459823e-03
## KCNN3 1.916811e+00 1.832696e+00 3.266795 1.405233e-03 5.462493e-03
## REEP4 -3.560670e+00 1.188265e+01 -3.265760 1.409970e-03 5.479111e-03
## TUFT1 4.167838e+00 9.264024e+00 3.265370 1.411758e-03 5.484260e-03
## NUP107 3.145308e+00 1.780963e+01 3.265232 1.412391e-03 5.484923e-03
## TRPM6 1.130053e+01 2.782517e+01 3.264976 1.413566e-03 5.487689e-03
## SLC2A5 8.413099e+00 9.218800e+00 3.264800 1.414374e-03 5.489030e-03
## PRRC2C 2.847542e+01 1.108168e+02 3.264611 1.415243e-03 5.490607e-03
## EPHB6 -6.900118e+00 1.670746e+01 -3.263686 1.419502e-03 5.503772e-03
## HPF1 -2.629546e+00 1.099528e+01 -3.263672 1.419565e-03 5.503772e-03
## PPP1R7 -9.397516e+00 4.626269e+01 -3.262293 1.425938e-03 5.526675e-03
## ST3GAL1 1.523357e+01 7.788900e+01 3.262075 1.426947e-03 5.527270e-03
## INPP5E -1.457871e+00 3.934240e+00 -3.262059 1.427024e-03 5.527270e-03
## TOMM6 -1.972367e+01 5.964225e+01 -3.261626 1.429030e-03 5.532774e-03
## RPL36AL -6.986753e+01 2.487973e+02 -3.261551 1.429378e-03 5.532774e-03
## CHCHD6 -6.550458e-01 8.816320e-01 -3.261439 1.429897e-03 5.532978e-03
## VNN3 5.955848e+01 1.254469e+02 3.261028 1.431809e-03 5.538569e-03
## SLC26A2 2.546764e+00 9.960958e+00 3.259861 1.437243e-03 5.557776e-03
## HMG20A 3.015270e+00 1.444773e+01 3.259260 1.440050e-03 5.566818e-03
## NDUFV3 -3.092626e+00 1.748673e+01 -3.258436 1.443904e-03 5.579896e-03
## GCSH 9.077403e-01 2.159640e+00 3.258314 1.444475e-03 5.580286e-03
## ZNF747 -1.472116e+00 7.011110e+00 -3.258073 1.445608e-03 5.582843e-03
## CNOT7 9.217114e+00 6.337168e+01 3.257832 1.446736e-03 5.585380e-03
## SPATA7 -3.828586e-01 1.202327e+00 -3.257291 1.449278e-03 5.593375e-03
## MORC3 2.874561e+01 8.802963e+01 3.256850 1.451356e-03 5.597897e-03
## MTRF1L 6.193539e+00 3.075054e+01 3.256841 1.451394e-03 5.597897e-03
## RBBP9 1.298483e+00 5.171973e+00 3.256520 1.452907e-03 5.601910e-03
## DEAF1 -3.408913e+00 1.034211e+01 -3.255837 1.456132e-03 5.612519e-03
## MBTD1 6.317254e+00 2.273434e+01 3.254861 1.460744e-03 5.628468e-03
## PIWIL4 4.714201e+00 9.270949e+00 3.254724 1.461395e-03 5.629146e-03
## DMTF1 1.133184e+01 4.803148e+01 3.254506 1.462427e-03 5.629926e-03
## ELL2 2.184447e+01 3.826902e+01 3.254481 1.462547e-03 5.629926e-03
## BRD7 1.661123e+01 9.699937e+01 3.253995 1.464850e-03 5.636964e-03
## WASL 1.078930e+00 5.664260e+00 3.253809 1.465734e-03 5.638536e-03
## INTS2 1.994024e+00 6.623384e+00 3.253666 1.466413e-03 5.639318e-03
## FNBP1L 9.533320e-01 2.346202e+00 3.253530 1.467064e-03 5.639992e-03
## CDC23 2.855430e+00 1.199490e+01 3.253381 1.467773e-03 5.640889e-03
## ZNF48 -1.772499e+00 3.972516e+00 -3.252141 1.473681e-03 5.661761e-03
## SART3 3.983913e+00 2.322677e+01 3.251994 1.474384e-03 5.662626e-03
## HLA-DMB -2.689727e+01 7.190885e+01 -3.251777 1.475421e-03 5.664774e-03
## WNK1 4.233533e+01 1.310469e+02 3.250911 1.479567e-03 5.678857e-03
## HNRNPAB 6.795170e+00 4.151170e+01 3.250410 1.481970e-03 5.685686e-03
## UBR4 1.739810e+01 1.047262e+02 3.249938 1.484236e-03 5.685686e-03
## UQCRB -5.657972e+01 1.766402e+02 -3.249874 1.484542e-03 5.685686e-03
## PCBP4 -3.545639e+00 5.078516e+00 -3.249841 1.484703e-03 5.685686e-03
## ATOX1 -1.039729e+01 1.878354e+01 -3.249809 1.484858e-03 5.685686e-03
## SLC25A22 -2.023443e+00 4.013721e+00 -3.249805 1.484875e-03 5.685686e-03
## UBR3 8.429753e+00 2.758518e+01 3.249754 1.485121e-03 5.685686e-03
## TMF1 1.920230e+01 6.342939e+01 3.249741 1.485182e-03 5.685686e-03
## KANSL1 1.259269e+01 5.360751e+01 3.249489 1.486394e-03 5.688490e-03
## SELENOH -9.704855e+00 1.989418e+01 -3.249239 1.487601e-03 5.691274e-03
## TP53INP1 6.621873e+01 1.800324e+02 3.247300 1.496970e-03 5.725269e-03
## DLGAP4 -4.857451e+00 2.451897e+01 -3.246969 1.498573e-03 5.727452e-03
## COL18A1 -2.129435e+01 3.524071e+01 -3.246929 1.498765e-03 5.727452e-03
## CTBP1 -9.796685e+00 4.617189e+01 -3.246883 1.498989e-03 5.727452e-03
## HS6ST1 -2.660941e+00 1.059926e+01 -3.245479 1.505813e-03 5.751674e-03
## ZNF71 -9.675225e-01 3.016998e+00 -3.245330 1.506543e-03 5.752609e-03
## PPP1R15B 4.245363e+01 1.214792e+02 3.243936 1.513351e-03 5.776742e-03
## EXO5 2.072942e+00 6.732986e+00 3.243771 1.514160e-03 5.777519e-03
## GLI1 2.098767e+00 3.458689e+00 3.243696 1.514528e-03 5.777519e-03
## PAXBP1 4.559701e+00 2.355145e+01 3.243508 1.515448e-03 5.779167e-03
## HDHD3 -4.143826e+00 8.956087e+00 -3.242450 1.520641e-03 5.797109e-03
## RAB5C -4.250189e+01 2.103433e+02 -3.242331 1.521226e-03 5.797475e-03
## CBR3 -1.482890e+00 1.579246e+00 -3.241585 1.524900e-03 5.808496e-03
## RBM33 1.689515e+01 7.705365e+01 3.241545 1.525098e-03 5.808496e-03
## TUBB4B -2.554439e+01 7.236131e+01 -3.241163 1.526982e-03 5.813805e-03
## TUBGCP6 -8.251369e+00 2.662201e+01 -3.240859 1.528484e-03 5.817657e-03
## C21orf58 5.798236e-01 1.457600e+00 3.240657 1.529481e-03 5.819585e-03
## PTAFR -1.420336e+02 5.063361e+02 -3.240245 1.531519e-03 5.825469e-03
## DHX16 -4.492348e+00 4.375778e+01 -3.239903 1.533210e-03 5.830033e-03
## SLC35D1 3.313856e+00 1.060355e+01 3.239241 1.536497e-03 5.840657e-03
## SMC5 7.228786e+00 2.756512e+01 3.238826 1.538555e-03 5.846608e-03
## PPARA 1.777359e+00 6.965596e+00 3.238707 1.539147e-03 5.846985e-03
## RTF1 1.306007e+01 6.566072e+01 3.238541 1.539973e-03 5.848249e-03
## USP8 1.513803e+01 6.292121e+01 3.238434 1.540509e-03 5.848409e-03
## TNFSF12 -8.210714e+00 2.620079e+01 -3.237372 1.545800e-03 5.866619e-03
## ZNF497 -1.491372e+00 3.232523e+00 -3.237113 1.547094e-03 5.869654e-03
## EIF3L -5.058518e+01 2.008918e+02 -3.236477 1.550277e-03 5.879848e-03
## UBR2 6.333398e+01 1.951267e+02 3.235525 1.555049e-03 5.895846e-03
## SLC19A1 -3.258201e+01 7.846143e+01 -3.235437 1.555489e-03 5.895846e-03
## ZNF436 1.878110e+00 7.393578e+00 3.234464 1.560386e-03 5.912515e-03
## NEMP2 1.033514e+00 4.109036e+00 3.233949 1.562979e-03 5.920451e-03
## NINJ1 -9.917005e+01 2.246074e+02 -3.232816 1.568707e-03 5.940251e-03
## PRKAR2B 4.394556e+01 9.233238e+01 3.232670 1.569445e-03 5.940972e-03
## DNAJC27 1.282001e+00 3.945380e+00 3.232580 1.569899e-03 5.940972e-03
## MAP2K1 1.417122e+01 6.019692e+01 3.232140 1.572132e-03 5.947523e-03
## TBKBP1 -2.090038e+01 4.645333e+01 -3.231695 1.574387e-03 5.954155e-03
## PTPN18 -2.845639e+01 1.747350e+02 -3.231444 1.575661e-03 5.957074e-03
## CCDC13 -7.298097e-01 1.952256e+00 -3.231138 1.577219e-03 5.961063e-03
## EIF2AK2 8.713217e+01 1.460407e+02 3.230897 1.578445e-03 5.963796e-03
## NRIP1 7.940350e+00 2.160272e+01 3.230651 1.579700e-03 5.966639e-03
## GTF2A1 1.031046e+01 3.817889e+01 3.228678 1.589783e-03 6.002809e-03
## SLC11A1 -2.318660e+02 4.879473e+02 -3.227066 1.598064e-03 6.032157e-03
## MOB3B 9.895955e-01 2.925225e+00 3.226900 1.598919e-03 6.033465e-03
## NDUFS8 -5.152929e+00 6.602091e+00 -3.226716 1.599864e-03 6.034807e-03
## H2AJ -8.089007e+00 1.515995e+01 -3.226633 1.600293e-03 6.034807e-03
## MRPL38 -8.411706e+00 1.417414e+01 -3.225220 1.607596e-03 6.060422e-03
## H2BC15 4.158292e-01 5.357225e-01 3.224848 1.609521e-03 6.065753e-03
## LRCH1 2.137059e+00 8.424754e+00 3.223468 1.616693e-03 6.089141e-03
## NLRP12 -3.591940e+01 1.132651e+02 -3.223456 1.616754e-03 6.089141e-03
## NECAB3 -1.077456e+00 2.165013e+00 -3.220406 1.632707e-03 6.147270e-03
## ST7 1.486361e+00 6.817270e+00 3.217372 1.648717e-03 6.205579e-03
## ATP10D 4.445325e+00 1.253299e+01 3.216177 1.655067e-03 6.227505e-03
## FNBP4 9.318345e+00 3.836534e+01 3.214539 1.663800e-03 6.258380e-03
## STYXL1 -1.081808e+01 3.175269e+01 -3.212865 1.672773e-03 6.290137e-03
## GPR108 -2.811615e+01 9.714116e+01 -3.212151 1.676613e-03 6.302175e-03
## EFCAB7 1.103244e+00 3.072523e+00 3.212073 1.677037e-03 6.302175e-03
## FAM207A -1.381358e+00 2.279916e+00 -3.211353 1.680918e-03 6.314759e-03
## PPP1R3F -4.656558e-01 1.999511e+00 -3.210997 1.682842e-03 6.319983e-03
## MDP1 -3.173839e+00 7.681028e+00 -3.210757 1.684138e-03 6.322848e-03
## C3orf86 -2.920073e+01 4.870458e+01 -3.210199 1.687157e-03 6.332176e-03
## RELB -9.704443e+00 2.527917e+01 -3.209695 1.689888e-03 6.340421e-03
## ACTR8 1.563053e+00 1.325107e+01 3.209406 1.691459e-03 6.344309e-03
## ZBTB37 1.427430e+01 4.558402e+01 3.209135 1.692928e-03 6.347810e-03
## BCL7C -1.313527e+01 1.304869e+01 -3.208789 1.694811e-03 6.352865e-03
## DALRD3 -4.121355e+00 1.644585e+01 -3.208495 1.696410e-03 6.356848e-03
## TRPV2 -9.771030e+00 3.707748e+01 -3.208011 1.699049e-03 6.364115e-03
## FAM43A -1.512363e+00 4.893110e+00 -3.207942 1.699423e-03 6.364115e-03
## STK4 8.101175e+01 2.956413e+02 3.206970 1.704732e-03 6.381335e-03
## CCDC117 5.293641e+00 2.479243e+01 3.206901 1.705112e-03 6.381335e-03
## ZC3H10 -2.445745e+00 1.320082e+01 -3.206805 1.705635e-03 6.381335e-03
## OGFOD2 -3.581814e+00 9.250384e+00 -3.206706 1.706180e-03 6.381360e-03
## UBE2G1 1.283328e+01 5.955070e+01 3.206576 1.706892e-03 6.382011e-03
## CARD19 -7.891992e+00 1.928393e+01 -3.206409 1.707803e-03 6.383405e-03
## C5orf24 3.921622e+00 1.594183e+01 3.205912 1.710530e-03 6.391585e-03
## RUVBL2 -7.296781e+00 1.285314e+01 -3.205642 1.712009e-03 6.395094e-03
## SAMD10 -1.482466e+00 2.040856e+00 -3.205339 1.713676e-03 6.398960e-03
## NAV1 1.180032e+00 2.520998e+00 3.205258 1.714123e-03 6.398960e-03
## LIMS2 -1.014497e+00 1.200250e+00 -3.205052 1.715251e-03 6.401157e-03
## DCTN3 -1.322740e+01 3.742373e+01 -3.204934 1.715904e-03 6.401581e-03
## C1orf162 -9.251414e+01 2.135242e+02 -3.204253 1.719652e-03 6.413546e-03
## FBXL20 1.370828e+01 4.423513e+01 3.204114 1.720419e-03 6.414389e-03
## GPAM 1.092936e+00 3.870907e+00 3.202375 1.730038e-03 6.448226e-03
## AGAP2 -1.245511e+01 5.163394e+01 -3.201202 1.736553e-03 6.469543e-03
## EP300 3.557255e+01 1.004415e+02 3.201149 1.736849e-03 6.469543e-03
## AAMDC -1.602553e+00 4.168536e+00 -3.200794 1.738823e-03 6.474865e-03
## MRM1 -1.009159e+00 2.091572e+00 -3.200062 1.742909e-03 6.488040e-03
## EXOC5 8.508840e+00 3.666966e+01 3.199561 1.745706e-03 6.496414e-03
## COA3 -6.175552e+00 1.456493e+01 -3.199435 1.746412e-03 6.497004e-03
## EDC3 -3.553052e+00 2.121562e+01 -3.198988 1.748913e-03 6.504266e-03
## NUDCD1 1.550882e+00 7.171650e+00 3.198516 1.751560e-03 6.510407e-03
## RHBDD2 -1.497618e+01 3.706205e+01 -3.198497 1.751662e-03 6.510407e-03
## GOLGA4 9.178501e+00 3.466121e+01 3.197891 1.755064e-03 6.521009e-03
## RUFY2 1.069329e+00 5.046102e+00 3.196803 1.761191e-03 6.541725e-03
## ZNF32 -7.341311e+00 1.629417e+01 -3.196612 1.762266e-03 6.543669e-03
## ATAD1 4.152379e+00 2.214331e+01 3.196168 1.764773e-03 6.550924e-03
## NTMT1 -2.993925e+00 7.979702e+00 -3.196027 1.765571e-03 6.551839e-03
## ECHDC1 -8.981798e+00 5.240248e+01 -3.195475 1.768692e-03 6.561366e-03
## ARL2 -4.885256e+00 9.062380e+00 -3.194673 1.773240e-03 6.576180e-03
## ZBTB39 1.520913e+00 3.930734e+00 3.194141 1.776257e-03 6.585311e-03
## CELF1 2.716580e+01 1.141638e+02 3.193666 1.778958e-03 6.593264e-03
## ZBTB11 8.699903e+00 3.351740e+01 3.193536 1.779697e-03 6.593941e-03
## DGAT2 -1.880363e+02 4.032274e+02 -3.193411 1.780408e-03 6.594516e-03
## GYPC -5.376195e+01 8.305970e+01 -3.193069 1.782357e-03 6.599674e-03
## HRAS -3.798815e+00 5.487688e+00 -3.192635 1.784835e-03 6.606785e-03
## H2BC21 3.190426e+01 9.096919e+01 3.192055 1.788146e-03 6.616975e-03
## RBM11 9.056683e-01 1.756431e+00 3.191917 1.788940e-03 6.617851e-03
## ARV1 1.190742e+00 7.050759e+00 3.191641 1.790517e-03 6.621619e-03
## COX17 -4.758624e+00 1.665823e+01 -3.191095 1.793643e-03 6.631110e-03
## OTUD6B 1.598824e+00 5.811019e+00 3.190872 1.794923e-03 6.633778e-03
## ATP5ME -2.067733e+01 3.814345e+01 -3.190308 1.798165e-03 6.643687e-03
## KTN1 1.265457e+01 6.916742e+01 3.190108 1.799313e-03 6.644304e-03
## AP2M1 -4.422211e+01 2.064488e+02 -3.190084 1.799452e-03 6.644304e-03
## REXO5 5.949838e-01 1.370325e+00 3.189788 1.801155e-03 6.648522e-03
## VPS53 4.323203e+00 2.735479e+01 3.189413 1.803314e-03 6.654418e-03
## RPS12 -4.281500e+02 7.046718e+02 -3.188931 1.806091e-03 6.662595e-03
## CYB5R1 -1.757301e+01 5.285440e+01 -3.188625 1.807861e-03 6.667050e-03
## DARS1 6.006460e+00 3.036689e+01 3.188370 1.809335e-03 6.670412e-03
## UQCRC1 -3.139698e+01 1.053646e+02 -3.188265 1.809941e-03 6.670571e-03
## KEAP1 -7.017557e+00 2.661450e+01 -3.188032 1.811289e-03 6.673467e-03
## NUDT21 7.869543e+00 4.767534e+01 3.187802 1.812623e-03 6.676307e-03
## MTMR9 2.863840e+00 1.339593e+01 3.187521 1.814248e-03 6.680217e-03
## PHLDB3 -5.203949e-01 9.218508e-01 -3.187029 1.817104e-03 6.688657e-03
## ATG13 -1.745417e+01 1.048043e+02 -3.185809 1.824194e-03 6.711030e-03
## CHRNA10 -9.114513e-01 2.490098e+00 -3.185789 1.824314e-03 6.711030e-03
## MGAT1 -7.751387e+01 2.801515e+02 -3.183966 1.834962e-03 6.748107e-03
## TNF -3.973309e+00 1.049249e+01 -3.183277 1.838997e-03 6.760851e-03
## PSMA7 -3.729087e+01 1.303205e+02 -3.182578 1.843104e-03 6.773851e-03
## PUM1 7.959933e+00 4.105636e+01 3.182441 1.843910e-03 6.774713e-03
## ZNF419 -1.570768e+00 6.193570e+00 -3.182206 1.845297e-03 6.776960e-03
## TM9SF1 5.908321e+00 3.385422e+01 3.182143 1.845665e-03 6.776960e-03
## SMIM4 -1.300823e+00 2.872167e+00 -3.180626 1.854622e-03 6.807743e-03
## TMX1 9.252756e+00 4.994364e+01 3.180426 1.855803e-03 6.809970e-03
## MLLT10 4.183107e+00 2.162956e+01 3.180016 1.858234e-03 6.816781e-03
## ABCB10 5.223823e+00 2.075458e+01 3.179790 1.859569e-03 6.819570e-03
## RPL31 -2.033095e+02 5.798508e+02 -3.179183 1.863172e-03 6.830369e-03
## DHX37 -2.190081e+00 5.786447e+00 -3.179100 1.863666e-03 6.830369e-03
## KIF5B 3.756131e+01 1.318361e+02 3.178699 1.866051e-03 6.836998e-03
## FAM78A -1.407812e+01 5.976105e+01 -3.178528 1.867070e-03 6.837154e-03
## TSNARE1 -1.539737e+00 3.936729e+00 -3.178498 1.867246e-03 6.837154e-03
## C1GALT1 1.993681e+01 5.852892e+01 3.178353 1.868108e-03 6.838199e-03
## TRAF6 5.893390e+00 2.421382e+01 3.177591 1.872656e-03 6.852729e-03
## CLIC1 -4.415874e+02 1.415129e+03 -3.177073 1.875746e-03 6.861920e-03
## MLLT11 7.200543e-01 2.757407e+00 3.176588 1.878651e-03 6.870427e-03
## G2E3 2.599280e+00 1.160361e+01 3.176253 1.880654e-03 6.874462e-03
## MGAT4A 1.226287e+01 5.895381e+01 3.176210 1.880913e-03 6.874462e-03
## UNC93B1 -2.101661e+01 5.683454e+01 -3.175953 1.882453e-03 6.876784e-03
## ZNF66 4.723592e+00 1.034215e+01 3.175911 1.882708e-03 6.876784e-03
## MRFAP1L1 -9.883695e+00 6.573678e+01 -3.175342 1.886123e-03 6.887137e-03
## STX18 -2.608384e+00 1.523342e+01 -3.175152 1.887265e-03 6.889184e-03
## ABCA5 3.213127e+00 1.266321e+01 3.174763 1.889602e-03 6.895592e-03
## EEA1 4.029743e+00 1.316197e+01 3.174608 1.890539e-03 6.896892e-03
## JADE1 -1.447067e+01 5.746459e+01 -3.174220 1.892875e-03 6.903291e-03
## BRAF 1.398326e+01 4.499659e+01 3.173893 1.894845e-03 6.908349e-03
## RAD50 3.920624e+00 1.636742e+01 3.173693 1.896053e-03 6.910629e-03
## UBE2M -1.092380e+01 3.773458e+01 -3.173100 1.899637e-03 6.921566e-03
## ZNF850 4.074289e-01 1.992499e+00 3.172898 1.900861e-03 6.923897e-03
## GTF2H3 2.095328e+00 8.981806e+00 3.172794 1.901491e-03 6.924065e-03
## ELK3 6.333084e+00 3.455622e+01 3.172500 1.903269e-03 6.928414e-03
## TMEM186 -1.967358e+00 8.079584e+00 -3.172035 1.906090e-03 6.936555e-03
## NPAT 4.708974e+00 1.584570e+01 3.171794 1.907555e-03 6.939755e-03
## HAUS6 2.668468e+00 1.388787e+01 3.171666 1.908330e-03 6.940446e-03
## RPS26 -1.346801e+02 2.203303e+02 -3.171182 1.911272e-03 6.949016e-03
## LRP12 9.067141e-01 2.042920e+00 3.170632 1.914619e-03 6.959051e-03
## MEX3C 6.829892e+00 2.403613e+01 3.170218 1.917145e-03 6.966095e-03
## PSMC3 -1.488471e+01 4.726482e+01 -3.169461 1.921765e-03 6.980747e-03
## LSM10 -1.509239e+01 5.713971e+01 -3.169320 1.922630e-03 6.981509e-03
## GANC 2.525708e+00 1.304719e+01 3.169235 1.923153e-03 6.981509e-03
## DERL2 -8.143316e+00 4.675822e+01 -3.168944 1.924931e-03 6.984958e-03
## DDX41 -9.392444e+00 3.839261e+01 -3.168887 1.925281e-03 6.984958e-03
## PGRMC1 2.771852e+01 7.516286e+01 3.168494 1.927690e-03 6.991561e-03
## LAPTM4B 2.975278e+00 6.250814e+00 3.166947 1.937199e-03 7.023899e-03
## DAD1 1.487407e+01 9.216252e+01 3.166672 1.938891e-03 7.027889e-03
## GRAMD2B 6.519079e-01 1.933442e+00 3.166094 1.942458e-03 7.038664e-03
## AMMECR1 1.340590e+00 5.085063e+00 3.165682 1.945004e-03 7.042396e-03
## FADS3 -1.248067e+00 3.447368e+00 -3.165626 1.945349e-03 7.042396e-03
## TRIM26 8.242118e+00 3.837458e+01 3.165623 1.945364e-03 7.042396e-03
## ZNF699 3.239816e+00 8.758494e+00 3.165543 1.945863e-03 7.042396e-03
## APOL6 1.258004e+02 1.887671e+02 3.165313 1.947284e-03 7.045389e-03
## MFAP3 1.082444e+01 3.367424e+01 3.165057 1.948868e-03 7.048969e-03
## C8orf82 -1.325601e+00 2.961072e+00 -3.164895 1.949877e-03 7.050469e-03
## MFSD14A 2.089825e+01 7.224146e+01 3.162313 1.965939e-03 7.103699e-03
## NAGLU -4.861581e+00 1.127876e+01 -3.162310 1.965954e-03 7.103699e-03
## ICOSLG -2.008673e+00 4.295330e+00 -3.162240 1.966395e-03 7.103699e-03
## SERPINA1 -7.613046e+02 2.286524e+03 -3.161619 1.970276e-03 7.113455e-03
## ODF3B -6.066737e+00 6.399269e+00 -3.161529 1.970836e-03 7.113455e-03
## GIGYF2 8.698084e+00 3.991660e+01 3.161520 1.970895e-03 7.113455e-03
## BORA 1.290854e+00 5.074057e+00 3.159970 1.980620e-03 7.146380e-03
## MIGA1 1.663052e+00 7.134786e+00 3.158880 1.987482e-03 7.168958e-03
## NAA80 -2.745463e+00 4.282632e+00 -3.158749 1.988306e-03 7.169751e-03
## ATXN1L 1.760449e+01 4.331353e+01 3.158328 1.990964e-03 7.177154e-03
## IGSF6 -1.505348e+02 4.148170e+02 -3.158083 1.992519e-03 7.180574e-03
## TMEM212 1.665886e+00 5.080624e+00 3.156797 2.000663e-03 7.207734e-03
## CLTA -1.809125e+01 6.304633e+01 -3.156314 2.003733e-03 7.216602e-03
## MEPCE -1.211380e+01 4.292490e+01 -3.155914 2.006272e-03 7.222563e-03
## DYRK1A 3.141109e+01 1.169311e+02 3.155862 2.006606e-03 7.222563e-03
## HNRNPH3 3.515062e+01 1.583682e+02 3.155403 2.009527e-03 7.230884e-03
## NIPAL3 3.260828e+00 1.313330e+01 3.154993 2.012141e-03 7.237104e-03
## FANCG 1.927995e+00 6.806998e+00 3.154941 2.012476e-03 7.237104e-03
## COA4 -3.893211e+00 1.090686e+01 -3.153281 2.023096e-03 7.273088e-03
## RETREG3 -1.844529e+01 6.969379e+01 -3.152517 2.028001e-03 7.286587e-03
## TRIM59 1.545842e+00 6.174073e+00 3.152505 2.028079e-03 7.286587e-03
## RELCH 9.367916e+00 4.382168e+01 3.151887 2.032055e-03 7.298658e-03
## TACC1 2.734259e+01 1.064991e+02 3.150973 2.037945e-03 7.317597e-03
## MLH1 2.873876e+00 1.870455e+01 3.149982 2.044355e-03 7.338393e-03
## NKAIN3 1.829590e+00 5.275168e+00 3.149616 2.046723e-03 7.344669e-03
## NSUN2 5.587837e+00 2.688126e+01 3.149385 2.048222e-03 7.347826e-03
## LRRK2 3.244830e+02 7.133897e+02 3.149219 2.049299e-03 7.349468e-03
## ASB3 1.575279e+00 8.578420e+00 3.148971 2.050909e-03 7.352814e-03
## CACNB1 -8.398706e-01 2.481048e+00 -3.148885 2.051472e-03 7.352814e-03
## CAMTA2 -9.807971e+00 4.590435e+01 -3.148395 2.054657e-03 7.362004e-03
## KLHL26 -6.893275e-01 3.219880e+00 -3.147773 2.058702e-03 7.374270e-03
## P3H1 -5.034776e+00 2.098750e+01 -3.147170 2.062641e-03 7.385508e-03
## DDX60 8.035218e+01 9.344242e+01 3.147102 2.063085e-03 7.385508e-03
## LZTR1 -6.627672e+00 2.282526e+01 -3.146625 2.066201e-03 7.394027e-03
## CILK1 2.244626e+00 9.893442e+00 3.146547 2.066712e-03 7.394027e-03
## ACO1 1.330065e+00 5.432511e+00 3.144926 2.077339e-03 7.429806e-03
## TMEM123 1.714965e+02 3.200924e+02 3.143407 2.087343e-03 7.463337e-03
## CIZ1 -6.500645e+00 2.720539e+01 -3.143093 2.089416e-03 7.468497e-03
## TEDC1 -1.331302e+00 1.382271e+00 -3.142585 2.092776e-03 7.478252e-03
## SLC10A3 -4.052641e+00 1.375667e+01 -3.141956 2.096946e-03 7.490899e-03
## SDHAF4 -1.570896e+00 5.064403e+00 -3.141796 2.098003e-03 7.492418e-03
## MRPL53 -5.161678e+00 1.228370e+01 -3.141074 2.102798e-03 7.507279e-03
## LRPAP1 -3.131020e+01 9.556031e+01 -3.140783 2.104734e-03 7.511930e-03
## EPS15 2.353613e+01 8.613818e+01 3.140042 2.109671e-03 7.527287e-03
## NBDY -3.151038e+00 9.286331e+00 -3.139664 2.112190e-03 7.534007e-03
## EMC6 -2.674559e+00 8.438409e+00 -3.139338 2.114370e-03 7.539516e-03
## SLFN5 5.977609e+01 8.678247e+01 3.138595 2.119341e-03 7.554968e-03
## DNAJC30 -1.146739e+00 2.862615e+00 -3.138095 2.122689e-03 7.564631e-03
## ZNF787 -7.604479e+00 2.024726e+01 -3.137654 2.125647e-03 7.572897e-03
## TFDP1 1.416576e+01 5.232525e+01 3.136702 2.132048e-03 7.591213e-03
## TAOK1 2.844575e+01 9.036542e+01 3.136699 2.132068e-03 7.591213e-03
## PTPRCAP -3.562318e+01 3.035666e+01 -3.136434 2.133857e-03 7.595302e-03
## BUD13 -3.110268e+00 2.442742e+01 -3.136021 2.136638e-03 7.602918e-03
## SEC14L5 1.720064e+00 3.350264e+00 3.135841 2.137853e-03 7.603156e-03
## CAVIN2 3.447637e+01 9.727598e+01 3.135821 2.137987e-03 7.603156e-03
## SWSAP1 -1.484291e+00 3.381582e+00 -3.135031 2.143325e-03 7.619854e-03
## DYNC1LI2 9.645265e+00 4.561655e+01 3.133834 2.151439e-03 7.646407e-03
## VIRMA 7.237225e+00 4.041834e+01 3.133019 2.156981e-03 7.661084e-03
## TMC6 -2.567326e+01 8.870563e+01 -3.132890 2.157858e-03 7.661084e-03
## CDK16 -8.767098e+00 2.956962e+01 -3.132839 2.158205e-03 7.661084e-03
## JUN 5.838469e+00 1.295628e+01 3.132810 2.158404e-03 7.661084e-03
## ADAM17 3.945114e+01 6.728714e+01 3.132752 2.158798e-03 7.661084e-03
## C10orf143 -6.790101e-01 1.522015e+00 -3.132499 2.160522e-03 7.663658e-03
## RASAL3 -2.141362e+01 5.587792e+01 -3.132456 2.160815e-03 7.663658e-03
## MIDN -4.362983e+01 1.448856e+02 -3.132270 2.162081e-03 7.665854e-03
## GPX4 -3.260214e+01 8.001004e+01 -3.131919 2.164482e-03 7.671242e-03
## PSRC1 -1.987131e+00 8.164901e+00 -3.131782 2.165413e-03 7.671242e-03
## P4HTM -2.079098e+00 5.995981e+00 -3.131764 2.165541e-03 7.671242e-03
## ANAPC13 1.385721e+01 5.842393e+01 3.131657 2.166272e-03 7.671540e-03
## PARP15 8.883106e+00 4.232133e+01 3.131248 2.169069e-03 7.679151e-03
## ZBTB33 5.154398e+00 2.057145e+01 3.130322 2.175411e-03 7.698445e-03
## RAD51D 1.824337e+00 8.382773e+00 3.130263 2.175817e-03 7.698445e-03
## MPV17L2 -1.787202e+00 5.120855e+00 -3.129806 2.178952e-03 7.706586e-03
## SF3B5 -2.758575e+01 6.150043e+01 -3.129738 2.179417e-03 7.706586e-03
## MTX1 -2.549455e+01 6.535539e+01 -3.129384 2.181853e-03 7.712898e-03
## MCMBP 3.506434e+01 1.342862e+02 3.126434 2.202232e-03 7.782619e-03
## SMURF2 5.944624e+00 2.515510e+01 3.125873 2.206129e-03 7.794070e-03
## MRPL55 -2.898102e+00 3.920676e+00 -3.125516 2.208609e-03 7.800508e-03
## DDX17 1.001935e+02 5.416477e+02 3.125008 2.212151e-03 7.810690e-03
## GON7 -1.120604e+00 7.016080e+00 -3.124705 2.214258e-03 7.815803e-03
## SNRPD3 -9.824476e+00 6.628231e+01 -3.124282 2.217212e-03 7.823844e-03
## SBNO2 -4.252525e+01 1.072384e+02 -3.124190 2.217855e-03 7.823844e-03
## AGPAT5 2.379396e+00 9.237360e+00 3.122983 2.226298e-03 7.851292e-03
## KCTD2 -1.550255e+01 7.947674e+01 -3.122533 2.229455e-03 7.859378e-03
## FLAD1 -5.026901e+00 2.095031e+01 -3.122467 2.229916e-03 7.859378e-03
## SNIP1 3.303784e+00 1.656125e+01 3.121556 2.236319e-03 7.879602e-03
## MDN1 6.247320e+00 1.625109e+01 3.120108 2.246533e-03 7.911245e-03
## TTC7B 2.840051e+00 8.643513e+00 3.120094 2.246634e-03 7.911245e-03
## NAXE -9.767159e+00 2.138874e+01 -3.119577 2.250288e-03 7.921764e-03
## TGS1 2.597380e+00 1.334297e+01 3.119468 2.251059e-03 7.922126e-03
## POLR1E -2.483250e+00 7.351630e+00 -3.118960 2.254665e-03 7.932460e-03
## NBPF1 2.995247e+00 8.137959e+00 3.118811 2.255721e-03 7.932823e-03
## BCAS4 -2.756023e+00 3.058864e+00 -3.118756 2.256106e-03 7.932823e-03
## ZNF213 -1.763963e+00 6.368852e+00 -3.117872 2.262388e-03 7.951879e-03
## SFI1 -4.451845e+00 1.551822e+01 -3.117805 2.262866e-03 7.951879e-03
## DPH7 -6.999908e+00 1.941031e+01 -3.117454 2.265365e-03 7.958302e-03
## ZNF619 9.484269e-01 5.841133e+00 3.117106 2.267842e-03 7.964644e-03
## SLC27A5 -1.078389e+00 1.237225e+00 -3.116722 2.270582e-03 7.971907e-03
## CDIN1 3.425667e-01 9.359835e-01 3.116456 2.272484e-03 7.976223e-03
## PAK4 -6.415650e-01 2.334588e+00 -3.115757 2.277484e-03 7.990346e-03
## TOMM22 -9.932004e+00 3.776476e+01 -3.115705 2.277855e-03 7.990346e-03
## SFN -9.367490e-01 1.388447e+00 -3.114901 2.283614e-03 8.008178e-03
## PIEZO1 -1.042093e+01 2.345828e+01 -3.114459 2.286793e-03 8.016958e-03
## ATAD3B -3.140590e+00 5.989959e+00 -3.113668 2.292481e-03 8.034523e-03
## CTDSPL2 5.170603e+00 2.482936e+01 3.112448 2.301285e-03 8.062103e-03
## PSMC5 -1.770691e+01 6.931705e+01 -3.112305 2.302319e-03 8.062103e-03
## NBPF11 4.225317e+00 1.473116e+01 3.112295 2.302390e-03 8.062103e-03
## RUNX2 1.038413e+01 2.999564e+01 3.110559 2.314970e-03 8.103761e-03
## KLHL11 1.664696e+00 7.187823e+00 3.110117 2.318183e-03 8.112614e-03
## SMARCA5 1.210971e+01 7.238429e+01 3.109896 2.319797e-03 8.115666e-03
## AUH 1.502208e+00 6.933930e+00 3.109810 2.320424e-03 8.115666e-03
## ARHGAP27 -6.716770e+01 2.879656e+02 -3.109331 2.323910e-03 8.125462e-03
## SEL1L3 3.116833e+01 6.457743e+01 3.108389 2.330794e-03 8.147132e-03
## NCOA2 3.306669e+01 9.099769e+01 3.108248 2.331823e-03 8.148326e-03
## SPARC 1.273496e+02 2.452228e+02 3.107733 2.335596e-03 8.157063e-03
## NDUFA7 -6.067760e+00 1.563909e+01 -3.107719 2.335699e-03 8.157063e-03
## BCLAF3 4.577637e+00 1.529940e+01 3.106039 2.348040e-03 8.197748e-03
## IPO7 8.658290e+00 2.954097e+01 3.105429 2.352532e-03 8.211016e-03
## RPL37 -2.646421e+02 7.505007e+02 -3.104842 2.356867e-03 8.223727e-03
## LRRC34 4.913139e-01 1.853664e+00 3.104713 2.357820e-03 8.224630e-03
## BID -3.199003e+01 1.278205e+02 -3.104527 2.359196e-03 8.227011e-03
## SARS2 -2.253290e+00 4.118629e+00 -3.103684 2.365440e-03 8.246360e-03
## ERI3 -4.852639e+00 1.160699e+01 -3.103288 2.368373e-03 8.254158e-03
## HENMT1 -6.262719e+00 2.612720e+01 -3.103059 2.370075e-03 8.257664e-03
## HLA-DQB1 -4.450901e+01 8.499740e+01 -3.102743 2.372424e-03 8.263422e-03
## ZNF197 2.365334e+00 9.191447e+00 3.102290 2.375794e-03 8.272729e-03
## RAB27B 5.753497e+00 1.530065e+01 3.101716 2.380069e-03 8.285184e-03
## RGS16 6.655516e-01 1.018245e+00 3.101537 2.381401e-03 8.285741e-03
## CTSC -7.189480e+01 1.944628e+02 -3.101502 2.381664e-03 8.285741e-03
## DDX18 8.960200e+00 3.476933e+01 3.101413 2.382325e-03 8.285741e-03
## RCOR3 7.956961e+00 3.665050e+01 3.100804 2.386876e-03 8.299134e-03
## RFX5 9.485046e+00 3.812953e+01 3.099762 2.394682e-03 8.323835e-03
## FAM102B 3.985473e+00 2.062025e+01 3.098368 2.405156e-03 8.356692e-03
## MAT2B 2.912611e+01 1.422819e+02 3.098232 2.406179e-03 8.356692e-03
## DGKG 1.745605e+00 7.272686e+00 3.098223 2.406248e-03 8.356692e-03
## UBN2 3.783756e+00 1.534881e+01 3.097892 2.408742e-03 8.362905e-03
## TXLNG 2.728394e+00 9.740697e+00 3.097536 2.411429e-03 8.369781e-03
## CREBRF 7.923700e+01 1.868625e+02 3.096686 2.417851e-03 8.386813e-03
## CLASP1 9.469650e+00 3.223553e+01 3.096649 2.418132e-03 8.386813e-03
## MCEMP1 -3.349052e+02 4.061669e+02 -3.096606 2.418457e-03 8.386813e-03
## MUSTN1 -1.888119e+00 3.420320e+00 -3.096095 2.422327e-03 8.397779e-03
## DNAAF4 -1.419987e+00 3.362708e+00 -3.095361 2.427895e-03 8.414620e-03
## PLEKHO2 -1.046876e+02 3.508440e+02 -3.095248 2.428754e-03 8.415138e-03
## MRPL11 -9.087362e+00 1.970341e+01 -3.094742 2.432598e-03 8.425995e-03
## RMI2 1.433998e+00 2.761673e+00 3.093948 2.438647e-03 8.442603e-03
## PHTF2 4.113699e+00 2.344879e+01 3.093926 2.438816e-03 8.442603e-03
## GTF3A -2.183976e+01 9.971062e+01 -3.093153 2.444713e-03 8.460548e-03
## RCE1 -2.371085e+00 7.901381e+00 -3.092959 2.446198e-03 8.463218e-03
## RRP9 -2.192132e+00 4.980052e+00 -3.092548 2.449344e-03 8.469437e-03
## DENND1A -6.355294e+00 2.905876e+01 -3.092538 2.449424e-03 8.469437e-03
## TMEM209 2.099090e+00 1.012231e+01 3.091230 2.459456e-03 8.499427e-03
## NDUFAF8 -2.620533e+00 5.177936e+00 -3.091220 2.459531e-03 8.499427e-03
## CLPP -4.921387e+00 1.129989e+01 -3.090866 2.462255e-03 8.506362e-03
## SLC38A2 1.034688e+02 2.550631e+02 3.090665 2.463800e-03 8.509221e-03
## SPOCK2 -4.105418e+01 8.982975e+01 -3.090521 2.464909e-03 8.510575e-03
## SERTAD3 -9.578373e+00 3.845581e+01 -3.090385 2.465958e-03 8.511718e-03
## CST7 -3.211980e+02 4.633194e+02 -3.089937 2.469412e-03 8.521161e-03
## VEGFA 7.184210e+00 1.753790e+01 3.089816 2.470346e-03 8.521905e-03
## MEGF6 -6.684218e+00 1.931750e+01 -3.089646 2.471657e-03 8.523946e-03
## TMOD3 2.563702e+01 7.800535e+01 3.089308 2.474270e-03 8.530477e-03
## PAPOLA 5.699570e+01 2.530105e+02 3.088493 2.480575e-03 8.548905e-03
## TEX10 1.203682e+00 6.772992e+00 3.088431 2.481057e-03 8.548905e-03
## UBR5 2.694908e+01 1.123865e+02 3.088088 2.483716e-03 8.555582e-03
## UBE2T 2.747356e+00 3.633067e+00 3.087868 2.485424e-03 8.558982e-03
## TMPO 1.731543e+01 8.012343e+01 3.087131 2.491147e-03 8.576200e-03
## CLN3 -2.096863e+01 5.489069e+01 -3.086207 2.498347e-03 8.598488e-03
## UCK2 1.612236e+00 7.303900e+00 3.085764 2.501806e-03 8.607896e-03
## WDR36 3.233347e+00 1.407454e+01 3.084660 2.510438e-03 8.633727e-03
## SMARCAD1 3.764408e+00 1.120224e+01 3.084618 2.510769e-03 8.633727e-03
## VAC14 -2.678695e+00 9.370250e+00 -3.084436 2.512194e-03 8.636121e-03
## SELPLG -3.338458e+02 9.494910e+02 -3.084092 2.514890e-03 8.642885e-03
## DNAJB12 -7.925786e+00 4.418852e+01 -3.083947 2.516027e-03 8.644289e-03
## OGFOD1 2.265084e+00 1.351192e+01 3.083637 2.518465e-03 8.650156e-03
## YLPM1 3.355678e+00 1.652196e+01 3.083449 2.519946e-03 8.652740e-03
## GAMT -1.240043e+00 1.547255e+00 -3.083195 2.521943e-03 8.657090e-03
## STAB1 -3.728348e+01 8.270922e+01 -3.082024 2.531166e-03 8.684576e-03
## PATZ1 -4.003685e+00 1.413974e+01 -3.081993 2.531415e-03 8.684576e-03
## ZNF136 3.606459e+00 1.346685e+01 3.081518 2.535165e-03 8.692373e-03
## SPINT2 -2.087369e+01 5.487710e+01 -3.081508 2.535245e-03 8.692373e-03
## ZMAT3 4.005083e+00 2.203178e+01 3.081427 2.535886e-03 8.692373e-03
## FANCC 4.917496e-01 2.008549e+00 3.081082 2.538612e-03 8.699203e-03
## GET3 -1.229133e+01 4.197249e+01 -3.079896 2.548017e-03 8.728908e-03
## KANSL1L 3.076176e+00 9.319335e+00 3.079640 2.550049e-03 8.733347e-03
## SYNE1 4.826019e+01 1.224060e+02 3.078854 2.556309e-03 8.752258e-03
## ZSCAN32 3.693346e+00 1.941421e+01 3.078191 2.561593e-03 8.766611e-03
## EPHB1 4.724910e+00 1.101810e+01 3.078143 2.561979e-03 8.766611e-03
## NR2C2 1.820069e+01 5.029766e+01 3.077716 2.565387e-03 8.772537e-03
## IQCE -4.571527e+00 1.673687e+01 -3.077656 2.565868e-03 8.772537e-03
## TMEM159 1.951538e+00 1.023573e+01 3.077648 2.565930e-03 8.772537e-03
## GFUS -1.113200e+01 2.559143e+01 -3.077015 2.570993e-03 8.787312e-03
## WNT10B -1.242317e+00 2.295194e+00 -3.076848 2.572329e-03 8.789347e-03
## PSMD11 3.829760e+00 3.415894e+01 3.075715 2.581427e-03 8.817895e-03
## UBN1 6.119814e+01 2.279030e+02 3.075468 2.583413e-03 8.822136e-03
## FHL2 1.482182e+00 4.269777e+00 3.075134 2.586103e-03 8.828781e-03
## RP9 -2.968526e+00 7.968395e+00 -3.074934 2.587713e-03 8.831733e-03
## CSE1L 4.459975e+00 2.860318e+01 3.074652 2.589985e-03 8.836946e-03
## YY1 1.563206e+01 1.061422e+02 3.073322 2.600725e-03 8.871037e-03
## ALMS1 1.844296e+00 5.039630e+00 3.072885 2.604269e-03 8.880573e-03
## TBCK 2.358863e+00 8.811330e+00 3.072476 2.607581e-03 8.889219e-03
## HIBCH 2.558266e+00 7.869389e+00 3.072325 2.608813e-03 8.889219e-03
## RITA1 -2.121451e+00 6.178398e+00 -3.072295 2.609053e-03 8.889219e-03
## ERCC3 3.363731e+00 2.778887e+01 3.071888 2.612363e-03 8.897940e-03
## ANKFY1 1.599028e+01 5.898861e+01 3.071462 2.615826e-03 8.907177e-03
## FKBPL -3.002982e+00 8.103339e+00 -3.071228 2.617730e-03 8.911100e-03
## RPS28 -1.489976e+02 1.339300e+02 -3.070582 2.622991e-03 8.926448e-03
## CD79A -2.269996e+01 3.696312e+01 -3.070115 2.626806e-03 8.936866e-03
## AP3D1 -5.433697e+00 3.915788e+01 -3.069924 2.628369e-03 8.939620e-03
## CDK5RAP1 -3.919485e+00 1.508499e+01 -3.069791 2.629452e-03 8.940739e-03
## TRUB1 1.526279e+00 4.664349e+00 3.069645 2.630651e-03 8.942252e-03
## CBX1 1.090722e+01 4.810889e+01 3.069126 2.634894e-03 8.951836e-03
## TG 1.773410e+00 2.999186e+00 3.069116 2.634980e-03 8.951836e-03
## POLR3B 6.354001e-01 3.886780e+00 3.068569 2.639464e-03 8.964504e-03
## CNPY4 -2.335653e+00 1.075072e+01 -3.067690 2.646684e-03 8.985891e-03
## SMIM19 -2.147830e+00 1.051331e+01 -3.067618 2.647277e-03 8.985891e-03
## TRNT1 2.675833e+00 1.629360e+01 3.067391 2.649144e-03 8.988839e-03
## NDUFS3 -8.145994e+00 3.057298e+01 -3.067329 2.649661e-03 8.988839e-03
## RRP7A -1.675507e+01 3.740405e+01 -3.066521 2.656320e-03 9.008853e-03
## TRANK1 5.298462e+01 1.464117e+02 3.065912 2.661353e-03 9.023340e-03
## MGA 4.590545e+00 1.588797e+01 3.065720 2.662937e-03 9.026130e-03
## MBD1 5.118474e+00 4.770795e+01 3.065351 2.665994e-03 9.033911e-03
## SSH3 -7.442391e+00 2.604403e+01 -3.064934 2.669446e-03 9.043025e-03
## DOP1A 3.117766e+00 9.170055e+00 3.063944 2.677666e-03 9.067122e-03
## CD52 -2.480024e+02 4.501647e+02 -3.063894 2.678088e-03 9.067122e-03
## ORAI1 -1.122575e+01 1.950644e+01 -3.062797 2.687222e-03 9.093795e-03
## PAFAH1B3 -2.995974e+00 4.704533e+00 -3.062764 2.687500e-03 9.093795e-03
## PHF3 2.636336e+01 9.405755e+01 3.062576 2.689068e-03 9.096504e-03
## USP5 -9.923964e+00 2.845790e+01 -3.062288 2.691475e-03 9.102052e-03
## AASS 4.160259e-01 1.022028e+00 3.061817 2.695409e-03 9.109142e-03
## ST6GALNAC6 -1.166807e+01 3.027056e+01 -3.061776 2.695758e-03 9.109142e-03
## F13A1 9.311826e+01 2.145782e+02 3.061761 2.695876e-03 9.109142e-03
## DNAJC9 5.137893e+00 1.594943e+01 3.061645 2.696846e-03 9.109825e-03
## CHD8 1.225705e+01 7.355215e+01 3.061536 2.697761e-03 9.110321e-03
## FAM3C 4.288314e+00 1.279755e+01 3.060918 2.702939e-03 9.123959e-03
## RFXANK -1.739066e+01 4.244945e+01 -3.060871 2.703338e-03 9.123959e-03
## SHLD3 8.103918e-01 3.902340e+00 3.060472 2.706688e-03 9.132667e-03
## FAHD1 -1.455087e+00 5.384156e+00 -3.059786 2.712457e-03 9.146197e-03
## CUL2 3.267894e+00 2.219729e+01 3.059777 2.712528e-03 9.146197e-03
## BFAR 2.771564e+00 2.622119e+01 3.059720 2.713012e-03 9.146197e-03
## TRAPPC2 1.962000e+00 1.772602e+01 3.058909 2.719846e-03 9.166630e-03
## MSRB1 -3.065653e+02 7.424339e+02 -3.058500 2.723296e-03 9.175650e-03
## ANAPC11 -6.745225e+00 1.364216e+01 -3.058150 2.726253e-03 9.183004e-03
## RNF38 1.990595e+01 6.358499e+01 3.058019 2.727363e-03 9.184134e-03
## ME3 -6.536749e-01 1.309368e+00 -3.057549 2.731341e-03 9.193498e-03
## PYCR1 1.916721e+00 2.020009e+00 3.057507 2.731694e-03 9.193498e-03
## C20orf27 -1.482080e+01 2.245078e+01 -3.055762 2.746516e-03 9.240759e-03
## NCBP1 3.421997e+00 2.127427e+01 3.055409 2.749523e-03 9.248254e-03
## CARMIL1 6.591257e-01 1.526675e+00 3.055153 2.751699e-03 9.252949e-03
## GOPC 4.749444e+00 2.275215e+01 3.055023 2.752810e-03 9.253583e-03
## ETHE1 -9.003359e+00 2.039038e+01 -3.054948 2.753448e-03 9.253583e-03
## STX2 2.434428e+00 1.068066e+01 3.054264 2.759295e-03 9.270607e-03
## GADD45GIP1 -1.264300e+01 1.349253e+01 -3.054000 2.761548e-03 9.274456e-03
## LZTS2 -1.601724e+00 4.465167e+00 -3.053947 2.762005e-03 9.274456e-03
## UBE2K 6.947759e+00 5.215666e+01 3.053404 2.766659e-03 9.287453e-03
## NHP2 -7.335961e+00 1.478487e+01 -3.053303 2.767517e-03 9.287705e-03
## TRIM68 1.269788e+00 6.333891e+00 3.053129 2.769009e-03 9.290084e-03
## C1orf198 2.104111e+00 6.082813e+00 3.052400 2.775273e-03 9.308467e-03
## PGAP1 1.301816e+00 2.596372e+00 3.051947 2.779170e-03 9.318903e-03
## DMAC1 -5.472518e+00 1.317692e+01 -3.051322 2.784552e-03 9.334309e-03
## MRPL54 -1.111058e+01 2.150218e+01 -3.050866 2.788483e-03 9.344846e-03
## UQCR10 -1.433678e+01 4.208845e+01 -3.049793 2.797766e-03 9.372367e-03
## NR2C2AP -2.202140e+00 6.491272e+00 -3.049734 2.798276e-03 9.372367e-03
## PSMG2 -4.531662e+00 2.825350e+01 -3.049633 2.799148e-03 9.372640e-03
## PTPA -2.231795e+01 6.543058e+01 -3.049216 2.802764e-03 9.382100e-03
## NREP 1.687074e+00 8.542821e+00 3.048597 2.808142e-03 9.397449e-03
## MTA1 -2.138623e+00 8.067803e+00 -3.048313 2.810604e-03 9.403035e-03
## FBXL6 -3.254256e+00 6.115787e+00 -3.048039 2.812991e-03 9.408369e-03
## MFSD5 -7.227039e+00 2.866155e+01 -3.047861 2.814544e-03 9.410254e-03
## LIME1 -9.176110e+00 8.501134e+00 -3.047792 2.815142e-03 9.410254e-03
## FLCN 1.458787e+01 4.531634e+01 3.047565 2.817123e-03 9.414222e-03
## YWHAH 3.394943e+01 1.134181e+02 3.046844 2.823406e-03 9.432394e-03
## ZNF587 5.138769e+00 1.715486e+01 3.046759 2.824151e-03 9.432394e-03
## BAG1 -2.750289e+01 7.074354e+01 -3.046419 2.827124e-03 9.439666e-03
## ZFC3H1 1.479983e+01 5.988510e+01 3.046168 2.829322e-03 9.442230e-03
## ZEB1 7.702768e+00 2.465885e+01 3.045999 2.830797e-03 9.442230e-03
## THAP9 5.207960e-01 2.111199e+00 3.045974 2.831016e-03 9.442230e-03
## VPS33A 2.768906e+00 2.945702e+01 3.045967 2.831077e-03 9.442230e-03
## YBEY -1.764978e+00 5.374931e+00 -3.045186 2.837923e-03 9.462404e-03
## CS 8.382804e+00 6.918905e+01 3.043122 2.856089e-03 9.520295e-03
## COIL 1.597559e+00 1.150454e+01 3.042855 2.858448e-03 9.525484e-03
## C1orf109 9.002500e-01 3.256964e+00 3.042723 2.859609e-03 9.526673e-03
## PER2 1.809656e+00 7.395293e+00 3.042234 2.863936e-03 9.538411e-03
## TBCA -1.114828e+01 4.722366e+01 -3.041896 2.866928e-03 9.544887e-03
## MRPL23 -9.154183e+00 1.853853e+01 -3.041817 2.867626e-03 9.544887e-03
## IFIT5 5.772589e+01 8.400345e+01 3.041655 2.869067e-03 9.544887e-03
## F12 -8.465408e-01 1.546974e+00 -3.041651 2.869100e-03 9.544887e-03
## CMC2 2.932365e+00 1.266003e+01 3.041416 2.871182e-03 9.549135e-03
## PAF1 -1.060906e+01 4.691603e+01 -3.041180 2.873280e-03 9.553434e-03
## ARID2 5.550827e+00 2.132931e+01 3.040617 2.878273e-03 9.567354e-03
## MPP6 9.974643e-01 2.802503e+00 3.040297 2.881121e-03 9.574138e-03
## ATP6AP1 -2.956231e+01 1.256068e+02 -3.039835 2.885241e-03 9.585142e-03
## H2BC5 1.153660e+01 1.996329e+01 3.039054 2.892206e-03 9.605591e-03
## CASP7 6.238096e+00 1.821751e+01 3.038648 2.895828e-03 9.614929e-03
## KCNA3 1.995341e+00 4.606723e+00 3.038527 2.896911e-03 9.615830e-03
## TRPM2 -1.278587e+01 2.399374e+01 -3.036693 2.913356e-03 9.667713e-03
## CUL4A 4.638954e+00 3.796653e+01 3.036540 2.914731e-03 9.669569e-03
## QSER1 2.230255e+00 6.886135e+00 3.035505 2.924057e-03 9.697797e-03
## CTU2 -9.378092e-01 2.152264e+00 -3.034819 2.930247e-03 9.715607e-03
## SAMD9L 1.624020e+02 2.506602e+02 3.034538 2.932790e-03 9.721323e-03
## RIC8A -9.931683e+00 7.083822e+01 -3.034224 2.935629e-03 9.728014e-03
## MAPRE2 7.292545e+00 3.949713e+01 3.033587 2.941403e-03 9.744426e-03
## NR1D1 -1.012471e+00 1.989791e+00 -3.033426 2.942862e-03 9.746534e-03
## SMAP1 -2.829481e+00 2.645970e+01 -3.033165 2.945232e-03 9.751660e-03
## DNAJC8 -1.356839e+01 8.880909e+01 -3.032988 2.946844e-03 9.754275e-03
## CDKN1C -4.341767e+00 3.971863e+00 -3.031519 2.960218e-03 9.795812e-03
## COMMD7 -9.192467e+00 3.257114e+01 -3.031145 2.963628e-03 9.802903e-03
## ITPA -7.250592e+00 1.822375e+01 -3.031086 2.964163e-03 9.802903e-03
## CUL1 1.035875e+01 3.484763e+01 3.030963 2.965291e-03 9.802903e-03
## RNF144A 2.792790e+00 1.045950e+01 3.030922 2.965667e-03 9.802903e-03
## R3HDM1 1.900186e+00 1.206262e+01 3.030464 2.969854e-03 9.814007e-03
## IDH1 1.658158e+01 6.050865e+01 3.030022 2.973897e-03 9.824631e-03
## ANGEL2 2.634216e+00 1.761940e+01 3.029873 2.975271e-03 9.824929e-03
## URGCP -2.045219e+00 6.727349e+00 -3.029832 2.975645e-03 9.824929e-03
## ATG7 -9.889167e+00 6.132540e+01 -3.029536 2.978362e-03 9.831164e-03
## SCFD2 1.723989e+00 7.682012e+00 3.029155 2.981856e-03 9.839958e-03
## GLCCI1 7.544349e+00 2.352113e+01 3.028211 2.990536e-03 9.865856e-03
## COPS9 -7.110651e+00 1.397782e+01 -3.027991 2.992566e-03 9.869808e-03
## TMEM104 -2.571866e+00 1.124395e+01 -3.027463 2.997431e-03 9.883104e-03
## RRAS -8.709565e+00 1.392990e+01 -3.027140 3.000411e-03 9.890183e-03
## SMIM3 1.799728e+01 4.929895e+01 3.026382 3.007429e-03 9.910559e-03
## BAZ2B 2.986464e+01 9.035474e+01 3.026136 3.009708e-03 9.915316e-03
## POLR3G 4.767389e-01 1.347490e+00 3.025624 3.014451e-03 9.928182e-03
## GPANK1 -9.323666e+00 3.499910e+01 -3.025232 3.018085e-03 9.935241e-03
## SOCS5 6.963958e+00 1.694297e+01 3.025141 3.018931e-03 9.935241e-03
## MPV17L 1.006293e+00 3.473934e+00 3.025112 3.019203e-03 9.935241e-03
## ZNF808 2.025744e+00 6.967464e+00 3.025032 3.019945e-03 9.935241e-03
## NEXN 5.629392e+00 9.894202e+00 3.024832 3.021808e-03 9.938613e-03
## FAR2 2.526812e+01 5.885948e+01 3.024648 3.023520e-03 9.941487e-03
## CDKN2D -1.040403e+02 2.568970e+02 -3.023739 3.031983e-03 9.966553e-03
## PHETA2 -1.071668e+00 4.191451e+00 -3.023318 3.035913e-03 9.976705e-03
## INTS13 1.865513e+00 1.106256e+01 3.023025 3.038651e-03 9.982936e-03
## TMEM87A 5.483609e+00 3.802758e+01 3.022600 3.042628e-03 9.993235e-03
## UGDH 1.395814e+00 6.331026e+00 3.022335 3.045111e-03 9.997781e-03
## PNRC2 2.110622e+01 1.367760e+02 3.022272 3.045698e-03 9.997781e-03
## TENT5A 1.127710e+01 3.525549e+01 3.022054 3.047740e-03 1.000003e-02
## U2AF1L5 -1.122393e+01 4.876335e+01 -3.022019 3.048071e-03 1.000003e-02
## POLR3H -4.491104e+00 1.125702e+01 -3.021919 3.049005e-03 1.000033e-02
## UQCRFS1 -1.837235e+01 6.939107e+01 -3.020687 3.060578e-03 1.003552e-02
## SLC27A4 -3.226147e+00 7.812821e+00 -3.019936 3.067654e-03 1.005525e-02
## MTMR4 1.016514e+01 4.664058e+01 3.019868 3.068291e-03 1.005525e-02
## TRIM58 1.914333e+01 4.058413e+01 3.019523 3.071547e-03 1.006313e-02
## MITF 9.470966e-01 3.186825e+00 3.018595 3.080321e-03 1.008909e-02
## UBC -1.004961e+03 3.852682e+03 -3.018494 3.081272e-03 1.008942e-02
## KCTD13 -1.931632e+00 8.575395e+00 -3.017954 3.086386e-03 1.010338e-02
## LCOR 1.816003e+01 5.215263e+01 3.017833 3.087534e-03 1.010435e-02
## TARDBP 9.834519e+00 8.104648e+01 3.016565 3.099584e-03 1.014098e-02
## KLHL25 -4.419844e-01 9.562206e-01 -3.015592 3.108860e-03 1.016827e-02
## TMEM39A 4.186615e+00 1.924127e+01 3.015511 3.109638e-03 1.016827e-02
## FBXL19 -2.578360e+00 9.718664e+00 -3.014427 3.120004e-03 1.019935e-02
## VPS37B -1.453474e+01 5.135728e+01 -3.014178 3.122383e-03 1.020432e-02
## C6orf136 -1.338620e+00 6.670025e+00 -3.013068 3.133043e-03 1.023633e-02
## NLE1 -1.634204e+00 4.429862e+00 -3.012969 3.133988e-03 1.023660e-02
## VCPIP1 4.166757e+01 1.132242e+02 3.012554 3.137989e-03 1.024685e-02
## RPSA -4.328294e+02 9.156639e+02 -3.012005 3.143277e-03 1.026129e-02
## TRIM46 -6.259933e-01 1.150601e+00 -3.011728 3.145942e-03 1.026716e-02
## FNDC3B 3.690902e+01 9.921672e+01 3.011397 3.149146e-03 1.027479e-02
## DCAF17 2.231309e+00 7.498758e+00 3.011180 3.151240e-03 1.027880e-02
## TRMT13 2.264781e+00 8.742033e+00 3.010547 3.157364e-03 1.029594e-02
## NCOA7 1.920315e+01 3.206978e+01 3.010399 3.158796e-03 1.029778e-02
## DOCK7 9.933157e-01 2.774259e+00 3.010277 3.159979e-03 1.029880e-02
## UBE4A 1.606861e+01 6.951969e+01 3.009952 3.163125e-03 1.030623e-02
## GATA3 -3.228773e+00 4.840346e+00 -3.009771 3.164886e-03 1.030913e-02
## ERCC2 -2.465377e+00 5.580682e+00 -3.009162 3.170800e-03 1.032556e-02
## EXOC2 3.931499e+00 1.759741e+01 3.008820 3.174123e-03 1.033354e-02
## LRRC7 -3.917712e-01 1.081276e+00 -3.008438 3.177844e-03 1.034282e-02
## TBCEL 2.822123e+00 7.423975e+00 3.008332 3.178875e-03 1.034333e-02
## HSD3B7 -2.677699e+00 5.049075e+00 -3.008103 3.181108e-03 1.034603e-02
## GUCY1A1 3.532386e+00 6.703931e+00 3.008068 3.181447e-03 1.034603e-02
## POU2F1 4.101558e+00 1.961298e+01 3.007854 3.183542e-03 1.034881e-02
## HPS1 -1.433163e+01 6.547653e+01 -3.007802 3.184047e-03 1.034881e-02
## GPATCH1 1.122323e+00 6.017622e+00 3.007475 3.187235e-03 1.035633e-02
## CLOCK 2.021227e+00 7.306462e+00 3.007037 3.191515e-03 1.036740e-02
## ZNF684 3.590475e+00 5.441514e+00 3.006056 3.201127e-03 1.039577e-02
## ZBTB20 2.066161e+00 6.400153e+00 3.005805 3.203585e-03 1.040091e-02
## SKIV2L -7.185172e+00 4.727971e+01 -3.004127 3.220097e-03 1.045166e-02
## WBP2 -4.149954e+01 1.803700e+02 -3.003593 3.225362e-03 1.046533e-02
## CBX7 -1.638532e+01 8.334104e+01 -3.003521 3.226076e-03 1.046533e-02
## NDUFB9 -1.973244e+01 6.045578e+01 -3.002905 3.232160e-03 1.048220e-02
## UTP18 -3.746052e+00 2.293167e+01 -3.002435 3.236816e-03 1.049443e-02
## ZNF468 3.118177e+00 1.291771e+01 3.002315 3.238003e-03 1.049541e-02
## PTCD2 9.420270e-01 3.773746e+00 3.001749 3.243616e-03 1.051073e-02
## GDPGP1 -5.077848e-01 2.245276e+00 -3.001433 3.246759e-03 1.051804e-02
## AUP1 -3.030509e+01 1.253401e+02 -3.001290 3.248181e-03 1.051978e-02
## MFNG -2.387221e+01 8.476068e+01 -3.000974 3.251323e-03 1.052142e-02
## ZNF460 4.535635e-01 1.432244e+00 3.000919 3.251866e-03 1.052142e-02
## CEP350 1.919770e+01 6.702272e+01 3.000883 3.252226e-03 1.052142e-02
## SLC27A2 1.517436e+00 1.900271e+00 3.000882 3.252236e-03 1.052142e-02
## MFSD6 2.924379e+00 1.397862e+01 3.000232 3.258707e-03 1.053948e-02
## SIRT1 7.766878e+00 2.661332e+01 3.000134 3.259688e-03 1.053978e-02
## PROCA1 -1.519657e+00 3.907384e+00 -2.999758 3.263436e-03 1.054902e-02
## GEMIN6 -2.108795e+00 1.045493e+01 -2.999274 3.268273e-03 1.056178e-02
## TMED7 1.145729e+01 4.681076e+01 2.998195 3.279073e-03 1.059379e-02
## CNPPD1 -3.018029e+01 1.013221e+02 -2.998103 3.279993e-03 1.059388e-02
## BEX2 -2.232294e+00 4.092596e+00 -2.997178 3.289282e-03 1.062099e-02
## ZRANB3 3.305188e-01 1.510941e+00 2.996030 3.300851e-03 1.065544e-02
## ACBD5 5.761331e+00 2.471806e+01 2.995337 3.307848e-03 1.067512e-02
## SNTB2 7.551490e+00 2.300223e+01 2.995119 3.310050e-03 1.067932e-02
## COG8 1.230036e+00 1.378825e+01 2.994886 3.312406e-03 1.068334e-02
## ITCH 2.606287e+01 9.900280e+01 2.994818 3.313095e-03 1.068334e-02
## SRP54 7.937710e+00 4.311980e+01 2.994418 3.317143e-03 1.069348e-02
## BLVRB -2.684620e+01 4.367586e+01 -2.993848 3.322929e-03 1.070922e-02
## ITSN2 3.575028e+01 1.178624e+02 2.993671 3.324726e-03 1.071210e-02
## DUSP7 -4.914820e+00 2.252231e+01 -2.993439 3.327078e-03 1.071677e-02
## MCU 9.433737e+00 3.360175e+01 2.993056 3.330978e-03 1.072642e-02
## COPA 2.589342e+01 1.265631e+02 2.992798 3.333598e-03 1.073194e-02
## FGFR1 1.814401e+00 5.117522e+00 2.992312 3.338552e-03 1.074497e-02
## VPS36 7.282680e+00 3.787610e+01 2.992046 3.341270e-03 1.075080e-02
## CDYL 1.541616e+00 1.183027e+01 2.991606 3.345757e-03 1.076232e-02
## EPS8L2 -1.272138e+00 2.161680e+00 -2.991477 3.347079e-03 1.076365e-02
## IFIH1 5.681801e+01 7.607794e+01 2.991305 3.348835e-03 1.076638e-02
## RARA -4.111851e+01 1.399666e+02 -2.989922 3.362996e-03 1.080898e-02
## TNFRSF25 -4.324599e+00 6.405671e+00 -2.989765 3.364610e-03 1.080974e-02
## BCOR 3.377003e+00 1.210760e+01 2.989722 3.365055e-03 1.080974e-02
## INO80C -1.446627e+00 8.325959e+00 -2.988470 3.377928e-03 1.084815e-02
## STT3B 1.857556e+01 1.144594e+02 2.988302 3.379659e-03 1.085077e-02
## VASP -2.264187e+02 8.106965e+02 -2.988045 3.382317e-03 1.085637e-02
## BTG3 1.445376e+00 3.740489e+00 2.987913 3.383670e-03 1.085734e-02
## ZNF791 3.049531e+00 2.165035e+01 2.987780 3.385048e-03 1.085734e-02
## CUL5 3.368105e+00 1.720670e+01 2.987749 3.385365e-03 1.085734e-02
## LMF1 -9.438660e-01 2.269577e+00 -2.987491 3.388034e-03 1.086296e-02
## HCLS1 -4.308708e+02 1.384445e+03 -2.987368 3.389306e-03 1.086343e-02
## CDK11B -1.043721e+01 5.065261e+01 -2.987299 3.390014e-03 1.086343e-02
## SRSF9 -2.174552e+01 1.132605e+02 -2.986133 3.402088e-03 1.089918e-02
## TMEM241 5.348731e-01 2.146202e+00 2.985892 3.404591e-03 1.090425e-02
## TCERG1 3.794992e+00 1.565597e+01 2.985673 3.406868e-03 1.090860e-02
## DGUOK -1.103709e+01 4.071040e+01 -2.984278 3.421386e-03 1.095213e-02
## KCNC4 -3.722196e-01 8.713637e-01 -2.984115 3.423083e-03 1.095460e-02
## OSBPL3 3.364061e+00 1.017479e+01 2.983897 3.425355e-03 1.095818e-02
## LAMTOR1 -7.525470e+01 2.472719e+02 -2.983831 3.426047e-03 1.095818e-02
## MRPL33 -5.553233e+00 3.856385e+01 -2.982999 3.434738e-03 1.097898e-02
## GOLGA2 6.815267e+00 3.262925e+01 2.982981 3.434926e-03 1.097898e-02
## RFXAP 7.181807e-01 3.263114e+00 2.982943 3.435327e-03 1.097898e-02
## ZKSCAN8 3.897961e+00 1.158964e+01 2.982261 3.442476e-03 1.099886e-02
## LOC100421372 1.556343e+00 1.044805e+01 2.981131 3.454342e-03 1.103380e-02
## KCND1 4.244484e+00 8.704328e+00 2.980844 3.457356e-03 1.104045e-02
## RPS29 -1.499165e+02 3.203185e+02 -2.979992 3.466339e-03 1.106616e-02
## GGT6 -4.319240e-01 1.189500e+00 -2.978250 3.484770e-03 1.112200e-02
## SHISA4 -7.507021e-01 1.411928e+00 -2.977631 3.491335e-03 1.113996e-02
## PRSS36 -1.697838e+00 3.097334e+00 -2.977238 3.495518e-03 1.115031e-02
## B4GALT5 1.355415e+02 3.283939e+02 2.977020 3.497834e-03 1.115470e-02
## NME4 -5.006775e+00 1.014303e+01 -2.976344 3.505040e-03 1.117467e-02
## FTH1 -2.088952e+03 5.797449e+03 -2.976022 3.508472e-03 1.118261e-02
## NDUFB10 -1.727487e+01 3.962241e+01 -2.974930 3.520142e-03 1.121679e-02
## ARFGEF1 2.118575e+01 7.973127e+01 2.974188 3.528087e-03 1.123909e-02
## EHMT2 -5.067861e+00 1.617896e+01 -2.973949 3.530654e-03 1.124424e-02
## MED12 1.110381e+01 3.561850e+01 2.973752 3.532771e-03 1.124617e-02
## FRMD8 -8.806580e+00 4.482045e+01 -2.973716 3.533156e-03 1.124617e-02
## EIF2S1 4.621582e+00 3.251727e+01 2.973081 3.539980e-03 1.126276e-02
## AARSD1 -3.365532e+00 8.709452e+00 -2.973055 3.540267e-03 1.126276e-02
## PLCE1 -4.600599e-01 1.467656e+00 -2.972369 3.547657e-03 1.128324e-02
## SUGP2 7.814532e+00 4.621708e+01 2.971049 3.561904e-03 1.132552e-02
## DNM2 -2.612683e+01 1.414486e+02 -2.970545 3.567361e-03 1.133983e-02
## FAM216A -6.063096e-01 2.930699e+00 -2.969113 3.582909e-03 1.138620e-02
## SNN 6.638427e+01 2.542842e+02 2.968109 3.593852e-03 1.141550e-02
## CREG1 2.591899e+01 1.090574e+02 2.968090 3.594055e-03 1.141550e-02
## COL8A2 -9.716735e-01 2.827473e+00 -2.966729 3.608938e-03 1.145971e-02
## DUSP12 -2.008608e+00 1.244491e+01 -2.965977 3.617176e-03 1.148279e-02
## CENPS 4.096413e-01 1.065779e+00 2.965459 3.622873e-03 1.149780e-02
## TMEM219 -2.641559e+01 7.548929e+01 -2.965315 3.624448e-03 1.149972e-02
## ALAS1 9.845518e+00 5.096235e+01 2.965088 3.626946e-03 1.150457e-02
## PPTC7 2.204826e+01 7.583239e+01 2.964311 3.635510e-03 1.152793e-02
## REL 3.014773e+01 1.015583e+02 2.964243 3.636257e-03 1.152793e-02
## LAS1L -4.658489e+00 1.644443e+01 -2.964041 3.638482e-03 1.153191e-02
## ULK1 -1.690506e+01 5.273353e+01 -2.961724 3.664139e-03 1.161012e-02
## DHFR2 1.426809e+00 5.450357e+00 2.961311 3.668726e-03 1.162155e-02
## NIPBL 3.143823e+01 1.104868e+02 2.960485 3.677922e-03 1.164757e-02
## ZBED4 2.071691e+00 1.134551e+01 2.959968 3.683682e-03 1.166270e-02
## SUCLA2 2.436987e+00 1.166638e+01 2.958667 3.698232e-03 1.170564e-02
## PIM2 3.170542e+01 1.381539e+02 2.958557 3.699461e-03 1.170640e-02
## KRTCAP2 -1.552190e+01 3.171061e+01 -2.957841 3.707494e-03 1.172870e-02
## MOB1B 4.394054e+00 1.889591e+01 2.957543 3.710839e-03 1.173615e-02
## TNK1 -8.999750e-01 1.346362e+00 -2.957309 3.713473e-03 1.174135e-02
## GALNT7 1.279350e+01 3.724127e+01 2.957020 3.716723e-03 1.174849e-02
## RIN3 -4.468593e+01 1.458163e+02 -2.956757 3.719687e-03 1.175473e-02
## ZNF620 2.484710e-01 1.111005e+00 2.956249 3.725408e-03 1.176893e-02
## KLF3 5.487070e+01 1.861907e+02 2.956182 3.726166e-03 1.176893e-02
## RBL2 5.204807e+01 1.712824e+02 2.955641 3.732273e-03 1.178508e-02
## DNM3 1.984344e+00 5.609791e+00 2.955527 3.733559e-03 1.178600e-02
## TMPRSS13 -6.393304e-01 1.618883e+00 -2.955246 3.736730e-03 1.179287e-02
## SLC25A20 -7.358681e+00 4.535745e+01 -2.954764 3.742191e-03 1.180697e-02
## MYC -8.193839e+00 2.615070e+01 -2.954407 3.746230e-03 1.181575e-02
## FBXW8 1.204925e+00 3.216289e+00 2.954342 3.746968e-03 1.181575e-02
## ALYREF -5.872040e+00 1.808976e+01 -2.953425 3.757385e-03 1.184545e-02
## RBM18 4.785133e+00 2.740087e+01 2.953273 3.759107e-03 1.184773e-02
## KPNA5 8.727140e+00 2.838497e+01 2.953142 3.760601e-03 1.184929e-02
## VTI1A 4.515669e+00 2.549703e+01 2.952770 3.764832e-03 1.185947e-02
## PDAP1 -1.280910e+01 7.026995e+01 -2.952598 3.766791e-03 1.186249e-02
## INO80 3.589599e+00 2.256520e+01 2.952459 3.768372e-03 1.186432e-02
## ESCO1 5.538263e+00 2.550469e+01 2.952290 3.770302e-03 1.186725e-02
## NBPF3 1.790105e+00 5.432229e+00 2.951943 3.774253e-03 1.187653e-02
## NDUFS6 -9.224464e+00 1.720792e+01 -2.951785 3.776061e-03 1.187907e-02
## PIGBOS1 -3.428067e+00 1.692936e+01 -2.951113 3.783738e-03 1.190006e-02
## ZNF318 7.820271e+00 2.568627e+01 2.950302 3.793030e-03 1.192610e-02
## AIDA 6.450823e+00 5.059493e+01 2.950215 3.794028e-03 1.192610e-02
## ACSS2 -8.859679e+00 4.490624e+01 -2.949736 3.799523e-03 1.194021e-02
## SYTL4 1.317986e+00 3.325325e+00 2.948378 3.815152e-03 1.198615e-02
## EFCAB11 3.880701e-01 1.920036e+00 2.948223 3.816937e-03 1.198616e-02
## MTIF3 -9.190329e+00 4.236750e+01 -2.948202 3.817176e-03 1.198616e-02
## FAM185A 5.152473e-01 2.421610e+00 2.948059 3.818829e-03 1.198817e-02
## ABHD14A -2.196400e+00 4.115691e+00 -2.947814 3.821659e-03 1.199388e-02
## DIP2A 7.762184e+00 3.502928e+01 2.947297 3.827627e-03 1.200943e-02
## C12orf4 2.848213e+00 1.173463e+01 2.947069 3.830258e-03 1.201451e-02
## XPA -1.480449e+00 7.300014e+00 -2.946138 3.841049e-03 1.204517e-02
## NUP85 -2.963255e+00 2.246862e+01 -2.946027 3.842338e-03 1.204603e-02
## ARHGAP18 5.673784e+00 2.449746e+01 2.945558 3.847781e-03 1.205991e-02
## PIGF 2.722619e+00 1.674583e+01 2.945215 3.851763e-03 1.206920e-02
## STIM1 1.075959e+01 7.598464e+01 2.944421 3.861006e-03 1.209496e-02
## NPIPB11 1.318941e+00 3.952164e+00 2.944148 3.864187e-03 1.210018e-02
## ATXN7L3B 8.420384e+00 5.556249e+01 2.944104 3.864710e-03 1.210018e-02
## BICRAL 1.462595e+01 4.974306e+01 2.943707 3.869333e-03 1.211145e-02
## AVL9 1.466257e+01 6.014709e+01 2.943035 3.877195e-03 1.213286e-02
## MTHFD1L 9.451989e-01 2.951414e+00 2.942873 3.879086e-03 1.213445e-02
## SERTAD1 -4.910119e+00 1.194549e+01 -2.942798 3.879969e-03 1.213445e-02
## DRAM2 -8.329028e+00 5.342142e+01 -2.942729 3.880775e-03 1.213445e-02
## AKAP9 8.570839e+00 3.393378e+01 2.942625 3.881988e-03 1.213505e-02
## ZNF639 2.536883e+00 1.376298e+01 2.942396 3.884678e-03 1.214026e-02
## FBXL4 5.060453e+00 1.877315e+01 2.941377 3.896636e-03 1.217442e-02
## RBMXL1 4.716220e+00 2.344773e+01 2.940739 3.904137e-03 1.219464e-02
## CBLL1 5.202860e+00 2.807184e+01 2.940586 3.905943e-03 1.219707e-02
## IFNLR1 1.085119e+00 5.060651e+00 2.939775 3.915499e-03 1.222369e-02
## ALDH6A1 1.170663e+00 8.584034e+00 2.939380 3.920174e-03 1.223507e-02
## RTN2 -3.111622e+00 7.924557e+00 -2.939213 3.922140e-03 1.223798e-02
## ZNF324B -4.280196e-01 1.494305e+00 -2.938677 3.928487e-03 1.225457e-02
## PPP2R5C 2.629579e+01 1.555864e+02 2.938182 3.934345e-03 1.226699e-02
## MAPK13 3.940119e+01 1.071179e+02 2.938166 3.934538e-03 1.226699e-02
## ITPRIPL2 2.870848e+00 1.257233e+01 2.937939 3.937227e-03 1.226905e-02
## PCYT2 -4.741996e+00 1.050559e+01 -2.937921 3.937445e-03 1.226905e-02
## ZDHHC17 1.717985e+01 5.333495e+01 2.937849 3.938304e-03 1.226905e-02
## FBF1 -1.803043e+00 3.855134e+00 -2.937031 3.948018e-03 1.229609e-02
## AK9 1.210307e+00 4.325557e+00 2.936441 3.955046e-03 1.231474e-02
## PEA15 -1.489901e+01 5.234471e+01 -2.936021 3.960049e-03 1.232708e-02
## GLT8D1 2.232151e+00 2.335021e+01 2.935859 3.961987e-03 1.232988e-02
## CPEB3 2.972573e+00 8.221757e+00 2.935350 3.968059e-03 1.234554e-02
## MLYCD -1.060975e+00 6.967407e+00 -2.935137 3.970607e-03 1.235022e-02
## PDK1 6.688821e+00 2.856314e+01 2.934569 3.977407e-03 1.236813e-02
## TIMM44 -2.366196e+00 7.465000e+00 -2.934228 3.981491e-03 1.237758e-02
## ARHGEF6 2.567823e+01 1.070178e+02 2.933701 3.987819e-03 1.239401e-02
## CHST14 -8.913309e-01 4.590768e+00 -2.933557 3.989538e-03 1.239610e-02
## MDM1 6.822183e+00 2.360747e+01 2.932697 3.999884e-03 1.242198e-02
## TBC1D13 -4.526448e+00 2.688484e+01 -2.932690 3.999962e-03 1.242198e-02
## TMEM256 -6.229764e+00 1.264563e+01 -2.932358 4.003963e-03 1.242954e-02
## RPL41 -4.135319e+02 1.413507e+03 -2.932314 4.004492e-03 1.242954e-02
## XPO4 3.570993e+00 1.176345e+01 2.931829 4.010350e-03 1.244266e-02
## HIP1R -4.594809e+00 9.582014e+00 -2.931790 4.010817e-03 1.244266e-02
## UGGT1 1.331014e+01 6.859581e+01 2.931636 4.012670e-03 1.244515e-02
## RANBP9 1.676723e+01 5.218978e+01 2.931546 4.013756e-03 1.244527e-02
## SLC17A5 3.372011e+00 1.547184e+01 2.930967 4.020758e-03 1.246372e-02
## TMEM79 -1.875327e+00 8.155048e+00 -2.930072 4.031596e-03 1.249405e-02
## HIPK2 1.324755e+01 3.288403e+01 2.929787 4.035051e-03 1.250149e-02
## CLUH -2.434561e+00 5.924444e+00 -2.928846 4.046496e-03 1.253111e-02
## PTTG1 6.159619e+00 9.821735e+00 2.928827 4.046724e-03 1.253111e-02
## TMEM80 -2.512524e+00 1.341032e+01 -2.927685 4.060645e-03 1.257093e-02
## GPRC5C -4.175295e-01 7.084544e-01 -2.926855 4.070787e-03 1.259904e-02
## CPEB2 1.259941e+01 3.367483e+01 2.926665 4.073109e-03 1.260294e-02
## DTNBP1 -6.521506e+00 2.669733e+01 -2.926450 4.075740e-03 1.260779e-02
## KDELR1 -8.094406e+00 4.302458e+01 -2.925697 4.084973e-03 1.263306e-02
## TST -6.569817e+00 1.558343e+01 -2.925208 4.090979e-03 1.264834e-02
## INPP5B -3.325535e+00 2.233440e+01 -2.924969 4.093911e-03 1.265410e-02
## RMND5B -3.834480e+00 1.969871e+01 -2.923807 4.108228e-03 1.269239e-02
## HSD17B7 1.420613e+00 1.025720e+01 2.923790 4.108438e-03 1.269239e-02
## ZFP69B 3.809332e-01 1.021524e+00 2.923444 4.112709e-03 1.270227e-02
## SHKBP1 -1.268605e+02 3.166935e+02 -2.923166 4.116146e-03 1.270627e-02
## GPR137B -2.956626e+00 8.107503e+00 -2.923166 4.116147e-03 1.270627e-02
## AGK 3.322158e+00 1.185189e+01 2.922938 4.118965e-03 1.271167e-02
## NWD1 3.267879e-01 6.645564e-01 2.922370 4.125999e-03 1.273006e-02
## INTU 4.074353e-01 1.435362e+00 2.921932 4.131419e-03 1.274347e-02
## TIMMDC1 -3.144778e+00 3.044333e+01 -2.921531 4.136399e-03 1.275551e-02
## OXR1 9.179418e+00 3.364684e+01 2.921003 4.142953e-03 1.277240e-02
## UBE2E2 -1.257131e+00 5.685146e+00 -2.920660 4.147231e-03 1.278227e-02
## RPN1 -2.979080e+01 2.078619e+02 -2.919850 4.157322e-03 1.281004e-02
## SNAI3 -5.446683e+00 1.161980e+01 -2.919611 4.160297e-03 1.281338e-02
## NCF1 -2.597055e+02 8.546713e+02 -2.919589 4.160568e-03 1.281338e-02
## WWC2 8.123586e-01 2.016655e+00 2.919421 4.162677e-03 1.281655e-02
## EIF5A2 7.443330e-01 4.360189e+00 2.919282 4.164404e-03 1.281666e-02
## ATMIN 4.393119e+00 3.150146e+01 2.919245 4.164876e-03 1.281666e-02
## CGGBP1 2.213025e+01 1.293696e+02 2.918771 4.170798e-03 1.283156e-02
## BOD1L1 5.023022e+01 1.387488e+02 2.917857 4.182249e-03 1.286345e-02
## PHIP 2.575714e+01 8.980356e+01 2.917212 4.190339e-03 1.288499e-02
## CSRNP2 3.012953e+00 1.500102e+01 2.916762 4.196000e-03 1.289906e-02
## GABPB2 2.203126e+00 1.467883e+01 2.915510 4.211777e-03 1.294420e-02
## KLHDC4 -3.882355e+00 9.421845e+00 -2.915350 4.213792e-03 1.294704e-02
## TTI1 1.476048e+00 1.076233e+01 2.914024 4.230570e-03 1.299371e-02
## ISOC1 2.181929e+00 7.637516e+00 2.913976 4.231174e-03 1.299371e-02
## LNX2 9.261741e-01 5.372403e+00 2.913639 4.235455e-03 1.300349e-02
## TAX1BP3 -7.684961e+00 2.593053e+01 -2.912156 4.254307e-03 1.305799e-02
## PLAG1 8.041363e-01 2.677675e+00 2.912018 4.256061e-03 1.305999e-02
## PTX3 7.076533e+00 8.696532e+00 2.911708 4.260014e-03 1.306875e-02
## ST8SIA6 7.291051e-01 1.627960e+00 2.911530 4.262293e-03 1.307045e-02
## PHKB 7.661264e+00 4.623304e+01 2.911492 4.262773e-03 1.307045e-02
## OSM -2.473002e+01 3.946931e+01 -2.911206 4.266422e-03 1.307825e-02
## IMPA1 5.431768e+00 2.113875e+01 2.910808 4.271510e-03 1.309047e-02
## MYO9A 2.470908e+00 8.313552e+00 2.909262 4.291319e-03 1.314778e-02
## SACS 3.787913e+00 8.787320e+00 2.909034 4.294251e-03 1.315336e-02
## LOXHD1 3.187668e+00 6.948033e+00 2.908119 4.306028e-03 1.318355e-02
## UGT8 3.391238e-01 1.101377e+00 2.908095 4.306330e-03 1.318355e-02
## MARS2 9.773968e-01 3.196093e+00 2.907852 4.309464e-03 1.318974e-02
## AGTRAP -8.502254e+01 1.879971e+02 -2.907624 4.312409e-03 1.319535e-02
## AP1M2 1.482850e+00 3.628289e+00 2.907261 4.317087e-03 1.320625e-02
## PLEKHJ1 -1.191203e+01 2.948693e+01 -2.906834 4.322611e-03 1.321974e-02
## NDFIP2 6.577256e-01 1.610832e+00 2.906700 4.324342e-03 1.322163e-02
## NEK7 5.380865e+01 1.417374e+02 2.906314 4.329335e-03 1.323348e-02
## RBBP7 5.582158e+00 3.417174e+01 2.906166 4.331252e-03 1.323528e-02
## LUZP1 2.511970e+00 9.065831e+00 2.906096 4.332155e-03 1.323528e-02
## FUS -2.016587e+01 1.326888e+02 -2.905596 4.338638e-03 1.325167e-02
## ZNF212 -1.534240e+00 9.367830e+00 -2.904565 4.352027e-03 1.328914e-02
## GAPDH -9.177228e+02 2.151126e+03 -2.903668 4.363714e-03 1.332140e-02
## XBP1 6.823065e+01 1.621142e+02 2.903074 4.371473e-03 1.334142e-02
## H2BC4 4.921950e+01 1.102399e+02 2.902993 4.372523e-03 1.334142e-02
## IL12RB2 8.709867e-01 1.931912e+00 2.902802 4.375022e-03 1.334562e-02
## FLOT1 -2.449576e+02 5.915143e+02 -2.901379 4.393663e-03 1.339903e-02
## CCR7 -2.366237e+01 4.138170e+01 -2.900784 4.401472e-03 1.341940e-02
## LYSMD3 8.855305e+00 3.226299e+01 2.900019 4.411541e-03 1.344664e-02
## CAPN7 4.584796e+00 2.147013e+01 2.899809 4.414301e-03 1.345159e-02
## DNAJC10 1.099358e+01 4.753952e+01 2.899524 4.418067e-03 1.345835e-02
## PPP1R8 2.915307e+00 3.369086e+01 2.899469 4.418788e-03 1.345835e-02
## SEC24A 8.705712e+00 2.681140e+01 2.899267 4.421457e-03 1.346302e-02
## AKAP10 1.301872e+01 5.595202e+01 2.898452 4.432226e-03 1.349235e-02
## PLCB2 -5.039035e+01 2.934669e+02 -2.898195 4.435624e-03 1.349923e-02
## UBL5 -4.154963e+01 1.293483e+02 -2.897432 4.445737e-03 1.352654e-02
## NDUFB2 -1.465957e+01 3.145912e+01 -2.897128 4.449767e-03 1.353532e-02
## AGAP5 2.118342e+00 7.263153e+00 2.897006 4.451384e-03 1.353677e-02
## YPEL2 9.864021e+00 3.750076e+01 2.896631 4.456366e-03 1.354845e-02
## DNAJC18 4.892871e-01 1.998183e+00 2.896373 4.459804e-03 1.355543e-02
## RTRAF -1.546342e+01 7.284550e+01 -2.895932 4.465671e-03 1.356978e-02
## DUSP22 -1.310601e+01 8.623116e+01 -2.895500 4.471422e-03 1.358378e-02
## FLT1 2.258420e+00 4.549040e+00 2.895205 4.475367e-03 1.359228e-02
## SMC1A 9.445939e+00 4.665230e+01 2.894949 4.478781e-03 1.359594e-02
## MSI2 4.049772e+00 1.646098e+01 2.894943 4.478865e-03 1.359594e-02
## XAF1 1.602310e+02 1.972448e+02 2.894497 4.484822e-03 1.361054e-02
## DIP2B 2.606890e+01 8.847932e+01 2.894275 4.487786e-03 1.361605e-02
## GNGT2 -2.694111e+00 6.307515e+00 -2.893195 4.502265e-03 1.365649e-02
## DHX38 -4.130193e+00 4.268733e+01 -2.892123 4.516674e-03 1.369669e-02
## RBM41 1.624154e+00 8.090103e+00 2.891946 4.519050e-03 1.370039e-02
## GNL3 7.014943e+00 3.206503e+01 2.891093 4.530547e-03 1.373049e-02
## ELMO3 -1.863744e+00 4.025029e+00 -2.891038 4.531293e-03 1.373049e-02
## FBXO10 7.465053e-01 2.625028e+00 2.890326 4.540909e-03 1.375611e-02
## SNRK 4.480390e+01 1.634270e+02 2.890098 4.543993e-03 1.376194e-02
## CTCF 5.756561e+00 3.778656e+01 2.889713 4.549218e-03 1.377425e-02
## TTLL1 -7.249201e-01 2.397822e+00 -2.889534 4.551639e-03 1.377806e-02
## SEMA4B -1.552842e+01 6.337355e+01 -2.889369 4.553877e-03 1.378132e-02
## DPY19L4 1.304210e+00 4.967538e+00 2.888956 4.559478e-03 1.379475e-02
## SLC22A15 1.701506e+01 4.100394e+01 2.888727 4.562583e-03 1.379880e-02
## GCDH -3.348925e+00 9.478377e+00 -2.888686 4.563143e-03 1.379880e-02
## NPIPA8 6.538977e-01 1.905008e+00 2.888103 4.571071e-03 1.381924e-02
## ZNF568 -6.631141e-01 2.682268e+00 -2.887616 4.577707e-03 1.383578e-02
## DHX40 7.940110e+00 3.718926e+01 2.887491 4.579401e-03 1.383737e-02
## GALNT2 -1.824047e+01 4.087008e+01 -2.886890 4.587607e-03 1.385284e-02
## TSPYL4 2.353805e+00 1.031825e+01 2.886861 4.587999e-03 1.385284e-02
## YIPF3 -2.868371e+01 1.152890e+02 -2.886859 4.588023e-03 1.385284e-02
## ATF1 4.083462e+00 1.875766e+01 2.886562 4.592086e-03 1.385846e-02
## EPAS1 5.615520e+00 8.852375e+00 2.886552 4.592221e-03 1.385846e-02
## ZCCHC4 6.141373e-01 3.306997e+00 2.885697 4.603922e-03 1.388766e-02
## NEMF 7.090386e+00 2.997226e+01 2.885674 4.604240e-03 1.388766e-02
## TARBP2 -2.697216e+00 6.617235e+00 -2.884874 4.615201e-03 1.391403e-02
## HDAC5 -2.608563e+01 8.636239e+01 -2.884865 4.615330e-03 1.391403e-02
## CEMP1 -2.347214e+00 5.007336e+00 -2.884677 4.617909e-03 1.391827e-02
## BTRC 1.552522e+00 8.399350e+00 2.884453 4.620984e-03 1.392400e-02
## TBC1D2 -5.324582e+00 2.210001e+01 -2.884046 4.626582e-03 1.393733e-02
## PSPH 1.922901e+00 4.751889e+00 2.883948 4.627939e-03 1.393788e-02
## MED19 -1.105465e+00 5.387049e+00 -2.883546 4.633471e-03 1.395069e-02
## RRS1 -1.063079e+00 4.683742e+00 -2.883468 4.634546e-03 1.395069e-02
## LCMT1 -3.098361e+00 1.328296e+01 -2.882882 4.642629e-03 1.397147e-02
## TAP2 6.368916e+01 1.655187e+02 2.882411 4.649135e-03 1.398750e-02
## C11orf68 -1.483281e+01 4.894142e+01 -2.882066 4.653901e-03 1.399759e-02
## CCDC186 1.601503e+01 4.464278e+01 2.881998 4.654846e-03 1.399759e-02
## IL21R -3.922346e+00 9.077452e+00 -2.881900 4.656195e-03 1.399809e-02
## RREB1 2.660649e+00 1.595914e+01 2.881755 4.658211e-03 1.400060e-02
## DNPEP -7.006926e+00 1.850241e+01 -2.880614 4.674021e-03 1.404456e-02
## ANO5 5.760159e-01 1.203212e+00 2.879790 4.685484e-03 1.407544e-02
## PIF1 8.618225e-01 1.555607e+00 2.879258 4.692894e-03 1.409413e-02
## CATSPERG -2.498952e-01 5.568691e-01 -2.878870 4.698309e-03 1.410682e-02
## MTRNR2L10 -1.980858e+01 4.819139e+01 -2.878690 4.700818e-03 1.411078e-02
## GRB14 4.142393e-01 1.002550e+00 2.878334 4.705794e-03 1.412074e-02
## TNFSF4 2.563492e+00 7.992977e+00 2.878282 4.706517e-03 1.412074e-02
## LAT -2.016075e+01 4.094321e+01 -2.877631 4.715617e-03 1.414447e-02
## FAM32A -1.901711e+01 1.230006e+02 -2.877151 4.722352e-03 1.416108e-02
## APAF1 5.107216e+01 1.655364e+02 2.876140 4.736546e-03 1.420006e-02
## CPED1 1.638149e+00 3.810962e+00 2.875808 4.741203e-03 1.421043e-02
## TMEM94 -4.048422e+00 1.972200e+01 -2.875610 4.743995e-03 1.421521e-02
## CLN6 -9.708438e+00 2.197383e+01 -2.875409 4.746834e-03 1.422012e-02
## NUFIP2 3.708325e+01 1.414914e+02 2.874819 4.755150e-03 1.424143e-02
## GALT -3.249384e+00 1.076786e+01 -2.874498 4.759670e-03 1.425137e-02
## P2RX4 -5.996449e+00 2.019813e+01 -2.874109 4.765175e-03 1.426426e-02
## PI4KB -1.161029e+01 9.368295e+01 -2.872336 4.790298e-03 1.433584e-02
## LRRC40 1.913843e+00 7.298671e+00 2.871878 4.796806e-03 1.435170e-02
## MAEA -1.256151e+01 5.262908e+01 -2.871747 4.798674e-03 1.435366e-02
## BMP1 -6.812136e-01 1.842075e+00 -2.871426 4.803232e-03 1.436367e-02
## PSMC2 8.392420e+00 5.054249e+01 2.870833 4.811687e-03 1.438533e-02
## PARD6A -1.127702e+00 2.308288e+00 -2.869694 4.827959e-03 1.443034e-02
## GABBR1 1.089649e+01 3.953987e+01 2.869457 4.831349e-03 1.443683e-02
## MAP2K7 -3.262155e+00 1.644871e+01 -2.869289 4.833761e-03 1.444040e-02
## NPLOC4 -1.165506e+01 7.647469e+01 -2.869041 4.837302e-03 1.444734e-02
## ALDOC -6.175552e+00 1.501200e+01 -2.868902 4.839295e-03 1.444747e-02
## GPATCH11 2.493981e+00 9.434440e+00 2.868868 4.839781e-03 1.444747e-02
## NOB1 -2.980190e+00 1.124976e+01 -2.868622 4.843314e-03 1.445438e-02
## CEP85 2.540974e+00 1.216090e+01 2.868474 4.845443e-03 1.445710e-02
## TRAPPC11 6.947131e+00 3.241809e+01 2.866483 4.874098e-03 1.453893e-02
## RNF40 -1.132325e+01 7.419362e+01 -2.865471 4.888724e-03 1.457890e-02
## TIMM23B 9.036383e-01 3.428654e+00 2.864314 4.905494e-03 1.462523e-02
## MAB21L3 8.784949e-01 1.583380e+00 2.864029 4.909626e-03 1.463219e-02
## USP14 3.395393e+00 1.817708e+01 2.863983 4.910295e-03 1.463219e-02
## TMEM204 -2.723490e+00 4.402109e+00 -2.862193 4.936364e-03 1.470617e-02
## INTS8 1.303004e+01 6.157028e+01 2.861672 4.943980e-03 1.472516e-02
## RPP25 -1.214213e+00 2.577725e+00 -2.861509 4.946363e-03 1.472856e-02
## FARP1 4.353905e-01 1.287432e+00 2.860584 4.959915e-03 1.476521e-02
## ATP6V0A2 2.183401e+00 1.695438e+01 2.860006 4.968386e-03 1.478671e-02
## ZBTB2 4.217573e+00 2.431637e+01 2.858803 4.986085e-03 1.483209e-02
## TRIM65 -2.778577e+00 1.137430e+01 -2.858753 4.986822e-03 1.483209e-02
## MEI1 -4.592924e+00 9.547366e+00 -2.858715 4.987383e-03 1.483209e-02
## MPDU1 -1.199721e+01 4.153855e+01 -2.857343 5.007647e-03 1.488862e-02
## SCML2 2.275307e-01 5.013808e-01 2.857133 5.010747e-03 1.489410e-02
## GTF2H2C 6.919384e+00 2.918868e+01 2.856081 5.026343e-03 1.493672e-02
## ZNF280D 3.449052e+00 1.587320e+01 2.855072 5.041344e-03 1.497754e-02
## AFF2 1.624304e+00 2.363112e+00 2.854640 5.047775e-03 1.499128e-02
## KIDINS220 2.837972e+01 8.987570e+01 2.854592 5.048498e-03 1.499128e-02
## CALHM2 -4.160280e+00 1.316614e+01 -2.854077 5.056166e-03 1.501029e-02
## ARG2 1.519508e+00 3.299904e+00 2.852988 5.072456e-03 1.505489e-02
## SPATA33 -5.905162e-01 1.245432e+00 -2.852864 5.074301e-03 1.505660e-02
## RNF31 -1.607352e+01 6.911293e+01 -2.852311 5.082595e-03 1.507743e-02
## RFFL 2.947562e+01 1.079016e+02 2.852173 5.084669e-03 1.507981e-02
## L3MBTL4 3.592081e-01 1.170795e+00 2.851945 5.088077e-03 1.508341e-02
## CRYM 9.089431e-01 1.360570e+00 2.851898 5.088785e-03 1.508341e-02
## SCYL3 5.142057e+00 2.588316e+01 2.851838 5.089696e-03 1.508341e-02
## CBFA2T3 -5.238158e+00 1.983658e+01 -2.851690 5.091919e-03 1.508623e-02
## RHBDD1 1.870772e+00 1.197727e+01 2.850924 5.103429e-03 1.511655e-02
## DNAJC5 -2.659630e+01 1.258177e+02 -2.850303 5.112783e-03 1.514048e-02
## MAP6D1 -3.936145e-01 1.334564e+00 -2.849985 5.117580e-03 1.515028e-02
## NDUFB8 -1.409827e+01 4.772423e+01 -2.849914 5.118647e-03 1.515028e-02
## KDM5B 1.156163e+01 4.159757e+01 2.849516 5.124666e-03 1.516431e-02
## GPLD1 2.785048e-01 6.561487e-01 2.848948 5.133258e-03 1.518594e-02
## SEC23B 8.627157e+00 5.015761e+01 2.847815 5.150415e-03 1.523290e-02
## RAD54L2 1.877633e+00 1.226087e+01 2.847069 5.161752e-03 1.526262e-02
## BNIPL 1.022514e+00 2.612308e+00 2.846792 5.165970e-03 1.527129e-02
## OAS1 1.960653e+02 2.445976e+02 2.846336 5.172921e-03 1.528803e-02
## CNTLN 1.260988e+00 4.327969e+00 2.845064 5.192332e-03 1.534157e-02
## ZNF783 -3.314957e+00 1.092345e+01 -2.844635 5.198903e-03 1.535716e-02
## FN3K -3.014024e-01 5.278538e-01 -2.844497 5.201006e-03 1.535954e-02
## PM20D2 2.562022e+00 1.020218e+01 2.844380 5.202806e-03 1.536104e-02
## PARD6G 2.851180e-01 7.660642e-01 2.844224 5.205193e-03 1.536426e-02
## ARPC3 -2.146433e+02 8.826408e+02 -2.843642 5.214117e-03 1.538392e-02
## ENOPH1 2.384804e+00 1.221730e+01 2.843618 5.214485e-03 1.538392e-02
## TTYH2 -3.760105e+00 1.125504e+01 -2.843536 5.215745e-03 1.538392e-02
## ANXA9 1.288372e+00 4.519119e+00 2.841239 5.251122e-03 1.548441e-02
## MTREX 5.066419e+00 2.840722e+01 2.839984 5.270545e-03 1.553733e-02
## SLC39A6 3.900852e+00 2.295276e+01 2.839910 5.271689e-03 1.553733e-02
## DOLK -9.655137e-01 4.295139e+00 -2.839659 5.275584e-03 1.554495e-02
## ZNF576 -1.125608e+00 6.341939e+00 -2.839251 5.281918e-03 1.555975e-02
## WDR82 2.390911e+01 1.305999e+02 2.838870 5.287835e-03 1.557331e-02
## PUS7 4.636448e-01 1.676554e+00 2.837993 5.301486e-03 1.560964e-02
## PRDX5 -8.333956e+01 1.977528e+02 -2.837889 5.303108e-03 1.561054e-02
## ELOVL1 -1.160055e+01 7.439302e+01 -2.837798 5.304528e-03 1.561085e-02
## TNFRSF1A -9.363000e+01 3.181100e+02 -2.837549 5.308416e-03 1.561748e-02
## JARID2 1.294793e+01 5.002538e+01 2.837485 5.309416e-03 1.561748e-02
## TK1 3.743805e+00 5.283466e+00 2.837359 5.311377e-03 1.561898e-02
## ERBIN 5.131714e+01 1.783405e+02 2.837284 5.312560e-03 1.561898e-02
## NOL8 3.949538e+00 2.246275e+01 2.836995 5.317060e-03 1.562834e-02
## ZW10 1.235773e+00 7.974917e+00 2.836714 5.321464e-03 1.563740e-02
## HMGN3 -6.404706e+00 2.976979e+01 -2.836424 5.326000e-03 1.564686e-02
## SNRNP48 3.250553e+00 1.562827e+01 2.835830 5.335308e-03 1.567032e-02
## COX19 -2.372896e+00 1.716230e+01 -2.835563 5.339493e-03 1.567873e-02
## UPF2 1.166834e+01 5.856242e+01 2.835267 5.344129e-03 1.568846e-02
## CYSLTR1 1.190716e+01 3.478829e+01 2.834737 5.352463e-03 1.570904e-02
## SCRN3 2.204400e+00 1.065063e+01 2.834253 5.360072e-03 1.572500e-02
## KMT2A 8.657618e+00 2.829603e+01 2.834223 5.360553e-03 1.572500e-02
## BIVM 9.912949e-01 3.791649e+00 2.833713 5.368587e-03 1.574467e-02
## SEPTIN1 -1.843251e+01 3.454141e+01 -2.833092 5.378374e-03 1.576947e-02
## NCBP2AS2 -2.422101e+00 9.126740e+00 -2.832937 5.380835e-03 1.577279e-02
## PWWP2A 4.227816e+00 2.304911e+01 2.832464 5.388311e-03 1.579080e-02
## LGALS9 -8.239376e+01 1.996380e+02 -2.831539 5.402956e-03 1.582981e-02
## LMNA -6.850465e+00 1.345381e+01 -2.830939 5.412475e-03 1.585378e-02
## OGA 6.681501e+01 2.992402e+02 2.830854 5.413827e-03 1.585383e-02
## SSPN 1.301609e+00 2.199426e+00 2.830643 5.417176e-03 1.585972e-02
## PTPN12 6.344199e+01 2.119369e+02 2.830116 5.425566e-03 1.588036e-02
## FOXN2 2.906759e+01 8.517708e+01 2.829253 5.439310e-03 1.591666e-02
## C19orf47 -1.067553e+00 5.208254e+00 -2.828663 5.448733e-03 1.593964e-02
## SOCS7 1.824680e+00 6.979578e+00 2.828592 5.449880e-03 1.593964e-02
## SPTBN5 -6.537561e-01 1.637391e+00 -2.828509 5.451196e-03 1.593964e-02
## ATAD3A -2.012206e+00 3.543895e+00 -2.828105 5.457668e-03 1.595463e-02
## NSDHL -2.246594e+00 8.814317e+00 -2.827679 5.464474e-03 1.597059e-02
## TRAPPC8 2.029397e+01 6.987621e+01 2.827386 5.469185e-03 1.598042e-02
## ZNF512B -1.615092e+00 4.074057e+00 -2.826947 5.476227e-03 1.599397e-02
## KDM7A 3.835429e+01 1.187623e+02 2.826928 5.476519e-03 1.599397e-02
## CCDC86 -7.892318e-01 3.068816e+00 -2.826485 5.483640e-03 1.601082e-02
## DCXR -1.036529e+01 1.824967e+01 -2.825750 5.495468e-03 1.604141e-02
## GEMIN5 1.384796e+00 6.379240e+00 2.825605 5.497813e-03 1.604431e-02
## REST 7.043536e+00 3.532080e+01 2.825154 5.505068e-03 1.606153e-02
## MAD1L1 -6.603803e+00 1.178844e+01 -2.824996 5.507633e-03 1.606506e-02
## OPLAH -7.017371e+00 8.764658e+00 -2.823533 5.531284e-03 1.613008e-02
## RPRD1B 3.389021e+00 1.997588e+01 2.823402 5.533403e-03 1.613229e-02
## NBN 5.402861e+01 1.330333e+02 2.823001 5.539907e-03 1.614728e-02
## STAT2 1.032634e+02 2.076732e+02 2.822689 5.544975e-03 1.615808e-02
## DNAJB14 1.266922e+01 4.928187e+01 2.821681 5.561356e-03 1.620174e-02
## RAD21 5.062688e+01 2.241692e+02 2.821599 5.562687e-03 1.620174e-02
## CDR2 3.087348e+00 1.259112e+01 2.821026 5.572032e-03 1.622497e-02
## BICRA -1.304631e+00 5.170974e+00 -2.820153 5.586288e-03 1.626249e-02
## KDM1B 1.259060e+01 4.592843e+01 2.819231 5.601383e-03 1.630243e-02
## SNAP47 -1.605086e+00 7.187783e+00 -2.818887 5.607021e-03 1.631484e-02
## HSD17B8 -2.154317e+00 3.798992e+00 -2.818446 5.614259e-03 1.633189e-02
## GOLPH3L 4.237988e+00 1.486673e+01 2.817754 5.625631e-03 1.636096e-02
## OAS2 2.208339e+02 2.480898e+02 2.817452 5.630607e-03 1.637142e-02
## TRAPPC2L -6.864908e+00 2.156604e+01 -2.817234 5.634200e-03 1.637785e-02
## VEZT 2.954366e+00 1.268307e+01 2.816969 5.638570e-03 1.638653e-02
## PEF1 -2.551131e+01 7.664237e+01 -2.816579 5.644994e-03 1.640118e-02
## MYO1A -2.642081e-01 6.631207e-01 -2.814929 5.672289e-03 1.647645e-02
## SNRPA -8.051214e+00 2.112387e+01 -2.814831 5.673916e-03 1.647714e-02
## GCLC 2.860327e+00 1.331350e+01 2.814037 5.687089e-03 1.651135e-02
## AHI1 4.663010e-01 1.419891e+00 2.813850 5.690195e-03 1.651633e-02
## GALM 2.222539e+01 3.332247e+01 2.813575 5.694769e-03 1.652331e-02
## GFI1 7.734784e+00 1.506129e+01 2.813538 5.695386e-03 1.652331e-02
## PECAM1 -1.183437e+02 5.697328e+02 -2.813225 5.700602e-03 1.653439e-02
## SCAF11 3.508078e+01 1.420130e+02 2.812486 5.712914e-03 1.656340e-02
## SAMM50 -4.192822e+00 1.939349e+01 -2.812458 5.713396e-03 1.656340e-02
## CMPK2 7.966926e+01 8.260055e+01 2.811672 5.726512e-03 1.659518e-02
## NEGR1 5.162132e-01 2.112816e+00 2.811595 5.727809e-03 1.659518e-02
## ROM1 -1.577726e+00 3.040250e+00 -2.811550 5.728555e-03 1.659518e-02
## SMDT1 -9.580466e+00 2.230625e+01 -2.811402 5.731037e-03 1.659831e-02
## AZIN2 -3.471414e-01 9.100170e-01 -2.811039 5.737108e-03 1.661184e-02
## FNIP2 2.914204e+00 9.233160e+00 2.810800 5.741114e-03 1.661938e-02
## ANKRD12 2.322017e+01 9.082200e+01 2.810625 5.744057e-03 1.662384e-02
## UTP20 1.522374e+00 4.647699e+00 2.810161 5.751843e-03 1.664232e-02
## MRPL2 -1.960866e+00 6.783673e+00 -2.809994 5.754647e-03 1.664637e-02
## ITM2C 4.361678e+01 5.459665e+01 2.809587 5.761485e-03 1.666208e-02
## NPFF -1.415209e+00 3.625030e+00 -2.809092 5.769809e-03 1.668074e-02
## PRR11 2.218816e+00 1.070429e+01 2.809036 5.770750e-03 1.668074e-02
## ADSS2 1.563989e+01 5.848943e+01 2.808640 5.777433e-03 1.669599e-02
## PRMT7 -2.870117e+00 8.293110e+00 -2.808255 5.783920e-03 1.671067e-02
## CMAS 2.536708e+00 1.506844e+01 2.808071 5.787023e-03 1.671556e-02
## BAP1 -9.908082e+00 6.256992e+01 -2.807811 5.791418e-03 1.672418e-02
## SREK1 6.038467e+00 3.240577e+01 2.807576 5.795390e-03 1.673154e-02
## EFNA3 -3.614661e-01 1.096881e+00 -2.807493 5.796788e-03 1.673154e-02
## DNAJC15 4.363562e+00 2.523826e+01 2.807150 5.802588e-03 1.674421e-02
## BBS7 1.013915e+00 4.894015e+00 2.806736 5.809610e-03 1.676039e-02
## ZFX 1.039162e+01 3.738306e+01 2.804327 5.850561e-03 1.687038e-02
## PPP1R12B 2.074372e+01 5.287306e+01 2.804325 5.850579e-03 1.687038e-02
## ALS2 2.026663e+00 1.020565e+01 2.803043 5.872490e-03 1.692944e-02
## TMEM62 3.042569e+00 1.265611e+01 2.802806 5.876535e-03 1.693461e-02
## PLK2 8.010018e-01 2.035528e+00 2.802771 5.877137e-03 1.693461e-02
## APPL1 4.396400e+00 2.426074e+01 2.801885 5.892339e-03 1.697429e-02
## SMIM7 -4.157441e+00 2.801361e+01 -2.800203 5.921260e-03 1.705346e-02
## POP7 -1.650358e+00 5.072606e+00 -2.799995 5.924857e-03 1.705968e-02
## ACP1 5.293109e+00 3.509216e+01 2.799493 5.933510e-03 1.708044e-02
## GSTO1 -4.625515e+01 1.312624e+02 -2.799136 5.939691e-03 1.709370e-02
## CAT -8.131221e+01 2.294727e+02 -2.799060 5.940997e-03 1.709370e-02
## TNFRSF10A 1.637830e+00 6.817997e+00 2.798662 5.947888e-03 1.710938e-02
## NME2 -3.374966e+01 8.205699e+01 -2.798032 5.958799e-03 1.713661e-02
## AASDHPPT 3.096443e+00 1.933586e+01 2.796996 5.976796e-03 1.718419e-02
## FUT11 1.001800e+00 3.035451e+00 2.796809 5.980052e-03 1.718939e-02
## MTLN -1.398400e+00 2.240073e+00 -2.795541 6.002143e-03 1.724871e-02
## KATNA1 -2.908824e+00 1.846442e+01 -2.792623 6.053273e-03 1.739143e-02
## POLD2 -4.918837e+00 1.147778e+01 -2.792377 6.057599e-03 1.739964e-02
## SLC35A4 -9.875217e+00 5.713100e+01 -2.791982 6.064547e-03 1.741294e-02
## ZNF510 1.775873e+00 7.945826e+00 2.791947 6.065164e-03 1.741294e-02
## MTERF2 -1.054939e+00 4.866048e+00 -2.791658 6.070270e-03 1.742338e-02
## ACOT11 1.259965e+00 6.939236e+00 2.790762 6.086088e-03 1.746456e-02
## TLE3 -5.314742e+01 1.980045e+02 -2.790674 6.087645e-03 1.746480e-02
## GUCY1B1 3.876782e+00 1.001657e+01 2.788890 6.119268e-03 1.755127e-02
## PHLPP2 1.106630e+00 3.143928e+00 2.788763 6.121518e-03 1.755259e-02
## LIN37 -3.585981e+00 1.274398e+01 -2.788697 6.122687e-03 1.755259e-02
## SPSB2 -2.769233e+00 5.437133e+00 -2.788554 6.125230e-03 1.755564e-02
## CPLANE1 8.124036e-01 2.175872e+00 2.788338 6.129082e-03 1.756243e-02
## WHAMM 4.353664e+00 2.010645e+01 2.787735 6.139811e-03 1.758893e-02
## SLC26A8 1.583858e+01 3.280014e+01 2.787561 6.142922e-03 1.759359e-02
## CCNY -2.771291e+01 1.369076e+02 -2.787039 6.152233e-03 1.761600e-02
## ELP5 -3.239750e+00 1.575679e+01 -2.786853 6.155552e-03 1.762125e-02
## RIMS3 6.016682e-01 2.478128e+00 2.785275 6.183786e-03 1.769577e-02
## USP3 3.050658e+01 1.450562e+02 2.785232 6.184567e-03 1.769577e-02
## DTWD2 1.345190e+00 4.652920e+00 2.784822 6.191923e-03 1.771254e-02
## PMPCA -3.154318e+00 1.365694e+01 -2.784553 6.196753e-03 1.772208e-02
## C11orf98 -1.091108e+01 3.301385e+01 -2.784248 6.202235e-03 1.773349e-02
## WDR44 4.465058e+00 1.693130e+01 2.782385 6.235823e-03 1.782523e-02
## SARNP -2.050495e+01 6.445111e+01 -2.782050 6.241884e-03 1.783610e-02
## YWHAQ 1.262566e+01 1.029340e+02 2.782008 6.242636e-03 1.783610e-02
## SPOUT1 -7.399055e+00 2.331154e+01 -2.781843 6.245630e-03 1.784036e-02
## METTL3 3.590414e+00 2.451178e+01 2.781106 6.258988e-03 1.787421e-02
## TRIM38 4.887547e+01 1.433815e+02 2.780173 6.275926e-03 1.791827e-02
## SECISBP2 5.122827e+00 4.681965e+01 2.779407 6.289856e-03 1.795344e-02
## SPTY2D1 1.002303e+01 3.829898e+01 2.779276 6.292240e-03 1.795344e-02
## IFI27 1.570882e+02 1.304780e+02 2.779246 6.292787e-03 1.795344e-02
## ZBTB44 1.181578e+01 5.867273e+01 2.778526 6.305919e-03 1.798658e-02
## MRPS25 -3.877433e+00 1.919950e+01 -2.778299 6.310065e-03 1.799408e-02
## SCO1 1.611046e+00 1.588251e+01 2.777283 6.328666e-03 1.804278e-02
## ZC3H13 7.554945e+00 3.932553e+01 2.777176 6.330617e-03 1.804401e-02
## CDK3 -1.848276e+00 8.252463e+00 -2.776909 6.335513e-03 1.805038e-02
## SLC25A17 1.144996e+00 7.619363e+00 2.776888 6.335897e-03 1.805038e-02
## ZNF346 1.586659e+00 1.263160e+01 2.776130 6.349809e-03 1.808567e-02
## THUMPD3 2.267963e+00 1.289320e+01 2.775599 6.359575e-03 1.810914e-02
## PRKAB2 2.776522e+00 1.409569e+01 2.774458 6.380597e-03 1.816406e-02
## PSMC3IP 3.978389e-01 1.694968e+00 2.774386 6.381925e-03 1.816406e-02
## LRFN1 -4.509503e+00 1.284972e+01 -2.774282 6.383860e-03 1.816521e-02
## MYCL -5.620725e+00 1.579197e+01 -2.773735 6.393960e-03 1.818958e-02
## C21orf91 9.835742e+00 4.130028e+01 2.772886 6.409675e-03 1.822992e-02
## BTBD3 1.272135e+00 4.210206e+00 2.771129 6.442315e-03 1.831835e-02
## IBTK 5.311473e+00 2.250158e+01 2.770474 6.454517e-03 1.834865e-02
## BCL3 -2.273718e+01 6.741211e+01 -2.769942 6.464442e-03 1.837246e-02
## IFI44 1.883531e+02 2.112690e+02 2.769638 6.470123e-03 1.838135e-02
## NFKBIB -3.850601e+00 1.648650e+01 -2.769609 6.470670e-03 1.838135e-02
## TMX3 7.807701e+00 3.815555e+01 2.769485 6.472976e-03 1.838350e-02
## NFE2 -1.939715e+02 5.156431e+02 -2.769313 6.476193e-03 1.838823e-02
## HEXD -6.208532e+00 1.465741e+01 -2.769196 6.478389e-03 1.839007e-02
## BET1L -6.263732e+00 5.463977e+01 -2.768442 6.492515e-03 1.842575e-02
## MVK -1.092883e+00 3.331573e+00 -2.768322 6.494771e-03 1.842775e-02
## MED10 -2.257668e+00 1.490351e+01 -2.768052 6.499830e-03 1.843769e-02
## VAMP2 -3.243502e+01 1.433549e+02 -2.767872 6.503210e-03 1.844123e-02
## CEP120 5.728949e+00 2.569100e+01 2.767784 6.504867e-03 1.844123e-02
## AHCTF1 4.064148e+01 1.191115e+02 2.767673 6.506947e-03 1.844123e-02
## HMGCR 1.921150e+01 8.049557e+01 2.767654 6.507297e-03 1.844123e-02
## KCNMB3 2.465081e-01 8.327175e-01 2.767462 6.510914e-03 1.844707e-02
## EBPL -2.589807e+00 1.060662e+01 -2.767356 6.512910e-03 1.844832e-02
## ZFP64 -1.259948e+00 3.132364e+00 -2.767224 6.515392e-03 1.845028e-02
## CDK13 7.672857e+00 3.860281e+01 2.767153 6.516714e-03 1.845028e-02
## IFI27L1 2.171981e+00 4.431149e+00 2.766948 6.520587e-03 1.845626e-02
## MIS18BP1 8.485608e+00 3.257726e+01 2.766847 6.522482e-03 1.845626e-02
## PARP8 8.285057e+01 2.770455e+02 2.766793 6.523495e-03 1.845626e-02
## MRPS11 -3.911339e+00 1.483592e+01 -2.765514 6.547616e-03 1.852009e-02
## TTN 8.845359e+00 2.737567e+01 2.765286 6.551931e-03 1.852787e-02
## KLC1 -7.232746e+00 5.548037e+01 -2.765105 6.555364e-03 1.853316e-02
## ZNF257 3.526823e-01 9.942495e-01 2.764606 6.564796e-03 1.855541e-02
## PTGS1 4.511154e+01 1.412529e+02 2.764449 6.567765e-03 1.855937e-02
## GOLGA3 3.280247e+00 2.604738e+01 2.764064 6.575081e-03 1.857150e-02
## KDM4A 4.466832e+00 3.218762e+01 2.764058 6.575188e-03 1.857150e-02
## IL23A -6.572435e-01 1.405165e+00 -2.763208 6.591327e-03 1.861265e-02
## PRKAA1 2.119611e+01 7.547090e+01 2.763038 6.594565e-03 1.861736e-02
## ZNRF1 -1.519228e+00 4.057024e+00 -2.762635 6.602236e-03 1.863318e-02
## RPL34 -2.059011e+02 4.798503e+02 -2.762578 6.603309e-03 1.863318e-02
## CCDC9B 1.237310e+00 3.939992e+00 2.761601 6.621944e-03 1.868132e-02
## ZFYVE28 -9.969954e-01 2.388811e+00 -2.759326 6.665506e-03 1.879974e-02
## GTF2E1 2.594994e+00 1.610145e+01 2.758977 6.672203e-03 1.881415e-02
## PRPSAP1 2.717910e+00 1.801430e+01 2.758577 6.679901e-03 1.883138e-02
## ALG8 1.749796e+00 9.727654e+00 2.758191 6.687324e-03 1.884783e-02
## SASH3 -6.771697e+01 3.505792e+02 -2.758057 6.689911e-03 1.885064e-02
## MRM2 -2.023777e+00 1.210393e+01 -2.757172 6.706974e-03 1.888989e-02
## SCCPDH -3.462969e+00 1.456021e+01 -2.757170 6.707025e-03 1.888989e-02
## USP45 1.030584e+00 3.448391e+00 2.756871 6.712792e-03 1.889821e-02
## PSD4 -4.295615e+01 2.345328e+02 -2.756852 6.713168e-03 1.889821e-02
## DDX58 7.941297e+01 1.574548e+02 2.756119 6.727340e-03 1.893361e-02
## ABCA13 1.148180e+01 1.089245e+01 2.755625 6.736925e-03 1.895609e-02
## ITPR2 9.657074e+00 3.673179e+01 2.755436 6.740575e-03 1.896186e-02
## KDM6A 1.417839e+01 5.067786e+01 2.755234 6.744505e-03 1.896842e-02
## GSN -5.978124e+01 1.754722e+02 -2.755020 6.748658e-03 1.897560e-02
## SSR2 -5.039150e+01 3.097936e+02 -2.754709 6.754709e-03 1.898563e-02
## DCP1A 4.587925e+00 2.479981e+01 2.754672 6.755427e-03 1.898563e-02
## PAN3 1.970946e+01 7.822233e+01 2.754266 6.763311e-03 1.900329e-02
## IARS2 6.480032e+00 3.979436e+01 2.753853 6.771352e-03 1.902137e-02
## APC 1.770022e+01 5.278771e+01 2.752851 6.790900e-03 1.907177e-02
## HSD17B4 8.882599e+00 4.753865e+01 2.752750 6.792873e-03 1.907279e-02
## COPB1 2.124076e+01 1.048339e+02 2.752583 6.796149e-03 1.907747e-02
## ATF5 -2.463936e+00 7.087778e+00 -2.751910 6.809307e-03 1.910562e-02
## CPNE3 3.217607e+01 8.814839e+01 2.751905 6.809397e-03 1.910562e-02
## SLAMF7 2.223905e+01 5.802571e+01 2.751582 6.815723e-03 1.911884e-02
## AGFG2 -3.410241e+00 7.216096e+00 -2.750459 6.837772e-03 1.917616e-02
## ZZEF1 1.461123e+01 7.937154e+01 2.750285 6.841187e-03 1.918120e-02
## PIN4 -2.508325e+00 1.310390e+01 -2.749918 6.848417e-03 1.919693e-02
## TSR2 -4.365545e+00 2.741597e+01 -2.749151 6.863519e-03 1.923472e-02
## FDX2 -1.229490e+00 2.842168e+00 -2.749014 6.866229e-03 1.923777e-02
## ZDHHC19 -2.523278e+01 1.671525e+01 -2.747995 6.886353e-03 1.928751e-02
## RFX2 -1.122586e+01 2.818168e+01 -2.747951 6.887236e-03 1.928751e-02
## FUBP1 1.133099e+01 4.982512e+01 2.747746 6.891291e-03 1.929431e-02
## IRF5 -1.383131e+01 5.233745e+01 -2.747457 6.897010e-03 1.930577e-02
## ANKRD39 -9.369924e-01 2.196243e+00 -2.747150 6.903087e-03 1.931822e-02
## SULT1A3 -2.069276e+01 8.117230e+01 -2.746590 6.914206e-03 1.934477e-02
## ADCY7 2.708287e+01 9.889263e+01 2.746349 6.918992e-03 1.935359e-02
## SMCR8 1.850241e+01 7.548509e+01 2.745832 6.929272e-03 1.937778e-02
## FAM76B 8.295567e+00 3.031518e+01 2.745631 6.933260e-03 1.938436e-02
## EPHB4 -8.175308e+00 1.796142e+01 -2.745409 6.937676e-03 1.939214e-02
## SP140 1.830691e+01 4.515005e+01 2.744693 6.951969e-03 1.942751e-02
## S100A11 -6.650553e+02 1.988458e+03 -2.743699 6.971811e-03 1.947837e-02
## CLIP4 4.567084e+00 1.803065e+01 2.743185 6.982114e-03 1.950256e-02
## PCDHA4 1.179882e+00 4.803577e+00 2.742660 6.992621e-03 1.952731e-02
## FLYWCH1 -2.760542e+00 6.890713e+00 -2.742474 6.996369e-03 1.953318e-02
## NFYA 1.356501e+01 5.633768e+01 2.742041 7.005054e-03 1.955282e-02
## CFDP1 -3.778281e+00 2.735743e+01 -2.741798 7.009940e-03 1.956186e-02
## C6orf120 5.232131e+00 3.054948e+01 2.741537 7.015195e-03 1.957192e-02
## ADD3 7.305815e+01 2.493372e+02 2.741069 7.024609e-03 1.959357e-02
## GPD1L 1.784107e+00 9.288984e+00 2.739993 7.046310e-03 1.964826e-02
## R3HDM2 9.593963e+00 4.754458e+01 2.739933 7.047528e-03 1.964826e-02
## COMTD1 -5.391831e-01 7.595181e-01 -2.739674 7.052770e-03 1.965825e-02
## PEX1 2.438882e+00 1.211659e+01 2.739284 7.060659e-03 1.967562e-02
## RSAD1 -4.918876e+00 1.997019e+01 -2.739053 7.065322e-03 1.967968e-02
## KLHDC10 3.261333e+00 2.108948e+01 2.739047 7.065438e-03 1.967968e-02
## MTHFD2 1.454089e+01 4.943303e+01 2.738622 7.074048e-03 1.969904e-02
## PNPT1 8.577728e+00 1.826990e+01 2.738521 7.076096e-03 1.970012e-02
## EIF3I -1.640626e+01 8.362708e+01 -2.738202 7.082566e-03 1.971202e-02
## KIF13B 2.968887e+00 1.598210e+01 2.738147 7.083697e-03 1.971202e-02
## RPS13 -8.664772e+01 3.360920e+02 -2.737728 7.092196e-03 1.973105e-02
## PCYOX1 2.110930e+00 1.019511e+01 2.737379 7.099288e-03 1.974614e-02
## BTBD6 -5.239386e+00 2.206897e+01 -2.736938 7.108271e-03 1.976649e-02
## ZDHHC2 9.219360e+00 3.960195e+01 2.736023 7.126927e-03 1.981373e-02
## ADRB2 -4.114412e+00 1.692708e+01 -2.735276 7.142176e-03 1.985147e-02
## PPP1R21 1.027886e+01 5.109023e+01 2.734772 7.152490e-03 1.987548e-02
## TRRAP 4.347863e+00 1.691544e+01 2.734342 7.161310e-03 1.989532e-02
## RSKR 7.452049e-01 3.583314e+00 2.733905 7.170260e-03 1.991552e-02
## INTS10 -4.780123e+00 4.195062e+01 -2.732780 7.193385e-03 1.997508e-02
## SPEN 1.498927e+01 5.806554e+01 2.732467 7.199824e-03 1.998550e-02
## TSPAN17 -6.455184e+00 2.286245e+01 -2.732434 7.200509e-03 1.998550e-02
## ZAP70 -3.217184e+01 5.520149e+01 -2.730296 7.244676e-03 2.010338e-02
## KLC4 -2.993699e+00 1.591845e+01 -2.729469 7.261824e-03 2.014625e-02
## ODR4 2.153885e+00 1.227280e+01 2.729228 7.266831e-03 2.015543e-02
## CPSF1 -8.095717e+00 2.130243e+01 -2.726605 7.321499e-03 2.030231e-02
## CENPQ 9.861794e-01 3.905702e+00 2.726448 7.324789e-03 2.030669e-02
## CCNJ 9.867630e-01 3.942130e+00 2.725412 7.346486e-03 2.036208e-02
## VOPP1 -3.550026e+01 1.332950e+02 -2.725276 7.349355e-03 2.036527e-02
## GDPD5 -5.198837e+00 9.429344e+00 -2.724954 7.356107e-03 2.037922e-02
## UBXN4 2.672385e+01 1.113414e+02 2.724686 7.361737e-03 2.039005e-02
## ATP8B3 4.419013e-01 1.436782e+00 2.724458 7.366528e-03 2.039856e-02
## RSPRY1 4.232772e+00 2.862161e+01 2.724182 7.372331e-03 2.040986e-02
## ARHGAP30 -1.157399e+02 8.068845e+02 -2.723985 7.376490e-03 2.041661e-02
## PPM1G -7.592424e+00 5.501452e+01 -2.723781 7.380772e-03 2.042370e-02
## TMEM154 1.308978e+02 4.303347e+02 2.722974 7.397795e-03 2.046602e-02
## UBALD2 -6.355811e+01 1.670303e+02 -2.722759 7.402345e-03 2.047384e-02
## TMEM18 -1.848468e+00 9.872214e+00 -2.722597 7.405760e-03 2.047851e-02
## UFL1 4.528730e+00 1.805867e+01 2.722144 7.415353e-03 2.050025e-02
## CDC73 9.063683e+00 3.898623e+01 2.721992 7.418567e-03 2.050050e-02
## BTBD7 3.444196e+00 1.779174e+01 2.721976 7.418901e-03 2.050050e-02
## RNPEP -1.557433e+01 7.660925e+01 -2.720982 7.439955e-03 2.055390e-02
## ZNF276 -1.043966e+01 7.823383e+01 -2.720881 7.442106e-03 2.055505e-02
## MED21 2.222818e+00 1.232508e+01 2.720665 7.446696e-03 2.056294e-02
## UXS1 3.499918e+00 2.384312e+01 2.720390 7.452534e-03 2.057427e-02
## SCAF4 2.040631e+00 1.302500e+01 2.720093 7.458843e-03 2.058689e-02
## ELAVL1 2.105524e+00 2.192804e+01 2.719490 7.471693e-03 2.061756e-02
## CEACAM6 3.370567e+01 3.525454e+01 2.719088 7.480250e-03 2.063637e-02
## MR1 1.217681e+01 5.909118e+01 2.718131 7.500699e-03 2.068798e-02
## RPRD1A 4.795053e+00 2.419009e+01 2.717402 7.516283e-03 2.072151e-02
## NT5C3B -2.464256e+00 5.489423e+00 -2.717399 7.516353e-03 2.072151e-02
## CCAR1 4.776060e+00 3.225730e+01 2.717305 7.518375e-03 2.072227e-02
## MAGI3 4.527974e-01 1.382790e+00 2.717069 7.523437e-03 2.072266e-02
## C7orf26 -3.321729e+00 2.206129e+01 -2.716988 7.525153e-03 2.072266e-02
## KLF6 1.716155e+02 5.865033e+02 2.716957 7.525831e-03 2.072266e-02
## ZNF383 -1.046261e+00 7.555948e+00 -2.716896 7.527139e-03 2.072266e-02
## TDRKH 6.335389e-01 2.357464e+00 2.716891 7.527251e-03 2.072266e-02
## IGFBP4 -1.996917e+00 2.835312e+00 -2.716575 7.534029e-03 2.073650e-02
## ABCG1 1.297776e+01 3.368594e+01 2.716207 7.541917e-03 2.075340e-02
## KHK -1.421336e+00 2.326318e+00 -2.715203 7.563526e-03 2.080619e-02
## MTMR1 -9.259252e+00 2.914113e+01 -2.715153 7.564613e-03 2.080619e-02
## STRN3 3.468084e+00 1.439236e+01 2.714562 7.577338e-03 2.083636e-02
## ZDHHC13 3.318225e+00 1.513708e+01 2.714460 7.579541e-03 2.083759e-02
## MTMR11 -4.097002e+00 1.378616e+01 -2.714295 7.583101e-03 2.084255e-02
## LILRB5 -2.518284e+00 5.902708e+00 -2.713881 7.592047e-03 2.085962e-02
## OAS3 2.236413e+02 2.316988e+02 2.713845 7.592833e-03 2.085962e-02
## ENPP4 5.830852e+00 1.494631e+01 2.713760 7.594677e-03 2.085986e-02
## RCHY1 7.343626e+00 3.129796e+01 2.713675 7.596506e-03 2.086005e-02
## ENTR1 -2.310286e+00 1.042726e+01 -2.713567 7.598842e-03 2.086164e-02
## PRKD2 -2.453125e+01 8.720458e+01 -2.712605 7.619684e-03 2.091303e-02
## DDX19B -2.487459e+00 1.611731e+01 -2.712540 7.621090e-03 2.091303e-02
## TNPO2 -3.299242e+00 2.371625e+01 -2.712194 7.628594e-03 2.092878e-02
## USP32 7.179714e+01 2.223904e+02 2.711676 7.639846e-03 2.095192e-02
## HSPA4L 4.795732e-01 1.974137e+00 2.711643 7.640562e-03 2.095192e-02
## ARMH1 -5.149719e+00 9.602009e+00 -2.711356 7.646806e-03 2.096057e-02
## HDDC2 -3.369245e+00 1.591801e+01 -2.711336 7.647251e-03 2.096057e-02
## NSA2 -1.133393e+01 6.509212e+01 -2.710490 7.665674e-03 2.100621e-02
## TAGAP 8.954181e+01 2.715670e+02 2.710391 7.667825e-03 2.100725e-02
## MEGF9 2.336350e+02 6.226543e+02 2.709881 7.678950e-03 2.103288e-02
## WBP1L -2.303294e+01 1.315447e+02 -2.709300 7.691658e-03 2.106282e-02
## LEMD3 7.419732e+00 3.364193e+01 2.708387 7.711643e-03 2.111267e-02
## NIBAN3 -5.062104e+00 1.009506e+01 -2.708055 7.718941e-03 2.112777e-02
## ZNRD2 -1.474375e+00 2.601572e+00 -2.706909 7.744103e-03 2.119175e-02
## FHL1 5.278595e+00 1.411544e+01 2.706582 7.751317e-03 2.120660e-02
## RAF1 8.132253e+01 3.638603e+02 2.706099 7.761965e-03 2.123084e-02
## AKAP5 6.329157e-01 1.764332e+00 2.705632 7.772272e-03 2.125413e-02
## IFI44L 2.220630e+02 2.146960e+02 2.705316 7.779235e-03 2.126826e-02
## PTMA -7.582060e+01 4.247802e+02 -2.704088 7.806419e-03 2.133460e-02
## SLC35A1 9.527369e+00 4.787335e+01 2.704058 7.807095e-03 2.133460e-02
## MED14 3.875934e+00 1.837739e+01 2.703707 7.814871e-03 2.134945e-02
## CD79B -2.854502e+01 4.278334e+01 -2.703650 7.816131e-03 2.134945e-02
## XRRA1 -8.376822e+00 1.953467e+01 -2.702715 7.836903e-03 2.139940e-02
## PROSER3 -9.143807e-01 6.664087e+00 -2.702665 7.838027e-03 2.139940e-02
## FRMD4A 1.218816e+00 3.503061e+00 2.702441 7.842997e-03 2.140804e-02
## GGT7 -1.938190e+00 5.028157e+00 -2.702242 7.847432e-03 2.141522e-02
## RAB43 -3.080651e+01 6.569360e+01 -2.701312 7.868173e-03 2.146688e-02
## TAP1 2.391817e+02 5.968937e+02 2.701097 7.872988e-03 2.147508e-02
## MED27 -2.328863e+00 9.809472e+00 -2.700883 7.877753e-03 2.148313e-02
## ABCC2 2.798295e+00 7.386530e+00 2.700314 7.890489e-03 2.151292e-02
## MAZ -3.533277e+01 1.201400e+02 -2.700008 7.897330e-03 2.152662e-02
## TMOD2 1.006875e+01 3.218961e+01 2.699817 7.901622e-03 2.153337e-02
## RWDD2B 9.076375e-01 4.272339e+00 2.699736 7.903446e-03 2.153339e-02
## SRRM1 7.116846e+00 4.027897e+01 2.699219 7.915041e-03 2.156003e-02
## GTF2F2 -4.424567e+00 1.956746e+01 -2.698186 7.938260e-03 2.161832e-02
## INPP5D 4.109166e+01 2.307735e+02 2.697661 7.950065e-03 2.164490e-02
## UBQLN4 -3.979904e+00 1.762492e+01 -2.697590 7.951670e-03 2.164490e-02
## MRM3 -1.596965e+00 5.350658e+00 -2.697173 7.961089e-03 2.166556e-02
## SLC25A51 1.287836e+00 3.039906e+00 2.696685 7.972089e-03 2.169052e-02
## CCDC84 -1.511297e+00 7.097132e+00 -2.695963 7.988419e-03 2.172997e-02
## ENO3 -1.267011e+00 3.130735e+00 -2.694506 8.021456e-03 2.181064e-02
## PDLIM5 6.283129e+00 3.178956e+01 2.694493 8.021755e-03 2.181064e-02
## TDRD7 2.236037e+01 6.044724e+01 2.693947 8.034170e-03 2.183149e-02
## SLX4IP 1.459541e+00 6.511272e+00 2.693921 8.034771e-03 2.183149e-02
## GPRIN1 6.515291e-01 2.205504e+00 2.693913 8.034945e-03 2.183149e-02
## AP5M1 7.628235e+00 4.154590e+01 2.693458 8.045309e-03 2.185464e-02
## MORN3 -8.376128e-01 2.673827e+00 -2.692788 8.060581e-03 2.189111e-02
## ERCC8 8.577116e-01 5.337944e+00 2.692239 8.073117e-03 2.192014e-02
## LYRM4 -3.628616e+00 9.831868e+00 -2.692029 8.077915e-03 2.192589e-02
## TMEM135 1.109647e+00 5.174368e+00 2.691985 8.078934e-03 2.192589e-02
## SECISBP2L 8.597850e+00 3.151118e+01 2.691741 8.084518e-03 2.193583e-02
## IFIT2 4.952128e+02 6.826143e+02 2.691663 8.086292e-03 2.193583e-02
## AMD1 3.421636e+01 1.446059e+02 2.690986 8.101794e-03 2.196945e-02
## LONP2 1.543477e+01 4.934011e+01 2.690960 8.102394e-03 2.196945e-02
## BTBD1 6.648631e+00 4.617942e+01 2.690677 8.108889e-03 2.198204e-02
## CA13 5.017514e-01 2.137345e+00 2.689666 8.132115e-03 2.203375e-02
## DHX30 -3.400314e+00 1.784720e+01 -2.689628 8.132986e-03 2.203375e-02
## CENPC 3.512093e+00 1.437690e+01 2.689604 8.133537e-03 2.203375e-02
## GOT1 1.382192e+00 6.205814e+00 2.689282 8.140955e-03 2.204881e-02
## SLC44A2 -1.023325e+02 4.998173e+02 -2.688506 8.158839e-03 2.209220e-02
## DHX9 1.630183e+01 1.185330e+02 2.687729 8.176778e-03 2.213572e-02
## SEPTIN7 3.309450e+01 1.790245e+02 2.686567 8.203692e-03 2.220351e-02
## GABPA 7.148650e+00 3.536235e+01 2.685759 8.222451e-03 2.224911e-02
## RPUSD3 -2.161126e+00 9.020370e+00 -2.685680 8.224291e-03 2.224911e-02
## PNMA3 -1.104871e+00 1.748211e+00 -2.685237 8.234575e-03 2.227185e-02
## CA11 -1.048408e+00 2.080973e+00 -2.684917 8.242025e-03 2.228692e-02
## ETV3 5.357237e+00 2.467128e+01 2.683465 8.275899e-03 2.237330e-02
## COLEC12 -4.867266e-01 1.902017e+00 -2.683386 8.277743e-03 2.237330e-02
## MRPS2 -3.758798e+00 8.503008e+00 -2.683108 8.284259e-03 2.238581e-02
## PTPMT1 -3.966329e+00 1.691512e+01 -2.682490 8.298728e-03 2.241980e-02
## URB2 6.710011e-01 2.695909e+00 2.682307 8.303003e-03 2.242624e-02
## TRAFD1 5.476530e+01 1.844486e+02 2.681441 8.323331e-03 2.247383e-02
## MTMR6 2.372476e+01 8.538179e+01 2.681395 8.324412e-03 2.247383e-02
## EEF2KMT -1.764950e+00 5.516544e+00 -2.681122 8.330827e-03 2.248603e-02
## S1PR3 3.597325e+00 1.022066e+01 2.680742 8.339777e-03 2.250506e-02
## FAHD2B -1.557105e+00 3.477513e+00 -2.680599 8.343128e-03 2.250898e-02
## UHRF1BP1L 1.995905e+01 6.272811e+01 2.679775 8.362566e-03 2.255630e-02
## ZNF224 4.233203e+00 2.327206e+01 2.679681 8.364783e-03 2.255648e-02
## NAA50 1.477031e+01 9.630966e+01 2.679611 8.366438e-03 2.255648e-02
## LILRB1 -1.514468e+01 4.010830e+01 -2.679185 8.376480e-03 2.257842e-02
## SLC4A7 3.618099e+00 9.586608e+00 2.678979 8.381356e-03 2.258643e-02
## MFSD4B 5.509260e-01 3.108766e+00 2.678358 8.396061e-03 2.262092e-02
## CANX 2.924822e+01 1.956729e+02 2.677920 8.406425e-03 2.264370e-02
## ARNT 1.003814e+01 5.080378e+01 2.677738 8.410732e-03 2.264893e-02
## CENPO 2.074228e+00 6.808000e+00 2.677677 8.412188e-03 2.264893e-02
## C7orf31 6.345086e-01 4.481170e+00 2.677529 8.415694e-03 2.265323e-02
## MAN2A2 1.339373e+02 3.448806e+02 2.677447 8.417658e-03 2.265337e-02
## H1-10 -1.030230e+01 1.852315e+01 -2.677199 8.423527e-03 2.266403e-02
## HCST -2.132071e+01 4.651372e+01 -2.676748 8.434258e-03 2.268614e-02
## PARD3 1.308184e+00 3.609685e+00 2.676692 8.435572e-03 2.268614e-02
## PTGIR -3.265921e+00 7.081861e+00 -2.675685 8.459563e-03 2.274550e-02
## GCC1 7.870252e+00 3.954041e+01 2.674737 8.482178e-03 2.280114e-02
## DPH3P1 4.296009e-01 1.590977e+00 2.674346 8.491550e-03 2.282116e-02
## AP3M1 5.492635e+00 3.754818e+01 2.673767 8.505392e-03 2.285318e-02
## MAP3K10 -6.639000e-01 2.064994e+00 -2.672921 8.525679e-03 2.289956e-02
## PRR12 -1.131797e+00 4.883483e+00 -2.672887 8.526514e-03 2.289956e-02
## CASR 1.314881e+00 5.321598e+00 2.672055 8.546502e-03 2.294706e-02
## NXPE3 1.070068e+01 5.248253e+01 2.671990 8.548070e-03 2.294706e-02
## C1QA -1.534429e+01 1.742241e+01 -2.671856 8.551286e-03 2.295050e-02
## FTO 1.645189e+00 6.696907e+00 2.671310 8.564448e-03 2.298062e-02
## SETDB2 2.258486e+00 1.293624e+01 2.671171 8.567805e-03 2.298443e-02
## POLR2H -5.361157e+00 1.661062e+01 -2.670741 8.578173e-03 2.300704e-02
## ZNF609 4.893619e+00 2.070060e+01 2.670590 8.581817e-03 2.300851e-02
## SRSF4 8.434309e+00 6.388645e+01 2.670558 8.582602e-03 2.300851e-02
## BBS12 3.599030e-01 1.604934e+00 2.670156 8.592302e-03 2.302931e-02
## PDIA6 2.498147e+01 1.040426e+02 2.669369 8.611349e-03 2.307515e-02
## RNGTT 3.301254e+00 1.787533e+01 2.668663 8.628489e-03 2.311585e-02
## THYN1 -7.078846e+00 3.044662e+01 -2.668209 8.639505e-03 2.314014e-02
## MOB2 -1.134581e+01 3.492555e+01 -2.667787 8.649770e-03 2.316240e-02
## NAP1L5 3.142674e-01 1.092955e+00 2.667351 8.660386e-03 2.318559e-02
## SPC24 1.495696e+00 2.788181e+00 2.666495 8.681257e-03 2.323548e-02
## DNAH1 3.896914e+00 2.261873e+01 2.666426 8.682936e-03 2.323548e-02
## SMU1 5.526816e+00 6.270923e+01 2.665942 8.694749e-03 2.326184e-02
## DAZAP1 -6.142978e+00 2.823407e+01 -2.665449 8.706802e-03 2.328883e-02
## ZNF654 5.891810e+00 2.141354e+01 2.664938 8.719324e-03 2.331707e-02
## SETD6 -2.221627e+00 7.474746e+00 -2.664513 8.729736e-03 2.333965e-02
## SLC9A6 3.041435e+00 1.768685e+01 2.664049 8.741118e-03 2.336481e-02
## ELOA 2.943666e+00 2.736178e+01 2.663863 8.745700e-03 2.337179e-02
## PCK2 -3.636881e+00 1.423518e+01 -2.663755 8.748342e-03 2.337358e-02
## ALKBH5 -5.074654e+00 5.162064e+01 -2.663263 8.760450e-03 2.340066e-02
## IFIT3 5.914019e+02 7.003602e+02 2.662585 8.777160e-03 2.343522e-02
## NFS1 1.023320e+00 1.025568e+01 2.662577 8.777339e-03 2.343522e-02
## NRBP1 -1.933343e+01 1.331079e+02 -2.662362 8.782640e-03 2.344409e-02
## ALG12 -1.665377e+00 9.022112e+00 -2.662120 8.788622e-03 2.345478e-02
## LRG1 -1.472144e+02 2.910852e+02 -2.661736 8.798104e-03 2.347481e-02
## NOLC1 5.319665e+00 2.680148e+01 2.661082 8.814271e-03 2.351265e-02
## ZSCAN9 8.937529e-01 4.782326e+00 2.658192 8.886038e-03 2.369877e-02
## EID2B -4.093028e-01 1.626585e+00 -2.657621 8.900282e-03 2.372986e-02
## PERP 1.213967e+00 2.418782e+00 2.657486 8.903644e-03 2.372986e-02
## CBX6 -7.013909e+00 3.779113e+01 -2.657484 8.903699e-03 2.372986e-02
## AKR1A1 -1.187953e+01 4.717125e+01 -2.656718 8.922860e-03 2.377395e-02
## EIF3B -1.263588e+01 5.184686e+01 -2.656662 8.924253e-03 2.377395e-02
## SHPRH 2.040075e+00 7.974053e+00 2.656527 8.927623e-03 2.377759e-02
## TMEM223 -1.315801e+00 4.657895e+00 -2.656196 8.935907e-03 2.378910e-02
## FUT4 7.086180e+00 1.925956e+01 2.656194 8.935956e-03 2.378910e-02
## SNRNP200 1.656486e+01 1.389758e+02 2.656016 8.940419e-03 2.379564e-02
## PNISR 3.257600e+01 1.664202e+02 2.655447 8.954698e-03 2.382830e-02
## TOPORS 1.659350e+01 5.086077e+01 2.655118 8.962969e-03 2.384496e-02
## USP47 7.360429e+00 4.739430e+01 2.654828 8.970254e-03 2.385512e-02
## CHRNE -1.142248e+00 2.193163e+00 -2.654805 8.970814e-03 2.385512e-02
## LPP 1.094293e+01 4.009717e+01 2.654583 8.976414e-03 2.386467e-02
## WIPI2 -8.011385e+00 6.782077e+01 -2.654451 8.979726e-03 2.386812e-02
## EMD -4.630967e+00 1.839581e+01 -2.654271 8.984259e-03 2.387482e-02
## AKAP13 5.720263e+01 2.290312e+02 2.653345 9.007600e-03 2.393148e-02
## ING3 6.118534e+00 2.469458e+01 2.652895 9.018949e-03 2.395627e-02
## ZNF518A 7.690144e+00 3.079097e+01 2.652620 9.025914e-03 2.396940e-02
## ZBTB41 1.590841e+00 6.390101e+00 2.652105 9.038946e-03 2.399787e-02
## COPB2 2.160334e+01 1.192865e+02 2.652036 9.040683e-03 2.399787e-02
## PBDC1 -3.535848e+00 1.601970e+01 -2.651506 9.054111e-03 2.402412e-02
## NT5C3A 5.353637e+01 1.339374e+02 2.651486 9.054621e-03 2.402412e-02
## PRMT1 -1.061897e+01 2.990035e+01 -2.651043 9.065858e-03 2.404855e-02
## MBD5 1.870114e+00 9.170422e+00 2.650954 9.068124e-03 2.404918e-02
## ENDOD1 7.202466e+00 2.710927e+01 2.650858 9.070553e-03 2.405025e-02
## ST13 -9.965077e+00 8.170272e+01 -2.650200 9.087283e-03 2.408922e-02
## SIAE 3.054705e+00 1.134729e+01 2.649551 9.103808e-03 2.412763e-02
## RALGAPA1 2.716182e+00 9.593842e+00 2.649288 9.110491e-03 2.413995e-02
## SYNCRIP 9.487803e+00 5.656288e+01 2.649196 9.112843e-03 2.414079e-02
## ZMYND19 -1.253559e+00 3.781144e+00 -2.648000 9.143384e-03 2.421629e-02
## ACVRL1 -1.003789e+00 2.229447e+00 -2.647839 9.147497e-03 2.422177e-02
## SLC16A7 3.519377e+00 1.160564e+01 2.647026 9.168340e-03 2.427154e-02
## FCRLB -2.763805e-01 7.086895e-01 -2.646585 9.179648e-03 2.429606e-02
## TNRC6A 4.453861e+00 2.137933e+01 2.646467 9.182686e-03 2.429867e-02
## GBP4 4.542268e+01 7.451168e+01 2.646258 9.188048e-03 2.430744e-02
## PRPSAP2 1.875874e+00 1.592003e+01 2.646011 9.194389e-03 2.431879e-02
## TRDMT1 1.391226e+00 7.586136e+00 2.644541 9.232258e-03 2.441351e-02
## ITGA9 2.320970e+00 3.148738e+00 2.643586 9.256931e-03 2.447330e-02
## LOC100133315 1.843221e-01 4.838266e-01 2.642630 9.281684e-03 2.453327e-02
## POLR2M 4.000155e+00 1.955286e+01 2.642142 9.294342e-03 2.456125e-02
## ATF2 6.976855e+00 3.727888e+01 2.642026 9.297360e-03 2.456375e-02
## ZNF777 -8.992725e-01 3.357228e+00 -2.641907 9.300442e-03 2.456642e-02
## GRINA -9.886098e+01 2.191972e+02 -2.640427 9.338945e-03 2.466263e-02
## AKAP11 5.014154e+00 1.744752e+01 2.639929 9.351945e-03 2.469147e-02
## FCGR3A 2.887342e+02 9.488448e+02 2.639830 9.354524e-03 2.469278e-02
## FRY 1.772425e+01 5.823806e+01 2.639643 9.359411e-03 2.469654e-02
## MSMO1 3.057404e+00 1.239637e+01 2.639616 9.360112e-03 2.469654e-02
## PRKCB 7.784455e+01 3.776651e+02 2.639384 9.366171e-03 2.470703e-02
## MTIF2 1.831839e+00 1.704702e+01 2.639260 9.369426e-03 2.471012e-02
## GPR107 1.089904e+01 5.775534e+01 2.638841 9.380372e-03 2.473349e-02
## MOGS -7.778500e+00 3.939152e+01 -2.637302 9.420750e-03 2.483443e-02
## ZCCHC14 1.900973e+00 8.135402e+00 2.636892 9.431522e-03 2.485299e-02
## MON1A -1.145779e+00 3.209275e+00 -2.636874 9.431984e-03 2.485299e-02
## TACO1 -1.927256e+00 8.590247e+00 -2.636066 9.453264e-03 2.490354e-02
## HYPK -6.011392e+00 2.001202e+01 -2.635942 9.456548e-03 2.490665e-02
## TAPBPL -1.103339e+01 3.829578e+01 -2.635844 9.459132e-03 2.490793e-02
## VPS16 -1.096633e+01 6.272973e+01 -2.633929 9.509760e-03 2.503568e-02
## ZSCAN30 1.889031e+00 6.901201e+00 2.633442 9.522655e-03 2.506407e-02
## CEACAM8 6.137918e+01 6.231524e+01 2.633208 9.528879e-03 2.507148e-02
## PRKAG2 9.636438e+00 4.281959e+01 2.633177 9.529697e-03 2.507148e-02
## CD3E -4.585505e+01 9.747340e+01 -2.632297 9.553103e-03 2.512469e-02
## GBP3 2.911184e+01 5.272194e+01 2.632257 9.554162e-03 2.512469e-02
## FAM91A1 1.884788e+01 7.974683e+01 2.631981 9.561506e-03 2.513843e-02
## ATP13A1 -7.383992e+00 2.281762e+01 -2.631237 9.581346e-03 2.518501e-02
## NAA25 1.824803e+00 7.751185e+00 2.630438 9.602667e-03 2.523546e-02
## STK39 2.862079e+00 1.322061e+01 2.629980 9.614933e-03 2.526210e-02
## CD164 8.992131e+01 3.924765e+02 2.629811 9.619442e-03 2.526835e-02
## ZNF175 1.213693e+00 5.446901e+00 2.629372 9.631204e-03 2.529364e-02
## FBXO45 2.168777e+00 1.239601e+01 2.629240 9.634749e-03 2.529735e-02
## TMED10 1.298420e+01 1.198959e+02 2.628539 9.653569e-03 2.534115e-02
## PRPS1 3.668624e+00 2.240772e+01 2.628085 9.665754e-03 2.536753e-02
## KDM3B 3.186549e+01 1.335177e+02 2.627732 9.675271e-03 2.538688e-02
## HIKESHI -3.613254e+00 1.597694e+01 -2.626270 9.714699e-03 2.548470e-02
## RBM12B 3.802325e+00 1.741799e+01 2.625922 9.724106e-03 2.550242e-02
## FANCE 8.779516e-01 4.627691e+00 2.625861 9.725755e-03 2.550242e-02
## C12orf45 2.455860e+00 1.306772e+01 2.625684 9.730533e-03 2.550931e-02
## GRPEL2 1.397598e+00 9.412169e+00 2.625299 9.740949e-03 2.553097e-02
## PHF20L1 3.310105e+01 1.218556e+02 2.625067 9.747233e-03 2.554180e-02
## ORAI2 -3.669482e+01 1.408884e+02 -2.624603 9.759828e-03 2.556915e-02
## LYPLAL1 -2.580232e+00 1.627181e+01 -2.624043 9.775014e-03 2.560328e-02
## SYK -5.990680e+01 3.257982e+02 -2.623774 9.782323e-03 2.561677e-02
## TNRC6B 1.184554e+01 5.202516e+01 2.623650 9.785699e-03 2.561995e-02
## C22orf34 -1.739596e+00 3.797665e+00 -2.622926 9.805421e-03 2.566592e-02
## CMTR1 2.536574e+01 6.785118e+01 2.622253 9.823754e-03 2.570788e-02
## ATG16L1 2.633414e+00 2.406044e+01 2.622179 9.825784e-03 2.570788e-02
## APOOL 1.074606e+00 5.427433e+00 2.619770 9.891730e-03 2.587415e-02
## TBC1D23 7.476680e+00 3.863476e+01 2.619652 9.894968e-03 2.587415e-02
## HNRNPA0 -7.165298e+00 5.231583e+01 -2.619551 9.897748e-03 2.587415e-02
## HDLBP 1.679605e+01 1.125088e+02 2.619539 9.898062e-03 2.587415e-02
## GNG7 -4.207032e+00 1.507455e+01 -2.619153 9.908673e-03 2.589618e-02
## GLB1 -7.580130e+00 6.334692e+01 -2.619065 9.911114e-03 2.589685e-02
## ABCC6 9.671808e-01 3.504481e+00 2.618790 9.918669e-03 2.591088e-02
## SCRN1 3.522477e+00 1.257360e+01 2.618544 9.925446e-03 2.592265e-02
## NDUFA8 -3.639061e+00 1.787617e+01 -2.618468 9.927546e-03 2.592265e-02
## KRIT1 2.812740e+00 1.518428e+01 2.618365 9.930386e-03 2.592436e-02
## RUSF1 -5.698728e+00 2.130184e+01 -2.617038 9.967006e-03 2.601424e-02
## STXBP5 4.168042e+01 1.107839e+02 2.616891 9.971057e-03 2.601908e-02
## MYH10 4.144332e-01 1.159752e+00 2.616064 9.993952e-03 2.607136e-02
## PIAS3 1.738188e+00 1.113880e+01 2.616009 9.995488e-03 2.607136e-02
## FAM104B -9.002522e-01 5.192011e+00 -2.615295 1.001531e-02 2.611732e-02
## GPN2 -3.118016e+00 2.161797e+01 -2.614967 1.002441e-02 2.613530e-02
## SPATS2L 1.458862e+01 1.667069e+01 2.614691 1.003207e-02 2.614450e-02
## EGFL8 -3.743692e-01 6.893250e-01 -2.614682 1.003234e-02 2.614450e-02
## ARMC1 2.159620e+00 1.237289e+01 2.614382 1.004067e-02 2.616044e-02
## ZNF146 6.613679e+00 2.879880e+01 2.614274 1.004370e-02 2.616134e-02
## DUS2 -5.188538e+00 2.216241e+01 -2.614212 1.004542e-02 2.616134e-02
## AFAP1L2 5.471429e-01 1.847041e+00 2.613893 1.005429e-02 2.617868e-02
## ITGB3 6.154225e+01 1.344838e+02 2.613018 1.007872e-02 2.623653e-02
## CTSD -1.870756e+02 4.440580e+02 -2.612810 1.008450e-02 2.624582e-02
## TMEM69 1.850725e+00 1.481066e+01 2.612526 1.009247e-02 2.626079e-02
## MAP4K3 9.744551e-01 3.646618e+00 2.611772 1.011355e-02 2.630986e-02
## INTS6L 3.711811e+00 2.228831e+01 2.611245 1.012833e-02 2.634254e-02
## TEX22 -3.582125e-01 8.313437e-01 -2.610884 1.013846e-02 2.636312e-02
## TM7SF2 -1.134936e+00 2.276657e+00 -2.609940 1.016499e-02 2.642629e-02
## BACH1 9.012924e+01 3.123030e+02 2.609070 1.018951e-02 2.648425e-02
## RCL1 1.599333e+00 4.011113e+00 2.608167 1.021501e-02 2.654471e-02
## SLC30A5 3.367897e+00 2.559714e+01 2.607842 1.022420e-02 2.656049e-02
## RRP12 -2.185431e+01 7.295115e+01 -2.607745 1.022694e-02 2.656049e-02
## FAM83H -3.976500e-01 1.219264e+00 -2.607714 1.022780e-02 2.656049e-02
## PLP2 -1.124246e+02 3.173592e+02 -2.607414 1.023631e-02 2.657522e-02
## RAB19 1.451765e+00 2.951988e+00 2.607356 1.023796e-02 2.657522e-02
## CKB -1.162422e+00 1.329976e+00 -2.606016 1.027597e-02 2.666804e-02
## ATP6V0A1 -8.939130e+00 5.292454e+01 -2.605775 1.028282e-02 2.668001e-02
## TBPL1 4.209841e+00 2.635264e+01 2.605484 1.029110e-02 2.669563e-02
## MOCS2 1.346760e+00 9.137600e+00 2.605123 1.030137e-02 2.671644e-02
## ARID4B 2.814151e+01 1.045844e+02 2.604876 1.030842e-02 2.672886e-02
## DOCK4 7.332639e+00 1.922267e+01 2.604409 1.032172e-02 2.675750e-02
## ZGLP1 -1.049694e+00 2.340164e+00 -2.604113 1.033019e-02 2.677361e-02
## AMFR -6.878028e+00 4.960672e+01 -2.603983 1.033389e-02 2.677735e-02
## INTS6 1.310038e+01 5.530760e+01 2.603733 1.034104e-02 2.678905e-02
## SNX27 3.075481e+01 1.223616e+02 2.603650 1.034340e-02 2.678905e-02
## SUSD1 5.812788e+00 3.349218e+01 2.603556 1.034610e-02 2.678905e-02
## NUP153 1.979880e+01 6.752663e+01 2.603487 1.034805e-02 2.678905e-02
## GSS -4.552849e+00 1.797060e+01 -2.603430 1.034970e-02 2.678905e-02
## PRDM2 1.247347e+01 5.794222e+01 2.602043 1.038944e-02 2.688606e-02
## MAPK6 6.934121e+00 1.946851e+01 2.600877 1.042295e-02 2.696689e-02
## RRP1 -2.572387e+00 6.928780e+00 -2.600527 1.043302e-02 2.698704e-02
## PTPN22 1.178446e+01 3.875292e+01 2.600257 1.044080e-02 2.700129e-02
## PTER 1.419920e+00 6.386741e+00 2.599689 1.045720e-02 2.703781e-02
## ARSK 4.205405e-01 1.587801e+00 2.598809 1.048262e-02 2.709761e-02
## VAMP4 3.180498e+00 2.447515e+01 2.598287 1.049775e-02 2.713081e-02
## EXTL2 3.373573e-01 1.216805e+00 2.597825 1.051115e-02 2.715952e-02
## SLTM 1.503441e+01 9.324867e+01 2.597463 1.052165e-02 2.717464e-02
## FGF11 -6.531670e-01 2.107552e+00 -2.597412 1.052312e-02 2.717464e-02
## PLEKHB1 -2.993420e+00 6.360133e+00 -2.597386 1.052387e-02 2.717464e-02
## SKAP1 -9.911710e+00 2.524326e+01 -2.596809 1.054063e-02 2.721200e-02
## SLC26A11 -2.283714e+00 8.702901e+00 -2.596147 1.055989e-02 2.725578e-02
## RAB39B 1.428749e+00 6.234750e+00 2.595695 1.057309e-02 2.728390e-02
## ATP5PO -2.237062e+01 1.055607e+02 -2.594637 1.060397e-02 2.735765e-02
## GID4 1.305907e+00 1.111266e+01 2.593960 1.062379e-02 2.740281e-02
## NOM1 1.338229e+00 7.310789e+00 2.592611 1.066335e-02 2.749887e-02
## ALKBH3 -2.048487e+00 8.083538e+00 -2.591667 1.069110e-02 2.756445e-02
## TAF5L 2.124914e+00 1.582283e+01 2.590610 1.072227e-02 2.763881e-02
## RHOT1 2.201217e+01 8.289552e+01 2.590335 1.073042e-02 2.765379e-02
## DEXI -2.599466e+00 5.925844e+00 -2.590111 1.073702e-02 2.766101e-02
## CEP57 3.594691e+00 2.293802e+01 2.590082 1.073788e-02 2.766101e-02
## MINK1 -8.180096e+00 6.387061e+01 -2.589371 1.075893e-02 2.770921e-02
## SNRPB2 -4.090494e+00 3.409251e+01 -2.589045 1.076858e-02 2.772664e-02
## QRSL1 1.851812e+00 9.624723e+00 2.588985 1.077037e-02 2.772664e-02
## SPAG16 -4.371253e-01 1.090955e+00 -2.588180 1.079424e-02 2.778204e-02
## SCAMP3 -4.914258e+00 1.888963e+01 -2.588074 1.079739e-02 2.778413e-02
## MKNK2 -3.873564e+01 1.762444e+02 -2.587143 1.082511e-02 2.784941e-02
## PRTFDC1 5.236641e-01 1.277977e+00 2.586766 1.083634e-02 2.787226e-02
## RAB11A 2.201398e+01 1.410280e+02 2.585941 1.086094e-02 2.792947e-02
## PRPF40A 1.540880e+01 9.444992e+01 2.585650 1.086964e-02 2.794578e-02
## MPHOSPH8 7.787564e+00 6.376356e+01 2.584447 1.090566e-02 2.802789e-02
## EEF1E1 2.162895e+00 9.160501e+00 2.584426 1.090630e-02 2.802789e-02
## FBXO22 1.106205e+00 1.132537e+01 2.583961 1.092024e-02 2.805765e-02
## SLC35E4 -4.048227e-01 9.743732e-01 -2.583619 1.093050e-02 2.807791e-02
## IMP3 -4.843377e+00 1.711971e+01 -2.583307 1.093989e-02 2.809595e-02
## HDAC9 2.758533e+00 9.619631e+00 2.583227 1.094229e-02 2.809603e-02
## ATP8B4 1.295592e+01 2.685775e+01 2.582953 1.095054e-02 2.810534e-02
## DDX46 7.395155e+00 4.691826e+01 2.582949 1.095065e-02 2.810534e-02
## BBOF1 5.757028e-01 1.678686e+00 2.582773 1.095594e-02 2.811281e-02
## CBFB 5.839142e+00 5.376841e+01 2.581685 1.098876e-02 2.819093e-02
## PPT1 -1.595339e+02 5.965717e+02 -2.580930 1.101156e-02 2.824331e-02
## MEN1 -3.138149e+00 1.135054e+01 -2.580365 1.102865e-02 2.828075e-02
## NOD2 2.274797e+01 7.447489e+01 2.580290 1.103092e-02 2.828075e-02
## CPEB4 3.871985e+01 1.023659e+02 2.580189 1.103398e-02 2.828247e-02
## STK17B 1.473249e+02 4.969193e+02 2.579081 1.106761e-02 2.836254e-02
## GRK5 4.412894e+00 3.155185e+01 2.578598 1.108228e-02 2.839401e-02
## DDX21 1.482585e+01 4.772051e+01 2.578463 1.108639e-02 2.839840e-02
## TMEM109 -6.616349e+00 2.901525e+01 -2.577393 1.111901e-02 2.847581e-02
## PIAS4 -1.470302e+00 8.388484e+00 -2.576949 1.113256e-02 2.850434e-02
## ATP5F1E -1.358299e+02 4.871762e+02 -2.576423 1.114863e-02 2.853934e-02
## SAMD8 1.578047e+01 5.824889e+01 2.575985 1.116204e-02 2.856750e-02
## TNFRSF9 -3.414460e+00 7.481335e+00 -2.575902 1.116456e-02 2.856778e-02
## NDUFAF2 -1.053223e+00 4.506628e+00 -2.575817 1.116717e-02 2.856830e-02
## NOTCH2 8.096553e+01 2.724189e+02 2.575510 1.117658e-02 2.858357e-02
## ZNF493 5.959261e+00 1.815725e+01 2.575465 1.117796e-02 2.858357e-02
## CASD1 2.069944e+00 8.515218e+00 2.575104 1.118902e-02 2.860568e-02
## ZFP69 5.875319e-01 3.746610e+00 2.574534 1.120652e-02 2.864425e-02
## PARK7 -1.945000e+01 1.207459e+02 -2.574224 1.121605e-02 2.865923e-02
## NPHP4 -5.683041e-01 3.062974e+00 -2.574186 1.121721e-02 2.865923e-02
## CYFIP2 -2.413189e+01 1.618604e+02 -2.572823 1.125919e-02 2.876030e-02
## CACNA1I -2.850021e+00 5.741571e+00 -2.572731 1.126203e-02 2.876135e-02
## VSIG10 3.467299e+00 6.069372e+00 2.571598 1.129705e-02 2.884456e-02
## CISD1 -1.471082e+00 6.009505e+00 -2.571442 1.130191e-02 2.885075e-02
## DDX56 -6.900166e+00 2.690079e+01 -2.571183 1.130992e-02 2.886501e-02
## WDR43 3.575491e+00 1.520267e+01 2.570645 1.132659e-02 2.890132e-02
## RNF168 3.245874e+00 2.170754e+01 2.569406 1.136507e-02 2.899328e-02
## DICER1 5.808124e+01 1.614229e+02 2.568427 1.139557e-02 2.906482e-02
## TMC8 -3.553550e+01 1.104688e+02 -2.567895 1.141219e-02 2.910097e-02
## PSME3 1.507590e+01 9.448871e+01 2.567765 1.141623e-02 2.910501e-02
## S100A9 -1.055411e+04 2.237284e+04 -2.567381 1.142823e-02 2.912609e-02
## TADA1 1.069702e+00 6.346924e+00 2.567344 1.142941e-02 2.912609e-02
## GRN -1.837249e+02 5.313598e+02 -2.567066 1.143811e-02 2.914199e-02
## LIG3 2.031569e+00 1.172082e+01 2.566775 1.144722e-02 2.915895e-02
## NUDT18 -5.443874e+00 1.225316e+01 -2.565537 1.148603e-02 2.925152e-02
## PELI2 2.094922e+01 8.550254e+01 2.565307 1.149327e-02 2.926366e-02
## ARPP19 1.939168e+01 1.074464e+02 2.565069 1.150074e-02 2.927640e-02
## ZNF506 2.388109e+00 1.059132e+01 2.563599 1.154706e-02 2.938802e-02
## SP100 6.918461e+01 2.643511e+02 2.563101 1.156279e-02 2.942173e-02
## ARL1 2.362210e+00 1.658319e+01 2.562849 1.157076e-02 2.943569e-02
## CTU1 -8.533756e-01 2.318572e+00 -2.562742 1.157413e-02 2.943796e-02
## ZNF799 3.432920e+00 8.736181e+00 2.562430 1.158402e-02 2.945190e-02
## KMT2D 2.617404e+01 1.069567e+02 2.562412 1.158458e-02 2.945190e-02
## TAB2 4.290632e+01 1.842722e+02 2.562196 1.159142e-02 2.945378e-02
## MRPL45 -2.151203e+00 1.451130e+01 -2.562154 1.159274e-02 2.945378e-02
## SIDT1 2.614732e+00 8.330734e+00 2.562093 1.159468e-02 2.945378e-02
## SYNM 1.155582e+00 3.136887e+00 2.562075 1.159525e-02 2.945378e-02
## CCT2 7.321871e+00 4.494309e+01 2.561710 1.160683e-02 2.947688e-02
## MZT2A -1.599923e+00 1.805651e+00 -2.561566 1.161139e-02 2.948214e-02
## CORO2A 6.151353e+00 2.303928e+01 2.561037 1.162818e-02 2.951845e-02
## ANXA2 -7.099347e+01 3.756854e+02 -2.560013 1.166075e-02 2.959481e-02
## TMEM44 3.431656e-01 1.122166e+00 2.559768 1.166853e-02 2.960821e-02
## TMED2 1.673548e+01 1.279011e+02 2.559354 1.168175e-02 2.963541e-02
## SIPA1L1 1.700675e+01 7.976661e+01 2.559064 1.169101e-02 2.964283e-02
## GATAD2B 1.016005e+01 5.197707e+01 2.559050 1.169145e-02 2.964283e-02
## RBAK 2.513824e+00 1.133658e+01 2.559027 1.169217e-02 2.964283e-02
## CDKN3 2.081080e+00 3.118757e+00 2.558765 1.170054e-02 2.965771e-02
## MARF1 3.476990e+01 1.548640e+02 2.558522 1.170830e-02 2.967104e-02
## NME7 4.954403e-01 2.856890e+00 2.558031 1.172399e-02 2.970445e-02
## UBAP2 1.030376e+00 6.711356e+00 2.557697 1.173470e-02 2.972523e-02
## KAT2A -4.800293e+00 1.636017e+01 -2.556759 1.176476e-02 2.979501e-02
## NDUFA1 -2.698323e+01 1.163793e+02 -2.556572 1.177075e-02 2.980383e-02
## SLC11A2 2.363063e+00 1.377493e+01 2.556444 1.177487e-02 2.980789e-02
## SRFBP1 7.625014e-01 3.240072e+00 2.556176 1.178350e-02 2.982320e-02
## ABRAXAS1 1.388401e+00 7.843159e+00 2.556100 1.178595e-02 2.982320e-02
## CLTCL1 4.608728e+00 1.053767e+01 2.554758 1.182916e-02 2.992616e-02
## FGFR1OP2 1.768208e+01 7.865893e+01 2.554658 1.183238e-02 2.992793e-02
## RBM25 1.786538e+01 9.309987e+01 2.552156 1.191332e-02 3.012621e-02
## SUCLG1 -1.025618e+01 5.835953e+01 -2.551769 1.192591e-02 3.015163e-02
## DSTYK 3.271212e+00 1.804712e+01 2.550647 1.196240e-02 3.023159e-02
## CANT1 -2.225659e+01 1.007905e+02 -2.550640 1.196264e-02 3.023159e-02
## TVP23B 5.771453e+00 3.106555e+01 2.550440 1.196915e-02 3.024162e-02
## GNPNAT1 1.245892e+00 6.601890e+00 2.550121 1.197954e-02 3.026142e-02
## DERA 3.173037e+00 2.078248e+01 2.549839 1.198874e-02 3.027821e-02
## RESF1 2.633676e+02 7.096737e+02 2.548898 1.201952e-02 3.034947e-02
## IMP4 -4.073529e+00 1.551667e+01 -2.547604 1.206193e-02 3.044614e-02
## FICD 6.171059e-01 2.978338e+00 2.547573 1.206294e-02 3.044614e-02
## ZNF615 1.470742e+00 7.225470e+00 2.547433 1.206753e-02 3.045125e-02
## BCL2L15 4.975723e+00 6.069439e+00 2.547060 1.207978e-02 3.047373e-02
## ATP6AP2 -1.663389e+01 1.315359e+02 -2.546966 1.208287e-02 3.047373e-02
## ORC4 6.588436e+00 4.620457e+01 2.546927 1.208414e-02 3.047373e-02
## TOR1B 2.322526e+01 5.528300e+01 2.546660 1.209292e-02 3.048452e-02
## ADD1 -1.636651e+01 1.611918e+02 -2.546641 1.209356e-02 3.048452e-02
## CLEC2D 1.487806e+01 5.965721e+01 2.546444 1.210004e-02 3.049436e-02
## TENT4B 4.518514e+00 2.079962e+01 2.545185 1.214156e-02 3.059250e-02
## CABLES2 7.819527e-01 5.607016e+00 2.544912 1.215056e-02 3.060868e-02
## MAP3K2 6.800600e+01 2.218011e+02 2.543859 1.218538e-02 3.068505e-02
## RTN1 -2.203562e+00 7.194776e+00 -2.543839 1.218605e-02 3.068505e-02
## ZNF697 1.171199e+00 3.507411e+00 2.542865 1.221835e-02 3.075984e-02
## PIGB 6.589413e+00 2.445336e+01 2.542098 1.224384e-02 3.081747e-02
## CCP110 5.153282e+00 1.997068e+01 2.541979 1.224782e-02 3.082094e-02
## MTURN 1.996188e+01 8.618507e+01 2.541415 1.226660e-02 3.086166e-02
## UBE2D4 -1.173103e+00 5.316323e+00 -2.541264 1.227164e-02 3.086550e-02
## BLOC1S1 -7.032260e+01 1.778309e+02 -2.541213 1.227333e-02 3.086550e-02
## ANAPC7 2.199602e+00 2.897211e+01 2.539604 1.232706e-02 3.099405e-02
## AFF1 2.497652e+01 7.991046e+01 2.539520 1.232988e-02 3.099456e-02
## VPS26C 9.117852e+00 5.577481e+01 2.539337 1.233599e-02 3.100337e-02
## YAE1 -5.641323e-01 2.625677e+00 -2.539167 1.234169e-02 3.101112e-02
## TRAF3IP1 5.284931e-01 2.780169e+00 2.538974 1.234817e-02 3.102082e-02
## WDR54 -2.354738e+00 4.946373e+00 -2.538544 1.236258e-02 3.105043e-02
## ZDHHC5 1.008192e+01 7.892320e+01 2.538161 1.237544e-02 3.107286e-02
## RCCD1 5.366254e-01 2.116400e+00 2.538122 1.237675e-02 3.107286e-02
## EMG1 -8.024029e+00 3.052906e+01 -2.536704 1.242446e-02 3.118604e-02
## ZNF45 1.442963e+00 9.325411e+00 2.536444 1.243322e-02 3.120144e-02
## FAM228B -2.410119e+00 7.620070e+00 -2.536052 1.244647e-02 3.122808e-02
## POGK 3.696926e+00 2.561519e+01 2.535924 1.245077e-02 3.123227e-02
## CIAO2B -8.899034e+00 2.813526e+01 -2.535765 1.245614e-02 3.123913e-02
## TIMM8B -9.416333e+00 2.565855e+01 -2.534810 1.248845e-02 3.131354e-02
## TBC1D25 -3.275473e+00 1.967767e+01 -2.533798 1.252276e-02 3.138102e-02
## REC8 5.201892e+00 1.908573e+01 2.533772 1.252364e-02 3.138102e-02
## BOLA2B -4.505944e+00 9.346033e+00 -2.533712 1.252567e-02 3.138102e-02
## POLD1 -1.569528e+00 4.016221e+00 -2.533704 1.252595e-02 3.138102e-02
## NT5DC3 1.983981e+00 6.803999e+00 2.532598 1.256354e-02 3.146854e-02
## PCBP3 -9.314674e-01 1.923354e+00 -2.532492 1.256717e-02 3.147101e-02
## IFIT1 4.520018e+02 4.701501e+02 2.532195 1.257729e-02 3.148969e-02
## GLE1 6.144902e+00 4.926146e+01 2.531765 1.259194e-02 3.151970e-02
## SPNS3 -4.302903e+00 3.924589e+00 -2.531679 1.259488e-02 3.152043e-02
## TFRC 1.107333e+01 2.410539e+01 2.530869 1.262252e-02 3.158294e-02
## UBQLN1 1.271021e+01 8.366452e+01 2.530100 1.264886e-02 3.164216e-02
## SPATA5L1 2.033989e+00 1.079640e+01 2.529903 1.265559e-02 3.164825e-02
## TRIP12 3.820747e+01 1.994150e+02 2.529817 1.265853e-02 3.164825e-02
## GLO1 3.313202e+00 2.510294e+01 2.529719 1.266190e-02 3.164825e-02
## SLC35C2 -9.720613e+00 4.094905e+01 -2.529584 1.266655e-02 3.164825e-02
## RFTN1 -5.656117e+00 2.251808e+01 -2.529576 1.266680e-02 3.164825e-02
## RAC2 -1.352542e+02 6.394770e+02 -2.529562 1.266730e-02 3.164825e-02
## EXOSC4 -8.673161e+00 8.740912e+00 -2.529000 1.268658e-02 3.168972e-02
## DBI -1.490688e+01 9.614689e+01 -2.528880 1.269069e-02 3.169333e-02
## B4GALT4 8.923724e+00 2.418808e+01 2.528777 1.269422e-02 3.169547e-02
## TPP1 3.430171e+01 2.078114e+02 2.528670 1.269792e-02 3.169802e-02
## LDLRAD3 1.688681e+00 4.434473e+00 2.527682 1.273191e-02 3.177620e-02
## SNRPB -1.790708e+01 7.053258e+01 -2.527487 1.273863e-02 3.178626e-02
## COX6A1 -1.740319e+01 8.649238e+01 -2.527344 1.274355e-02 3.179187e-02
## ACAP2 6.291797e+01 2.308484e+02 2.527025 1.275455e-02 3.181261e-02
## PDE3A 5.388162e-01 1.338506e+00 2.526819 1.276168e-02 3.182327e-02
## LRRC14 -2.460289e+00 8.942702e+00 -2.526746 1.276419e-02 3.182327e-02
## SPRTN 1.996423e+00 9.633731e+00 2.526564 1.277046e-02 3.182909e-02
## FFAR3 -5.734961e+00 6.900860e+00 -2.526523 1.277189e-02 3.182909e-02
## POLR3A 1.365316e+00 9.810883e+00 2.526318 1.277897e-02 3.184004e-02
## SMUG1 -2.513293e+00 1.639757e+01 -2.526225 1.278221e-02 3.184142e-02
## NIPA2 6.796406e+00 4.500456e+01 2.525752 1.279855e-02 3.187543e-02
## FKBP11 1.250975e+01 2.263391e+01 2.525323 1.281340e-02 3.190571e-02
## SDR42E1 5.887969e-01 1.897883e+00 2.524667 1.283616e-02 3.195462e-02
## ABCB7 -1.601558e+00 1.423068e+01 -2.524602 1.283843e-02 3.195462e-02
## ARHGEF18 -7.882418e+00 5.622365e+01 -2.524455 1.284352e-02 3.196058e-02
## TOR1AIP2 1.070743e+01 5.590155e+01 2.524067 1.285699e-02 3.198740e-02
## ECPAS 7.507881e+00 5.179794e+01 2.523828 1.286530e-02 3.200135e-02
## SPAG9 2.972831e+01 1.064268e+02 2.523584 1.287380e-02 3.201579e-02
## BLNK 1.962385e+00 6.007002e+00 2.522718 1.290397e-02 3.208408e-02
## PTP4A1 3.171210e+01 1.037282e+02 2.522484 1.291214e-02 3.209766e-02
## MTMR12 3.970103e+00 2.617007e+01 2.521599 1.294302e-02 3.216770e-02
## RNF7 -5.742542e+00 4.031531e+01 -2.521511 1.294610e-02 3.216859e-02
## DDX60L 1.244952e+02 3.287047e+02 2.521203 1.295688e-02 3.218865e-02
## CMC1 -2.705885e+00 1.313216e+01 -2.520805 1.297081e-02 3.221650e-02
## ZNF888 7.767257e-01 2.734716e+00 2.520607 1.297775e-02 3.222640e-02
## ZNF670 3.025612e-01 1.529215e+00 2.520536 1.298023e-02 3.222640e-02
## RTTN 9.307300e-01 3.618170e+00 2.519393 1.302036e-02 3.231258e-02
## PHPT1 -6.354045e+00 1.315330e+01 -2.519392 1.302039e-02 3.231258e-02
## DENR 4.393017e+00 4.751001e+01 2.519246 1.302553e-02 3.231857e-02
## FAM168A 8.389101e+00 4.525422e+01 2.519071 1.303169e-02 3.232710e-02
## CDK20 -3.070905e-01 7.955739e-01 -2.518708 1.304445e-02 3.235197e-02
## POLR1B 2.104745e+00 9.759477e+00 2.518463 1.305308e-02 3.236661e-02
## MRGBP -2.815299e+00 1.621016e+01 -2.517607 1.308326e-02 3.243468e-02
## MDM2 5.066875e+01 1.458468e+02 2.517387 1.309105e-02 3.244529e-02
## TAF1D 2.573629e+00 1.788070e+01 2.517331 1.309302e-02 3.244529e-02
## RNF220 -6.217016e+00 4.907199e+01 -2.516840 1.311036e-02 3.248149e-02
## PDIA4 2.318903e+01 5.593395e+01 2.516454 1.312404e-02 3.250858e-02
## AP1G1 1.763865e+01 7.768832e+01 2.514890 1.317949e-02 3.263912e-02
## TM9SF3 1.114797e+01 9.688584e+01 2.514752 1.318441e-02 3.264448e-02
## RAB11FIP4 -1.312034e+01 7.769235e+01 -2.514455 1.319496e-02 3.266380e-02
## SLFN14 1.143305e+00 3.494918e+00 2.514099 1.320764e-02 3.268835e-02
## UBE4B 7.031484e+00 3.908683e+01 2.513694 1.322206e-02 3.271722e-02
## CHST7 -1.363036e+00 4.284618e+00 -2.513522 1.322820e-02 3.272484e-02
## GPRIN3 7.051648e+00 2.072171e+01 2.513399 1.323258e-02 3.272484e-02
## ZNF275 1.623123e+00 6.549024e+00 2.513376 1.323342e-02 3.272484e-02
## YWHAG 1.003586e+01 6.568807e+01 2.513056 1.324484e-02 3.274625e-02
## TRAPPC4 -6.591413e+00 3.443879e+01 -2.512370 1.326931e-02 3.279993e-02
## MMP19 -1.548876e+00 5.630683e+00 -2.512259 1.327329e-02 3.280291e-02
## CHUK 1.387007e+01 5.250260e+01 2.511671 1.329434e-02 3.284811e-02
## SCAF8 8.074170e+00 4.052256e+01 2.510262 1.334489e-02 3.296613e-02
## CD3D -3.521715e+01 6.773680e+01 -2.510090 1.335107e-02 3.297453e-02
## TBL1XR1 -1.636637e+01 9.219307e+01 -2.509508 1.337200e-02 3.301485e-02
## HYLS1 5.166309e-01 3.551171e+00 2.509410 1.337553e-02 3.301485e-02
## ICMT 2.925407e+00 1.931146e+01 2.509404 1.337575e-02 3.301485e-02
## MTF1 2.383295e+01 8.288418e+01 2.509224 1.338223e-02 3.302397e-02
## ABRACL -6.342794e+00 4.455222e+01 -2.508495 1.340849e-02 3.308191e-02
## BPHL -3.924080e-01 1.550904e+00 -2.507964 1.342769e-02 3.312239e-02
## CPSF3 -2.554146e+00 2.198405e+01 -2.507480 1.344519e-02 3.315865e-02
## RPSAP58 -1.943049e+01 4.319015e+01 -2.507216 1.345473e-02 3.317529e-02
## FXR2 -3.770962e+00 3.413960e+01 -2.507009 1.346223e-02 3.318688e-02
## IRAG1 -4.085937e+01 1.145352e+02 -2.506727 1.347244e-02 3.319578e-02
## AMIGO3 -4.501387e-01 1.157669e+00 -2.506683 1.347404e-02 3.319578e-02
## CEP170 9.928298e+00 3.643879e+01 2.506677 1.347424e-02 3.319578e-02
## ILK -4.215631e+01 2.121647e+02 -2.506546 1.347899e-02 3.319596e-02
## TMEM263 2.534449e+00 9.363230e+00 2.506521 1.347991e-02 3.319596e-02
## AKT3 2.587020e+00 9.796585e+00 2.506098 1.349525e-02 3.322684e-02
## FAM189B -1.362383e+00 6.273706e+00 -2.506018 1.349815e-02 3.322708e-02
## CENPP 5.709713e-01 2.306867e+00 2.505762 1.350745e-02 3.324307e-02
## UNC5CL -4.554590e-01 2.499475e+00 -2.504960 1.353660e-02 3.330789e-02
## NFRKB 3.020474e+00 2.628609e+01 2.504399 1.355703e-02 3.335125e-02
## TRNAU1AP -4.109401e+00 2.255634e+01 -2.503430 1.359239e-02 3.343131e-02
## ZNF37A 1.993182e+00 1.151861e+01 2.503018 1.360745e-02 3.346141e-02
## MMP9 -2.882377e+02 3.462148e+02 -2.502182 1.363804e-02 3.352968e-02
## CSGALNACT2 1.242768e+02 2.362771e+02 2.501852 1.365016e-02 3.355252e-02
## GIMAP5 -2.858756e+01 8.577913e+01 -2.501543 1.366147e-02 3.357335e-02
## MRPS23 -3.805007e+00 2.095550e+01 -2.500947 1.368336e-02 3.362019e-02
## HSD17B13 6.902109e-01 1.965186e+00 2.499741 1.372774e-02 3.372226e-02
## IL17RC -6.497637e-01 1.757813e+00 -2.498173 1.378566e-02 3.385752e-02
## LPCAT3 -1.193540e+01 4.303278e+01 -2.497896 1.379589e-02 3.387561e-02
## PCNX1 9.116588e+01 2.675124e+02 2.496954 1.383079e-02 3.394878e-02
## SSC4D -2.140668e-01 4.950435e-01 -2.496917 1.383219e-02 3.394878e-02
## GFM1 2.506885e+00 1.494705e+01 2.496812 1.383606e-02 3.394878e-02
## ZNF207 1.373173e+01 8.861035e+01 2.496783 1.383714e-02 3.394878e-02
## SAP30 1.876106e+01 3.269407e+01 2.496341 1.385356e-02 3.398206e-02
## UPK3BL1 -8.452693e+00 2.331188e+01 -2.494854 1.390892e-02 3.411079e-02
## LUZP6 4.386590e+01 1.960422e+02 2.494679 1.391543e-02 3.411266e-02
## MTPN 4.386590e+01 1.960422e+02 2.494679 1.391543e-02 3.411266e-02
## FOCAD 1.901405e+00 1.268748e+01 2.494155 1.393499e-02 3.415354e-02
## MRPS12 -2.778211e+00 5.952540e+00 -2.493913 1.394405e-02 3.416869e-02
## ZFYVE21 -1.469044e+00 9.759003e+00 -2.493568 1.395693e-02 3.418509e-02
## ISG20L2 4.483035e+00 4.408755e+01 2.493564 1.395708e-02 3.418509e-02
## CZIB -3.129535e+00 2.281314e+01 -2.493502 1.395939e-02 3.418509e-02
## DYNLL2 9.488125e+00 8.140808e+01 2.493281 1.396768e-02 3.419831e-02
## RTEL1 -1.457834e+00 5.039526e+00 -2.493199 1.397073e-02 3.419873e-02
## LZTFL1 1.211460e+00 6.559705e+00 2.492353 1.400244e-02 3.426394e-02
## ZC3HAV1 4.217380e+01 1.424413e+02 2.492277 1.400530e-02 3.426394e-02
## BAIAP2 -1.233763e+00 3.930960e+00 -2.492257 1.400604e-02 3.426394e-02
## PRMT9 1.176319e+00 6.298467e+00 2.491156 1.404742e-02 3.435809e-02
## UFM1 7.081716e+00 4.554481e+01 2.490945 1.405537e-02 3.436261e-02
## FUBP3 2.550897e+00 1.415145e+01 2.490920 1.405630e-02 3.436261e-02
## TUT4 4.222471e+00 1.829120e+01 2.490876 1.405796e-02 3.436261e-02
## ZC3H3 -5.977745e+00 1.505171e+01 -2.490382 1.407654e-02 3.440095e-02
## NDUFB11 -1.507918e+01 3.412486e+01 -2.490051 1.408904e-02 3.442440e-02
## CD24 9.866857e+01 1.206098e+02 2.489325 1.411643e-02 3.448421e-02
## ASCC1 2.921720e+00 1.512868e+01 2.488803 1.413618e-02 3.452535e-02
## MAN2C1 -1.241110e+01 4.115284e+01 -2.488444 1.414975e-02 3.455062e-02
## IL24 -4.777560e-01 1.157309e+00 -2.488376 1.415235e-02 3.455062e-02
## RNF216 -5.242359e+00 4.148618e+01 -2.488296 1.415538e-02 3.455089e-02
## ARIH2 4.786847e+00 6.893537e+01 2.487814 1.417363e-02 3.458833e-02
## TMEM147 -5.391966e+00 1.830401e+01 -2.487056 1.420240e-02 3.464572e-02
## LMBRD1 -1.808725e+01 8.372535e+01 -2.487041 1.420299e-02 3.464572e-02
## DOCK11 3.648551e+01 1.609723e+02 2.486185 1.423554e-02 3.471797e-02
## SND1 -1.063988e+01 6.432781e+01 -2.485899 1.424642e-02 3.473663e-02
## TULP3 4.514438e-01 2.055632e+00 2.485830 1.424905e-02 3.473663e-02
## LDAH 1.116779e+00 6.194975e+00 2.485342 1.426766e-02 3.477484e-02
## GTF2H1 2.252440e+00 2.305593e+01 2.485172 1.427416e-02 3.478354e-02
## C9orf40 2.384336e+00 6.742911e+00 2.484779 1.428913e-02 3.481288e-02
## ZBTB34 2.877014e+01 1.014707e+02 2.484573 1.429700e-02 3.482104e-02
## EXOSC7 -2.373720e+00 1.010529e+01 -2.484517 1.429916e-02 3.482104e-02
## RNFT1 5.760902e+00 2.797873e+01 2.484461 1.430129e-02 3.482104e-02
## KCNIP2 -4.008372e-01 1.316227e+00 -2.484279 1.430827e-02 3.483088e-02
## TMEM11 -4.149288e+00 2.044951e+01 -2.483702 1.433033e-02 3.487051e-02
## DUSP23 -3.156520e+00 8.907170e+00 -2.483700 1.433043e-02 3.487051e-02
## SLBP 7.546096e+00 5.114101e+01 2.483076 1.435432e-02 3.492148e-02
## MAD2L1BP 7.664527e+00 3.398890e+01 2.482548 1.437457e-02 3.496216e-02
## MEFV 5.124804e+01 2.121622e+02 2.482487 1.437694e-02 3.496216e-02
## WDR26 6.643694e+01 2.800902e+02 2.482037 1.439422e-02 3.499701e-02
## S100A10 -4.157135e+01 1.530519e+02 -2.481923 1.439860e-02 3.500048e-02
## LDOC1 -5.225833e-01 1.071736e+00 -2.481640 1.440951e-02 3.501983e-02
## HERC6 1.956895e+01 2.820221e+01 2.479903 1.447647e-02 3.517536e-02
## SRBD1 8.619691e+00 3.101500e+01 2.479702 1.448426e-02 3.518708e-02
## PCF11 2.469020e+01 1.057245e+02 2.479305 1.449959e-02 3.521701e-02
## HDGFL3 2.188791e+00 9.306207e+00 2.479227 1.450262e-02 3.521701e-02
## NEIL2 -1.103645e+00 4.264154e+00 -2.479118 1.450686e-02 3.521701e-02
## MRPL17 -2.656420e+00 1.030868e+01 -2.479076 1.450846e-02 3.521701e-02
## S100A6 -2.997230e+02 1.118226e+03 -2.478511 1.453035e-02 3.525945e-02
## PITPNA -2.051842e+01 1.210846e+02 -2.478472 1.453189e-02 3.525945e-02
## ZNF282 -2.676058e+00 1.095556e+01 -2.478358 1.453628e-02 3.526288e-02
## QKI 5.555024e+01 2.115372e+02 2.477550 1.456767e-02 3.533182e-02
## SATB1 1.085786e+01 4.867791e+01 2.476683 1.460139e-02 3.540636e-02
## GORASP2 3.660770e+00 3.007691e+01 2.476332 1.461505e-02 3.542509e-02
## TXNL1 -5.547940e+00 3.942697e+01 -2.476318 1.461561e-02 3.542509e-02
## FAM136A 2.794007e+00 1.833310e+01 2.476255 1.461808e-02 3.542509e-02
## ATP6V0C -1.492779e+01 5.574234e+01 -2.475758 1.463744e-02 3.546374e-02
## USP53 1.673219e+00 5.756835e+00 2.475692 1.464001e-02 3.546374e-02
## ZSCAN25 1.355866e+00 1.331000e+01 2.475215 1.465864e-02 3.549818e-02
## HMGB3 2.817499e+00 6.394433e+00 2.475175 1.466021e-02 3.549818e-02
## PTBP2 5.274296e+00 1.714210e+01 2.475020 1.466629e-02 3.550564e-02
## PCYOX1L -1.927126e+00 1.018455e+01 -2.473265 1.473501e-02 3.566474e-02
## OXSR1 1.918746e+01 7.923882e+01 2.473151 1.473951e-02 3.566836e-02
## COPS2 7.720060e+00 4.140735e+01 2.472824 1.475235e-02 3.569213e-02
## NGRN -3.392130e+00 2.365247e+01 -2.472108 1.478052e-02 3.575300e-02
## MDH1 7.727507e+00 5.655451e+01 2.471859 1.479031e-02 3.576939e-02
## C11orf71 -1.149495e+00 8.395453e+00 -2.471460 1.480605e-02 3.579713e-02
## TRMT112 -1.137276e+01 5.643521e+01 -2.471415 1.480782e-02 3.579713e-02
## NUP37 2.099981e+00 1.211658e+01 2.470277 1.485276e-02 3.589845e-02
## HEMK1 -3.944579e+00 1.651636e+01 -2.470048 1.486182e-02 3.591303e-02
## PYROXD1 -1.977971e+00 1.986844e+01 -2.469853 1.486954e-02 3.592436e-02
## LAGE3 -1.724130e+00 3.435749e+00 -2.469158 1.489704e-02 3.598348e-02
## ZNF24 2.069765e+01 1.078281e+02 2.468929 1.490612e-02 3.599428e-02
## NOTCH1 -1.482408e+01 7.588455e+01 -2.468789 1.491167e-02 3.599428e-02
## PLEKHA5 5.414153e-01 2.092805e+00 2.468757 1.491297e-02 3.599428e-02
## GP9 -4.896931e+00 7.177245e+00 -2.468739 1.491365e-02 3.599428e-02
## PDE6D -2.843148e+00 2.145613e+01 -2.468533 1.492185e-02 3.600674e-02
## PHF12 1.966138e+01 9.665000e+01 2.468410 1.492672e-02 3.601117e-02
## CEP135 3.465421e+00 1.292994e+01 2.467838 1.494946e-02 3.605869e-02
## ATF7 5.606046e+00 2.988050e+01 2.467293 1.497116e-02 3.610370e-02
## RPN2 2.507155e+01 1.441178e+02 2.466917 1.498613e-02 3.613244e-02
## LLGL1 -1.368363e+00 6.318037e+00 -2.466485 1.500336e-02 3.616570e-02
## CCDC15 3.368076e-01 1.057565e+00 2.466418 1.500602e-02 3.616570e-02
## AEBP1 -9.604309e-01 1.780795e+00 -2.466276 1.501170e-02 3.617205e-02
## HK1 -1.636563e+01 1.131243e+02 -2.466189 1.501515e-02 3.617300e-02
## CFAP97D1 2.233970e-01 6.577462e-01 2.465263 1.505217e-02 3.625362e-02
## RSBN1L 1.492971e+01 6.680096e+01 2.465177 1.505560e-02 3.625362e-02
## YKT6 -8.417048e+00 8.339764e+01 -2.465123 1.505779e-02 3.625362e-02
## NUDT2 -3.107263e+00 1.421060e+01 -2.464611 1.507830e-02 3.629565e-02
## SLC46A2 -3.152186e+00 9.503168e+00 -2.464328 1.508964e-02 3.631556e-02
## TSR1 2.222659e+00 1.252175e+01 2.463909 1.510642e-02 3.634503e-02
## FUNDC2 -1.129090e+01 4.428829e+01 -2.463870 1.510801e-02 3.634503e-02
## NCOA1 3.780348e+01 1.496879e+02 2.463041 1.514132e-02 3.641779e-02
## MTG1 -4.413704e+00 1.044783e+01 -2.462842 1.514932e-02 3.642962e-02
## SNRPD2 -2.968560e+01 8.833110e+01 -2.462321 1.517028e-02 3.647264e-02
## G3BP1 7.722245e+00 5.644260e+01 2.460943 1.522593e-02 3.659901e-02
## PRDM10 2.245890e+00 1.017151e+01 2.460448 1.524592e-02 3.663963e-02
## MZT1 1.179475e+00 8.102980e+00 2.460060 1.526165e-02 3.667001e-02
## TP53BP2 8.187184e+00 3.436596e+01 2.458831 1.531149e-02 3.677962e-02
## RHOBTB3 5.487807e-01 1.656373e+00 2.458722 1.531591e-02 3.677962e-02
## GALE -1.304283e+00 6.604650e+00 -2.458706 1.531657e-02 3.677962e-02
## VKORC1L1 6.221429e+00 1.815543e+01 2.458539 1.532334e-02 3.678843e-02
## GAPVD1 7.237910e+00 4.474549e+01 2.457691 1.535788e-02 3.686389e-02
## VAMP3 -2.941849e+01 1.391106e+02 -2.457496 1.536581e-02 3.687544e-02
## NDE1 1.055640e+01 4.949876e+01 2.457076 1.538292e-02 3.690906e-02
## DPM2 -8.293453e+00 1.847944e+01 -2.456392 1.541087e-02 3.696466e-02
## CCNK 6.594349e+00 4.080686e+01 2.456356 1.541233e-02 3.696466e-02
## PNN 1.717503e+01 9.887861e+01 2.455671 1.544033e-02 3.702433e-02
## ST3GAL4 -2.409424e+01 6.369103e+01 -2.455458 1.544906e-02 3.703778e-02
## PRIMPOL 1.030308e+00 7.038778e+00 2.455051 1.546575e-02 3.706919e-02
## MAP1A 2.993414e+00 7.732170e+00 2.454986 1.546841e-02 3.706919e-02
## NEIL1 -1.638762e+00 4.627217e+00 -2.453929 1.551181e-02 3.716568e-02
## KCTD10 2.402634e+00 2.765802e+01 2.453763 1.551864e-02 3.717451e-02
## TJAP1 -1.951436e+00 1.175996e+01 -2.453589 1.552575e-02 3.718405e-02
## CRYZ 2.174941e+00 7.434375e+00 2.453086 1.554645e-02 3.722612e-02
## KRT18 -5.679887e-01 1.647307e+00 -2.452995 1.555021e-02 3.722760e-02
## MRPS10 1.762591e+00 2.141636e+01 2.452835 1.555683e-02 3.723592e-02
## RGL4 -6.550448e+01 1.091921e+02 -2.452471 1.557182e-02 3.726429e-02
## MECR -8.941518e-01 2.993961e+00 -2.452090 1.558755e-02 3.729441e-02
## MLXIP -2.112854e+01 7.149146e+01 -2.451929 1.559416e-02 3.730270e-02
## NAP1L1 -4.929369e+01 2.810142e+02 -2.451532 1.561056e-02 3.733440e-02
## POMT1 -2.093571e+00 8.146058e+00 -2.449395 1.569912e-02 3.753863e-02
## TTL 2.286682e+00 1.797326e+01 2.449128 1.571021e-02 3.755165e-02
## NBEAL2 -1.123044e+02 4.667544e+02 -2.449112 1.571090e-02 3.755165e-02
## COG5 3.225957e+00 2.359828e+01 2.448732 1.572670e-02 3.758184e-02
## SLC38A6 -6.214847e-01 3.370163e+00 -2.448507 1.573604e-02 3.759659e-02
## LIG4 5.968804e+00 2.408274e+01 2.448033 1.575580e-02 3.763622e-02
## RNASE1 1.036993e+01 1.575656e+01 2.447823 1.576455e-02 3.764952e-02
## GANAB 1.204427e+01 1.427960e+02 2.447529 1.577680e-02 3.767120e-02
## CD44 -1.486698e+02 5.128918e+02 -2.447451 1.578007e-02 3.767143e-02
## SLC35E3 4.238822e+00 2.077680e+01 2.446984 1.579955e-02 3.771034e-02
## GOLGA7B -3.711703e+00 6.787066e+00 -2.446769 1.580853e-02 3.772419e-02
## KRTCAP3 -1.983662e-01 5.837618e-01 -2.446472 1.582095e-02 3.774623e-02
## WWP2 -1.261369e+01 9.005559e+01 -2.446303 1.582805e-02 3.775557e-02
## TET3 1.532638e+01 6.028762e+01 2.446178 1.583329e-02 3.776046e-02
## APOBEC3A_B 5.382494e+01 1.202150e+02 2.445564 1.585898e-02 3.781414e-02
## MED17 3.686459e+00 2.408551e+01 2.445195 1.587448e-02 3.784347e-02
## PVRIG -3.026248e+00 7.353762e+00 -2.444592 1.589977e-02 3.789298e-02
## ZNF844 4.212550e+00 1.766881e+01 2.444548 1.590163e-02 3.789298e-02
## CENPX -3.438919e+00 8.374589e+00 -2.444146 1.591853e-02 3.792563e-02
## MYORG 2.731152e-01 1.655845e+00 2.443492 1.594606e-02 3.797650e-02
## ELOVL3 5.862599e-01 1.462435e+00 2.443486 1.594629e-02 3.797650e-02
## ICAM2 -1.758223e+01 5.028034e+01 -2.441902 1.601314e-02 3.812806e-02
## HERC5 9.716892e+01 1.214148e+02 2.441601 1.602589e-02 3.815076e-02
## CTDSPL 6.265425e+00 2.087581e+01 2.441321 1.603771e-02 3.817123e-02
## COX10 8.907751e-01 5.420455e+00 2.440637 1.606671e-02 3.823258e-02
## RXRB -8.472593e+00 7.544514e+01 -2.440536 1.607098e-02 3.823508e-02
## ZFP1 7.456972e-01 3.471857e+00 2.439604 1.611054e-02 3.832150e-02
## ALPK3 1.303829e+00 2.586811e+00 2.438487 1.615809e-02 3.842689e-02
## AK4 7.813850e-01 2.908255e+00 2.437962 1.618049e-02 3.847246e-02
## STAU2 4.408634e+00 2.132552e+01 2.437543 1.619836e-02 3.850690e-02
## CHAF1A 1.081438e+00 6.383250e+00 2.437471 1.620147e-02 3.850690e-02
## MAP3K13 2.447968e-01 1.073659e+00 2.437308 1.620841e-02 3.851567e-02
## NPRL3 -2.534066e+00 8.948226e+00 -2.436860 1.622758e-02 3.854152e-02
## RAE1 -6.027026e+00 3.551888e+01 -2.436813 1.622960e-02 3.854152e-02
## RNF114 9.552049e+00 7.231145e+01 2.436759 1.623190e-02 3.854152e-02
## ANKRD28 1.554861e+01 4.109088e+01 2.436750 1.623228e-02 3.854152e-02
## UNC50 3.337987e+00 2.825608e+01 2.436641 1.623694e-02 3.854486e-02
## ROMO1 -5.411586e+00 1.096683e+01 -2.436500 1.624300e-02 3.854675e-02
## DHTKD1 7.093490e+00 3.051807e+01 2.436471 1.624424e-02 3.854675e-02
## SERINC5 5.199576e+00 2.426804e+01 2.435826 1.627186e-02 3.860458e-02
## ZEB2 2.981680e+01 1.107059e+02 2.435384 1.629083e-02 3.864184e-02
## EMC8 -2.011380e+00 1.396832e+01 -2.434764 1.631746e-02 3.868396e-02
## BCL2L11 1.400907e+01 6.230889e+01 2.434744 1.631832e-02 3.868396e-02
## TIMM50 -4.810021e+00 1.912518e+01 -2.434743 1.631837e-02 3.868396e-02
## ERO1B 1.869166e+00 1.353535e+01 2.434484 1.632950e-02 3.870261e-02
## ARHGDIB -4.811769e+02 2.203179e+03 -2.433439 1.637451e-02 3.879912e-02
## CHD1 2.774664e+01 8.106465e+01 2.433354 1.637819e-02 3.879912e-02
## SP3 5.641755e+01 2.218778e+02 2.433311 1.638003e-02 3.879912e-02
## ARHGEF40 -6.694607e+01 1.780522e+02 -2.433233 1.638339e-02 3.879931e-02
## NAF1 2.295183e-01 9.078471e-01 2.432922 1.639683e-02 3.882340e-02
## RSAD2 2.730261e+02 2.769457e+02 2.431346 1.646501e-02 3.897706e-02
## CUTA -1.435618e+01 3.048356e+01 -2.430773 1.648984e-02 3.902514e-02
## CD40 -2.049148e+00 7.647977e+00 -2.430726 1.649190e-02 3.902514e-02
## PSTPIP2 5.937846e+01 1.418600e+02 2.429899 1.652781e-02 3.910229e-02
## MAST3 -3.371476e+01 1.388694e+02 -2.428174 1.660299e-02 3.927233e-02
## CCNT2 9.278594e+00 4.794816e+01 2.427944 1.661301e-02 3.928820e-02
## SEMA4A -6.059117e+01 2.184932e+02 -2.427441 1.663502e-02 3.933241e-02
## SHISAL2A -9.508367e-01 1.921058e+00 -2.427202 1.664545e-02 3.934923e-02
## MCC 1.039340e+00 3.368672e+00 2.427056 1.665186e-02 3.935157e-02
## TERF1 1.906260e+00 1.566183e+01 2.427028 1.665308e-02 3.935157e-02
## KIF21A 1.167091e+00 2.907779e+00 2.426466 1.667768e-02 3.940186e-02
## ITPR1 4.272783e+00 1.809554e+01 2.425346 1.672687e-02 3.951018e-02
## IFT81 3.339264e-01 1.196678e+00 2.424947 1.674438e-02 3.954368e-02
## DYM -3.070055e+00 3.008620e+01 -2.424726 1.675414e-02 3.955884e-02
## NF1 9.905118e+00 3.389437e+01 2.424529 1.676278e-02 3.957138e-02
## COX8A -1.214631e+01 4.517830e+01 -2.424058 1.678355e-02 3.961251e-02
## ZBTB26 1.470305e+00 8.262354e+00 2.423728 1.679809e-02 3.963894e-02
## DDX51 -2.400429e+00 9.271125e+00 -2.423433 1.681113e-02 3.966182e-02
## PIAS1 2.944878e+01 1.315906e+02 2.422526 1.685119e-02 3.974844e-02
## SLC6A4 4.882813e-01 2.218951e+00 2.422296 1.686136e-02 3.976376e-02
## ADGRE5 -1.951948e+02 7.254363e+02 -2.422228 1.686440e-02 3.976376e-02
## KDM8 -5.499274e-01 2.048480e+00 -2.421852 1.688106e-02 3.979515e-02
## TEC 8.004041e-01 4.397626e+00 2.421589 1.689270e-02 3.981466e-02
## RAD23A -8.513403e+00 2.717567e+01 -2.420860 1.692503e-02 3.987290e-02
## POU2F2 -1.288760e+01 6.306457e+01 -2.420854 1.692533e-02 3.987290e-02
## MALSU1 -2.167791e+00 1.167633e+01 -2.420805 1.692749e-02 3.987290e-02
## SOCS3 -1.115655e+02 2.589499e+02 -2.420335 1.694837e-02 3.991416e-02
## RBM15 2.142199e+00 1.072733e+01 2.419590 1.698152e-02 3.998427e-02
## AHSA1 -4.469086e+00 4.621075e+01 -2.419370 1.699135e-02 3.999948e-02
## PPIP5K1 1.401754e+00 5.739614e+00 2.419277 1.699547e-02 4.000124e-02
## CCDC14 2.907883e+00 1.230481e+01 2.418662 1.702292e-02 4.005790e-02
## NPC2 -2.761222e+01 1.421390e+02 -2.418543 1.702823e-02 4.006244e-02
## BPI 7.159594e+01 8.152870e+01 2.418327 1.703790e-02 4.007724e-02
## ADPGK 1.081082e+01 1.031675e+02 2.416602 1.711510e-02 4.023894e-02
## COMMD3-BMI1 3.240549e+00 1.957333e+01 2.416585 1.711587e-02 4.023894e-02
## ANKRD13A 5.644621e+01 2.569890e+02 2.416564 1.711682e-02 4.023894e-02
## TXLNB 5.286637e-01 1.520963e+00 2.416298 1.712873e-02 4.025895e-02
## NIN 7.680674e+01 2.998832e+02 2.415973 1.714334e-02 4.028533e-02
## ALOX5 -1.387113e+02 5.187100e+02 -2.415535 1.716299e-02 4.032352e-02
## C21orf62 3.981807e-01 1.612874e+00 2.415105 1.718237e-02 4.036105e-02
## LAMB3 -6.386282e-01 7.699130e-01 -2.414972 1.718836e-02 4.036711e-02
## VAV1 -3.190108e+01 1.905019e+02 -2.414587 1.720571e-02 4.039839e-02
## SLC35B4 1.224594e+00 7.843377e+00 2.414525 1.720849e-02 4.039839e-02
## LRP3 -1.398198e+00 2.415816e+00 -2.414130 1.722629e-02 4.043219e-02
## CASK 1.317757e+00 7.032421e+00 2.413440 1.725743e-02 4.049726e-02
## LRRC59 6.861709e+00 4.510553e+01 2.412359 1.730637e-02 4.060406e-02
## RB1CC1 2.596563e+01 9.750158e+01 2.411739 1.733445e-02 4.065317e-02
## GTPBP3 -9.546376e-01 3.047540e+00 -2.411715 1.733556e-02 4.065317e-02
## KCNH3 -3.322338e+00 5.687760e+00 -2.411670 1.733758e-02 4.065317e-02
## DGLUCY 1.605631e+01 9.082943e+01 2.411448 1.734768e-02 4.066881e-02
## ZNF431 2.044448e+00 1.337439e+01 2.410575 1.738734e-02 4.075372e-02
## CTSB -1.221735e+02 5.858071e+02 -2.410208 1.740406e-02 4.078485e-02
## POLG2 -5.378548e-01 4.241741e+00 -2.409037 1.745744e-02 4.090186e-02
## ASB1 -2.316053e+00 2.034317e+01 -2.408772 1.746952e-02 4.092207e-02
## LRRC8A 1.807665e+00 1.155726e+01 2.408326 1.748991e-02 4.096176e-02
## BMP8A 3.790094e-01 1.404541e+00 2.407939 1.750761e-02 4.099512e-02
## TRMT10A 8.089612e-01 4.627912e+00 2.407530 1.752632e-02 4.102469e-02
## MED29 -2.551403e+00 3.489606e+01 -2.407512 1.752716e-02 4.102469e-02
## GNAS 1.056368e+02 6.489505e+02 2.406993 1.755096e-02 4.107229e-02
## RNF8 1.331501e+00 8.267978e+00 2.406580 1.756991e-02 4.110853e-02
## MTHFS -2.229127e+01 7.350149e+01 -2.406424 1.757708e-02 4.111720e-02
## ALDH2 -3.126225e+01 1.105892e+02 -2.405870 1.760253e-02 4.116862e-02
## POU5F1 7.231083e-01 2.925267e+00 2.405652 1.761255e-02 4.118392e-02
## PRR13 -1.147216e+02 5.289671e+02 -2.405269 1.763017e-02 4.121699e-02
## MRPL12 -5.405217e+00 1.237536e+01 -2.405077 1.763902e-02 4.122955e-02
## PCBP2 -6.714522e+01 4.539405e+02 -2.404865 1.764878e-02 4.123890e-02
## TOMM40 -3.114647e+00 1.089243e+01 -2.404840 1.764997e-02 4.123890e-02
## CLDND1 6.742687e+00 4.380425e+01 2.404627 1.765975e-02 4.125363e-02
## MAPK1IP1L 6.696805e+00 4.939786e+01 2.404379 1.767119e-02 4.127222e-02
## EVL -2.539413e+01 6.519973e+01 -2.403906 1.769306e-02 4.131467e-02
## PEX19 4.507099e+00 4.544849e+01 2.403835 1.769633e-02 4.131467e-02
## NDUFA2 -9.851515e+00 3.469396e+01 -2.403687 1.770318e-02 4.132251e-02
## SH3BGRL2 1.278260e+01 3.740755e+01 2.402380 1.776365e-02 4.145551e-02
## IL1B -4.829344e+01 1.220984e+02 -2.402130 1.777527e-02 4.147446e-02
## UBA2 6.104451e+00 4.649271e+01 2.401918 1.778509e-02 4.148920e-02
## ABHD3 3.566835e+01 1.245124e+02 2.401843 1.778859e-02 4.148923e-02
## THAP2 6.741284e-01 3.164721e+00 2.401258 1.781573e-02 4.154436e-02
## PEPD -3.058768e+00 1.507985e+01 -2.400791 1.783745e-02 4.158682e-02
## ZZZ3 2.506402e+00 1.250822e+01 2.400121 1.786867e-02 4.165107e-02
## TBXAS1 -5.273675e+01 2.171022e+02 -2.400049 1.787203e-02 4.165107e-02
## ARL17B 2.172161e+00 9.646725e+00 2.399118 1.791548e-02 4.174395e-02
## TECR -1.247935e+01 2.935526e+01 -2.399044 1.791893e-02 4.174395e-02
## EIF5 2.945842e+01 1.723897e+02 2.398055 1.796519e-02 4.184175e-02
## MRPS18A -6.220401e+00 2.013211e+01 -2.397987 1.796838e-02 4.184175e-02
## ATP6V0B -9.311163e+01 3.709345e+02 -2.397920 1.797149e-02 4.184175e-02
## BCL11A -1.327171e+00 5.220450e+00 -2.397391 1.799629e-02 4.189127e-02
## TPH1 -2.115376e-01 6.945819e-01 -2.396177 1.805333e-02 4.201580e-02
## PKN2 2.044210e+01 8.184720e+01 2.395581 1.808136e-02 4.207130e-02
## VPS37A 3.507586e+00 2.034202e+01 2.395519 1.808428e-02 4.207130e-02
## SNX33 -1.167060e+00 5.135357e+00 -2.395045 1.810661e-02 4.211501e-02
## FOXP3 -1.049349e+00 1.938904e+00 -2.394482 1.813318e-02 4.216852e-02
## KHDRBS1 -5.847215e+00 7.682263e+01 -2.394273 1.814305e-02 4.218321e-02
## PDPR 6.759636e+00 3.659483e+01 2.394144 1.814917e-02 4.218916e-02
## CHD7 1.886839e+01 4.486913e+01 2.393932 1.815915e-02 4.220410e-02
## CDKN2AIP 3.190295e+00 2.376953e+01 2.393843 1.816338e-02 4.220536e-02
## NUP43 -2.282598e+00 1.474970e+01 -2.393770 1.816681e-02 4.220536e-02
## TAPT1 3.261607e+00 2.214571e+01 2.393453 1.818184e-02 4.223201e-02
## C8orf58 -1.365667e+00 6.774849e+00 -2.393362 1.818614e-02 4.223371e-02
## B4GALNT2 1.879940e+00 5.062191e+00 2.393084 1.819928e-02 4.225570e-02
## SCLY -4.336061e-01 2.599165e+00 -2.393011 1.820273e-02 4.225570e-02
## CDC42EP4 -1.815844e+00 1.018529e+01 -2.392912 1.820745e-02 4.225838e-02
## TRPC6 3.281230e-01 9.027659e-01 2.392460 1.822889e-02 4.229986e-02
## LLGL2 -1.747035e+00 3.625928e+00 -2.392107 1.824562e-02 4.233042e-02
## LTO1 -9.787928e-01 9.091057e+00 -2.391563 1.827148e-02 4.238211e-02
## FGFRL1 -1.028458e+00 3.056748e+00 -2.391130 1.829203e-02 4.242149e-02
## ARHGEF2 -2.435398e+01 1.785842e+02 -2.390776 1.830888e-02 4.244597e-02
## ATRAID -8.937052e+00 5.035186e+01 -2.390758 1.830975e-02 4.244597e-02
## MMACHC 4.389047e-01 1.995317e+00 2.389812 1.835486e-02 4.254224e-02
## POLK 5.121325e+00 2.009408e+01 2.388750 1.840561e-02 4.264394e-02
## TSPAN15 -3.178310e-01 6.990599e-01 -2.388743 1.840593e-02 4.264394e-02
## CDK5RAP3 -3.560387e+01 2.413536e+02 -2.388501 1.841754e-02 4.265754e-02
## NRG1 -2.983786e+00 6.878998e+00 -2.388400 1.842234e-02 4.265754e-02
## ILKAP -2.895475e+00 1.502851e+01 -2.388361 1.842424e-02 4.265754e-02
## TMEM170B 2.567742e+01 1.049071e+02 2.388320 1.842619e-02 4.265754e-02
## RPH3AL -1.006287e+00 2.837813e+00 -2.387425 1.846911e-02 4.274857e-02
## SIGLEC10 -4.430194e+01 1.200481e+02 -2.386249 1.852558e-02 4.287013e-02
## CRIP1 -6.875791e+01 8.135996e+01 -2.386170 1.852938e-02 4.287013e-02
## GLMN 4.693231e-01 2.871021e+00 2.386106 1.853248e-02 4.287013e-02
## TTC33 3.663799e+00 1.880220e+01 2.386018 1.853673e-02 4.287160e-02
## NUP58 1.646763e+01 6.098182e+01 2.385302 1.857120e-02 4.294296e-02
## PIK3R3 5.870154e-01 2.134135e+00 2.384725 1.859906e-02 4.299900e-02
## SCN9A 1.970189e+00 3.471534e+00 2.384162 1.862624e-02 4.305344e-02
## FCGR3B 2.140546e+03 6.069773e+03 2.383893 1.863926e-02 4.307319e-02
## OAF -2.786795e+00 1.065974e+01 -2.383836 1.864205e-02 4.307319e-02
## IFI27L2 -1.084947e+01 2.122706e+01 -2.383536 1.865655e-02 4.308878e-02
## ZNF441 2.737593e+00 8.332394e+00 2.383497 1.865842e-02 4.308878e-02
## RGL2 -4.193510e+01 2.274544e+02 -2.383471 1.865970e-02 4.308878e-02
## KIF3A 8.213346e-01 3.951729e+00 2.383216 1.867204e-02 4.310891e-02
## TSPAN33 -1.541919e+01 4.558144e+01 -2.382832 1.869069e-02 4.314354e-02
## SMS 6.064220e+00 4.362716e+01 2.382716 1.869630e-02 4.314811e-02
## PLEKHA3 2.873693e+00 1.959763e+01 2.382609 1.870147e-02 4.315164e-02
## CLEC5A 8.177565e+00 1.976708e+01 2.382201 1.872129e-02 4.318896e-02
## ATXN7L1 1.764578e+00 9.068632e+00 2.381485 1.875608e-02 4.326083e-02
## GOLGA8H 9.818506e-01 3.468855e+00 2.381309 1.876466e-02 4.327219e-02
## TOX4 1.358869e+01 9.386951e+01 2.381148 1.877249e-02 4.328182e-02
## MXD1 3.409405e+02 1.244850e+03 2.381046 1.877748e-02 4.328492e-02
## GABPB1 2.113245e+00 1.739452e+01 2.380806 1.878917e-02 4.330346e-02
## SLC35G1 1.840644e-01 5.646184e-01 2.380394 1.880924e-02 4.334129e-02
## ZC3H15 7.596622e+00 4.990139e+01 2.380144 1.882142e-02 4.336091e-02
## TIGD3 -4.980094e+00 1.031599e+01 -2.379710 1.884261e-02 4.340131e-02
## AFAP1 -1.661642e+00 4.676465e+00 -2.379398 1.885784e-02 4.342783e-02
## MTX3 1.719999e+00 6.242047e+00 2.379325 1.886145e-02 4.342783e-02
## CELF2 8.308864e+01 3.380498e+02 2.378763 1.888894e-02 4.348269e-02
## RLF 1.039324e+01 3.510974e+01 2.378523 1.890069e-02 4.350131e-02
## CHD6 3.853831e+00 1.290575e+01 2.378072 1.892280e-02 4.354373e-02
## BIRC2 1.772018e+01 1.027338e+02 2.377770 1.893761e-02 4.356936e-02
## MBD6 -3.236279e+01 1.288315e+02 -2.376731 1.898861e-02 4.367223e-02
## RNF181 -1.612531e+01 7.283246e+01 -2.376676 1.899134e-02 4.367223e-02
## DHRS12 -6.612086e+00 2.423196e+01 -2.376587 1.899572e-02 4.367223e-02
## MIEN1 -9.215455e+00 4.660618e+01 -2.376560 1.899705e-02 4.367223e-02
## USP18 1.892198e+01 1.791235e+01 2.375781 1.903539e-02 4.375189e-02
## ALS2CL -2.035427e+00 4.226670e+00 -2.375562 1.904622e-02 4.376416e-02
## MX1 1.989812e+02 2.609680e+02 2.375523 1.904811e-02 4.376416e-02
## SEC11A -1.313592e+01 1.105663e+02 -2.375078 1.907007e-02 4.380613e-02
## PDRG1 -2.910316e+00 1.468776e+01 -2.374393 1.910390e-02 4.387533e-02
## RAP2A 4.357472e+00 2.219980e+01 2.373921 1.912725e-02 4.392046e-02
## PLEKHF1 -2.183760e+00 4.088781e+00 -2.373845 1.913105e-02 4.392069e-02
## RPA2 -7.437591e+00 5.804162e+01 -2.373580 1.914416e-02 4.394227e-02
## ZNF100 3.063363e+00 1.207066e+01 2.372666 1.918950e-02 4.403782e-02
## BCORL1 -3.537456e+00 1.536225e+01 -2.372415 1.920196e-02 4.405789e-02
## CCDC6 2.846594e+00 1.785300e+01 2.372184 1.921340e-02 4.406897e-02
## NDUFAB1 -4.909884e+00 1.792403e+01 -2.372168 1.921422e-02 4.406897e-02
## RARS1 -3.055767e+00 2.727670e+01 -2.371907 1.922720e-02 4.409022e-02
## PURA 2.012851e+00 9.817666e+00 2.371321 1.925632e-02 4.414847e-02
## RPE 2.245667e+00 1.534480e+01 2.370841 1.928027e-02 4.418720e-02
## SERPINF1 -1.064518e+00 3.423952e+00 -2.370833 1.928067e-02 4.418720e-02
## TRIM24 3.601621e+00 2.171718e+01 2.369758 1.933433e-02 4.429384e-02
## UACA 8.688168e-01 3.029000e+00 2.369751 1.933467e-02 4.429384e-02
## KIAA0319 3.992811e+00 1.110885e+01 2.369476 1.934840e-02 4.431559e-02
## ACTR1B -6.360037e+00 3.230692e+01 -2.369363 1.935406e-02 4.431559e-02
## DDHD2 2.831407e+00 1.173952e+01 2.369337 1.935538e-02 4.431559e-02
## CACNA2D4 -2.159580e+00 7.927264e+00 -2.368963 1.937409e-02 4.434987e-02
## PET100 -1.604511e+01 5.337917e+01 -2.368433 1.940064e-02 4.440208e-02
## ZNF223 -4.354789e-01 1.914829e+00 -2.367988 1.942294e-02 4.444455e-02
## TBCC -5.825471e+00 3.799948e+01 -2.367097 1.946768e-02 4.453832e-02
## PDCL 9.440405e-01 1.126053e+01 2.366730 1.948615e-02 4.457199e-02
## TBC1D1 1.392559e+01 8.625291e+01 2.365931 1.952638e-02 4.465539e-02
## PTPRE 4.858318e+01 2.166827e+02 2.365427 1.955183e-02 4.470496e-02
## FAM210A 6.924837e-01 4.477924e+00 2.365173 1.956464e-02 4.472564e-02
## ZNF526 -1.061208e+00 5.420247e+00 -2.364438 1.960178e-02 4.480191e-02
## HAUS8 -1.063832e+00 5.389528e+00 -2.364172 1.961524e-02 4.482404e-02
## ARID1A 1.792633e+01 9.428265e+01 2.363831 1.963253e-02 4.485491e-02
## SMYD5 -2.861707e+00 9.047072e+00 -2.363349 1.965693e-02 4.490200e-02
## AKR1B1 -8.091414e+00 2.668506e+01 -2.362979 1.967571e-02 4.493625e-02
## SPCS3 1.587338e+01 1.342507e+02 2.362257 1.971237e-02 4.501130e-02
## TYW1B 6.165642e-01 2.262828e+00 2.362173 1.971667e-02 4.501246e-02
## IGFBP2 -2.531575e+00 3.117651e+00 -2.362012 1.972486e-02 4.501418e-02
## NOL7 -4.942263e+00 2.716856e+01 -2.362009 1.972502e-02 4.501418e-02
## M1AP 1.418752e+00 2.552213e+00 2.361761 1.973761e-02 4.503426e-02
## WTIP 3.225076e-01 2.166025e+00 2.361673 1.974209e-02 4.503581e-02
## DYNLL1 -1.433010e+01 7.980739e+01 -2.360510 1.980137e-02 4.516235e-02
## TRIO 2.615531e+00 9.871065e+00 2.360230 1.981567e-02 4.518628e-02
## GLYR1 1.140809e+01 9.631619e+01 2.359927 1.983113e-02 4.521284e-02
## BRK1 -2.686588e+01 1.710527e+02 -2.359242 1.986619e-02 4.528407e-02
## ZBTB32 9.790751e-01 1.441802e+00 2.359018 1.987767e-02 4.530152e-02
## FAM156A -1.856933e+00 5.038230e+00 -2.358786 1.988952e-02 4.531984e-02
## ZNF611 2.133972e+00 8.239436e+00 2.356801 1.999149e-02 4.554342e-02
## MOCS3 -5.968267e-01 5.218685e+00 -2.356232 2.002075e-02 4.560133e-02
## NT5C2 4.672657e+01 2.124893e+02 2.356017 2.003185e-02 4.561784e-02
## PDE4DIP 3.898010e+00 1.750962e+01 2.355800 2.004305e-02 4.563459e-02
## C1orf131 1.028269e+00 1.079578e+01 2.355723 2.004704e-02 4.563491e-02
## FBXO44 -6.519324e+00 1.659027e+01 -2.355383 2.006455e-02 4.566601e-02
## TOX 1.105005e+00 4.183430e+00 2.354340 2.011849e-02 4.577999e-02
## MED23 7.530890e+00 3.481579e+01 2.354102 2.013081e-02 4.579923e-02
## CWC15 -5.078924e+00 4.753225e+01 -2.353479 2.016308e-02 4.585850e-02
## ZNF471 2.928202e-01 9.145706e-01 2.353450 2.016459e-02 4.585850e-02
## TCEANC2 2.074674e+00 1.543131e+01 2.353064 2.018464e-02 4.589528e-02
## RCOR1 2.037070e+01 9.074520e+01 2.352353 2.022157e-02 4.596341e-02
## PAG1 5.496817e+01 1.555030e+02 2.352338 2.022235e-02 4.596341e-02
## PDSS2 6.575495e-01 6.071353e+00 2.351377 2.027236e-02 4.606006e-02
## GSTO2 9.339694e-01 2.164190e+00 2.351372 2.027264e-02 4.606006e-02
## CRELD1 -1.891732e+00 9.180591e+00 -2.350031 2.034264e-02 4.621024e-02
## C15orf40 -2.647226e+00 2.747028e+01 -2.349888 2.035012e-02 4.621838e-02
## FAM86B1 -6.843883e-01 2.181992e+00 -2.349723 2.035874e-02 4.622420e-02
## FCHSD2 1.207835e+01 6.265653e+01 2.349690 2.036047e-02 4.622420e-02
## DAG1 1.024625e+00 8.247110e+00 2.349221 2.038497e-02 4.627096e-02
## MGAT5 6.029525e+00 4.416082e+01 2.348521 2.042169e-02 4.634543e-02
## CYB5D1 2.942419e+00 8.488635e+00 2.348055 2.044614e-02 4.639203e-02
## ZNF518B 2.788994e+00 1.440457e+01 2.347897 2.045442e-02 4.640196e-02
## CAMLG -5.015563e+00 3.164762e+01 -2.347500 2.047531e-02 4.644046e-02
## ITGA4 3.679367e+01 1.355601e+02 2.347091 2.049679e-02 4.648029e-02
## COX7C -3.509200e+01 1.291261e+02 -2.346624 2.052137e-02 4.652713e-02
## NBPF20 5.309094e+00 7.111792e+00 2.346517 2.052701e-02 4.653103e-02
## EIF4G1 8.589353e+00 7.173805e+01 2.346223 2.054254e-02 4.654766e-02
## NPIPA7 -3.178847e+00 1.139457e+01 -2.346165 2.054557e-02 4.654766e-02
## WNT2B 1.955939e-01 8.187923e-01 2.346155 2.054612e-02 4.654766e-02
## STBD1 6.496623e+00 1.136897e+01 2.346008 2.055384e-02 4.655625e-02
## FZD6 5.108215e-01 1.551125e+00 2.345485 2.058143e-02 4.660984e-02
## PRPF19 -8.060101e+00 4.128558e+01 -2.345133 2.060006e-02 4.663995e-02
## MPI -6.318820e+00 2.455735e+01 -2.345026 2.060570e-02 4.663995e-02
## C2orf42 9.003941e-01 8.084941e+00 2.345011 2.060652e-02 4.663995e-02
## SMURF1 3.797371e+00 1.848964e+01 2.343948 2.066274e-02 4.675827e-02
## TMEM60 4.017275e+00 2.154349e+01 2.342912 2.071770e-02 4.686850e-02
## ARPC5 -1.797973e+02 8.170247e+02 -2.342881 2.071935e-02 4.686850e-02
## LANCL1 2.985533e+00 1.324769e+01 2.342670 2.073060e-02 4.688499e-02
## TFEC 1.132290e+01 3.921318e+01 2.342478 2.074080e-02 4.689913e-02
## ADGRE1 -4.029771e+01 8.087104e+01 -2.342382 2.074588e-02 4.690167e-02
## VKORC1 -6.716686e+00 2.440993e+01 -2.342069 2.076256e-02 4.693044e-02
## PRKCE 5.541801e+00 1.138614e+01 2.341623 2.078631e-02 4.697258e-02
## RBSN 2.388601e+00 1.969911e+01 2.341570 2.078913e-02 4.697258e-02
## CYB5D2 -1.790625e+00 8.321056e+00 -2.340008 2.087247e-02 4.714756e-02
## MYBBP1A -1.812174e+00 6.380048e+00 -2.339970 2.087452e-02 4.714756e-02
## KIAA2013 -1.990227e+01 8.915603e+01 -2.339709 2.088849e-02 4.717013e-02
## AP1G2 -2.130812e+01 1.103251e+02 -2.339425 2.090366e-02 4.719540e-02
## CRY1 2.468973e+00 7.842803e+00 2.338805 2.093689e-02 4.726001e-02
## NUP214 -4.625784e+01 1.911196e+02 -2.338742 2.094025e-02 4.726001e-02
## SEC11C 1.964337e+01 3.590295e+01 2.338462 2.095528e-02 4.728494e-02
## MCOLN1 -4.170971e+00 1.607359e+01 -2.337858 2.098773e-02 4.734915e-02
## LRIG2 1.358330e+00 9.407140e+00 2.336784 2.104548e-02 4.747041e-02
## FAM200B -8.858955e+00 4.426267e+01 -2.336084 2.108325e-02 4.753973e-02
## SMIM5 3.234954e+00 7.977298e+00 2.336065 2.108423e-02 4.753973e-02
## PLCL2 1.334697e+01 8.763922e+01 2.335558 2.111164e-02 4.759248e-02
## ZNF720 6.744596e-01 4.263660e+00 2.334595 2.116368e-02 4.769557e-02
## SUPT5H -1.434800e+01 7.357200e+01 -2.334563 2.116541e-02 4.769557e-02
## ACBD7 1.043573e+00 2.422620e+00 2.333768 2.120851e-02 4.777439e-02
## SMARCC2 -7.045125e+00 5.809793e+01 -2.333765 2.120864e-02 4.777439e-02
## PBXIP1 -6.549004e+01 2.398842e+02 -2.333694 2.121247e-02 4.777439e-02
## ACAD11 1.626518e+00 7.709358e+00 2.332786 2.126181e-02 4.787640e-02
## CENPM 9.848174e-01 1.562284e+00 2.331749 2.131824e-02 4.799436e-02
## RAD9A -2.511125e+00 1.299548e+01 -2.331641 2.132411e-02 4.799847e-02
## CCDC82 6.057799e+00 3.463308e+01 2.331388 2.133790e-02 4.801645e-02
## OBSCN -2.120000e+00 4.263741e+00 -2.331327 2.134123e-02 4.801645e-02
## LITAF -4.225954e+02 1.695519e+03 -2.331272 2.134424e-02 4.801645e-02
## LAMTOR5 -2.748276e+01 9.674124e+01 -2.330496 2.138656e-02 4.810253e-02
## STX16 2.647313e+01 1.431381e+02 2.330272 2.139881e-02 4.812096e-02
## LMBR1 4.737661e+00 1.822222e+01 2.329992 2.141411e-02 4.814624e-02
## ZFAND5 6.033476e+01 2.388022e+02 2.329469 2.144274e-02 4.820146e-02
## SERINC2 -1.835548e+00 3.447299e+00 -2.329358 2.144880e-02 4.820594e-02
## B4GAT1 -4.966352e-01 1.598192e+00 -2.328299 2.150689e-02 4.832735e-02
## TLCD4 2.803722e+00 3.671654e+00 2.327458 2.155308e-02 4.841316e-02
## CSNK1G3 3.898498e+00 2.119050e+01 2.327455 2.155324e-02 4.841316e-02
## OS9 -7.493362e+01 4.900790e+02 -2.327052 2.157544e-02 4.845383e-02
## TAF9 4.738672e+00 3.076792e+01 2.326906 2.158346e-02 4.846268e-02
## EXT2 2.653164e+00 2.043653e+01 2.326825 2.158792e-02 4.846351e-02
## TREX1 -1.173568e+01 2.155944e+01 -2.326739 2.159266e-02 4.846497e-02
## SIPA1L2 3.218874e+01 7.630592e+01 2.326332 2.161508e-02 4.850612e-02
## MYL12B -1.113387e+02 5.420822e+02 -2.325977 2.163470e-02 4.854096e-02
## SCAMP1 4.376627e+00 2.308457e+01 2.325636 2.165353e-02 4.857403e-02
## ABHD12 -2.781561e+00 1.046983e+01 -2.325202 2.167751e-02 4.861863e-02
## MRPL14 -5.163916e+00 1.666765e+01 -2.324825 2.169832e-02 4.865609e-02
## SRSF10 6.728189e+00 5.712247e+01 2.324590 2.171135e-02 4.867611e-02
## CSNK1A1 2.441014e+01 1.691170e+02 2.324240 2.173071e-02 4.871030e-02
## PIK3CB 1.104720e+01 5.083445e+01 2.323707 2.176028e-02 4.876736e-02
## CHMP5 5.648692e+01 1.664297e+02 2.323627 2.176470e-02 4.876805e-02
## TMEM208 -7.552003e+00 2.840579e+01 -2.323510 2.177123e-02 4.877347e-02
## TMEM243 -1.765251e+00 1.558741e+01 -2.323303 2.178267e-02 4.878989e-02
## JTB -3.447338e+01 1.369361e+02 -2.322630 2.182010e-02 4.886449e-02
## KDM4C 3.719714e+00 2.293489e+01 2.322316 2.183753e-02 4.889429e-02
## CDK11A -5.981653e+00 3.797667e+01 -2.321978 2.185639e-02 4.892729e-02
## MED20 1.549877e+00 1.116383e+01 2.321430 2.188692e-02 4.898639e-02
## DTX1 -9.621196e-01 2.220793e+00 -2.321337 2.189209e-02 4.898872e-02
## PLXNA1 -5.765600e-01 1.748965e+00 -2.320967 2.191270e-02 4.902558e-02
## MOSMO 9.536097e-01 4.881234e+00 2.320114 2.196037e-02 4.912297e-02
## TMEM35B -1.787665e+00 1.474854e+01 -2.319921 2.197115e-02 4.913718e-02
## FBXO8 2.212737e+00 1.404209e+01 2.319852 2.197501e-02 4.913718e-02
## CPLANE2 -2.497356e-01 6.914240e-01 -2.319672 2.198510e-02 4.915048e-02
## LAMTOR4 -8.210451e+01 1.927988e+02 -2.319233 2.200970e-02 4.919619e-02
## AEBP2 1.980623e+00 1.282738e+01 2.319095 2.201740e-02 4.920412e-02
## SHLD2 2.763512e+00 2.035907e+01 2.319021 2.202154e-02 4.920412e-02
## SCMH1 1.045632e+00 5.731456e+00 2.318709 2.203904e-02 4.923394e-02
## WDR1 -5.202025e+01 3.990696e+02 -2.318402 2.205629e-02 4.926223e-02
## RBM44 8.425303e-01 2.126454e+00 2.318336 2.206001e-02 4.926223e-02
## PSMD7 -8.881679e+00 6.501870e+01 -2.318245 2.206508e-02 4.926428e-02
## EHHADH 3.199492e-01 1.220799e+00 2.317715 2.209490e-02 4.932157e-02
## ARNTL 1.059828e+01 4.545895e+01 2.317554 2.210395e-02 4.933248e-02
## IL27RA -7.824109e+00 4.168119e+01 -2.317422 2.211138e-02 4.933979e-02
## ZNF606 -4.830399e-01 2.971470e+00 -2.317167 2.212573e-02 4.936252e-02
## PYCR3 -7.303397e-01 1.437874e+00 -2.317044 2.213261e-02 4.936859e-02
## LRRC3 -3.191191e-01 1.221760e+00 -2.316848 2.214367e-02 4.938396e-02
## SLC22A1 2.847686e+00 7.523701e+00 2.316670 2.215369e-02 4.939703e-02
## PEX11B -2.424019e+00 2.087471e+01 -2.316443 2.216650e-02 4.941631e-02
## SIRT3 -1.601866e+00 8.250311e+00 -2.316237 2.217810e-02 4.943286e-02
## TAF13 2.025166e+00 6.980751e+00 2.315962 2.219364e-02 4.945552e-02
## VRK2 3.125169e+00 1.473284e+01 2.315909 2.219661e-02 4.945552e-02
## XKR8 -1.536505e+01 8.095189e+01 -2.315677 2.220969e-02 4.947539e-02
## SOX12 -6.759388e-01 2.236598e+00 -2.315123 2.224101e-02 4.953584e-02
## PDE6B -7.756191e-01 2.813572e+00 -2.314911 2.225301e-02 4.955328e-02
## LGMN 8.383033e-01 3.548687e+00 2.314243 2.229083e-02 4.962816e-02
## KLHL8 2.847720e+01 6.464648e+01 2.313715 2.232078e-02 4.968551e-02
## ME2 1.483109e+01 7.556347e+01 2.313588 2.232799e-02 4.969160e-02
## SMARCA4 -2.887305e+00 1.715594e+01 -2.313519 2.233189e-02 4.969160e-02
## MTG2 -2.471731e+00 1.532331e+01 -2.313215 2.234911e-02 4.972058e-02
## USP39 3.510204e+00 4.384130e+01 2.313075 2.235711e-02 4.972905e-02
## SET 1.540792e+01 1.590795e+02 2.312268 2.240299e-02 4.981248e-02
## GARS1 3.903432e+00 4.002217e+01 2.312267 2.240302e-02 4.981248e-02
## B
## GBGT1 21.7469865064
## MCM6 19.2447950452
## SLC12A9 19.1118932677
## SLC15A3 18.6324515490
## MAPK8IP3 18.0081073463
## CDC7 17.1928081817
## AIF1 16.4721578476
## CLSPN 15.8331698984
## PITPNM1 15.6921139408
## TWF2 15.2893997983
## METRNL 15.1695323836
## CARS2 14.9970065423
## COTL1 14.9666537877
## TTC9 14.8240227256
## HPS6 14.6488591176
## RNA28SN4 14.4113570107
## VPS37C 14.3341489342
## GPR132 14.1590736500
## PLEC 13.8593827029
## RNA18SN2 13.8482773660
## RNA18SN3 13.8482773660
## RNA18SN4 13.8482773660
## SLC8B1 13.6381633788
## PELI3 13.4862191138
## FBP1 13.3572580961
## SYNGR2 13.3025491686
## TMCO6 13.2292455525
## MCM4 13.1724448247
## STK11IP 13.1723557133
## HAAO 13.0634204159
## EZH2 12.9899956994
## SIN3B 12.9841746403
## DTL 12.9157542237
## ZNF362 12.8997145167
## NAPSA 12.6751451490
## STRN4 12.6232001091
## RFC5 12.5665123499
## SLC44A1 12.5596353067
## IER5L 12.4102141494
## SUV39H2 12.3580964118
## CSK 12.2963947513
## TNFRSF8 12.1414181349
## TRAPPC12 12.1363530157
## GINS4 12.1241533070
## RACGAP1 12.1215243601
## OXER1 12.1166788097
## MELK 12.0005785172
## SELENOI 11.9847130295
## ZNF367 11.9426079045
## SIPA1 11.9345859792
## STIL 11.8774242919
## SIGLEC7 11.8648942321
## PITPNC1 11.8558058545
## KPNA2 11.7857882940
## CEP57L1 11.6680610936
## FBXO5 11.6415226328
## CD1D 11.5848887129
## VENTX 11.5446123250
## CEBPA 11.4485371263
## WEE1 11.4334587466
## TECPR1 11.3710521266
## ATAD2 11.2310277563
## PPP1R9B 11.1914629321
## AP2A1 11.0817526319
## SPRYD3 11.0520756877
## PLD2 11.0403137686
## CHEK1 11.0264265410
## SLC39A13 10.9858426717
## CIC 10.9703237519
## TBC1D10A 10.9514575929
## SLFN13 10.8503955805
## CDK2 10.8329087693
## FBH1 10.8222589764
## ZWILCH 10.7938361455
## NDC80 10.7906920631
## RRM2 10.7635171300
## PALM2AKAP2 10.7314753913
## SH3TC1 10.7224085191
## BRAT1 10.6937721784
## MKI67 10.6817179792
## NCKAP5L 10.6658940181
## FUT8 10.6466917343
## CDC6 10.6309047750
## MAFK 10.4935326522
## ZNF775 10.4460431701
## IMPDH1 10.3086700847
## MED22 10.3050301475
## COLGALT1 10.2733524455
## GINS1 10.2436035069
## SGSM2 10.2415297378
## WDHD1 10.1490672652
## EFHD2 10.1462015424
## GEN1 10.0565412795
## CDC42EP2 10.0438271118
## C19orf38 10.0408601926
## FAM89B 10.0070508635
## HDGFL2 9.9964743247
## ASGR1 9.9804860543
## GNPTG 9.9791381359
## AAMP 9.9145752126
## WDR76 9.8714659301
## NCAPH 9.8631868964
## NAGS 9.8347791769
## PARPBP 9.8177280688
## LSP1 9.7882324000
## ARHGAP11A 9.7712830042
## FUT7 9.7136837634
## DONSON 9.7026386820
## RAB40C 9.5837901645
## SREBF1 9.5194816358
## SCAP 9.5186326657
## CD37 9.4326714947
## CUEDC1 9.4166236830
## SLC25A11 9.3641944697
## TIMELESS 9.3357850094
## FAM20C 9.3228549425
## PAGR1 9.3104268997
## PGLS 9.2842234188
## NUSAP1 9.2788091165
## TAGLN 9.2601298447
## SPAG7 9.2343384984
## AP1M1 9.2197645538
## TNNI2 9.1885685930
## LRRC25 9.1843894610
## TOP2A 9.1698982236
## ARHGAP4 9.1612098151
## TTLL12 9.1593317495
## PGAP6 9.1544141055
## ACTB 9.1405291755
## CARD9 9.1013417234
## HELLS 9.0825433251
## SMC2 9.0784115406
## CEP20 9.0208115362
## KNL1 8.9800733477
## TRIP13 8.9544110648
## TOR4A 8.9402085995
## DNA2 8.9054355525
## DHRSX 8.8845410396
## MMP17 8.8414792488
## ASPM 8.8338526938
## CD300C 8.7870772552
## SMC4 8.7476514298
## NUCB1 8.7110799057
## TRAF7 8.6476116963
## PDLIM2 8.6068696331
## PLK4 8.5873616787
## GPR35 8.5848971508
## CENPF 8.5832012796
## KNTC1 8.5762210891
## LRRC61 8.5620165813
## CSNK1G2 8.5118001081
## BRCA2 8.4407067868
## NOTCH4 8.4021457740
## CYBA 8.3947124335
## MARCO 8.3896003761
## SHCBP1 8.3808946489
## GAA 8.3734252263
## GFPT1 8.3524635948
## LSM6 8.3511250685
## SEPTIN11 8.3308418801
## TBC1D22A 8.2732170705
## KIF11 8.2571723072
## TTYH3 8.2428762337
## NCAPG 8.2323736121
## SUMF1 8.2259188926
## SLC43A2 8.1915484669
## OSGIN1 8.1400679740
## ZNF385A 8.1201092613
## STK32C 8.1186369371
## SPDL1 8.1127591497
## FANCI 8.1088290005
## NCAPD2 8.1076842804
## SLC25A6 8.0622518271
## CEP55 8.0504076050
## EIF3D 8.0426575062
## MNT 7.9983567410
## ADIPOR2 7.9909877150
## ZGPAT 7.9906484425
## NSD2 7.9889502275
## CFP 7.9796528909
## CRYL1 7.9611004920
## ORC1 7.9593772696
## CIP2A 7.9555957337
## RAB11B 7.9338286968
## LILRB2 7.9154459894
## REXO1 7.8873783592
## RIPOR1 7.8821924589
## SLC27A1 7.8736788813
## TNFAIP8L2 7.8665523767
## DSCC1 7.8512486582
## ZWINT 7.8127499020
## KLF16 7.8006973238
## ARF5 7.7972263277
## MVP 7.7786012143
## NANS 7.7741532011
## XRCC2 7.7609799220
## CYTH4 7.7563213093
## TCF19 7.7415703094
## NSMF 7.7373360263
## RNA28SN1 7.7347527443
## MTRF1 7.7286872661
## PPP1R12C 7.6863682410
## SF3B4 7.6751412832
## PSKH1 7.6692147911
## FKRP 7.6621618331
## TUBA1A 7.6561871188
## UCHL5 7.6466150797
## CENPJ 7.6340161765
## KIF23 7.6215397967
## ARRDC1 7.6206845928
## FCGRT 7.6181948080
## PSAT1 7.6106396042
## PRPF6 7.5774301063
## BUB1B 7.5759402401
## SYTL1 7.5712562657
## TYMS 7.5553214738
## ALDOA 7.5486280575
## POLM 7.5349359710
## PELATON 7.5328217382
## RXRA 7.5297890128
## PIP4K2C 7.5040835090
## RNPEPL1 7.5016111765
## SUGP1 7.4892188041
## IKBKG 7.4734932299
## PHRF1 7.4668484768
## CCNA2 7.4664932317
## RTL8C 7.4565665939
## RFWD3 7.4450282261
## TRABD 7.4401819615
## CATSPER1 7.4211735897
## ZNF865 7.3909227876
## GNB2 7.3827933846
## SKA3 7.3809719110
## SNAPC2 7.3617719416
## ZBTB7A 7.3437925864
## SPAG5 7.3433643355
## DOK1 7.3431624321
## NAPRT 7.3332166890
## PSMF1 7.3223145137
## ZNF467 7.3186405522
## FXYD5 7.3011495266
## PARL 7.2818045955
## AGAP3 7.2786403469
## TMEM187 7.2725822961
## AKT1 7.2420865221
## DENND6B 7.2127014761
## TOM1L2 7.2101364387
## CDC25A 7.1981866855
## ZNF524 7.1950540105
## SUN2 7.1801693536
## CDC45 7.1801469892
## RNH1 7.1592276815
## C1orf54 7.1566835631
## HMOX1 7.1390825443
## ZYX 7.1272790013
## LIMD2 7.1031184878
## ARFGAP1 7.1029219823
## BUB1 7.0885612479
## MAP1S 7.0750999836
## WDR25 7.0675537777
## AKT2 7.0521081240
## SLC12A2 7.0437771781
## FTL 7.0382798150
## FAM98A 7.0207046295
## HADHA 7.0033322645
## DCAF15 6.9988186135
## GSTZ1 6.9880273771
## EEF1D 6.9344798094
## IFFO1 6.9128415241
## DVL1 6.9089962480
## TRAPPC2B 6.9001287299
## PARVG 6.8918122786
## NUDT22 6.8877414686
## HSD17B1 6.8646787128
## XRCC1 6.8568418278
## SGO1 6.8558407282
## SCAMP2 6.8410198279
## DGKQ 6.8111809880
## POLA1 6.7978338037
## CDCA2 6.7884956255
## CCDC130 6.7817116969
## ABHD17A 6.7712579187
## CORO7 6.7700252404
## CD48 6.7697629449
## HIRA 6.7683647086
## HSPA1A 6.7608384170
## EXOC3 6.7566167620
## ARNTL2 6.7445085825
## MCM8 6.7295670436
## ZSCAN29 6.7159739910
## PLA2G6 6.6808790431
## CENPU 6.6790453610
## PPP6R2 6.6660311046
## DOK4 6.6457468620
## ACADM 6.6379432953
## ZFAND4 6.6293220153
## SERPINB6 6.6284323255
## CCNQ 6.6206878992
## ATAD5 6.5980360252
## MTHFD1 6.5965776662
## SPNS1 6.5924798096
## SART1 6.5661893656
## PYCARD 6.5625095706
## KCNQ1 6.5611513726
## MAN2B1 6.5533212428
## YEATS2 6.5531026344
## AKT1S1 6.5408267615
## ATF6B 6.5356078742
## EGLN2 6.5355251827
## CDC37 6.5284391770
## TMEM129 6.5228208625
## TMEM259 6.5179483292
## RTL8A 6.5171543673
## CDCA7 6.4783759005
## POLR2E 6.4746716086
## TMEM115 6.4709479316
## BCKDHA 6.4700765430
## KIF15 6.4572660489
## TBCB 6.4567604076
## NET1 6.4497545812
## UBXN1 6.4317027161
## LPCAT1 6.4100158312
## B3GNT8 6.3970896279
## PDP2 6.3917879598
## SLC16A1 6.3779209382
## UBXN11 6.3778711559
## PSTPIP1 6.3681609070
## TNIK 6.3508770713
## BARD1 6.3445308715
## STK10 6.3355871386
## ARHGEF1 6.3331829749
## TPX2 6.3255525034
## TMEM250 6.3074901908
## BLM 6.2899835022
## SNX21 6.2680888745
## FKBP14 6.2558395980
## SDF4 6.2554836113
## SASS6 6.2379343112
## ARL6IP4 6.2272596971
## DBNL 6.2139658708
## ZRSR2 6.1920063102
## ADAP1 6.1850358686
## ABHD11 6.1793181926
## HDHD5 6.1789173241
## UCP2 6.1651926032
## PLEKHM2 6.1595074095
## SPICE1 6.1466231133
## C15orf39 6.1400280468
## EIF4E 6.1385448406
## CACFD1 6.1261373647
## FOLR2 6.1124737279
## CATIP 6.1061174329
## ALG11 6.0897363757
## LRCH4 6.0846864607
## INO80B 6.0759945201
## EIF3G 6.0669291250
## TRAM2 6.0659756227
## FRS3 6.0597005171
## FAAH 6.0588822844
## INTS7 6.0531293916
## TNFSF13 6.0526049579
## CRTC1 6.0488632719
## FAM234A 6.0291109935
## GPR137 6.0259045285
## SAT2 6.0199146849
## GTSE1 6.0145895221
## RCN3 5.9876805330
## DENND1C 5.9862498650
## LYPLA2 5.9808810740
## S100PBP 5.9668464747
## FAM111A 5.9530839269
## CLTB 5.9171438181
## PPP2R1B 5.9067431031
## CKAP2 5.9042142374
## NFIC 5.8927600366
## SGTA 5.8858871024
## FGD3 5.8779869415
## C18orf21 5.8274252653
## ZNF513 5.8183049195
## TNFRSF14 5.8131958266
## TSPAN4 5.7953507903
## ATP6V0D1 5.7881470576
## SLC35F2 5.7658418371
## PKN1 5.7656121809
## SLC66A2 5.7650283593
## HNRNPLL 5.7519163439
## RAD51 5.7356526628
## CCDC71 5.7353387098
## CNPY3 5.7228881566
## BCKDK 5.7178251614
## ICAM3 5.6904579447
## UHRF1 5.6767888891
## ERF 5.6745628235
## ZNF710 5.6566034188
## E4F1 5.6561787078
## SCYL1 5.6446848488
## NR1H2 5.6444053592
## XPOT 5.6386226175
## SOCS4 5.6324118771
## NT5C 5.6318419163
## RNASEK 5.6274692352
## CHD1L 5.6098479648
## PRKCSH 5.6067524223
## LARP1 5.5986574181
## TBC1D10C 5.5977074689
## NCAPD3 5.5967492761
## CAPNS1 5.5841286969
## TNFRSF1B 5.5746364373
## MDH2 5.5691683552
## SH3BP1 5.5661669060
## GNL3L 5.5644615869
## EPN1 5.5554059608
## JUNB 5.5537519063
## TTK 5.5532636402
## MASTL 5.5517138055
## ARSA 5.5482200117
## SEPTIN9 5.5472841975
## LRP8 5.5434579745
## STARD4 5.5393736415
## SPHK2 5.5185881881
## NACA 5.5166918626
## CENPL 5.5072966100
## POLE2 5.5058247169
## SOWAHD 5.4960368041
## BATF3 5.4592264126
## RANBP3 5.4499635531
## ARHGAP1 5.4482450579
## APP 5.4421079963
## IMPA2 5.4244990912
## CTSZ 5.3806898605
## MAP2K5 5.3798132490
## C1orf112 5.3735200582
## CEP152 5.3692969982
## GRK6 5.3687236272
## ATP2C1 5.3574474183
## SPIN1 5.3528278912
## RPL19 5.3514973860
## SHARPIN 5.3407730801
## MTOR 5.3375572518
## SMARCD2 5.3213460512
## PAICS 5.3211333373
## LIN9 5.3207799246
## KCNAB2 5.3207557245
## IDH3G 5.3044120431
## ALG10 5.2952651350
## RPS2 5.2890864484
## IGFLR1 5.2870524690
## EDEM1 5.2815539190
## GMEB1 5.2696858279
## USF2 5.2573849313
## GALK2 5.2406438564
## DHCR24 5.2278342518
## ATG4B 5.2247886875
## TSC22D4 5.2233998571
## ZBTB47 5.2182708028
## ZNF688 5.2009528825
## CD300LF 5.1894845994
## GLI4 5.1889893408
## COMT 5.1888171206
## MTDH 5.1675944936
## BTBD2 5.1565353975
## PPP2R3B 5.1530851266
## DNAJC4 5.1513862032
## ATP8A1 5.1260153972
## SPSB3 5.1208683353
## FCHO1 5.1102182162
## UBR1 5.0971707063
## PPP1R35 5.0791790404
## HJURP 5.0731073495
## AP4M1 5.0699661607
## HBA2 5.0669967417
## NCAPG2 5.0512978932
## ARSB 5.0497038046
## REEP3 5.0421408000
## CASTOR1 5.0379693009
## SARS1 5.0088546594
## NADSYN1 5.0087913515
## ZNF358 4.9978034539
## TAF5 4.9856714820
## CD2BP2 4.9835292883
## PLA2G7 4.9764358831
## MCUR1 4.9509802544
## CCDC134 4.9485866176
## MAPK9 4.9453943058
## CDH13 4.9412582050
## PKD2 4.9373284732
## UBOX5 4.9298938928
## PLA2G15 4.9282086737
## ACAA1 4.9233964116
## INTS1 4.9208575578
## SLC2A6 4.9099521480
## RPL8 4.9085503905
## CCDC88B 4.9078576256
## EEF2 4.9062460069
## NCOA3 4.9043606186
## MYG1 4.9018675640
## TARS1 4.8866567613
## POGLUT3 4.8811129160
## MED11 4.8729959792
## MPHOSPH9 4.8687256318
## DLGAP5 4.8656108689
## RACK1 4.8465853574
## CYHR1 4.8401815770
## NACC1 4.8354614975
## SCD 4.8335561912
## EIF2AK1 4.8312797427
## EME1 4.8293676897
## KIF20B 4.8287997607
## CBX8 4.8271730159
## CENPE 4.8237238711
## CHMP6 4.7933056759
## CEP128 4.7886933882
## CYBC1 4.7787804036
## PNPLA6 4.7773481560
## MAF1 4.7729318294
## MED1 4.7566828422
## ESRRA 4.7495331272
## CIRBP 4.7467456598
## CCDC61 4.7336889607
## TBC1D10B 4.7298563418
## MMP14 4.7273703018
## TOR2A 4.7249409722
## AP5Z1 4.7224705053
## NNT 4.7156295728
## KIF24 4.7072479183
## ALKBH4 4.6972723166
## CCDC106 4.6922519468
## DEF6 4.6789732940
## TMUB1 4.6773136354
## PCGF5 4.6768422794
## BRIP1 4.6607700338
## ANKIB1 4.6546321910
## LHPP 4.6412767809
## DCAF10 4.6368575011
## EML3 4.6289648269
## SGSM3 4.6247042260
## BIRC6 4.6237672292
## NOP53 4.6226537795
## INTS4 4.6178697244
## DHX33 4.6104330550
## ABCD4 4.6079010136
## CD38 4.6062353753
## STXBP2 4.6057392221
## SIKE1 4.6021837800
## S1PR4 4.5988449679
## G6PC3 4.5939352560
## RIMKLB 4.5825472420
## LMAN1 4.5797922229
## UBTD1 4.5715769722
## NFATC2IP 4.5700290153
## NDUFB5 4.5605767738
## DLG1 4.5528602509
## RHOT2 4.5475775074
## NECAP2 4.5417705773
## PHB2 4.5186891406
## MYCBP2 4.5096726359
## SLC9A3R1 4.5079247135
## TGFBI 4.4996726402
## ARHGEF12 4.4980969448
## CASP10 4.4939741096
## OCEL1 4.4898990232
## SLC16A3 4.4844860594
## MBOAT7 4.4821574944
## BABAM2 4.4803270174
## CALU 4.4748124853
## CTDSP1 4.4713435685
## WDR13 4.4678972354
## MYO1G 4.4626168421
## RENBP 4.4581039850
## PNKP 4.4567897495
## DPY19L1 4.4566080721
## IRF2BP1 4.4377712063
## HMGCS1 4.4324877178
## RRM1 4.4247611851
## TTF1 4.4245261680
## INO80E 4.4235823905
## EDRF1 4.4232086238
## DDRGK1 4.4132799649
## RABEPK 4.3945528974
## ORC6 4.3889800972
## RBM10 4.3828023846
## MAP3K11 4.3682235333
## BMP8B 4.3607631633
## MRTFA 4.3559310576
## RAB4B 4.3506323534
## FKBP8 4.3430382397
## KIFC2 4.3390880793
## SRD5A3 4.3353673963
## KLHL22 4.3336011163
## TMEM88 4.3317251068
## PFKL 4.3251469698
## NHLRC2 4.3200224073
## LRRC37A3 4.3194167153
## TNK2 4.3130801261
## EHBP1L1 4.3124309161
## RPS9 4.3118472235
## ADAM8 4.2866858375
## TFAP4 4.2851631350
## ARHGDIA 4.2800578277
## MANEA 4.2754576010
## SH3BGRL3 4.2704338599
## GART 4.2646049661
## MCM2 4.2618654098
## GPBAR1 4.2585706432
## CHMP2A 4.2571003867
## UHRF2 4.2558195735
## MPG 4.2527790821
## ENDOV 4.2346518250
## PLCB3 4.2338577604
## OSGEP 4.2334431064
## DNAJB2 4.2287634230
## CDC14B 4.2232773711
## PACS1 4.2202457371
## FAM149B1 4.2166117791
## BCAP31 4.2087554191
## ERCC6L 4.2048348763
## PPP2R1A 4.1971765427
## RNASEH1 4.1947685179
## SETX 4.1832877453
## HEATR5B 4.1768578582
## CDCA5 4.1729683349
## USP6NL 4.1622731923
## CDK9 4.1463400217
## C12orf75 4.1461275511
## PNPLA2 4.1429445609
## CAPZB 4.1319600363
## MED15 4.1273308634
## CAPN10 4.1264746586
## SCAMP4 4.1262793635
## LIN52 4.1220994027
## NFX1 4.1200153002
## PWWP2B 4.1112469852
## TAPBP 4.0977825568
## COASY 4.0945048396
## TCF25 4.0944724268
## USP48 4.0835363758
## TP53I11 4.0823939882
## JAML 4.0751518189
## BAG6 4.0701364288
## CDC42BPA 4.0675079952
## AATF 4.0474824664
## CROCC 4.0450121601
## MAPKAPK3 4.0423442048
## GNAI2 4.0410017827
## FAM98C 4.0402530459
## RDX 4.0363190745
## ECT2 4.0306299899
## DOK2 4.0246055531
## FOXM1 4.0233899493
## CEP76 4.0231479713
## PITPNB 4.0139360476
## AGPAT2 4.0122623565
## TYROBP 4.0121704383
## CSF1R 4.0096721612
## FAM122C 3.9980053531
## TAB1 3.9972653299
## BRCA1 3.9968689737
## TMEM134 3.9939730039
## SRF 3.9858007580
## EEF1G 3.9842259219
## ARRB1 3.9814759143
## CENPK 3.9780869516
## SOS1 3.9745378806
## SCRN2 3.9698535333
## GSDMD 3.9658606313
## SLC25A28 3.9614269995
## COMMD5 3.9601708895
## MARS1 3.9574663298
## CDCA8 3.9386262151
## POLD4 3.9273855941
## H2BC11 3.9271687562
## SPC25 3.9114717073
## TRPM7 3.9076724170
## RPUSD1 3.8956061311
## SSNA1 3.8909906214
## RGS12 3.8900396445
## ELOB 3.8890689943
## NDUFS1 3.8831226429
## TELO2 3.8678197528
## EIF3F 3.8591983666
## EIF4EBP3 3.8543599563
## MTFR2 3.8503799401
## TAF2 3.8443258332
## PPP1R32 3.8333800945
## ENG 3.8326980570
## CENPB 3.8288022852
## ZFPL1 3.8181976226
## KCNK6 3.8116365883
## GMEB2 3.8013643788
## SH2B2 3.7913449676
## JPT1 3.7907090333
## EMC10 3.7847905302
## PKHD1L1 3.7797591754
## MCFD2 3.7756357520
## WBP1 3.7745337568
## MIB2 3.7731805442
## ACD 3.7700626014
## COPS7A 3.7633355282
## TIPIN 3.7588339212
## CMTM7 3.7463723721
## STMN1 3.7400801385
## SPATS2 3.7393987560
## KIAA1614 3.7374920958
## ERCC1 3.7370636827
## ENO1 3.7340503499
## NUMA1 3.7291748852
## CCDC22 3.7268247812
## PSAP 3.7264321051
## MPND 3.7114207569
## ID3 3.7066908258
## ARFRP1 3.7052747568
## ZNF511 3.7048305704
## SGSH 3.7047091350
## LYRM9 3.7026912121
## ZNF784 3.6972686158
## C1QTNF6 3.6941205826
## RIN1 3.6930171693
## RNF167 3.6900353435
## EFNB1 3.6782382746
## SKA1 3.6757773321
## NAA35 3.6333229873
## TMEM150A 3.6222859059
## OXLD1 3.6152363109
## ARFGEF2 3.6107117237
## EIF3M 3.5980807427
## C1orf35 3.5979571878
## MCRS1 3.5792027484
## TMEM175 3.5785997628
## TSPO 3.5742245617
## CDC27 3.5601970688
## FBRSL1 3.5580774704
## CCDC18 3.5536521941
## LAMTOR2 3.5535599955
## CYB561A3 3.5521388244
## RPS6 3.5514719937
## CD74 3.5504227502
## RELT 3.5459829399
## PHYH 3.5432212412
## ANAPC1 3.5425789521
## CSNK2B 3.5363853745
## CDK2AP2 3.5319501163
## GAK 3.5267171269
## JOSD2 3.5259405656
## PPM1F 3.5246043021
## GINS2 3.5224407726
## APEH 3.5206782328
## FAM193B 3.5161034671
## MMP24OS 3.5129344461
## CORO1A 3.5085113350
## EXOSC5 3.4833971136
## MIER2 3.4797329102
## RFC3 3.4593888240
## ZBTB22 3.4592402051
## FCER2 3.4549922611
## TUBGCP2 3.4486391003
## INCENP 3.4478275152
## AURKA 3.4458557413
## LAPTM5 3.4443956185
## DHFR 3.4375742661
## ACSF3 3.4345464649
## RECQL5 3.4308330101
## VPS13A 3.4307901621
## NEK2 3.4296534348
## UBE2J2 3.4287530335
## PACS2 3.4193190124
## ATPAF2 3.4157875121
## TTLL5 3.4133610120
## KIFC1 3.4092453040
## FLYWCH2 3.3971660166
## TSC2 3.3971279492
## C7orf50 3.3966029612
## C6orf226 3.3962418165
## CDIPT 3.3959212698
## ITGB1 3.3866047257
## NDRG2 3.3818345886
## PSMB10 3.3815322986
## TACC3 3.3732024127
## BTN3A1 3.3604565732
## CHMP4B 3.3577412911
## TPT1 3.3569618771
## AKAP8L 3.3554099714
## RPL6 3.3545843010
## C19orf25 3.3461526290
## NSD3 3.3419346181
## PCLAF 3.3384517516
## RAD54B 3.3293397557
## RASGRP3 3.3203080775
## SNRNP70 3.3148646192
## TOLLIP 3.3147117963
## ZNF707 3.3141869403
## TMEM53 3.3137374429
## ARFGAP2 3.3119304058
## PI4K2B 3.3102593205
## PDXDC1 3.3077918276
## ANP32E 3.3057106487
## CYB5R3 3.3044383045
## ATG16L2 3.3001400697
## FHOD1 3.2983191573
## TMEM64 3.2928701433
## TCEA1 3.2806886114
## ABCD1 3.2804907037
## DECR2 3.2799768011
## MCRIP1 3.2776168554
## PRR14L 3.2726672148
## CLASRP 3.2714012154
## EHD1 3.2677998568
## B3GNTL1 3.2554726090
## UBE2C 3.2549037998
## B3GALT6 3.2540921570
## SMC6 3.2522772775
## ZNF385D 3.2429726166
## UBXN2A 3.2409380265
## C2CD3 3.2396574206
## DHX15 3.2349388651
## NELFB 3.2282078314
## TMEM102 3.2161226471
## ARID1B 3.2151980844
## SSX2IP 3.2049719181
## TCF20 3.2021466748
## SYNJ2 3.1914909782
## JMJD7 3.1886401821
## ZNF664 3.1866011744
## KIAA0930 3.1859585893
## B3GALT4 3.1858994743
## LTB 3.1837738857
## GSTK1 3.1776624097
## STON1 3.1755515939
## TPI1 3.1695189334
## RPAP2 3.1663410155
## CYCS 3.1650877812
## FRMD3 3.1572988556
## CHMP1A 3.1541121263
## FAM3A 3.1509584296
## TXNRD2 3.1499329949
## TFEB 3.1493021475
## GPAA1 3.1478238139
## SELENOO 3.1452788624
## RPL27A 3.1437909765
## MIER3 3.1409824549
## ZNF778 3.1341580847
## STMN3 3.1339027837
## NRM 3.1274073602
## CYP51A1 3.1270228787
## SS18L1 3.1246583833
## RAD51AP1 3.1243647986
## HSF1 3.1198292004
## MXD4 3.1175468771
## ADRM1 3.1142433451
## PPP1CA 3.1119931798
## ACAP1 3.1097898470
## TLK1 3.1082271430
## HIGD2A 3.1067490049
## CACTIN 3.1054677712
## TMEM161A 3.1045931410
## GSTP1 3.1038519093
## CEP295 3.1017930493
## KCNQ5 3.0948235818
## IL18BP 3.0920806070
## SUZ12 3.0918406696
## GPR180 3.0891801574
## RPS11 3.0878201134
## SMC3 3.0868446701
## RIC1 3.0867079197
## HECTD4 3.0745403506
## ZNF414 3.0682751067
## SH3TC2 3.0680289159
## LRRC29 3.0615618167
## LARP4 3.0577043144
## KIFAP3 3.0543255010
## CKAP5 3.0480409681
## BBS5 3.0440979785
## ZKSCAN3 3.0419736516
## POLH 3.0403601765
## RBBP8 3.0395896389
## MLLT1 3.0359274002
## GGA1 3.0307059373
## FSCN1 3.0231913252
## NSMCE1 3.0220393643
## GNB1L 3.0204106760
## NCLN 3.0203098000
## CNOT6 3.0071198438
## BBX 3.0057546142
## ASMTL 3.0048773067
## SCAF1 2.9974756552
## GRHPR 2.9929119402
## HAUS7 2.9915525245
## SLC22A18 2.9904646025
## SIRT6 2.9903150112
## COPE 2.9859187817
## H2BC8 2.9850799226
## STX4 2.9706608126
## NSF 2.9664950740
## ANKRD36C 2.9659352827
## ZDHHC8 2.9657034641
## MAD2L1 2.9648907834
## SCAND1 2.9524325283
## ARHGEF5 2.9479318514
## D2HGDH 2.9462842663
## AKR7A2 2.9391983753
## RSU1 2.9272250532
## C18orf54 2.9245042807
## SCUBE1 2.9194537366
## CREB3L2 2.9159634647
## BDP1 2.9159304947
## MIIP 2.9143900742
## CCDC12 2.9134864851
## ZDHHC12 2.9126270369
## LANCL3 2.9114944062
## PATL1 2.8979137530
## ARHGAP21 2.8938893949
## LNPEP 2.8919478924
## VPS51 2.8892629305
## VANGL1 2.8817406662
## RABGAP1 2.8788917672
## HSPA13 2.8730102640
## TYK2 2.8698089232
## RAB3A 2.8694091559
## AIP 2.8654160319
## LILRB3 2.8649115790
## PUSL1 2.8622809398
## SPIN4 2.8592998001
## GMNN 2.8563736166
## EFR3A 2.8554295551
## HSF4 2.8549110846
## KLHDC3 2.8523832643
## SERF2 2.8414552335
## XPNPEP1 2.8372528695
## SLC25A1 2.8335211734
## XK 2.8282581213
## RETSAT 2.8278061189
## HCK 2.8204073118
## PEAK1 2.8199386512
## NDUFC2 2.8173660629
## PFDN5 2.8173519046
## SNAPC4 2.8152535207
## GALK1 2.8119063150
## UBE3C 2.8082478524
## GPR162 2.8067869570
## RBM15B 2.8057120099
## STUB1 2.8031702566
## RBM42 2.7982838192
## RPS4X 2.7971215026
## XPNPEP3 2.7955524000
## CAPS 2.7826482599
## FAU 2.7788386060
## DBT 2.7780816142
## ACOT8 2.7779277546
## FRG1 2.7737119097
## PTPN11 2.7679294932
## NUP205 2.7649745738
## ZBTB38 2.7647075415
## TIGD5 2.7586220888
## LMF2 2.7558687114
## CIAO3 2.7481852964
## SPI1 2.7472851914
## SURF2 2.7448608827
## TP53BP1 2.7423142032
## RALY 2.7390479628
## GINS3 2.7372534410
## DARS2 2.7368986688
## TCIRG1 2.7287229076
## PRICKLE3 2.7173626379
## BAZ1B 2.7171844606
## SETD2 2.7153064786
## ARAP1 2.7149197160
## BRF1 2.7148244185
## C5orf51 2.7115084922
## PHETA1 2.7047504797
## RGS14 2.7037072052
## LDB1 2.7033569816
## UBE3B 2.7024919459
## CUEDC2 2.7007126999
## PRIM1 2.7003110372
## PRIM2 2.6983209667
## ALDH3B1 2.6971515575
## POLL 2.6952347175
## USP24 2.6931718946
## KATNB1 2.6826737502
## REPIN1 2.6787498373
## DAGLB 2.6718349042
## MND1 2.6688148374
## PPM1M 2.6676195734
## FES 2.6665425737
## PCNA 2.6664404788
## EIF3C 2.6659218881
## CINP 2.6651971939
## BMPR2 2.6603923370
## ACY1 2.6576361914
## ZSCAN18 2.6484665044
## TMEM141 2.6479404200
## PPAT 2.6478971234
## GET4 2.6357301572
## NELFA 2.6349515500
## BTN3A3 2.6290806218
## CNN2 2.6204342833
## FAAP20 2.6198546261
## BLOC1S3 2.6183925884
## SPG7 2.6104527605
## ROGDI 2.6081359501
## RPL12 2.5938143002
## PUS7L 2.5935448163
## SIVA1 2.5867568462
## AP4E1 2.5838412895
## KCNN4 2.5808876022
## CCDC124 2.5802144078
## TP53I13 2.5642241060
## TYMP 2.5619182562
## RFC4 2.5584864287
## RPL13A 2.5541961140
## SMG1 2.5513288014
## BAG2 2.5512174006
## NIPA1 2.5484538789
## CHMP4A 2.5412321315
## ESPL1 2.5411158849
## PRAM1 2.5410058652
## ABI3 2.5404663004
## AMDHD2 2.5397095962
## NOC2L 2.5369591219
## MRPL49 2.5317966041
## PIP4K2A 2.5249057660
## SLC39A1 2.5229207751
## SLC7A7 2.5212840121
## JCHAIN 2.5199647948
## SF3A2 2.5199525389
## MRPL42 2.5197817430
## TCHP 2.5190303881
## ZNF219 2.5136483623
## FZR1 2.5094553573
## ARAF 2.5061357694
## PPCS 2.5032153339
## GUK1 2.4945201699
## MZF1 2.4910365141
## TNKS2 2.4888697234
## CIT 2.4887633847
## PRXL2B 2.4815197269
## ARPC1B 2.4807586398
## EVI5L 2.4763750563
## SPTBN1 2.4760047863
## TMEM179B 2.4757964622
## ZBTB45 2.4647033425
## ZMYND15 2.4589153165
## KIF18B 2.4517626884
## ERP29 2.4498458146
## IFT122 2.4459003447
## CASP3 2.4400542795
## MAN1A2 2.4361456440
## DPP7 2.4360398139
## HERC2 2.4347013100
## UBA1 2.4314986209
## PGAP3 2.4293835708
## MORN2 2.4246009558
## RPL15 2.4228520200
## BORCS6 2.4196158703
## SLC35A3 2.4177456774
## COBLL1 2.4157196152
## ENTPD4 2.4154903255
## PLOD3 2.4146850424
## TAF4B 2.4135184955
## SIRT2 2.4043821618
## ANKRD13D 2.4015443567
## ANO6 2.4005441378
## ZGRF1 2.3991634939
## RPS14 2.3913566918
## NANP 2.3911868175
## SMIM13 2.3906885654
## BPTF 2.3903475866
## TRPM4 2.3887333209
## COX4I1 2.3763118343
## BRMS1 2.3719845344
## LRRC8B 2.3717148447
## SNTB1 2.3698346047
## ATP6V1F 2.3585810893
## CHAC2 2.3577563874
## CLCN7 2.3514059627
## GIMAP1-GIMAP5 2.3502304935
## APRT 2.3468765303
## POLRMT 2.3465782627
## UBXN6 2.3461476620
## FANCL 2.3438529178
## RABEP2 2.3433169090
## RNF126 2.3399468403
## TRMT2A 2.3334885610
## DGKZ 2.3303542466
## RASGRP2 2.3258932316
## HSCB 2.3201020736
## AIFM3 2.3191080334
## NPEPL1 2.3126097535
## RPL3 2.3123764377
## DUS3L 2.3092389130
## DHPS 2.3085888987
## TBC1D20 2.3066612563
## ADCK2 2.3038015913
## STX17 2.2932980361
## LATS1 2.2875295774
## EPB41L5 2.2841664234
## AP2A2 2.2803057149
## SDHAF1 2.2779101244
## CCNE1 2.2736388001
## PEX16 2.2736023109
## SUCNR1 2.2712246895
## CHPF2 2.2701755712
## CCS 2.2700652560
## ARL5A 2.2661045542
## CD99L2 2.2660933975
## PARP6 2.2641227062
## RHOBTB1 2.2618240959
## PQBP1 2.2536289225
## ANKRD33B 2.2477731093
## TPPP3 2.2456921006
## BRICD5 2.2412590168
## ST14 2.2374599467
## SMG9 2.2372839964
## ESYT2 2.2361326805
## MED16 2.2358804405
## MEGF8 2.2308322716
## ZC3H6 2.2297921350
## ROCK2 2.2237743300
## SPG11 2.2230591465
## GNA15 2.2191028033
## RAB1B 2.2179242562
## DTX2 2.2173753694
## PGM3 2.2146336218
## RYR1 2.2115472179
## CRTAP 2.2105341825
## ELOF1 2.2036585750
## PIK3C2A 2.2025447727
## WIZ 2.2013160016
## THEM6 2.2001497956
## NFKBIL1 2.1994341424
## BTN2A2 2.1983319769
## PEX5 2.1939294549
## PRMT3 2.1938168006
## VPS72 2.1934597550
## PHACTR4 2.1882780738
## PAXIP1 2.1850682834
## CSNK1G1 2.1806292014
## MYO9B 2.1788585015
## NUDT16L1 2.1780791350
## TALDO1 2.1771366626
## FRYL 2.1763991950
## LRRC37B 2.1738112062
## DGAT1 2.1705501557
## EPG5 2.1681335337
## HCFC2 2.1601413066
## RALGAPB 2.1576294107
## CRKL 2.1571410889
## NFAM1 2.1564202319
## TMEM189 2.1554806837
## CNOT1 2.1529030040
## DCTN1 2.1521635078
## PIP5K1C 2.1511123616
## FAM110A 2.1478528417
## RPL18A 2.1406107705
## KIAA1191 2.1395661719
## CCAR2 2.1373283255
## RPS6KB1 2.1253603480
## XPO7 2.1249503904
## MAML2 2.1219899872
## LENG1 2.1210855980
## MAP3K14 2.1203693887
## PSMB3 2.1171968841
## RAD17 2.1165523311
## SENP1 2.1080642008
## CXCR5 2.1043573044
## NCOR1 2.1041734457
## LY86 2.1018335084
## SESTD1 2.1003600413
## SH2B1 2.0958235913
## TASOR2 2.0877769421
## GTPBP6 2.0864596355
## MTMR2 2.0838071760
## ARPC4-TTLL3 2.0821460606
## INO80D 2.0752015669
## TM7SF3 2.0715249348
## FERMT3 2.0705496097
## ASB13 2.0673772425
## MUTYH 2.0664656716
## EIF3K 2.0647208972
## DCLRE1A 2.0615820407
## ZNF75D 2.0594163109
## PNMA1 2.0545043690
## TOP3B 2.0473627363
## EOLA2 2.0427213784
## MKLN1 2.0399456831
## CLIC4 2.0330122747
## PGGHG 2.0329963584
## SMIM29 2.0239132300
## HLA-DPB1 2.0236025722
## LARP1B 2.0217829217
## RAI1 2.0191502160
## INAFM1 2.0145820492
## CCDC96 2.0073798586
## KIF2C 2.0060278457
## NOL12 2.0003268875
## DENND4C 1.9975426243
## ACTG1 1.9967789454
## SYNRG 1.9944666391
## LDLR 1.9833689014
## NUBP2 1.9830415472
## AATK 1.9803756932
## TRIM28 1.9760154022
## RPS6KA4 1.9703484718
## NIBAN2 1.9692448406
## COG3 1.9669954652
## PDHX 1.9643113374
## TMEM101 1.9620044067
## FBRS 1.9566541223
## STON2 1.9565745304
## SAP25 1.9509270724
## AP1B1 1.9482017095
## ARL15 1.9476667519
## WASF1 1.9467983380
## UAP1 1.9415681548
## UBR7 1.9409137328
## PCOLCE 1.9373884422
## CCNB1 1.9365183342
## ACACA 1.9348079851
## TMEM120A 1.9251784333
## GALNT10 1.9153589697
## TNIP2 1.9116719655
## EIF2AK4 1.9090356060
## GPATCH3 1.8980189327
## CEP44 1.8904827567
## FANCM 1.8878473611
## TMEM222 1.8861113252
## TEX264 1.8806433346
## PLK1 1.8805984912
## PEX14 1.8798287923
## EIF4EBP1 1.8780964861
## TBC1D5 1.8778531208
## FBXL15 1.8720975139
## FLOT2 1.8686370813
## NOSIP 1.8676756069
## BCL2L2 1.8668204363
## MED7 1.8638412883
## CLCN3 1.8619639509
## LAX1 1.8563143814
## WDR91 1.8544739987
## HDAC7 1.8539135865
## SLC49A3 1.8483748665
## HBS1L 1.8464245708
## ZCCHC2 1.8446332704
## CCDC32 1.8445234589
## RPS3 1.8424739057
## PAOX 1.8422422269
## ZNF580 1.8404878530
## SFXN5 1.8383026300
## WDR45 1.8355097325
## ACADVL 1.8346496897
## ERMP1 1.8341269051
## RPLP1 1.8327503727
## VSIR 1.8316404899
## BORCS8 1.8273103761
## G6PD 1.8269597296
## C16orf87 1.8268632864
## RPL26 1.8255032468
## PEAK3 1.8215506647
## CYLD 1.8095511795
## ATF7IP 1.8088853901
## RPL4 1.8072646280
## INTS11 1.8068998688
## DENND5B 1.8048257155
## NAGPA 1.8026276329
## SIDT2 1.8025071882
## MOSPD3 1.8010584881
## GOLGB1 1.7981479990
## C9orf16 1.7932672788
## ZSWIM7 1.7907483339
## ZNF764 1.7903792512
## NDC1 1.7889985267
## SMIM12 1.7854927943
## LEMD2 1.7802025631
## WDR24 1.7778820650
## PPP1R37 1.7760731505
## HMG20B 1.7715719771
## MFSD10 1.7699555853
## XAB2 1.7665439820
## GPSM3 1.7653125268
## TBCD 1.7652047045
## RPL11 1.7648581622
## CCDC57 1.7588382110
## PIGN 1.7585870810
## ADCK5 1.7555513566
## OXA1L 1.7553861901
## RFNG 1.7549224575
## NPDC1 1.7527121079
## GIMAP1 1.7523399726
## MAP2K2 1.7513666141
## NBPF10 1.7487572945
## PLXNB2 1.7487041141
## CD14 1.7451900535
## STX5 1.7445185451
## BANP 1.7397263263
## RINL 1.7384224855
## ZNF574 1.7359848431
## H4C8 1.7343764462
## FIGNL1 1.7343191666
## PHKG2 1.7295722920
## WASHC1 1.7252733029
## UHMK1 1.7073093132
## MTF2 1.7058030934
## KRI1 1.7033268999
## ZMYND8 1.6992675592
## GGT1 1.6987166380
## CIB1 1.6961535238
## CAPN15 1.6949825838
## TSSC4 1.6940205310
## BRPF3 1.6841996256
## RSF1 1.6841387808
## PPP1R14B 1.6822083746
## PRKRIP1 1.6812118346
## DDI2 1.6806978072
## B3GAT3 1.6764985861
## NDUFA3 1.6718335401
## HMGCL 1.6700322362
## ACTR1A 1.6637964165
## FCSK 1.6593283634
## FEN1 1.6574664385
## PPP6R1 1.6549296814
## HGS 1.6543376350
## KATNAL1 1.6464169205
## ERC1 1.6442276323
## PIK3R4 1.6417579869
## CSRP1 1.6392770489
## ZNF444 1.6390403701
## RPL13 1.6383687115
## FBXW5 1.6379971260
## LIPH 1.6336420376
## KCTD11 1.6292032614
## HMGN4 1.6276104893
## C2orf88 1.6263282226
## YAF2 1.6235409962
## PRR14 1.6232477457
## RPS5 1.6214485529
## LRSAM1 1.6196171484
## MFSD12 1.6187016563
## VPS13D 1.6181582802
## CLNS1A 1.6167546367
## ZBTB48 1.6151385255
## HDAC3 1.6135951533
## RBBP6 1.6135826915
## TNFAIP8L2-SCNM1 1.6123623509
## CDK6 1.6076767957
## GGH 1.6075961062
## PES1 1.6017681008
## SMCO4 1.5913262396
## TRAPPC10 1.5872011105
## CCSER2 1.5865472003
## TBC1D17 1.5857641101
## MLST8 1.5837424864
## RPS8 1.5805004582
## ESS2 1.5793518600
## COA8 1.5790632022
## CCDC153 1.5771158975
## AMPD2 1.5742281508
## FBL 1.5740076451
## U2SURP 1.5723606103
## DIPK1A 1.5715820813
## HK3 1.5696500550
## CDK17 1.5689163735
## ALDH16A1 1.5685794043
## CHD9 1.5682773316
## NEURL4 1.5609958475
## RNF25 1.5604145182
## RGPD8 1.5554255911
## KCTD3 1.5528147186
## TAZ 1.5475313703
## OGFR 1.5465867290
## SLC25A29 1.5449503137
## CLDN12 1.5424365245
## TNNC2 1.5412392307
## MTHFD2L 1.5410419362
## CCDC93 1.5393456054
## LTBP4 1.5318280061
## LRBA 1.5286257942
## PLA2G4B 1.5259525275
## ZNF692 1.5240793546
## PSMD4 1.5156311422
## TENT5C 1.5130714604
## POR 1.5123461291
## CEP131 1.5113992006
## RPL35 1.5094240412
## ARHGEF10L 1.5061229062
## F2R 1.5058271106
## TMEM86B 1.5009986748
## HOOK2 1.4990098252
## NUDT14 1.4961099191
## PCYT1B 1.4936600014
## SLC39A14 1.4925451529
## EIF4A1 1.4899253462
## ZHX1 1.4889284521
## SMARCD1 1.4885532532
## CLEC10A 1.4836278977
## SNX19 1.4801772785
## MBTPS2 1.4792371513
## MRPL28 1.4755552287
## SS18 1.4696514742
## ALKBH7 1.4662216252
## LFNG 1.4621676123
## LRRC47 1.4608444297
## COQ8A 1.4590502802
## RPL22 1.4585077137
## ANXA11 1.4581482029
## PPAN 1.4580371847
## OTUD4 1.4560003791
## HNMT 1.4552405715
## EDC4 1.4552111502
## PLD6 1.4502246156
## RPS20 1.4476600079
## WDR83 1.4455862441
## ASGR2 1.4429085078
## ARL6IP1 1.4395781105
## SLC25A45 1.4379807860
## SECTM1 1.4362723346
## RPL10 1.4362490635
## TBL3 1.4305754598
## HGH1 1.4269801370
## SKA2 1.4185792551
## SGF29 1.4161294171
## TTBK2 1.4121807586
## TKT 1.4105291904
## HARBI1 1.4084922689
## UHRF1BP1 1.4078285512
## EPB41 1.4066409670
## EHBP1 1.4043274771
## C12orf76 1.4037812508
## KCTD17 1.4020078710
## SLC37A1 1.3994743105
## RABL6 1.3944228502
## KAT5 1.3942333515
## THEMIS2 1.3890498868
## PRUNE1 1.3804572340
## FARSA 1.3795471268
## FAF2 1.3777722237
## CDK5 1.3773546901
## RNF113A 1.3759690542
## EGF 1.3730850013
## CHCHD5 1.3716412474
## WDR48 1.3706651244
## HLA-DPA1 1.3680190055
## TMEM8B 1.3588438463
## TMEM68 1.3586456626
## ACADS 1.3546441559
## RPL24 1.3521896949
## UBL7 1.3467117047
## DPP8 1.3372063531
## KIAA1958 1.3365454169
## TGFB1 1.3363164968
## SLFN12 1.3355250777
## FLNA 1.3333110879
## TEN1 1.3289716151
## MIEF2 1.3244057463
## PSMG3 1.3230211245
## RPS23 1.3218722031
## STX8 1.3180754624
## PDLIM7 1.3149924543
## SAV1 1.3141505078
## DHRS4 1.3125985700
## RER1 1.3110219794
## RNF169 1.3082422794
## HECTD1 1.3066427356
## PRC1 1.3056279081
## CASP6 1.3043437162
## CAV2 1.3034323950
## TUBGCP4 1.3016038663
## TEPSIN 1.2990129234
## MTRNR2L3 1.2943195071
## CDC34 1.2883111705
## EMSY 1.2869836995
## GTF2F1 1.2855437622
## NDUFAF7 1.2845916477
## SPPL2B 1.2803949221
## RPL7A 1.2759263208
## ANKRD52 1.2706137478
## THAP7 1.2664281519
## CASP8AP2 1.2638052150
## FAM214A 1.2559658543
## PANX1 1.2529041764
## CDK1 1.2524617957
## VPS13B 1.2515597696
## SORBS3 1.2507403900
## RABEP1 1.2461353681
## PDE5A 1.2431944243
## SEC31A 1.2383887562
## LATS2 1.2377283153
## RPL27 1.2354168283
## SLC2A13 1.2346697799
## TOPBP1 1.2313437837
## RFC1 1.2294281085
## ECH1 1.2271701449
## BAD 1.2266834506
## NAA10 1.2233982155
## RPL38 1.2227716954
## NR4A1 1.2220603276
## POLR1D 1.2191518054
## GIGYF1 1.2184803726
## CDKL1 1.2184135239
## UXT 1.2183762174
## PPP4C 1.2161157457
## NUTM2D 1.2158283847
## CCNB2 1.2143671573
## RPL21 1.2116589625
## RAVER1 1.2086734758
## TIA1 1.2058102529
## YDJC 1.2049176397
## NSD1 1.2047100660
## RC3H2 1.2042925127
## NDUFB7 1.1987476904
## TMEM38B 1.1944960181
## PIKFYVE 1.1931571724
## FAM50A 1.1914864855
## INPP4A 1.1869932389
## PTK2 1.1863790443
## IRF3 1.1833762913
## EDEM3 1.1803565135
## NUDT4 1.1787485121
## CCM2 1.1769538996
## SNX8 1.1730324624
## EIF2AK3 1.1722199041
## TWSG1 1.1698214407
## TPRN 1.1673257778
## TOGARAM1 1.1670086046
## HOMER3 1.1661579451
## TRMT61A 1.1643781868
## CERS6 1.1635207613
## NBEAL1 1.1595386234
## CAMK1 1.1560078494
## GON4L 1.1556347825
## SIGLEC9 1.1494289630
## CMC4 1.1491272640
## TTF2 1.1472481537
## HELB 1.1459520907
## FOXJ3 1.1438186414
## E2F6 1.1436186525
## MMD 1.1418845666
## FOXP4 1.1417274413
## GOLGA5 1.1330872563
## FEM1A 1.1326076551
## PHC3 1.1304484336
## RPRD2 1.1271009163
## GTF3C4 1.1268796987
## CCDC9 1.1234155693
## UNC13D 1.1219214007
## CCDC137 1.1165978680
## USP16 1.1162940762
## SEPSECS 1.1152552016
## ACLY 1.1138123066
## AGPS 1.1132955962
## EPSTI1 1.1039547057
## PFN1 1.1033497984
## ZNF316 1.1029349074
## PUF60 1.1022257489
## RUBCN 1.1018129704
## KCTD15 1.1013745052
## SH3GL1 1.0980740787
## TPD52 1.0965520054
## ZNF81 1.0953735585
## S100A13 1.0918983236
## BTF3 1.0884677201
## GTF3C5 1.0869393764
## RPL32 1.0847290920
## MYL5 1.0818772858
## BMP6 1.0816345094
## RWDD1 1.0783741829
## SRGAP2B 1.0770729477
## IDUA 1.0769837604
## TUFM 1.0744836888
## PSENEN 1.0716433154
## FBXL18 1.0713750954
## NEDD8 1.0707599059
## EDF1 1.0702667410
## NUDT4B 1.0613760943
## FBXO34 1.0605494141
## ERAP1 1.0593550336
## SPATA2L 1.0591060054
## IARS1 1.0587433661
## FASTKD1 1.0583730163
## RASA4B 1.0567024810
## FPGS 1.0519337922
## C11orf49 1.0516253386
## USO1 1.0504019549
## SPSB1 1.0473194587
## ASPSCR1 1.0472764604
## YRDC 1.0467649252
## PLB1 1.0461201054
## MGMT 1.0458007958
## MAP4K5 1.0438366306
## PABPC1 1.0436007460
## HVCN1 1.0425667024
## RPLP0 1.0370825832
## SKP1 1.0368164805
## GNE 1.0278314216
## DNAJC13 1.0269540385
## TRIM5 1.0241482973
## PPDPF 1.0211098789
## ZNF653 1.0204333807
## NDUFS7 1.0175547488
## TIMM17B 1.0155299803
## RBM12 1.0145181698
## ATXN3 1.0139994769
## TMEM97 1.0127993612
## NAA16 1.0099257712
## INTS9 1.0077339659
## ZNF598 1.0049460860
## CC2D1A 1.0020328049
## TMEM205 0.9977579134
## SLC9A3 0.9955001907
## LMAN2 0.9940458162
## NUP160 0.9918242435
## TGFBRAP1 0.9909476185
## HM13 0.9891639643
## ZC3H11A 0.9847181922
## CNTRL 0.9817399907
## KCNA2 0.9772880480
## SQLE 0.9763149005
## AGO3 0.9750965163
## LTBP3 0.9697083371
## NAA38 0.9658216043
## FLJ44635 0.9595278221
## LSM8 0.9576772428
## PCGF6 0.9571452665
## ECHS1 0.9541987035
## MTHFSD 0.9506144248
## PRPF31 0.9486337379
## CEBPB 0.9486004328
## SAP30BP 0.9478153913
## PLSCR3 0.9469145512
## ZNF622 0.9449170947
## TMEM170A 0.9439476338
## EOGT 0.9431109544
## REEP5 0.9427141760
## DMAP1 0.9404878108
## PHF6 0.9382295035
## C1orf159 0.9365234609
## EWSR1 0.9341521281
## CHAF1B 0.9331315143
## NUDC 0.9310008621
## STK25 0.9300637315
## COG6 0.9274744945
## RIPK3 0.9241491618
## PPIL2 0.9237735050
## USP28 0.9235910693
## MRPL20 0.9210838916
## DHRS4L2 0.9199791459
## PYGB 0.9196453232
## DHX36 0.9182585451
## HSBP1 0.9154423606
## ATG101 0.9145336192
## ELF1 0.9121468231
## LRCH3 0.9099992473
## STK26 0.8986986493
## RDH10 0.8974825063
## ANAPC15 0.8960871070
## ZNF428 0.8933306716
## RPH3A 0.8909615929
## RELL2 0.8906229732
## RPS7 0.8904988908
## GABARAP 0.8885194069
## RHPN1 0.8818301465
## TCEA2 0.8818194287
## ADAR 0.8807596572
## TDG 0.8803903656
## ZNF226 0.8778406378
## STRADA 0.8728582135
## RASA4 0.8700120698
## RAB30 0.8685830360
## MED9 0.8684275987
## LAMP1 0.8676773249
## HCFC1R1 0.8604998548
## CTNNAL1 0.8533251106
## KIAA1109 0.8531232131
## CARNMT1 0.8515229393
## SH2D3C 0.8501473284
## TAF10 0.8483565387
## PRELID3B 0.8467304851
## ADORA2A 0.8439761218
## CPTP 0.8419688463
## VEGFB 0.8399749734
## RAB34 0.8387787257
## IRF4 0.8317771056
## HACE1 0.8301606662
## SEMA7A 0.8279965340
## RPS16 0.8265863119
## TPCN1 0.8248525245
## TRMT1 0.8231221198
## KCTD5 0.8219717167
## RPS10 0.8218056522
## RPL29 0.8108250505
## CLASP2 0.8087010771
## IFI30 0.8081107508
## AMIGO2 0.8071394414
## FBXW9 0.8062752023
## ZNF236 0.8039763589
## FCN1 0.8037836434
## EIF4E2 0.8023614820
## RRP8 0.8022258830
## RPL23A 0.8020664107
## METAP1 0.7946864433
## EPDR1 0.7938073156
## CD226 0.7928138840
## RPL7 0.7914824571
## MYO1F 0.7906287877
## ACBD4 0.7894820608
## PRX 0.7867147583
## PSMD5 0.7865284451
## SRGAP2C 0.7845580648
## CDK12 0.7816520483
## FRS2 0.7785101107
## MAPK7 0.7781110627
## PARG 0.7769773370
## SSR1 0.7756129108
## RHBDD3 0.7737773316
## RPL18 0.7735021798
## PGP 0.7725078756
## OCRL 0.7724491175
## LILRA2 0.7694225076
## LEPR 0.7683103072
## ABCF3 0.7663217970
## RPS18 0.7641621960
## MICOS13 0.7637394710
## C17orf49 0.7621068684
## SIK3 0.7607203326
## SBF1 0.7601258765
## CDPF1 0.7536229036
## RBMX2 0.7470822226
## VGLL4 0.7452931381
## PCED1A 0.7431375417
## UCKL1 0.7420923892
## CD82 0.7396443914
## EOLA1 0.7370101784
## SLC66A1 0.7331857080
## ANKZF1 0.7329874486
## SLX1A 0.7254635270
## C16orf91 0.7254632297
## SDE2 0.7244455767
## KDM4B 0.7217602442
## ATE1 0.7167344927
## SMPD2 0.7123368165
## VPS28 0.7103088711
## ATP5MC2 0.7061617675
## LTBR 0.7044965935
## STK11 0.7042222618
## FAAP100 0.7039941347
## TNFAIP8L1 0.7016842181
## GFM2 0.7003918474
## ZNF714 0.6994007366
## RPS17 0.6988252947
## OGFOD3 0.6963704029
## KXD1 0.6925272489
## DNAL4 0.6889475965
## MAD2L2 0.6838133082
## MBD3 0.6810956817
## NR1H3 0.6796956601
## CEP104 0.6763342545
## ANKRA2 0.6730356246
## RAB3GAP2 0.6723017590
## SIL1 0.6679213354
## RPL5 0.6654674333
## FIZ1 0.6630916085
## AK1 0.6609654241
## SSBP4 0.6571914273
## SRP72 0.6559581642
## MON2 0.6549572148
## CHD2 0.6497677523
## CBY1 0.6486089468
## SLC29A3 0.6472508753
## SETBP1 0.6448508125
## SLC7A1 0.6446813934
## ARCN1 0.6438069071
## PDE1B 0.6435421291
## EEF1B2 0.6383833974
## SGO2 0.6350345025
## MED13 0.6337194106
## ITGB2 0.6313529303
## GNPTAB 0.6307635551
## ARPC4 0.6288236209
## THAP3 0.6287294545
## CCDC189 0.6246310805
## WRN 0.6234207286
## PCIF1 0.6231822555
## OTULIN 0.6228078996
## PCNX3 0.6218573022
## DEF8 0.6200140513
## CAPN2 0.6193921598
## ZNF765 0.6192403003
## USP12 0.6187155838
## HELZ 0.6184817130
## KRBA1 0.6162285860
## CLEC7A 0.6116228700
## ZNF500 0.6110938986
## HMOX2 0.6087898097
## C5AR2 0.6087290487
## APOBR 0.6072663205
## LTN1 0.6060828529
## U2AF1L4 0.6050661614
## ACAP3 0.6025382330
## QARS1 0.6017650532
## NAPB 0.6015859117
## GPS1 0.5944287454
## ANKMY2 0.5937733242
## CDYL2 0.5928875626
## AK3 0.5862612064
## STT3A 0.5831438588
## STARD5 0.5830332645
## IQCB1 0.5712020925
## ASL 0.5688443773
## SEC23IP 0.5687786377
## CWF19L1 0.5670750702
## NEK1 0.5639450510
## GHDC 0.5604332465
## SRPRA 0.5596406807
## TRIP11 0.5577988479
## TOMM7 0.5556597021
## CRTC2 0.5514615359
## SUDS3 0.5483684963
## VPS4A 0.5469856901
## PDS5A 0.5452150706
## GPD2 0.5442575072
## PURB 0.5432408874
## RO60 0.5420182419
## DDX52 0.5412433079
## REV3L 0.5410551650
## ZNFX1 0.5379063204
## WDR81 0.5378384933
## HDAC11 0.5374811321
## ZNF691 0.5313046069
## GPATCH2L 0.5302993876
## FASTK 0.5284185179
## PEAR1 0.5252664205
## TUT1 0.5230814779
## RPS27A 0.5196162085
## HBA1 0.5194474458
## RPS19BP1 0.5193216519
## FAM214B 0.5141733791
## RPL17 0.5109903011
## VAV2 0.5084729502
## TFPT 0.5073997194
## MYLK 0.5054703333
## WDR33 0.5046066059
## CNOT9 0.5014876310
## MYSM1 0.5011268988
## ELOVL7 0.5010411948
## EIF2B4 0.5000657137
## PSMB4 0.4959553626
## VAMP8 0.4919970207
## PBRM1 0.4903132330
## NIP7 0.4884484460
## CHTOP 0.4870856273
## MAP3K6 0.4846307824
## C16orf86 0.4840765564
## TTC21B 0.4840458967
## USP33 0.4828940339
## RGS19 0.4824388039
## BAHD1 0.4797522294
## FZD3 0.4759365133
## CTPS1 0.4732509703
## SNX25 0.4730728134
## OAZ1 0.4729049501
## TRADD 0.4701771247
## SIGIRR 0.4691043358
## LTA 0.4685656193
## LRRC45 0.4676058957
## CCDC115 0.4671513585
## ZNF341 0.4663412830
## SENP2 0.4648520443
## BRD9 0.4634638526
## TRIR 0.4620502205
## TYSND1 0.4607977358
## FUOM 0.4587118967
## RPL10A 0.4586853565
## COQ2 0.4586479746
## SLFN11 0.4558707907
## SSBP2 0.4554961605
## POLR2F 0.4544729810
## NBPF14 0.4517823046
## IZUMO4 0.4500594104
## SLC48A1 0.4499174105
## PFKM 0.4482007585
## DNAJC14 0.4463642164
## MICB 0.4448305036
## DESI2 0.4427984236
## PPP2R5E 0.4395961766
## ZNHIT1 0.4395238469
## SURF1 0.4364872305
## SERPINH1 0.4356815532
## CCDC77 0.4314113322
## UVRAG 0.4296095654
## SLC25A25 0.4229695831
## WAS 0.4221730613
## METTL26 0.4215480334
## PRELID1 0.4141156900
## SP4 0.4120958458
## POU2AF1 0.4098553162
## SLC10A7 0.4081367958
## RPL9 0.4065998774
## IL6ST 0.4055636682
## ENKD1 0.4053050543
## BCAT2 0.4049718595
## RASSF4 0.4018970299
## UBXN7 0.4016241979
## KLHL20 0.4013059530
## AAAS 0.3972575666
## RBBP5 0.3969077847
## CDK14 0.3960065484
## RAB3IP 0.3924111176
## SNF8 0.3919662129
## IDE 0.3907146259
## LENG9 0.3877853579
## MAPK11 0.3862681174
## NCK1 0.3832945628
## NR6A1 0.3825759078
## HACD2 0.3820218685
## SLC30A6 0.3816413573
## CRACR2A 0.3804322824
## TSEN34 0.3782773276
## LRRC23 0.3777655017
## CABIN1 0.3736704428
## MCCC2 0.3725872160
## VPS39 0.3708998697
## QTRT1 0.3700229213
## ECSIT 0.3685811714
## FAM53B 0.3684270870
## NECAB2 0.3643721606
## PSMD13 0.3633121177
## BIN3 0.3620516710
## LRRC58 0.3617942844
## ELOVL6 0.3614444029
## PI16 0.3612940603
## USP25 0.3595002115
## USP31 0.3583816171
## BOD1 0.3580813475
## GPKOW 0.3564519943
## PIH1D1 0.3549571298
## DPH5 0.3464637614
## CEBPZOS 0.3446558101
## ENGASE 0.3439614786
## TTC17 0.3409413723
## AXIN1 0.3403099609
## CORO1B 0.3393786374
## KLHL24 0.3372931493
## SLC5A3 0.3370035524
## GOLIM4 0.3346150455
## UBA52 0.3339073863
## RPS3A 0.3322385016
## ATR 0.3319909390
## ITFG1 0.3292011554
## TADA3 0.3281207282
## PTDSS2 0.3250128443
## NMRAL1 0.3239803952
## PRKCI 0.3238919160
## COQ9 0.3236256017
## TIAF1 0.3232069024
## FER 0.3222054601
## DGCR6L 0.3219654850
## FRA10AC1 0.3191114881
## TESK1 0.3179052261
## MME 0.3174646118
## KPNA6 0.3170384685
## WDR70 0.3133757114
## CENPA 0.3124814514
## NDOR1 0.3124354408
## RABL3 0.3111873911
## PTPN6 0.3090585207
## ARHGAP45 0.3059867152
## PLEKHO1 0.3056901102
## UBALD1 0.3053011651
## MSRB3 0.3044906307
## PLEKHA8 0.3038349062
## ARID5A 0.3008696070
## DGCR2 0.3003658964
## PMM1 0.2978905023
## CTDNEP1 0.2978369263
## ISY1 0.2928168269
## ETFB 0.2868381165
## RNF213 0.2848720981
## ZMIZ2 0.2839719028
## MAPK3 0.2832590995
## FDXR 0.2820607048
## SEMA3E 0.2818881921
## MTFR1 0.2801013056
## MYO1D 0.2792995172
## IRAK2 0.2787855496
## LMBRD2 0.2748140392
## EIF6 0.2745030596
## CCL3 0.2739794137
## UBAC2 0.2707669512
## RHOG 0.2706766887
## NEK4 0.2696714096
## GRAMD4 0.2695218038
## MAN2A1 0.2679287864
## NINJ2 0.2675180655
## ECI1 0.2642986078
## DNAJB4 0.2524983294
## ZNF669 0.2501438020
## BAX 0.2489835679
## TRIP6 0.2469105847
## TRIM11 0.2446557283
## HAUS2 0.2443569044
## ZNF671 0.2435331226
## ZNF581 0.2432905484
## CNST 0.2402266528
## TPP2 0.2394516334
## MED6 0.2376774366
## PIDD1 0.2368934145
## DBP 0.2363798460
## MORF4L2 0.2352781511
## SBF2 0.2343320760
## ZDHHC23 0.2328317712
## RPS25 0.2302798662
## APEX1 0.2290179873
## TAB3 0.2287188328
## TNFRSF10C 0.2269731848
## HPS3 0.2257611473
## ATP6V0E2 0.2249941831
## KLRB1 0.2247794287
## SMCHD1 0.2247673190
## HMGXB4 0.2244605912
## PBLD 0.2241626154
## LPAR2 0.2238636876
## YJU2 0.2216953788
## TEX2 0.2210435964
## CLCC1 0.2182160086
## BTN3A2 0.2177851654
## GGCX 0.2177408391
## FAM199X 0.2170865829
## ANKRD26 0.2169309022
## RMC1 0.2154813992
## FNDC3A 0.2146216402
## TSC1 0.2137952086
## XRN1 0.2131707332
## EIF3H 0.2125415024
## LONP1 0.2105668279
## CENPN 0.2052133399
## CDC26 0.2049302527
## KANSL3 0.2020306239
## C6orf47 0.1981812086
## SZRD1 0.1971640836
## PTPRA 0.1960244917
## ATXN7 0.1957884810
## APPBP2 0.1945286576
## CEP162 0.1932856507
## ZNF852 0.1929927027
## PDK2 0.1916576710
## PXN 0.1894930850
## GOLT1B 0.1853105316
## BRD2 0.1821627883
## CD4 0.1801056888
## NELFE 0.1789236048
## MIF4GD 0.1776684878
## VPS25 0.1773077460
## LILRA1 0.1771754736
## PNPLA7 0.1761261615
## NFATC1 0.1753224547
## IRF8 0.1750418132
## ATL1 0.1731591888
## N4BP2 0.1731442608
## ZNF446 0.1720876279
## IGFL4 0.1685565417
## RPL36 0.1643526138
## PLEKHM3 0.1627519707
## ATAD2B 0.1614717566
## LGALS1 0.1610281498
## NCOA6 0.1601495069
## GPER1 0.1560016352
## CTDP1 0.1555724057
## FLT3LG 0.1553142500
## PRDM4 0.1535578903
## SH3D21 0.1486667003
## CAPG 0.1462751659
## FAM126A 0.1456378551
## NCF4 0.1445373396
## ARHGAP5 0.1443517941
## WDR7 0.1436098345
## KCTD9 0.1433877926
## EEFSEC 0.1421025200
## PTGES2 0.1385774408
## WASHC2A 0.1378092687
## KDM5A 0.1376496568
## TMED1 0.1306021155
## DUS1L 0.1275141054
## SLC33A1 0.1264440889
## RAB2B 0.1252949507
## CEP63 0.1233864746
## CFL1 0.1217061285
## USE1 0.1207758372
## MCM9 0.1133798245
## CYP4F3 0.1131158152
## MRPL4 0.1120754622
## LIMS1 0.1120041972
## IDH3B 0.1108425247
## ABRAXAS2 0.1104641459
## SEMA4C 0.1097630959
## LSM11 0.1092222724
## NUP155 0.1076379006
## KPNA3 0.1069973942
## SH2D3A 0.1062768119
## ST6GAL1 0.1047751561
## PATL2 0.1033561340
## EXOC7 0.0997979504
## CTNNBIP1 0.0974415889
## OGT 0.0971414598
## SLC25A30 0.0949979453
## CPSF2 0.0918408923
## TMEM39B 0.0901067916
## UNC5A 0.0870157854
## ADNP 0.0847422862
## MOB3A 0.0819290495
## LPCAT4 0.0794377552
## SCP2 0.0767490069
## MIF 0.0761183587
## DEK 0.0730592870
## TRAF1 0.0669764865
## USP49 0.0612813666
## UBTF 0.0596552770
## CENPT 0.0596117020
## TAF1 0.0592178848
## PCDH12 0.0584020990
## TAF1B 0.0580514258
## PIGC 0.0569695726
## MYL6 0.0525380431
## NDUFV1 0.0501567639
## PRRG4 0.0499163194
## LRRC8D 0.0495317575
## NUS1 0.0467431507
## PRMT2 0.0416692657
## RFX1 0.0382146710
## CDIP1 0.0371667150
## ZBTB46 0.0368625385
## SLC2A4RG 0.0357101882
## RAD18 0.0346574112
## TESC 0.0338504918
## TNPO1 0.0329803951
## RBM27 0.0319371875
## CMTM3 0.0314138461
## MSH6 0.0304592614
## C19orf53 0.0279952063
## TMEM234 0.0261852228
## MEF2B 0.0221839243
## RPL30 0.0221828274
## ACTL6A 0.0207112518
## ZRANB1 0.0203231218
## INF2 0.0167940995
## RHOF 0.0155033025
## ACBD3 0.0154498215
## IPO9 0.0139660659
## CTSF 0.0139405367
## TXNDC5 0.0138050724
## SCARB2 0.0128952180
## SPATA20 0.0118632175
## TRAPPC1 0.0106307554
## RPP21 0.0095756236
## SLC38A1 0.0077409068
## GRAP 0.0077267754
## PIN1 0.0062441673
## IRAK1 0.0046482335
## KRBA2 0.0046418143
## SH3BP5L 0.0004624919
## SPAG1 -0.0011734709
## HSPA1B -0.0032519239
## B3GALNT2 -0.0038190715
## SUPT16H -0.0056190221
## EIF3A -0.0070990379
## ILVBL -0.0093661432
## RCBTB1 -0.0107416128
## USP20 -0.0109890348
## BOP1 -0.0126198978
## SCRIB -0.0148746763
## NEMP1 -0.0153775265
## RABAC1 -0.0167559797
## NDUFA13 -0.0212901073
## WDR74 -0.0220293790
## FLII -0.0239100754
## RIF1 -0.0246233727
## ZNF507 -0.0276460619
## DENND1B -0.0281668307
## THOC6 -0.0288694401
## SLC25A32 -0.0289571781
## MANEAL -0.0297116366
## POGZ -0.0329573302
## RPLP2 -0.0342532978
## PLIN3 -0.0355898375
## HS1BP3 -0.0356515022
## BLOC1S4 -0.0373831794
## YIF1B -0.0398403091
## KLF2 -0.0398758916
## DHX29 -0.0399332166
## ZFYVE26 -0.0401677584
## FMR1 -0.0428447472
## PUS1 -0.0434540987
## USP54 -0.0440295045
## TMEM184C -0.0443306211
## SEPHS1 -0.0448503809
## RAB11FIP2 -0.0450717799
## BSG -0.0464082950
## NAE1 -0.0472146942
## BPNT2 -0.0495503637
## AAR2 -0.0522806731
## WASHC5 -0.0539797258
## JMJD8 -0.0556759964
## ORC2 -0.0564348386
## CD81 -0.0564879263
## ATP2A2 -0.0566597477
## OSCAR -0.0578716191
## FEM1B -0.0596968339
## COMMD9 -0.0606391973
## PPM1L -0.0616679960
## ABHD14B -0.0618552167
## MSRA -0.0631108239
## NBPF12 -0.0633619508
## AP1S3 -0.0667523334
## SFXN3 -0.0703958056
## RPS24 -0.0728602589
## PEX6 -0.0766469726
## MYZAP -0.0782600364
## MROH1 -0.0792350666
## CARMIL2 -0.0792970699
## FIS1 -0.0817027438
## RABGGTA -0.0849164914
## LYL1 -0.0854411818
## KMT5C -0.0871142434
## INTS5 -0.0930179789
## IFITM2 -0.0939801631
## NUF2 -0.0964440281
## HSD17B10 -0.0983554400
## APBA3 -0.1000405996
## PLD3 -0.1019119007
## MRPL24 -0.1032663598
## SCYL2 -0.1044068046
## VRK3 -0.1061089836
## LTBP1 -0.1063685498
## SURF4 -0.1111461369
## KIF2A -0.1133749269
## BAMBI -0.1161187999
## ZMAT5 -0.1162506002
## CCDC107 -0.1190995919
## NAALADL1 -0.1266809260
## DENND4B -0.1277135108
## UBA5 -0.1292863796
## CCDC142 -0.1359174514
## USF3 -0.1363813797
## SIMC1 -0.1364946296
## NAT9 -0.1368784787
## CTSH -0.1378574840
## SEPTIN2 -0.1383743412
## PRRC1 -0.1395711883
## SENP5 -0.1409723714
## INPP5K -0.1411325671
## R3HDM4 -0.1435009003
## URM1 -0.1457614876
## PRADC1 -0.1458448284
## UPF3B -0.1461567636
## NCKAP1 -0.1472410966
## STAT5A -0.1473150468
## ABCC4 -0.1496460969
## RGS3 -0.1497883640
## CYC1 -0.1507621700
## HLA-DRB1 -0.1513367883
## PSMG4 -0.1534382901
## ZBTB17 -0.1547375660
## CD7 -0.1553230858
## ALKBH2 -0.1566216248
## STK19 -0.1574520460
## IGBP1 -0.1587552927
## DERPC -0.1591454673
## DSN1 -0.1609768791
## TIMM13 -0.1609978934
## ZNF28 -0.1612439300
## RBM14 -0.1617428730
## CAND1 -0.1618591345
## ZNF578 -0.1631730162
## ERCC6 -0.1666268482
## EML6 -0.1669127490
## MICAL1 -0.1720514311
## ERLEC1 -0.1753169388
## ABLIM3 -0.1760583700
## ERI2 -0.1761582894
## WDR97 -0.1772348131
## RNF6 -0.1783997412
## ZNF8 -0.1818396445
## TATDN2 -0.1831893603
## NKD1 -0.1889956264
## EMP3 -0.1891304008
## TPM2 -0.1896674586
## ASTN2 -0.1904277802
## GATAD1 -0.1915829636
## MAP3K21 -0.1948133848
## MRPL43 -0.1954907657
## NAA15 -0.2012757615
## REX1BD -0.2056770884
## DCUN1D3 -0.2059275122
## UCK1 -0.2068381294
## BTLA -0.2079633797
## IGHG1 -0.2088744604
## ANKS3 -0.2118570487
## TMEM245 -0.2121027418
## CBWD2 -0.2127778335
## VAMP1 -0.2163417701
## STING1 -0.2182431314
## MAMDC4 -0.2195666051
## B9D2 -0.2199277265
## TM2D2 -0.2201984738
## DAAM1 -0.2226489897
## NBPF19 -0.2228983147
## C18orf25 -0.2270686187
## ALPL -0.2277747267
## HLA-DMA -0.2299777974
## ZBTB42 -0.2320483464
## MTRES1 -0.2325494737
## DAB2 -0.2333242245
## POP4 -0.2336372138
## NIPSNAP1 -0.2344393153
## ACP5 -0.2359388635
## MARCHF9 -0.2375324565
## ATRX -0.2393689450
## TCF12 -0.2400078326
## CNOT3 -0.2410039785
## BANF1 -0.2445979478
## ANKRD27 -0.2458016838
## RNF187 -0.2466759208
## PPARD -0.2499434019
## XYLT2 -0.2508438033
## INVS -0.2519175243
## RSL1D1 -0.2526462457
## ZNF768 -0.2549806793
## PEX13 -0.2575083287
## PIGQ -0.2590849797
## LILRA5 -0.2632392948
## FAM8A1 -0.2658364768
## JAG1 -0.2669869693
## IREB2 -0.2704271664
## ZNF668 -0.2722596587
## PRPF4B -0.2749748178
## OVCA2 -0.2775157901
## KLHL17 -0.2778728760
## UTRN -0.2812625528
## DAGLA -0.2831854637
## RNF19A -0.2875928237
## C17orf80 -0.2877914687
## FAXDC2 -0.2885075791
## SNTA1 -0.2894778355
## PIM3 -0.2904888144
## SLC4A2 -0.2955909658
## ARIH1 -0.2956542813
## ARMC5 -0.2963279430
## DDX49 -0.3003603805
## SON -0.3037532547
## GPS2 -0.3038893640
## IGHMBP2 -0.3047340999
## ANKRD40 -0.3057994027
## MED12L -0.3069614531
## ZNF761 -0.3084696428
## NCOR2 -0.3109100253
## THOC5 -0.3122411859
## PEMT -0.3134530202
## HSP90B1 -0.3141669469
## GNL1 -0.3169438329
## ABHD8 -0.3179600737
## KCNMB1 -0.3189119787
## ANAPC2 -0.3201836439
## COX6B1 -0.3237518169
## TBP -0.3238692608
## CLPX -0.3249626377
## FBXL13 -0.3257116586
## MMS22L -0.3267183823
## ZFAND2B -0.3271241847
## RPL36A -0.3290066325
## CLPTM1 -0.3308894019
## ABCA1 -0.3340038965
## HMBOX1 -0.3348086750
## RASSF7 -0.3356551936
## IFT80 -0.3362423029
## NME3 -0.3368227479
## THAP4 -0.3379809188
## ETNK1 -0.3393616725
## BBC3 -0.3395923107
## ABT1 -0.3428960254
## ATP5F1D -0.3437968222
## CBX5 -0.3462219558
## SLC1A4 -0.3477329951
## BTAF1 -0.3496797135
## SH3BP2 -0.3514063207
## GPX1 -0.3541645022
## TRAK2 -0.3543052266
## DHRS13 -0.3555008052
## AFF4 -0.3569090406
## RPL23 -0.3576125888
## PPCDC -0.3611099331
## FYTTD1 -0.3635137934
## MED18 -0.3649351065
## RPS27 -0.3651261004
## EPC2 -0.3653105274
## CHCHD10 -0.3660170431
## KIAA2026 -0.3663591220
## YBX1 -0.3691105746
## HECTD3 -0.3696919952
## MANBAL -0.3701937288
## DNAJC17 -0.3709474777
## MLF2 -0.3709521310
## C12orf57 -0.3736407529
## LRMDA -0.3788720527
## NOC4L -0.3794703444
## ZNF672 -0.3796329109
## WDR62 -0.3796425256
## ENTPD6 -0.3797412636
## ARID5B -0.3810146712
## NLRX1 -0.3826601528
## MROH6 -0.3837145635
## NUGGC -0.3842492545
## SRGAP2 -0.3856429931
## RANGAP1 -0.3859377592
## LST1 -0.3866991150
## FAM122B -0.3896562025
## THAP11 -0.3900910470
## B4GALT7 -0.3905253361
## ARHGAP15 -0.3916793002
## FAM20B -0.3959357018
## VPS52 -0.3962743834
## ANKRD17 -0.3964888326
## XPR1 -0.3973655404
## LUC7L -0.3989654091
## ERCC4 -0.4040084239
## ZNF621 -0.4068231873
## PRPF4 -0.4099495585
## RPS15A -0.4109797066
## REXO4 -0.4122502611
## CLK2 -0.4129629437
## OPA1 -0.4136088157
## ADAT1 -0.4149739526
## ZMYM4 -0.4157410901
## PPP2CB -0.4160996125
## FBXW11 -0.4171663350
## SERAC1 -0.4178883345
## SCIN -0.4207930189
## PAXX -0.4223455383
## UNC119 -0.4230296006
## HSPD1 -0.4246879301
## GFER -0.4251501612
## TRIM8 -0.4253017870
## ZDHHC6 -0.4261336509
## CLINT1 -0.4285327711
## JADE3 -0.4285742400
## DCAF5 -0.4314788742
## GATA2 -0.4316890141
## DTX3L -0.4319976150
## POLR2C -0.4362675792
## TMEM107 -0.4389802858
## TMED4 -0.4412028123
## HDAC10 -0.4416308279
## DIMT1 -0.4428291556
## DBF4 -0.4429264662
## SNX17 -0.4446714188
## ZNF408 -0.4449299201
## ZNF788P -0.4450539095
## GCC2 -0.4470607946
## PIK3R6 -0.4487489936
## SLC25A3 -0.4493649217
## DNPH1 -0.4496502512
## CHKB -0.4502358745
## PICK1 -0.4527231424
## R3HCC1 -0.4533616257
## CFD -0.4562152497
## TNFSF8 -0.4571619519
## UTP3 -0.4582250988
## G3BP2 -0.4594311682
## NFKBIE -0.4605278122
## TMEM203 -0.4610281179
## ITGAV -0.4650863934
## BIN1 -0.4664060144
## MAN1B1 -0.4711611235
## PELP1 -0.4723092550
## MRE11 -0.4732219161
## RPL28 -0.4736431294
## TBK1 -0.4759206303
## COQ4 -0.4759472541
## ATP13A2 -0.4802419181
## DRG2 -0.4816959990
## PANK3 -0.4820175288
## ARL3 -0.4825482745
## EIF4G3 -0.4835362987
## HINT3 -0.4851256017
## FASTKD5 -0.4866952702
## GIT1 -0.4878642272
## CENPBD1 -0.4888628999
## NARF -0.4906077853
## MPP5 -0.4924658152
## ZDHHC21 -0.4930235696
## TICAM1 -0.4958028657
## ABCB8 -0.4974717303
## NAA60 -0.4976616948
## DDA1 -0.4989945786
## SMG7 -0.5014300637
## PLXND1 -0.5030005534
## RANGRF -0.5048081968
## C5 -0.5092800475
## HAPLN3 -0.5094467167
## GBF1 -0.5121198515
## ZNF616 -0.5127463534
## HAGH -0.5136853642
## MAN2B2 -0.5147570839
## PCBD1 -0.5162879157
## PEX10 -0.5165230512
## PRPS2 -0.5170185395
## CDK10 -0.5174853229
## BEND7 -0.5207381781
## SWT1 -0.5253450670
## FBXO31 -0.5261033463
## SLC6A16 -0.5271606682
## RPS6KC1 -0.5274141104
## VIM -0.5295008014
## DYRK1B -0.5297089308
## RPS6KB2 -0.5346385817
## ANKRD54 -0.5354298450
## ZNF547 -0.5363533606
## MIGA2 -0.5372583409
## POLR2G -0.5403695542
## YTHDF2 -0.5414116477
## GLS -0.5441177915
## MREG -0.5451749174
## ARRB2 -0.5472397939
## ZFP91 -0.5499768776
## SH3GLB2 -0.5506876659
## MYBL2 -0.5518870204
## RGS6 -0.5524265382
## EFCAB14 -0.5537958681
## RAPGEF6 -0.5543981176
## GCHFR -0.5549807885
## RPS15 -0.5563618876
## WDR47 -0.5570608220
## DUSP18 -0.5580061475
## OIP5 -0.5590465635
## UQCC3 -0.5600697624
## NKTR -0.5614416284
## LILRA3 -0.5643752289
## CD72 -0.5649602808
## SBNO1 -0.5651224788
## MVB12A -0.5665704396
## MYO15B -0.5667216809
## ABHD18 -0.5673685714
## MAP3K1 -0.5680651686
## MEIS1 -0.5691048292
## HP1BP3 -0.5717156542
## BLZF1 -0.5734185615
## DHRS3 -0.5756232199
## SRRT -0.5765218499
## EHD3 -0.5785238370
## MRPS34 -0.5795780968
## TINF2 -0.5820639422
## LAMC1 -0.5823166355
## CALHM5 -0.5842708371
## PYM1 -0.5845960909
## LETM2 -0.5852361784
## PDZD4 -0.5858591673
## ZCWPW1 -0.5873763581
## MVD -0.5883933302
## MIEF1 -0.5887566613
## PDE6G -0.5914672144
## KAT6B -0.5938002798
## ATG4D -0.5945122752
## STK40 -0.5952098826
## IGSF8 -0.5966135724
## TTC37 -0.5989195370
## SELENON -0.6021387072
## CEP83 -0.6036327833
## MTCP1 -0.6046048965
## SRI -0.6054386759
## KHDC4 -0.6056976163
## KMT2E -0.6067569401
## BCL7B -0.6078508535
## IGKC -0.6108531395
## HSPB1 -0.6131392056
## DMXL2 -0.6136107665
## OSGIN2 -0.6137285621
## FAM174C -0.6137468296
## TOP1 -0.6148633110
## HEBP1 -0.6156424729
## PTOV1 -0.6167385732
## ASH1L -0.6217212721
## PALB2 -0.6240144656
## TOP1MT -0.6245176505
## CDK19 -0.6252004790
## RBL1 -0.6260914322
## PSMD9 -0.6264747526
## SIRT7 -0.6278205249
## PIGW -0.6290104817
## MSH2 -0.6295843773
## SLA2 -0.6308972499
## PRKD3 -0.6314773164
## APBB1 -0.6328142117
## LSR -0.6372776383
## VCL -0.6392561654
## NDUFA11 -0.6399957874
## CHERP -0.6404277740
## ABCE1 -0.6411763827
## LCLAT1 -0.6413595530
## UBAP2L -0.6450529510
## STRBP -0.6465055226
## METTL4 -0.6474278306
## MDM4 -0.6481522973
## RPS19 -0.6511958698
## PSMB1 -0.6525366142
## ZNF841 -0.6530878331
## KIAA1841 -0.6534734945
## PAWR -0.6555952066
## MRPL41 -0.6558877771
## AP2S1 -0.6565054195
## SREBF2 -0.6570213148
## CSF1 -0.6586504566
## HERC1 -0.6588666093
## LIN7C -0.6612087578
## UBE2E1 -0.6635502968
## CFAP36 -0.6636899373
## RB1 -0.6637188540
## ZBTB21 -0.6648224403
## WAC -0.6660021456
## PARP2 -0.6686857293
## ATP2A3 -0.6691417929
## KRR1 -0.6717232653
## POLR2L -0.6737538795
## TMEM192 -0.6750454180
## TXNDC16 -0.6762687073
## SERPINF2 -0.6779834702
## STX10 -0.6789776809
## MRPL52 -0.6809994955
## LONRF3 -0.6815218907
## FBXW4 -0.6821248003
## ZNF853 -0.6821774040
## APEX2 -0.6826064501
## PAPOLG -0.6852983123
## SDR39U1 -0.6865644686
## PPM1J -0.6900021465
## AQR -0.6918661273
## EEF1A1 -0.6929521998
## WASHC2C -0.6944878849
## TKFC -0.6947279629
## PARP9 -0.6956158975
## FAM13B -0.6969863510
## NECTIN1 -0.6973385886
## RPP25L -0.6982714884
## SLC35E1 -0.6983454439
## AMMECR1L -0.6994116712
## VDAC3 -0.7029777781
## RPS6KA1 -0.7052219322
## ZNF623 -0.7054837643
## GIPC1 -0.7081639059
## CERS5 -0.7094459290
## CBFA2T2 -0.7106812308
## BAG5 -0.7126126126
## LMLN -0.7128696943
## CD2AP -0.7146805954
## PDZK1IP1 -0.7148522070
## TMSB10 -0.7156018726
## UNK -0.7184794056
## TSC22D1 -0.7185365925
## FAM241A -0.7189595416
## ADGRG3 -0.7190474901
## SLAIN1 -0.7192022811
## C5orf22 -0.7274300972
## ZNF254 -0.7281216152
## PTPRS -0.7281413137
## MRFAP1 -0.7284243425
## SEC13 -0.7289288085
## SCAPER -0.7289632816
## SPCS2 -0.7300025536
## ARL5B -0.7329939307
## QSOX1 -0.7346788624
## FRK -0.7377698529
## ZSWIM9 -0.7420721862
## VPS9D1 -0.7421274678
## SELENOW -0.7457868401
## CCNT1 -0.7481423267
## DDX39B -0.7497227234
## TMEM128 -0.7499158524
## ZC3H12C -0.7513337611
## NDRG3 -0.7536190808
## SEMA6B -0.7538275966
## CSF3R -0.7548385185
## RPL37A -0.7548821679
## FADS1 -0.7577464135
## GCNT1 -0.7579189737
## DCK -0.7601688210
## ATP11C -0.7629020766
## SEL1L -0.7651811587
## ZNF440 -0.7654959887
## DDX54 -0.7679431416
## ZFYVE19 -0.7690707270
## WDR12 -0.7821323617
## MIA3 -0.7833828689
## OXCT1 -0.7866950361
## WDR83OS -0.7901047552
## RASGRP4 -0.7914081991
## SLC39A9 -0.7923594018
## DLAT -0.7982080170
## TCF4 -0.7999826420
## SLAIN2 -0.8014207238
## RASA1 -0.8018119159
## NETO2 -0.8028884532
## SAMD1 -0.8029479581
## ANXA2R -0.8036543839
## FIBP -0.8059415257
## PARP14 -0.8071227739
## IFT43 -0.8076083451
## E2F1 -0.8078924429
## DNAL1 -0.8082177493
## TRAPPC5 -0.8088198995
## PMVK -0.8133989393
## LSM4 -0.8153640908
## E2F5 -0.8184711583
## RPL35A -0.8195263644
## UQCR11 -0.8198418053
## TES -0.8206902728
## NRF1 -0.8299449526
## MARCHF2 -0.8306233164
## ATM -0.8314677424
## C9orf139 -0.8318679696
## MAP2K3 -0.8337748707
## PLIN5 -0.8361277237
## ARHGAP6 -0.8367545219
## ZNF263 -0.8408482941
## WLS -0.8433659707
## LEPROT -0.8433782331
## ELK4 -0.8442849908
## RNA28SN3 -0.8443151172
## ABTB1 -0.8460806482
## SLC35F5 -0.8495483021
## ANXA4 -0.8498058280
## AURKAIP1 -0.8532499032
## SLC2A8 -0.8534316474
## COMMD6 -0.8556502213
## NUDT17 -0.8573687079
## SLC30A7 -0.8574906056
## PDIK1L -0.8575382605
## TXNL4A -0.8612836518
## SMG6 -0.8626525060
## TRAM1 -0.8653749656
## YME1L1 -0.8672434658
## DAPK3 -0.8686075862
## IL4R -0.8687229495
## ADCK1 -0.8710946821
## EPRS1 -0.8712160892
## RECQL -0.8735566976
## WIPF2 -0.8758506944
## ARL16 -0.8771768126
## OSBP -0.8796394665
## TIMP1 -0.8798431071
## CPNE1 -0.8799811694
## OTUB1 -0.8804962035
## SNAPIN -0.8809205974
## MEA1 -0.8821131742
## DNAJC7 -0.8821168986
## ZC3H7A -0.8821458805
## WDFY1 -0.8825153904
## TXNDC11 -0.8829611464
## TRAPPC9 -0.8831121728
## SYN2 -0.8835637776
## SMN1 -0.8846161342
## EPC1 -0.8852255813
## ZKSCAN7 -0.8860456323
## DMXL1 -0.8883668023
## REV1 -0.8898452016
## TXN2 -0.8898535466
## ABL2 -0.8903505947
## RBM43 -0.8907593020
## HYAL2 -0.8910738617
## DOP1B -0.8946553777
## HSPA4 -0.8962207266
## BIRC5 -0.8973212828
## MRAS -0.8985440270
## VPS13C -0.8988937388
## SWI5 -0.8993896640
## ANKRD36B -0.9009712895
## SETD5 -0.9022736443
## KIZ -0.9052323390
## HACD3 -0.9101363760
## TFAM -0.9105332390
## DDHD1 -0.9129023063
## CAPN1 -0.9135387249
## CISD3 -0.9142356141
## GPATCH8 -0.9167703938
## OTUD3 -0.9188392807
## USP1 -0.9201792853
## ZNF335 -0.9247444385
## NEK9 -0.9251710978
## IMPDH2 -0.9278010638
## UBFD1 -0.9300642428
## FIP1L1 -0.9310958439
## PCNX4 -0.9314474915
## SOD1 -0.9329179628
## ZNF22 -0.9337759556
## RING1 -0.9350979851
## KMT2C -0.9363291899
## CST3 -0.9392143329
## LRFN4 -0.9399769762
## CHAMP1 -0.9403435889
## CXXC1 -0.9404490277
## RBM4 -0.9442729658
## COA7 -0.9450441035
## LPIN2 -0.9462525738
## RAP1GDS1 -0.9471443259
## STAT1 -0.9482522782
## JMJD4 -0.9520165477
## PCNP -0.9531076126
## CCNF -0.9534156873
## C16orf74 -0.9546636761
## TRAPPC6A -0.9551426196
## SERGEF -0.9555926983
## CSPP1 -0.9580589465
## IL11RA -0.9585775879
## LRRC46 -0.9592799433
## MIB1 -0.9599866996
## IPPK -0.9612935157
## HNRNPR -0.9621113439
## LARP7 -0.9650840448
## PRCC -0.9686863419
## PDIA5 -0.9727110101
## VPS18 -0.9743714330
## ICE1 -0.9773052650
## ANO9 -0.9783426848
## TAF8 -0.9783533448
## HSPBP1 -0.9786097830
## PHACTR2 -0.9820420371
## DCAF7 -0.9845516940
## SNRNP35 -0.9846009356
## TSR3 -0.9859495085
## MTRNR2L6 -0.9901593547
## TRIM22 -0.9918483026
## E2F4 -0.9919810717
## TBC1D22B -0.9919956396
## RNPS1 -0.9928364963
## MPST -0.9952642063
## ABI2 -0.9958871060
## FUT10 -0.9979356482
## MUS81 -0.9995493752
## MC1R -1.0009660163
## ALDH18A1 -1.0047230111
## DDX28 -1.0076966167
## MYB -1.0084643409
## TNRC18 -1.0091262976
## SLC23A2 -1.0099695361
## PIK3R2 -1.0114079680
## DEDD2 -1.0131625673
## LARS2 -1.0138951441
## ARHGAP32 -1.0150028240
## CFAP410 -1.0156153382
## CYSTM1 -1.0157961562
## FUCA1 -1.0161739080
## CD68 -1.0206081643
## USP34 -1.0220113195
## HEATR1 -1.0235550890
## ITGA1 -1.0264134598
## CEP85L -1.0288844067
## ODC1 -1.0297830326
## TLK2 -1.0322184901
## TCOF1 -1.0324563045
## ARMC6 -1.0327272740
## DELE1 -1.0333857776
## DOCK8 -1.0335563619
## PLD1 -1.0348731740
## UNC13B -1.0366494723
## RRP36 -1.0392185616
## WRAP53 -1.0394642857
## PPP1R16A -1.0408464364
## PARP11 -1.0409599196
## DIS3L -1.0410173600
## MAL -1.0428721330
## SLC38A10 -1.0454854719
## DOT1L -1.0467355212
## ENTPD5 -1.0517213066
## CCDC80 -1.0517816223
## ZNF451 -1.0525336302
## PNKD -1.0568080763
## OLFM2 -1.0572012569
## NDUFC1 -1.0604339713
## WDR18 -1.0617881599
## POLR2J -1.0624279030
## CERK -1.0627810926
## NRAS -1.0632297544
## PSME4 -1.0654662350
## CCNYL1 -1.0656789835
## SMAD2 -1.0665114196
## PPM1K -1.0682634795
## SLC52A2 -1.0682795079
## FBLN5 -1.0686971112
## NFAT5 -1.0688541583
## PPFIA1 -1.0700906441
## AP3B1 -1.0703336487
## LILRB4 -1.0711857723
## MATK -1.0720199917
## TRMU -1.0755292078
## ZSCAN12 -1.0783809573
## TIMM9 -1.0793898120
## NCR1 -1.0807229588
## NUBP1 -1.0831957030
## PLCD1 -1.0834788948
## ASIC3 -1.0847319283
## THOC2 -1.0848078160
## ATG4A -1.0850810412
## C3orf14 -1.0877217528
## DPM3 -1.0891966834
## POLR1H -1.0957155477
## GLYCTK -1.0961058628
## DENND4A -1.0971210903
## MMP25 -1.0971933797
## PIGT -1.1002063487
## TBRG4 -1.1012142212
## NEIL3 -1.1015049228
## ESF1 -1.1024568303
## C2CD5 -1.1028674060
## SLC22A16 -1.1062803265
## NUDT1 -1.1075014456
## KAT2B -1.1143235084
## GATD1 -1.1143405813
## NISCH -1.1166169158
## ABHD10 -1.1166478790
## AURKB -1.1188402993
## CCND2 -1.1209026060
## TLE5 -1.1210184368
## WDR46 -1.1235340080
## POLE4 -1.1237095902
## PSMB6 -1.1243247370
## SAC3D1 -1.1261051213
## CEP192 -1.1271417651
## LSM14A -1.1277036144
## DHRS7B -1.1278947128
## ZNF836 -1.1283288169
## RPL14 -1.1291027250
## RPS21 -1.1305876371
## C4orf46 -1.1305908152
## ACP2 -1.1339904644
## GRK2 -1.1356737053
## BCL2L13 -1.1395281562
## ANKMY1 -1.1438645177
## CAPRIN1 -1.1444950878
## HPS5 -1.1478893062
## MCAT -1.1487304322
## CCDC30 -1.1514044694
## TMEM106C -1.1540664862
## BAZ2A -1.1545771038
## CEP97 -1.1546567044
## KIAA1586 -1.1553625411
## BRWD1 -1.1555780317
## YIPF2 -1.1583493941
## SCARB1 -1.1591158431
## RBBP4 -1.1609051341
## EFEMP2 -1.1611212724
## NAGA -1.1620389693
## TRIM33 -1.1641587703
## GTF3C3 -1.1664542341
## BRD1 -1.1677514068
## SAMD9 -1.1683557609
## A1BG -1.1697716341
## SEC63 -1.1723176010
## EEPD1 -1.1730380905
## FBXL8 -1.1740720612
## IKZF4 -1.1745363197
## ERGIC3 -1.1764079298
## TTPAL -1.1767042147
## WASHC4 -1.1785537468
## CES2 -1.1785637776
## CCDC138 -1.1794579070
## ZKSCAN1 -1.1804828621
## ASCC3 -1.1808571174
## STK38 -1.1811981301
## NAPG -1.1830645799
## POLR2I -1.1831057915
## NAA30 -1.1834274339
## SYMPK -1.1907007463
## FKBP2 -1.1918912772
## TRAF2 -1.1931491595
## TLNRD1 -1.1949902652
## SCOC -1.1965287324
## TRIM56 -1.1969012562
## LMBR1L -1.1974310978
## RICTOR -1.1982215587
## MED13L -1.1988787341
## DHRS1 -1.1991644488
## COQ8B -1.1993402212
## ACSF2 -1.1999668639
## ARMC7 -1.2010435891
## DIABLO -1.2012115879
## TOM1 -1.2016702836
## SMAD5 -1.2039300151
## GAN -1.2052970586
## ADSS1 -1.2075432626
## DNLZ -1.2076170842
## MRPL19 -1.2079651600
## STARD3 -1.2082534774
## LRRCC1 -1.2092508337
## HERC3 -1.2093580815
## FBXO28 -1.2109971892
## FZD2 -1.2142206584
## ZNF280C -1.2166314068
## DRAP1 -1.2167975685
## ZSCAN2 -1.2202148553
## TCP11L2 -1.2216785246
## ARAP2 -1.2226001833
## ZNF629 -1.2245737622
## SENP8 -1.2263436556
## BABAM1 -1.2270822625
## NAAA -1.2273535693
## MCM3 -1.2283431816
## SC5D -1.2293633190
## ACVR1 -1.2312170638
## KBTBD3 -1.2331081553
## RINT1 -1.2335567235
## SLC37A2 -1.2337214676
## EYA3 -1.2346310395
## DNM1L -1.2358356364
## LHFPL2 -1.2364982055
## B3GLCT -1.2372026493
## ABHD17B -1.2398551531
## SORD -1.2439650271
## ZNF133 -1.2472206275
## GSE1 -1.2477873430
## STRIP1 -1.2484700675
## EAF1 -1.2530919498
## PLA2G12A -1.2533643798
## SHISA9 -1.2554057297
## FAM160B2 -1.2571154930
## OASL -1.2577623699
## MFSD3 -1.2597817129
## MINDY3 -1.2604852995
## PAQR7 -1.2619682979
## NADK2 -1.2630962484
## MAP7D1 -1.2632495098
## PTRHD1 -1.2646520136
## CCL24 -1.2650856611
## ZER1 -1.2667139437
## LYST -1.2668710097
## KCNMB4 -1.2695254834
## HECA -1.2719230158
## FUZ -1.2742769610
## STAMBP -1.2758593441
## RPL39 -1.2762741798
## XPO1 -1.2775181048
## COX18 -1.2776170031
## LSM2 -1.2788385757
## ORC3 -1.2799962805
## SINHCAF -1.2830877572
## TUBB1 -1.2845425542
## MTCH1 -1.2865454176
## METTL14 -1.2883680327
## ATG2B -1.2887837118
## CDC20 -1.2904082649
## TRPT1 -1.2907593180
## LSM7 -1.2919197277
## PTAR1 -1.2923144438
## PDE7A -1.2942475721
## PTK6 -1.2957316062
## MZT2B -1.2960946680
## CTNNBL1 -1.2968892932
## KCNN3 -1.2976225175
## REEP4 -1.3006433422
## TUFT1 -1.3017806322
## NUP107 -1.3021830737
## TRPM6 -1.3029295642
## SLC2A5 -1.3034425655
## PRRC2C -1.3039941911
## EPHB6 -1.3066909481
## HPF1 -1.3067307863
## PPP1R7 -1.3107514945
## ST3GAL1 -1.3113865066
## INPP5E -1.3114343985
## TOMM6 -1.3126956055
## RPL36AL -1.3129138008
## CHCHD6 -1.3132398309
## VNN3 -1.3144389703
## SLC26A2 -1.3178384969
## HMG20A -1.3195899252
## NDUFV3 -1.3219882183
## GCSH -1.3223433189
## ZNF747 -1.3230466511
## CNOT7 -1.3237465960
## SPATA7 -1.3253221765
## MORC3 -1.3266073969
## MTRF1L -1.3266311854
## RBBP9 -1.3275660171
## DEAF1 -1.3295554692
## MBTD1 -1.3323931232
## PIWIL4 -1.3327926562
## DMTF1 -1.3334263164
## ELL2 -1.3334996668
## BRD7 -1.3349117326
## WASL -1.3354529637
## INTS2 -1.3358684281
## FNBP1L -1.3362665578
## CDC23 -1.3366999577
## ZNF48 -1.3403043930
## SART3 -1.3407320336
## HLA-DMB -1.3413627491
## WNK1 -1.3438806825
## HNRNPAB -1.3453361596
## UBR4 -1.3467067514
## UQCRB -1.3468919297
## PCBP4 -1.3469892471
## ATOX1 -1.3470829435
## SLC25A22 -1.3470934608
## UBR3 -1.3472415312
## TMF1 -1.3472785400
## KANSL1 -1.3480102932
## SELENOH -1.3487387072
## TP53INP1 -1.3543702027
## DLGAP4 -1.3553303669
## COL18A1 -1.3554452017
## CTBP1 -1.3555795363
## HS6ST1 -1.3596537590
## ZNF71 -1.3600884007
## PPP1R15B -1.3641319700
## EXO5 -1.3646116513
## GLI1 -1.3648296620
## PAXBP1 -1.3653739189
## HDHD3 -1.3684422839
## RAB5C -1.3687871113
## CBR3 -1.3709507071
## RBM33 -1.3710666601
## TUBB4B -1.3721739051
## TUBGCP6 -1.3730556132
## C21orf58 -1.3736405460
## PTAFR -1.3748345003
## DHX16 -1.3758243097
## SLC35D1 -1.3777444199
## SMC5 -1.3789449605
## PPARA -1.3792900116
## RTF1 -1.3797709521
## USP8 -1.3800826682
## TNFSF12 -1.3831571552
## ZNF497 -1.3839077548
## EIF3L -1.3857504183
## UBR2 -1.3885061965
## SLC19A1 -1.3887600007
## ZNF436 -1.3915777312
## NEMP2 -1.3930665725
## NINJ1 -1.3963461546
## PRKAR2B -1.3967675345
## DNAJC27 -1.3970272760
## MAP2K1 -1.3983012951
## TBKBP1 -1.3995861347
## PTPN18 -1.4003113821
## CCDC13 -1.4011971680
## EIF2AK2 -1.4018936483
## NRIP1 -1.4026063874
## GTF2A1 -1.4083093052
## SLC11A1 -1.4129661003
## MOB3B -1.4134456540
## NDUFS8 -1.4139752586
## H2AJ -1.4142152237
## MRPL38 -1.4182961768
## H2BC15 -1.4193689783
## LRCH1 -1.4233532157
## NLRP12 -1.4233871706
## NECAB3 -1.4321856346
## ST7 -1.4409287724
## ATP10D -1.4443729971
## FNBP4 -1.4490879030
## STYXL1 -1.4539060318
## GPR108 -1.4559598522
## EFCAB7 -1.4561865260
## FAM207A -1.4582570320
## PPP1R3F -1.4592814418
## MDP1 -1.4599710570
## C3orf86 -1.4615749658
## RELB -1.4630237824
## ACTR8 -1.4638561157
## ZBTB37 -1.4646334816
## BCL7C -1.4656294564
## DALRD3 -1.4664738427
## TRPV2 -1.4678659393
## FAM43A -1.4680629102
## STK4 -1.4708566441
## CCDC117 -1.4710559690
## ZC3H10 -1.4713307927
## OGFOD2 -1.4716168456
## UBE2G1 -1.4719905279
## CARD19 -1.4724684445
## C5orf24 -1.4738973989
## RUVBL2 -1.4746710296
## SAMD10 -1.4755430082
## NAV1 -1.4757761550
## LIMS2 -1.4763653853
## DCTN3 -1.4767064091
## C1orf162 -1.4786602327
## FBXL20 -1.4790594698
## GPAM -1.4840520357
## AGAP2 -1.4874171627
## EP300 -1.4875697756
## AAMDC -1.4885871340
## MRM1 -1.4906881543
## EXOC5 -1.4921239547
## COA3 -1.4924861245
## EDC3 -1.4937670523
## NUDCD1 -1.4951210303
## RHBDD2 -1.4951732691
## GOLGA4 -1.4969104644
## RUFY2 -1.5000301759
## ZNF32 -1.5005765043
## ATAD1 -1.5018487611
## NTMT1 -1.5022538694
## ECHDC1 -1.5038345950
## ARL2 -1.5061331969
## ZBTB39 -1.5076550587
## CELF1 -1.5090151543
## ZBTB11 -1.5093866970
## DGAT2 -1.5097444187
## GYPC -1.5107236637
## HRAS -1.5119669269
## H2BC21 -1.5136257074
## RBM11 -1.5140232713
## ARV1 -1.5148118565
## COX17 -1.5163728427
## OTUD6B -1.5170117419
## ATP5ME -1.5186265152
## KTN1 -1.5191978090
## AP2M1 -1.5192670099
## REXO5 -1.5201135658
## VPS53 -1.5211853202
## RPS12 -1.5225626958
## CYB5R1 -1.5234392827
## DARS1 -1.5241685490
## UQCRC1 -1.5244680044
## KEAP1 -1.5251345420
## NUDT21 -1.5257932034
## MTMR9 -1.5265949916
## PHLDB3 -1.5280025917
## ATG13 -1.5314870922
## CHRNA10 -1.5315459628
## MGAT1 -1.5367531730
## TNF -1.5387186813
## PSMA7 -1.5407145693
## PUM1 -1.5411056206
## ZNF419 -1.5417785182
## TM9SF1 -1.5419565454
## SMIM4 -1.5462878985
## TMX1 -1.5468573050
## MLLT10 -1.5480283522
## ABCB10 -1.5486709103
## RPL31 -1.5504025182
## DHX37 -1.5506394128
## KIF5B -1.5517835817
## FAM78A -1.5522721565
## TSNARE1 -1.5523564465
## C1GALT1 -1.5527692704
## TRAF6 -1.5549440243
## CLIC1 -1.5564188017
## MLLT11 -1.5578029097
## G2E3 -1.5587561480
## MGAT4A -1.5588794460
## UNC93B1 -1.5596116571
## ZNF66 -1.5597325444
## MRFAP1L1 -1.5613535590
## STX18 -1.5618946563
## ABCA5 -1.5630014599
## EEA1 -1.5634451580
## JADE1 -1.5645496248
## BRAF -1.5654796869
## RAD50 -1.5660497095
## UBE2M -1.5677387145
## ZNF850 -1.5683145985
## GTF2H3 -1.5686109103
## ELK3 -1.5694470195
## TMEM186 -1.5707715642
## NPAT -1.5714584656
## HAUS6 -1.5718217539
## RPS26 -1.5731995345
## LRP12 -1.5747640249
## MEX3C -1.5759426810
## PSMC3 -1.5780953874
## LSM10 -1.5784975155
## GANC -1.5787405823
## DERL2 -1.5795668422
## DDX41 -1.5797294433
## PGRMC1 -1.5808477806
## LAPTM4B -1.5852472158
## DAD1 -1.5860282182
## GRAMD2B -1.5876711403
## AMMECR1 -1.5888423518
## FADS3 -1.5890011087
## TRIM26 -1.5890079667
## ZNF699 -1.5892370113
## APOL6 -1.5898897101
## MFAP3 -1.5906165655
## C8orf82 -1.5910793922
## MFSD14A -1.5984132757
## NAGLU -1.5984202678
## ICOSLG -1.5986205545
## SERPINA1 -1.6003829468
## ODF3B -1.6006373148
## GIGYF2 -1.6006637860
## BORA -1.6050634737
## MIGA1 -1.6081548045
## NAA80 -1.6085254387
## ATXN1L -1.6097195547
## IGSF6 -1.6104169621
## TMEM212 -1.6140625295
## CLTA -1.6154329272
## MEPCE -1.6165645540
## DYRK1A -1.6167133576
## HNRNPH3 -1.6180134921
## NIPAL3 -1.6191753177
## FANCG -1.6193240476
## COA4 -1.6240270984
## RETREG3 -1.6261909100
## TRIM59 -1.6262254950
## RELCH -1.6279751885
## TACC1 -1.6305612770
## MLH1 -1.6333672325
## NKAIN3 -1.6344014064
## NSUN2 -1.6350556756
## LRRK2 -1.6355254639
## ASB3 -1.6362268333
## CACNB1 -1.6364722613
## CAMTA2 -1.6378581301
## KLHL26 -1.6396152713
## P3H1 -1.6413229021
## DDX60 -1.6415151001
## LZTR1 -1.6428634126
## CILK1 -1.6430840661
## ACO1 -1.6476656429
## TMEM123 -1.6519569846
## CIZ1 -1.6528435401
## TEDC1 -1.6542786230
## SLC10A3 -1.6560568152
## SDHAF4 -1.6565069314
## MRPL53 -1.6585455862
## LRPAP1 -1.6593674766
## EPS15 -1.6614601143
## NBDY -1.6625256763
## EMC6 -1.6634470019
## SLFN5 -1.6655438051
## DNAJC30 -1.6669536148
## ZNF787 -1.6681972044
## TFDP1 -1.6708821587
## TAOK1 -1.6708906043
## PTPRCAP -1.6716395314
## BUD13 -1.6728023507
## SEC14L5 -1.6733099506
## CAVIN2 -1.6733659753
## SWSAP1 -1.6755924483
## DYNC1LI2 -1.6789660190
## VIRMA -1.6812630913
## TMC6 -1.6816260239
## CDK16 -1.6817697156
## JUN -1.6818517349
## ADAM17 -1.6820147604
## C10orf143 -1.6827274535
## RASAL3 -1.6828487775
## MIDN -1.6833715690
## GPX4 -1.6843623753
## PSRC1 -1.6847464314
## P4HTM -1.6847991320
## ANAPC13 -1.6851004603
## PARP15 -1.6862522146
## ZBTB33 -1.6888586634
## RAD51D -1.6890252115
## MPV17L2 -1.6903105425
## SF3B5 -1.6905011686
## MTX1 -1.6914980553
## MCMBP -1.6997965824
## SMURF2 -1.7013746924
## MRPL55 -1.7023774945
## DDX17 -1.7038074232
## GON7 -1.7046572036
## SNRPD3 -1.7058471875
## SBNO2 -1.7061059477
## AGPAT5 -1.7094967525
## KCTD2 -1.7107612391
## FLAD1 -1.7109459273
## SNIP1 -1.7135044214
## MDN1 -1.7175709806
## TTC7B -1.7176107172
## NAXE -1.7190611823
## TGS1 -1.7193668072
## POLR1E -1.7207946711
## NBPF1 -1.7212126327
## BCAS4 -1.7213647849
## ZNF213 -1.7238459100
## SFI1 -1.7240342906
## DPH7 -1.7250189966
## ZNF619 -1.7259939830
## SLC27A5 -1.7270713817
## CDIN1 -1.7278183266
## PAK4 -1.7297790762
## TOMM22 -1.7299244114
## SFN -1.7321770346
## PIEZO1 -1.7334182343
## ATAD3B -1.7356342233
## CTDSPL2 -1.7390532030
## PSMC5 -1.7394539171
## NBPF11 -1.7394815361
## RUNX2 -1.7443418722
## KLHL11 -1.7455788859
## SMARCA5 -1.7461998905
## AUH -1.7464406450
## ARHGAP27 -1.7477795218
## SEL1L3 -1.7504176952
## NCOA2 -1.7508112324
## SPARC -1.7522530771
## NDUFA7 -1.7522923677
## BCLAF3 -1.7569918118
## IPO7 -1.7586964130
## RPL37 -1.7603381060
## LRRC34 -1.7606983908
## BID -1.7612186465
## SARS2 -1.7635754594
## ERI3 -1.7646802581
## HENMT1 -1.7653208903
## HLA-DQB1 -1.7662043517
## ZNF197 -1.7674697900
## RAB27B -1.7690728166
## RGS16 -1.7695715895
## CTSC -1.7696701187
## DDX18 -1.7699175285
## RCOR3 -1.7716189073
## RFX5 -1.7745297715
## FAM102B -1.7784204637
## MAT2B -1.7787996611
## DGKG -1.7788252832
## UBN2 -1.7797487180
## TXLNG -1.7807423391
## CREBRF -1.7831133578
## CLASP1 -1.7832170451
## MCEMP1 -1.7833366362
## MUSTN1 -1.7847619920
## DNAAF4 -1.7868082273
## PLEKHO2 -1.7871235445
## MRPL11 -1.7885331416
## RMI2 -1.7907468324
## PHTF2 -1.7908085540
## GTF3A -1.7929610461
## RCE1 -1.7935023602
## RRP9 -1.7946476864
## DENND1A -1.7946768057
## TMEM209 -1.7983195080
## NDUFAF8 -1.7983464004
## CLPP -1.7993328948
## SLC38A2 -1.7998918652
## SPOCK2 -1.8002931316
## SERTAD3 -1.8006722339
## CST7 -1.8019196022
## VEGFA -1.8022565992
## MEGF6 -1.8027292030
## TMOD3 -1.8036707866
## PAPOLA -1.8059384480
## TEX10 -1.8061114975
## UBR5 -1.8070659747
## UBE2T -1.8076787830
## TMPO -1.8097281159
## CLN3 -1.8122992535
## UCK2 -1.8135320476
## WDR36 -1.8166006230
## SMARCAD1 -1.8167184020
## VAC14 -1.8172236641
## SELPLG -1.8181793263
## DNAJB12 -1.8185820818
## OGFOD1 -1.8194446253
## YLPM1 -1.8199686261
## GAMT -1.8206742434
## STAB1 -1.8239262151
## PATZ1 -1.8240136318
## ZNF136 -1.8253322235
## SPINT2 -1.8253606010
## ZMAT3 -1.8255857810
## FANCC -1.8265427334
## GET3 -1.8298365365
## KANSL1L -1.8305465788
## SYNE1 -1.8327303233
## ZSCAN32 -1.8345694779
## EPHB1 -1.8347038191
## NR2C2 -1.8358875740
## IQCE -1.8360545696
## TMEM159 -1.8360762877
## GFUS -1.8378317268
## WNT10B -1.8382945362
## PSMD11 -1.8414389209
## UBN1 -1.8421235910
## FHL2 -1.8430505429
## RP9 -1.8436045104
## CSE1L -1.8443862219
## YY1 -1.8480710441
## ALMS1 -1.8492836994
## TBCK -1.8504154122
## HIBCH -1.8508360628
## RITA1 -1.8509179117
## ERCC3 -1.8520468521
## ANKFY1 -1.8532263444
## FKBPL -1.8538739904
## RPS28 -1.8556616263
## CD79A -1.8569556031
## AP3D1 -1.8574852807
## CDK5RAP1 -1.8578519526
## TRUB1 -1.8582578398
## CBX1 -1.8596926658
## TG -1.8597217497
## POLR3B -1.8612356584
## CNPY4 -1.8636672904
## SMIM19 -1.8638667408
## TRNT1 -1.8644944639
## NDUFS3 -1.8646681308
## RRP7A -1.8669025590
## TRANK1 -1.8685874086
## MGA -1.8691170016
## MBD1 -1.8701384252
## SSH3 -1.8712902209
## DOP1A -1.8740269963
## CD52 -1.8741672420
## ORAI1 -1.8771976638
## PAFAH1B3 -1.8772897288
## PHF3 -1.8778086794
## USP5 -1.8786051153
## AASS -1.8799049693
## ST6GALNAC6 -1.8800202391
## F13A1 -1.8800591699
## DNAJC9 -1.8803794207
## CHD8 -1.8806813285
## FAM3C -1.8823876062
## RFXANK -1.8825192152
## SHLD3 -1.8836213578
## FAHD1 -1.8855158937
## CUL2 -1.8855392803
## BFAR -1.8856980096
## TRAPPC2 -1.8879367228
## MSRB1 -1.8890648108
## ANAPC11 -1.8900304502
## RNF38 -1.8903925924
## ME3 -1.8916897088
## PYCR1 -1.8918045007
## C20orf27 -1.8966192818
## NCBP1 -1.8975930733
## CARMIL1 -1.8982968582
## GOPC -1.8986560560
## ETHE1 -1.8988621813
## STX2 -1.9007496093
## GADD45GIP1 -1.9014756898
## LZTS2 -1.9016228234
## UBE2K -1.9031204654
## NHP2 -1.9033963765
## TRIM68 -1.9038759287
## C1orf198 -1.9058862209
## PGAP1 -1.9071345504
## DMAC1 -1.9088553882
## MRPL54 -1.9101103507
## UQCR10 -1.9130667290
## NR2C2AP -1.9132287845
## PSMG2 -1.9135058101
## PTPA -1.9146542025
## NREP -1.9163591556
## MTA1 -1.9171386362
## FBXL6 -1.9178938833
## MFSD5 -1.9183847118
## LIME1 -1.9185735711
## FLCN -1.9191991888
## YWHAH -1.9211805809
## ZNF587 -1.9214153538
## BAG1 -1.9223511195
## ZFC3H1 -1.9230420976
## ZEB1 -1.9235058783
## THAP9 -1.9235744328
## VPS33A -1.9235936407
## YBEY -1.9257417541
## CS -1.9314156613
## COIL -1.9321500877
## C1orf109 -1.9325108728
## PER2 -1.9338555362
## TBCA -1.9347840319
## MRPL23 -1.9350004425
## IFIT5 -1.9354471051
## F12 -1.9354571743
## CMC2 -1.9361022573
## PAF1 -1.9367516804
## ARID2 -1.9382954874
## MPP6 -1.9391748926
## ATP6AP1 -1.9404453003
## H2BC5 -1.9425890094
## CASP7 -1.9437017512
## KCNA3 -1.9440339260
## TRPM2 -1.9490664439
## CUL4A -1.9494857248
## QSER1 -1.9523255498
## CTU2 -1.9542050354
## SAMD9L -1.9549763492
## RIC8A -1.9558363081
## MAPRE2 -1.9575828428
## NR1D1 -1.9580233364
## SMAP1 -1.9587388779
## DNAJC8 -1.9592252177
## CDKN1C -1.9632498822
## COMMD7 -1.9642729740
## ITPA -1.9644334759
## CUL1 -1.9647714068
## RNF144A -1.9648843055
## R3HDM1 -1.9661380570
## IDH1 -1.9673471085
## ANGEL2 -1.9677574269
## URGCP -1.9678690764
## ATG7 -1.9686802273
## SCFD2 -1.9697220071
## GLCCI1 -1.9723049697
## COPS9 -1.9729079462
## TMEM104 -1.9743512847
## RRAS -1.9752344802
## SMIM3 -1.9773100975
## BAZ2B -1.9779832647
## POLR3G -1.9793822554
## GPANK1 -1.9804528745
## SOCS5 -1.9807017337
## MPV17L -1.9807818873
## ZNF808 -1.9810000577
## NEXN -1.9815480541
## FAR2 -1.9820512204
## CDKN2D -1.9845347547
## PHETA2 -1.9856854065
## INTS13 -1.9864861693
## TMEM87A -1.9876482520
## UGDH -1.9883727783
## PNRC2 -1.9885442149
## TENT5A -1.9891393872
## U2AF1L5 -1.9892359223
## POLR3H -1.9895082634
## UQCRFS1 -1.9928735767
## SLC27A4 -1.9949247592
## MTMR4 -1.9951092541
## TRIM58 -1.9960511655
## MITF -1.9985848525
## UBC -1.9988589938
## KCTD13 -2.0003319907
## LCOR -2.0006621395
## TARDBP -2.0041215599
## KLHL25 -2.0067755048
## TMEM39A -2.0069975440
## FBXL19 -2.0099530706
## VPS37B -2.0106300040
## C6orf136 -2.0136563673
## NLE1 -2.0139241379
## VCPIP1 -2.0150569280
## RPSA -2.0165520697
## TRIM46 -2.0173045949
## FNDC3B -2.0182083701
## DCAF17 -2.0187985724
## TRMT13 -2.0205224092
## NCOA7 -2.0209248422
## DOCK7 -2.0212573196
## UBE4A -2.0221409140
## GATA3 -2.0226350999
## ERCC2 -2.0242924649
## EXOC2 -2.0252224245
## LRRC7 -2.0262625722
## TBCEL -2.0265502701
## HSD3B7 -2.0271737386
## GUCY1A1 -2.0272685255
## POU2F1 -2.0278528022
## HPS1 -2.0279935064
## GPATCH1 -2.0288819910
## CLOCK -2.0300732763
## ZNF684 -2.0327426309
## ZBTB20 -2.0334239575
## SKIV2L -2.0379873211
## WBP2 -2.0394373606
## CBX7 -2.0396338026
## NDUFB9 -2.0413059630
## UTP18 -2.0425834436
## ZNF468 -2.0429089527
## PTCD2 -2.0444459465
## GDPGP1 -2.0453054714
## AUP1 -2.0456941799
## MFNG -2.0465521699
## ZNF460 -2.0467004618
## CEP350 -2.0467987181
## SLC27A2 -2.0468012622
## MFSD6 -2.0485653423
## SIRT1 -2.0488325187
## PROCA1 -2.0498521873
## GEMIN6 -2.0511665252
## TMED7 -2.0540938238
## CNPPD1 -2.0543429496
## BEX2 -2.0568521383
## ZRANB3 -2.0599672234
## ACBD5 -2.0618461391
## SNTB2 -2.0624364233
## COG8 -2.0630675587
## ITCH -2.0632522765
## SRP54 -2.0643356024
## BLVRB -2.0658816900
## ITSN2 -2.0663611235
## DUSP7 -2.0669886767
## MCU -2.0680279340
## COPA -2.0687252450
## FGFR1 -2.0700426607
## VPS36 -2.0707644698
## CDYL -2.0719549833
## EPS8L2 -2.0723053661
## IFIH1 -2.0727707395
## RARA -2.0765135469
## TNFRSF25 -2.0769392348
## BCOR -2.0770564451
## INO80C -2.0804429081
## STT3B -2.0808974105
## VASP -2.0815944216
## BTG3 -2.0819493621
## ZNF791 -2.0823103139
## CUL5 -2.0823934123
## LMF1 -2.0830923920
## HCLS1 -2.0834252908
## CDK11B -2.0836103838
## SRSF9 -2.0867635505
## TMEM241 -2.0874157192
## TCERG1 -2.0880084180
## DGUOK -2.0917792399
## KCNC4 -2.0922190536
## OSBPL3 -2.0928073332
## LAMTOR1 -2.0929866059
## MRPL33 -2.0952329936
## GOLGA2 -2.0952814622
## RFXAP -2.0953850495
## ZKSCAN8 -2.0972282269
## LOC100421372 -2.1002789747
## KCND1 -2.1010524242
## RPS29 -2.1033527062
## GGT6 -2.1080539587
## SHISA4 -2.1097224023
## PRSS36 -2.1107837945
## B4GALT5 -2.1113710536
## NME4 -2.1131952042
## FTH1 -2.1140627778
## NDUFB10 -2.1170060737
## ARFGEF1 -2.1190041763
## EHMT2 -2.1196486850
## MED12 -2.1201798752
## FRMD8 -2.1202766047
## EIF2S1 -2.1219867316
## AARSD1 -2.1220585297
## PLCE1 -2.1239064846
## SUGP2 -2.1274580752
## DNM2 -2.1288147204
## FAM216A -2.1326683443
## SNN -2.1353703785
## CREG1 -2.1354203725
## COL8A2 -2.1390818099
## DUSP12 -2.1411018650
## CENPS -2.1424960354
## TMEM219 -2.1428810777
## ALAS1 -2.1434913857
## PPTC7 -2.1455806226
## REL -2.1457625848
## LAS1L -2.1463045385
## ULK1 -2.1525287925
## DHFR2 -2.1536369686
## NIPBL -2.1558542483
## ZBED4 -2.1572403889
## SUCLA2 -2.1607314874
## PIM2 -2.1610257310
## KRTCAP2 -2.1629467661
## MOB1B -2.1637454044
## TNK1 -2.1643737530
## GALNT7 -2.1651482335
## RIN3 -2.1658541916
## ZNF620 -2.1672151718
## KLF3 -2.1673953293
## RBL2 -2.1688453842
## DNM3 -2.1691503208
## TMPRSS13 -2.1699022301
## SLC25A20 -2.1711952908
## MYC -2.1721503750
## FBXW8 -2.1723246832
## ALYREF -2.1747828742
## RBM18 -2.1751884558
## KPNA5 -2.1755404412
## VTI1A -2.1765359302
## PDAP1 -2.1769964852
## INO80 -2.1773678472
## ESCO1 -2.1778213285
## NBPF3 -2.1787486152
## NDUFS6 -2.1791724682
## PIGBOS1 -2.1809704873
## ZNF318 -2.1831417845
## AIDA -2.1833747491
## ACSS2 -2.1846560148
## SYTL4 -2.1882896618
## EFCAB11 -2.1887035529
## MTIF3 -2.1887591331
## FAM185A -2.1891423377
## ABHD14A -2.1897978540
## DIP2A -2.1911791658
## C12orf4 -2.1917872138
## XPA -2.1942772362
## NUP85 -2.1945741832
## ARHGAP18 -2.1958271517
## PIGF -2.1967424381
## STIM1 -2.1988637227
## NPIPB11 -2.1995924260
## ATXN7L3B -2.1997123323
## BICRAL -2.2007701198
## AVL9 -2.2025663613
## MTHFD1L -2.2029979548
## SERTAD1 -2.2031993932
## DRAM2 -2.2033830502
## AKAP9 -2.2036595854
## ZNF639 -2.2042726428
## FBXL4 -2.2069922291
## RBMXL1 -2.2086938481
## CBLL1 -2.2091032484
## IFNLR1 -2.2112650627
## ALDH6A1 -2.2123208510
## RTN2 -2.2127644666
## ZNF324B -2.2141951092
## PPP2R5C -2.2155132102
## MAPK13 -2.2155566289
## ITPRIPL2 -2.2161610501
## PCYT2 -2.2162100985
## ZDHHC17 -2.2164030957
## FBF1 -2.2185824354
## AK9 -2.2201558890
## PEA15 -2.2212742188
## GLT8D1 -2.2217069871
## CPEB3 -2.2230615872
## MLYCD -2.2236292851
## PDK1 -2.2251429517
## TIMM44 -2.2260506102
## ARHGEF6 -2.2274553022
## CHST14 -2.2278366255
## MDM1 -2.2301272888
## TBC1D13 -2.2301444334
## TMEM256 -2.2310286811
## RPL41 -2.2311456278
## XPO4 -2.2324384891
## HIP1R -2.2325414945
## UGGT1 -2.2329498830
## RANBP9 -2.2331891922
## SLC17A5 -2.2347308096
## TMEM79 -2.2371112847
## HIPK2 -2.2378687441
## CLUH -2.2403735037
## PTTG1 -2.2404232032
## TMEM80 -2.2434599429
## GPRC5C -2.2456655501
## CPEB2 -2.2461698952
## DTNBP1 -2.2467408491
## KDELR1 -2.2487414715
## TST -2.2500404092
## INPP5B -2.2506737578
## RMND5B -2.2537600463
## HSD17B7 -2.2538051788
## ZFP69B -2.2547238015
## SHKBP1 -2.2554621763
## GPR137B -2.2554624307
## AGK -2.2560675904
## NWD1 -2.2575758767
## INTU -2.2587361650
## TIMMDC1 -2.2598012320
## OXR1 -2.2612005779
## UBE2E2 -2.2621128691
## RPN1 -2.2642608101
## SNAI3 -2.2648931488
## NCF1 -2.2649507862
## WWC2 -2.2653986766
## EIF5A2 -2.2657652541
## ATMIN -2.2658653320
## CGGBP1 -2.2671211817
## BOD1L1 -2.2695443607
## PHIP -2.2712522476
## CSRNP2 -2.2724453878
## GABPB2 -2.2757618428
## KLHDC4 -2.2761845542
## TTI1 -2.2796957500
## ISOC1 -2.2798219494
## LNX2 -2.2807155385
## TAX1BP3 -2.2846394793
## PLAG1 -2.2850035859
## PTX3 -2.2858239284
## ST8SIA6 -2.2862963025
## PHKB -2.2863958541
## OSM -2.2871516970
## IMPA1 -2.2882047191
## MYO9A -2.2922921312
## SACS -2.2928955199
## LOXHD1 -2.2953147897
## UGT8 -2.2953767448
## MARS2 -2.2960193655
## AGTRAP -2.2966227068
## AP1M2 -2.2975803687
## PLEKHJ1 -2.2987098280
## NDFIP2 -2.2990635879
## NEK7 -2.3000828308
## RBBP7 -2.3004737436
## LUZP1 -2.3006578617
## FUS -2.3019785396
## ZNF212 -2.3046998727
## GAPDH -2.3070682919
## XBP1 -2.3086372875
## H2BC4 -2.3088492111
## IL12RB2 -2.3093538182
## FLOT1 -2.3131083502
## CCR7 -2.3146763414
## LYSMD3 -2.3166939141
## CAPN7 -2.3172461036
## DNAJC10 -2.3179991383
## PPP1R8 -2.3181432774
## SEC24A -2.3186763049
## AKAP10 -2.3208241934
## PLCB2 -2.3215006770
## UBL5 -2.3235112895
## NDUFB2 -2.3243111513
## AGAP5 -2.3246320686
## YPEL2 -2.3256194086
## DNAJC18 -2.3263002832
## RTRAF -2.3274607503
## DUSP22 -2.3285968957
## FLT1 -2.3293754330
## SMC1A -2.3300485291
## MSI2 -2.3300650354
## XAF1 -2.3312382801
## DIP2B -2.3318214132
## GNGT2 -2.3346646755
## DHX38 -2.3374848052
## RBM41 -2.3379490819
## GNL3 -2.3401915650
## ELMO3 -2.3403368449
## FBXO10 -2.3422076986
## SNRK -2.3428068805
## CTCF -2.3438208877
## TTLL1 -2.3442903777
## SEMA4B -2.3447241846
## DPY19L4 -2.3458089726
## SLC22A15 -2.3464096413
## GCDH -2.3465180218
## NPIPA8 -2.3480496703
## ZNF568 -2.3493298249
## DHX40 -2.3496562864
## GALNT2 -2.3512360573
## TSPYL4 -2.3513113449
## YIPF3 -2.3513159716
## ATF1 -2.3520970907
## EPAS1 -2.3521230426
## ZCCHC4 -2.3543682182
## NEMF -2.3544291102
## TARBP2 -2.3565269984
## HDAC5 -2.3565515879
## CEMP1 -2.3570445971
## BTRC -2.3576318252
## TBC1D2 -2.3586998343
## PSPH -2.3589586735
## MED19 -2.3600125008
## RRS1 -2.3602171987
## LCMT1 -2.3617543686
## TAP2 -2.3629896689
## C11orf68 -2.3638934784
## CCDC186 -2.3640727394
## IL21R -2.3643282648
## RREB1 -2.3647100252
## DNPEP -2.3676987860
## ANO5 -2.3698594072
## PIF1 -2.3712530038
## CATSPERG -2.3722701251
## MTRNR2L10 -2.3727409627
## GRB14 -2.3736741970
## TNFSF4 -2.3738095884
## LAT -2.3755131741
## FAM32A -2.3767717522
## APAF1 -2.3794185260
## CPED1 -2.3802850896
## TMEM94 -2.3808042258
## CLN6 -2.3813316950
## NUFIP2 -2.3828751083
## GALT -2.3837129665
## P2RX4 -2.3847322655
## PI4KB -2.3893684795
## LRRC40 -2.3905655465
## MAEA -2.3909086521
## BMP1 -2.3917457394
## PSMC2 -2.3932961826
## PARD6A -2.3962724317
## GABBR1 -2.3968911297
## MAP2K7 -2.3973311058
## NPLOC4 -2.3979767363
## ALDOC -2.3983397441
## GPATCH11 -2.3984283126
## NOB1 -2.3990715969
## CEP85 -2.3994589238
## TRAPPC11 -2.4046561725
## RNF40 -2.4072969484
## TIMM23B -2.4103149344
## MAB21L3 -2.4110569957
## USP14 -2.4111769959
## TMEM204 -2.4158429901
## INTS8 -2.4172014368
## RPP25 -2.4176261896
## FARP1 -2.4200369419
## ATP6V0A2 -2.4215403891
## ZBTB2 -2.4246733577
## TRIM65 -2.4248036228
## MEI1 -2.4249026896
## MPDU1 -2.4284748262
## SCML2 -2.4290199992
## GTF2H2C -2.4317576993
## ZNF280D -2.4343826227
## AFF2 -2.4355054437
## KIDINS220 -2.4356316559
## CALHM2 -2.4369684224
## ARG2 -2.4398015813
## SPATA33 -2.4401218720
## RNF31 -2.4415601677
## RFFL -2.4419194875
## L3MBTL4 -2.4425095043
## CRYM -2.4426320476
## SCYL3 -2.4427898543
## CBFA2T3 -2.4431743438
## RHBDD1 -2.4451627937
## DNAJC5 -2.4467753185
## MAP6D1 -2.4476010969
## NDUFB8 -2.4477847828
## KDM5B -2.4488196466
## GPLD1 -2.4502946486
## SEC23B -2.4532327403
## RAD54L2 -2.4551686856
## BNIPL -2.4558877949
## OAS1 -2.4570717096
## CNTLN -2.4603691378
## ZNF783 -2.4614824693
## FN3K -2.4618384954
## PM20D2 -2.4621431716
## PARD6G -2.4625468038
## ARPC3 -2.4640547885
## ENOPH1 -2.4641168830
## TTYH2 -2.4643295948
## ANXA9 -2.4702797499
## MTREX -2.4735292135
## SLC39A6 -2.4737201806
## DOLK -2.4743703082
## ZNF576 -2.4754262953
## WDR82 -2.4764114988
## PUS7 -2.4786805017
## PRDX5 -2.4789496463
## ELOVL1 -2.4791853643
## TNFRSF1A -2.4798300736
## JARID2 -2.4799957672
## TK1 -2.4803208080
## ERBIN -2.4805167543
## NOL8 -2.4812618296
## ZW10 -2.4819903161
## HMGN3 -2.4827400847
## SNRNP48 -2.4842765989
## COX19 -2.4849664278
## UPF2 -2.4857299899
## CYSLTR1 -2.4871010988
## SCRN3 -2.4883510658
## KMT2A -2.4884299803
## BIVM -2.4897475069
## SEPTIN1 -2.4913498675
## NCBP2AS2 -2.4917523874
## PWWP2A -2.4929738880
## LGALS9 -2.4953615990
## LMNA -2.4969101055
## OGA -2.4971298078
## SSPN -2.4976737832
## PTPN12 -2.4990351133
## FOXN2 -2.5012604837
## C19orf47 -2.5027828128
## SOCS7 -2.5029679184
## SPTBN5 -2.5031803856
## ATAD3A -2.5042240140
## NSDHL -2.5053201554
## TRAPPC8 -2.5060779646
## ZNF512B -2.5072097121
## KDM7A -2.5072565724
## CCDC86 -2.5083993115
## DCXR -2.5102942335
## GEMIN5 -2.5106692650
## REST -2.5118291030
## MAD1L1 -2.5122385916
## OPLAH -2.5160066770
## RPRD1B -2.5163433896
## NBN -2.5173762627
## STAT2 -2.5181802588
## DNAJB14 -2.5207739786
## RAD21 -2.5209843877
## CDR2 -2.5224600926
## BICRA -2.5247064992
## KDM1B -2.5270787743
## SNAP47 -2.5279631855
## HSD17B8 -2.5290971474
## GOLPH3L -2.5308758178
## OAS2 -2.5316530855
## TRAPPC2L -2.5322137995
## VEZT -2.5328952039
## PEF1 -2.5338960836
## MYO1A -2.5381356226
## SNRPA -2.5383877253
## GCLC -2.5404256170
## AHI1 -2.5409054778
## GALM -2.5416116231
## GFI1 -2.5417069316
## PECAM1 -2.5425112770
## SCAF11 -2.5444072095
## SAMM50 -2.5444813033
## CMPK2 -2.5464962975
## NEGR1 -2.5466953196
## ROM1 -2.5468097997
## SMDT1 -2.5471903643
## AZIN2 -2.5481206623
## FNIP2 -2.5487340273
## ANKRD12 -2.5491842691
## UTP20 -2.5503744549
## MRPL2 -2.5508027679
## ITM2C -2.5518461042
## NPFF -2.5531146394
## PRR11 -2.5532578032
## ADSS2 -2.5542747637
## PRMT7 -2.5552605493
## CMAS -2.5557318413
## BAP1 -2.5563987413
## SREK1 -2.5570010621
## EFNA3 -2.5572129717
## DNAJC15 -2.5580915698
## BBS7 -2.5591540144
## ZFX -2.5653238803
## PPP1R12B -2.5653266518
## ALS2 -2.5686099055
## TMEM62 -2.5692145581
## PLK2 -2.5693045130
## APPL1 -2.5715733720
## SMIM7 -2.5758730640
## POP7 -2.5764063958
## ACP1 -2.5776879121
## GSTO1 -2.5786020317
## CAT -2.5787951234
## TNFRSF10A -2.5798130943
## NME2 -2.5814223321
## AASDHPPT -2.5840700462
## FUT11 -2.5845481928
## MTLN -2.5877854169
## KATNA1 -2.5952316556
## POLD2 -2.5958586722
## SLC35A4 -2.5968648459
## ZNF510 -2.5969542029
## MTERF2 -2.5976927326
## ACOT11 -2.5999768845
## TLE3 -2.6002013380
## GUCY1B1 -2.6047483612
## PHLPP2 -2.6050709108
## LIN37 -2.6052384916
## SPSB2 -2.6056028903
## CPLANE1 -2.6061546761
## WHAMM -2.6076893686
## SLC26A8 -2.6081339610
## CCNY -2.6094628880
## ELP5 -2.6099362061
## RIMS3 -2.6139514337
## USP3 -2.6140622607
## DTWD2 -2.6151052313
## PMPCA -2.6157892759
## C11orf98 -2.6165650952
## WDR44 -2.6213031590
## SARNP -2.6221553926
## YWHAQ -2.6222610724
## SPOUT1 -2.6226816862
## METTL3 -2.6245557553
## TRIM38 -2.6269262779
## SECISBP2 -2.6288709003
## SPTY2D1 -2.6292032806
## IFI27 -2.6292795211
## ZBTB44 -2.6311078473
## MRPS25 -2.6316843400
## SCO1 -2.6342658300
## ZC3H13 -2.6345361610
## CDK3 -2.6352140673
## SLC25A17 -2.6352672258
## ZNF346 -2.6371906412
## THUMPD3 -2.6385382465
## PRKAB2 -2.6414320143
## PSMC3IP -2.6416144707
## LRFN1 -2.6418802248
## MYCL -2.6432664152
## C21orf91 -2.6454186519
## BTBD3 -2.6498716591
## IBTK -2.6515304763
## BCL3 -2.6528774430
## IFI44 -2.6536473893
## NFKBIB -2.6537216007
## TMX3 -2.6540338922
## NFE2 -2.6544694406
## HEXD -2.6547666756
## BET1L -2.6566757382
## MVK -2.6569803524
## MED10 -2.6576627304
## VAMP2 -2.6581184065
## CEP120 -2.6583416856
## AHCTF1 -2.6586219689
## HMGCR -2.6586690784
## KCNMB3 -2.6591560993
## EBPL -2.6594247529
## ZFP64 -2.6597587704
## CDK13 -2.6599365841
## IFI27L1 -2.6604573319
## MIS18BP1 -2.6607119483
## PARP8 -2.6608480901
## MRPS11 -2.6640826054
## TTN -2.6646600167
## KLC1 -2.6651190849
## ZNF257 -2.6663790672
## PTGS1 -2.6667752507
## GOLGA3 -2.6677507885
## KDM4A -2.6677651281
## IL23A -2.6699133434
## PRKAA1 -2.6703436673
## ZNRF1 -2.6713623140
## RPL34 -2.6715046926
## CCDC9B -2.6739738131
## ZFYVE28 -2.6797184267
## GTF2E1 -2.6805980923
## PRPSAP1 -2.6816081616
## ALG8 -2.6825810978
## SASH3 -2.6829199549
## MRM2 -2.6851511887
## SCCPDH -2.6851579170
## USP45 -2.6859108037
## PSD4 -2.6859598013
## DDX58 -2.6878069251
## ABCA13 -2.6890539682
## ITPR2 -2.6895283724
## KDM6A -2.6900388530
## GSN -2.6905779916
## SSR2 -2.6913628931
## DCP1A -2.6914560452
## PAN3 -2.6924775629
## IARS2 -2.6935180467
## APC -2.6960425603
## HSD17B4 -2.6962969924
## COPB1 -2.6967191949
## ATF5 -2.6984128918
## CPNE3 -2.6984245657
## SLAMF7 -2.6992375806
## AGFG2 -2.7020656556
## ZZEF1 -2.7025028877
## PIN4 -2.7034276835
## TSR2 -2.7053562429
## FDX2 -2.7057018678
## ZDHHC19 -2.7082640261
## RFX2 -2.7083762771
## FUBP1 -2.7088915763
## IRF5 -2.7096177535
## ANKRD39 -2.7103887548
## SULT1A3 -2.7117976929
## ADCY7 -2.7124033229
## SMCR8 -2.7137030254
## FAM76B -2.7142065956
## EPHB4 -2.7147639960
## SP140 -2.7165653429
## S100A11 -2.7190599749
## CLIP4 -2.7203523419
## PCDHA4 -2.7216684126
## FLYWCH1 -2.7221373830
## NFYA -2.7232230879
## CFDP1 -2.7238332556
## C6orf120 -2.7244890037
## ADD3 -2.7256625810
## GPD1L -2.7283617350
## R3HDM2 -2.7285129591
## COMTD1 -2.7291635866
## PEX1 -2.7301417870
## RSAD1 -2.7307194592
## KLHDC10 -2.7307337286
## MTHFD2 -2.7317994050
## PNPT1 -2.7320526059
## EIF3I -2.7328523142
## KIF13B -2.7329919812
## RPS13 -2.7340411074
## PCYOX1 -2.7349154897
## BTBD6 -2.7360218811
## ZDHHC2 -2.7383148807
## ADRB2 -2.7401846393
## PPP1R21 -2.7414469865
## TRRAP -2.7425249769
## RSKR -2.7436175666
## INTS10 -2.7464339349
## SPEN -2.7472164458
## TSPAN17 -2.7472997072
## ZAP70 -2.7526478182
## KLC4 -2.7547153227
## ODR4 -2.7553180103
## CPSF1 -2.7618713169
## CENPQ -2.7622642125
## CCNJ -2.7648500564
## VOPP1 -2.7651914019
## GDPD5 -2.7659942132
## UBXN4 -2.7666630944
## ATP8B3 -2.7672318182
## RSPRY1 -2.7679201383
## ARHGAP30 -2.7684132277
## PPM1G -2.7689205594
## TMEM154 -2.7709342562
## UBALD2 -2.7714717335
## TMEM18 -2.7718749200
## UFL1 -2.7730064629
## CDC73 -2.7733852744
## BTBD7 -2.7734245249
## RNPEP -2.7759015483
## ZNF276 -2.7761542008
## MED21 -2.7766930756
## UXS1 -2.7773779456
## SCAF4 -2.7781175376
## ELAVL1 -2.7796218964
## CEACAM6 -2.7806221160
## MR1 -2.7830079044
## RPRD1A -2.7848214859
## NT5C3B -2.7848296776
## CCAR1 -2.7850646967
## MAGI3 -2.7856527814
## C7orf26 -2.7858521319
## KLF6 -2.7859308309
## ZNF383 -2.7860827304
## TDRKH -2.7860957229
## IGFBP4 -2.7868822086
## ABCG1 -2.7877965094
## KHK -2.7902963626
## MTMR1 -2.7904218984
## STRN3 -2.7918903798
## ZDHHC13 -2.7921443499
## MTMR11 -2.7925546098
## LILRB5 -2.7935846511
## OAS3 -2.7936750241
## ENPP4 -2.7938871500
## RCHY1 -2.7940975845
## ENTR1 -2.7943662195
## PRKD2 -2.7967589236
## DDX19B -2.7969201050
## TNPO2 -2.7977798886
## USP32 -2.7990672934
## HSPA4L -2.7991492285
## ARMH1 -2.7998627652
## HDDC2 -2.7999135177
## NSA2 -2.8020152835
## TAGAP -2.8022603896
## MEGF9 -2.8035267339
## WBP1L -2.8049709344
## LEMD3 -2.8072371601
## NIBAN3 -2.8080632383
## ZNRD2 -2.8109053554
## FHL1 -2.8117184289
## RAF1 -2.8129172335
## AKAP5 -2.8140759576
## IFI44L -2.8148578076
## PTMA -2.8179036690
## SLC35A1 -2.8179792346
## MED14 -2.8188483938
## CD79B -2.8189891496
## XRRA1 -2.8213062808
## PROSER3 -2.8214314505
## FRMD4A -2.8219849253
## GGT7 -2.8224784450
## RAB43 -2.8247826339
## TAP1 -2.8253167476
## MED27 -2.8258448392
## ABCC2 -2.8272549521
## MAZ -2.8280114757
## TMOD2 -2.8284856790
## RWDD2B -2.8286871617
## SRRM1 -2.8299668129
## GTF2F2 -2.8325234546
## INPP5D -2.8338204145
## UBQLN4 -2.8339965578
## MRM3 -2.8350297491
## SLC25A51 -2.8362347414
## CCDC84 -2.8380204934
## ENO3 -2.8416219076
## PDLIM5 -2.8416543841
## TDRD7 -2.8430037853
## SLX4IP -2.8430690929
## GPRIN1 -2.8430879824
## AP5M1 -2.8442126816
## MORN3 -2.8458673466
## ERCC8 -2.8472231022
## LYRM4 -2.8477415121
## TMEM135 -2.8478515610
## SECISBP2L -2.8484543102
## IFIT2 -2.8486458126
## AMD1 -2.8503166572
## LONP2 -2.8503812116
## BTBD1 -2.8510802824
## CA13 -2.8535752583
## DHX30 -2.8536687695
## CENPC -2.8537278559
## GOT1 -2.8545229774
## SLC44A2 -2.8564370918
## DHX9 -2.8583527773
## SEPTIN7 -2.8612188522
## GABPA -2.8632108322
## RPUSD3 -2.8634059178
## PNMA3 -2.8644957469
## CA11 -2.8652843089
## ETV3 -2.8688608478
## COLEC12 -2.8690551632
## MRPS2 -2.8697412229
## PTPMT1 -2.8712627891
## URB2 -2.8717118230
## TRAFD1 -2.8738438543
## MTMR6 -2.8739570408
## EEF2KMT -2.8746287089
## S1PR3 -2.8755648267
## FAHD2B -2.8759149881
## UHRF1BP1L -2.8779438179
## ZNF224 -2.8781748490
## NAA50 -2.8783472706
## LILRB1 -2.8793930234
## SLC4A7 -2.8799003282
## MFSD4B -2.8814283947
## CANX -2.8825036406
## ARNT -2.8829501030
## CENPO -2.8831010084
## C7orf31 -2.8834642716
## MAN2A2 -2.8836675966
## H1-10 -2.8842750881
## HCST -2.8853847522
## PARD3 -2.8855205591
## PTGIR -2.8879958284
## GCC1 -2.8903224810
## DPH3P1 -2.8912848690
## AP3M1 -2.8927042476
## MAP3K10 -2.8947802552
## PRR12 -2.8948656044
## CASR -2.8969057960
## NXPE3 -2.8970656399
## C1QA -2.8973934764
## FTO -2.8987335529
## SETDB2 -2.8990749948
## POLR2H -2.9001286140
## ZNF609 -2.9004986933
## SRSF4 -2.9005783686
## BBS12 -2.9015624989
## PDIA6 -2.9034915488
## RNGTT -2.9052238150
## THYN1 -2.9063352676
## MOB2 -2.9073697182
## NAP1L5 -2.9084381336
## SPC24 -2.9105347967
## DNAH1 -2.9107032422
## SMU1 -2.9118874155
## DAZAP1 -2.9130938763
## ZNF654 -2.9143456383
## SETD6 -2.9153849975
## SLC9A6 -2.9165196946
## ELOA -2.9169760768
## PCK2 -2.9172391202
## ALKBH5 -2.9184436128
## IFIT3 -2.9201031036
## NFS1 -2.9201207728
## NRBP1 -2.9206466006
## ALG12 -2.9212394803
## LRG1 -2.9221783911
## NOLC1 -2.9237770187
## ZSCAN9 -2.9308371065
## EID2B -2.9322313891
## PERP -2.9325602328
## CBX6 -2.9325655816
## AKR1A1 -2.9344368689
## EIF3B -2.9345727400
## SHPRH -2.9349013931
## TMEM223 -2.9357087034
## FUT4 -2.9357134476
## SNRNP200 -2.9361480762
## PNISR -2.9375371575
## TOPORS -2.9383407707
## USP47 -2.9390478309
## CHRNE -2.9391022211
## LPP -2.9396453928
## WIPI2 -2.9399664452
## EMD -2.9404056975
## AKAP13 -2.9426637579
## ING3 -2.9437595795
## ZNF518A -2.9444313500
## ZBTB41 -2.9456869151
## COPB2 -2.9458540827
## PBDC1 -2.9471456552
## NT5C3A -2.9471946321
## PRMT1 -2.9482738682
## MBD5 -2.9484913138
## ENDOD1 -2.9487243447
## ST13 -2.9503278040
## SIAE -2.9519085289
## RALGAPA1 -2.9525470030
## SYNCRIP -2.9527715936
## ZMYND19 -2.9556824808
## ACVRL1 -2.9560737007
## SLC16A7 -2.9580536600
## FCRLB -2.9591259526
## TNRC6A -2.9594137483
## GBP4 -2.9599215761
## PRPSAP2 -2.9605216532
## TRDMT1 -2.9640968650
## ITGA9 -2.9664181545
## LOC100133315 -2.9687405697
## POLR2M -2.9699257308
## ATF2 -2.9702080627
## ZNF777 -2.9704963311
## GRINA -2.9740888837
## AKAP11 -2.9752984156
## FCGR3A -2.9755381732
## FRY -2.9759922668
## MSMO1 -2.9760574149
## PRKCB -2.9766201010
## MTIF2 -2.9769222377
## GPR107 -2.9779373926
## MOGS -2.9816716546
## ZCCHC14 -2.9826651500
## MON1A -2.9827077381
## TACO1 -2.9846668618
## HYPK -2.9849687503
## TAPBPL -2.9852062808
## VPS16 -2.9898461677
## ZSCAN30 -2.9910238713
## CEACAM8 -2.9915918137
## PRKAG2 -2.9916664174
## CD3E -2.9937983916
## GBP3 -2.9938947270
## FAM91A1 -2.9945624984
## ATP13A1 -2.9963638473
## NAA25 -2.9982953775
## STK39 -2.9994046148
## CD164 -2.9998120768
## ZNF175 -3.0008737966
## FBXO45 -3.0011935784
## TMED10 -3.0028891144
## PRPS1 -3.0039851443
## KDM3B -3.0048401067
## HIKESHI -3.0083732434
## RBM12B -3.0092140265
## FANCE -3.0093613816
## C12orf45 -3.0097879987
## GRPEL2 -3.0107173406
## PHF20L1 -3.0112775756
## ORAI2 -3.0123992875
## LYPLAL1 -3.0137497274
## SYK -3.0143989655
## TNRC6B -3.0146987078
## C22orf34 -3.0164473300
## CMTR1 -3.0180697156
## ATG16L1 -3.0182491253
## APOOL -3.0240579641
## TBC1D23 -3.0243422123
## HNRNPA0 -3.0245861062
## HDLBP -3.0246136711
## GNG7 -3.0255440335
## GLB1 -3.0257578729
## ABCC6 -3.0264195154
## SCRN1 -3.0270126165
## NDUFA8 -3.0271962410
## KRIT1 -3.0274445970
## RUSF1 -3.0306404033
## STXBP5 -3.0309932355
## MYH10 -3.0329843551
## PIAS3 -3.0331177370
## FAM104B -3.0348375521
## GPN2 -3.0356256992
## SPATS2L -3.0362892869
## EGFL8 -3.0363127918
## ARMC1 -3.0370327388
## ZNF146 -3.0372946129
## DUS2 -3.0374436369
## AFAP1L2 -3.0382095212
## ITGB3 -3.0403159056
## CTSD -3.0408138454
## TMEM69 -3.0414990627
## MAP4K3 -3.0433097664
## INTS6L -3.0445772780
## TEX22 -3.0454452803
## TM7SF2 -3.0477124446
## BACH1 -3.0498036099
## RCL1 -3.0519722465
## SLC30A5 -3.0527526027
## RRP12 -3.0529849370
## FAM83H -3.0530582061
## PLP2 -3.0537791277
## RAB19 -3.0539191883
## CKB -3.0571338885
## ATP6V0A1 -3.0577127849
## TBPL1 -3.0584105471
## MOCS2 -3.0592761188
## ARID4B -3.0598690065
## DOCK4 -3.0609874456
## ZGLP1 -3.0616991146
## AMFR -3.0620097986
## INTS6 -3.0626098754
## SNX27 -3.0628075497
## SUSD1 -3.0630341939
## NUP153 -3.0631979112
## GSS -3.0633360414
## PRDM2 -3.0666603709
## MAPK6 -3.0694531116
## RRP1 -3.0702899476
## PTPN22 -3.0709367602
## PTER -3.0722980089
## ARSK -3.0744025756
## VAMP4 -3.0756533021
## EXTL2 -3.0767593695
## SLTM -3.0776254389
## FGF11 -3.0777465036
## PLEKHB1 -3.0778082279
## SKAP1 -3.0791881473
## SLC26A11 -3.0807706942
## RAB39B -3.0818533604
## ATP5PO -3.0843820124
## GID4 -3.0860000984
## NOM1 -3.0892217090
## ALKBH3 -3.0914747871
## TAF5L -3.0939978235
## RHOT1 -3.0946559038
## DEXI -3.0951889687
## CEP57 -3.0952585737
## MINK1 -3.0969552833
## SNRPB2 -3.0977326676
## QRSL1 -3.0978765921
## SPAG16 -3.0997943194
## SCAMP3 -3.1000473263
## MKNK2 -3.1022686237
## PRTFDC1 -3.1031670655
## RAB11A -3.1051314406
## PRPF40A -3.1058252180
## MPHOSPH8 -3.1086912736
## EEF1E1 -3.1087421193
## FBXO22 -3.1098490021
## SLC35E4 -3.1106618387
## IMP3 -3.1114060009
## HDAC9 -3.1115960357
## ATP8B4 -3.1122483739
## DDX46 -3.1122577180
## BBOF1 -3.1126753989
## CBFB -3.1152662485
## PPT1 -3.1170611868
## MEN1 -3.1184046357
## NOD2 -3.1185828026
## CPEB4 -3.1188228366
## STK17B -3.1214579823
## GRK5 -3.1226054040
## DDX21 -3.1229263071
## TMEM109 -3.1254702014
## PIAS4 -3.1265241546
## ATP5F1E -3.1277733579
## SAMD8 -3.1288140800
## TNFRSF9 -3.1290092562
## NDUFAF2 -3.1292119944
## NOTCH2 -3.1299407487
## ZNF493 -3.1300479826
## CASD1 -3.1309039364
## ZFP69 -3.1322570370
## PARK7 -3.1329929990
## NPHP4 -3.1330823937
## CYFIP2 -3.1363160039
## CACNA1I -3.1365342360
## VSIG10 -3.1392209068
## CISD1 -3.1395929244
## DDX56 -3.1402066527
## WDR43 -3.1414810022
## RNF168 -3.1444161554
## DICER1 -3.1467349087
## TMC8 -3.1479962695
## PSME3 -3.1483025889
## S100A9 -3.1492116919
## TADA1 -3.1493006488
## GRN -3.1499588836
## LIG3 -3.1506479175
## NUDT18 -3.1535761137
## PELI2 -3.1541208020
## ARPP19 -3.1546828890
## ZNF506 -3.1581602391
## SP100 -3.1593374878
## ARL1 -3.1599332610
## CTU1 -3.1601856211
## ZNF799 -3.1609241120
## KMT2D -3.1609657782
## TAB2 -3.1614765631
## MRPL45 -3.1615750171
## SIDT1 -3.1617198096
## SYNM -3.1617624556
## CCT2 -3.1626257138
## MZT2A -3.1629650196
## CORO2A -3.1642145673
## ANXA2 -3.1666339103
## TMEM44 -3.1672104982
## TMED2 -3.1681895357
## SIPA1L1 -3.1688743896
## GATAD2B -3.1689069741
## RBAK -3.1689605993
## CDKN3 -3.1695794326
## MARF1 -3.1701528225
## NME7 -3.1713104988
## UBAP2 -3.1720998293
## KAT2A -3.1743115975
## NDUFA1 -3.1747520443
## SLC11A2 -3.1750545630
## SRFBP1 -3.1756877833
## ABRAXAS1 -3.1758672887
## CLTCL1 -3.1790310217
## FGFR1OP2 -3.1792665108
## RBM25 -3.1851586037
## SUCLG1 -3.1860716125
## DSTYK -3.1887117515
## CANT1 -3.1887288721
## TVP23B -3.1891996271
## GNPNAT1 -3.1899494365
## DERA -3.1906125749
## RESF1 -3.1928279366
## IMP4 -3.1958712122
## FICD -3.1959435552
## ZNF615 -3.1962722984
## BCL2L15 -3.1971493207
## ATP6AP2 -3.1973698553
## ORC4 -3.1974610857
## TOR1B -3.1980883307
## ADD1 -3.1981343109
## CLEC2D -3.1985968402
## TENT4B -3.2015558775
## CABLES2 -3.2021963683
## MAP3K2 -3.2046677022
## RTN1 -3.2047156679
## ZNF697 -3.2070015733
## PIGB -3.2088013677
## CCP110 -3.2090820544
## MTURN -3.2104053231
## UBE2D4 -3.2107599953
## BLOC1S1 -3.2108792198
## ANAPC7 -3.2146513804
## AFF1 -3.2148486159
## VPS26C -3.2152768731
## YAE1 -3.2156757014
## TRAF3IP1 -3.2161287961
## WDR54 -3.2171354148
## ZDHHC5 -3.2180337462
## RCCD1 -3.2181245224
## EMG1 -3.2214461251
## ZNF45 -3.2220550405
## FAM228B -3.2229743815
## POGK -3.2232727299
## CIAO2B -3.2236450296
## TIMM8B -3.2258811904
## TBC1D25 -3.2282490888
## REC8 -3.2283096708
## BOLA2B -3.2284494944
## POLD1 -3.2284688193
## NT5DC3 -3.2310549275
## PCBP3 -3.2313047370
## IFIT1 -3.2319991858
## GLE1 -3.2330034750
## SPNS3 -3.2332055296
## TFRC -3.2350972280
## UBQLN1 -3.2368958958
## SPATA5L1 -3.2373547675
## TRIP12 -3.2375551500
## GLO1 -3.2377845683
## SLC35C2 -3.2381015150
## RFTN1 -3.2381189905
## RAC2 -3.2381531293
## EXOSC4 -3.2394647185
## DBI -3.2397447586
## B4GALT4 -3.2399845800
## TPP1 -3.2402357972
## LDLRAD3 -3.2425425828
## SNRPB -3.2429973090
## COX6A1 -3.2433308777
## ACAP2 -3.2440750799
## PDE3A -3.2445570939
## LRRC14 -3.2447269360
## SPRTN -3.2451507253
## FFAR3 -3.2452472620
## POLR3A -3.2457251095
## SMUG1 -3.2459438034
## NIPA2 -3.2470458951
## FKBP11 -3.2480459963
## SDR42E1 -3.2495771633
## ABCB7 -3.2497293444
## ARHGEF18 -3.2500712880
## TOR1AIP2 -3.2509755648
## ECPAS -3.2515326202
## SPAG9 -3.2521026067
## BLNK -3.2541211080
## PTP4A1 -3.2546667390
## MTMR12 -3.2567271398
## RNF7 -3.2569318706
## DDX60L -3.2576499855
## CMC1 -3.2585763658
## ZNF888 -3.2590377207
## ZNF670 -3.2592022352
## RTTN -3.2618643809
## PHPT1 -3.2618659762
## DENR -3.2622063438
## FAM168A -3.2626140296
## CDK20 -3.2634575751
## POLR1B -3.2640277566
## MRGBP -3.2660192391
## MDM2 -3.2665324194
## TAF1D -3.2666615650
## RNF220 -3.2678028594
## PDIA4 -3.2687015952
## AP1G1 -3.2723360423
## TM9SF3 -3.2726574231
## RAB11FIP4 -3.2733472454
## SLFN14 -3.2741747872
## UBE4B -3.2751154845
## CHST7 -3.2755153225
## GPRIN3 -3.2758011247
## ZNF275 -3.2758552756
## YWHAG -3.2765986862
## TRAPPC4 -3.2781897311
## MMP19 -3.2784477300
## CHUK -3.2798137413
## SCAF8 -3.2830836605
## CD3D -3.2834826349
## TBL1XR1 -3.2848323383
## HYLS1 -3.2850599243
## ICMT -3.2850736517
## MTF1 -3.2854909516
## ABRACL -3.2871802231
## BPHL -3.2884130302
## CPSF3 -3.2895348375
## RPSAP58 -3.2901459432
## FXR2 -3.2906259253
## IRAG1 -3.2912787979
## AMIGO3 -3.2913812592
## CEP170 -3.2913938122
## ILK -3.2916975042
## TMEM263 -3.2917564760
## AKT3 -3.2927360711
## FAM189B -3.2929212333
## CENPP -3.2935141782
## UNC5CL -3.2953708678
## NFRKB -3.2966699618
## TRNAU1AP -3.2989133968
## ZNF37A -3.2998669854
## MMP9 -3.3018007009
## CSGALNACT2 -3.3025656064
## GIMAP5 -3.3032784278
## MRPS23 -3.3046571159
## HSD17B13 -3.3074453799
## IL17RC -3.3110698699
## LPCAT3 -3.3117080817
## PCNX1 -3.3138833704
## SSC4D -3.3139704248
## GFM1 -3.3142110204
## ZNF207 -3.3142778803
## SAP30 -3.3152992639
## UPK3BL1 -3.3187313847
## LUZP6 -3.3191344384
## MTPN -3.3191344384
## FOCAD -3.3203430560
## MRPS12 -3.3209023541
## ZFYVE21 -3.3216966100
## ISG20L2 -3.3217058556
## CZIB -3.3218486776
## DYNLL2 -3.3223590794
## RTEL1 -3.3225471139
## LZTFL1 -3.3244979030
## ZC3HAV1 -3.3246739442
## BAIAP2 -3.3247190439
## PRMT9 -3.3272576175
## UFM1 -3.3277441038
## FUBP3 -3.3278015197
## TUT4 -3.3279027621
## ZC3H3 -3.3290394371
## NDUFB11 -3.3298029276
## CD24 -3.3314736078
## ASCC1 -3.3326764547
## MAN2C1 -3.3335018129
## IL24 -3.3336600071
## RNF216 -3.3338438443
## ARIH2 -3.3349523550
## TMEM147 -3.3366966850
## LMBRD1 -3.3367322861
## DOCK11 -3.3387008401
## SND1 -3.3393579452
## TULP3 -3.3395167120
## LDAH -3.3406390695
## GTF2H1 -3.3410308936
## C9orf40 -3.3419325868
## ZBTB34 -3.3424057677
## EXOSC7 -3.3425360444
## RNFT1 -3.3426639181
## KCNIP2 -3.3430835233
## TMEM11 -3.3444080901
## DUSP23 -3.3444142595
## SLBP -3.3458465498
## MAD2L1BP -3.3470587460
## MEFV -3.3472003380
## WDR26 -3.3482332255
## S100A10 -3.3484946545
## LDOC1 -3.3491458885
## HERC6 -3.3531317169
## SRBD1 -3.3535941759
## PCF11 -3.3545037928
## HDGFL3 -3.3546834497
## NEIL2 -3.3549342324
## MRPL17 -3.3550291108
## S100A6 -3.3563251952
## PITPNA -3.3564161522
## ZNF282 -3.3566756348
## QKI -3.3585300602
## SATB1 -3.3605171024
## GORASP2 -3.3613206393
## TXNL1 -3.3613534765
## FAM136A -3.3614987276
## ATP6V0C -3.3626360566
## USP53 -3.3627869851
## ZSCAN25 -3.3638799069
## HMGB3 -3.3639719437
## PTBP2 -3.3643280726
## PCYOX1L -3.3683451646
## OXSR1 -3.3686074992
## COPS2 -3.3693552734
## NGRN -3.3709945591
## MDH1 -3.3715633839
## C11orf71 -3.3724770286
## TRMT112 -3.3725797355
## NUP37 -3.3751827682
## HEMK1 -3.3757067327
## PYROXD1 -3.3761526248
## LAGE3 -3.3777400092
## ZNF24 -3.3782631890
## NOTCH1 -3.3785831525
## PLEKHA5 -3.3786579103
## GP9 -3.3786971406
## PDE6D -3.3791691210
## PHF12 -3.3794496351
## CEP135 -3.3807568611
## ATF7 -3.3820028266
## RPN2 -3.3828607331
## LLGL1 -3.3838476842
## CCDC15 -3.3840000175
## AEBP1 -3.3843251838
## HK1 -3.3845222350
## CFAP97D1 -3.3866366316
## RSBN1L -3.3868325900
## YKT6 -3.3869570924
## NUDT2 -3.3881261856
## SLC46A2 -3.3887713510
## TSR1 -3.3897256983
## FUNDC2 -3.3898161688
## NCOA1 -3.3917072734
## MTG1 -3.3921602823
## SNRPD2 -3.3933474114
## G3BP1 -3.3964906313
## PRDM10 -3.3976167510
## MZT1 -3.3985020732
## TP53BP2 -3.4013001945
## RHOBTB3 -3.4015478459
## GALE -3.4015850726
## VKORC1L1 -3.4019644083
## GAPVD1 -3.4038967322
## VAMP3 -3.4043392628
## NDE1 -3.4052947140
## DPM2 -3.4068520431
## CCNK -3.4069336429
## PNN -3.4084910662
## ST3GAL4 -3.4089761575
## PRIMPOL -3.4099025593
## MAP1A -3.4100501876
## NEIL1 -3.4124538776
## KCTD10 -3.4128311148
## TJAP1 -3.4132244207
## CRYZ -3.4143675718
## KRT18 -3.4145748643
## MRPS10 -3.4149398761
## RGL4 -3.4157662188
## MECR -3.4166323854
## MLXIP -3.4169960017
## NAP1L1 -3.4178976285
## POMT1 -3.4227494540
## TTL -3.4233549514
## NBEAL2 -3.4233925115
## COG5 -3.4242545261
## SLC38A6 -3.4247639082
## LIG4 -3.4258399141
## RNASE1 -3.4263156923
## GANAB -3.4269820178
## CD44 -3.4271597135
## SLC35E3 -3.4282175369
## GOLGA7B -3.4287049515
## KRTCAP3 -3.4293782026
## WWP2 -3.4297627455
## TET3 -3.4300463850
## APOBEC3A_B -3.4314366516
## MED17 -3.4322737597
## PVRIG -3.4336387917
## ZNF844 -3.4337391774
## CENPX -3.4346495850
## MYORG -3.4361309802
## ELOVL3 -3.4361430319
## ICAM2 -3.4397289925
## HERC5 -3.4404111621
## CTDSPL -3.4410430699
## COX10 -3.4425914098
## RXRB -3.4428192268
## ZFP1 -3.4449260357
## ALPK3 -3.4474511415
## AK4 -3.4486385110
## STAU2 -3.4495841115
## CHAF1A -3.4497486721
## MAP3K13 -3.4501153297
## NPRL3 -3.4511283256
## RAE1 -3.4512347812
## RNF114 -3.4513560408
## ANKRD28 -3.4513765613
## UNC50 -3.4516224007
## ROMO1 -3.4519421025
## DHTKD1 -3.4520072741
## SERINC5 -3.4534629331
## ZEB2 -3.4544606061
## EMC8 -3.4558598928
## BCL2L11 -3.4559052839
## TIMM50 -3.4559076878
## ERO1B -3.4564917704
## ARHGDIB -3.4588497645
## CHD1 -3.4590418019
## SP3 -3.4591382897
## ARHGEF40 -3.4593136754
## NAF1 -3.4600162158
## RSAD2 -3.4635701122
## CUTA -3.4648605489
## CD40 -3.4649675052
## PSTPIP2 -3.4668295691
## MAST3 -3.4707156489
## CCNT2 -3.4712321957
## SEMA4A -3.4723657895
## SHISAL2A -3.4729023503
## MCC -3.4732316623
## TERF1 -3.4732945697
## KIF21A -3.4745583045
## ITPR1 -3.4770789389
## IFT81 -3.4779747783
## DYM -3.4784733276
## NF1 -3.4789148623
## COX8A -3.4799743587
## ZBTB26 -3.4807155868
## DDX51 -3.4813795487
## PIAS1 -3.4834167596
## SLC6A4 -3.4839330116
## ADGRE5 -3.4840869597
## KDM8 -3.4849322560
## TEC -3.4855217124
## RAD23A -3.4871581961
## POU2F2 -3.4871733145
## MALSU1 -3.4872824412
## SOCS3 -3.4883372078
## RBM15 -3.4900087611
## AHSA1 -3.4905039807
## PPIP5K1 -3.4907113408
## CCDC14 -3.4920920043
## NPC2 -3.4923586634
## BPI -3.4928443947
## ADPGK -3.4967119167
## COMMD3-BMI1 -3.4967502564
## ANKRD13A -3.4967975762
## TXLNB -3.4973923710
## NIN -3.4981219606
## ALOX5 -3.4991018376
## C21orf62 -3.5000669093
## LAMB3 -3.5003647111
## VAV1 -3.5012278906
## SLC35B4 -3.5013656802
## LRP3 -3.5022501203
## CASK -3.5037945643
## LRRC59 -3.5062157281
## RB1CC1 -3.5076021299
## GTPBP3 -3.5076567483
## KCNH3 -3.5077565034
## DGLUCY -3.5082544385
## ZNF431 -3.5102066625
## CTSB -3.5110284130
## POLG2 -3.5136461467
## ASB1 -3.5142374565
## LRRC8A -3.5152348833
## BMP8A -3.5160994127
## TRMT10A -3.5170123674
## MED29 -3.5170530990
## GNAS -3.5182129289
## RNF8 -3.5191352343
## MTHFS -3.5194840672
## ALDH2 -3.5207206928
## POU5F1 -3.5212068431
## PRR13 -3.5220612095
## MRPL12 -3.5224899317
## PCBP2 -3.5229629948
## TOMM40 -3.5230203961
## CLDND1 -3.5234940427
## MAPK1IP1L -3.5240472232
## EVL -3.5251039409
## PEX19 -3.5252620723
## NDUFA2 -3.5255923787
## SH3BGRL2 -3.5285060942
## IL1B -3.5290646316
## UBA2 -3.5295362960
## ABHD3 -3.5297048345
## THAP2 -3.5310072634
## PEPD -3.5320479183
## ZZZ3 -3.5335416058
## TBXAS1 -3.5337022162
## ARL17B -3.5357761366
## TECR -3.5359405494
## EIF5 -3.5381426938
## MRPS18A -3.5382942369
## ATP6V0B -3.5384422886
## BCL11A -3.5396199253
## TPH1 -3.5423223305
## PKN2 -3.5436470126
## VPS37A -3.5437846600
## SNX33 -3.5448386432
## FOXP3 -3.5460902468
## KHDRBS1 -3.5465549147
## PDPR -3.5468427833
## CHD7 -3.5473124263
## CDKN2AIP -3.5475110750
## NUP43 -3.5476724233
## TAPT1 -3.5483784342
## C8orf58 -3.5485801048
## B4GALNT2 -3.5491968325
## SCLY -3.5493586864
## CDC42EP4 -3.5495799439
## TRPC6 -3.5505845532
## LLGL2 -3.5513679411
## LTO1 -3.5525765639
## FGFRL1 -3.5535362518
## ARHGEF2 -3.5543220228
## ATRAID -3.5543624434
## MMACHC -3.5564628598
## POLK -3.5588192624
## TSPAN15 -3.5588340158
## CDK5RAP3 -3.5593719899
## NRG1 -3.5595945551
## ILKAP -3.5596825120
## TMEM170B -3.5597726098
## RPH3AL -3.5617582317
## SIGLEC10 -3.5643630812
## CRIP1 -3.5645378778
## GLMN -3.5646804396
## TTC33 -3.5648760284
## NUP58 -3.5664613016
## PIK3R3 -3.5677401178
## SCN9A -3.5689858755
## FCGR3B -3.5695819969
## OAF -3.5697095152
## IFI27L2 -3.5703728963
## ZNF441 -3.5704581892
## RGL2 -3.5705166043
## KIF3A -3.5710809170
## TSPAN33 -3.5719320461
## SMS -3.5721882505
## PLEKHA3 -3.5724239960
## CLEC5A -3.5733273252
## ATXN7L1 -3.5749111384
## GOLGA8H -3.5753009849
## TOX4 -3.5756566154
## MXD1 -3.5758835285
## GABPB1 -3.5764142769
## SLC35G1 -3.5773247460
## ZC3H15 -3.5778764253
## TIGD3 -3.5788361360
## AFAP1 -3.5795252856
## MTX3 -3.5796881517
## CELF2 -3.5809301439
## RLF -3.5814606201
## CHD6 -3.5824570812
## BIRC2 -3.5831242984
## MBD6 -3.5854169508
## RNF181 -3.5855398855
## DHRS12 -3.5857362681
## MIEN1 -3.5857960206
## USP18 -3.5875147929
## ALS2CL -3.5879995344
## MX1 -3.5880840573
## SEC11A -3.5890663503
## PDRG1 -3.5905768038
## RAP2A -3.5916181645
## PLEKHF1 -3.5917875418
## RPA2 -3.5923711985
## ZNF100 -3.5943872123
## BCORL1 -3.5949403793
## CCDC6 -3.5954482418
## NDUFAB1 -3.5954842804
## RARS1 -3.5960600076
## PURA -3.5973496972
## RPE -3.5984084381
## SERPINF1 -3.5984263494
## TRIM24 -3.6007943922
## UACA -3.6008092973
## KIAA0319 -3.6014139363
## ACTR1B -3.6016633965
## DDHD2 -3.6017212524
## CACNA2D4 -3.6025444456
## PET100 -3.6037111335
## ZNF223 -3.6046899963
## TBCC -3.6066496013
## PDCL -3.6074576886
## TBC1D1 -3.6092142465
## PTPRE -3.6103233667
## FAM210A -3.6108813806
## ZNF526 -3.6124964819
## HAUS8 -3.6130812755
## ARID1A -3.6138315547
## SMYD5 -3.6148890730
## AKR1B1 -3.6157022681
## SPCS3 -3.6172872978
## TYW1B -3.6174731128
## IGFBP2 -3.6178267956
## NOL7 -3.6178333255
## M1AP -3.6183769048
## WTIP -3.6185700072
## DYNLL1 -3.6211224241
## TRIO -3.6217371142
## GLYR1 -3.6224011183
## BRK1 -3.6239047110
## ZBTB32 -3.6243963428
## FAM156A -3.6249039383
## ZNF611 -3.6292561230
## MOCS3 -3.6305008830
## NT5C2 -3.6309724468
## PDE4DIP -3.6314481826
## C1orf131 -3.6316174775
## FBXO44 -3.6323606527
## TOX -3.6346450856
## MED23 -3.6351658834
## CWC15 -3.6365285172
## ZNF471 -3.6365925461
## TCEANC2 -3.6374378084
## RCOR1 -3.6389929537
## PAG1 -3.6390258286
## PDSS2 -3.6411271089
## GSTO2 -3.6411388422
## CRELD1 -3.6440706035
## C15orf40 -3.6443833206
## FAM86B1 -3.6447435271
## FCHSD2 -3.6448160539
## DAG1 -3.6458388191
## MGAT5 -3.6473693257
## CYB5D1 -3.6483867445
## ZNF518B -3.6487313258
## CAMLG -3.6495992578
## ITGA4 -3.6504908190
## COX7C -3.6515099643
## NBPF20 -3.6517437242
## EIF4G1 -3.6523865435
## NPIPA7 -3.6525120532
## WNT2B -3.6525350131
## STBD1 -3.6528542694
## FZD6 -3.6539947601
## PRPF19 -3.6547640144
## MPI -3.6549969036
## C2orf42 -3.6550306233
## SMURF1 -3.6573468983
## TMEM60 -3.6596051101
## ARPC5 -3.6596728278
## LANCL1 -3.6601339211
## TFEC -3.6605523095
## ADGRE1 -3.6607603476
## VKORC1 -3.6614435864
## PRKCE -3.6624149768
## RBSN -3.6625303687
## CYB5D2 -3.6659305037
## MYBBP1A -3.6660140997
## KIAA2013 -3.6665826820
## AP1G2 -3.6671996064
## CRY1 -3.6685490651
## NUP214 -3.6686855686
## SEC11C -3.6692952917
## MCOLN1 -3.6706098922
## LRIG2 -3.6729445351
## FAM200B -3.6744678585
## SMIM5 -3.6745073635
## PLCL2 -3.6756109971
## ZNF720 -3.6777023211
## SUPT5H -3.6777716891
## ACBD7 -3.6794994889
## SMARCC2 -3.6795045504
## PBXIP1 -3.6796582815
## ACAD11 -3.6816311109
## CENPM -3.6838819723
## RAD9A -3.6841158858
## CCDC82 -3.6846648953
## OBSCN -3.6847975219
## LITAF -3.6849172984
## LAMTOR5 -3.6865992494
## STX16 -3.6870854651
## LMBR1 -3.6876923615
## ZFAND5 -3.6888266089
## SERINC2 -3.6890664389
## B4GAT1 -3.6913626992
## TLCD4 -3.6931840087
## CSNK1G3 -3.6931902496
## OS9 -3.6940639317
## TAF9 -3.6943796100
## EXT2 -3.6945548537
## TREX1 -3.6947410506
## SIPA1L2 -3.6956220578
## MYL12B -3.6963920519
## SCAMP1 -3.6971305599
## ABHD12 -3.6980700284
## MRPL14 -3.6988841568
## SRSF10 -3.6993936901
## CSNK1A1 -3.7001499732
## PIK3CB -3.7013038520
## CHMP5 -3.7014762244
## TMEM208 -3.7017308738
## TMEM243 -3.7021767458
## JTB -3.7036334031
## KDM4C -3.7043108773
## CDK11A -3.7050434664
## MED20 -3.7062278620
## DTX1 -3.7064282329
## PLXNA1 -3.7072263527
## MOSMO -3.7090699417
## TMEM35B -3.7094864763
## FBXO8 -3.7096352849
## CPLANE2 -3.7100246990
## LAMTOR4 -3.7109732240
## AEBP2 -3.7112699788
## SHLD2 -3.7114294975
## SCMH1 -3.7121032727
## WDR1 -3.7127669964
## RBM44 -3.7129098910
## PSMD7 -3.7131048532
## EHHADH -3.7142502791
## ARNTL -3.7145975733
## IL27RA -3.7148827642
## ZNF606 -3.7154329643
## PYCR3 -3.7156967484
## LRRC3 -3.7161202284
## SLC22A1 -3.7165040210
## PEX11B -3.7169943183
## SIRT3 -3.7174377180
## TAF13 -3.7180319535
## VRK2 -3.7181450948
## XKR8 -3.7186449111
## SOX12 -3.7198396708
## PDE6B -3.7202972521
## LGMN -3.7217367191
## KLHL8 -3.7228751505
## ME2 -3.7231490558
## SMARCA4 -3.7232972695
## MTG2 -3.7239505261
## USP39 -3.7242539738
## SET -3.7259919976
## GARS1 -3.7259929170
topTable(efit_COVID, coef = "COVIDyes", adjust.method = "fdr", p.value = 0.05, n = Inf, sort.by = "logFC")## logFC AveExpr t P.Value adj.P.Val
## S100A9 -1.055411e+04 2.237284e+04 -2.567381 1.142823e-02 2.912609e-02
## HBA2 -4.627381e+03 2.670516e+03 -5.072714 1.385177e-06 3.487942e-05
## ACTB -4.416516e+03 7.242785e+03 -6.023213 1.782930e-08 1.639190e-06
## FTL -4.187909e+03 6.897358e+03 -5.544648 1.679337e-07 7.572980e-06
## IFITM2 -2.848844e+03 5.357986e+03 -3.659910 3.710775e-04 1.980639e-03
## RNA28SN1 -2.740657e+03 2.785014e+03 -5.705683 7.982667e-08 4.733722e-06
## RNA28SN4 -2.351735e+03 1.437686e+03 -7.147384 6.556764e-11 4.860201e-08
## EEF1A1 -2.146417e+03 8.071037e+03 -3.468840 7.182910e-04 3.236676e-03
## FCGR3B 2.140546e+03 6.069773e+03 2.383893 1.863926e-02 4.307319e-02
## HBA1 -2.103973e+03 1.667291e+03 -3.847665 1.893569e-04 1.225359e-03
## FTH1 -2.088952e+03 5.797449e+03 -2.976022 3.508472e-03 1.118261e-02
## RNA18SN2 -1.765594e+03 1.965368e+03 -7.031177 1.192568e-10 6.429025e-08
## RNA18SN3 -1.765594e+03 1.965368e+03 -7.031177 1.192568e-10 6.429025e-08
## RNA18SN4 -1.765594e+03 1.965368e+03 -7.031177 1.192568e-10 6.429025e-08
## IGKC 1.623365e+03 1.619772e+03 3.495529 6.559694e-04 3.028337e-03
## CSF3R -1.407459e+03 3.345071e+03 -3.448611 7.691937e-04 3.407949e-03
## RNA28SN3 -1.359905e+03 2.155951e+03 -3.419190 8.493045e-04 3.700496e-03
## IGHG1 1.357278e+03 1.138835e+03 3.623890 4.210739e-04 2.177905e-03
## TPT1 -1.269153e+03 2.890233e+03 -4.639201 8.710136e-06 1.324387e-04
## MYL6 -1.230692e+03 2.073412e+03 -3.705438 3.158948e-04 1.767223e-03
## RPL13A -1.187928e+03 1.394651e+03 -4.425858 2.072432e-05 2.435981e-04
## UBC -1.004961e+03 3.852682e+03 -3.018494 3.081272e-03 1.008942e-02
## RPS11 -9.251632e+02 1.485880e+03 -4.568457 1.164413e-05 1.602146e-04
## RPS27 -9.217908e+02 1.484866e+03 -3.574438 5.001551e-04 2.481407e-03
## GAPDH -9.177228e+02 2.151126e+03 -2.903668 4.363714e-03 1.332140e-02
## LAPTM5 -8.730081e+02 2.310992e+03 -4.662022 7.926699e-06 1.240246e-04
## RPS3A -8.729908e+02 1.531365e+03 -3.791143 2.324341e-04 1.417694e-03
## JCHAIN 7.949634e+02 6.739732e+02 4.416598 2.150604e-05 2.488495e-04
## TMSB10 -7.837947e+02 1.540732e+03 -3.461448 7.365138e-04 3.295003e-03
## EEF1G -7.785628e+02 1.192537e+03 -4.801262 4.432384e-06 7.964860e-05
## SERPINA1 -7.613046e+02 2.286524e+03 -3.161619 1.970276e-03 7.113455e-03
## RPL10 -7.579797e+02 1.452109e+03 -4.115723 6.966200e-05 5.838808e-04
## COTL1 -7.538105e+02 1.129329e+03 -7.261266 3.635094e-11 3.316324e-08
## CD74 -7.358764e+02 1.048920e+03 -4.689592 7.070857e-06 1.139407e-04
## RPL3 -7.336713e+02 1.152295e+03 -4.360146 2.692324e-05 2.934831e-04
## RPL11 -7.000160e+02 1.135183e+03 -4.208627 4.874406e-05 4.516442e-04
## S100A11 -6.650553e+02 1.988458e+03 -2.743699 6.971811e-03 1.947837e-02
## VSIR -6.627353e+02 1.318588e+03 -4.227321 4.533566e-05 4.294576e-04
## RPL13 -6.574678e+02 6.604025e+02 -4.173049 5.592171e-05 4.999994e-04
## JAML -6.474979e+02 1.197389e+03 -4.824445 4.019375e-06 7.471754e-05
## RPL9 -6.469231e+02 1.129985e+03 -3.813673 2.142523e-04 1.340914e-03
## PSAP -6.411406e+02 2.632804e+03 -4.735117 5.849786e-06 9.799218e-05
## RPS6 -6.178566e+02 1.194081e+03 -4.689865 7.062868e-06 1.139407e-04
## RPL8 -6.113283e+02 6.032670e+02 -5.033593 1.641842e-06 3.951510e-05
## FLOT2 -6.027036e+02 9.928826e+02 -4.237652 4.355161e-05 4.192549e-04
## OAZ1 -6.026428e+02 1.263818e+03 -3.833674 1.992511e-04 1.271861e-03
## RPLP0 -6.009989e+02 1.012390e+03 -4.000703 1.075879e-04 8.022393e-04
## IFIT3 5.914019e+02 7.003602e+02 2.662585 8.777160e-03 2.343522e-02
## RPL27A -5.670836e+02 6.994942e+02 -4.583231 1.096166e-05 1.551376e-04
## RPS2 -5.644451e+02 6.653893e+02 -5.127224 1.091626e-06 2.902673e-05
## RPL21 -5.630054e+02 1.023501e+03 -4.051312 8.895069e-05 7.023670e-04
## CORO1A -5.621241e+02 9.710792e+02 -4.678707 7.397488e-06 1.171351e-04
## RPS3 -5.536141e+02 1.090454e+03 -4.230348 4.480578e-05 4.269319e-04
## TUBA1A -5.404777e+02 8.119862e+02 -5.687649 8.680930e-08 4.997856e-06
## ACTG1 -5.399432e+02 1.362670e+03 -4.273289 3.789995e-05 3.758306e-04
## ZYX -5.319777e+02 7.049949e+02 -5.565376 1.527021e-07 7.102147e-06
## FCN1 -5.270869e+02 1.185167e+03 -3.932298 1.387750e-04 9.715885e-04
## RPL19 -5.098200e+02 7.975828e+02 -5.142476 1.020981e-06 2.770901e-05
## GABARAP -5.056838e+02 1.144464e+03 -3.957248 1.265143e-04 9.049818e-04
## VIM -5.014333e+02 1.523395e+03 -3.521812 5.995957e-04 2.833800e-03
## RPS9 -5.010002e+02 7.184505e+02 -4.884447 3.116260e-06 6.201149e-05
## IFIT2 4.952128e+02 6.826143e+02 2.691663 8.086292e-03 2.193583e-02
## SH3BGRL3 -4.880365e+02 8.286535e+02 -4.873985 3.258113e-06 6.429487e-05
## ALPL -4.859620e+02 7.099232e+02 -3.617937 4.299261e-04 2.212114e-03
## ARHGDIB -4.811769e+02 2.203179e+03 -2.433439 1.637451e-02 3.879912e-02
## RPL7 -4.798489e+02 1.020900e+03 -3.928665 1.406516e-04 9.806750e-04
## RPS14 -4.755412e+02 7.788518e+02 -4.381686 2.471700e-05 2.752945e-04
## RPS18 -4.568995e+02 1.000275e+03 -3.920589 1.449114e-04 9.996763e-04
## RPL4 -4.567957e+02 1.106526e+03 -4.220505 4.655107e-05 4.379971e-04
## RPS4X -4.566615e+02 8.255936e+02 -4.491172 1.593799e-05 2.006630e-04
## IFIT1 4.520018e+02 4.701501e+02 2.532195 1.257729e-02 3.148969e-02
## RPL32 -4.507449e+02 7.569707e+02 -4.014564 1.021426e-04 7.760482e-04
## RPS20 -4.504922e+02 6.199251e+02 -4.118975 6.880282e-05 5.791352e-04
## ALDOA -4.492800e+02 6.776759e+02 -5.662907 9.737122e-08 5.321764e-06
## RPS8 -4.465821e+02 7.798878e+02 -4.156696 5.955080e-05 5.227776e-04
## CLIC1 -4.415874e+02 1.415129e+03 -3.177073 1.875746e-03 6.861920e-03
## CYTH4 -4.388167e+02 6.955792e+02 -5.710629 7.801011e-08 4.696446e-06
## LILRA5 -4.374655e+02 6.052065e+02 -3.606746 4.470463e-04 2.278457e-03
## RPSA -4.328294e+02 9.156639e+02 -3.012005 3.143277e-03 1.026129e-02
## HCLS1 -4.308708e+02 1.384445e+03 -2.987368 3.389306e-03 1.086343e-02
## RPS12 -4.281500e+02 7.046718e+02 -3.188931 1.806091e-03 6.662595e-03
## PFN1 -4.252034e+02 9.599760e+02 -4.019971 1.000906e-04 7.655296e-04
## LITAF -4.225954e+02 1.695519e+03 -2.331272 2.134424e-02 4.801645e-02
## RPL41 -4.135319e+02 1.413507e+03 -2.932314 4.004492e-03 1.242954e-02
## MMP25 -4.100175e+02 8.946589e+02 -3.334888 1.124366e-03 4.595098e-03
## ICAM3 -4.052528e+02 6.793966e+02 -5.224815 7.100393e-07 2.153725e-05
## RPS27A -4.043311e+02 8.250003e+02 -3.847716 1.893220e-04 1.225359e-03
## RPL6 -3.992426e+02 8.469566e+02 -4.638579 8.732492e-06 1.324391e-04
## RPS19 -3.977664e+02 4.883219e+02 -3.482435 6.858804e-04 3.129873e-03
## ARRB2 -3.951387e+02 1.097418e+03 -3.516094 6.114560e-04 2.878868e-03
## TRIM22 3.946764e+02 6.802649e+02 3.370219 1.000242e-03 4.196960e-03
## TYROBP -3.912923e+02 6.529630e+02 -4.808395 4.301114e-06 7.811824e-05
## RPL18A -3.905724e+02 3.745194e+02 -4.313032 3.242856e-05 3.335669e-04
## RPS23 -3.857431e+02 7.103642e+02 -4.083016 7.889310e-05 6.435159e-04
## IFI30 -3.817221e+02 8.837136e+02 -3.933575 1.381208e-04 9.692976e-04
## TALDO1 -3.731416e+02 7.690418e+02 -4.323082 3.117023e-05 3.245389e-04
## UBA52 -3.715446e+02 7.891039e+02 -3.791650 2.320094e-04 1.416177e-03
## RPL12 -3.706398e+02 5.833387e+02 -4.436556 1.985513e-05 2.353151e-04
## RPS10 -3.688721e+02 5.866406e+02 -3.937614 1.360709e-04 9.566100e-04
## RPL39 -3.626980e+02 6.796865e+02 -3.274104 1.372214e-03 5.365794e-03
## LSP1 -3.612833e+02 6.114417e+02 -6.166517 8.943777e-09 1.010221e-06
## RPLP1 -3.592901e+02 3.387761e+02 -4.227632 4.528109e-05 4.292835e-04
## HCK -3.559470e+02 7.718585e+02 -4.497397 1.554202e-05 1.978774e-04
## RPS15A -3.503164e+02 7.551598e+02 -3.559821 5.260910e-04 2.574026e-03
## RPL26 -3.493382e+02 6.829367e+02 -4.225606 4.563864e-05 4.309508e-04
## RACK1 -3.490109e+02 6.840549e+02 -5.018240 1.754734e-06 4.145646e-05
## RPL7A -3.479145e+02 9.370175e+02 -4.069822 8.293898e-05 6.677911e-04
## GPSM3 -3.455055e+02 7.229320e+02 -4.208754 4.872002e-05 4.516442e-04
## MXD1 3.409405e+02 1.244850e+03 2.381046 1.877748e-02 4.328492e-02
## MCEMP1 -3.349052e+02 4.061669e+02 -3.096606 2.418457e-03 8.386813e-03
## SELPLG -3.338458e+02 9.494910e+02 -3.084092 2.514890e-03 8.642885e-03
## RPS24 -3.330503e+02 7.285410e+02 -3.666501 3.625603e-04 1.943926e-03
## ENO1 -3.309831e+02 6.216098e+02 -4.737081 5.801997e-06 9.760522e-05
## RPL37A -3.250429e+02 5.893191e+02 -3.448596 7.692309e-04 3.407949e-03
## LRRK2 3.244830e+02 7.133897e+02 3.149219 2.049299e-03 7.349468e-03
## AIF1 -3.236865e+02 4.725196e+02 -7.566778 7.346232e-12 1.244662e-08
## CFL1 -3.224803e+02 9.282552e+02 -3.726777 2.927953e-04 1.666292e-03
## CST7 -3.211980e+02 4.633194e+02 -3.089937 2.469412e-03 8.521161e-03
## RPL17 -3.191826e+02 7.536195e+02 -3.845126 1.911173e-04 1.235232e-03
## SMCHD1 3.151983e+02 7.308843e+02 3.758395 2.614935e-04 1.537587e-03
## RPLP2 -3.149869e+02 2.782993e+02 -3.678524 3.474968e-04 1.890510e-03
## FKBP8 -3.136539e+02 3.546305e+02 -4.892318 3.013525e-06 6.099046e-05
## RPL23A -3.130425e+02 5.566685e+02 -3.931791 1.390354e-04 9.716912e-04
## MSRB1 -3.065653e+02 7.424339e+02 -3.058500 2.723296e-03 9.175650e-03
## RPL30 -3.046104e+02 7.576033e+02 -3.696043 3.266040e-04 1.810904e-03
## RPS16 -3.021340e+02 3.986775e+02 -3.939024 1.353626e-04 9.538919e-04
## SERF2 -3.019517e+02 4.475110e+02 -4.503019 1.519261e-05 1.945836e-04
## RPS17 -3.005247e+02 5.248163e+02 -3.901223 1.556330e-04 1.056558e-03
## S100A6 -2.997230e+02 1.118226e+03 -2.478511 1.453035e-02 3.525945e-02
## TXNDC5 2.995249e+02 2.778705e+02 3.693446 3.296236e-04 1.820836e-03
## TKT -2.968755e+02 7.439736e+02 -4.108385 7.163833e-05 5.979104e-04
## MYO1F -2.894530e+02 8.823565e+02 -3.928413 1.407828e-04 9.810129e-04
## FCGR3A 2.887342e+02 9.488448e+02 2.639830 9.354524e-03 2.469278e-02
## MMP9 -2.882377e+02 3.462148e+02 -2.502182 1.363804e-02 3.352968e-02
## EEF1D -2.857540e+02 2.657495e+02 -5.520415 1.876313e-07 8.303384e-06
## ADAR 2.838353e+02 7.163728e+02 3.954968 1.275902e-04 9.108486e-04
## RPL28 -2.828882e+02 3.684683e+02 -3.539766 5.637441e-04 2.704695e-03
## ABTB1 -2.809775e+02 5.332241e+02 -3.418607 8.509673e-04 3.706380e-03
## ADGRG3 -2.768907e+02 4.771069e+02 -3.460322 7.393266e-04 3.301926e-03
## RSAD2 2.730261e+02 2.769457e+02 2.431346 1.646501e-02 3.897706e-02
## PFDN5 -2.726877e+02 4.489034e+02 -4.496581 1.559341e-05 1.980063e-04
## MME 2.725015e+02 4.623207e+02 3.786654 2.362274e-04 1.431545e-03
## RPL15 -2.663745e+02 6.730490e+02 -4.390254 2.388869e-05 2.693154e-04
## RHOG -2.659925e+02 5.131822e+02 -3.772411 2.486570e-04 1.484183e-03
## RPL37 -2.646421e+02 7.505007e+02 -3.104842 2.356867e-03 8.223727e-03
## RESF1 2.633676e+02 7.096737e+02 2.548898 1.201952e-02 3.034947e-02
## RPL27 -2.623525e+02 5.364111e+02 -4.058162 8.667890e-05 6.917979e-04
## RPL23 -2.608425e+02 6.485856e+02 -3.576828 4.960299e-04 2.465597e-03
## NCF1 -2.597055e+02 8.546713e+02 -2.919589 4.160568e-03 1.281338e-02
## RNF213 2.584441e+02 4.557329e+02 3.776737 2.448178e-04 1.470146e-03
## LIMD2 -2.553577e+02 3.674818e+02 -5.559754 1.566947e-07 7.232642e-06
## CNN2 -2.533713e+02 5.810240e+02 -4.443735 1.929175e-05 2.298631e-04
## FAU -2.529266e+02 3.203537e+02 -4.486280 1.625597e-05 2.037863e-04
## SPI1 -2.528621e+02 4.114436e+02 -4.477828 1.681980e-05 2.088826e-04
## HK3 -2.523822e+02 3.791184e+02 -4.153625 6.025717e-05 5.254897e-04
## LILRB3 -2.509676e+02 4.729252e+02 -4.509278 1.481250e-05 1.911603e-04
## CD52 -2.480024e+02 4.501647e+02 -3.063894 2.678088e-03 9.067122e-03
## NCF4 -2.478161e+02 5.687098e+02 -3.733800 2.855503e-04 1.634805e-03
## ITGB2 -2.452058e+02 8.217875e+02 -3.881145 1.675440e-04 1.120108e-03
## FLOT1 -2.449576e+02 5.915143e+02 -2.901379 4.393663e-03 1.339903e-02
## HLA-DRB1 -2.441480e+02 3.976591e+02 -3.641964 3.952402e-04 2.076894e-03
## TAP1 2.391817e+02 5.968937e+02 2.701097 7.872988e-03 2.147508e-02
## NFAM1 -2.385965e+02 6.159283e+02 -4.317384 3.187777e-05 3.296167e-04
## RPL5 -2.372974e+02 6.126065e+02 -3.891306 1.614112e-04 1.088929e-03
## RPL18 -2.344015e+02 3.225091e+02 -3.923352 1.434407e-04 9.930989e-04
## MEGF9 2.336350e+02 6.226543e+02 2.709881 7.678950e-03 2.103288e-02
## SLC11A1 -2.318660e+02 4.879473e+02 -3.227066 1.598064e-03 6.032157e-03
## HSP90B1 2.315883e+02 4.310104e+02 3.590626 4.728410e-04 2.381272e-03
## EFHD2 -2.315758e+02 4.131762e+02 -6.244987 6.109537e-09 7.875990e-07
## TNFRSF1B -2.314604e+02 6.979230e+02 -5.196773 8.038343e-07 2.336636e-05
## RPS5 -2.298279e+02 3.041199e+02 -4.168272 5.695920e-05 5.063989e-04
## ARAP1 -2.267104e+02 5.173862e+02 -4.469147 1.741855e-05 2.138771e-04
## RPS7 -2.266406e+02 5.779519e+02 -3.957829 1.262413e-04 9.035740e-04
## VASP -2.264187e+02 8.106965e+02 -2.988045 3.382317e-03 1.085637e-02
## STAT1 2.263026e+02 4.288975e+02 3.384750 9.530146e-04 4.038140e-03
## RPL36A -2.251945e+02 3.750905e+02 -3.585918 4.806360e-04 2.409274e-03
## OAS3 2.236413e+02 2.316988e+02 2.713845 7.592833e-03 2.085962e-02
## IFI44L 2.220630e+02 2.146960e+02 2.705316 7.779235e-03 2.126826e-02
## OAS2 2.208339e+02 2.480898e+02 2.817452 5.630607e-03 1.637142e-02
## LST1 -2.168959e+02 3.942650e+02 -3.567567 5.121926e-04 2.519537e-03
## RPL35 -2.157745e+02 2.659602e+02 -4.136546 6.433384e-05 5.520979e-04
## ARPC3 -2.146433e+02 8.826408e+02 -2.843642 5.214117e-03 1.538392e-02
## GNAI2 -2.143387e+02 6.991300e+02 -4.815747 4.169763e-06 7.673370e-05
## ANXA11 -2.134079e+02 5.232896e+02 -4.121963 6.802252e-05 5.746755e-04
## GNB2 -2.109958e+02 2.760143e+02 -5.624638 1.162323e-07 5.927895e-06
## MBOAT7 -2.059560e+02 3.280778e+02 -4.927319 2.595103e-06 5.466771e-05
## RPL34 -2.059011e+02 4.798503e+02 -2.762578 6.603309e-03 1.863318e-02
## RPS25 -2.048400e+02 4.875764e+02 -3.760080 2.599175e-04 1.534406e-03
## RPL31 -2.033095e+02 5.798508e+02 -3.179183 1.863172e-03 6.830369e-03
## MVP -1.996165e+02 3.117979e+02 -5.715734 7.617708e-08 4.655175e-06
## MX1 1.989812e+02 2.609680e+02 2.375523 1.904811e-02 4.376416e-02
## OAS1 1.960653e+02 2.445976e+02 2.846336 5.172921e-03 1.528803e-02
## RPL29 -1.952305e+02 4.046779e+02 -3.934376 1.377121e-04 9.675742e-04
## ADGRE5 -1.951948e+02 7.254363e+02 -2.422228 1.686440e-02 3.976376e-02
## NFE2 -1.939715e+02 5.156431e+02 -2.769313 6.476193e-03 1.838823e-02
## ARPC4 -1.923635e+02 5.025762e+02 -3.880390 1.680079e-04 1.121429e-03
## PGGHG -1.914419e+02 2.902349e+02 -4.283322 3.644050e-05 3.644050e-04
## CYBA -1.913609e+02 2.018822e+02 -5.855928 3.948055e-08 3.037412e-06
## CST3 -1.891180e+02 2.747407e+02 -3.387756 9.435094e-04 4.009323e-03
## IFI44 1.883531e+02 2.112690e+02 2.769638 6.470123e-03 1.838135e-02
## DGAT2 -1.880363e+02 4.032274e+02 -3.193411 1.780408e-03 6.594516e-03
## CTSD -1.870756e+02 4.440580e+02 -2.612810 1.008450e-02 2.624582e-02
## PARP9 1.867855e+02 3.519181e+02 3.467971 7.204102e-04 3.242529e-03
## CNPY3 -1.864796e+02 3.547225e+02 -5.232650 6.857995e-07 2.090895e-05
## MOB3A -1.858233e+02 4.839249e+02 -3.714518 3.058630e-04 1.721659e-03
## FLNA -1.857546e+02 4.771500e+02 -4.086296 7.791705e-05 6.373078e-04
## R3HDM4 -1.850354e+02 4.578008e+02 -3.644420 3.918478e-04 2.067311e-03
## GRN -1.837249e+02 5.313598e+02 -2.567066 1.143811e-02 2.914199e-02
## CYSTM1 -1.833462e+02 1.942429e+02 -3.362214 1.027184e-03 4.283544e-03
## RPL24 -1.829808e+02 3.951215e+02 -4.091705 7.633268e-05 6.269429e-04
## COX4I1 -1.798185e+02 3.397489e+02 -4.377589 2.512279e-05 2.789853e-04
## ARPC5 -1.797973e+02 8.170247e+02 -2.342881 2.071935e-02 4.686850e-02
## TNFRSF10C -1.797639e+02 4.380031e+02 -3.759069 2.608617e-04 1.537587e-03
## RPL10A -1.779739e+02 3.855645e+02 -3.829392 2.023765e-04 1.282888e-03
## FCGRT -1.759900e+02 2.520064e+02 -5.678917 9.040211e-08 5.081370e-06
## FXYD5 -1.756734e+02 1.842737e+02 -5.605742 1.268212e-07 6.241074e-06
## PXN -1.748908e+02 5.532081e+02 -3.747597 2.718082e-04 1.577126e-03
## CD48 -1.731792e+02 4.285098e+02 -5.481832 2.237472e-07 9.324948e-06
## KLF6 1.716155e+02 5.865033e+02 2.716957 7.525831e-03 2.072266e-02
## TMEM123 1.714965e+02 3.200924e+02 3.143407 2.087343e-03 7.463337e-03
## EPSTI1 1.708001e+02 1.882055e+02 4.020146 1.000247e-04 7.655296e-04
## ATP6V0D1 -1.665558e+02 3.232266e+02 -5.248395 6.395058e-07 1.985481e-05
## TYMP -1.657611e+02 1.938283e+02 -4.427944 2.055196e-05 2.420518e-04
## ARPC1B -1.652885e+02 3.803105e+02 -4.405976 2.243781e-05 2.568653e-04
## IL4R -1.642894e+02 4.042782e+02 -3.411128 8.725859e-04 3.781099e-03
## PARP14 1.640744e+02 2.498047e+02 3.431444 8.150291e-04 3.580091e-03
## TPI1 -1.626014e+02 3.607991e+02 -4.590012 1.066157e-05 1.527128e-04
## SAMD9L 1.624020e+02 2.506602e+02 3.034538 2.932790e-03 9.721323e-03
## RPL14 -1.615374e+02 4.359828e+02 -3.324125 1.164954e-03 4.723539e-03
## XAF1 1.602310e+02 1.972448e+02 2.894497 4.484822e-03 1.361054e-02
## PPT1 -1.595339e+02 5.965717e+02 -2.580930 1.101156e-02 2.824331e-02
## ADAM8 -1.583780e+02 3.010802e+02 -4.878092 3.201689e-06 6.360240e-05
## RPL38 -1.582787e+02 2.303508e+02 -4.054517 8.788070e-05 6.981012e-04
## IFI27 1.570882e+02 1.304780e+02 2.779246 6.292787e-03 1.795344e-02
## JUNB -1.547350e+02 1.695710e+02 -5.191706 8.220234e-07 2.354195e-05
## LILRA2 -1.545140e+02 4.083333e+02 -3.922145 1.440813e-04 9.958064e-04
## NACA -1.540624e+02 4.856995e+02 -5.182707 8.553217e-07 2.409529e-05
## TCIRG1 -1.536112e+02 2.462051e+02 -4.472851 1.716062e-05 2.117846e-04
## BTN3A1 1.531090e+02 2.566035e+02 4.640114 8.677380e-06 1.322799e-04
## APOBR -1.512141e+02 3.566010e+02 -3.873957 1.720148e-04 1.137811e-03
## RPL35A -1.511237e+02 3.597403e+02 -3.427361 8.263017e-04 3.618812e-03
## RPS15 -1.507536e+02 1.712884e+02 -3.513151 6.176469e-04 2.898810e-03
## IGSF6 -1.505348e+02 4.148170e+02 -3.158083 1.992519e-03 7.180574e-03
## RPS29 -1.499165e+02 3.203185e+02 -2.979992 3.466339e-03 1.106616e-02
## TIMP1 -1.493890e+02 2.282849e+02 -3.407450 8.834056e-04 3.817411e-03
## RPS28 -1.489976e+02 1.339300e+02 -3.070582 2.622991e-03 8.926448e-03
## CD44 -1.486698e+02 5.128918e+02 -2.447451 1.578007e-02 3.767143e-02
## STXBP2 -1.485427e+02 2.493379e+02 -4.958274 2.272512e-06 4.963534e-05
## STK17B 1.473249e+02 4.969193e+02 2.579081 1.106761e-02 2.836254e-02
## LRG1 -1.472144e+02 2.910852e+02 -2.661736 8.798104e-03 2.347481e-02
## RPS6KA1 -1.470333e+02 4.504943e+02 -3.464837 7.281054e-04 3.268192e-03
## IMPDH1 -1.468623e+02 2.316221e+02 -6.280438 5.139308e-09 7.033194e-07
## OASL 1.459873e+02 1.697173e+02 3.280431 1.344217e-03 5.280694e-03
## RPL22 -1.449259e+02 2.970501e+02 -4.122065 6.799593e-05 5.746755e-04
## CSK -1.448668e+02 2.366198e+02 -6.706690 6.204697e-10 1.794822e-07
## EEF2 -1.425343e+02 3.273209e+02 -5.033023 1.645907e-06 3.951510e-05
## PTAFR -1.420336e+02 5.063361e+02 -3.240245 1.531519e-03 5.825469e-03
## ATG16L2 -1.416164e+02 3.370351e+02 -4.624328 9.260475e-06 1.378033e-04
## CTSZ -1.412274e+02 4.423528e+02 -5.149600 9.895283e-07 2.725484e-05
## CAPZB -1.406434e+02 4.180101e+02 -4.838891 3.781158e-06 7.163664e-05
## CTDSP1 -1.406174e+02 2.903284e+02 -4.924604 2.625427e-06 5.501337e-05
## CEBPB -1.402706e+02 2.601786e+02 -3.974866 1.184869e-04 8.647721e-04
## LILRB2 -1.399386e+02 2.983491e+02 -5.747038 6.582712e-08 4.220052e-06
## PABPC1 -1.399233e+02 6.655593e+02 -4.002602 1.068261e-04 7.978319e-04
## EEF1B2 -1.390444e+02 3.136372e+02 -3.883240 1.662612e-04 1.113415e-03
## ALOX5 -1.387113e+02 5.187100e+02 -2.415535 1.716299e-02 4.032352e-02
## FGD3 -1.384846e+02 2.872203e+02 -5.270022 5.808524e-07 1.827297e-05
## CFP -1.380864e+02 1.664709e+02 -5.761692 6.146853e-08 4.050093e-06
## PTPN6 -1.368766e+02 5.268262e+02 -3.784099 2.384135e-04 1.440440e-03
## TSPO -1.359584e+02 1.217790e+02 -4.695766 6.891843e-06 1.121224e-04
## ATP5F1E -1.358299e+02 4.871762e+02 -2.576423 1.114863e-02 2.853934e-02
## B4GALT5 1.355415e+02 3.283939e+02 2.977020 3.497834e-03 1.115470e-02
## RAC2 -1.352542e+02 6.394770e+02 -2.529562 1.266730e-02 3.164825e-02
## RPS26 -1.346801e+02 2.203303e+02 -3.171182 1.911272e-03 6.949016e-03
## MAN2A2 1.339373e+02 3.448806e+02 2.677447 8.417658e-03 2.265337e-02
## TMEM154 1.308978e+02 4.303347e+02 2.722974 7.397795e-03 2.046602e-02
## SLC16A3 -1.306397e+02 1.816934e+02 -4.927903 2.588619e-06 5.462816e-05
## HLA-DPB1 -1.299728e+02 1.731408e+02 -4.280721 3.681353e-05 3.675155e-04
## GPX1 -1.292382e+02 2.005700e+02 -3.577925 4.941483e-04 2.459718e-03
## SECTM1 -1.275898e+02 2.043904e+02 -4.115730 6.966024e-05 5.838808e-04
## SPARC 1.273496e+02 2.452228e+02 3.107733 2.335596e-03 8.157063e-03
## SLC25A6 -1.272837e+02 1.450113e+02 -5.780514 5.628362e-08 3.858519e-06
## SHKBP1 -1.268605e+02 3.166935e+02 -2.923166 4.116146e-03 1.270627e-02
## C19orf38 -1.263749e+02 1.659232e+02 -6.221948 6.834540e-09 8.532384e-07
## LRRC25 -1.260779e+02 2.524165e+02 -6.032973 1.701529e-08 1.627430e-06
## APOL6 1.258004e+02 1.887671e+02 3.165313 1.947284e-03 7.045389e-03
## HSPA1A -1.255024e+02 1.697230e+02 -5.479736 2.258918e-07 9.367400e-06
## DDX60L 1.244952e+02 3.287047e+02 2.521203 1.295688e-02 3.218865e-02
## CSGALNACT2 1.242768e+02 2.362771e+02 2.501852 1.365016e-02 3.355252e-02
## HLA-DPA1 -1.237074e+02 2.059903e+02 -4.096236 7.502920e-05 6.179488e-04
## CAPNS1 -1.228500e+02 2.459115e+02 -5.199074 7.957010e-07 2.318677e-05
## UCP2 -1.228326e+02 1.718684e+02 -5.338795 4.271265e-07 1.468325e-05
## CTSB -1.221735e+02 5.858071e+02 -2.410208 1.740406e-02 4.078485e-02
## CD14 -1.220878e+02 1.982496e+02 -4.203110 4.979612e-05 4.574402e-04
## EGLN2 -1.217990e+02 1.603529e+02 -5.426683 2.874187e-07 1.103167e-05
## CYBC1 -1.188685e+02 1.942781e+02 -5.001406 1.887201e-06 4.361215e-05
## PECAM1 -1.183437e+02 5.697328e+02 -2.813225 5.700602e-03 1.653439e-02
## LYST 1.175697e+02 3.138105e+02 3.277319 1.357920e-03 5.318668e-03
## LTB -1.170965e+02 1.145366e+02 -4.593765 1.049886e-05 1.509290e-04
## THEMIS2 -1.163380e+02 3.447426e+02 -4.102250 7.333195e-05 6.077686e-04
## GRK6 -1.163172e+02 2.211526e+02 -5.146680 1.002302e-06 2.739009e-05
## DBNL -1.161713e+02 2.778256e+02 -5.350420 4.054073e-07 1.414156e-05
## NUCB1 -1.160390e+02 1.311204e+02 -5.927199 2.817714e-08 2.336929e-06
## TAPBP -1.158274e+02 2.464338e+02 -4.830204 3.922724e-06 7.349685e-05
## ARHGAP30 -1.157399e+02 8.068845e+02 -2.723985 7.376490e-03 2.041661e-02
## ARHGAP4 -1.150623e+02 1.336422e+02 -6.027816 1.744074e-08 1.627736e-06
## PRR13 -1.147216e+02 5.289671e+02 -2.405269 1.763017e-02 4.121699e-02
## CLEC7A 1.145860e+02 3.088035e+02 3.875258 1.711973e-04 1.134936e-03
## PPM1M -1.141908e+02 2.218853e+02 -4.456438 1.833229e-05 2.210862e-04
## CYP4F3 1.134943e+02 2.319367e+02 3.724133 2.955690e-04 1.679659e-03
## PLP2 -1.124246e+02 3.173592e+02 -2.607414 1.023631e-02 2.657522e-02
## NBEAL2 -1.123044e+02 4.667544e+02 -2.449112 1.571090e-02 3.755165e-02
## FERMT3 -1.121546e+02 2.103145e+02 -4.293707 3.498679e-05 3.531432e-04
## PSMB3 -1.116538e+02 2.138546e+02 -4.306581 3.326188e-05 3.397260e-04
## SOCS3 -1.115655e+02 2.589499e+02 -2.420335 1.694837e-02 3.991416e-02
## TLE5 -1.113613e+02 1.823832e+02 -3.326855 1.154533e-03 4.695732e-03
## MYL12B -1.113387e+02 5.420822e+02 -2.325977 2.163470e-02 4.854096e-02
## EIF4A1 -1.112519e+02 4.049447e+02 -4.131005 6.571223e-05 5.606813e-04
## RPL36 -1.096966e+02 1.128532e+02 -3.739886 2.794089e-04 1.609417e-03
## CHMP2A -1.086893e+02 2.089416e+02 -4.870613 3.305148e-06 6.477402e-05
## CAPG -1.085632e+02 1.862372e+02 -3.734334 2.850063e-04 1.633724e-03
## RPS21 -1.084760e+02 1.582505e+02 -3.323624 1.166878e-03 4.728125e-03
## ARHGAP45 -1.057195e+02 2.357847e+02 -3.783164 2.392174e-04 1.444176e-03
## NOP53 -1.057081e+02 9.809079e+01 -4.962501 2.231605e-06 4.919486e-05
## GNAS 1.056368e+02 6.489505e+02 2.406993 1.755096e-02 4.107229e-02
## PLEKHO2 -1.046876e+02 3.508440e+02 -3.095248 2.428754e-03 8.415138e-03
## SEPTIN9 -1.045177e+02 1.770292e+02 -5.190136 8.277396e-07 2.354195e-05
## SAMD9 1.040670e+02 1.715035e+02 3.310845 1.216922e-03 4.894097e-03
## CDKN2D -1.040403e+02 2.568970e+02 -3.023739 3.031983e-03 9.966553e-03
## SLC38A2 1.034688e+02 2.550631e+02 3.090665 2.463800e-03 8.509221e-03
## STAT2 1.032634e+02 2.076732e+02 2.822689 5.544975e-03 1.615808e-02
## SLC44A2 -1.023325e+02 4.998173e+02 -2.688506 8.158839e-03 2.209220e-02
## WAS -1.021417e+02 2.968501e+02 -3.818378 2.106298e-04 1.322429e-03
## RNASEK -1.020025e+02 1.489011e+02 -5.209576 7.596004e-07 2.246599e-05
## RNPEPL1 -1.008510e+02 1.060256e+02 -5.652072 1.023835e-07 5.469679e-06
## DDX17 1.001935e+02 5.416477e+02 3.125008 2.212151e-03 7.810690e-03
## TBC1D10C -9.933761e+01 1.237966e+02 -5.202366 7.842093e-07 2.293171e-05
## NINJ1 -9.917005e+01 2.246074e+02 -3.232816 1.568707e-03 5.940251e-03
## DOCK8 9.905161e+01 3.126439e+02 3.356268 1.047637e-03 4.350482e-03
## GRINA -9.886098e+01 2.191972e+02 -2.640427 9.338945e-03 2.466263e-02
## CD24 9.866857e+01 1.206098e+02 2.489325 1.411643e-02 3.448421e-02
## LGALS1 -9.822799e+01 1.560579e+02 -3.738866 2.804299e-04 1.612948e-03
## COX6B1 -9.738939e+01 2.210346e+02 -3.587586 4.778611e-04 2.400748e-03
## HERC5 9.716892e+01 1.214148e+02 2.441601 1.602589e-02 3.815076e-02
## SIPA1 -9.705955e+01 1.324994e+02 -6.630060 9.115298e-10 2.162149e-07
## STK10 -9.617172e+01 3.211683e+02 -5.379341 3.559453e-07 1.278665e-05
## ZC3H11A 9.559034e+01 2.547754e+02 3.985428 1.139099e-04 8.380714e-04
## S1PR4 -9.542286e+01 8.645349e+01 -4.956550 2.289400e-06 4.982070e-05
## PLEKHO1 -9.512740e+01 1.823990e+02 -3.783074 2.392952e-04 1.444176e-03
## SLC12A9 -9.503634e+01 1.006486e+02 -8.092907 4.449926e-13 1.759204e-09
## PELATON -9.451366e+01 1.215682e+02 -5.659266 9.902825e-08 5.355835e-06
## KLF2 -9.384581e+01 2.064148e+02 -3.676775 3.496507e-04 1.896748e-03
## ARF5 -9.363464e+01 1.345374e+02 -5.720001 7.467788e-08 4.589014e-06
## TNFRSF1A -9.363000e+01 3.181100e+02 -2.837549 5.308416e-03 1.561748e-02
## CCDC88B -9.350420e+01 1.197151e+02 -5.033422 1.643063e-06 3.951510e-05
## PKN1 -9.323278e+01 1.353741e+02 -5.242961 6.551266e-07 2.019393e-05
## F13A1 9.311826e+01 2.145782e+02 3.061761 2.695876e-03 9.109142e-03
## ATP6V0B -9.311163e+01 3.709345e+02 -2.397920 1.797149e-02 4.184175e-02
## ITGB1 9.300135e+01 2.508506e+02 4.646946 8.436184e-06 1.292676e-04
## PPP1CA -9.281177e+01 2.112399e+02 -4.574842 1.134430e-05 1.584728e-04
## C1orf162 -9.251414e+01 2.135242e+02 -3.204253 1.719652e-03 6.413546e-03
## CIRBP -9.226270e+01 2.013316e+02 -4.993439 1.953228e-06 4.472063e-05
## ACAP1 -9.205917e+01 1.814443e+02 -4.574260 1.137130e-05 1.586631e-04
## PCNX1 9.116588e+01 2.675124e+02 2.496954 1.383079e-02 3.394878e-02
## BACH1 9.012924e+01 3.123030e+02 2.609070 1.018951e-02 2.648425e-02
## CD164 8.992131e+01 3.924765e+02 2.629811 9.619442e-03 2.526835e-02
## PRELID1 -8.981990e+01 2.591440e+02 -3.815944 2.124963e-04 1.332737e-03
## TAGAP 8.954181e+01 2.715670e+02 2.710391 7.667825e-03 2.100725e-02
## FES -8.945093e+01 1.466250e+02 -4.456149 1.835364e-05 2.210862e-04
## ARHGEF1 -8.843648e+01 1.995232e+02 -5.378770 3.568619e-07 1.278665e-05
## DTX3L 8.760819e+01 1.784870e+02 3.553104 5.384287e-04 2.612833e-03
## EIF2AK2 8.713217e+01 1.460407e+02 3.230897 1.578445e-03 5.963796e-03
## FAM8A1 8.701219e+01 2.186716e+02 3.605925 4.483267e-04 2.284001e-03
## RPS13 -8.664772e+01 3.360920e+02 -2.737728 7.092196e-03 1.973105e-02
## NBPF14 8.546894e+01 1.938345e+02 3.827311 2.039115e-04 1.289808e-03
## AGTRAP -8.502254e+01 1.879971e+02 -2.907624 4.312409e-03 1.319535e-02
## CD37 -8.445797e+01 1.999032e+02 -6.088067 1.306088e-08 1.383054e-06
## TWF2 -8.428935e+01 1.005644e+02 -7.327147 2.580083e-11 3.059979e-08
## TOMM7 -8.413431e+01 1.460260e+02 -3.858524 1.820022e-04 1.190593e-03
## TGFB1 -8.364296e+01 2.032272e+02 -4.087157 7.766263e-05 6.361041e-04
## JPT1 -8.351518e+01 1.543234e+02 -4.751668 5.458649e-06 9.368969e-05
## PRDX5 -8.333956e+01 1.977528e+02 -2.837889 5.303108e-03 1.561054e-02
## CELF2 8.308864e+01 3.380498e+02 2.378763 1.888894e-02 4.348269e-02
## ELF1 8.294162e+01 1.895308e+02 3.964183 1.232942e-04 8.867609e-04
## PARP8 8.285057e+01 2.770455e+02 2.766793 6.523495e-03 1.845626e-02
## ACAA1 -8.267789e+01 1.934182e+02 -5.037267 1.615894e-06 3.919121e-05
## LGALS9 -8.239376e+01 1.996380e+02 -2.831539 5.402956e-03 1.582981e-02
## LAMTOR4 -8.210451e+01 1.927988e+02 -2.319233 2.200970e-02 4.919619e-02
## PPP4C -8.206248e+01 1.614571e+02 -4.052597 8.852001e-05 7.001172e-04
## PPM1F -8.180606e+01 1.712101e+02 -4.682889 7.270316e-06 1.158951e-04
## CD68 -8.176823e+01 2.689111e+02 -3.360604 1.032685e-03 4.303460e-03
## RAB1B -8.156464e+01 2.190219e+02 -4.334284 2.982294e-05 3.157096e-04
## RAF1 8.132253e+01 3.638603e+02 2.706099 7.761965e-03 2.123084e-02
## CAT -8.131221e+01 2.294727e+02 -2.799060 5.940997e-03 1.709370e-02
## RASGRP4 -8.125191e+01 2.604875e+02 -3.436611 8.009700e-04 3.531414e-03
## STK4 8.101175e+01 2.956413e+02 3.206970 1.704732e-03 6.381335e-03
## NOTCH2 8.096553e+01 2.724189e+02 2.575510 1.117658e-02 2.858357e-02
## DDX60 8.035218e+01 9.344242e+01 3.147102 2.063085e-03 7.385508e-03
## EHD1 -7.976642e+01 1.832896e+02 -4.615848 9.589145e-06 1.411008e-04
## BSG -7.969042e+01 1.354238e+02 -3.674742 3.521701e-04 1.903709e-03
## CMPK2 7.966926e+01 8.260055e+01 2.811672 5.726512e-03 1.659518e-02
## DDX58 7.941297e+01 1.574548e+02 2.756119 6.727340e-03 1.893361e-02
## CD82 -7.940592e+01 1.359257e+02 -3.913331 1.488447e-04 1.020994e-03
## CREBRF 7.923700e+01 1.868625e+02 3.096686 2.417851e-03 8.386813e-03
## GSTK1 -7.874155e+01 2.186417e+02 -4.592156 1.056831e-05 1.517435e-04
## EIF3K -7.847702e+01 1.420417e+02 -4.292096 3.520854e-05 3.544765e-04
## RGS14 -7.845208e+01 1.545188e+02 -4.466137 1.763093e-05 2.156310e-04
## AMPD2 -7.819186e+01 1.416329e+02 -4.154921 5.995811e-05 5.245381e-04
## EMP3 -7.784490e+01 1.863266e+02 -3.630100 4.120226e-04 2.141362e-03
## PRKCB 7.784455e+01 3.776651e+02 2.639384 9.366171e-03 2.470703e-02
## ZNFX1 7.768744e+01 1.987261e+02 3.853203 1.855713e-04 1.206520e-03
## MGAT1 -7.751387e+01 2.801515e+02 -3.183966 1.834962e-03 6.748107e-03
## MICAL1 -7.743616e+01 2.019733e+02 -3.635465 4.043514e-04 2.109814e-03
## NBPF19 7.723578e+01 1.276146e+02 3.619474 4.276244e-04 2.202182e-03
## ATP2A3 -7.709331e+01 2.092872e+02 -3.476597 6.996248e-04 3.171846e-03
## SLC9A3R1 -7.695778e+01 1.637925e+02 -4.933784 2.524254e-06 5.374803e-05
## NIN 7.680674e+01 2.998832e+02 2.415973 1.714334e-02 4.028533e-02
## EHBP1L1 -7.668734e+01 2.309080e+02 -4.884595 3.114306e-06 6.201149e-05
## SUN2 -7.598045e+01 2.153823e+02 -5.577673 1.443140e-07 6.819144e-06
## PSTPIP1 -7.589183e+01 1.156801e+02 -5.387071 3.437565e-07 1.246774e-05
## PTMA -7.582060e+01 4.247802e+02 -2.704088 7.806419e-03 2.133460e-02
## SETX 7.575580e+01 1.878250e+02 4.851919 3.578120e-06 6.855654e-05
## LAMTOR1 -7.525470e+01 2.472719e+02 -2.983831 3.426047e-03 1.095818e-02
## C15orf39 -7.498826e+01 1.381994e+02 -5.332791 4.387846e-07 1.493482e-05
## OS9 -7.493362e+01 4.900790e+02 -2.327052 2.157544e-02 4.845383e-02
## BTN3A2 7.470000e+01 2.241474e+02 3.756259 2.635034e-04 1.543968e-03
## GRK2 -7.426101e+01 3.422874e+02 -3.321905 1.173494e-03 4.751669e-03
## RXRA -7.386569e+01 1.622886e+02 -5.658567 9.934939e-08 5.355835e-06
## WAC 7.368941e+01 2.422765e+02 3.477619 6.972003e-04 3.163273e-03
## RNF167 -7.330406e+01 1.992480e+02 -4.725728 6.083610e-06 1.004897e-04
## ADD3 7.305815e+01 2.493372e+02 2.741069 7.024609e-03 1.959357e-02
## CTSC -7.189480e+01 1.944628e+02 -3.101502 2.381664e-03 8.285741e-03
## SMG1 7.184438e+01 1.639072e+02 4.425082 2.078869e-05 2.439007e-04
## USP32 7.179714e+01 2.223904e+02 2.711676 7.639846e-03 2.095192e-02
## MAP2K3 -7.178343e+01 1.944811e+02 -3.422666 8.394456e-04 3.666971e-03
## BPI 7.159594e+01 8.152870e+01 2.418327 1.703790e-02 4.007724e-02
## BCAP31 -7.141722e+01 1.461989e+02 -4.858375 3.481471e-06 6.713862e-05
## GSTP1 -7.127316e+01 8.592448e+01 -4.572692 1.144440e-05 1.587493e-04
## ANXA2 -7.099347e+01 3.756854e+02 -2.560013 1.166075e-02 2.959481e-02
## VAMP8 -7.076420e+01 1.398074e+02 -3.839418 1.951310e-04 1.254338e-03
## BLOC1S1 -7.032260e+01 1.778309e+02 -2.541213 1.227333e-02 3.086550e-02
## EDF1 -7.016006e+01 9.163668e+01 -4.010361 1.037655e-04 7.833599e-04
## RPL36AL -6.986753e+01 2.487973e+02 -3.261551 1.429378e-03 5.532774e-03
## PSMD4 -6.949247e+01 2.292773e+02 -4.138308 6.390117e-05 5.499767e-04
## SP100 6.918461e+01 2.643511e+02 2.563101 1.156279e-02 2.942173e-02
## CRIP1 -6.875791e+01 8.135996e+01 -2.386170 1.852938e-02 4.287013e-02
## ARL6IP4 -6.837412e+01 8.013245e+01 -5.353586 3.996817e-07 1.398296e-05
## XBP1 6.823065e+01 1.621142e+02 2.903074 4.371473e-03 1.334142e-02
## TRIR -6.818525e+01 1.294770e+02 -3.830405 2.016325e-04 1.280858e-03
## MAP3K2 6.800600e+01 2.218011e+02 2.543859 1.218538e-02 3.068505e-02
## NBPF10 6.771747e+01 1.138213e+02 4.204111 4.960363e-05 4.560721e-04
## SASH3 -6.771697e+01 3.505792e+02 -2.758057 6.689911e-03 1.885064e-02
## WASHC1 -6.742393e+01 1.276131e+02 -4.197517 5.088474e-05 4.645828e-04
## ARHGAP27 -6.716770e+01 2.879656e+02 -3.109331 2.323910e-03 8.125462e-03
## PCBP2 -6.714522e+01 4.539405e+02 -2.404865 1.764878e-02 4.123890e-02
## ARHGEF40 -6.694607e+01 1.780522e+02 -2.433233 1.638339e-02 3.879931e-02
## OGA 6.681501e+01 2.992402e+02 2.830854 5.413827e-03 1.585383e-02
## WDR26 6.643694e+01 2.800902e+02 2.482037 1.439422e-02 3.499701e-02
## SNN 6.638427e+01 2.542842e+02 2.968109 3.593852e-03 1.141550e-02
## TP53INP1 6.621873e+01 1.800324e+02 3.247300 1.496970e-03 5.725269e-03
## TGFBI -6.618281e+01 1.059929e+02 -4.931714 2.546730e-06 5.412413e-05
## MED13L 6.606559e+01 1.527720e+02 3.300488 1.258948e-03 5.019754e-03
## RGL4 -6.550448e+01 1.091921e+02 -2.452471 1.557182e-02 3.726429e-02
## PBXIP1 -6.549004e+01 2.398842e+02 -2.333694 2.121247e-02 4.777439e-02
## RPH3A 6.513188e+01 6.782958e+01 3.957965 1.261776e-04 9.035740e-04
## LPAR2 -6.475904e+01 1.384895e+02 -3.758118 2.617527e-04 1.537587e-03
## OGT 6.461978e+01 2.333961e+02 3.719210 3.007974e-04 1.697980e-03
## HECA 6.461067e+01 2.105327e+02 3.275592 1.365580e-03 5.345143e-03
## TSC22D4 -6.453348e+01 1.116143e+02 -5.111140 1.171277e-06 3.059768e-05
## NARF -6.416227e+01 1.496072e+02 -3.534321 5.743978e-04 2.742495e-03
## QSOX1 -6.412736e+01 1.285050e+02 -3.455211 7.522240e-04 3.347608e-03
## CSF1R -6.407443e+01 9.314737e+01 -4.807758 4.312689e-06 7.820871e-05
## TAP2 6.368916e+01 1.655187e+02 2.882411 4.649135e-03 1.398750e-02
## YBX1 -6.360199e+01 2.855851e+02 -3.573170 5.023567e-04 2.488701e-03
## UBALD2 -6.355811e+01 1.670303e+02 -2.722759 7.402345e-03 2.047384e-02
## HMOX1 -6.350148e+01 7.744090e+01 -5.568122 1.507888e-07 7.040769e-06
## PTPN12 6.344199e+01 2.119369e+02 2.830116 5.425566e-03 1.588036e-02
## UBR2 6.333398e+01 1.951267e+02 3.235525 1.555049e-03 5.895846e-03
## ERP29 -6.319170e+01 1.449785e+02 -4.397588 2.320098e-05 2.638194e-04
## ACAP2 6.291797e+01 2.308484e+02 2.527025 1.275455e-02 3.181261e-02
## COLGALT1 -6.244117e+01 1.124530e+02 -6.272740 5.336174e-09 7.191707e-07
## CD300LF -6.240351e+01 1.197838e+02 -5.102823 1.214657e-06 3.140772e-05
## CHD2 6.200124e+01 1.699545e+02 3.886632 1.642050e-04 1.104009e-03
## SLC43A2 -6.180080e+01 1.304071e+02 -5.809907 4.903238e-08 3.503157e-06
## TACC3 -6.179143e+01 1.445115e+02 -4.643445 8.558958e-06 1.306425e-04
## ITGB3 6.154225e+01 1.344838e+02 2.613018 1.007872e-02 2.623653e-02
## CEACAM8 6.137918e+01 6.231524e+01 2.633208 9.528879e-03 2.507148e-02
## OSCAR -6.125023e+01 1.194916e+02 -3.671172 3.566354e-04 1.919971e-03
## UBN1 6.119814e+01 2.279030e+02 3.075468 2.583413e-03 8.822136e-03
## ELOB -6.105466e+01 5.956803e+01 -4.776919 4.910274e-06 8.602046e-05
## SYNGR2 -6.091035e+01 8.737147e+01 -6.917805 2.129648e-10 9.714471e-08
## DEF6 -6.066499e+01 1.396421e+02 -4.976558 2.100647e-06 4.711460e-05
## CEBPA -6.062752e+01 7.814298e+01 -6.526476 1.528388e-09 3.069950e-07
## SEMA4A -6.059117e+01 2.184932e+02 -2.427441 1.663502e-02 3.933241e-02
## PSMB4 -6.033523e+01 1.868292e+02 -3.840608 1.942875e-04 1.249593e-03
## ZFAND5 6.033476e+01 2.388022e+02 2.329469 2.144274e-02 4.820146e-02
## TNFRSF14 -5.996334e+01 8.717731e+01 -5.254430 6.225800e-07 1.943105e-05
## SYK -5.990680e+01 3.257982e+02 -2.623774 9.782323e-03 2.561677e-02
## GSN -5.978124e+01 1.754722e+02 -2.755020 6.748658e-03 1.897560e-02
## SLFN5 5.977609e+01 8.678247e+01 3.138595 2.119341e-03 7.554968e-03
## LRCH4 -5.964585e+01 1.139145e+02 -5.319572 4.655567e-07 1.559746e-05
## VNN3 5.955848e+01 1.254469e+02 3.261028 1.431809e-03 5.538569e-03
## PPP2R1A -5.938187e+01 1.109987e+02 -4.855440 3.525084e-06 6.775931e-05
## PSTPIP2 5.937846e+01 1.418600e+02 2.429899 1.652781e-02 3.910229e-02
## UBXN1 -5.936937e+01 8.588660e+01 -5.402131 3.211698e-07 1.186627e-05
## SLC15A3 -5.923220e+01 6.881456e+01 -7.998129 7.405414e-13 2.195705e-09
## TFEB -5.878368e+01 9.473989e+01 -4.584684 1.089668e-05 1.547719e-04
## RALY -5.846200e+01 1.311957e+02 -4.475620 1.697020e-05 2.100904e-04
## DOK2 -5.836907e+01 7.500722e+01 -4.811567 4.243960e-06 7.755747e-05
## EIF3G -5.825078e+01 7.738905e+01 -5.315327 4.744891e-07 1.577923e-05
## DICER1 5.808124e+01 1.614229e+02 2.568427 1.139557e-02 2.906482e-02
## FAM214B -5.781150e+01 1.511736e+02 -3.846082 1.904528e-04 1.231609e-03
## IFIT5 5.772589e+01 8.400345e+01 3.041655 2.869067e-03 9.544887e-03
## SLC7A7 -5.761244e+01 1.638978e+02 -4.416955 2.147537e-05 2.488495e-04
## EIF3F -5.759996e+01 1.320393e+02 -4.769260 5.070696e-06 8.843890e-05
## RICTOR 5.758490e+01 1.414603e+02 3.300712 1.258027e-03 5.018569e-03
## AKAP13 5.720263e+01 2.290312e+02 2.653345 9.007600e-03 2.393148e-02
## POLD4 -5.719753e+01 8.465221e+01 -4.786731 4.711923e-06 8.330320e-05
## LILRA3 -5.717718e+01 8.682558e+01 -3.510564 6.231375e-04 2.917651e-03
## PAPOLA 5.699570e+01 2.530105e+02 3.088493 2.480575e-03 8.548905e-03
## IFIH1 5.681801e+01 7.607794e+01 2.991305 3.348835e-03 1.076638e-02
## UQCRB -5.657972e+01 1.766402e+02 -3.249874 1.484542e-03 5.685686e-03
## UNC13D -5.653687e+01 1.432537e+02 -4.025358 9.808537e-05 7.539161e-04
## CHMP5 5.648692e+01 1.664297e+02 2.323627 2.176470e-02 4.876805e-02
## EPB41 5.646410e+01 1.634100e+02 4.107275 7.194197e-05 5.991796e-04
## ANKRD13A 5.644621e+01 2.569890e+02 2.416564 1.711682e-02 4.023894e-02
## SP3 5.641755e+01 2.218778e+02 2.433311 1.638003e-02 3.879912e-02
## QKI 5.555024e+01 2.115372e+02 2.477550 1.456767e-02 3.533182e-02
## KIAA0930 -5.545376e+01 1.297134e+02 -4.594340 1.047414e-05 1.507661e-04
## PSMB10 -5.540965e+01 6.302457e+01 -4.645622 8.482442e-06 1.296414e-04
## MAP3K1 5.525091e+01 1.591445e+02 3.509372 6.256824e-04 2.922644e-03
## PYCARD -5.502662e+01 7.104117e+01 -5.433053 2.792439e-07 1.091002e-05
## PAG1 5.496817e+01 1.555030e+02 2.352338 2.022235e-02 4.596341e-02
## KLF3 5.487070e+01 1.861907e+02 2.956182 3.726166e-03 1.176893e-02
## NDUFA13 -5.482893e+01 7.325513e+01 -3.682554 3.425816e-04 1.872359e-03
## TRAFD1 5.476530e+01 1.844486e+02 2.681441 8.323331e-03 2.247383e-02
## EIF3D -5.413262e+01 1.697161e+02 -5.776052 5.747253e-08 3.894996e-06
## NBN 5.402861e+01 1.330333e+02 2.823001 5.539907e-03 1.614728e-02
## CD4 -5.384606e+01 1.056741e+02 -3.744719 2.746216e-04 1.591115e-03
## APOBEC3A_B 5.382494e+01 1.202150e+02 2.445564 1.585898e-02 3.781414e-02
## NEK7 5.380865e+01 1.417374e+02 2.906314 4.329335e-03 1.323348e-02
## GYPC -5.376195e+01 8.305970e+01 -3.193069 1.782357e-03 6.599674e-03
## TNFAIP8L2 -5.366415e+01 1.078734e+02 -5.735864 6.935261e-08 4.351968e-06
## NT5C3A 5.353637e+01 1.339374e+02 2.651486 9.054621e-03 2.402412e-02
## PRRG4 5.342365e+01 7.128888e+01 3.704628 3.168056e-04 1.770561e-03
## HDAC7 -5.341649e+01 1.545089e+02 -4.233543 4.425300e-05 4.236001e-04
## SKP1 -5.335248e+01 1.994948e+02 -4.000626 1.076191e-04 8.022393e-04
## NEDD8 -5.325460e+01 1.413112e+02 -4.010504 1.037097e-04 7.833599e-04
## MAN2B1 -5.319673e+01 9.714994e+01 -5.430884 2.820010e-07 1.093240e-05
## TLE3 -5.314742e+01 1.980045e+02 -2.790674 6.087645e-03 1.746480e-02
## BTF3 -5.314498e+01 2.373983e+02 -4.015650 1.017272e-04 7.738839e-04
## TRANK1 5.298462e+01 1.464117e+02 3.065912 2.661353e-03 9.023340e-03
## STK40 -5.279312e+01 1.975066e+02 -3.500595 6.447285e-04 2.988074e-03
## PDLIM7 -5.276811e+01 9.641261e+01 -4.081042 7.948604e-05 6.474618e-04
## TBXAS1 -5.273675e+01 2.171022e+02 -2.400049 1.787203e-02 4.165107e-02
## HADHA -5.269269e+01 1.995597e+02 -5.536497 1.743227e-07 7.801764e-06
## MYO9B -5.256463e+01 1.816536e+02 -4.323555 3.111214e-05 3.245181e-04
## XRN1 5.245608e+01 9.117972e+01 3.754848 2.648402e-04 1.547293e-03
## DMXL2 5.236157e+01 1.334923e+02 3.494635 6.579713e-04 3.033313e-03
## G6PD -5.235573e+01 1.197778e+02 -4.226013 4.556655e-05 4.306581e-04
## CYLD 5.228189e+01 1.725038e+02 4.221145 4.643568e-05 4.377485e-04
## RBL2 5.204807e+01 1.712824e+02 2.955641 3.732273e-03 1.178508e-02
## WDR1 -5.202025e+01 3.990696e+02 -2.318402 2.205629e-02 4.926223e-02
## MAPKAPK3 -5.195215e+01 1.593994e+02 -4.816089 4.163746e-06 7.673370e-05
## KIAA1109 5.192080e+01 1.164281e+02 3.946840 1.314975e-04 9.333096e-04
## STX10 -5.189749e+01 1.517715e+02 -3.473395 7.072755e-04 3.199194e-03
## TADA3 -5.185536e+01 1.381441e+02 -3.789892 2.334851e-04 1.422257e-03
## LPIN2 5.170992e+01 1.283581e+02 3.385416 9.509032e-04 4.032074e-03
## ARHGDIA -5.166008e+01 7.885851e+01 -4.876417 3.224581e-06 6.384563e-05
## FBL -5.145727e+01 7.987545e+01 -4.154859 5.997248e-05 5.245381e-04
## ACADVL -5.140843e+01 1.710647e+02 -4.228162 4.518785e-05 4.289856e-04
## CORO7 -5.140445e+01 6.196403e+01 -5.481893 2.236844e-07 9.324948e-06
## ZCCHC2 5.132204e+01 6.420986e+01 4.230951 4.470091e-05 4.265615e-04
## ERBIN 5.131714e+01 1.783405e+02 2.837284 5.312560e-03 1.561898e-02
## BAZ2A 5.131444e+01 1.888915e+02 3.315512 1.198418e-03 4.838154e-03
## MEFV 5.124804e+01 2.121622e+02 2.482487 1.437694e-02 3.496216e-02
## ABCA1 5.115620e+01 9.167669e+01 3.584332 4.832901e-04 2.420532e-03
## APAF1 5.107216e+01 1.655364e+02 2.876140 4.736546e-03 1.420006e-02
## WLS 5.092050e+01 8.562399e+01 3.419503 8.484119e-04 3.699376e-03
## TUBB1 5.072575e+01 9.688470e+01 3.271275 1.384908e-03 5.404742e-03
## MDM2 5.066875e+01 1.458468e+02 2.517387 1.309105e-02 3.244529e-02
## ATP5MC2 -5.064397e+01 1.550039e+02 -3.903401 1.543904e-04 1.052339e-03
## RAD21 5.062688e+01 2.241692e+02 2.821599 5.562687e-03 1.620174e-02
## EIF3L -5.058518e+01 2.008918e+02 -3.236477 1.550277e-03 5.879848e-03
## SON 5.057977e+01 2.002074e+02 3.593927 4.674472e-04 2.362486e-03
## SH3BP2 -5.051598e+01 2.169452e+02 -3.578802 4.926484e-04 2.453931e-03
## SSR2 -5.039150e+01 3.097936e+02 -2.754709 6.754709e-03 1.898563e-02
## PLCB2 -5.039035e+01 2.934669e+02 -2.898195 4.435624e-03 1.349923e-02
## TP53I11 -5.028784e+01 8.715598e+01 -4.826288 3.988188e-06 7.425418e-05
## BOD1L1 5.023022e+01 1.387488e+02 2.917857 4.182249e-03 1.286345e-02
## PARVG -5.003978e+01 1.533990e+02 -5.510436 1.963844e-07 8.562939e-06
## LMAN2 -4.985705e+01 1.254091e+02 -3.988152 1.127570e-04 8.316530e-04
## RASGRP2 -4.957966e+01 1.684985e+02 -4.363838 2.653210e-05 2.902866e-04
## PLEC -4.944514e+01 6.690541e+01 -7.033476 1.178580e-10 6.429025e-08
## MAP3K11 -4.930691e+01 8.308636e+01 -4.898666 2.933055e-06 5.976981e-05
## NAP1L1 -4.929369e+01 2.810142e+02 -2.451532 1.561056e-02 3.733440e-02
## H2BC4 4.921950e+01 1.102399e+02 2.902993 4.372523e-03 1.334142e-02
## LFNG -4.920904e+01 6.125100e+01 -4.123107 6.772584e-05 5.741447e-04
## TRIM38 4.887547e+01 1.433815e+02 2.780173 6.275926e-03 1.791827e-02
## WASHC4 4.883156e+01 1.371519e+02 3.307388 1.230803e-03 4.934916e-03
## PTPRE 4.858318e+01 2.166827e+02 2.365427 1.955183e-02 4.470496e-02
## MYO1G -4.856297e+01 9.704217e+01 -4.922412 2.650158e-06 5.533604e-05
## CHMP4B -4.840091e+01 1.371259e+02 -4.639404 8.702820e-06 1.324387e-04
## IL1B -4.829344e+01 1.220984e+02 -2.402130 1.777527e-02 4.147446e-02
## SYNE1 4.826019e+01 1.224060e+02 3.078854 2.556309e-03 8.752258e-03
## CTSH -4.799392e+01 1.260717e+02 -3.646188 3.894229e-04 2.059097e-03
## UBA1 -4.788885e+01 1.873462e+02 -4.392605 2.366620e-05 2.675702e-04
## SPG11 4.786048e+01 1.212577e+02 4.335693 2.965753e-05 3.146138e-04
## TRAPPC1 -4.785545e+01 1.334744e+02 -3.692462 3.307750e-04 1.824647e-03
## PNPLA6 -4.778818e+01 6.076791e+01 -5.001050 1.890105e-06 4.361215e-05
## TENT5C 4.776982e+01 6.198452e+01 4.137582 6.407924e-05 5.511093e-04
## GUK1 -4.775540e+01 6.148328e+01 -4.409707 2.210623e-05 2.542966e-04
## RGS19 -4.701744e+01 1.154492e+02 -3.836543 1.971828e-04 1.262055e-03
## NT5C2 4.672657e+01 2.124893e+02 2.356017 2.003185e-02 4.561784e-02
## MLF2 -4.666605e+01 1.443005e+02 -3.572583 5.033775e-04 2.489599e-03
## PPP1R9B -4.637310e+01 1.324204e+02 -6.471380 2.008994e-09 3.782011e-07
## CCM2 -4.627502e+01 1.243615e+02 -4.041289 9.237736e-05 7.222119e-04
## NUP214 -4.625784e+01 1.911196e+02 -2.338742 2.094025e-02 4.726001e-02
## GSTO1 -4.625515e+01 1.312624e+02 -2.799136 5.939691e-03 1.709370e-02
## POR -4.604475e+01 6.314590e+01 -4.137376 6.412979e-05 5.511444e-04
## C5AR2 -4.599432e+01 1.259894e+02 -3.874394 1.717399e-04 1.136627e-03
## CD3E -4.585505e+01 9.747340e+01 -2.632297 9.553103e-03 2.512469e-02
## COPE -4.584188e+01 7.238238e+01 -4.541471 1.299802e-05 1.733665e-04
## TSEN34 -4.570774e+01 1.151767e+02 -3.805104 2.210021e-04 1.368713e-03
## SLC25A3 -4.561971e+01 1.959651e+02 -3.547547 5.488434e-04 2.650115e-03
## ARHGAP15 -4.547173e+01 1.275339e+02 -3.565979 5.150128e-04 2.529214e-03
## GBP4 4.542268e+01 7.451168e+01 2.646258 9.188048e-03 2.430744e-02
## UBXN11 -4.535009e+01 5.223788e+01 -5.389374 3.402045e-07 1.237677e-05
## VPS28 -4.524785e+01 7.076920e+01 -3.904632 1.536924e-04 1.048184e-03
## PTGS1 4.511154e+01 1.412529e+02 2.764449 6.567765e-03 1.855937e-02
## SNRK 4.480390e+01 1.634270e+02 2.890098 4.543993e-03 1.376194e-02
## RIN3 -4.468593e+01 1.458163e+02 -2.956757 3.719687e-03 1.175473e-02
## HLA-DQB1 -4.450901e+01 8.499740e+01 -3.102743 2.372424e-03 8.263422e-03
## CAPN2 4.446129e+01 1.490575e+02 3.877577 1.697493e-04 1.127717e-03
## TMEM120A -4.437768e+01 7.230839e+01 -4.253403 4.096035e-05 3.988422e-04
## STAT5A -4.435036e+01 1.592304e+02 -3.643225 3.934954e-04 2.071396e-03
## SIGLEC10 -4.430194e+01 1.200481e+02 -2.386249 1.852558e-02 4.287013e-02
## AP2M1 -4.422211e+01 2.064488e+02 -3.190084 1.799452e-03 6.644304e-03
## PSMD13 -4.406010e+01 1.625850e+02 -3.800570 2.246546e-04 1.384825e-03
## PRKAR2B 4.394556e+01 9.233238e+01 3.232670 1.569445e-03 5.940972e-03
## BRD2 4.394000e+01 2.390096e+02 3.745350 2.740026e-04 1.588304e-03
## DEF8 -4.391456e+01 1.550802e+02 -3.877762 1.696339e-04 1.127717e-03
## GSDMD -4.390974e+01 5.409087e+01 -4.796570 4.520836e-06 8.062724e-05
## LUZP6 4.386590e+01 1.960422e+02 2.494679 1.391543e-02 3.411266e-02
## MTPN 4.386590e+01 1.960422e+02 2.494679 1.391543e-02 3.411266e-02
## ACTR1A -4.376194e+01 1.517200e+02 -4.180219 5.439816e-05 4.902448e-04
## MIDN -4.362983e+01 1.448856e+02 -3.132270 2.162081e-03 7.665854e-03
## ITM2C 4.361678e+01 5.459665e+01 2.809587 5.761485e-03 1.666208e-02
## ARID5A -4.345053e+01 6.795398e+01 -3.781607 2.405627e-04 1.448996e-03
## PACS1 -4.342740e+01 1.243962e+02 -4.861285 3.438728e-06 6.653069e-05
## PRKCSH -4.337975e+01 9.262552e+01 -5.204558 7.766471e-07 2.285616e-05
## TYK2 -4.327962e+01 1.468494e+02 -4.510584 1.473436e-05 1.906488e-04
## PSD4 -4.295615e+01 2.345328e+02 -2.756852 6.713168e-03 1.889821e-02
## TAB2 4.290632e+01 1.842722e+02 2.562196 1.159142e-02 2.945378e-02
## PLIN3 -4.253595e+01 1.068782e+02 -3.678108 3.480076e-04 1.891682e-03
## SBNO2 -4.252525e+01 1.072384e+02 -3.124190 2.217855e-03 7.823844e-03
## RAB5C -4.250189e+01 2.103433e+02 -3.242331 1.521226e-03 5.797475e-03
## PPP1R15B 4.245363e+01 1.214792e+02 3.243936 1.513351e-03 5.776742e-03
## WNK1 4.233533e+01 1.310469e+02 3.250911 1.479567e-03 5.678857e-03
## ZC3HAV1 4.217380e+01 1.424413e+02 2.492277 1.400530e-02 3.426394e-02
## ILK -4.215631e+01 2.121647e+02 -2.506546 1.347899e-02 3.319596e-02
## EIF3C -4.213423e+01 1.050756e+02 -4.455982 1.836596e-05 2.210862e-04
## PLB1 -4.210777e+01 5.871048e+01 -4.003335 1.065331e-04 7.969243e-04
## RGL2 -4.193510e+01 2.274544e+02 -2.383471 1.865970e-02 4.308878e-02
## EIF2AK1 4.174348e+01 1.240806e+02 5.014444 1.783797e-06 4.174712e-05
## STXBP5 4.168042e+01 1.107839e+02 2.616891 9.971057e-03 2.601908e-02
## VCPIP1 4.166757e+01 1.132242e+02 3.012554 3.137989e-03 1.024685e-02
## S100A10 -4.157135e+01 1.530519e+02 -2.481923 1.439860e-02 3.500048e-02
## UBL5 -4.154963e+01 1.293483e+02 -2.897432 4.445737e-03 1.352654e-02
## WBP2 -4.149954e+01 1.803700e+02 -3.003593 3.225362e-03 1.046533e-02
## MAPK3 -4.148627e+01 1.167952e+02 -3.776246 2.452510e-04 1.471258e-03
## TOM1 -4.148386e+01 9.757974e+01 -3.299540 1.262864e-03 5.026028e-03
## CDC37 -4.142183e+01 9.211347e+01 -5.425009 2.896048e-07 1.107972e-05
## PATL1 4.138519e+01 9.050442e+01 4.518074 1.429381e-05 1.864957e-04
## DHRS13 -4.136181e+01 7.013825e+01 -3.577500 4.948767e-04 2.461929e-03
## IMPA2 -4.121789e+01 5.859757e+01 -5.160279 9.441395e-07 2.610139e-05
## RARA -4.111851e+01 1.399666e+02 -2.989922 3.362996e-03 1.080898e-02
## INPP5D 4.109166e+01 2.307735e+02 2.697661 7.950065e-03 2.164490e-02
## SPOCK2 -4.105418e+01 8.982975e+01 -3.090521 2.464909e-03 8.510575e-03
## NOSIP -4.092415e+01 5.621492e+01 -4.237383 4.359706e-05 4.193521e-04
## IRAG1 -4.085937e+01 1.145352e+02 -2.506727 1.347244e-02 3.319578e-02
## PRAM1 -4.065091e+01 6.144100e+01 -4.422291 2.102210e-05 2.454985e-04
## AHCTF1 4.064148e+01 1.191115e+02 2.767673 6.506947e-03 1.844123e-02
## GAA -4.058794e+01 5.734432e+01 -5.851115 4.038702e-08 3.050892e-06
## PPP1R12C -4.055237e+01 6.496655e+01 -5.694581 8.405734e-08 4.935248e-06
## VCL 4.040129e+01 1.254732e+02 3.486314 6.768873e-04 3.099569e-03
## ADGRE1 -4.029771e+01 8.087104e+01 -2.342382 2.074588e-02 4.690167e-02
## ANKRD13D -4.026992e+01 1.041355e+02 -4.384459 2.444596e-05 2.735180e-04
## MAP7D1 -4.020110e+01 1.373781e+02 -3.278556 1.352455e-03 5.304270e-03
## FAM89B -3.946473e+01 5.020861e+01 -6.214544 7.085015e-09 8.743713e-07
## ADAM17 3.945114e+01 6.728714e+01 3.132752 2.158798e-03 7.661084e-03
## MAPK13 3.940119e+01 1.071179e+02 2.938166 3.934538e-03 1.226699e-02
## CD2BP2 -3.936612e+01 1.251863e+02 -5.052130 1.514929e-06 3.743138e-05
## PHB2 -3.935954e+01 9.922310e+01 -4.936483 2.495234e-06 5.332157e-05
## ATM 3.905442e+01 1.240426e+02 3.423427 8.373031e-04 3.660308e-03
## PGLS -3.902057e+01 4.444768e+01 -6.055158 1.529847e-08 1.533525e-06
## MKNK2 -3.873564e+01 1.762444e+02 -2.587143 1.082511e-02 2.784941e-02
## CPEB4 3.871985e+01 1.023659e+02 2.580189 1.103398e-02 2.828247e-02
## IGFLR1 -3.870699e+01 5.324574e+01 -5.126726 1.094009e-06 2.902673e-05
## CHMP1A -3.869671e+01 8.704788e+01 -4.585952 1.084027e-05 1.545260e-04
## KDM7A 3.835429e+01 1.187623e+02 2.826928 5.476519e-03 1.599397e-02
## TRIP12 3.820747e+01 1.994150e+02 2.529817 1.265853e-02 3.164825e-02
## DNAJC13 3.817480e+01 8.729956e+01 3.997752 1.087826e-04 8.098940e-04
## NSD3 3.809594e+01 9.646241e+01 4.635271 8.852406e-06 1.339152e-04
## DEDD2 -3.808682e+01 1.291831e+02 -3.363095 1.024185e-03 4.277056e-03
## CTDNEP1 -3.801098e+01 1.228679e+02 -3.780685 2.413636e-04 1.451609e-03
## PSENEN -3.784612e+01 8.391309e+01 -4.010761 1.036099e-04 7.833599e-04
## NCOA1 3.780348e+01 1.496879e+02 2.463041 1.514132e-02 3.641779e-02
## BTN3A3 3.775218e+01 7.670434e+01 4.446065 1.911224e-05 2.280394e-04
## CIB1 -3.775049e+01 7.120905e+01 -4.189330 5.251958e-05 4.773044e-04
## KIF5B 3.756131e+01 1.318361e+02 3.178699 1.866051e-03 6.836998e-03
## PSMA7 -3.729087e+01 1.303205e+02 -3.182578 1.843104e-03 6.773851e-03
## STAB1 -3.728348e+01 8.270922e+01 -3.082024 2.531166e-03 8.684576e-03
## STK38 -3.724837e+01 2.130187e+02 -3.306491 1.234428e-03 4.942714e-03
## NUFIP2 3.708325e+01 1.414914e+02 2.874819 4.755150e-03 1.424143e-02
## TAF10 -3.695528e+01 1.088662e+02 -3.945437 1.321835e-04 9.364971e-04
## FNDC3B 3.690902e+01 9.921672e+01 3.011397 3.149146e-03 1.027479e-02
## NCOA3 3.690765e+01 8.477207e+01 5.032556 1.649241e-06 3.951514e-05
## ARRB1 -3.687931e+01 1.067599e+02 -4.800560 4.445517e-06 7.976375e-05
## ITGA4 3.679367e+01 1.355601e+02 2.347091 2.049679e-02 4.648029e-02
## PGAP6 -3.674416e+01 5.542591e+01 -6.026304 1.756748e-08 1.627736e-06
## USP34 3.673428e+01 1.223386e+02 3.360134 1.034295e-03 4.308655e-03
## ORAI2 -3.669482e+01 1.408884e+02 -2.624603 9.759828e-03 2.556915e-02
## CRTAP -3.665993e+01 1.004140e+02 -4.332256 3.006264e-05 3.172089e-04
## LILRA1 -3.649428e+01 1.003846e+02 -3.743821 2.755058e-04 1.593125e-03
## DOCK11 3.648551e+01 1.609723e+02 2.486185 1.423554e-02 3.471797e-02
## DEK 3.646862e+01 1.299614e+02 3.711780 3.088562e-04 1.735213e-03
## EIF3M -3.622158e+01 1.046939e+02 -4.701949 6.716982e-06 1.097438e-04
## APP 3.610120e+01 8.579951e+01 5.164568 9.264890e-07 2.567327e-05
## NLRP12 -3.591940e+01 1.132651e+02 -3.223456 1.616754e-03 6.089141e-03
## USF2 -3.589892e+01 9.784618e+01 -5.119466 1.129366e-06 2.976506e-05
## HLA-DMA -3.586885e+01 7.506412e+01 -3.617243 4.309701e-04 2.216525e-03
## FUT7 -3.577613e+01 3.223891e+01 -6.150112 9.682694e-09 1.073241e-06
## ITSN2 3.575028e+01 1.178624e+02 2.993671 3.324726e-03 1.071210e-02
## ABHD3 3.566835e+01 1.245124e+02 2.401843 1.778859e-02 4.148923e-02
## AKT1 -3.564523e+01 1.027137e+02 -5.592049 1.350787e-07 6.538911e-06
## PTPRCAP -3.562318e+01 3.035666e+01 -3.136434 2.133857e-03 7.595302e-03
## SEL1L 3.562137e+01 1.146033e+02 3.445221 7.780493e-04 3.440507e-03
## CDK5RAP3 -3.560387e+01 2.413536e+02 -2.388501 1.841754e-02 4.265754e-02
## EP300 3.557255e+01 1.004415e+02 3.201149 1.736849e-03 6.469543e-03
## TMC8 -3.553550e+01 1.104688e+02 -2.567895 1.141219e-02 2.910097e-02
## VOPP1 -3.550026e+01 1.332950e+02 -2.725276 7.349355e-03 2.036527e-02
## UNC119 -3.541109e+01 1.044217e+02 -3.555971 5.331290e-04 2.596678e-03
## KMT2E 3.536666e+01 1.066485e+02 3.496856 6.530070e-04 3.017009e-03
## MAZ -3.533277e+01 1.201400e+02 -2.700008 7.897330e-03 2.152662e-02
## CD3D -3.521715e+01 6.773680e+01 -2.510090 1.335107e-02 3.297453e-02
## CNOT1 3.517910e+01 1.413727e+02 4.316416 3.199949e-05 3.302767e-04
## HNRNPH3 3.515062e+01 1.583682e+02 3.155403 2.009527e-03 7.230884e-03
## COX7C -3.509200e+01 1.291261e+02 -2.346624 2.052137e-02 4.652713e-02
## SCAF11 3.508078e+01 1.420130e+02 2.812486 5.712914e-03 1.656340e-02
## MCMBP 3.506434e+01 1.342862e+02 3.126434 2.202232e-03 7.782619e-03
## DOK1 -3.503910e+01 6.841051e+01 -5.615470 1.212569e-07 6.067961e-06
## MARF1 3.476990e+01 1.548640e+02 2.558522 1.170830e-02 2.967104e-02
## MRFAP1 -3.476572e+01 1.634503e+02 -3.457257 7.470363e-04 3.330254e-03
## BIRC6 3.451856e+01 7.190745e+01 4.962779 2.228938e-06 4.919486e-05
## CAVIN2 3.447637e+01 9.727598e+01 3.135821 2.137987e-03 7.603156e-03
## JTB -3.447338e+01 1.369361e+02 -2.322630 2.182010e-02 4.886449e-02
## TPP1 3.430171e+01 2.078114e+02 2.528670 1.269792e-02 3.169802e-02
## SERPINB6 -3.423668e+01 6.216465e+01 -5.448597 2.602391e-07 1.039204e-05
## AMD1 3.421636e+01 1.446059e+02 2.690986 8.101794e-03 2.196945e-02
## PSMB1 -3.412560e+01 1.283435e+02 -3.481999 6.868977e-04 3.133310e-03
## OSGIN2 3.401857e+01 7.306707e+01 3.494597 6.580570e-04 3.033313e-03
## TNPO1 3.399436e+01 8.426560e+01 3.699387 3.227534e-04 1.795429e-03
## YWHAH 3.394943e+01 1.134181e+02 3.046844 2.823406e-03 9.432394e-03
## FLII -3.393658e+01 1.642210e+02 -3.681739 3.435693e-04 1.876028e-03
## NME2 -3.374966e+01 8.205699e+01 -2.798032 5.958799e-03 1.713661e-02
## MAST3 -3.371476e+01 1.388694e+02 -2.428174 1.660299e-02 3.927233e-02
## CEACAM6 3.370567e+01 3.525454e+01 2.719088 7.480250e-03 2.063637e-02
## MARCHF2 -3.346824e+01 7.536482e+01 -3.423705 8.365203e-04 3.658234e-03
## LIMS1 3.337464e+01 9.863491e+01 3.723790 2.959298e-04 1.680099e-03
## VPS9D1 -3.321801e+01 5.384773e+01 -3.452774 7.584495e-04 3.371518e-03
## PHF20L1 3.310105e+01 1.218556e+02 2.625067 9.747233e-03 2.554180e-02
## SEPTIN7 3.309450e+01 1.790245e+02 2.686567 8.203692e-03 2.220351e-02
## NCOA2 3.306669e+01 9.099769e+01 3.108248 2.331823e-03 8.148326e-03
## EDEM1 3.283154e+01 8.903135e+01 5.125381 1.100477e-06 2.913317e-05
## MYCBP2 3.269707e+01 6.689463e+01 4.934222 2.519519e-06 5.374369e-05
## QARS1 -3.262756e+01 1.124299e+02 -3.872315 1.730526e-04 1.141716e-03
## GPX4 -3.260214e+01 8.001004e+01 -3.131919 2.164482e-03 7.671242e-03
## SLC19A1 -3.258201e+01 7.846143e+01 -3.235437 1.555489e-03 5.895846e-03
## PNISR 3.257600e+01 1.664202e+02 2.655447 8.954698e-03 2.382830e-02
## APRT -3.257247e+01 3.286586e+01 -4.369564 2.593617e-05 2.855712e-04
## VAMP2 -3.243502e+01 1.433549e+02 -2.767872 6.503210e-03 1.844123e-02
## MBD6 -3.236279e+01 1.288315e+02 -2.376731 1.898861e-02 4.367223e-02
## C18orf25 3.231895e+01 6.291991e+01 3.618160 4.295921e-04 2.211355e-03
## CEP63 3.228608e+01 9.140290e+01 3.727295 2.922558e-04 1.664020e-03
## SIPA1L2 3.218874e+01 7.630592e+01 2.326332 2.161508e-02 4.850612e-02
## CPNE3 3.217607e+01 8.814839e+01 2.751905 6.809397e-03 1.910562e-02
## ZAP70 -3.217184e+01 5.520149e+01 -2.730296 7.244676e-03 2.010338e-02
## LDB1 -3.216831e+01 1.415039e+02 -4.466043 1.763761e-05 2.156310e-04
## KMT2C 3.213807e+01 8.591296e+01 3.388716 9.404953e-04 3.997948e-03
## KDM5A 3.208623e+01 1.203062e+02 3.731682 2.877168e-04 1.642118e-03
## BID -3.199003e+01 1.278205e+02 -3.104527 2.359196e-03 8.227011e-03
## MED13 3.197651e+01 8.061566e+01 3.881850 1.671111e-04 1.117844e-03
## MTDH 3.193705e+01 9.650345e+01 5.097451 1.243507e-06 3.206085e-05
## H2BC21 3.190426e+01 9.096919e+01 3.192055 1.788146e-03 6.616975e-03
## VAV1 -3.190108e+01 1.905019e+02 -2.414587 1.720571e-02 4.039839e-02
## KDM3B 3.186549e+01 1.335177e+02 2.627732 9.675271e-03 2.538688e-02
## HMGN4 3.185433e+01 1.096389e+02 4.170012 5.657915e-05 5.045329e-04
## HSBP1 -3.184428e+01 1.159853e+02 -3.965150 1.228516e-04 8.846510e-04
## PTP4A1 3.171210e+01 1.037282e+02 2.522484 1.291214e-02 3.209766e-02
## PIM2 3.170542e+01 1.381539e+02 2.958557 3.699461e-03 1.170640e-02
## DRAP1 -3.157818e+01 6.098790e+01 -3.294395 1.284300e-03 5.090842e-03
## PRPF6 -3.149215e+01 6.287130e+01 -5.669539 9.442288e-08 5.241298e-06
## MTRNR2L6 -3.148477e+01 4.498673e+01 -3.370783 9.983688e-04 4.192866e-03
## NIPBL 3.143823e+01 1.104868e+02 2.960485 3.677922e-03 1.164757e-02
## DYRK1A 3.141109e+01 1.169311e+02 3.155862 2.006606e-03 7.222563e-03
## UQCRC1 -3.139698e+01 1.053646e+02 -3.188265 1.809941e-03 6.670571e-03
## SART1 -3.138160e+01 5.642193e+01 -5.433921 2.781473e-07 1.091002e-05
## TRABD -3.137940e+01 3.744705e+01 -5.637898 1.093237e-07 5.661915e-06
## HERC3 3.131571e+01 7.371338e+01 3.296926 1.273712e-03 5.055632e-03
## ARFGAP2 -3.131354e+01 9.070118e+01 -4.627417 9.143483e-06 1.369214e-04
## LRPAP1 -3.131020e+01 9.556031e+01 -3.140783 2.104734e-03 7.511930e-03
## EDEM3 3.129611e+01 7.418345e+01 4.042273 9.203561e-05 7.204900e-04
## EIF6 -3.129515e+01 7.179992e+01 -3.773578 2.476162e-04 1.480206e-03
## LYPLA2 -3.126574e+01 4.850174e+01 -5.294724 5.202666e-07 1.672185e-05
## ALDH2 -3.126225e+01 1.105892e+02 -2.405870 1.760253e-02 4.116862e-02
## SNX17 -3.125688e+01 1.125624e+02 -3.549049 5.460090e-04 2.641011e-03
## ZNF385A -3.119815e+01 3.754878e+01 -5.793677 5.291481e-08 3.697343e-06
## ZNF467 -3.118722e+01 4.233810e+01 -5.609793 1.244742e-07 6.151100e-06
## SEL1L3 3.116833e+01 6.457743e+01 3.108389 2.330794e-03 8.147132e-03
## FBRS -3.104846e+01 9.235538e+01 -4.262154 3.958554e-05 3.886797e-04
## RAB43 -3.080651e+01 6.569360e+01 -2.701312 7.868173e-03 2.146688e-02
## SNX27 3.075481e+01 1.223616e+02 2.603650 1.034340e-02 2.678905e-02
## SCAMP2 -3.063344e+01 9.379822e+01 -5.498543 2.073392e-07 8.877412e-06
## DPP7 -3.054141e+01 2.498545e+01 -4.393838 2.355019e-05 2.667672e-04
## USP3 3.050658e+01 1.450562e+02 2.785232 6.184567e-03 1.769577e-02
## DDX39B -3.041598e+01 1.821055e+02 -3.450287 7.648511e-04 3.395611e-03
## MKLN1 3.040551e+01 8.586137e+01 4.285245 3.616698e-05 3.622807e-04
## AUP1 -3.030509e+01 1.253401e+02 -3.001290 3.248181e-03 1.051978e-02
## RNH1 -3.029380e+01 3.276725e+01 -5.572806 1.475786e-07 6.936939e-06
## CNPPD1 -3.018029e+01 1.013221e+02 -2.998103 3.279993e-03 1.059388e-02
## LAMP1 -3.014804e+01 1.181997e+02 -3.951122 1.294251e-04 9.202525e-04
## REL 3.014773e+01 1.015583e+02 2.964243 3.636257e-03 1.152793e-02
## CRTC2 -3.007273e+01 1.006048e+02 -3.857266 1.828399e-04 1.195414e-03
## TMEM259 -3.005839e+01 6.005994e+01 -5.422531 2.928720e-07 1.110675e-05
## CRKL 3.002488e+01 9.064875e+01 4.317582 3.185288e-05 3.296167e-04
## TBC1D10B -3.001026e+01 6.165357e+01 -4.989236 1.988966e-06 4.536373e-05
## SH3BP5L -2.990187e+01 9.975082e+01 -3.689308 3.344908e-04 1.839156e-03
## BAZ2B 2.986464e+01 9.035474e+01 3.026136 3.009708e-03 9.915316e-03
## FIS1 -2.985527e+01 5.308226e+01 -3.663743 3.661020e-04 1.958489e-03
## ZEB2 2.981680e+01 1.107059e+02 2.435384 1.629083e-02 3.864184e-02
## RPN1 -2.979080e+01 2.078619e+02 -2.919850 4.157322e-03 1.281004e-02
## SPAG9 2.972831e+01 1.064268e+02 2.523584 1.287380e-02 3.201579e-02
## TUFM -2.971507e+01 7.979441e+01 -4.011586 1.032896e-04 7.817580e-04
## RHOT2 -2.971099e+01 4.303786e+01 -4.943721 2.418995e-06 5.187935e-05
## FAM111A 2.970469e+01 7.331442e+01 5.288057 5.359806e-07 1.713404e-05
## MAF1 -2.968849e+01 6.724306e+01 -4.999952 1.899086e-06 4.373430e-05
## SNRPD2 -2.968560e+01 8.833110e+01 -2.462321 1.517028e-02 3.647264e-02
## APEH -2.962377e+01 7.373473e+01 -4.681869 7.301137e-06 1.160744e-04
## ATP6AP1 -2.956231e+01 1.256068e+02 -3.039835 2.885241e-03 9.585142e-03
## SEPTIN2 2.950206e+01 1.525657e+02 3.646026 3.896443e-04 2.059350e-03
## DGKZ -2.948371e+01 7.529135e+01 -4.365056 2.640426e-05 2.891547e-04
## RFFL 2.947562e+01 1.079016e+02 2.852173 5.084669e-03 1.507981e-02
## EIF5 2.945842e+01 1.723897e+02 2.398055 1.796519e-02 4.184175e-02
## PIAS1 2.944878e+01 1.315906e+02 2.422526 1.685119e-02 3.974844e-02
## VAMP3 -2.941849e+01 1.391106e+02 -2.457496 1.536581e-02 3.687544e-02
## CSNK2B -2.940978e+01 8.004811e+01 -4.685949 7.178611e-06 1.150518e-04
## EIF3A 2.933931e+01 1.238513e+02 3.686961 3.372812e-04 1.850210e-03
## LPCAT1 -2.931652e+01 1.039814e+02 -5.396994 3.287064e-07 1.210701e-05
## KLRB1 -2.930696e+01 4.120303e+01 -3.758398 2.614900e-04 1.537587e-03
## CPNE1 -2.930074e+01 1.233677e+02 -3.407404 8.835408e-04 3.817411e-03
## SH3BP1 -2.929038e+01 5.284604e+01 -5.194718 8.111616e-07 2.345005e-05
## PIM3 -2.926983e+01 6.916755e+01 -3.598128 4.606665e-04 2.333834e-03
## SETD2 2.926178e+01 8.511057e+01 4.469251 1.741127e-05 2.138771e-04
## CANX 2.924822e+01 1.956729e+02 2.677920 8.406425e-03 2.264370e-02
## ARL6IP1 2.920509e+01 1.047719e+02 4.116672 6.941024e-05 5.830067e-04
## C3orf86 -2.920073e+01 4.870458e+01 -3.210199 1.687157e-03 6.332176e-03
## TLK1 2.917925e+01 7.687831e+01 4.573847 1.139050e-05 1.587442e-04
## SZRD1 -2.915949e+01 1.369710e+02 -3.749947 2.695307e-04 1.569286e-03
## MAT2B 2.912611e+01 1.422819e+02 3.098232 2.406179e-03 8.356692e-03
## GBP3 2.911184e+01 5.272194e+01 2.632257 9.554162e-03 2.512469e-02
## FOXN2 2.906759e+01 8.517708e+01 2.829253 5.439310e-03 1.591666e-02
## KCNAB2 -2.903896e+01 1.084747e+02 -5.134967 1.055187e-06 2.824947e-05
## MARCO -2.886291e+01 2.188781e+01 -5.854772 3.969636e-08 3.037412e-06
## MDH2 -2.878359e+01 5.830712e+01 -5.195446 8.085573e-07 2.344619e-05
## ZBTB34 2.877014e+01 1.014707e+02 2.484573 1.429700e-02 3.482104e-02
## WDR83OS -2.874767e+01 7.107354e+01 -3.437039 7.998150e-04 3.527633e-03
## MORC3 2.874561e+01 8.802963e+01 3.256850 1.451356e-03 5.597897e-03
## YIPF3 -2.868371e+01 1.152890e+02 -2.886859 4.588023e-03 1.385284e-02
## TNFSF13 -2.864555e+01 8.516356e+01 -5.311900 4.818195e-07 1.582931e-05
## GIMAP5 -2.858756e+01 8.577913e+01 -2.501543 1.366147e-02 3.357335e-02
## CD79B -2.854502e+01 4.278334e+01 -2.703650 7.816131e-03 2.134945e-02
## NAPRT -2.854350e+01 2.198267e+01 -5.613168 1.225516e-07 6.106984e-06
## POLR2E -2.848734e+01 3.925324e+01 -5.412300 3.067446e-07 1.153285e-05
## KLHL8 2.847720e+01 6.464648e+01 2.313715 2.232078e-02 4.968551e-02
## PRRC2C 2.847542e+01 1.108168e+02 3.264611 1.415243e-03 5.490607e-03
## RSU1 2.846733e+01 7.403378e+01 4.525876 1.384843e-05 1.824915e-04
## PTPN18 -2.845639e+01 1.747350e+02 -3.231444 1.575661e-03 5.957074e-03
## TAOK1 2.844575e+01 9.036542e+01 3.136699 2.132068e-03 7.591213e-03
## TNKS2 2.842121e+01 7.444453e+01 4.408175 2.224177e-05 2.551429e-04
## OGFR -2.839169e+01 5.197173e+01 -4.147091 6.178670e-05 5.356654e-04
## ERGIC3 -2.839145e+01 9.158749e+01 -3.308116 1.227869e-03 4.928052e-03
## KIDINS220 2.837972e+01 8.987570e+01 2.854592 5.048498e-03 1.499128e-02
## MLLT1 -2.837615e+01 4.617664e+01 -4.554728 1.231491e-05 1.669198e-04
## SMARCD2 -2.829111e+01 1.008590e+02 -5.135111 1.054519e-06 2.824947e-05
## RELT -2.825044e+01 7.667061e+01 -4.688440 7.104761e-06 1.143317e-04
## ARID4B 2.814151e+01 1.045844e+02 2.604876 1.030842e-02 2.672886e-02
## GPR108 -2.811615e+01 9.714116e+01 -3.212151 1.676613e-03 6.302175e-03
## TRIM28 -2.802432e+01 5.913307e+01 -4.267529 3.876300e-05 3.827887e-04
## SLC66A2 -2.801891e+01 3.194441e+01 -5.242821 6.555364e-07 2.019393e-05
## CASP10 2.790094e+01 6.485548e+01 4.930284 2.562368e-06 5.426729e-05
## LARP1 2.789898e+01 7.621258e+01 5.202596 7.834116e-07 2.293171e-05
## UHMK1 2.779466e+01 9.391854e+01 4.192468 5.188713e-05 4.733702e-04
## ALDH3B1 -2.779032e+01 5.200472e+01 -4.464376 1.775630e-05 2.159895e-04
## CHD1 2.774664e+01 8.106465e+01 2.433354 1.637819e-02 3.879912e-02
## XPO1 2.772906e+01 1.037991e+02 3.273678 1.374116e-03 5.370283e-03
## PGRMC1 2.771852e+01 7.516286e+01 3.168494 1.927690e-03 6.991561e-03
## CCNY -2.771291e+01 1.369076e+02 -2.787039 6.152233e-03 1.761600e-02
## KAT2B 2.768042e+01 8.504289e+01 3.329114 1.145974e-03 4.669016e-03
## NPC2 -2.761222e+01 1.421390e+02 -2.418543 1.702823e-02 4.006244e-02
## SF3B5 -2.758575e+01 6.150043e+01 -3.129738 2.179417e-03 7.706586e-03
## EPN1 -2.750787e+01 3.854586e+01 -5.192107 8.205679e-07 2.354195e-05
## BAG1 -2.750289e+01 7.074354e+01 -3.046419 2.827124e-03 9.439666e-03
## LAMTOR5 -2.748276e+01 9.674124e+01 -2.330496 2.138656e-02 4.810253e-02
## PCGF5 2.742175e+01 5.694832e+01 4.976026 2.105459e-06 4.711460e-05
## ATF7IP 2.738067e+01 7.425007e+01 4.220958 4.646925e-05 4.377485e-04
## TACC1 2.734259e+01 1.064991e+02 3.150973 2.037945e-03 7.317597e-03
## IRF3 -2.732630e+01 4.385028e+01 -4.043145 9.173337e-05 7.185983e-04
## SPSB3 -2.717991e+01 3.523570e+01 -5.085970 1.307408e-06 3.334594e-05
## CELF1 2.716580e+01 1.141638e+02 3.193666 1.778958e-03 6.593264e-03
## ST6GAL1 2.710843e+01 7.503714e+01 3.721563 2.982873e-04 1.687023e-03
## ADCY7 2.708287e+01 9.889263e+01 2.746349 6.918992e-03 1.935359e-02
## THOC5 -2.706746e+01 8.236836e+01 -3.591237 4.718388e-04 2.378244e-03
## NCLN -2.705430e+01 4.016096e+01 -4.550591 1.252428e-05 1.687932e-04
## NDUFA1 -2.698323e+01 1.163793e+02 -2.556572 1.177075e-02 2.980383e-02
## MTCH1 -2.697333e+01 1.391175e+02 -3.270589 1.388001e-03 5.415030e-03
## UBR5 2.694908e+01 1.123865e+02 3.088088 2.483716e-03 8.555582e-03
## HLA-DMB -2.689727e+01 7.190885e+01 -3.251777 1.475421e-03 5.664774e-03
## USP25 2.687946e+01 6.833131e+01 3.799415 2.255947e-04 1.387015e-03
## BRK1 -2.686588e+01 1.710527e+02 -2.359242 1.986619e-02 4.528407e-02
## BLVRB -2.684620e+01 4.367586e+01 -2.993848 3.322929e-03 1.070922e-02
## ATXN7 2.682478e+01 6.438516e+01 3.749526 2.699377e-04 1.570114e-03
## NADSYN1 -2.681602e+01 7.232743e+01 -5.058365 1.474423e-06 3.665965e-05
## ATP6V1F -2.678286e+01 5.748247e+01 -4.372756 2.560962e-05 2.833191e-04
## SLC38A1 2.673506e+01 6.328160e+01 3.691566 3.318268e-04 1.827927e-03
## CAPN1 -2.672726e+01 1.002344e+02 -3.396285 9.170258e-04 3.917841e-03
## UBXN4 2.672385e+01 1.113414e+02 2.724686 7.361737e-03 2.039005e-02
## CD1D -2.669206e+01 4.675289e+01 -6.555611 1.322083e-09 2.750860e-07
## CMTM3 -2.667333e+01 9.704492e+01 -3.698902 3.233092e-04 1.796836e-03
## BAG6 -2.662151e+01 1.182935e+02 -4.823168 4.041116e-06 7.500413e-05
## DNAJC5 -2.659630e+01 1.258177e+02 -2.850303 5.112783e-03 1.514048e-02
## DGCR2 -2.656957e+01 9.258023e+01 -3.781454 2.406955e-04 1.449060e-03
## ROGDI -2.654857e+01 3.294670e+01 -4.440419 1.955001e-05 2.320952e-04
## STX16 2.647313e+01 1.431381e+02 2.330272 2.139881e-02 4.812096e-02
## PLXNB2 -2.643328e+01 4.299010e+01 -4.204096 4.960649e-05 4.560721e-04
## TMEM219 -2.641559e+01 7.548929e+01 -2.965315 3.624448e-03 1.149972e-02
## CHMP4A -2.638249e+01 6.563874e+01 -4.422353 2.101696e-05 2.454985e-04
## PHF3 2.636336e+01 9.405755e+01 3.062576 2.689068e-03 9.096504e-03
## STRN4 -2.633574e+01 5.213295e+01 -6.775573 4.383851e-10 1.444235e-07
## PPP2R5C 2.629579e+01 1.555864e+02 2.938182 3.934345e-03 1.226699e-02
## TES 2.629559e+01 8.796754e+01 3.426978 8.273676e-04 3.620878e-03
## BRMS1 -2.628805e+01 5.200969e+01 -4.376410 2.524074e-05 2.798529e-04
## COMMD6 -2.617693e+01 6.616956e+01 -3.415448 8.600374e-04 3.739019e-03
## KMT2D 2.617404e+01 1.069567e+02 2.562412 1.158458e-02 2.945190e-02
## UQCR11 -2.615265e+01 5.132063e+01 -3.427257 8.265904e-04 3.618812e-03
## DNM2 -2.612683e+01 1.414486e+02 -2.970545 3.567361e-03 1.133983e-02
## HDAC5 -2.608563e+01 8.636239e+01 -2.884865 4.615330e-03 1.391403e-02
## DIP2B 2.606890e+01 8.847932e+01 2.894275 4.487786e-03 1.361605e-02
## ITCH 2.606287e+01 9.900280e+01 2.994818 3.313095e-03 1.068334e-02
## PFKL -2.598373e+01 3.511668e+01 -4.887804 3.072032e-06 6.164856e-05
## REEP5 -2.597508e+01 1.299043e+02 -3.973142 1.192502e-04 8.671411e-04
## RB1CC1 2.596563e+01 9.750158e+01 2.411739 1.733445e-02 4.065317e-02
## SIGLEC9 -2.596501e+01 6.044614e+01 -4.033327 9.518925e-05 7.381148e-04
## TCF25 -2.594384e+01 6.821969e+01 -4.829362 3.936714e-06 7.352666e-05
## CREG1 2.591899e+01 1.090574e+02 2.968090 3.594055e-03 1.141550e-02
## COPA 2.589342e+01 1.265631e+02 2.992798 3.333598e-03 1.073194e-02
## SH2D3C -2.584251e+01 7.585229e+01 -3.945964 1.319253e-04 9.352269e-04
## SYTL1 -2.583248e+01 3.094226e+01 -5.668118 9.504725e-08 5.243071e-06
## IL6ST 2.582736e+01 7.018728e+01 3.813360 2.144956e-04 1.341184e-03
## EPG5 2.580961e+01 5.076223e+01 4.320606 3.147576e-05 3.265989e-04
## LEPROT 2.579875e+01 8.947314e+01 3.419499 8.484235e-04 3.699376e-03
## PRMT2 -2.578337e+01 1.297037e+02 -3.702076 3.196880e-04 1.784235e-03
## HM13 -2.577635e+01 8.163811e+01 -3.986727 1.133589e-04 8.345355e-04
## PHIP 2.575714e+01 8.980356e+01 2.917212 4.190339e-03 1.288499e-02
## LNPEP 2.572530e+01 7.994613e+01 4.516485 1.438621e-05 1.872892e-04
## DENND1C -2.572260e+01 6.290853e+01 -5.296010 5.172852e-07 1.667120e-05
## NAPSA -2.570444e+01 2.401286e+01 -6.786494 4.148376e-10 1.405707e-07
## TRAM1 2.570387e+01 1.306377e+02 3.412235 8.693547e-04 3.771231e-03
## ARHGEF6 2.567823e+01 1.070178e+02 2.933701 3.987819e-03 1.239401e-02
## TMEM170B 2.567742e+01 1.049071e+02 2.388320 1.842619e-02 4.265754e-02
## TMC6 -2.567326e+01 8.870563e+01 -3.132890 2.157858e-03 7.661084e-03
## RNF169 2.565881e+01 5.189974e+01 4.079105 8.007217e-05 6.504492e-04
## SELENOW -2.564789e+01 4.948854e+01 -3.451576 7.615270e-04 3.383930e-03
## TMOD3 2.563702e+01 7.800535e+01 3.089308 2.474270e-03 8.530477e-03
## FBXW5 -2.563236e+01 3.542401e+01 -4.172944 5.594429e-05 4.999994e-04
## MAP2K2 -2.561870e+01 5.718113e+01 -4.204843 4.946330e-05 4.554618e-04
## CDIPT -2.558794e+01 6.149917e+01 -4.649379 8.351881e-06 1.281414e-04
## TUBB4B -2.554439e+01 7.236131e+01 -3.241163 1.526982e-03 5.813805e-03
## VPS13C 2.552292e+01 6.096054e+01 3.401141 9.022576e-04 3.865887e-03
## PEF1 -2.551131e+01 7.664237e+01 -2.816579 5.644994e-03 1.640118e-02
## MTX1 -2.549455e+01 6.535539e+01 -3.129384 2.181853e-03 7.712898e-03
## MMD 2.545676e+01 5.295268e+01 4.031143 9.597489e-05 7.411830e-04
## EVL -2.539413e+01 6.519973e+01 -2.403906 1.769306e-02 4.131467e-02
## CLTB -2.537551e+01 3.613798e+01 -5.279430 5.570048e-07 1.775827e-05
## LTBR -2.536742e+01 6.887649e+01 -3.902907 1.546715e-04 1.053019e-03
## CMTR1 2.536574e+01 6.785118e+01 2.622253 9.823754e-03 2.570788e-02
## WASHC2C 2.533847e+01 9.573364e+01 3.468339 7.195120e-04 3.240576e-03
## SARS1 -2.526893e+01 8.426163e+01 -5.058381 1.474323e-06 3.665965e-05
## FAR2 2.526812e+01 5.885948e+01 3.024648 3.023520e-03 9.941487e-03
## ARAF -2.525413e+01 6.003651e+01 -4.412854 2.183018e-05 2.516093e-04
## EIF3H -2.523622e+01 1.270660e+02 -3.754655 2.650231e-04 1.547599e-03
## ZDHHC19 -2.523278e+01 1.671525e+01 -2.747995 6.886353e-03 1.928751e-02
## FAM193B -2.513690e+01 7.591747e+01 -4.680680 7.337217e-06 1.164918e-04
## RPN2 2.507155e+01 1.441178e+02 2.466917 1.498613e-02 3.613244e-02
## CDC42EP2 -2.506899e+01 2.776886e+01 -6.222597 6.812987e-09 8.532384e-07
## CENPB -2.500812e+01 3.313386e+01 -4.761458 5.239337e-06 9.058096e-05
## YME1L1 2.499572e+01 1.133109e+02 3.411617 8.711565e-04 3.777666e-03
## PDIA6 2.498147e+01 1.040426e+02 2.669369 8.611349e-03 2.307515e-02
## AFF1 2.497652e+01 7.991046e+01 2.539520 1.232988e-02 3.099456e-02
## NFAT5 2.494368e+01 5.619766e+01 3.344423 1.089518e-03 4.482029e-03
## IKBKG -2.493048e+01 5.184681e+01 -5.645587 1.055037e-07 5.578146e-06
## TNK2 -2.488773e+01 4.660747e+01 -4.884759 3.112134e-06 6.201149e-05
## OSM -2.473002e+01 3.946931e+01 -2.911206 4.266422e-03 1.307825e-02
## PCF11 2.469020e+01 1.057245e+02 2.479305 1.449959e-02 3.521701e-02
## SSR1 2.464229e+01 1.405781e+02 3.923976 1.431104e-04 9.919870e-04
## UBXN6 -2.464126e+01 3.852493e+01 -4.369366 2.595664e-05 2.855712e-04
## PNPLA2 -2.463751e+01 4.696022e+01 -4.841681 3.736756e-06 7.090869e-05
## RRM2 2.459294e+01 2.452927e+01 6.379165 3.167339e-09 4.942715e-07
## TTC9 -2.453700e+01 1.943297e+01 -7.232080 4.229734e-11 3.583189e-08
## PTAR1 2.453670e+01 6.570521e+01 3.268614 1.396949e-03 5.439203e-03
## PRKD2 -2.453125e+01 8.720458e+01 -2.712605 7.619684e-03 2.091303e-02
## LSM14A 2.448560e+01 1.306511e+02 3.324598 1.163143e-03 4.720428e-03
## CSNK1A1 2.441014e+01 1.691170e+02 2.324240 2.173071e-02 4.871030e-02
## ARHGEF2 -2.435398e+01 1.785842e+02 -2.390776 1.830888e-02 4.244597e-02
## MRPL28 -2.434829e+01 3.672365e+01 -4.126918 6.674704e-05 5.670630e-04
## TIMM17B -2.421754e+01 4.423219e+01 -3.994421 1.101461e-04 8.174795e-04
## PIKFYVE 2.421432e+01 5.550777e+01 4.045971 9.076128e-05 7.128668e-04
## CYFIP2 -2.413189e+01 1.618604e+02 -2.572823 1.125919e-02 2.876030e-02
## ST3GAL4 -2.409424e+01 6.369103e+01 -2.455458 1.544906e-02 3.703778e-02
## SLC8B1 -2.405528e+01 4.169616e+01 -6.987616 1.490853e-10 7.687616e-08
## TAGLN -2.403904e+01 2.005573e+01 -6.049808 1.569623e-08 1.551311e-06
## FBP1 -2.401931e+01 2.618608e+01 -6.929205 2.009373e-10 9.532467e-08
## WDR82 2.390911e+01 1.305999e+02 2.838870 5.287835e-03 1.557331e-02
## ARFGAP1 -2.390732e+01 3.094574e+01 -5.559708 1.567276e-07 7.232642e-06
## FAM50A -2.389291e+01 5.044365e+01 -4.045488 9.092659e-05 7.136925e-04
## ANO6 2.388717e+01 5.733702e+01 4.384187 2.447244e-05 2.735562e-04
## MFNG -2.387221e+01 8.476068e+01 -3.000974 3.251323e-03 1.052142e-02
## STX5 -2.386984e+01 5.960294e+01 -4.202921 4.983244e-05 4.574402e-04
## MTF1 2.383295e+01 8.288418e+01 2.509224 1.338223e-02 3.302397e-02
## LAMTOR2 -2.380087e+01 3.675093e+01 -4.690407 7.046997e-06 1.139407e-04
## ASGR2 -2.376845e+01 3.299900e+01 -4.117621 6.915928e-05 5.813105e-04
## MTMR6 2.372476e+01 8.538179e+01 2.681395 8.324412e-03 2.247383e-02
## KDM4B -2.368809e+01 6.111368e+01 -3.908029 1.517814e-04 1.036940e-03
## CCR7 -2.366237e+01 4.138170e+01 -2.900784 4.401472e-03 1.341940e-02
## C17orf49 -2.358878e+01 4.899262e+01 -3.919981 1.452371e-04 1.000879e-03
## EPS15 2.353613e+01 8.613818e+01 3.140042 2.109671e-03 7.527287e-03
## BANF1 -2.335290e+01 4.939688e+01 -3.612632 4.379633e-04 2.241798e-03
## RASSF4 -2.323108e+01 5.750386e+01 -3.812251 2.153585e-04 1.344453e-03
## TOR1B 2.322526e+01 5.528300e+01 2.546660 1.209292e-02 3.048452e-02
## ANKRD12 2.322017e+01 9.082200e+01 2.810625 5.744057e-03 1.662384e-02
## PDIA4 2.318903e+01 5.593395e+01 2.516454 1.312404e-02 3.250858e-02
## MRTFA -2.316602e+01 6.588437e+01 -4.895568 2.972058e-06 6.035721e-05
## NCOR1 2.316405e+01 9.055509e+01 4.302989 3.373468e-05 3.434277e-04
## SMG7 2.309172e+01 9.100097e+01 3.530844 5.813001e-04 2.767651e-03
## PLIN5 -2.308587e+01 3.173251e+01 -3.421890 8.416363e-04 3.675187e-03
## PIP4K2A 2.304279e+01 1.349147e+02 4.417936 2.139140e-05 2.487275e-04
## WBP1L -2.303294e+01 1.315447e+02 -2.709300 7.691658e-03 2.106282e-02
## TRIM56 2.298515e+01 9.278373e+01 3.301160 1.256181e-03 5.014576e-03
## TINF2 -2.296334e+01 1.076528e+02 -3.504848 6.354326e-04 2.958530e-03
## SRF -2.295890e+01 5.850857e+01 -4.801664 4.424880e-06 7.963442e-05
## UTRN 2.283302e+01 5.905859e+01 3.601048 4.560086e-04 2.316172e-03
## BCKDK -2.282520e+01 3.943819e+01 -5.231428 6.895284e-07 2.096874e-05
## NSD1 2.282483e+01 8.064910e+01 4.049306 8.962642e-05 7.056754e-04
## BAX -2.281173e+01 5.942547e+01 -3.765793 2.546414e-04 1.513808e-03
## SPRYD3 -2.278590e+01 4.861012e+01 -6.441414 2.330081e-09 4.238679e-07
## NOD2 2.274797e+01 7.447489e+01 2.580290 1.103092e-02 2.828075e-02
## BCL3 -2.273718e+01 6.741211e+01 -2.769942 6.464442e-03 1.837246e-02
## DNAJB2 -2.273647e+01 3.986088e+01 -4.863442 3.407382e-06 6.614002e-05
## NDUFV1 -2.270646e+01 3.372970e+01 -3.704702 3.167220e-04 1.770561e-03
## CD79A -2.269996e+01 3.696312e+01 -3.070115 2.626806e-03 8.936866e-03
## HP1BP3 2.267434e+01 9.159015e+01 3.508193 6.282103e-04 2.932143e-03
## STING1 -2.261992e+01 7.368207e+01 -3.620940 4.254386e-04 2.195693e-03
## ERAP1 2.261741e+01 6.179211e+01 4.007187 1.050071e-04 7.905628e-04
## TRIM5 2.256573e+01 3.731099e+01 3.996934 1.091159e-04 8.118658e-04
## LMAN1 2.249614e+01 2.938228e+01 4.951785 2.336728e-06 5.057226e-05
## COASY -2.243975e+01 4.948381e+01 -4.829370 3.936577e-06 7.352666e-05
## KLHDC3 -2.243563e+01 5.692648e+01 -4.505936 1.501432e-05 1.925080e-04
## RAB4B -2.243256e+01 3.842153e+01 -4.894232 2.989031e-06 6.059813e-05
## SCAP -2.241244e+01 4.630877e+01 -6.107081 1.191816e-08 1.273418e-06
## ATP5PO -2.237062e+01 1.055607e+02 -2.594637 1.060397e-02 2.735765e-02
## TDRD7 2.236037e+01 6.044724e+01 2.693947 8.034170e-03 2.183149e-02
## PPCDC -2.234007e+01 4.968927e+01 -3.575716 4.979458e-04 2.474083e-03
## ZFAND2B -2.233631e+01 5.251443e+01 -3.586516 4.796401e-04 2.405299e-03
## SCYL1 -2.232244e+01 4.785456e+01 -5.213744 7.457203e-07 2.228436e-05
## VPS51 -2.231818e+01 2.467671e+01 -4.515770 1.442799e-05 1.876271e-04
## PTPA -2.231795e+01 6.543058e+01 -3.049216 2.802764e-03 9.382100e-03
## MTHFS -2.229127e+01 7.350149e+01 -2.406424 1.757708e-02 4.111720e-02
## TBCB -2.228206e+01 4.505945e+01 -5.408063 3.126770e-07 1.162492e-05
## ZNHIT1 -2.227255e+01 3.595589e+01 -3.823615 2.066663e-04 1.301680e-03
## CANT1 -2.225659e+01 1.007905e+02 -2.550640 1.196264e-02 3.023159e-02
## SLAMF7 2.223905e+01 5.802571e+01 2.751582 6.815723e-03 1.911884e-02
## CYB5R3 -2.223024e+01 4.821838e+01 -4.625454 9.217652e-06 1.373384e-04
## GALM 2.222539e+01 3.332247e+01 2.813575 5.694769e-03 1.652331e-02
## SLC39A1 -2.213254e+01 6.807186e+01 -4.417398 2.143738e-05 2.488495e-04
## CGGBP1 2.213025e+01 1.293696e+02 2.918771 4.170798e-03 1.283156e-02
## CHKB -2.210119e+01 8.134594e+01 -3.547268 5.493710e-04 2.650749e-03
## PPTC7 2.204826e+01 7.583239e+01 2.964311 3.635510e-03 1.152793e-02
## NUDC -2.203186e+01 4.170508e+01 -3.969711 1.207838e-04 8.750739e-04
## SBF2 2.201537e+01 4.786018e+01 3.761318 2.587652e-04 1.529126e-03
## RAB11A 2.201398e+01 1.410280e+02 2.585941 1.086094e-02 2.792947e-02
## RHOT1 2.201217e+01 8.289552e+01 2.590335 1.073042e-02 2.765379e-02
## AP2S1 -2.192818e+01 4.404107e+01 -3.480709 6.899182e-04 3.141048e-03
## CLINT1 2.192350e+01 5.934045e+01 3.554212 5.363749e-04 2.606185e-03
## HSPA1B -2.189941e+01 2.484944e+01 -3.688155 3.358586e-04 1.844967e-03
## RRP12 -2.185431e+01 7.295115e+01 -2.607745 1.022694e-02 2.656049e-02
## ELL2 2.184447e+01 3.826902e+01 3.254481 1.462547e-03 5.629926e-03
## GTF3A -2.183976e+01 9.971062e+01 -3.093153 2.444713e-03 8.460548e-03
## SCYL2 2.183028e+01 6.530541e+01 3.656653 3.753565e-04 1.998082e-03
## UXT -2.181470e+01 4.278123e+01 -4.053249 8.830236e-05 6.991095e-04
## TOP1 2.179492e+01 7.723353e+01 3.494229 6.588827e-04 3.035878e-03
## CCDC12 -2.177824e+01 3.068563e+01 -4.522221 1.405542e-05 1.839605e-04
## ENTPD4 2.176059e+01 7.385286e+01 4.388253 2.407977e-05 2.704210e-04
## SRSF9 -2.174552e+01 1.132605e+02 -2.986133 3.402088e-03 1.089918e-02
## OTUB1 -2.173933e+01 7.650581e+01 -3.407234 8.840453e-04 3.818200e-03
## TBK1 2.162363e+01 6.103732e+01 3.539035 5.651627e-04 2.709388e-03
## EFR3A 2.162194e+01 5.636296e+01 4.506749 1.496500e-05 1.921908e-04
## DGAT1 -2.161632e+01 4.230236e+01 -4.321271 3.139345e-05 3.260301e-04
## COPB2 2.160334e+01 1.192865e+02 2.652036 9.040683e-03 2.399787e-02
## WDR13 -2.159398e+01 3.330578e+01 -4.923739 2.635166e-06 5.512005e-05
## CIC -2.152742e+01 3.983140e+01 -6.423808 2.541794e-09 4.368939e-07
## CDC34 -2.149885e+01 3.895673e+01 -4.073382 8.182829e-05 6.610923e-04
## MARS1 2.146715e+01 1.075905e+02 4.794425 4.561852e-06 8.099337e-05
## RER1 -2.143624e+01 9.603072e+01 -4.079903 7.983028e-05 6.489288e-04
## RASAL3 -2.141362e+01 5.587792e+01 -3.132456 2.160815e-03 7.663658e-03
## HIGD2A -2.138436e+01 3.950013e+01 -4.573457 1.140868e-05 1.587493e-04
## ARHGAP1 -2.134991e+01 7.660466e+01 -5.166062 9.204155e-07 2.556470e-05
## CABIN1 -2.132303e+01 4.119331e+01 -3.803709 2.221201e-04 1.374201e-03
## HCST -2.132071e+01 4.651372e+01 -2.676748 8.434258e-03 2.268614e-02
## AP1G2 -2.130812e+01 1.103251e+02 -2.339425 2.090366e-02 4.719540e-02
## TRIM8 -2.130507e+01 7.694182e+01 -3.555245 5.344668e-04 2.599990e-03
## NELFE -2.130252e+01 5.379988e+01 -3.744357 2.749780e-04 1.592402e-03
## ARSA -2.129979e+01 3.680211e+01 -5.190363 8.269101e-07 2.354195e-05
## COL18A1 -2.129435e+01 3.524071e+01 -3.246929 1.498765e-03 5.727452e-03
## COPB1 2.124076e+01 1.048339e+02 2.752583 6.796149e-03 1.907747e-02
## PRKAA1 2.119611e+01 7.547090e+01 2.763038 6.594565e-03 1.861736e-02
## ARFGEF1 2.118575e+01 7.973127e+01 2.974188 3.528087e-03 1.123909e-02
## TXN2 -2.113419e+01 5.223611e+01 -3.404136 8.932615e-04 3.838435e-03
## MLXIP -2.112854e+01 7.149146e+01 -2.451929 1.559416e-02 3.730270e-02
## PNRC2 2.110622e+01 1.367760e+02 3.022272 3.045698e-03 9.997781e-03
## RGS3 -2.107418e+01 5.650161e+01 -3.642450 3.945675e-04 2.075198e-03
## SIDT2 -2.105939e+01 4.756924e+01 -4.219174 4.679208e-05 4.390459e-04
## TAZ -2.105196e+01 4.737609e+01 -4.147359 6.172330e-05 5.355072e-04
## STMN1 2.104951e+01 3.292449e+01 4.738635 5.764450e-06 9.742725e-05
## UNC93B1 -2.101661e+01 5.683454e+01 -3.175953 1.882453e-03 6.876784e-03
## ARCN1 2.098553e+01 1.004514e+02 3.884857 1.652784e-04 1.107779e-03
## CLN3 -2.096863e+01 5.489069e+01 -3.086207 2.498347e-03 8.598488e-03
## PELI2 2.094922e+01 8.550254e+01 2.565307 1.149327e-02 2.926366e-02
## SURF4 -2.091637e+01 1.022172e+02 -3.654547 3.781486e-04 2.010239e-03
## TBKBP1 -2.090038e+01 4.645333e+01 -3.231695 1.574387e-03 5.954155e-03
## MFSD14A 2.089825e+01 7.224146e+01 3.162313 1.965939e-03 7.103699e-03
## FNDC3A 2.089290e+01 4.673518e+01 3.755292 2.644192e-04 1.546357e-03
## SPINT2 -2.087369e+01 5.487710e+01 -3.081508 2.535245e-03 8.692373e-03
## PSMB6 -2.085430e+01 6.851829e+01 -3.325739 1.158783e-03 4.708177e-03
## AIP -2.080104e+01 4.099780e+01 -4.509413 1.480444e-05 1.911603e-04
## NECAP2 -2.079981e+01 8.799286e+01 -4.942267 2.434130e-06 5.210972e-05
## BTAF1 2.079471e+01 5.556688e+01 3.579351 4.917118e-04 2.450295e-03
## SOD1 -2.078116e+01 5.595933e+01 -3.389849 9.369442e-04 3.987140e-03
## STUB1 -2.075953e+01 2.941626e+01 -4.492790 1.583417e-05 1.997801e-04
## PPP1R12B 2.074372e+01 5.287306e+01 2.804325 5.850579e-03 1.687038e-02
## LMF2 -2.074041e+01 2.634210e+01 -4.480129 1.666451e-05 2.073883e-04
## WBP1 -2.073530e+01 4.403225e+01 -4.747507 5.554537e-06 9.478677e-05
## SNRNP70 -2.072479e+01 6.214085e+01 -4.628185 9.114599e-06 1.368276e-04
## ZNF24 2.069765e+01 1.078281e+02 2.468929 1.490612e-02 3.599428e-02
## SULT1A3 -2.069276e+01 8.117230e+01 -2.746590 6.914206e-03 1.934477e-02
## ATP5ME -2.067733e+01 3.814345e+01 -3.190308 1.798165e-03 6.643687e-03
## B3GNT8 -2.059564e+01 2.107599e+01 -5.393931 3.332826e-07 1.223756e-05
## MMP24OS -2.058306e+01 3.034755e+01 -4.679857 7.362314e-06 1.167340e-04
## NKTR 2.057058e+01 6.373023e+01 3.511511 6.211218e-04 2.909362e-03
## PITPNA -2.051842e+01 1.210846e+02 -2.478472 1.453189e-02 3.525945e-02
## SARNP -2.050495e+01 6.445111e+01 -2.782050 6.241884e-03 1.783610e-02
## EIF4G3 2.048267e+01 5.492458e+01 3.536591 5.699325e-04 2.726664e-03
## PKN2 2.044210e+01 8.184720e+01 2.395581 1.808136e-02 4.207130e-02
## SSNA1 -2.041021e+01 2.442246e+01 -4.777411 4.900130e-06 8.602046e-05
## RCOR1 2.037070e+01 9.074520e+01 2.352353 2.022157e-02 4.596341e-02
## RIC1 2.036287e+01 4.648304e+01 4.568163 1.165811e-05 1.602146e-04
## PPP6R1 -2.031683e+01 7.938191e+01 -4.177720 5.492463e-05 4.938070e-04
## INPP5K -2.030519e+01 6.800043e+01 -3.645162 3.908283e-04 2.062850e-03
## TRAPPC8 2.029397e+01 6.987621e+01 2.827386 5.469185e-03 1.598042e-02
## MIIP -2.022756e+01 3.057718e+01 -4.522461 1.404172e-05 1.839605e-04
## SLC25A28 -2.017275e+01 4.201629e+01 -4.795437 4.542453e-06 8.087910e-05
## FUS -2.016587e+01 1.326888e+02 -2.905596 4.338638e-03 1.325167e-02
## LAT -2.016075e+01 4.094321e+01 -2.877631 4.715617e-03 1.414447e-02
## ECH1 -2.013682e+01 4.688155e+01 -4.055785 8.746078e-05 6.960662e-04
## PTOV1 -2.011846e+01 3.583851e+01 -3.493621 6.602495e-04 3.039813e-03
## PRR14L 2.010876e+01 4.775455e+01 4.617125 9.538940e-06 1.407112e-04
## WDR45 -2.009447e+01 6.259678e+01 -4.228403 4.514569e-05 4.289856e-04
## NUMA1 -2.006057e+01 6.524004e+01 -4.735824 5.832535e-06 9.797999e-05
## MTURN 1.996188e+01 8.618507e+01 2.541415 1.226660e-02 3.086166e-02
## UHRF1BP1L 1.995905e+01 6.272811e+01 2.679775 8.362566e-03 2.255630e-02
## C1GALT1 1.993681e+01 5.852892e+01 3.178353 1.868108e-03 6.838199e-03
## CSNK1G2 -1.992533e+01 4.134168e+01 -5.882360 3.484675e-08 2.736970e-06
## RNF38 1.990595e+01 6.358499e+01 3.058019 2.727363e-03 9.184134e-03
## KIAA2013 -1.990227e+01 8.915603e+01 -2.339709 2.088849e-02 4.717013e-02
## BPTF 1.990045e+01 4.924442e+01 4.381411 2.474401e-05 2.752945e-04
## PDE7A 1.984063e+01 8.462636e+01 3.267951 1.399960e-03 5.449139e-03
## CD81 -1.982050e+01 3.513478e+01 -3.671603 3.560934e-04 1.918286e-03
## MTRNR2L10 -1.980858e+01 4.819139e+01 -2.878690 4.700818e-03 1.411078e-02
## NUP153 1.979880e+01 6.752663e+01 2.603487 1.034805e-02 2.678905e-02
## GIMAP1-GIMAP5 -1.976177e+01 3.764135e+01 -4.370479 2.584217e-05 2.851053e-04
## SLA2 1.974013e+01 4.602632e+01 3.489028 6.706622e-04 3.075814e-03
## NDUFB9 -1.973244e+01 6.045578e+01 -3.002905 3.232160e-03 1.048220e-02
## TOMM6 -1.972367e+01 5.964225e+01 -3.261626 1.429030e-03 5.532774e-03
## PAN3 1.970946e+01 7.822233e+01 2.754266 6.763311e-03 1.900329e-02
## RNF19A 1.969031e+01 6.059115e+01 3.599045 4.591993e-04 2.329895e-03
## HERC1 1.968830e+01 7.746065e+01 3.479941 6.917216e-04 3.145636e-03
## PHF12 1.966138e+01 9.665000e+01 2.468410 1.492672e-02 3.601117e-02
## SEC11C 1.964337e+01 3.590295e+01 2.338462 2.095528e-02 4.728494e-02
## PLEKHM2 -1.963007e+01 4.673070e+01 -5.337439 4.297329e-07 1.473015e-05
## ABI3 -1.962801e+01 2.608378e+01 -4.422145 2.103437e-05 2.454985e-04
## RPS6KB2 -1.961186e+01 4.355116e+01 -3.520156 6.030067e-04 2.848132e-03
## MCRIP1 -1.960878e+01 1.728762e+01 -4.618423 9.488157e-06 1.401364e-04
## PSMF1 -1.958157e+01 7.245226e+01 -5.610644 1.239868e-07 6.151100e-06
## HERC6 1.956895e+01 2.820221e+01 2.479903 1.447647e-02 3.517536e-02
## STK26 1.950128e+01 5.509762e+01 3.960237 1.251168e-04 8.987794e-04
## PARK7 -1.945000e+01 1.207459e+02 -2.574224 1.121605e-02 2.865923e-02
## RPSAP58 -1.943049e+01 4.319015e+01 -2.507216 1.345473e-02 3.317529e-02
## G3BP2 1.940956e+01 8.254191e+01 3.544322 5.549727e-04 2.671257e-03
## ARPP19 1.939168e+01 1.074464e+02 2.565069 1.150074e-02 2.927640e-02
## NAAA -1.937464e+01 5.565332e+01 -3.290802 1.299477e-03 5.138977e-03
## AP1B1 -1.936058e+01 5.288828e+01 -4.259805 3.995011e-05 3.914809e-04
## BIN3 -1.935533e+01 4.934805e+01 -3.800188 2.249650e-04 1.385010e-03
## SLC44A1 1.933902e+01 4.453388e+01 6.762200 4.690270e-10 1.463858e-07
## NRBP1 -1.933343e+01 1.331079e+02 -2.662362 8.782640e-03 2.344409e-02
## GOLGB1 1.932304e+01 6.867235e+01 4.217954 4.701400e-05 4.404314e-04
## VPS13B 1.932133e+01 4.326907e+01 4.062811 8.516864e-05 6.825000e-04
## SIGLEC7 -1.925121e+01 2.992479e+01 -6.615254 9.816386e-10 2.217978e-07
## ANAPC15 -1.924011e+01 3.635041e+01 -3.959470 1.254738e-04 9.002538e-04
## HMGCR 1.921150e+01 8.049557e+01 2.767654 6.507297e-03 1.844123e-02
## NCOA7 1.920315e+01 3.206978e+01 3.010399 3.158796e-03 1.029778e-02
## TMF1 1.920230e+01 6.342939e+01 3.249741 1.485182e-03 5.685686e-03
## CEP350 1.919770e+01 6.702272e+01 3.000883 3.252226e-03 1.052142e-02
## OXSR1 1.918746e+01 7.923882e+01 2.473151 1.473951e-02 3.566836e-02
## VPS4A -1.917176e+01 7.216327e+01 -3.855925 1.837373e-04 1.199958e-03
## TRIM58 1.914333e+01 4.058413e+01 3.019523 3.071547e-03 1.006313e-02
## GPR132 -1.910672e+01 2.743879e+01 -7.095412 8.572033e-11 5.648017e-08
## HMOX2 -1.910058e+01 5.262125e+01 -3.874412 1.717285e-04 1.136627e-03
## PARL -1.905559e+01 3.934935e+01 -5.601259 1.294685e-07 6.340306e-06
## MIA3 1.905444e+01 6.565482e+01 3.439247 7.938849e-04 3.504085e-03
## PQBP1 -1.904990e+01 3.757419e+01 -4.344074 2.869164e-05 3.073919e-04
## FAM32A -1.901711e+01 1.230006e+02 -2.877151 4.722352e-03 1.416108e-02
## ATP8A1 1.901638e+01 3.887458e+01 5.087236 1.300211e-06 3.323384e-05
## FAM241A 1.897317e+01 5.828870e+01 3.460351 7.392547e-04 3.301926e-03
## RUBCN 1.896566e+01 4.736894e+01 4.019525 1.002584e-04 7.655296e-04
## TMEM222 -1.896326e+01 3.463368e+01 -4.242524 4.273365e-05 4.137315e-04
## AP1M1 -1.895539e+01 4.827055e+01 -6.040839 1.638594e-08 1.592929e-06
## USP18 1.892198e+01 1.791235e+01 2.375781 1.903539e-02 4.375189e-02
## LILRB4 -1.891010e+01 4.152024e+01 -3.343639 1.092344e-03 4.488980e-03
## ATRX 1.890835e+01 5.216689e+01 3.614282 4.354491e-04 2.231818e-03
## ETFB -1.889623e+01 2.558850e+01 -3.777336 2.442908e-04 1.467725e-03
## NSMCE1 -1.887628e+01 2.904887e+01 -4.551049 1.250092e-05 1.687932e-04
## CHD7 1.886839e+01 4.486913e+01 2.393932 1.815915e-02 4.220410e-02
## FAM91A1 1.884788e+01 7.974683e+01 2.631981 9.561506e-03 2.513843e-02
## SCARB2 1.878929e+01 4.767871e+01 3.693164 3.299532e-04 1.821809e-03
## SAP30 1.876106e+01 3.269407e+01 2.496341 1.385356e-02 3.398206e-02
## MAN1B1 -1.873345e+01 3.860330e+01 -3.540562 5.622023e-04 2.700575e-03
## NR1H2 -1.872536e+01 3.380674e+01 -5.213676 7.459436e-07 2.228436e-05
## CSRP1 -1.869368e+01 5.188594e+01 -4.173305 5.586655e-05 4.999994e-04
## AGPAT2 -1.866584e+01 2.308495e+01 -4.808418 4.300689e-06 7.811824e-05
## TRAPPC10 1.865330e+01 7.131962e+01 4.158592 5.911875e-05 5.205095e-04
## LY86 -1.864359e+01 3.761406e+01 -4.302344 3.382034e-05 3.440045e-04
## DCTN1 -1.859850e+01 8.389166e+01 -4.316212 3.202514e-05 3.302767e-04
## SLC25A11 -1.858472e+01 3.749459e+01 -6.072898 1.404916e-08 1.461606e-06
## RSL1D1 -1.857807e+01 7.996146e+01 -3.610092 4.418618e-04 2.255911e-03
## STT3B 1.857556e+01 1.144594e+02 2.988302 3.379659e-03 1.085077e-02
## WIPF2 1.855539e+01 6.652457e+01 3.408771 8.795056e-04 3.805522e-03
## SMCR8 1.850241e+01 7.548509e+01 2.745832 6.929272e-03 1.937778e-02
## CD38 1.849832e+01 2.185368e+01 4.958398 2.271301e-06 4.963534e-05
## NDUFA11 -1.848760e+01 2.527139e+01 -3.486074 6.774409e-04 3.100907e-03
## RETREG3 -1.844529e+01 6.969379e+01 -3.152517 2.028001e-03 7.286587e-03
## MCRS1 -1.843783e+01 4.663987e+01 -4.697057 6.854981e-06 1.117485e-04
## MAPK8IP3 -1.843385e+01 2.939884e+01 -7.874219 1.437384e-12 3.409474e-09
## SEPTIN1 -1.843251e+01 3.454141e+01 -2.833092 5.378374e-03 1.576947e-02
## EFCAB14 1.842860e+01 9.661470e+01 3.513979 6.158990e-04 2.894042e-03
## DNAJC4 -1.842709e+01 2.498282e+01 -5.093470 1.265310e-06 3.241162e-05
## PUF60 -1.839041e+01 4.447099e+01 -4.019645 1.002133e-04 7.655296e-04
## PHKG2 -1.838753e+01 3.977870e+01 -4.198725 5.064776e-05 4.627754e-04
## UQCRFS1 -1.837235e+01 6.939107e+01 -3.020687 3.060578e-03 1.003552e-02
## EML3 -1.834513e+01 4.758364e+01 -4.964077 2.216532e-06 4.913658e-05
## AFF4 1.834219e+01 4.742511e+01 3.577052 4.956454e-04 2.464719e-03
## GIGYF1 -1.833247e+01 6.456015e+01 -4.053279 8.829235e-05 6.991095e-04
## C19orf53 -1.832979e+01 3.260124e+01 -3.697843 3.245255e-04 1.801907e-03
## IRAK1 -1.831881e+01 6.347228e+01 -3.690607 3.329561e-04 1.831580e-03
## SP140 1.830691e+01 4.515005e+01 2.744693 6.951969e-03 1.942751e-02
## PRR14 -1.830215e+01 4.328289e+01 -4.168780 5.684797e-05 5.057891e-04
## POLR2J -1.824711e+01 5.636251e+01 -3.346582 1.081770e-03 4.464087e-03
## GALNT2 -1.824047e+01 4.087008e+01 -2.886890 4.587607e-03 1.385284e-02
## C12orf57 -1.823599e+01 1.789455e+01 -3.571727 5.048717e-04 2.495948e-03
## ESYT2 1.823205e+01 5.671876e+01 4.339279 2.924052e-05 3.113890e-04
## SUZ12 1.820865e+01 5.628733e+01 4.569519 1.159371e-05 1.600715e-04
## NR2C2 1.820069e+01 5.029766e+01 3.077716 2.565387e-03 8.772537e-03
## EMC10 -1.818876e+01 3.324849e+01 -4.750146 5.493540e-06 9.415229e-05
## SIGIRR -1.818807e+01 2.176615e+01 -3.832530 2.000816e-04 1.275789e-03
## ZC3H7A 1.818019e+01 5.200075e+01 3.406688 8.856631e-04 3.819549e-03
## LCOR 1.816003e+01 5.215263e+01 3.017833 3.087534e-03 1.010435e-02
## ODC1 1.813879e+01 6.080888e+01 3.357532 1.043258e-03 4.339893e-03
## TOLLIP -1.813754e+01 4.089486e+01 -4.628145 9.116101e-06 1.368276e-04
## CFD -1.813149e+01 2.060355e+01 -3.545353 5.530071e-04 2.665040e-03
## TSC22D1 1.812585e+01 5.140493e+01 3.460489 7.389088e-04 3.301926e-03
## HERC2 1.811934e+01 3.273910e+01 4.393475 2.358432e-05 2.668989e-04
## CDK19 1.811408e+01 5.172317e+01 3.490877 6.664529e-04 3.063617e-03
## GPAA1 -1.811142e+01 2.123605e+01 -4.584295 1.091407e-05 1.548336e-04
## CLTA -1.809125e+01 6.304633e+01 -3.156314 2.003733e-03 7.216602e-03
## LMBRD1 -1.808725e+01 8.372535e+01 -2.487041 1.420299e-02 3.464572e-02
## STX4 -1.808469e+01 5.384012e+01 -4.537421 1.321391e-05 1.758889e-04
## NPEPL1 -1.806075e+01 4.376779e+01 -4.360210 2.691644e-05 2.934831e-04
## UBXN7 1.804566e+01 4.947988e+01 3.812169 2.154229e-04 1.344453e-03
## SRI -1.799917e+01 5.618161e+01 -3.497283 6.520565e-04 3.014654e-03
## SMIM3 1.799728e+01 4.929895e+01 3.026382 3.007429e-03 9.910559e-03
## POU2AF1 1.797550e+01 2.255729e+01 3.814657 2.134899e-04 1.337554e-03
## TRIM33 1.796683e+01 5.967808e+01 3.312267 1.211255e-03 4.876268e-03
## SPAG7 -1.793228e+01 2.973020e+01 -6.044078 1.613349e-08 1.581349e-06
## ARID1A 1.792633e+01 9.428265e+01 2.363831 1.963253e-02 4.485491e-02
## SURF1 -1.792212e+01 5.475207e+01 -3.822699 2.073545e-04 1.305321e-03
## SDF4 -1.791374e+01 4.612987e+01 -5.360303 3.877929e-07 1.364755e-05
## IDH3G -1.791224e+01 3.108879e+01 -5.130972 1.073837e-06 2.868403e-05
## SNRPB -1.790708e+01 7.053258e+01 -2.527487 1.273863e-02 3.178626e-02
## RBM25 1.786538e+01 9.309987e+01 2.552156 1.191332e-02 3.012621e-02
## PDLIM2 -1.786317e+01 3.011743e+01 -5.903775 3.148785e-08 2.575489e-06
## TEX264 -1.785980e+01 3.376475e+01 -4.241000 4.298793e-05 4.155352e-04
## EXOC7 -1.781705e+01 1.037912e+02 -3.720029 2.999215e-04 1.694649e-03
## TIAF1 -1.780848e+01 2.625894e+01 -3.788400 2.347456e-04 1.426272e-03
## OXA1L -1.778730e+01 8.050274e+01 -4.205971 4.924791e-05 4.547660e-04
## SAT2 -1.772715e+01 3.396465e+01 -5.304076 4.989766e-07 1.621332e-05
## FRY 1.772425e+01 5.823806e+01 2.639643 9.359411e-03 2.469654e-02
## BIRC2 1.772018e+01 1.027338e+02 2.377770 1.893761e-02 4.356936e-02
## AAMP -1.771167e+01 4.330290e+01 -6.194270 7.818052e-09 9.272210e-07
## PSMC5 -1.770691e+01 6.931705e+01 -3.112305 2.302319e-03 8.062103e-03
## APC 1.770022e+01 5.278771e+01 2.752851 6.790900e-03 1.907177e-02
## CARS2 -1.769328e+01 3.037522e+01 -7.267471 3.519766e-11 3.316324e-08
## FGFR1OP2 1.768208e+01 7.865893e+01 2.554658 1.183238e-02 2.992793e-02
## AP1G1 1.763865e+01 7.768832e+01 2.514890 1.317949e-02 3.263912e-02
## TESC -1.763397e+01 2.362683e+01 -3.699656 3.224451e-04 1.794556e-03
## ATXN1L 1.760449e+01 4.331353e+01 3.158328 1.990964e-03 7.177154e-03
## RABAC1 -1.758665e+01 2.794759e+01 -3.683962 3.408790e-04 1.863912e-03
## ICAM2 -1.758223e+01 5.028034e+01 -2.441902 1.601314e-02 3.812806e-02
## CYB5R1 -1.757301e+01 5.285440e+01 -3.188625 1.807861e-03 6.667050e-03
## KIF2A 1.752380e+01 7.356831e+01 3.653850 3.790766e-04 2.014269e-03
## TCF20 1.751890e+01 4.303633e+01 4.598600 1.029282e-05 1.490510e-04
## ATG13 -1.745417e+01 1.048043e+02 -3.185809 1.824194e-03 6.711030e-03
## IDH3B -1.745103e+01 5.581112e+01 -3.723432 2.963074e-04 1.681332e-03
## PPP6R2 -1.743933e+01 4.765179e+01 -5.457450 2.499856e-07 1.011887e-05
## ABHD14B -1.741354e+01 2.785926e+01 -3.669931 3.582005e-04 1.924902e-03
## COX6A1 -1.740319e+01 8.649238e+01 -2.527344 1.274355e-02 3.179187e-02
## UBR4 1.739810e+01 1.047262e+02 3.249938 1.484236e-03 5.685686e-03
## RFXANK -1.739066e+01 4.244945e+01 -3.060871 2.703338e-03 9.123959e-03
## UBL7 -1.738224e+01 4.444979e+01 -4.090136 7.678905e-05 6.302548e-04
## TMPO 1.731543e+01 8.012343e+01 3.087131 2.491147e-03 8.576200e-03
## CMTM7 -1.729439e+01 5.335599e+01 -4.740256 5.725528e-06 9.700681e-05
## RBM4 -1.728249e+01 9.074107e+01 -3.386074 9.488177e-04 4.026110e-03
## NDUFB10 -1.727487e+01 3.962241e+01 -2.974930 3.520142e-03 1.121679e-02
## ADIPOR2 1.726768e+01 6.453421e+01 5.764277 6.072965e-08 4.032520e-06
## PRPF4B 1.722355e+01 6.849967e+01 3.603037 4.528616e-04 2.303147e-03
## ZDHHC17 1.717985e+01 5.333495e+01 2.937849 3.938304e-03 1.226905e-02
## PNN 1.717503e+01 9.887861e+01 2.455671 1.544033e-02 3.702433e-02
## BCKDHA -1.715660e+01 3.072037e+01 -5.411213 3.082557e-07 1.153285e-05
## TIA1 1.715055e+01 7.442085e+01 4.049624 8.951909e-05 7.056754e-04
## SAP25 -1.711861e+01 1.959619e+01 -4.260562 3.983220e-05 3.907443e-04
## FMR1 1.710311e+01 5.758137e+01 3.675851 3.507934e-04 1.901467e-03
## XPO7 1.708517e+01 4.926980e+01 4.308718 3.298357e-05 3.381030e-04
## ARAP2 1.706859e+01 4.519780e+01 3.292420 1.292620e-03 5.118690e-03
## SHARPIN -1.701676e+01 1.932599e+01 -5.139857 1.032786e-06 2.796539e-05
## SLC22A15 1.701506e+01 4.100394e+01 2.888727 4.562583e-03 1.379880e-02
## RALGAPB 1.701094e+01 5.390568e+01 4.317717 3.183603e-05 3.296167e-04
## SIPA1L1 1.700675e+01 7.976661e+01 2.559064 1.169101e-02 2.964283e-02
## NAA38 -1.694655e+01 2.271306e+01 -3.979904 1.162819e-04 8.523507e-04
## WDFY1 1.693678e+01 4.960455e+01 3.406565 8.860258e-04 3.819549e-03
## ULK1 -1.690506e+01 5.273353e+01 -2.961724 3.664139e-03 1.161012e-02
## CNTRL 1.690476e+01 5.283669e+01 3.984558 1.142805e-04 8.402766e-04
## RBM33 1.689515e+01 7.705365e+01 3.241545 1.525098e-03 5.808496e-03
## METRNL -1.687047e+01 1.563471e+01 -7.302704 2.930404e-11 3.159509e-08
## NANS -1.686090e+01 2.880041e+01 -5.714715 7.653955e-08 4.655175e-06
## SPTBN1 1.686085e+01 3.219713e+01 4.404687 2.255351e-05 2.575024e-04
## HSD17B10 -1.680462e+01 3.583463e+01 -3.658544 3.728670e-04 1.988401e-03
## AKT2 -1.679806e+01 6.823690e+01 -5.547872 1.654709e-07 7.519098e-06
## HDLBP 1.679605e+01 1.125088e+02 2.619539 9.898062e-03 2.587415e-02
## MYO15B -1.676946e+01 5.486274e+01 -3.509806 6.247546e-04 2.920611e-03
## RANBP9 1.676723e+01 5.218978e+01 2.931546 4.013756e-03 1.244527e-02
## RRP7A -1.675507e+01 3.740405e+01 -3.066521 2.656320e-03 9.008853e-03
## SRPRA 1.674777e+01 1.257673e+02 3.859716 1.812114e-04 1.186729e-03
## ATF6B -1.674200e+01 7.748992e+01 -5.426702 2.873933e-07 1.103167e-05
## TECPR1 -1.673644e+01 3.910663e+01 -6.509893 1.659673e-09 3.226840e-07
## TMED2 1.673548e+01 1.279011e+02 2.559354 1.168175e-02 2.963541e-02
## HELZ 1.672373e+01 4.709536e+01 3.877305 1.699183e-04 1.127717e-03
## RBM42 -1.671501e+01 2.330363e+01 -4.491483 1.591799e-05 2.006242e-04
## GPS2 -1.671245e+01 5.330418e+01 -3.593884 4.675172e-04 2.362486e-03
## MRPL20 -1.666753e+01 3.487864e+01 -3.966804 1.220977e-04 8.813629e-04
## EWSR1 -1.664130e+01 1.511758e+02 -3.970634 1.203693e-04 8.731373e-04
## ATP6AP2 -1.663389e+01 1.315359e+02 -2.546966 1.208287e-02 3.047373e-02
## APEX1 -1.663267e+01 5.645519e+01 -3.759694 2.602774e-04 1.535506e-03
## SNF8 -1.662043e+01 4.642449e+01 -3.809247 2.177134e-04 1.354712e-03
## TXNDC11 1.661719e+01 4.448300e+01 3.406418 8.864637e-04 3.819549e-03
## BRD7 1.661123e+01 9.699937e+01 3.253995 1.464850e-03 5.636964e-03
## TOPORS 1.659350e+01 5.086077e+01 2.655118 8.962969e-03 2.384496e-02
## IDH1 1.658158e+01 6.050865e+01 3.030022 2.973897e-03 9.824631e-03
## PTPN11 1.658068e+01 4.422719e+01 4.483359 1.644873e-05 2.055658e-04
## USP33 1.658062e+01 6.113851e+01 3.836680 1.970846e-04 1.262055e-03
## SNRNP200 1.656486e+01 1.389758e+02 2.656016 8.940419e-03 2.379564e-02
## GGA1 -1.653567e+01 3.310172e+01 -4.553345 1.238452e-05 1.676717e-04
## CHPF2 -1.651879e+01 5.356536e+01 -4.348605 2.818208e-05 3.033388e-04
## TMEM250 -1.648194e+01 3.189680e+01 -5.372668 3.668062e-07 1.306403e-05
## CCAR2 -1.647791e+01 6.108747e+01 -4.312128 3.254411e-05 3.341758e-04
## NUP58 1.646763e+01 6.098182e+01 2.385302 1.857120e-02 4.294296e-02
## EIF3I -1.640626e+01 8.362708e+01 -2.738202 7.082566e-03 1.971202e-02
## PITPNM1 -1.639737e+01 2.469994e+01 -7.409046 1.682170e-11 2.216727e-08
## CBX7 -1.638532e+01 8.334104e+01 -3.003521 3.226076e-03 1.046533e-02
## SETD5 1.637514e+01 5.800582e+01 3.400021 9.056444e-04 3.876197e-03
## ZFP91 1.637462e+01 5.371768e+01 3.515211 6.133070e-04 2.886437e-03
## ADD1 -1.636651e+01 1.611918e+02 -2.546641 1.209356e-02 3.048452e-02
## TBL1XR1 -1.636637e+01 9.219307e+01 -2.509508 1.337200e-02 3.301485e-02
## HK1 -1.636563e+01 1.131243e+02 -2.466189 1.501515e-02 3.617300e-02
## PCNP 1.636270e+01 8.967242e+01 3.383134 9.581608e-04 4.056985e-03
## CAMK1 -1.633786e+01 2.373025e+01 -4.035231 9.450943e-05 7.338596e-04
## DHX9 1.630183e+01 1.185330e+02 2.687729 8.176778e-03 2.213572e-02
## KLHL24 1.629711e+01 4.580787e+01 3.792678 2.311504e-04 1.412835e-03
## SBNO1 1.626596e+01 5.723994e+01 3.510323 6.236520e-04 2.917757e-03
## STMN3 -1.624409e+01 1.759112e+01 -4.580623 1.107924e-05 1.562424e-04
## PITPNC1 -1.624348e+01 3.865031e+01 -6.613322 9.911705e-10 2.217978e-07
## INTS11 -1.619401e+01 3.166988e+01 -4.220403 4.656951e-05 4.379971e-04
## AURKAIP1 -1.616024e+01 2.883187e+01 -3.416240 8.577532e-04 3.731207e-03
## SIRT7 -1.615292e+01 4.780414e+01 -3.490026 6.683855e-04 3.068932e-03
## RNF181 -1.612531e+01 7.283246e+01 -2.376676 1.899134e-02 4.367223e-02
## ADAP1 -1.612134e+01 3.430717e+01 -5.343526 4.181529e-07 1.450086e-05
## RNF31 -1.607352e+01 6.911293e+01 -2.852311 5.082595e-03 1.507743e-02
## UBE4A 1.606861e+01 6.951969e+01 3.009952 3.163125e-03 1.030623e-02
## HGS -1.606620e+01 5.154154e+01 -4.177553 5.495997e-05 4.938070e-04
## DGLUCY 1.605631e+01 9.082943e+01 2.411448 1.734768e-02 4.066881e-02
## PET100 -1.604511e+01 5.337917e+01 -2.368433 1.940064e-02 4.440208e-02
## NEK9 1.603720e+01 7.601523e+01 3.392423 9.289299e-04 3.960140e-03
## DERPC -1.603660e+01 3.455066e+01 -3.639516 3.986502e-04 2.088336e-03
## FHOD1 -1.602725e+01 4.207058e+01 -4.623851 9.278677e-06 1.379011e-04
## CCDC186 1.601503e+01 4.464278e+01 2.881998 4.654846e-03 1.399759e-02
## SIRT2 -1.601494e+01 5.563416e+01 -4.385231 2.437099e-05 2.729367e-04
## ANKFY1 1.599028e+01 5.898861e+01 3.071462 2.615826e-03 8.907177e-03
## BIN1 -1.597971e+01 2.477512e+01 -3.542087 5.592602e-04 2.687531e-03
## RENBP -1.597450e+01 2.630851e+01 -4.921279 2.663038e-06 5.540181e-05
## MEA1 -1.595369e+01 5.827329e+01 -3.406699 8.856310e-04 3.819549e-03
## GNPTG -1.590430e+01 3.084933e+01 -6.208428 7.298715e-09 8.743713e-07
## SPCS3 1.587338e+01 1.342507e+02 2.362257 1.971237e-02 4.501130e-02
## TMEM141 -1.585325e+01 2.084994e+01 -4.451143 1.872648e-05 2.241235e-04
## SLC26A8 1.583858e+01 3.280014e+01 2.787561 6.142922e-03 1.759359e-02
## LHFPL2 1.579092e+01 3.078348e+01 3.287686 1.312770e-03 5.176016e-03
## SAMD8 1.578047e+01 5.824889e+01 2.575985 1.116204e-02 2.856750e-02
## PPFIA1 1.576532e+01 4.560539e+01 3.344007 1.091016e-03 4.486288e-03
## CDK2AP2 -1.571894e+01 2.138118e+01 -4.684797 7.212999e-06 1.154469e-04
## RNF187 -1.570927e+01 3.671700e+01 -3.611976 4.389665e-04 2.244995e-03
## TCP11L2 1.564840e+01 3.490892e+01 3.292734 1.291295e-03 5.115150e-03
## ASH1L 1.564714e+01 4.233724e+01 3.492005 6.638952e-04 3.055412e-03
## AATK -1.564530e+01 2.784013e+01 -4.268739 3.858014e-05 3.813004e-04
## ADSS2 1.563989e+01 5.848943e+01 2.808640 5.777433e-03 1.669599e-02
## YY1 1.563206e+01 1.061422e+02 3.073322 2.600725e-03 8.871037e-03
## ANP32E 1.562603e+01 4.607049e+01 4.625787 9.205014e-06 1.373226e-04
## FCHO1 -1.559407e+01 2.976469e+01 -5.083351 1.322428e-06 3.365664e-05
## BBX 1.559064e+01 3.457360e+01 4.546733 1.272263e-05 1.710457e-04
## CYC1 -1.558949e+01 3.715765e+01 -3.642144 3.949904e-04 2.076501e-03
## RNPEP -1.557433e+01 7.660925e+01 -2.720982 7.439955e-03 2.055390e-02
## FRYL 1.556451e+01 4.537357e+01 4.322879 3.119514e-05 3.245389e-04
## ANKRD28 1.554861e+01 4.109088e+01 2.436750 1.623228e-02 3.854152e-02
## ADORA2A -1.553346e+01 2.737159e+01 -3.944147 1.328171e-04 9.398629e-04
## SEMA4B -1.552842e+01 6.337355e+01 -2.889369 4.553877e-03 1.378132e-02
## KRTCAP2 -1.552190e+01 3.171061e+01 -2.957841 3.707494e-03 1.172870e-02
## DHFR 1.550792e+01 2.806569e+01 4.660244 7.985192e-06 1.247752e-04
## KCTD2 -1.550255e+01 7.947674e+01 -3.122533 2.229455e-03 7.859378e-03
## VPS39 1.547003e+01 9.002657e+01 3.802870 2.227952e-04 1.376941e-03
## RCN3 -1.546904e+01 1.853455e+01 -5.296353 5.164936e-07 1.667120e-05
## RTRAF -1.546342e+01 7.284550e+01 -2.895932 4.465671e-03 1.356978e-02
## LONP2 1.543477e+01 4.934011e+01 2.690960 8.102394e-03 2.196945e-02
## TSPAN33 -1.541919e+01 4.558144e+01 -2.382832 1.869069e-02 4.314354e-02
## PRPF40A 1.540880e+01 9.444992e+01 2.585650 1.086964e-02 2.794578e-02
## SET 1.540792e+01 1.590795e+02 2.312268 2.240299e-02 4.981248e-02
## COQ8A -1.538108e+01 3.535968e+01 -4.122220 6.795582e-05 5.746755e-04
## XKR8 -1.536505e+01 8.095189e+01 -2.315677 2.220969e-02 4.947539e-02
## C1QA -1.534429e+01 1.742241e+01 -2.671856 8.551286e-03 2.295050e-02
## TET3 1.532638e+01 6.028762e+01 2.446178 1.583329e-02 3.776046e-02
## ST3GAL1 1.523357e+01 7.788900e+01 3.262075 1.426947e-03 5.527270e-03
## ZGPAT -1.519889e+01 2.003335e+01 -5.764200 6.075164e-08 4.032520e-06
## RC3H2 1.515024e+01 5.048998e+01 4.049186 8.966718e-05 7.056754e-04
## LILRB1 -1.514468e+01 4.010830e+01 -2.679185 8.376480e-03 2.257842e-02
## USP8 1.513803e+01 6.292121e+01 3.238434 1.540509e-03 5.848409e-03
## RB1 1.512702e+01 4.613643e+01 3.478362 6.954424e-04 3.157713e-03
## DPP8 1.511930e+01 4.744703e+01 4.087412 7.758746e-05 6.361041e-04
## USP24 1.510426e+01 4.766086e+01 4.463307 1.783285e-05 2.164766e-04
## LSM10 -1.509239e+01 5.713971e+01 -3.169320 1.922630e-03 6.981509e-03
## HECTD1 1.508732e+01 4.431339e+01 4.078646 8.021169e-05 6.511367e-04
## HVCN1 -1.508029e+01 4.399802e+01 -4.002300 1.069466e-04 7.982292e-04
## NDUFB11 -1.507918e+01 3.412486e+01 -2.490051 1.408904e-02 3.442440e-02
## PSME3 1.507590e+01 9.448871e+01 2.567765 1.141623e-02 2.910501e-02
## ARPC4-TTLL3 -1.503626e+01 3.585958e+01 -4.296910 3.454976e-05 3.496247e-04
## SLTM 1.503441e+01 9.324867e+01 2.597463 1.052165e-02 2.717464e-02
## SPEN 1.498927e+01 5.806554e+01 2.732467 7.199824e-03 1.998550e-02
## RHBDD2 -1.497618e+01 3.706205e+01 -3.198497 1.751662e-03 6.510407e-03
## C2orf88 1.496487e+01 3.627545e+01 4.169650 5.665803e-05 5.048567e-04
## BTN2A2 1.493925e+01 3.296008e+01 4.328906 3.046265e-05 3.197230e-04
## RPS19BP1 -1.492991e+01 2.785257e+01 -3.847628 1.893830e-04 1.225359e-03
## RSBN1L 1.492971e+01 6.680096e+01 2.465177 1.505560e-02 3.625362e-02
## ATP6V0C -1.492779e+01 5.574234e+01 -2.475758 1.463744e-02 3.546374e-02
## CYB561A3 -1.490713e+01 4.109154e+01 -4.690038 7.057796e-06 1.139407e-04
## DBI -1.490688e+01 9.614689e+01 -2.528880 1.269069e-02 3.169333e-02
## SOS1 1.490570e+01 3.596716e+01 4.798787 4.478826e-06 8.011896e-05
## PEA15 -1.489901e+01 5.234471e+01 -2.936021 3.960049e-03 1.232708e-02
## PSMC3 -1.488471e+01 4.726482e+01 -3.169461 1.921765e-03 6.980747e-03
## SMAD2 1.487953e+01 8.402819e+01 3.345210 1.086687e-03 4.476592e-03
## CLEC2D 1.487806e+01 5.965721e+01 2.546444 1.210004e-02 3.049436e-02
## DAD1 1.487407e+01 9.216252e+01 3.166672 1.938891e-03 7.027889e-03
## PCED1A -1.485852e+01 2.710439e+01 -3.914365 1.482778e-04 1.018283e-03
## DENND4B -1.485356e+01 1.012668e+02 -3.649364 3.851020e-04 2.041712e-03
## PHC3 1.483847e+01 4.706296e+01 4.027830 9.717825e-05 7.488850e-04
## CDC26 -1.483632e+01 4.956672e+01 -3.752325 2.672446e-04 1.558270e-03
## C11orf68 -1.483281e+01 4.894142e+01 -2.882066 4.653901e-03 1.399759e-02
## ME2 1.483109e+01 7.556347e+01 2.313588 2.232799e-02 4.969160e-02
## DDX21 1.482585e+01 4.772051e+01 2.578463 1.108639e-02 2.839840e-02
## NOTCH1 -1.482408e+01 7.588455e+01 -2.468789 1.491167e-02 3.599428e-02
## C20orf27 -1.482080e+01 2.245078e+01 -3.055762 2.746516e-03 9.240759e-03
## ZFC3H1 1.479983e+01 5.988510e+01 3.046168 2.829322e-03 9.442230e-03
## GTF3C5 -1.478599e+01 3.660590e+01 -4.015206 1.018968e-04 7.746772e-04
## NAA50 1.477031e+01 9.630966e+01 2.679611 8.366438e-03 2.255648e-02
## SLFN11 1.475333e+01 3.929425e+01 3.828543 2.030009e-04 1.285947e-03
## ZRANB1 1.475332e+01 3.288000e+01 3.695466 3.272719e-04 1.812912e-03
## BABAM1 -1.475253e+01 4.057294e+01 -3.290894 1.299084e-03 5.138977e-03
## U2SURP 1.474926e+01 5.825129e+01 4.154392 6.007992e-05 5.250906e-04
## SAP30BP -1.471843e+01 6.242850e+01 -3.974636 1.185884e-04 8.649807e-04
## NAGA -1.468795e+01 5.467961e+01 -3.312985 1.208403e-03 4.866438e-03
## CCDC93 1.466927e+01 4.769011e+01 4.145038 6.227493e-05 5.379320e-04
## MDM4 1.466915e+01 5.477261e+01 3.483424 6.835765e-04 3.120561e-03
## AVL9 1.466257e+01 6.014709e+01 2.943035 3.877195e-03 1.213286e-02
## NDUFB2 -1.465957e+01 3.145912e+01 -2.897128 4.449767e-03 1.353532e-02
## ELOF1 -1.465827e+01 3.308626e+01 -4.330369 3.028738e-05 3.192963e-04
## PLSCR3 -1.464699e+01 2.927789e+01 -3.974372 1.187050e-04 8.652989e-04
## RNPS1 -1.462666e+01 4.826228e+01 -3.369889 1.001339e-03 4.199393e-03
## ZBTB38 1.462599e+01 3.039728e+01 4.482496 1.650609e-05 2.058489e-04
## BICRAL 1.462595e+01 4.974306e+01 2.943707 3.869333e-03 1.211145e-02
## ZZEF1 1.461123e+01 7.937154e+01 2.750285 6.841187e-03 1.918120e-02
## USF3 1.460143e+01 3.340978e+01 3.646650 3.887911e-04 2.057798e-03
## NUDT4B 1.458881e+01 4.657074e+01 4.007775 1.047760e-04 7.904853e-04
## SPATS2L 1.458862e+01 1.667069e+01 2.614691 1.003207e-02 2.614450e-02
## FLCN 1.458787e+01 4.531634e+01 3.047565 2.817123e-03 9.414222e-03
## AP2A1 -1.458013e+01 3.873160e+01 -6.447800 2.257671e-09 4.183747e-07
## CLIC4 1.457501e+01 3.683004e+01 4.283326 3.643987e-05 3.644050e-04
## SRGAP2 1.456537e+01 3.942572e+01 3.567903 5.115965e-04 2.518468e-03
## MTHFD2 1.454089e+01 4.943303e+01 2.738622 7.074048e-03 1.969904e-02
## VPS37B -1.453474e+01 5.135728e+01 -3.014178 3.122383e-03 1.020432e-02
## VRK3 -1.450263e+01 5.842421e+01 -3.656121 3.760597e-04 2.000602e-03
## PPDPF -1.447162e+01 1.495431e+01 -3.996049 1.094779e-04 8.140492e-04
## JADE1 -1.447067e+01 5.746459e+01 -3.174220 1.892875e-03 6.903291e-03
## POLR1D -1.446756e+01 6.077475e+01 -4.053473 8.822781e-05 6.991095e-04
## E2F4 -1.446481e+01 7.390580e+01 -3.370174 1.000389e-03 4.196960e-03
## INPP4A 1.446262e+01 5.956502e+01 4.044191 9.137268e-05 7.167196e-04
## PALM2AKAP2 1.440982e+01 1.760557e+01 6.372235 3.277181e-09 5.031301e-07
## HEATR5B 1.440003e+01 3.040281e+01 4.850288 3.602943e-06 6.892081e-05
## SYNRG 1.438899e+01 4.828859e+01 4.272648 3.799510e-05 3.764594e-04
## AKAP8L -1.437428e+01 5.281197e+01 -4.638795 8.724722e-06 1.324391e-04
## TOR4A -1.436832e+01 2.554924e+01 -5.978529 2.207178e-08 1.924789e-06
## BCL7B -1.436439e+01 4.130552e+01 -3.496501 6.537968e-04 3.019482e-03
## CUTA -1.435618e+01 3.048356e+01 -2.430773 1.648984e-02 3.902514e-02
## SUPT5H -1.434800e+01 7.357200e+01 -2.334563 2.116541e-02 4.769557e-02
## GBGT1 -1.434697e+01 1.311994e+01 -8.608852 2.704926e-14 3.208042e-10
## RABL6 -1.434425e+01 2.391767e+01 -4.103785 7.290456e-05 6.047737e-04
## CUEDC2 -1.434292e+01 3.129498e+01 -4.465333 1.768809e-05 2.156956e-04
## UQCR10 -1.433678e+01 4.208845e+01 -3.049793 2.797766e-03 9.372367e-03
## HPS1 -1.433163e+01 6.547653e+01 -3.007802 3.184047e-03 1.034881e-02
## DYNLL1 -1.433010e+01 7.980739e+01 -2.360510 1.980137e-02 4.516235e-02
## NDUFA3 -1.430936e+01 1.969129e+01 -4.182483 5.392533e-05 4.867233e-04
## RASA4 -1.428921e+01 2.263613e+01 -3.951809 1.290957e-04 9.195644e-04
## CDK17 1.427746e+01 3.502346e+01 4.153417 6.030523e-05 5.254897e-04
## ZBTB37 1.427430e+01 4.558402e+01 3.209135 1.692928e-03 6.347810e-03
## ISY1 -1.426847e+01 5.001492e+01 -3.779157 2.426952e-04 1.458877e-03
## MED15 -1.422927e+01 3.682910e+01 -4.837715 3.800028e-06 7.173184e-05
## CWF19L1 -1.420237e+01 5.329476e+01 -3.861942 1.797438e-04 1.179072e-03
## C9orf16 -1.420213e+01 1.389679e+01 -4.216587 4.726374e-05 4.424214e-04
## EAF1 1.419949e+01 3.598020e+01 3.282025 1.337245e-03 5.260127e-03
## CDK14 1.419179e+01 2.908659e+01 3.810470 2.167522e-04 1.350148e-03
## IGBP1 -1.418758e+01 9.315010e+01 -3.639638 3.984791e-04 2.088336e-03
## SH3TC1 -1.417935e+01 1.552069e+01 -6.370273 3.308950e-09 5.031301e-07
## KDM6A 1.417839e+01 5.067786e+01 2.755234 6.744505e-03 1.896842e-02
## CLCN7 -1.417343e+01 2.415015e+01 -4.370800 2.580931e-05 2.850078e-04
## NDUFB7 -1.417303e+01 1.281657e+01 -4.047585 9.021032e-05 7.094790e-04
## MAP2K1 1.417122e+01 6.019692e+01 3.232140 1.572132e-03 5.947523e-03
## TFDP1 1.416576e+01 5.232525e+01 3.136702 2.132048e-03 7.591213e-03
## ADNP 1.413843e+01 6.282001e+01 3.715386 3.049198e-04 1.717165e-03
## HSPD1 1.413427e+01 7.123412e+01 3.555441 5.341050e-04 2.599990e-03
## TMEM205 -1.410288e+01 2.900078e+01 -3.989236 1.123015e-04 8.293246e-04
## B3GAT3 -1.409900e+01 1.835872e+01 -4.183797 5.365278e-05 4.846321e-04
## NDUFB8 -1.409827e+01 4.772423e+01 -2.849914 5.118647e-03 1.515028e-02
## SLC38A10 -1.407851e+01 4.034945e+01 -3.352268 1.061606e-03 4.394641e-03
## FAM78A -1.407812e+01 5.976105e+01 -3.178528 1.867070e-03 6.837154e-03
## PLD3 -1.406250e+01 3.540101e+01 -3.657433 3.743281e-04 1.994399e-03
## SUDS3 1.405552e+01 4.831490e+01 3.856339 1.834595e-04 1.198804e-03
## ATG4B -1.405355e+01 3.126570e+01 -5.111481 1.169534e-06 3.059768e-05
## GLS 1.404687e+01 6.555293e+01 3.517101 6.093516e-04 2.871239e-03
## SMC3 1.402844e+01 4.415372e+01 4.568199 1.165639e-05 1.602146e-04
## TRAF7 -1.402147e+01 3.146933e+01 -5.912939 3.014949e-08 2.483145e-06
## BCL2L11 1.400907e+01 6.230889e+01 2.434744 1.631832e-02 3.868396e-02
## BRAF 1.398326e+01 4.499659e+01 3.173893 1.894845e-03 6.908349e-03
## NAA10 -1.394252e+01 2.821516e+01 -4.054698 8.782076e-05 6.980927e-04
## VPS18 -1.393697e+01 3.883587e+01 -3.376050 9.810316e-04 4.133227e-03
## TBC1D1 1.392559e+01 8.625291e+01 2.365931 1.952638e-02 4.465539e-02
## CD7 -1.391468e+01 1.269969e+01 -3.640714 3.969773e-04 2.083253e-03
## IRF4 1.387643e+01 2.002576e+01 3.940554 1.345976e-04 9.501953e-04
## ROCK2 1.387596e+01 2.984139e+01 4.335889 2.963456e-05 3.146138e-04
## TOPBP1 1.387550e+01 4.816746e+01 4.056988 8.706419e-05 6.939390e-04
## IMPDH2 -1.387424e+01 3.910486e+01 -3.391550 9.316428e-04 3.970278e-03
## CHUK 1.387007e+01 5.250260e+01 2.511671 1.329434e-02 3.284811e-02
## GIMAP1 -1.386165e+01 3.657418e+01 -4.205116 4.941106e-05 4.553342e-04
## ANAPC13 1.385721e+01 5.842393e+01 3.131657 2.166272e-03 7.671540e-03
## IRF5 -1.383131e+01 5.233745e+01 -2.747457 6.897010e-03 1.930577e-02
## RANGAP1 -1.381950e+01 2.825330e+01 -3.567810 5.117628e-04 2.518468e-03
## ARRDC1 -1.380806e+01 2.473697e+01 -5.679490 9.016217e-08 5.081370e-06
## CASP3 1.380364e+01 5.589537e+01 4.394929 2.344811e-05 2.661192e-04
## UBTF -1.379778e+01 8.486721e+01 -3.707639 3.134355e-04 1.757623e-03
## FAM53B -1.378911e+01 6.358495e+01 -3.802120 2.233994e-04 1.378521e-03
## HS1BP3 -1.378633e+01 3.926229e+01 -3.678089 3.480312e-04 1.891682e-03
## NDUFC2 -1.377495e+01 2.833184e+01 -4.496585 1.559317e-05 1.980063e-04
## MYBL2 1.377393e+01 1.552904e+01 3.514595 6.146021e-04 2.890238e-03
## CEP97 1.374686e+01 1.919710e+01 3.315485 1.198524e-03 4.838154e-03
## ABLIM3 1.374245e+01 2.660013e+01 3.634207 4.061381e-04 2.116576e-03
## TSSC4 -1.373482e+01 1.449539e+01 -4.188730 5.264138e-05 4.776793e-04
## ARHGEF12 1.373407e+01 2.203827e+01 4.931319 2.551044e-06 5.412413e-05
## BRAT1 -1.373363e+01 1.303038e+01 -6.364075 3.411324e-09 5.121304e-07
## ACLY 1.373248e+01 6.642809e+01 4.023006 9.895593e-05 7.585778e-04
## ZNF207 1.373173e+01 8.861035e+01 2.496783 1.383714e-02 3.394878e-02
## TMEM115 -1.371302e+01 2.430034e+01 -5.411419 3.079686e-07 1.153285e-05
## RAPGEF6 1.371101e+01 3.986585e+01 3.513785 6.163088e-04 2.894821e-03
## FBXL20 1.370828e+01 4.423513e+01 3.204114 1.720419e-03 6.414389e-03
## VPS13D 1.366847e+01 3.948155e+01 4.167343 5.716319e-05 5.070721e-04
## SGTA -1.365416e+01 2.309352e+01 -5.271921 5.759600e-07 1.816725e-05
## KXD1 -1.363508e+01 5.303491e+01 -3.899352 1.567078e-04 1.062638e-03
## RHOF -1.362774e+01 3.008967e+01 -3.693973 3.290092e-04 1.820093e-03
## TNFSF8 1.359894e+01 4.500588e+01 3.545050 5.535850e-04 2.666742e-03
## DHX15 1.359610e+01 5.893604e+01 4.607221 9.935100e-06 1.447546e-04
## TOX4 1.358869e+01 9.386951e+01 2.381148 1.877249e-02 4.328182e-02
## DNAJC8 -1.356839e+01 8.880909e+01 -3.032988 2.946844e-03 9.754275e-03
## NFYA 1.356501e+01 5.633768e+01 2.742041 7.005054e-03 1.955282e-02
## VAMP1 1.354868e+01 5.703691e+01 3.621539 4.245491e-04 2.192056e-03
## GNPTAB 1.354036e+01 4.090593e+01 3.880969 1.676520e-04 1.120199e-03
## ARIH1 1.353023e+01 5.536855e+01 3.596493 4.632951e-04 2.345147e-03
## NCAPD2 1.350116e+01 3.616550e+01 5.790851 5.362082e-08 3.697343e-06
## NSF 1.346555e+01 4.643718e+01 4.536314 1.327348e-05 1.761971e-04
## NRAS 1.346439e+01 5.229278e+01 3.346313 1.082733e-03 4.464957e-03
## SLC2A6 -1.344060e+01 1.438559e+01 -5.033940 1.639374e-06 3.951510e-05
## ARFRP1 -1.343306e+01 1.691713e+01 -4.729661 5.984587e-06 9.960793e-05
## MYSM1 1.342306e+01 3.101399e+01 3.842163 1.931911e-04 1.244007e-03
## HNRNPLL 1.341577e+01 3.087377e+01 5.239657 6.648065e-07 2.042644e-05
## STT3A 1.340048e+01 4.161521e+01 3.866749 1.766126e-04 1.161241e-03
## CERK -1.339318e+01 8.355223e+01 -3.346463 1.082194e-03 4.464285e-03
## IREB2 1.339051e+01 5.079464e+01 3.604474 4.505991e-04 2.293607e-03
## PDS5A 1.338793e+01 4.995416e+01 3.855394 1.840935e-04 1.201623e-03
## NCOA6 1.337801e+01 4.195751e+01 3.738596 2.807004e-04 1.613721e-03
## MAL -1.336019e+01 1.532058e+01 -3.353145 1.058530e-03 4.383437e-03
## EIF4E2 -1.335437e+01 7.844089e+01 -3.931878 1.389906e-04 9.716912e-04
## PURB 1.334991e+01 4.766740e+01 3.854803 1.844915e-04 1.202897e-03
## PLCL2 1.334697e+01 8.763922e+01 2.335558 2.111164e-02 4.759248e-02
## CCS -1.334222e+01 1.625326e+01 -4.348575 2.818544e-05 3.033388e-04
## HNRNPR 1.332925e+01 7.475318e+01 3.380136 9.677785e-04 4.083192e-03
## UGGT1 1.331014e+01 6.859581e+01 2.931636 4.012670e-03 1.244515e-02
## TRAM2 1.330935e+01 1.831649e+01 5.315099 4.749736e-07 1.577923e-05
## TRADD -1.329416e+01 2.889772e+01 -3.832853 1.998468e-04 1.274978e-03
## WASHC2A 1.329008e+01 5.737396e+01 3.731732 2.876664e-04 1.642118e-03
## HIPK2 1.324755e+01 3.288403e+01 2.929787 4.035051e-03 1.250149e-02
## DCTN3 -1.322740e+01 3.742373e+01 -3.204934 1.715904e-03 6.401581e-03
## CYCS 1.321171e+01 4.779386e+01 4.588844 1.071266e-05 1.530749e-04
## CD300C -1.320832e+01 1.878104e+01 -5.944251 2.598460e-08 2.185655e-06
## SRP72 1.320828e+01 5.232833e+01 3.888476 1.630976e-04 1.097808e-03
## NIBAN2 -1.320104e+01 2.647380e+01 -4.265650 3.904867e-05 3.849686e-04
## CD226 1.320035e+01 3.589041e+01 3.929059 1.404473e-04 9.798262e-04
## LYL1 -1.318202e+01 1.800618e+01 -3.662576 3.676099e-04 1.964783e-03
## USP20 -1.317580e+01 3.525384e+01 -3.685753 3.387259e-04 1.855561e-03
## MED1 1.316425e+01 3.488881e+01 4.995911 1.932503e-06 4.441760e-05
## SEC11A -1.313592e+01 1.105663e+02 -2.375078 1.907007e-02 4.380613e-02
## BCL7C -1.313527e+01 1.304869e+01 -3.208789 1.694811e-03 6.352865e-03
## RAB11FIP4 -1.312034e+01 7.769235e+01 -2.514455 1.319496e-02 3.266380e-02
## CPSF2 1.310789e+01 5.700730e+01 3.717576 3.025528e-04 1.706265e-03
## DUSP22 -1.310601e+01 8.623116e+01 -2.895500 4.471422e-03 1.358378e-02
## INTS6 1.310038e+01 5.530760e+01 2.603733 1.034104e-02 2.678905e-02
## RBBP6 1.307451e+01 4.084993e+01 4.166051 5.744808e-05 5.080792e-04
## RTF1 1.306007e+01 6.566072e+01 3.238541 1.539973e-03 5.848249e-03
## RBM10 -1.304823e+01 3.476605e+01 -4.902339 2.887462e-06 5.894199e-05
## SCP2 1.304611e+01 5.528480e+01 3.712919 3.076075e-04 1.729836e-03
## PRUNE1 1.303988e+01 4.397889e+01 4.099793 7.402069e-05 6.130484e-04
## INTS8 1.303004e+01 6.157028e+01 2.861672 4.943980e-03 1.472516e-02
## AKAP10 1.301872e+01 5.595202e+01 2.898452 4.432226e-03 1.349235e-02
## MCM6 1.300644e+01 2.082129e+01 8.119125 3.863965e-13 1.759204e-09
## RAVER1 -1.300461e+01 3.064898e+01 -4.050450 8.924038e-05 7.041855e-04
## PCNA 1.299447e+01 3.390473e+01 4.456121 1.835567e-05 2.210862e-04
## TMED10 1.298420e+01 1.198959e+02 2.628539 9.653569e-03 2.534115e-02
## ABCG1 1.297776e+01 3.368594e+01 2.716207 7.541917e-03 2.075340e-02
## CORO1B -1.295699e+01 2.380160e+01 -3.793311 2.306228e-04 1.410617e-03
## ATP8B4 1.295592e+01 2.685775e+01 2.582953 1.095054e-02 2.810534e-02
## SGSM3 -1.294812e+01 2.723509e+01 -4.963013 2.226697e-06 4.919486e-05
## LTN1 1.294796e+01 3.265337e+01 3.873604 1.722375e-04 1.138649e-03
## JARID2 1.294793e+01 5.002538e+01 2.837485 5.309416e-03 1.561748e-02
## SMC4 1.294286e+01 3.347087e+01 5.935408 2.709984e-08 2.263409e-06
## PYGB -1.293330e+01 3.795660e+01 -3.966383 1.222895e-04 8.816741e-04
## MCFD2 1.291884e+01 4.247083e+01 4.747790 5.547951e-06 9.478677e-05
## EPC1 1.291617e+01 5.822345e+01 3.405668 8.886913e-04 3.824339e-03
## POU2F2 -1.288760e+01 6.306457e+01 -2.420854 1.692533e-02 3.987290e-02
## FRG1 -1.284361e+01 4.000742e+01 -4.484908 1.634627e-05 2.045008e-04
## AATF -1.284334e+01 5.585634e+01 -4.817398 4.140796e-06 7.661442e-05
## UBE2G1 1.283328e+01 5.955070e+01 3.206576 1.706892e-03 6.382011e-03
## SESTD1 1.281517e+01 2.891688e+01 4.301937 3.387439e-05 3.442590e-04
## ST14 -1.281479e+01 2.232159e+01 -4.339643 2.919852e-05 3.113890e-04
## PDAP1 -1.280910e+01 7.026995e+01 -2.952598 3.766791e-03 1.186249e-02
## GALNT7 1.279350e+01 3.724127e+01 2.957020 3.716723e-03 1.174849e-02
## TRPM2 -1.278587e+01 2.399374e+01 -3.036693 2.913356e-03 9.667713e-03
## HIRA 1.278372e+01 3.862961e+01 5.481503 2.240818e-07 9.324948e-06
## SH3BGRL2 1.278260e+01 3.740755e+01 2.402380 1.776365e-02 4.145551e-02
## MKI67 1.277033e+01 1.319601e+01 6.361466 3.455360e-09 5.122571e-07
## ABHD17A -1.276787e+01 1.314446e+01 -5.482182 2.233899e-07 9.324948e-06
## GPATCH2L 1.275827e+01 4.436338e+01 3.850922 1.871220e-04 1.214706e-03
## RIPOR1 -1.272287e+01 3.157259e+01 -5.739440 6.820478e-08 4.325715e-06
## DNAJC7 -1.271249e+01 7.539283e+01 -3.406697 8.856346e-04 3.819549e-03
## MXD4 -1.271249e+01 2.061608e+01 -4.576308 1.127652e-05 1.578979e-04
## SGSM2 -1.271225e+01 2.487688e+01 -6.265800 5.520014e-09 7.274151e-07
## UBQLN1 1.271021e+01 8.366452e+01 2.530100 1.264886e-02 3.164216e-02
## SUMF1 -1.269296e+01 2.799574e+01 -5.817707 4.726742e-08 3.397525e-06
## DNAJB14 1.266922e+01 4.928187e+01 2.821681 5.561356e-03 1.620174e-02
## SGSH -1.266773e+01 2.312408e+01 -4.729515 5.988234e-06 9.960793e-05
## SEC13 -1.265889e+01 5.413360e+01 -3.457092 7.474534e-04 3.330254e-03
## KTN1 1.265457e+01 6.916742e+01 3.190108 1.799313e-03 6.644304e-03
## GADD45GIP1 -1.264300e+01 1.349253e+01 -3.054000 2.761548e-03 9.274456e-03
## EIF3B -1.263588e+01 5.184686e+01 -2.656662 8.924253e-03 2.377395e-02
## USO1 1.263038e+01 4.623941e+01 4.004582 1.060369e-04 7.954447e-04
## YWHAQ 1.262566e+01 1.029340e+02 2.782008 6.242636e-03 1.783610e-02
## ZER1 -1.261837e+01 4.875429e+01 -3.277373 1.357682e-03 5.318668e-03
## SRRT -1.261458e+01 4.574573e+01 -3.506640 6.315543e-04 2.944274e-03
## WWP2 -1.261369e+01 9.005559e+01 -2.446303 1.582805e-02 3.775557e-02
## CPEB2 1.259941e+01 3.367483e+01 2.926665 4.073109e-03 1.260294e-02
## KANSL1 1.259269e+01 5.360751e+01 3.249489 1.486394e-03 5.688490e-03
## KDM1B 1.259060e+01 4.592843e+01 2.819231 5.601383e-03 1.630243e-02
## PSMD9 -1.258903e+01 4.157325e+01 -3.490463 6.673921e-04 3.065558e-03
## DGCR6L -1.258260e+01 1.389479e+01 -3.788022 2.350652e-04 1.426752e-03
## MAEA -1.256151e+01 5.262908e+01 -2.871747 4.798674e-03 1.435366e-02
## SPCS2 1.254638e+01 6.406968e+01 3.456741 7.483419e-04 3.332833e-03
## PES1 -1.253964e+01 2.375141e+01 -4.162712 5.819032e-05 5.131131e-04
## TCEA1 1.252521e+01 6.240201e+01 4.619229 9.456778e-06 1.399545e-04
## GPS1 -1.251059e+01 2.055775e+01 -3.870123 1.744465e-04 1.150047e-03
## FKBP11 1.250975e+01 2.263391e+01 2.525323 1.281340e-02 3.190571e-02
## FAM13B 1.250955e+01 4.654983e+01 3.467524 7.215030e-04 3.246216e-03
## FBH1 1.250903e+01 5.344644e+01 6.391861 2.975444e-09 4.834077e-07
## GCC2 1.250110e+01 3.305878e+01 3.548285 5.474501e-04 2.645786e-03
## AP5Z1 -1.248864e+01 2.355558e+01 -4.987397 2.004800e-06 4.546258e-05
## TECR -1.247935e+01 2.935526e+01 -2.399044 1.791893e-02 4.174395e-02
## PRDM2 1.247347e+01 5.794222e+01 2.602043 1.038944e-02 2.688606e-02
## ZNF316 -1.247030e+01 3.979331e+01 -4.019850 1.001359e-04 7.655296e-04
## SH3GLB2 -1.246789e+01 2.797316e+01 -3.514982 6.137886e-04 2.887557e-03
## TBC1D22A -1.246106e+01 3.013958e+01 -5.828431 4.494212e-08 3.310643e-06
## AGAP2 -1.245511e+01 5.163394e+01 -3.201202 1.736553e-03 6.469543e-03
## BORCS8 -1.241415e+01 2.273991e+01 -4.226111 4.554921e-05 4.306581e-04
## MAN2C1 -1.241110e+01 4.115284e+01 -2.488444 1.414975e-02 3.455062e-02
## FIBP -1.239942e+01 3.238332e+01 -3.431833 8.139636e-04 3.576735e-03
## TAB3 1.238691e+01 3.729086e+01 3.759603 2.603628e-04 1.535506e-03
## POLR2G -1.237773e+01 4.910076e+01 -3.518309 6.068347e-04 2.861654e-03
## PCIF1 -1.237342e+01 4.536989e+01 -3.878708 1.690473e-04 1.126177e-03
## KCNK6 -1.237331e+01 3.633130e+01 -4.757048 5.337048e-06 9.200202e-05
## RBBP4 1.235365e+01 8.173500e+01 3.313369 1.206880e-03 4.863126e-03
## DUS1L -1.234602e+01 2.322127e+01 -3.728565 2.909349e-04 1.658888e-03
## ANKZF1 -1.231795e+01 4.886287e+01 -3.911358 1.499311e-04 1.026665e-03
## GET3 -1.229133e+01 4.197249e+01 -3.079896 2.548017e-03 8.728908e-03
## ANKRD17 1.228875e+01 3.976812e+01 3.564445 5.177512e-04 2.539507e-03
## PARP6 1.228659e+01 4.794632e+01 4.346948 2.836742e-05 3.044684e-04
## UBAC2 -1.226346e+01 6.960979e+01 -3.772439 2.486324e-04 1.484183e-03
## MGAT4A 1.226287e+01 5.895381e+01 3.176210 1.880913e-03 6.874462e-03
## GNA15 -1.226257e+01 2.381137e+01 -4.334608 2.978489e-05 3.156826e-04
## CHD8 1.225705e+01 7.355215e+01 3.061536 2.697761e-03 9.110321e-03
## EIF4EBP1 -1.225348e+01 1.583013e+01 -4.240290 4.310689e-05 4.157583e-04
## GGT1 -1.223685e+01 1.670209e+01 -4.190051 5.237359e-05 4.763426e-04
## FASTK -1.221133e+01 1.917378e+01 -3.850358 1.875075e-04 1.216542e-03
## TEX2 1.221087e+01 1.955946e+01 3.757256 2.625635e-04 1.540823e-03
## COQ8B -1.217874e+01 2.772529e+01 -3.300331 1.259594e-03 5.019754e-03
## MR1 1.217681e+01 5.909118e+01 2.718131 7.500699e-03 2.068798e-02
## TYMS 1.217314e+01 1.204017e+01 5.664449 9.667793e-08 5.308334e-06
## C6orf47 -1.216399e+01 5.058061e+01 -3.750259 2.692302e-04 1.568306e-03
## COX8A -1.214631e+01 4.517830e+01 -2.424058 1.678355e-02 3.961251e-02
## AP3B1 1.214588e+01 4.896297e+01 3.343926 1.091310e-03 4.486288e-03
## VPS25 -1.213111e+01 4.402055e+01 -3.743861 2.754658e-04 1.593125e-03
## MEPCE -1.211380e+01 4.292490e+01 -3.155914 2.006272e-03 7.222563e-03
## SMARCA5 1.210971e+01 7.238429e+01 3.109896 2.319797e-03 8.115666e-03
## ADRM1 -1.209985e+01 2.622650e+01 -4.575436 1.131679e-05 1.582749e-04
## FAM110A -1.209457e+01 1.801229e+01 -4.315026 3.217507e-05 3.312469e-04
## FCHSD2 1.207835e+01 6.265653e+01 2.349690 2.036047e-02 4.622420e-02
## TRPM7 1.207314e+01 3.352956e+01 4.781685 4.812946e-06 8.481656e-05
## GANAB 1.204427e+01 1.427960e+02 2.447529 1.577680e-02 3.767120e-02
## SPG7 -1.203304e+01 3.092756e+01 -4.441044 1.950109e-05 2.317464e-04
## CHTOP -1.201643e+01 6.536219e+01 -3.837941 1.961826e-04 1.259050e-03
## MPDU1 -1.199721e+01 4.153855e+01 -2.857343 5.007647e-03 1.488862e-02
## MED22 -1.197258e+01 3.048407e+01 -6.279645 5.159257e-09 7.033194e-07
## URM1 -1.197059e+01 3.645555e+01 -3.643712 3.928235e-04 2.070597e-03
## WDR48 1.195918e+01 4.323479e+01 4.096993 7.481350e-05 6.166005e-04
## TEPSIN -1.195488e+01 2.877054e+01 -4.076456 8.088060e-05 6.543274e-04
## NINJ2 -1.193585e+01 2.848899e+01 -3.771448 2.495194e-04 1.486339e-03
## LPCAT3 -1.193540e+01 4.303278e+01 -2.497896 1.379589e-02 3.387561e-02
## MAML2 1.193117e+01 2.263292e+01 4.307902 3.308956e-05 3.388965e-04
## POLR2C -1.192894e+01 6.906363e+01 -3.551739 5.409706e-04 2.624095e-03
## ZDHHC12 -1.192589e+01 1.645825e+01 -4.521992 1.406848e-05 1.839605e-04
## TNIP2 -1.192564e+01 3.592328e+01 -4.249645 4.156490e-05 4.040654e-04
## EDC4 -1.191403e+01 3.438807e+01 -4.121126 6.824013e-05 5.752153e-04
## PLEKHJ1 -1.191203e+01 2.948693e+01 -2.906834 4.322611e-03 1.321974e-02
## CYSLTR1 1.190716e+01 3.478829e+01 2.834737 5.352463e-03 1.570904e-02
## RO60 1.190113e+01 3.688943e+01 3.854436 1.847384e-04 1.203791e-03
## STK11IP -1.188605e+01 2.060218e+01 -6.890644 2.445634e-10 1.000180e-07
## KLF16 -1.188263e+01 2.217280e+01 -5.720795 7.440177e-08 4.589014e-06
## PIP4K2C 1.188234e+01 3.374976e+01 5.652642 1.021136e-07 5.469679e-06
## AKR1A1 -1.187953e+01 4.717125e+01 -2.656718 8.922860e-03 2.377395e-02
## PPM1K 1.187103e+01 2.537856e+01 3.344622 1.088804e-03 4.482029e-03
## UBAP2L 1.186331e+01 5.572715e+01 3.484431 6.812385e-04 3.113483e-03
## PCNX3 -1.185904e+01 2.663338e+01 -3.878312 1.692924e-04 1.126716e-03
## TNRC6B 1.184554e+01 5.202516e+01 2.623650 9.785699e-03 2.561995e-02
## ZBTB44 1.181578e+01 5.867273e+01 2.778526 6.305919e-03 1.798658e-02
## PTPN22 1.178446e+01 3.875292e+01 2.600257 1.044080e-02 2.700129e-02
## EXOC3 -1.175825e+01 4.017123e+01 -5.478745 2.269134e-07 9.376979e-06
## FEM1B 1.174523e+01 4.638225e+01 3.670604 3.573517e-04 1.922954e-03
## TOP2A 1.173764e+01 1.095043e+01 6.029749 1.728004e-08 1.627736e-06
## TREX1 -1.173568e+01 2.155944e+01 -2.326739 2.159266e-02 4.846497e-02
## PANK3 1.167014e+01 3.892376e+01 3.537079 5.689781e-04 2.724295e-03
## UPF2 1.166834e+01 5.856242e+01 2.835267 5.344129e-03 1.568846e-02
## ST6GALNAC6 -1.166807e+01 3.027056e+01 -3.061776 2.695758e-03 9.109142e-03
## MAD2L2 -1.165859e+01 2.424771e+01 -3.896762 1.582072e-04 1.071580e-03
## NPLOC4 -1.165506e+01 7.647469e+01 -2.869041 4.837302e-03 1.444734e-02
## RAB11B -1.165190e+01 1.793012e+01 -5.751236 6.454855e-08 4.160575e-06
## RPS6KA4 -1.164733e+01 2.686564e+01 -4.265956 3.900196e-05 3.848280e-04
## IRF8 -1.162482e+01 4.913949e+01 -3.743166 2.761514e-04 1.594526e-03
## BORCS6 -1.161975e+01 1.692804e+01 -4.389374 2.397250e-05 2.700036e-04
## TRMT1 -1.161202e+01 1.890975e+01 -3.938003 1.358755e-04 9.563699e-04
## PI4KB -1.161029e+01 9.368295e+01 -2.872336 4.790298e-03 1.433584e-02
## GPD2 1.160456e+01 2.811369e+01 3.855107 1.842864e-04 1.202221e-03
## SUPT16H 1.160194e+01 6.353515e+01 3.687421 3.367332e-04 1.848059e-03
## ELOVL1 -1.160055e+01 7.439302e+01 -2.837798 5.304528e-03 1.561085e-02
## C12orf75 1.159714e+01 1.883601e+01 4.842490 3.723988e-06 7.077964e-05
## FCER2 -1.158710e+01 8.835297e+00 -4.664782 7.836684e-06 1.232667e-04
## PPCS -1.157506e+01 4.554313e+01 -4.412063 2.189926e-05 2.521604e-04
## NUDT22 -1.156934e+01 1.316011e+01 -5.509484 1.972406e-07 8.568768e-06
## KDM5B 1.156163e+01 4.159757e+01 2.849516 5.124666e-03 1.516431e-02
## H2BC5 1.153660e+01 1.996329e+01 3.039054 2.892206e-03 9.605591e-03
## PIGT -1.153514e+01 4.189608e+01 -3.333873 1.128136e-03 4.608920e-03
## INTS1 -1.153403e+01 1.784814e+01 -5.036639 1.620302e-06 3.921793e-05
## SLX1A -1.152546e+01 2.377912e+01 -3.909127 1.511686e-04 1.033945e-03
## GRAP -1.152316e+01 1.639445e+01 -3.691562 3.318319e-04 1.827927e-03
## SBF1 -1.150122e+01 3.838872e+01 -3.919395 1.455517e-04 1.001882e-03
## EPC2 1.149650e+01 3.475894e+01 3.574379 5.002567e-04 2.481407e-03
## ABCA13 1.148180e+01 1.089245e+01 2.755625 6.736925e-03 1.895609e-02
## CD99L2 -1.147377e+01 2.948080e+01 -4.347487 2.830694e-05 3.040945e-04
## PIH1D1 -1.147342e+01 2.301395e+01 -3.798037 2.267202e-04 1.391051e-03
## CALU 1.146926e+01 2.990786e+01 4.925475 2.615661e-06 5.490574e-05
## TMED7 1.145729e+01 4.681076e+01 2.998195 3.279073e-03 1.059379e-02
## SNX19 1.144995e+01 4.080178e+01 4.128233 6.641243e-05 5.650297e-04
## CDK9 -1.144847e+01 3.864615e+01 -4.842544 3.723137e-06 7.077964e-05
## ZBTB48 -1.144611e+01 2.623453e+01 -4.166490 5.735105e-05 5.079787e-04
## POLE4 -1.142889e+01 2.540997e+01 -3.325946 1.157991e-03 4.706571e-03
## GLYR1 1.140809e+01 9.631619e+01 2.359927 1.983113e-02 4.521284e-02
## FBXO34 1.140279e+01 2.824598e+01 4.007534 1.048704e-04 7.905628e-04
## CDK12 1.139456e+01 4.035948e+01 3.925761 1.421697e-04 9.877753e-04
## TTYH3 -1.137337e+01 2.129215e+01 -5.821553 4.642022e-08 3.377569e-06
## TRMT112 -1.137276e+01 5.643521e+01 -2.471415 1.480782e-02 3.579713e-02
## EPRS1 1.136308e+01 4.890320e+01 3.410304 8.750000e-04 3.788791e-03
## CCND2 1.136287e+01 4.193033e+01 3.326894 1.154384e-03 4.695732e-03
## MOB2 -1.134581e+01 3.492555e+01 -2.667787 8.649770e-03 2.316240e-02
## NSA2 -1.133393e+01 6.509212e+01 -2.710490 7.665674e-03 2.100621e-02
## SEC31A 1.133363e+01 3.968046e+01 4.059018 8.639885e-05 6.904921e-04
## DMTF1 1.133184e+01 4.803148e+01 3.254506 1.462427e-03 5.629926e-03
## FUBP1 1.133099e+01 4.982512e+01 2.747746 6.891291e-03 1.929431e-02
## SMIM12 -1.132612e+01 4.306449e+01 -4.214410 4.766430e-05 4.447668e-04
## RIPK3 -1.132375e+01 3.618256e+01 -3.967703 1.216901e-04 8.794906e-04
## RNF40 -1.132325e+01 7.419362e+01 -2.865471 4.888724e-03 1.457890e-02
## TFEC 1.132290e+01 3.921318e+01 2.342478 2.074080e-02 4.689913e-02
## HSPB1 -1.131159e+01 6.645424e+00 -3.494788 6.576286e-04 3.033313e-03
## TRMT2A -1.130110e+01 1.576644e+01 -4.365911 2.631482e-05 2.884415e-04
## TRPM6 1.130053e+01 2.782517e+01 3.264976 1.413566e-03 5.487689e-03
## FUNDC2 -1.129090e+01 4.428829e+01 -2.463870 1.510801e-02 3.634503e-02
## TENT5A 1.127710e+01 3.525549e+01 3.022054 3.047740e-03 1.000003e-02
## MON2 1.127148e+01 3.877696e+01 3.888178 1.632762e-04 1.098387e-03
## HMG20B -1.123278e+01 1.962604e+01 -4.210509 4.839007e-05 4.501226e-04
## RFX2 -1.122586e+01 2.818168e+01 -2.747951 6.887236e-03 1.928751e-02
## ORAI1 -1.122575e+01 1.950644e+01 -3.062797 2.687222e-03 9.093795e-03
## U2AF1L5 -1.122393e+01 4.876335e+01 -3.022019 3.048071e-03 1.000003e-02
## BAZ1B 1.120037e+01 3.996364e+01 4.469755 1.737597e-05 2.138771e-04
## INO80D 1.118060e+01 2.880287e+01 4.294992 3.481081e-05 3.519661e-04
## PEX6 -1.116550e+01 2.642859e+01 -3.665320 3.640727e-04 1.951154e-03
## CLASRP -1.116161e+01 3.717272e+01 -4.616793 9.551973e-06 1.407284e-04
## TBCA -1.114828e+01 4.722366e+01 -3.041896 2.866928e-03 9.544887e-03
## TM9SF3 1.114797e+01 9.688584e+01 2.514752 1.318441e-02 3.264448e-02
## KCNQ1 -1.114314e+01 2.659564e+01 -5.432732 2.796498e-07 1.091002e-05
## GFUS -1.113200e+01 2.559143e+01 -3.077015 2.570993e-03 8.787312e-03
## ERLEC1 1.112977e+01 3.817985e+01 3.634440 4.058069e-04 2.116478e-03
## DCAF7 1.111692e+01 5.670916e+01 3.372654 9.921757e-04 4.170038e-03
## ATP2A2 1.111202e+01 3.710836e+01 3.671550 3.561607e-04 1.918286e-03
## MRPL54 -1.111058e+01 2.150218e+01 -3.050866 2.788483e-03 9.344846e-03
## MED12 1.110381e+01 3.561850e+01 2.973752 3.532771e-03 1.124617e-02
## SIK3 1.110145e+01 5.527531e+01 3.919571 1.454572e-04 1.001813e-03
## XAB2 -1.109992e+01 2.158461e+01 -4.209100 4.865493e-05 4.516442e-04
## ARHGAP21 1.109044e+01 2.269131e+01 4.517002 1.435607e-05 1.871022e-04
## ZNF710 -1.107787e+01 2.654146e+01 -5.216628 7.362601e-07 2.211650e-05
## TLK2 1.107764e+01 4.990203e+01 3.356716 1.046082e-03 4.349525e-03
## TFRC 1.107333e+01 2.410539e+01 2.530869 1.262252e-02 3.158294e-02
## PIK3CB 1.104720e+01 5.083445e+01 2.323707 2.176028e-02 4.876736e-02
## DGUOK -1.103709e+01 4.071040e+01 -2.984278 3.421386e-03 1.095213e-02
## TAPBPL -1.103339e+01 3.829578e+01 -2.635844 9.459132e-03 2.490793e-02
## TPP2 1.101797e+01 3.408538e+01 3.762883 2.573167e-04 1.524363e-03
## C2CD5 1.100903e+01 3.936890e+01 3.332977 1.131477e-03 4.616207e-03
## LSM6 -1.100738e+01 2.195575e+01 -5.846071 4.135897e-08 3.085015e-06
## DNAJC10 1.099358e+01 4.753952e+01 2.899524 4.418067e-03 1.345835e-02
## CHMP6 -1.098404e+01 1.500705e+01 -5.005015 1.858005e-06 4.312317e-05
## TBC1D5 1.098301e+01 4.285644e+01 4.240222 4.311827e-05 4.157583e-04
## ATP2C1 1.097342e+01 3.465919e+01 5.143928 1.014490e-06 2.765943e-05
## XPOT 1.097023e+01 3.630472e+01 5.212277 7.505788e-07 2.236649e-05
## VPS16 -1.096633e+01 6.272973e+01 -2.633929 9.509760e-03 2.503568e-02
## CLEC10A -1.095787e+01 1.104050e+01 -4.129214 6.616372e-05 5.633178e-04
## MAN2A1 1.094881e+01 4.161320e+01 3.771574 2.494071e-04 1.486339e-03
## LPP 1.094293e+01 4.009717e+01 2.654583 8.976414e-03 2.386467e-02
## BRWD1 1.093944e+01 4.859498e+01 3.315173 1.199753e-03 4.839818e-03
## ATP5F1D -1.093292e+01 8.241636e+00 -3.581221 4.885340e-04 2.437532e-03
## RAB3GAP2 1.092834e+01 3.235553e+01 3.893339 1.602101e-04 1.082057e-03
## UBE2M -1.092380e+01 3.773458e+01 -3.173100 1.899637e-03 6.921566e-03
## C11orf98 -1.091108e+01 3.301385e+01 -2.784248 6.202235e-03 1.773349e-02
## CBX1 1.090722e+01 4.810889e+01 3.069126 2.634894e-03 8.951836e-03
## HSPA13 1.089961e+01 2.075128e+01 4.511438 1.468349e-05 1.903238e-04
## GPR107 1.089904e+01 5.775534e+01 2.638841 9.380372e-03 2.473349e-02
## GABBR1 1.089649e+01 3.953987e+01 2.869457 4.831349e-03 1.443683e-02
## KRI1 -1.088220e+01 2.320893e+01 -4.191348 5.211202e-05 4.746916e-04
## B3GALT4 -1.087301e+01 1.684980e+01 -4.594325 1.047481e-05 1.507661e-04
## RNF6 1.086557e+01 3.834992e+01 3.633472 4.071858e-04 2.119940e-03
## MBD3 -1.086368e+01 1.022561e+01 -3.895954 1.586777e-04 1.074154e-03
## SATB1 1.085786e+01 4.867791e+01 2.476683 1.460139e-02 3.540636e-02
## IFI27L2 -1.084947e+01 2.122706e+01 -2.383536 1.865655e-02 4.308878e-02
## CERS5 -1.084424e+01 4.569431e+01 -3.463458 7.315153e-04 3.280065e-03
## HPS6 -1.083323e+01 1.705239e+01 -7.196176 5.094719e-11 4.028224e-08
## MFAP3 1.082444e+01 3.367424e+01 3.165057 1.948868e-03 7.048969e-03
## STYXL1 -1.081808e+01 3.175269e+01 -3.212865 1.672773e-03 6.290137e-03
## ADPGK 1.081082e+01 1.031675e+02 2.416602 1.711510e-02 4.023894e-02
## MIB1 1.080610e+01 3.257249e+01 3.380844 9.655002e-04 4.076480e-03
## SMIM29 -1.079901e+01 1.803404e+01 -4.280807 3.680113e-05 3.675155e-04
## DTX2 -1.079600e+01 2.113412e+01 -4.334134 2.984068e-05 3.157096e-04
## EIF4E 1.079234e+01 3.974712e+01 5.332437 4.394816e-07 1.493482e-05
## POLR2L -1.078814e+01 1.206856e+01 -3.475096 7.032018e-04 3.185628e-03
## STIM1 1.075959e+01 7.598464e+01 2.944421 3.861006e-03 1.209496e-02
## ANXA2R -1.075896e+01 1.930509e+01 -3.432585 8.119048e-04 3.569011e-03
## ERF -1.074781e+01 1.976245e+01 -5.220972 7.222317e-07 2.179559e-05
## STK11 -1.074391e+01 2.416527e+01 -3.902825 1.547179e-04 1.053019e-03
## PAXX -1.072431e+01 1.168513e+01 -3.556190 5.327270e-04 2.595785e-03
## POGZ 1.072249e+01 4.534624e+01 3.678927 3.470022e-04 1.888686e-03
## SMCO4 -1.071865e+01 2.082502e+01 -4.159759 5.885433e-05 5.185827e-04
## CLNS1A -1.071324e+01 4.082330e+01 -4.166947 5.725043e-05 5.074665e-04
## TOR1AIP2 1.070743e+01 5.590155e+01 2.524067 1.285699e-02 3.198740e-02
## CTDP1 -1.070125e+01 2.589872e+01 -3.737190 2.821136e-04 1.619949e-03
## NXPE3 1.070068e+01 5.248253e+01 2.671990 8.548070e-03 2.294706e-02
## PAPOLG 1.069385e+01 3.390322e+01 3.471335 7.122365e-04 3.214279e-03
## USP1 1.067851e+01 5.052917e+01 3.394081 9.238024e-04 3.941114e-03
## FKBP2 -1.067516e+01 1.840962e+01 -3.302862 1.249199e-03 4.993428e-03
## PIN1 -1.067383e+01 1.756315e+01 -3.691102 3.323729e-04 1.830057e-03
## SND1 -1.063988e+01 6.432781e+01 -2.485899 1.424642e-02 3.473663e-02
## CAPRIN1 1.063161e+01 9.429874e+01 3.318923 1.185059e-03 4.793588e-03
## PRMT1 -1.061897e+01 2.990035e+01 -2.651043 9.065858e-03 2.404855e-02
## PAF1 -1.060906e+01 4.691603e+01 -3.041180 2.873280e-03 9.553434e-03
## ERCC1 -1.059891e+01 2.602666e+01 -4.737857 5.783203e-06 9.742725e-05
## ARNTL 1.059828e+01 4.545895e+01 2.317554 2.210395e-02 4.933248e-02
## NDE1 1.055640e+01 4.949876e+01 2.457076 1.538292e-02 3.690906e-02
## ATG101 -1.055252e+01 1.961917e+01 -3.964884 1.229735e-04 8.849913e-04
## NUDT4 1.055032e+01 3.352954e+01 4.041808 9.219695e-05 7.212770e-04
## KPNA2 1.054039e+01 3.099392e+01 6.598429 1.067778e-09 2.345157e-07
## TAF1 1.051095e+01 3.287209e+01 3.707503 3.135861e-04 1.757623e-03
## USP48 1.049842e+01 5.022570e+01 4.826579 3.983291e-06 7.425418e-05
## ZNF692 -1.049510e+01 2.986729e+01 -4.140707 6.331699e-05 5.453446e-04
## BRPF3 1.048971e+01 2.636480e+01 4.185966 5.320588e-05 4.820958e-04
## TSC2 -1.048637e+01 2.702053e+01 -4.649694 8.341025e-06 1.281414e-04
## G6PC3 -1.047600e+01 1.557827e+01 -4.955323 2.301503e-06 4.999236e-05
## SH3GL1 -1.047506e+01 2.443641e+01 -4.018439 1.006678e-04 7.677940e-04
## HDGFL2 -1.045937e+01 1.668326e+01 -6.212227 7.165242e-09 8.743713e-07
## GALK1 -1.045526e+01 1.286662e+01 -4.495126 1.568542e-05 1.987491e-04
## NAA60 -1.044683e+01 3.321897e+01 -3.532055 5.788872e-04 2.758378e-03
## XPNPEP1 1.044397e+01 3.470850e+01 4.501897 1.526174e-05 1.952581e-04
## FAXDC2 1.044352e+01 2.348800e+01 3.598755 4.596622e-04 2.330737e-03
## MICB 1.044248e+01 3.013400e+01 3.825215 2.054692e-04 1.296205e-03
## ZNF276 -1.043966e+01 7.823383e+01 -2.720881 7.442106e-03 2.055505e-02
## CDK11B -1.043721e+01 5.065261e+01 -2.987299 3.390014e-03 1.086343e-02
## PIEZO1 -1.042093e+01 2.345828e+01 -3.114459 2.286793e-03 8.016958e-03
## GNL1 -1.041502e+01 2.955268e+01 -3.589746 4.742899e-04 2.387554e-03
## GAK -1.041087e+01 4.015485e+01 -4.683438 7.253784e-06 1.158841e-04
## ATOX1 -1.039729e+01 1.878354e+01 -3.249809 1.484858e-03 5.685686e-03
## RLF 1.039324e+01 3.510974e+01 2.378523 1.890069e-02 4.350131e-02
## ZFX 1.039162e+01 3.738306e+01 2.804327 5.850561e-03 1.687038e-02
## RUNX2 1.038413e+01 2.999564e+01 3.110559 2.314970e-03 8.103761e-03
## ARFGEF2 1.037384e+01 2.004439e+01 4.705220 6.626209e-06 1.085454e-04
## RNASE1 1.036993e+01 1.575656e+01 2.447823 1.576455e-02 3.764952e-02
## DCXR -1.036529e+01 1.824967e+01 -2.825750 5.495468e-03 1.604141e-02
## DCAF5 1.036153e+01 5.725262e+01 3.553270 5.381207e-04 2.612833e-03
## CUL1 1.035875e+01 3.484763e+01 3.030963 2.965291e-03 9.802903e-03
## SRGAP2B 1.034003e+01 2.119827e+01 4.012339 1.029985e-04 7.801284e-04
## MSRA -1.033607e+01 1.989037e+01 -3.669540 3.586952e-04 1.926347e-03
## TNFRSF8 -1.032646e+01 1.208855e+01 -6.673915 7.315955e-10 1.936512e-07
## GTF2A1 1.031046e+01 3.817889e+01 3.228678 1.589783e-03 6.002809e-03
## STK25 -1.030326e+01 2.402542e+01 -3.969437 1.209074e-04 8.754343e-04
## H1-10 -1.030230e+01 1.852315e+01 -2.677199 8.423527e-03 2.266403e-02
## CCNT1 1.029999e+01 3.231011e+01 3.450804 7.635146e-04 3.391492e-03
## PPP1R21 1.027886e+01 5.109023e+01 2.734772 7.152490e-03 1.987548e-02
## PAGR1 -1.027707e+01 2.312246e+01 -6.060974 1.487733e-08 1.508078e-06
## SUGP1 -1.027284e+01 2.453559e+01 -5.649215 1.037471e-07 5.517673e-06
## RABEP1 1.026706e+01 3.869741e+01 4.061249 8.567315e-05 6.856164e-04
## FZR1 -1.025917e+01 2.218043e+01 -4.413753 2.175193e-05 2.509512e-04
## PTPRA 1.025839e+01 6.472976e+01 3.749598 2.698679e-04 1.570114e-03
## SUCLG1 -1.025618e+01 5.835953e+01 -2.551769 1.192591e-02 3.015163e-02
## SLAIN2 1.024862e+01 4.312159e+01 3.433320 8.098991e-04 3.565480e-03
## TBC1D20 1.024325e+01 5.433277e+01 4.358584 2.709036e-05 2.944928e-04
## HAGH -1.023599e+01 1.970788e+01 -3.526903 5.892174e-04 2.797485e-03
## IFFO1 -1.022575e+01 2.912753e+01 -5.515356 1.920204e-07 8.466028e-06
## OSGEP -1.020918e+01 2.499738e+01 -4.864627 3.390283e-06 6.591599e-05
## TUBGCP2 -1.020882e+01 3.021933e+01 -4.663127 7.890528e-06 1.238936e-04
## MED11 -1.020106e+01 2.602434e+01 -5.024788 1.705696e-06 4.054019e-05
## CDC27 1.019814e+01 3.699892e+01 4.692129 6.996786e-06 1.136738e-04
## ENTPD6 -1.019810e+01 2.340023e+01 -3.569784 5.082786e-04 2.507564e-03
## PLXND1 -1.019314e+01 2.630384e+01 -3.530339 5.823086e-04 2.771340e-03
## MTMR4 1.016514e+01 4.664058e+01 3.019868 3.068291e-03 1.005525e-02
## GATAD2B 1.016005e+01 5.197707e+01 2.559050 1.169145e-02 2.964283e-02
## FAM199X 1.015768e+01 3.456611e+01 3.756046 2.637053e-04 1.543968e-03
## TRAPPC12 -1.014942e+01 1.905027e+01 -6.672843 7.355456e-10 1.936512e-07
## FOXJ3 1.014438e+01 3.821496e+01 4.031703 9.577286e-05 7.406217e-04
## CLCN3 1.013704e+01 2.990211e+01 4.235790 4.386810e-05 4.209350e-04
## CDK10 -1.013080e+01 1.716372e+01 -3.525680 5.916943e-04 2.803633e-03
## UBR1 1.010805e+01 2.268988e+01 5.080142 1.341064e-06 3.405786e-05
## CYHR1 -1.010151e+01 1.810429e+01 -5.016652 1.766836e-06 4.165938e-05
## PRPF31 -1.008786e+01 1.753053e+01 -3.974875 1.184826e-04 8.647721e-04
## ZDHHC5 1.008192e+01 7.892320e+01 2.538161 1.237544e-02 3.107286e-02
## TMOD2 1.006875e+01 3.218961e+01 2.699817 7.901622e-03 2.153337e-02
## ANAPC1 1.005639e+01 4.388257e+01 4.687557 7.130866e-06 1.144412e-04
## ITFG1 1.004127e+01 3.305206e+01 3.790221 2.332089e-04 1.421304e-03
## ARNT 1.003814e+01 5.080378e+01 2.677738 8.410732e-03 2.264893e-02
## TARS1 1.003769e+01 3.090826e+01 5.028172 1.680873e-06 4.011096e-05
## YWHAG 1.003586e+01 6.568807e+01 2.513056 1.324484e-02 3.274625e-02
## PNKD -1.003160e+01 3.639197e+01 -3.348469 1.075039e-03 4.442494e-03
## SPTY2D1 1.002303e+01 3.829898e+01 2.779276 6.292240e-03 1.795344e-02
## SFXN5 -1.001796e+01 3.142315e+01 -4.229183 4.500906e-05 4.280734e-04
## NMRAL1 -1.000442e+01 1.672887e+01 -3.788635 2.345468e-04 1.426272e-03
## ATG2B 9.999582e+00 3.168065e+01 3.269823 1.391466e-03 5.424978e-03
## UBE3C 9.989640e+00 4.073525e+01 4.494148 1.574754e-05 1.993232e-04
## CCDC107 -9.982659e+00 1.338205e+01 -3.652059 3.814708e-04 2.024270e-03
## ST13 -9.965077e+00 8.170272e+01 -2.650200 9.087283e-03 2.408922e-02
## TOMM22 -9.932004e+00 3.776476e+01 -3.115705 2.277855e-03 7.990346e-03
## RIC8A -9.931683e+00 7.083822e+01 -3.034224 2.935629e-03 9.728014e-03
## CEP170 9.928298e+00 3.643879e+01 2.506677 1.347424e-02 3.319578e-02
## USP5 -9.923964e+00 2.845790e+01 -3.062288 2.691475e-03 9.102052e-03
## RECQL 9.919206e+00 4.278681e+01 3.409530 8.772725e-04 3.797245e-03
## SKAP1 -9.911710e+00 2.524326e+01 -2.596809 1.054063e-02 2.721200e-02
## BAP1 -9.908082e+00 6.256992e+01 -2.807811 5.791418e-03 1.672418e-02
## NF1 9.905118e+00 3.389437e+01 2.424529 1.676278e-02 3.957138e-02
## COMT -9.896319e+00 1.564950e+01 -5.102660 1.215527e-06 3.140772e-05
## ATG7 -9.889167e+00 6.132540e+01 -3.029536 2.978362e-03 9.831164e-03
## SNTB1 9.884752e+00 3.299569e+01 4.375824 2.529955e-05 2.801612e-04
## MRFAP1L1 -9.883695e+00 6.573678e+01 -3.175342 1.886123e-03 6.887137e-03
## STX8 -9.877363e+00 2.600792e+01 -4.081927 7.921977e-05 6.457364e-04
## SLC35A4 -9.875217e+00 5.713100e+01 -2.791982 6.064547e-03 1.741294e-02
## NISCH -9.866647e+00 4.568418e+01 -3.328340 1.148898e-03 4.677790e-03
## YPEL2 9.864021e+00 3.750076e+01 2.896631 4.456366e-03 1.354845e-02
## JMJD8 -9.853021e+00 1.656877e+01 -3.671856 3.557758e-04 1.918286e-03
## NDUFA2 -9.851515e+00 3.469396e+01 -2.403687 1.770318e-02 4.132251e-02
## ALAS1 9.845518e+00 5.096235e+01 2.965088 3.626946e-03 1.150457e-02
## VDAC3 9.838361e+00 8.245638e+01 3.465569 7.263002e-04 3.261613e-03
## C21orf91 9.835742e+00 4.130028e+01 2.772886 6.409675e-03 1.822992e-02
## TARDBP 9.834519e+00 8.104648e+01 3.016565 3.099584e-03 1.014098e-02
## SNRPD3 -9.824476e+00 6.628231e+01 -3.124282 2.217212e-03 7.823844e-03
## CAMTA2 -9.807971e+00 4.590435e+01 -3.148395 2.054657e-03 7.362004e-03
## CTBP1 -9.796685e+00 4.617189e+01 -3.246883 1.498989e-03 5.727452e-03
## LSM7 -9.786302e+00 1.604372e+01 -3.268749 1.396335e-03 5.438598e-03
## BMPR2 9.782449e+00 2.047370e+01 4.454494 1.847608e-05 2.220124e-04
## NELFB -9.778609e+00 2.089472e+01 -4.605452 1.000749e-05 1.456305e-04
## C7orf50 -9.774666e+00 8.402341e+00 -4.649557 8.345746e-06 1.281414e-04
## TRPV2 -9.771030e+00 3.707748e+01 -3.208011 1.699049e-03 6.364115e-03
## NAXE -9.767159e+00 2.138874e+01 -3.119577 2.250288e-03 7.921764e-03
## GTF2F1 -9.744141e+00 3.457997e+01 -4.072586 8.207517e-05 6.621847e-04
## HDHD5 -9.737224e+00 1.875453e+01 -5.342068 4.208995e-07 1.451124e-05
## LMBR1L -9.734670e+00 3.839617e+01 -3.300980 1.256922e-03 5.015845e-03
## MRPS34 -9.734514e+00 1.684001e+01 -3.505652 6.336901e-04 2.951911e-03
## AGAP3 -9.725233e+00 1.427110e+01 -5.600526 1.299068e-07 6.340306e-06
## TMEM203 -9.724729e+00 2.160083e+01 -3.543811 5.559514e-04 2.673797e-03
## SLC35C2 -9.720613e+00 4.094905e+01 -2.529584 1.266655e-02 3.164825e-02
## ANKIB1 9.720362e+00 2.255026e+01 4.970486 2.156274e-06 4.807031e-05
## CLN6 -9.708438e+00 2.197383e+01 -2.875409 4.746834e-03 1.422012e-02
## UAP1 9.706199e+00 1.591913e+01 4.257961 4.023859e-05 3.933843e-04
## SELENOH -9.704855e+00 1.989418e+01 -3.249239 1.487601e-03 5.691274e-03
## RELB -9.704443e+00 2.527917e+01 -3.209695 1.689888e-03 6.340421e-03
## FRMD3 9.696336e+00 1.583204e+01 4.586792 1.080306e-05 1.541809e-04
## PLA2G15 -9.670760e+00 1.364228e+01 -5.038458 1.607572e-06 3.906926e-05
## GRHPR -9.658054e+00 2.369453e+01 -4.543327 1.290025e-05 1.727776e-04
## ITPR2 9.657074e+00 3.673179e+01 2.755436 6.740575e-03 1.896186e-02
## DYNC1LI2 9.645265e+00 4.561655e+01 3.133834 2.151439e-03 7.646407e-03
## PRKAG2 9.636438e+00 4.281959e+01 2.633177 9.529697e-03 2.507148e-02
## RBM12 9.631822e+00 5.145961e+01 3.994126 1.102676e-04 8.178213e-04
## ETNK1 9.629237e+00 4.377615e+01 3.582630 4.861520e-04 2.428307e-03
## OXLD1 -9.624509e+00 1.535605e+01 -4.706392 6.593993e-06 1.081670e-04
## CCDC22 -9.606425e+00 1.477379e+01 -4.735218 5.847313e-06 9.799218e-05
## PRCC -9.602216e+00 3.817117e+01 -3.377946 9.748634e-04 4.110160e-03
## HDAC3 -9.597228e+00 5.945637e+01 -4.166054 5.744730e-05 5.080792e-04
## R3HDM2 9.593963e+00 4.754458e+01 2.739933 7.047528e-03 1.964826e-02
## CNOT6 9.588616e+00 2.988508e+01 4.547095 1.270389e-05 1.710194e-04
## SMDT1 -9.580466e+00 2.230625e+01 -2.811402 5.731037e-03 1.659831e-02
## SERTAD3 -9.578373e+00 3.845581e+01 -3.090385 2.465958e-03 8.511718e-03
## PRELID3B 9.565060e+00 3.881452e+01 3.944958 1.324183e-04 9.376007e-04
## RNF114 9.552049e+00 7.231145e+01 2.436759 1.623190e-02 3.854152e-02
## TBCD -9.551469e+00 2.108134e+01 -4.208724 4.872573e-05 4.516442e-04
## CEBPZOS -9.531322e+00 2.850579e+01 -3.794913 2.292933e-04 1.405384e-03
## SLC35A1 9.527369e+00 4.787335e+01 2.704058 7.807095e-03 2.133460e-02
## PMVK -9.526728e+00 1.652029e+01 -3.429379 8.207134e-04 3.598396e-03
## FLT3LG -9.521503e+00 1.002819e+01 -3.737111 2.821935e-04 1.619949e-03
## NACC1 -9.505342e+00 2.547819e+01 -5.015481 1.775809e-06 4.174712e-05
## DYNLL2 9.488125e+00 8.140808e+01 2.493281 1.396768e-02 3.419831e-02
## SYNCRIP 9.487803e+00 5.656288e+01 2.649196 9.112843e-03 2.414079e-02
## RFX5 9.485046e+00 3.812953e+01 3.099762 2.394682e-03 8.323835e-03
## ASL -9.478831e+00 2.054356e+01 -3.862471 1.793963e-04 1.177528e-03
## MTOR 9.471675e+00 3.125682e+01 5.139071 1.036352e-06 2.799803e-05
## CLASP1 9.469650e+00 3.223553e+01 3.096649 2.418132e-03 8.386813e-03
## ZRSR2 -9.467434e+00 2.293016e+01 -5.345188 4.150457e-07 1.443531e-05
## RANBP3 -9.453311e+00 2.980396e+01 -5.166480 9.187219e-07 2.556470e-05
## SMC1A 9.445939e+00 4.665230e+01 2.894949 4.478781e-03 1.359594e-02
## ZBTB22 -9.437828e+00 2.735622e+01 -4.665888 7.800888e-06 1.228666e-04
## MCU 9.433737e+00 3.360175e+01 2.993056 3.330978e-03 1.072642e-02
## CXCR5 -9.417146e+00 1.186253e+01 -4.303040 3.372796e-05 3.434277e-04
## TIMM8B -9.416333e+00 2.565855e+01 -2.534810 1.248845e-02 3.131354e-02
## SREBF2 9.415553e+00 4.336545e+01 3.480541 6.903118e-04 3.141634e-03
## TBC1D10A -9.413707e+00 1.535882e+01 -6.419741 2.593325e-09 4.393833e-07
## MRPL24 -9.408460e+00 1.931318e+01 -3.657010 3.748860e-04 1.996474e-03
## PPP1R7 -9.397516e+00 4.626269e+01 -3.262293 1.425938e-03 5.526675e-03
## DDX41 -9.392444e+00 3.839261e+01 -3.168887 1.925281e-03 6.984958e-03
## DENND4C 9.384565e+00 2.295997e+01 4.273501 3.786858e-05 3.758306e-04
## SLC25A29 -9.383139e+00 1.768666e+01 -4.146627 6.189670e-05 5.362271e-04
## ARID1B 9.381811e+00 2.962887e+01 4.602032 1.014892e-05 1.473271e-04
## RELCH 9.367916e+00 4.382168e+01 3.151887 2.032055e-03 7.298658e-03
## CINP -9.367843e+00 1.988453e+01 -4.455787 1.838035e-05 2.210862e-04
## GON4L 9.350584e+00 4.522734e+01 4.035123 9.454785e-05 7.338596e-04
## STARD3 -9.330620e+00 4.642118e+01 -3.297302 1.272148e-03 5.052804e-03
## TTC17 9.329636e+00 4.557256e+01 3.793785 2.302283e-04 1.409658e-03
## POLR1H -9.327654e+00 2.668011e+01 -3.335386 1.122521e-03 4.592306e-03
## NDUFS1 9.325921e+00 3.990601e+01 4.775395 4.941799e-06 8.644503e-05
## GPANK1 -9.323666e+00 3.499910e+01 -3.025232 3.018085e-03 9.935241e-03
## NLRX1 -9.322968e+00 2.722800e+01 -3.568854 5.099169e-04 2.513555e-03
## FNBP4 9.318345e+00 3.836534e+01 3.214539 1.663800e-03 6.258380e-03
## MED16 -9.295787e+00 1.375212e+01 -4.339210 2.924851e-05 3.113890e-04
## NUS1 9.289865e+00 3.757963e+01 3.703646 3.179115e-04 1.775156e-03
## TXNL4A -9.279821e+00 2.897186e+01 -3.413587 8.654224e-04 3.756922e-03
## CNOT3 -9.278894e+00 3.386693e+01 -3.613766 4.362337e-04 2.233908e-03
## CCNT2 9.278594e+00 4.794816e+01 2.427944 1.661301e-02 3.928820e-02
## PDXDC1 9.277706e+00 2.722793e+01 4.626333 9.184379e-06 1.371873e-04
## MTMR1 -9.259252e+00 2.914113e+01 -2.715153 7.564613e-03 2.080619e-02
## TMX1 9.252756e+00 4.994364e+01 3.180426 1.855803e-03 6.809970e-03
## CCSER2 9.252189e+00 2.716709e+01 4.158407 5.916077e-05 5.205095e-04
## TRAK2 9.250025e+00 3.640937e+01 3.577880 4.942250e-04 2.459718e-03
## COMMD9 -9.235183e+00 3.856956e+01 -3.670310 3.577220e-04 1.924074e-03
## NDUFS6 -9.224464e+00 1.720792e+01 -2.951785 3.776061e-03 1.187907e-02
## ZDHHC2 9.219360e+00 3.960195e+01 2.736023 7.126927e-03 1.981373e-02
## ZNF664 9.218992e+00 2.391788e+01 4.594509 1.046688e-05 1.507661e-04
## MCM4 9.218095e+00 1.195038e+01 6.890663 2.445403e-10 1.000180e-07
## CNOT7 9.217114e+00 6.337168e+01 3.257832 1.446736e-03 5.585380e-03
## MIEN1 -9.215455e+00 4.660618e+01 -2.376560 1.899705e-02 4.367223e-02
## LARP7 9.214612e+00 4.758516e+01 3.379146 9.709752e-04 4.095223e-03
## DHRS4L2 -9.214535e+00 1.293471e+01 -3.966480 1.222450e-04 8.816741e-04
## USP16 9.205572e+00 3.370198e+01 4.023726 9.868868e-05 7.575713e-04
## ZNF254 -9.201609e+00 1.428192e+01 -3.457356 7.467862e-04 3.330254e-03
## COMMD7 -9.192467e+00 3.257114e+01 -3.031145 2.963628e-03 9.802903e-03
## MTIF3 -9.190329e+00 4.236750e+01 -2.948202 3.817176e-03 1.198616e-02
## OXR1 9.179418e+00 3.364684e+01 2.921003 4.142953e-03 1.277240e-02
## GOLGA4 9.178501e+00 3.466121e+01 3.197891 1.755064e-03 6.521009e-03
## LIME1 -9.176110e+00 8.501134e+00 -3.047792 2.815142e-03 9.410254e-03
## FAM214A 9.170631e+00 2.911284e+01 4.064080 8.476104e-05 6.806134e-04
## SENP2 9.167506e+00 3.246777e+01 3.831249 2.010150e-04 1.278305e-03
## MRPL23 -9.154183e+00 1.853853e+01 -3.041817 2.867626e-03 9.544887e-03
## HINT3 9.153431e+00 2.993292e+01 3.536081 5.709330e-04 2.730349e-03
## OTUD4 9.146545e+00 2.311827e+01 4.121351 6.818158e-05 5.752153e-04
## MNT -9.135113e+00 2.408578e+01 -5.765957 6.025406e-08 4.032520e-06
## PBRM1 9.130389e+00 3.209826e+01 3.838912 1.954908e-04 1.255970e-03
## VPS26C 9.117852e+00 5.577481e+01 2.539337 1.233599e-02 3.100337e-02
## NNT 9.113995e+00 3.187482e+01 4.985693 2.019578e-06 4.571030e-05
## KAT5 -9.112935e+00 3.823578e+01 -4.103731 7.291959e-05 6.047737e-04
## SELENOO -9.103616e+00 1.127924e+01 -4.583624 1.094408e-05 1.550738e-04
## MRPL11 -9.087362e+00 1.970341e+01 -3.094742 2.432598e-03 8.425995e-03
## WDR46 -9.084891e+00 2.379193e+01 -3.326006 1.157765e-03 4.706571e-03
## MFSD10 -9.081759e+00 1.274814e+01 -4.210056 4.847506e-05 4.505597e-04
## CDC73 9.063683e+00 3.898623e+01 2.721992 7.418567e-03 2.050050e-02
## ZNF622 -9.062754e+00 3.338130e+01 -3.973787 1.189639e-04 8.666538e-04
## GIT1 -9.056201e+00 2.683896e+01 -3.535202 5.726612e-04 2.736407e-03
## SIN3B -9.051460e+00 2.379947e+01 -6.851306 2.987041e-10 1.107072e-07
## GET4 -9.032216e+00 1.780252e+01 -4.447856 1.897533e-05 2.268247e-04
## BDP1 9.026508e+00 2.056879e+01 4.522871 1.401838e-05 1.839136e-04
## ETHE1 -9.003359e+00 2.039038e+01 -3.054948 2.753448e-03 9.253583e-03
## ECHDC1 -8.981798e+00 5.240248e+01 -3.195475 1.768692e-03 6.561366e-03
## RAB34 -8.968002e+00 1.661925e+01 -3.942617 1.335728e-04 9.435217e-04
## PEAK3 -8.962047e+00 1.547851e+01 -4.224501 4.583484e-05 4.324592e-04
## HMGCL -8.961031e+00 2.599589e+01 -4.181976 5.403094e-05 4.873057e-04
## DDX18 8.960200e+00 3.476933e+01 3.101413 2.382325e-03 8.285741e-03
## DCAF10 8.949659e+00 2.555328e+01 4.966048 2.197825e-06 4.881312e-05
## PAICS 8.939490e+00 2.055779e+01 5.135059 1.054760e-06 2.824947e-05
## ATP6V0A1 -8.939130e+00 5.292454e+01 -2.605775 1.028282e-02 2.668001e-02
## ATRAID -8.937052e+00 5.035186e+01 -2.390758 1.830975e-02 4.244597e-02
## ECHS1 -8.927613e+00 1.847767e+01 -3.976504 1.177655e-04 8.610969e-04
## B4GALT4 8.923724e+00 2.418808e+01 2.528777 1.269422e-02 3.169547e-02
## SF3B4 -8.922112e+00 3.606203e+01 -5.692003 8.507067e-08 4.970139e-06
## CENPT -8.919034e+00 2.019970e+01 -3.707625 3.134505e-04 1.757623e-03
## ZFYVE26 8.905999e+00 2.543646e+01 3.676684 3.497629e-04 1.896748e-03
## CIAO2B -8.899034e+00 2.813526e+01 -2.535765 1.245614e-02 3.123913e-02
## COMMD5 -8.888828e+00 1.860388e+01 -4.795116 4.548597e-06 8.087910e-05
## PARP15 8.883106e+00 4.232133e+01 3.131248 2.169069e-03 7.679151e-03
## HSD17B4 8.882599e+00 4.753865e+01 2.752750 6.792873e-03 1.907279e-02
## DGKQ -8.881928e+00 1.339824e+01 -5.491549 2.140581e-07 9.132117e-06
## PSMD7 -8.881679e+00 6.501870e+01 -2.318245 2.206508e-02 4.926428e-02
## ANO9 -8.881305e+00 9.193611e+00 -3.374726 9.853637e-04 4.146817e-03
## CEP85L 8.878391e+00 2.792517e+01 3.357833 1.042217e-03 4.337086e-03
## SLC27A1 -8.867537e+00 9.182019e+00 -5.737494 6.882721e-08 4.341972e-06
## MAN1A2 8.867009e+00 2.294460e+01 4.393867 2.354749e-05 2.667672e-04
## ACSS2 -8.859679e+00 4.490624e+01 -2.949736 3.799523e-03 1.194021e-02
## FAM200B -8.858955e+00 4.426267e+01 -2.336084 2.108325e-02 4.753973e-02
## LYSMD3 8.855305e+00 3.226299e+01 2.900019 4.411541e-03 1.344664e-02
## TTN 8.845359e+00 2.737567e+01 2.765286 6.551931e-03 1.852787e-02
## YIF1B -8.831260e+00 1.808188e+01 -3.676786 3.496370e-04 1.896748e-03
## SELENON -8.816794e+00 2.696512e+01 -3.498352 6.496832e-04 3.007511e-03
## ZKSCAN1 8.816659e+00 3.904944e+01 3.306734 1.233446e-03 4.942120e-03
## KIAA2026 8.815147e+00 2.650521e+01 3.574045 5.008353e-04 2.482201e-03
## GPR162 -8.809435e+00 1.056945e+01 -4.493757 1.577242e-05 1.994252e-04
## FRMD8 -8.806580e+00 4.482045e+01 -2.973716 3.533156e-03 1.124617e-02
## APPBP2 8.790470e+00 3.302521e+01 3.749140 2.703110e-04 1.571514e-03
## CDK16 -8.767098e+00 2.956962e+01 -3.132839 2.158205e-03 7.661084e-03
## ACP5 -8.756209e+00 1.561636e+01 -3.615363 4.338078e-04 2.225329e-03
## TNRC18 -8.750973e+00 3.905694e+01 -3.364445 1.019607e-03 4.262439e-03
## DCK 8.747065e+00 4.034795e+01 3.446864 7.737449e-04 3.424110e-03
## NOC2L -8.731109e+00 1.878158e+01 -4.421197 2.111432e-05 2.459880e-04
## POLRMT -8.728333e+00 1.124837e+01 -4.369483 2.594455e-05 2.855712e-04
## ACADM 8.728080e+00 2.094770e+01 5.450837 2.576062e-07 1.035664e-05
## KPNA5 8.727140e+00 2.838497e+01 2.953142 3.760601e-03 1.184929e-02
## ZBTB7A -8.725320e+00 2.384968e+01 -5.615616 1.211753e-07 6.067961e-06
## TRAF1 -8.714057e+00 2.053752e+01 -3.709901 3.109259e-04 1.746014e-03
## RRAS -8.709565e+00 1.392990e+01 -3.027140 3.000411e-03 9.890183e-03
## SEC24A 8.705712e+00 2.681140e+01 2.899267 4.421457e-03 1.346302e-02
## ZBTB11 8.699903e+00 3.351740e+01 3.193536 1.779697e-03 6.593941e-03
## PHACTR2 8.699426e+00 1.961838e+01 3.373492 9.894166e-04 4.161163e-03
## GIGYF2 8.698084e+00 3.991660e+01 3.161520 1.970895e-03 7.113455e-03
## SF3A2 -8.685079e+00 1.103003e+01 -4.416595 2.150633e-05 2.488495e-04
## TMEM129 -8.682461e+00 1.830864e+01 -5.423682 2.913499e-07 1.110675e-05
## LRBA 8.675177e+00 2.016484e+01 4.141997 6.300484e-05 5.434454e-04
## EXOSC4 -8.673161e+00 8.740912e+00 -2.529000 1.268658e-02 3.168972e-02
## RSF1 8.671226e+00 2.169969e+01 4.185949 5.320940e-05 4.820958e-04
## TP53I13 -8.669515e+00 7.957969e+00 -4.428567 2.050077e-05 2.416890e-04
## FAM234A -8.669179e+00 1.168475e+01 -5.306278 4.940891e-07 1.614297e-05
## MTRNR2L3 -8.669074e+00 1.428124e+01 -4.075108 8.129486e-05 6.572304e-04
## PPP2CB 8.664705e+00 2.876596e+01 3.558186 5.290699e-04 2.582209e-03
## NDOR1 -8.661786e+00 1.651867e+01 -3.785125 2.375328e-04 1.436583e-03
## IPO7 8.658290e+00 2.954097e+01 3.105429 2.352532e-03 8.211016e-03
## KMT2A 8.657618e+00 2.829603e+01 2.834223 5.360553e-03 1.572500e-02
## MYLK 8.657475e+00 1.493465e+01 3.843468 1.922751e-04 1.240687e-03
## NFKBIE -8.650968e+00 1.940920e+01 -3.543971 5.556446e-04 2.673406e-03
## SEC23B 8.627157e+00 5.015761e+01 2.847815 5.150415e-03 1.523290e-02
## RWDD1 -8.625216e+00 2.810940e+01 -4.012717 1.028525e-04 7.799431e-04
## ESRRA -8.624043e+00 2.287860e+01 -4.994133 1.947392e-06 4.467325e-05
## SRBD1 8.619691e+00 3.101500e+01 2.479702 1.448426e-02 3.518708e-02
## ARL5A 8.606697e+00 3.234736e+01 4.347490 2.830660e-05 3.040945e-04
## FBXW11 8.599911e+00 3.109664e+01 3.557845 5.296927e-04 2.584185e-03
## SECISBP2L 8.597850e+00 3.151118e+01 2.691741 8.084518e-03 2.193583e-02
## DHRS4 -8.596700e+00 1.587576e+01 -4.080356 7.969341e-05 6.482605e-04
## DAGLB -8.594286e+00 2.410453e+01 -4.457572 1.824894e-05 2.208494e-04
## EIF4G1 8.589353e+00 7.173805e+01 2.346223 2.054254e-02 4.654766e-02
## SIL1 -8.583249e+00 1.473963e+01 -3.892036 1.609789e-04 1.086631e-03
## PNPT1 8.577728e+00 1.826990e+01 2.738521 7.076096e-03 1.970012e-02
## AKAP9 8.570839e+00 3.393378e+01 2.942625 3.881988e-03 1.213505e-02
## UBE2J2 -8.563699e+00 2.843482e+01 -4.657944 8.061476e-06 1.251428e-04
## CTNNBL1 -8.560396e+00 3.493474e+01 -3.267046 1.404086e-03 5.459823e-03
## STX17 8.543946e+00 1.881522e+01 4.354931 2.748519e-05 2.982382e-04
## GPATCH8 8.526511e+00 2.878337e+01 3.395212 9.203174e-04 3.929073e-03
## CUEDC1 -8.524510e+00 1.455608e+01 -6.084514 1.328606e-08 1.394448e-06
## TAF8 8.523749e+00 3.178794e+01 3.374722 9.853753e-04 4.146817e-03
## LDLR 8.515866e+00 1.492274e+01 4.269570 3.845511e-05 3.805167e-04
## RAD23A -8.513403e+00 2.717567e+01 -2.420860 1.692503e-02 3.987290e-02
## EXOC5 8.508840e+00 3.666966e+01 3.199561 1.745706e-03 6.496414e-03
## MICOS13 -8.492032e+00 9.441504e+00 -3.920464 1.449784e-04 9.996763e-04
## MIS18BP1 8.485608e+00 3.257726e+01 2.766847 6.522482e-03 1.845626e-02
## RXRB -8.472593e+00 7.544514e+01 -2.440536 1.607098e-02 3.823508e-02
## NDUFB5 -8.465036e+00 3.728487e+01 -4.946976 2.385455e-06 5.134573e-05
## ZMAT5 -8.456786e+00 1.938715e+01 -3.652951 3.802774e-04 2.018840e-03
## UPK3BL1 -8.452693e+00 2.331188e+01 -2.494854 1.390892e-02 3.411079e-02
## ARSB 8.436429e+00 2.308291e+01 5.068454 1.411112e-06 3.538221e-05
## SRSF4 8.434309e+00 6.388645e+01 2.670558 8.582602e-03 2.300851e-02
## ELK4 8.433220e+00 2.604580e+01 3.419200 8.492761e-04 3.700496e-03
## UBR3 8.429753e+00 2.758518e+01 3.249754 1.485121e-03 5.685686e-03
## CNST 8.422672e+00 3.201148e+01 3.763119 2.570981e-04 1.523830e-03
## C5orf51 8.422332e+00 2.241249e+01 4.468231 1.748289e-05 2.144230e-04
## ATXN7L3B 8.420384e+00 5.556249e+01 2.944104 3.864710e-03 1.210018e-02
## YKT6 -8.417048e+00 8.339764e+01 -2.465123 1.505779e-02 3.625362e-02
## SLC2A5 8.413099e+00 9.218800e+00 3.264800 1.414374e-03 5.489030e-03
## MRPL38 -8.411706e+00 1.417414e+01 -3.225220 1.607596e-03 6.060422e-03
## KPNA6 8.411552e+00 4.246204e+01 3.786525 2.363377e-04 1.431545e-03
## MAP3K14 -8.409789e+00 1.994426e+01 -4.307455 3.314772e-05 3.389069e-04
## TTC37 8.400857e+00 2.561168e+01 3.499394 6.473765e-04 2.998003e-03
## SLFN13 8.397156e+00 1.754261e+01 6.397938 2.887693e-09 4.823668e-07
## PSMC2 8.392420e+00 5.054249e+01 2.870833 4.811687e-03 1.438533e-02
## FAM168A 8.389101e+00 4.525422e+01 2.519071 1.303169e-02 3.232710e-02
## MIGA2 -8.388667e+00 2.307077e+01 -3.519312 6.047535e-04 2.852974e-03
## MATK -8.388332e+00 9.315206e+00 -3.343359 1.093356e-03 4.491586e-03
## PEX16 -8.383064e+00 1.218291e+01 -4.349543 2.807769e-05 3.030040e-04
## CS 8.382804e+00 6.918905e+01 3.043122 2.856089e-03 9.520295e-03
## AGPS 8.381226e+00 2.898108e+01 4.022856 9.901167e-05 7.585778e-04
## SNRNP35 -8.378568e+00 2.813585e+01 -3.372638 9.922299e-04 4.170038e-03
## XRRA1 -8.376822e+00 1.953467e+01 -2.702715 7.836903e-03 2.139940e-02
## MIF4GD -8.372870e+00 2.396256e+01 -3.743972 2.753568e-04 1.593125e-03
## ABCC4 8.372046e+00 1.594838e+01 3.642494 3.945058e-04 2.075198e-03
## LATS2 8.367969e+00 1.903370e+01 4.058828 8.646100e-05 6.905236e-04
## RASSF7 -8.362538e+00 7.936898e+00 -3.583807 4.841703e-04 2.422895e-03
## DHCR24 8.358509e+00 1.364447e+01 5.112227 1.165721e-06 3.058729e-05
## SEC63 8.340228e+00 4.194978e+01 3.309503 1.222295e-03 4.912377e-03
## GNL3L 8.337315e+00 2.936114e+01 5.194305 8.126450e-07 2.345005e-05
## FYTTD1 8.334421e+00 4.199973e+01 3.574951 4.992669e-04 2.479609e-03
## FBXW4 -8.332737e+00 2.167381e+01 -3.472369 7.097413e-04 3.205644e-03
## SPNS1 -8.331380e+00 1.207527e+01 -5.440123 2.704373e-07 1.065577e-05
## DRAM2 -8.329028e+00 5.342142e+01 -2.942729 3.880775e-03 1.213445e-02
## RINL -8.316701e+00 3.743900e+01 -4.201210 5.016338e-05 4.597664e-04
## ZNF865 -8.312071e+00 1.158684e+01 -5.626517 1.152277e-07 5.916021e-06
## PDZD4 -8.309500e+00 1.144778e+01 -3.503621 6.381024e-04 2.965476e-03
## FAM76B 8.295567e+00 3.031518e+01 2.745631 6.933260e-03 1.938436e-02
## DPM2 -8.293453e+00 1.847944e+01 -2.456392 1.541087e-02 3.696466e-02
## LSM4 -8.280997e+00 2.153803e+01 -3.428732 8.225015e-04 3.604903e-03
## PIK3C2A 8.273188e+00 1.992995e+01 4.330063 3.032395e-05 3.193979e-04
## EGF 8.270179e+00 1.065500e+01 4.097685 7.461678e-05 6.158351e-04
## ZNF672 -8.251938e+00 2.761042e+01 -3.569819 5.082179e-04 2.507564e-03
## TUBGCP6 -8.251369e+00 2.662201e+01 -3.240859 1.528484e-03 5.817657e-03
## LSM8 -8.249026e+00 3.452969e+01 -3.977522 1.173195e-04 8.588631e-04
## TRIM26 8.242118e+00 3.837458e+01 3.165623 1.945364e-03 7.042396e-03
## NUP205 8.236098e+00 1.882619e+01 4.482568 1.650133e-05 2.058489e-04
## STRADA -8.233705e+00 3.738181e+01 -3.952646 1.286953e-04 9.172632e-04
## ARMC7 -8.230090e+00 2.531383e+01 -3.299753 1.261983e-03 5.025150e-03
## DNAJC14 8.229237e+00 3.068707e+01 3.825678 2.051245e-04 1.294719e-03
## TNFSF12 -8.210714e+00 2.620079e+01 -3.237372 1.545800e-03 5.866619e-03
## MYG1 -8.194135e+00 1.438284e+01 -5.031939 1.653659e-06 3.954111e-05
## MYC -8.193839e+00 2.615070e+01 -2.954407 3.746230e-03 1.181575e-02
## ATAD2 8.193469e+00 1.211435e+01 6.479874 1.926203e-09 3.684640e-07
## DENND4A 8.192785e+00 3.262415e+01 3.334913 1.124275e-03 4.595098e-03
## KCNN4 -8.189785e+00 1.033067e+01 -4.433068 2.013463e-05 2.377817e-04
## TP53BP2 8.187184e+00 3.436596e+01 2.458831 1.531149e-02 3.677962e-02
## NSMF -8.185821e+00 1.117961e+01 -5.706276 7.960689e-08 4.733722e-06
## MINK1 -8.180096e+00 6.387061e+01 -2.589371 1.075893e-02 2.770921e-02
## INO80E -8.179555e+00 1.610606e+01 -4.912602 2.763667e-06 5.682886e-05
## CLEC5A 8.177565e+00 1.976708e+01 2.382201 1.872129e-02 4.318896e-02
## EPHB4 -8.175308e+00 1.796142e+01 -2.745409 6.937676e-03 1.939214e-02
## RTL8C -8.171803e+00 1.131030e+01 -5.641681 1.074278e-07 5.612746e-06
## IARS1 8.170435e+00 2.129363e+01 4.007009 1.050771e-04 7.905628e-04
## E2F1 8.159875e+00 1.297867e+01 3.431191 8.157240e-04 3.580456e-03
## PLEKHM3 8.147862e+00 1.785398e+01 3.739395 2.799000e-04 1.611463e-03
## NDUFS3 -8.145994e+00 3.057298e+01 -3.067329 2.649661e-03 8.988839e-03
## DERL2 -8.143316e+00 4.675822e+01 -3.168944 1.924931e-03 6.984958e-03
## HNMT -8.138178e+00 1.926410e+01 -4.121135 6.823794e-05 5.752153e-04
## CAND1 8.127618e+00 3.886795e+01 3.638664 3.998422e-04 2.089964e-03
## POLL -8.104739e+00 1.538896e+01 -4.463861 1.779313e-05 2.162157e-04
## REPIN1 -8.096974e+00 2.288002e+01 -4.459431 1.811303e-05 2.194286e-04
## CPSF1 -8.095717e+00 2.130243e+01 -2.726605 7.321499e-03 2.030231e-02
## KDELR1 -8.094406e+00 4.302458e+01 -2.925697 4.084973e-03 1.263306e-02
## AKR1B1 -8.091414e+00 2.668506e+01 -2.362979 1.967571e-02 4.493625e-02
## H2AJ -8.089007e+00 1.515995e+01 -3.226633 1.600293e-03 6.034807e-03
## NUDT16L1 -8.080813e+00 1.700588e+01 -4.323341 3.113842e-05 3.245181e-04
## SCAF8 8.074170e+00 4.052256e+01 2.510262 1.334489e-02 3.296613e-02
## BABAM2 -8.067966e+00 2.734741e+01 -4.926859 2.600211e-06 5.467820e-05
## PRPF19 -8.060101e+00 4.128558e+01 -2.345133 2.060006e-02 4.663995e-02
## SNRPA -8.051214e+00 2.112387e+01 -2.814831 5.673916e-03 1.647714e-02
## METTL26 -8.045210e+00 7.711972e+00 -3.818189 2.107740e-04 1.322635e-03
## MCM3 8.028378e+00 3.101750e+01 3.290465 1.300909e-03 5.142925e-03
## SH2B1 -8.025044e+00 2.723072e+01 -4.300685 3.404135e-05 3.456596e-04
## EMG1 -8.024029e+00 3.052906e+01 -2.536704 1.242446e-02 3.118604e-02
## ZNF581 -8.014281e+00 1.407894e+01 -3.764055 2.562358e-04 1.519478e-03
## WIPI2 -8.011385e+00 6.782077e+01 -2.654451 8.979726e-03 2.386812e-02
## RBM27 8.010752e+00 2.871347e+01 3.699064 3.231234e-04 1.796645e-03
## NRM -8.009683e+00 1.595552e+01 -4.578910 1.115717e-05 1.570331e-04
## C2CD3 7.998266e+00 1.859546e+01 4.608460 9.884664e-06 1.441969e-04
## VPS13A 7.997002e+00 1.623763e+01 4.658475 8.043795e-06 1.251428e-04
## LEMD2 -7.988769e+00 4.078282e+01 -4.212928 4.793881e-05 4.469767e-04
## EHD3 7.987604e+00 2.032934e+01 3.505993 6.329525e-04 2.949633e-03
## SLC35F5 7.987436e+00 2.968134e+01 3.417463 8.542427e-04 3.718976e-03
## RPAP2 7.978806e+00 2.077064e+01 4.589174 1.069818e-05 1.530524e-04
## PUM1 7.959933e+00 4.105636e+01 3.182441 1.843910e-03 6.774713e-03
## RCOR3 7.956961e+00 3.665050e+01 3.100804 2.386876e-03 8.299134e-03
## CCDC9 -7.955029e+00 1.475414e+01 -4.025791 9.792581e-05 7.531777e-04
## XRCC1 -7.949064e+00 2.436230e+01 -5.502249 2.038627e-07 8.769564e-06
## NUSAP1 7.947137e+00 9.537710e+00 6.053956 1.538697e-08 1.533525e-06
## NRIP1 7.940350e+00 2.160272e+01 3.230651 1.579700e-03 5.966639e-03
## DHX40 7.940110e+00 3.718926e+01 2.887491 4.579401e-03 1.383737e-02
## SRP54 7.937710e+00 4.311980e+01 2.994418 3.317143e-03 1.069348e-02
## ATAD2B 7.929089e+00 2.246466e+01 3.739002 2.802935e-04 1.612945e-03
## DNAJB12 -7.925786e+00 4.418852e+01 -3.083947 2.516027e-03 8.644289e-03
## FAM3A -7.915349e+00 1.098795e+01 -4.585121 1.087722e-05 1.547719e-04
## COPS7A -7.901275e+00 3.298952e+01 -4.744624 5.621909e-06 9.552412e-05
## TATDN2 7.898259e+00 6.748421e+01 3.631967 4.093376e-04 2.129274e-03
## CARD19 -7.891992e+00 1.928393e+01 -3.206409 1.707803e-03 6.383405e-03
## ARHGEF18 -7.882418e+00 5.622365e+01 -2.524455 1.284352e-02 3.196058e-02
## GCC1 7.870252e+00 3.954041e+01 2.674737 8.482178e-03 2.280114e-02
## NUDT21 7.869543e+00 4.767534e+01 3.187802 1.812623e-03 6.676307e-03
## UBE2E1 7.862319e+00 4.265987e+01 3.478417 6.953128e-04 3.157713e-03
## SLC25A1 -7.860055e+00 1.218737e+01 -4.500901 1.532339e-05 1.958356e-04
## SDE2 7.853494e+00 2.019426e+01 3.908826 1.513368e-04 1.034498e-03
## TNNI2 -7.844730e+00 6.999728e+00 -6.033903 1.693970e-08 1.627430e-06
## UHRF2 7.844043e+00 3.005601e+01 4.870289 3.309701e-06 6.477402e-05
## WDR81 -7.828339e+00 1.590335e+01 -3.853183 1.855850e-04 1.206520e-03
## GALNT10 7.826944e+00 4.787751e+01 4.250671 4.139899e-05 4.027826e-04
## IL27RA -7.824109e+00 4.168119e+01 -2.317422 2.211138e-02 4.933979e-02
## ZNF318 7.820271e+00 2.568627e+01 2.950302 3.793030e-03 1.192610e-02
## SUGP2 7.814532e+00 4.621708e+01 2.971049 3.561904e-03 1.132552e-02
## ABCE1 7.812833e+00 2.419615e+01 3.485691 6.783255e-04 3.101993e-03
## MPG -7.811562e+00 8.838878e+00 -4.869520 3.320537e-06 6.487902e-05
## TMX3 7.807701e+00 3.815555e+01 2.769485 6.472976e-03 1.838350e-02
## PRKRIP1 -7.795748e+00 2.551916e+01 -4.185125 5.337882e-05 4.827945e-04
## MPHOSPH8 7.787564e+00 6.376356e+01 2.584447 1.090566e-02 2.802789e-02
## NDRG3 7.779880e+00 4.080456e+01 3.449010 7.681563e-04 3.406518e-03
## MOGS -7.778500e+00 3.939152e+01 -2.637302 9.420750e-03 2.483443e-02
## CEP192 7.776935e+00 2.353103e+01 3.324788 1.162417e-03 4.719708e-03
## OTULIN 7.776313e+00 2.837373e+01 3.878596 1.691165e-04 1.126177e-03
## SIRT1 7.766878e+00 2.661332e+01 3.000134 3.259688e-03 1.053978e-02
## BLZF1 7.763227e+00 2.160260e+01 3.507643 6.293931e-04 2.936508e-03
## DIP2A 7.762184e+00 3.502928e+01 2.947297 3.827627e-03 1.200943e-02
## CDIP1 -7.757637e+00 1.878473e+01 -3.700683 3.212728e-04 1.791151e-03
## MORF4L2 7.757616e+00 4.127090e+01 3.761607 2.584969e-04 1.528302e-03
## PLD2 -7.752977e+00 1.482156e+01 -6.438883 2.359418e-09 4.238679e-07
## CDC14B 7.743101e+00 1.230706e+01 4.862053 3.427538e-06 6.642255e-05
## GFI1 7.734784e+00 1.506129e+01 2.813538 5.695386e-03 1.652331e-02
## MDH1 7.727507e+00 5.655451e+01 2.471859 1.479031e-02 3.576939e-02
## ABCF3 -7.724433e+00 2.887444e+01 -3.921228 1.445700e-04 9.980213e-04
## G3BP1 7.722245e+00 5.644260e+01 2.460943 1.522593e-02 3.659901e-02
## COPS2 7.720060e+00 4.140735e+01 2.472824 1.475235e-02 3.569213e-02
## CXXC1 -7.706853e+00 2.787513e+01 -3.387346 9.448023e-04 4.010506e-03
## ZEB1 7.702768e+00 2.465885e+01 3.045999 2.830797e-03 9.442230e-03
## OVCA2 -7.701235e+00 1.762639e+01 -3.602233 4.541307e-04 2.308530e-03
## GPBAR1 -7.692225e+00 8.252092e+00 -4.870985 3.299928e-06 6.477402e-05
## ZNF518A 7.690144e+00 3.079097e+01 2.652620 9.025914e-03 2.396940e-02
## C19orf25 -7.686394e+00 9.995925e+00 -4.636374 8.812239e-06 1.334778e-04
## GART 7.685460e+00 2.536515e+01 4.872511 3.278591e-06 6.459152e-05
## TAX1BP3 -7.684961e+00 2.593053e+01 -2.912156 4.254307e-03 1.305799e-02
## FPGS -7.681046e+00 1.260087e+01 -4.005027 1.058600e-04 7.948873e-04
## CDK13 7.672857e+00 3.860281e+01 2.767153 6.516714e-03 1.845028e-02
## MAD2L1BP 7.664527e+00 3.398890e+01 2.482548 1.437457e-02 3.496216e-02
## PCNX4 7.661278e+00 2.670849e+01 3.390338 9.354176e-04 3.982072e-03
## PHKB 7.661264e+00 4.623304e+01 2.911492 4.262773e-03 1.307045e-02
## CKAP5 7.654220e+00 2.002765e+01 4.557936 1.215494e-05 1.656983e-04
## TCOF1 -7.638357e+00 1.955055e+01 -3.356636 1.046358e-03 4.349525e-03
## SREBF1 -7.638235e+00 1.180905e+01 -6.107269 1.190739e-08 1.273418e-06
## REEP3 7.637914e+00 2.334613e+01 5.066590 1.422607e-06 3.559518e-05
## RASA4B -7.637748e+00 1.221461e+01 -4.006415 1.053111e-04 7.915019e-04
## TRAPPC5 -7.631783e+00 1.130855e+01 -3.430886 8.165622e-04 3.581519e-03
## AP5M1 7.628235e+00 4.154590e+01 2.693458 8.045309e-03 2.185464e-02
## SIKE1 7.623599e+00 2.195678e+01 4.957385 2.281205e-06 4.973363e-05
## DCAF15 -7.614252e+00 1.807130e+01 -5.535443 1.751655e-07 7.810009e-06
## NCK1 7.612620e+00 2.926003e+01 3.806623 2.197910e-04 1.364775e-03
## RIF1 7.608518e+00 2.654692e+01 3.681518 3.438387e-04 1.876635e-03
## ZNF787 -7.604479e+00 2.024726e+01 -3.137654 2.125647e-03 7.572897e-03
## ZC3H15 7.596622e+00 4.990139e+01 2.380144 1.882142e-02 4.336091e-02
## PPM1G -7.592424e+00 5.501452e+01 -2.723781 7.380772e-03 2.042370e-02
## ACAP3 -7.584212e+00 1.500451e+01 -3.872545 1.729064e-04 1.141716e-03
## GLB1 -7.580130e+00 6.334692e+01 -2.619065 9.911114e-03 2.589685e-02
## LONP1 -7.578937e+00 1.202611e+01 -3.754051 2.655976e-04 1.550191e-03
## EIF4EBP3 -7.574716e+00 1.196776e+01 -4.768019 5.097171e-06 8.877011e-05
## POLM -7.572852e+00 2.148772e+01 -5.659753 9.880498e-08 5.355835e-06
## SYMPK -7.571718e+00 2.506982e+01 -3.303266 1.247546e-03 4.988500e-03
## ZNF524 -7.565237e+00 6.226857e+00 -5.581131 1.420377e-07 6.765331e-06
## TPCN1 -7.558017e+00 1.895048e+01 -3.938513 1.356190e-04 9.551317e-04
## REV3L 7.557730e+00 1.774182e+01 3.854147 1.849331e-04 1.203791e-03
## CREB3L2 7.557523e+00 1.981567e+01 4.522880 1.401788e-05 1.839136e-04
## ZC3H13 7.554945e+00 3.932553e+01 2.777176 6.330617e-03 1.804401e-02
## TMEM208 -7.552003e+00 2.840579e+01 -2.323510 2.177123e-02 4.877347e-02
## SNTB2 7.551490e+00 2.300223e+01 2.995119 3.310050e-03 1.067932e-02
## BUB1 7.548501e+00 7.294151e+00 5.556365 1.591506e-07 7.315991e-06
## PDZK1IP1 -7.547017e+00 9.907581e+00 -3.461692 7.359032e-04 3.293514e-03
## SLBP 7.546096e+00 5.114101e+01 2.483076 1.435432e-02 3.492148e-02
## GLCCI1 7.544349e+00 2.352113e+01 3.028211 2.990536e-03 9.865856e-03
## PPIL2 -7.537850e+00 2.895664e+01 -3.967593 1.217400e-04 8.794906e-04
## MED23 7.530890e+00 3.481579e+01 2.354102 2.013081e-02 4.579923e-02
## ZSCAN29 7.520233e+00 1.847486e+01 5.469197 2.369889e-07 9.692028e-06
## ECPAS 7.507881e+00 5.179794e+01 2.523828 1.286530e-02 3.200135e-02
## PMM1 -7.505957e+00 1.697339e+01 -3.780701 2.413494e-04 1.451609e-03
## YEATS2 7.497742e+00 2.274426e+01 5.430833 2.820669e-07 1.093240e-05
## TNIK 7.496714e+00 1.449295e+01 5.382970 3.501709e-07 1.266167e-05
## PPP1R14B -7.486369e+00 1.286853e+01 -4.185405 5.332107e-05 4.827389e-04
## HMGCS1 7.478294e+00 2.155242e+01 4.914841 2.737349e-06 5.665786e-05
## TBC1D23 7.476680e+00 3.863476e+01 2.619652 9.894968e-03 2.587415e-02
## DMXL1 7.469216e+00 2.465946e+01 3.404628 8.917907e-04 3.834894e-03
## RBM15B -7.466719e+00 3.841760e+01 -4.493470 1.579075e-05 1.994444e-04
## PITPNB 7.461481e+00 3.265382e+01 4.808845 4.292952e-06 7.811824e-05
## DMAP1 -7.457021e+00 1.628393e+01 -3.972490 1.195402e-04 8.687171e-04
## LRRC8D 7.453402e+00 2.933636e+01 3.704509 3.169394e-04 1.770561e-03
## ARL5B 7.450499e+00 1.800796e+01 3.455762 7.508229e-04 3.342627e-03
## KIAA1958 7.446754e+00 1.026758e+01 4.087223 7.764329e-05 6.361041e-04
## SSH3 -7.442391e+00 2.604403e+01 -3.064934 2.669446e-03 9.043025e-03
## EIF2B4 -7.441838e+00 2.255576e+01 -3.841844 1.934156e-04 1.244660e-03
## PATL2 7.439009e+00 1.928900e+01 3.721126 2.987523e-04 1.688848e-03
## RPA2 -7.437591e+00 5.804162e+01 -2.373580 1.914416e-02 4.394227e-02
## SCRN2 -7.422941e+00 1.024813e+01 -4.797591 4.501456e-06 8.040251e-05
## LEMD3 7.419732e+00 3.364193e+01 2.708387 7.711643e-03 2.111267e-02
## ASMTL -7.416375e+00 1.662093e+01 -4.546500 1.273468e-05 1.710457e-04
## OPA1 7.415201e+00 3.245593e+01 3.558981 5.276185e-04 2.578309e-03
## SLC39A9 7.410154e+00 3.976978e+01 3.436299 8.018140e-04 3.533822e-03
## SPOUT1 -7.399055e+00 2.331154e+01 -2.781843 6.245630e-03 1.784036e-02
## DDX46 7.395155e+00 4.691826e+01 2.582949 1.095065e-02 2.810534e-02
## ANXA4 7.392661e+00 3.157039e+01 3.417378 8.544865e-04 3.718976e-03
## TASOR2 7.386266e+00 1.534560e+01 4.298464 3.433954e-05 3.483892e-04
## ATP13A1 -7.383992e+00 2.281762e+01 -2.631237 9.581346e-03 2.518501e-02
## FEN1 7.382725e+00 1.415048e+01 4.178435 5.477349e-05 4.928783e-04
## USP47 7.360429e+00 4.739430e+01 2.654828 8.970254e-03 2.385512e-02
## SLC25A20 -7.358681e+00 4.535745e+01 -2.954764 3.742191e-03 1.180697e-02
## THOC6 -7.354110e+00 1.286914e+01 -3.680198 3.454468e-04 1.882129e-03
## PSMG3 -7.349854e+00 1.167551e+01 -4.083346 7.879451e-05 6.431541e-04
## RCHY1 7.343626e+00 3.129796e+01 2.713675 7.596506e-03 2.086005e-02
## ZNF32 -7.341311e+00 1.629417e+01 -3.196612 1.762266e-03 6.543669e-03
## NHP2 -7.335961e+00 1.478487e+01 -3.053303 2.767517e-03 9.287705e-03
## DOCK4 7.332639e+00 1.922267e+01 2.604409 1.032172e-02 2.675750e-02
## DDX49 -7.331425e+00 1.523671e+01 -3.595002 4.657032e-04 2.355326e-03
## AQR 7.330679e+00 3.045538e+01 3.469194 7.174287e-04 3.234019e-03
## CCT2 7.321871e+00 4.494309e+01 2.561710 1.160683e-02 2.947688e-02
## RFNG -7.318773e+00 1.035427e+01 -4.205840 4.927271e-05 4.547660e-04
## OXER1 -7.318034e+00 9.987774e+00 -6.668676 7.510923e-10 1.936512e-07
## SLC39A13 -7.315309e+00 9.362732e+00 -6.427152 2.500176e-09 4.360600e-07
## RPRD2 7.305853e+00 2.670022e+01 4.026859 9.753336e-05 7.508270e-04
## CHD9 7.302913e+00 1.898585e+01 4.153236 6.034713e-05 5.254897e-04
## RUVBL2 -7.296781e+00 1.285314e+01 -3.205642 1.712009e-03 6.395094e-03
## MAPRE2 7.292545e+00 3.949713e+01 3.033587 2.941403e-03 9.744426e-03
## TOR2A -7.285221e+00 1.410818e+01 -4.988012 1.999490e-06 4.542902e-05
## B3GNTL1 -7.284468e+00 1.279576e+01 -4.612613 9.717484e-06 1.426713e-04
## LATS1 7.284174e+00 1.826010e+01 4.353354 2.765741e-05 2.998326e-04
## VPS36 7.282680e+00 3.787610e+01 2.992046 3.341270e-03 1.075080e-02
## ARID5B 7.253538e+00 1.937040e+01 3.569378 5.089927e-04 2.510043e-03
## ITPA -7.250592e+00 1.822375e+01 -3.031086 2.964163e-03 9.802903e-03
## CSNK1G1 7.244119e+00 2.278862e+01 4.324042 3.105251e-05 3.241926e-04
## GAPVD1 7.237910e+00 4.474549e+01 2.457691 1.535788e-02 3.686389e-02
## PSME4 7.237708e+00 5.103910e+01 3.345561 1.085426e-03 4.474009e-03
## VIRMA 7.237225e+00 4.041834e+01 3.133019 2.156981e-03 7.661084e-03
## KLC1 -7.232746e+00 5.548037e+01 -2.765105 6.555364e-03 1.853316e-02
## SMC5 7.228786e+00 2.756512e+01 3.238826 1.538555e-03 5.846608e-03
## MFSD5 -7.227039e+00 2.866155e+01 -3.047861 2.814544e-03 9.410254e-03
## DHX36 7.225964e+00 2.615112e+01 3.965976 1.224747e-04 8.824727e-04
## MED18 -7.220440e+00 2.443455e+01 -3.574499 5.000498e-04 2.481407e-03
## SH2B2 -7.218767e+00 1.146082e+01 -4.751831 5.454913e-06 9.368969e-05
## ENDOD1 7.202466e+00 2.710927e+01 2.650858 9.070553e-03 2.405025e-02
## SKIV2L -7.185172e+00 4.727971e+01 -3.004127 3.220097e-03 1.045166e-02
## VEGFA 7.184210e+00 1.753790e+01 3.089816 2.470346e-03 8.521905e-03
## NSD2 7.176432e+00 1.704069e+01 5.763812 6.086181e-08 4.032520e-06
## HNRNPA0 -7.165298e+00 5.231583e+01 -2.619551 9.897748e-03 2.587415e-02
## MRPL52 -7.159027e+00 1.131877e+01 -3.472736 7.088586e-04 3.205133e-03
## MAP1S -7.152296e+00 8.371213e+00 -5.553229 1.614558e-07 7.393306e-06
## GABPA 7.148650e+00 3.536235e+01 2.685759 8.222451e-03 2.224911e-02
## CD2AP 7.144255e+00 1.629266e+01 3.461749 7.357635e-04 3.293514e-03
## TMEM101 -7.142625e+00 2.204445e+01 -4.263640 3.935651e-05 3.870383e-04
## CSF1 7.136937e+00 1.604447e+01 3.480011 6.915563e-04 3.145636e-03
## ABCD4 -7.136766e+00 1.887275e+01 -4.958814 2.267242e-06 4.963534e-05
## CCDC71 -7.136765e+00 1.504596e+01 -5.235657 6.767152e-07 2.068516e-05
## TRIM11 -7.127008e+00 2.216226e+01 -3.764472 2.558526e-04 1.519222e-03
## ZMIZ2 -7.117732e+00 2.160966e+01 -3.776463 2.450594e-04 1.470853e-03
## WDR74 -7.117044e+00 1.363374e+01 -3.682324 3.428600e-04 1.873017e-03
## SRRM1 7.116846e+00 4.027897e+01 2.699219 7.915041e-03 2.156003e-02
## FASTKD5 7.116465e+00 2.528509e+01 3.535577 5.719229e-04 2.733981e-03
## MOSPD3 -7.115979e+00 7.036004e+00 -4.218768 4.686571e-05 4.393892e-04
## TM7SF3 7.112488e+00 3.271562e+01 4.293976 3.494982e-05 3.530706e-04
## COPS9 -7.110651e+00 1.397782e+01 -3.027991 2.992566e-03 9.869808e-03
## PYM1 -7.105848e+00 1.947500e+01 -3.504029 6.372126e-04 2.963663e-03
## LPCAT4 -7.105483e+00 2.093302e+01 -3.713749 3.067007e-04 1.725555e-03
## UBTD1 -7.093816e+00 9.114590e+00 -4.949730 2.357437e-06 5.091951e-05
## DHTKD1 7.093490e+00 3.051807e+01 2.436471 1.624424e-02 3.854675e-02
## NEMF 7.090386e+00 2.997226e+01 2.885674 4.604240e-03 1.388766e-02
## SRGAP2C 7.087736e+00 1.667102e+01 3.926620 1.417192e-04 9.852226e-04
## FUT4 7.086180e+00 1.925956e+01 2.656194 8.935956e-03 2.378910e-02
## UFM1 7.081716e+00 4.554481e+01 2.490945 1.405537e-02 3.436261e-02
## THYN1 -7.078846e+00 3.044662e+01 -2.668209 8.639505e-03 2.314014e-02
## PTX3 7.076533e+00 8.696532e+00 2.911708 4.260014e-03 1.306875e-02
## RANGRF -7.071585e+00 1.559046e+01 -3.529758 5.834717e-04 2.775762e-03
## HPS3 7.069255e+00 3.272897e+01 3.758699 2.612087e-04 1.537587e-03
## STARD4 7.060669e+00 1.238112e+01 5.188216 8.347852e-07 2.362900e-05
## TIMM13 -7.058597e+00 9.269463e+00 -3.638934 3.994635e-04 2.089964e-03
## DDRGK1 -7.057465e+00 1.619401e+01 -4.910010 2.794430e-06 5.733899e-05
## IRAK2 7.054777e+00 1.125861e+01 3.774883 2.464565e-04 1.474760e-03
## GPRIN3 7.051648e+00 2.072171e+01 2.513399 1.323258e-02 3.272484e-02
## SMARCC2 -7.045125e+00 5.809793e+01 -2.333765 2.120864e-02 4.777439e-02
## REST 7.043536e+00 3.532080e+01 2.825154 5.505068e-03 1.606153e-02
## RCBTB1 7.040226e+00 2.234775e+01 3.685830 3.386338e-04 1.855561e-03
## CLPX 7.033733e+00 3.607939e+01 3.587202 4.784990e-04 2.402624e-03
## BTBD2 -7.032845e+00 1.029058e+01 -5.094735 1.258342e-06 3.237298e-05
## TPPP3 -7.032412e+00 4.216053e+00 -4.341899 2.893934e-05 3.094865e-04
## TPD52 7.031737e+00 1.201302e+01 4.017997 1.008349e-04 7.685744e-04
## UBE4B 7.031484e+00 3.908683e+01 2.513694 1.322206e-02 3.271722e-02
## SOCS4 7.029888e+00 1.959322e+01 5.210773 7.555891e-07 2.241690e-05
## ACBD3 7.028315e+00 2.900214e+01 3.693956 3.290286e-04 1.820093e-03
## RASA1 7.027914e+00 2.479803e+01 3.433191 8.102500e-04 3.565701e-03
## GOLGA5 7.022777e+00 3.120932e+01 4.028594 9.689924e-05 7.476110e-04
## KEAP1 -7.017557e+00 2.661450e+01 -3.188032 1.811289e-03 6.673467e-03
## OPLAH -7.017371e+00 8.764658e+00 -2.823533 5.531284e-03 1.613008e-02
## GNL3 7.014943e+00 3.206503e+01 2.891093 4.530547e-03 1.373049e-02
## CBX6 -7.013909e+00 3.779113e+01 -2.657484 8.903699e-03 2.372986e-02
## ZMYND8 7.012061e+00 2.655382e+01 4.190206 5.234226e-05 4.763426e-04
## IL11RA -7.007228e+00 9.889316e+00 -3.381313 9.639922e-04 4.073013e-03
## DNPEP -7.006926e+00 1.850241e+01 -2.880614 4.674021e-03 1.404456e-02
## SIRT6 -7.004866e+00 8.585883e+00 -4.542638 1.293647e-05 1.727776e-04
## DPH7 -6.999908e+00 1.941031e+01 -3.117454 2.265365e-03 7.958302e-03
## ALG11 6.991174e+00 1.672117e+01 5.320779 4.630473e-07 1.555734e-05
## ATF2 6.976855e+00 3.727888e+01 2.642026 9.297360e-03 2.456375e-02
## COG3 6.969608e+00 2.536233e+01 4.265026 3.914404e-05 3.855883e-04
## SOCS5 6.963958e+00 1.694297e+01 3.025141 3.018931e-03 9.935241e-03
## ACOT8 -6.963002e+00 1.303125e+01 -4.486036 1.627198e-05 2.037863e-04
## CASP8AP2 6.954431e+00 1.582888e+01 4.066336 8.404069e-05 6.752863e-04
## TP53BP1 6.952871e+00 2.019902e+01 4.476496 1.691040e-05 2.095688e-04
## TSR3 -6.951598e+00 1.278686e+01 -3.372188 9.937158e-04 4.174803e-03
## UBE2K 6.947759e+00 5.215666e+01 3.053404 2.766659e-03 9.287453e-03
## TRAPPC11 6.947131e+00 3.241809e+01 2.866483 4.874098e-03 1.453893e-02
## PELP1 -6.934242e+00 1.144704e+01 -3.540194 5.629150e-04 2.702903e-03
## MAPK6 6.934121e+00 1.946851e+01 2.600877 1.042295e-02 2.696689e-02
## SEPTIN11 6.931311e+00 1.473516e+01 5.841482 4.226333e-08 3.132769e-06
## DAB2 6.930279e+00 1.773419e+01 3.616188 4.325608e-04 2.221619e-03
## AMDHD2 -6.922038e+00 9.567544e+00 -4.421941 2.105160e-05 2.454985e-04
## AKT1S1 -6.921332e+00 1.139058e+01 -5.427934 2.857939e-07 1.103167e-05
## NOL12 -6.920449e+00 2.286315e+01 -4.274273 3.775442e-05 3.750146e-04
## TMEM179B -6.919484e+00 2.938063e+01 -4.404631 2.255860e-05 2.575024e-04
## GTF2H2C 6.919384e+00 2.918868e+01 2.856081 5.026343e-03 1.493672e-02
## TTPAL 6.911879e+00 2.230395e+01 3.308015 1.228273e-03 4.928052e-03
## DDX56 -6.900166e+00 2.690079e+01 -2.571183 1.130992e-02 2.886501e-02
## EPHB6 -6.900118e+00 1.670746e+01 -3.263686 1.419502e-03 5.503772e-03
## AGO3 6.894197e+00 2.559811e+01 3.982616 1.151115e-04 8.448159e-04
## VEGFB -6.887590e+00 7.137093e+00 -3.942969 1.333984e-04 9.428519e-04
## AMFR -6.878028e+00 4.960672e+01 -2.603983 1.033389e-02 2.677735e-02
## RABGAP1 6.870440e+00 2.488278e+01 4.513006 1.459051e-05 1.893255e-04
## TRAPPC2L -6.864908e+00 2.156604e+01 -2.817234 5.634200e-03 1.637785e-02
## LRRC59 6.861709e+00 4.510553e+01 2.412359 1.730637e-02 4.060406e-02
## NFATC2IP 6.856000e+00 2.723838e+01 4.949342 2.361360e-06 5.091951e-05
## LMNA -6.850465e+00 1.345381e+01 -2.830939 5.412475e-03 1.585378e-02
## XK 6.849745e+00 1.068010e+01 4.499495 1.541076e-05 1.966246e-04
## DLG1 6.830573e+00 1.788671e+01 4.945044 2.405308e-06 5.167926e-05
## MEX3C 6.829892e+00 2.403613e+01 3.170218 1.917145e-03 6.966095e-03
## ATG4D -6.828278e+00 1.474693e+01 -3.500821 6.442318e-04 2.986939e-03
## PPP1R35 -6.827208e+00 1.035266e+01 -5.075714 1.367195e-06 3.464729e-05
## MDM1 6.822183e+00 2.360747e+01 2.932697 3.999884e-03 1.242198e-02
## AKR7A2 -6.821687e+00 1.283851e+01 -4.529061 1.367053e-05 1.803476e-04
## TAB1 -6.818221e+00 1.541310e+01 -4.804591 4.370638e-06 7.893132e-05
## GOLGA2 6.815267e+00 3.262925e+01 2.982981 3.434926e-03 1.097898e-02
## GTPBP6 -6.813976e+00 7.632038e+00 -4.298101 3.438860e-05 3.485887e-04
## CDK1 6.809453e+00 6.945888e+00 4.063071 8.508503e-05 6.822911e-04
## PNKP -6.808318e+00 1.543807e+01 -4.920949 2.666801e-06 5.540181e-05
## FBRSL1 -6.798189e+00 1.222482e+01 -4.691579 7.012782e-06 1.137778e-04
## NT5C -6.796664e+00 9.491093e+00 -5.210635 7.560506e-07 2.241690e-05
## NIPA2 6.796406e+00 4.500456e+01 2.525752 1.279855e-02 3.187543e-02
## HNRNPAB 6.795170e+00 4.151170e+01 3.250410 1.481970e-03 5.685686e-03
## TFPT -6.792730e+00 1.134438e+01 -3.844047 1.918696e-04 1.238744e-03
## KIF11 6.789374e+00 7.513803e+00 5.824794 4.571779e-08 3.346994e-06
## UBE3B 6.781778e+00 2.854776e+01 4.465810 1.765410e-05 2.156310e-04
## SFXN3 -6.772214e+00 3.279589e+01 -3.667269 3.615793e-04 1.939544e-03
## HDAC10 -6.769989e+00 1.072716e+01 -3.550023 5.441806e-04 2.636431e-03
## TBC1D17 -6.767726e+00 1.685730e+01 -4.158186 5.921114e-05 5.205664e-04
## SLC5A3 6.762636e+00 1.543358e+01 3.792590 2.312237e-04 1.412835e-03
## NECAB2 -6.761314e+00 9.255283e+00 -3.800892 2.243939e-04 1.383937e-03
## PDPR 6.759636e+00 3.659483e+01 2.394144 1.814917e-02 4.218916e-02
## VPS37C -6.757038e+00 1.213700e+01 -7.131494 7.117211e-11 4.965301e-08
## MFSD12 -6.756833e+00 9.787782e+00 -4.167497 5.712945e-05 5.070721e-04
## ANAPC11 -6.745225e+00 1.364216e+01 -3.058150 2.726253e-03 9.183004e-03
## CLDND1 6.742687e+00 4.380425e+01 2.404627 1.765975e-02 4.125363e-02
## MPST -6.741378e+00 1.031564e+01 -3.369078 1.004041e-03 4.209234e-03
## PSKH1 -6.732842e+00 1.908057e+01 -5.690642 8.561052e-08 4.977161e-06
## SLC37A2 -6.732706e+00 2.758971e+01 -3.288632 1.308719e-03 5.165195e-03
## SRSF10 6.728189e+00 5.712247e+01 2.324590 2.171135e-02 4.867611e-02
## PCLAF 6.720287e+00 8.655233e+00 4.634359 8.885711e-06 1.342478e-04
## VKORC1 -6.716686e+00 2.440993e+01 -2.342069 2.076256e-02 4.693044e-02
## ENGASE -6.715809e+00 1.680177e+01 -3.794702 2.294678e-04 1.405727e-03
## TNFAIP8L2-SCNM1 -6.713526e+00 1.586966e+01 -4.165706 5.752430e-05 5.083743e-04
## DENND1B 6.706954e+00 2.025507e+01 3.680416 3.451802e-04 1.882129e-03
## RPUSD1 -6.705009e+00 6.725533e+00 -4.778594 4.875851e-06 8.579762e-05
## F2R 6.704026e+00 1.494173e+01 4.135524 6.458591e-05 5.534601e-04
## MAPK1IP1L 6.696805e+00 4.939786e+01 2.404379 1.767119e-02 4.127222e-02
## KIFC2 -6.693231e+00 8.742958e+00 -4.891321 3.026346e-06 6.114559e-05
## UVRAG 6.689687e+00 2.743571e+01 3.820623 2.089218e-04 1.313096e-03
## PDK1 6.688821e+00 2.856314e+01 2.934569 3.977407e-03 1.236813e-02
## LETM2 6.686424e+00 1.092490e+01 3.503822 6.376634e-04 2.964597e-03
## RBBP5 6.686363e+00 2.772433e+01 3.810742 2.165384e-04 1.349525e-03
## MEGF6 -6.684218e+00 1.931750e+01 -3.089646 2.471657e-03 8.523946e-03
## LSM2 -6.681189e+00 1.747873e+01 -3.273227 1.376138e-03 5.375823e-03
## THOC2 6.675120e+00 2.350514e+01 3.339058 1.108999e-03 4.543067e-03
## VENTX -6.656384e+00 8.677281e+00 -6.547011 1.379940e-09 2.821739e-07
## NFX1 6.652697e+00 2.472729e+01 4.835856 3.830042e-06 7.198780e-05
## BTBD1 6.648631e+00 4.617942e+01 2.690677 8.108889e-03 2.198204e-02
## MPND -6.646546e+00 8.577298e+00 -4.731246 5.945111e-06 9.944854e-05
## LTBP1 6.640562e+00 1.225122e+01 3.656040 3.761671e-04 2.000602e-03
## SMG9 -6.634472e+00 1.302365e+01 -4.339594 2.920408e-05 3.113890e-04
## LZTR1 -6.627672e+00 2.282526e+01 -3.146625 2.066201e-03 7.394027e-03
## RRM1 6.627295e+00 1.716788e+01 4.912898 2.760168e-06 5.682886e-05
## TMEM106C 6.617059e+00 1.945106e+01 3.315685 1.197738e-03 4.838154e-03
## TMEM109 -6.616349e+00 2.901525e+01 -2.577393 1.111901e-02 2.847581e-02
## ZNF146 6.613679e+00 2.879880e+01 2.614274 1.004370e-02 2.616134e-02
## DHRS12 -6.612086e+00 2.423196e+01 -2.376587 1.899572e-02 4.367223e-02
## WDR47 6.607160e+00 1.887631e+01 3.512926 6.181239e-04 2.899901e-03
## MAD1L1 -6.603803e+00 1.178844e+01 -2.824996 5.507633e-03 1.606506e-02
## SCD 6.603614e+00 8.327400e+00 5.015008 1.779444e-06 4.174712e-05
## ASGR1 -6.601795e+00 5.879841e+00 -6.208723 7.288248e-09 8.743713e-07
## CCNK 6.594349e+00 4.080686e+01 2.456356 1.541233e-02 3.696466e-02
## TRAPPC4 -6.591413e+00 3.443879e+01 -2.512370 1.326931e-02 3.279993e-02
## PIGB 6.589413e+00 2.445336e+01 2.542098 1.224384e-02 3.081747e-02
## ORC4 6.588436e+00 4.620457e+01 2.546927 1.208414e-02 3.047373e-02
## TMUB1 -6.584936e+00 6.908028e+00 -4.976144 2.104393e-06 4.711460e-05
## MCM2 6.577156e+00 9.678482e+00 4.871818 3.288261e-06 6.467458e-05
## PGP -6.572301e+00 1.401906e+01 -3.923058 1.435966e-04 9.930989e-04
## TST -6.569817e+00 1.558343e+01 -2.925208 4.090979e-03 1.264834e-02
## NUBP2 -6.564367e+00 6.268246e+00 -4.269479 3.846877e-05 3.805167e-04
## CBX5 6.552432e+00 2.299816e+01 3.580450 4.898415e-04 2.443028e-03
## RFWD3 6.546143e+00 1.810170e+01 5.639017 1.087594e-07 5.657398e-06
## EIF2AK3 6.528761e+00 1.166398e+01 4.039921 9.285496e-05 7.249900e-04
## DTNBP1 -6.521506e+00 2.669733e+01 -2.926450 4.075740e-03 1.260779e-02
## FBXO44 -6.519324e+00 1.659027e+01 -2.355383 2.006455e-02 4.566601e-02
## ARL3 -6.514303e+00 1.995138e+01 -3.536909 5.693114e-04 2.724791e-03
## FANCI 6.509963e+00 1.061400e+01 5.791112 5.355538e-08 3.697343e-06
## FUCA1 -6.504963e+00 2.310023e+01 -3.362088 1.027615e-03 4.283834e-03
## CIZ1 -6.500645e+00 2.720539e+01 -3.143093 2.089416e-03 7.468497e-03
## SLC2A4RG -6.499102e+00 1.031328e+01 -3.700232 3.217872e-04 1.792577e-03
## STBD1 6.496623e+00 1.136897e+01 2.346008 2.055384e-02 4.655625e-02
## DHPS -6.486139e+00 2.445493e+01 -4.359111 2.703387e-05 2.941484e-04
## GPR137 -6.481722e+00 9.550849e+00 -5.305510 4.957878e-07 1.615396e-05
## IARS2 6.480032e+00 3.979436e+01 2.753853 6.771352e-03 1.902137e-02
## CARMIL2 -6.478091e+00 9.665258e+00 -3.664493 3.651350e-04 1.954197e-03
## BCL2L13 6.468307e+00 3.905025e+01 3.320602 1.178533e-03 4.770445e-03
## RNF25 -6.464866e+00 1.846544e+01 -4.151009 6.086504e-05 5.292224e-04
## TSPAN17 -6.455184e+00 2.286245e+01 -2.732434 7.200509e-03 1.998550e-02
## GGH 6.454127e+00 9.187290e+00 4.164359 5.782298e-05 5.102534e-04
## HSF1 -6.453139e+00 1.526797e+01 -4.576910 1.124878e-05 1.576956e-04
## AIDA 6.450823e+00 5.059493e+01 2.950215 3.794028e-03 1.192610e-02
## ENG -6.448950e+00 7.517699e+00 -4.762459 5.217412e-06 9.033359e-05
## PI4K2B 6.435561e+00 1.531449e+01 4.626979 9.159974e-06 1.369953e-04
## PARP11 6.428867e+00 1.214285e+01 3.353786 1.056285e-03 4.375946e-03
## ZWINT 6.425062e+00 7.083687e+00 5.723555 7.345093e-08 4.560880e-06
## SS18 6.415017e+00 3.520226e+01 4.125238 6.717692e-05 5.703065e-04
## HMGN3 -6.404706e+00 2.976979e+01 -2.836424 5.326000e-03 1.564686e-02
## ALDH16A1 -6.394423e+00 7.824351e+00 -4.153322 6.032732e-05 5.254897e-04
## SLC4A2 -6.386736e+00 1.786706e+01 -3.596513 4.632628e-04 2.345147e-03
## PTGES2 -6.381049e+00 9.792072e+00 -3.731968 2.874240e-04 1.642027e-03
## BPNT2 6.373546e+00 3.121925e+01 3.673764 3.533884e-04 1.908555e-03
## ACTR1B -6.360037e+00 3.230692e+01 -2.369363 1.935406e-02 4.431559e-02
## DENND1A -6.355294e+00 2.905876e+01 -3.092538 2.449424e-03 8.469437e-03
## CCDC115 -6.354504e+00 2.770323e+01 -3.831942 2.005098e-04 1.276461e-03
## B3GALT6 -6.354119e+00 9.230131e+00 -4.612251 9.731963e-06 1.426713e-04
## PHPT1 -6.354045e+00 1.315330e+01 -2.519392 1.302039e-02 3.231258e-02
## ABRACL -6.342794e+00 4.455222e+01 -2.508495 1.340849e-02 3.308191e-02
## TSC1 6.339273e+00 2.520761e+01 3.755039 2.646589e-04 1.546996e-03
## HECTD4 6.333140e+00 1.841572e+01 4.564946 1.181221e-05 1.621445e-04
## ELK3 6.333084e+00 3.455622e+01 3.172500 1.903269e-03 6.928414e-03
## RHOBTB1 6.332590e+00 1.013776e+01 4.346318 2.843812e-05 3.049513e-04
## WASHC5 6.331436e+00 2.981605e+01 3.672384 3.551130e-04 1.916124e-03
## TAF2 6.327261e+00 1.564937e+01 4.765444 5.152519e-06 8.947127e-05
## MPI -6.318820e+00 2.455735e+01 -2.345026 2.060570e-02 4.663995e-02
## MBTD1 6.317254e+00 2.273434e+01 3.254861 1.460744e-03 5.628468e-03
## TMCO6 -6.313286e+00 1.591094e+01 -6.902518 2.302167e-10 1.000180e-07
## DHRSX -6.304801e+00 1.429759e+01 -5.966080 2.342084e-08 2.012834e-06
## RING1 -6.301430e+00 2.217091e+01 -3.389125 9.392121e-04 3.993924e-03
## APBB1 -6.297193e+00 1.029755e+01 -3.488406 6.720847e-04 3.079955e-03
## PDLIM5 6.283129e+00 3.178956e+01 2.694493 8.021755e-03 2.181064e-02
## GCNT1 6.277887e+00 1.954592e+01 3.447601 7.718206e-04 3.416869e-03
## NUP160 6.272840e+00 1.823241e+01 3.987503 1.130305e-04 8.331522e-04
## HOMER3 -6.272591e+00 1.220168e+01 -4.038168 9.347016e-05 7.278766e-04
## CISD3 -6.272017e+00 1.071860e+01 -3.396053 9.177346e-04 3.919457e-03
## SLC48A1 -6.271563e+00 1.747207e+01 -3.826749 2.043282e-04 1.291067e-03
## CTDSPL 6.265425e+00 2.087581e+01 2.441321 1.603771e-02 3.817123e-02
## BET1L -6.263732e+00 5.463977e+01 -2.768442 6.492515e-03 1.842575e-02
## HENMT1 -6.262719e+00 2.612720e+01 -3.103059 2.370075e-03 8.257664e-03
## KLHL22 -6.257750e+00 1.148237e+01 -4.889937 3.044245e-06 6.129838e-05
## PRKD3 6.249147e+00 2.675089e+01 3.488840 6.710924e-04 3.076597e-03
## MDN1 6.247320e+00 1.625109e+01 3.120108 2.246533e-03 7.911245e-03
## EEPD1 -6.246464e+00 2.263370e+01 -3.309258 1.223275e-03 4.914649e-03
## PLA2G6 -6.243831e+00 1.043224e+01 -5.460944 2.460489e-07 1.001324e-05
## CASP7 6.238096e+00 1.821751e+01 3.038648 2.895828e-03 9.614929e-03
## BMP6 6.234044e+00 1.167175e+01 4.013665 1.024877e-04 7.776737e-04
## AP2A2 -6.232725e+00 2.404788e+01 -4.351377 2.787461e-05 3.016358e-04
## TMEM256 -6.229764e+00 1.264563e+01 -2.932358 4.003963e-03 1.242954e-02
## USP28 6.223695e+00 1.504889e+01 3.967539 1.217642e-04 8.794906e-04
## VKORC1L1 6.221429e+00 1.815543e+01 2.458539 1.532334e-02 3.678843e-02
## MRPS18A -6.220401e+00 2.013211e+01 -2.397987 1.796838e-02 4.184175e-02
## RNF113A -6.219360e+00 2.277846e+01 -4.098510 7.438301e-05 6.143333e-04
## S100PBP 6.218908e+00 2.305948e+01 5.291358 5.281419e-07 1.692909e-05
## RNF220 -6.217016e+00 4.907199e+01 -2.516840 1.311036e-02 3.248149e-02
## TEN1 -6.210067e+00 9.883984e+00 -4.085052 7.828589e-05 6.398833e-04
## HEXD -6.208532e+00 1.465741e+01 -2.769196 6.478389e-03 1.839007e-02
## MTRF1L 6.193539e+00 3.075054e+01 3.256841 1.451394e-03 5.597897e-03
## TMEM189 -6.186166e+00 1.619761e+01 -4.317125 3.191024e-05 3.296650e-04
## BRCA1 6.180032e+00 1.275272e+01 4.804490 4.372503e-06 7.893132e-05
## FAF2 6.178723e+00 3.122031e+01 4.099026 7.423723e-05 6.138353e-04
## COA3 -6.175552e+00 1.456493e+01 -3.199435 1.746412e-03 6.497004e-03
## ALDOC -6.175552e+00 1.501200e+01 -2.868902 4.839295e-03 1.444747e-02
## PTTG1 6.159619e+00 9.821735e+00 2.928827 4.046724e-03 1.253111e-02
## RETSAT 6.156744e+00 2.434155e+01 4.499374 1.541829e-05 1.966246e-04
## CCDC137 -6.153590e+00 1.435268e+01 -4.023814 9.865601e-05 7.575713e-04
## CORO2A 6.151353e+00 2.303928e+01 2.561037 1.162818e-02 2.951845e-02
## KANSL3 6.150493e+00 3.350078e+01 3.751438 2.680959e-04 1.562466e-03
## GLE1 6.144902e+00 4.926146e+01 2.531765 1.259194e-02 3.151970e-02
## DAZAP1 -6.142978e+00 2.823407e+01 -2.665449 8.706802e-03 2.328883e-02
## ICE1 6.132259e+00 2.366489e+01 3.375072 9.842301e-04 4.145231e-03
## CCDC57 -6.126845e+00 1.573375e+01 -4.206939 4.906368e-05 4.540202e-04
## ING3 6.118534e+00 2.469458e+01 2.652895 9.018949e-03 2.395627e-02
## MSRB3 6.115453e+00 1.287583e+01 3.782709 2.396099e-04 1.444725e-03
## DRG2 -6.113830e+00 1.504177e+01 -3.537182 5.687762e-04 2.724295e-03
## LUC7L -6.106642e+00 2.263940e+01 -3.563655 5.191670e-04 2.544347e-03
## UBA2 6.104451e+00 4.649271e+01 2.401918 1.778509e-02 4.148920e-02
## TMEM170A 6.098794e+00 2.262480e+01 3.973503 1.190898e-04 8.670383e-04
## ATP6V0E2 -6.086691e+00 8.987266e+00 -3.758464 2.614284e-04 1.537587e-03
## MRPL49 6.075565e+00 3.850536e+01 4.419800 2.123255e-05 2.471227e-04
## ACP2 -6.068007e+00 1.381038e+01 -3.322474 1.171300e-03 4.744406e-03
## NDUFA7 -6.067760e+00 1.563909e+01 -3.107719 2.335699e-03 8.157063e-03
## ODF3B -6.066737e+00 6.399269e+00 -3.161529 1.970836e-03 7.113455e-03
## SMS 6.064220e+00 4.362716e+01 2.382716 1.869630e-02 4.314811e-02
## TXNRD2 -6.061830e+00 1.009480e+01 -4.584851 1.088926e-05 1.547719e-04
## CCDC82 6.057799e+00 3.463308e+01 2.331388 2.133790e-02 4.801645e-02
## SGF29 -6.054257e+00 1.059404e+01 -4.109984 7.120326e-05 5.951168e-04
## OCEL1 -6.053988e+00 8.598829e+00 -4.929262 2.573610e-06 5.440822e-05
## TCF19 6.052519e+00 8.786556e+00 5.707247 7.924795e-08 4.733722e-06
## SREK1 6.038467e+00 3.240577e+01 2.807576 5.795390e-03 1.673154e-02
## GHDC -6.037482e+00 1.338641e+01 -3.859953 1.810543e-04 1.186356e-03
## TMEM175 -6.034034e+00 1.329342e+01 -4.696901 6.859435e-06 1.117485e-04
## NAGPA -6.033266e+00 9.030750e+00 -4.219207 4.678596e-05 4.390459e-04
## MGAT5 6.029525e+00 4.416082e+01 2.348521 2.042169e-02 4.634543e-02
## RAE1 -6.027026e+00 3.551888e+01 -2.436813 1.622960e-02 3.854152e-02
## AAAS -6.025724e+00 2.098386e+01 -3.810848 2.164555e-04 1.349525e-03
## FARSA -6.022189e+00 1.241728e+01 -4.099533 7.409401e-05 6.132275e-04
## NBPF12 6.020871e+00 1.675312e+01 3.669462 3.587943e-04 1.926347e-03
## SPIN1 6.020575e+00 1.530550e+01 5.142800 1.019526e-06 2.770901e-05
## HYPK -6.011392e+00 2.001202e+01 -2.635942 9.456548e-03 2.490665e-02
## DARS1 6.006460e+00 3.036689e+01 3.188370 1.809335e-03 6.670412e-03
## MIF -6.001501e+00 6.159010e+00 -3.712724 3.078205e-04 1.730214e-03
## CERS6 6.001324e+00 2.227757e+01 4.037405 9.373907e-05 7.290134e-04
## MROH6 -6.000117e+00 8.219432e+00 -3.568518 5.105100e-04 2.515433e-03
## HSPA4 5.998304e+00 5.706318e+01 3.402027 8.995881e-04 3.858631e-03
## U2AF1L4 -5.998016e+00 9.493169e+00 -3.873300 1.724291e-04 1.139281e-03
## P2RX4 -5.996449e+00 2.019813e+01 -2.874109 4.765175e-03 1.426426e-02
## ZNF335 -5.994435e+00 2.504953e+01 -3.392565 9.284905e-04 3.959690e-03
## TRAPPC6A -5.991024e+00 6.693045e+00 -3.382457 9.603261e-04 4.061864e-03
## ACSF3 -5.988548e+00 1.153599e+01 -4.659455 8.011294e-06 1.250183e-04
## MAN2B2 -5.988086e+00 3.755041e+01 -3.526558 5.899149e-04 2.799676e-03
## CDK11A -5.981653e+00 3.797667e+01 -2.321978 2.185639e-02 4.892729e-02
## ZC3H3 -5.977745e+00 1.505171e+01 -2.490382 1.407654e-02 3.440095e-02
## LIG4 5.968804e+00 2.408274e+01 2.448033 1.575580e-02 3.763622e-02
## AXIN1 -5.968185e+00 2.901411e+01 -3.793594 2.303876e-04 1.409906e-03
## WDR91 -5.966516e+00 2.213817e+01 -4.233699 4.422609e-05 4.236001e-04
## CLPTM1 -5.961746e+00 3.432840e+01 -3.585320 4.816342e-04 2.413258e-03
## SDR39U1 -5.960192e+00 1.199168e+01 -3.470923 7.132345e-04 3.217558e-03
## ZNF493 5.959261e+00 1.815725e+01 2.575465 1.117796e-02 2.858357e-02
## SMURF2 5.944624e+00 2.515510e+01 3.125873 2.206129e-03 7.794070e-03
## OSBP 5.928371e+00 3.421764e+01 3.407517 8.832063e-04 3.817411e-03
## RFC1 5.919568e+00 2.313335e+01 4.056436 8.724600e-05 6.949211e-04
## ZFYVE19 -5.916480e+00 1.608515e+01 -3.443945 7.814063e-04 3.451575e-03
## TM9SF1 5.908321e+00 3.385422e+01 3.182143 1.845665e-03 6.776960e-03
## LRRC37B 5.902228e+00 1.816606e+01 4.322168 3.128273e-05 3.251650e-04
## GPATCH3 -5.900748e+00 1.686023e+01 -4.245843 4.218513e-05 4.094236e-04
## PDE5A 5.900513e+00 1.268432e+01 4.060402 8.594793e-05 6.873516e-04
## CHCHD10 -5.897245e+00 7.115650e+00 -3.574154 5.006465e-04 2.482201e-03
## LRRC47 -5.896781e+00 2.235072e+01 -4.122731 6.782336e-05 5.745608e-04
## NUDT1 -5.896183e+00 8.347041e+00 -3.331415 1.137318e-03 4.636850e-03
## MYZAP 5.895145e+00 8.267161e+00 3.664817 3.647190e-04 1.953734e-03
## TRAF6 5.893390e+00 2.421382e+01 3.177591 1.872656e-03 6.852729e-03
## ZNF654 5.891810e+00 2.141354e+01 2.664938 8.719324e-03 2.331707e-02
## ZNF511 -5.890862e+00 1.132002e+01 -4.729546 5.987451e-06 9.960793e-05
## RPS6KB1 5.889863e+00 2.593115e+01 4.308831 3.296892e-05 3.381030e-04
## TCF12 5.882471e+00 2.037587e+01 3.614080 4.357555e-04 2.232424e-03
## ALYREF -5.872040e+00 1.808976e+01 -2.953425 3.757385e-03 1.184545e-02
## PRADC1 -5.865252e+00 9.096291e+00 -3.643686 3.928595e-04 2.070597e-03
## NCAPG 5.864143e+00 6.135755e+00 5.819171 4.694313e-08 3.394789e-06
## TBL3 -5.858276e+00 7.311305e+00 -4.114105 7.009320e-05 5.870801e-04
## FAM174C -5.855967e+00 5.313790e+00 -3.494591 6.580703e-04 3.033313e-03
## NCKAP5L -5.855128e+00 8.289657e+00 -6.358039 3.514031e-09 5.145236e-07
## UCK1 -5.853245e+00 2.329643e+01 -3.624531 4.201311e-04 2.174926e-03
## THAP11 -5.848688e+00 2.474974e+01 -3.566486 5.141117e-04 2.526881e-03
## KHDRBS1 -5.847215e+00 7.682263e+01 -2.394273 1.814305e-02 4.218321e-02
## SHISA9 5.846330e+00 1.863861e+01 3.281235 1.340695e-03 5.270348e-03
## BANP -5.845196e+00 1.627693e+01 -4.201576 5.009241e-05 4.594710e-04
## BOP1 -5.840469e+00 6.985680e+00 -3.685247 3.393334e-04 1.858030e-03
## CBFB 5.839142e+00 5.376841e+01 2.581685 1.098876e-02 2.819093e-02
## JUN 5.838469e+00 1.295628e+01 3.132810 2.158404e-03 7.661084e-03
## RAB11FIP2 5.837744e+00 1.849863e+01 3.675158 3.516531e-04 1.901781e-03
## RBMX2 -5.834334e+00 1.831858e+01 -3.915534 1.476403e-04 1.015080e-03
## ENPP4 5.830852e+00 1.494631e+01 2.713760 7.594677e-03 2.085986e-02
## SNAPIN -5.827542e+00 2.264554e+01 -3.407093 8.844612e-04 3.818606e-03
## TBCC -5.825471e+00 3.799948e+01 -2.367097 1.946768e-02 4.453832e-02
## PIP5K1C -5.825052e+00 1.354032e+01 -4.315923 3.206164e-05 3.303658e-04
## KPNA3 5.817698e+00 2.299328e+01 3.722248 2.975606e-04 1.684520e-03
## SUSD1 5.812788e+00 3.349218e+01 2.603556 1.034610e-02 2.678905e-02
## LHPP -5.811476e+00 8.294695e+00 -4.967152 2.187420e-06 4.867317e-05
## NDUFS7 -5.809779e+00 4.704812e+00 -3.995012 1.099031e-04 8.161874e-04
## TBRG4 -5.799778e+00 1.722667e+01 -3.333534 1.129400e-03 4.612397e-03
## ZFPL1 -5.784410e+00 1.067588e+01 -4.758734 5.299487e-06 9.148751e-05
## SMC6 5.783441e+00 1.899626e+01 4.611774 9.751031e-06 1.427744e-04
## TVP23B 5.771453e+00 3.106555e+01 2.550440 1.196915e-02 3.024162e-02
## BBC3 -5.767822e+00 1.025264e+01 -3.582557 4.862756e-04 2.428307e-03
## ACBD5 5.761331e+00 2.471806e+01 2.995337 3.307848e-03 1.067512e-02
## RNFT1 5.760902e+00 2.797873e+01 2.484461 1.430129e-02 3.482104e-02
## CBWD2 5.757977e+00 2.994019e+01 3.622661 4.228869e-04 2.184424e-03
## CTCF 5.756561e+00 3.778656e+01 2.889713 4.549218e-03 1.377425e-02
## CHD1L 5.755892e+00 1.843546e+01 5.205308 7.740758e-07 2.283716e-05
## RAB27B 5.753497e+00 1.530065e+01 3.101716 2.380069e-03 8.285184e-03
## CCDC124 -5.749637e+00 6.240660e+00 -4.432886 2.014929e-05 2.377817e-04
## PLOD3 -5.746971e+00 1.374470e+01 -4.388034 2.410076e-05 2.704210e-04
## KIAA1191 5.746886e+00 2.839742e+01 4.312744 3.246528e-05 3.336553e-04
## RNF7 -5.742542e+00 4.031531e+01 -2.521511 1.294610e-02 3.216859e-02
## FFAR3 -5.734961e+00 6.900860e+00 -2.526523 1.277189e-02 3.182909e-02
## FAAH -5.733482e+00 5.163740e+00 -5.313402 4.785932e-07 1.581091e-05
## CEP120 5.728949e+00 2.569100e+01 2.767784 6.504867e-03 1.844123e-02
## CCDC130 -5.708232e+00 1.241224e+01 -5.484636 2.209077e-07 9.323720e-06
## ATXN3 5.706345e+00 2.255061e+01 3.993975 1.103300e-04 8.178213e-04
## RUSF1 -5.698728e+00 2.130184e+01 -2.617038 9.967006e-03 2.601424e-02
## HBS1L 5.696522e+00 2.258934e+01 4.231452 4.461410e-05 4.263684e-04
## CCNA2 5.688480e+00 6.591694e+00 5.643972 1.062952e-07 5.578146e-06
## SCAF1 -5.681919e+00 1.161429e+01 -4.544537 1.283685e-05 1.722229e-04
## ARHGAP18 5.673784e+00 2.449746e+01 2.945558 3.847781e-03 1.205991e-02
## PNMA1 5.669602e+00 1.804228e+01 4.289272 3.560064e-05 3.575136e-04
## SLC1A4 5.657054e+00 1.174624e+01 3.579970 4.906579e-04 2.446071e-03
## RFTN1 -5.656117e+00 2.251808e+01 -2.529576 1.266680e-02 3.164825e-02
## FBXL13 5.654924e+00 8.770962e+00 3.586964 4.788941e-04 2.403591e-03
## SHCBP1 5.649576e+00 6.224003e+00 5.852804 4.006660e-08 3.046089e-06
## PRDM4 5.648702e+00 2.520332e+01 3.736572 2.827379e-04 1.622289e-03
## RBM14 -5.643784e+00 2.020115e+01 -3.638701 3.997911e-04 2.089964e-03
## BAG5 5.636183e+00 3.207113e+01 3.462424 7.340823e-04 3.288781e-03
## TDG 5.635293e+00 2.408861e+01 3.954860 1.276417e-04 9.108486e-04
## NEXN 5.629392e+00 9.894202e+00 3.024832 3.021808e-03 9.938613e-03
## R3HCC1 -5.622979e+00 1.552926e+01 -3.546267 5.512688e-04 2.657743e-03
## MYCL -5.620725e+00 1.579197e+01 -2.773735 6.393960e-03 1.818958e-02
## EPAS1 5.615520e+00 8.852375e+00 2.886552 4.592221e-03 1.385846e-02
## POLR2F -5.613400e+00 1.787746e+01 -3.828122 2.033118e-04 1.286701e-03
## ATF7 5.606046e+00 2.988050e+01 2.467293 1.497116e-02 3.610370e-02
## GFPT1 5.589995e+00 1.363996e+01 5.846374 4.129997e-08 3.085015e-06
## NSUN2 5.587837e+00 2.688126e+01 3.149385 2.048222e-03 7.347826e-03
## RPP25L -5.585537e+00 1.265085e+01 -3.467105 7.225293e-04 3.247404e-03
## RBBP7 5.582158e+00 3.417174e+01 2.906166 4.331252e-03 1.323528e-02
## BRD9 -5.579767e+00 1.974526e+01 -3.830831 2.013207e-04 1.279562e-03
## SLC23A2 5.573481e+00 1.910793e+01 3.364163 1.020562e-03 4.264927e-03
## HCFC1R1 -5.567000e+00 7.651438e+00 -3.949011 1.304430e-04 9.269344e-04
## PSMD5 5.566513e+00 1.972056e+01 3.927202 1.414146e-04 9.836815e-04
## NET1 5.560357e+00 8.979555e+00 5.406404 3.150286e-07 1.167575e-05
## PEAK1 5.558198e+00 1.193587e+01 4.497272 1.554990e-05 1.978774e-04
## MRPL33 -5.553233e+00 3.856385e+01 -2.982999 3.434738e-03 1.097898e-02
## SLC22A18 -5.551606e+00 6.354724e+00 -4.542677 1.293438e-05 1.727776e-04
## ARID2 5.550827e+00 2.132931e+01 3.040617 2.878273e-03 9.567354e-03
## TXNL1 -5.547940e+00 3.942697e+01 -2.476318 1.461561e-02 3.542509e-02
## PRKCE 5.541801e+00 1.138614e+01 2.341623 2.078631e-02 4.697258e-02
## STAMBP 5.540189e+00 3.094877e+01 3.274246 1.371580e-03 5.365084e-03
## ESCO1 5.538263e+00 2.550469e+01 2.952290 3.770302e-03 1.186725e-02
## CYP51A1 5.534448e+00 1.331550e+01 4.578808 1.116180e-05 1.570331e-04
## TMED1 -5.529179e+00 1.255846e+01 -3.729515 2.899506e-04 1.654071e-03
## ANKRD33B 5.527362e+00 1.126740e+01 4.342469 2.887418e-05 3.090684e-04
## SMU1 5.526816e+00 6.270923e+01 2.665942 8.694749e-03 2.326184e-02
## GBF1 5.526192e+00 3.235765e+01 3.527406 5.882000e-04 2.794892e-03
## LTBP3 -5.524769e+00 7.196099e+00 -3.981041 1.157900e-04 8.492698e-04
## MTF2 5.509853e+00 2.614021e+01 4.192044 5.197207e-05 4.737807e-04
## TRIP11 5.507436e+00 1.993404e+01 3.859165 1.815768e-04 1.188466e-03
## CEP295 5.506089e+00 1.548510e+01 4.572148 1.146986e-05 1.589165e-04
## SLFN12 5.500791e+00 1.253977e+01 4.086931 7.772955e-05 6.362129e-04
## AK1 -5.498873e+00 7.739893e+00 -3.889966 1.622074e-04 1.093057e-03
## TMEM184C 5.498499e+00 1.841636e+01 3.675388 3.513668e-04 1.901781e-03
## TMEM245 5.495165e+00 1.805798e+01 3.622874 4.225728e-04 2.183753e-03
## AP3M1 5.492635e+00 3.754818e+01 2.673767 8.505392e-03 2.285318e-02
## TMEM87A 5.483609e+00 3.802758e+01 3.022600 3.042628e-03 9.993235e-03
## SLC30A7 5.479994e+00 2.538686e+01 3.414840 8.617929e-04 3.742733e-03
## ATE1 5.474404e+00 1.848914e+01 3.906538 1.526171e-04 1.042049e-03
## DMAC1 -5.472518e+00 1.317692e+01 -3.051322 2.784552e-03 9.334309e-03
## INF2 -5.467478e+00 9.369260e+00 -3.694373 3.285430e-04 1.819104e-03
## NIPSNAP1 -5.465818e+00 2.269746e+01 -3.615836 4.330922e-04 2.222619e-03
## FAM20C -5.460280e+00 5.563845e+00 -6.063731 1.468166e-08 1.501074e-06
## GPKOW -5.460239e+00 2.144052e+01 -3.798491 2.263492e-04 1.389494e-03
## TELO2 -5.459936e+00 5.477321e+00 -4.771472 5.023862e-06 8.775111e-05
## NFIC -5.450886e+00 1.359472e+01 -5.273573 5.717373e-07 1.808215e-05
## YTHDF2 -5.450516e+00 5.323008e+01 -3.517973 6.075334e-04 2.863810e-03
## ANAPC2 -5.447282e+00 1.141795e+01 -3.588718 4.759860e-04 2.393045e-03
## SNAI3 -5.446683e+00 1.161980e+01 -2.919611 4.160297e-03 1.281338e-02
## PRC1 5.445604e+00 7.020148e+00 4.078355 8.030034e-05 6.514104e-04
## ABL2 5.444234e+00 1.639332e+01 3.403971 8.937538e-04 3.839160e-03
## NUDT18 -5.443874e+00 1.225316e+01 -2.565537 1.148603e-02 2.925152e-02
## PACS2 -5.443097e+00 1.100868e+01 -4.655484 8.143870e-06 1.262566e-04
## SSBP4 -5.441216e+00 7.062787e+00 -3.888843 1.628779e-04 1.096952e-03
## RAB40C -5.440551e+00 8.201873e+00 -6.121473 1.111915e-08 1.209845e-06
## SINHCAF 5.438359e+00 2.571026e+01 3.271773 1.382666e-03 5.397768e-03
## CRYL1 -5.438219e+00 1.266628e+01 -5.757460 6.269737e-08 4.087273e-06
## PIK3R4 5.436926e+00 1.805780e+01 4.174005 5.571618e-05 4.994663e-04
## H4C8 5.434904e+00 5.878736e+00 4.200074 5.038424e-05 4.607512e-04
## AP3D1 -5.433697e+00 3.915788e+01 -3.069924 2.628369e-03 8.939620e-03
## STK32C -5.433245e+00 6.029002e+00 -5.793342 5.299798e-08 3.697343e-06
## IMPA1 5.431768e+00 2.113875e+01 2.910808 4.271510e-03 1.309047e-02
## ADAT1 5.430223e+00 2.084674e+01 3.558545 5.284135e-04 2.581130e-03
## PIGQ -5.427737e+00 6.741879e+00 -3.608058 4.450058e-04 2.269032e-03
## MRPL4 -5.415779e+00 6.632145e+00 -3.723812 2.959067e-04 1.680099e-03
## ROMO1 -5.411586e+00 1.096683e+01 -2.436500 1.624300e-02 3.854675e-02
## MRPL12 -5.405217e+00 1.237536e+01 -2.405077 1.763902e-02 4.122955e-02
## TMEM147 -5.391966e+00 1.830401e+01 -2.487056 1.420240e-02 3.464572e-02
## UCKL1 -5.385683e+00 8.424512e+00 -3.914056 1.484472e-04 1.018857e-03
## LAMC1 5.382122e+00 7.348252e+00 3.504766 6.356100e-04 2.958530e-03
## GATD1 -5.381580e+00 1.717060e+01 -3.329108 1.145995e-03 4.669016e-03
## POLR2H -5.361157e+00 1.661062e+01 -2.670741 8.578173e-03 2.300704e-02
## ALKBH7 -5.360051e+00 4.973667e+00 -4.124261 6.742793e-05 5.720281e-04
## ETV3 5.357237e+00 2.467128e+01 2.683465 8.275899e-03 2.237330e-02
## ASCC3 5.353283e+00 1.604485e+01 3.306607 1.233960e-03 4.942508e-03
## PGAP3 -5.340412e+00 8.750789e+00 -4.392030 2.372043e-05 2.679279e-04
## DOP1B 5.338582e+00 1.931065e+01 3.402545 8.980286e-04 3.853335e-03
## CDK6 5.328243e+00 1.585066e+01 4.164382 5.781791e-05 5.102534e-04
## TBC1D2 -5.324582e+00 2.210001e+01 -2.884046 4.626582e-03 1.393733e-02
## EIF2AK4 5.323108e+00 1.596136e+01 4.248911 4.168395e-05 4.048908e-04
## LAX1 5.321927e+00 7.071200e+00 4.234213 4.413786e-05 4.231811e-04
## NOLC1 5.319665e+00 2.680148e+01 2.661082 8.814271e-03 2.351265e-02
## IBTK 5.311473e+00 2.250158e+01 2.770474 6.454517e-03 1.834865e-02
## NBPF20 5.309094e+00 7.111792e+00 2.346517 2.052701e-02 4.653103e-02
## RRP36 -5.294864e+00 2.243288e+01 -3.354370 1.054244e-03 4.372989e-03
## CCDC117 5.293641e+00 2.479243e+01 3.206901 1.705112e-03 6.381335e-03
## ACP1 5.293109e+00 3.509216e+01 2.799493 5.933510e-03 1.708044e-02
## MED7 -5.284706e+00 1.627404e+01 -4.236314 4.377883e-05 4.204186e-04
## YAF2 5.282949e+00 1.855719e+01 4.168863 5.682986e-05 5.057891e-04
## FHL1 5.278595e+00 1.411544e+01 2.706582 7.751317e-03 2.120660e-02
## ELOVL7 5.274655e+00 9.774018e+00 3.842137 1.932093e-04 1.244007e-03
## PTBP2 5.274296e+00 1.714210e+01 2.475020 1.466629e-02 3.550564e-02
## EMSY 5.272858e+00 1.685720e+01 4.073000 8.194662e-05 6.615976e-04
## UTP3 -5.256647e+00 2.509253e+01 -3.544709 5.542347e-04 2.668788e-03
## CEP20 5.250986e+00 1.786974e+01 5.996530 2.025509e-08 1.806205e-06
## RNF216 -5.242359e+00 4.148618e+01 -2.488296 1.415538e-02 3.455089e-02
## BTBD6 -5.239386e+00 2.206897e+01 -2.736938 7.108271e-03 1.976649e-02
## BAHD1 -5.238704e+00 1.815283e+01 -3.835735 1.977634e-04 1.265089e-03
## CBFA2T3 -5.238158e+00 1.983658e+01 -2.851690 5.091919e-03 1.508623e-02
## C6orf120 5.232131e+00 3.054948e+01 2.741537 7.015195e-03 1.957192e-02
## BIRC5 5.229751e+00 6.315856e+00 3.401662 9.006862e-04 3.861945e-03
## RACGAP1 5.228206e+00 9.414088e+00 6.669703 7.472331e-10 1.936512e-07
## ABCB10 5.223823e+00 2.075458e+01 3.179790 1.859569e-03 6.819570e-03
## KIFAP3 5.219478e+00 1.393447e+01 4.559599 1.207277e-05 1.647675e-04
## ZNF580 -5.204633e+00 7.745392e+00 -4.229794 4.490245e-05 4.274022e-04
## EYA3 5.203345e+00 2.485161e+01 3.288322 1.310045e-03 5.168707e-03
## BAD -5.202922e+00 7.763530e+00 -4.055645 8.750715e-05 6.960662e-04
## CBLL1 5.202860e+00 2.807184e+01 2.940586 3.905943e-03 1.219707e-02
## REC8 5.201892e+00 1.908573e+01 2.533772 1.252364e-02 3.138102e-02
## SERINC5 5.199576e+00 2.426804e+01 2.435826 1.627186e-02 3.860458e-02
## GDPD5 -5.198837e+00 9.429344e+00 -2.724954 7.356107e-03 2.037922e-02
## SPAG5 5.193726e+00 6.717902e+00 5.615517 1.212307e-07 6.067961e-06
## TTLL12 -5.193665e+00 1.099754e+01 -6.027398 1.747567e-08 1.627736e-06
## TTBK2 5.190858e+00 1.411520e+01 4.108857 7.150975e-05 5.972575e-04
## COA8 -5.189461e+00 1.241960e+01 -4.156290 5.964389e-05 5.228208e-04
## DUS2 -5.188538e+00 2.216241e+01 -2.614212 1.004542e-02 2.616134e-02
## TPX2 5.182086e+00 5.671138e+00 5.376959 3.597867e-07 1.285262e-05
## RAB3IP 5.177163e+00 1.368427e+01 3.809382 2.176074e-04 1.354712e-03
## C18orf21 -5.174662e+00 1.751539e+01 -5.257857 6.131656e-07 1.923848e-05
## CCNQ -5.173481e+00 9.102508e+00 -5.446772 2.624028e-07 1.044328e-05
## CTDSPL2 5.170603e+00 2.482936e+01 3.112448 2.301285e-03 8.062103e-03
## MRPL14 -5.163916e+00 1.666765e+01 -2.324825 2.169832e-02 4.865609e-02
## MRPL53 -5.161678e+00 1.228370e+01 -3.141074 2.102798e-03 7.507279e-03
## ZBTB33 5.154398e+00 2.057145e+01 3.130322 2.175411e-03 7.698445e-03
## CCP110 5.153282e+00 1.997068e+01 2.541979 1.224782e-02 3.082094e-02
## NDUFS8 -5.152929e+00 6.602091e+00 -3.226716 1.599864e-03 6.034807e-03
## E4F1 -5.152914e+00 6.734053e+00 -5.216525 7.365951e-07 2.211650e-05
## SMARCD1 5.151541e+00 3.854408e+01 4.130615 6.581034e-05 5.607116e-04
## ARMH1 -5.149719e+00 9.602009e+00 -2.711356 7.646806e-03 2.096057e-02
## CARD9 -5.148067e+00 4.883578e+00 -6.014486 1.858950e-08 1.695934e-06
## SCYL3 5.142057e+00 2.588316e+01 2.851838 5.089696e-03 1.508341e-02
## RMC1 5.139146e+00 3.124943e+01 3.755555 2.641700e-04 1.545661e-03
## ZNF587 5.138769e+00 1.715486e+01 3.046759 2.824151e-03 9.432394e-03
## DNAJC9 5.137893e+00 1.594943e+01 3.061645 2.696846e-03 9.109825e-03
## SECISBP2 5.122827e+00 4.681965e+01 2.779407 6.289856e-03 1.795344e-02
## POLK 5.121325e+00 2.009408e+01 2.388750 1.840561e-02 4.264394e-02
## HGH1 -5.119569e+00 7.169800e+00 -4.113080 7.036784e-05 5.889644e-04
## MBD1 5.118474e+00 4.770795e+01 3.065351 2.665994e-03 9.033911e-03
## HEBP1 -5.114030e+00 1.833452e+01 -3.493976 6.594503e-04 3.037313e-03
## CC2D1A -5.113870e+00 1.088891e+01 -3.990484 1.117792e-04 8.259818e-04
## USP12 5.107304e+00 1.805303e+01 3.877375 1.698749e-04 1.127717e-03
## MCUR1 5.107078e+00 1.395039e+01 5.044088 1.568769e-06 3.860082e-05
## NCOR2 -5.093537e+00 1.550172e+01 -3.591659 4.711474e-04 2.375769e-03
## UBOX5 -5.090633e+00 1.442422e+01 -5.038874 1.604667e-06 3.906926e-05
## FAM126A 5.083078e+00 1.735030e+01 3.734138 2.852057e-04 1.634077e-03
## FAM98C -5.080821e+00 9.498352e+00 -4.815556 4.173123e-06 7.673370e-05
## FBXO28 5.079674e+00 2.305460e+01 3.296369 1.276037e-03 5.063166e-03
## CWC15 -5.078924e+00 4.753225e+01 -2.353479 2.016308e-02 4.585850e-02
## POP4 -5.078525e+00 2.253557e+01 -3.616089 4.327099e-04 2.221619e-03
## ACD -5.078389e+00 8.312843e+00 -4.746356 5.581339e-06 9.497084e-05
## MUS81 -5.076319e+00 2.122691e+01 -3.367646 1.008827e-03 4.224819e-03
## ALKBH5 -5.074654e+00 5.162064e+01 -2.663263 8.760450e-03 2.340066e-02
## EHMT2 -5.067861e+00 1.617896e+01 -2.973949 3.530654e-03 1.124424e-02
## MTREX 5.066419e+00 2.840722e+01 2.839984 5.270545e-03 1.553733e-02
## ZDHHC6 5.062188e+00 3.693531e+01 3.554979 5.349574e-04 2.601310e-03
## NIBAN3 -5.062104e+00 1.009506e+01 -2.708055 7.718941e-03 2.112777e-02
## FBXL4 5.060453e+00 1.877315e+01 2.941377 3.896636e-03 1.217442e-02
## DDX54 -5.058316e+00 1.102870e+01 -3.444315 7.804316e-04 3.448554e-03
## DDHD1 5.051572e+00 1.583248e+01 3.396496 9.163789e-04 3.916488e-03
## DELE1 -5.049312e+00 3.296236e+01 -3.356325 1.047439e-03 4.350482e-03
## TFAM 5.049202e+00 2.412904e+01 3.397282 9.139752e-04 3.907623e-03
## KNTC1 5.045357e+00 1.035805e+01 5.896876 3.253369e-08 2.589595e-06
## STON2 5.037661e+00 9.101118e+00 4.262131 3.958896e-05 3.886797e-04
## P3H1 -5.034776e+00 2.098750e+01 -3.147170 2.062641e-03 7.385508e-03
## CHCHD5 -5.030154e+00 5.918081e+00 -4.097272 7.473409e-05 6.163743e-04
## TIMELESS 5.027039e+00 9.411419e+00 6.066599 1.448083e-08 1.493414e-06
## FLAD1 -5.026901e+00 2.095031e+01 -3.122467 2.229916e-03 7.859378e-03
## GLYCTK -5.026301e+00 1.169280e+01 -3.335255 1.123008e-03 4.592714e-03
## B9D2 -5.025387e+00 1.082149e+01 -3.620410 4.262283e-04 2.197555e-03
## CAMLG -5.015563e+00 3.164762e+01 -2.347500 2.047531e-02 4.644046e-02
## MLST8 -5.015464e+00 6.853178e+00 -4.157614 5.934136e-05 5.213248e-04
## RABGGTA -5.014878e+00 1.531104e+01 -3.662740 3.673979e-04 1.964535e-03
## SSBP2 5.014423e+00 1.985354e+01 3.828431 2.030842e-04 1.285947e-03
## AKAP11 5.014154e+00 1.744752e+01 2.639929 9.351945e-03 2.469147e-02
## MRPL43 -5.008146e+00 1.271728e+01 -3.628101 4.149167e-04 2.151689e-03
## NME4 -5.006775e+00 1.014303e+01 -2.976344 3.505040e-03 1.117467e-02
## MTHFD1 5.005224e+00 1.111267e+01 5.441089 2.692550e-07 1.064455e-05
## SCAND1 -5.002725e+00 4.666259e+00 -4.532578 1.347656e-05 1.783840e-04
## SEC23IP 5.000016e+00 2.513588e+01 3.862452 1.794092e-04 1.177528e-03
## MGMT -4.996002e+00 5.498776e+00 -4.003242 1.065701e-04 7.969243e-04
## CD72 -4.993592e+00 8.457486e+00 -3.510375 6.235403e-04 2.917757e-03
## MYB 4.992903e+00 7.418803e+00 3.364666 1.018858e-03 4.260811e-03
## CENPF 4.990910e+00 5.338564e+00 5.898447 3.229248e-08 2.587763e-06
## DPY19L1 4.988423e+00 1.366785e+01 4.920903 2.667321e-06 5.540181e-05
## KRR1 4.986640e+00 2.028162e+01 3.475757 7.016246e-04 3.179697e-03
## TIGD3 -4.980094e+00 1.031599e+01 -2.379710 1.884261e-02 4.340131e-02
## BCL2L15 4.975723e+00 6.069439e+00 2.547060 1.207978e-02 3.047373e-02
## INAFM1 -4.971610e+00 5.178638e+00 -4.278223 3.717534e-05 3.701928e-04
## FAM149B1 4.971116e+00 1.422734e+01 4.860365 3.452189e-06 6.668234e-05
## ATR 4.966033e+00 1.461578e+01 3.791068 2.324971e-04 1.417694e-03
## SNAPC2 -4.962748e+00 4.923667e+00 -5.619776 1.188710e-07 6.024828e-06
## HAPLN3 -4.959582e+00 5.257257e+00 -3.528266 5.864668e-04 2.787774e-03
## SLC30A6 4.954678e+00 2.152792e+01 3.806123 2.201893e-04 1.365105e-03
## COQ4 -4.950971e+00 7.047491e+00 -3.539027 5.651793e-04 2.709388e-03
## DDI2 4.950030e+00 1.775701e+01 4.184980 5.340863e-05 4.827945e-04
## ECSIT -4.947374e+00 9.465281e+00 -3.802167 2.233617e-04 1.378521e-03
## NOL7 -4.942263e+00 2.716856e+01 -2.362009 1.972502e-02 4.501418e-02
## SMC2 4.941588e+00 7.879914e+00 6.009376 1.904928e-08 1.711549e-06
## NFKBIL1 -4.938342e+00 8.411734e+00 -4.329209 3.042630e-05 3.196244e-04
## DNAJC17 -4.934782e+00 1.218526e+01 -3.572585 5.033749e-04 2.489599e-03
## PPP2R5E 4.934458e+00 2.808026e+01 3.823637 2.066500e-04 1.301680e-03
## SELENOI 4.929237e+00 9.995349e+00 6.640701 8.642213e-10 2.135347e-07
## CIAO3 -4.929150e+00 6.969813e+00 -4.478070 1.680345e-05 2.088826e-04
## ZBTB17 -4.926258e+00 1.551052e+01 -3.640898 3.967217e-04 2.082833e-03
## MANEA 4.921488e+00 8.094560e+00 4.875255 3.240566e-06 6.405518e-05
## CLPP -4.921387e+00 1.129989e+01 -3.090866 2.462255e-03 8.506362e-03
## RSAD1 -4.918876e+00 1.997019e+01 -2.739053 7.065322e-03 1.967968e-02
## POLD2 -4.918837e+00 1.147778e+01 -2.792377 6.057599e-03 1.739964e-02
## CDC20 4.916191e+00 5.501718e+00 3.269266 1.393986e-03 5.433018e-03
## DUSP7 -4.914820e+00 2.252231e+01 -2.993439 3.327078e-03 1.071677e-02
## SCAMP3 -4.914258e+00 1.888963e+01 -2.588074 1.079739e-02 2.778413e-02
## PLA2G4B -4.913890e+00 1.162282e+01 -4.141238 6.318819e-05 5.446308e-04
## ZNF451 4.912545e+00 2.258545e+01 3.349904 1.069948e-03 4.422997e-03
## SERTAD1 -4.910119e+00 1.194549e+01 -2.942798 3.879969e-03 1.213445e-02
## NDUFAB1 -4.909884e+00 1.792403e+01 -2.372168 1.921422e-02 4.406897e-02
## SAMD1 -4.907639e+00 1.268671e+01 -3.432817 8.112699e-04 3.567542e-03
## FAAP20 -4.906017e+00 6.403650e+00 -4.443579 1.930385e-05 2.298631e-04
## KHDC4 4.902142e+00 2.524410e+01 3.497199 6.522431e-04 3.014654e-03
## ZC3H6 4.900168e+00 1.307652e+01 4.337540 2.944202e-05 3.128875e-04
## GP9 -4.896931e+00 7.177245e+00 -2.468739 1.491365e-02 3.599428e-02
## ZNF609 4.893619e+00 2.070060e+01 2.670590 8.581817e-03 2.300851e-02
## VPS72 -4.889724e+00 2.672480e+01 -4.327568 3.062386e-05 3.205640e-04
## FAAP100 -4.888527e+00 7.343460e+00 -3.902757 1.547565e-04 1.053019e-03
## ARL2 -4.885256e+00 9.062380e+00 -3.194673 1.773240e-03 6.576180e-03
## MVD -4.883584e+00 6.312871e+00 -3.502801 6.398913e-04 2.971461e-03
## DAPK3 -4.876477e+00 1.366495e+01 -3.411166 8.724744e-04 3.781099e-03
## PLA2G12A 4.875494e+00 1.614042e+01 3.281932 1.337651e-03 5.260127e-03
## NAPG 4.862272e+00 2.510467e+01 3.305858 1.236994e-03 4.949871e-03
## NAGLU -4.861581e+00 1.127876e+01 -3.162310 1.965954e-03 7.103699e-03
## KCTD17 -4.857968e+00 6.639303e+00 -4.105952 7.230547e-05 6.009411e-04
## DLGAP4 -4.857451e+00 2.451897e+01 -3.246969 1.498573e-03 5.727452e-03
## DDA1 -4.852672e+00 2.078446e+01 -3.531626 5.797395e-04 2.761329e-03
## ERI3 -4.852639e+00 1.160699e+01 -3.103288 2.368373e-03 8.254158e-03
## SP4 4.849291e+00 1.337871e+01 3.815334 2.129668e-04 1.334982e-03
## INTS5 -4.846051e+00 1.438611e+01 -3.660211 3.706851e-04 1.979435e-03
## IMP3 -4.843377e+00 1.711971e+01 -2.583307 1.093989e-02 2.809595e-02
## SORD -4.843224e+00 1.739980e+01 -3.285140 1.323727e-03 5.214016e-03
## MZT2B -4.827412e+00 4.755649e+00 -3.267319 1.402844e-03 5.456781e-03
## ZNF688 -4.823102e+00 6.496270e+00 -5.105637 1.199811e-06 3.120561e-05
## RABEPK -4.820007e+00 1.522785e+01 -4.905297 2.851231e-06 5.840346e-05
## MVB12A -4.815371e+00 1.016360e+01 -3.509855 6.246502e-04 2.920611e-03
## XPR1 4.815018e+00 1.933676e+01 3.564166 5.182519e-04 2.540913e-03
## ZMYM4 4.813958e+00 1.877902e+01 3.558300 5.288607e-04 2.582209e-03
## LMBRD2 4.812965e+00 1.451010e+01 3.773673 2.475318e-04 1.480206e-03
## TIMM50 -4.810021e+00 1.912518e+01 -2.434743 1.631837e-02 3.868396e-02
## GFER -4.805454e+00 8.896291e+00 -3.555294 5.343774e-04 2.599990e-03
## CTNNBIP1 -4.803639e+00 1.671485e+01 -3.719303 3.006983e-04 1.697980e-03
## NCAPG2 4.803071e+00 6.530449e+00 5.068846 1.408701e-06 3.538221e-05
## PIK3R6 -4.802513e+00 9.613134e+00 -3.547744 5.484706e-04 2.649638e-03
## KAT2A -4.800293e+00 1.636017e+01 -2.556759 1.176476e-02 2.979501e-02
## FRS2 4.799838e+00 1.390117e+01 3.924832 1.426583e-04 9.904420e-04
## LRRC58 4.799083e+00 1.824548e+01 3.800110 2.250284e-04 1.385010e-03
## RECQL5 -4.797211e+00 1.335482e+01 -4.658487 8.043424e-06 1.251428e-04
## RPRD1A 4.795053e+00 2.419009e+01 2.717402 7.516283e-03 2.072151e-02
## ARIH2 4.786847e+00 6.893537e+01 2.487814 1.417363e-02 3.458833e-02
## RBM18 4.785133e+00 2.740087e+01 2.953273 3.759107e-03 1.184773e-02
## INTS10 -4.780123e+00 4.195062e+01 -2.732780 7.193385e-03 1.997508e-02
## ABCD1 -4.777117e+00 1.007647e+01 -4.619177 9.458796e-06 1.399545e-04
## CCAR1 4.776060e+00 3.225730e+01 2.717305 7.518375e-03 2.072227e-02
## METAP1 4.775600e+00 1.861043e+01 3.929612 1.401604e-04 9.789764e-04
## C9orf139 -4.765162e+00 1.419504e+01 -3.423295 8.376744e-04 3.660582e-03
## COX17 -4.758624e+00 1.665823e+01 -3.191095 1.793643e-03 6.631110e-03
## FAM98A 4.752059e+00 1.188365e+01 5.540550 1.711169e-07 7.687296e-06
## GOPC 4.749444e+00 2.275215e+01 3.055023 2.752810e-03 9.253583e-03
## PCYT2 -4.741996e+00 1.050559e+01 -2.937921 3.937445e-03 1.226905e-02
## MANBAL -4.741669e+00 1.770430e+01 -3.572825 5.029569e-04 2.489594e-03
## TAF9 4.738672e+00 3.076792e+01 2.326906 2.158346e-02 4.846268e-02
## LMBR1 4.737661e+00 1.822222e+01 2.329992 2.141411e-02 4.814624e-02
## EPHB1 4.724910e+00 1.101810e+01 3.078143 2.561979e-03 8.766611e-03
## ZNF66 4.723592e+00 1.034215e+01 3.175911 1.882708e-03 6.876784e-03
## RBMXL1 4.716220e+00 2.344773e+01 2.940739 3.904137e-03 1.219464e-02
## PIWIL4 4.714201e+00 9.270949e+00 3.254724 1.461395e-03 5.629146e-03
## NPAT 4.708974e+00 1.584570e+01 3.171794 1.907555e-03 6.939755e-03
## DHRS1 -4.703706e+00 1.472088e+01 -3.300391 1.259348e-03 5.019754e-03
## KATNB1 -4.697958e+00 1.215088e+01 -4.460486 1.803637e-05 2.187232e-04
## ZHX1 4.684513e+00 1.298460e+01 4.130721 6.578350e-05 5.607116e-04
## PRRC1 4.682719e+00 1.791919e+01 3.645651 3.901576e-04 2.061145e-03
## SPATA2L -4.682292e+00 6.162861e+00 -4.007115 1.050356e-04 7.905628e-04
## PHRF1 -4.677367e+00 1.260564e+01 -5.644054 1.062549e-07 5.578146e-06
## PKHD1L1 4.676636e+00 6.406403e+00 4.748851 5.523377e-06 9.452706e-05
## REXO4 -4.670741e+00 1.197259e+01 -3.559415 5.268286e-04 2.576572e-03
## CAPN10 -4.667844e+00 7.217240e+00 -4.837498 3.803529e-06 7.173184e-05
## ZNF263 -4.664574e+00 2.348134e+01 -3.420334 8.460489e-04 3.691737e-03
## TYSND1 -4.659034e+00 9.054637e+00 -3.830028 2.019091e-04 1.281928e-03
## LAS1L -4.658489e+00 1.644443e+01 -2.964041 3.638482e-03 1.153191e-02
## HACD2 4.654754e+00 1.611157e+01 3.806238 2.200976e-04 1.365105e-03
## FAM160B2 -4.647923e+00 1.334812e+01 -3.280652 1.343249e-03 5.278640e-03
## DNM1L 4.646191e+00 2.414621e+01 3.287912 1.311803e-03 5.173920e-03
## CUL4A 4.638954e+00 3.796653e+01 3.036540 2.914731e-03 9.669569e-03
## BEND7 4.632401e+00 7.674486e+00 3.524633 5.938229e-04 2.812596e-03
## EMD -4.630967e+00 1.839581e+01 -2.654271 8.984259e-03 2.387482e-02
## CCL3 -4.625988e+00 8.235264e+00 -3.773418 2.477583e-04 1.480309e-03
## ABHD11 -4.624788e+00 8.280971e+00 -5.342163 4.207190e-07 1.451124e-05
## EIF2S1 4.621582e+00 3.251727e+01 2.973081 3.539980e-03 1.126276e-02
## CDC6 4.620975e+00 4.799886e+00 6.350459 3.647327e-09 5.211723e-07
## IPO9 4.612519e+00 2.128201e+01 3.693496 3.295653e-04 1.820836e-03
## CLTCL1 4.608728e+00 1.053767e+01 2.554758 1.182916e-02 2.992616e-02
## EZH2 4.604770e+00 9.072242e+00 6.852524 2.968619e-10 1.107072e-07
## CLASP2 4.599588e+00 1.568982e+01 3.933749 1.380318e-04 9.692465e-04
## WDR33 -4.595511e+00 5.250688e+01 -3.843208 1.924569e-04 1.241185e-03
## HIP1R -4.594809e+00 9.582014e+00 -2.931790 4.010817e-03 1.244266e-02
## MEI1 -4.592924e+00 9.547366e+00 -2.858715 4.987383e-03 1.483209e-02
## MGA 4.590545e+00 1.588797e+01 3.065720 2.662937e-03 9.026130e-03
## MAFK -4.588700e+00 9.546257e+00 -6.320655 4.221441e-09 5.960273e-07
## DCP1A 4.587925e+00 2.479981e+01 2.754672 6.755427e-03 1.898563e-02
## NAT9 -4.587822e+00 1.533557e+01 -3.646495 3.890037e-04 2.057798e-03
## CAPN7 4.584796e+00 2.147013e+01 2.899809 4.414301e-03 1.345159e-02
## BCLAF3 4.577637e+00 1.529940e+01 3.106039 2.348040e-03 8.197748e-03
## UCHL5 4.576874e+00 1.745539e+01 5.685450 8.770079e-08 5.024789e-06
## ORC2 4.576216e+00 1.750766e+01 3.671620 3.560726e-04 1.918286e-03
## ZBTB47 -4.575022e+00 1.085733e+01 -5.109883 1.177737e-06 3.069880e-05
## THAP3 -4.572023e+00 8.212353e+00 -3.880362 1.680252e-04 1.121429e-03
## IQCE -4.571527e+00 1.673687e+01 -3.077656 2.565868e-03 8.772537e-03
## HECTD3 -4.567154e+00 2.772989e+01 -3.572985 5.026787e-04 2.489257e-03
## CLIP4 4.567084e+00 1.803065e+01 2.743185 6.982114e-03 1.950256e-02
## PAXBP1 4.559701e+00 2.355145e+01 3.243508 1.515448e-03 5.779167e-03
## NAPB 4.553291e+00 1.268102e+01 3.872261 1.730865e-04 1.141716e-03
## GSS -4.552849e+00 1.797060e+01 -2.603430 1.034970e-02 2.678905e-02
## CATSPER1 -4.552769e+00 5.990464e+00 -5.633508 1.115652e-07 5.752883e-06
## MAPK9 4.545278e+00 2.051185e+01 5.042707 1.578199e-06 3.867241e-05
## PSMG2 -4.531662e+00 2.825350e+01 -3.049633 2.799148e-03 9.372640e-03
## UFL1 4.528730e+00 1.805867e+01 2.722144 7.415353e-03 2.050025e-02
## TBC1D13 -4.526448e+00 2.688484e+01 -2.932690 3.999962e-03 1.242198e-02
## HAUS7 -4.525966e+00 6.169819e+00 -4.542966 1.291920e-05 1.727776e-04
## CNOT9 4.525143e+00 2.827073e+01 3.842271 1.931149e-04 1.244007e-03
## LRSAM1 -4.520493e+00 1.464646e+01 -4.167755 5.707265e-05 5.070275e-04
## FCSK -4.519446e+00 1.015727e+01 -4.178960 5.466282e-05 4.922559e-04
## TENT4B 4.518514e+00 2.079962e+01 2.545185 1.214156e-02 3.059250e-02
## VTI1A 4.515669e+00 2.549703e+01 2.952770 3.764832e-03 1.185947e-02
## LRFN1 -4.509503e+00 1.284972e+01 -2.774282 6.383860e-03 1.816521e-02
## ASPSCR1 -4.508565e+00 5.321511e+00 -4.003672 1.063988e-04 7.969243e-04
## ABT1 -4.507988e+00 2.377140e+01 -3.581507 4.880493e-04 2.436138e-03
## PEX19 4.507099e+00 4.544849e+01 2.403835 1.769633e-02 4.131467e-02
## SPATA20 -4.506344e+00 8.463381e+00 -3.692844 3.303275e-04 1.823026e-03
## BOLA2B -4.505944e+00 9.346033e+00 -2.533712 1.252567e-02 3.138102e-02
## EOLA2 -4.502927e+00 1.464802e+01 -4.286013 3.605831e-05 3.614975e-04
## SENP1 4.498488e+00 1.516419e+01 4.304062 3.359273e-05 3.425707e-04
## SPATS2 4.497649e+00 6.266650e+00 4.738459 5.768681e-06 9.742725e-05
## PEAR1 4.496495e+00 8.648463e+00 3.849412 1.881552e-04 1.220077e-03
## TTF1 4.494513e+00 1.657198e+01 4.912839 2.760865e-06 5.682886e-05
## DHX16 -4.492348e+00 4.375778e+01 -3.239903 1.533210e-03 5.830033e-03
## POLR3H -4.491104e+00 1.125702e+01 -3.021919 3.049005e-03 1.000033e-02
## TMED4 4.489263e+00 4.843742e+01 3.550160 5.439237e-04 2.636263e-03
## CCNB1 4.483181e+00 5.424136e+00 4.256557 4.045960e-05 3.946142e-04
## ISG20L2 4.483035e+00 4.408755e+01 2.493564 1.395708e-02 3.418509e-02
## ATP13A2 -4.473081e+00 9.373363e+00 -3.537649 5.678642e-04 2.721160e-03
## TCF4 4.473006e+00 9.909642e+00 3.433793 8.086105e-04 3.561129e-03
## AHSA1 -4.469086e+00 4.621075e+01 -2.419370 1.699135e-02 3.999948e-02
## KDM4A 4.466832e+00 3.218762e+01 2.764058 6.575188e-03 1.857150e-02
## WDR44 4.465058e+00 1.693130e+01 2.782385 6.235823e-03 1.782523e-02
## DESI2 4.464273e+00 2.281496e+01 3.824602 2.059268e-04 1.298401e-03
## MARCHF9 -4.463103e+00 7.931730e+00 -3.614861 4.345695e-04 2.228273e-03
## CSE1L 4.459975e+00 2.860318e+01 3.074652 2.589985e-03 8.836946e-03
## RPS6KC1 4.457563e+00 1.663964e+01 3.522484 5.982159e-04 2.828884e-03
## TNRC6A 4.453861e+00 2.137933e+01 2.646467 9.182686e-03 2.429867e-02
## SFI1 -4.451845e+00 1.551822e+01 -3.117805 2.262866e-03 7.951879e-03
## ATP10D 4.445325e+00 1.253299e+01 3.216177 1.655067e-03 6.227505e-03
## KCTD9 4.444331e+00 1.433280e+01 3.733447 2.859108e-04 1.634957e-03
## YJU2 -4.442894e+00 8.966040e+00 -3.757455 2.623759e-04 1.540484e-03
## GMEB2 -4.439272e+00 1.546603e+01 -4.754408 5.396392e-06 9.289000e-05
## TMEM134 -4.426232e+00 5.038670e+00 -4.803751 4.386147e-06 7.905729e-05
## SSX2IP 4.424806e+00 1.099070e+01 4.599343 1.026149e-05 1.487791e-04
## GTF2F2 -4.424567e+00 1.956746e+01 -2.698186 7.938260e-03 2.161832e-02
## CDK2 4.421401e+00 1.049011e+01 6.394161 2.941920e-09 4.834077e-07
## AAR2 -4.421051e+00 2.004174e+01 -3.672913 3.544505e-04 1.913419e-03
## RBM43 4.420429e+00 9.406702e+00 3.403836 8.941587e-04 3.839457e-03
## WDR70 -4.416509e+00 1.612595e+01 -3.785411 2.372882e-04 1.436569e-03
## CKAP2 4.416028e+00 1.082355e+01 5.276325 5.647687e-07 1.790951e-05
## MTG1 -4.413704e+00 1.044783e+01 -2.462842 1.514932e-02 3.642962e-02
## GRK5 4.412894e+00 3.155185e+01 2.578598 1.108228e-02 2.839401e-02
## STAU2 4.408634e+00 2.132552e+01 2.437543 1.619836e-02 3.850690e-02
## SYNJ2 4.407715e+00 9.003649e+00 4.595796 1.041182e-05 1.505904e-04
## PDE1B -4.404382e+00 1.109671e+01 -3.884778 1.653263e-04 1.107779e-03
## APPL1 4.396400e+00 2.426074e+01 2.801885 5.892339e-03 1.697429e-02
## MOB1B 4.394054e+00 1.889591e+01 2.957543 3.710839e-03 1.173615e-02
## ATMIN 4.393119e+00 3.150146e+01 2.919245 4.164876e-03 1.281666e-02
## DENR 4.393017e+00 4.751001e+01 2.519246 1.302553e-02 3.231857e-02
## ANKRD27 4.389819e+00 2.370359e+01 3.612252 4.385442e-04 2.243802e-03
## ILVBL -4.381855e+00 6.593759e+00 -3.686257 3.381224e-04 1.853967e-03
## SCAMP1 4.376627e+00 2.308457e+01 2.325636 2.165353e-02 4.857403e-02
## SCAMP4 -4.374742e+00 1.125526e+01 -4.837448 3.804328e-06 7.173184e-05
## ABHD10 -4.371546e+00 1.903502e+01 -3.328330 1.148938e-03 4.677790e-03
## RIN1 -4.366428e+00 4.628575e+00 -4.726498 6.064106e-06 1.003072e-04
## TSR2 -4.365545e+00 2.741597e+01 -2.749151 6.863519e-03 1.923472e-02
## DNAJC15 4.363562e+00 2.523826e+01 2.807150 5.802588e-03 1.674421e-02
## METTL4 4.363258e+00 1.514392e+01 3.483660 6.830293e-04 3.119264e-03
## ZNF444 -4.357583e+00 5.833269e+00 -4.173238 5.588092e-05 4.999994e-04
## RAP2A 4.357472e+00 2.219980e+01 2.373921 1.912725e-02 4.392046e-02
## WHAMM 4.353664e+00 2.010645e+01 2.787735 6.139811e-03 1.758893e-02
## TRRAP 4.347863e+00 1.691544e+01 2.734342 7.161310e-03 1.989532e-02
## ZNF75D 4.347123e+00 1.705072e+01 4.290630 3.541158e-05 3.559164e-04
## NEURL4 -4.344973e+00 1.358058e+01 -4.151174 6.082659e-05 5.292224e-04
## ESS2 -4.343813e+00 1.197674e+01 -4.156371 5.962518e-05 5.228208e-04
## CDKN1C -4.341767e+00 3.971863e+00 -3.031519 2.960218e-03 9.795812e-03
## GMEB1 4.341285e+00 2.241214e+01 5.122477 1.114569e-06 2.944051e-05
## GCHFR -4.336957e+00 5.653780e+00 -3.513597 6.167055e-04 2.895537e-03
## ARMC6 -4.331109e+00 9.994980e+00 -3.356545 1.046673e-03 4.349525e-03
## TNFRSF25 -4.324599e+00 6.405671e+00 -2.989765 3.364610e-03 1.080974e-02
## VPS53 4.323203e+00 2.735479e+01 3.189413 1.803314e-03 6.654418e-03
## MCM9 4.319706e+00 1.651753e+01 3.724214 2.954833e-04 1.679659e-03
## LENG1 -4.313025e+00 7.684041e+00 -4.307652 3.312200e-05 3.389069e-04
## CDCA5 4.308789e+00 4.949994e+00 4.849302 3.618043e-06 6.909821e-05
## ARL15 4.308436e+00 1.407171e+01 4.259656 3.997330e-05 3.914809e-04
## SPNS3 -4.302903e+00 3.924589e+00 -2.531679 1.259488e-02 3.152043e-02
## SMPD2 -4.295336e+00 1.086746e+01 -3.905234 1.533522e-04 1.046466e-03
## AP4E1 4.294026e+00 1.253658e+01 4.433865 2.007042e-05 2.373232e-04
## GSE1 4.292412e+00 1.562932e+01 3.283836 1.329372e-03 5.232774e-03
## PUS7L 4.291033e+00 1.317004e+01 4.436484 1.986091e-05 2.353151e-04
## JMJD4 -4.290188e+00 6.850376e+00 -3.383498 9.570020e-04 4.053587e-03
## FAM3C 4.288314e+00 1.279755e+01 3.060918 2.702939e-03 9.123959e-03
## LRRC8B 4.285970e+00 9.636119e+00 4.376336 2.524811e-05 2.798529e-04
## USP6NL 4.282083e+00 9.523376e+00 4.846588 3.659891e-06 6.978506e-05
## FUT8 4.274893e+00 8.212014e+00 6.353879 3.586570e-09 5.187405e-07
## ITPR1 4.272783e+00 1.809554e+01 2.425346 1.672687e-02 3.951018e-02
## SLC35E1 4.269212e+00 2.980168e+01 3.467081 7.225884e-04 3.247404e-03
## NEK4 4.264752e+00 1.222143e+01 3.772105 2.489311e-04 1.484569e-03
## DHRS3 -4.260709e+00 6.324083e+00 -3.506930 6.309277e-04 2.942510e-03
## MRE11 4.260605e+00 1.950657e+01 3.539901 5.634822e-04 2.704532e-03
## ARHGEF10L -4.258879e+00 6.468444e+00 -4.135608 6.456514e-05 5.534601e-04
## SIVA1 -4.254342e+00 3.976360e+00 -4.434652 2.000724e-05 2.368122e-04
## ATP11C 4.254262e+00 1.601883e+01 3.445968 7.760891e-04 3.433203e-03
## ACSF2 -4.248005e+00 8.752576e+00 -3.300119 1.260473e-03 5.021567e-03
## KCND1 4.244484e+00 8.704328e+00 2.980844 3.457356e-03 1.104045e-02
## SLC35E3 4.238822e+00 2.077680e+01 2.446984 1.579955e-02 3.771034e-02
## GOLPH3L 4.237988e+00 1.486673e+01 2.817754 5.625631e-03 1.636096e-02
## SENP5 4.237789e+00 2.901791e+01 3.645212 3.907595e-04 2.062850e-03
## CCDC32 4.236883e+00 2.227692e+01 4.230921 4.470623e-05 4.265615e-04
## ZNF224 4.233203e+00 2.327206e+01 2.679681 8.364783e-03 2.255648e-02
## RSPRY1 4.232772e+00 2.862161e+01 2.724182 7.372331e-03 2.040986e-02
## PWWP2A 4.227816e+00 2.304911e+01 2.832464 5.388311e-03 1.579080e-02
## TKFC -4.226534e+00 9.708086e+00 -3.468261 7.197031e-04 3.240576e-03
## NBPF11 4.225317e+00 1.473116e+01 3.112295 2.302390e-03 8.062103e-03
## TUT4 4.222471e+00 1.829120e+01 2.490876 1.405796e-02 3.436261e-02
## B4GALT7 -4.222251e+00 6.365812e+00 -3.566347 5.143579e-04 2.527044e-03
## DLGAP5 4.221903e+00 4.193011e+00 5.022958 1.719268e-06 4.069964e-05
## IGFL4 4.218307e+00 7.592843e+00 3.741176 2.781232e-04 1.602790e-03
## OXCT1 4.217908e+00 1.213257e+01 3.438160 7.968013e-04 3.515649e-03
## ZBTB2 4.217573e+00 2.431637e+01 2.858803 4.986085e-03 1.483209e-02
## ZNF844 4.212550e+00 1.766881e+01 2.444548 1.590163e-02 3.789298e-02
## TBPL1 4.209841e+00 2.635264e+01 2.605484 1.029110e-02 2.669563e-02
## GNG7 -4.207032e+00 1.507455e+01 -2.619153 9.908673e-03 2.589618e-02
## TNFAIP8L1 -4.203892e+00 1.129388e+01 -3.902072 1.551476e-04 1.055075e-03
## FAM122B 4.198580e+00 2.266170e+01 3.566624 5.138652e-04 2.526717e-03
## ARHGAP5 4.197457e+00 1.044044e+01 3.733743 2.856085e-04 1.634805e-03
## KCTD5 -4.193422e+00 2.158560e+01 -3.937663 1.360463e-04 9.566100e-04
## SORBS3 -4.193084e+00 4.846766e+00 -4.062575 8.524466e-05 6.826479e-04
## SAMM50 -4.192822e+00 1.939349e+01 -2.812458 5.713396e-03 1.656340e-02
## NAA15 4.190678e+00 1.702195e+01 3.626281 4.175669e-04 2.164486e-03
## TMEM39A 4.186615e+00 1.924127e+01 3.015511 3.109638e-03 1.016827e-02
## MLLT10 4.183107e+00 2.162956e+01 3.180016 1.858234e-03 6.816781e-03
## TCHP 4.179027e+00 1.758723e+01 4.416345 2.152779e-05 2.488495e-04
## ZNF22 4.173871e+00 1.954409e+01 3.389564 9.378361e-04 3.989504e-03
## NCAPD3 4.172680e+00 1.025959e+01 5.202134 7.850148e-07 2.293171e-05
## MCOLN1 -4.170971e+00 1.607359e+01 -2.337858 2.098773e-02 4.734915e-02
## MRPL42 4.169076e+00 1.959851e+01 4.416549 2.151030e-05 2.488495e-04
## COQ2 -4.169012e+00 1.348426e+01 -3.829380 2.023848e-04 1.282888e-03
## TUFT1 4.167838e+00 9.264024e+00 3.265370 1.411758e-03 5.484260e-03
## CALHM2 -4.160280e+00 1.316614e+01 -2.854077 5.056166e-03 1.501029e-02
## RABEP2 -4.160110e+00 4.150292e+00 -4.368593 2.603631e-05 2.859173e-04
## SMIM7 -4.157441e+00 2.801361e+01 -2.800203 5.921260e-03 1.705346e-02
## ATAD1 4.152379e+00 2.214331e+01 3.196168 1.764773e-03 6.550924e-03
## HPS5 4.149794e+00 1.502502e+01 3.317775 1.189540e-03 4.810071e-03
## TMEM11 -4.149288e+00 2.044951e+01 -2.483702 1.433033e-02 3.487051e-02
## FUOM -4.146972e+00 3.384459e+00 -3.829400 2.023706e-04 1.282888e-03
## HDHD3 -4.143826e+00 8.956087e+00 -3.242450 1.520641e-03 5.797109e-03
## UHRF1BP1 4.137898e+00 1.049230e+01 4.107614 7.184910e-05 5.988266e-04
## UBR7 4.134491e+00 2.258471e+01 4.257779 4.026716e-05 3.933843e-04
## DHX38 -4.130193e+00 4.268733e+01 -2.892123 4.516674e-03 1.369669e-02
## EEFSEC -4.127477e+00 6.400606e+00 -3.733052 2.863143e-04 1.636476e-03
## STK19 -4.125071e+00 1.266014e+01 -3.640047 3.979082e-04 2.086292e-03
## MAP4K5 4.124516e+00 1.338117e+01 4.002670 1.067986e-04 7.978319e-04
## DALRD3 -4.121355e+00 1.644585e+01 -3.208495 1.696410e-03 6.356848e-03
## ANKRD52 4.120220e+00 2.173494e+01 4.068294 8.342005e-05 6.712088e-04
## ADRB2 -4.114412e+00 1.692708e+01 -2.735276 7.142176e-03 1.985147e-02
## PHTF2 4.113699e+00 2.344879e+01 3.093926 2.438816e-03 8.442603e-03
## TRNAU1AP -4.109401e+00 2.255634e+01 -2.503430 1.359239e-02 3.343131e-02
## POU2F1 4.101558e+00 1.961298e+01 3.007854 3.183542e-03 1.034881e-02
## MTMR11 -4.097002e+00 1.378616e+01 -2.714295 7.583101e-03 2.084255e-02
## SNRPB2 -4.090494e+00 3.409251e+01 -2.589045 1.076858e-02 2.772664e-02
## RNASEH1 4.089774e+00 1.494570e+01 4.854830 3.534222e-06 6.782504e-05
## PHF6 4.086700e+00 1.144247e+01 3.971829 1.198350e-04 8.703267e-04
## THAP4 -4.086477e+00 9.293156e+00 -3.583068 4.854128e-04 2.426041e-03
## ATF1 4.083462e+00 1.875766e+01 2.886562 4.592086e-03 1.385846e-02
## IMP4 -4.073529e+00 1.551667e+01 -2.547604 1.206193e-02 3.044614e-02
## MIEF1 4.071264e+00 2.204912e+01 3.502683 6.401482e-04 2.971490e-03
## DVL1 -4.069836e+00 5.111012e+00 -5.514457 1.928110e-07 8.469403e-06
## NR4A1 -4.068535e+00 4.219090e+00 -4.054312 8.794881e-05 6.981746e-04
## SEMA7A -4.060656e+00 6.358780e+00 -3.939439 1.351543e-04 9.529906e-04
## RAB30 4.059127e+00 7.387232e+00 3.951389 1.292972e-04 9.200508e-04
## USE1 -4.058224e+00 6.885723e+00 -3.726491 2.930944e-04 1.667194e-03
## SLC10A3 -4.052641e+00 1.375667e+01 -3.141956 2.096946e-03 7.490899e-03
## MSI2 4.049772e+00 1.646098e+01 2.894943 4.478865e-03 1.359594e-02
## TMEM94 -4.048422e+00 1.972200e+01 -2.875610 4.743995e-03 1.421521e-02
## GIPC1 -4.047854e+00 5.809523e+00 -3.463877 7.304787e-04 3.276655e-03
## LARP4 4.047100e+00 1.249580e+01 4.560493 1.202882e-05 1.643569e-04
## ASPM 4.030027e+00 3.928611e+00 5.954733 2.472090e-08 2.094213e-06
## EEA1 4.029743e+00 1.316197e+01 3.174608 1.890539e-03 6.896892e-03
## PLCB3 -4.025879e+00 9.166749e+00 -4.864732 3.388772e-06 6.591599e-05
## TMEM60 4.017275e+00 2.154349e+01 2.342912 2.071770e-02 4.686850e-02
## ADCK2 -4.016421e+00 8.212438e+00 -4.357803 2.717437e-05 2.951355e-04
## LRCH3 4.016028e+00 2.333332e+01 3.963553 1.235834e-04 8.883026e-04
## PTK2 4.011801e+00 8.331115e+00 4.044013 9.143383e-05 7.167252e-04
## SURF2 -4.010799e+00 5.003539e+00 -4.477178 1.686393e-05 2.092115e-04
## CEP162 4.008583e+00 1.075719e+01 3.748759 2.706798e-04 1.572622e-03
## ZMAT3 4.005083e+00 2.203178e+01 3.081427 2.535886e-03 8.692373e-03
## PATZ1 -4.003685e+00 1.413974e+01 -3.081993 2.531415e-03 8.684576e-03
## INTS4 4.003093e+00 2.197453e+01 4.961305 2.243099e-06 4.935651e-05
## POLR2M 4.000155e+00 1.955286e+01 2.642142 9.294342e-03 2.456125e-02
## TOM1L2 -3.993263e+00 1.523963e+01 -5.584634 1.397678e-07 6.711120e-06
## RBBP8 3.993017e+00 1.393609e+01 4.555698 1.226633e-05 1.664515e-04
## KIAA0319 3.992811e+00 1.110885e+01 2.369476 1.934840e-02 4.431559e-02
## FAM102B 3.985473e+00 2.062025e+01 3.098368 2.405156e-03 8.356692e-03
## IGSF8 -3.984015e+00 7.130157e+00 -3.500141 6.457292e-04 2.991542e-03
## SART3 3.983913e+00 2.322677e+01 3.251994 1.474384e-03 5.662626e-03
## DIABLO -3.980366e+00 2.386523e+01 -3.299696 1.262219e-03 5.025150e-03
## UBQLN4 -3.979904e+00 1.762492e+01 -2.697590 7.951670e-03 2.164490e-02
## TNF -3.973309e+00 1.049249e+01 -3.183277 1.838997e-03 6.760851e-03
## RDX 3.971318e+00 9.716763e+00 4.814553 4.190820e-06 7.693982e-05
## MTMR12 3.970103e+00 2.617007e+01 2.521599 1.294302e-02 3.216770e-02
## AMIGO2 3.969602e+00 1.002078e+01 3.933288 1.382674e-04 9.697523e-04
## ZSWIM7 -3.969160e+00 1.089111e+01 -4.215882 4.739315e-05 4.431111e-04
## CLK2 -3.968421e+00 3.994927e+01 -3.559187 5.272429e-04 2.577535e-03
## PTPMT1 -3.966329e+00 1.691512e+01 -2.682490 8.298728e-03 2.241980e-02
## GOLT1B 3.960652e+00 2.098623e+01 3.746315 2.730581e-04 1.583604e-03
## REV1 3.960203e+00 1.620872e+01 3.404139 8.932532e-04 3.838435e-03
## ZNF784 -3.958653e+00 6.822751e+00 -4.727595 6.036406e-06 1.001284e-04
## NOL8 3.949538e+00 2.246275e+01 2.836995 5.317060e-03 1.562834e-02
## THAP7 -3.945191e+00 4.236115e+00 -4.067090 8.380104e-05 6.738172e-04
## HEMK1 -3.944579e+00 1.651636e+01 -2.470048 1.486182e-02 3.591303e-02
## KIF2C 3.942531e+00 4.777789e+00 4.275853 3.752176e-05 3.730160e-04
## EXOC2 3.931499e+00 1.759741e+01 3.008820 3.174123e-03 1.033354e-02
## TPM2 -3.926843e+00 5.117356e+00 -3.629932 4.122662e-04 2.141689e-03
## PRPS2 3.924880e+00 1.599031e+01 3.525830 5.913895e-04 2.803309e-03
## IL21R -3.922346e+00 9.077452e+00 -2.881900 4.656195e-03 1.399809e-02
## C5orf24 3.921622e+00 1.594183e+01 3.205912 1.710530e-03 6.391585e-03
## RAD50 3.920624e+00 1.636742e+01 3.173693 1.896053e-03 6.910629e-03
## CDK5RAP1 -3.919485e+00 1.508499e+01 -3.069791 2.629452e-03 8.940739e-03
## GSTZ1 -3.918747e+00 5.734021e+00 -5.532924 1.771968e-07 7.870991e-06
## MRPS11 -3.911339e+00 1.483592e+01 -2.765514 6.547616e-03 1.852009e-02
## PHACTR4 3.910132e+00 1.447161e+01 4.326144 3.079625e-05 3.220843e-04
## GARS1 3.903432e+00 4.002217e+01 2.312267 2.240302e-02 4.981248e-02
## SLC39A6 3.900852e+00 2.295276e+01 2.839910 5.271689e-03 1.553733e-02
## CSNK1G3 3.898498e+00 2.119050e+01 2.327455 2.155324e-02 4.841316e-02
## PDE4DIP 3.898010e+00 1.750962e+01 2.355800 2.004305e-02 4.563459e-02
## ZKSCAN8 3.897961e+00 1.158964e+01 2.982261 3.442476e-03 1.099886e-02
## DNAH1 3.896914e+00 2.261873e+01 2.666426 8.682936e-03 2.323548e-02
## COA4 -3.893211e+00 1.090686e+01 -3.153281 2.023096e-03 7.273088e-03
## MIER3 3.891784e+00 1.024188e+01 4.582491 1.099493e-05 1.554230e-04
## FOXM1 3.890518e+00 4.901730e+00 4.811257 4.249514e-06 7.755747e-05
## CDK5 -3.886972e+00 1.028263e+01 -4.098906 7.427096e-05 6.138353e-04
## KLHDC4 -3.882355e+00 9.421845e+00 -2.915350 4.213792e-03 1.294704e-02
## DHX29 3.881271e+00 1.834194e+01 3.676757 3.496727e-04 1.896748e-03
## CCNB2 3.880167e+00 4.519676e+00 4.052093 8.868873e-05 7.007651e-04
## SOWAHD -3.878368e+00 6.818966e+00 -5.177688 8.744634e-07 2.446023e-05
## MRPS25 -3.877433e+00 1.919950e+01 -2.778299 6.310065e-03 1.799408e-02
## GUCY1B1 3.876782e+00 1.001657e+01 2.788890 6.119268e-03 1.755127e-02
## MED14 3.875934e+00 1.837739e+01 2.703707 7.814871e-03 2.134945e-02
## RNF126 -3.873819e+00 5.363808e+00 -4.367674 2.613147e-05 2.866968e-04
## NHLRC2 3.873005e+00 1.106596e+01 4.886511 3.088999e-06 6.182020e-05
## CHD6 3.853831e+00 1.290575e+01 2.378072 1.892280e-02 4.354373e-02
## NECTIN1 -3.853323e+00 9.194156e+00 -3.467409 7.217841e-04 3.246250e-03
## STRIP1 3.850976e+00 2.905519e+01 3.283603 1.330382e-03 5.235015e-03
## NFKBIB -3.850601e+00 1.648650e+01 -2.769609 6.470670e-03 1.838135e-02
## NME3 -3.840872e+00 3.381609e+00 -3.583436 4.847937e-04 2.423968e-03
## SDHAF1 -3.837187e+00 6.307657e+00 -4.350722 2.794701e-05 3.021436e-04
## FADS1 3.834707e+00 1.026303e+01 3.447658 7.716732e-04 3.416869e-03
## RMND5B -3.834480e+00 1.969871e+01 -2.923807 4.108228e-03 1.269239e-02
## PSMD11 3.829760e+00 3.415894e+01 3.075715 2.581427e-03 8.817895e-03
## BTLA 3.813030e+00 9.656279e+00 3.624177 4.206518e-04 2.176671e-03
## DENND6B -3.811199e+00 3.805693e+00 -5.585229 1.393854e-07 6.711120e-06
## MRPS23 -3.805007e+00 2.095550e+01 -2.500947 1.368336e-02 3.362019e-02
## RBM12B 3.802325e+00 1.741799e+01 2.625922 9.724106e-03 2.550242e-02
## HRAS -3.798815e+00 5.487688e+00 -3.192635 1.784835e-03 6.606785e-03
## C12orf76 3.797646e+00 1.295168e+01 4.106458 7.216612e-05 6.002035e-04
## SMURF1 3.797371e+00 1.848964e+01 2.343948 2.066274e-02 4.675827e-02
## TCERG1 3.794992e+00 1.565597e+01 2.985673 3.406868e-03 1.090860e-02
## CENPU 3.794188e+00 5.718738e+00 5.460512 2.465317e-07 1.001324e-05
## DHRS7B -3.791589e+00 1.486559e+01 -3.324533 1.163390e-03 4.720428e-03
## SACS 3.787913e+00 8.787320e+00 2.909034 4.294251e-03 1.315336e-02
## UBN2 3.783756e+00 1.534881e+01 3.097892 2.408742e-03 8.362905e-03
## ZNF81 3.782446e+00 1.015307e+01 4.017655 1.009645e-04 7.690679e-04
## CFDP1 -3.778281e+00 2.735743e+01 -2.741798 7.009940e-03 1.956186e-02
## IQCB1 3.777801e+00 1.512658e+01 3.863177 1.789343e-04 1.175713e-03
## SMAD5 3.773583e+00 1.192468e+01 3.298772 1.266043e-03 5.036990e-03
## FXR2 -3.770962e+00 3.413960e+01 -2.507009 1.346223e-02 3.318688e-02
## HEATR1 3.770922e+00 9.263991e+00 3.359617 1.036069e-03 4.314530e-03
## METTL14 3.765830e+00 1.674182e+01 3.269965 1.390822e-03 5.424250e-03
## SMARCAD1 3.764408e+00 1.120224e+01 3.084618 2.510769e-03 8.633727e-03
## NAALADL1 -3.763585e+00 5.807295e+00 -3.649687 3.846648e-04 2.040306e-03
## TTYH2 -3.760105e+00 1.125504e+01 -2.843536 5.215745e-03 1.538392e-02
## PLCD1 -3.759566e+00 1.155611e+01 -3.339505 1.107363e-03 4.539691e-03
## MRPS2 -3.758798e+00 8.503008e+00 -2.683108 8.284259e-03 2.238581e-02
## BLM 3.750712e+00 7.675997e+00 5.368508 3.737406e-07 1.327115e-05
## HYAL2 -3.748911e+00 9.461095e+00 -3.403732 8.944706e-04 3.839457e-03
## RELL2 -3.748099e+00 7.260266e+00 -3.957866 1.262242e-04 9.035740e-04
## UTP18 -3.746052e+00 2.293167e+01 -3.002435 3.236816e-03 1.049443e-02
## TK1 3.743805e+00 5.283466e+00 2.837359 5.311377e-03 1.561898e-02
## SPAG1 3.741493e+00 7.047075e+00 3.688800 3.350925e-04 1.841611e-03
## ANKRA2 3.731419e+00 1.404003e+01 3.893558 1.600816e-04 1.081805e-03
## PICK1 -3.722163e+00 9.753561e+00 -3.546471 5.508806e-04 2.656952e-03
## REXO1 -3.722024e+00 8.139960e+00 -5.740625 6.782840e-08 4.324972e-06
## KDM4C 3.719714e+00 2.293489e+01 2.322316 2.183753e-02 4.889429e-02
## ACADS -3.718655e+00 4.749622e+00 -4.092408 7.612908e-05 6.257040e-04
## ARL16 -3.717920e+00 1.312072e+01 -3.408332 8.807991e-04 3.809729e-03
## INTS6L 3.711811e+00 2.228831e+01 2.611245 1.012833e-02 2.634254e-02
## GOLGA7B -3.711703e+00 6.787066e+00 -2.446769 1.580853e-02 3.772419e-02
## MSH6 3.708020e+00 2.168682e+01 3.698606 3.236484e-04 1.797878e-03
## MPHOSPH9 3.705478e+00 7.194862e+00 5.023730 1.713531e-06 4.064495e-05
## POGK 3.696926e+00 2.561519e+01 2.535924 1.245077e-02 3.123227e-02
## EDRF1 3.695850e+00 1.457291e+01 4.912508 2.764777e-06 5.682886e-05
## ZSCAN32 3.693346e+00 1.941421e+01 3.078191 2.561593e-03 8.766611e-03
## ZNF428 -3.691777e+00 5.318681e+00 -3.958661 1.258518e-04 9.024199e-04
## CENPE 3.688219e+00 4.188713e+00 5.012568 1.798322e-06 4.181980e-05
## FBXO31 -3.687171e+00 8.484113e+00 -3.522906 5.973508e-04 2.827047e-03
## MED17 3.686459e+00 2.408551e+01 2.445195 1.587448e-02 3.784347e-02
## VPS52 -3.683180e+00 2.290242e+01 -3.564514 5.176288e-04 2.539507e-03
## MASTL 3.682808e+00 8.050500e+00 5.191211 8.238204e-07 2.354195e-05
## APEX2 -3.678963e+00 1.617381e+01 -3.472212 7.101194e-04 3.205945e-03
## PLA2G7 -3.676990e+00 4.290104e+00 -5.050378 1.526502e-06 3.763891e-05
## PARG 3.675033e+00 1.400629e+01 3.924379 1.428973e-04 9.910892e-04
## PHETA1 -3.672489e+00 5.213331e+00 -4.466417 1.761106e-05 2.156310e-04
## LRRC61 -3.670367e+00 4.476915e+00 -5.893677 3.303013e-08 2.611582e-06
## PRPS1 3.668624e+00 2.240772e+01 2.628085 9.665754e-03 2.536753e-02
## TESK1 -3.665199e+00 9.805560e+00 -3.786788 2.361133e-04 1.431545e-03
## TTC33 3.663799e+00 1.880220e+01 2.386018 1.853673e-02 4.287160e-02
## TMEM234 -3.662867e+00 9.954188e+00 -3.697283 3.251713e-04 1.804648e-03
## GORASP2 3.660770e+00 3.007691e+01 2.476332 1.461505e-02 3.542509e-02
## SNX8 -3.660433e+00 6.323892e+00 -4.040156 9.277281e-05 7.248257e-04
## DENND5B 3.658794e+00 4.222445e+00 4.219823 4.667447e-05 4.386364e-04
## NFATC1 -3.657374e+00 1.200746e+01 -3.743252 2.760664e-04 1.594526e-03
## NUBP1 -3.655321e+00 1.721894e+01 -3.339601 1.107015e-03 4.539691e-03
## TOP3B -3.655150e+00 1.327283e+01 -4.287297 3.587733e-05 3.599874e-04
## SWT1 3.646529e+00 1.053536e+01 3.523150 5.968509e-04 2.825809e-03
## MAD2L1 3.645094e+00 5.855353e+00 4.535888 1.329649e-05 1.761971e-04
## TRAPPC9 -3.642503e+00 1.611589e+01 -3.406368 8.866121e-04 3.819549e-03
## NDUFA8 -3.639061e+00 1.787617e+01 -2.618468 9.927546e-03 2.592265e-02
## UBA5 3.638598e+00 1.449998e+01 3.648872 3.857688e-04 2.044333e-03
## SEPHS1 3.638128e+00 1.593709e+01 3.675227 3.515676e-04 1.901781e-03
## PCK2 -3.636881e+00 1.423518e+01 -2.663755 8.748342e-03 2.337358e-02
## HSPBP1 -3.634793e+00 4.388639e+00 -3.374637 9.856558e-04 4.146817e-03
## LYRM4 -3.628616e+00 9.831868e+00 -2.692029 8.077915e-03 2.192589e-02
## CAPS -3.626775e+00 3.179834e+00 -4.487300 1.618919e-05 2.033938e-04
## FAM20B 3.624252e+00 2.014781e+01 3.564622 5.174355e-04 2.539507e-03
## SLC4A7 3.618099e+00 9.586608e+00 2.678979 8.381356e-03 2.258643e-02
## HIKESHI -3.613254e+00 1.597694e+01 -2.626270 9.714699e-03 2.548470e-02
## DPH5 -3.611414e+00 1.455070e+01 -3.795461 2.288396e-04 1.403328e-03
## CFAP410 -3.609940e+00 5.579006e+00 -3.362275 1.026978e-03 4.283544e-03
## ANKRD40 3.607710e+00 1.607301e+01 3.593279 4.685021e-04 2.365447e-03
## ZNF136 3.606459e+00 1.346685e+01 3.081518 2.535165e-03 8.692373e-03
## ABHD18 3.603137e+00 1.646802e+01 3.509597 6.252011e-04 2.921547e-03
## FEM1A -3.602201e+00 2.698472e+01 -4.028455 9.694989e-05 7.476110e-04
## TRIM24 3.601621e+00 2.171718e+01 2.369758 1.933433e-02 4.429384e-02
## SLC16A1 3.599729e+00 7.814640e+00 5.389386 3.401864e-07 1.237677e-05
## S1PR3 3.597325e+00 1.022066e+01 2.680742 8.339777e-03 2.250506e-02
## CEP57 3.594691e+00 2.293802e+01 2.590082 1.073788e-02 2.766101e-02
## KAT6B 3.593160e+00 9.824632e+00 3.501051 6.437252e-04 2.985757e-03
## SERGEF -3.591803e+00 8.533401e+00 -3.382307 9.608057e-04 4.062444e-03
## ZNF684 3.590475e+00 5.441514e+00 3.006056 3.201127e-03 1.039577e-02
## METTL3 3.590414e+00 2.451178e+01 2.781106 6.258988e-03 1.787421e-02
## INO80 3.589599e+00 2.256520e+01 2.952459 3.768372e-03 1.186432e-02
## LIN37 -3.585981e+00 1.274398e+01 -2.788697 6.122687e-03 1.755259e-02
## ASB13 -3.585194e+00 8.068603e+00 -4.292830 3.510731e-05 3.540584e-04
## OGFOD2 -3.581814e+00 9.250384e+00 -3.206706 1.706180e-03 6.381360e-03
## FIP1L1 3.578766e+00 2.867529e+01 3.390455 9.350529e-04 3.981949e-03
## WDR43 3.575491e+00 1.520267e+01 2.570645 1.132659e-02 2.890132e-02
## TRMU -3.574641e+00 9.363853e+00 -3.342179 1.097627e-03 4.507567e-03
## XPO4 3.570993e+00 1.176345e+01 2.931829 4.010350e-03 1.244266e-02
## REEP4 -3.560670e+00 1.188265e+01 -3.265760 1.409970e-03 5.479111e-03
## PEX5 -3.554870e+00 1.715291e+01 -4.327697 3.060828e-05 3.205640e-04
## EDC3 -3.553052e+00 2.121562e+01 -3.198988 1.748913e-03 6.504266e-03
## PCBP4 -3.545639e+00 5.078516e+00 -3.249841 1.484703e-03 5.685686e-03
## CAPN15 -3.543292e+00 5.202729e+00 -4.189001 5.258641e-05 4.775458e-04
## TGFBRAP1 3.542595e+00 1.744006e+01 3.987247 1.131386e-04 8.334311e-04
## TRAF2 -3.542282e+00 7.122814e+00 -3.302434 1.250948e-03 4.998736e-03
## ITGA1 3.541247e+00 7.039792e+00 3.358660 1.039362e-03 4.326723e-03
## NDC80 3.541071e+00 5.917033e+00 6.385040 3.077072e-09 4.865877e-07
## ACTL6A 3.538498e+00 1.502742e+01 3.695587 3.271324e-04 1.812912e-03
## BCORL1 -3.537456e+00 1.536225e+01 -2.372415 1.920196e-02 4.405789e-02
## PBDC1 -3.535848e+00 1.601970e+01 -2.651506 9.054111e-03 2.402412e-02
## GUCY1A1 3.532386e+00 6.703931e+00 3.008068 3.181447e-03 1.034603e-02
## SLC25A45 -3.525823e+00 7.124357e+00 -4.116217 6.953092e-05 5.836070e-04
## SCRN1 3.522477e+00 1.257360e+01 2.618544 9.925446e-03 2.592265e-02
## SLC16A7 3.519377e+00 1.160564e+01 2.647026 9.168340e-03 2.427154e-02
## CENPC 3.512093e+00 1.437690e+01 2.689604 8.133537e-03 2.203375e-02
## USP39 3.510204e+00 4.384130e+01 2.313075 2.235711e-02 4.972905e-02
## VPS37A 3.507586e+00 2.034202e+01 2.395519 1.808428e-02 4.207130e-02
## BCAT2 -3.500490e+00 5.510112e+00 -3.813181 2.146346e-04 1.341184e-03
## UXS1 3.499918e+00 2.384312e+01 2.720390 7.452534e-03 2.057427e-02
## CROCC -3.498733e+00 4.274006e+00 -4.816769 4.151814e-06 7.669862e-05
## DUSP18 3.491280e+00 1.203169e+01 3.512620 6.187695e-04 2.901782e-03
## RGPD8 3.483867e+00 7.697106e+00 4.149596 6.119596e-05 5.317100e-04
## PPP2R3B -3.481438e+00 4.742568e+00 -5.093888 1.263007e-06 3.241162e-05
## NDUFAF7 -3.470047e+00 1.187214e+01 -4.072313 8.216028e-05 6.624208e-04
## RAP1GDS1 3.469906e+00 2.541334e+01 3.385119 9.518442e-04 4.034622e-03
## STRN3 3.468084e+00 1.439236e+01 2.714562 7.577338e-03 2.083636e-02
## VSIG10 3.467299e+00 6.069372e+00 2.571598 1.129705e-02 2.884456e-02
## GINS2 3.465802e+00 4.211891e+00 4.682327 7.287285e-06 1.160097e-04
## CEP135 3.465421e+00 1.292994e+01 2.467838 1.494946e-02 3.605869e-02
## SCCPDH -3.462969e+00 1.456021e+01 -2.757170 6.707025e-03 1.888989e-02
## REX1BD -3.458198e+00 3.423726e+00 -3.624896 4.195946e-04 2.173696e-03
## SKA2 3.458149e+00 1.253413e+01 4.110683 7.101378e-05 5.939516e-04
## ZNF280D 3.449052e+00 1.587320e+01 2.855072 5.041344e-03 1.497754e-02
## BTBD7 3.444196e+00 1.779174e+01 2.721976 7.418901e-03 2.050050e-02
## RAD17 3.440769e+00 1.547157e+01 4.306403 3.328513e-05 3.397260e-04
## CENPX -3.438919e+00 8.374589e+00 -2.444146 1.591853e-02 3.792563e-02
## CTNNAL1 3.434200e+00 6.573702e+00 3.946900 1.314685e-04 9.333096e-04
## CCDC61 -3.433878e+00 4.173247e+00 -4.990190 1.980799e-06 4.526451e-05
## ZNF799 3.432920e+00 8.736181e+00 2.562430 1.158402e-02 2.945190e-02
## HAAO -3.431322e+00 3.365732e+00 -6.867883 2.745787e-10 1.085501e-07
## PIGBOS1 -3.428067e+00 1.692936e+01 -2.951113 3.783738e-03 1.190006e-02
## GALK2 3.427455e+00 1.196634e+01 5.115366 1.149820e-06 3.023695e-05
## HJURP 3.424896e+00 3.574267e+00 5.074219 1.376128e-06 3.479931e-05
## NCBP1 3.421997e+00 2.127427e+01 3.055409 2.749523e-03 9.248254e-03
## HMGXB4 3.420485e+00 1.218550e+01 3.758301 2.615815e-04 1.537587e-03
## EXOSC5 -3.420081e+00 3.921173e+00 -4.672176 7.600421e-06 1.201880e-04
## GFM2 3.419693e+00 1.627594e+01 3.901688 1.553668e-04 1.055960e-03
## SLC25A25 -3.416960e+00 1.216950e+01 -3.818618 2.104462e-04 1.321976e-03
## AK3 3.415824e+00 1.842348e+01 3.867681 1.760115e-04 1.158433e-03
## TNFRSF9 -3.414460e+00 7.481335e+00 -2.575902 1.116456e-02 2.856778e-02
## AGFG2 -3.410241e+00 7.216096e+00 -2.750459 6.837772e-03 1.917616e-02
## DEAF1 -3.408913e+00 1.034211e+01 -3.255837 1.456132e-03 5.612519e-03
## ERMP1 3.405802e+00 1.049954e+01 4.228016 4.521349e-05 4.289856e-04
## BOD1 -3.402001e+00 9.862066e+00 -3.798985 2.259456e-04 1.387734e-03
## DHX30 -3.400314e+00 1.784720e+01 -2.689628 8.132986e-03 2.203375e-02
## MAP3K6 -3.399365e+00 6.981483e+00 -3.837203 1.967103e-04 1.261198e-03
## RASGRP3 3.396020e+00 5.629790e+00 4.629610 9.061257e-06 1.365521e-04
## USP14 3.395393e+00 1.817708e+01 2.863983 4.910295e-03 1.463219e-02
## PRXL2B -3.393572e+00 8.273215e+00 -4.406183 2.241934e-05 2.568653e-04
## NGRN -3.392130e+00 2.365247e+01 -2.472108 1.478052e-02 3.575300e-02
## ZNF362 -3.390724e+00 9.425953e+00 -6.833618 3.267557e-10 1.139801e-07
## RPRD1B 3.389021e+00 1.997588e+01 2.823402 5.533403e-03 1.613229e-02
## PELI3 -3.388208e+00 4.537970e+00 -6.956046 1.752061e-10 8.658102e-08
## GTF3C3 3.387336e+00 1.454921e+01 3.311490 1.214351e-03 4.887073e-03
## SPPL2B -3.385479e+00 5.348899e+00 -4.071106 8.253649e-05 6.650019e-04
## CPTP -3.381766e+00 5.274636e+00 -3.943556 1.331084e-04 9.413630e-04
## SLC33A1 3.381048e+00 1.850734e+01 3.728236 2.912767e-04 1.660039e-03
## ARHGAP11A 3.378091e+00 5.148749e+00 6.162789 9.106659e-09 1.018915e-06
## BCOR 3.377003e+00 1.210760e+01 2.989722 3.365055e-03 1.080974e-02
## NRF1 -3.376368e+00 2.468651e+01 -3.423929 8.358920e-04 3.656835e-03
## KIFC1 3.373296e+00 3.895032e+00 4.652856 8.232783e-06 1.271365e-04
## SLC17A5 3.372011e+00 1.547184e+01 2.930967 4.020758e-03 1.246372e-02
## HDDC2 -3.369245e+00 1.591801e+01 -2.711336 7.647251e-03 2.096057e-02
## PPP2R1B 3.368964e+00 1.189528e+01 5.276932 5.632417e-07 1.790897e-05
## CUL5 3.368105e+00 1.720670e+01 2.987749 3.385365e-03 1.085734e-02
## SLC30A5 3.367897e+00 2.559714e+01 2.607842 1.022420e-02 2.656049e-02
## AARSD1 -3.365532e+00 8.709452e+00 -2.973055 3.540267e-03 1.126276e-02
## CDC7 3.365151e+00 5.656738e+00 7.711515 3.417089e-12 6.754446e-09
## DTL 3.365054e+00 3.235270e+00 6.836979 3.212329e-10 1.139801e-07
## OSBPL3 3.364061e+00 1.017479e+01 2.983897 3.425355e-03 1.095818e-02
## ERCC3 3.363731e+00 2.778887e+01 3.071888 2.612363e-03 8.897940e-03
## UBALD1 -3.361644e+00 4.023117e+00 -3.782956 2.393972e-04 1.444176e-03
## TM2D2 -3.359581e+00 1.716392e+01 -3.620324 4.263553e-04 2.197555e-03
## YLPM1 3.355678e+00 1.652196e+01 3.083449 2.519946e-03 8.652740e-03
## GRAMD4 -3.351802e+00 1.295125e+01 -3.772059 2.489720e-04 1.484569e-03
## GCDH -3.348925e+00 9.478377e+00 -2.888686 4.563143e-03 1.379880e-02
## SNX21 -3.346141e+00 7.582398e+00 -5.363302 3.825983e-07 1.354512e-05
## ALDH18A1 3.345696e+00 9.977832e+00 3.365917 1.014636e-03 4.246149e-03
## TMEM187 -3.342810e+00 4.428668e+00 -5.599121 1.307500e-07 6.355307e-06
## UNC50 3.337987e+00 2.825608e+01 2.436641 1.623694e-02 3.854486e-02
## DDX28 -3.332807e+00 1.279964e+01 -3.364923 1.017990e-03 4.258683e-03
## SUCNR1 3.326879e+00 3.860900e+00 4.348892 2.815008e-05 3.033388e-04
## INPP5B -3.325535e+00 2.233440e+01 -2.924969 4.093911e-03 1.265410e-02
## KCNH3 -3.322338e+00 5.687760e+00 -2.411670 1.733758e-02 4.065317e-02
## AGK 3.322158e+00 1.185189e+01 2.922938 4.118965e-03 1.271167e-02
## C7orf26 -3.321729e+00 2.206129e+01 -2.716988 7.525153e-03 2.072266e-02
## NR6A1 -3.318838e+00 8.241806e+00 -3.806406 2.199640e-04 1.365105e-03
## ZDHHC13 3.318225e+00 1.513708e+01 2.714460 7.579541e-03 2.083759e-02
## PIGC 3.316433e+00 2.101348e+01 3.706809 3.143613e-04 1.759474e-03
## ZNF783 -3.314957e+00 1.092345e+01 -2.844635 5.198903e-03 1.535716e-02
## SLC35D1 3.313856e+00 1.060355e+01 3.239241 1.536497e-03 5.840657e-03
## GLO1 3.313202e+00 2.510294e+01 2.529719 1.266190e-02 3.164825e-02
## CACTIN -3.312806e+00 5.544140e+00 -4.573119 1.142447e-05 1.587493e-04
## ZSCAN18 -3.312333e+00 5.291161e+00 -4.451285 1.871583e-05 2.241235e-04
## RTL8A -3.312197e+00 6.778449e+00 -5.422343 2.931207e-07 1.110675e-05
## MUTYH -3.308953e+00 6.164116e+00 -4.292578 3.514201e-05 3.541073e-04
## SNIP1 3.303784e+00 1.656125e+01 3.121556 2.236319e-03 7.879602e-03
## RNGTT 3.301254e+00 1.787533e+01 2.668663 8.628489e-03 2.311585e-02
## CES2 -3.300869e+00 2.257962e+01 -3.307385 1.230816e-03 4.934916e-03
## TNPO2 -3.299242e+00 2.371625e+01 -2.712194 7.628594e-03 2.092878e-02
## PTRHD1 -3.299203e+00 7.100940e+00 -3.278077 1.354569e-03 5.310804e-03
## ECT2 3.292440e+00 7.316110e+00 4.813103 4.216546e-06 7.729247e-05
## DIPK1A 3.288271e+00 6.401045e+00 4.154172 6.013078e-05 5.251480e-04
## INO80B -3.282846e+00 8.678664e+00 -5.317494 4.699077e-07 1.569889e-05
## BLOC1S3 -3.281999e+00 1.518008e+01 -4.443184 1.933439e-05 2.299958e-04
## GOLGA3 3.280247e+00 2.604738e+01 2.764064 6.575081e-03 1.857150e-02
## ZNF621 3.279515e+00 1.099581e+01 3.561148 5.236850e-04 2.564370e-03
## TBC1D25 -3.275473e+00 1.967767e+01 -2.533798 1.252276e-02 3.138102e-02
## IDE 3.273245e+00 1.526620e+01 3.808869 2.180121e-04 1.355859e-03
## DSTYK 3.271212e+00 1.804712e+01 2.550647 1.196240e-02 3.023159e-02
## TOP1MT -3.269098e+00 5.481799e+00 -3.491098 6.659501e-04 3.062493e-03
## CUL2 3.267894e+00 2.219729e+01 3.059777 2.712528e-03 9.146197e-03
## PTGIR -3.265921e+00 7.081861e+00 -2.675685 8.459563e-03 2.274550e-02
## MAP2K7 -3.262155e+00 1.644871e+01 -2.869289 4.833761e-03 1.444040e-02
## TAPT1 3.261607e+00 2.214571e+01 2.393453 1.818184e-02 4.223201e-02
## KLHDC10 3.261333e+00 2.108948e+01 2.739047 7.065438e-03 1.967968e-02
## NIPAL3 3.260828e+00 1.313330e+01 3.154993 2.012141e-03 7.237104e-03
## FBXL6 -3.254256e+00 6.115787e+00 -3.048039 2.812991e-03 9.408369e-03
## COQ9 -3.253868e+00 1.839751e+01 -3.788527 2.346380e-04 1.426272e-03
## SNRNP48 3.250553e+00 1.562827e+01 2.835830 5.335308e-03 1.567032e-02
## BRF1 -3.250440e+00 5.506299e+00 -4.469122 1.742034e-05 2.138771e-04
## GALT -3.249384e+00 1.076786e+01 -2.874498 4.759670e-03 1.425137e-02
## ZNF28 3.249275e+00 1.160783e+01 3.638857 3.995717e-04 2.089964e-03
## RNF168 3.245874e+00 2.170754e+01 2.569406 1.136507e-02 2.899328e-02
## COMMD3-BMI1 3.240549e+00 1.957333e+01 2.416585 1.711587e-02 4.023894e-02
## ZNF699 3.239816e+00 8.758494e+00 3.165543 1.945863e-03 7.042396e-03
## ELP5 -3.239750e+00 1.575679e+01 -2.786853 6.155552e-03 1.762125e-02
## ZNF598 -3.238850e+00 7.452848e+00 -3.991334 1.114246e-04 8.238753e-04
## DCUN1D3 3.236932e+00 9.086661e+00 3.624818 4.197103e-04 2.173696e-03
## UHRF1 3.235284e+00 4.605744e+00 5.221511 7.205116e-07 2.179559e-05
## SMIM5 3.234954e+00 7.977298e+00 2.336065 2.108423e-02 4.753973e-02
## FBXO5 3.233711e+00 5.296409e+00 6.567694 1.244811e-09 2.636332e-07
## WDR36 3.233347e+00 1.407454e+01 3.084660 2.510438e-03 8.633727e-03
## GMNN 3.233196e+00 6.201325e+00 4.507001 1.494974e-05 1.921908e-04
## SWI5 -3.231394e+00 8.839777e+00 -3.400977 9.027537e-04 3.866616e-03
## MROH1 -3.229415e+00 7.455327e+00 -3.664512 3.651101e-04 1.954197e-03
## GATA3 -3.228773e+00 4.840346e+00 -3.009771 3.164886e-03 1.030913e-02
## MCCC2 3.228389e+00 1.023146e+01 3.803381 2.223838e-04 1.375115e-03
## SLC27A4 -3.226147e+00 7.812821e+00 -3.019936 3.067654e-03 1.005525e-02
## COG5 3.225957e+00 2.359828e+01 2.448732 1.572670e-02 3.758184e-02
## CENPN 3.223504e+00 6.068023e+00 3.752412 2.671617e-04 1.558270e-03
## PDK2 -3.222668e+00 7.084785e+00 -3.748260 2.711636e-04 1.574156e-03
## SQLE 3.219934e+00 8.555923e+00 3.982972 1.149586e-04 8.442164e-04
## ABCB8 -3.218905e+00 6.121221e+00 -3.532116 5.787659e-04 2.758378e-03
## ABCA5 3.213127e+00 1.266321e+01 3.174763 1.889602e-03 6.895592e-03
## OGFOD3 -3.209107e+00 6.277364e+00 -3.900493 1.560511e-04 1.058790e-03
## NAE1 3.206771e+00 1.552913e+01 3.674491 3.524823e-04 1.904529e-03
## TBC1D22B 3.190438e+00 1.272462e+01 3.370169 1.000405e-03 4.196960e-03
## CDKN2AIP 3.190295e+00 2.376953e+01 2.393843 1.816338e-02 4.220536e-02
## LOXHD1 3.187668e+00 6.948033e+00 2.908119 4.306028e-03 1.318355e-02
## N4BP2 3.185102e+00 7.302057e+00 3.742584 2.767269e-04 1.596294e-03
## VAMP4 3.180498e+00 2.447515e+01 2.598287 1.049775e-02 2.713081e-02
## NPIPA7 -3.178847e+00 1.139457e+01 -2.346165 2.054557e-02 4.654766e-02
## PEX13 3.177844e+00 1.442421e+01 3.608556 4.442338e-04 2.266070e-03
## MDP1 -3.173839e+00 7.681028e+00 -3.210757 1.684138e-03 6.322848e-03
## DERA 3.173037e+00 2.078248e+01 2.549839 1.198874e-02 3.027821e-02
## ZNF671 -3.172690e+00 1.503733e+01 -3.764129 2.561677e-04 1.519478e-03
## PLD1 3.171217e+00 9.232717e+00 3.355826 1.049170e-03 4.355322e-03
## STRBP 3.168963e+00 8.940492e+00 3.483959 6.823333e-04 3.117285e-03
## NDRG2 -3.164556e+00 4.379704e+00 -4.645700 8.479678e-06 1.296414e-04
## KCTD11 -3.158299e+00 1.050792e+01 -4.170462 5.648133e-05 5.040395e-04
## DUSP23 -3.156520e+00 8.907170e+00 -2.483700 1.433043e-02 3.487051e-02
## CDYL2 3.154669e+00 9.220896e+00 3.869662 1.747407e-04 1.150708e-03
## PMPCA -3.154318e+00 1.365694e+01 -2.784553 6.196753e-03 1.772208e-02
## CHEK1 3.152437e+00 4.014832e+00 6.435893 2.394532e-09 4.238679e-07
## SLC46A2 -3.152186e+00 9.503168e+00 -2.464328 1.508964e-02 3.631556e-02
## NBDY -3.151038e+00 9.286331e+00 -3.139664 2.112190e-03 7.534007e-03
## CCDC134 3.148213e+00 8.867526e+00 5.043497 1.572803e-06 3.861996e-05
## ECI1 -3.148200e+00 4.541724e+00 -3.770467 2.504016e-04 1.490845e-03
## ERCC6 3.146431e+00 1.040618e+01 3.637168 4.019452e-04 2.098842e-03
## TMEM64 3.146108e+00 1.042728e+01 4.622423 9.333360e-06 1.385402e-04
## NUP107 3.145308e+00 1.780963e+01 3.265232 1.412391e-03 5.484923e-03
## TIMMDC1 -3.144778e+00 3.044333e+01 -2.921531 4.136399e-03 1.275551e-02
## KNL1 3.142014e+00 3.506061e+00 5.987436 2.115375e-08 1.872265e-06
## ATAD3B -3.140590e+00 5.989959e+00 -3.113668 2.292481e-03 8.034523e-03
## NAA16 3.138410e+00 1.149473e+01 3.992787 1.108212e-04 8.204367e-04
## MEN1 -3.138149e+00 1.135054e+01 -2.580365 1.102865e-02 2.828075e-02
## ZNF358 -3.133056e+00 2.678694e+00 -5.055654 1.491906e-06 3.701675e-05
## RPP21 -3.130072e+00 4.346456e+00 -3.692135 3.311586e-04 1.825914e-03
## CZIB -3.129535e+00 2.281314e+01 -2.493502 1.395939e-02 3.418509e-02
## VRK2 3.125169e+00 1.473284e+01 2.315909 2.219661e-02 4.945552e-02
## AMMECR1L 3.123428e+00 1.874704e+01 3.466733 7.234410e-04 3.250004e-03
## XYLT2 -3.119230e+00 8.142774e+00 -3.610661 4.409857e-04 2.253378e-03
## ZNF468 3.118177e+00 1.291771e+01 3.002315 3.238003e-03 1.049541e-02
## GPN2 -3.118016e+00 2.161797e+01 -2.614967 1.002441e-02 2.613530e-02
## DOP1A 3.117766e+00 9.170055e+00 3.063944 2.677666e-03 9.067122e-03
## SLC35A3 3.115444e+00 1.108306e+01 4.388866 2.402106e-05 2.702939e-04
## TOMM40 -3.114647e+00 1.089243e+01 -2.404840 1.764997e-02 4.123890e-02
## ABRAXAS2 3.114643e+00 1.367703e+01 3.723316 2.964305e-04 1.681332e-03
## PPAN -3.113136e+00 5.320803e+00 -4.121931 6.803073e-05 5.746755e-04
## RTN2 -3.111622e+00 7.924557e+00 -2.939213 3.922140e-03 1.223798e-02
## BUD13 -3.110268e+00 2.442742e+01 -3.136021 2.136638e-03 7.602918e-03
## NUDT2 -3.107263e+00 1.421060e+01 -2.464611 1.507830e-02 3.629565e-02
## EFEMP2 -3.102556e+00 6.392319e+00 -3.313296 1.207171e-03 4.863126e-03
## LCMT1 -3.098361e+00 1.328296e+01 -2.882882 4.642629e-03 1.397147e-02
## AASDHPPT 3.096443e+00 1.933586e+01 2.796996 5.976796e-03 1.718419e-02
## NDUFV3 -3.092626e+00 1.748673e+01 -3.258436 1.443904e-03 5.579896e-03
## CDR2 3.087348e+00 1.259112e+01 2.821026 5.572032e-03 1.622497e-02
## MRPL41 -3.084255e+00 3.160560e+00 -3.480909 6.894473e-04 3.140109e-03
## KANSL1L 3.076176e+00 9.319335e+00 3.079640 2.550049e-03 8.733347e-03
## TMEM102 -3.071876e+00 5.149900e+00 -4.602276 1.013880e-05 1.473271e-04
## DYM -3.070055e+00 3.008620e+01 -2.424726 1.675414e-02 3.955884e-02
## ZNF100 3.063363e+00 1.207066e+01 2.372666 1.918950e-02 4.403782e-02
## DOK4 -3.062270e+00 4.788552e+00 -5.452675 2.554660e-07 1.030553e-05
## PEPD -3.058768e+00 1.507985e+01 -2.400791 1.783745e-02 4.158682e-02
## MSMO1 3.057404e+00 1.239637e+01 2.639616 9.360112e-03 2.469654e-02
## RARS1 -3.055767e+00 2.727670e+01 -2.371907 1.922720e-02 4.409022e-02
## SIAE 3.054705e+00 1.134729e+01 2.649551 9.103808e-03 2.412763e-02
## POLR2I -3.053365e+00 5.214807e+00 -3.305844 1.237050e-03 4.949871e-03
## ZNF791 3.049531e+00 2.165035e+01 2.987780 3.385048e-03 1.085734e-02
## TMEM86B -3.042689e+00 4.339878e+00 -4.134152 6.492584e-05 5.559714e-04
## TMEM62 3.042569e+00 1.265611e+01 2.802806 5.876535e-03 1.693461e-02
## SLC9A6 3.041435e+00 1.768685e+01 2.664049 8.741118e-03 2.336481e-02
## DDX52 3.040593e+00 1.568359e+01 3.854204 1.848951e-04 1.203791e-03
## IGHMBP2 -3.040540e+00 1.056043e+01 -3.593616 4.679525e-04 2.363678e-03
## TTF2 3.035668e+00 8.141427e+00 4.032696 9.541568e-05 7.391443e-04
## RFC4 3.032604e+00 8.599739e+00 4.427017 2.062838e-05 2.427109e-04
## TMEM88 -3.032368e+00 4.722608e+00 -4.889464 3.050389e-06 6.131800e-05
## PWWP2B -3.030413e+00 4.062516e+00 -4.833627 3.866329e-06 7.255485e-05
## BUB1B 3.027118e+00 2.893909e+00 5.669196 9.457317e-08 5.241298e-06
## PVRIG -3.026248e+00 7.353762e+00 -2.444592 1.589977e-02 3.789298e-02
## GNE 3.023839e+00 1.085411e+01 3.998008 1.086785e-04 8.096279e-04
## LRRC37A3 3.021246e+00 6.371172e+00 4.886358 3.091010e-06 6.182020e-05
## NFRKB 3.020474e+00 2.628609e+01 2.504399 1.355703e-02 3.335125e-02
## VAV2 -3.018007e+00 8.208061e+00 -3.844370 1.916444e-04 1.237965e-03
## DIS3L 3.017108e+00 1.067322e+01 3.353767 1.056352e-03 4.375946e-03
## MAPK11 -3.016698e+00 3.276328e+00 -3.807523 2.190763e-04 1.361050e-03
## HMG20A 3.015270e+00 1.444773e+01 3.259260 1.440050e-03 5.566818e-03
## CSRNP2 3.012953e+00 1.500102e+01 2.916762 4.196000e-03 1.289906e-02
## CRTC1 -3.010819e+00 5.402910e+00 -5.311005 4.837530e-07 1.584892e-05
## PUS1 -3.010184e+00 5.357162e+00 -3.675661 3.510284e-04 1.901781e-03
## GGCX 3.007616e+00 1.796261e+01 3.756246 2.635162e-04 1.543968e-03
## TRMT61A -3.004255e+00 3.457566e+00 -4.037653 9.365155e-05 7.288106e-04
## FKBPL -3.002982e+00 8.103339e+00 -3.071228 2.617730e-03 8.911100e-03
## PAFAH1B3 -2.995974e+00 4.704533e+00 -3.062764 2.687500e-03 9.093795e-03
## NBPF1 2.995247e+00 8.137959e+00 3.118811 2.255721e-03 7.932823e-03
## NTMT1 -2.993925e+00 7.979702e+00 -3.196027 1.765571e-03 6.551839e-03
## KLC4 -2.993699e+00 1.591845e+01 -2.729469 7.261824e-03 2.014625e-02
## PLEKHB1 -2.993420e+00 6.360133e+00 -2.597386 1.052387e-02 2.717464e-02
## MAP1A 2.993414e+00 7.732170e+00 2.454986 1.546841e-02 3.706919e-02
## NETO2 2.990336e+00 9.078100e+00 3.432837 8.112165e-04 3.567542e-03
## LANCL1 2.985533e+00 1.324769e+01 2.342670 2.073060e-02 4.688499e-02
## ZNF513 -2.984364e+00 9.470021e+00 -5.255661 6.191832e-07 1.937602e-05
## NRG1 -2.983786e+00 6.878998e+00 -2.388400 1.842234e-02 4.265754e-02
## ASTN2 2.980752e+00 6.078699e+00 3.629693 4.126113e-04 2.142544e-03
## NOB1 -2.980190e+00 1.124976e+01 -2.868622 4.843314e-03 1.445438e-02
## SRD5A3 -2.979382e+00 5.860785e+00 -4.890383 3.038472e-06 6.128618e-05
## UBFD1 2.978643e+00 1.061324e+01 3.390798 9.339839e-04 3.978825e-03
## PKD2 2.975938e+00 6.841540e+00 5.040713 1.591917e-06 3.884802e-05
## LAPTM4B 2.975278e+00 6.250814e+00 3.166947 1.937199e-03 7.023899e-03
## CPEB3 2.972573e+00 8.221757e+00 2.935350 3.968059e-03 1.234554e-02
## ZNF408 -2.970931e+00 7.434030e+00 -3.548967 5.461647e-04 2.641011e-03
## KIF13B 2.968887e+00 1.598210e+01 2.738147 7.083697e-03 1.971202e-02
## TIMM9 -2.968681e+00 8.627813e+00 -3.340881 1.102344e-03 4.523807e-03
## SLC52A2 -2.968550e+00 6.032908e+00 -3.344616 1.088823e-03 4.482029e-03
## RP9 -2.968526e+00 7.968395e+00 -3.074934 2.587713e-03 8.831733e-03
## SMN1 2.966636e+00 1.036015e+01 3.405870 8.880912e-04 3.823144e-03
## MMP14 -2.965386e+00 3.941682e+00 -4.988617 1.994282e-06 4.539766e-05
## NUP85 -2.963255e+00 2.246862e+01 -2.946027 3.842338e-03 1.204603e-02
## ITGAV 2.959286e+00 9.370621e+00 3.542510 5.584464e-04 2.684708e-03
## GPR137B -2.956626e+00 8.107503e+00 -2.923166 4.116147e-03 1.270627e-02
## VEZT 2.954366e+00 1.268307e+01 2.816969 5.638570e-03 1.638653e-02
## CLSPN 2.952676e+00 4.133007e+00 7.437656 1.448122e-11 2.146841e-08
## ZNF507 2.947320e+00 1.056775e+01 3.680578 3.449827e-04 1.882013e-03
## TLNRD1 -2.945743e+00 1.627159e+01 -3.301809 1.253513e-03 5.007297e-03
## ACBD4 -2.943827e+00 6.645627e+00 -3.928075 1.409592e-04 9.816653e-04
## ELOA 2.943666e+00 2.736178e+01 2.663863 8.745700e-03 2.337179e-02
## CYB5D1 2.942419e+00 8.488635e+00 2.348055 2.044614e-02 4.639203e-02
## ZNF226 -2.940887e+00 1.282068e+01 -3.954110 1.279974e-04 9.128375e-04
## POLH 2.939445e+00 1.322299e+01 4.555902 1.225613e-05 1.664515e-04
## ERC1 2.936559e+00 9.859469e+00 4.174702 5.556690e-05 4.985049e-04
## COG6 2.936132e+00 1.039650e+01 3.968678 1.212494e-04 8.773751e-04
## TPRN -2.935978e+00 2.888773e+00 -4.038506 9.335132e-05 7.276802e-04
## CMC2 2.932365e+00 1.266003e+01 3.041416 2.871182e-03 9.549135e-03
## DCLRE1A 2.931159e+00 7.064350e+00 4.291228 3.532854e-05 3.553830e-04
## EOLA1 -2.926932e+00 1.819797e+01 -3.912550 1.492737e-04 1.023344e-03
## ICMT 2.925407e+00 1.931146e+01 2.509404 1.337575e-02 3.301485e-02
## MFSD6 2.924379e+00 1.397862e+01 3.000232 3.258707e-03 1.053948e-02
## ASCC1 2.921720e+00 1.512868e+01 2.488803 1.413618e-02 3.452535e-02
## SMG6 -2.920577e+00 1.636467e+01 -3.413134 8.667360e-04 3.761248e-03
## MSH2 2.916098e+00 9.829185e+00 3.489454 6.696898e-04 3.072542e-03
## PPP1R8 2.915307e+00 3.369086e+01 2.899469 4.418788e-03 1.345835e-02
## FNIP2 2.914204e+00 9.233160e+00 2.810800 5.741114e-03 1.661938e-02
## NCKAP1 2.910344e+00 6.203910e+00 3.643248 3.934634e-04 2.071396e-03
## PDRG1 -2.910316e+00 1.468776e+01 -2.374393 1.910390e-02 4.387533e-02
## KATNA1 -2.908824e+00 1.846442e+01 -2.792623 6.053273e-03 1.739143e-02
## CCDC14 2.907883e+00 1.230481e+01 2.418662 1.702292e-02 4.005790e-02
## NPDC1 -2.899985e+00 2.348900e+00 -4.205220 4.939110e-05 4.553342e-04
## MRPL55 -2.898102e+00 3.920676e+00 -3.125516 2.208609e-03 7.800508e-03
## BCL2L2 2.897481e+00 1.026324e+01 4.237145 4.363754e-05 4.194013e-04
## IL18BP -2.896984e+00 6.305278e+00 -4.569582 1.159071e-05 1.600715e-04
## ILKAP -2.895475e+00 1.502851e+01 -2.388361 1.842424e-02 4.265754e-02
## ZKSCAN7 2.887575e+00 5.455537e+00 3.405397 8.894994e-04 3.826428e-03
## SMARCA4 -2.887305e+00 1.715594e+01 -2.313519 2.233189e-02 4.969160e-02
## TMEM150A -2.880671e+00 4.694545e+00 -4.708216 6.544111e-06 1.074974e-04
## WDR76 2.875126e+00 5.510450e+00 6.184808 8.185252e-09 9.601628e-07
## MLH1 2.873876e+00 1.870455e+01 3.149982 2.044355e-03 7.338393e-03
## PLEKHA3 2.873693e+00 1.959763e+01 2.382609 1.870147e-02 4.315164e-02
## CEP152 2.873498e+00 5.899880e+00 5.146820 1.001686e-06 2.739009e-05
## SLC37A1 2.871392e+00 1.032149e+01 4.105228 7.250503e-05 6.021776e-04
## ITPRIPL2 2.870848e+00 1.257233e+01 2.937939 3.937227e-03 1.226905e-02
## PRMT7 -2.870117e+00 8.293110e+00 -2.808255 5.783920e-03 1.671067e-02
## UBE2C 2.865827e+00 4.610626e+00 4.612464 9.723448e-06 1.426713e-04
## ZNF446 -2.864160e+00 5.543368e+00 -3.742260 2.770479e-04 1.597369e-03
## MTMR9 2.863840e+00 1.339593e+01 3.187521 1.814248e-03 6.680217e-03
## STK39 2.862079e+00 1.322061e+01 2.629980 9.614933e-03 2.526210e-02
## SMYD5 -2.861707e+00 9.047072e+00 -2.363349 1.965693e-02 4.490200e-02
## KIF20B 2.861484e+00 5.553991e+00 5.013828 1.788551e-06 4.174712e-05
## GPR35 -2.861118e+00 2.643002e+00 -5.898829 3.223415e-08 2.587763e-06
## GCLC 2.860327e+00 1.331350e+01 2.814037 5.687089e-03 1.651135e-02
## PTDSS2 -2.859937e+00 5.440338e+00 -3.788948 2.342816e-04 1.426272e-03
## PGM3 2.859595e+00 9.785178e+00 4.333381 2.992943e-05 3.163664e-04
## WDR7 2.858741e+00 1.093938e+01 3.733515 2.858411e-04 1.634957e-03
## CTSF -2.858385e+00 4.320339e+00 -3.693488 3.295745e-04 1.820836e-03
## INTS7 2.855443e+00 8.363574e+00 5.312026 4.815492e-07 1.582931e-05
## CDC23 2.855430e+00 1.199490e+01 3.253381 1.467773e-03 5.640889e-03
## PUSL1 -2.851430e+00 3.141627e+00 -4.508577 1.485465e-05 1.914959e-04
## CACNA1I -2.850021e+00 5.741571e+00 -2.572731 1.126203e-02 2.876135e-02
## ACVR1 2.849991e+00 1.197090e+01 3.289486 1.305076e-03 5.155964e-03
## C12orf4 2.848213e+00 1.173463e+01 2.947069 3.830258e-03 1.201451e-02
## SLC22A1 2.847686e+00 7.523701e+00 2.316670 2.215369e-02 4.939703e-02
## CCDC6 2.846594e+00 1.785300e+01 2.372184 1.921340e-02 4.406897e-02
## ZNF385D -2.844912e+00 5.222245e+00 -4.609331 9.849382e-06 1.440366e-04
## PDE6D -2.843148e+00 2.145613e+01 -2.468533 1.492185e-02 3.600674e-02
## TTC7B 2.840051e+00 8.643513e+00 3.120094 2.246634e-03 7.911245e-03
## JOSD2 -2.839348e+00 2.372521e+00 -4.683236 7.259856e-06 1.158841e-04
## SEMA6B -2.833499e+00 1.846020e+00 -3.448942 7.683336e-04 3.406518e-03
## DDHD2 2.831407e+00 1.173952e+01 2.369337 1.935538e-02 4.431559e-02
## CDCA8 2.830496e+00 4.144365e+00 4.789607 4.655273e-06 8.252847e-05
## SMAP1 -2.829481e+00 2.645970e+01 -3.033165 2.945232e-03 9.751660e-03
## MYO1D 2.825059e+00 3.711571e+00 3.775040 2.463177e-04 1.474673e-03
## CDC45 2.822410e+00 3.003641e+00 5.577668 1.443175e-07 6.819144e-06
## TBCEL 2.822123e+00 7.423975e+00 3.008332 3.178875e-03 1.034333e-02
## HMGB3 2.817499e+00 6.394433e+00 2.475175 1.466021e-02 3.549818e-02
## SLC9A3 -2.817419e+00 7.545866e+00 -3.988577 1.125783e-04 8.308517e-04
## GATA2 -2.817121e+00 4.237327e+00 -3.553203 5.382454e-04 2.612833e-03
## BLOC1S4 -2.817082e+00 8.199685e+00 -3.677550 3.486941e-04 1.894417e-03
## WEE1 2.815491e+00 4.494965e+00 6.523251 1.553094e-09 3.069950e-07
## MRGBP -2.815299e+00 1.621016e+01 -2.517607 1.308326e-02 3.243468e-02
## ABHD17B 2.814935e+00 1.388921e+01 3.286541 1.317685e-03 5.191941e-03
## AURKA 2.812899e+00 4.470423e+00 4.662402 7.914234e-06 1.239932e-04
## KRIT1 2.812740e+00 1.518428e+01 2.618365 9.930386e-03 2.592436e-02
## NDC1 2.811961e+00 8.953929e+00 4.215392 4.748326e-05 4.434263e-04
## THEM6 -2.811470e+00 3.528391e+00 -4.329405 3.040272e-05 3.196244e-04
## FASTKD1 2.811102e+00 1.053862e+01 4.006901 1.051195e-04 7.905628e-04
## RRP8 -2.807292e+00 1.294658e+01 -3.931838 1.390112e-04 9.716912e-04
## TLCD4 2.803722e+00 3.671654e+00 2.327458 2.155308e-02 4.841316e-02
## ABCC2 2.798295e+00 7.386530e+00 2.700314 7.890489e-03 2.151292e-02
## FAM136A 2.794007e+00 1.833310e+01 2.476255 1.461808e-02 3.542509e-02
## RNF144A 2.792790e+00 1.045950e+01 3.030922 2.965667e-03 9.802903e-03
## VGLL4 2.792294e+00 8.831687e+00 3.915004 1.479291e-04 1.016477e-03
## CHERP -2.791133e+00 1.143976e+01 -3.485934 6.777645e-04 3.101191e-03
## ZNF518B 2.788994e+00 1.440457e+01 2.347897 2.045442e-02 4.640196e-02
## OAF -2.786795e+00 1.065974e+01 -2.383836 1.864205e-02 4.307319e-02
## CACFD1 -2.782354e+00 3.413359e+00 -5.329475 4.453558e-07 1.509120e-05
## ABHD12 -2.781561e+00 1.046983e+01 -2.325202 2.167751e-02 4.861863e-02
## RFC5 2.779520e+00 6.068064e+00 6.763647 4.656111e-10 1.463858e-07
## TRIM65 -2.778577e+00 1.137430e+01 -2.858753 4.986822e-03 1.483209e-02
## MRPS12 -2.778211e+00 5.952540e+00 -2.493913 1.394405e-02 3.416869e-02
## PRKAB2 2.776522e+00 1.409569e+01 2.774458 6.380597e-03 1.816406e-02
## NUTM2D -2.775093e+00 5.869624e+00 -4.052515 8.854771e-05 7.001172e-04
## BFAR 2.771564e+00 2.622119e+01 3.059720 2.713012e-03 9.146197e-03
## SPSB2 -2.769233e+00 5.437133e+00 -2.788554 6.125230e-03 1.755564e-02
## VPS33A 2.768906e+00 2.945702e+01 3.045967 2.831077e-03 9.442230e-03
## SHLD2 2.763512e+00 2.035907e+01 2.319021 2.202154e-02 4.920412e-02
## MIB2 -2.762684e+00 3.460727e+00 -4.747158 5.562635e-06 9.478858e-05
## FLYWCH1 -2.760542e+00 6.890713e+00 -2.742474 6.996369e-03 1.953318e-02
## IFT80 2.759166e+00 8.677430e+00 3.583621 4.844837e-04 2.423440e-03
## HDAC9 2.758533e+00 9.619631e+00 2.583227 1.094229e-02 2.809603e-02
## BCAS4 -2.756023e+00 3.058864e+00 -3.118756 2.256106e-03 7.932823e-03
## QTRT1 -2.749523e+00 3.254806e+00 -3.802604 2.230093e-04 1.377547e-03
## UBE2T 2.747356e+00 3.633067e+00 3.087868 2.485424e-03 8.558982e-03
## NAA80 -2.745463e+00 4.282632e+00 -3.158749 1.988306e-03 7.169751e-03
## LEPR 2.743923e+00 7.060569e+00 3.921816 1.442564e-04 9.964361e-04
## CENPK 2.737779e+00 3.789117e+00 4.799694 4.461756e-06 7.993418e-05
## ZNF441 2.737593e+00 8.332394e+00 2.383497 1.865842e-02 4.308878e-02
## D2HGDH -2.735631e+00 2.923586e+00 -4.530944 1.356633e-05 1.791722e-04
## C5orf22 2.732547e+00 1.313112e+01 3.457582 7.462150e-04 3.330254e-03
## TXLNG 2.728394e+00 9.740697e+00 3.097536 2.411429e-03 8.369781e-03
## ZWILCH 2.725492e+00 4.909032e+00 6.385719 3.066796e-09 4.865877e-07
## NUF2 2.724779e+00 3.343925e+00 3.659141 3.720842e-04 1.985119e-03
## TMEM204 -2.723490e+00 4.402109e+00 -2.862193 4.936364e-03 1.470617e-02
## PIGF 2.722619e+00 1.674583e+01 2.945215 3.851763e-03 1.206920e-02
## PAQR7 -2.718418e+00 6.692685e+00 -3.278994 1.350527e-03 5.300214e-03
## PRPSAP1 2.717910e+00 1.801430e+01 2.758577 6.679901e-03 1.883138e-02
## RALGAPA1 2.716182e+00 9.593842e+00 2.649288 9.110491e-03 2.413995e-02
## FOLR2 -2.707012e+00 2.761971e+00 -5.326212 4.519157e-07 1.526986e-05
## JAG1 2.706913e+00 7.101478e+00 3.605562 4.488951e-04 2.285915e-03
## CMC1 -2.705885e+00 1.313216e+01 -2.520805 1.297081e-02 3.221650e-02
## HCFC2 2.700624e+00 8.464388e+00 4.318408 3.174950e-05 3.291513e-04
## TARBP2 -2.697216e+00 6.617235e+00 -2.884874 4.615201e-03 1.391403e-02
## DOT1L -2.696227e+00 8.184520e+00 -3.351849 1.063081e-03 4.399210e-03
## SLC25A30 2.694606e+00 8.382502e+00 3.718549 3.015060e-04 1.701171e-03
## GNGT2 -2.694111e+00 6.307515e+00 -2.893195 4.502265e-03 1.365649e-02
## TSPAN4 -2.692855e+00 2.597940e+00 -5.250131 6.345915e-07 1.975395e-05
## PLK4 2.686394e+00 3.109371e+00 5.899384 3.214957e-08 2.587763e-06
## LTBP4 -2.683837e+00 3.915807e+00 -4.142905 6.278590e-05 5.419511e-04
## DIMT1 2.679773e+00 8.100835e+00 3.549639 5.449004e-04 2.638046e-03
## VAC14 -2.678695e+00 9.370250e+00 -3.084436 2.512194e-03 8.636121e-03
## CEP104 2.678182e+00 1.183220e+01 3.894539 1.595056e-04 1.078527e-03
## HSD3B7 -2.677699e+00 5.049075e+00 -3.008103 3.181108e-03 1.034603e-02
## ZNF282 -2.676058e+00 1.095556e+01 -2.478358 1.453628e-02 3.526288e-02
## CEP55 2.675836e+00 2.924191e+00 5.777817 5.699931e-08 3.885125e-06
## TRNT1 2.675833e+00 1.629360e+01 3.067391 2.649144e-03 8.988839e-03
## ABI2 2.675631e+00 7.786202e+00 3.368870 1.004735e-03 4.210656e-03
## EMC6 -2.674559e+00 8.438409e+00 -3.139338 2.114370e-03 7.539516e-03
## SLC7A1 2.674351e+00 7.062949e+00 3.885117 1.651205e-04 1.107652e-03
## SLC49A3 -2.674109e+00 4.653460e+00 -4.231996 4.451977e-05 4.258101e-04
## LENG9 -2.673780e+00 2.339504e+00 -3.807982 2.187126e-04 1.359503e-03
## ZNF768 -2.669613e+00 9.028955e+00 -3.609355 4.429991e-04 2.260744e-03
## HAUS6 2.668468e+00 1.388787e+01 3.171666 1.908330e-03 6.940446e-03
## HS6ST1 -2.660941e+00 1.059926e+01 -3.245479 1.505813e-03 5.751674e-03
## RREB1 2.660649e+00 1.595914e+01 2.881755 4.658211e-03 1.400060e-02
## FLYWCH2 -2.657069e+00 2.980148e+00 -4.649704 8.340682e-06 1.281414e-04
## MRPL17 -2.656420e+00 1.030868e+01 -2.479076 1.450846e-02 3.521701e-02
## LONRF3 2.655041e+00 4.007938e+00 3.472566 7.092682e-04 3.205644e-03
## HACD3 2.654155e+00 1.073915e+01 3.397413 9.135732e-04 3.907313e-03
## MINDY3 2.653824e+00 1.187627e+01 3.279501 1.348299e-03 5.293221e-03
## EXT2 2.653164e+00 2.043653e+01 2.326825 2.158792e-02 4.846351e-02
## C15orf40 -2.647226e+00 2.747028e+01 -2.349888 2.035012e-02 4.621838e-02
## NEMP1 2.642654e+00 7.893184e+00 3.684390 3.403631e-04 1.861950e-03
## ZMYND15 -2.637870e+00 3.878085e+00 -4.400051 2.297441e-05 2.617450e-04
## ANGEL2 2.634216e+00 1.761940e+01 3.029873 2.975271e-03 9.824929e-03
## ATG16L1 2.633414e+00 2.406044e+01 2.622179 9.825784e-03 2.570788e-02
## ACACA 2.630519e+00 7.632913e+00 4.256082 4.053473e-05 3.950221e-04
## HPF1 -2.629546e+00 1.099528e+01 -3.263672 1.419565e-03 5.503772e-03
## YRDC 2.625340e+00 9.707811e+00 4.003523 1.064582e-04 7.969243e-04
## USP49 2.622084e+00 8.151365e+00 3.708141 3.128764e-04 1.756135e-03
## NDUFAF8 -2.620533e+00 5.177936e+00 -3.091220 2.459531e-03 8.499427e-03
## DBT 2.620298e+00 8.330932e+00 4.486078 1.626927e-05 2.037863e-04
## TRIO 2.615531e+00 9.871065e+00 2.360230 1.981567e-02 4.518628e-02
## SIDT1 2.614732e+00 8.330734e+00 2.562093 1.159468e-02 2.945378e-02
## PPARD -2.614142e+00 1.077193e+01 -3.610945 4.405487e-04 2.252115e-03
## GATAD1 2.612307e+00 1.537554e+01 3.629329 4.131361e-04 2.144330e-03
## STX18 -2.608384e+00 1.523342e+01 -3.175152 1.887265e-03 6.889184e-03
## PRKCI 2.606027e+00 1.052824e+01 3.788608 2.345695e-04 1.426272e-03
## DEXI -2.599466e+00 5.925844e+00 -2.590111 1.073702e-02 2.766101e-02
## G2E3 2.599280e+00 1.160361e+01 3.176253 1.880654e-03 6.874462e-03
## PSAT1 2.597894e+00 4.080667e+00 5.677180 9.113415e-08 5.098354e-06
## TGS1 2.597380e+00 1.334297e+01 3.119468 2.251059e-03 7.922126e-03
## GTF2E1 2.594994e+00 1.610145e+01 2.758977 6.672203e-03 1.881415e-02
## ENKD1 -2.589817e+00 3.950843e+00 -3.813281 2.145563e-04 1.341184e-03
## EBPL -2.589807e+00 1.060662e+01 -2.767356 6.512910e-03 1.844832e-02
## CCNYL1 2.588124e+00 1.112069e+01 3.345490 1.085683e-03 4.474009e-03
## AKT3 2.587020e+00 9.796585e+00 2.506098 1.349525e-02 3.322684e-02
## COBLL1 2.586859e+00 3.479418e+00 4.388315 2.407379e-05 2.704210e-04
## YIPF2 -2.584059e+00 5.261648e+00 -3.314235 1.203455e-03 4.853105e-03
## DPM3 -2.582944e+00 3.044090e+00 -3.337581 1.114420e-03 4.560738e-03
## LYPLAL1 -2.580232e+00 1.627181e+01 -2.624043 9.775014e-03 2.560328e-02
## FBXL19 -2.578360e+00 9.718664e+00 -3.014427 3.120004e-03 1.019935e-02
## BRCA2 2.576919e+00 3.651334e+00 5.866319 3.759095e-08 2.933083e-06
## TAF1D 2.573629e+00 1.788070e+01 2.517331 1.309302e-02 3.244529e-02
## RRP1 -2.572387e+00 6.928780e+00 -2.600527 1.043302e-02 2.698704e-02
## TMEM104 -2.571866e+00 1.124395e+01 -3.027463 2.997431e-03 9.883104e-03
## DBF4 2.568637e+00 6.344090e+00 3.549608 5.449589e-04 2.638046e-03
## YDJC -2.567128e+00 4.389892e+00 -4.049366 8.960616e-05 7.056754e-04
## TNFSF4 2.563492e+00 7.992977e+00 2.878282 4.706517e-03 1.412074e-02
## PM20D2 2.562022e+00 1.020218e+01 2.844380 5.202806e-03 1.536104e-02
## HIBCH 2.558266e+00 7.869389e+00 3.072325 2.608813e-03 8.889219e-03
## CPSF3 -2.554146e+00 2.198405e+01 -2.507480 1.344519e-02 3.315865e-02
## ATPAF2 -2.552582e+00 6.526448e+00 -4.654563 8.174929e-06 1.265727e-04
## MED29 -2.551403e+00 3.489606e+01 -2.407512 1.752716e-02 4.102469e-02
## FUBP3 2.550897e+00 1.415145e+01 2.490920 1.405630e-02 3.436261e-02
## SLC26A2 2.546764e+00 9.960958e+00 3.259861 1.437243e-03 5.557776e-03
## CEP85 2.540974e+00 1.216090e+01 2.868474 4.845443e-03 1.445710e-02
## PPM1L 2.539965e+00 9.154108e+00 3.669989 3.581268e-04 1.924902e-03
## ZNF639 2.536883e+00 1.376298e+01 2.942396 3.884678e-03 1.214026e-02
## CMAS 2.536708e+00 1.506844e+01 2.808071 5.787023e-03 1.671556e-02
## LIN7C 2.536695e+00 1.433878e+01 3.479179 6.935151e-04 3.152583e-03
## NCAPH 2.535512e+00 2.934950e+00 6.182990 8.257724e-09 9.601628e-07
## TMEM263 2.534449e+00 9.363230e+00 2.506521 1.347991e-02 3.319596e-02
## NPRL3 -2.534066e+00 8.948226e+00 -2.436860 1.622758e-02 3.854152e-02
## CFAP36 -2.532072e+00 8.554080e+00 -3.478372 6.954202e-04 3.157713e-03
## IGFBP2 -2.531575e+00 3.117651e+00 -2.362012 1.972486e-02 4.501418e-02
## C1orf35 -2.527267e+00 4.197782e+00 -4.701917 6.717876e-06 1.097438e-04
## GANC 2.525708e+00 1.304719e+01 3.169235 1.923153e-03 6.981509e-03
## WDR25 -2.525141e+00 4.539490e+00 -5.551471 1.627628e-07 7.424486e-06
## LILRB5 -2.518284e+00 5.902708e+00 -2.713881 7.592047e-03 2.085962e-02
## GEN1 2.517165e+00 5.313267e+00 6.225380 6.721395e-09 8.532384e-07
## RBAK 2.513824e+00 1.133658e+01 2.559027 1.169217e-02 2.964283e-02
## SMUG1 -2.513293e+00 1.639757e+01 -2.526225 1.278221e-02 3.184142e-02
## TMEM80 -2.512524e+00 1.341032e+01 -2.927685 4.060645e-03 1.257093e-02
## LUZP1 2.511970e+00 9.065831e+00 2.906096 4.332155e-03 1.323528e-02
## RAD9A -2.511125e+00 1.299548e+01 -2.331641 2.132411e-02 4.799847e-02
## ANKMY1 -2.510878e+00 9.051543e+00 -3.319136 1.184229e-03 4.791863e-03
## PIN4 -2.508325e+00 1.310390e+01 -2.749918 6.848417e-03 1.919693e-02
## GFM1 2.506885e+00 1.494705e+01 2.496812 1.383606e-02 3.394878e-02
## ZZZ3 2.506402e+00 1.250822e+01 2.400121 1.786867e-02 4.165107e-02
## C17orf80 2.499731e+00 1.375346e+01 3.598982 4.592998e-04 2.329895e-03
## GPATCH11 2.493981e+00 9.434440e+00 2.868868 4.839781e-03 1.444747e-02
## CDPF1 -2.493231e+00 4.154368e+00 -3.917470 1.465892e-04 1.008439e-03
## KIAA1614 2.491452e+00 4.105178e+00 4.737968 5.780535e-06 9.742725e-05
## CDCA7 2.491215e+00 3.371571e+00 5.413176 3.055319e-07 1.153285e-05
## NIPA1 2.489180e+00 5.963572e+00 4.424305 2.085343e-05 2.443890e-04
## GTF3C4 2.488106e+00 8.958395e+00 4.026795 9.755687e-05 7.508270e-04
## SCOC 2.487527e+00 1.593377e+01 3.301287 1.255660e-03 5.014186e-03
## DDX19B -2.487459e+00 1.611731e+01 -2.712540 7.621090e-03 2.091303e-02
## POLR1E -2.483250e+00 7.351630e+00 -3.118960 2.254665e-03 7.932460e-03
## CBFA2T2 2.474023e+00 1.133471e+01 3.463055 7.325156e-04 3.283309e-03
## CEP44 2.473499e+00 9.416458e+00 4.243743 4.253146e-05 4.124473e-04
## MTG2 -2.471731e+00 1.532331e+01 -2.313215 2.234911e-02 4.972058e-02
## MYO9A 2.470908e+00 8.313552e+00 2.909262 4.291319e-03 1.314778e-02
## CRY1 2.468973e+00 7.842803e+00 2.338805 2.093689e-02 4.726001e-02
## ERCC2 -2.465377e+00 5.580682e+00 -3.009162 3.170800e-03 1.032556e-02
## NT5C3B -2.464256e+00 5.489423e+00 -2.717399 7.516353e-03 2.072151e-02
## ATF5 -2.463936e+00 7.087778e+00 -2.751910 6.809307e-03 1.910562e-02
## POGLUT3 2.462503e+00 5.595443e+00 5.026799 1.690902e-06 4.026928e-05
## TUT1 -2.461932e+00 6.978918e+00 -3.848756 1.886056e-04 1.222329e-03
## MCM8 2.461352e+00 4.723672e+00 5.472391 2.335702e-07 9.585269e-06
## LRRC14 -2.460289e+00 8.942702e+00 -2.526746 1.276419e-02 3.182327e-02
## SYN2 -2.455863e+00 3.475432e+00 -3.406218 8.870560e-04 3.820074e-03
## C12orf45 2.455860e+00 1.306772e+01 2.625684 9.730533e-03 2.550931e-02
## DONSON 2.452144e+00 6.118128e+00 6.147679 9.797251e-09 1.075883e-06
## ATG4A 2.449223e+00 1.336205e+01 3.338966 1.109336e-03 4.543067e-03
## KIF15 2.445759e+00 2.471721e+00 5.408182 3.125080e-07 1.162492e-05
## ZC3H10 -2.445745e+00 1.320082e+01 -3.206805 1.705635e-03 6.381335e-03
## PEX1 2.438882e+00 1.211659e+01 2.739284 7.060659e-03 1.967562e-02
## SUCLA2 2.436987e+00 1.166638e+01 2.958667 3.698232e-03 1.170564e-02
## CLUH -2.434561e+00 5.924444e+00 -2.928846 4.046496e-03 1.253111e-02
## STX2 2.434428e+00 1.068066e+01 3.054264 2.759295e-03 9.270607e-03
## BBS5 -2.432960e+00 6.521254e+00 -4.556892 1.220678e-05 1.662140e-04
## BATF3 -2.428046e+00 2.223752e+00 -5.168735 9.096472e-07 2.538451e-05
## RAD51 2.426656e+00 2.763694e+00 5.235732 6.764877e-07 2.068516e-05
## PEX11B -2.424019e+00 2.087471e+01 -2.316443 2.216650e-02 4.941631e-02
## NCBP2AS2 -2.422101e+00 9.126740e+00 -2.832937 5.380835e-03 1.577279e-02
## UBXN2A 2.419941e+00 8.049690e+00 4.608797 9.871020e-06 1.441752e-04
## JMJD7 -2.412283e+00 5.397760e+00 -4.595046 1.044389e-05 1.507661e-04
## RAB2B 2.411137e+00 1.148864e+01 3.727882 2.916443e-04 1.661336e-03
## FAM228B -2.410119e+00 7.620070e+00 -2.536052 1.244647e-02 3.122808e-02
## ORC3 2.409934e+00 1.192844e+01 3.272831 1.377914e-03 5.380986e-03
## HELB 2.405131e+00 3.936331e+00 4.032320 9.555051e-05 7.397056e-04
## KCTD10 2.402634e+00 2.765802e+01 2.453763 1.551864e-02 3.717451e-02
## DDX51 -2.400429e+00 9.271125e+00 -2.423433 1.681113e-02 3.966182e-02
## BRD1 -2.397757e+00 1.482579e+01 -3.311050 1.216104e-03 4.892468e-03
## ARMC5 -2.394003e+00 4.093646e+00 -3.596279 4.636391e-04 2.345887e-03
## RABL3 2.389588e+00 1.204163e+01 3.784746 2.378579e-04 1.437816e-03
## SLC25A32 2.389577e+00 1.008751e+01 3.680170 3.454802e-04 1.882129e-03
## RBSN 2.388601e+00 1.969911e+01 2.341570 2.078913e-02 4.697258e-02
## ZNF506 2.388109e+00 1.059132e+01 2.563599 1.154706e-02 2.938802e-02
## SCAPER 2.387169e+00 8.222480e+00 3.457081 7.474819e-04 3.330254e-03
## TTC21B 2.387106e+00 7.534113e+00 3.837027 1.968363e-04 1.261198e-03
## ENOPH1 2.384804e+00 1.221730e+01 2.843618 5.214485e-03 1.538392e-02
## C9orf40 2.384336e+00 6.742911e+00 2.484779 1.428913e-02 3.481288e-02
## ZBTB21 2.382542e+00 8.360560e+00 3.478003 6.962915e-04 3.160359e-03
## GPER1 -2.382425e+00 2.359528e+00 -3.737322 2.819808e-04 1.619949e-03
## EVI5L -2.380261e+00 4.592831e+00 -4.404788 2.254448e-05 2.575024e-04
## AGPAT5 2.379396e+00 9.237360e+00 3.122983 2.226298e-03 7.851292e-03
## SH3TC2 2.375039e+00 3.758019e+00 4.563224 1.189552e-05 1.629109e-04
## EXOSC7 -2.373720e+00 1.010529e+01 -2.484517 1.429916e-02 3.482104e-02
## SEMA4C -2.373107e+00 4.868428e+00 -3.723100 2.966587e-04 1.681822e-03
## COX19 -2.372896e+00 1.716230e+01 -2.835563 5.339493e-03 1.567873e-02
## RCE1 -2.371085e+00 7.901381e+00 -3.092959 2.446198e-03 8.463218e-03
## FUZ -2.369641e+00 6.359326e+00 -3.274787 1.369165e-03 5.357405e-03
## KIZ 2.368759e+00 1.313133e+01 3.399040 9.086198e-04 3.887529e-03
## TIMM44 -2.366196e+00 7.465000e+00 -2.934228 3.981491e-03 1.237758e-02
## ZNF197 2.365334e+00 9.191447e+00 3.102290 2.375794e-03 8.272729e-03
## SLC11A2 2.363063e+00 1.377493e+01 2.556444 1.177487e-02 2.980789e-02
## KCTD15 -2.362359e+00 5.033526e+00 -4.019397 1.003063e-04 7.655296e-04
## ARL1 2.362210e+00 1.658319e+01 2.562849 1.157076e-02 2.943569e-02
## MEIS1 2.359326e+00 5.378549e+00 3.509036 6.264013e-04 2.924850e-03
## TBCK 2.358863e+00 8.811330e+00 3.072476 2.607581e-03 8.889219e-03
## TWSG1 2.356760e+00 6.287963e+00 4.039227 9.309788e-05 7.264084e-04
## WDR54 -2.354738e+00 4.946373e+00 -2.538544 1.236258e-02 3.105043e-02
## TSPYL4 2.353805e+00 1.031825e+01 2.886861 4.587999e-03 1.385284e-02
## FBXL15 -2.349245e+00 2.371857e+00 -4.238617 4.338839e-05 4.180230e-04
## PDIA5 2.347848e+00 5.246741e+00 3.376604 9.792260e-04 4.127086e-03
## CEMP1 -2.347214e+00 5.007336e+00 -2.884677 4.617909e-03 1.391827e-02
## SAV1 2.343020e+00 6.493361e+00 4.080801 7.955891e-05 6.476106e-04
## CNPY4 -2.335653e+00 1.075072e+01 -3.067690 2.646684e-03 8.985891e-03
## ZCWPW1 -2.334547e+00 6.955573e+00 -3.503130 6.391728e-04 2.969287e-03
## MED27 -2.328863e+00 9.809472e+00 -2.700883 7.877753e-03 2.148313e-02
## MRPL19 2.328715e+00 1.176687e+01 3.297400 1.271740e-03 5.052804e-03
## WIZ -2.327922e+00 6.936220e+00 -4.329725 3.036434e-05 3.195395e-04
## AURKB 2.323746e+00 3.815974e+00 3.327590 1.151741e-03 4.687593e-03
## TICAM1 -2.323063e+00 6.145860e+00 -3.532652 5.777008e-04 2.754938e-03
## ITGA9 2.320970e+00 3.148738e+00 2.643586 9.256931e-03 2.447330e-02
## DUS3L -2.320604e+00 3.230816e+00 -4.359289 2.701485e-05 2.941484e-04
## CARNMT1 2.317168e+00 6.683046e+00 3.946369 1.317274e-04 9.343821e-04
## ASB1 -2.316053e+00 2.034317e+01 -2.408772 1.746952e-02 4.092207e-02
## DSN1 2.314628e+00 1.080937e+01 3.638941 3.994543e-04 2.089964e-03
## ENTR1 -2.310286e+00 1.042726e+01 -2.713567 7.598842e-03 2.086164e-02
## FIZ1 -2.306413e+00 5.056317e+00 -3.890599 1.618309e-04 1.091140e-03
## FRK 2.304478e+00 5.208222e+00 3.454200 7.548011e-04 3.357817e-03
## PIK3R2 -2.301324e+00 7.528999e+00 -3.363682 1.022193e-03 4.270238e-03
## PDHX 2.299053e+00 7.971595e+00 4.264280 3.925816e-05 3.863915e-04
## MTRF1 2.296057e+00 7.471736e+00 5.704292 8.034512e-08 4.740762e-06
## SERAC1 2.294974e+00 7.581262e+00 3.557614 5.301146e-04 2.585181e-03
## KLHL20 2.286956e+00 6.873662e+00 3.812072 2.154980e-04 1.344453e-03
## TTL 2.286682e+00 1.797326e+01 2.449128 1.571021e-02 3.755165e-02
## SLC26A11 -2.283714e+00 8.702901e+00 -2.596147 1.055989e-02 2.725578e-02
## NUP43 -2.282598e+00 1.474970e+01 -2.393770 1.816681e-02 4.220536e-02
## ZNF761 2.277336e+00 7.829581e+00 3.592432 4.698823e-04 2.370397e-03
## OSGIN1 -2.272714e+00 2.115793e+00 -5.798214 5.180016e-08 3.678742e-06
## THUMPD3 2.267963e+00 1.289320e+01 2.775599 6.359575e-03 1.810914e-02
## AP4M1 -2.266641e+00 5.696577e+00 -5.073445 1.380773e-06 3.484247e-05
## ZNF8 2.265268e+00 9.043717e+00 3.632391 4.087301e-04 2.127046e-03
## OGFOD1 2.265084e+00 1.351192e+01 3.083637 2.518465e-03 8.650156e-03
## TRMT13 2.264781e+00 8.742033e+00 3.010547 3.157364e-03 1.029594e-02
## ZNF623 2.262169e+00 7.597434e+00 3.464752 7.283163e-04 3.268192e-03
## SETDB2 2.258486e+00 1.293624e+01 2.671171 8.567805e-03 2.298443e-02
## FLT1 2.258420e+00 4.549040e+00 2.895205 4.475367e-03 1.359228e-02
## ZDHHC8 -2.258352e+00 3.354689e+00 -4.536104 1.328483e-05 1.761971e-04
## MED10 -2.257668e+00 1.490351e+01 -2.768052 6.499830e-03 1.843769e-02
## SARS2 -2.253290e+00 4.118629e+00 -3.103684 2.365440e-03 8.246360e-03
## GTF2H1 2.252440e+00 2.305593e+01 2.485172 1.427416e-02 3.478354e-02
## PI16 -2.251861e+00 2.062281e+00 -3.799959 2.251518e-04 1.385010e-03
## NUDT14 -2.249441e+00 2.040977e+00 -4.132763 6.527185e-05 5.581284e-04
## SLC66A1 -2.249055e+00 5.241048e+00 -3.911417 1.498986e-04 1.026665e-03
## DHX33 2.248548e+00 7.645431e+00 4.959447 2.261085e-06 4.963534e-05
## CTPS1 2.247968e+00 8.866075e+00 3.833778 1.991756e-04 1.271861e-03
## NSDHL -2.246594e+00 8.814317e+00 -2.827679 5.464474e-03 1.597059e-02
## PRDM10 2.245890e+00 1.017151e+01 2.460448 1.524592e-02 3.663963e-02
## RPE 2.245667e+00 1.534480e+01 2.370841 1.928027e-02 4.418720e-02
## CILK1 2.244626e+00 9.893442e+00 3.146547 2.066712e-03 7.394027e-03
## IDUA -2.238457e+00 2.836378e+00 -4.012313 1.030085e-04 7.801284e-04
## PCYT1B 2.236767e+00 3.967098e+00 4.132066 6.544594e-05 5.592139e-04
## BEX2 -2.232294e+00 4.092596e+00 -2.997178 3.289282e-03 1.062099e-02
## GLT8D1 2.232151e+00 2.335021e+01 2.935859 3.961987e-03 1.232988e-02
## DCAF17 2.231309e+00 7.498758e+00 3.011180 3.151240e-03 1.027880e-02
## SNX25 2.230646e+00 5.475031e+00 3.833725 1.992144e-04 1.271861e-03
## QSER1 2.230255e+00 6.886135e+00 3.035505 2.924057e-03 9.697797e-03
## ZNF765 2.224560e+00 7.979432e+00 3.877532 1.697774e-04 1.127717e-03
## ARHGAP6 2.222999e+00 5.115979e+00 3.421684 8.422209e-04 3.676386e-03
## MED21 2.222818e+00 1.232508e+01 2.720665 7.446696e-03 2.056294e-02
## TSR1 2.222659e+00 1.252175e+01 2.463909 1.510642e-02 3.634503e-02
## SETD6 -2.221627e+00 7.474746e+00 -2.664513 8.729736e-03 2.333965e-02
## DLAT 2.220246e+00 9.339011e+00 3.434376 8.070232e-04 3.555459e-03
## PRR11 2.218816e+00 1.070429e+01 2.809036 5.770750e-03 1.668074e-02
## FBXO8 2.212737e+00 1.404209e+01 2.319852 2.197501e-02 4.913718e-02
## ORC1 2.207785e+00 2.570500e+00 5.757067 6.281275e-08 4.087273e-06
## ZNF691 -2.206900e+00 7.326318e+00 -3.851223 1.869164e-04 1.214035e-03
## HAUS2 2.206117e+00 1.140757e+01 3.764381 2.559364e-04 1.519222e-03
## SCRN3 2.204400e+00 1.065063e+01 2.834253 5.360072e-03 1.572500e-02
## RTN1 -2.203562e+00 7.194776e+00 -2.543839 1.218605e-02 3.068505e-02
## GABPB2 2.203126e+00 1.467883e+01 2.915510 4.211777e-03 1.294420e-02
## NR2C2AP -2.202140e+00 6.491272e+00 -3.049734 2.798276e-03 9.372367e-03
## CHAC2 2.200819e+00 2.937801e+00 4.372532 2.563249e-05 2.833191e-04
## TRAPPC2B -2.200170e+00 3.184848e+00 -5.512382 1.946468e-07 8.518492e-06
## ANAPC7 2.199602e+00 2.897211e+01 2.539604 1.232706e-02 3.099405e-02
## NDUFC1 -2.199192e+00 8.786406e+00 -3.347252 1.079377e-03 4.457314e-03
## GPR180 2.198621e+00 5.340497e+00 4.568816 1.162705e-05 1.602146e-04
## NUP155 2.197414e+00 1.010517e+01 3.722445 2.973515e-04 1.684140e-03
## ABHD14A -2.196400e+00 4.115691e+00 -2.947814 3.821659e-03 1.199388e-02
## LARP1B 2.193963e+00 5.579827e+00 4.280217 3.688623e-05 3.679316e-04
## RRP9 -2.192132e+00 4.980052e+00 -3.092548 2.449344e-03 8.469437e-03
## ANKRD54 -2.191399e+00 8.073713e+00 -3.519901 6.035338e-04 2.849487e-03
## FDXR -2.190280e+00 3.060171e+00 -3.775881 2.455733e-04 1.471981e-03
## DHX37 -2.190081e+00 5.786447e+00 -3.179100 1.863666e-03 6.830369e-03
## HDGFL3 2.188791e+00 9.306207e+00 2.479227 1.450262e-02 3.521701e-02
## EFNB1 -2.188699e+00 3.525066e+00 -4.722682 6.161392e-06 1.016330e-04
## PIGN 2.188432e+00 8.850118e+00 4.206868 4.907706e-05 4.540202e-04
## PLEKHF1 -2.183760e+00 4.088781e+00 -2.373845 1.913105e-02 4.392069e-02
## ATP6V0A2 2.183401e+00 1.695438e+01 2.860006 4.968386e-03 1.478671e-02
## CENPBD1 -2.183154e+00 9.399546e+00 -3.534881 5.732927e-04 2.738321e-03
## ISOC1 2.181929e+00 7.637516e+00 2.913976 4.231174e-03 1.299371e-02
## NAA35 2.179896e+00 7.548764e+00 4.711072 6.466773e-06 1.063744e-04
## TMEM39B -2.178888e+00 7.144007e+00 -3.717041 3.031293e-04 1.708704e-03
## SEPSECS 2.175817e+00 9.833919e+00 4.023425 9.880046e-05 7.579389e-04
## CRYZ 2.174941e+00 7.434375e+00 2.453086 1.554645e-02 3.722612e-02
## ARL17B 2.172161e+00 9.646725e+00 2.399118 1.791548e-02 4.174395e-02
## APBA3 -2.172139e+00 5.240749e+00 -3.658017 3.735586e-04 1.991193e-03
## IFI27L1 2.171981e+00 4.431149e+00 2.766948 6.520587e-03 1.845626e-02
## FBXO45 2.168777e+00 1.239601e+01 2.629240 9.634749e-03 2.529735e-02
## MALSU1 -2.167791e+00 1.167633e+01 -2.420805 1.692749e-02 3.987290e-02
## LRP8 2.163803e+00 5.351551e+00 5.189207 8.311400e-07 2.358211e-05
## NKD1 2.163089e+00 3.876576e+00 3.630143 4.119615e-04 2.141362e-03
## EEF1E1 2.162895e+00 9.160501e+00 2.584426 1.090630e-02 2.802789e-02
## RPUSD3 -2.161126e+00 9.020370e+00 -2.685680 8.224291e-03 2.224911e-02
## SKA1 2.159670e+00 2.946798e+00 4.722046 6.177743e-06 1.017612e-04
## ARMC1 2.159620e+00 1.237289e+01 2.614382 1.004067e-02 2.616044e-02
## CACNA2D4 -2.159580e+00 7.927264e+00 -2.368963 1.937409e-02 4.434987e-02
## AIFM3 -2.158146e+00 2.507852e+00 -4.361985 2.672772e-05 2.918884e-04
## SNAPC4 -2.154340e+00 5.430458e+00 -4.496020 1.562880e-05 1.982434e-04
## HSD17B8 -2.154317e+00 3.798992e+00 -2.818446 5.614259e-03 1.633189e-02
## ODR4 2.153885e+00 1.227280e+01 2.729228 7.266831e-03 2.015543e-02
## MED6 -2.151230e+00 1.610671e+01 -3.762341 2.578177e-04 1.526569e-03
## MRPL45 -2.151203e+00 1.451130e+01 -2.562154 1.159274e-02 2.945378e-02
## LRRC45 -2.150371e+00 3.421982e+00 -3.832079 2.004100e-04 1.276461e-03
## PLEKHA8 2.150124e+00 8.093103e+00 3.782510 2.397822e-04 1.445029e-03
## SMIM19 -2.147830e+00 1.051331e+01 -3.067618 2.647277e-03 8.985891e-03
## PANX1 2.146579e+00 7.663442e+00 4.063198 8.504406e-05 6.822911e-04
## B3GALNT2 2.145017e+00 7.077720e+00 3.687979 3.360679e-04 1.845262e-03
## SLC35F2 2.143722e+00 3.301884e+00 5.243017 6.549655e-07 2.019393e-05
## RBM15 2.142199e+00 1.072733e+01 2.419590 1.698152e-02 3.998427e-02
## NUGGC 2.141232e+00 3.148243e+00 3.568348 5.108110e-04 2.515872e-03
## MTA1 -2.138623e+00 8.067803e+00 -3.048313 2.810604e-03 9.403035e-03
## LRCH1 2.137059e+00 8.424754e+00 3.223468 1.616693e-03 6.089141e-03
## NAA30 2.135846e+00 1.022050e+01 3.305735 1.237493e-03 4.949972e-03
## LRMDA -2.134615e+00 4.899770e+00 -3.570061 5.077918e-04 2.507564e-03
## ZNF611 2.133972e+00 8.239436e+00 2.356801 1.999149e-02 4.554342e-02
## TUBGCP4 2.131935e+00 5.749259e+00 4.077200 8.065283e-05 6.529300e-04
## TMEM107 -2.130428e+00 7.840540e+00 -3.550871 5.425918e-04 2.630883e-03
## TAF5L 2.124914e+00 1.582283e+01 2.590610 1.072227e-02 2.763881e-02
## C16orf91 -2.123123e+00 4.667212e+00 -3.909127 1.511686e-04 1.033945e-03
## RITA1 -2.121451e+00 6.178398e+00 -3.072295 2.609053e-03 8.889219e-03
## OBSCN -2.120000e+00 4.263741e+00 -2.331327 2.134123e-02 4.801645e-02
## AGAP5 2.118342e+00 7.263153e+00 2.897006 4.451384e-03 1.353677e-02
## GABPB1 2.113245e+00 1.739452e+01 2.380806 1.878917e-02 4.330346e-02
## PCYOX1 2.110930e+00 1.019511e+01 2.737379 7.099288e-03 1.974614e-02
## ZNF367 2.110405e+00 3.446861e+00 6.631763 9.037884e-10 2.162149e-07
## GEMIN6 -2.108795e+00 1.045493e+01 -2.999274 3.268273e-03 1.056178e-02
## ZDHHC21 2.106380e+00 5.760158e+00 3.533545 5.759314e-04 2.747605e-03
## ELAVL1 2.105524e+00 2.192804e+01 2.719490 7.471693e-03 2.061756e-02
## POLR1B 2.104745e+00 9.759477e+00 2.518463 1.305308e-02 3.236661e-02
## C1orf198 2.104111e+00 6.082813e+00 3.052400 2.775273e-03 9.308467e-03
## SLC22A16 2.102572e+00 3.172906e+00 3.331826 1.135776e-03 4.632154e-03
## KIF23 2.102446e+00 3.069673e+00 5.679686 9.007990e-08 5.081370e-06
## ANKMY2 2.100578e+00 9.701918e+00 3.869927 1.745715e-04 1.150232e-03
## TMEM161A -2.100574e+00 2.388716e+00 -4.572888 1.143525e-05 1.587493e-04
## NUP37 2.099981e+00 1.211658e+01 2.470277 1.485276e-02 3.589845e-02
## TMEM209 2.099090e+00 1.012231e+01 3.091230 2.459456e-03 8.499427e-03
## GLI1 2.098767e+00 3.458689e+00 3.243696 1.514528e-03 5.777519e-03
## POLA1 2.097098e+00 4.077027e+00 5.488418 2.171336e-07 9.230125e-06
## GTF2H3 2.095328e+00 8.981806e+00 3.172794 1.901491e-03 6.924065e-03
## CLCC1 2.095010e+00 8.700595e+00 3.756391 2.633789e-04 1.543968e-03
## POMT1 -2.093571e+00 8.146058e+00 -2.449395 1.569912e-02 3.753863e-02
## MIER2 -2.093070e+00 4.815209e+00 -4.671223 7.630493e-06 1.205029e-04
## PIDD1 -2.083058e+00 2.507303e+00 -3.762101 2.580395e-04 1.527120e-03
## CDKN3 2.081080e+00 3.118757e+00 2.558765 1.170054e-02 2.965771e-02
## CEP128 2.080825e+00 2.654485e+00 5.003869 1.867226e-06 4.325255e-05
## P4HTM -2.079098e+00 5.995981e+00 -3.131764 2.165541e-03 7.671242e-03
## CHAMP1 2.076261e+00 7.345854e+00 3.387381 9.446918e-04 4.010506e-03
## TCEANC2 2.074674e+00 1.543131e+01 2.353064 2.018464e-02 4.589528e-02
## CENPO 2.074228e+00 6.808000e+00 2.677677 8.412188e-03 2.264893e-02
## EXO5 2.072942e+00 6.732986e+00 3.243771 1.514160e-03 5.777519e-03
## ZBED4 2.071691e+00 1.134551e+01 2.959968 3.683682e-03 1.166270e-02
## ZNF574 -2.070989e+00 5.547733e+00 -4.200525 5.029633e-05 4.606289e-04
## CASD1 2.069944e+00 8.515218e+00 2.575104 1.118902e-02 2.860568e-02
## ZBTB20 2.066161e+00 6.400153e+00 3.005805 3.203585e-03 1.040091e-02
## SS18L1 2.065932e+00 9.890588e+00 4.578185 1.119031e-05 1.571114e-04
## ZNF788P 2.065000e+00 3.710909e+00 3.548927 5.462394e-04 2.641011e-03
## CD40 -2.049148e+00 7.647977e+00 -2.430726 1.649190e-02 3.902514e-02
## ALKBH3 -2.048487e+00 8.083538e+00 -2.591667 1.069110e-02 2.756445e-02
## URGCP -2.045219e+00 6.727349e+00 -3.029832 2.975645e-03 9.824929e-03
## C16orf87 2.045058e+00 6.091570e+00 4.225986 4.557132e-05 4.306581e-04
## ZNF431 2.044448e+00 1.337439e+01 2.410575 1.738734e-02 4.075372e-02
## ADCK5 -2.043325e+00 2.614462e+00 -4.206017 4.923908e-05 4.547660e-04
## SCAF4 2.040631e+00 1.302500e+01 2.720093 7.458843e-03 2.058689e-02
## SHPRH 2.040075e+00 7.974053e+00 2.656527 8.927623e-03 2.377759e-02
## C1QTNF6 -2.037859e+00 3.743056e+00 -4.726782 6.056905e-06 1.003072e-04
## ALS2CL -2.035427e+00 4.226670e+00 -2.375562 1.904622e-02 4.376416e-02
## FRA10AC1 -2.035176e+00 7.471636e+00 -3.787155 2.358015e-04 1.430489e-03
## SPATA5L1 2.033989e+00 1.079640e+01 2.529903 1.265559e-02 3.164825e-02
## SGO2 2.032396e+00 4.123897e+00 3.882242 1.668710e-04 1.116868e-03
## LIG3 2.031569e+00 1.172082e+01 2.566775 1.144722e-02 2.915895e-02
## SC5D 2.027093e+00 9.730385e+00 3.290117 1.302386e-03 5.147052e-03
## ALS2 2.026663e+00 1.020565e+01 2.803043 5.872490e-03 1.692944e-02
## ARHGEF5 2.026483e+00 3.774047e+00 4.531382 1.354222e-05 1.790531e-04
## ZNF808 2.025744e+00 6.967464e+00 3.025032 3.019945e-03 9.935241e-03
## TAF13 2.025166e+00 6.980751e+00 2.315962 2.219364e-02 4.945552e-02
## MRM2 -2.023777e+00 1.210393e+01 -2.757172 6.706974e-03 1.888989e-02
## SLC25A22 -2.023443e+00 4.013721e+00 -3.249805 1.484875e-03 5.685686e-03
## CLOCK 2.021227e+00 7.306462e+00 3.007037 3.191515e-03 1.036740e-02
## PURA 2.012851e+00 9.817666e+00 2.371321 1.925632e-02 4.414847e-02
## ATAD3A -2.012206e+00 3.543895e+00 -2.828105 5.457668e-03 1.595463e-02
## MTMR2 2.011502e+00 7.173805e+00 4.297368 3.448761e-05 3.492938e-04
## EMC8 -2.011380e+00 1.396832e+01 -2.434764 1.631746e-02 3.868396e-02
## C16orf74 -2.009627e+00 2.209318e+00 -3.382616 9.598161e-04 4.061155e-03
## ICOSLG -2.008673e+00 4.295330e+00 -3.162240 1.966395e-03 7.103699e-03
## DUSP12 -2.008608e+00 1.244491e+01 -2.965977 3.617176e-03 1.148279e-02
## OCRL 2.007173e+00 5.708875e+00 3.923040 1.436058e-04 9.930989e-04
## WDR18 -2.004015e+00 3.384955e+00 -3.346797 1.081001e-03 4.462469e-03
## EPB41L5 2.003054e+00 4.358731e+00 4.352434 2.775832e-05 3.006517e-04
## IGFBP4 -1.996917e+00 2.835312e+00 -2.716575 7.534029e-03 2.073650e-02
## SPRTN 1.996423e+00 9.633731e+00 2.526564 1.277046e-02 3.182909e-02
## KCNA3 1.995341e+00 4.606723e+00 3.038527 2.896911e-03 9.615830e-03
## WRAP53 -1.994471e+00 5.915849e+00 -3.354287 1.054532e-03 4.372989e-03
## INTS2 1.994024e+00 6.623384e+00 3.253666 1.466413e-03 5.639318e-03
## SPDL1 1.993779e+00 3.972153e+00 5.792006 5.333133e-08 3.697343e-06
## ZNF37A 1.993182e+00 1.151861e+01 2.503018 1.360745e-02 3.346141e-02
## DYRK1B -1.991538e+00 6.251720e+00 -3.521745 5.997335e-04 2.833800e-03
## SASS6 1.990176e+00 4.424492e+00 5.356127 3.951429e-07 1.386507e-05
## LCLAT1 1.989279e+00 7.711663e+00 3.485631 6.784629e-04 3.101993e-03
## PSRC1 -1.987131e+00 8.164901e+00 -3.131782 2.165413e-03 7.671242e-03
## DNAL4 -1.984907e+00 8.689553e+00 -3.898288 1.573220e-04 1.066194e-03
## DNM3 1.984344e+00 5.609791e+00 2.955527 3.733559e-03 1.178600e-02
## NT5DC3 1.983981e+00 6.803999e+00 2.532598 1.256354e-02 3.146854e-02
## SLC29A3 -1.982386e+00 4.857206e+00 -3.885883 1.646574e-04 1.105796e-03
## AEBP2 1.980623e+00 1.282738e+01 2.319095 2.201740e-02 4.920412e-02
## CIP2A 1.980445e+00 2.647639e+00 5.756204 6.306669e-08 4.087273e-06
## MAPK7 -1.980215e+00 7.408218e+00 -3.924714 1.427205e-04 9.904420e-04
## PYROXD1 -1.977971e+00 1.986844e+01 -2.469853 1.486954e-02 3.592436e-02
## MELK 1.974919e+00 1.925849e+00 6.644067 8.497659e-10 2.135347e-07
## TRIP6 -1.973153e+00 4.341131e+00 -3.765161 2.552208e-04 1.516492e-03
## SCN9A 1.970189e+00 3.471534e+00 2.384162 1.862624e-02 4.305344e-02
## TMEM186 -1.967358e+00 8.079584e+00 -3.172035 1.906090e-03 6.936555e-03
## CDC25A 1.965911e+00 2.056359e+00 5.581859 1.415632e-07 6.765331e-06
## LYRM9 -1.965258e+00 4.286510e+00 -4.728994 6.001260e-06 9.968480e-05
## INTS9 -1.964751e+00 1.000025e+01 -3.992147 1.110864e-04 8.218868e-04
## BLNK 1.962385e+00 6.007002e+00 2.522718 1.290397e-02 3.208408e-02
## TRAPPC2 1.962000e+00 1.772602e+01 3.058909 2.719846e-03 9.166630e-03
## MRPL2 -1.960866e+00 6.783673e+00 -2.809994 5.754647e-03 1.664637e-02
## TCEA2 -1.958176e+00 2.814431e+00 -3.955280 1.274428e-04 9.105248e-04
## WDHD1 1.957802e+00 2.838481e+00 6.245613 6.090928e-09 7.875990e-07
## TMEM159 1.951538e+00 1.023573e+01 3.077648 2.565930e-03 8.772537e-03
## TJAP1 -1.951436e+00 1.175996e+01 -2.453589 1.552575e-02 3.718405e-02
## NIP7 1.948100e+00 1.508204e+01 3.838351 1.958902e-04 1.257855e-03
## TIGD5 -1.944518e+00 2.591716e+00 -4.480866 1.661500e-05 2.069893e-04
## GGT7 -1.938190e+00 5.028157e+00 -2.702242 7.847432e-03 2.141522e-02
## KCTD13 -1.931632e+00 8.575395e+00 -3.017954 3.086386e-03 1.010338e-02
## FANCG 1.927995e+00 6.806998e+00 3.154941 2.012476e-03 7.237104e-03
## TACO1 -1.927256e+00 8.590247e+00 -2.636066 9.453264e-03 2.490354e-02
## PCYOX1L -1.927126e+00 1.018455e+01 -2.473265 1.473501e-02 3.566474e-02
## ZNF775 -1.926506e+00 2.188327e+00 -6.310336 4.440270e-09 6.195482e-07
## TAF4B 1.925959e+00 3.161009e+00 4.387716 2.413121e-05 2.705067e-04
## HSCB -1.924093e+00 5.028321e+00 -4.362256 2.669897e-05 2.918432e-04
## PSPH 1.922901e+00 4.751889e+00 2.883948 4.627939e-03 1.393788e-02
## MRAS -1.918031e+00 3.335592e+00 -3.401257 9.019079e-04 3.865785e-03
## SLC12A2 1.916934e+00 3.596070e+00 5.545930 1.669503e-07 7.557366e-06
## KCNN3 1.916811e+00 1.832696e+00 3.266795 1.405233e-03 5.462493e-03
## PYCR1 1.916721e+00 2.020009e+00 3.057507 2.731694e-03 9.193498e-03
## LRRC40 1.913843e+00 7.298671e+00 2.871878 4.796806e-03 1.435170e-02
## ZFAND4 1.913510e+00 5.305844e+00 5.448806 2.599916e-07 1.039204e-05
## PDP2 1.912454e+00 4.398036e+00 5.392674 3.351779e-07 1.226917e-05
## PRPF4 1.911502e+00 1.785673e+01 3.560150 5.254936e-04 2.572165e-03
## TERF1 1.906260e+00 1.566183e+01 2.427028 1.665308e-02 3.935157e-02
## PPP1R37 -1.901873e+00 3.768274e+00 -4.211771 4.815419e-05 4.482800e-04
## NBEAL1 1.901472e+00 5.194572e+00 4.036253 9.414660e-05 7.317030e-04
## FOCAD 1.901405e+00 1.268748e+01 2.494155 1.393499e-02 3.415354e-02
## ZCCHC14 1.900973e+00 8.135402e+00 2.636892 9.431522e-03 2.485299e-02
## R3HDM1 1.900186e+00 1.206262e+01 3.030464 2.969854e-03 9.814007e-03
## CRELD1 -1.891732e+00 9.180591e+00 -2.350031 2.034264e-02 4.621024e-02
## ZSCAN30 1.889031e+00 6.901201e+00 2.633442 9.522655e-03 2.506407e-02
## MUSTN1 -1.888119e+00 3.420320e+00 -3.096095 2.422327e-03 8.397779e-03
## B4GALNT2 1.879940e+00 5.062191e+00 2.393084 1.819928e-02 4.225570e-02
## TTK 1.879087e+00 2.108625e+00 5.191587 8.224536e-07 2.354195e-05
## ZNF436 1.878110e+00 7.393578e+00 3.234464 1.560386e-03 5.912515e-03
## RAD54L2 1.877633e+00 1.226087e+01 2.847069 5.161752e-03 1.526262e-02
## WASF1 1.877185e+00 3.100667e+00 4.259415 4.001097e-05 3.915265e-04
## RBL1 1.875984e+00 7.491732e+00 3.490588 6.671094e-04 3.065447e-03
## PRPSAP2 1.875874e+00 1.592003e+01 2.646011 9.194389e-03 2.431879e-02
## TMEM79 -1.875327e+00 8.155048e+00 -2.930072 4.031596e-03 1.249405e-02
## RHBDD1 1.870772e+00 1.197727e+01 2.850924 5.103429e-03 1.511655e-02
## MBD5 1.870114e+00 9.170422e+00 2.650954 9.068124e-03 2.404918e-02
## ERO1B 1.869166e+00 1.353535e+01 2.434484 1.632950e-02 3.870261e-02
## RAD51AP1 1.869022e+00 2.255727e+00 4.578107 1.119386e-05 1.571114e-04
## STIL 1.868496e+00 2.017819e+00 6.617917 9.686473e-10 2.217978e-07
## PLD6 1.865903e+00 4.416462e+00 4.119706 6.861119e-05 5.779323e-04
## INTS13 1.865513e+00 1.106256e+01 3.023025 3.038651e-03 9.982936e-03
## DBP -1.865338e+00 3.415151e+00 -3.761944 2.581848e-04 1.527218e-03
## GINS1 1.864102e+00 1.987370e+00 6.266253 5.507843e-09 7.274151e-07
## ELMO3 -1.863744e+00 4.025029e+00 -2.891038 4.531293e-03 1.373049e-02
## FIGNL1 1.862183e+00 4.554028e+00 4.200058 5.038738e-05 4.607512e-04
## LIN52 1.861369e+00 6.449285e+00 4.836386 3.821467e-06 7.194064e-05
## SCRIB -1.858720e+00 3.799350e+00 -3.684547 3.401751e-04 1.861780e-03
## ZNF133 -1.857819e+00 7.075448e+00 -3.284029 1.328533e-03 5.231210e-03
## FAM156A -1.856933e+00 5.038230e+00 -2.358786 1.988952e-02 4.531984e-02
## HDAC11 -1.853890e+00 4.338856e+00 -3.853076 1.856576e-04 1.206520e-03
## QRSL1 1.851812e+00 9.624723e+00 2.588985 1.077037e-02 2.772664e-02
## PRIM1 1.850934e+00 5.484404e+00 4.465225 1.769577e-05 2.156956e-04
## TMEM69 1.850725e+00 1.481066e+01 2.612526 1.009247e-02 2.626079e-02
## TMEM18 -1.848468e+00 9.872214e+00 -2.722597 7.405760e-03 2.047851e-02
## CDK3 -1.848276e+00 8.252463e+00 -2.776909 6.335513e-03 1.805038e-02
## ALMS1 1.844296e+00 5.039630e+00 3.072885 2.604269e-03 8.880573e-03
## ZNF236 1.840253e+00 5.345087e+00 3.932355 1.387458e-04 9.715885e-04
## C4orf46 1.839384e+00 6.413515e+00 3.323623 1.166882e-03 4.728125e-03
## UQCC3 -1.837242e+00 2.492238e+00 -3.511954 6.201814e-04 2.906105e-03
## ZNF500 -1.836883e+00 4.895895e+00 -3.875100 1.712964e-04 1.134958e-03
## SERINC2 -1.835548e+00 3.447299e+00 -2.329358 2.144880e-02 4.820594e-02
## ZNF841 1.835299e+00 6.951769e+00 3.481820 6.873164e-04 3.134015e-03
## XPNPEP3 1.832005e+00 9.121096e+00 4.490753 1.596503e-05 2.007904e-04
## MTIF2 1.831839e+00 1.704702e+01 2.639260 9.369426e-03 2.471012e-02
## NKAIN3 1.829590e+00 5.275168e+00 3.149616 2.046723e-03 7.344669e-03
## MMP17 -1.828603e+00 1.189793e+00 -5.956441 2.452077e-08 2.092204e-06
## NAA25 1.824803e+00 7.751185e+00 2.630438 9.602667e-03 2.523546e-02
## SOCS7 1.824680e+00 6.979578e+00 2.828592 5.449880e-03 1.593964e-02
## RAD51D 1.824337e+00 8.382773e+00 3.130263 2.175817e-03 7.698445e-03
## RGS12 -1.822091e+00 2.385566e+00 -4.777168 4.905148e-06 8.602046e-05
## H2BC11 1.819984e+00 3.239165e+00 4.786676 4.713023e-06 8.330320e-05
## ABHD8 -1.815952e+00 2.969135e+00 -3.589423 4.748213e-04 2.389215e-03
## CDC42EP4 -1.815844e+00 1.018529e+01 -2.392912 1.820745e-02 4.225838e-02
## DNA2 1.815758e+00 3.229567e+00 5.970755 2.290506e-08 1.982876e-06
## TMEM128 -1.815382e+00 9.579223e+00 -3.450223 7.650146e-04 3.395611e-03
## FGFR1 1.814401e+00 5.117522e+00 2.992312 3.338552e-03 1.074497e-02
## MYBBP1A -1.812174e+00 6.380048e+00 -2.339970 2.087452e-02 4.714756e-02
## PER2 1.809656e+00 7.395293e+00 3.042234 2.863936e-03 9.538411e-03
## LRRC8A 1.807665e+00 1.155726e+01 2.408326 1.748991e-02 4.096176e-02
## IRF2BP1 -1.806453e+00 3.893644e+00 -4.916170 2.721853e-06 5.643563e-05
## PLK1 1.804673e+00 2.521290e+00 4.240988 4.299002e-05 4.155352e-04
## FBF1 -1.803043e+00 3.855134e+00 -2.937031 3.948018e-03 1.229609e-02
## MED12L 1.798621e+00 2.302674e+00 3.592910 4.691022e-04 2.367469e-03
## BARD1 1.797786e+00 3.664282e+00 5.381464 3.525561e-07 1.270917e-05
## CDCA2 1.795770e+00 1.762604e+00 5.486228 2.193117e-07 9.289417e-06
## CYB5D2 -1.790625e+00 8.321056e+00 -2.340008 2.087247e-02 4.714756e-02
## NBPF3 1.790105e+00 5.432229e+00 2.951943 3.774253e-03 1.187653e-02
## TMEM35B -1.787665e+00 1.474854e+01 -2.319921 2.197115e-02 4.913718e-02
## MPV17L2 -1.787202e+00 5.120855e+00 -3.129806 2.178952e-03 7.706586e-03
## GPD1L 1.784107e+00 9.288984e+00 2.739993 7.046310e-03 1.964826e-02
## MTHFSD -1.783534e+00 7.413862e+00 -3.975455 1.182269e-04 8.639376e-04
## CAV2 1.782894e+00 2.579547e+00 4.077725 8.049246e-05 6.520769e-04
## PAXIP1 1.781538e+00 6.051895e+00 4.325262 3.090353e-05 3.229215e-04
## PPARA 1.777359e+00 6.965596e+00 3.238707 1.539147e-03 5.846985e-03
## ZNF510 1.775873e+00 7.945826e+00 2.791947 6.065164e-03 1.741294e-02
## FLJ44635 -1.775177e+00 3.438260e+00 -3.978064 1.170829e-04 8.576922e-04
## TG 1.773410e+00 2.999186e+00 3.069116 2.634980e-03 8.951836e-03
## RFX1 -1.772935e+00 5.288178e+00 -3.701007 3.209032e-04 1.790175e-03
## ZNF48 -1.772499e+00 3.972516e+00 -3.252141 1.473681e-03 5.661761e-03
## MED9 -1.771428e+00 6.636698e+00 -3.951343 1.293191e-04 9.200508e-04
## SLC39A14 1.768005e+00 3.344150e+00 4.131750 6.552532e-05 5.594891e-04
## TMEM243 -1.765251e+00 1.558741e+01 -2.323303 2.178267e-02 4.878989e-02
## LTA -1.765123e+00 3.263284e+00 -3.832368 2.001996e-04 1.275856e-03
## YBEY -1.764978e+00 5.374931e+00 -3.045186 2.837923e-03 9.462404e-03
## EEF2KMT -1.764950e+00 5.516544e+00 -2.681122 8.330827e-03 2.248603e-02
## ATXN7L1 1.764578e+00 9.068632e+00 2.381485 1.875608e-02 4.326083e-02
## ZNF213 -1.763963e+00 6.368852e+00 -3.117872 2.262388e-03 7.951879e-03
## NR1H3 -1.763310e+00 3.587953e+00 -3.895538 1.589207e-04 1.075185e-03
## MRPS10 1.762591e+00 2.141636e+01 2.452835 1.555683e-02 3.723592e-02
## DNLZ -1.758035e+00 2.137907e+00 -3.297518 1.271247e-03 5.052611e-03
## ALG8 1.749796e+00 9.727654e+00 2.758191 6.687324e-03 1.884783e-02
## MAP2K5 -1.749224e+00 5.856772e+00 -5.149386 9.904585e-07 2.725484e-05
## DARS2 1.747537e+00 6.751483e+00 4.475044 1.700966e-05 2.101402e-04
## LLGL2 -1.747035e+00 3.625928e+00 -2.392107 1.824562e-02 4.233042e-02
## DGKG 1.745605e+00 7.272686e+00 3.098223 2.406248e-03 8.356692e-03
## SH2D3A -1.744528e+00 2.920412e+00 -3.722026 2.977961e-04 1.685048e-03
## SERPINH1 -1.743914e+00 2.296805e+00 -3.822456 2.075375e-04 1.305780e-03
## CCDC18 1.741897e+00 5.339632e+00 4.690430 7.046297e-06 1.139407e-04
## RFC3 1.741416e+00 3.856438e+00 4.665927 7.799639e-06 1.228666e-04
## DNPH1 -1.741254e+00 2.217869e+00 -3.547456 5.490162e-04 2.650115e-03
## MEGF8 -1.739998e+00 5.122226e+00 -4.337825 2.940887e-05 3.128155e-04
## C22orf34 -1.739596e+00 3.797665e+00 -2.622926 9.805421e-03 2.566592e-02
## PIAS3 1.738188e+00 1.113880e+01 2.616009 9.995488e-03 2.607136e-02
## ALKBH4 -1.733563e+00 5.552355e+00 -4.981120 2.059777e-06 4.644288e-05
## FOXP4 -1.731430e+00 3.184719e+00 -4.031097 9.599132e-05 7.411830e-04
## TRPT1 -1.727963e+00 5.435570e+00 -3.269146 1.394531e-03 5.433357e-03
## LAGE3 -1.724130e+00 3.435749e+00 -2.469158 1.489704e-02 3.598348e-02
## SCFD2 1.723989e+00 7.682012e+00 3.029155 2.981856e-03 9.839958e-03
## RGS6 1.722055e+00 3.861306e+00 3.514421 6.149684e-04 2.890814e-03
## PEX14 -1.720126e+00 3.735753e+00 -4.240773 4.302594e-05 4.155437e-04
## SEC14L5 1.720064e+00 3.350264e+00 3.135841 2.137853e-03 7.603156e-03
## MTX3 1.719999e+00 6.242047e+00 2.379325 1.886145e-02 4.342783e-02
## RIMKLB 1.719609e+00 3.286410e+00 4.952474 2.329825e-06 5.051503e-05
## KIAA1841 1.717088e+00 5.410219e+00 3.481694 6.876095e-04 3.134146e-03
## FBLN5 -1.715201e+00 2.666329e+00 -3.344476 1.089328e-03 4.482029e-03
## PPAT 1.705954e+00 3.558442e+00 4.451132 1.872735e-05 2.241235e-04
## KCTD3 1.703312e+00 4.933285e+00 4.148856 6.136986e-05 5.328306e-04
## TRIP13 1.701860e+00 1.759339e+00 5.981703 2.174023e-08 1.909920e-06
## SAC3D1 -1.701582e+00 2.035092e+00 -3.325138 1.161079e-03 4.715887e-03
## LSR -1.698516e+00 2.717078e+00 -3.486957 6.754086e-04 3.093992e-03
## PRSS36 -1.697838e+00 3.097334e+00 -2.977238 3.495518e-03 1.115031e-02
## CRACR2A 1.693322e+00 3.480265e+00 3.805757 2.204811e-04 1.366199e-03
## TAF1B 1.693007e+00 5.208159e+00 3.707143 3.139880e-04 1.758214e-03
## LDLRAD3 1.688681e+00 4.434473e+00 2.527682 1.273191e-02 3.177620e-02
## NREP 1.687074e+00 8.542821e+00 3.048597 2.808142e-03 9.397449e-03
## ZNF341 -1.685522e+00 6.068680e+00 -3.831698 2.006876e-04 1.276907e-03
## SLC10A7 1.684225e+00 5.177957e+00 3.814137 2.138920e-04 1.339366e-03
## RHPN1 -1.683724e+00 1.631164e+00 -3.955283 1.274413e-04 9.105248e-04
## ESF1 1.678849e+00 5.234544e+00 3.333115 1.130961e-03 4.615690e-03
## USP53 1.673219e+00 5.756835e+00 2.475692 1.464001e-02 3.546374e-02
## TMEM212 1.665886e+00 5.080624e+00 3.156797 2.000663e-03 7.207734e-03
## ALG12 -1.665377e+00 9.022112e+00 -2.662120 8.788622e-03 2.345478e-02
## KLHL11 1.664696e+00 7.187823e+00 3.110117 2.318183e-03 8.112614e-03
## FKRP -1.664295e+00 5.317226e+00 -5.689022 8.625744e-08 4.990309e-06
## MIGA1 1.663052e+00 7.134786e+00 3.158880 1.987482e-03 7.168958e-03
## AFAP1 -1.661642e+00 4.676465e+00 -2.379398 1.885784e-02 4.342783e-02
## CENPJ 1.658181e+00 3.495916e+00 5.682554 8.888819e-08 5.068336e-06
## FBXL18 -1.655150e+00 6.821226e+00 -4.010683 1.036402e-04 7.833599e-04
## POP7 -1.650358e+00 5.072606e+00 -2.799995 5.924857e-03 1.705968e-02
## FTO 1.645189e+00 6.696907e+00 2.671310 8.564448e-03 2.298062e-02
## MYL5 -1.644620e+00 2.187574e+00 -4.013735 1.024606e-04 7.776737e-04
## SLAIN1 1.641960e+00 5.090475e+00 3.460271 7.394532e-04 3.301926e-03
## ADCK1 -1.640992e+00 3.334364e+00 -3.410344 8.748823e-04 3.788791e-03
## NEIL1 -1.638762e+00 4.627217e+00 -2.453929 1.551181e-02 3.716568e-02
## PSMG4 -1.638171e+00 4.468802e+00 -3.641305 3.961550e-04 2.080779e-03
## CPED1 1.638149e+00 3.810962e+00 2.875808 4.741203e-03 1.421043e-02
## TNFRSF10A 1.637830e+00 6.817997e+00 2.798662 5.947888e-03 1.710938e-02
## S100A13 -1.636702e+00 2.825308e+00 -4.016646 1.013476e-04 7.714907e-04
## PARP2 1.635279e+00 5.247251e+00 3.476746 6.992721e-04 3.171460e-03
## NLE1 -1.634204e+00 4.429862e+00 -3.012969 3.133988e-03 1.023660e-02
## ZNF778 1.632957e+00 6.761855e+00 4.580691 1.107619e-05 1.562424e-04
## WDR12 1.631504e+00 9.028192e+00 3.439658 7.927866e-04 3.500540e-03
## RINT1 1.627054e+00 9.476999e+00 3.288688 1.308479e-03 5.165195e-03
## ACAD11 1.626518e+00 7.709358e+00 2.332786 2.126181e-02 4.787640e-02
## SPC25 1.625616e+00 2.387813e+00 4.782658 4.793309e-06 8.459619e-05
## TOGARAM1 1.625562e+00 4.533942e+00 4.038414 9.338358e-05 7.276802e-04
## ZNF414 -1.625142e+00 1.781093e+00 -4.563289 1.189236e-05 1.629109e-04
## AFF2 1.624304e+00 2.363112e+00 2.854640 5.047775e-03 1.499128e-02
## RBM41 1.624154e+00 8.090103e+00 2.891946 4.519050e-03 1.370039e-02
## ARNTL2 1.623485e+00 2.754961e+00 5.475902 2.298694e-07 9.466148e-06
## ZNF275 1.623123e+00 6.549024e+00 2.513376 1.323342e-02 3.272484e-02
## KCNMB1 -1.621955e+00 4.568279e+00 -3.589121 4.753195e-04 2.390708e-03
## PDIK1L 1.619494e+00 6.609427e+00 3.414824 8.618384e-04 3.742733e-03
## ID3 -1.615214e+00 1.593617e+00 -4.730026 5.975469e-06 9.960793e-05
## ZNF512B -1.615092e+00 4.074057e+00 -2.826947 5.476227e-03 1.599397e-02
## UCK2 1.612236e+00 7.303900e+00 3.085764 2.501806e-03 8.607896e-03
## SCO1 1.611046e+00 1.588251e+01 2.777283 6.328666e-03 1.804278e-02
## MTHFD2L 1.609721e+00 5.595890e+00 4.145519 6.216021e-05 5.373324e-04
## WDR83 -1.605141e+00 3.226678e+00 -4.118384 6.895817e-05 5.800311e-04
## SNAP47 -1.605086e+00 7.187783e+00 -2.818887 5.607021e-03 1.631484e-02
## AAMDC -1.602553e+00 4.168536e+00 -3.200794 1.738823e-03 6.474865e-03
## SIRT3 -1.601866e+00 8.250311e+00 -2.316237 2.217810e-02 4.943286e-02
## CMC4 -1.601769e+00 4.140022e+00 -4.033240 9.522054e-05 7.381148e-04
## MEF2B -1.601756e+00 2.260429e+00 -3.696043 3.266036e-04 1.810904e-03
## LZTS2 -1.601724e+00 4.465167e+00 -3.053947 2.762005e-03 9.274456e-03
## ABCB7 -1.601558e+00 1.423068e+01 -2.524602 1.283843e-02 3.195462e-02
## MZT2A -1.599923e+00 1.805651e+00 -2.561566 1.161139e-02 2.948214e-02
## RCL1 1.599333e+00 4.011113e+00 2.608167 1.021501e-02 2.654471e-02
## OTUD6B 1.598824e+00 5.811019e+00 3.190872 1.794923e-03 6.633778e-03
## COIL 1.597559e+00 1.150454e+01 3.042855 2.858448e-03 9.525484e-03
## MRM3 -1.596965e+00 5.350658e+00 -2.697173 7.961089e-03 2.166556e-02
## NOC4L -1.594619e+00 2.475631e+00 -3.569870 5.081268e-04 2.507564e-03
## DAAM1 1.594566e+00 5.636923e+00 3.619552 4.275070e-04 2.202182e-03
## ZBTB41 1.590841e+00 6.390101e+00 2.652105 9.038946e-03 2.399787e-02
## C5 1.589996e+00 4.165035e+00 3.528320 5.863589e-04 2.787774e-03
## NEK2 1.587104e+00 1.748322e+00 4.658179 8.053657e-06 1.251428e-04
## ZNF346 1.586659e+00 1.263160e+01 2.776130 6.349809e-03 1.808567e-02
## ZBTB45 -1.585638e+00 2.702421e+00 -4.401621 2.283098e-05 2.603610e-04
## CBX8 -1.583981e+00 2.949253e+00 -5.013424 1.791677e-06 4.174712e-05
## IFT43 -1.582846e+00 3.631648e+00 -3.431284 8.154674e-04 3.580456e-03
## ROM1 -1.577726e+00 3.040250e+00 -2.811550 5.728555e-03 1.659518e-02
## ASB3 1.575279e+00 8.578420e+00 3.148971 2.050909e-03 7.352814e-03
## TTLL5 1.574143e+00 5.402496e+00 4.653930 8.196339e-06 1.267387e-04
## SDHAF4 -1.570896e+00 5.064403e+00 -3.141796 2.098003e-03 7.492418e-03
## ZNF419 -1.570768e+00 6.193570e+00 -3.182206 1.845297e-03 6.776960e-03
## POLD1 -1.569528e+00 4.016221e+00 -2.533704 1.252595e-02 3.138102e-02
## SPICE1 1.566220e+00 3.300865e+00 5.334365 4.356988e-07 1.489161e-05
## ZSCAN2 -1.563856e+00 5.631078e+00 -3.293232 1.289193e-03 5.108531e-03
## ACTR8 1.563053e+00 1.325107e+01 3.209406 1.691459e-03 6.344309e-03
## ZNF440 1.561995e+00 6.699211e+00 3.445117 7.783205e-04 3.440507e-03
## CDKL1 1.560604e+00 5.002712e+00 4.053260 8.829878e-05 6.991095e-04
## FAHD2B -1.557105e+00 3.477513e+00 -2.680599 8.343128e-03 2.250898e-02
## LOC100421372 1.556343e+00 1.044805e+01 2.981131 3.454342e-03 1.103380e-02
## GINS4 1.555484e+00 2.236294e+00 6.670259 7.451476e-10 1.936512e-07
## BTRC 1.552522e+00 8.399350e+00 2.884453 4.620984e-03 1.392400e-02
## H2BC8 1.552358e+00 2.516798e+00 4.541248 1.300979e-05 1.733665e-04
## NUDCD1 1.550882e+00 7.171650e+00 3.198516 1.751560e-03 6.510407e-03
## MED20 1.549877e+00 1.116383e+01 2.321430 2.188692e-02 4.898639e-02
## MMP19 -1.548876e+00 5.630683e+00 -2.512259 1.327329e-02 3.280291e-02
## VANGL1 1.547832e+00 3.245556e+00 4.513765 1.454568e-05 1.889505e-04
## TMEM192 1.547413e+00 1.293951e+01 3.474675 7.042068e-04 3.188962e-03
## TRIM59 1.545842e+00 6.174073e+00 3.152505 2.028079e-03 7.286587e-03
## WDR24 -1.543111e+00 2.938215e+00 -4.212278 4.805973e-05 4.477520e-04
## C1orf54 -1.542913e+00 1.723211e+00 -5.572215 1.479802e-07 6.936939e-06
## CDYL 1.541616e+00 1.183027e+01 2.991606 3.345757e-03 1.076232e-02
## ZNF669 1.541306e+00 6.245737e+00 3.766148 2.543177e-04 1.512642e-03
## NADK2 1.540432e+00 7.657185e+00 3.278609 1.352224e-03 5.304270e-03
## TSNARE1 -1.539737e+00 3.936729e+00 -3.178498 1.867246e-03 6.837154e-03
## GOLIM4 1.538804e+00 4.754365e+00 3.791865 2.318296e-04 1.415808e-03
## SPHK2 -1.538172e+00 2.405806e+00 -5.183168 8.535855e-07 2.409529e-05
## PFKM 1.536043e+00 6.160440e+00 3.826231 2.047125e-04 1.292807e-03
## ZNF212 -1.534240e+00 9.367830e+00 -2.904565 4.352027e-03 1.328914e-02
## TRUB1 1.526279e+00 4.664349e+00 3.069645 2.630651e-03 8.942252e-03
## PARPBP 1.526223e+00 2.206733e+00 6.173002 8.667248e-09 9.883997e-07
## NELFA -1.523461e+00 4.133731e+00 -4.447646 1.899131e-05 2.268247e-04
## UTP20 1.522374e+00 4.647699e+00 2.810161 5.751843e-03 1.664232e-02
## ZBTB39 1.520913e+00 3.930734e+00 3.194141 1.776257e-03 6.585311e-03
## PROCA1 -1.519657e+00 3.907384e+00 -2.999758 3.263436e-03 1.054902e-02
## ARG2 1.519508e+00 3.299904e+00 2.852988 5.072456e-03 1.505489e-02
## ZNRF1 -1.519228e+00 4.057024e+00 -2.762635 6.602236e-03 1.863318e-02
## SLC27A2 1.517436e+00 1.900271e+00 3.000882 3.252236e-03 1.052142e-02
## COX18 1.513656e+00 1.143435e+01 3.273645 1.374267e-03 5.370283e-03
## SETBP1 1.512995e+00 3.115494e+00 3.885168 1.650899e-04 1.107652e-03
## FAM43A -1.512363e+00 4.893110e+00 -3.207942 1.699423e-03 6.364115e-03
## ZNF707 -1.512360e+00 4.475382e+00 -4.628008 9.121262e-06 1.368276e-04
## CCDC84 -1.511297e+00 7.097132e+00 -2.695963 7.988419e-03 2.172997e-02
## IFT122 -1.504672e+00 5.680293e+00 -4.396517 2.330024e-05 2.646943e-04
## AUH 1.502208e+00 6.933930e+00 3.109810 2.320424e-03 8.115666e-03
## EHBP1 1.500642e+00 4.589209e+00 4.106614 7.212325e-05 6.002035e-04
## UNK -1.498964e+00 5.764356e+00 -3.460507 7.388621e-04 3.301926e-03
## GTSE1 1.498665e+00 1.650940e+00 5.302800 5.018289e-07 1.626145e-05
## LARS2 1.498217e+00 6.436108e+00 3.362850 1.025019e-03 4.279028e-03
## HACE1 1.496584e+00 3.573234e+00 3.940077 1.348354e-04 9.513073e-04
## SPC24 1.495696e+00 2.788181e+00 2.666495 8.681257e-03 2.323548e-02
## ZNF497 -1.491372e+00 3.232523e+00 -3.237113 1.547094e-03 5.869654e-03
## ST7 1.486361e+00 6.817270e+00 3.217372 1.648717e-03 6.205579e-03
## ALKBH2 -1.485305e+00 3.203358e+00 -3.640307 3.975448e-04 2.085308e-03
## SWSAP1 -1.484291e+00 3.381582e+00 -3.135031 2.143325e-03 7.619854e-03
## ZNF836 -1.484072e+00 7.651357e+00 -3.324387 1.163952e-03 4.721091e-03
## CBR3 -1.482890e+00 1.579246e+00 -3.241585 1.524900e-03 5.808496e-03
## AP1M2 1.482850e+00 3.628289e+00 2.907261 4.317087e-03 1.320625e-02
## PAOX -1.482533e+00 2.008571e+00 -4.230284 4.481705e-05 4.269319e-04
## SAMD10 -1.482466e+00 2.040856e+00 -3.205339 1.713676e-03 6.398960e-03
## FHL2 1.482182e+00 4.269777e+00 3.075134 2.586103e-03 8.828781e-03
## TXNDC16 1.481996e+00 4.983668e+00 3.474277 7.051600e-04 3.192060e-03
## FER 1.480554e+00 3.823844e+00 3.788095 2.350034e-04 1.426752e-03
## XPA -1.480449e+00 7.300014e+00 -2.946138 3.841049e-03 1.204517e-02
## TTI1 1.476048e+00 1.076233e+01 2.914024 4.230570e-03 1.299371e-02
## ZNRD2 -1.474375e+00 2.601572e+00 -2.706909 7.744103e-03 2.119175e-02
## ZNF747 -1.472116e+00 7.011110e+00 -3.258073 1.445608e-03 5.582843e-03
## NOTCH4 -1.471728e+00 1.992060e+00 -5.857608 3.916885e-08 3.036226e-06
## CISD1 -1.471082e+00 6.009505e+00 -2.571442 1.130191e-02 2.885075e-02
## ZNF615 1.470742e+00 7.225470e+00 2.547433 1.206753e-02 3.045125e-02
## ZBTB26 1.470305e+00 8.262354e+00 2.423728 1.679809e-02 3.963894e-02
## PIAS4 -1.470302e+00 8.388484e+00 -2.576949 1.113256e-02 2.850434e-02
## PALB2 1.469322e+00 4.903372e+00 3.491261 6.655799e-04 3.061977e-03
## ZFYVE21 -1.469044e+00 9.759003e+00 -2.493568 1.395693e-02 3.418509e-02
## MCAT -1.463045e+00 3.748407e+00 -3.317490 1.190653e-03 4.812931e-03
## ACY1 -1.461946e+00 2.749381e+00 -4.453753 1.853121e-05 2.224495e-04
## SLX4IP 1.459541e+00 6.511272e+00 2.693921 8.034771e-03 2.183149e-02
## INPP5E -1.457871e+00 3.934240e+00 -3.262059 1.427024e-03 5.527270e-03
## FRS3 -1.457850e+00 2.447842e+00 -5.313598 4.781743e-07 1.581091e-05
## RTEL1 -1.457834e+00 5.039526e+00 -2.493199 1.397073e-02 3.419873e-02
## CCNF 1.455155e+00 2.866262e+00 3.383032 9.584883e-04 4.056985e-03
## FAHD1 -1.455087e+00 5.384156e+00 -3.059786 2.712457e-03 9.146197e-03
## RAB19 1.451765e+00 2.951988e+00 2.607356 1.023796e-02 2.657522e-02
## INO80C -1.446627e+00 8.325959e+00 -2.988470 3.377928e-03 1.084815e-02
## BTG3 1.445376e+00 3.740489e+00 2.987913 3.383670e-03 1.085734e-02
## ZNF45 1.442963e+00 9.325411e+00 2.536444 1.243322e-02 3.120144e-02
## WRN 1.441589e+00 5.436949e+00 3.878779 1.690032e-04 1.126177e-03
## SKA3 1.438813e+00 1.473196e+00 5.624217 1.164586e-07 5.927895e-06
## ENTPD5 1.437283e+00 5.403470e+00 3.350176 1.068983e-03 4.420846e-03
## HELLS 1.434287e+00 1.789444e+00 6.010297 1.896560e-08 1.711549e-06
## RMI2 1.433998e+00 2.761673e+00 3.093948 2.438647e-03 8.442603e-03
## RAB39B 1.428749e+00 6.234750e+00 2.595695 1.057309e-02 2.728390e-02
## DHFR2 1.426809e+00 5.450357e+00 2.961311 3.668726e-03 1.162155e-02
## NEK1 1.424167e+00 4.852121e+00 3.861005 1.803602e-04 1.182461e-03
## ELOVL6 1.423362e+00 3.519954e+00 3.800004 2.251147e-04 1.385010e-03
## KHK -1.421336e+00 2.326318e+00 -2.715203 7.563526e-03 2.080619e-02
## HSD17B7 1.420613e+00 1.025720e+01 2.923790 4.108438e-03 1.269239e-02
## DNAAF4 -1.419987e+00 3.362708e+00 -3.095361 2.427895e-03 8.414620e-03
## PTER 1.419920e+00 6.386741e+00 2.599689 1.045720e-02 2.703781e-02
## E2F5 1.419499e+00 2.769126e+00 3.427709 8.253366e-04 3.615993e-03
## M1AP 1.418752e+00 2.552213e+00 2.361761 1.973761e-02 4.503426e-02
## CASP6 1.417189e+00 6.602254e+00 4.077986 8.041266e-05 6.518757e-04
## NPFF -1.415209e+00 3.625030e+00 -2.809092 5.769809e-03 1.668074e-02
## HMBOX1 1.411483e+00 4.292516e+00 3.584076 4.837189e-04 2.421657e-03
## OTUD3 1.410794e+00 4.521405e+00 3.394525 9.224309e-04 3.936679e-03
## PRMT3 1.404156e+00 5.450884e+00 4.327666 3.061202e-05 3.205640e-04
## PPIP5K1 1.401754e+00 5.739614e+00 2.419277 1.699547e-02 4.000124e-02
## MTLN -1.398400e+00 2.240073e+00 -2.795541 6.002143e-03 1.724871e-02
## LRP3 -1.398198e+00 2.415816e+00 -2.414130 1.722629e-02 4.043219e-02
## GRPEL2 1.397598e+00 9.412169e+00 2.625299 9.740949e-03 2.553097e-02
## UGDH 1.395814e+00 6.331026e+00 3.022335 3.045111e-03 9.997781e-03
## CASTOR1 -1.394114e+00 1.811159e+00 -5.065561 1.428987e-06 3.567954e-05
## TRDMT1 1.391226e+00 7.586136e+00 2.644541 9.232258e-03 2.441351e-02
## ABRAXAS1 1.388401e+00 7.843159e+00 2.556100 1.178595e-02 2.982320e-02
## HOOK2 -1.387148e+00 3.464195e+00 -4.133587 6.506638e-05 5.567729e-04
## GEMIN5 1.384796e+00 6.379240e+00 2.825605 5.497813e-03 1.604431e-02
## TMEM68 1.384084e+00 7.484016e+00 4.093553 7.579833e-05 6.234176e-04
## ZNF616 1.383325e+00 5.664482e+00 3.527205 5.886069e-04 2.795706e-03
## GOT1 1.382192e+00 6.205814e+00 2.689282 8.140955e-03 2.204881e-02
## FAM207A -1.381358e+00 2.279916e+00 -3.211353 1.680918e-03 6.314759e-03
## SNTA1 -1.379108e+00 1.745718e+00 -3.598448 4.601537e-04 2.332232e-03
## ESPL1 1.377139e+00 1.738439e+00 4.422321 2.101960e-05 2.454985e-04
## HSF4 -1.376636e+00 2.233804e+00 -4.506611 1.497338e-05 1.921908e-04
## IPPK 1.373001e+00 6.941924e+00 3.380409 9.669009e-04 4.080941e-03
## LLGL1 -1.368363e+00 6.318037e+00 -2.466485 1.500336e-02 3.616570e-02
## GLI4 -1.366139e+00 1.514855e+00 -5.102702 1.215302e-06 3.140772e-05
## C8orf58 -1.365667e+00 6.774849e+00 -2.393362 1.818614e-02 4.223371e-02
## POLR3A 1.365316e+00 9.810883e+00 2.526318 1.277897e-02 3.184004e-02
## CHST7 -1.363036e+00 4.284618e+00 -2.513522 1.322820e-02 3.272484e-02
## FAM189B -1.362383e+00 6.273706e+00 -2.506018 1.349815e-02 3.322708e-02
## ANKRD36B 1.360193e+00 3.478468e+00 3.400452 9.043379e-04 3.872003e-03
## LRIG2 1.358330e+00 9.407140e+00 2.336784 2.104548e-02 4.747041e-02
## ERCC4 1.357374e+00 4.003893e+00 3.562046 5.220621e-04 2.557479e-03
## ZSCAN25 1.355866e+00 1.331000e+01 2.475215 1.465864e-02 3.549818e-02
## ZBTB42 -1.353617e+00 1.962875e+00 -3.616590 4.319536e-04 2.220620e-03
## MBTPS2 1.351599e+00 3.748538e+00 4.127965 6.648035e-05 5.652021e-04
## EOGT 1.350181e+00 5.719742e+00 3.973258 1.191986e-04 8.671411e-04
## MOCS2 1.346760e+00 9.137600e+00 2.605123 1.030137e-02 2.671644e-02
## DTWD2 1.345190e+00 4.652920e+00 2.784822 6.191923e-03 1.771254e-02
## AMMECR1 1.340590e+00 5.085063e+00 3.165682 1.945004e-03 7.042396e-03
## PCBD1 -1.339774e+00 4.670637e+00 -3.526065 5.909126e-04 2.802896e-03
## C6orf136 -1.338620e+00 6.670025e+00 -3.013068 3.133043e-03 1.023633e-02
## NOM1 1.338229e+00 7.310789e+00 2.592611 1.066335e-02 2.749887e-02
## RNF8 1.331501e+00 8.267978e+00 2.406580 1.756991e-02 4.110853e-02
## TEDC1 -1.331302e+00 1.382271e+00 -3.142585 2.092776e-03 7.478252e-03
## ACO1 1.330065e+00 5.432511e+00 3.144926 2.077339e-03 7.429806e-03
## BCL11A -1.327171e+00 5.220450e+00 -2.397391 1.799629e-02 4.189127e-02
## C8orf82 -1.325601e+00 2.961072e+00 -3.164895 1.949877e-03 7.050469e-03
## MPP5 1.323941e+00 4.875689e+00 3.533724 5.755769e-04 2.747019e-03
## FBXW9 -1.321036e+00 1.491701e+00 -3.933033 1.383979e-04 9.700942e-04
## SMIM13 1.319378e+00 5.972887e+00 4.381504 2.473488e-05 2.752945e-04
## NPIPB11 1.318941e+00 3.952164e+00 2.944148 3.864187e-03 1.210018e-02
## SYTL4 1.317986e+00 3.325325e+00 2.948378 3.815152e-03 1.198615e-02
## CASK 1.317757e+00 7.032421e+00 2.413440 1.725743e-02 4.049726e-02
## MIEF2 -1.316116e+00 4.339859e+00 -4.083743 7.867587e-05 6.426279e-04
## SH3D21 -1.316026e+00 3.131447e+00 -3.735069 2.842594e-04 1.630230e-03
## TMEM223 -1.315801e+00 4.657895e+00 -2.656196 8.935907e-03 2.378910e-02
## CASR 1.314881e+00 5.321598e+00 2.672055 8.546502e-03 2.294706e-02
## PHYH -1.310800e+00 3.697303e+00 -4.687723 7.125933e-06 1.144412e-04
## KMT5C -1.310042e+00 2.773191e+00 -3.662054 3.682867e-04 1.967514e-03
## ATAD5 1.309173e+00 2.339838e+00 5.441433 2.688355e-07 1.064455e-05
## PARD3 1.308184e+00 3.609685e+00 2.676692 8.435572e-03 2.268614e-02
## CCNE1 1.307204e+00 1.938149e+00 4.349553 2.807658e-05 3.030040e-04
## GID4 1.305907e+00 1.111266e+01 2.593960 1.062379e-02 2.740281e-02
## BICRA -1.304631e+00 5.170974e+00 -2.820153 5.586288e-03 1.626249e-02
## GALE -1.304283e+00 6.604650e+00 -2.458706 1.531657e-02 3.677962e-02
## DPY19L4 1.304210e+00 4.967538e+00 2.888956 4.559478e-03 1.379475e-02
## ALPK3 1.303829e+00 2.586811e+00 2.438487 1.615809e-02 3.842689e-02
## CENPA 1.303511e+00 1.450877e+00 3.785139 2.375209e-04 1.436583e-03
## BMP8B 1.303022e+00 2.344230e+00 4.896786 2.956664e-06 6.014758e-05
## PGAP1 1.301816e+00 2.596372e+00 3.051947 2.779170e-03 9.318903e-03
## SSPN 1.301609e+00 2.199426e+00 2.830643 5.417176e-03 1.585972e-02
## SMIM4 -1.300823e+00 2.872167e+00 -3.180626 1.854622e-03 6.807743e-03
## LRRC23 -1.299251e+00 2.637460e+00 -3.804949 2.211260e-04 1.368765e-03
## RBBP9 1.298483e+00 5.171973e+00 3.256520 1.452907e-03 5.601910e-03
## C1orf112 1.292732e+00 4.741065e+00 5.147850 9.971621e-07 2.737579e-05
## ANKS3 -1.291045e+00 2.066478e+00 -3.622951 4.224585e-04 2.183753e-03
## BORA 1.290854e+00 5.074057e+00 3.159970 1.980620e-03 7.146380e-03
## ZNF668 -1.289867e+00 1.976076e+00 -3.603895 4.515094e-04 2.297255e-03
## ANXA9 1.288372e+00 4.519119e+00 2.841239 5.251122e-03 1.548441e-02
## SLC25A51 1.287836e+00 3.039906e+00 2.696685 7.972089e-03 2.169052e-02
## CBY1 -1.284202e+00 4.702091e+00 -3.886287 1.644131e-04 1.104782e-03
## MTRES1 -1.283426e+00 4.660758e+00 -3.616432 4.321920e-04 2.220883e-03
## TBP 1.283115e+00 9.441433e+00 3.587549 4.779229e-04 2.400748e-03
## ZNF853 -1.282729e+00 2.134514e+00 -3.472352 7.097826e-04 3.205644e-03
## DNAJC27 1.282001e+00 3.945380e+00 3.232580 1.569899e-03 5.940972e-03
## ZSWIM9 -1.277460e+00 4.628154e+00 -3.452792 7.584031e-04 3.371518e-03
## SIMC1 1.273377e+00 5.006946e+00 3.646615 3.888395e-04 2.057798e-03
## EPS8L2 -1.272138e+00 2.161680e+00 -2.991477 3.347079e-03 1.076365e-02
## BTBD3 1.272135e+00 4.210206e+00 2.771129 6.442315e-03 1.831835e-02
## TRIM68 1.269788e+00 6.333891e+00 3.053129 2.769009e-03 9.290084e-03
## ENO3 -1.267011e+00 3.130735e+00 -2.694506 8.021456e-03 2.181064e-02
## CNTLN 1.260988e+00 4.327969e+00 2.845064 5.192332e-03 1.534157e-02
## ACOT11 1.259965e+00 6.939236e+00 2.790762 6.086088e-03 1.746456e-02
## ZFP64 -1.259948e+00 3.132364e+00 -2.767224 6.515392e-03 1.845028e-02
## C11orf49 -1.257658e+00 3.427721e+00 -4.004938 1.058956e-04 7.948873e-04
## UBE2E2 -1.257131e+00 5.685146e+00 -2.920660 4.147231e-03 1.278227e-02
## CCDC153 -1.255547e+00 1.783605e+00 -4.155738 5.977024e-05 5.235414e-04
## LANCL3 1.253916e+00 2.256862e+00 4.521690 1.408570e-05 1.839828e-04
## ZMYND19 -1.253559e+00 3.781144e+00 -2.648000 9.143384e-03 2.421629e-02
## RAD18 1.253494e+00 5.186807e+00 3.699906 3.221594e-04 1.793808e-03
## FADS3 -1.248067e+00 3.447368e+00 -3.165626 1.945349e-03 7.042396e-03
## PBLD 1.246348e+00 3.704078e+00 3.758210 2.616669e-04 1.537587e-03
## GNPNAT1 1.245892e+00 6.601890e+00 2.550121 1.197954e-02 3.026142e-02
## WNT10B -1.242317e+00 2.295194e+00 -3.076848 2.572329e-03 8.789347e-03
## SUV39H2 1.242065e+00 2.070052e+00 6.719719 5.810791e-10 1.722900e-07
## INCENP 1.240659e+00 2.695294e+00 4.662916 7.897433e-06 1.238936e-04
## GAMT -1.240043e+00 1.547255e+00 -3.083195 2.521943e-03 8.657090e-03
## CCDC9B 1.237310e+00 3.939992e+00 2.761601 6.621944e-03 1.868132e-02
## ZW10 1.235773e+00 7.974917e+00 2.836714 5.321464e-03 1.563740e-02
## BAIAP2 -1.233763e+00 3.930960e+00 -2.492257 1.400604e-02 3.426394e-02
## COG8 1.230036e+00 1.378825e+01 2.994886 3.312406e-03 1.068334e-02
## FDX2 -1.229490e+00 2.842168e+00 -2.749014 6.866229e-03 1.923777e-02
## C1orf159 -1.228628e+00 1.311305e+00 -3.971329 1.200583e-04 8.714144e-04
## RHBDD3 -1.226889e+00 1.742790e+00 -3.923433 1.433976e-04 9.930989e-04
## SLC35B4 1.224594e+00 7.843377e+00 2.414525 1.720849e-02 4.039839e-02
## NCR1 1.224381e+00 2.678526e+00 3.340433 1.103978e-03 4.528944e-03
## BRICD5 -1.219632e+00 1.341393e+00 -4.340684 2.907862e-05 3.106959e-04
## FRMD4A 1.218816e+00 3.503061e+00 2.702441 7.842997e-03 2.140804e-02
## C16orf86 -1.217761e+00 1.445341e+00 -3.837036 1.968297e-04 1.261198e-03
## RPP25 -1.214213e+00 2.577725e+00 -2.861509 4.946363e-03 1.472856e-02
## PERP 1.213967e+00 2.418782e+00 2.657486 8.903644e-03 2.372986e-02
## ZNF175 1.213693e+00 5.446901e+00 2.629372 9.631204e-03 2.529364e-02
## LZTFL1 1.211460e+00 6.559705e+00 2.492353 1.400244e-02 3.426394e-02
## TMEM8B -1.211101e+00 2.113129e+00 -4.093610 7.578199e-05 6.234176e-04
## AK9 1.210307e+00 4.325557e+00 2.936441 3.955046e-03 1.231474e-02
## CCDC77 -1.209116e+00 6.643483e+00 -3.821167 2.085101e-04 1.311203e-03
## UPF3B 1.206706e+00 8.109281e+00 3.643588 3.929943e-04 2.070597e-03
## FBXW8 1.204925e+00 3.216289e+00 2.954342 3.746968e-03 1.181575e-02
## KBTBD3 -1.204570e+00 4.509391e+00 -3.288841 1.307826e-03 5.165108e-03
## TEX10 1.203682e+00 6.772992e+00 3.088431 2.481057e-03 8.548905e-03
## ZGRF1 1.202805e+00 2.908208e+00 4.383811 2.450903e-05 2.737073e-04
## PRIM2 1.200782e+00 5.037376e+00 4.464690 1.773387e-05 2.159381e-04
## CDC42BPA 1.196475e+00 1.982018e+00 4.822499 4.052557e-06 7.509895e-05
## CCDC142 -1.192360e+00 6.586726e+00 -3.646796 3.885927e-04 2.057798e-03
## BAMBI 1.192064e+00 1.766533e+00 3.652992 3.802223e-04 2.018840e-03
## ARV1 1.190742e+00 7.050759e+00 3.191641 1.790517e-03 6.621619e-03
## CEP57L1 1.190039e+00 3.212878e+00 6.573353 1.210173e-09 2.609573e-07
## RYR1 -1.183824e+00 1.546502e+00 -4.332534 3.002966e-05 3.171432e-04
## NAV1 1.180032e+00 2.520998e+00 3.205258 1.714123e-03 6.398960e-03
## PCDHA4 1.179882e+00 4.803577e+00 2.742660 6.992621e-03 1.952731e-02
## MZT1 1.179475e+00 8.102980e+00 2.460060 1.526165e-02 3.667001e-02
## PRMT9 1.176319e+00 6.298467e+00 2.491156 1.404742e-02 3.435809e-02
## UBE2D4 -1.173103e+00 5.316323e+00 -2.541264 1.227164e-02 3.086550e-02
## ZNF697 1.171199e+00 3.507411e+00 2.542865 1.221835e-02 3.075984e-02
## ALDH6A1 1.170663e+00 8.584034e+00 2.939380 3.920174e-03 1.223507e-02
## KIF21A 1.167091e+00 2.907779e+00 2.426466 1.667768e-02 3.940186e-02
## SNX33 -1.167060e+00 5.135357e+00 -2.395045 1.810661e-02 4.211501e-02
## TAF5 1.162613e+00 6.139433e+00 5.052659 1.511451e-06 3.742341e-05
## CKB -1.162422e+00 1.329976e+00 -2.606016 1.027597e-02 2.666804e-02
## FAM122C 1.161969e+00 3.209902e+00 4.804780 4.367160e-06 7.893132e-05
## SPIN4 1.159967e+00 2.247519e+00 4.507781 1.490257e-05 1.919049e-04
## SCARB1 -1.157288e+00 3.578753e+00 -3.313975 1.204482e-03 4.855592e-03
## SYNM 1.155582e+00 3.136887e+00 2.562075 1.159525e-02 2.945378e-02
## TNNC2 -1.154809e+00 1.436843e+00 -4.145575 6.214688e-05 5.373324e-04
## ENDOV -1.154225e+00 1.723702e+00 -4.864933 3.385880e-06 6.591599e-05
## FKBP14 1.151920e+00 2.738380e+00 5.360388 3.876453e-07 1.364755e-05
## C11orf71 -1.149495e+00 8.395453e+00 -2.471460 1.480605e-02 3.579713e-02
## TFAP4 -1.147664e+00 1.811167e+00 -4.877708 3.206934e-06 6.360240e-05
## DNAJC30 -1.146739e+00 2.862615e+00 -3.138095 2.122689e-03 7.564631e-03
## USP31 1.146007e+00 4.433027e+00 3.799076 2.258713e-04 1.387734e-03
## MON1A -1.145779e+00 3.209275e+00 -2.636874 9.431984e-03 2.485299e-02
## SLC25A17 1.144996e+00 7.619363e+00 2.776888 6.335897e-03 1.805038e-02
## SLFN14 1.143305e+00 3.494918e+00 2.514099 1.320764e-02 3.268835e-02
## DNAJB4 1.142873e+00 3.413015e+00 3.766866 2.536620e-04 1.509499e-03
## POLE2 1.142797e+00 1.416959e+00 5.180067 8.653397e-07 2.426224e-05
## CHRNE -1.142248e+00 2.193163e+00 -2.654805 8.970814e-03 2.385512e-02
## KIF18B 1.141919e+00 2.002096e+00 4.398109 2.315291e-05 2.635254e-04
## MMS22L 1.141185e+00 3.994012e+00 3.586644 4.794257e-04 2.405240e-03
## MREG 1.135808e+00 3.418508e+00 3.516760 6.100633e-04 2.873451e-03
## TM7SF2 -1.134936e+00 2.276657e+00 -2.609940 1.016499e-02 2.642629e-02
## E2F6 1.131870e+00 6.140207e+00 4.031645 9.579373e-05 7.406217e-04
## PRR12 -1.131797e+00 4.883483e+00 -2.672887 8.526514e-03 2.289956e-02
## KATNAL1 1.131210e+00 3.879421e+00 4.175319 5.543490e-05 4.976972e-04
## PARD6A -1.127702e+00 2.308288e+00 -2.869694 4.827959e-03 1.443034e-02
## ZNF576 -1.125608e+00 6.341939e+00 -2.839251 5.281918e-03 1.555975e-02
## GPATCH1 1.122323e+00 6.017622e+00 3.007475 3.187235e-03 1.035633e-02
## FANCM 1.121034e+00 2.828959e+00 4.243008 4.265324e-05 4.132904e-04
## DSCC1 1.120921e+00 1.277179e+00 5.732365 7.049447e-08 4.400339e-06
## GON7 -1.120604e+00 7.016080e+00 -3.124705 2.214258e-03 7.815803e-03
## DNAL1 1.120255e+00 6.766036e+00 3.431084 8.160179e-04 3.580456e-03
## ZNF629 -1.117579e+00 3.616183e+00 -3.291748 1.295462e-03 5.128233e-03
## LDAH 1.116779e+00 6.194975e+00 2.485342 1.426766e-02 3.477484e-02
## BRIP1 1.112802e+00 2.504174e+00 4.972017 2.142109e-06 4.784447e-05
## TMEM38B 1.112333e+00 3.900253e+00 4.046358 9.062903e-05 7.122997e-04
## CSPP1 1.110452e+00 4.377968e+00 3.381486 9.634378e-04 4.072121e-03
## TMEM135 1.109647e+00 5.174368e+00 2.691985 8.078934e-03 2.192589e-02
## PHLPP2 1.106630e+00 3.143928e+00 2.788763 6.121518e-03 1.755259e-02
## FBXO22 1.106205e+00 1.132537e+01 2.583961 1.092024e-02 2.805765e-02
## MED19 -1.105465e+00 5.387049e+00 -2.883546 4.633471e-03 1.395069e-02
## TOX 1.105005e+00 4.183430e+00 2.354340 2.011849e-02 4.577999e-02
## PNMA3 -1.104871e+00 1.748211e+00 -2.685237 8.234575e-03 2.227185e-02
## NEIL2 -1.103645e+00 4.264154e+00 -2.479118 1.450686e-02 3.521701e-02
## EFCAB7 1.103244e+00 3.072523e+00 3.212073 1.677037e-03 6.302175e-03
## MFSD3 -1.102651e+00 1.270886e+00 -3.279741 1.347243e-03 5.290828e-03
## CIT 1.100695e+00 1.329366e+00 4.408147 2.224433e-05 2.551429e-04
## GPAM 1.092936e+00 3.870907e+00 3.202375 1.730038e-03 6.448226e-03
## MVK -1.092883e+00 3.331573e+00 -2.768322 6.494771e-03 1.842775e-02
## SEMA3E -1.092491e+00 1.539377e+00 -3.775828 2.456198e-04 1.471981e-03
## FANCL 1.092352e+00 2.872283e+00 4.368740 2.602121e-05 2.859173e-04
## ZKSCAN3 1.088319e+00 4.269976e+00 4.556329 1.223480e-05 1.664045e-04
## COA7 1.086880e+00 5.340126e+00 3.385818 9.496295e-04 4.028114e-03
## PRICKLE3 -1.085294e+00 3.878913e+00 -4.469803 1.737262e-05 2.138771e-04
## IFNLR1 1.085119e+00 5.060651e+00 2.939775 3.915499e-03 1.222369e-02
## CHAF1A 1.081438e+00 6.383250e+00 2.437471 1.620147e-02 3.850690e-02
## WASL 1.078930e+00 5.664260e+00 3.253809 1.465734e-03 5.638536e-03
## SLC27A5 -1.078389e+00 1.237225e+00 -3.116722 2.270582e-03 7.971907e-03
## HARBI1 1.077877e+00 4.396917e+00 4.107804 7.179724e-05 5.988152e-04
## NECAB3 -1.077456e+00 2.165013e+00 -3.220406 1.632707e-03 6.147270e-03
## APOOL 1.074606e+00 5.427433e+00 2.619770 9.891730e-03 2.587415e-02
## PHETA2 -1.071668e+00 4.191451e+00 -3.023318 3.035913e-03 9.976705e-03
## TADA1 1.069702e+00 6.346924e+00 2.567344 1.142941e-02 2.912609e-02
## RUFY2 1.069329e+00 5.046102e+00 3.196803 1.761191e-03 6.541725e-03
## C19orf47 -1.067553e+00 5.208254e+00 -2.828663 5.448733e-03 1.593964e-02
## ZNF714 1.065193e+00 3.046234e+00 3.901393 1.555352e-04 1.056499e-03
## SERPINF1 -1.064518e+00 3.423952e+00 -2.370833 1.928067e-02 4.418720e-02
## HAUS8 -1.063832e+00 5.389528e+00 -2.364172 1.961524e-02 4.482404e-02
## RRS1 -1.063079e+00 4.683742e+00 -2.883468 4.634546e-03 1.395069e-02
## ZNF526 -1.061208e+00 5.420247e+00 -2.364438 1.960178e-02 4.480191e-02
## MLYCD -1.060975e+00 6.967407e+00 -2.935137 3.970607e-03 1.235022e-02
## MTERF2 -1.054939e+00 4.866048e+00 -2.791658 6.070270e-03 1.742338e-02
## NDUFAF2 -1.053223e+00 4.506628e+00 -2.575817 1.116717e-02 2.856830e-02
## SLC2A8 -1.053145e+00 1.523039e+00 -3.416180 8.579260e-04 3.731207e-03
## BAG2 1.050046e+00 3.437048e+00 4.425052 2.079120e-05 2.439007e-04
## ZGLP1 -1.049694e+00 2.340164e+00 -2.604113 1.033019e-02 2.677361e-02
## FOXP3 -1.049349e+00 1.938904e+00 -2.394482 1.813318e-02 4.216852e-02
## CA11 -1.048408e+00 2.080973e+00 -2.684917 8.242025e-03 2.228692e-02
## ZNF383 -1.046261e+00 7.555948e+00 -2.716896 7.527139e-03 2.072266e-02
## INVS 1.045930e+00 4.965375e+00 3.610322 4.415074e-04 2.255072e-03
## SCMH1 1.045632e+00 5.731456e+00 2.318709 2.203904e-02 4.923394e-02
## PTPRS -1.043870e+00 1.541531e+00 -3.457349 7.468024e-04 3.330254e-03
## ACBD7 1.043573e+00 2.422620e+00 2.333768 2.120851e-02 4.777439e-02
## MCC 1.039340e+00 3.368672e+00 2.427056 1.665186e-02 3.935157e-02
## ANKRD26 1.038639e+00 2.666260e+00 3.755998 2.637504e-04 1.543968e-03
## NEMP2 1.033514e+00 4.109036e+00 3.233949 1.562979e-03 5.920451e-03
## LRRCC1 1.031614e+00 3.115080e+00 3.296963 1.273560e-03 5.055632e-03
## KRBA1 -1.030994e+00 2.329323e+00 -3.876633 1.703374e-04 1.129867e-03
## USP45 1.030584e+00 3.448391e+00 2.756871 6.712792e-03 1.889821e-02
## UBAP2 1.030376e+00 6.711356e+00 2.557697 1.173470e-02 2.972523e-02
## PRIMPOL 1.030308e+00 7.038778e+00 2.455051 1.546575e-02 3.706919e-02
## FGFRL1 -1.028458e+00 3.056748e+00 -2.391130 1.829203e-02 4.242149e-02
## C1orf131 1.028269e+00 1.079578e+01 2.355723 2.004704e-02 4.563491e-02
## DAG1 1.024625e+00 8.247110e+00 2.349221 2.038497e-02 4.627096e-02
## PEMT -1.023585e+00 1.908379e+00 -3.590853 4.724692e-04 2.380410e-03
## NFS1 1.023320e+00 1.025568e+01 2.662577 8.777339e-03 2.343522e-02
## ZNF764 -1.022915e+00 4.090278e+00 -4.215778 4.741214e-05 4.431111e-04
## BNIPL 1.022514e+00 2.612308e+00 2.846792 5.165970e-03 1.527129e-02
## LIMS2 -1.014497e+00 1.200250e+00 -3.205052 1.715251e-03 6.401157e-03
## BBS7 1.013915e+00 4.894015e+00 2.806736 5.809610e-03 1.676039e-02
## NR1D1 -1.012471e+00 1.989791e+00 -3.033426 2.942862e-03 9.746534e-03
## FZD2 -1.011373e+00 2.146637e+00 -3.295272 1.280623e-03 5.079660e-03
## MRM1 -1.009159e+00 2.091572e+00 -3.200062 1.742909e-03 6.488040e-03
## RAI1 -1.006647e+00 2.227215e+00 -4.279488 3.699167e-05 3.686733e-04
## MPV17L 1.006293e+00 3.473934e+00 3.025112 3.019203e-03 9.935241e-03
## RPH3AL -1.006287e+00 2.837813e+00 -2.387425 1.846911e-02 4.274857e-02
## ACVRL1 -1.003789e+00 2.229447e+00 -2.647839 9.147497e-03 2.422177e-02
## FUT11 1.001800e+00 3.035451e+00 2.796809 5.980052e-03 1.718939e-02
## SLC2A13 1.001113e+00 2.540598e+00 4.057947 8.674944e-05 6.918953e-04
## PPP1R32 -9.988175e-01 1.814344e+00 -4.762634 5.213583e-06 9.033359e-05
## MPP6 9.974643e-01 2.802503e+00 3.040297 2.881121e-03 9.574138e-03
## ZFYVE28 -9.969954e-01 2.388811e+00 -2.759326 6.665506e-03 1.879974e-02
## CHAF1B 9.952676e-01 3.494046e+00 3.970335 1.205034e-04 8.735758e-04
## DOCK7 9.933157e-01 2.774259e+00 3.010277 3.159979e-03 1.029880e-02
## BIVM 9.912949e-01 3.791649e+00 2.833713 5.368587e-03 1.574467e-02
## ORC6 9.911427e-01 1.587685e+00 4.903894 2.868357e-06 5.865295e-05
## MOB3B 9.895955e-01 2.925225e+00 3.226900 1.598919e-03 6.033465e-03
## ZDHHC23 9.893167e-01 2.360267e+00 3.760860 2.591912e-04 1.530880e-03
## CCNJ 9.867630e-01 3.942130e+00 2.725412 7.346486e-03 2.036208e-02
## CENPQ 9.861794e-01 3.905702e+00 2.726448 7.324789e-03 2.030669e-02
## CENPM 9.848174e-01 1.562284e+00 2.331749 2.131824e-02 4.799436e-02
## GOLGA8H 9.818506e-01 3.468855e+00 2.381309 1.876466e-02 4.327219e-02
## ZBTB32 9.790751e-01 1.441802e+00 2.359018 1.987767e-02 4.530152e-02
## LTO1 -9.787928e-01 9.091057e+00 -2.391563 1.827148e-02 4.238211e-02
## TIPIN 9.783798e-01 2.310445e+00 4.743465 5.649222e-06 9.585089e-05
## MARS2 9.773968e-01 3.196093e+00 2.907852 4.309464e-03 1.318974e-02
## MAP4K3 9.744551e-01 3.646618e+00 2.611772 1.011355e-02 2.630986e-02
## COL8A2 -9.716735e-01 2.827473e+00 -2.966729 3.608938e-03 1.145971e-02
## STON1 9.689990e-01 1.746819e+00 4.591600 1.059240e-05 1.519056e-04
## ZNF71 -9.675225e-01 3.016998e+00 -3.245330 1.506543e-03 5.752609e-03
## ABCC6 9.671808e-01 3.504481e+00 2.618790 9.918669e-03 2.591088e-02
## DOLK -9.655137e-01 4.295139e+00 -2.839659 5.275584e-03 1.554495e-02
## SGO1 9.623787e-01 1.233835e+00 5.502015 2.040809e-07 8.769564e-06
## DTX1 -9.621196e-01 2.220793e+00 -2.321337 2.189209e-02 4.898872e-02
## ARHGAP32 9.612332e-01 2.544693e+00 3.362479 1.026280e-03 4.282785e-03
## GAN 9.611026e-01 3.963195e+00 3.298307 1.267970e-03 5.042965e-03
## AEBP1 -9.604309e-01 1.780795e+00 -2.466276 1.501170e-02 3.617205e-02
## IKZF4 9.590657e-01 2.972551e+00 3.308750 1.225315e-03 4.919513e-03
## IER5L -9.564019e-01 9.050714e-01 -6.730716 5.497625e-10 1.671842e-07
## GTPBP3 -9.546376e-01 3.047540e+00 -2.411715 1.733556e-02 4.065317e-02
## MOSMO 9.536097e-01 4.881234e+00 2.320114 2.196037e-02 4.912297e-02
## FNBP1L 9.533320e-01 2.346202e+00 3.253530 1.467064e-03 5.639992e-03
## SPSB1 9.510276e-01 2.543345e+00 4.003684 1.063939e-04 7.969243e-04
## SHISAL2A -9.508367e-01 1.921058e+00 -2.427202 1.664545e-02 3.934923e-02
## PDE6G -9.496942e-01 1.858678e+00 -3.501806 6.420681e-04 2.979236e-03
## ERI2 9.486358e-01 3.443466e+00 3.634176 4.061828e-04 2.116576e-03
## ZNF619 9.484269e-01 5.841133e+00 3.117106 2.267842e-03 7.964644e-03
## MITF 9.470966e-01 3.186825e+00 3.018595 3.080321e-03 1.008909e-02
## LSM11 9.458718e-01 3.490817e+00 3.722933 2.968348e-04 1.682017e-03
## MTHFD1L 9.451989e-01 2.951414e+00 2.942873 3.879086e-03 1.213445e-02
## CCDC30 9.444926e-01 2.899017e+00 3.316586 1.194198e-03 4.825617e-03
## GINS3 9.444554e-01 2.159317e+00 4.475139 1.700314e-05 2.101402e-04
## PDCL 9.440405e-01 1.126053e+01 2.366730 1.948615e-02 4.457199e-02
## LMF1 -9.438660e-01 2.269577e+00 -2.987491 3.388034e-03 1.086296e-02
## LIN9 9.433957e-01 1.900948e+00 5.134973 1.055159e-06 2.824947e-05
## PTCD2 9.420270e-01 3.773746e+00 3.001749 3.243616e-03 1.051073e-02
## CTU2 -9.378092e-01 2.152264e+00 -3.034819 2.930247e-03 9.715607e-03
## MZF1 -9.373612e-01 2.037143e+00 -4.408763 2.218970e-05 2.550095e-04
## ANKRD39 -9.369924e-01 2.196243e+00 -2.747150 6.903087e-03 1.931822e-02
## SFN -9.367490e-01 1.388447e+00 -3.114901 2.283614e-03 8.008178e-03
## GSTO2 9.339694e-01 2.164190e+00 2.351372 2.027264e-02 4.606006e-02
## PCBP3 -9.314674e-01 1.923354e+00 -2.532492 1.256717e-02 3.147101e-02
## RTTN 9.307300e-01 3.618170e+00 2.519393 1.302036e-02 3.231258e-02
## KIAA1586 9.288270e-01 4.083829e+00 3.315246 1.199465e-03 4.839818e-03
## KRBA2 9.262405e-01 5.176327e+00 3.690605 3.329585e-04 1.831580e-03
## LNX2 9.261741e-01 5.372403e+00 2.913639 4.235455e-03 1.300349e-02
## DECR2 -9.250100e-01 1.056399e+00 -4.619042 9.464040e-06 1.399545e-04
## PNPLA7 -9.236918e-01 1.013381e+00 -3.743499 2.758231e-04 1.594182e-03
## CEP131 -9.190640e-01 1.575724e+00 -4.137107 6.419584e-05 5.513126e-04
## PROSER3 -9.143807e-01 6.664087e+00 -2.702665 7.838027e-03 2.139940e-02
## GNB1L -9.128182e-01 8.240062e-01 -4.550618 1.252292e-05 1.687932e-04
## CHRNA10 -9.114513e-01 2.490098e+00 -3.185789 1.824314e-03 6.711030e-03
## A1BG -9.094955e-01 1.011980e+00 -3.310366 1.218839e-03 4.900148e-03
## CRYM 9.089431e-01 1.360570e+00 2.851898 5.088785e-03 1.508341e-02
## GCSH 9.077403e-01 2.159640e+00 3.258314 1.444475e-03 5.580286e-03
## RWDD2B 9.076375e-01 4.272339e+00 2.699736 7.903446e-03 2.153339e-02
## LRP12 9.067141e-01 2.042920e+00 3.170632 1.914619e-03 6.959051e-03
## RBM11 9.056683e-01 1.756431e+00 3.191917 1.788940e-03 6.617851e-03
## TIMM23B 9.036383e-01 3.428654e+00 2.864314 4.905494e-03 1.462523e-02
## PPP1R16A -9.022673e-01 1.630258e+00 -3.353824 1.056152e-03 4.375946e-03
## C2orf42 9.003941e-01 8.084941e+00 2.345011 2.060652e-02 4.663995e-02
## FAM104B -9.002522e-01 5.192011e+00 -2.615295 1.001531e-02 2.611732e-02
## C1orf109 9.002500e-01 3.256964e+00 3.042723 2.859609e-03 9.526673e-03
## TNK1 -8.999750e-01 1.346362e+00 -2.957309 3.713473e-03 1.174135e-02
## ZNF777 -8.992725e-01 3.357228e+00 -2.641907 9.300442e-03 2.456642e-02
## MECR -8.941518e-01 2.993961e+00 -2.452090 1.558755e-02 3.729441e-02
## ZSCAN9 8.937529e-01 4.782326e+00 2.658192 8.886038e-03 2.369877e-02
## IZUMO4 -8.934447e-01 1.271574e+00 -3.826792 2.042964e-04 1.291067e-03
## PCGF6 8.923958e-01 3.656142e+00 3.977366 1.173876e-04 8.588631e-04
## CHST14 -8.913309e-01 4.590768e+00 -2.933557 3.989538e-03 1.239610e-02
## COX10 8.907751e-01 5.420455e+00 2.440637 1.606671e-02 3.823258e-02
## MND1 8.890727e-01 1.056202e+00 4.456760 1.830861e-05 2.210862e-04
## CCDC106 -8.876826e-01 1.103475e+00 -4.979868 2.070910e-06 4.660529e-05
## ERCC6L 8.834414e-01 1.118754e+00 4.857381 3.496177e-06 6.731277e-05
## MAB21L3 8.784949e-01 1.583380e+00 2.864029 4.909626e-03 1.463219e-02
## FANCE 8.779516e-01 4.627691e+00 2.625861 9.725755e-03 2.550242e-02
## KLHL17 -8.773304e-01 1.517939e+00 -3.602120 4.543093e-04 2.308530e-03
## ZNF852 8.724034e-01 2.387923e+00 3.748669 2.707668e-04 1.572622e-03
## IL12RB2 8.709867e-01 1.931912e+00 2.902802 4.375022e-03 1.334562e-02
## ANKRD36C 8.707438e-01 1.395668e+00 4.536166 1.328151e-05 1.761971e-04
## UACA 8.688168e-01 3.029000e+00 2.369751 1.933467e-02 4.429384e-02
## FUT10 8.677539e-01 1.775982e+00 3.368185 1.007022e-03 4.218749e-03
## PIF1 8.618225e-01 1.555607e+00 2.879258 4.692894e-03 1.409413e-02
## LIPH 8.614882e-01 1.626697e+00 4.171715 5.620961e-05 5.019924e-04
## ERCC8 8.577116e-01 5.337944e+00 2.692239 8.073117e-03 2.192014e-02
## CTU1 -8.533756e-01 2.318572e+00 -2.562742 1.157413e-02 2.943796e-02
## OLFM2 -8.468852e-01 1.435571e+00 -3.348337 1.075508e-03 4.442887e-03
## F12 -8.465408e-01 1.546974e+00 -3.041651 2.869100e-03 9.544887e-03
## ZSCAN12 8.459137e-01 1.838900e+00 3.341220 1.101109e-03 4.520304e-03
## TMEM97 8.442692e-01 1.949132e+00 3.993625 1.104745e-04 8.183808e-04
## RBM44 8.425303e-01 2.126454e+00 2.318336 2.206001e-02 4.926223e-02
## CACNB1 -8.398706e-01 2.481048e+00 -3.148885 2.051472e-03 7.352814e-03
## LGMN 8.383033e-01 3.548687e+00 2.314243 2.229083e-02 4.962816e-02
## MORN3 -8.376128e-01 2.673827e+00 -2.692788 8.060581e-03 2.189111e-02
## PCOLCE -8.355067e-01 1.317475e+00 -4.256799 4.042143e-05 3.945664e-04
## MC1R -8.324667e-01 1.474273e+00 -3.367173 1.010414e-03 4.229973e-03
## CENPL 8.315384e-01 2.131621e+00 5.180424 8.639760e-07 2.426224e-05
## CEP76 8.288247e-01 2.212199e+00 4.811195 4.250620e-06 7.755747e-05
## STARD5 8.240401e-01 2.043127e+00 3.866716 1.766340e-04 1.161241e-03
## KIF3A 8.213346e-01 3.951729e+00 2.383216 1.867204e-02 4.310891e-02
## RDH10 8.211827e-01 4.159491e+00 3.959880 1.252829e-04 8.994281e-04
## CPLANE1 8.124036e-01 2.175872e+00 2.788338 6.129082e-03 1.756243e-02
## WWC2 8.123586e-01 2.016655e+00 2.919421 4.162677e-03 1.281655e-02
## B3GLCT 8.104322e-01 3.320756e+00 3.287446 1.313800e-03 5.178355e-03
## SHLD3 8.103918e-01 3.902340e+00 3.060472 2.706688e-03 9.132667e-03
## TRMT10A 8.089612e-01 4.627912e+00 2.407530 1.752632e-02 4.102469e-02
## XRCC2 8.081690e-01 1.202861e+00 5.711696 7.762322e-08 4.696446e-06
## LRRC29 -8.080372e-01 1.152030e+00 -4.561514 1.197884e-05 1.638628e-04
## PLAG1 8.041363e-01 2.677675e+00 2.912018 4.256061e-03 1.305999e-02
## PLK2 8.010018e-01 2.035528e+00 2.802771 5.877137e-03 1.693461e-02
## TEC 8.004041e-01 4.397626e+00 2.421589 1.689270e-02 3.981466e-02
## ZNF219 -7.970565e-01 1.032236e+00 -4.414888 2.165349e-05 2.500588e-04
## ZNF653 -7.906950e-01 1.136965e+00 -3.995851 1.095587e-04 8.141394e-04
## CCDC86 -7.892318e-01 3.068816e+00 -2.826485 5.483640e-03 1.601082e-02
## CCDC189 -7.871423e-01 1.440579e+00 -3.879140 1.687798e-04 1.125831e-03
## MTFR2 7.856086e-01 1.739175e+00 4.766998 5.119053e-06 8.902048e-05
## CDH13 -7.842200e-01 1.223656e+00 -5.041685 1.585219e-06 3.876432e-05
## CABLES2 7.819527e-01 5.607016e+00 2.544912 1.215056e-02 3.060868e-02
## AK4 7.813850e-01 2.908255e+00 2.437962 1.618049e-02 3.847246e-02
## CEP83 7.791999e-01 2.951110e+00 3.497868 6.507566e-04 3.011305e-03
## OIP5 7.785611e-01 1.118985e+00 3.512285 6.194809e-04 2.903970e-03
## ZNF888 7.767257e-01 2.734716e+00 2.520607 1.297775e-02 3.222640e-02
## PDE6B -7.756191e-01 2.813572e+00 -2.314911 2.225301e-02 4.955328e-02
## NEIL3 7.676353e-01 9.016860e-01 3.333436 1.129765e-03 4.612397e-03
## SRFBP1 7.625014e-01 3.240072e+00 2.556176 1.178350e-02 2.982320e-02
## SHISA4 -7.507021e-01 1.411928e+00 -2.977631 3.491335e-03 1.113996e-02
## FSCN1 -7.469945e-01 1.136395e+00 -4.551355 1.248539e-05 1.687932e-04
## FBXO10 7.465053e-01 2.625028e+00 2.890326 4.540909e-03 1.375611e-02
## ZFP1 7.456972e-01 3.471857e+00 2.439604 1.611054e-02 3.832150e-02
## RSKR 7.452049e-01 3.583314e+00 2.733905 7.170260e-03 1.991552e-02
## EIF5A2 7.443330e-01 4.360189e+00 2.919282 4.164404e-03 1.281666e-02
## PRX -7.442768e-01 1.646852e+00 -3.927257 1.413858e-04 9.836815e-04
## MANEAL -7.434681e-01 1.880665e+00 -3.679936 3.457667e-04 1.882825e-03
## NAGS -7.411353e-01 9.556516e-01 -6.176749 8.511311e-09 9.800402e-07
## ZNF578 -7.352209e-01 1.902252e+00 -3.638252 4.004206e-04 2.092066e-03
## SERPINF2 -7.330217e-01 1.182672e+00 -3.473718 7.064984e-04 3.196898e-03
## PYCR3 -7.303397e-01 1.437874e+00 -2.317044 2.213261e-02 4.936859e-02
## PAWR 7.301421e-01 2.197997e+00 3.481005 6.892243e-04 3.140109e-03
## CCDC13 -7.298097e-01 1.952256e+00 -3.231138 1.577219e-03 5.961063e-03
## ST8SIA6 7.291051e-01 1.627960e+00 2.911530 4.262293e-03 1.307045e-02
## TTLL1 -7.249201e-01 2.397822e+00 -2.889534 4.551639e-03 1.377806e-02
## POU5F1 7.231083e-01 2.925267e+00 2.405652 1.761255e-02 4.118392e-02
## C6orf226 -7.225258e-01 9.471067e-01 -4.649463 8.348996e-06 1.281414e-04
## UNC5A -7.221349e-01 8.168418e-01 -3.716087 3.041597e-04 1.713698e-03
## MLLT11 7.200543e-01 2.757407e+00 3.176588 1.878651e-03 6.870427e-03
## RFXAP 7.181807e-01 3.263114e+00 2.982943 3.435327e-03 1.097898e-02
## MORN2 -7.163130e-01 1.565137e+00 -4.390730 2.384352e-05 2.690620e-04
## PEX10 -7.136907e-01 2.277136e+00 -3.525990 5.910661e-04 2.802896e-03
## TRPM4 -7.103095e-01 7.660720e-01 -4.380972 2.478728e-05 2.755175e-04
## MAP3K21 7.097237e-01 1.711377e+00 3.628314 4.146075e-04 2.151026e-03
## AP1S3 6.990810e-01 2.740719e+00 3.668405 3.601340e-04 1.932665e-03
## SCUBE1 -6.946466e-01 1.213141e+00 -4.523809 1.396514e-05 1.836215e-04
## FAM210A 6.924837e-01 4.477924e+00 2.365173 1.956464e-02 4.472564e-02
## FBXL8 -6.914778e-01 6.848887e-01 -3.308908 1.224683e-03 4.918638e-03
## HSD17B13 6.902109e-01 1.965186e+00 2.499741 1.372774e-02 3.372226e-02
## NANP 6.898222e-01 2.393846e+00 4.381640 2.472154e-05 2.752945e-04
## KLHL26 -6.893275e-01 3.219880e+00 -3.147773 2.058702e-03 7.374270e-03
## RAD54B 6.893022e-01 1.374293e+00 4.631975 8.973442e-06 1.354008e-04
## ALG10 6.864603e-01 1.896770e+00 5.128735 1.084419e-06 2.890159e-05
## FAM86B1 -6.843883e-01 2.181992e+00 -2.349723 2.035874e-02 4.622420e-02
## PCDH12 -6.818857e-01 1.708182e+00 -3.707251 3.138671e-04 1.758214e-03
## BMP1 -6.812136e-01 1.842075e+00 -2.871426 4.803232e-03 1.436367e-02
## LRFN4 -6.803037e-01 9.580936e-01 -3.387503 9.443078e-04 4.010506e-03
## MAMDC4 -6.791950e-01 8.934200e-01 -3.620523 4.260589e-04 2.197555e-03
## C10orf143 -6.790101e-01 1.522015e+00 -3.132499 2.160522e-03 7.663658e-03
## SOX12 -6.759388e-01 2.236598e+00 -2.315123 2.224101e-02 4.953584e-02
## ZNF720 6.744596e-01 4.263660e+00 2.334595 2.116368e-02 4.769557e-02
## THAP2 6.741284e-01 3.164721e+00 2.401258 1.781573e-02 4.154436e-02
## PIGW 6.733606e-01 2.418164e+00 3.489640 6.692651e-04 3.071782e-03
## URB2 6.710011e-01 2.695909e+00 2.682307 8.303003e-03 2.242624e-02
## FZD3 6.664492e-01 1.567895e+00 3.834587 1.985910e-04 1.269698e-03
## RGS16 6.655516e-01 1.018245e+00 3.101537 2.381401e-03 8.285741e-03
## MAP3K10 -6.639000e-01 2.064994e+00 -2.672921 8.525679e-03 2.289956e-02
## ZNF568 -6.631141e-01 2.682268e+00 -2.887616 4.577707e-03 1.383578e-02
## CARMIL1 6.591257e-01 1.526675e+00 3.055153 2.751699e-03 9.252949e-03
## NDFIP2 6.577256e-01 1.610832e+00 2.906700 4.324342e-03 1.322163e-02
## PDSS2 6.575495e-01 6.071353e+00 2.351377 2.027236e-02 4.606006e-02
## IL23A -6.572435e-01 1.405165e+00 -2.763208 6.591327e-03 1.861265e-02
## EME1 6.554512e-01 8.328714e-01 5.013969 1.787461e-06 4.174712e-05
## CHCHD6 -6.550458e-01 8.816320e-01 -3.261439 1.429897e-03 5.532978e-03
## NPIPA8 6.538977e-01 1.905008e+00 2.888103 4.571071e-03 1.381924e-02
## SPTBN5 -6.537561e-01 1.637391e+00 -2.828509 5.451196e-03 1.593964e-02
## ME3 -6.536749e-01 1.309368e+00 -3.057549 2.731341e-03 9.193498e-03
## NUDT17 -6.534055e-01 2.127483e+00 -3.414880 8.616765e-04 3.742733e-03
## FGF11 -6.531670e-01 2.107552e+00 -2.597412 1.052312e-02 2.717464e-02
## GRAMD2B 6.519079e-01 1.933442e+00 3.166094 1.942458e-03 7.038664e-03
## UNC13B 6.518226e-01 1.599115e+00 3.355231 1.051241e-03 4.362394e-03
## GPRIN1 6.515291e-01 2.205504e+00 2.693913 8.034945e-03 2.183149e-02
## IL17RC -6.497637e-01 1.757813e+00 -2.498173 1.378566e-02 3.385752e-02
## C18orf54 6.474866e-01 1.642474e+00 4.525153 1.388918e-05 1.828254e-04
## PAK4 -6.415650e-01 2.334588e+00 -3.115757 2.277484e-03 7.990346e-03
## TMPRSS13 -6.393304e-01 1.618883e+00 -2.955246 3.736730e-03 1.179287e-02
## LAMB3 -6.386282e-01 7.699130e-01 -2.414972 1.718836e-02 4.036711e-02
## POLR3B 6.354001e-01 3.886780e+00 3.068569 2.639464e-03 8.964504e-03
## C7orf31 6.345086e-01 4.481170e+00 2.677529 8.415694e-03 2.265323e-02
## ZBTB46 -6.344479e-01 1.175160e+00 -3.700589 3.213801e-04 1.791151e-03
## TDRKH 6.335389e-01 2.357464e+00 2.716891 7.527251e-03 2.072266e-02
## AKAP5 6.329157e-01 1.764332e+00 2.705632 7.772272e-03 2.125413e-02
## TRIM46 -6.259933e-01 1.150601e+00 -3.011728 3.145942e-03 1.026716e-02
## ATL1 6.216647e-01 1.615097e+00 3.742589 2.767224e-04 1.596294e-03
## SLC38A6 -6.214847e-01 3.370163e+00 -2.448507 1.573604e-02 3.759659e-02
## MTFR1 6.201385e-01 2.852083e+00 3.775284 2.461013e-04 1.474122e-03
## EML6 6.182216e-01 1.241100e+00 3.637078 4.020716e-04 2.098842e-03
## FICD 6.171059e-01 2.978338e+00 2.547573 1.206294e-02 3.044614e-02
## TYW1B 6.165642e-01 2.262828e+00 2.362173 1.971667e-02 4.501246e-02
## WDR62 6.155587e-01 9.978733e-01 3.569816 5.082233e-04 2.507564e-03
## ZCCHC4 6.141373e-01 3.306997e+00 2.885697 4.603922e-03 1.388766e-02
## ZC3H12C 6.122879e-01 1.611875e+00 3.449759 7.662160e-04 3.399671e-03
## KCNQ5 6.117867e-01 1.012879e+00 4.570307 1.155645e-05 1.599294e-04
## FAM216A -6.063096e-01 2.930699e+00 -2.969113 3.582909e-03 1.138620e-02
## LMLN 6.059906e-01 1.771806e+00 3.462340 7.342911e-04 3.288781e-03
## PTK6 -6.027564e-01 1.471093e+00 -3.267443 1.402276e-03 5.456364e-03
## RIMS3 6.016682e-01 2.478128e+00 2.785275 6.183786e-03 1.769577e-02
## MOCS3 -5.968267e-01 5.218685e+00 -2.356232 2.002075e-02 4.560133e-02
## USP54 5.955624e-01 1.902972e+00 3.675482 3.512505e-04 1.901781e-03
## C3orf14 -5.955280e-01 1.314562e+00 -3.338078 1.112595e-03 4.554843e-03
## TMEM53 -5.950469e-01 9.642774e-01 -4.627890 9.125684e-06 1.368276e-04
## REXO5 5.949838e-01 1.370325e+00 3.189788 1.801155e-03 6.648522e-03
## KCNA2 5.939239e-01 8.876496e-01 3.983257 1.148367e-04 8.438434e-04
## KIF24 5.932156e-01 8.539490e-01 4.983605 2.037834e-06 4.603564e-05
## SPATA33 -5.905162e-01 1.245432e+00 -2.852864 5.074301e-03 1.505660e-02
## SDR42E1 5.887969e-01 1.897883e+00 2.524667 1.283616e-02 3.195462e-02
## ZFP69 5.875319e-01 3.746610e+00 2.574534 1.120652e-02 2.864425e-02
## PIK3R3 5.870154e-01 2.134135e+00 2.384725 1.859906e-02 4.299900e-02
## ELOVL3 5.862599e-01 1.462435e+00 2.443486 1.594629e-02 3.797650e-02
## C21orf58 5.798236e-01 1.457600e+00 3.240657 1.529481e-03 5.819585e-03
## CATIP -5.783819e-01 5.528792e-01 -5.324694 4.550003e-07 1.533041e-05
## PLXNA1 -5.765600e-01 1.748965e+00 -2.320967 2.191270e-02 4.902558e-02
## ANO5 5.760159e-01 1.203212e+00 2.879790 4.685484e-03 1.407544e-02
## CCDC96 -5.759382e-01 1.130881e+00 -4.276227 3.746679e-05 3.727820e-04
## BBOF1 5.757028e-01 1.678686e+00 2.582773 1.095594e-02 2.811281e-02
## CENPP 5.709713e-01 2.306867e+00 2.505762 1.350745e-02 3.324307e-02
## NPHP4 -5.683041e-01 3.062974e+00 -2.574186 1.121721e-02 2.865923e-02
## KRT18 -5.679887e-01 1.647307e+00 -2.452995 1.555021e-02 3.722760e-02
## YAE1 -5.641323e-01 2.625677e+00 -2.539167 1.234169e-02 3.101112e-02
## CALHM5 5.580827e-01 1.104768e+00 3.504134 6.369837e-04 2.963663e-03
## MFSD4B 5.509260e-01 3.108766e+00 2.678358 8.396061e-03 2.262092e-02
## ZNF547 -5.500084e-01 1.212514e+00 -3.519604 6.041495e-04 2.851259e-03
## KDM8 -5.499274e-01 2.048480e+00 -2.421852 1.688106e-02 3.979515e-02
## RHOBTB3 5.487807e-01 1.656373e+00 2.458722 1.531591e-02 3.677962e-02
## AFAP1L2 5.471429e-01 1.847041e+00 2.613893 1.005429e-02 2.617868e-02
## EPDR1 5.440123e-01 1.176926e+00 3.929352 1.402950e-04 9.793399e-04
## PLEKHA5 5.414153e-01 2.092805e+00 2.468757 1.491297e-02 3.599428e-02
## COMTD1 -5.391831e-01 7.595181e-01 -2.739674 7.052770e-03 1.965825e-02
## PDE3A 5.388162e-01 1.338506e+00 2.526819 1.276168e-02 3.182327e-02
## POLG2 -5.378548e-01 4.241741e+00 -2.409037 1.745744e-02 4.090186e-02
## RCCD1 5.366254e-01 2.116400e+00 2.538122 1.237675e-02 3.107286e-02
## TMEM241 5.348731e-01 2.146202e+00 2.985892 3.404591e-03 1.090425e-02
## DAGLA -5.295466e-01 8.452911e-01 -3.600439 4.569755e-04 2.320090e-03
## TXLNB 5.286637e-01 1.520963e+00 2.416298 1.712873e-02 4.025895e-02
## TRAF3IP1 5.284931e-01 2.780169e+00 2.538974 1.234817e-02 3.102082e-02
## RAB3A -5.265182e-01 8.812048e-01 -4.510478 1.474072e-05 1.906488e-04
## PRTFDC1 5.236641e-01 1.277977e+00 2.586766 1.083634e-02 2.787226e-02
## LDOC1 -5.225833e-01 1.071736e+00 -2.481640 1.440951e-02 3.501983e-02
## PPM1J -5.218407e-01 8.856314e-01 -3.469802 7.159513e-04 3.228586e-03
## THAP9 5.207960e-01 2.111199e+00 3.045974 2.831016e-03 9.442230e-03
## PHLDB3 -5.203949e-01 9.218508e-01 -3.187029 1.817104e-03 6.688657e-03
## HYLS1 5.166309e-01 3.551171e+00 2.509410 1.337553e-02 3.301485e-02
## CCDC80 5.164999e-01 8.918237e-01 3.350156 1.069054e-03 4.420846e-03
## NEGR1 5.162132e-01 2.112816e+00 2.811595 5.727809e-03 1.659518e-02
## FAM185A 5.152473e-01 2.421610e+00 2.948059 3.818829e-03 1.198817e-02
## FZD6 5.108215e-01 1.551125e+00 2.345485 2.058143e-02 4.660984e-02
## GDPGP1 -5.077848e-01 2.245276e+00 -3.001433 3.246759e-03 1.051804e-02
## CA13 5.017514e-01 2.137345e+00 2.689666 8.132115e-03 2.203375e-02
## B4GAT1 -4.966352e-01 1.598192e+00 -2.328299 2.150689e-02 4.832735e-02
## KCNMB4 -4.961251e-01 1.185359e+00 -3.276412 1.361939e-03 5.332652e-03
## NME7 4.954403e-01 2.856890e+00 2.558031 1.172399e-02 2.970445e-02
## ZNF280C 4.927488e-01 1.340856e+00 3.294452 1.284063e-03 5.090842e-03
## FANCC 4.917496e-01 2.008549e+00 3.081082 2.538612e-03 8.699203e-03
## LRRC34 4.913139e-01 1.853664e+00 3.104713 2.357820e-03 8.224630e-03
## DNAJC18 4.892871e-01 1.998183e+00 2.896373 4.459804e-03 1.355543e-02
## SLC6A4 4.882813e-01 2.218951e+00 2.422296 1.686136e-02 3.976376e-02
## COLEC12 -4.867266e-01 1.902017e+00 -2.683386 8.277743e-03 2.237330e-02
## ZNF606 -4.830399e-01 2.971470e+00 -2.317167 2.212573e-02 4.936252e-02
## HSPA4L 4.795732e-01 1.974137e+00 2.711643 7.640562e-03 2.095192e-02
## IL24 -4.777560e-01 1.157309e+00 -2.488376 1.415235e-02 3.455062e-02
## POLR3G 4.767389e-01 1.347490e+00 3.025624 3.014451e-03 9.928182e-03
## SLC6A16 4.758346e-01 1.320153e+00 3.522565 5.980485e-04 2.828884e-03
## GLMN 4.693231e-01 2.871021e+00 2.386106 1.853248e-02 4.287013e-02
## HSD17B1 -4.665586e-01 6.280013e-01 -5.504085 2.021624e-07 8.750533e-06
## AHI1 4.663010e-01 1.419891e+00 2.813850 5.690195e-03 1.651633e-02
## PPP1R3F -4.656558e-01 1.999511e+00 -3.210997 1.682842e-03 6.319983e-03
## PUS7 4.636448e-01 1.676554e+00 2.837993 5.301486e-03 1.560964e-02
## PLCE1 -4.600599e-01 1.467656e+00 -2.972369 3.547657e-03 1.128324e-02
## UNC5CL -4.554590e-01 2.499475e+00 -2.504960 1.353660e-02 3.330789e-02
## ZNF460 4.535635e-01 1.432244e+00 3.000919 3.251866e-03 1.052142e-02
## MAGI3 4.527974e-01 1.382790e+00 2.717069 7.523437e-03 2.072266e-02
## CLDN12 4.525100e-01 1.004470e+00 4.145914 6.206606e-05 5.373018e-04
## JADE3 4.519595e-01 9.399663e-01 3.554199 5.363994e-04 2.606185e-03
## TULP3 4.514438e-01 2.055632e+00 2.485830 1.424905e-02 3.473663e-02
## AMIGO3 -4.501387e-01 1.157669e+00 -2.506683 1.347404e-02 3.319578e-02
## KLHL25 -4.419844e-01 9.562206e-01 -3.015592 3.108860e-03 1.016827e-02
## ATP8B3 4.419013e-01 1.436782e+00 2.724458 7.366528e-03 2.039856e-02
## MMACHC 4.389047e-01 1.995317e+00 2.389812 1.835486e-02 4.254224e-02
## SPAG16 -4.371253e-01 1.090955e+00 -2.588180 1.079424e-02 2.778204e-02
## ZNF223 -4.354789e-01 1.914829e+00 -2.367988 1.942294e-02 4.444455e-02
## FARP1 4.353905e-01 1.287432e+00 2.860584 4.959915e-03 1.476521e-02
## SCLY -4.336061e-01 2.599165e+00 -2.393011 1.820273e-02 4.225570e-02
## GGT6 -4.319240e-01 1.189500e+00 -2.978250 3.484770e-03 1.112200e-02
## DPH3P1 4.296009e-01 1.590977e+00 2.674346 8.491550e-03 2.282116e-02
## ZNF324B -4.280196e-01 1.494305e+00 -2.938677 3.928487e-03 1.225457e-02
## ARSK 4.205405e-01 1.587801e+00 2.598809 1.048262e-02 2.709761e-02
## SCIN 4.191804e-01 1.002622e+00 3.556686 5.318156e-04 2.592410e-03
## GPRC5C -4.175295e-01 7.084544e-01 -2.926855 4.070787e-03 1.259904e-02
## WDR97 -4.167770e-01 8.739580e-01 -3.633838 4.066642e-04 2.118154e-03
## AASS 4.160259e-01 1.022028e+00 3.061817 2.695409e-03 9.109142e-03
## H2BC15 4.158292e-01 5.357225e-01 3.224848 1.609521e-03 6.065753e-03
## MYH10 4.144332e-01 1.159752e+00 2.616064 9.993952e-03 2.607136e-02
## GRB14 4.142393e-01 1.002550e+00 2.878334 4.705794e-03 1.412074e-02
## CENPS 4.096413e-01 1.065779e+00 2.965459 3.622873e-03 1.149780e-02
## EID2B -4.093028e-01 1.626585e+00 -2.657621 8.900282e-03 2.372986e-02
## INTU 4.074353e-01 1.435362e+00 2.921932 4.131419e-03 1.274347e-02
## ZNF850 4.074289e-01 1.992499e+00 3.172898 1.900861e-03 6.923897e-03
## SLC35E4 -4.048227e-01 9.743732e-01 -2.583619 1.093050e-02 2.807791e-02
## KCNIP2 -4.008372e-01 1.316227e+00 -2.484279 1.430827e-02 3.483088e-02
## C21orf62 3.981807e-01 1.612874e+00 2.415105 1.718237e-02 4.036105e-02
## PSMC3IP 3.978389e-01 1.694968e+00 2.774386 6.381925e-03 1.816406e-02
## FAM83H -3.976500e-01 1.219264e+00 -2.607714 1.022780e-02 2.656049e-02
## LRRC46 -3.942653e-01 8.210395e-01 -3.381079 9.647436e-04 4.074736e-03
## MAP6D1 -3.936145e-01 1.334564e+00 -2.849985 5.117580e-03 1.515028e-02
## BPHL -3.924080e-01 1.550904e+00 -2.507964 1.342769e-02 3.312239e-02
## LRRC7 -3.917712e-01 1.081276e+00 -3.008438 3.177844e-03 1.034282e-02
## EFCAB11 3.880701e-01 1.920036e+00 2.948223 3.816937e-03 1.198616e-02
## SPATA7 -3.828586e-01 1.202327e+00 -3.257291 1.449278e-03 5.593375e-03
## ZFP69B 3.809332e-01 1.021524e+00 2.923444 4.112709e-03 1.270227e-02
## BMP8A 3.790094e-01 1.404541e+00 2.407939 1.750761e-02 4.099512e-02
## EGFL8 -3.743692e-01 6.893250e-01 -2.614682 1.003234e-02 2.614450e-02
## KCNC4 -3.722196e-01 8.713637e-01 -2.984115 3.423083e-03 1.095460e-02
## EFNA3 -3.614661e-01 1.096881e+00 -2.807493 5.796788e-03 1.673154e-02
## BBS12 3.599030e-01 1.604934e+00 2.670156 8.592302e-03 2.302931e-02
## L3MBTL4 3.592081e-01 1.170795e+00 2.851945 5.088077e-03 1.508341e-02
## TEX22 -3.582125e-01 8.313437e-01 -2.610884 1.013846e-02 2.636312e-02
## ASIC3 -3.581575e-01 5.728481e-01 -3.339084 1.108906e-03 4.543067e-03
## MTCP1 3.572455e-01 1.041086e+00 3.497553 6.514560e-04 3.013365e-03
## ZNF257 3.526823e-01 9.942495e-01 2.764606 6.564796e-03 1.855541e-02
## AZIN2 -3.471414e-01 9.100170e-01 -2.811039 5.737108e-03 1.661184e-02
## TMEM44 3.431656e-01 1.122166e+00 2.559768 1.166853e-02 2.960821e-02
## CDIN1 3.425667e-01 9.359835e-01 3.116456 2.272484e-03 7.976223e-03
## UGT8 3.391238e-01 1.101377e+00 2.908095 4.306330e-03 1.318355e-02
## CCDC138 3.386285e-01 1.137407e+00 3.307081 1.232041e-03 4.938157e-03
## EXTL2 3.373573e-01 1.216805e+00 2.597825 1.051115e-02 2.715952e-02
## CCDC15 3.368076e-01 1.057565e+00 2.466418 1.500602e-02 3.616570e-02
## IFT81 3.339264e-01 1.196678e+00 2.424947 1.674438e-02 3.954368e-02
## ZRANB3 3.305188e-01 1.510941e+00 2.996030 3.300851e-03 1.065544e-02
## TRPC6 3.281230e-01 9.027659e-01 2.392460 1.822889e-02 4.229986e-02
## NWD1 3.267879e-01 6.645564e-01 2.922370 4.125999e-03 1.273006e-02
## WTIP 3.225076e-01 2.166025e+00 2.361673 1.974209e-02 4.503581e-02
## CCL24 -3.224083e-01 5.501559e-01 -3.277929 1.355223e-03 5.311613e-03
## EHHADH 3.199492e-01 1.220799e+00 2.317715 2.209490e-02 4.932157e-02
## LRRC3 -3.191191e-01 1.221760e+00 -2.316848 2.214367e-02 4.938396e-02
## TSPAN15 -3.178310e-01 6.990599e-01 -2.388743 1.840593e-02 4.264394e-02
## NAP1L5 3.142674e-01 1.092955e+00 2.667351 8.660386e-03 2.318559e-02
## CDK20 -3.070905e-01 7.955739e-01 -2.518708 1.304445e-02 3.235197e-02
## ZNF670 3.025612e-01 1.529215e+00 2.520536 1.298023e-02 3.222640e-02
## FN3K -3.014024e-01 5.278538e-01 -2.844497 5.201006e-03 1.535954e-02
## ZNF471 2.928202e-01 9.145706e-01 2.353450 2.016459e-02 4.585850e-02
## SENP8 2.909785e-01 1.238043e+00 3.291146 1.298017e-03 5.136630e-03
## PARD6G 2.851180e-01 7.660642e-01 2.844224 5.205193e-03 1.536426e-02
## GPLD1 2.785048e-01 6.561487e-01 2.848948 5.133258e-03 1.518594e-02
## FCRLB -2.763805e-01 7.086895e-01 -2.646585 9.179648e-03 2.429606e-02
## MYORG 2.731152e-01 1.655845e+00 2.443492 1.594606e-02 3.797650e-02
## MYO1A -2.642081e-01 6.631207e-01 -2.814929 5.672289e-03 1.647645e-02
## ADSS1 -2.554774e-01 4.803343e-01 -3.297543 1.271143e-03 5.052611e-03
## CATSPERG -2.498952e-01 5.568691e-01 -2.878870 4.698309e-03 1.410682e-02
## CPLANE2 -2.497356e-01 6.914240e-01 -2.319672 2.198510e-02 4.915048e-02
## ZNF620 2.484710e-01 1.111005e+00 2.956249 3.725408e-03 1.176893e-02
## KCNMB3 2.465081e-01 8.327175e-01 2.767462 6.510914e-03 1.844707e-02
## MAP3K13 2.447968e-01 1.073659e+00 2.437308 1.620841e-02 3.851567e-02
## NAF1 2.295183e-01 9.078471e-01 2.432922 1.639683e-02 3.882340e-02
## SCML2 2.275307e-01 5.013808e-01 2.857133 5.010747e-03 1.489410e-02
## CFAP97D1 2.233970e-01 6.577462e-01 2.465263 1.505217e-02 3.625362e-02
## SSC4D -2.140668e-01 4.950435e-01 -2.496917 1.383219e-02 3.394878e-02
## TPH1 -2.115376e-01 6.945819e-01 -2.396177 1.805333e-02 4.201580e-02
## KRTCAP3 -1.983662e-01 5.837618e-01 -2.446472 1.582095e-02 3.774623e-02
## WNT2B 1.955939e-01 8.187923e-01 2.346155 2.054612e-02 4.654766e-02
## LOC100133315 1.843221e-01 4.838266e-01 2.642630 9.281684e-03 2.453327e-02
## SLC35G1 1.840644e-01 5.646184e-01 2.380394 1.880924e-02 4.334129e-02
## B
## S100A9 -3.1492116919
## HBA2 5.0669967417
## ACTB 9.1405291755
## FTL 7.0382798150
## IFITM2 -0.0939801631
## RNA28SN1 7.7347527443
## RNA28SN4 14.4113570107
## EEF1A1 -0.6929521998
## FCGR3B -3.5695819969
## HBA1 0.5194474458
## FTH1 -2.1140627778
## RNA18SN2 13.8482773660
## RNA18SN3 13.8482773660
## RNA18SN4 13.8482773660
## IGKC -0.6108531395
## CSF3R -0.7548385185
## RNA28SN3 -0.8443151172
## IGHG1 -0.2088744604
## TPT1 3.3569618771
## MYL6 0.0525380431
## RPL13A 2.5541961140
## UBC -1.9988589938
## RPS11 3.0878201134
## RPS27 -0.3651261004
## GAPDH -2.3070682919
## LAPTM5 3.4443956185
## RPS3A 0.3322385016
## JCHAIN 2.5199647948
## TMSB10 -0.7156018726
## EEF1G 3.9842259219
## SERPINA1 -1.6003829468
## RPL10 1.4362490635
## COTL1 14.9666537877
## CD74 3.5504227502
## RPL3 2.3123764377
## RPL11 1.7648581622
## S100A11 -2.7190599749
## VSIR 1.8316404899
## RPL13 1.6383687115
## JAML 4.0751518189
## RPL9 0.4065998774
## PSAP 3.7264321051
## RPS6 3.5514719937
## RPL8 4.9085503905
## FLOT2 1.8686370813
## OAZ1 0.4729049501
## RPLP0 1.0370825832
## IFIT3 -2.9201031036
## RPL27A 3.1437909765
## RPS2 5.2890864484
## RPL21 1.2116589625
## CORO1A 3.5085113350
## RPS3 1.8424739057
## TUBA1A 7.6561871188
## ACTG1 1.9967789454
## ZYX 7.1272790013
## FCN1 0.8037836434
## RPL19 5.3514973860
## GABARAP 0.8885194069
## VIM -0.5295008014
## RPS9 4.3118472235
## IFIT2 -2.8486458126
## SH3BGRL3 4.2704338599
## ALPL -0.2277747267
## ARHGDIB -3.4588497645
## RPL7 0.7914824571
## RPS14 2.3913566918
## RPS18 0.7641621960
## RPL4 1.8072646280
## RPS4X 2.7971215026
## IFIT1 -3.2319991858
## RPL32 1.0847290920
## RPS20 1.4476600079
## ALDOA 7.5486280575
## RPS8 1.5805004582
## CLIC1 -1.5564188017
## CYTH4 7.7563213093
## LILRA5 -0.2632392948
## RPSA -2.0165520697
## HCLS1 -2.0834252908
## RPS12 -1.5225626958
## PFN1 1.1033497984
## LITAF -3.6849172984
## RPL41 -2.2311456278
## MMP25 -1.0971933797
## ICAM3 5.6904579447
## RPS27A 0.5196162085
## RPL6 3.3545843010
## RPS19 -0.6511958698
## ARRB2 -0.5472397939
## TRIM22 -0.9918483026
## TYROBP 4.0121704383
## RPL18A 2.1406107705
## RPS23 1.3218722031
## IFI30 0.8081107508
## TALDO1 2.1771366626
## UBA52 0.3339073863
## RPL12 2.5938143002
## RPS10 0.8218056522
## RPL39 -1.2762741798
## LSP1 9.7882324000
## RPLP1 1.8327503727
## HCK 2.8204073118
## RPS15A -0.4109797066
## RPL26 1.8255032468
## RACK1 4.8465853574
## RPL7A 1.2759263208
## GPSM3 1.7653125268
## MXD1 -3.5758835285
## MCEMP1 -1.7833366362
## SELPLG -1.8181793263
## RPS24 -0.0728602589
## ENO1 3.7340503499
## RPL37A -0.7548821679
## LRRK2 -1.6355254639
## AIF1 16.4721578476
## CFL1 0.1217061285
## CST7 -1.8019196022
## RPL17 0.5109903011
## SMCHD1 0.2247673190
## RPLP2 -0.0342532978
## FKBP8 4.3430382397
## RPL23A 0.8020664107
## MSRB1 -1.8890648108
## RPL30 0.0221828274
## RPS16 0.8265863119
## SERF2 2.8414552335
## RPS17 0.6988252947
## S100A6 -3.3563251952
## TXNDC5 0.0138050724
## TKT 1.4105291904
## MYO1F 0.7906287877
## FCGR3A -2.9755381732
## MMP9 -3.3018007009
## EEF1D 6.9344798094
## ADAR 0.8807596572
## RPL28 -0.4736431294
## ABTB1 -0.8460806482
## ADGRG3 -0.7190474901
## RSAD2 -3.4635701122
## PFDN5 2.8173519046
## MME 0.3174646118
## RPL15 2.4228520200
## RHOG 0.2706766887
## RPL37 -1.7603381060
## RESF1 -3.1928279366
## RPL27 1.2354168283
## RPL23 -0.3576125888
## NCF1 -2.2649507862
## RNF213 0.2848720981
## LIMD2 7.1031184878
## CNN2 2.6204342833
## FAU 2.7788386060
## SPI1 2.7472851914
## HK3 1.5696500550
## LILRB3 2.8649115790
## CD52 -1.8741672420
## NCF4 0.1445373396
## ITGB2 0.6313529303
## FLOT1 -2.3131083502
## HLA-DRB1 -0.1513367883
## TAP1 -2.8253167476
## NFAM1 2.1564202319
## RPL5 0.6654674333
## RPL18 0.7735021798
## MEGF9 -2.8035267339
## SLC11A1 -1.4129661003
## HSP90B1 -0.3141669469
## EFHD2 10.1462015424
## TNFRSF1B 5.5746364373
## RPS5 1.6214485529
## ARAP1 2.7149197160
## RPS7 0.8904988908
## VASP -2.0815944216
## STAT1 -0.9482522782
## RPL36A -0.3290066325
## OAS3 -2.7936750241
## IFI44L -2.8148578076
## OAS2 -2.5316530855
## LST1 -0.3866991150
## RPL35 1.5094240412
## ARPC3 -2.4640547885
## GNAI2 4.0410017827
## ANXA11 1.4581482029
## GNB2 7.3827933846
## MBOAT7 4.4821574944
## RPL34 -2.6715046926
## RPS25 0.2302798662
## RPL31 -1.5504025182
## MVP 7.7786012143
## MX1 -3.5880840573
## OAS1 -2.4570717096
## RPL29 0.8108250505
## ADGRE5 -3.4840869597
## NFE2 -2.6544694406
## ARPC4 0.6288236209
## PGGHG 2.0329963584
## CYBA 8.3947124335
## CST3 -0.9392143329
## IFI44 -2.6536473893
## DGAT2 -1.5097444187
## CTSD -3.0408138454
## PARP9 -0.6956158975
## CNPY3 5.7228881566
## MOB3A 0.0819290495
## FLNA 1.3333110879
## R3HDM4 -0.1435009003
## GRN -3.1499588836
## CYSTM1 -1.0157961562
## RPL24 1.3521896949
## COX4I1 2.3763118343
## ARPC5 -3.6596728278
## TNFRSF10C 0.2269731848
## RPL10A 0.4586853565
## FCGRT 7.6181948080
## FXYD5 7.3011495266
## PXN 0.1894930850
## CD48 6.7697629449
## KLF6 -2.7859308309
## TMEM123 -1.6519569846
## EPSTI1 1.1039547057
## ATP6V0D1 5.7881470576
## TYMP 2.5619182562
## ARPC1B 2.4807586398
## IL4R -0.8687229495
## PARP14 -0.8071227739
## TPI1 3.1695189334
## SAMD9L -1.9549763492
## RPL14 -1.1291027250
## XAF1 -2.3312382801
## PPT1 -3.1170611868
## ADAM8 4.2866858375
## RPL38 1.2227716954
## IFI27 -2.6292795211
## JUNB 5.5537519063
## LILRA2 0.7694225076
## NACA 5.5166918626
## TCIRG1 2.7287229076
## BTN3A1 3.3604565732
## APOBR 0.6072663205
## RPL35A -0.8195263644
## RPS15 -0.5563618876
## IGSF6 -1.6104169621
## RPS29 -2.1033527062
## TIMP1 -0.8798431071
## RPS28 -1.8556616263
## CD44 -3.4271597135
## STXBP2 4.6057392221
## STK17B -3.1214579823
## LRG1 -2.9221783911
## RPS6KA1 -0.7052219322
## IMPDH1 10.3086700847
## OASL -1.2577623699
## RPL22 1.4585077137
## CSK 12.2963947513
## EEF2 4.9062460069
## PTAFR -1.3748345003
## ATG16L2 3.3001400697
## CTSZ 5.3806898605
## CAPZB 4.1319600363
## CTDSP1 4.4713435685
## CEBPB 0.9486004328
## LILRB2 7.9154459894
## PABPC1 1.0436007460
## EEF1B2 0.6383833974
## ALOX5 -3.4991018376
## FGD3 5.8779869415
## CFP 7.9796528909
## PTPN6 0.3090585207
## TSPO 3.5742245617
## ATP5F1E -3.1277733579
## B4GALT5 -2.1113710536
## RAC2 -3.2381531293
## RPS26 -1.5731995345
## MAN2A2 -2.8836675966
## TMEM154 -2.7709342562
## SLC16A3 4.4844860594
## HLA-DPB1 2.0236025722
## GPX1 -0.3541645022
## SECTM1 1.4362723346
## SPARC -1.7522530771
## SLC25A6 8.0622518271
## SHKBP1 -2.2554621763
## C19orf38 10.0408601926
## LRRC25 9.1843894610
## APOL6 -1.5898897101
## HSPA1A 6.7608384170
## DDX60L -3.2576499855
## CSGALNACT2 -3.3025656064
## HLA-DPA1 1.3680190055
## CAPNS1 5.5841286969
## UCP2 6.1651926032
## CTSB -3.5110284130
## CD14 1.7451900535
## EGLN2 6.5355251827
## CYBC1 4.7787804036
## PECAM1 -2.5425112770
## LYST -1.2668710097
## LTB 3.1837738857
## THEMIS2 1.3890498868
## GRK6 5.3687236272
## DBNL 6.2139658708
## NUCB1 8.7110799057
## TAPBP 4.0977825568
## ARHGAP30 -2.7684132277
## ARHGAP4 9.1612098151
## PRR13 -3.5220612095
## CLEC7A 0.6116228700
## PPM1M 2.6676195734
## CYP4F3 0.1131158152
## PLP2 -3.0537791277
## NBEAL2 -3.4233925115
## FERMT3 2.0705496097
## PSMB3 2.1171968841
## SOCS3 -3.4883372078
## TLE5 -1.1210184368
## MYL12B -3.6963920519
## EIF4A1 1.4899253462
## RPL36 0.1643526138
## CHMP2A 4.2571003867
## CAPG 0.1462751659
## RPS21 -1.1305876371
## ARHGAP45 0.3059867152
## NOP53 4.6226537795
## GNAS -3.5182129289
## PLEKHO2 -1.7871235445
## SEPTIN9 5.5472841975
## SAMD9 -1.1683557609
## CDKN2D -1.9845347547
## SLC38A2 -1.7998918652
## STAT2 -2.5181802588
## SLC44A2 -2.8564370918
## WAS 0.4221730613
## RNASEK 5.6274692352
## RNPEPL1 7.5016111765
## DDX17 -1.7038074232
## TBC1D10C 5.5977074689
## NINJ1 -1.3963461546
## DOCK8 -1.0335563619
## GRINA -2.9740888837
## CD24 -3.3314736078
## LGALS1 0.1610281498
## COX6B1 -0.3237518169
## HERC5 -3.4404111621
## SIPA1 11.9345859792
## STK10 6.3355871386
## ZC3H11A 0.9847181922
## S1PR4 4.5988449679
## PLEKHO1 0.3056901102
## SLC12A9 19.1118932677
## PELATON 7.5328217382
## KLF2 -0.0398758916
## ARF5 7.7972263277
## TNFRSF1A -2.4798300736
## CCDC88B 4.9078576256
## PKN1 5.7656121809
## F13A1 -1.8800591699
## ATP6V0B -3.5384422886
## ITGB1 3.3866047257
## PPP1CA 3.1119931798
## C1orf162 -1.4786602327
## CIRBP 4.7467456598
## ACAP1 3.1097898470
## PCNX1 -3.3138833704
## BACH1 -3.0498036099
## CD164 -2.9998120768
## PRELID1 0.4141156900
## TAGAP -2.8022603896
## FES 2.6665425737
## ARHGEF1 6.3331829749
## DTX3L -0.4319976150
## EIF2AK2 -1.4018936483
## FAM8A1 -0.2658364768
## RPS13 -2.7340411074
## NBPF14 0.4517823046
## AGTRAP -2.2966227068
## CD37 9.4326714947
## TWF2 15.2893997983
## TOMM7 0.5556597021
## TGFB1 1.3363164968
## JPT1 3.7907090333
## PRDX5 -2.4789496463
## CELF2 -3.5809301439
## ELF1 0.9121468231
## PARP8 -2.6608480901
## ACAA1 4.9233964116
## LGALS9 -2.4953615990
## LAMTOR4 -3.7109732240
## PPP4C 1.2161157457
## PPM1F 3.5246043021
## CD68 -1.0206081643
## RAB1B 2.2179242562
## RAF1 -2.8129172335
## CAT -2.5787951234
## RASGRP4 -0.7914081991
## STK4 -1.4708566441
## NOTCH2 -3.1299407487
## DDX60 -1.6415151001
## EHD1 3.2677998568
## BSG -0.0464082950
## CMPK2 -2.5464962975
## DDX58 -2.6878069251
## CD82 0.7396443914
## CREBRF -1.7831133578
## GSTK1 3.1776624097
## EIF3K 2.0647208972
## RGS14 2.7037072052
## AMPD2 1.5742281508
## EMP3 -0.1891304008
## PRKCB -2.9766201010
## ZNFX1 0.5379063204
## MGAT1 -1.5367531730
## MICAL1 -0.1720514311
## NBPF19 -0.2228983147
## ATP2A3 -0.6691417929
## SLC9A3R1 4.5079247135
## NIN -3.4981219606
## EHBP1L1 4.3124309161
## SUN2 7.1801693536
## PSTPIP1 6.3681609070
## PTMA -2.8179036690
## SETX 4.1832877453
## LAMTOR1 -2.0929866059
## C15orf39 6.1400280468
## OS9 -3.6940639317
## BTN3A2 0.2177851654
## GRK2 -1.1356737053
## RXRA 7.5297890128
## WAC -0.6660021456
## RNF167 3.6900353435
## ADD3 -2.7256625810
## CTSC -1.7696701187
## SMG1 2.5513288014
## USP32 -2.7990672934
## MAP2K3 -0.8337748707
## BPI -3.4928443947
## BCAP31 4.2087554191
## GSTP1 3.1038519093
## ANXA2 -3.1666339103
## VAMP8 0.4919970207
## BLOC1S1 -3.2108792198
## EDF1 1.0702667410
## RPL36AL -1.3129138008
## PSMD4 1.5156311422
## SP100 -3.1593374878
## CRIP1 -3.5645378778
## ARL6IP4 6.2272596971
## XBP1 -2.3086372875
## TRIR 0.4620502205
## MAP3K2 -3.2046677022
## NBPF10 1.7487572945
## SASH3 -2.6829199549
## WASHC1 1.7252733029
## ARHGAP27 -1.7477795218
## PCBP2 -3.5229629948
## ARHGEF40 -3.4593136754
## OGA -2.4971298078
## WDR26 -3.3482332255
## SNN -2.1353703785
## TP53INP1 -1.3543702027
## TGFBI 4.4996726402
## MED13L -1.1988787341
## RGL4 -3.4157662188
## PBXIP1 -3.6796582815
## RPH3A 0.8909615929
## LPAR2 0.2238636876
## OGT 0.0971414598
## HECA -1.2719230158
## TSC22D4 5.2233998571
## NARF -0.4906077853
## QSOX1 -0.7346788624
## CSF1R 4.0096721612
## TAP2 -2.3629896689
## YBX1 -0.3691105746
## UBALD2 -2.7714717335
## HMOX1 7.1390825443
## PTPN12 -2.4990351133
## UBR2 -1.3885061965
## ERP29 2.4498458146
## ACAP2 -3.2440750799
## COLGALT1 10.2733524455
## CD300LF 5.1894845994
## CHD2 0.6497677523
## SLC43A2 8.1915484669
## TACC3 3.3732024127
## ITGB3 -3.0403159056
## CEACAM8 -2.9915918137
## OSCAR -0.0578716191
## UBN1 -1.8421235910
## ELOB 3.8890689943
## SYNGR2 13.3025491686
## DEF6 4.6789732940
## CEBPA 11.4485371263
## SEMA4A -3.4723657895
## PSMB4 0.4959553626
## ZFAND5 -3.6888266089
## TNFRSF14 5.8131958266
## SYK -3.0143989655
## GSN -2.6905779916
## SLFN5 -1.6655438051
## LRCH4 6.0846864607
## VNN3 -1.3144389703
## PPP2R1A 4.1971765427
## PSTPIP2 -3.4668295691
## UBXN1 6.4317027161
## SLC15A3 18.6324515490
## TFEB 3.1493021475
## RALY 2.7390479628
## DOK2 4.0246055531
## EIF3G 6.0669291250
## DICER1 -3.1467349087
## FAM214B 0.5141733791
## IFIT5 -1.9354471051
## SLC7A7 2.5212840121
## EIF3F 3.8591983666
## RICTOR -1.1982215587
## AKAP13 -2.9426637579
## POLD4 3.9273855941
## LILRA3 -0.5643752289
## PAPOLA -1.8059384480
## IFIH1 -2.0727707395
## UQCRB -1.3468919297
## UNC13D 1.1219214007
## CHMP5 -3.7014762244
## EPB41 1.4066409670
## ANKRD13A -3.4967975762
## SP3 -3.4591382897
## QKI -3.3585300602
## KIAA0930 3.1859585893
## PSMB10 3.3815322986
## MAP3K1 -0.5680651686
## PYCARD 6.5625095706
## PAG1 -3.6390258286
## KLF3 -2.1673953293
## NDUFA13 -0.0212901073
## TRAFD1 -2.8738438543
## EIF3D 8.0426575062
## NBN -2.5173762627
## CD4 0.1801056888
## APOBEC3A_B -3.4314366516
## NEK7 -2.3000828308
## GYPC -1.5107236637
## TNFAIP8L2 7.8665523767
## NT5C3A -2.9471946321
## PRRG4 0.0499163194
## HDAC7 1.8539135865
## SKP1 1.0368164805
## NEDD8 1.0707599059
## MAN2B1 6.5533212428
## TLE3 -2.6002013380
## BTF3 1.0884677201
## TRANK1 -1.8685874086
## STK40 -0.5952098826
## PDLIM7 1.3149924543
## TBXAS1 -3.5337022162
## HADHA 7.0033322645
## MYO9B 2.1788585015
## XRN1 0.2131707332
## DMXL2 -0.6136107665
## G6PD 1.8269597296
## CYLD 1.8095511795
## RBL2 -2.1688453842
## WDR1 -3.7127669964
## MAPKAPK3 4.0423442048
## KIAA1109 0.8531232131
## STX10 -0.6789776809
## TADA3 0.3281207282
## LPIN2 -0.9462525738
## ARHGDIA 4.2800578277
## FBL 1.5740076451
## ACADVL 1.8346496897
## CORO7 6.7700252404
## ZCCHC2 1.8446332704
## ERBIN -2.4805167543
## BAZ2A -1.1545771038
## MEFV -3.3472003380
## ABCA1 -0.3340038965
## APAF1 -2.3794185260
## WLS -0.8433659707
## TUBB1 -1.2845425542
## MDM2 -3.2665324194
## ATP5MC2 0.7061617675
## RAD21 -2.5209843877
## EIF3L -1.3857504183
## SON -0.3037532547
## SH3BP2 -0.3514063207
## SSR2 -2.6913628931
## PLCB2 -2.3215006770
## TP53I11 4.0823939882
## BOD1L1 -2.2695443607
## PARVG 6.8918122786
## LMAN2 0.9940458162
## RASGRP2 2.3258932316
## PLEC 13.8593827029
## MAP3K11 4.3682235333
## NAP1L1 -3.4178976285
## H2BC4 -2.3088492111
## LFNG 1.4621676123
## TRIM38 -2.6269262779
## WASHC4 -1.1785537468
## PTPRE -3.6103233667
## MYO1G 4.4626168421
## CHMP4B 3.3577412911
## IL1B -3.5290646316
## SYNE1 -1.8327303233
## CTSH -0.1378574840
## UBA1 2.4314986209
## SPG11 2.2230591465
## TRAPPC1 0.0106307554
## PNPLA6 4.7773481560
## TENT5C 1.5130714604
## GUK1 2.4945201699
## RGS19 0.4824388039
## NT5C2 -3.6309724468
## MLF2 -0.3709521310
## PPP1R9B 11.1914629321
## CCM2 1.1769538996
## NUP214 -3.6686855686
## GSTO1 -2.5786020317
## POR 1.5123461291
## C5AR2 0.6087290487
## CD3E -2.9937983916
## COPE 2.9859187817
## TSEN34 0.3782773276
## SLC25A3 -0.4493649217
## ARHGAP15 -0.3916793002
## GBP4 -2.9599215761
## UBXN11 6.3778711559
## VPS28 0.7103088711
## PTGS1 -2.6667752507
## SNRK -2.3428068805
## RIN3 -2.1658541916
## HLA-DQB1 -1.7662043517
## CAPN2 0.6193921598
## TMEM120A 1.9251784333
## STAT5A -0.1473150468
## SIGLEC10 -3.5643630812
## AP2M1 -1.5192670099
## PSMD13 0.3633121177
## PRKAR2B -1.3967675345
## BRD2 0.1821627883
## DEF8 0.6200140513
## GSDMD 3.9658606313
## LUZP6 -3.3191344384
## MTPN -3.3191344384
## ACTR1A 1.6637964165
## MIDN -1.6833715690
## ITM2C -2.5518461042
## ARID5A 0.3008696070
## PACS1 4.2202457371
## PRKCSH 5.6067524223
## TYK2 2.8698089232
## PSD4 -2.6859598013
## TAB2 -3.1614765631
## PLIN3 -0.0355898375
## SBNO2 -1.7061059477
## RAB5C -1.3687871113
## PPP1R15B -1.3641319700
## WNK1 -1.3438806825
## ZC3HAV1 -3.3246739442
## ILK -3.2916975042
## EIF3C 2.6659218881
## PLB1 1.0461201054
## RGL2 -3.5705166043
## EIF2AK1 4.8312797427
## STXBP5 -3.0309932355
## VCPIP1 -2.0150569280
## S100A10 -3.3484946545
## UBL5 -2.3235112895
## WBP2 -2.0394373606
## MAPK3 0.2832590995
## TOM1 -1.2016702836
## CDC37 6.5284391770
## PATL1 2.8979137530
## DHRS13 -0.3555008052
## IMPA2 5.4244990912
## RARA -2.0765135469
## INPP5D -2.8338204145
## SPOCK2 -1.8002931316
## NOSIP 1.8676756069
## IRAG1 -3.2912787979
## PRAM1 2.5410058652
## AHCTF1 -2.6586219689
## GAA 8.3734252263
## PPP1R12C 7.6863682410
## VCL -0.6392561654
## ADGRE1 -3.6607603476
## ANKRD13D 2.4015443567
## MAP7D1 -1.2632495098
## FAM89B 10.0070508635
## ADAM17 -1.6820147604
## MAPK13 -2.2155566289
## CD2BP2 4.9835292883
## PHB2 4.5186891406
## ATM -0.8314677424
## PGLS 9.2842234188
## MKNK2 -3.1022686237
## CPEB4 -3.1188228366
## IGFLR1 5.2870524690
## CHMP1A 3.1541121263
## KDM7A -2.5072565724
## TRIP12 -3.2375551500
## DNAJC13 1.0269540385
## NSD3 3.3419346181
## DEDD2 -1.0131625673
## CTDNEP1 0.2978369263
## PSENEN 1.0716433154
## NCOA1 -3.3917072734
## BTN3A3 2.6290806218
## CIB1 1.6961535238
## KIF5B -1.5517835817
## PSMA7 -1.5407145693
## STAB1 -1.8239262151
## STK38 -1.1811981301
## NUFIP2 -2.3828751083
## TAF10 0.8483565387
## FNDC3B -2.0182083701
## NCOA3 4.9043606186
## ARRB1 3.9814759143
## ITGA4 -3.6504908190
## PGAP6 9.1544141055
## USP34 -1.0220113195
## ORAI2 -3.0123992875
## CRTAP 2.2105341825
## LILRA1 0.1771754736
## DOCK11 -3.3387008401
## DEK 0.0730592870
## EIF3M 3.5980807427
## APP 5.4421079963
## NLRP12 -1.4233871706
## USF2 5.2573849313
## HLA-DMA -0.2299777974
## FUT7 9.7136837634
## ITSN2 -2.0663611235
## ABHD3 -3.5297048345
## AKT1 7.2420865221
## PTPRCAP -1.6716395314
## SEL1L -0.7651811587
## CDK5RAP3 -3.5593719899
## EP300 -1.4875697756
## TMC8 -3.1479962695
## VOPP1 -2.7651914019
## UNC119 -0.4230296006
## KMT2E -0.6067569401
## MAZ -2.8280114757
## CD3D -3.2834826349
## CNOT1 2.1529030040
## HNRNPH3 -1.6180134921
## COX7C -3.6515099643
## SCAF11 -2.5444072095
## MCMBP -1.6997965824
## DOK1 7.3431624321
## MARF1 -3.1701528225
## MRFAP1 -0.7284243425
## BIRC6 4.6237672292
## CAVIN2 -1.6733659753
## JTB -3.7036334031
## TPP1 -3.2402357972
## SERPINB6 6.6284323255
## AMD1 -2.8503166572
## PSMB1 -0.6525366142
## OSGIN2 -0.6137285621
## TNPO1 0.0329803951
## YWHAH -1.9211805809
## FLII -0.0239100754
## NME2 -2.5814223321
## MAST3 -3.4707156489
## CEACAM6 -2.7806221160
## MARCHF2 -0.8306233164
## LIMS1 0.1120041972
## VPS9D1 -0.7421274678
## PHF20L1 -3.0112775756
## SEPTIN7 -2.8612188522
## NCOA2 -1.7508112324
## EDEM1 5.2815539190
## MYCBP2 4.5096726359
## QARS1 0.6017650532
## GPX4 -1.6843623753
## SLC19A1 -1.3887600007
## PNISR -2.9375371575
## APRT 2.3468765303
## VAMP2 -2.6581184065
## MBD6 -3.5854169508
## C18orf25 -0.2270686187
## CEP63 0.1233864746
## SIPA1L2 -3.6956220578
## CPNE3 -2.6984245657
## ZAP70 -2.7526478182
## LDB1 2.7033569816
## KMT2C -0.9363291899
## KDM5A 0.1376496568
## BID -1.7612186465
## MED13 0.6337194106
## MTDH 5.1675944936
## H2BC21 -1.5136257074
## VAV1 -3.5012278906
## KDM3B -3.0048401067
## HMGN4 1.6276104893
## HSBP1 0.9154423606
## PTP4A1 -3.2546667390
## PIM2 -2.1610257310
## DRAP1 -1.2167975685
## PRPF6 7.5774301063
## MTRNR2L6 -0.9901593547
## NIPBL -2.1558542483
## DYRK1A -1.6167133576
## UQCRC1 -1.5244680044
## SART1 6.5661893656
## TRABD 7.4401819615
## HERC3 -1.2093580815
## ARFGAP2 3.3119304058
## LRPAP1 -1.6593674766
## EDEM3 1.1803565135
## EIF6 0.2745030596
## LYPLA2 5.9808810740
## ALDH2 -3.5207206928
## SNX17 -0.4446714188
## ZNF385A 8.1201092613
## ZNF467 7.3186405522
## SEL1L3 -1.7504176952
## FBRS 1.9566541223
## RAB43 -2.8247826339
## SNX27 -3.0628075497
## SCAMP2 6.8410198279
## DPP7 2.4360398139
## USP3 -2.6140622607
## DDX39B -0.7497227234
## MKLN1 2.0399456831
## AUP1 -2.0456941799
## RNH1 7.1592276815
## CNPPD1 -2.0543429496
## LAMP1 0.8676773249
## REL -2.1457625848
## CRTC2 0.5514615359
## TMEM259 6.5179483292
## CRKL 2.1571410889
## TBC1D10B 4.7298563418
## SH3BP5L 0.0004624919
## BAZ2B -1.9779832647
## FIS1 -0.0817027438
## ZEB2 -3.4544606061
## RPN1 -2.2642608101
## SPAG9 -3.2521026067
## TUFM 1.0744836888
## RHOT2 4.5475775074
## FAM111A 5.9530839269
## MAF1 4.7729318294
## SNRPD2 -3.3933474114
## APEH 3.5206782328
## ATP6AP1 -1.9404453003
## SEPTIN2 -0.1383743412
## DGKZ 2.3303542466
## RFFL -2.4419194875
## EIF5 -3.5381426938
## PIAS1 -3.4834167596
## VAMP3 -3.4043392628
## CSNK2B 3.5363853745
## EIF3A -0.0070990379
## LPCAT1 6.4100158312
## KLRB1 0.2247794287
## CPNE1 -0.8799811694
## SH3BP1 5.5661669060
## PIM3 -0.2904888144
## SETD2 2.7153064786
## CANX -2.8825036406
## ARL6IP1 1.4395781105
## C3orf86 -1.4615749658
## TLK1 3.1082271430
## SZRD1 0.1971640836
## MAT2B -1.7787996611
## GBP3 -2.9938947270
## FOXN2 -2.5012604837
## KCNAB2 5.3207557245
## MARCO 8.3896003761
## MDH2 5.5691683552
## ZBTB34 -3.3424057677
## WDR83OS -0.7901047552
## MORC3 -1.3266073969
## YIPF3 -2.3513159716
## TNFSF13 6.0526049579
## GIMAP5 -3.3032784278
## CD79B -2.8189891496
## NAPRT 7.3332166890
## POLR2E 6.4746716086
## KLHL8 -3.7228751505
## PRRC2C -1.3039941911
## RSU1 2.9272250532
## PTPN18 -1.4003113821
## TAOK1 -1.6708906043
## TNKS2 2.4888697234
## OGFR 1.5465867290
## ERGIC3 -1.1764079298
## KIDINS220 -2.4356316559
## MLLT1 3.0359274002
## SMARCD2 5.3213460512
## RELT 3.5459829399
## ARID4B -3.0598690065
## GPR108 -1.4559598522
## TRIM28 1.9760154022
## SLC66A2 5.7650283593
## CASP10 4.4939741096
## LARP1 5.5986574181
## UHMK1 1.7073093132
## ALDH3B1 2.6971515575
## CHD1 -3.4590418019
## XPO1 -1.2775181048
## PGRMC1 -1.5808477806
## CCNY -2.6094628880
## KAT2B -1.1143235084
## NPC2 -3.4923586634
## SF3B5 -1.6905011686
## EPN1 5.5554059608
## BAG1 -1.9223511195
## LAMTOR5 -3.6865992494
## PCGF5 4.6768422794
## ATF7IP 1.8088853901
## TACC1 -1.6305612770
## IRF3 1.1833762913
## SPSB3 5.1208683353
## CELF1 -1.5090151543
## ST6GAL1 0.1047751561
## ADCY7 -2.7124033229
## THOC5 -0.3122411859
## NCLN 3.0203098000
## NDUFA1 -3.1747520443
## MTCH1 -1.2865454176
## UBR5 -1.8070659747
## HLA-DMB -1.3413627491
## USP25 0.3595002115
## BRK1 -3.6239047110
## BLVRB -2.0658816900
## ATXN7 0.1957884810
## NADSYN1 5.0087913515
## ATP6V1F 2.3585810893
## SLC38A1 0.0077409068
## CAPN1 -0.9135387249
## UBXN4 -2.7666630944
## CD1D 11.5848887129
## CMTM3 0.0314138461
## BAG6 4.0701364288
## DNAJC5 -2.4467753185
## DGCR2 0.3003658964
## ROGDI 2.6081359501
## STX16 -3.6870854651
## PLXNB2 1.7487041141
## TMEM219 -2.1428810777
## CHMP4A 2.5412321315
## PHF3 -1.8778086794
## STRN4 12.6232001091
## PPP2R5C -2.2155132102
## TES -0.8206902728
## BRMS1 2.3719845344
## COMMD6 -0.8556502213
## KMT2D -3.1609657782
## UQCR11 -0.8198418053
## DNM2 -2.1288147204
## HDAC5 -2.3565515879
## DIP2B -2.3318214132
## ITCH -2.0632522765
## PFKL 4.3251469698
## REEP5 0.9427141760
## RB1CC1 -3.5076021299
## SIGLEC9 1.1494289630
## TCF25 4.0944724268
## CREG1 -2.1354203725
## COPA -2.0687252450
## SH2D3C 0.8501473284
## SYTL1 7.5712562657
## IL6ST 0.4055636682
## EPG5 2.1681335337
## LEPROT -0.8433782331
## PRMT2 0.0416692657
## HM13 0.9891639643
## PHIP -2.2712522476
## LNPEP 2.8919478924
## DENND1C 5.9862498650
## NAPSA 12.6751451490
## TRAM1 -0.8653749656
## ARHGEF6 -2.2274553022
## TMEM170B -3.5597726098
## TMC6 -1.6816260239
## RNF169 1.3082422794
## SELENOW -0.7457868401
## TMOD3 -1.8036707866
## FBXW5 1.6379971260
## MAP2K2 1.7513666141
## CDIPT 3.3959212698
## TUBB4B -1.3721739051
## VPS13C -0.8988937388
## PEF1 -2.5338960836
## MTX1 -1.6914980553
## MMD 1.1418845666
## EVL -3.5251039409
## CLTB 5.9171438181
## LTBR 0.7044965935
## CMTR1 -3.0180697156
## WASHC2C -0.6944878849
## SARS1 5.0088546594
## FAR2 -1.9820512204
## ARAF 2.5061357694
## EIF3H 0.2125415024
## ZDHHC19 -2.7082640261
## FAM193B 3.5161034671
## RPN2 -3.3828607331
## CDC42EP2 10.0438271118
## CENPB 3.8288022852
## YME1L1 -0.8672434658
## PDIA6 -2.9034915488
## AFF1 -3.2148486159
## NFAT5 -1.0688541583
## IKBKG 7.4734932299
## TNK2 4.3130801261
## OSM -2.2871516970
## PCF11 -3.3545037928
## SSR1 0.7756129108
## UBXN6 2.3461476620
## PNPLA2 4.1429445609
## RRM2 10.7635171300
## TTC9 14.8240227256
## PTAR1 -1.2923144438
## PRKD2 -2.7967589236
## LSM14A -1.1277036144
## CSNK1A1 -3.7001499732
## ARHGEF2 -3.5543220228
## MRPL28 1.4755552287
## TIMM17B 1.0155299803
## PIKFYVE 1.1931571724
## CYFIP2 -3.1363160039
## ST3GAL4 -3.4089761575
## SLC8B1 13.6381633788
## TAGLN 9.2601298447
## FBP1 13.3572580961
## WDR82 -2.4764114988
## ARFGAP1 7.1029219823
## FAM50A 1.1914864855
## ANO6 2.4005441378
## MFNG -2.0465521699
## STX5 1.7445185451
## MTF1 -3.2854909516
## LAMTOR2 3.5535599955
## ASGR2 1.4429085078
## MTMR6 -2.8739570408
## KDM4B 0.7217602442
## CCR7 -2.3146763414
## C17orf49 0.7621068684
## EPS15 -1.6614601143
## BANF1 -0.2445979478
## RASSF4 0.4018970299
## TOR1B -3.1980883307
## ANKRD12 -2.5491842691
## PDIA4 -3.2687015952
## MRTFA 4.3559310576
## NCOR1 2.1041734457
## SMG7 -0.5014300637
## PLIN5 -0.8361277237
## PIP4K2A 2.5249057660
## WBP1L -2.8049709344
## TRIM56 -1.1969012562
## TINF2 -0.5820639422
## SRF 3.9858007580
## UTRN -0.2812625528
## BCKDK 5.7178251614
## NSD1 1.2047100660
## BAX 0.2489835679
## SPRYD3 11.0520756877
## NOD2 -3.1185828026
## BCL3 -2.6528774430
## DNAJB2 4.2287634230
## NDUFV1 0.0501567639
## CD79A -1.8569556031
## HP1BP3 -0.5717156542
## STING1 -0.2182431314
## ERAP1 1.0593550336
## TRIM5 1.0241482973
## LMAN1 4.5797922229
## COASY 4.0945048396
## KLHDC3 2.8523832643
## RAB4B 4.3506323534
## SCAP 9.5186326657
## ATP5PO -3.0843820124
## TDRD7 -2.8430037853
## PPCDC -0.3611099331
## ZFAND2B -0.3271241847
## SCYL1 5.6446848488
## VPS51 2.8892629305
## PTPA -1.9146542025
## MTHFS -3.5194840672
## TBCB 6.4567604076
## ZNHIT1 0.4395238469
## CANT1 -3.1887288721
## SLAMF7 -2.6992375806
## CYB5R3 3.3044383045
## GALM -2.5416116231
## SLC39A1 2.5229207751
## CGGBP1 -2.2671211817
## CHKB -0.4502358745
## PPTC7 -2.1455806226
## NUDC 0.9310008621
## SBF2 0.2343320760
## RAB11A -3.1051314406
## RHOT1 -3.0946559038
## AP2S1 -0.6565054195
## CLINT1 -0.4285327711
## HSPA1B -0.0032519239
## RRP12 -3.0529849370
## ELL2 -1.3334996668
## GTF3A -1.7929610461
## SCYL2 -0.1044068046
## UXT 1.2183762174
## TOP1 -0.6148633110
## CCDC12 2.9134864851
## ENTPD4 2.4154903255
## SRSF9 -2.0867635505
## OTUB1 -0.8804962035
## TBK1 -0.4759206303
## EFR3A 2.8554295551
## DGAT1 2.1705501557
## COPB2 -2.9458540827
## WDR13 4.4678972354
## CIC 10.9703237519
## CDC34 1.2883111705
## MARS1 3.9574663298
## RER1 1.3110219794
## RASAL3 -1.6828487775
## HIGD2A 3.1067490049
## ARHGAP1 5.4482450579
## CABIN1 0.3736704428
## HCST -2.8853847522
## AP1G2 -3.6671996064
## TRIM8 -0.4253017870
## NELFE 0.1789236048
## ARSA 5.5482200117
## COL18A1 -1.3554452017
## COPB1 -2.6967191949
## PRKAA1 -2.6703436673
## ARFGEF1 -2.1190041763
## TXN2 -0.8898535466
## MLXIP -3.4169960017
## PNRC2 -1.9885442149
## RGS3 -0.1497883640
## SIDT2 1.8025071882
## TAZ 1.5475313703
## STMN1 3.7400801385
## UNC93B1 -1.5596116571
## ARCN1 0.6438069071
## CLN3 -1.8122992535
## PELI2 -3.1541208020
## SURF4 -0.1111461369
## TBKBP1 -1.3995861347
## MFSD14A -1.5984132757
## FNDC3A 0.2146216402
## SPINT2 -1.8253606010
## PSMB6 -1.1243247370
## AIP 2.8654160319
## NECAP2 4.5417705773
## BTAF1 -0.3496797135
## SOD1 -0.9329179628
## STUB1 2.8031702566
## PPP1R12B -2.5653266518
## LMF2 2.7558687114
## WBP1 3.7745337568
## SNRNP70 3.3148646192
## ZNF24 -3.3782631890
## SULT1A3 -2.7117976929
## ATP5ME -1.5186265152
## B3GNT8 6.3970896279
## MMP24OS 3.5129344461
## NKTR -0.5614416284
## PITPNA -3.3564161522
## SARNP -2.6221553926
## EIF4G3 -0.4835362987
## PKN2 -3.5436470126
## SSNA1 3.8909906214
## RCOR1 -3.6389929537
## RIC1 3.0867079197
## PPP6R1 1.6549296814
## INPP5K -0.1411325671
## TRAPPC8 -2.5060779646
## MIIP 2.9143900742
## SLC25A28 3.9614269995
## FUS -2.3019785396
## LAT -2.3755131741
## ECH1 1.2271701449
## PTOV1 -0.6167385732
## PRR14L 3.2726672148
## WDR45 1.8355097325
## NUMA1 3.7291748852
## MTURN -3.2104053231
## UHRF1BP1L -2.8779438179
## C1GALT1 -1.5527692704
## CSNK1G2 8.5118001081
## RNF38 -1.8903925924
## KIAA2013 -3.6665826820
## BPTF 2.3903475866
## PDE7A -1.2942475721
## CD81 -0.0564879263
## MTRNR2L10 -2.3727409627
## NUP153 -3.0631979112
## GIMAP1-GIMAP5 2.3502304935
## SLA2 -0.6308972499
## NDUFB9 -2.0413059630
## TOMM6 -1.3126956055
## PAN3 -2.6924775629
## RNF19A -0.2875928237
## HERC1 -0.6588666093
## PHF12 -3.3794496351
## SEC11C -3.6692952917
## PLEKHM2 6.1595074095
## ABI3 2.5404663004
## RPS6KB2 -0.5346385817
## MCRIP1 3.2776168554
## PSMF1 7.3223145137
## HERC6 -3.3531317169
## STK26 0.8986986493
## PARK7 -3.1329929990
## RPSAP58 -3.2901459432
## G3BP2 -0.4594311682
## ARPP19 -3.1546828890
## NAAA -1.2273535693
## AP1B1 1.9482017095
## BIN3 0.3620516710
## SLC44A1 12.5596353067
## NRBP1 -2.9206466006
## GOLGB1 1.7981479990
## VPS13B 1.2515597696
## SIGLEC7 11.8648942321
## ANAPC15 0.8960871070
## HMGCR -2.6586690784
## NCOA7 -2.0209248422
## TMF1 -1.3472785400
## CEP350 -2.0467987181
## OXSR1 -3.3686074992
## VPS4A 0.5469856901
## TRIM58 -1.9960511655
## GPR132 14.1590736500
## HMOX2 0.6087898097
## PARL 7.2818045955
## MIA3 -0.7833828689
## PQBP1 2.2536289225
## FAM32A -2.3767717522
## ATP8A1 5.1260153972
## FAM241A -0.7189595416
## RUBCN 1.1018129704
## TMEM222 1.8861113252
## AP1M1 9.2197645538
## USP18 -3.5875147929
## LILRB4 -1.0711857723
## ATRX -0.2393689450
## ETFB 0.2868381165
## NSMCE1 3.0220393643
## CHD7 -3.5473124263
## FAM91A1 -2.9945624984
## SCARB2 0.0128952180
## SAP30 -3.3152992639
## MAN1B1 -0.4711611235
## NR1H2 5.6444053592
## CSRP1 1.6392770489
## AGPAT2 4.0122623565
## TRAPPC10 1.5872011105
## LY86 2.1018335084
## DCTN1 2.1521635078
## SLC25A11 9.3641944697
## RSL1D1 -0.2526462457
## STT3B -2.0808974105
## WIPF2 -0.8758506944
## SMCR8 -2.7137030254
## CD38 4.6062353753
## NDUFA11 -0.6399957874
## RETREG3 -1.6261909100
## MCRS1 3.5792027484
## MAPK8IP3 18.0081073463
## SEPTIN1 -2.4913498675
## EFCAB14 -0.5537958681
## DNAJC4 5.1513862032
## PUF60 1.1022257489
## PHKG2 1.7295722920
## UQCRFS1 -1.9928735767
## EML3 4.6289648269
## AFF4 -0.3569090406
## GIGYF1 1.2184803726
## C19orf53 0.0279952063
## IRAK1 0.0046482335
## SP140 -2.7165653429
## PRR14 1.6232477457
## POLR2J -1.0624279030
## GALNT2 -2.3512360573
## C12orf57 -0.3736407529
## ESYT2 2.2361326805
## SUZ12 3.0918406696
## NR2C2 -1.8358875740
## EMC10 3.7847905302
## SIGIRR 0.4691043358
## ZC3H7A -0.8821458805
## LCOR -2.0006621395
## ODC1 -1.0297830326
## TOLLIP 3.3147117963
## CFD -0.4562152497
## TSC22D1 -0.7185365925
## HERC2 2.4347013100
## CDK19 -0.6252004790
## GPAA1 3.1478238139
## CLTA -1.6154329272
## LMBRD1 -3.3367322861
## STX4 2.9706608126
## NPEPL1 2.3126097535
## UBXN7 0.4016241979
## SRI -0.6054386759
## SMIM3 -1.9773100975
## POU2AF1 0.4098553162
## TRIM33 -1.1641587703
## SPAG7 9.2343384984
## ARID1A -3.6138315547
## SURF1 0.4364872305
## SDF4 6.2554836113
## IDH3G 5.3044120431
## SNRPB -3.2429973090
## RBM25 -3.1851586037
## PDLIM2 8.6068696331
## TEX264 1.8806433346
## EXOC7 0.0997979504
## TIAF1 0.3232069024
## OXA1L 1.7553861901
## SAT2 6.0199146849
## FRY -2.9759922668
## BIRC2 -3.5831242984
## AAMP 9.9145752126
## PSMC5 -1.7394539171
## APC -2.6960425603
## CARS2 14.9970065423
## FGFR1OP2 -3.1792665108
## AP1G1 -3.2723360423
## TESC 0.0338504918
## ATXN1L -1.6097195547
## RABAC1 -0.0167559797
## ICAM2 -3.4397289925
## CYB5R1 -1.5234392827
## KIF2A -0.1133749269
## TCF20 3.2021466748
## ATG13 -1.5314870922
## IDH3B 0.1108425247
## PPP6R2 6.6660311046
## ABHD14B -0.0618552167
## COX6A1 -3.2433308777
## UBR4 -1.3467067514
## RFXANK -1.8825192152
## UBL7 1.3467117047
## TMPO -1.8097281159
## CMTM7 3.7463723721
## RBM4 -0.9442729658
## NDUFB10 -2.1170060737
## ADIPOR2 7.9909877150
## PRPF4B -0.2749748178
## ZDHHC17 -2.2164030957
## PNN -3.4084910662
## BCKDHA 6.4700765430
## TIA1 1.2058102529
## SAP25 1.9509270724
## FMR1 -0.0428447472
## XPO7 2.1249503904
## ARAP2 -1.2226001833
## SHARPIN 5.3407730801
## SLC22A15 -2.3464096413
## RALGAPB 2.1576294107
## SIPA1L1 -3.1688743896
## NAA38 0.9658216043
## WDFY1 -0.8825153904
## ULK1 -2.1525287925
## CNTRL 0.9817399907
## RBM33 -1.3710666601
## METRNL 15.1695323836
## NANS 7.7741532011
## SPTBN1 2.4760047863
## HSD17B10 -0.0983554400
## AKT2 7.0521081240
## HDLBP -3.0246136711
## MYO15B -0.5667216809
## RANBP9 -2.2331891922
## RRP7A -1.8669025590
## SRPRA 0.5596406807
## ATF6B 6.5356078742
## TECPR1 11.3710521266
## TMED2 -3.1681895357
## HELZ 0.6184817130
## RBM42 2.7982838192
## GPS2 -0.3038893640
## MRPL20 0.9210838916
## EWSR1 0.9341521281
## ATP6AP2 -3.1973698553
## APEX1 0.2290179873
## SNF8 0.3919662129
## TXNDC11 -0.8829611464
## BRD7 -1.3349117326
## TOPORS -2.9383407707
## IDH1 -1.9673471085
## PTPN11 2.7679294932
## USP33 0.4828940339
## SNRNP200 -2.9361480762
## GGA1 3.0307059373
## CHPF2 2.2701755712
## TMEM250 6.3074901908
## CCAR2 2.1373283255
## NUP58 -3.5664613016
## EIF3I -2.7328523142
## PITPNM1 15.6921139408
## CBX7 -2.0396338026
## SETD5 -0.9022736443
## ZFP91 -0.5499768776
## ADD1 -3.1981343109
## TBL1XR1 -3.2848323383
## HK1 -3.3845222350
## PCNP -0.9531076126
## CAMK1 1.1560078494
## DHX9 -2.8583527773
## KLHL24 0.3372931493
## SBNO1 -0.5651224788
## STMN3 3.1339027837
## PITPNC1 11.8558058545
## INTS11 1.8068998688
## AURKAIP1 -0.8532499032
## SIRT7 -0.6278205249
## RNF181 -3.5855398855
## ADAP1 6.1850358686
## RNF31 -2.4415601677
## UBE4A -2.0221409140
## HGS 1.6543376350
## DGLUCY -3.5082544385
## PET100 -3.6037111335
## NEK9 -0.9251710978
## DERPC -0.1591454673
## FHOD1 3.2983191573
## CCDC186 -2.3640727394
## SIRT2 2.4043821618
## ANKFY1 -1.8532263444
## BIN1 -0.4664060144
## RENBP 4.4581039850
## MEA1 -0.8821131742
## GNPTG 9.9791381359
## SPCS3 -3.6172872978
## TMEM141 2.6479404200
## SLC26A8 -2.6081339610
## LHFPL2 -1.2364982055
## SAMD8 -3.1288140800
## PPFIA1 -1.0700906441
## CDK2AP2 3.5319501163
## RNF187 -0.2466759208
## TCP11L2 -1.2216785246
## ASH1L -0.6217212721
## AATK 1.9803756932
## ADSS2 -2.5542747637
## YY1 -1.8480710441
## ANP32E 3.3057106487
## FCHO1 5.1102182162
## BBX 3.0057546142
## CYC1 -0.1507621700
## RNPEP -2.7759015483
## FRYL 2.1763991950
## ANKRD28 -3.4513765613
## ADORA2A 0.8439761218
## SEMA4B -2.3447241846
## KRTCAP2 -2.1629467661
## DHFR 3.4375742661
## KCTD2 -1.7107612391
## VPS39 0.3708998697
## RCN3 5.9876805330
## RTRAF -2.3274607503
## LONP2 -2.8503812116
## TSPAN33 -3.5719320461
## PRPF40A -3.1058252180
## SET -3.7259919976
## COQ8A 1.4590502802
## XKR8 -3.7186449111
## C1QA -2.8973934764
## TET3 -3.4300463850
## ST3GAL1 -1.3113865066
## ZGPAT 7.9906484425
## RC3H2 1.2042925127
## LILRB1 -2.8793930234
## USP8 -1.3800826682
## RB1 -0.6637188540
## DPP8 1.3372063531
## USP24 2.6931718946
## LSM10 -1.5784975155
## HECTD1 1.3066427356
## HVCN1 1.0425667024
## NDUFB11 -3.3298029276
## PSME3 -3.1483025889
## ARPC4-TTLL3 2.0821460606
## SLTM -3.0776254389
## SPEN -2.7472164458
## RHBDD2 -1.4951732691
## C2orf88 1.6263282226
## BTN2A2 2.1983319769
## RPS19BP1 0.5193216519
## RSBN1L -3.3868325900
## ATP6V0C -3.3626360566
## CYB561A3 3.5521388244
## DBI -3.2397447586
## SOS1 3.9745378806
## PEA15 -2.2212742188
## PSMC3 -1.5780953874
## SMAD2 -1.0665114196
## CLEC2D -3.1985968402
## DAD1 -1.5860282182
## PCED1A 0.7431375417
## DENND4B -0.1277135108
## PHC3 1.1304484336
## CDC26 0.2049302527
## C11orf68 -2.3638934784
## ME2 -3.7231490558
## DDX21 -3.1229263071
## NOTCH1 -3.3785831525
## C20orf27 -1.8966192818
## ZFC3H1 -1.9230420976
## GTF3C5 1.0869393764
## NAA50 -2.8783472706
## SLFN11 0.4558707907
## ZRANB1 0.0203231218
## BABAM1 -1.2270822625
## U2SURP 1.5723606103
## SAP30BP 0.9478153913
## NAGA -1.1620389693
## CCDC93 1.5393456054
## MDM4 -0.6481522973
## AVL9 -2.2025663613
## NDUFB2 -2.3243111513
## ELOF1 2.2036585750
## PLSCR3 0.9469145512
## RNPS1 -0.9928364963
## ZBTB38 2.7647075415
## BICRAL -2.2007701198
## ZZEF1 -2.7025028877
## USF3 -0.1363813797
## NUDT4B 1.0613760943
## SPATS2L -3.0362892869
## FLCN -1.9191991888
## AP2A1 11.0817526319
## CLIC4 2.0330122747
## SRGAP2 -0.3856429931
## MTHFD2 -2.7317994050
## VPS37B -2.0106300040
## VRK3 -0.1061089836
## PPDPF 1.0211098789
## JADE1 -1.5645496248
## POLR1D 1.2191518054
## E2F4 -0.9919810717
## INPP4A 1.1869932389
## PALM2AKAP2 10.7314753913
## HEATR5B 4.1768578582
## SYNRG 1.9944666391
## AKAP8L 3.3554099714
## TOR4A 8.9402085995
## BCL7B -0.6078508535
## CUTA -3.4648605489
## SUPT5H -3.6777716891
## GBGT1 21.7469865064
## RABL6 1.3944228502
## CUEDC2 2.7007126999
## UQCR10 -1.9130667290
## HPS1 -2.0279935064
## DYNLL1 -3.6211224241
## NDUFA3 1.6718335401
## RASA4 0.8700120698
## CDK17 1.5689163735
## ZBTB37 -1.4646334816
## ISY1 0.2928168269
## MED15 4.1273308634
## CWF19L1 0.5670750702
## C9orf16 1.7932672788
## EAF1 -1.2530919498
## CDK14 0.3960065484
## IGBP1 -0.1587552927
## SH3TC1 10.7224085191
## KDM6A -2.6900388530
## CLCN7 2.3514059627
## NDUFB7 1.1987476904
## MAP2K1 -1.3983012951
## TFDP1 -1.6708821587
## ADNP 0.0847422862
## HSPD1 -0.4246879301
## TMEM205 0.9977579134
## B3GAT3 1.6764985861
## NDUFB8 -2.4477847828
## SLC38A10 -1.0454854719
## FAM78A -1.5522721565
## PLD3 -0.1019119007
## SUDS3 0.5483684963
## ATG4B 5.2247886875
## GLS -0.5441177915
## SMC3 3.0868446701
## TRAF7 8.6476116963
## BCL2L11 -3.4559052839
## BRAF -1.5654796869
## NAA10 1.2233982155
## VPS18 -0.9743714330
## TBC1D1 -3.6092142465
## CD7 -0.1553230858
## IRF4 0.8317771056
## ROCK2 2.2237743300
## TOPBP1 1.2313437837
## IMPDH2 -0.9278010638
## CHUK -3.2798137413
## GIMAP1 1.7523399726
## ANAPC13 -1.6851004603
## IRF5 -2.7096177535
## RANGAP1 -0.3859377592
## ARRDC1 7.6206845928
## CASP3 2.4400542795
## UBTF 0.0596552770
## FAM53B 0.3684270870
## HS1BP3 -0.0356515022
## NDUFC2 2.8173660629
## MYBL2 -0.5518870204
## CEP97 -1.1546567044
## ABLIM3 -0.1760583700
## TSSC4 1.6940205310
## ARHGEF12 4.4980969448
## BRAT1 10.6937721784
## ACLY 1.1138123066
## ZNF207 -3.3142778803
## TMEM115 6.4709479316
## RAPGEF6 -0.5543981176
## FBXL20 -1.4790594698
## VPS13D 1.6181582802
## SGTA 5.8858871024
## KXD1 0.6925272489
## RHOF 0.0155033025
## TNFSF8 -0.4571619519
## DHX15 3.2349388651
## TOX4 -3.5756566154
## DNAJC8 -1.9592252177
## NFYA -2.7232230879
## VAMP1 -0.2163417701
## GNPTAB 0.6307635551
## ARIH1 -0.2956542813
## NCAPD2 8.1076842804
## NSF 2.9664950740
## NRAS -1.0632297544
## SLC2A6 4.9099521480
## ARFRP1 3.7052747568
## MYSM1 0.5011268988
## HNRNPLL 5.7519163439
## STT3A 0.5831438588
## CERK -1.0627810926
## IREB2 -0.2704271664
## PDS5A 0.5452150706
## NCOA6 0.1601495069
## MAL -1.0428721330
## EIF4E2 0.8023614820
## PURB 0.5432408874
## PLCL2 -3.6756109971
## CCS 2.2700652560
## HNRNPR -0.9621113439
## UGGT1 -2.2329498830
## TRAM2 6.0659756227
## TRADD 0.4701771247
## WASHC2A 0.1378092687
## HIPK2 -2.2378687441
## DCTN3 -1.4767064091
## CYCS 3.1650877812
## CD300C 8.7870772552
## SRP72 0.6559581642
## NIBAN2 1.9692448406
## CD226 0.7928138840
## LYL1 -0.0854411818
## USP20 -0.0109890348
## MED1 4.7566828422
## SEC11A -3.5890663503
## BCL7C -1.4656294564
## RAB11FIP4 -3.2733472454
## CPSF2 0.0918408923
## DUSP22 -2.3285968957
## INTS6 -3.0626098754
## RBBP6 1.6135826915
## RTF1 -1.3797709521
## RBM10 4.3828023846
## SCP2 0.0767490069
## PRUNE1 1.3804572340
## INTS8 -2.4172014368
## AKAP10 -2.3208241934
## MCM6 19.2447950452
## RAVER1 1.2086734758
## PCNA 2.6664404788
## TMED10 -3.0028891144
## ABCG1 -2.7877965094
## CORO1B 0.3393786374
## ATP8B4 -3.1122483739
## SGSM3 4.6247042260
## LTN1 0.6060828529
## JARID2 -2.4799957672
## SMC4 8.7476514298
## PYGB 0.9196453232
## MCFD2 3.7756357520
## EPC1 -0.8852255813
## POU2F2 -3.4871733145
## FRG1 2.7737119097
## AATF 4.0474824664
## UBE2G1 -1.4719905279
## SESTD1 2.1003600413
## ST14 2.2374599467
## PDAP1 -2.1769964852
## GALNT7 -2.1651482335
## TRPM2 -1.9490664439
## HIRA 6.7683647086
## SH3BGRL2 -3.5285060942
## MKI67 10.6817179792
## ABHD17A 6.7712579187
## GPATCH2L 0.5302993876
## RIPOR1 7.8821924589
## DNAJC7 -0.8821168986
## MXD4 3.1175468771
## SGSM2 10.2415297378
## UBQLN1 -3.2368958958
## SUMF1 8.2259188926
## DNAJB14 -2.5207739786
## SGSH 3.7047091350
## SEC13 -0.7289288085
## KTN1 -1.5191978090
## GADD45GIP1 -1.9014756898
## EIF3B -2.9345727400
## USO1 1.0504019549
## YWHAQ -2.6222610724
## ZER1 -1.2667139437
## SRRT -0.5765218499
## WWP2 -3.4297627455
## CPEB2 -2.2461698952
## KANSL1 -1.3480102932
## KDM1B -2.5270787743
## PSMD9 -0.6264747526
## DGCR6L 0.3219654850
## MAEA -2.3909086521
## SPCS2 -0.7300025536
## PES1 1.6017681008
## TCEA1 3.2806886114
## GPS1 0.5944287454
## FKBP11 -3.2480459963
## FAM13B -0.6969863510
## FBH1 10.8222589764
## GCC2 -0.4470607946
## AP5Z1 4.7224705053
## TECR -3.5359405494
## PRDM2 -3.0666603709
## ZNF316 1.1029349074
## SH3GLB2 -0.5506876659
## TBC1D22A 8.2732170705
## AGAP2 -1.4874171627
## BORCS8 1.8273103761
## MAN2C1 -3.3335018129
## FIBP -0.8059415257
## TAB3 0.2287188328
## POLR2G -0.5403695542
## PCIF1 0.6231822555
## KCNK6 3.8116365883
## RBBP4 -1.1609051341
## DUS1L 0.1275141054
## ANKZF1 0.7329874486
## GET3 -1.8298365365
## ANKRD17 -0.3964888326
## PARP6 2.2641227062
## UBAC2 0.2707669512
## MGAT4A -1.5588794460
## GNA15 2.2191028033
## CHD8 -1.8806813285
## EIF4EBP1 1.8780964861
## GGT1 1.6987166380
## FASTK 0.5284185179
## TEX2 0.2210435964
## COQ8B -1.1993402212
## MR1 -2.7830079044
## TYMS 7.5553214738
## C6orf47 0.1981812086
## COX8A -3.4799743587
## AP3B1 -1.0703336487
## VPS25 0.1773077460
## MEPCE -1.6165645540
## SMARCA5 -1.7461998905
## ADRM1 3.1142433451
## FAM110A 2.1478528417
## FCHSD2 -3.6448160539
## TRPM7 3.9076724170
## GANAB -3.4269820178
## SPG7 2.6104527605
## CHTOP 0.4870856273
## MPDU1 -2.4284748262
## MED22 10.3050301475
## URM1 -0.1457614876
## WDR48 1.3706651244
## TEPSIN 1.2990129234
## NINJ2 0.2675180655
## LPCAT3 -3.3117080817
## MAML2 2.1219899872
## POLR2C -0.4362675792
## ZDHHC12 2.9126270369
## TNIP2 1.9116719655
## EDC4 1.4552111502
## PLEKHJ1 -2.2987098280
## CYSLTR1 -2.4871010988
## RO60 0.5420182419
## STK11IP 13.1723557133
## KLF16 7.8006973238
## PIP4K2C 7.5040835090
## AKR1A1 -2.9344368689
## PPM1K -1.0682634795
## UBAP2L -0.6450529510
## PCNX3 0.6218573022
## TNRC6B -3.0146987078
## ZBTB44 -2.6311078473
## PTPN22 -3.0709367602
## EXOC3 6.7566167620
## FEM1B -0.0596968339
## TOP2A 9.1698982236
## TREX1 -3.6947410506
## PANK3 -0.4820175288
## UPF2 -2.4857299899
## ST6GALNAC6 -1.8800202391
## MAD2L2 0.6838133082
## NPLOC4 -2.3979767363
## RAB11B 7.9338286968
## RPS6KA4 1.9703484718
## IRF8 0.1750418132
## BORCS6 2.4196158703
## TRMT1 0.8231221198
## PI4KB -2.3893684795
## GPD2 0.5442575072
## SUPT16H -0.0056190221
## ELOVL1 -2.4791853643
## C12orf75 4.1461275511
## FCER2 3.4549922611
## PPCS 2.5032153339
## NUDT22 6.8877414686
## KDM5B -2.4488196466
## H2BC5 -1.9425890094
## PIGT -1.1002063487
## INTS1 4.9208575578
## SLX1A 0.7254635270
## GRAP 0.0077267754
## SBF1 0.7601258765
## EPC2 -0.3653105274
## ABCA13 -2.6890539682
## CD99L2 2.2660933975
## PIH1D1 0.3549571298
## CALU 4.4748124853
## TMED7 -2.0540938238
## SNX19 1.4801772785
## CDK9 4.1463400217
## ZBTB48 1.6151385255
## POLE4 -1.1237095902
## GLYR1 -3.6224011183
## FBXO34 1.0605494141
## CDK12 0.7816520483
## TTYH3 8.2428762337
## TRMT112 -3.3725797355
## EPRS1 -0.8712160892
## CCND2 -1.1209026060
## MOB2 -2.9073697182
## NSA2 -2.8020152835
## SEC31A 1.2383887562
## DMTF1 -1.3334263164
## FUBP1 -2.7088915763
## SMIM12 1.7854927943
## RIPK3 0.9241491618
## RNF40 -2.4072969484
## TFEC -3.6605523095
## HSPB1 -0.6131392056
## TRMT2A 2.3334885610
## TRPM6 -1.3029295642
## FUNDC2 -3.3898161688
## TENT5A -1.9891393872
## MON2 0.6549572148
## HMG20B 1.7715719771
## RFX2 -2.7083762771
## ORAI1 -1.8771976638
## U2AF1L5 -1.9892359223
## BAZ1B 2.7171844606
## INO80D 2.0752015669
## PEX6 -0.0766469726
## CLASRP 3.2714012154
## TBCA -1.9347840319
## TM9SF3 -3.2726574231
## KCNQ1 6.5611513726
## GFUS -1.8378317268
## ERLEC1 -0.1753169388
## DCAF7 -0.9845516940
## ATP2A2 -0.0566597477
## MRPL54 -1.9101103507
## MED12 -2.1201798752
## SIK3 0.7607203326
## XAB2 1.7665439820
## ARHGAP21 2.8938893949
## ZNF710 5.6566034188
## TLK2 -1.0322184901
## TFRC -3.2350972280
## PIK3CB -3.7013038520
## DGUOK -2.0917792399
## TAPBPL -2.9852062808
## TPP2 0.2394516334
## C2CD5 -1.1028674060
## LSM6 8.3511250685
## DNAJC10 -2.3179991383
## CHMP6 4.7933056759
## TBC1D5 1.8778531208
## ATP2C1 5.3574474183
## XPOT 5.6386226175
## VPS16 -2.9898461677
## CLEC10A 1.4836278977
## MAN2A1 0.2679287864
## LPP -2.9396453928
## BRWD1 -1.1555780317
## ATP5F1D -0.3437968222
## RAB3GAP2 0.6723017590
## UBE2M -1.5677387145
## C11orf98 -2.6165650952
## CBX1 -1.8596926658
## HSPA13 2.8730102640
## GPR107 -2.9779373926
## GABBR1 -2.3968911297
## KRI1 1.7033268999
## B3GALT4 3.1858994743
## RNF6 -0.1783997412
## MBD3 0.6810956817
## SATB1 -3.3605171024
## IFI27L2 -3.5703728963
## CERS5 -0.7094459290
## HPS6 14.6488591176
## MFAP3 -1.5906165655
## STYXL1 -1.4539060318
## ADPGK -3.4967119167
## MIB1 -0.9599866996
## SMIM29 2.0239132300
## DTX2 2.2173753694
## EIF4E 6.1385448406
## POLR2L -0.6737538795
## STIM1 -2.1988637227
## ANXA2R -0.8036543839
## ERF 5.6745628235
## STK11 0.7042222618
## PAXX -0.4223455383
## POGZ -0.0329573302
## SMCO4 1.5913262396
## CLNS1A 1.6167546367
## TOR1AIP2 -3.2509755648
## CTDP1 0.1555724057
## NXPE3 -2.8970656399
## PAPOLG -0.6852983123
## USP1 -0.9201792853
## FKBP2 -1.1918912772
## PIN1 0.0062441673
## SND1 -3.3393579452
## CAPRIN1 -1.1444950878
## PRMT1 -2.9482738682
## PAF1 -1.9367516804
## ERCC1 3.7370636827
## ARNTL -3.7145975733
## NDE1 -3.4052947140
## ATG101 0.9145336192
## NUDT4 1.1787485121
## KPNA2 11.7857882940
## TAF1 0.0592178848
## USP48 4.0835363758
## ZNF692 1.5240793546
## BRPF3 1.6841996256
## TSC2 3.3971279492
## G6PC3 4.5939352560
## SH3GL1 1.0980740787
## HDGFL2 9.9964743247
## GALK1 2.8119063150
## NAA60 -0.4976616948
## XPNPEP1 2.8372528695
## FAXDC2 -0.2885075791
## MICB 0.4448305036
## ZNF276 -2.7761542008
## CDK11B -2.0836103838
## PIEZO1 -1.7334182343
## GNL1 -0.3169438329
## GAK 3.5267171269
## ATOX1 -1.3470829435
## RLF -3.5814606201
## ZFX -2.5653238803
## RUNX2 -1.7443418722
## ARFGEF2 3.6107117237
## RNASE1 -3.4263156923
## DCXR -2.5102942335
## DCAF5 -0.4314788742
## CUL1 -1.9647714068
## SRGAP2B 1.0770729477
## MSRA -0.0631108239
## TNFRSF8 12.1414181349
## GTF2A1 -1.4083093052
## STK25 0.9300637315
## H1-10 -2.8842750881
## CCNT1 -0.7481423267
## PPP1R21 -2.7414469865
## PAGR1 9.3104268997
## SUGP1 7.4892188041
## RABEP1 1.2461353681
## FZR1 2.5094553573
## PTPRA 0.1960244917
## SUCLG1 -3.1860716125
## SLAIN2 -0.8014207238
## TBC1D20 2.3066612563
## HAGH -0.5136853642
## IFFO1 6.9128415241
## OSGEP 4.2334431064
## TUBGCP2 3.4486391003
## MED11 4.8729959792
## CDC27 3.5601970688
## ENTPD6 -0.3797412636
## PLXND1 -0.5030005534
## MTMR4 -1.9951092541
## GATAD2B -3.1689069741
## FAM199X 0.2170865829
## TRAPPC12 12.1363530157
## FOXJ3 1.1438186414
## CLCN3 1.8619639509
## CDK10 -0.5174853229
## UBR1 5.0971707063
## CYHR1 4.8401815770
## PRPF31 0.9486337379
## ZDHHC5 -3.2180337462
## TMOD2 -2.8284856790
## ANAPC1 3.5425789521
## ITFG1 0.3292011554
## ARNT -2.8829501030
## TARS1 4.8866567613
## YWHAG -3.2765986862
## PNKD -1.0568080763
## SPTY2D1 -2.6292032806
## SFXN5 1.8383026300
## NMRAL1 0.3239803952
## ATG2B -1.2887837118
## UBE3C 2.8082478524
## CCDC107 -0.1190995919
## ST13 -2.9503278040
## TOMM22 -1.7299244114
## RIC8A -1.9558363081
## CEP170 -3.2913938122
## USP5 -1.8786051153
## RECQL -0.8735566976
## SKAP1 -3.0791881473
## BAP1 -2.5563987413
## NF1 -3.4789148623
## COMT 5.1888171206
## ATG7 -1.9686802273
## SNTB1 2.3698346047
## MRFAP1L1 -1.5613535590
## STX8 1.3180754624
## SLC35A4 -2.5968648459
## NISCH -1.1166169158
## YPEL2 -2.3256194086
## JMJD8 -0.0556759964
## NDUFA2 -3.5255923787
## ALAS1 -2.1434913857
## VDAC3 -0.7029777781
## C21orf91 -2.6454186519
## TARDBP -2.0041215599
## SNRPD3 -1.7058471875
## CAMTA2 -1.6378581301
## CTBP1 -1.3555795363
## LSM7 -1.2919197277
## BMPR2 2.6603923370
## NELFB 3.2282078314
## C7orf50 3.3966029612
## TRPV2 -1.4678659393
## NAXE -1.7190611823
## GTF2F1 1.2855437622
## HDHD5 6.1789173241
## LMBR1L -1.1974310978
## MRPS34 -0.5795780968
## AGAP3 7.2786403469
## TMEM203 -0.4610281179
## SLC35C2 -3.2381015150
## ANKIB1 4.6546321910
## CLN6 -2.3813316950
## UAP1 1.9415681548
## SELENOH -1.3487387072
## RELB -1.4630237824
## FRMD3 3.1572988556
## PLA2G15 4.9282086737
## GRHPR 2.9929119402
## ITPR2 -2.6895283724
## DYNC1LI2 -1.6789660190
## PRKAG2 -2.9916664174
## RBM12 1.0145181698
## ETNK1 -0.3393616725
## OXLD1 3.6152363109
## CCDC22 3.7268247812
## PRCC -0.9686863419
## HDAC3 1.6135951533
## R3HDM2 -2.7285129591
## CNOT6 3.0071198438
## SMDT1 -2.5471903643
## SERTAD3 -1.8006722339
## PRELID3B 0.8467304851
## RNF114 -3.4513560408
## TBCD 1.7652047045
## CEBPZOS 0.3446558101
## SLC35A1 -2.8179792346
## PMVK -0.8133989393
## FLT3LG 0.1553142500
## NACC1 4.8354614975
## DYNLL2 -3.3223590794
## SYNCRIP -2.9527715936
## RFX5 -1.7745297715
## ASL 0.5688443773
## MTOR 5.3375572518
## CLASP1 -1.7832170451
## ZRSR2 6.1920063102
## RANBP3 5.4499635531
## SMC1A -2.3300485291
## ZBTB22 3.4592402051
## MCU -2.0680279340
## CXCR5 2.1043573044
## TIMM8B -3.2258811904
## SREBF2 -0.6570213148
## TBC1D10A 10.9514575929
## MRPL24 -0.1032663598
## PPP1R7 -1.3107514945
## DDX41 -1.5797294433
## DENND4C 1.9975426243
## SLC25A29 1.5449503137
## ARID1B 3.2151980844
## RELCH -1.6279751885
## CINP 2.6651971939
## GON4L 1.1556347825
## STARD3 -1.2082534774
## TTC17 0.3409413723
## POLR1H -1.0957155477
## NDUFS1 3.8831226429
## GPANK1 -1.9804528745
## NLRX1 -0.3826601528
## FNBP4 -1.4490879030
## MED16 2.2358804405
## NUS1 0.0467431507
## TXNL4A -0.8612836518
## CNOT3 -0.2410039785
## CCNT2 -3.4712321957
## PDXDC1 3.3077918276
## MTMR1 -2.7904218984
## TMX1 -1.5468573050
## CCSER2 1.5865472003
## TRAK2 -0.3543052266
## COMMD9 -0.0606391973
## NDUFS6 -2.1791724682
## ZDHHC2 -2.7383148807
## ZNF664 3.1866011744
## MCM4 13.1724448247
## CNOT7 -1.3237465960
## MIEN1 -3.5857960206
## LARP7 -0.9650840448
## DHRS4L2 0.9199791459
## USP16 1.1162940762
## ZNF254 -0.7281216152
## COMMD7 -1.9642729740
## MTIF3 -2.1887591331
## OXR1 -2.2612005779
## GOLGA4 -1.4969104644
## LIME1 -1.9185735711
## FAM214A 1.2559658543
## SENP2 0.4648520443
## MRPL23 -1.9350004425
## HINT3 -0.4851256017
## OTUD4 1.4560003791
## MNT 7.9983567410
## PBRM1 0.4903132330
## VPS26C -3.2152768731
## NNT 4.7156295728
## KAT5 1.3942333515
## SELENOO 3.1452788624
## MRPL11 -1.7885331416
## WDR46 -1.1235340080
## MFSD10 1.7699555853
## CDC73 -2.7733852744
## ZNF622 0.9449170947
## GIT1 -0.4878642272
## SIN3B 12.9841746403
## GET4 2.6357301572
## BDP1 2.9159304947
## ETHE1 -1.8988621813
## ECHDC1 -1.5038345950
## RAB34 0.8387787257
## PEAK3 1.8215506647
## HMGCL 1.6700322362
## DDX18 -1.7699175285
## DCAF10 4.6368575011
## PAICS 5.3211333373
## ATP6V0A1 -3.0577127849
## ATRAID -3.5543624434
## ECHS1 0.9541987035
## B4GALT4 -3.2399845800
## SF3B4 7.6751412832
## CENPT 0.0596117020
## ZFYVE26 -0.0401677584
## CIAO2B -3.2236450296
## COMMD5 3.9601708895
## PARP15 -1.6862522146
## HSD17B4 -2.6962969924
## DGKQ 6.8111809880
## PSMD7 -3.7131048532
## ANO9 -0.9783426848
## CEP85L -1.0288844067
## SLC27A1 7.8736788813
## MAN1A2 2.4361456440
## ACSS2 -2.1846560148
## FAM200B -3.6744678585
## LYSMD3 -2.3166939141
## TTN -2.6646600167
## YIF1B -0.0398403091
## SELENON -0.6021387072
## ZKSCAN1 -1.1804828621
## KIAA2026 -0.3663591220
## GPR162 2.8067869570
## FRMD8 -2.1202766047
## APPBP2 0.1945286576
## CDK16 -1.6817697156
## ACP5 -0.2359388635
## TNRC18 -1.0091262976
## DCK -0.7601688210
## NOC2L 2.5369591219
## POLRMT 2.3465782627
## ACADM 6.6379432953
## KPNA5 -2.1755404412
## ZBTB7A 7.3437925864
## TRAF1 0.0669764865
## RRAS -1.9752344802
## SEC24A -2.3186763049
## ZBTB11 -1.5093866970
## PHACTR2 -0.9820420371
## GIGYF2 -1.6006637860
## SF3A2 2.5199525389
## TMEM129 6.5228208625
## LRBA 1.5286257942
## EXOSC4 -3.2394647185
## RSF1 1.6841387808
## TP53I13 2.5642241060
## FAM234A 6.0291109935
## MTRNR2L3 1.2943195071
## PPP2CB -0.4160996125
## NDOR1 0.3124354408
## IPO7 -1.7586964130
## KMT2A -2.4884299803
## MYLK 0.5054703333
## NFKBIE -0.4605278122
## SEC23B -2.4532327403
## RWDD1 1.0783741829
## ESRRA 4.7495331272
## SRBD1 -3.3535941759
## ARL5A 2.2661045542
## FBXW11 -0.4171663350
## SECISBP2L -2.8484543102
## DHRS4 1.3125985700
## DAGLB 2.6718349042
## EIF4G1 -3.6523865435
## SIL1 0.6679213354
## PNPT1 -2.7320526059
## AKAP9 -2.2036595854
## UBE2J2 3.4287530335
## CTNNBL1 -1.2968892932
## STX17 2.2932980361
## GPATCH8 -0.9167703938
## CUEDC1 9.4166236830
## TAF8 -0.9783533448
## LDLR 1.9833689014
## RAD23A -3.4871581961
## EXOC5 -1.4921239547
## MICOS13 0.7637394710
## MIS18BP1 -2.6607119483
## RXRB -3.4428192268
## NDUFB5 4.5605767738
## ZMAT5 -0.1162506002
## UPK3BL1 -3.3187313847
## ARSB 5.0497038046
## SRSF4 -2.9005783686
## ELK4 -0.8442849908
## UBR3 -1.3472415312
## CNST 0.2402266528
## C5orf51 2.7115084922
## ATXN7L3B -2.1997123323
## YKT6 -3.3869570924
## SLC2A5 -1.3034425655
## MRPL38 -1.4182961768
## KPNA6 0.3170384685
## MAP3K14 2.1203693887
## TTC37 -0.5989195370
## SLFN13 10.8503955805
## PSMC2 -2.3932961826
## FAM168A -3.2626140296
## MIGA2 -0.5372583409
## MATK -1.0720199917
## PEX16 2.2736023109
## CS -1.9314156613
## AGPS 1.1132955962
## SNRNP35 -0.9846009356
## XRRA1 -2.8213062808
## MIF4GD 0.1776684878
## ABCC4 -0.1496460969
## LATS2 1.2377283153
## RASSF7 -0.3356551936
## DHCR24 5.2278342518
## SEC63 -1.1723176010
## GNL3L 5.5644615869
## FYTTD1 -0.3635137934
## FBXW4 -0.6821248003
## SPNS1 6.5924798096
## DRAM2 -2.2033830502
## RINL 1.7384224855
## ZNF865 7.3909227876
## PDZD4 -0.5858591673
## FAM76B -2.7142065956
## DPM2 -3.4068520431
## LSM4 -0.8153640908
## PIK3C2A 2.2025447727
## EGF 1.3730850013
## ZNF672 -0.3796329109
## TUBGCP6 -1.3730556132
## LSM8 0.9576772428
## TRIM26 -1.5890079667
## NUP205 2.7649745738
## STRADA 0.8728582135
## ARMC7 -1.2010435891
## DNAJC14 0.4463642164
## TNFSF12 -1.3831571552
## MYG1 4.9018675640
## MYC -2.1721503750
## ATAD2 11.2310277563
## DENND4A -1.0971210903
## KCNN4 2.5808876022
## TP53BP2 -3.4013001945
## NSMF 7.7373360263
## MINK1 -3.0969552833
## INO80E 4.4235823905
## CLEC5A -3.5733273252
## EPHB4 -2.7147639960
## RTL8C 7.4565665939
## IARS1 1.0587433661
## E2F1 -0.8078924429
## PLEKHM3 0.1627519707
## NDUFS3 -1.8646681308
## DERL2 -1.5795668422
## HNMT 1.4552405715
## CAND1 -0.1618591345
## POLL 2.6952347175
## REPIN1 2.6787498373
## CPSF1 -2.7618713169
## KDELR1 -2.2487414715
## AKR1B1 -3.6157022681
## H2AJ -1.4142152237
## NUDT16L1 2.1780791350
## SCAF8 -3.2830836605
## BABAM2 4.4803270174
## PRPF19 -3.6547640144
## SNRPA -2.5383877253
## METTL26 0.4215480334
## MCM3 -1.2283431816
## SH2B1 2.0958235913
## EMG1 -3.2214461251
## ZNF581 0.2432905484
## WIPI2 -2.9399664452
## RBM27 0.0319371875
## NRM 3.1274073602
## C2CD3 3.2396574206
## VPS13A 3.4307901621
## LEMD2 1.7802025631
## EHD3 -0.5785238370
## SLC35F5 -0.8495483021
## RPAP2 3.1663410155
## PUM1 -1.5411056206
## RCOR3 -1.7716189073
## CCDC9 1.1234155693
## XRCC1 6.8568418278
## NUSAP1 9.2788091165
## NRIP1 -1.4026063874
## DHX40 -2.3496562864
## SRP54 -2.0643356024
## ATAD2B 0.1614717566
## DNAJB12 -1.8185820818
## FAM3A 3.1509584296
## COPS7A 3.7633355282
## TATDN2 -0.1831893603
## CARD19 -1.4724684445
## ARHGEF18 -3.2500712880
## GCC1 -2.8903224810
## NUDT21 -1.5257932034
## UBE2E1 -0.6635502968
## SLC25A1 2.8335211734
## SDE2 0.7244455767
## TNNI2 9.1885685930
## UHRF2 4.2558195735
## WDR81 0.5378384933
## GALNT10 1.9153589697
## IL27RA -3.7148827642
## ZNF318 -2.1831417845
## SUGP2 -2.1274580752
## ABCE1 -0.6411763827
## MPG 4.2527790821
## TMX3 -2.6540338922
## PRKRIP1 1.6812118346
## MPHOSPH8 -3.1086912736
## NDRG3 -0.7536190808
## MOGS -2.9816716546
## CEP192 -1.1271417651
## OTULIN 0.6228078996
## SIRT1 -2.0488325187
## BLZF1 -0.5734185615
## DIP2A -2.1911791658
## CDIP1 0.0371667150
## MORF4L2 0.2352781511
## PLD2 11.0403137686
## CDC14B 4.2232773711
## GFI1 -2.5417069316
## MDH1 -3.3715633839
## ABCF3 0.7663217970
## G3BP1 -3.3964906313
## COPS2 -3.3693552734
## CXXC1 -0.9404490277
## ZEB1 -1.9235058783
## OVCA2 -0.2775157901
## GPBAR1 4.2585706432
## ZNF518A -2.9444313500
## C19orf25 3.3461526290
## GART 4.2646049661
## TAX1BP3 -2.2846394793
## FPGS 1.0519337922
## CDK13 -2.6599365841
## MAD2L1BP -3.3470587460
## PCNX4 -0.9314474915
## PHKB -2.2863958541
## CKAP5 3.0480409681
## TCOF1 -1.0324563045
## SREBF1 9.5194816358
## REEP3 5.0421408000
## RASA4B 1.0567024810
## TRAPPC5 -0.8088198995
## AP5M1 -2.8442126816
## SIKE1 4.6021837800
## DCAF15 6.9988186135
## NCK1 0.3832945628
## RIF1 -0.0246233727
## ZNF787 -1.6681972044
## ZC3H15 -3.5778764253
## PPM1G -2.7689205594
## ACAP3 0.6025382330
## GLB1 -3.0257578729
## LONP1 0.2105668279
## EIF4EBP3 3.8543599563
## POLM 7.5349359710
## SYMPK -1.1907007463
## ZNF524 7.1950540105
## TPCN1 0.8248525245
## REV3L 0.5410551650
## CREB3L2 2.9159634647
## ZC3H13 -2.6345361610
## TMEM208 -3.7017308738
## SNTB2 -2.0624364233
## BUB1 7.0885612479
## PDZK1IP1 -0.7148522070
## SLBP -3.3458465498
## GLCCI1 -1.9723049697
## PPIL2 0.9237735050
## MED23 -3.6351658834
## ZSCAN29 6.7159739910
## ECPAS -3.2515326202
## PMM1 0.2978905023
## YEATS2 6.5531026344
## TNIK 6.3508770713
## PPP1R14B 1.6822083746
## HMGCS1 4.4324877178
## TBC1D23 -3.0243422123
## DMXL1 -0.8883668023
## RBM15B 2.8057120099
## PITPNB 4.0139360476
## DMAP1 0.9404878108
## LRRC8D 0.0495317575
## ARL5B -0.7329939307
## KIAA1958 1.3365454169
## SSH3 -1.8712902209
## EIF2B4 0.5000657137
## PATL2 0.1033561340
## RPA2 -3.5923711985
## SCRN2 3.9698535333
## LEMD3 -2.8072371601
## ASMTL 3.0048773067
## OPA1 -0.4136088157
## SLC39A9 -0.7923594018
## SPOUT1 -2.6226816862
## DDX46 -3.1122577180
## ANXA4 -0.8498058280
## TASOR2 2.0877769421
## ATP13A1 -2.9963638473
## FEN1 1.6574664385
## USP47 -2.9390478309
## SLC25A20 -2.1711952908
## THOC6 -0.0288694401
## PSMG3 1.3230211245
## RCHY1 -2.7940975845
## ZNF32 -1.5005765043
## NHP2 -1.9033963765
## DOCK4 -3.0609874456
## DDX49 -0.3003603805
## AQR -0.6918661273
## CCT2 -3.1626257138
## RFNG 1.7549224575
## OXER1 12.1166788097
## SLC39A13 10.9858426717
## RPRD2 1.1271009163
## CHD9 1.5682773316
## RUVBL2 -1.4746710296
## MAPRE2 -1.9575828428
## TOR2A 4.7249409722
## B3GNTL1 3.2554726090
## LATS1 2.2875295774
## VPS36 -2.0707644698
## ARID5B -0.3810146712
## ITPA -1.9644334759
## CSNK1G1 2.1806292014
## GAPVD1 -3.4038967322
## PSME4 -1.0654662350
## VIRMA -1.6812630913
## KLC1 -2.6651190849
## SMC5 -1.3789449605
## MFSD5 -1.9183847118
## DHX36 0.9182585451
## MED18 -0.3649351065
## SH2B2 3.7913449676
## ENDOD1 -2.9487243447
## SKIV2L -2.0379873211
## VEGFA -1.8022565992
## NSD2 7.9889502275
## HNRNPA0 -3.0245861062
## MRPL52 -0.6809994955
## MAP1S 7.0750999836
## GABPA -2.8632108322
## CD2AP -0.7146805954
## TMEM101 1.9620044067
## CSF1 -0.6586504566
## ABCD4 4.6079010136
## CCDC71 5.7353387098
## TRIM11 0.2446557283
## ZMIZ2 0.2839719028
## WDR74 -0.0220293790
## SRRM1 -2.8299668129
## FASTKD5 -0.4866952702
## MOSPD3 1.8010584881
## TM7SF3 2.0715249348
## COPS9 -1.9729079462
## PYM1 -0.5845960909
## LPCAT4 0.0794377552
## UBTD1 4.5715769722
## DHTKD1 -3.4520072741
## NEMF -2.3544291102
## SRGAP2C 0.7845580648
## FUT4 -2.9357134476
## UFM1 -3.3277441038
## THYN1 -2.9063352676
## PTX3 -2.2858239284
## RANGRF -0.5048081968
## HPS3 0.2257611473
## STARD4 5.5393736415
## TIMM13 -0.1609978934
## DDRGK1 4.4132799649
## IRAK2 0.2787855496
## GPRIN3 -3.2758011247
## SMARCC2 -3.6795045504
## REST -2.5118291030
## RCBTB1 -0.0107416128
## CLPX -0.3249626377
## BTBD2 5.1565353975
## TPPP3 2.2456921006
## TPD52 1.0965520054
## UBE4B -3.2751154845
## SOCS4 5.6324118771
## ACBD3 0.0154498215
## RASA1 -0.8018119159
## GOLGA5 1.1330872563
## KEAP1 -1.5251345420
## OPLAH -2.5160066770
## GNL3 -2.3401915650
## CBX6 -2.9325655816
## ZMYND8 1.6992675592
## IL11RA -0.9585775879
## DNPEP -2.3676987860
## SIRT6 2.9903150112
## DPH7 -1.7250189966
## ALG11 6.0897363757
## ATF2 -2.9702080627
## COG3 1.9669954652
## SOCS5 -1.9807017337
## ACOT8 2.7779277546
## CASP8AP2 1.2638052150
## TP53BP1 2.7423142032
## TSR3 -0.9859495085
## UBE2K -1.9031204654
## TRAPPC11 -2.4046561725
## PELP1 -0.4723092550
## MAPK6 -3.0694531116
## SEPTIN11 8.3308418801
## DAB2 -0.2333242245
## AMDHD2 2.5397095962
## AKT1S1 6.5408267615
## NOL12 2.0003268875
## TMEM179B 2.4757964622
## GTF2H2C -2.4317576993
## TTPAL -1.1767042147
## DDX56 -3.1402066527
## EPHB6 -1.3066909481
## AGO3 0.9750965163
## VEGFB 0.8399749734
## AMFR -3.0620097986
## RABGAP1 2.8788917672
## TRAPPC2L -2.5322137995
## LRRC59 -3.5062157281
## NFATC2IP 4.5700290153
## LMNA -2.4969101055
## XK 2.8282581213
## DLG1 4.5528602509
## MEX3C -1.5759426810
## ATG4D -0.5945122752
## PPP1R35 5.0791790404
## MDM1 -2.2301272888
## AKR7A2 2.9391983753
## TAB1 3.9972653299
## GOLGA2 -2.0952814622
## GTPBP6 2.0864596355
## CDK1 1.2524617957
## PNKP 4.4567897495
## FBRSL1 3.5580774704
## NT5C 5.6318419163
## NIPA2 -3.2470458951
## HNRNPAB -1.3453361596
## TFPT 0.5073997194
## KIF11 8.2571723072
## UBE3B 2.7024919459
## SFXN3 -0.0703958056
## HDAC10 -0.4416308279
## TBC1D17 1.5857641101
## SLC5A3 0.3370035524
## NECAB2 0.3643721606
## PDPR -3.5468427833
## VPS37C 14.3341489342
## MFSD12 1.6187016563
## ANAPC11 -1.8900304502
## CLDND1 -3.5234940427
## MPST -0.9952642063
## PSKH1 7.6692147911
## SLC37A2 -1.2337214676
## SRSF10 -3.6993936901
## PCLAF 3.3384517516
## VKORC1 -3.6614435864
## ENGASE 0.3439614786
## TNFAIP8L2-SCNM1 1.6123623509
## DENND1B -0.0281668307
## RPUSD1 3.8956061311
## F2R 1.5058271106
## MAPK1IP1L -3.5240472232
## KIFC2 4.3390880793
## UVRAG 0.4296095654
## PDK1 -2.2251429517
## LETM2 -0.5852361784
## RBBP5 0.3969077847
## MEGF6 -1.8027292030
## LSM2 -1.2788385757
## THOC2 -1.0848078160
## VENTX 11.5446123250
## NFX1 4.1200153002
## BTBD1 -2.8510802824
## MPND 3.7114207569
## LTBP1 -0.1063685498
## SMG9 2.2372839964
## LZTR1 -1.6428634126
## RRM1 4.4247611851
## TMEM106C -1.1540664862
## TMEM109 -3.1254702014
## ZNF146 -3.0372946129
## DHRS12 -3.5857362681
## WDR47 -0.5570608220
## MAD1L1 -2.5122385916
## SCD 4.8335561912
## ASGR1 9.9804860543
## CCNK -3.4069336429
## TRAPPC4 -3.2781897311
## PIGB -3.2088013677
## ORC4 -3.1974610857
## TMUB1 4.6773136354
## MCM2 4.2618654098
## PGP 0.7725078756
## TST -2.2500404092
## NUBP2 1.9830415472
## CBX5 -0.3462219558
## RFWD3 7.4450282261
## EIF2AK3 1.1722199041
## DTNBP1 -2.2467408491
## FBXO44 -3.6323606527
## ARL3 -0.4825482745
## FANCI 8.1088290005
## FUCA1 -1.0161739080
## CIZ1 -1.6528435401
## SLC2A4RG 0.0357101882
## STBD1 -3.6528542694
## DHPS 2.3085888987
## GPR137 6.0259045285
## IARS2 -2.6935180467
## CARMIL2 -0.0792970699
## BCL2L13 -1.1395281562
## RNF25 1.5604145182
## TSPAN17 -2.7472997072
## GGH 1.6075961062
## HSF1 3.1198292004
## AIDA -2.1833747491
## ENG 3.8326980570
## PI4K2B 3.3102593205
## PARP11 -1.0409599196
## ZWINT 7.8127499020
## SS18 1.4696514742
## HMGN3 -2.4827400847
## ALDH16A1 1.5685794043
## SLC4A2 -0.2955909658
## PTGES2 0.1385774408
## BPNT2 -0.0495503637
## ACTR1B -3.6016633965
## DENND1A -1.7946768057
## CCDC115 0.4671513585
## B3GALT6 3.2540921570
## PHPT1 -3.2618659762
## ABRACL -3.2871802231
## TSC1 0.2137952086
## HECTD4 3.0745403506
## ELK3 -1.5694470195
## RHOBTB1 2.2618240959
## WASHC5 -0.0539797258
## TAF2 3.8443258332
## MPI -3.6549969036
## MBTD1 -1.3323931232
## TMCO6 13.2292455525
## DHRSX 8.8845410396
## RING1 -0.9350979851
## APBB1 -0.6328142117
## PDLIM5 -2.8416543841
## GCNT1 -0.7579189737
## NUP160 0.9918242435
## HOMER3 1.1661579451
## CISD3 -0.9142356141
## SLC48A1 0.4499174105
## CTDSPL -3.4410430699
## BET1L -2.6566757382
## HENMT1 -1.7653208903
## KLHL22 4.3336011163
## PRKD3 -0.6314773164
## MDN1 -1.7175709806
## EEPD1 -1.1730380905
## PLA2G6 6.6808790431
## CASP7 -1.9437017512
## BMP6 1.0816345094
## AP2A2 2.2803057149
## TMEM256 -2.2310286811
## USP28 0.9235910693
## VKORC1L1 -3.4019644083
## MRPS18A -3.5382942369
## RNF113A 1.3759690542
## S100PBP 5.9668464747
## RNF220 -3.2678028594
## TEN1 1.3289716151
## HEXD -2.6547666756
## MTRF1L -1.3266311854
## TMEM189 2.1554806837
## BRCA1 3.9968689737
## FAF2 1.3777722237
## COA3 -1.4924861245
## ALDOC -2.3983397441
## PTTG1 -2.2404232032
## RETSAT 2.8278061189
## CCDC137 1.1165978680
## CORO2A -3.1642145673
## KANSL3 0.2020306239
## GLE1 -3.2330034750
## DAZAP1 -2.9130938763
## ICE1 -0.9773052650
## CCDC57 1.7588382110
## ING3 -2.9437595795
## MSRB3 0.3044906307
## DRG2 -0.4816959990
## LUC7L -0.3989654091
## UBA2 -3.5295362960
## TMEM170A 0.9439476338
## ATP6V0E2 0.2249941831
## MRPL49 2.5317966041
## ACP2 -1.1339904644
## NDUFA7 -1.7522923677
## ODF3B -1.6006373148
## SMS -3.5721882505
## TXNRD2 3.1499329949
## CCDC82 -3.6846648953
## SGF29 1.4161294171
## OCEL1 4.4898990232
## TCF19 7.7415703094
## SREK1 -2.5570010621
## GHDC 0.5604332465
## TMEM175 3.5785997628
## NAGPA 1.8026276329
## MGAT5 -3.6473693257
## RAE1 -3.4512347812
## AAAS 0.3972575666
## FARSA 1.3795471268
## NBPF12 -0.0633619508
## SPIN1 5.3528278912
## HYPK -2.9849687503
## DARS1 -1.5241685490
## MIF 0.0761183587
## CERS6 1.1635207613
## MROH6 -0.3837145635
## HSPA4 -0.8962207266
## U2AF1L4 0.6050661614
## P2RX4 -2.3847322655
## ZNF335 -0.9247444385
## TRAPPC6A -0.9551426196
## ACSF3 3.4345464649
## MAN2B2 -0.5147570839
## CDK11A -3.7050434664
## ZC3H3 -3.3290394371
## LIG4 -3.4258399141
## AXIN1 0.3403099609
## WDR91 1.8544739987
## CLPTM1 -0.3308894019
## SDR39U1 -0.6865644686
## ZNF493 -3.1300479826
## SMURF2 -1.7013746924
## OSBP -0.8796394665
## RFC1 1.2294281085
## ZFYVE19 -0.7690707270
## TM9SF1 -1.5419565454
## LRRC37B 2.1738112062
## GPATCH3 1.8980189327
## PDE5A 1.2431944243
## CHCHD10 -0.3660170431
## LRRC47 1.4608444297
## NUDT1 -1.1075014456
## MYZAP -0.0782600364
## TRAF6 -1.5549440243
## ZNF654 -2.9143456383
## ZNF511 3.7048305704
## RPS6KB1 2.1253603480
## TCF12 -0.2400078326
## ALYREF -2.1747828742
## PRADC1 -0.1458448284
## NCAPG 8.2323736121
## TBL3 1.4305754598
## FAM174C -0.6137468296
## NCKAP5L 10.6658940181
## UCK1 -0.2068381294
## THAP11 -0.3900910470
## KHDRBS1 -3.5465549147
## SHISA9 -1.2554057297
## BANP 1.7397263263
## BOP1 -0.0126198978
## CBFB -3.1152662485
## JUN -1.6818517349
## RAB11FIP2 -0.0450717799
## RBMX2 0.7470822226
## ENPP4 -2.7938871500
## SNAPIN -0.8809205974
## TBCC -3.6066496013
## PIP5K1C 2.1511123616
## KPNA3 0.1069973942
## SUSD1 -3.0630341939
## LHPP 4.6412767809
## NDUFS7 1.0175547488
## TBRG4 -1.1012142212
## ZFPL1 3.8181976226
## SMC6 3.2522772775
## TVP23B -3.1891996271
## BBC3 -0.3395923107
## ACBD5 -2.0618461391
## RNFT1 -3.3426639181
## CBWD2 -0.2127778335
## CTCF -2.3438208877
## CHD1L 5.6098479648
## RAB27B -1.7690728166
## CCDC124 2.5802144078
## PLOD3 2.4146850424
## KIAA1191 2.1395661719
## RNF7 -3.2569318706
## FFAR3 -3.2452472620
## FAAH 6.0588822844
## CEP120 -2.6583416856
## CCDC130 6.7817116969
## ATXN3 1.0139994769
## RUSF1 -3.0306404033
## HBS1L 1.8464245708
## CCNA2 7.4664932317
## SCAF1 2.9974756552
## ARHGAP18 -2.1958271517
## PNMA1 2.0545043690
## SLC1A4 -0.3477329951
## RFTN1 -3.2381189905
## FBXL13 -0.3257116586
## SHCBP1 8.3808946489
## PRDM4 0.1535578903
## RBM14 -0.1617428730
## BAG5 -0.7126126126
## TDG 0.8803903656
## NEXN -1.9815480541
## R3HCC1 -0.4533616257
## MYCL -2.6432664152
## EPAS1 -2.3521230426
## POLR2F 0.4544729810
## ATF7 -3.3820028266
## GFPT1 8.3524635948
## NSUN2 -1.6350556756
## RPP25L -0.6982714884
## RBBP7 -2.3004737436
## BRD9 0.4634638526
## SLC23A2 -1.0099695361
## HCFC1R1 0.8604998548
## PSMD5 0.7865284451
## NET1 6.4497545812
## PEAK1 2.8199386512
## MRPL33 -2.0952329936
## SLC22A18 2.9904646025
## ARID2 -1.9382954874
## TXNL1 -3.3613534765
## PRKCE -3.6624149768
## STAMBP -1.2758593441
## ESCO1 -2.1778213285
## CYP51A1 3.1270228787
## TMED1 0.1306021155
## ANKRD33B 2.2477731093
## SMU1 -2.9118874155
## GBF1 -0.5121198515
## LTBP3 0.9697083371
## MTF2 1.7058030934
## TRIP11 0.5577988479
## CEP295 3.1017930493
## SLFN12 1.3355250777
## AK1 0.6609654241
## TMEM184C -0.0443306211
## TMEM245 -0.2121027418
## AP3M1 -2.8927042476
## TMEM87A -1.9876482520
## SLC30A7 -0.8574906056
## ATE1 0.7167344927
## DMAC1 -1.9088553882
## INF2 0.0167940995
## NIPSNAP1 -0.2344393153
## FAM20C 9.3228549425
## GPKOW 0.3564519943
## TELO2 3.8678197528
## NFIC 5.8927600366
## YTHDF2 -0.5414116477
## ANAPC2 -0.3201836439
## SNAI3 -2.2648931488
## PRC1 1.3056279081
## ABL2 -0.8903505947
## NUDT18 -3.1535761137
## PACS2 3.4193190124
## SSBP4 0.6571914273
## RAB40C 9.5837901645
## SINHCAF -1.2830877572
## CRYL1 7.9611004920
## PIK3R4 1.6417579869
## H4C8 1.7343764462
## AP3D1 -1.8574852807
## STK32C 8.1186369371
## IMPA1 -2.2882047191
## ADAT1 -0.4149739526
## PIGQ -0.2590849797
## MRPL4 0.1120754622
## ROMO1 -3.4519421025
## MRPL12 -3.5224899317
## TMEM147 -3.3366966850
## UCKL1 0.7420923892
## LAMC1 -0.5823166355
## GATD1 -1.1143405813
## POLR2H -2.9001286140
## ALKBH7 1.4662216252
## ETV3 -2.8688608478
## ASCC3 -1.1808571174
## PGAP3 2.4293835708
## DOP1B -0.8946553777
## CDK6 1.6076767957
## TBC1D2 -2.3586998343
## EIF2AK4 1.9090356060
## LAX1 1.8563143814
## NOLC1 -2.9237770187
## IBTK -2.6515304763
## NBPF20 -3.6517437242
## RRP36 -1.0392185616
## CCDC117 -1.4710559690
## ACP1 -2.5776879121
## MED7 1.8638412883
## YAF2 1.6235409962
## FHL1 -2.8117184289
## ELOVL7 0.5010411948
## PTBP2 -3.3643280726
## EMSY 1.2869836995
## UTP3 -0.4582250988
## CEP20 9.0208115362
## RNF216 -3.3338438443
## BTBD6 -2.7360218811
## BAHD1 0.4797522294
## CBFA2T3 -2.4431743438
## C6orf120 -2.7244890037
## BIRC5 -0.8973212828
## RACGAP1 12.1215243601
## ABCB10 -1.5486709103
## KIFAP3 3.0543255010
## ZNF580 1.8404878530
## EYA3 -1.2346310395
## BAD 1.2266834506
## CBLL1 -2.2091032484
## REC8 -3.2283096708
## SERINC5 -3.4534629331
## GDPD5 -2.7659942132
## SPAG5 7.3433643355
## TTLL12 9.1593317495
## TTBK2 1.4121807586
## COA8 1.5790632022
## DUS2 -3.0374436369
## TPX2 6.3255525034
## RAB3IP 0.3924111176
## C18orf21 5.8274252653
## CCNQ 6.6206878992
## CTDSPL2 -1.7390532030
## MRPL14 -3.6988841568
## MRPL53 -1.6585455862
## ZBTB33 -1.6888586634
## CCP110 -3.2090820544
## NDUFS8 -1.4139752586
## E4F1 5.6561787078
## SMARCD1 1.4885532532
## ARMH1 -2.7998627652
## CARD9 9.1013417234
## SCYL3 -2.4427898543
## RMC1 0.2154813992
## ZNF587 -1.9214153538
## DNAJC9 -1.8803794207
## SECISBP2 -2.6288709003
## POLK -3.5588192624
## HGH1 1.4269801370
## MBD1 -1.8701384252
## HEBP1 -0.6156424729
## CC2D1A 1.0020328049
## USP12 0.6187155838
## MCUR1 4.9509802544
## NCOR2 -0.3109100253
## UBOX5 4.9298938928
## FAM126A 0.1456378551
## FAM98C 4.0402530459
## FBXO28 -1.2109971892
## CWC15 -3.6365285172
## POP4 -0.2336372138
## ACD 3.7700626014
## MUS81 -0.9995493752
## ALKBH5 -2.9184436128
## EHMT2 -2.1196486850
## MTREX -2.4735292135
## ZDHHC6 -0.4261336509
## NIBAN3 -2.8080632383
## FBXL4 -2.2069922291
## DDX54 -0.7679431416
## DDHD1 -0.9129023063
## DELE1 -1.0333857776
## TFAM -0.9105332390
## KNTC1 8.5762210891
## STON2 1.9565745304
## P3H1 -1.6413229021
## CHCHD5 1.3716412474
## TIMELESS 9.3357850094
## FLAD1 -1.7109459273
## GLYCTK -1.0961058628
## B9D2 -0.2199277265
## CAMLG -3.6495992578
## MLST8 1.5837424864
## RABGGTA -0.0849164914
## SSBP2 0.4554961605
## AKAP11 -2.9752984156
## MRPL43 -0.1954907657
## NME4 -2.1131952042
## MTHFD1 6.5965776662
## SCAND1 2.9524325283
## SEC23IP 0.5687786377
## MGMT 1.0458007958
## CD72 -0.5649602808
## MYB -1.0084643409
## CENPF 8.5832012796
## DPY19L1 4.4566080721
## KRR1 -0.6717232653
## TIGD3 -3.5788361360
## BCL2L15 -3.1971493207
## INAFM1 2.0145820492
## FAM149B1 4.2166117791
## ATR 0.3319909390
## SNAPC2 7.3617719416
## HAPLN3 -0.5094467167
## SLC30A6 0.3816413573
## COQ4 -0.4759472541
## DDI2 1.6806978072
## ECSIT 0.3685811714
## NOL7 -3.6178333255
## SMC2 9.0784115406
## NFKBIL1 2.1994341424
## DNAJC17 -0.3709474777
## PPP2R5E 0.4395961766
## SELENOI 11.9847130295
## CIAO3 2.7481852964
## ZBTB17 -0.1547375660
## MANEA 4.2754576010
## CLPP -1.7993328948
## RSAD1 -2.7307194592
## POLD2 -2.5958586722
## CDC20 -1.2904082649
## DUSP7 -2.0669886767
## SCAMP3 -3.1000473263
## PLA2G4B 1.5259525275
## ZNF451 -1.0525336302
## SERTAD1 -2.2031993932
## NDUFAB1 -3.5954842804
## SAMD1 -0.8029479581
## FAAP20 2.6198546261
## KHDC4 -0.6056976163
## ZC3H6 2.2297921350
## GP9 -3.3786971406
## ZNF609 -2.9004986933
## VPS72 2.1934597550
## FAAP100 0.7039941347
## ARL2 -1.5061331969
## MVD -0.5883933302
## DAPK3 -0.8686075862
## PLA2G12A -1.2533643798
## NAPG -1.1830645799
## NAGLU -1.5984202678
## KCTD17 1.4020078710
## DLGAP4 -1.3553303669
## DDA1 -0.4989945786
## ERI3 -1.7646802581
## SP4 0.4120958458
## INTS5 -0.0930179789
## IMP3 -3.1114060009
## SORD -1.2439650271
## MZT2B -1.2960946680
## ZNF688 5.2009528825
## RABEPK 4.3945528974
## MVB12A -0.5665704396
## XPR1 -0.3973655404
## ZMYM4 -0.4157410901
## LMBRD2 0.2748140392
## TIMM50 -3.4559076878
## GFER -0.4251501612
## CTNNBIP1 0.0974415889
## NCAPG2 5.0512978932
## PIK3R6 -0.4487489936
## KAT2A -3.1743115975
## FRS2 0.7785101107
## LRRC58 0.3617942844
## RECQL5 3.4308330101
## RPRD1A -2.7848214859
## ARIH2 -3.3349523550
## RBM18 -2.1751884558
## INTS10 -2.7464339349
## ABCD1 3.2804907037
## CCAR1 -2.7850646967
## METAP1 0.7946864433
## C9orf139 -0.8318679696
## COX17 -1.5163728427
## FAM98A 7.0207046295
## GOPC -1.8986560560
## PCYT2 -2.2162100985
## MANBAL -0.3701937288
## TAF9 -3.6943796100
## LMBR1 -3.6876923615
## EPHB1 -1.8347038191
## ZNF66 -1.5597325444
## RBMXL1 -2.2086938481
## PIWIL4 -1.3327926562
## NPAT -1.5714584656
## DHRS1 -1.1991644488
## KATNB1 2.6826737502
## ZHX1 1.4889284521
## PRRC1 -0.1395711883
## SPATA2L 1.0591060054
## PHRF1 7.4668484768
## PKHD1L1 3.7797591754
## REXO4 -0.4122502611
## CAPN10 4.1264746586
## ZNF263 -0.8408482941
## TYSND1 0.4607977358
## LAS1L -2.1463045385
## HACD2 0.3820218685
## FAM160B2 -1.2571154930
## DNM1L -1.2358356364
## CUL4A -1.9494857248
## BEND7 -0.5207381781
## EMD -2.9404056975
## CCL3 0.2739794137
## ABHD11 6.1793181926
## EIF2S1 -2.1219867316
## CDC6 10.6309047750
## IPO9 0.0139660659
## CLTCL1 -3.1790310217
## EZH2 12.9899956994
## CLASP2 0.8087010771
## WDR33 0.5046066059
## HIP1R -2.2325414945
## MEI1 -2.4249026896
## MGA -1.8691170016
## MAFK 10.4935326522
## DCP1A -2.6914560452
## NAT9 -0.1368784787
## CAPN7 -2.3172461036
## BCLAF3 -1.7569918118
## UCHL5 7.6466150797
## ORC2 -0.0564348386
## ZBTB47 5.2182708028
## THAP3 0.6287294545
## IQCE -1.8360545696
## HECTD3 -0.3696919952
## CLIP4 -2.7203523419
## PAXBP1 -1.3653739189
## NAPB 0.6015859117
## GSS -3.0633360414
## CATSPER1 7.4211735897
## MAPK9 4.9453943058
## PSMG2 -1.9135058101
## UFL1 -2.7730064629
## TBC1D13 -2.2301444334
## HAUS7 2.9915525245
## CNOT9 0.5014876310
## LRSAM1 1.6196171484
## FCSK 1.6593283634
## TENT4B -3.2015558775
## VTI1A -2.1765359302
## LRFN1 -2.6418802248
## ASPSCR1 1.0472764604
## ABT1 -0.3428960254
## PEX19 -3.5252620723
## SPATA20 0.0118632175
## BOLA2B -3.2284494944
## EOLA2 2.0427213784
## SENP1 2.1080642008
## SPATS2 3.7393987560
## PEAR1 0.5252664205
## TTF1 4.4245261680
## DHX16 -1.3758243097
## POLR3H -1.9895082634
## TMED4 -0.4412028123
## CCNB1 1.9365183342
## ISG20L2 -3.3217058556
## ATP13A2 -0.4802419181
## TCF4 -0.7999826420
## AHSA1 -3.4905039807
## KDM4A -2.6677651281
## WDR44 -2.6213031590
## DESI2 0.4427984236
## MARCHF9 -0.2375324565
## CSE1L -1.8443862219
## RPS6KC1 -0.5274141104
## TNRC6A -2.9594137483
## SFI1 -1.7240342906
## ATP10D -1.4443729971
## KCTD9 0.1433877926
## YJU2 0.2216953788
## GMEB2 3.8013643788
## TMEM134 3.9939730039
## SSX2IP 3.2049719181
## GTF2F2 -2.8325234546
## CDK2 10.8329087693
## AAR2 -0.0522806731
## RBM43 -0.8907593020
## WDR70 0.3133757114
## CKAP2 5.9042142374
## MTG1 -3.3921602823
## GRK5 -3.1226054040
## STAU2 -3.4495841115
## SYNJ2 3.1914909782
## PDE1B 0.6435421291
## APPL1 -2.5715733720
## MOB1B -2.1637454044
## ATMIN -2.2658653320
## DENR -3.2622063438
## ANKRD27 -0.2458016838
## ILVBL -0.0093661432
## SCAMP1 -3.6971305599
## SCAMP4 4.1262793635
## ABHD10 -1.1166478790
## RIN1 3.6930171693
## TSR2 -2.7053562429
## DNAJC15 -2.5580915698
## METTL4 -0.6474278306
## ZNF444 1.6390403701
## RAP2A -3.5916181645
## WHAMM -2.6076893686
## TRRAP -2.7425249769
## ZNF75D 2.0594163109
## NEURL4 1.5609958475
## ESS2 1.5793518600
## CDKN1C -1.9632498822
## GMEB1 5.2696858279
## GCHFR -0.5549807885
## ARMC6 -1.0327272740
## TNFRSF25 -2.0769392348
## VPS53 -1.5211853202
## MCM9 0.1133798245
## LENG1 2.1210855980
## CDCA5 4.1729683349
## ARL15 1.9476667519
## SPNS3 -3.2332055296
## SMPD2 0.7123368165
## AP4E1 2.5838412895
## GSE1 -1.2477873430
## PUS7L 2.5935448163
## JMJD4 -0.9520165477
## FAM3C -1.8823876062
## LRRC8B 2.3717148447
## USP6NL 4.1622731923
## FUT8 10.6466917343
## ITPR1 -3.4770789389
## SLC35E1 -0.6983454439
## NEK4 0.2696714096
## DHRS3 -0.5756232199
## MRE11 -0.4732219161
## ARHGEF10L 1.5061229062
## SIVA1 2.5867568462
## ATP11C -0.7629020766
## ACSF2 -1.1999668639
## KCND1 -2.1010524242
## SLC35E3 -3.4282175369
## GOLPH3L -2.5308758178
## SENP5 -0.1409723714
## CCDC32 1.8445234589
## ZNF224 -2.8781748490
## RSPRY1 -2.7679201383
## PWWP2A -2.4929738880
## TKFC -0.6947279629
## NBPF11 -1.7394815361
## TUT4 -3.3279027621
## B4GALT7 -0.3905253361
## DLGAP5 4.8656108689
## IGFL4 0.1685565417
## OXCT1 -0.7866950361
## ZBTB2 -2.4246733577
## ZNF844 -3.4337391774
## TBPL1 -3.0584105471
## GNG7 -3.0255440335
## TNFAIP8L1 0.7016842181
## FAM122B -0.3896562025
## ARHGAP5 0.1443517941
## KCTD5 0.8219717167
## SORBS3 1.2507403900
## SAMM50 -2.5444813033
## NAA15 -0.2012757615
## TMEM39A -2.0069975440
## MLLT10 -1.5480283522
## TCHP 2.5190303881
## ZNF22 -0.9337759556
## NCAPD3 5.5967492761
## MCOLN1 -3.6706098922
## MRPL42 2.5197817430
## COQ2 0.4586479746
## TUFT1 -1.3017806322
## CALHM2 -2.4369684224
## RABEP2 2.3433169090
## SMIM7 -2.5758730640
## ATAD1 -1.5018487611
## HPS5 -1.1478893062
## TMEM11 -3.3444080901
## FUOM 0.4587118967
## HDHD3 -1.3684422839
## UHRF1BP1 1.4078285512
## UBR7 1.9409137328
## DHX38 -2.3374848052
## EEFSEC 0.1421025200
## STK19 -0.1574520460
## MAP4K5 1.0438366306
## DALRD3 -1.4664738427
## ANKRD52 1.2706137478
## ADRB2 -2.7401846393
## PHTF2 -1.7908085540
## TRNAU1AP -3.2989133968
## POU2F1 -2.0278528022
## MTMR11 -2.7925546098
## SNRPB2 -3.0977326676
## RNASEH1 4.1947685179
## PHF6 0.9382295035
## THAP4 -0.3379809188
## ATF1 -2.3520970907
## IMP4 -3.1958712122
## MIEF1 -0.5887566613
## DVL1 6.9089962480
## NR4A1 1.2220603276
## SEMA7A 0.8279965340
## RAB30 0.8685830360
## USE1 0.1207758372
## SLC10A3 -1.6560568152
## MSI2 -2.3300650354
## TMEM94 -2.3808042258
## GIPC1 -0.7081639059
## LARP4 3.0577043144
## ASPM 8.8338526938
## EEA1 -1.5634451580
## PLCB3 4.2338577604
## TMEM60 -3.6596051101
## ADCK2 2.3038015913
## LRCH3 0.9099992473
## PTK2 1.1863790443
## SURF2 2.7448608827
## CEP162 0.1932856507
## ZMAT3 -1.8255857810
## PATZ1 -1.8240136318
## INTS4 4.6178697244
## POLR2M -2.9699257308
## TOM1L2 7.2101364387
## RBBP8 3.0395896389
## KIAA0319 -3.6014139363
## FAM102B -1.7784204637
## IGSF8 -0.5966135724
## SART3 -1.3407320336
## DIABLO -1.2012115879
## UBQLN4 -2.8339965578
## TNF -1.5387186813
## RDX 4.0363190745
## MTMR12 -3.2567271398
## AMIGO2 0.8071394414
## ZSWIM7 1.7907483339
## CLK2 -0.4129629437
## PTPMT1 -2.8712627891
## GOLT1B 0.1853105316
## REV1 -0.8898452016
## ZNF784 3.6972686158
## NOL8 -2.4812618296
## THAP7 1.2664281519
## HEMK1 -3.3757067327
## KIF2C 2.0060278457
## EXOC2 -2.0252224245
## TPM2 -0.1896674586
## PRPS2 -0.5170185395
## IL21R -2.3643282648
## C5orf24 -1.4738973989
## RAD50 -1.5660497095
## CDK5RAP1 -1.8578519526
## GSTZ1 6.9880273771
## MRPS11 -2.6640826054
## PHACTR4 2.1882780738
## GARS1 -3.7259929170
## SLC39A6 -2.4737201806
## CSNK1G3 -3.6931902496
## PDE4DIP -3.6314481826
## ZKSCAN8 -2.0972282269
## DNAH1 -2.9107032422
## COA4 -1.6240270984
## MIER3 3.1409824549
## FOXM1 4.0233899493
## CDK5 1.3773546901
## KLHDC4 -2.2761845542
## DHX29 -0.0399332166
## CCNB2 1.2143671573
## SOWAHD 5.4960368041
## MRPS25 -2.6316843400
## GUCY1B1 -2.6047483612
## MED14 -2.8188483938
## RNF126 2.3399468403
## NHLRC2 4.3200224073
## CHD6 -3.5824570812
## NECTIN1 -0.6973385886
## STRIP1 -1.2484700675
## NFKBIB -2.6537216007
## NME3 -0.3368227479
## SDHAF1 2.2779101244
## FADS1 -0.7577464135
## RMND5B -2.2537600463
## PSMD11 -1.8414389209
## BTLA -0.2079633797
## DENND6B 7.2127014761
## MRPS23 -3.3046571159
## RBM12B -3.0092140265
## HRAS -1.5119669269
## C12orf76 1.4037812508
## SMURF1 -3.6573468983
## TCERG1 -2.0880084180
## CENPU 6.6790453610
## DHRS7B -1.1278947128
## SACS -2.2928955199
## UBN2 -1.7797487180
## ZNF81 1.0953735585
## CFDP1 -2.7238332556
## IQCB1 0.5712020925
## SMAD5 -1.2039300151
## FXR2 -3.2906259253
## HEATR1 -1.0235550890
## METTL14 -1.2883680327
## SMARCAD1 -1.8167184020
## NAALADL1 -0.1266809260
## TTYH2 -2.4643295948
## PLCD1 -1.0834788948
## MRPS2 -2.8697412229
## BLM 6.2899835022
## HYAL2 -0.8910738617
## RELL2 0.8906229732
## UTP18 -2.0425834436
## TK1 -2.4803208080
## SPAG1 -0.0011734709
## ANKRA2 0.6730356246
## PICK1 -0.4527231424
## REXO1 7.8873783592
## KDM4C -3.7043108773
## ACADS 1.3546441559
## ARL16 -0.8771768126
## INTS6L -3.0445772780
## GOLGA7B -3.4287049515
## MSH6 0.0304592614
## MPHOSPH9 4.8687256318
## POGK -3.2232727299
## EDRF1 4.4232086238
## ZSCAN32 -1.8345694779
## ZNF428 0.8933306716
## CENPE 4.8237238711
## FBXO31 -0.5261033463
## MED17 -3.4322737597
## VPS52 -0.3962743834
## MASTL 5.5517138055
## APEX2 -0.6826064501
## PLA2G7 4.9764358831
## PARG 0.7769773370
## PHETA1 2.7047504797
## LRRC61 8.5620165813
## PRPS1 -3.0039851443
## TESK1 0.3179052261
## TTC33 -3.5648760284
## TMEM234 0.0261852228
## GORASP2 -3.3613206393
## SNX8 1.1730324624
## DENND5B 1.8048257155
## NFATC1 0.1753224547
## NUBP1 -1.0831957030
## TOP3B 2.0473627363
## SWT1 -0.5253450670
## MAD2L1 2.9648907834
## TRAPPC9 -0.8831121728
## NDUFA8 -3.0271962410
## UBA5 -0.1292863796
## SEPHS1 -0.0448503809
## PCK2 -2.9172391202
## HSPBP1 -0.9786097830
## LYRM4 -2.8477415121
## CAPS 2.7826482599
## FAM20B -0.3959357018
## SLC4A7 -2.8799003282
## HIKESHI -3.0083732434
## DPH5 0.3464637614
## CFAP410 -1.0156153382
## ANKRD40 -0.3057994027
## ZNF136 -1.8253322235
## ABHD18 -0.5673685714
## FEM1A 1.1326076551
## TRIM24 -3.6007943922
## SLC16A1 6.3779209382
## S1PR3 -2.8755648267
## CEP57 -3.0952585737
## KAT6B -0.5938002798
## SERGEF -0.9555926983
## ZNF684 -2.0327426309
## METTL3 -2.6245557553
## INO80 -2.1773678472
## LIN37 -2.6052384916
## ASB13 2.0673772425
## OGFOD2 -1.4716168456
## FIP1L1 -0.9310958439
## WDR43 -3.1414810022
## TRMU -1.0755292078
## XPO4 -2.2324384891
## REEP4 -1.3006433422
## PEX5 2.1939294549
## EDC3 -1.4937670523
## PCBP4 -1.3469892471
## CAPN15 1.6949825838
## TGFBRAP1 0.9909476185
## TRAF2 -1.1931491595
## ITGA1 -1.0264134598
## NDC80 10.7906920631
## ACTL6A 0.0207112518
## BCORL1 -3.5949403793
## PBDC1 -2.9471456552
## GUCY1A1 -2.0272685255
## SLC25A45 1.4379807860
## SCRN1 -3.0270126165
## SLC16A7 -2.9580536600
## CENPC -2.8537278559
## USP39 -3.7242539738
## VPS37A -3.5437846600
## BCAT2 0.4049718595
## UXS1 -2.7773779456
## CROCC 4.0450121601
## DUSP18 -0.5580061475
## RGPD8 1.5554255911
## PPP2R3B 5.1530851266
## NDUFAF7 1.2845916477
## RAP1GDS1 -0.9471443259
## STRN3 -2.7918903798
## VSIG10 -3.1392209068
## GINS2 3.5224407726
## CEP135 -3.3807568611
## SCCPDH -2.6851579170
## REX1BD -0.2056770884
## SKA2 1.4185792551
## ZNF280D -2.4343826227
## BTBD7 -2.7734245249
## RAD17 2.1165523311
## CENPX -3.4346495850
## CTNNAL1 0.8533251106
## CCDC61 4.7336889607
## ZNF799 -3.1609241120
## HAAO 13.0634204159
## PIGBOS1 -2.1809704873
## GALK2 5.2406438564
## HJURP 5.0731073495
## NCBP1 -1.8975930733
## HMGXB4 0.2244605912
## EXOSC5 3.4833971136
## GFM2 0.7003918474
## SLC25A25 0.4229695831
## AK3 0.5862612064
## TNFRSF9 -3.1290092562
## AGFG2 -2.7020656556
## DEAF1 -1.3295554692
## ERMP1 1.8341269051
## BOD1 0.3580813475
## DHX30 -2.8536687695
## MAP3K6 0.4846307824
## RASGRP3 3.3203080775
## USP14 -2.4111769959
## PRXL2B 2.4815197269
## NGRN -3.3709945591
## ZNF362 12.8997145167
## RPRD1B -2.5163433896
## PELI3 13.4862191138
## GTF3C3 -1.1664542341
## SPPL2B 1.2803949221
## CPTP 0.8419688463
## SLC33A1 0.1264440889
## ARHGAP11A 9.7712830042
## BCOR -2.0770564451
## NRF1 -0.8299449526
## KIFC1 3.4092453040
## SLC17A5 -2.2347308096
## HDDC2 -2.7999135177
## PPP2R1B 5.9067431031
## CUL5 -2.0823934123
## SLC30A5 -3.0527526027
## AARSD1 -2.1220585297
## CDC7 17.1928081817
## DTL 12.9157542237
## OSBPL3 -2.0928073332
## ERCC3 -1.8520468521
## UBALD1 0.3053011651
## TM2D2 -0.2201984738
## YLPM1 -1.8199686261
## GRAMD4 0.2695218038
## GCDH -2.3465180218
## SNX21 6.2680888745
## ALDH18A1 -1.0047230111
## TMEM187 7.2725822961
## UNC50 -3.4516224007
## DDX28 -1.0076966167
## SUCNR1 2.2712246895
## INPP5B -2.2506737578
## KCNH3 -3.5077565034
## AGK -2.2560675904
## C7orf26 -2.7858521319
## NR6A1 0.3825759078
## ZDHHC13 -2.7921443499
## PIGC 0.0569695726
## ZNF783 -2.4614824693
## SLC35D1 -1.3777444199
## GLO1 -3.2377845683
## CACTIN 3.1054677712
## ZSCAN18 2.6484665044
## RTL8A 6.5171543673
## MUTYH 2.0664656716
## SNIP1 -1.7135044214
## RNGTT -2.9052238150
## CES2 -1.1785637776
## TNPO2 -2.7977798886
## PTRHD1 -1.2646520136
## ECT2 4.0306299899
## DIPK1A 1.5715820813
## INO80B 6.0759945201
## BLOC1S3 2.6183925884
## GOLGA3 -2.6677507885
## ZNF621 -0.4068231873
## TBC1D25 -3.2282490888
## IDE 0.3907146259
## DSTYK -3.1887117515
## TOP1MT -0.6245176505
## CUL2 -1.8855392803
## PTGIR -2.8879958284
## MAP2K7 -2.3973311058
## TAPT1 -3.5483784342
## KLHDC10 -2.7307337286
## NIPAL3 -1.6191753177
## FBXL6 -1.9178938833
## COQ9 0.3236256017
## SNRNP48 -2.4842765989
## BRF1 2.7148244185
## GALT -2.3837129665
## ZNF28 -0.1612439300
## RNF168 -3.1444161554
## COMMD3-BMI1 -3.4967502564
## ZNF699 -1.5892370113
## ELP5 -2.6099362061
## ZNF598 1.0049460860
## DCUN1D3 -0.2059275122
## UHRF1 5.6767888891
## SMIM5 -3.6745073635
## FBXO5 11.6415226328
## WDR36 -1.8166006230
## GMNN 2.8563736166
## SWI5 -0.8993896640
## MROH1 -0.0792350666
## GATA3 -2.0226350999
## MCCC2 0.3725872160
## SLC27A4 -1.9949247592
## COG5 -3.4242545261
## CENPN 0.2052133399
## PDK2 0.1916576710
## SQLE 0.9763149005
## ABCB8 -0.4974717303
## ABCA5 -1.5630014599
## OGFOD3 0.6963704029
## NAE1 -0.0472146942
## TBC1D22B -0.9919956396
## CDKN2AIP -3.5475110750
## LOXHD1 -2.2953147897
## N4BP2 0.1731442608
## VAMP4 -3.0756533021
## NPIPA7 -3.6525120532
## PEX13 -0.2575083287
## MDP1 -1.4599710570
## DERA -3.1906125749
## ZNF671 0.2435331226
## PLD1 -1.0348731740
## STRBP -0.6465055226
## NDRG2 3.3818345886
## KCTD11 1.6292032614
## DUSP23 -3.3444142595
## CDYL2 0.5928875626
## PMPCA -2.6157892759
## CHEK1 11.0264265410
## SLC46A2 -3.3887713510
## NBDY -1.6625256763
## CCDC134 4.9485866176
## ECI1 0.2642986078
## ERCC6 -0.1666268482
## TMEM64 3.2928701433
## NUP107 -1.3021830737
## TIMMDC1 -2.2598012320
## KNL1 8.9800733477
## ATAD3B -1.7356342233
## NAA16 1.0099257712
## MEN1 -3.1184046357
## ZNF358 4.9978034539
## RPP21 0.0095756236
## CZIB -3.3218486776
## VRK2 -3.7181450948
## AMMECR1L -0.6994116712
## XYLT2 -0.2508438033
## ZNF468 -2.0429089527
## GPN2 -3.0356256992
## DOP1A -1.8740269963
## SLC35A3 2.4177456774
## TOMM40 -3.5230203961
## ABRAXAS2 0.1104641459
## PPAN 1.4580371847
## RTN2 -2.2127644666
## BUD13 -1.6728023507
## NUDT2 -3.3881261856
## EFEMP2 -1.1611212724
## LCMT1 -2.3617543686
## AASDHPPT -2.5840700462
## NDUFV3 -1.3219882183
## CDR2 -2.5224600926
## MRPL41 -0.6558877771
## KANSL1L -1.8305465788
## TMEM102 3.2161226471
## DYM -3.4784733276
## ZNF100 -3.5943872123
## DOK4 6.6457468620
## PEPD -3.5320479183
## MSMO1 -2.9760574149
## RARS1 -3.5960600076
## SIAE -2.9519085289
## POLR2I -1.1831057915
## ZNF791 -2.0823103139
## TMEM86B 1.5009986748
## TMEM62 -2.5692145581
## SLC9A6 -2.9165196946
## DDX52 0.5412433079
## IGHMBP2 -0.3047340999
## TTF2 1.1472481537
## RFC4 2.5584864287
## TMEM88 4.3317251068
## PWWP2B 4.1112469852
## BUB1B 7.5759402401
## PVRIG -3.4336387917
## GNE 1.0278314216
## LRRC37A3 4.3194167153
## NFRKB -3.2966699618
## VAV2 0.5084729502
## DIS3L -1.0410173600
## MAPK11 0.3862681174
## HMG20A -1.3195899252
## CSRNP2 -2.2724453878
## CRTC1 6.0488632719
## PUS1 -0.0434540987
## GGCX 0.2177408391
## TRMT61A 1.1643781868
## FKBPL -1.8538739904
## PAFAH1B3 -1.8772897288
## NBPF1 -1.7212126327
## NTMT1 -1.5022538694
## KLC4 -2.7547153227
## PLEKHB1 -3.0778082279
## MAP1A -3.4100501876
## NETO2 -0.8028884532
## LANCL1 -3.6601339211
## ZNF513 5.8183049195
## NRG1 -3.5595945551
## ASTN2 -0.1904277802
## NOB1 -2.3990715969
## SRD5A3 4.3353673963
## UBFD1 -0.9300642428
## PKD2 4.9373284732
## LAPTM4B -1.5852472158
## CPEB3 -2.2230615872
## ZNF408 -0.4449299201
## KIF13B -2.7329919812
## TIMM9 -1.0793898120
## SLC52A2 -1.0682795079
## RP9 -1.8436045104
## SMN1 -0.8846161342
## MMP14 4.7273703018
## NUP85 -2.1945741832
## ITGAV -0.4650863934
## GPR137B -2.2554624307
## VEZT -2.5328952039
## CLSPN 15.8331698984
## ZNF507 -0.0276460619
## TLNRD1 -1.1949902652
## ACBD4 0.7894820608
## ELOA -2.9169760768
## CYB5D1 -3.6483867445
## ZNF226 0.8778406378
## POLH 3.0403601765
## ERC1 1.6442276323
## COG6 0.9274744945
## TPRN 1.1673257778
## CMC2 -1.9361022573
## DCLRE1A 2.0615820407
## EOLA1 0.7370101784
## ICMT -3.2850736517
## MFSD6 -2.0485653423
## ASCC1 -3.3326764547
## SMG6 -0.8626525060
## MSH2 -0.6295843773
## PPP1R8 -2.3181432774
## FNIP2 -2.5487340273
## NCKAP1 -0.1472410966
## PDRG1 -3.5905768038
## KATNA1 -2.5952316556
## CCDC14 -3.4920920043
## NPDC1 1.7527121079
## MRPL55 -1.7023774945
## BCL2L2 1.8668204363
## IL18BP 3.0920806070
## ILKAP -3.5596825120
## ZKSCAN7 -0.8860456323
## SMARCA4 -3.7232972695
## TMEM150A 3.6222859059
## WDR76 9.8714659301
## MLH1 -1.6333672325
## PLEKHA3 -3.5724239960
## CEP152 5.3692969982
## SLC37A1 1.3994743105
## ITPRIPL2 -2.2161610501
## PRMT7 -2.5552605493
## UBE2C 3.2549037998
## ZNF446 0.1720876279
## MTMR9 -1.5265949916
## STK39 -2.9994046148
## SMYD5 -3.6148890730
## KIF20B 4.8287997607
## GPR35 8.5848971508
## GCLC -2.5404256170
## PTDSS2 0.3250128443
## PGM3 2.2146336218
## WDR7 0.1436098345
## CTSF 0.0139405367
## INTS7 6.0531293916
## CDC23 -1.3366999577
## PUSL1 2.8622809398
## CACNA1I -3.1365342360
## ACVR1 -1.2312170638
## C12orf4 -2.1917872138
## SLC22A1 -3.7165040210
## CCDC6 -3.5954482418
## ZNF385D 3.2429726166
## PDE6D -3.3791691210
## TTC7B -1.7176107172
## JOSD2 3.5259405656
## SEMA6B -0.7538275966
## DDHD2 -3.6017212524
## CDCA8 3.9386262151
## SMAP1 -1.9587388779
## MYO1D 0.2792995172
## CDC45 7.1801469892
## TBCEL -2.0265502701
## HMGB3 -3.3639719437
## SLC9A3 0.9955001907
## GATA2 -0.4316890141
## BLOC1S4 -0.0373831794
## WEE1 11.4334587466
## MRGBP -3.2660192391
## ABHD17B -1.2398551531
## AURKA 3.4458557413
## KRIT1 -3.0274445970
## NDC1 1.7889985267
## THEM6 2.2001497956
## FASTKD1 1.0583730163
## RRP8 0.8022258830
## TLCD4 -3.6931840087
## ABCC2 -2.8272549521
## FAM136A -3.3614987276
## RNF144A -1.9648843055
## VGLL4 0.7452931381
## CHERP -0.6404277740
## ZNF518B -3.6487313258
## OAF -3.5697095152
## CACFD1 6.1261373647
## ABHD12 -3.6980700284
## RFC5 12.5665123499
## TRIM65 -2.4248036228
## MRPS12 -3.3209023541
## PRKAB2 -2.6414320143
## NUTM2D 1.2158283847
## BFAR -1.8856980096
## SPSB2 -2.6056028903
## VPS33A -1.9235936407
## SHLD2 -3.7114294975
## MIB2 3.7731805442
## FLYWCH1 -2.7221373830
## IFT80 -0.3362423029
## HDAC9 -3.1115960357
## BCAS4 -1.7213647849
## QTRT1 0.3700229213
## UBE2T -1.8076787830
## NAA80 -1.6085254387
## LEPR 0.7683103072
## CENPK 3.9780869516
## ZNF441 -3.5704581892
## D2HGDH 2.9462842663
## C5orf22 -0.7274300972
## TXLNG -1.7807423391
## ZWILCH 10.7938361455
## NUF2 -0.0964440281
## TMEM204 -2.4158429901
## PIGF -2.1967424381
## PAQR7 -1.2619682979
## PRPSAP1 -2.6816081616
## RALGAPA1 -2.9525470030
## FOLR2 6.1124737279
## JAG1 -0.2669869693
## CMC1 -3.2585763658
## HCFC2 2.1601413066
## TARBP2 -2.3565269984
## DOT1L -1.0467355212
## SLC25A30 0.0949979453
## GNGT2 -2.3346646755
## TSPAN4 5.7953507903
## PLK4 8.5873616787
## LTBP4 1.5318280061
## DIMT1 -0.4428291556
## VAC14 -1.8172236641
## CEP104 0.6763342545
## HSD3B7 -2.0271737386
## ZNF282 -3.3566756348
## CEP55 8.0504076050
## TRNT1 -1.8644944639
## ABI2 -0.9958871060
## EMC6 -1.6634470019
## SLC7A1 0.6446813934
## SLC49A3 1.8483748665
## LENG9 0.3877853579
## ZNF768 -0.2549806793
## HAUS6 -1.5718217539
## HS6ST1 -1.3596537590
## RREB1 -2.3647100252
## FLYWCH2 3.3971660166
## MRPL17 -3.3550291108
## LONRF3 -0.6815218907
## HACD3 -0.9101363760
## MINDY3 -1.2604852995
## EXT2 -3.6945548537
## C15orf40 -3.6443833206
## NEMP1 -0.0153775265
## ZMYND15 2.4589153165
## ANGEL2 -1.9677574269
## ATG16L1 -3.0182491253
## ACACA 1.9348079851
## HPF1 -1.3067307863
## YRDC 1.0467649252
## USP49 0.0612813666
## NDUFAF8 -1.7983464004
## DBT 2.7780816142
## TRIO -3.6217371142
## SIDT1 -3.1617198096
## PPARD -0.2499434019
## GATAD1 -0.1915829636
## STX18 -1.5618946563
## PRKCI 0.3238919160
## DEXI -3.0951889687
## G2E3 -1.5587561480
## PSAT1 7.6106396042
## TGS1 -1.7193668072
## GTF2E1 -2.6805980923
## ENKD1 0.4053050543
## EBPL -2.6594247529
## CCNYL1 -1.0656789835
## AKT3 -3.2927360711
## COBLL1 2.4157196152
## YIPF2 -1.1583493941
## DPM3 -1.0891966834
## LYPLAL1 -3.0137497274
## FBXL19 -2.0099530706
## BRCA2 8.4407067868
## TAF1D -3.2666615650
## RRP1 -3.0702899476
## TMEM104 -1.9743512847
## DBF4 -0.4429264662
## YDJC 1.2049176397
## TNFSF4 -2.3738095884
## PM20D2 -2.4621431716
## HIBCH -1.8508360628
## CPSF3 -3.2895348375
## ATPAF2 3.4157875121
## MED29 -3.5170530990
## FUBP3 -3.3278015197
## SLC26A2 -1.3178384969
## CEP85 -2.3994589238
## PPM1L -0.0616679960
## ZNF639 -2.2042726428
## CMAS -2.5557318413
## LIN7C -0.6612087578
## NCAPH 9.8631868964
## TMEM263 -3.2917564760
## NPRL3 -3.4511283256
## CFAP36 -0.6636899373
## IGFBP2 -3.6178267956
## C1orf35 3.5979571878
## GANC -1.5787405823
## WDR25 7.0675537777
## LILRB5 -2.7935846511
## GEN1 10.0565412795
## RBAK -3.1689605993
## SMUG1 -3.2459438034
## TMEM80 -2.2434599429
## LUZP1 -2.3006578617
## RAD9A -3.6841158858
## ANKMY1 -1.1438645177
## PIN4 -2.7034276835
## GFM1 -3.3142110204
## ZZZ3 -3.5335416058
## C17orf80 -0.2877914687
## GPATCH11 -2.3984283126
## CDPF1 0.7536229036
## KIAA1614 3.7374920958
## CDCA7 6.4783759005
## NIPA1 2.5484538789
## GTF3C4 1.1268796987
## SCOC -1.1965287324
## DDX19B -2.7969201050
## POLR1E -1.7207946711
## CBFA2T2 -0.7106812308
## CEP44 1.8904827567
## MTG2 -3.7239505261
## MYO9A -2.2922921312
## CRY1 -3.6685490651
## ERCC2 -2.0242924649
## NT5C3B -2.7848296776
## ATF5 -2.6984128918
## POGLUT3 4.8811129160
## TUT1 0.5230814779
## MCM8 6.7295670436
## LRRC14 -3.2447269360
## SYN2 -0.8835637776
## C12orf45 -3.0097879987
## DONSON 9.7026386820
## ATG4A -1.0850810412
## KIF15 6.4572660489
## ZC3H10 -1.4713307927
## PEX1 -2.7301417870
## SUCLA2 -2.1607314874
## CLUH -2.2403735037
## STX2 -1.9007496093
## BBS5 3.0440979785
## BATF3 5.4592264126
## RAD51 5.7356526628
## PEX11B -3.7169943183
## NCBP2AS2 -2.4917523874
## UBXN2A 3.2409380265
## JMJD7 3.1886401821
## RAB2B 0.1252949507
## FAM228B -3.2229743815
## ORC3 -1.2799962805
## HELB 1.1459520907
## KCTD10 -3.4128311148
## DDX51 -3.4813795487
## BRD1 -1.1677514068
## ARMC5 -0.2963279430
## RABL3 0.3111873911
## SLC25A32 -0.0289571781
## RBSN -3.6625303687
## ZNF506 -3.1581602391
## SCAPER -0.7289632816
## TTC21B 0.4840458967
## ENOPH1 -2.4641168830
## C9orf40 -3.3419325868
## ZBTB21 -0.6648224403
## GPER1 0.1560016352
## EVI5L 2.4763750563
## AGPAT5 -1.7094967525
## SH3TC2 3.0680289159
## EXOSC7 -3.3425360444
## SEMA4C 0.1097630959
## COX19 -2.4849664278
## RCE1 -1.7935023602
## FUZ -1.2742769610
## KIZ -0.9052323390
## TIMM44 -2.2260506102
## ZNF197 -1.7674697900
## SLC11A2 -3.1750545630
## KCTD15 1.1013745052
## ARL1 -3.1599332610
## MEIS1 -0.5691048292
## TBCK -1.8504154122
## TWSG1 1.1698214407
## WDR54 -3.2171354148
## TSPYL4 -2.3513113449
## FBXL15 1.8720975139
## PDIA5 -0.9727110101
## CEMP1 -2.3570445971
## SAV1 1.3141505078
## CNPY4 -1.8636672904
## ZCWPW1 -0.5873763581
## MED27 -2.8258448392
## MRPL19 -1.2079651600
## WIZ 2.2013160016
## AURKB -1.1188402993
## TICAM1 -0.4958028657
## ITGA9 -2.9664181545
## DUS3L 2.3092389130
## CARNMT1 0.8515229393
## ASB1 -3.5142374565
## DSN1 -0.1609768791
## ENTR1 -2.7943662195
## FIZ1 0.6630916085
## FRK -0.7377698529
## PIK3R2 -1.0114079680
## PDHX 1.9643113374
## MTRF1 7.7286872661
## SERAC1 -0.4178883345
## KLHL20 0.4013059530
## TTL -3.4233549514
## SLC26A11 -3.0807706942
## NUP43 -3.5476724233
## ZNF761 -0.3084696428
## OSGIN1 8.1400679740
## THUMPD3 -2.6385382465
## AP4M1 5.0699661607
## ZNF8 -0.1818396445
## OGFOD1 -1.8194446253
## TRMT13 -2.0205224092
## ZNF623 -0.7054837643
## SETDB2 -2.8990749948
## FLT1 -2.3293754330
## ZDHHC8 2.9657034641
## MED10 -2.6576627304
## SARS2 -1.7635754594
## GTF2H1 -3.3410308936
## PI16 0.3612940603
## NUDT14 1.4961099191
## SLC66A1 0.7331857080
## DHX33 4.6104330550
## CTPS1 0.4732509703
## NSDHL -2.5053201554
## PRDM10 -3.3976167510
## RPE -3.5984084381
## CILK1 -1.6430840661
## IDUA 1.0769837604
## PCYT1B 1.4936600014
## BEX2 -2.0568521383
## GLT8D1 -2.2217069871
## DCAF17 -2.0187985724
## SNX25 0.4730728134
## QSER1 -1.9523255498
## ZNF765 0.6192403003
## ARHGAP6 -0.8367545219
## MED21 -2.7766930756
## TSR1 -3.3897256983
## SETD6 -2.9153849975
## DLAT -0.7982080170
## PRR11 -2.5532578032
## FBXO8 -3.7096352849
## ORC1 7.9593772696
## ZNF691 0.5313046069
## HAUS2 0.2443569044
## SCRN3 -2.4883510658
## RTN1 -3.2047156679
## GABPB2 -2.2757618428
## NR2C2AP -1.9132287845
## CHAC2 2.3577563874
## TRAPPC2B 6.9001287299
## ANAPC7 -3.2146513804
## NDUFC1 -1.0604339713
## GPR180 3.0891801574
## NUP155 0.1076379006
## ABHD14A -2.1897978540
## LARP1B 2.0217829217
## RRP9 -1.7946476864
## ANKRD54 -0.5354298450
## FDXR 0.2820607048
## DHX37 -1.5506394128
## HDGFL3 -3.3546834497
## EFNB1 3.6782382746
## PIGN 1.7585870810
## PLEKHF1 -3.5917875418
## ATP6V0A2 -2.4215403891
## CENPBD1 -0.4888628999
## ISOC1 -2.2798219494
## NAA35 3.6333229873
## TMEM39B 0.0901067916
## SEPSECS 1.1152552016
## CRYZ -3.4143675718
## ARL17B -3.5357761366
## APBA3 -0.1000405996
## IFI27L1 -2.6604573319
## FBXO45 -3.0011935784
## MALSU1 -3.4872824412
## LRP8 5.5434579745
## NKD1 -0.1889956264
## EEF1E1 -3.1087421193
## RPUSD3 -2.8634059178
## SKA1 3.6757773321
## ARMC1 -3.0370327388
## CACNA2D4 -3.6025444456
## AIFM3 2.3191080334
## SNAPC4 2.8152535207
## HSD17B8 -2.5290971474
## ODR4 -2.7553180103
## MED6 0.2376774366
## MRPL45 -3.1615750171
## LRRC45 0.4676058957
## PLEKHA8 0.3038349062
## SMIM19 -1.8638667408
## PANX1 1.2529041764
## B3GALNT2 -0.0038190715
## SLC35F2 5.7658418371
## RBM15 -3.4900087611
## NUGGC -0.3842492545
## MTA1 -1.9171386362
## LRCH1 -1.4233532157
## NAA30 -1.1834274339
## LRMDA -0.3788720527
## ZNF611 -3.6292561230
## TUBGCP4 1.3016038663
## TMEM107 -0.4389802858
## TAF5L -3.0939978235
## C16orf91 0.7254632297
## RITA1 -1.8509179117
## OBSCN -3.6847975219
## AGAP5 -2.3246320686
## GABPB1 -3.5764142769
## PCYOX1 -2.7349154897
## ZNF367 11.9426079045
## GEMIN6 -2.0511665252
## ZDHHC21 -0.4930235696
## ELAVL1 -2.7796218964
## POLR1B -3.2640277566
## C1orf198 -1.9058862209
## SLC22A16 -1.1062803265
## KIF23 7.6215397967
## ANKMY2 0.5937733242
## TMEM161A 3.1045931410
## NUP37 -3.3751827682
## TMEM209 -1.7983195080
## GLI1 -1.3648296620
## POLA1 6.7978338037
## GTF2H3 -1.5686109103
## CLCC1 0.2182160086
## POMT1 -3.4227494540
## MIER2 3.4797329102
## PIDD1 0.2368934145
## CDKN3 -3.1695794326
## CEP128 4.7886933882
## P4HTM -1.6847991320
## CHAMP1 -0.9403435889
## TCEANC2 -3.6374378084
## CENPO -2.8831010084
## EXO5 -1.3646116513
## ZBED4 -2.1572403889
## ZNF574 1.7359848431
## CASD1 -3.1309039364
## ZBTB20 -2.0334239575
## SS18L1 3.1246583833
## ZNF788P -0.4450539095
## CD40 -3.4649675052
## ALKBH3 -3.0914747871
## URGCP -1.9678690764
## C16orf87 1.8268632864
## ZNF431 -3.5102066625
## ADCK5 1.7555513566
## SCAF4 -2.7781175376
## SHPRH -2.9349013931
## C1QTNF6 3.6941205826
## ALS2CL -3.5879995344
## FRA10AC1 0.3191114881
## SPATA5L1 -3.2373547675
## SGO2 0.6350345025
## LIG3 -3.1506479175
## SC5D -1.2293633190
## ALS2 -2.5686099055
## ARHGEF5 2.9479318514
## ZNF808 -1.9810000577
## TAF13 -3.7180319535
## MRM2 -2.6851511887
## SLC25A22 -1.3470934608
## CLOCK -2.0300732763
## PURA -3.5973496972
## ATAD3A -2.5042240140
## MTMR2 2.0838071760
## EMC8 -3.4558598928
## C16orf74 -0.9546636761
## ICOSLG -1.5986205545
## DUSP12 -2.1411018650
## OCRL 0.7724491175
## WDR18 -1.0617881599
## EPB41L5 2.2841664234
## IGFBP4 -2.7868822086
## SPRTN -3.2451507253
## KCNA3 -1.9440339260
## WRAP53 -1.0394642857
## INTS2 -1.3358684281
## SPDL1 8.1127591497
## ZNF37A -3.2998669854
## DYRK1B -0.5297089308
## SASS6 6.2379343112
## LCLAT1 -0.6413595530
## PSRC1 -1.6847464314
## DNAL4 0.6889475965
## DNM3 -2.1691503208
## NT5DC3 -3.2310549275
## SLC29A3 0.6472508753
## AEBP2 -3.7112699788
## CIP2A 7.9555957337
## MAPK7 0.7781110627
## PYROXD1 -3.3761526248
## MELK 12.0005785172
## TRIP6 0.2469105847
## SCN9A -3.5689858755
## TMEM186 -1.5707715642
## CDC25A 7.1981866855
## LYRM9 3.7026912121
## INTS9 1.0077339659
## BLNK -3.2541211080
## TRAPPC2 -1.8879367228
## MRPL2 -2.5508027679
## TCEA2 0.8818194287
## WDHD1 10.1490672652
## TMEM159 -1.8360762877
## TJAP1 -3.4132244207
## NIP7 0.4884484460
## TIGD5 2.7586220888
## GGT7 -2.8224784450
## KCTD13 -2.0003319907
## FANCG -1.6193240476
## TACO1 -2.9846668618
## PCYOX1L -3.3683451646
## ZNF775 10.4460431701
## TAF4B 2.4135184955
## HSCB 2.3201020736
## PSPH -2.3589586735
## MRAS -0.8985440270
## SLC12A2 7.0437771781
## KCNN3 -1.2976225175
## PYCR1 -1.8918045007
## LRRC40 -2.3905655465
## ZFAND4 6.6293220153
## PDP2 6.3917879598
## PRPF4 -0.4099495585
## TERF1 -3.4732945697
## PPP1R37 1.7760731505
## NBEAL1 1.1595386234
## FOCAD -3.3203430560
## ZCCHC14 -2.9826651500
## R3HDM1 -1.9661380570
## CRELD1 -3.6440706035
## ZSCAN30 -2.9910238713
## MUSTN1 -1.7847619920
## B4GALNT2 -3.5491968325
## TTK 5.5532636402
## ZNF436 -1.3915777312
## RAD54L2 -2.4551686856
## WASF1 1.9467983380
## RBL1 -0.6260914322
## PRPSAP2 -2.9605216532
## TMEM79 -2.2371112847
## RHBDD1 -2.4451627937
## MBD5 -2.9484913138
## ERO1B -3.4564917704
## RAD51AP1 3.1243647986
## STIL 11.8774242919
## PLD6 1.4502246156
## INTS13 -1.9864861693
## DBP 0.2363798460
## GINS1 10.2436035069
## ELMO3 -2.3403368449
## FIGNL1 1.7343191666
## LIN52 4.1220994027
## SCRIB -0.0148746763
## ZNF133 -1.2472206275
## FAM156A -3.6249039383
## HDAC11 0.5374811321
## QRSL1 -3.0978765921
## PRIM1 2.7003110372
## TMEM69 -3.0414990627
## TMEM18 -2.7718749200
## CDK3 -2.6352140673
## ALMS1 -1.8492836994
## ZNF236 0.8039763589
## C4orf46 -1.1305908152
## UQCC3 -0.5600697624
## ZNF500 0.6110938986
## SERINC2 -3.6890664389
## ZNF841 -0.6530878331
## XPNPEP3 2.7955524000
## MTIF2 -2.9769222377
## NKAIN3 -1.6344014064
## MMP17 8.8414792488
## NAA25 -2.9982953775
## SOCS7 -2.5029679184
## RAD51D -1.6890252115
## RGS12 3.8900396445
## H2BC11 3.9271687562
## ABHD8 -0.3179600737
## CDC42EP4 -3.5495799439
## DNA2 8.9054355525
## TMEM128 -0.7499158524
## FGFR1 -2.0700426607
## MYBBP1A -3.6660140997
## PER2 -1.9338555362
## LRRC8A -3.5152348833
## IRF2BP1 4.4377712063
## PLK1 1.8805984912
## FBF1 -2.2185824354
## MED12L -0.3069614531
## BARD1 6.3445308715
## CDCA2 6.7884956255
## CYB5D2 -3.6659305037
## NBPF3 -2.1787486152
## TMEM35B -3.7094864763
## MPV17L2 -1.6903105425
## GPD1L -2.7283617350
## MTHFSD 0.9506144248
## CAV2 1.3034323950
## PAXIP1 2.1850682834
## PPARA -1.3792900116
## ZNF510 -2.5969542029
## FLJ44635 0.9595278221
## TG -1.8597217497
## RFX1 0.0382146710
## ZNF48 -1.3403043930
## MED9 0.8684275987
## SLC39A14 1.4925451529
## TMEM243 -3.7021767458
## LTA 0.4685656193
## YBEY -1.9257417541
## EEF2KMT -2.8746287089
## ATXN7L1 -3.5749111384
## ZNF213 -1.7238459100
## NR1H3 0.6796956601
## MRPS10 -3.4149398761
## DNLZ -1.2076170842
## ALG8 -2.6825810978
## MAP2K5 5.3798132490
## DARS2 2.7368986688
## LLGL2 -3.5513679411
## DGKG -1.7788252832
## SH2D3A 0.1062768119
## SERPINH1 0.4356815532
## CCDC18 3.5536521941
## RFC3 3.4593888240
## DNPH1 -0.4496502512
## MEGF8 2.2308322716
## C22orf34 -3.0164473300
## PIAS3 -3.0331177370
## ALKBH4 4.6972723166
## FOXP4 1.1417274413
## TRPT1 -1.2907593180
## LAGE3 -3.3777400092
## SCFD2 -1.9697220071
## RGS6 -0.5524265382
## PEX14 1.8798287923
## SEC14L5 -1.6733099506
## MTX3 -3.5796881517
## RIMKLB 4.5825472420
## KIAA1841 -0.6534734945
## FBLN5 -1.0686971112
## PPAT 2.6478971234
## KCTD3 1.5528147186
## TRIP13 8.9544110648
## SAC3D1 -1.1261051213
## LSR -0.6372776383
## PRSS36 -2.1107837945
## CRACR2A 0.3804322824
## TAF1B 0.0580514258
## LDLRAD3 -3.2425425828
## NREP -1.9163591556
## ZNF341 0.4663412830
## SLC10A7 0.4081367958
## RHPN1 0.8818301465
## ESF1 -1.1024568303
## USP53 -3.3627869851
## TMEM212 -1.6140625295
## ALG12 -2.9212394803
## KLHL11 -1.7455788859
## FKRP 7.6621618331
## MIGA1 -1.6081548045
## AFAP1 -3.5795252856
## CENPJ 7.6340161765
## FBXL18 1.0713750954
## POP7 -2.5764063958
## FTO -2.8987335529
## MYL5 1.0818772858
## SLAIN1 -0.7192022811
## ADCK1 -0.8710946821
## NEIL1 -3.4124538776
## PSMG4 -0.1534382901
## CPED1 -2.3802850896
## TNFRSF10A -2.5798130943
## S100A13 1.0918983236
## PARP2 -0.6686857293
## NLE1 -2.0139241379
## ZNF778 3.1341580847
## WDR12 -0.7821323617
## RINT1 -1.2335567235
## ACAD11 -3.6816311109
## SPC25 3.9114717073
## TOGARAM1 1.1670086046
## ZNF414 3.0682751067
## AFF2 -2.4355054437
## RBM41 -2.3379490819
## ARNTL2 6.7445085825
## ZNF275 -3.2758552756
## KCNMB1 -0.3189119787
## PDIK1L -0.8575382605
## ID3 3.7066908258
## ZNF512B -2.5072097121
## UCK2 -1.8135320476
## SCO1 -2.6342658300
## MTHFD2L 1.5410419362
## WDR83 1.4455862441
## SNAP47 -2.5279631855
## AAMDC -1.4885871340
## SIRT3 -3.7174377180
## CMC4 1.1491272640
## MEF2B 0.0221839243
## LZTS2 -1.9016228234
## ABCB7 -3.2497293444
## MZT2A -3.1629650196
## RCL1 -3.0519722465
## OTUD6B -1.5170117419
## COIL -1.9321500877
## MRM3 -2.8350297491
## NOC4L -0.3794703444
## DAAM1 -0.2226489897
## ZBTB41 -2.9456869151
## C5 -0.5092800475
## NEK2 3.4296534348
## ZNF346 -2.6371906412
## ZBTB45 2.4647033425
## CBX8 4.8271730159
## IFT43 -0.8076083451
## ROM1 -2.5468097997
## ASB3 -1.6362268333
## TTLL5 3.4133610120
## SDHAF4 -1.6565069314
## ZNF419 -1.5417785182
## POLD1 -3.2284688193
## SPICE1 6.1466231133
## ZSCAN2 -1.2202148553
## ACTR8 -1.4638561157
## ZNF440 -0.7654959887
## CDKL1 1.2184135239
## FAHD2B -2.8759149881
## LOC100421372 -2.1002789747
## GINS4 12.1241533070
## BTRC -2.3576318252
## H2BC8 2.9850799226
## NUDCD1 -1.4951210303
## MED20 -3.7062278620
## MMP19 -3.2784477300
## VANGL1 2.8817406662
## TMEM192 -0.6750454180
## TRIM59 -1.6262254950
## WDR24 1.7778820650
## C1orf54 7.1566835631
## CDYL -2.0719549833
## ZNF669 0.2501438020
## NADK2 -1.2630962484
## TSNARE1 -1.5523564465
## GOLIM4 0.3346150455
## SPHK2 5.5185881881
## PFKM 0.4482007585
## ZNF212 -2.3046998727
## TRUB1 -1.8582578398
## PARPBP 9.8177280688
## NELFA 2.6349515500
## UTP20 -2.5503744549
## ZBTB39 -1.5076550587
## PROCA1 -2.0498521873
## ARG2 -2.4398015813
## ZNRF1 -2.6713623140
## SLC27A2 -2.0468012622
## COX18 -1.2776170031
## SETBP1 0.6448508125
## FAM43A -1.4680629102
## ZNF707 3.3141869403
## CCDC84 -2.8380204934
## IFT122 2.4459003447
## AUH -1.7464406450
## EHBP1 1.4043274771
## UNK -0.7184794056
## GTSE1 6.0145895221
## LARS2 -1.0138951441
## HACE1 0.8301606662
## SPC24 -2.9105347967
## ZNF497 -1.3839077548
## ST7 -1.4409287724
## ALKBH2 -0.1566216248
## SWSAP1 -1.6755924483
## ZNF836 -1.1283288169
## CBR3 -1.3709507071
## AP1M2 -2.2975803687
## PAOX 1.8422422269
## SAMD10 -1.4755430082
## FHL2 -1.8430505429
## TXNDC16 -0.6762687073
## FER 0.3222054601
## XPA -2.1942772362
## TTI1 -2.2796957500
## ZNRD2 -2.8109053554
## ZNF747 -1.3230466511
## NOTCH4 8.4021457740
## CISD1 -3.1395929244
## ZNF615 -3.1962722984
## ZBTB26 -3.4807155868
## PIAS4 -3.1265241546
## PALB2 -0.6240144656
## ZFYVE21 -3.3216966100
## MCAT -1.1487304322
## ACY1 2.6576361914
## SLX4IP -2.8430690929
## INPP5E -1.3114343985
## FRS3 6.0597005171
## RTEL1 -3.3225471139
## CCNF -0.9534156873
## FAHD1 -1.8855158937
## RAB19 -3.0539191883
## INO80C -2.0804429081
## BTG3 -2.0819493621
## ZNF45 -3.2220550405
## WRN 0.6234207286
## SKA3 7.3809719110
## ENTPD5 -1.0517213066
## HELLS 9.0825433251
## RMI2 -1.7907468324
## RAB39B -3.0818533604
## DHFR2 -2.1536369686
## NEK1 0.5639450510
## ELOVL6 0.3614444029
## KHK -2.7902963626
## HSD17B7 -2.2538051788
## DNAAF4 -1.7868082273
## PTER -3.0722980089
## E2F5 -0.8184711583
## M1AP -3.6183769048
## CASP6 1.3043437162
## NPFF -2.5531146394
## HMBOX1 -0.3348086750
## OTUD3 -0.9188392807
## PRMT3 2.1938168006
## PPIP5K1 -3.4907113408
## MTLN -2.5877854169
## LRP3 -3.5022501203
## GRPEL2 -3.0107173406
## UGDH -1.9883727783
## CASTOR1 5.0379693009
## TRDMT1 -2.9640968650
## ABRAXAS1 -3.1758672887
## HOOK2 1.4990098252
## GEMIN5 -2.5106692650
## TMEM68 1.3586456626
## ZNF616 -0.5127463534
## GOT1 -2.8545229774
## FAM207A -1.4582570320
## SNTA1 -0.2894778355
## ESPL1 2.5411158849
## HSF4 2.8549110846
## IPPK -0.9612935157
## LLGL1 -3.3838476842
## GLI4 5.1889893408
## C8orf58 -3.5485801048
## POLR3A -3.2457251095
## CHST7 -3.2755153225
## FAM189B -3.2929212333
## ANKRD36B -0.9009712895
## LRIG2 -3.6729445351
## ERCC4 -0.4040084239
## ZSCAN25 -3.3638799069
## ZBTB42 -0.2320483464
## MBTPS2 1.4792371513
## EOGT 0.9431109544
## MOCS2 -3.0592761188
## DTWD2 -2.6151052313
## AMMECR1 -1.5888423518
## PCBD1 -0.5162879157
## C6orf136 -2.0136563673
## NOM1 -3.0892217090
## RNF8 -3.5191352343
## TEDC1 -1.6542786230
## ACO1 -1.6476656429
## BCL11A -3.5396199253
## C8orf82 -1.5910793922
## MPP5 -0.4924658152
## FBXW9 0.8062752023
## SMIM13 2.3906885654
## NPIPB11 -2.1995924260
## SYTL4 -2.1882896618
## CASK -3.5037945643
## MIEF2 1.3244057463
## SH3D21 0.1486667003
## TMEM223 -2.9357087034
## CASR -2.8969057960
## PHYH 3.5432212412
## KMT5C -0.0871142434
## ATAD5 6.5980360252
## PARD3 -2.8855205591
## CCNE1 2.2736388001
## GID4 -3.0860000984
## BICRA -2.5247064992
## GALE -3.4015850726
## DPY19L4 -2.3458089726
## ALPK3 -3.4474511415
## CENPA 0.3124814514
## BMP8B 4.3607631633
## PGAP1 -1.9071345504
## SSPN -2.4976737832
## SMIM4 -1.5462878985
## LRRC23 0.3777655017
## RBBP9 -1.3275660171
## C1orf112 5.3735200582
## ANKS3 -0.2118570487
## BORA -1.6050634737
## ZNF668 -0.2722596587
## ANXA9 -2.4702797499
## SLC25A51 -2.8362347414
## CBY1 0.6486089468
## MTRES1 -0.2325494737
## TBP -0.3238692608
## ZNF853 -0.6821774040
## DNAJC27 -1.3970272760
## ZSWIM9 -0.7420721862
## SIMC1 -0.1364946296
## EPS8L2 -2.0723053661
## BTBD3 -2.6498716591
## TRIM68 -1.9038759287
## ENO3 -2.8416219076
## CNTLN -2.4603691378
## ACOT11 -2.5999768845
## ZFP64 -2.6597587704
## C11orf49 1.0516253386
## UBE2E2 -2.2621128691
## CCDC153 1.5771158975
## LANCL3 2.9114944062
## ZMYND19 -2.9556824808
## RAD18 0.0346574112
## FADS3 -1.5890011087
## PBLD 0.2241626154
## GNPNAT1 -3.1899494365
## WNT10B -1.8382945362
## SUV39H2 12.3580964118
## INCENP 3.4478275152
## GAMT -1.8206742434
## CCDC9B -2.6739738131
## ZW10 -2.4819903161
## BAIAP2 -3.3247190439
## COG8 -2.0630675587
## FDX2 -2.7057018678
## C1orf159 0.9365234609
## RHBDD3 0.7737773316
## SLC35B4 -3.5013656802
## NCR1 -1.0807229588
## BRICD5 2.2412590168
## FRMD4A -2.8219849253
## C16orf86 0.4840765564
## RPP25 -2.4176261896
## PERP -2.9325602328
## ZNF175 -3.0008737966
## LZTFL1 -3.3244979030
## TMEM8B 1.3588438463
## AK9 -2.2201558890
## CCDC77 0.4314113322
## UPF3B -0.1461567636
## FBXW8 -2.1723246832
## KBTBD3 -1.2331081553
## TEX10 -1.8061114975
## ZGRF1 2.3991634939
## PRIM2 2.6983209667
## CDC42BPA 4.0675079952
## CCDC142 -0.1359174514
## BAMBI -0.1161187999
## ARV1 -1.5148118565
## CEP57L1 11.6680610936
## RYR1 2.2115472179
## NAV1 -1.4757761550
## PCDHA4 -2.7216684126
## MZT1 -3.3985020732
## PRMT9 -3.3272576175
## UBE2D4 -3.2107599953
## ZNF697 -3.2070015733
## ALDH6A1 -2.2123208510
## KIF21A -3.4745583045
## SNX33 -3.5448386432
## TAF5 4.9856714820
## CKB -3.0571338885
## FAM122C 3.9980053531
## SPIN4 2.8592998001
## SCARB1 -1.1591158431
## SYNM -3.1617624556
## TNNC2 1.5412392307
## ENDOV 4.2346518250
## FKBP14 6.2558395980
## C11orf71 -3.3724770286
## TFAP4 4.2851631350
## DNAJC30 -1.6669536148
## USP31 0.3583816171
## MON1A -2.9827077381
## SLC25A17 -2.6352672258
## SLFN14 -3.2741747872
## DNAJB4 0.2524983294
## POLE2 5.5058247169
## CHRNE -2.9391022211
## KIF18B 2.4517626884
## MMS22L -0.3267183823
## MREG -0.5451749174
## TM7SF2 -3.0477124446
## E2F6 1.1436186525
## PRR12 -2.8948656044
## KATNAL1 1.6464169205
## PARD6A -2.3962724317
## ZNF576 -2.4754262953
## GPATCH1 -2.0288819910
## FANCM 1.8878473611
## DSCC1 7.8512486582
## GON7 -1.7046572036
## DNAL1 -0.8082177493
## ZNF629 -1.2245737622
## LDAH -3.3406390695
## BRIP1 4.6607700338
## TMEM38B 1.1944960181
## CSPP1 -0.9580589465
## TMEM135 -2.8478515610
## PHLPP2 -2.6050709108
## FBXO22 -3.1098490021
## MED19 -2.3600125008
## TOX -3.6346450856
## PNMA3 -2.8644957469
## NEIL2 -3.3549342324
## EFCAB7 -1.4561865260
## MFSD3 -1.2597817129
## CIT 2.4887633847
## GPAM -1.4840520357
## MVK -2.6569803524
## SEMA3E 0.2818881921
## FANCL 2.3438529178
## ZKSCAN3 3.0419736516
## COA7 -0.9450441035
## PRICKLE3 2.7173626379
## IFNLR1 -2.2112650627
## CHAF1A -3.4497486721
## WASL -1.3354529637
## SLC27A5 -1.7270713817
## HARBI1 1.4084922689
## NECAB3 -1.4321856346
## APOOL -3.0240579641
## PHETA2 -1.9856854065
## TADA1 -3.1493006488
## RUFY2 -1.5000301759
## C19orf47 -2.5027828128
## ZNF714 0.6994007366
## SERPINF1 -3.5984263494
## HAUS8 -3.6130812755
## RRS1 -2.3602171987
## ZNF526 -3.6124964819
## MLYCD -2.2236292851
## MTERF2 -2.5976927326
## NDUFAF2 -3.1292119944
## SLC2A8 -0.8534316474
## BAG2 2.5512174006
## ZGLP1 -3.0616991146
## FOXP3 -3.5460902468
## CA11 -2.8652843089
## ZNF383 -2.7860827304
## INVS -0.2519175243
## SCMH1 -3.7121032727
## PTPRS -0.7281413137
## ACBD7 -3.6794994889
## MCC -3.4732316623
## ANKRD26 0.2169309022
## NEMP2 -1.3930665725
## LRRCC1 -1.2092508337
## KRBA1 0.6162285860
## USP45 -2.6859108037
## UBAP2 -3.1720998293
## PRIMPOL -3.4099025593
## FGFRL1 -3.5535362518
## C1orf131 -3.6316174775
## DAG1 -3.6458388191
## PEMT -0.3134530202
## NFS1 -2.9201207728
## ZNF764 1.7903792512
## BNIPL -2.4558877949
## LIMS2 -1.4763653853
## BBS7 -2.5591540144
## NR1D1 -1.9580233364
## FZD2 -1.2142206584
## MRM1 -1.4906881543
## RAI1 2.0191502160
## MPV17L -1.9807818873
## RPH3AL -3.5617582317
## ACVRL1 -2.9560737007
## FUT11 -2.5845481928
## SLC2A13 1.2346697799
## PPP1R32 3.8333800945
## MPP6 -1.9391748926
## ZFYVE28 -2.6797184267
## CHAF1B 0.9331315143
## DOCK7 -2.0212573196
## BIVM -2.4897475069
## ORC6 4.3889800972
## MOB3B -1.4134456540
## ZDHHC23 0.2328317712
## CCNJ -2.7648500564
## CENPQ -2.7622642125
## CENPM -3.6838819723
## GOLGA8H -3.5753009849
## ZBTB32 -3.6243963428
## LTO1 -3.5525765639
## TIPIN 3.7588339212
## MARS2 -2.2960193655
## MAP4K3 -3.0433097664
## COL8A2 -2.1390818099
## STON1 3.1755515939
## ZNF71 -1.3600884007
## ABCC6 -3.0264195154
## DOLK -2.4743703082
## SGO1 6.8558407282
## DTX1 -3.7064282329
## ARHGAP32 -1.0150028240
## GAN -1.2052970586
## AEBP1 -3.3843251838
## IKZF4 -1.1745363197
## IER5L 12.4102141494
## GTPBP3 -3.5076567483
## MOSMO -3.7090699417
## FNBP1L -1.3362665578
## SPSB1 1.0473194587
## SHISAL2A -3.4729023503
## PDE6G -0.5914672144
## ERI2 -0.1761582894
## ZNF619 -1.7259939830
## MITF -1.9985848525
## LSM11 0.1092222724
## MTHFD1L -2.2029979548
## CCDC30 -1.1514044694
## GINS3 2.7372534410
## PDCL -3.6074576886
## LMF1 -2.0830923920
## LIN9 5.3207799246
## PTCD2 -2.0444459465
## CTU2 -1.9542050354
## MZF1 2.4910365141
## ANKRD39 -2.7103887548
## SFN -1.7321770346
## GSTO2 -3.6411388422
## PCBP3 -3.2313047370
## RTTN -3.2618643809
## KIAA1586 -1.1553625411
## KRBA2 0.0046418143
## LNX2 -2.2807155385
## DECR2 3.2799768011
## PNPLA7 0.1761261615
## CEP131 1.5113992006
## PROSER3 -2.8214314505
## GNB1L 3.0204106760
## CHRNA10 -1.5315459628
## A1BG -1.1697716341
## CRYM -2.4426320476
## GCSH -1.3223433189
## RWDD2B -2.8286871617
## LRP12 -1.5747640249
## RBM11 -1.5140232713
## TIMM23B -2.4103149344
## PPP1R16A -1.0408464364
## C2orf42 -3.6550306233
## FAM104B -3.0348375521
## C1orf109 -1.9325108728
## TNK1 -2.1643737530
## ZNF777 -2.9704963311
## MECR -3.4166323854
## ZSCAN9 -2.9308371065
## IZUMO4 0.4500594104
## PCGF6 0.9571452665
## CHST14 -2.2278366255
## COX10 -3.4425914098
## MND1 2.6688148374
## CCDC106 4.6922519468
## ERCC6L 4.2048348763
## MAB21L3 -2.4110569957
## FANCE -3.0093613816
## KLHL17 -0.2778728760
## ZNF852 0.1929927027
## IL12RB2 -2.3093538182
## ANKRD36C 2.9659352827
## UACA -3.6008092973
## FUT10 -0.9979356482
## PIF1 -2.3712530038
## LIPH 1.6336420376
## ERCC8 -2.8472231022
## CTU1 -3.1601856211
## OLFM2 -1.0572012569
## F12 -1.9354571743
## ZSCAN12 -1.0783809573
## TMEM97 1.0127993612
## RBM44 -3.7129098910
## CACNB1 -1.6364722613
## LGMN -3.7217367191
## MORN3 -2.8458673466
## PCOLCE 1.9373884422
## MC1R -1.0009660163
## CENPL 5.5072966100
## CEP76 4.0231479713
## STARD5 0.5830332645
## KIF3A -3.5710809170
## RDH10 0.8974825063
## CPLANE1 -2.6061546761
## WWC2 -2.2653986766
## B3GLCT -1.2372026493
## SHLD3 -1.8836213578
## TRMT10A -3.5170123674
## XRCC2 7.7609799220
## LRRC29 3.0615618167
## PLAG1 -2.2850035859
## PLK2 -2.5693045130
## TEC -3.4855217124
## ZNF219 2.5136483623
## ZNF653 1.0204333807
## CCDC86 -2.5083993115
## CCDC189 0.6246310805
## MTFR2 3.8503799401
## CDH13 4.9412582050
## CABLES2 -3.2021963683
## AK4 -3.4486385110
## CEP83 -0.6036327833
## OIP5 -0.5590465635
## ZNF888 -3.2590377207
## PDE6B -3.7202972521
## NEIL3 -1.1015049228
## SRFBP1 -3.1756877833
## SHISA4 -2.1097224023
## FSCN1 3.0231913252
## FBXO10 -2.3422076986
## ZFP1 -3.4449260357
## RSKR -2.7436175666
## EIF5A2 -2.2657652541
## PRX 0.7867147583
## MANEAL -0.0297116366
## NAGS 9.8347791769
## ZNF578 -0.1631730162
## SERPINF2 -0.6779834702
## PYCR3 -3.7156967484
## PAWR -0.6555952066
## CCDC13 -1.4011971680
## ST8SIA6 -2.2862963025
## TTLL1 -2.3442903777
## POU5F1 -3.5212068431
## C6orf226 3.3962418165
## UNC5A 0.0870157854
## MLLT11 -1.5578029097
## RFXAP -2.0953850495
## MORN2 2.4246009558
## PEX10 -0.5165230512
## TRPM4 2.3887333209
## MAP3K21 -0.1948133848
## AP1S3 -0.0667523334
## SCUBE1 2.9194537366
## FAM210A -3.6108813806
## FBXL8 -1.1740720612
## HSD17B13 -3.3074453799
## NANP 2.3911868175
## KLHL26 -1.6396152713
## RAD54B 3.3293397557
## ALG10 5.2952651350
## FAM86B1 -3.6447435271
## PCDH12 0.0584020990
## BMP1 -2.3917457394
## LRFN4 -0.9399769762
## MAMDC4 -0.2195666051
## C10orf143 -1.6827274535
## SOX12 -3.7198396708
## ZNF720 -3.6777023211
## THAP2 -3.5310072634
## PIGW -0.6290104817
## URB2 -2.8717118230
## FZD3 0.4759365133
## RGS16 -1.7695715895
## MAP3K10 -2.8947802552
## ZNF568 -2.3493298249
## CARMIL1 -1.8982968582
## NDFIP2 -2.2990635879
## PDSS2 -3.6411271089
## IL23A -2.6699133434
## EME1 4.8293676897
## CHCHD6 -1.3132398309
## NPIPA8 -2.3480496703
## SPTBN5 -2.5031803856
## ME3 -1.8916897088
## NUDT17 -0.8573687079
## FGF11 -3.0777465036
## GRAMD2B -1.5876711403
## UNC13B -1.0366494723
## GPRIN1 -2.8430879824
## IL17RC -3.3110698699
## C18orf54 2.9245042807
## PAK4 -1.7297790762
## TMPRSS13 -2.1699022301
## LAMB3 -3.5003647111
## POLR3B -1.8612356584
## C7orf31 -2.8834642716
## ZBTB46 0.0368625385
## TDRKH -2.7860957229
## AKAP5 -2.8140759576
## TRIM46 -2.0173045949
## ATL1 0.1731591888
## SLC38A6 -3.4247639082
## MTFR1 0.2801013056
## EML6 -0.1669127490
## FICD -3.1959435552
## TYW1B -3.6174731128
## WDR62 -0.3796425256
## ZCCHC4 -2.3543682182
## ZC3H12C -0.7513337611
## KCNQ5 3.0948235818
## FAM216A -2.1326683443
## LMLN -0.7128696943
## PTK6 -1.2957316062
## RIMS3 -2.6139514337
## MOCS3 -3.6305008830
## USP54 -0.0440295045
## C3orf14 -1.0877217528
## TMEM53 3.3137374429
## REXO5 -1.5201135658
## KCNA2 0.9772880480
## KIF24 4.7072479183
## SPATA33 -2.4401218720
## SDR42E1 -3.2495771633
## ZFP69 -3.1322570370
## PIK3R3 -3.5677401178
## ELOVL3 -3.4361430319
## C21orf58 -1.3736405460
## CATIP 6.1061174329
## PLXNA1 -3.7072263527
## ANO5 -2.3698594072
## CCDC96 2.0073798586
## BBOF1 -3.1126753989
## CENPP -3.2935141782
## NPHP4 -3.1330823937
## KRT18 -3.4145748643
## YAE1 -3.2156757014
## CALHM5 -0.5842708371
## MFSD4B -2.8814283947
## ZNF547 -0.5363533606
## KDM8 -3.4849322560
## RHOBTB3 -3.4015478459
## AFAP1L2 -3.0382095212
## EPDR1 0.7938073156
## PLEKHA5 -3.3786579103
## COMTD1 -2.7291635866
## PDE3A -3.2445570939
## POLG2 -3.5136461467
## RCCD1 -3.2181245224
## TMEM241 -2.0874157192
## DAGLA -0.2831854637
## TXLNB -3.4973923710
## TRAF3IP1 -3.2161287961
## RAB3A 2.8694091559
## PRTFDC1 -3.1031670655
## LDOC1 -3.3491458885
## PPM1J -0.6900021465
## THAP9 -1.9235744328
## PHLDB3 -1.5280025917
## HYLS1 -3.2850599243
## CCDC80 -1.0517816223
## NEGR1 -2.5466953196
## FAM185A -2.1891423377
## FZD6 -3.6539947601
## GDPGP1 -2.0453054714
## CA13 -2.8535752583
## B4GAT1 -3.6913626992
## KCNMB4 -1.2695254834
## NME7 -3.1713104988
## ZNF280C -1.2166314068
## FANCC -1.8265427334
## LRRC34 -1.7606983908
## DNAJC18 -2.3263002832
## SLC6A4 -3.4839330116
## COLEC12 -2.8690551632
## ZNF606 -3.7154329643
## HSPA4L -2.7991492285
## IL24 -3.3336600071
## POLR3G -1.9793822554
## SLC6A16 -0.5271606682
## GLMN -3.5646804396
## HSD17B1 6.8646787128
## AHI1 -2.5409054778
## PPP1R3F -1.4592814418
## PUS7 -2.4786805017
## PLCE1 -2.1239064846
## UNC5CL -3.2953708678
## ZNF460 -2.0467004618
## MAGI3 -2.7856527814
## CLDN12 1.5424365245
## JADE3 -0.4285742400
## TULP3 -3.3395167120
## AMIGO3 -3.2913812592
## KLHL25 -2.0067755048
## ATP8B3 -2.7672318182
## MMACHC -3.5564628598
## SPAG16 -3.0997943194
## ZNF223 -3.6046899963
## FARP1 -2.4200369419
## SCLY -3.5493586864
## GGT6 -2.1080539587
## DPH3P1 -2.8912848690
## ZNF324B -2.2141951092
## ARSK -3.0744025756
## SCIN -0.4207930189
## GPRC5C -2.2456655501
## WDR97 -0.1772348131
## AASS -1.8799049693
## H2BC15 -1.4193689783
## MYH10 -3.0329843551
## GRB14 -2.3736741970
## CENPS -2.1424960354
## EID2B -2.9322313891
## INTU -2.2587361650
## ZNF850 -1.5683145985
## SLC35E4 -3.1106618387
## KCNIP2 -3.3430835233
## C21orf62 -3.5000669093
## PSMC3IP -2.6416144707
## FAM83H -3.0530582061
## LRRC46 -0.9592799433
## MAP6D1 -2.4476010969
## BPHL -3.2884130302
## LRRC7 -2.0262625722
## EFCAB11 -2.1887035529
## SPATA7 -1.3253221765
## ZFP69B -2.2547238015
## BMP8A -3.5160994127
## EGFL8 -3.0363127918
## KCNC4 -2.0922190536
## EFNA3 -2.5572129717
## BBS12 -2.9015624989
## L3MBTL4 -2.4425095043
## TEX22 -3.0454452803
## ASIC3 -1.0847319283
## MTCP1 -0.6046048965
## ZNF257 -2.6663790672
## AZIN2 -2.5481206623
## TMEM44 -3.1672104982
## CDIN1 -1.7278183266
## UGT8 -2.2953767448
## CCDC138 -1.1794579070
## EXTL2 -3.0767593695
## CCDC15 -3.3840000175
## IFT81 -3.4779747783
## ZRANB3 -2.0599672234
## TRPC6 -3.5505845532
## NWD1 -2.2575758767
## WTIP -3.6185700072
## CCL24 -1.2650856611
## EHHADH -3.7142502791
## LRRC3 -3.7161202284
## TSPAN15 -3.5588340158
## NAP1L5 -2.9084381336
## CDK20 -3.2634575751
## ZNF670 -3.2592022352
## FN3K -2.4618384954
## ZNF471 -3.6365925461
## SENP8 -1.2263436556
## PARD6G -2.4625468038
## GPLD1 -2.4502946486
## FCRLB -2.9591259526
## MYORG -3.4361309802
## MYO1A -2.5381356226
## ADSS1 -1.2075432626
## CATSPERG -2.3722701251
## CPLANE2 -3.7100246990
## ZNF620 -2.1672151718
## KCNMB3 -2.6591560993
## MAP3K13 -3.4501153297
## NAF1 -3.4600162158
## SCML2 -2.4290199992
## CFAP97D1 -3.3866366316
## SSC4D -3.3139704248
## TPH1 -3.5423223305
## KRTCAP3 -3.4293782026
## WNT2B -3.6525350131
## LOC100133315 -2.9687405697
## SLC35G1 -3.5773247460
#google S100A9, GBGT1, and COVID - what do we find?Now, let’s check whether controlling for age in our model would lead to differnt results?
mm_age <- model.matrix(~COVID + Age, pDat)
#We'll first, however get some statistics on the quality of our model with including age
mm_age <- as.data.frame(mm_age)
#logistic requires categorical to be either yes or no
model1 <- glm(COVIDyes ~ Age, data = mm_age, family = binomial)
summary(model1)##
## Call:
## glm(formula = COVIDyes ~ Age, family = binomial, data = mm_age)
##
## Deviance Residuals:
## Min 1Q Median 3Q Max
## -1.9352 0.5739 0.6543 0.7122 0.7818
##
## Coefficients:
## Estimate Std. Error z value Pr(>|z|)
## (Intercept) 2.08533 0.88314 2.361 0.0182 *
## Age -0.01187 0.01353 -0.877 0.3804
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## (Dispersion parameter for binomial family taken to be 1)
##
## Null deviance: 128.29 on 125 degrees of freedom
## Residual deviance: 127.49 on 124 degrees of freedom
## AIC: 131.49
##
## Number of Fisher Scoring iterations: 4
#Here the summary shows that age does not seem to strongly correlate with COVID status, and so hence we would not expect a major change in our results on including it in our model (and so hence, we should not). However, just to test that, let's add it to out model and check the resutls.
mm_age <- model.matrix(~COVID + Age, pDat)
efit_age <- lmFit(eNorm, mm_age) %>%
eBayes()
topTable(efit_age, coef = "COVIDyes", adjust.method = "fdr", p.value = 0.05, n = Inf, sort.by = "logFC")## logFC AveExpr t P.Value adj.P.Val
## S100A9 -1.016096e+04 2.237284e+04 -2.468919 1.491768e-02 3.595278e-02
## HBA2 -4.648774e+03 2.670516e+03 -5.061858 1.465260e-06 3.794319e-05
## ACTB -4.316973e+03 7.242785e+03 -5.916899 3.003894e-08 2.698953e-06
## FTL -4.089673e+03 6.897358e+03 -5.436198 2.784468e-07 1.182517e-05
## RNA28SN1 -2.764601e+03 2.785014e+03 -5.723978 7.430527e-08 5.123607e-06
## IFITM2 -2.700867e+03 5.357986e+03 -3.528938 5.866230e-04 2.833951e-03
## RNA28SN4 -2.357059e+03 1.437686e+03 -7.114010 8.004557e-11 6.328936e-08
## EEF1A1 -2.349765e+03 8.071037e+03 -4.066164 8.445041e-05 6.874275e-04
## FCGR3B 2.193313e+03 6.069773e+03 2.430801 1.650034e-02 3.894029e-02
## HBA1 -2.114040e+03 1.667291e+03 -3.839525 1.957299e-04 1.271976e-03
## FTH1 -2.013509e+03 5.797449e+03 -2.869800 4.832496e-03 1.460958e-02
## RNA18SN2 -1.774688e+03 1.965368e+03 -7.023284 1.274877e-10 7.560018e-08
## RNA18SN3 -1.774688e+03 1.965368e+03 -7.023284 1.274877e-10 7.560018e-08
## RNA18SN4 -1.774688e+03 1.965368e+03 -7.023284 1.274877e-10 7.560018e-08
## IGKC 1.611771e+03 1.619772e+03 3.447362 7.742777e-04 3.502263e-03
## RNA28SN3 -1.378006e+03 2.155951e+03 -3.444778 7.810554e-04 3.520835e-03
## IGHG1 1.367933e+03 1.138835e+03 3.628364 4.157109e-04 2.200059e-03
## CSF3R -1.326221e+03 3.345071e+03 -3.312797 1.211647e-03 4.928788e-03
## TPT1 -1.313253e+03 2.890233e+03 -4.848811 3.653726e-06 7.307451e-05
## MYL6 -1.227275e+03 2.073412e+03 -3.669216 3.601647e-04 1.977404e-03
## RPL13A -1.218715e+03 1.394651e+03 -4.547359 1.276923e-05 1.809355e-04
## RPS27 -9.631302e+02 1.484866e+03 -3.771676 2.501256e-04 1.513515e-03
## UBC -9.522276e+02 3.852682e+03 -2.887209 4.589116e-03 1.400950e-02
## RPS11 -9.421737e+02 1.485880e+03 -4.640773 8.711627e-06 1.372110e-04
## RPS3A -9.155924e+02 1.531365e+03 -4.038658 9.368259e-05 7.378305e-04
## GAPDH -8.853440e+02 2.151126e+03 -2.800502 5.922927e-03 1.712897e-02
## LAPTM5 -8.384068e+02 2.310992e+03 -4.547369 1.276873e-05 1.809355e-04
## EEF1G -8.029996e+02 1.192537e+03 -4.990939 1.991332e-06 4.685951e-05
## RPL10 -7.911393e+02 1.452109e+03 -4.357960 2.730333e-05 3.026332e-04
## TMSB10 -7.845522e+02 1.540732e+03 -3.440265 7.930301e-04 3.562274e-03
## JCHAIN 7.807214e+02 6.739732e+02 4.324334 3.117905e-05 3.322404e-04
## RPL3 -7.656260e+02 1.152295e+03 -4.627352 9.206402e-06 1.429161e-04
## CD74 -7.522585e+02 1.048920e+03 -4.794034 4.603483e-06 8.638814e-05
## COTL1 -7.416904e+02 1.129329e+03 -7.157453 6.400238e-11 5.421916e-08
## RPL11 -7.221608e+02 1.135183e+03 -4.361439 2.692994e-05 3.004601e-04
## SERPINA1 -7.000494e+02 2.286524e+03 -3.016008 3.109517e-03 1.027839e-02
## RPL9 -6.778783e+02 1.129985e+03 -4.056428 8.761412e-05 7.059127e-04
## RPL13 -6.741837e+02 6.604025e+02 -4.280191 3.707621e-05 3.797270e-04
## RPS6 -6.494007e+02 1.194081e+03 -5.087209 1.312261e-06 3.505274e-05
## JAML -6.380896e+02 1.197389e+03 -4.735773 5.875551e-06 1.023260e-04
## VSIR -6.294717e+02 1.318588e+03 -4.108473 7.192783e-05 6.106400e-04
## RPLP0 -6.218814e+02 1.012390e+03 -4.162889 5.841713e-05 5.317169e-04
## RPL8 -6.203734e+02 6.032670e+02 -5.090220 1.295160e-06 3.491046e-05
## S100A11 -6.108406e+02 1.988458e+03 -2.587552 1.082242e-02 2.767441e-02
## PSAP -6.102619e+02 2.632804e+03 -4.634194 8.950847e-06 1.404194e-04
## IFIT3 5.962752e+02 7.003602e+02 2.666334 8.693634e-03 2.317148e-02
## OAZ1 -5.874127e+02 1.263818e+03 -3.733108 2.871533e-04 1.675179e-03
## RPL21 -5.868470e+02 1.023501e+03 -4.275368 3.778200e-05 3.843006e-04
## RPL27A -5.794428e+02 6.994942e+02 -4.680324 7.398606e-06 1.205322e-04
## RPS3 -5.784739e+02 1.090454e+03 -4.495474 1.575710e-05 2.083380e-04
## RPS2 -5.770297e+02 6.653893e+02 -5.249079 6.440547e-07 2.092737e-05
## FLOT2 -5.734977e+02 9.928826e+02 -4.117951 6.937713e-05 5.960191e-04
## CORO1A -5.549406e+02 9.710792e+02 -4.596858 1.043361e-05 1.572333e-04
## TUBA1A -5.363420e+02 8.119862e+02 -5.611029 1.253444e-07 7.204573e-06
## ACTG1 -5.267908e+02 1.362670e+03 -4.169058 5.704900e-05 5.216662e-04
## RPL19 -5.228601e+02 7.975828e+02 -5.296411 5.217796e-07 1.836293e-05
## ZYX -5.152843e+02 7.049949e+02 -5.461679 2.480837e-07 1.101975e-05
## RPS9 -5.064684e+02 7.184505e+02 -4.911832 2.795281e-06 6.060701e-05
## FCN1 -5.042908e+02 1.185167e+03 -3.807690 2.196796e-04 1.382999e-03
## RPL7 -5.030226e+02 1.020900e+03 -4.188175 5.300116e-05 4.976989e-04
## IFIT2 4.949988e+02 6.826143e+02 2.671436 8.569794e-03 2.291719e-02
## RPS14 -4.938912e+02 7.788518e+02 -4.604714 1.010314e-05 1.534228e-04
## GABARAP -4.934876e+02 1.144464e+03 -3.857299 1.834603e-04 1.212166e-03
## RPS18 -4.866939e+02 1.000275e+03 -4.334504 2.995424e-05 3.218215e-04
## RPL4 -4.817463e+02 1.106526e+03 -4.580202 1.116921e-05 1.657908e-04
## RPS4X -4.800300e+02 8.255936e+02 -4.856902 3.530658e-06 7.145667e-05
## SH3BGRL3 -4.800102e+02 8.286535e+02 -4.779819 4.886681e-06 9.027419e-05
## ALPL -4.681080e+02 7.099232e+02 -3.500673 6.461719e-04 3.043526e-03
## RPL32 -4.676894e+02 7.569707e+02 -4.198454 5.094016e-05 4.817785e-04
## VIM -4.674991e+02 1.523395e+03 -3.387412 9.467038e-04 4.079908e-03
## RPS8 -4.650217e+02 7.798878e+02 -4.382209 2.480081e-05 2.866838e-04
## RPS20 -4.633250e+02 6.199251e+02 -4.244363 4.263690e-05 4.217462e-04
## IFIT1 4.618390e+02 4.701501e+02 2.574045 1.123123e-02 2.844381e-02
## RPSA -4.569711e+02 9.156639e+02 -3.216913 1.654232e-03 6.262111e-03
## RPS12 -4.443592e+02 7.046718e+02 -3.317724 1.192209e-03 4.867330e-03
## RPL41 -4.417921e+02 1.413507e+03 -3.194838 1.775526e-03 6.622187e-03
## ALDOA -4.388527e+02 6.776759e+02 -5.554874 1.622177e-07 8.262887e-06
## CYTH4 -4.315992e+02 6.955792e+02 -5.609091 1.264679e-07 7.204573e-06
## LILRA5 -4.268464e+02 6.052065e+02 -3.511761 6.221618e-04 2.955082e-03
## RPS27A -4.251442e+02 8.250003e+02 -4.123404 6.794921e-05 5.882319e-04
## PFN1 -4.206876e+02 9.599760e+02 -3.953770 1.286502e-04 9.269691e-04
## CLIC1 -4.186512e+02 1.415129e+03 -3.044980 2.844104e-03 9.597192e-03
## RPL6 -4.143512e+02 8.469566e+02 -4.878507 3.221395e-06 6.733671e-05
## HCLS1 -4.086234e+02 1.384445e+03 -2.857489 5.011668e-03 1.503627e-02
## RPS19 -4.064975e+02 4.883219e+02 -3.547126 5.510803e-04 2.704101e-03
## TRIM22 4.052400e+02 6.802649e+02 3.454181 7.566522e-04 3.438598e-03
## RPS23 -4.051537e+02 7.103642e+02 -4.379697 2.504940e-05 2.881531e-04
## RPL18A -3.993274e+02 3.745194e+02 -4.405253 2.262818e-05 2.681021e-04
## ICAM3 -3.969325e+02 6.793966e+02 -5.119637 1.139071e-06 3.193708e-05
## RPL12 -3.818437e+02 5.833387e+02 -4.592169 1.063583e-05 1.598744e-04
## MMP25 -3.815816e+02 8.946589e+02 -3.194447 1.777749e-03 6.626053e-03
## RPS10 -3.810923e+02 5.866406e+02 -4.084571 7.876530e-05 6.514341e-04
## TYROBP -3.809037e+02 6.529630e+02 -4.697490 6.890317e-06 1.142925e-04
## RPL39 -3.783783e+02 6.796865e+02 -3.436401 8.034188e-04 3.592967e-03
## UBA52 -3.740009e+02 7.891039e+02 -3.791215 2.331421e-04 1.444854e-03
## ARRB2 -3.713975e+02 1.097418e+03 -3.380749 9.679482e-04 4.147350e-03
## RPS15A -3.669988e+02 7.551598e+02 -3.773935 2.481035e-04 1.505889e-03
## IFI30 -3.662342e+02 8.837136e+02 -3.810724 2.172819e-04 1.372557e-03
## RPLP1 -3.655760e+02 3.387761e+02 -4.286351 3.619322e-05 3.735871e-04
## RPL7A -3.648625e+02 9.370175e+02 -4.350192 2.815524e-05 3.083680e-04
## RPL26 -3.642491e+02 6.829367e+02 -4.470091 1.745430e-05 2.234145e-04
## MXD1 3.611971e+02 1.244850e+03 2.537799 1.239777e-02 3.094225e-02
## TALDO1 -3.599307e+02 7.690418e+02 -4.204864 4.969393e-05 4.715319e-04
## RACK1 -3.562767e+02 6.840549e+02 -5.122806 1.123392e-06 3.175596e-05
## LSP1 -3.558624e+02 6.114417e+02 -6.064722 1.485332e-08 1.646359e-06
## RPS24 -3.455298e+02 7.285410e+02 -3.824040 2.070513e-04 1.324252e-03
## HCK -3.416938e+02 7.718585e+02 -4.379846 2.503459e-05 2.881531e-04
## RPL17 -3.360149e+02 7.536195e+02 -4.130906 6.603049e-05 5.770977e-04
## RPL37A -3.355737e+02 5.893191e+02 -3.564072 5.198010e-04 2.595722e-03
## GPSM3 -3.298721e+02 7.229320e+02 -4.087149 7.799892e-05 6.459966e-04
## LRRK2 3.276790e+02 7.133897e+02 3.159675 1.985948e-03 7.213888e-03
## RPL23A -3.257462e+02 5.566685e+02 -4.131152 6.596843e-05 5.769806e-04
## ENO1 -3.231624e+02 6.216098e+02 -4.630157 9.100793e-06 1.416475e-04
## RPLP2 -3.217860e+02 2.782993e+02 -3.746649 2.735979e-04 1.617583e-03
## AIF1 -3.212252e+02 4.725196e+02 -7.472091 1.247953e-11 2.114389e-08
## RPL30 -3.197333e+02 7.576033e+02 -3.939043 1.358647e-04 9.654615e-04
## MCEMP1 -3.191448e+02 4.061669e+02 -2.971184 3.565485e-03 1.146263e-02
## SMCHD1 3.160927e+02 7.308843e+02 3.742626 2.775609e-04 1.636617e-03
## RPS17 -3.136623e+02 5.248163e+02 -4.121418 6.846590e-05 5.914097e-04
## CFL1 -3.130249e+02 9.282552e+02 -3.620017 4.280144e-04 2.245054e-03
## SELPLG -3.113909e+02 9.494910e+02 -2.939496 3.924140e-03 1.236164e-02
## RPS16 -3.099024e+02 3.986775e+02 -4.038635 9.369078e-05 7.378305e-04
## FKBP8 -3.098699e+02 3.546305e+02 -4.809926 4.305720e-06 8.236711e-05
## CST7 -3.093754e+02 4.633194e+02 -2.980225 3.468836e-03 1.121909e-02
## SERF2 -2.994273e+02 4.475110e+02 -4.437810 1.986864e-05 2.452051e-04
## TXNDC5 2.957919e+02 2.778705e+02 3.626556 4.183473e-04 2.209082e-03
## FCGR3A 2.946016e+02 9.488448e+02 2.679394 8.379831e-03 2.251581e-02
## EEF1D -2.888977e+02 2.657495e+02 -5.554902 1.621967e-07 8.262887e-06
## MSRB1 -2.887619e+02 7.424339e+02 -2.920864 4.150206e-03 1.293939e-02
## ADAR 2.873911e+02 7.163728e+02 3.982483 1.156210e-04 8.575216e-04
## MMP9 -2.862382e+02 3.462148e+02 -2.467699 1.496617e-02 3.605501e-02
## RPL28 -2.854110e+02 3.684683e+02 -3.548320 5.488201e-04 2.696357e-03
## TKT -2.803520e+02 7.439736e+02 -3.989931 1.124532e-04 8.419789e-04
## S100A6 -2.794144e+02 1.118226e+03 -2.337358 2.102765e-02 4.731320e-02
## RSAD2 2.782009e+02 2.769457e+02 2.463268 1.514343e-02 3.639053e-02
## RPL15 -2.777627e+02 6.730490e+02 -4.653082 8.280533e-06 1.322172e-04
## MME 2.765729e+02 4.623207e+02 3.823943 2.071237e-04 1.324252e-03
## MYO1F -2.764971e+02 8.823565e+02 -3.803038 2.234040e-04 1.398191e-03
## PFDN5 -2.762898e+02 4.489034e+02 -4.534082 1.347703e-05 1.882656e-04
## RPL37 -2.758805e+02 7.505007e+02 -3.250622 1.483815e-03 5.745365e-03
## RPL27 -2.741407e+02 5.364111e+02 -4.304314 3.373228e-05 3.543533e-04
## RESF1 2.738202e+02 7.096737e+02 2.648923 9.128497e-03 2.411224e-02
## RPL23 -2.729966e+02 6.485856e+02 -3.785803 2.377334e-04 1.463657e-03
## ABTB1 -2.694388e+02 5.332241e+02 -3.297416 1.274256e-03 5.098744e-03
## ADGRG3 -2.629979e+02 4.771069e+02 -3.329156 1.148221e-03 4.735013e-03
## RNF213 2.578342e+02 4.557329e+02 3.741317 2.788612e-04 1.641337e-03
## RHOG -2.558914e+02 5.131822e+02 -3.652386 3.821392e-04 2.068540e-03
## FAU -2.555939e+02 3.203537e+02 -4.508015 1.497844e-05 2.027904e-04
## LIMD2 -2.542091e+02 3.674818e+02 -5.497755 2.105624e-07 9.568082e-06
## CD52 -2.538974e+02 4.501647e+02 -3.125264 2.214092e-03 7.857309e-03
## RPL5 -2.520745e+02 6.126065e+02 -4.270205 3.855181e-05 3.870340e-04
## HLA-DRB1 -2.501507e+02 3.976591e+02 -3.724485 2.961162e-04 1.714813e-03
## CNN2 -2.465612e+02 5.810240e+02 -4.333944 3.002041e-05 3.222100e-04
## TAP1 2.460003e+02 5.968937e+02 2.769084 6.487665e-03 1.841199e-02
## NCF1 -2.442175e+02 8.546713e+02 -2.781261 6.263206e-03 1.789056e-02
## SPI1 -2.439940e+02 4.114436e+02 -4.360492 2.703113e-05 3.010227e-04
## MEGF9 2.433405e+02 6.226543e+02 2.825778 5.501555e-03 1.617864e-02
## LILRB3 -2.430990e+02 4.729252e+02 -4.394295 2.363739e-05 2.753826e-04
## HK3 -2.417688e+02 3.791184e+02 -4.031346 9.629439e-05 7.538293e-04
## RPL18 -2.417138e+02 3.225091e+02 -4.056685 8.752898e-05 7.057061e-04
## RPS7 -2.386856e+02 5.779519e+02 -4.262785 3.968465e-05 3.965122e-04
## RPS5 -2.381842e+02 3.041199e+02 -4.354583 2.767057e-05 3.049935e-04
## ITGB2 -2.350362e+02 8.217875e+02 -3.757508 2.631673e-04 1.566850e-03
## RPL36A -2.349232e+02 3.750905e+02 -3.773535 2.484606e-04 1.506515e-03
## NCF4 -2.337116e+02 5.687098e+02 -3.603491 4.533981e-04 2.346117e-03
## FLOT1 -2.311576e+02 5.915143e+02 -2.766898 6.528732e-03 1.849755e-02
## EFHD2 -2.273884e+02 4.131762e+02 -6.139606 1.036230e-08 1.307414e-06
## STAT1 2.272415e+02 4.288975e+02 3.375140 9.861774e-04 4.209277e-03
## HSP90B1 2.266466e+02 4.310104e+02 3.502469 6.422241e-04 3.027336e-03
## OAS3 2.259180e+02 2.316988e+02 2.723394 7.396674e-03 2.039158e-02
## NFAM1 -2.258826e+02 6.159283e+02 -4.205304 4.960962e-05 4.715319e-04
## TNFRSF1B -2.246763e+02 6.979230e+02 -5.085832 1.320159e-06 3.510558e-05
## OAS2 2.237599e+02 2.480898e+02 2.837118 5.321555e-03 1.576265e-02
## IFI44L 2.235382e+02 2.146960e+02 2.704556 7.804010e-03 2.128693e-02
## RPL35 -2.214284e+02 2.659602e+02 -4.247347 4.214483e-05 4.182743e-04
## SLC11A1 -2.211499e+02 4.879473e+02 -3.101184 2.387949e-03 8.339538e-03
## ARAP1 -2.194476e+02 5.173862e+02 -4.353597 2.777866e-05 3.058992e-04
## RPL34 -2.191240e+02 4.798503e+02 -2.980645 3.464401e-03 1.121580e-02
## RPL31 -2.175423e+02 5.798508e+02 -3.491691 6.662545e-04 3.119533e-03
## LST1 -2.159877e+02 3.942650e+02 -3.527963 5.885871e-04 2.840360e-03
## RPS25 -2.159285e+02 4.875764e+02 -4.045764 9.120900e-05 7.245404e-04
## VASP -2.145269e+02 8.106965e+02 -2.857061 5.018009e-03 1.505149e-02
## GNAI2 -2.074695e+02 6.991300e+02 -4.701592 6.773935e-06 1.129942e-04
## GNB2 -2.064353e+02 2.760143e+02 -5.517219 1.926861e-07 9.113867e-06
## ANXA11 -2.054566e+02 5.232896e+02 -4.001967 1.075078e-04 8.152449e-04
## MX1 2.031320e+02 2.609680e+02 2.411737 1.734651e-02 4.060987e-02
## MBOAT7 -2.029792e+02 3.280778e+02 -4.837631 3.830667e-06 7.559352e-05
## OAS1 2.028923e+02 2.445976e+02 2.943387 3.878380e-03 1.224643e-02
## ARPC3 -2.023844e+02 8.826408e+02 -2.708987 7.706424e-03 2.105949e-02
## RPL29 -2.017815e+02 4.046779e+02 -4.084014 7.893180e-05 6.519019e-04
## MVP -1.949738e+02 3.117979e+02 -5.607894 1.271671e-07 7.204573e-06
## IFI44 1.922912e+02 2.112690e+02 2.813634 5.700455e-03 1.663568e-02
## PARP9 1.907718e+02 3.519181e+02 3.529446 5.856008e-04 2.830165e-03
## RPL24 -1.897879e+02 3.951215e+02 -4.278643 3.730137e-05 3.808511e-04
## CYBA -1.882893e+02 2.018822e+02 -5.754174 6.455125e-08 4.611915e-06
## RPL10A -1.880962e+02 3.855645e+02 -4.148176 6.180857e-05 5.519953e-04
## ARPC4 -1.879648e+02 5.025762e+02 -3.784166 2.391394e-04 1.467249e-03
## PGGHG -1.866494e+02 2.902349e+02 -4.177777 5.516736e-05 5.108956e-04
## CST3 -1.846428e+02 2.747407e+02 -3.297929 1.272122e-03 5.091921e-03
## FLNA -1.837726e+02 4.771500e+02 -4.019005 1.008615e-04 7.786096e-04
## CNPY3 -1.814254e+02 3.547225e+02 -5.122021 1.127256e-06 3.175596e-05
## CYSTM1 -1.810216e+02 1.942429e+02 -3.299953 1.263725e-03 5.066864e-03
## COX4I1 -1.808454e+02 3.397489e+02 -4.373164 2.570731e-05 2.929184e-04
## KLF6 1.790259e+02 5.865033e+02 2.839657 5.282001e-03 1.567681e-02
## DGAT2 -1.784309e+02 4.032274e+02 -3.062131 2.697013e-03 9.194324e-03
## NFE2 -1.779774e+02 5.156431e+02 -2.612883 1.009162e-02 2.618391e-02
## MOB3A -1.775515e+02 4.839249e+02 -3.588229 4.780971e-04 2.441960e-03
## R3HDM4 -1.769301e+02 4.578008e+02 -3.518744 6.074775e-04 2.907459e-03
## FXYD5 -1.752684e+02 1.842737e+02 -5.553785 1.630283e-07 8.262887e-06
## CTSD -1.740276e+02 4.440580e+02 -2.467082 1.499073e-02 3.610684e-02
## EPSTI1 1.737388e+02 1.882055e+02 4.072999 8.229512e-05 6.726534e-04
## TNFRSF10C -1.735738e+02 4.380031e+02 -3.643725 3.939359e-04 2.111197e-03
## CD48 -1.735106e+02 4.285098e+02 -5.453791 2.571189e-07 1.127093e-05
## FCGRT -1.726052e+02 2.520064e+02 -5.573523 1.489268e-07 7.815364e-06
## TMEM123 1.722744e+02 3.200924e+02 3.135702 2.142438e-03 7.658021e-03
## GRN -1.701996e+02 5.313598e+02 -2.417912 1.706832e-02 4.006340e-02
## RPL14 -1.696513e+02 4.359828e+02 -3.530795 5.828976e-04 2.820549e-03
## PXN -1.652344e+02 5.532081e+02 -3.617491 4.318058e-04 2.256042e-03
## TYMP -1.636914e+02 1.938283e+02 -4.350304 2.814281e-05 3.083680e-04
## PARP14 1.631983e+02 2.498047e+02 3.389673 9.395922e-04 4.056630e-03
## SAMD9L 1.628000e+02 2.506602e+02 3.020526 3.066680e-03 1.017081e-02
## IFI27 1.626989e+02 1.304780e+02 2.876559 4.736626e-03 1.436736e-02
## XAF1 1.624330e+02 1.972448e+02 2.916479 4.205133e-03 1.308656e-02
## RPL38 -1.618162e+02 2.303508e+02 -4.137863 6.429742e-05 5.681772e-04
## TPI1 -1.615798e+02 3.607991e+02 -4.531297 1.363023e-05 1.898683e-04
## ATP6V0D1 -1.608919e+02 3.232266e+02 -5.141345 1.035796e-06 3.010918e-05
## ARPC1B -1.595997e+02 3.803105e+02 -4.288642 3.587011e-05 3.715454e-04
## RPL35A -1.588842e+02 3.597403e+02 -3.651960 3.827116e-04 2.069749e-03
## RPS29 -1.581871e+02 3.203185e+02 -3.178331 1.871581e-03 6.893462e-03
## NACA -1.572722e+02 4.856995e+02 -5.293378 5.288827e-07 1.850309e-05
## IL4R -1.552139e+02 4.042782e+02 -3.276205 1.365564e-03 5.380592e-03
## ADAM8 -1.541887e+02 3.010802e+02 -4.767172 5.152783e-06 9.373006e-05
## JUNB -1.538236e+02 1.695710e+02 -5.127665 1.099758e-06 3.152463e-05
## RPS15 -1.530491e+02 1.712884e+02 -3.547961 5.494998e-04 2.698579e-03
## RPL22 -1.521927e+02 2.970501e+02 -4.422371 2.113420e-05 2.549864e-04
## STK17B 1.520630e+02 4.969193e+02 2.655037 8.973590e-03 2.377721e-02
## RPS28 -1.520361e+02 1.339300e+02 -3.118942 2.258562e-03 7.986447e-03
## PPT1 -1.515558e+02 5.965717e+02 -2.461228 1.522566e-02 3.652435e-02
## OASL 1.506580e+02 1.697173e+02 3.385674 9.522029e-04 4.096165e-03
## TCIRG1 -1.494844e+02 2.462051e+02 -4.362900 2.677462e-05 2.990286e-04
## BTN3A1 1.490719e+02 2.566035e+02 4.529953 1.370478e-05 1.898816e-04
## EEF1B2 -1.481256e+02 3.136372e+02 -4.290456 3.561609e-05 3.702076e-04
## EEF2 -1.471778e+02 3.273209e+02 -5.252580 6.341256e-07 2.082271e-05
## IGSF6 -1.467594e+02 4.148170e+02 -3.069577 2.635370e-03 9.038603e-03
## PABPC1 -1.457633e+02 6.655593e+02 -4.217156 4.738566e-05 4.572774e-04
## APOBR -1.446344e+02 3.566010e+02 -3.748880 2.714231e-04 1.605525e-03
## TIMP1 -1.444337e+02 2.282849e+02 -3.298525 1.269642e-03 5.087145e-03
## LILRA2 -1.442079e+02 4.083333e+02 -3.807558 2.197843e-04 1.382999e-03
## MAN2A2 1.438677e+02 3.448806e+02 2.931495 4.019795e-03 1.260904e-02
## STXBP2 -1.438266e+02 2.493379e+02 -4.845357 3.707536e-06 7.402589e-05
## CD44 -1.423933e+02 5.128918e+02 -2.343801 2.068352e-02 4.667172e-02
## IMPDH1 -1.422041e+02 2.316221e+02 -6.199838 7.744785e-09 1.043786e-06
## CSK -1.421753e+02 2.366198e+02 -6.602275 1.070291e-09 2.952013e-07
## B4GALT5 1.420556e+02 3.283939e+02 3.139962 2.113821e-03 7.582208e-03
## LRG1 -1.384632e+02 2.910852e+02 -2.527147 1.276068e-02 3.170124e-02
## ATG16L2 -1.380268e+02 3.370351e+02 -4.515598 1.452576e-05 1.996240e-04
## RPS6KA1 -1.378525e+02 4.504943e+02 -3.328098 1.152227e-03 4.749881e-03
## PTAFR -1.373664e+02 5.063361e+02 -3.134701 2.149219e-03 7.671153e-03
## CAPZB -1.369087e+02 4.180101e+02 -4.727928 6.070951e-06 1.041990e-04
## CTDSP1 -1.365110e+02 2.903284e+02 -4.811907 4.269927e-06 8.214579e-05
## CFP -1.353851e+02 1.664709e+02 -5.655750 1.019723e-07 6.195804e-06
## TSPO -1.347245e+02 1.217790e+02 -4.625628 9.271866e-06 1.433694e-04
## LILRB2 -1.345607e+02 2.983491e+02 -5.669336 9.575934e-08 5.946103e-06
## FGD3 -1.344882e+02 2.872203e+02 -5.159672 9.557549e-07 2.812718e-05
## HLA-DPB1 -1.341946e+02 1.731408e+02 -4.444545 1.933973e-05 2.404289e-04
## RPS26 -1.341482e+02 2.203303e+02 -3.136594 2.136419e-03 7.645723e-03
## ATP5F1E -1.338342e+02 4.871762e+02 -2.522926 1.290708e-02 3.202468e-02
## CTSZ -1.334071e+02 4.423528e+02 -5.106840 1.204583e-06 3.307028e-05
## TMEM154 1.333610e+02 4.303347e+02 2.759260 6.674067e-03 1.881941e-02
## CEBPB -1.333246e+02 2.601786e+02 -3.849244 1.889270e-04 1.239311e-03
## SPARC 1.329380e+02 2.452228e+02 3.260692 1.436170e-03 5.590080e-03
## CSGALNACT2 1.312114e+02 2.362771e+02 2.656536 8.935982e-03 2.369344e-02
## PTPN6 -1.292573e+02 5.268262e+02 -3.654885 3.787978e-04 2.059854e-03
## DDX60L 1.291133e+02 3.287047e+02 2.611056 1.014281e-02 2.629946e-02
## SLC25A6 -1.282089e+02 1.450113e+02 -5.787898 5.513757e-08 4.138807e-06
## HLA-DPA1 -1.280291e+02 2.059903e+02 -4.266344 3.913731e-05 3.917034e-04
## SLC16A3 -1.264972e+02 1.816934e+02 -4.814701 4.219946e-06 8.173525e-05
## GPX1 -1.254911e+02 2.005700e+02 -3.473903 7.077771e-04 3.271332e-03
## RAC2 -1.253465e+02 6.394770e+02 -2.381293 1.877787e-02 4.337313e-02
## UCP2 -1.252937e+02 1.718684e+02 -5.447759 2.642450e-07 1.139617e-05
## APOL6 1.247781e+02 1.887671e+02 3.118682 2.260407e-03 7.990591e-03
## LRRC25 -1.239728e+02 2.524165e+02 -5.929359 2.831724e-08 2.603430e-06
## C19orf38 -1.238796e+02 1.659232e+02 -6.116048 1.160780e-08 1.371961e-06
## SECTM1 -1.238502e+02 2.043904e+02 -4.004770 1.063863e-04 8.077733e-04
## HSPA1A -1.229173e+02 1.697230e+02 -5.373424 3.695881e-07 1.451429e-05
## CAPNS1 -1.208180e+02 2.459115e+02 -5.101375 1.233662e-06 3.355788e-05
## LTB -1.207511e+02 1.145366e+02 -4.767572 5.144151e-06 9.373006e-05
## EGLN2 -1.207031e+02 1.603529e+02 -5.348023 4.142396e-07 1.589929e-05
## SHKBP1 -1.195651e+02 3.166935e+02 -2.787105 6.158019e-03 1.763683e-02
## CD14 -1.188114e+02 1.982496e+02 -4.095266 7.563238e-05 6.330276e-04
## LYST 1.183705e+02 3.138105e+02 3.277317 1.360631e-03 5.368321e-03
## PECAM1 -1.176357e+02 5.697328e+02 -2.777089 6.339301e-03 1.805574e-02
## ARHGAP4 -1.156608e+02 1.336422e+02 -6.020077 1.839056e-08 1.930195e-06
## CLEC7A 1.156145e+02 3.088035e+02 3.885386 1.655523e-04 1.118138e-03
## CYP4F3 1.156068e+02 2.319367e+02 3.778365 2.441837e-04 1.490299e-03
## TLE5 -1.154834e+02 1.823832e+02 -3.459754 7.425295e-04 3.387077e-03
## NUCB1 -1.153779e+02 1.311204e+02 -5.856002 4.004721e-08 3.321398e-06
## CYBC1 -1.150810e+02 1.942781e+02 -4.888945 3.081568e-06 6.514687e-05
## DBNL -1.141921e+02 2.778256e+02 -5.250372 6.403696e-07 2.086479e-05
## TAPBP -1.141287e+02 2.464338e+02 -4.741095 5.746504e-06 1.008188e-04
## GRK6 -1.140180e+02 2.211526e+02 -5.043168 1.589042e-06 4.035555e-05
## RPS21 -1.126165e+02 1.582505e+02 -3.462375 7.359729e-04 3.364934e-03
## RPL36 -1.119252e+02 1.128532e+02 -3.803093 2.233594e-04 1.398191e-03
## GNAS 1.112866e+02 6.489505e+02 2.545266 1.214895e-02 3.039800e-02
## PPM1M -1.100856e+02 2.218853e+02 -4.338631 2.947055e-05 3.175304e-04
## THEMIS2 -1.100657e+02 3.447426e+02 -3.981998 1.158305e-04 8.575216e-04
## SLC38A2 1.086820e+02 2.550631e+02 3.275308 1.369555e-03 5.394528e-03
## EIF4A1 -1.084625e+02 4.049447e+02 -4.027011 9.787574e-05 7.621840e-04
## NOP53 -1.084620e+02 9.809079e+01 -5.111424 1.180705e-06 3.264874e-05
## PSMB3 -1.084425e+02 2.138546e+02 -4.195035 5.161706e-05 4.870154e-04
## FERMT3 -1.083396e+02 2.103145e+02 -4.176457 5.544839e-05 5.121635e-04
## SEPTIN9 -1.078467e+02 1.770292e+02 -5.414339 3.073653e-07 1.272504e-05
## ARHGAP30 -1.065435e+02 8.068845e+02 -2.569067 1.138539e-02 2.873605e-02
## PLP2 -1.059284e+02 3.173592e+02 -2.476072 1.463624e-02 3.544739e-02
## CAPG -1.057716e+02 1.862372e+02 -3.634329 4.071234e-04 2.165239e-03
## CHMP2A -1.053201e+02 2.089416e+02 -4.757055 5.375704e-06 9.597330e-05
## SAMD9 1.046952e+02 1.715035e+02 3.308087 1.230509e-03 4.974041e-03
## STAT2 1.043842e+02 2.076732e+02 2.834832 5.357403e-03 1.584783e-02
## ARHGAP45 -1.034775e+02 2.357847e+02 -3.692144 3.321472e-04 1.862537e-03
## HERC5 1.004393e+02 1.214148e+02 2.516940 1.311730e-02 3.243769e-02
## RNPEPL1 -1.001269e+02 1.060256e+02 -5.577689 1.461069e-07 7.746460e-06
## RNASEK -1.001186e+02 1.489011e+02 -5.107892 1.199062e-06 3.299508e-05
## DDX17 1.000499e+02 5.416477e+02 3.098455 2.408429e-03 8.401168e-03
## DOCK8 9.979227e+01 3.126439e+02 3.358775 1.041219e-03 4.387412e-03
## TBC1D10C -9.951552e+01 1.237966e+02 -5.175043 8.932977e-07 2.655266e-05
## CDKN2D -9.950481e+01 2.568970e+02 -2.904351 4.360511e-03 1.347113e-02
## CD24 9.902508e+01 1.206098e+02 2.480746 1.445491e-02 3.510859e-02
## SLC44A2 -9.831463e+01 4.998173e+02 -2.583385 1.094710e-02 2.790898e-02
## PLEKHO2 -9.779555e+01 3.508440e+02 -2.951586 3.783561e-03 1.201520e-02
## PCNX1 9.710292e+01 2.675124e+02 2.687212 8.196943e-03 2.213473e-02
## CD164 9.693542e+01 3.924765e+02 2.894983 4.484113e-03 1.376335e-02
## ZC3H11A 9.655249e+01 2.547754e+02 4.001195 1.078188e-04 8.170807e-04
## WAS -9.652665e+01 2.968501e+02 -3.689913 3.347800e-04 1.873757e-03
## NINJ1 -9.608343e+01 2.246074e+02 -3.130627 2.177000e-03 7.746542e-03
## COX6B1 -9.587808e+01 2.210346e+02 -3.513956 6.175101e-04 2.940052e-03
## SIPA1 -9.562005e+01 1.324994e+02 -6.526506 1.560261e-09 3.558596e-07
## PLEKHO1 -9.545782e+01 1.823990e+02 -3.769735 2.518752e-04 1.521773e-03
## LGALS1 -9.536665e+01 1.560579e+02 -3.632287 4.100440e-04 2.175893e-03
## F13A1 9.503581e+01 2.145782e+02 3.110699 2.317789e-03 8.130427e-03
## SERINC1 9.487174e+01 3.567440e+02 2.346243 2.055440e-02 4.644664e-02
## S1PR4 -9.466324e+01 8.645349e+01 -4.887187 3.104697e-06 6.551904e-05
## STK10 -9.410006e+01 3.211683e+02 -5.272288 5.809592e-07 1.959547e-05
## CIRBP -9.398936e+01 2.013316e+02 -5.079698 1.355892e-06 3.591296e-05
## KLF2 -9.373753e+01 2.064148e+02 -3.646550 3.900515e-04 2.099040e-03
## ARF5 -9.363905e+01 1.345374e+02 -5.679735 9.125555e-08 5.838456e-06
## RPS13 -9.344701e+01 3.360920e+02 -3.023551 3.038300e-03 1.009645e-02
## SLC12A9 -9.335090e+01 1.006486e+02 -8.000681 7.596584e-13 3.003183e-09
## BACH1 9.288620e+01 3.123030e+02 2.680924 8.343758e-03 2.244244e-02
## CREB5 9.245388e+01 2.863596e+02 2.399985 1.788717e-02 4.166015e-02
## PKN1 -9.245276e+01 1.353741e+02 -5.168709 9.185365e-07 2.716669e-05
## CCDC88B -9.237041e+01 1.197151e+02 -4.949126 2.383242e-06 5.435624e-05
## PELATON -9.226862e+01 1.215682e+02 -5.551144 1.650121e-07 8.292559e-06
## GRINA -9.155493e+01 2.191972e+02 -2.490252 1.409230e-02 3.441819e-02
## ITGB1 9.152143e+01 2.508506e+02 4.556785 1.228865e-05 1.770908e-04
## PPP1CA -9.138104e+01 2.112399e+02 -4.486898 1.631186e-05 2.135306e-04
## IL32 -9.084483e+01 1.576115e+02 -2.325786 2.165844e-02 4.834902e-02
## ACAP1 -9.016786e+01 1.814443e+02 -4.474240 1.716528e-05 2.208029e-04
## EIF2AK2 8.972476e+01 1.460407e+02 3.323438 1.170028e-03 4.802246e-03
## DTX3L 8.955770e+01 1.784870e+02 3.621145 4.263323e-04 2.240013e-03
## FAM8A1 8.914767e+01 2.186716e+02 3.687021 3.382216e-04 1.885899e-03
## TAGAP 8.753279e+01 2.715670e+02 2.637137 9.433912e-03 2.474264e-02
## ARHGEF1 -8.734132e+01 1.995232e+02 -5.289764 5.374724e-07 1.863866e-05
## C1orf162 -8.695284e+01 2.135242e+02 -3.064967 2.673381e-03 9.145167e-03
## TOMM7 -8.680268e+01 1.460260e+02 -3.991656 1.117314e-04 8.386928e-04
## CELF2 8.648922e+01 3.380498e+02 2.473829 1.472400e-02 3.557275e-02
## TMX4 8.632657e+01 2.581959e+02 2.359586 1.986131e-02 4.528164e-02
## RAF1 8.629886e+01 3.638603e+02 2.903453 4.372220e-03 1.350009e-02
## PRELID1 -8.568858e+01 2.591440e+02 -3.689101 3.357432e-04 1.875607e-03
## TNFRSF1A -8.549082e+01 3.181100e+02 -2.680490 8.353974e-03 2.245651e-02
## NBPF14 8.537682e+01 1.938345e+02 3.796135 2.290419e-04 1.426098e-03
## RNASE2 8.526138e+01 1.704180e+02 2.379304 1.887488e-02 4.348409e-02
## FES -8.503818e+01 1.466250e+02 -4.344696 2.877335e-05 3.119305e-04
## ELF1 8.455855e+01 1.895308e+02 4.028462 9.734391e-05 7.595386e-04
## PARP8 8.453304e+01 2.770455e+02 2.808732 5.782598e-03 1.682571e-02
## CD37 -8.348241e+01 1.999032e+02 -5.994361 2.079122e-08 2.107554e-06
## TWF2 -8.298867e+01 1.005644e+02 -7.223108 4.560023e-11 4.506823e-08
## PRKCB 8.248775e+01 3.776651e+02 2.822748 5.550569e-03 1.629046e-02
## STK4 8.236254e+01 2.956413e+02 3.243360 1.519083e-03 5.853113e-03
## CREBRF 8.212050e+01 1.868625e+02 3.213212 1.674010e-03 6.314810e-03
## NOTCH2 8.184558e+01 2.724189e+02 2.586370 1.085764e-02 2.773064e-02
## PTMA -8.162293e+01 4.247802e+02 -2.974192 3.533058e-03 1.137308e-02
## CMPK2 8.161587e+01 8.260055e+01 2.868757 4.847444e-03 1.464358e-02
## TGFB1 -8.116932e+01 2.032272e+02 -3.976040 1.184303e-04 8.734972e-04
## PRDX5 -8.068914e+01 1.977528e+02 -2.742696 6.999401e-03 1.951408e-02
## JPT1 -8.066826e+01 1.543234e+02 -4.636762 8.856737e-06 1.391270e-04
## DDX60 8.064243e+01 9.344242e+01 3.136350 2.138060e-03 7.646980e-03
## DDX58 8.005750e+01 1.574548e+02 2.759695 6.665717e-03 1.880928e-02
## NIN 7.988841e+01 2.998832e+02 2.510448 1.334875e-02 3.291397e-02
## RAB1B -7.984168e+01 2.190219e+02 -4.235757 4.408726e-05 4.316801e-04
## PPP4C -7.972781e+01 1.614571e+02 -3.943553 1.336154e-04 9.529036e-04
## ACAA1 -7.934706e+01 1.934182e+02 -4.933681 2.546177e-06 5.676251e-05
## PPM1F -7.929889e+01 1.712101e+02 -4.568658 1.170818e-05 1.710086e-04
## ZNFX1 7.928372e+01 1.987261e+02 3.920485 1.455065e-04 1.015037e-03
## LGALS9 -7.907331e+01 1.996380e+02 -2.721254 7.441943e-03 2.048285e-02
## BSG -7.901106e+01 1.354238e+02 -3.619901 4.281883e-04 2.245054e-03
## EIF3K -7.886940e+01 1.420417e+02 -4.284269 3.648942e-05 3.753378e-04
## AGTRAP -7.880761e+01 1.879971e+02 -2.758022 6.697891e-03 1.886126e-02
## AMPD2 -7.853479e+01 1.416329e+02 -4.144464 6.269360e-05 5.565465e-04
## SUN2 -7.749547e+01 2.153823e+02 -5.694450 8.523506e-08 5.554329e-06
## CAT -7.743515e+01 2.294727e+02 -2.677829 8.416880e-03 2.260421e-02
## EMP3 -7.732981e+01 1.863266e+02 -3.581867 4.887621e-04 2.486795e-03
## GSTK1 -7.732112e+01 2.186417e+02 -4.497427 1.563329e-05 2.076328e-04
## EHD1 -7.707586e+01 1.832896e+02 -4.499869 1.547983e-05 2.069795e-04
## RASGRP4 -7.690203e+01 2.604875e+02 -3.302916 1.251529e-03 5.034985e-03
## CD82 -7.644976e+01 1.359257e+02 -3.793538 2.311980e-04 1.436318e-03
## SLC9A3R1 -7.638959e+01 1.637925e+02 -4.866843 3.384934e-06 6.921607e-05
## NBPF19 7.623209e+01 1.276146e+02 3.552224 5.414892e-04 2.673525e-03
## CD68 -7.618945e+01 2.689111e+02 -3.220906 1.633131e-03 6.198058e-03
## WAC 7.558930e+01 2.422765e+02 3.560618 5.260386e-04 2.616954e-03
## C15orf39 -7.539638e+01 1.381994e+02 -5.326730 4.556920e-07 1.670756e-05
## ATP2A3 -7.514231e+01 2.092872e+02 -3.381625 9.651283e-04 4.138258e-03
## RGS14 -7.495183e+01 1.545188e+02 -4.350160 2.815873e-05 3.083680e-04
## ADD3 7.470376e+01 2.493372e+02 2.789856 6.109059e-03 1.752623e-02
## SETX 7.466911e+01 1.878250e+02 4.763422 5.234343e-06 9.449338e-05
## USP32 7.448157e+01 2.223904e+02 2.811941 5.728709e-03 1.670580e-02
## PSTPIP1 -7.369384e+01 1.156801e+02 -5.277991 5.664056e-07 1.924805e-05
## EHBP1L1 -7.367095e+01 2.309080e+02 -4.774950 4.987514e-06 9.156643e-05
## SP100 7.307815e+01 2.643511e+02 2.725193 7.358789e-03 2.029657e-02
## MICAL1 -7.265954e+01 2.019733e+02 -3.503246 6.405223e-04 3.022919e-03
## BTN3A2 7.265579e+01 2.241474e+02 3.652699 3.817192e-04 2.067210e-03
## MGAT1 -7.233566e+01 2.801515e+02 -3.040796 2.881092e-03 9.685304e-03
## BPI 7.224778e+01 8.152870e+01 2.423813 1.680616e-02 3.954783e-02
## SMG1 7.200689e+01 1.639072e+02 4.403949 2.274606e-05 2.689613e-04
## LAMTOR1 -7.138560e+01 2.472719e+02 -2.854275 5.059429e-03 1.516422e-02
## RXRA -7.116955e+01 1.622886e+02 -5.569708 1.515562e-07 7.918310e-06
## MAP3K2 7.073237e+01 2.218011e+02 2.644999 9.229160e-03 2.431271e-02
## GRK2 -7.072213e+01 3.422874e+02 -3.193525 1.782998e-03 6.639358e-03
## VAMP8 -7.067618e+01 1.398074e+02 -3.807525 2.198105e-04 1.382999e-03
## GSTP1 -7.053662e+01 8.592448e+01 -4.499892 1.547844e-05 2.069795e-04
## RNF167 -7.038824e+01 1.992480e+02 -4.612559 9.783211e-06 1.499081e-04
## RPL36AL -7.036321e+01 2.487973e+02 -3.262547 1.427553e-03 5.560188e-03
## EDF1 -7.020784e+01 9.163668e+01 -3.984673 1.146809e-04 8.527368e-04
## WDR26 7.020555e+01 2.800902e+02 2.638390 9.401016e-03 2.466727e-02
## BCAP31 -6.969463e+01 1.461989e+02 -4.750095 5.534467e-06 9.811477e-05
## CTSC -6.911060e+01 1.944628e+02 -2.988362 3.383913e-03 1.099239e-02
## CRIP1 -6.905206e+01 8.135996e+01 -2.379558 1.886250e-02 4.347246e-02
## ARL6IP4 -6.849890e+01 8.013245e+01 -5.325680 4.578378e-07 1.670756e-05
## NBPF10 6.792361e+01 1.138213e+02 4.187471 5.314518e-05 4.986565e-04
## XBP1 6.787249e+01 1.621142e+02 2.867802 4.861162e-03 1.467992e-02
## TRIR -6.784442e+01 1.294770e+02 -3.785151 2.382927e-04 1.464229e-03
## OGA 6.776132e+01 2.992402e+02 2.853580 5.069818e-03 1.519152e-02
## MAP2K3 -6.767208e+01 1.944811e+02 -3.286746 1.319448e-03 5.233663e-03
## TP53INP1 6.749226e+01 1.800324e+02 3.294644 1.285856e-03 5.136493e-03
## BLOC1S1 -6.721909e+01 1.778309e+02 -2.431771 1.645828e-02 3.886027e-02
## RPH3A 6.720622e+01 6.782958e+01 4.097532 7.498403e-05 6.293776e-04
## SNN 6.706554e+01 2.542842e+02 2.979114 3.480577e-03 1.124719e-02
## MED13L 6.699026e+01 1.527720e+02 3.327576 1.154209e-03 4.754748e-03
## PSMD4 -6.693761e+01 2.292773e+02 -4.018719 1.009698e-04 7.786096e-04
## HECA 6.691716e+01 2.105327e+02 3.398764 9.115103e-04 3.970074e-03
## WASHC1 -6.648294e+01 1.276131e+02 -4.118784 6.915710e-05 5.952128e-04
## PTPN12 6.631291e+01 2.119369e+02 2.968981 3.589400e-03 1.152105e-02
## TGFBI -6.618683e+01 1.059929e+02 -4.897064 2.976892e-06 6.349990e-05
## PBXIP1 -6.598923e+01 2.398842e+02 -2.335299 2.113870e-02 4.750115e-02
## ACAP2 6.548362e+01 2.308484e+02 2.629609 9.633778e-03 2.517775e-02
## ANXA2 -6.543812e+01 3.756854e+02 -2.406446 1.758813e-02 4.112682e-02
## UBR2 6.516941e+01 1.951267e+02 3.324714 1.165129e-03 4.788092e-03
## ZFAND5 6.516387e+01 2.388022e+02 2.556398 1.178627e-02 2.960297e-02
## YBX1 -6.506164e+01 2.855851e+02 -3.645206 3.918950e-04 2.102159e-03
## RGL4 -6.501000e+01 1.091921e+02 -2.417247 1.709809e-02 4.012334e-02
## CSF1R -6.362485e+01 9.314737e+01 -4.743696 5.684412e-06 1.004726e-04
## UBN1 6.356124e+01 2.279030e+02 3.201006 1.740826e-03 6.521224e-03
## TAP2 6.336131e+01 1.655187e+02 2.847659 5.159080e-03 1.539680e-02
## ERP29 -6.326466e+01 1.449785e+02 -4.371540 2.587338e-05 2.933635e-04
## TSC22D4 -6.315648e+01 1.116143e+02 -5.005402 1.870960e-06 4.479053e-05
## ITGB3 6.313533e+01 1.344838e+02 2.669596 8.614262e-03 2.300499e-02
## OGT 6.298571e+01 2.333961e+02 3.620303 4.275873e-04 2.243887e-03
## CRISPLD2 6.295644e+01 1.922765e+02 2.454991 1.547957e-02 3.696148e-02
## SASH3 -6.292540e+01 3.505792e+02 -2.610037 1.017146e-02 2.635059e-02
## HMOX1 -6.292060e+01 7.744090e+01 -5.487334 2.207905e-07 9.994564e-06
## CHD2 6.257011e+01 1.699545e+02 3.897714 1.582291e-04 1.078504e-03
## LPAR2 -6.235809e+01 1.384895e+02 -3.639263 4.001475e-04 2.133880e-03
## NARF -6.203725e+01 1.496072e+02 -3.423615 8.387113e-04 3.716738e-03
## ARHGAP27 -6.199398e+01 2.879656e+02 -2.961828 3.668109e-03 1.171030e-02
## VNN3 6.186485e+01 1.254469e+02 3.398646 9.118711e-04 3.970188e-03
## QSOX1 -6.175153e+01 1.285050e+02 -3.339309 1.110436e-03 4.607298e-03
## CD300LF -6.154637e+01 1.197838e+02 -5.013071 1.810036e-06 4.426190e-05
## CEACAM8 6.153164e+01 6.231524e+01 2.621115 9.863900e-03 2.568859e-02
## PSTPIP2 6.136665e+01 1.418600e+02 2.504241 1.357345e-02 3.337088e-02
## ELOB -6.073640e+01 5.956803e+01 -4.720243 6.268440e-06 1.066624e-04
## COLGALT1 -6.072766e+01 1.124530e+02 -6.177269 8.638915e-09 1.138417e-06
## SYNGR2 -6.046280e+01 8.737147e+01 -6.829770 3.412995e-10 1.425294e-07
## TNFRSF14 -6.019691e+01 8.717731e+01 -5.238942 6.736656e-07 2.173547e-05
## SLC43A2 -6.016443e+01 1.304071e+02 -5.704240 8.144756e-08 5.396469e-06
## CHMP5 5.998954e+01 1.664297e+02 2.483899 1.433371e-02 3.488566e-02
## UBALD2 -5.996346e+01 1.670303e+02 -2.590727 1.072829e-02 2.748110e-02
## DICER1 5.985388e+01 1.614229e+02 2.638598 9.395566e-03 2.466136e-02
## ROCK1 5.972609e+01 2.028554e+02 2.328691 2.149856e-02 4.811719e-02
## DEF6 -5.950471e+01 1.396421e+02 -4.875522 3.262505e-06 6.752760e-05
## PSMB4 -5.947873e+01 1.868292e+02 -3.766528 2.547919e-04 1.535483e-03
## TACC3 -5.918353e+01 1.445115e+02 -4.530258 1.368781e-05 1.898683e-04
## UBXN1 -5.915032e+01 8.588660e+01 -5.345437 4.190700e-07 1.598126e-05
## EIF3F -5.911260e+01 1.320393e+02 -4.910041 2.816720e-06 6.096040e-05
## PPP2R1A -5.894115e+01 1.109987e+02 -4.789289 4.696215e-06 8.746063e-05
## SP3 5.892766e+01 2.218778e+02 2.542970 1.222496e-02 3.056241e-02
## OSCAR -5.883705e+01 1.194916e+02 -3.550050 5.455606e-04 2.686098e-03
## CEBPA -5.878905e+01 7.814298e+01 -6.449726 2.281465e-09 4.586131e-07
## IFIT5 5.877862e+01 8.400345e+01 3.081333 2.540699e-03 8.777364e-03
## EIF3G -5.863122e+01 7.738905e+01 -5.316287 4.774749e-07 1.716016e-05
## RICTOR 5.859062e+01 1.414603e+02 3.341771 1.101446e-03 4.578742e-03
## LRCH4 -5.849332e+01 1.139145e+02 -5.215685 7.467055e-07 2.355300e-05
## UQCRB -5.838454e+01 1.766402e+02 -3.353235 1.060494e-03 4.445903e-03
## ANXA6 -5.830364e+01 2.694456e+02 -2.376699 1.900269e-02 4.371061e-02
## AKAP13 5.827293e+01 2.290312e+02 2.688138 8.175520e-03 2.209197e-02
## PAPOLA 5.822257e+01 2.530105e+02 3.141638 2.102655e-03 7.549953e-03
## SLC15A3 -5.821559e+01 6.881456e+01 -7.902345 1.284422e-12 3.808311e-09
## SLFN5 5.815432e+01 8.678247e+01 3.046166 2.833700e-03 9.577568e-03
## DOK2 -5.802436e+01 7.500722e+01 -4.751746 5.496401e-06 9.773211e-05
## ANKRD13A 5.798595e+01 2.569890e+02 2.471868 1.480106e-02 3.573709e-02
## PAG1 5.769689e+01 1.555030e+02 2.473593 1.473324e-02 3.558783e-02
## IFIH1 5.762812e+01 7.607794e+01 3.016016 3.109443e-03 1.027839e-02
## QKI 5.736734e+01 2.115372e+02 2.551355 1.194936e-02 2.993650e-02
## GSN -5.731302e+01 1.754722e+02 -2.644847 9.233088e-03 2.431271e-02
## TFEB -5.724025e+01 9.473989e+01 -4.474934 1.711739e-05 2.204259e-04
## RALY -5.713457e+01 1.311957e+02 -4.372391 2.578623e-05 2.932164e-04
## POLD4 -5.657248e+01 8.465221e+01 -4.709238 6.562099e-06 1.099244e-04
## FAM214B -5.613854e+01 1.511736e+02 -3.738479 2.817027e-04 1.653957e-03
## CD4 -5.609464e+01 1.056741e+02 -3.936396 1.372017e-04 9.714699e-04
## KLF3 5.609160e+01 1.861907e+02 3.009001 3.177055e-03 1.045656e-02
## MAP3K1 5.589066e+01 1.591445e+02 3.528633 5.872376e-04 2.835765e-03
## TRAFD1 5.586763e+01 1.844486e+02 2.721176 7.443600e-03 2.048285e-02
## PSMB10 -5.572351e+01 6.302457e+01 -4.640914 8.706576e-06 1.372110e-04
## SYK -5.563764e+01 3.257982e+02 -2.476338 1.462588e-02 3.542953e-02
## SLC7A7 -5.556123e+01 1.638978e+02 -4.299037 3.443797e-05 3.601713e-04
## APOBEC3A_B 5.548102e+01 1.202150e+02 2.512189 1.328633e-02 3.278050e-02
## NEK7 5.539941e+01 1.417374e+02 2.985361 3.415014e-03 1.107219e-02
## EPB41 5.533754e+01 1.634100e+02 4.014327 1.026461e-04 7.867017e-04
## BTF3 -5.528067e+01 2.373983e+02 -4.219309 4.699220e-05 4.542196e-04
## EIF3D -5.526060e+01 1.697161e+02 -5.910428 3.097328e-08 2.761978e-06
## NT5C3A 5.514894e+01 1.339374e+02 2.723287 7.398930e-03 2.039170e-02
## NBN 5.510927e+01 1.330333e+02 2.864992 4.901762e-03 1.477755e-02
## LILRA3 -5.506948e+01 8.682558e+01 -3.394270 9.252943e-04 4.015364e-03
## PRRG4 5.503332e+01 7.128888e+01 3.820206 2.099488e-04 1.338697e-03
## NDUFA13 -5.467784e+01 7.325513e+01 -3.646626 3.899478e-04 2.099040e-03
## MEFV 5.431686e+01 2.121622e+02 2.650771 9.081417e-03 2.399858e-02
## PYCARD -5.386592e+01 7.104117e+01 -5.326335 4.564979e-07 1.670756e-05
## UNC13D -5.383083e+01 1.432537e+02 -3.900613 1.565526e-04 1.068305e-03
## GYPC -5.368373e+01 8.305970e+01 -3.165874 1.947245e-03 7.105741e-03
## FBL -5.367508e+01 7.987545e+01 -4.395628 2.351240e-05 2.747360e-04
## DMXL2 5.358583e+01 1.334923e+02 3.566478 5.154987e-04 2.579669e-03
## SKP1 -5.349788e+01 1.994948e+02 -3.983408 1.152229e-04 8.562303e-04
## KIAA0930 -5.341294e+01 1.297134e+02 -4.477722 1.692636e-05 2.184402e-04
## EIF3L -5.327365e+01 2.008918e+02 -3.451219 7.642631e-04 3.464072e-03
## RBM3 -5.307290e+01 2.169976e+02 -2.355839 2.005380e-02 4.557158e-02
## MDM2 5.284910e+01 1.458468e+02 2.627181 9.699072e-03 2.534281e-02
## HIPK1 5.272599e+01 1.774878e+02 2.334222 2.119697e-02 4.757684e-02
## MAN2B1 -5.259493e+01 9.714994e+01 -5.344499 4.208357e-07 1.599715e-05
## APAF1 5.255959e+01 1.655364e+02 2.952398 3.774284e-03 1.199437e-02
## BAZ2A 5.251091e+01 1.888915e+02 3.381911 9.642104e-04 4.137314e-03
## TNFAIP8L2 -5.230667e+01 1.078734e+02 -5.628548 1.156224e-07 6.890860e-06
## PTPRE 5.225318e+01 2.166827e+02 2.580085 1.104674e-02 2.810862e-02
## NEDD8 -5.221997e+01 1.413112e+02 -3.920189 1.456655e-04 1.015037e-03
## XRN1 5.218279e+01 9.117972e+01 3.709737 3.120612e-04 1.775082e-03
## HDAC7 -5.210773e+01 1.545089e+02 -4.129473 6.639293e-05 5.781352e-04
## WLS 5.209232e+01 8.562399e+01 3.487443 6.759579e-04 3.157965e-03
## ERBIN 5.188088e+01 1.783405e+02 2.849922 5.124801e-03 1.532530e-02
## RAD21 5.185669e+01 2.241692e+02 2.878445 4.710200e-03 1.430550e-02
## KIAA1109 5.171400e+01 1.164281e+02 3.903889 1.546778e-04 1.058557e-03
## PDLIM7 -5.168520e+01 9.641261e+01 -3.987148 1.136270e-04 8.471346e-04
## ABCA1 5.144152e+01 9.167669e+01 3.579709 4.924307e-04 2.499838e-03
## TRANK1 5.143110e+01 1.464117e+02 2.970542 3.572443e-03 1.147905e-02
## NAP1L1 -5.140216e+01 2.810142e+02 -2.556578 1.178048e-02 2.959469e-02
## SP1 5.138375e+01 2.413558e+02 2.380331 1.882475e-02 4.341075e-02
## CORO7 -5.133949e+01 6.196403e+01 -5.436338 2.782712e-07 1.182517e-05
## ARHGDIA -5.127532e+01 7.885851e+01 -4.809918 4.305869e-06 8.236711e-05
## RBL2 5.125784e+01 1.712824e+02 2.893922 4.498317e-03 1.379301e-02
## CYLD 5.118946e+01 1.725038e+02 4.124523 6.765957e-05 5.865808e-04
## HADHA -5.102798e+01 1.995597e+02 -5.432494 2.831534e-07 1.195089e-05
## ZCCHC2 5.095083e+01 6.420986e+01 4.173120 5.616471e-05 5.163670e-04
## H2BC4 5.094872e+01 1.102399e+02 3.004028 3.225805e-03 1.059313e-02
## MAPKAPK3 -5.092702e+01 1.593994e+02 -4.715307 6.398551e-06 1.083936e-04
## PPP4R2 5.088486e+01 1.510288e+02 2.410123 1.741992e-02 4.075759e-02
## LPIN2 5.079165e+01 1.283581e+02 3.309501 1.224818e-03 4.967968e-03
## ATP5MC2 -5.068390e+01 1.550039e+02 -3.878820 1.695831e-04 1.138950e-03
## MYO9B -5.057005e+01 1.816536e+02 -4.204072 4.984627e-05 4.724112e-04
## TRIM38 5.038297e+01 1.433815e+02 2.859285 4.985155e-03 1.497946e-02
## TLE3 -5.036632e+01 1.980045e+02 -2.662998 8.775475e-03 2.335139e-02
## BOD1L1 5.033631e+01 1.387488e+02 2.903370 4.373302e-03 1.350009e-02
## STK40 -5.029084e+01 1.975066e+02 -3.371804 9.971716e-04 4.249535e-03
## G6PD -5.018973e+01 1.197778e+02 -4.104681 7.297331e-05 6.168663e-04
## SSR2 -5.016624e+01 3.097936e+02 -2.723229 7.400159e-03 2.039170e-02
## LFNG -5.002498e+01 6.125100e+01 -4.174446 5.587897e-05 5.149375e-04
## CD3E -4.995815e+01 9.747340e+01 -2.955870 3.734869e-03 1.189469e-02
## SON 4.966853e+01 2.002074e+02 3.513739 6.179695e-04 2.941059e-03
## WASHC4 4.963290e+01 1.371519e+02 3.344238 1.092513e-03 4.556576e-03
## TADA3 -4.945947e+01 1.381441e+02 -3.662761 3.684482e-04 2.012090e-03
## ACADVL -4.938560e+01 1.710647e+02 -4.107430 7.221398e-05 6.121928e-04
## TUBB1 4.937878e+01 9.688470e+01 3.177434 1.876935e-03 6.908892e-03
## PLEC -4.919304e+01 6.690541e+01 -6.953833 1.817640e-10 9.798734e-08
## STX10 -4.918723e+01 1.517715e+02 -3.340754 1.105151e-03 4.590308e-03
## PLCB2 -4.903430e+01 2.934669e+02 -2.811332 5.738902e-03 1.672730e-02
## SYNE1 4.892330e+01 1.224060e+02 3.102645 2.377055e-03 8.306384e-03
## RASGRP2 -4.886630e+01 1.684985e+02 -4.281535 3.688190e-05 3.783904e-04
## PARVG -4.868446e+01 1.533990e+02 -5.401821 3.252268e-07 1.330066e-05
## SPG11 4.867383e+01 1.212577e+02 4.393630 2.370006e-05 2.758417e-04
## NT5C2 4.855110e+01 2.124893e+02 2.444119 1.593115e-02 3.787200e-02
## TP53I11 -4.854400e+01 8.715598e+01 -4.712324 6.478451e-06 1.089850e-04
## MAP3K11 -4.839857e+01 8.308636e+01 -4.799772 4.493747e-06 8.513713e-05
## LMAN2 -4.817392e+01 1.254091e+02 -3.872008 1.738638e-04 1.161704e-03
## MYO1G -4.814431e+01 9.704217e+01 -4.851066 3.619019e-06 7.250265e-05
## GUK1 -4.782995e+01 6.148328e+01 -4.385429 2.448556e-05 2.833159e-04
## CTSH -4.773082e+01 1.260717e+02 -3.601437 4.566504e-04 2.357803e-03
## PNPLA6 -4.758063e+01 6.076791e+01 -4.945559 2.419949e-06 5.498199e-05
## CHMP4B -4.750759e+01 1.371259e+02 -4.543167 1.298876e-05 1.832339e-04
## IL1B -4.726200e+01 1.220984e+02 -2.338162 2.098442e-02 4.722490e-02
## SH3BP2 -4.725470e+01 2.169452e+02 -3.445481 7.792071e-04 3.515175e-03
## TENT5C 4.688071e+01 6.198452e+01 4.047397 9.064961e-05 7.225164e-04
## HLA-DQB1 -4.678589e+01 8.499740e+01 -3.292607 1.294441e-03 5.156893e-03
## C9orf72 4.662286e+01 1.577024e+02 2.401213 1.782996e-02 4.155825e-02
## PTGS1 4.658548e+01 1.412529e+02 2.849663 5.128704e-03 1.533310e-02
## PPP1R9B -4.645439e+01 1.324204e+02 -6.437324 2.425412e-09 4.648246e-07
## TRAPPC1 -4.626583e+01 1.334744e+02 -3.579616 4.925903e-04 2.499838e-03
## UBA1 -4.592276e+01 1.873462e+02 -4.273543 3.805245e-05 3.853988e-04
## BRD2 4.585415e+01 2.390096e+02 3.949611 1.306495e-04 9.365882e-04
## GSTO1 -4.576775e+01 1.312624e+02 -2.751567 6.823408e-03 1.911328e-02
## SNRK 4.557370e+01 1.634270e+02 2.923603 4.116247e-03 1.286056e-02
## LUZP6 4.548301e+01 1.960422e+02 2.582522 1.097306e-02 2.794514e-02
## MTPN 4.548301e+01 1.960422e+02 2.582522 1.097306e-02 2.794514e-02
## MLF2 -4.541890e+01 1.443005e+02 -3.473064 7.097938e-04 3.279375e-03
## ARHGAP15 -4.537650e+01 1.275339e+02 -3.533423 5.776640e-04 2.799794e-03
## COPE -4.526062e+01 7.238238e+01 -4.461720 1.805168e-05 2.284877e-04
## CAPN2 4.523473e+01 1.490575e+02 3.928687 1.411670e-04 9.910670e-04
## RGS19 -4.523221e+01 1.154492e+02 -3.716227 3.049460e-04 1.751409e-03
## UBXN11 -4.494027e+01 5.223788e+01 -5.311005 4.888774e-07 1.746411e-05
## VPS28 -4.475057e+01 7.076920e+01 -3.838942 1.961446e-04 1.273707e-03
## SLC25A3 -4.467902e+01 1.959651e+02 -3.461812 7.373764e-04 3.368753e-03
## CCM2 -4.461103e+01 1.243615e+02 -3.922467 1.444465e-04 1.010104e-03
## SPOCK2 -4.425636e+01 8.982975e+01 -3.440182 7.932517e-04 3.562274e-03
## PRKAR2B 4.421017e+01 9.233238e+01 3.229884 1.586607e-03 6.046645e-03
## C5AR2 -4.419942e+01 1.259894e+02 -3.752884 2.675620e-04 1.588231e-03
## POR -4.407768e+01 6.314590e+01 -4.014759 1.024802e-04 7.866765e-04
## TAB2 4.383710e+01 1.842722e+02 2.604452 1.032975e-02 2.662615e-02
## GSDMD -4.381761e+01 5.409087e+01 -4.752901 5.469914e-06 9.740718e-05
## TSEN34 -4.368929e+01 1.151767e+02 -3.679314 3.475604e-04 1.923502e-03
## SIGLEC10 -4.366394e+01 1.200481e+02 -2.337009 2.104644e-02 4.733752e-02
## PTP4A2 4.365855e+01 3.796546e+02 2.334473 2.118339e-02 4.755896e-02
## STXBP5 4.351241e+01 1.107839e+02 2.736136 7.132193e-03 1.982372e-02
## ZC3HAV1 4.339489e+01 1.424413e+02 2.554910 1.183419e-02 2.970443e-02
## PSMD13 -4.339388e+01 1.625850e+02 -3.724566 2.960306e-04 1.714813e-03
## ITM2C 4.332740e+01 5.459665e+01 2.771793 6.437101e-03 1.829914e-02
## TMEM120A -4.331120e+01 7.230839e+01 -4.149992 6.138000e-05 5.498239e-04
## PPP1R15B 4.327036e+01 1.214792e+02 3.291239 1.300241e-03 5.174784e-03
## GBP4 4.317227e+01 7.451168e+01 2.525648 1.281250e-02 3.181664e-02
## PACS1 -4.310645e+01 1.243962e+02 -4.795181 4.581348e-06 8.624570e-05
## INPP5D 4.310395e+01 2.307735e+02 2.842073 5.244597e-03 1.558530e-02
## PRKCSH -4.276814e+01 9.262552e+01 -5.112708 1.174102e-06 3.261088e-05
## EIF3C -4.273296e+01 1.050756e+02 -4.498994 1.553465e-05 2.070123e-04
## WNK1 4.252188e+01 1.310469e+02 3.242529 1.523164e-03 5.859464e-03
## VCPIP1 4.251685e+01 1.132242e+02 3.059665 2.717723e-03 9.246183e-03
## DEF8 -4.238326e+01 1.550802e+02 -3.760897 2.599906e-04 1.554728e-03
## EIF2AK1 4.233048e+01 1.240806e+02 5.065287 1.443596e-06 3.746399e-05
## AP2M1 -4.227889e+01 2.064488e+02 -3.067646 2.651234e-03 9.082504e-03
## STAT5A -4.218204e+01 1.592304e+02 -3.513621 6.182194e-04 2.941068e-03
## SPOPL 4.212065e+01 1.486251e+02 2.364425 1.961511e-02 4.483088e-02
## PATL1 4.204509e+01 9.050442e+01 4.573011 1.150204e-05 1.682050e-04
## ACTR1A -4.199253e+01 1.517200e+02 -4.058697 8.686689e-05 7.017993e-04
## MIDN -4.171456e+01 1.448856e+02 -3.010700 3.160552e-03 1.041842e-02
## ARID5A -4.169895e+01 6.795398e+01 -3.659026 3.733220e-04 2.033808e-03
## AHCTF1 4.167712e+01 1.191115e+02 2.827224 5.478288e-03 1.613021e-02
## CDC37 -4.140189e+01 9.211347e+01 -5.383998 3.524192e-07 1.402581e-05
## NOSIP -4.118477e+01 5.621492e+01 -4.236152 4.401968e-05 4.316801e-04
## TYK2 -4.107129e+01 1.468494e+02 -4.404118 2.273076e-05 2.689613e-04
## PSD4 -4.091786e+01 2.345328e+02 -2.636863 9.441121e-03 2.475607e-02
## ADAM17 4.090645e+01 6.728714e+01 3.253607 1.469539e-03 5.697528e-03
## RIN3 -4.090109e+01 1.458163e+02 -2.803623 5.869348e-03 1.702800e-02
## UBL5 -4.086358e+01 1.293483e+02 -2.833608 5.376686e-03 1.589023e-02
## VCL 4.074904e+01 1.254732e+02 3.493446 6.622844e-04 3.105849e-03
## MAPK13 4.035190e+01 1.071179e+02 2.997526 3.290577e-03 1.075688e-02
## PPP1R12C -4.030288e+01 6.496655e+01 -5.623923 1.181151e-07 7.004226e-06
## PLIN3 -4.015227e+01 1.068782e+02 -3.546508 5.522552e-04 2.707626e-03
## CPEB4 4.012263e+01 1.023659e+02 2.669897 8.606984e-03 2.300034e-02
## IMPA2 -4.007772e+01 5.859757e+01 -5.049163 1.548271e-06 3.957433e-05
## PLB1 -4.002355e+01 5.871048e+01 -3.878287 1.699141e-04 1.139809e-03
## PHB2 -3.998503e+01 9.922310e+01 -4.999393 1.920088e-06 4.581941e-05
## MAPK3 -3.990391e+01 1.167952e+02 -3.656008 3.773053e-04 2.052679e-03
## TRIP12 3.980562e+01 1.994150e+02 2.636176 9.459224e-03 2.479257e-02
## ILK -3.976209e+01 2.121647e+02 -2.378916 1.889386e-02 4.349692e-02
## WBP2 -3.974030e+01 1.803700e+02 -2.886399 4.600191e-03 1.403970e-02
## KDM7A 3.966821e+01 1.187623e+02 2.920876 4.150059e-03 1.293939e-02
## GAA -3.961014e+01 5.734432e+01 -5.744213 6.762140e-08 4.773749e-06
## DHRS13 -3.961014e+01 7.013825e+01 -3.453526 7.583289e-04 3.444573e-03
## SBNO2 -3.960032e+01 1.072384e+02 -2.979305 3.478561e-03 1.124513e-02
## RAB5C -3.950956e+01 2.103433e+02 -3.099292 2.402133e-03 8.381672e-03
## DNAJC13 3.943032e+01 8.729956e+01 4.146737 6.215032e-05 5.542660e-04
## NCOA1 3.937053e+01 1.496879e+02 2.564361 1.153283e-02 2.906490e-02
## S100A10 -3.935941e+01 1.530519e+02 -2.360063 1.983692e-02 4.524266e-02
## PRAM1 -3.923127e+01 6.144100e+01 -4.304734 3.367664e-05 3.540824e-04
## FAM89B -3.914309e+01 5.020861e+01 -6.130428 1.083108e-08 1.338512e-06
## KIF5B 3.885211e+01 1.318361e+02 3.290203 1.304646e-03 5.185358e-03
## RARA -3.881692e+01 1.399666e+02 -2.854911 5.049951e-03 1.513964e-02
## TOM1 -3.874369e+01 9.757974e+01 -3.158628 1.992555e-03 7.229029e-03
## MAP7D1 -3.871106e+01 1.373781e+02 -3.165131 1.951846e-03 7.113981e-03
## ANKRD13D -3.853524e+01 1.041355e+02 -4.265733 3.923081e-05 3.923081e-04
## PGLS -3.844963e+01 4.444768e+01 -5.954679 2.511159e-08 2.407380e-06
## CD2BP2 -3.835822e+01 1.251863e+02 -4.941825 2.458957e-06 5.565501e-05
## FNDC3B 3.833516e+01 9.921672e+01 3.133230 2.159209e-03 7.699403e-03
## NUFIP2 3.830504e+01 1.414914e+02 2.965802 3.624182e-03 1.161070e-02
## CIB1 -3.817093e+01 7.120905e+01 -4.211922 4.835565e-05 4.639952e-04
## IRAG1 -3.816465e+01 1.145352e+02 -2.367159 1.947719e-02 4.458588e-02
## CHMP1A -3.785983e+01 8.704788e+01 -4.483680 1.652489e-05 2.156052e-04
## CD3D -3.785689e+01 6.773680e+01 -2.742838 6.996553e-03 1.951408e-02
## NSD3 3.775350e+01 9.646241e+01 4.566198 1.182621e-05 1.725201e-04
## IGFLR1 -3.771498e+01 5.324574e+01 -5.016432 1.783948e-06 4.380461e-05
## ATM 3.761324e+01 1.240426e+02 3.308158 1.230220e-03 4.974041e-03
## DOCK11 3.751788e+01 1.609723e+02 2.546604 1.210484e-02 3.030041e-02
## TMC8 -3.740096e+01 1.104688e+02 -2.715749 7.559591e-03 2.072988e-02
## DOCK2 3.728814e+01 2.546311e+02 2.385628 1.856786e-02 4.296875e-02
## NCOA3 3.721488e+01 8.477207e+01 5.044237 1.581694e-06 4.025514e-05
## BTN3A3 3.710778e+01 7.670434e+01 4.355508 2.756951e-05 3.047361e-04
## ARRB1 -3.704707e+01 1.067599e+02 -4.789708 4.687949e-06 8.746063e-05
## PSENEN -3.702769e+01 8.391309e+01 -3.915373 1.482745e-04 1.027182e-03
## HLA-DMA -3.700619e+01 7.506412e+01 -3.737525 2.826633e-04 1.657136e-03
## DEK 3.696129e+01 1.299614e+02 3.741373 2.788059e-04 1.641337e-03
## CTDNEP1 -3.690646e+01 1.228679e+02 -3.673687 3.545311e-04 1.952061e-03
## COX7C -3.690409e+01 1.291261e+02 -2.473990 1.471768e-02 3.557275e-02
## MKNK2 -3.683284e+01 1.762444e+02 -2.468623 1.492944e-02 3.597381e-02
## MCMBP 3.681942e+01 1.342862e+02 3.312705 1.212014e-03 4.928788e-03
## USP34 3.680366e+01 1.223386e+02 3.342711 1.098034e-03 4.567955e-03
## ABHD3 3.672066e+01 1.245124e+02 2.463218 1.514543e-02 3.639053e-02
## ITSN2 3.668279e+01 1.178624e+02 3.062126 2.697053e-03 9.194324e-03
## HNRNPH3 3.654745e+01 1.583682e+02 3.291287 1.300037e-03 5.174784e-03
## TAF10 -3.651114e+01 1.088662e+02 -3.876055 1.713083e-04 1.146567e-03
## CRTAP -3.645425e+01 1.004140e+02 -4.279063 3.724011e-05 3.807480e-04
## APP 3.645192e+01 8.579951e+01 5.186266 8.502273e-07 2.572371e-05
## EIF3M -3.637479e+01 1.046939e+02 -4.689581 7.120153e-06 1.172847e-04
## PSMA7 -3.636984e+01 1.303205e+02 -3.094405 2.439130e-03 8.480822e-03
## PGAP6 -3.633989e+01 5.542591e+01 -5.934716 2.760704e-08 2.578106e-06
## TPP1 3.633337e+01 2.078114e+02 2.699022 7.927481e-03 2.154938e-02
## EP300 3.629752e+01 1.004415e+02 3.252233 1.476093e-03 5.719199e-03
## PTPRCAP -3.629191e+01 3.035666e+01 -3.179827 1.862681e-03 6.867078e-03
## DEDD2 -3.610076e+01 1.291831e+02 -3.230233 1.584819e-03 6.041773e-03
## STK38 -3.603438e+01 2.130187e+02 -3.200259 1.744995e-03 6.534779e-03
## SEL1L 3.603205e+01 1.146033e+02 3.463793 7.324488e-04 3.351405e-03
## LCK -3.598658e+01 7.904417e+01 -2.594577 1.061511e-02 2.725004e-02
## MARF1 3.586592e+01 1.548640e+02 2.631597 9.580633e-03 2.506239e-02
## AKT1 -3.563815e+01 1.027137e+02 -5.551326 1.648747e-07 8.292559e-06
## ORAI2 -3.563261e+01 1.408884e+02 -2.540096 1.232076e-02 3.077595e-02
## KMT2E 3.560279e+01 1.066485e+02 3.496494 6.554429e-04 3.081075e-03
## SCAF11 3.557396e+01 1.420130e+02 2.834691 5.359613e-03 1.584783e-02
## LILRA1 -3.543784e+01 1.003846e+02 -3.637503 4.026236e-04 2.146120e-03
## VOPP1 -3.533806e+01 1.332950e+02 -2.693871 8.043996e-03 2.180114e-02
## AMD1 3.521322e+01 1.446059e+02 2.760790 6.644714e-03 1.877503e-02
## CNOT1 3.506809e+01 1.413727e+02 4.272819 3.816016e-05 3.856928e-04
## FUT7 -3.506364e+01 3.223891e+01 -6.044024 1.640122e-08 1.784573e-06
## YWHAH 3.498123e+01 1.134181e+02 3.134682 2.149346e-03 7.671153e-03
## MAZ -3.495540e+01 1.201400e+02 -2.653674 9.007906e-03 2.385215e-02
## USF2 -3.489914e+01 9.784618e+01 -5.008102 1.849290e-06 4.457842e-05
## STAB1 -3.484551e+01 8.270922e+01 -2.938545 3.935390e-03 1.239016e-02
## OSGIN2 3.475707e+01 7.306707e+01 3.558467 5.299568e-04 2.629827e-03
## TNPO1 3.469253e+01 8.426560e+01 3.762727 2.582898e-04 1.549477e-03
## PHF20L1 3.462483e+01 1.218556e+02 2.752651 6.802191e-03 1.907186e-02
## CDK5RAP3 -3.459847e+01 2.413536e+02 -2.311436 2.246377e-02 4.981612e-02
## NME2 -3.423458e+01 8.205699e+01 -2.821081 5.577712e-03 1.635394e-02
## UNC119 -3.418053e+01 1.044217e+02 -3.442344 7.874927e-04 3.541776e-03
## LIMS1 3.407423e+01 9.863491e+01 3.789916 2.342370e-04 1.447656e-03
## BIRC6 3.407291e+01 7.190745e+01 4.877000 3.242086e-06 6.733671e-05
## MRFAP1 -3.397758e+01 1.634503e+02 -3.368385 1.008556e-03 4.285730e-03
## SIPA1L2 3.393388e+01 7.630592e+01 2.460600 1.525106e-02 3.657048e-02
## PSMB1 -3.391952e+01 1.283435e+02 -3.437433 8.006313e-04 3.586421e-03
## DOK1 -3.386578e+01 6.841051e+01 -5.516996 1.928820e-07 9.113867e-06
## ZAP70 -3.386237e+01 5.520149e+01 -2.892279 4.520380e-03 1.383171e-02
## CAVIN2 3.385440e+01 9.727598e+01 3.063796 2.683115e-03 9.154701e-03
## NCOA2 3.383643e+01 9.099769e+01 3.168844 1.928947e-03 7.058721e-03
## SERPINB6 -3.373794e+01 6.216465e+01 -5.353099 4.049147e-07 1.559185e-05
## CEACAM6 3.372375e+01 3.525454e+01 2.701272 7.877080e-03 2.144678e-02
## KDM3B 3.336754e+01 1.335177e+02 2.759700 6.665608e-03 1.880928e-02
## SEPTIN7 3.328595e+01 1.790245e+02 2.683381 8.286097e-03 2.231958e-02
## NLRP12 -3.326792e+01 1.132651e+02 -3.079614 2.554342e-03 8.809099e-03
## QARS1 -3.325788e+01 1.124299e+02 -3.933457 1.387009e-04 9.791620e-04
## H2BC21 3.304446e+01 9.096919e+01 3.310774 1.219715e-03 4.955746e-03
## APRT -3.294803e+01 3.286586e+01 -4.395869 2.348986e-05 2.747360e-04
## CEP63 3.293238e+01 9.140290e+01 3.788672 2.352890e-04 1.453399e-03
## C18orf25 3.280461e+01 6.291991e+01 3.653519 3.806217e-04 2.064180e-03
## KDM5A 3.273845e+01 1.203062e+02 3.794745 2.301933e-04 1.431616e-03
## PTP4A1 3.270126e+01 1.037282e+02 2.593167 1.065643e-02 2.733837e-02
## VAMP2 -3.259447e+01 1.433549e+02 -2.762101 6.619673e-03 1.871944e-02
## SNX27 3.252436e+01 1.223616e+02 2.774635 6.384444e-03 1.816687e-02
## KMT2C 3.250088e+01 8.591296e+01 3.405922 8.899555e-04 3.891915e-03
## ZBTB16 3.246153e+01 4.482214e+01 2.327970 2.153814e-02 4.818759e-02
## USP3 3.244531e+01 1.450562e+02 3.002907 3.236888e-03 1.061814e-02
## MARCHF2 -3.244105e+01 7.536482e+01 -3.318967 1.187350e-03 4.850833e-03
## CPNE3 3.234050e+01 8.814839e+01 2.746721 6.919052e-03 1.933552e-02
## ZBP1 3.232921e+01 6.584778e+01 2.340422 2.086338e-02 4.699709e-02
## MED13 3.228190e+01 8.061566e+01 3.894627 1.600331e-04 1.088923e-03
## GPX4 -3.225409e+01 8.001004e+01 -3.078760 2.561150e-03 8.824879e-03
## EDEM1 3.215648e+01 8.903135e+01 5.020726 1.751148e-06 4.326795e-05
## PNISR 3.211967e+01 1.664202e+02 2.602032 1.039904e-02 2.677069e-02
## LDB1 -3.194042e+01 1.415039e+02 -4.405844 2.257500e-05 2.677395e-04
## MYCBP2 3.193066e+01 6.689463e+01 4.826483 4.015369e-06 7.865977e-05
## NIPBL 3.191299e+01 1.104868e+02 2.987773 3.389998e-03 1.100613e-02
## HERC3 3.185044e+01 7.371338e+01 3.336327 1.121410e-03 4.643826e-03
## RAP2C 3.184833e+01 1.361175e+02 2.403125 1.774124e-02 4.140322e-02
## FLII -3.178415e+01 1.642210e+02 -3.551723 5.424249e-04 2.673525e-03
## MTDH 3.175270e+01 9.650345e+01 5.034943 1.646679e-06 4.137629e-05
## VPS9D1 -3.172976e+01 5.384773e+01 -3.326757 1.157326e-03 4.760973e-03
## PRPF6 -3.165888e+01 6.287130e+01 -5.662479 9.884717e-08 6.066679e-06
## EDEM3 3.163306e+01 7.418345e+01 4.061836 8.584302e-05 6.958976e-04
## SLC19A1 -3.159632e+01 7.846143e+01 -3.134866 2.148096e-03 7.671153e-03
## DYRK1A 3.156874e+01 1.169311e+02 3.149738 2.049481e-03 7.397091e-03
## BID -3.150100e+01 1.278205e+02 -3.039850 2.889520e-03 9.702635e-03
## ZEB2 3.141981e+01 1.107059e+02 2.576947 1.114224e-02 2.827279e-02
## DRAP1 -3.125570e+01 6.098790e+01 -3.240026 1.535531e-03 5.899385e-03
## TRABD -3.125383e+01 3.744705e+01 -5.577390 1.463075e-07 7.746460e-06
## HMGN4 3.125180e+01 1.096389e+02 4.078639 8.055615e-05 6.625492e-04
## ARFGAP2 -3.119186e+01 9.070118e+01 -4.577733 1.128240e-05 1.666368e-04
## SNRPD2 -3.116245e+01 8.833110e+01 -2.591858 1.069493e-02 2.741934e-02
## LYPLA2 -3.109546e+01 4.850174e+01 -5.231396 6.965641e-07 2.220766e-05
## SNX17 -3.097998e+01 1.125624e+02 -3.494925 6.589578e-04 3.095144e-03
## EIF6 -3.097601e+01 7.179992e+01 -3.712196 3.093467e-04 1.766419e-03
## MKLN1 3.092143e+01 8.586137e+01 4.341992 2.908217e-05 3.149904e-04
## HSBP1 -3.086860e+01 1.159853e+02 -3.853496 1.860221e-04 1.223640e-03
## ZNF385A -3.083063e+01 3.754878e+01 -5.702114 8.225578e-08 5.419742e-06
## REL 3.081126e+01 1.015583e+02 3.016357 3.106192e-03 1.027599e-02
## KLRB1 -3.081036e+01 4.120303e+01 -4.021360 9.997425e-05 7.744576e-04
## SEL1L3 3.076696e+01 6.457743e+01 3.049789 2.802131e-03 9.484383e-03
## DPP7 -3.075768e+01 2.498545e+01 -4.396359 2.344411e-05 2.747360e-04
## PIAS1 3.067083e+01 1.315906e+02 2.521762 1.294774e-02 3.209199e-02
## RFFL 3.062052e+01 1.079016e+02 2.965666 3.625687e-03 1.161238e-02
## SART1 -3.059545e+01 5.642193e+01 -5.324648 4.599567e-07 1.673340e-05
## SPAG9 3.056588e+01 1.064268e+02 2.584787 1.090500e-02 2.781960e-02
## BAZ2B 3.054343e+01 9.035474e+01 3.082458 2.531802e-03 8.751726e-03
## FOXN2 3.053099e+01 8.517708e+01 2.990249 3.364504e-03 1.094733e-02
## CRKL 3.050240e+01 9.064875e+01 4.368550 2.618185e-05 2.954849e-04
## GIMAP5 -3.044585e+01 8.577913e+01 -2.691846 8.090230e-03 2.191142e-02
## PIM2 3.040995e+01 1.381539e+02 2.844658 5.204872e-03 1.548665e-02
## ZNF467 -3.040755e+01 4.233810e+01 -5.501435 2.070624e-07 9.475610e-06
## DDX39B -3.032482e+01 1.821055e+02 -3.415807 8.609755e-04 3.793154e-03
## MTRNR2L6 -3.029574e+01 4.498673e+01 -3.254896 1.463417e-03 5.677502e-03
## TMEM259 -3.027500e+01 6.005994e+01 -5.428286 2.885933e-07 1.209440e-05
## UQCRC1 -3.026124e+01 1.053646e+02 -3.077830 2.568574e-03 8.845322e-03
## FIS1 -3.019019e+01 5.308226e+01 -3.682626 3.435170e-04 1.906463e-03
## FBRS -3.017724e+01 9.235538e+01 -4.151905 6.093160e-05 5.471547e-04
## RNH1 -3.013362e+01 3.276725e+01 -5.507164 2.017276e-07 9.309299e-06
## FNIP1 3.000263e+01 8.706293e+01 2.345970 2.056879e-02 4.645667e-02
## ZBTB34 2.988227e+01 1.014707e+02 2.577800 1.111620e-02 2.823086e-02
## RHOT2 -2.987804e+01 4.303786e+01 -4.938766 2.491370e-06 5.596145e-05
## TLK1 2.986484e+01 7.687831e+01 4.683361 7.306109e-06 1.192355e-04
## KLHL8 2.986131e+01 6.464648e+01 2.428986 1.657929e-02 3.908377e-02
## MAF1 -2.983975e+01 6.724306e+01 -4.991919 1.982943e-06 4.685951e-05
## CNPPD1 -2.977756e+01 1.013221e+02 -2.940188 3.915958e-03 1.234536e-02
## CD79B -2.975407e+01 4.278334e+01 -2.822307 5.557747e-03 1.630438e-02
## SCAMP2 -2.971375e+01 9.379822e+01 -5.391841 3.401906e-07 1.367682e-05
## TUFM -2.963397e+01 7.979441e+01 -3.972598 1.199574e-04 8.814714e-04
## APEH -2.950793e+01 7.373473e+01 -4.631523 9.049789e-06 1.412243e-04
## EIF5 2.950017e+01 1.723897e+02 2.384455 1.862449e-02 4.308298e-02
## GBP3 2.941023e+01 5.272194e+01 2.641640 9.316145e-03 2.449878e-02
## ARL6IP1 2.937772e+01 1.047719e+02 4.113243 7.063318e-05 6.035371e-04
## DGKZ -2.929534e+01 7.529135e+01 -4.308609 3.316815e-05 3.499771e-04
## FAM111A 2.923161e+01 7.331442e+01 5.190903 8.330265e-07 2.539767e-05
## AUP1 -2.919079e+01 1.253401e+02 -2.893396 4.505364e-03 1.380713e-02
## CPNE1 -2.914759e+01 1.233677e+02 -3.366268 1.015669e-03 4.310836e-03
## SETD2 2.914603e+01 8.511057e+01 4.420925 2.125662e-05 2.556831e-04
## TBC1D10B -2.909552e+01 6.165357e+01 -4.876599 3.247605e-06 6.733671e-05
## KIDINS220 2.909472e+01 8.987570e+01 2.915571 4.216582e-03 1.311531e-02
## CRTC2 -2.906626e+01 1.006048e+02 -3.742431 2.777534e-04 1.636617e-03
## SEPTIN2 2.904283e+01 1.525657e+02 3.571308 5.069632e-04 2.555284e-03
## RIOK3 2.899811e+01 1.113256e+02 2.346428 2.054461e-02 4.643779e-02
## LPCAT1 -2.899552e+01 1.039814e+02 -5.312123 4.864421e-07 1.742962e-05
## MORC3 2.898826e+01 8.802963e+01 3.262669 1.426989e-03 5.560188e-03
## SH3BP1 -2.898312e+01 5.284604e+01 -5.113662 1.169217e-06 3.261088e-05
## LRPAP1 -2.896802e+01 9.556031e+01 -2.994457 3.321566e-03 1.083139e-02
## TAOK1 2.889460e+01 9.036542e+01 3.168655 1.930109e-03 7.060795e-03
## ARID4B 2.887489e+01 1.045844e+02 2.661789 8.805286e-03 2.341495e-02
## RAB43 -2.886135e+01 6.569360e+01 -2.561620 1.161951e-02 2.924885e-02
## CSNK2B -2.884439e+01 8.004811e+01 -4.587511 1.084045e-05 1.623330e-04
## EIF3A 2.876281e+01 1.238513e+02 3.601183 4.570547e-04 2.358864e-03
## SZRD1 -2.874562e+01 1.369710e+02 -3.677291 3.500511e-04 1.932778e-03
## LAMP1 -2.872095e+01 1.181997e+02 -3.825224 2.061641e-04 1.320965e-03
## CANX 2.871285e+01 1.956729e+02 2.614351 1.005067e-02 2.609478e-02
## RSU1 2.869812e+01 7.403378e+01 4.534200 1.347057e-05 1.882656e-04
## NAPRT -2.862256e+01 2.198267e+01 -5.589709 1.382599e-07 7.523124e-06
## RPN1 -2.859176e+01 2.078619e+02 -2.807739 5.799370e-03 1.685384e-02
## MDH2 -2.858248e+01 5.830712e+01 -5.126973 1.103096e-06 3.152463e-05
## ERGIC3 -2.856803e+01 9.158749e+01 -3.306010 1.238912e-03 4.996088e-03
## KAT2B 2.856557e+01 8.504289e+01 3.436581 8.029313e-04 3.592141e-03
## MAT2B 2.855731e+01 1.422819e+02 3.023389 3.039811e-03 1.009864e-02
## CASP10 2.849981e+01 6.485548e+01 5.037147 1.631039e-06 4.115772e-05
## HLA-DMB -2.849288e+01 7.190885e+01 -3.505944 6.346521e-04 2.998794e-03
## PRRC2C 2.844924e+01 1.108168e+02 3.238516 1.543037e-03 5.920549e-03
## SH3BP5L -2.840972e+01 9.975082e+01 -3.559506 5.280615e-04 2.624816e-03
## CHD1 2.835902e+01 8.106465e+01 2.474068 1.471463e-02 3.557275e-02
## PIM3 -2.834559e+01 6.916755e+01 -3.489160 6.720201e-04 3.142807e-03
## TNKS2 2.833704e+01 7.444453e+01 4.364460 2.660966e-05 2.985719e-04
## TRIM28 -2.833639e+01 5.913307e+01 -4.290766 3.557280e-05 3.702076e-04
## POLR2E -2.830452e+01 3.925324e+01 -5.343647 4.224470e-07 1.600710e-05
## WDR83OS -2.811548e+01 7.107354e+01 -3.350073 1.071644e-03 4.483252e-03
## KCNAB2 -2.807484e+01 1.084747e+02 -5.024953 1.719429e-06 4.275142e-05
## MARCO -2.806215e+01 2.188781e+01 -5.751295 6.542424e-08 4.646296e-06
## CREG1 2.804813e+01 1.090574e+02 3.319728 1.184384e-03 4.844586e-03
## VAMP3 -2.798434e+01 1.391106e+02 -2.343044 2.072369e-02 4.673568e-02
## OGFR -2.794311e+01 5.197173e+01 -4.063980 8.515042e-05 6.921754e-04
## CELF1 2.789829e+01 1.141638e+02 3.272316 1.382955e-03 5.436474e-03
## PGRMC1 2.788794e+01 7.516286e+01 3.166041 1.946213e-03 7.104365e-03
## SLC66A2 -2.783740e+01 3.194441e+01 -5.175822 8.902424e-07 2.654082e-05
## EVL -2.759575e+01 6.519973e+01 -2.670132 8.601290e-03 2.299105e-02
## TACC1 2.755194e+01 1.064991e+02 3.153791 2.023343e-03 7.322810e-03
## SMARCD2 -2.754562e+01 1.008590e+02 -5.024403 1.723525e-06 4.276360e-05
## XPO1 2.752584e+01 1.037991e+02 3.227864 1.596962e-03 6.080246e-03
## MLLT1 -2.752493e+01 4.617664e+01 -4.440897 1.962453e-05 2.429509e-04
## ATP6AP1 -2.751263e+01 1.256068e+02 -2.893640 4.502098e-03 1.380069e-02
## SF3B5 -2.751204e+01 6.150043e+01 -3.099398 2.401336e-03 8.381417e-03
## C3orf86 -2.749932e+01 4.870458e+01 -3.072263 2.613453e-03 8.973815e-03
## TMEM170B 2.749810e+01 1.049071e+02 2.588144 1.080480e-02 2.764126e-02
## UHMK1 2.748879e+01 9.391854e+01 4.122647 6.814575e-05 5.895030e-04
## ADCY7 2.742634e+01 9.889263e+01 2.763646 6.590257e-03 1.864070e-02
## RC3H1 2.740044e+01 1.009587e+02 2.382643 1.871225e-02 4.325225e-02
## UBR5 2.738678e+01 1.123865e+02 3.121103 2.243271e-03 7.941851e-03
## RELT -2.738214e+01 7.667061e+01 -4.574172 1.144768e-05 1.676167e-04
## BAG1 -2.737833e+01 7.074354e+01 -3.011504 3.152775e-03 1.040147e-02
## YIPF3 -2.737605e+01 1.152890e+02 -2.766991 6.526968e-03 1.849697e-02
## LARP1 2.736093e+01 7.621258e+01 5.099518 1.243699e-06 3.375348e-05
## IRF3 -2.734403e+01 4.385028e+01 -4.017119 1.015776e-04 7.827876e-04
## UBXN4 2.732215e+01 1.113414e+02 2.772647 6.421234e-03 1.826449e-02
## ATF7IP 2.730960e+01 7.425007e+01 4.180496 5.459284e-05 5.080264e-04
## ATXN7 2.723480e+01 6.438516e+01 3.787942 2.359091e-04 1.456472e-03
## USP25 2.722412e+01 6.833131e+01 3.826760 2.050183e-04 1.315756e-03
## ALDH3B1 -2.721012e+01 5.200472e+01 -4.364863 2.656726e-05 2.985719e-04
## EPN1 -2.714546e+01 3.854586e+01 -5.102910 1.225428e-06 3.348750e-05
## TNFSF13 -2.713389e+01 8.516356e+01 -5.271862 5.820623e-07 1.959547e-05
## SPSB3 -2.709967e+01 3.523570e+01 -5.035762 1.640850e-06 4.131737e-05
## KMT2D 2.708750e+01 1.069567e+02 2.646813 9.182499e-03 2.422677e-02
## STX16 2.704939e+01 1.431381e+02 2.368081 1.943091e-02 4.450157e-02
## CCNY -2.700800e+01 1.369076e+02 -2.705735 7.777930e-03 2.122555e-02
## TMC6 -2.699097e+01 8.870563e+01 -3.326619 1.157851e-03 4.761483e-03
## RB1CC1 2.693985e+01 9.750158e+01 2.497797 1.381030e-02 3.386193e-02
## PHF3 2.691479e+01 9.405755e+01 3.112775 2.302744e-03 8.092012e-03
## COMMD6 -2.690478e+01 6.616956e+01 -3.506111 6.342904e-04 2.998794e-03
## GPR108 -2.686716e+01 9.714116e+01 -3.088777 2.482390e-03 8.593447e-03
## DIP2B 2.684806e+01 8.847932e+01 2.974131 3.533711e-03 1.137308e-02
## PCGF5 2.682104e+01 5.694832e+01 4.870218 3.336807e-06 6.846806e-05
## LEPROT 2.677274e+01 8.947314e+01 3.562172 5.232235e-04 2.608420e-03
## BRK1 -2.672934e+01 1.710527e+02 -2.330835 2.138120e-02 4.791781e-02
## ATP6V1F -2.672520e+01 5.748247e+01 -4.332674 3.017112e-05 3.235348e-04
## ITCH 2.662186e+01 9.900280e+01 3.045535 2.839231e-03 9.588052e-03
## PTPN18 -2.655167e+01 1.747350e+02 -3.088992 2.480720e-03 8.590172e-03
## COPA 2.648593e+01 1.265631e+02 3.048879 2.810028e-03 9.508398e-03
## BLVRB -2.645297e+01 4.367586e+01 -2.932752 4.004625e-03 1.257143e-02
## NADSYN1 -2.642793e+01 7.232743e+01 -4.967133 2.206044e-06 5.090210e-05
## EIF3H -2.640315e+01 1.270660e+02 -3.979013 1.171260e-04 8.654917e-04
## TES 2.636221e+01 8.796754e+01 3.411482 8.735446e-04 3.834285e-03
## ROGDI -2.634060e+01 3.294670e+01 -4.377855 2.523327e-05 2.893471e-04
## NDUFA1 -2.632909e+01 1.163793e+02 -2.483112 1.436389e-02 3.494477e-02
## FAR2 2.631735e+01 5.885948e+01 3.160424 1.981229e-03 7.201156e-03
## NCLN -2.630555e+01 4.016096e+01 -4.439208 1.975771e-05 2.443446e-04
## TMOD3 2.627222e+01 7.800535e+01 3.155433 2.012841e-03 7.291478e-03
## UQCR11 -2.622739e+01 5.132063e+01 -3.412908 8.693808e-04 3.820251e-03
## WASHC2C 2.622543e+01 9.573364e+01 3.598886 4.607195e-04 2.373165e-03
## PPP2R5C 2.620093e+01 1.555864e+02 2.907049 4.325487e-03 1.339204e-02
## CHMP4A -2.619757e+01 6.563874e+01 -4.362958 2.676839e-05 2.990286e-04
## PHIP 2.612143e+01 8.980356e+01 2.940755 3.909271e-03 1.233084e-02
## PFKL -2.610650e+01 3.511668e+01 -4.877789 3.231232e-06 6.733671e-05
## MTCH1 -2.610599e+01 1.391175e+02 -3.165786 1.947788e-03 7.105741e-03
## PLXNB2 -2.610484e+01 4.299010e+01 -4.129756 6.632108e-05 5.781139e-04
## IL6ST 2.597705e+01 7.018728e+01 3.809491 2.182533e-04 1.376853e-03
## SYTL1 -2.594559e+01 3.094226e+01 -5.654860 1.023927e-07 6.195804e-06
## CD1D -2.593143e+01 4.675289e+01 -6.471881 2.044982e-09 4.254997e-07
## STRN4 -2.589428e+01 5.213295e+01 -6.670851 7.596900e-10 2.310237e-07
## CCR7 -2.587878e+01 4.138170e+01 -3.312646 1.212249e-03 4.928788e-03
## BRMS1 -2.586440e+01 5.200969e+01 -4.289232 3.578724e-05 3.710110e-04
## BAG6 -2.586329e+01 1.182935e+02 -4.710614 6.524665e-06 1.094519e-04
## SELENOW -2.584220e+01 4.948854e+01 -3.454614 7.555459e-04 3.435880e-03
## CMTM3 -2.581852e+01 9.704492e+01 -3.587845 4.787343e-04 2.444162e-03
## YME1L1 2.580980e+01 1.133109e+02 3.526119 5.923211e-04 2.852183e-03
## RNF169 2.580043e+01 5.189974e+01 4.073895 8.201657e-05 6.708390e-04
## NAPSA -2.577800e+01 2.401286e+01 -6.759352 4.870146e-10 1.650284e-07
## CSNK1A1 2.577073e+01 1.691170e+02 2.463368 1.513939e-02 3.639053e-02
## TCF25 -2.577011e+01 6.821969e+01 -4.766266 5.172365e-06 9.380864e-05
## EPG5 2.575327e+01 5.076223e+01 4.280873 3.697749e-05 3.790432e-04
## CMTR1 2.573240e+01 6.785118e+01 2.643772 9.260840e-03 2.437496e-02
## THOC5 -2.570663e+01 8.236836e+01 -3.460482 7.407020e-04 3.381342e-03
## TMEM219 -2.568064e+01 7.548929e+01 -2.875108 4.757068e-03 1.442568e-02
## MTF1 2.554096e+01 8.288418e+01 2.727827 7.303664e-03 2.017267e-02
## MMD 2.553922e+01 5.295268e+01 4.015988 1.020091e-04 7.850926e-04
## FBXW5 -2.551027e+01 3.542401e+01 -4.124696 6.761486e-05 5.865808e-04
## HM13 -2.550069e+01 8.163811e+01 -3.920770 1.453537e-04 1.014652e-03
## LNPEP 2.546570e+01 7.994613e+01 4.445222 1.928733e-05 2.402812e-04
## DENND1C -2.544751e+01 6.290853e+01 -5.213107 7.552615e-07 2.363431e-05
## NFAT5 2.540661e+01 5.619766e+01 3.390838 9.359506e-04 4.049753e-03
## ZDHHC19 -2.538663e+01 1.671525e+01 -2.745659 6.940176e-03 1.938999e-02
## REEP5 -2.535773e+01 1.299043e+02 -3.873699 1.727916e-04 1.155191e-03
## PRMT2 -2.535164e+01 1.297037e+02 -3.623336 4.230818e-04 2.229121e-03
## AFF1 2.531925e+01 7.991046e+01 2.558140 1.173042e-02 2.947515e-02
## PEF1 -2.526389e+01 7.664237e+01 -2.770838 6.454884e-03 1.834090e-02
## CDIPT -2.523657e+01 6.149917e+01 -4.565128 1.187791e-05 1.728491e-04
## MAP2K2 -2.519472e+01 5.718113e+01 -4.118911 6.912361e-05 5.952128e-04
## SARS1 -2.517562e+01 8.426163e+01 -5.005125 1.873196e-06 4.479053e-05
## CLTB -2.515394e+01 3.613798e+01 -5.203429 7.882476e-07 2.440516e-05
## PCF11 2.510859e+01 1.057245e+02 2.506323 1.349771e-02 3.321909e-02
## DGCR2 -2.508320e+01 9.258023e+01 -3.652217 3.823663e-04 2.068825e-03
## TRAM1 2.506451e+01 1.306377e+02 3.319328 1.185942e-03 4.846752e-03
## TUBB4B -2.505437e+01 7.236131e+01 -3.164406 1.956342e-03 7.128177e-03
## RPN2 2.503023e+01 1.441178e+02 2.445425 1.587631e-02 3.775677e-02
## CENPB -2.500097e+01 3.313386e+01 -4.726374 6.110382e-06 1.045731e-04
## CYFIP2 -2.498418e+01 1.618604e+02 -2.659096 8.872084e-03 2.353980e-02
## ARHGEF6 2.497130e+01 1.070178e+02 2.844781 5.202981e-03 1.548491e-02
## HDAC5 -2.496044e+01 8.636239e+01 -2.768819 6.492626e-03 1.842166e-02
## PTAR1 2.495928e+01 6.570521e+01 3.308155 1.230235e-03 4.974041e-03
## SLC38A1 2.493517e+01 6.328160e+01 3.564434 5.191528e-04 2.593577e-03
## CDC42EP2 -2.492415e+01 2.776886e+01 -6.147969 9.952573e-09 1.269221e-06
## TTC9 -2.491502e+01 1.943297e+01 -7.350907 2.349422e-11 2.972291e-08
## ST6GAL1 2.491310e+01 7.503714e+01 3.615654 4.345833e-04 2.268555e-03
## LRRC75A -2.489612e+01 5.610602e+01 -2.396903 1.803136e-02 4.191532e-02
## PDIA6 2.487521e+01 1.040426e+02 2.639401 9.374533e-03 2.463048e-02
## SSR1 2.485128e+01 1.405781e+02 3.932040 1.394294e-04 9.819670e-04
## CAPN1 -2.479144e+01 1.002344e+02 -3.258486 1.446487e-03 5.622857e-03
## FAM120A 2.476703e+01 1.535071e+02 2.396150 1.806680e-02 4.197301e-02
## DNM2 -2.471836e+01 1.414486e+02 -2.838102 5.306185e-03 1.573677e-02
## ARAF -2.471483e+01 6.003651e+01 -4.312933 3.260929e-05 3.459268e-04
## MTMR6 2.470357e+01 8.538179e+01 2.794509 6.027055e-03 1.734741e-02
## VPS13C 2.469722e+01 6.096054e+01 3.293758 1.289586e-03 5.146196e-03
## FAM193B -2.469162e+01 7.591747e+01 -4.585683 1.092176e-05 1.626824e-04
## TNK2 -2.465786e+01 4.660747e+01 -4.811708 4.273520e-06 8.214579e-05
## MTX1 -2.458842e+01 6.535539e+01 -3.021113 3.061147e-03 1.015530e-02
## UBXN6 -2.455554e+01 3.852493e+01 -4.323962 3.122472e-05 3.324283e-04
## SH2D3C -2.454513e+01 7.585229e+01 -3.819815 2.102467e-04 1.339165e-03
## LSM14A 2.442629e+01 1.306511e+02 3.293182 1.292015e-03 5.150688e-03
## DNAJC5 -2.442373e+01 1.258177e+02 -2.695435 8.008458e-03 2.174105e-02
## SIGLEC9 -2.438516e+01 6.044614e+01 -3.917221 1.472684e-04 1.022050e-03
## PIKFYVE 2.437947e+01 5.550777e+01 4.046701 9.088763e-05 7.239270e-04
## IKBKG -2.436478e+01 5.184681e+01 -5.537655 1.755152e-07 8.566298e-06
## TOR1B 2.432587e+01 5.528300e+01 2.673821 8.512447e-03 2.279983e-02
## MFNG -2.430830e+01 8.476068e+01 -3.040072 2.887539e-03 9.698729e-03
## SMG7 2.426375e+01 9.100097e+01 3.762990 2.580464e-04 1.548801e-03
## EPS15 2.425550e+01 8.613818e+01 3.232456 1.573504e-03 6.006358e-03
## RRM2 2.424611e+01 2.452927e+01 6.277687 5.305218e-09 7.864985e-07
## CD79A -2.418767e+01 3.696312e+01 -3.336959 1.119077e-03 4.635785e-03
## PRKD2 -2.407034e+01 8.720458e+01 -2.647242 9.171487e-03 2.420424e-02
## PNPLA2 -2.403875e+01 4.696022e+01 -4.733245 5.937857e-06 1.031083e-04
## TAGLN -2.402494e+01 2.005573e+01 -6.003469 1.990763e-08 2.035384e-06
## TIMM17B -2.399481e+01 4.423219e+01 -3.933086 1.388913e-04 9.796125e-04
## MRPL28 -2.395610e+01 3.672365e+01 -4.043279 9.206698e-05 7.294018e-04
## ARFGAP1 -2.394573e+01 3.094574e+01 -5.529469 1.822055e-07 8.741863e-06
## C17orf49 -2.380527e+01 4.899262e+01 -3.931229 1.398478e-04 9.837457e-04
## ANO6 2.373126e+01 5.733702e+01 4.327007 3.085257e-05 3.293533e-04
## FBP1 -2.368438e+01 2.618608e+01 -6.825637 3.485119e-10 1.425294e-07
## SLC8B1 -2.361129e+01 4.169616e+01 -6.884743 2.583082e-10 1.276473e-07
## TRIM56 2.359357e+01 9.278373e+01 3.381319 9.661118e-04 4.140978e-03
## NCOR1 2.355997e+01 9.055509e+01 4.360852 2.699257e-05 3.008759e-04
## BANF1 -2.355019e+01 4.939688e+01 -3.619525 4.287512e-04 2.246749e-03
## ANKRD12 2.353907e+01 9.082200e+01 2.831774 5.405691e-03 1.595607e-02
## OSM -2.352631e+01 3.946931e+01 -2.786413 6.170395e-03 1.766374e-02
## FAM50A -2.348880e+01 5.044365e+01 -3.960932 1.252750e-04 9.103934e-04
## LAMTOR2 -2.331922e+01 3.675093e+01 -4.589829 1.073814e-05 1.610043e-04
## STX5 -2.324084e+01 5.960294e+01 -4.095893 7.545255e-05 6.319684e-04
## LTBR -2.323171e+01 6.887649e+01 -3.827140 2.047356e-04 1.315365e-03
## NOD2 2.322862e+01 7.447489e+01 2.621199 9.861606e-03 2.568859e-02
## TDRD7 2.322510e+01 6.044724e+01 2.798071 5.964971e-03 1.722536e-02
## PIP4K2A 2.315196e+01 1.349147e+02 4.408666 2.232241e-05 2.658070e-04
## RHOT1 2.310490e+01 8.289552e+01 2.729088 7.277407e-03 2.012358e-02
## TRIM5 2.300216e+01 3.731099e+01 4.061139 8.606929e-05 6.967794e-04
## ATP5PO -2.299919e+01 1.055607e+02 -2.657817 8.903950e-03 2.361378e-02
## SRF -2.296040e+01 5.850857e+01 -4.767954 5.135926e-06 9.373006e-05
## FCMR -2.295993e+01 6.614753e+01 -2.768673 6.495377e-03 1.842506e-02
## NDUFV1 -2.291487e+01 3.372970e+01 -3.715001 3.062783e-04 1.757359e-03
## NSD1 2.291458e+01 8.064910e+01 4.037086 9.423814e-05 7.411567e-04
## SPRYD3 -2.288302e+01 4.861012e+01 -6.426179 2.562396e-09 4.748440e-07
## PDIA4 2.279643e+01 5.593395e+01 2.459216 1.530716e-02 3.666624e-02
## RAB11A 2.277609e+01 1.410280e+02 2.670425 8.594206e-03 2.297730e-02
## CGGBP1 2.277247e+01 1.293696e+02 2.996167 3.304267e-03 1.078982e-02
## KDM4B -2.271034e+01 6.111368e+01 -3.784599 2.387661e-04 1.465718e-03
## VPS51 -2.264043e+01 2.467671e+01 -4.561109 1.207412e-05 1.753413e-04
## DNAJB2 -2.263305e+01 3.986088e+01 -4.808543 4.330871e-06 8.271197e-05
## WDR82 2.261293e+01 1.305999e+02 2.707871 7.730894e-03 2.111663e-02
## GTF3A -2.258215e+01 9.971062e+01 -3.198655 1.753979e-03 6.564275e-03
## KLHDC3 -2.257065e+01 5.692648e+01 -4.503082 1.528017e-05 2.057013e-04
## SCAP -2.256600e+01 4.630877e+01 -6.112305 1.181877e-08 1.374222e-06
## UTRN 2.246000e+01 5.905859e+01 3.525041 5.945138e-04 2.860419e-03
## MRTFA -2.245727e+01 6.588437e+01 -4.782269 4.836705e-06 8.949036e-05
## RASSF4 -2.245336e+01 5.750386e+01 -3.697796 3.255644e-04 1.831945e-03
## STING1 -2.245215e+01 7.368207e+01 -3.570287 5.087552e-04 2.561051e-03
## COPB2 2.243901e+01 1.192865e+02 2.753969 6.776467e-03 1.904321e-02
## BCKDK -2.240776e+01 3.943819e+01 -5.129915 1.088979e-06 3.134781e-05
## PPCDC -2.239882e+01 4.968927e+01 -3.559919 5.273079e-04 2.622168e-03
## BAX -2.237593e+01 5.942547e+01 -3.680053 3.466545e-04 1.919385e-03
## SBF2 2.236063e+01 4.786018e+01 3.801826 2.243846e-04 1.402108e-03
## GALM 2.233721e+01 3.332247e+01 2.808058 5.793973e-03 1.684641e-02
## ASGR2 -2.233254e+01 3.299900e+01 -4.005596 1.060580e-04 8.057962e-04
## UXT -2.225645e+01 4.278123e+01 -4.124089 6.777178e-05 5.871244e-04
## SCYL2 2.225056e+01 6.530541e+01 3.712597 3.089068e-04 1.765607e-03
## TBK1 2.222794e+01 6.103732e+01 3.635303 4.057380e-04 2.158839e-03
## TINF2 -2.220927e+01 1.076528e+02 -3.395034 9.229362e-04 4.011002e-03
## MARS1 2.219435e+01 1.075905e+02 5.008152 1.848888e-06 4.457842e-05
## PLIN5 -2.217730e+01 3.173251e+01 -3.303015 1.251125e-03 5.034985e-03
## TOP1 2.217378e+01 7.723353e+01 3.538257 5.681517e-04 2.764989e-03
## ELL2 2.216927e+01 3.826902e+01 3.284460 1.329326e-03 5.263628e-03
## TBCB -2.213869e+01 4.505945e+01 -5.339390 4.305825e-07 1.616382e-05
## PPTC7 2.212812e+01 7.583239e+01 2.954187 3.753919e-03 1.193926e-02
## RAB4B -2.211488e+01 3.842153e+01 -4.805735 4.382388e-06 8.342717e-05
## PRKAA1 2.207772e+01 7.547090e+01 2.882367 4.655652e-03 1.416886e-02
## HP1BP3 2.207603e+01 9.159015e+01 3.410429 8.766315e-04 3.844989e-03
## PTPA -2.205540e+01 6.543058e+01 -2.994493 3.321208e-03 1.083139e-02
## CLINT1 2.200826e+01 5.934045e+01 3.543104 5.587615e-04 2.730495e-03
## ZNHIT1 -2.197141e+01 3.595589e+01 -3.751699 2.686994e-04 1.592591e-03
## ZFAND2B -2.192970e+01 5.251443e+01 -3.505984 6.345652e-04 2.998794e-03
## NUDC -2.190567e+01 4.170508e+01 -3.920322 1.455936e-04 1.015037e-03
## ENTPD4 2.186010e+01 7.385286e+01 4.378227 2.519602e-05 2.892786e-04
## COASY -2.183428e+01 4.948381e+01 -4.718023 6.326622e-06 1.074982e-04
## PELI2 2.182207e+01 8.550254e+01 2.673139 8.528829e-03 2.283854e-02
## CCDC12 -2.182103e+01 3.068563e+01 -4.499232 1.551976e-05 2.070123e-04
## LMAN1 2.180636e+01 2.938228e+01 4.838852 3.810958e-06 7.558984e-05
## SLAMF7 2.177621e+01 5.802571e+01 2.680933 8.343543e-03 2.244244e-02
## COPB1 2.176694e+01 1.048339e+02 2.809267 5.773583e-03 1.681186e-02
## SCYL1 -2.173784e+01 4.785456e+01 -5.103324 1.223215e-06 3.348750e-05
## HSPA1B -2.171754e+01 2.484944e+01 -3.633821 4.078480e-04 2.168121e-03
## WBP1L -2.170565e+01 1.315447e+02 -2.576142 1.116688e-02 2.831107e-02
## ERAP1 2.167912e+01 6.179211e+01 3.883992 1.664000e-04 1.121947e-03
## CYB5R3 -2.167761e+01 4.821838e+01 -4.517421 1.441896e-05 1.984946e-04
## BCL3 -2.165978e+01 6.741211e+01 -2.649769 9.106918e-03 2.406060e-02
## CHKB -2.164899e+01 8.134594e+01 -3.461918 7.371117e-04 3.368753e-03
## ARFGEF1 2.164570e+01 7.973127e+01 3.025420 3.020883e-03 1.004420e-02
## EFR3A 2.164512e+01 5.636296e+01 4.479682 1.679325e-05 2.174703e-04
## MFSD14A 2.163507e+01 7.224146e+01 3.277142 1.361403e-03 5.368321e-03
## CD6 -2.162214e+01 4.376320e+01 -2.358091 1.993794e-02 4.536063e-02
## SOD1 -2.158923e+01 5.595933e+01 -3.536797 5.710072e-04 2.776607e-03
## AP2S1 -2.157143e+01 4.404107e+01 -3.406912 8.870126e-04 3.880476e-03
## HCST -2.155069e+01 4.651372e+01 -2.687902 8.180954e-03 2.210162e-02
## RASAL3 -2.152773e+01 5.587792e+01 -3.127399 2.199260e-03 7.814026e-03
## FNDC3A 2.152698e+01 4.673518e+01 3.874629 1.722050e-04 1.151918e-03
## ARCN1 2.146498e+01 1.004514e+02 3.965773 1.230416e-04 8.985972e-04
## TXN2 -2.145758e+01 5.223611e+01 -3.437790 7.996695e-04 3.585664e-03
## PNRC2 2.139714e+01 1.367760e+02 3.045649 2.838232e-03 9.587419e-03
## HIGD2A -2.139346e+01 3.950013e+01 -4.542995 1.299780e-05 1.832339e-04
## SPINT2 -2.134555e+01 5.487710e+01 -3.138733 2.122040e-03 7.600609e-03
## LAT -2.133779e+01 4.094321e+01 -3.080989 2.543422e-03 8.784213e-03
## CLIP1 2.131857e+01 7.835296e+01 2.314191 2.230714e-02 4.953430e-02
## DGAT1 -2.127506e+01 4.230236e+01 -4.235722 4.409326e-05 4.316801e-04
## OTUB1 -2.123917e+01 7.650581e+01 -3.318510 1.189134e-03 4.856451e-03
## NECAP2 -2.122724e+01 8.799286e+01 -5.041940 1.597522e-06 4.043324e-05
## CABIN1 -2.122583e+01 4.119331e+01 -3.760274 2.605715e-04 1.554728e-03
## RCOR1 2.120281e+01 9.074520e+01 2.445785 1.586121e-02 3.772843e-02
## SRSF9 -2.115844e+01 1.132605e+02 -2.897166 4.455024e-03 1.370097e-02
## CIC -2.114042e+01 3.983140e+01 -6.318532 4.346190e-09 6.728504e-07
## ARSA -2.109768e+01 3.680211e+01 -5.112739 1.173941e-06 3.261088e-05
## WDR13 -2.102099e+01 3.330578e+01 -4.812715 4.255429e-06 8.206405e-05
## NELFE -2.100724e+01 5.379988e+01 -3.672714 3.557506e-04 1.956051e-03
## EIF4G3 2.099682e+01 5.492458e+01 3.618220 4.307094e-04 2.253292e-03
## ZNF24 2.098069e+01 1.078281e+02 2.486797 1.422316e-02 3.465927e-02
## CDC34 -2.090838e+01 3.895673e+01 -3.965764 1.230457e-04 8.985972e-04
## SARNP -2.088894e+01 6.445111e+01 -2.819034 5.611217e-03 1.643186e-02
## LMF2 -2.088208e+01 2.634210e+01 -4.481494 1.667108e-05 2.172341e-04
## RER1 -2.088143e+01 9.603072e+01 -3.975003 1.188886e-04 8.757883e-04
## PITPNA -2.087884e+01 1.210846e+02 -2.507220 1.346519e-02 3.315971e-02
## SLC39A1 -2.083803e+01 6.807186e+01 -4.320899 3.160351e-05 3.358580e-04
## PKN2 2.083710e+01 8.184720e+01 2.427944 1.662476e-02 3.916760e-02
## STUB1 -2.081316e+01 2.941626e+01 -4.472871 1.726016e-05 2.217828e-04
## COL18A1 -2.079997e+01 3.524071e+01 -3.160746 1.979209e-03 7.196447e-03
## SNRNP70 -2.078770e+01 6.214085e+01 -4.609930 9.889287e-06 1.506027e-04
## AIP -2.076590e+01 4.099780e+01 -4.470067 1.745597e-05 2.234145e-04
## RIC1 2.075705e+01 4.648304e+01 4.647229 8.482908e-06 1.346716e-04
## ARHGAP1 -2.072672e+01 7.660466e+01 -5.054850 1.510531e-06 3.877682e-05
## SURF4 -2.070778e+01 1.022172e+02 -3.595563 4.660726e-04 2.392909e-03
## H2BC12 2.067749e+01 7.443029e+01 2.473898 1.472127e-02 3.557275e-02
## PPP1R12B 2.067707e+01 5.287306e+01 2.775655 6.365657e-03 1.811776e-02
## TAZ -2.066988e+01 4.737609e+01 -4.058176 8.703773e-05 7.027008e-04
## ATP5ME -2.062499e+01 3.814345e+01 -3.159816 1.985055e-03 7.212852e-03
## CANT1 -2.060656e+01 1.007905e+02 -2.401165 1.783220e-02 4.155825e-02
## WBP1 -2.060210e+01 4.403225e+01 -4.686417 7.214153e-06 1.181766e-04
## PSMB6 -2.059184e+01 6.851829e+01 -3.264325 1.419339e-03 5.535468e-03
## TRAPPC8 2.054831e+01 6.987621e+01 2.844852 5.201888e-03 1.548491e-02
## UHRF1BP1L 2.053211e+01 6.272811e+01 2.747754 6.898552e-03 1.928278e-02
## NUP153 2.051402e+01 6.752663e+01 2.693924 8.042793e-03 2.180114e-02
## FUS -2.049604e+01 1.326888e+02 -2.936557 3.959026e-03 1.245135e-02
## RRP12 -2.048150e+01 7.295115e+01 -2.469991 1.487519e-02 3.588685e-02
## NUMA1 -2.044471e+01 6.524004e+01 -4.818087 4.160152e-06 8.075189e-05
## BTAF1 2.042312e+01 5.556688e+01 3.499780 6.481423e-04 3.051595e-03
## PHF12 2.037182e+01 9.665000e+01 2.552687 1.190607e-02 2.986591e-02
## CD81 -2.035760e+01 3.513478e+01 -3.768652 2.528566e-04 1.526924e-03
## SIDT2 -2.033407e+01 4.756924e+01 -4.101565 7.384344e-05 6.233332e-04
## SSNA1 -2.032150e+01 2.442246e+01 -4.724266 6.164277e-06 1.053434e-04
## MMP24OS -2.031963e+01 3.034755e+01 -4.597940 1.038747e-05 1.569368e-04
## MTURN 2.029812e+01 8.618507e+01 2.568966 1.138853e-02 2.873786e-02
## TOMM6 -2.029475e+01 5.964225e+01 -3.351729 1.065791e-03 4.463375e-03
## B3GNT8 -2.029354e+01 2.107599e+01 -5.298715 5.164443e-07 1.822925e-05
## RNF38 2.026915e+01 6.358499e+01 3.098014 2.411755e-03 8.410296e-03
## STMN1 2.022964e+01 3.292449e+01 4.625157 9.289852e-06 1.434605e-04
## PRR14L 2.022103e+01 4.775455e+01 4.611995 9.805852e-06 1.500612e-04
## PAN3 2.016177e+01 7.822233e+01 2.804787 5.849478e-03 1.697866e-02
## HMGCR 2.015320e+01 8.049557e+01 2.917790 4.188644e-03 1.304551e-02
## SAP30 2.012635e+01 3.269407e+01 2.717848 7.514541e-03 2.063020e-02
## SLA2 2.009620e+01 4.602632e+01 3.535888 5.727932e-04 2.781870e-03
## SLC25A28 -2.006685e+01 4.201629e+01 -4.738413 5.811196e-06 1.018032e-04
## RPSAP58 -2.001447e+01 4.319015e+01 -2.573767 1.123980e-02 2.845867e-02
## CLN3 -1.999926e+01 5.489069e+01 -2.962048 3.665658e-03 1.170878e-02
## HERC6 1.999334e+01 2.820221e+01 2.520464 1.299317e-02 3.219788e-02
## GIMAP1-GIMAP5 -1.998645e+01 3.764135e+01 -4.395896 2.348728e-05 2.747360e-04
## C1GALT1 1.995971e+01 5.852892e+01 3.159484 1.987150e-03 7.214466e-03
## PAFAH1B1 1.994630e+01 1.407413e+02 2.327585 2.155933e-02 4.821679e-02
## UNC93B1 -1.994390e+01 5.683454e+01 -3.044844 2.845300e-03 9.597628e-03
## OXSR1 1.993013e+01 7.923882e+01 2.565972 1.148217e-02 2.894336e-02
## RNF19A 1.992773e+01 6.059115e+01 3.621056 4.264650e-04 2.240013e-03
## NKTR 1.992614e+01 6.373023e+01 3.404229 8.950101e-04 3.909694e-03
## RGS3 -1.991837e+01 5.650161e+01 -3.510366 6.251358e-04 2.964957e-03
## TRIM8 -1.989830e+01 7.694182e+01 -3.421543 8.445671e-04 3.736130e-03
## BPTF 1.989267e+01 4.924442e+01 4.348674 2.832463e-05 3.090434e-04
## CSNK1G2 -1.988052e+01 4.134168e+01 -5.828211 4.563996e-08 3.682244e-06
## PTOV1 -1.981753e+01 3.583851e+01 -3.423048 8.403099e-04 3.721462e-03
## NDUFB9 -1.978975e+01 6.045578e+01 -2.990434 3.362604e-03 1.094733e-02
## MCRIP1 -1.976339e+01 1.728762e+01 -4.625837 9.263900e-06 1.433694e-04
## SEPTIN1 -1.974945e+01 3.454141e+01 -3.097442 2.416073e-03 8.422878e-03
## INPP5K -1.974166e+01 6.800043e+01 -3.542481 5.599595e-04 2.734096e-03
## TBKBP1 -1.968953e+01 4.645333e+01 -3.094068 2.441700e-03 8.487269e-03
## PPP6R1 -1.967800e+01 7.938191e+01 -4.063428 8.532808e-05 6.926701e-04
## ECH1 -1.966947e+01 4.688155e+01 -3.956390 1.274052e-04 9.219196e-04
## NCOA7 1.965694e+01 3.206978e+01 3.069796 2.633579e-03 9.035072e-03
## SLC44A1 1.958442e+01 4.453388e+01 6.832212 3.371086e-10 1.425294e-07
## RPS6KB2 -1.956475e+01 4.355116e+01 -3.486980 6.770234e-04 3.159975e-03
## USP18 1.956112e+01 1.791235e+01 2.448877 1.573211e-02 3.748147e-02
## MIIP -1.955643e+01 3.057718e+01 -4.406260 2.253756e-05 2.675630e-04
## RSL1D1 -1.955583e+01 7.996146e+01 -3.864751 1.785372e-04 1.184257e-03
## TRIM58 1.952012e+01 4.058413e+01 3.064168 2.680018e-03 9.153053e-03
## TMF1 1.949175e+01 6.342939e+01 3.280462 1.346761e-03 5.320646e-03
## ABI3 -1.946577e+01 2.608378e+01 -4.358298 2.726688e-05 3.026332e-04
## HMOX2 -1.946287e+01 5.262125e+01 -3.933732 1.385596e-04 9.787475e-04
## GOLGB1 1.942401e+01 6.867235e+01 4.211278 4.847642e-05 4.647779e-04
## WDR45 -1.941840e+01 6.259678e+01 -4.111523 7.109738e-05 6.062432e-04
## PLEKHM2 -1.940381e+01 4.673070e+01 -5.251447 6.373223e-07 2.082271e-05
## HERC1 1.938385e+01 7.746065e+01 3.408259 8.830227e-04 3.866856e-03
## FAM91A1 1.938296e+01 7.974683e+01 2.697309 7.966070e-03 2.164435e-02
## CEP350 1.937435e+01 6.702272e+01 3.008525 3.181692e-03 1.046737e-02
## FAM241A 1.935930e+01 5.828870e+01 3.517090 6.109261e-04 2.919252e-03
## VPS13B 1.935371e+01 4.326907e+01 4.040907 9.289301e-05 7.339847e-04
## CHD7 1.933275e+01 4.486913e+01 2.440969 1.606419e-02 3.812714e-02
## SCARB2 1.932976e+01 4.767871e+01 3.800400 2.255429e-04 1.407862e-03
## KCTD20 1.932313e+01 1.076263e+02 2.358283 1.992808e-02 4.536063e-02
## MTRNR2L10 -1.931915e+01 4.819139e+01 -2.796862 5.985987e-03 1.726923e-02
## PSMF1 -1.929644e+01 7.245226e+01 -5.513699 1.958055e-07 9.178868e-06
## SMCR8 1.924787e+01 7.548509e+01 2.859008 4.989243e-03 1.498795e-02
## ATP11A 1.920898e+01 7.149303e+01 2.412726 1.730170e-02 4.052896e-02
## ARPP19 1.920477e+01 1.074464e+02 2.523345 1.289248e-02 3.199515e-02
## STK26 1.917149e+01 5.509762e+01 3.876976 1.707322e-04 1.144002e-03
## PARK7 -1.914536e+01 1.207459e+02 -2.518606 1.305848e-02 3.230571e-02
## WIPF2 1.911178e+01 6.652457e+01 3.509976 6.259698e-04 2.967227e-03
## G3BP2 1.910544e+01 8.254191e+01 3.471019 7.147345e-04 3.286836e-03
## NSMCE1 -1.908428e+01 2.904887e+01 -4.576069 1.135936e-05 1.669418e-04
## SMIM3 1.905829e+01 4.929895e+01 3.249903 1.487272e-03 5.753112e-03
## PARL -1.904739e+01 3.934935e+01 -5.559203 1.590325e-07 8.236355e-06
## RUBCN 1.903747e+01 4.736894e+01 4.006758 1.055980e-04 8.028153e-04
## SIGLEC7 -1.903616e+01 2.992479e+01 -6.518147 1.626315e-09 3.592657e-07
## PDE7A 1.902000e+01 8.462636e+01 3.148119 2.060005e-03 7.423780e-03
## MIA3 1.901535e+01 6.565482e+01 3.407982 8.838417e-04 3.868031e-03
## NAAA -1.900976e+01 5.565332e+01 -3.213965 1.669972e-03 6.303585e-03
## PQBP1 -1.893791e+01 3.757419e+01 -4.289753 3.571436e-05 3.705794e-04
## ANAPC15 -1.893623e+01 3.635041e+01 -3.879175 1.693629e-04 1.138950e-03
## MAN1B1 -1.892591e+01 3.860330e+01 -3.554643 5.369932e-04 2.655855e-03
## C12orf57 -1.891056e+01 1.789455e+01 -3.719971 3.009126e-04 1.736654e-03
## ATRX 1.888958e+01 5.216689e+01 3.585139 4.832485e-04 2.460853e-03
## BIN3 -1.888116e+01 4.934805e+01 -3.701694 3.210970e-04 1.812570e-03
## VPS4A -1.886869e+01 7.216327e+01 -3.777194 2.452136e-04 1.493700e-03
## SULT1A3 -1.885023e+01 8.117230e+01 -2.586680 1.084839e-02 2.772885e-02
## TMEM222 -1.883620e+01 3.463368e+01 -4.186435 5.335792e-05 4.998617e-04
## GPR132 -1.880054e+01 2.743879e+01 -6.991130 1.502653e-10 8.486414e-08
## AP1B1 -1.876035e+01 5.288828e+01 -4.145663 6.240638e-05 5.544196e-04
## ETFB -1.872143e+01 2.558850e+01 -3.718822 3.021447e-04 1.741223e-03
## ATP8A1 1.871058e+01 3.887458e+01 4.991683 1.984968e-06 4.685951e-05
## AP1M1 -1.868643e+01 4.827055e+01 -5.941320 2.675570e-08 2.518434e-06
## CFD -1.866169e+01 2.060355e+01 -3.648697 3.871221e-04 2.089790e-03
## LCOR 1.865894e+01 5.215263e+01 3.092591 2.452999e-03 8.509088e-03
## ZC3H7A 1.859269e+01 5.200075e+01 3.472783 7.104713e-04 3.281227e-03
## TRAPPC10 1.856662e+01 7.131962e+01 4.110936 7.125658e-05 6.062432e-04
## AFF4 1.855207e+01 4.742511e+01 3.596257 4.649502e-04 2.389215e-03
## NDUFA11 -1.854108e+01 2.527139e+01 -3.471615 7.132919e-04 3.284851e-03
## NR1H2 -1.851668e+01 3.380674e+01 -5.130294 1.087178e-06 3.134781e-05
## UBXN7 1.850969e+01 4.947988e+01 3.906917 1.529642e-04 1.049859e-03
## NR2C2 1.850952e+01 5.029766e+01 3.113274 2.299139e-03 8.084135e-03
## SIGIRR -1.850764e+01 2.176615e+01 -3.883676 1.665932e-04 1.122611e-03
## MAPK8IP3 -1.848946e+01 2.939884e+01 -7.844907 1.743990e-12 4.136744e-09
## PUF60 -1.846572e+01 4.447099e+01 -4.008214 1.050238e-04 7.989626e-04
## LY86 -1.842479e+01 3.761406e+01 -4.228724 4.530755e-05 4.412649e-04
## ARID1A 1.839525e+01 9.428265e+01 2.414471 1.722284e-02 4.036019e-02
## C19orf53 -1.839046e+01 3.260124e+01 -3.684151 3.416706e-04 1.897104e-03
## CDK19 1.838065e+01 5.172317e+01 3.523186 5.983062e-04 2.874002e-03
## CSRP1 -1.835710e+01 5.188594e+01 -4.084113 7.890228e-05 6.519019e-04
## BIRC2 1.835268e+01 1.027338e+02 2.456696 1.540976e-02 3.682368e-02
## MCRS1 -1.834852e+01 4.663987e+01 -4.642745 8.641136e-06 1.364632e-04
## GIGYF1 -1.834829e+01 6.456015e+01 -4.028066 9.748887e-05 7.596702e-04
## AP1G1 1.825921e+01 7.768832e+01 2.598149 1.051109e-02 2.702981e-02
## DNAJC4 -1.825471e+01 2.498282e+01 -5.017468 1.775982e-06 4.369948e-05
## UQCRFS1 -1.825175e+01 6.939107e+01 -2.980355 3.467458e-03 1.121769e-02
## PHKG2 -1.822752e+01 3.977870e+01 -4.136281 6.468777e-05 5.687154e-04
## SUZ12 1.820449e+01 5.628733e+01 4.536109 1.336656e-05 1.873847e-04
## EML3 -1.819290e+01 4.758364e+01 -4.893395 3.023757e-06 6.433605e-05
## SLC25A11 -1.818769e+01 3.749459e+01 -5.966562 2.373282e-08 2.365305e-06
## EMC10 -1.818152e+01 3.324849e+01 -4.714622 6.416794e-06 1.084000e-04
## AGPAT2 -1.817505e+01 2.308495e+01 -4.697781 6.881978e-06 1.142925e-04
## FAM32A -1.816881e+01 1.230006e+02 -2.758969 6.679655e-03 1.882621e-02
## APC 1.815739e+01 5.278771e+01 2.813182 5.707983e-03 1.665355e-02
## RETREG3 -1.813013e+01 6.969379e+01 -3.082503 2.531451e-03 8.751726e-03
## CD38 1.812127e+01 2.185368e+01 4.855195 3.556286e-06 7.173053e-05
## TSC22D1 1.811667e+01 5.140493e+01 3.434236 8.092957e-04 3.611079e-03
## EFCAB14 1.810228e+01 9.661470e+01 3.435939 8.046697e-04 3.597204e-03
## GPAA1 -1.810009e+01 2.123605e+01 -4.548992 1.268471e-05 1.806011e-04
## LILRB4 -1.808389e+01 4.152024e+01 -3.219780 1.639056e-03 6.216539e-03
## DCTN1 -1.807541e+01 8.389166e+01 -4.205491 4.957375e-05 4.715319e-04
## TRIM33 1.806353e+01 5.967808e+01 3.307180 1.234171e-03 4.982050e-03
## STT3B 1.804754e+01 1.144594e+02 2.896374 4.465563e-03 1.372417e-02
## UBR4 1.803969e+01 1.047262e+02 3.377527 9.783810e-04 4.181477e-03
## ICAM2 -1.803722e+01 5.028034e+01 -2.493809 1.395870e-02 3.416422e-02
## FGFR1OP2 1.802202e+01 7.865893e+01 2.589376 1.076825e-02 2.756560e-02
## NRBP1 -1.797279e+01 1.331079e+02 -2.515405 1.317169e-02 3.254505e-02
## SPAG7 -1.796441e+01 2.973020e+01 -6.012473 1.907058e-08 1.966758e-06
## IDH1 1.787943e+01 6.050865e+01 3.369289 1.005535e-03 4.274423e-03
## SNRPB -1.785471e+01 7.053258e+01 -2.502327 1.364343e-02 3.350126e-02
## TEX264 -1.785375e+01 3.376475e+01 -4.209531 4.880514e-05 4.664214e-04
## AAMP -1.782264e+01 4.330290e+01 -6.194978 7.929286e-09 1.056644e-06
## PSMC5 -1.779503e+01 6.931705e+01 -3.106113 2.351362e-03 8.231154e-03
## SRI -1.776505e+01 5.618161e+01 -3.431944 8.155610e-04 3.633566e-03
## PRR14 -1.776005e+01 4.328289e+01 -4.056964 8.743678e-05 7.054423e-04
## ABHD14B -1.775006e+01 2.785926e+01 -3.726525 2.939717e-04 1.705726e-03
## OXA1L -1.773404e+01 8.050274e+01 -4.164094 5.814753e-05 5.296695e-04
## IDH3G -1.772642e+01 3.108879e+01 -5.051060 1.535579e-06 3.933469e-05
## SP140 1.771787e+01 4.515005e+01 2.651002 9.075537e-03 2.399373e-02
## LMBRD1 -1.771784e+01 8.372535e+01 -2.423042 1.684021e-02 3.962010e-02
## ATXN1L 1.771186e+01 4.331353e+01 3.155834 2.010280e-03 7.286652e-03
## FRY 1.770696e+01 5.823806e+01 2.618392 9.938706e-03 2.584935e-02
## TIAF1 -1.768961e+01 2.625894e+01 -3.737998 2.821862e-04 1.655157e-03
## HERC2 1.766193e+01 3.273910e+01 4.286563 3.616318e-05 3.735871e-04
## GALNT2 -1.763738e+01 4.087008e+01 -2.788187 6.138719e-03 1.759430e-02
## POLR2J -1.763260e+01 5.636251e+01 -3.237753 1.546846e-03 5.931326e-03
## SLC22A15 1.761158e+01 4.100394e+01 2.988766 3.379754e-03 1.098791e-02
## IRAK1 -1.759781e+01 6.347228e+01 -3.569421 5.102816e-04 2.562594e-03
## PDLIM2 -1.759604e+01 3.011743e+01 -5.803708 5.120164e-08 4.006632e-06
## TESC -1.757989e+01 2.362683e+01 -3.662483 3.688089e-04 2.012919e-03
## STX4 -1.757874e+01 5.384012e+01 -4.425736 2.085194e-05 2.526088e-04
## CARS2 -1.757384e+01 3.037522e+01 -7.178500 5.741876e-11 5.238358e-08
## CLTA -1.757200e+01 6.304633e+01 -3.060334 2.712087e-03 9.234957e-03
## TOLLIP -1.754674e+01 4.089486e+01 -4.512693 1.469761e-05 2.006278e-04
## ESYT2 1.752198e+01 5.671876e+01 4.219645 4.693102e-05 4.539983e-04
## ZDHHC17 1.751642e+01 5.333495e+01 2.980590 3.464981e-03 1.121580e-02
## APEX1 -1.751507e+01 5.645519e+01 -4.036656 9.439104e-05 7.418673e-04
## POU2AF1 1.750690e+01 2.255729e+01 3.712783 3.087029e-04 1.765292e-03
## SDF4 -1.750259e+01 4.612987e+01 -5.251992 6.357823e-07 2.082271e-05
## SURF1 -1.747761e+01 5.475207e+01 -3.723248 2.974229e-04 1.720700e-03
## ADIPOR2 1.747596e+01 6.453421e+01 5.810728 4.954359e-08 3.917246e-06
## NPEPL1 -1.743393e+01 4.376779e+01 -4.242558 4.293725e-05 4.240098e-04
## NUP58 1.741880e+01 6.098182e+01 2.536629 1.243720e-02 3.102760e-02
## AZI2 1.738592e+01 5.484694e+01 2.435808 1.628428e-02 3.852614e-02
## ODC1 1.737971e+01 6.080888e+01 3.235938 1.555930e-03 5.956530e-03
## RANBP9 1.737723e+01 5.218978e+01 3.039176 2.895538e-03 9.717342e-03
## RABAC1 -1.737095e+01 2.794759e+01 -3.617790 4.313563e-04 2.254687e-03
## IDH3B -1.734484e+01 5.581112e+01 -3.675777 3.519263e-04 1.941324e-03
## SAT2 -1.733330e+01 3.396465e+01 -5.196513 8.126720e-07 2.496966e-05
## PNN 1.732959e+01 9.887861e+01 2.460992 1.523517e-02 3.653977e-02
## PPP6R2 -1.731513e+01 4.765179e+01 -5.385475 3.500839e-07 1.397978e-05
## RBM33 1.730203e+01 7.705365e+01 3.309196 1.226042e-03 4.971232e-03
## RBM25 1.729762e+01 9.309987e+01 2.464076 1.511096e-02 3.633738e-02
## HDLBP 1.728012e+01 1.125088e+02 2.685888 8.227641e-03 2.219741e-02
## SRPRA 1.727173e+01 1.257673e+02 3.990187 1.123458e-04 8.417822e-04
## TCF20 1.721054e+01 4.303633e+01 4.504836 1.517223e-05 2.047129e-04
## CREB1 1.720434e+01 8.403639e+01 2.323177 2.180294e-02 4.861183e-02
## SIPA1L1 1.719894e+01 7.976661e+01 2.571039 1.132408e-02 2.861176e-02
## FMR1 1.717492e+01 5.758137e+01 3.665697 3.646588e-04 1.997623e-03
## TMED2 1.714496e+01 1.279011e+02 2.610045 1.017124e-02 2.635059e-02
## RRP7A -1.711243e+01 3.740405e+01 -3.118398 2.262425e-03 7.992958e-03
## RFXANK -1.705951e+01 4.244945e+01 -2.987901 3.388672e-03 1.100483e-02
## NDUFB10 -1.705501e+01 3.962241e+01 -2.918971 4.173831e-03 1.300279e-02
## UBL7 -1.704236e+01 4.444979e+01 -3.998371 1.089634e-04 8.228089e-04
## RALGAPB 1.703515e+01 5.390568e+01 4.293333 3.521681e-05 3.670223e-04
## EXOC7 -1.702829e+01 1.037912e+02 -3.593946 4.686999e-04 2.404317e-03
## COX6A1 -1.701529e+01 8.649238e+01 -2.458568 1.533346e-02 3.670426e-02
## SAP25 -1.700729e+01 1.959619e+01 -4.204962 4.967525e-05 4.715319e-04
## STMN3 -1.700349e+01 1.759112e+01 -4.909058 2.828545e-06 6.110481e-05
## PRPF4B 1.699642e+01 6.849967e+01 3.535510 5.735381e-04 2.784348e-03
## SHARPIN -1.698879e+01 1.932599e+01 -5.095291 1.266842e-06 3.422494e-05
## ATG13 -1.692418e+01 1.048043e+02 -3.085974 2.504197e-03 8.666406e-03
## CALCOCO2 1.689787e+01 1.120548e+02 2.328010 2.153595e-02 4.818759e-02
## ZNF148 1.688747e+01 7.321317e+01 2.349028 2.040801e-02 4.621710e-02
## SLC26A8 1.688127e+01 3.280014e+01 3.016652 3.103372e-03 1.026953e-02
## XPO7 1.687177e+01 4.926980e+01 4.232714 4.461131e-05 4.354652e-04
## METRNL -1.685553e+01 1.563471e+01 -7.244758 4.076679e-11 4.395401e-08
## RBM4 -1.685042e+01 9.074107e+01 -3.293373 1.291208e-03 5.149204e-03
## EIF3I -1.684398e+01 8.362708e+01 -2.801053 5.913431e-03 1.711821e-02
## NAA38 -1.682762e+01 2.271306e+01 -3.925960 1.425960e-04 1.000112e-03
## CMTM7 -1.681345e+01 5.335599e+01 -4.628250 9.172445e-06 1.425756e-04
## HSD17B10 -1.680694e+01 3.583463e+01 -3.633124 4.088455e-04 2.171477e-03
## USP33 1.679612e+01 6.113851e+01 3.865251 1.782116e-04 1.182759e-03
## CYB5R1 -1.677585e+01 5.285440e+01 -3.064284 2.679053e-03 9.153053e-03
## TIA1 1.675080e+01 7.442085e+01 3.950105 1.304103e-04 9.362388e-04
## ARAP2 1.674565e+01 4.519780e+01 3.215342 1.662599e-03 6.284829e-03
## BCKDHA -1.673841e+01 3.072037e+01 -5.302090 5.087275e-07 1.806440e-05
## CNTRL 1.673102e+01 5.283669e+01 3.919932 1.458034e-04 1.015402e-03
## KIF2A 1.672361e+01 7.356831e+01 3.526563 5.914210e-04 2.850164e-03
## BIN1 -1.670515e+01 2.477512e+01 -3.739917 2.802599e-04 1.646301e-03
## MRPL20 -1.669698e+01 3.487864e+01 -3.945783 1.325162e-04 9.462026e-04
## SBNO1 1.668442e+01 5.723994e+01 3.594181 4.683168e-04 2.403391e-03
## CCAR2 -1.666539e+01 6.108747e+01 -4.337069 2.965272e-05 3.191300e-04
## TECPR1 -1.665650e+01 3.910663e+01 -6.436946 2.429943e-09 4.648246e-07
## TOPORS 1.664225e+01 5.086077e+01 2.644154 9.250984e-03 2.435442e-02
## SETD5 1.663775e+01 5.800582e+01 3.436704 8.025987e-04 3.592008e-03
## AKT2 -1.663492e+01 6.823690e+01 -5.465372 2.439602e-07 1.091837e-05
## KLHL24 1.662180e+01 4.580787e+01 3.855140 1.849108e-04 1.218357e-03
## TXNDC11 1.661933e+01 4.448300e+01 3.382718 9.616242e-04 4.129026e-03
## BRD7 1.659171e+01 9.699937e+01 3.227174 1.600519e-03 6.085974e-03
## WDFY1 1.659156e+01 4.960455e+01 3.323896 1.168267e-03 4.797977e-03
## TMPO 1.656939e+01 8.012343e+01 2.967441 3.606216e-03 1.156251e-02
## SAMD8 1.655792e+01 5.824889e+01 2.712228 7.635723e-03 2.089999e-02
## HELZ 1.654453e+01 4.709536e+01 3.812854 2.156141e-04 1.364559e-03
## RBM42 -1.653322e+01 2.330363e+01 -4.418002 2.150620e-05 2.576399e-04
## MYO15B -1.652864e+01 5.486274e+01 -3.440567 7.922245e-04 3.560357e-03
## CBX7 -1.650677e+01 8.334104e+01 -3.005311 3.213163e-03 1.055626e-02
## CCDC186 1.649725e+01 4.464278e+01 2.962245 3.663472e-03 1.170495e-02
## ZFP91 1.648429e+01 5.371768e+01 3.514944 6.154277e-04 2.933670e-03
## DGLUCY 1.647220e+01 9.082943e+01 2.462619 1.516954e-02 3.641181e-02
## TMEM250 -1.645886e+01 3.189680e+01 -5.327332 4.544668e-07 1.670756e-05
## PITPNM1 -1.643746e+01 2.469994e+01 -7.376130 2.060166e-11 2.972291e-08
## CAMK1 -1.643724e+01 2.373025e+01 -4.032590 9.584526e-05 7.513052e-04
## NANS -1.643514e+01 2.880041e+01 -5.607209 1.275683e-07 7.204573e-06
## PTPN11 1.641719e+01 4.422719e+01 4.413299 2.191376e-05 2.614660e-04
## GGA1 -1.636161e+01 3.310172e+01 -4.480176 1.675985e-05 2.174703e-04
## UBE4A 1.635266e+01 6.951969e+01 3.047056 2.825917e-03 9.553984e-03
## PCNP 1.634354e+01 8.967242e+01 3.355263 1.053398e-03 4.424478e-03
## SNF8 -1.633961e+01 4.642449e+01 -3.728385 2.920299e-04 1.696119e-03
## PITPNC1 -1.633483e+01 3.865031e+01 -6.609336 1.033248e-09 2.917696e-07
## ATF6B -1.630636e+01 7.748992e+01 -5.317276 4.753696e-07 1.716016e-05
## ANKFY1 1.628183e+01 5.898861e+01 3.111639 2.310965e-03 8.113691e-03
## INTS11 -1.626669e+01 3.166988e+01 -4.210289 4.866219e-05 4.658059e-04
## PPFIA1 1.624485e+01 4.560539e+01 3.444499 7.817907e-04 3.522811e-03
## GPS2 -1.623883e+01 5.330418e+01 -3.490861 6.681409e-04 3.125898e-03
## LHFPL2 1.620672e+01 3.078348e+01 3.366756 1.014026e-03 4.305889e-03
## DERPC -1.619761e+01 3.455066e+01 -3.653178 3.810772e-04 2.064676e-03
## SPTBN1 1.615569e+01 3.219713e+01 4.285978 3.624616e-05 3.738082e-04
## SNRNP200 1.614207e+01 1.389758e+02 2.577581 1.112290e-02 2.824184e-02
## TCP11L2 1.613139e+01 3.490892e+01 3.393125 9.288354e-04 4.027784e-03
## TBL1XR1 -1.608395e+01 9.219307e+01 -2.451712 1.561456e-02 3.723882e-02
## ANKRD28 1.604141e+01 4.109088e+01 2.505880 1.351378e-02 3.325176e-02
## EWSR1 -1.603485e+01 1.511758e+02 -3.851498 1.873821e-04 1.231220e-03
## PET100 -1.602090e+01 5.337917e+01 -2.348121 2.045555e-02 4.630709e-02
## DHX9 1.599149e+01 1.185330e+02 2.622337 9.830485e-03 2.563535e-02
## SPCS3 1.596924e+01 1.342507e+02 2.359995 1.984039e-02 4.524266e-02
## NEK9 1.596448e+01 7.601523e+01 3.353628 1.059114e-03 4.441688e-03
## TMEM141 -1.590024e+01 2.084994e+01 -4.433208 2.023803e-05 2.477018e-04
## VPS39 1.589438e+01 9.002657e+01 3.907175 1.528192e-04 1.049470e-03
## YY1 1.589242e+01 1.061422e+02 3.107657 2.340009e-03 8.198671e-03
## ULK1 -1.588337e+01 5.273353e+01 -2.822287 5.558063e-03 1.630438e-02
## ATP6AP2 -1.586846e+01 1.315359e+02 -2.434335 1.634758e-02 3.865277e-02
## ASH1L 1.586246e+01 4.233724e+01 3.520254 6.043451e-04 2.894803e-03
## CHPF2 -1.584636e+01 5.356536e+01 -4.228880 4.528013e-05 4.412649e-04
## AURKAIP1 -1.583814e+01 2.883187e+01 -3.334470 1.128297e-03 4.664206e-03
## ADAP1 -1.580147e+01 3.430717e+01 -5.238739 6.742724e-07 2.173547e-05
## GNPTG -1.579900e+01 3.084933e+01 -6.130362 1.083450e-08 1.338512e-06
## RNF187 -1.578466e+01 3.671700e+01 -3.604300 4.521225e-04 2.341560e-03
## HVCN1 -1.577942e+01 4.399802e+01 -4.254274 4.102337e-05 4.091986e-04
## TET3 1.577194e+01 6.028762e+01 2.507692 1.344809e-02 3.313137e-02
## LONP2 1.574400e+01 4.934011e+01 2.730576 7.246513e-03 2.006472e-02
## ADORA2A -1.573326e+01 2.737159e+01 -3.973213 1.196831e-04 8.800006e-04
## CDK2AP2 -1.570891e+01 2.138118e+01 -4.648665 8.432813e-06 1.342459e-04
## RENBP -1.570679e+01 2.630851e+01 -4.825866 4.025841e-06 7.865977e-05
## USP8 1.568971e+01 6.292121e+01 3.363199 1.026061e-03 4.341452e-03
## ADSS2 1.567887e+01 5.848943e+01 2.795779 6.004851e-03 1.731102e-02
## ADD1 -1.567267e+01 1.611918e+02 -2.439917 1.610885e-02 3.821783e-02
## PRPF40A 1.566970e+01 9.444992e+01 2.614052 1.005902e-02 2.611073e-02
## PHF1 -1.560538e+01 7.084651e+01 -2.368991 1.938526e-02 4.442689e-02
## MEA1 -1.560466e+01 5.827329e+01 -3.320545 1.181212e-03 4.839093e-03
## PEA15 -1.559467e+01 5.234471e+01 -3.089226 2.478911e-03 8.587991e-03
## SIRT2 -1.558975e+01 5.563416e+01 -4.276329 3.764044e-05 3.836277e-04
## SLTM 1.558618e+01 9.324867e+01 2.689611 8.141544e-03 2.201431e-02
## RTRAF -1.553932e+01 7.284550e+01 -2.889906 4.552439e-03 1.391903e-02
## TSPAN33 -1.550869e+01 4.558144e+01 -2.379975 1.884213e-02 4.344240e-02
## RSBN1L 1.548037e+01 6.680096e+01 2.551709 1.193782e-02 2.991392e-02
## BBX 1.546037e+01 3.457360e+01 4.480994 1.670468e-05 2.172341e-04
## RB1 1.543654e+01 4.613643e+01 3.536022 5.725311e-04 2.781737e-03
## KRTCAP2 -1.543076e+01 3.171061e+01 -2.920209 4.158366e-03 1.296143e-02
## RNF31 -1.542728e+01 6.911293e+01 -2.741723 7.018952e-03 1.955480e-02
## CYC1 -1.540853e+01 3.715765e+01 -3.578513 4.944760e-04 2.505120e-03
## FHOD1 -1.539170e+01 4.207058e+01 -4.508451 1.495204e-05 2.027904e-04
## NAA50 1.539018e+01 9.630966e+01 2.795308 6.013091e-03 1.733056e-02
## HGS -1.538464e+01 5.154154e+01 -4.055470 8.793120e-05 7.065475e-04
## COQ8A -1.538296e+01 3.535968e+01 -4.093515 7.613709e-05 6.350112e-04
## FCHO1 -1.537069e+01 2.976469e+01 -4.992238 1.980221e-06 4.685951e-05
## FRYL 1.535955e+01 4.537357e+01 4.244663 4.258719e-05 4.216060e-04
## ANP32E 1.528244e+01 4.607049e+01 4.522476 1.412666e-05 1.952707e-04
## SIRT7 -1.527288e+01 4.780414e+01 -3.356157 1.050287e-03 4.414033e-03
## CYB561A3 -1.526135e+01 4.109154e+01 -4.806340 4.371232e-06 8.334857e-05
## FLCN 1.525966e+01 4.531634e+01 3.206556 1.710147e-03 6.428637e-03
## RC3H2 1.522050e+01 5.048998e+01 4.040068 9.318660e-05 7.353248e-04
## SMAD2 1.521986e+01 8.402819e+01 3.410454 8.765592e-04 3.844989e-03
## MTHFD2 1.521933e+01 4.943303e+01 2.876721 4.734357e-03 1.436415e-02
## HK1 -1.519670e+01 1.131243e+02 -2.321008 2.192374e-02 4.885674e-02
## DHFR 1.518873e+01 2.806569e+01 4.559280 1.216444e-05 1.761541e-04
## DPP8 1.518775e+01 4.744703e+01 4.077732 8.083351e-05 6.639096e-04
## ZGPAT -1.515468e+01 2.003335e+01 -5.707764 8.012487e-08 5.368819e-06
## AVL9 1.514928e+01 6.014709e+01 3.038047 2.905641e-03 9.745731e-03
## RCN3 -1.512077e+01 1.853455e+01 -5.188514 8.418462e-07 2.553528e-05
## SPEN 1.510895e+01 5.806554e+01 2.735613 7.142870e-03 1.984409e-02
## ZFC3H1 1.510723e+01 5.988510e+01 3.095457 2.431122e-03 8.462903e-03
## AATK -1.509692e+01 2.784013e+01 -4.150652 6.122502e-05 5.492653e-04
## CLIC4 1.507375e+01 3.683004e+01 4.461119 1.809536e-05 2.287964e-04
## ME2 1.506303e+01 7.556347e+01 2.335103 2.114927e-02 4.751190e-02
## SRGAP2 1.505756e+01 3.942572e+01 3.697367 3.260594e-04 1.833601e-03
## NDUFB11 -1.503547e+01 3.412486e+01 -2.465323 1.506097e-02 3.625392e-02
## BICRAL 1.502465e+01 4.974306e+01 3.015145 3.117758e-03 1.030276e-02
## PSMC3 -1.501770e+01 4.726482e+01 -3.176776 1.880875e-03 6.921245e-03
## ST3GAL1 1.501336e+01 7.788900e+01 3.196755 1.764675e-03 6.593903e-03
## CCDC93 1.500538e+01 4.769011e+01 4.234822 4.424766e-05 4.326275e-04
## MAP2K1 1.498459e+01 6.019692e+01 3.471826 7.127814e-04 3.284222e-03
## PCED1A -1.497359e+01 2.710439e+01 -3.919069 1.462684e-04 1.016848e-03
## ZZEF1 1.496574e+01 7.937154e+01 2.805170 5.842963e-03 1.696390e-02
## SLFN11 1.494477e+01 3.929425e+01 3.856927 1.837097e-04 1.213139e-03
## ZRANB1 1.493567e+01 3.288000e+01 3.719670 3.012345e-04 1.736867e-03
## HECTD1 1.492841e+01 4.431339e+01 4.011899 1.035843e-04 7.920490e-04
## DAD1 1.490882e+01 9.216252e+01 3.151691 2.036847e-03 7.360451e-03
## BABAM1 -1.489937e+01 4.057294e+01 -3.302401 1.253643e-03 5.040070e-03
## BTN2A2 1.489314e+01 3.296008e+01 4.285467 3.631874e-05 3.740884e-04
## USF3 1.488345e+01 3.340978e+01 3.702681 3.199741e-04 1.809677e-03
## C1QA -1.481981e+01 1.742241e+01 -2.576220 1.116447e-02 2.831102e-02
## NUDT4B 1.481906e+01 4.657074e+01 4.052718 8.884924e-05 7.124760e-04
## PHC3 1.481881e+01 4.706296e+01 3.994066 1.107301e-04 8.332858e-04
## SOS1 1.480551e+01 3.596716e+01 4.735962 5.870936e-06 1.023260e-04
## RNPS1 -1.479745e+01 4.826228e+01 -3.388486 9.433205e-04 4.069764e-03
## LILRB1 -1.478874e+01 4.010830e+01 -2.604385 1.033167e-02 2.662615e-02
## PLSCR3 -1.478135e+01 2.927789e+01 -3.985854 1.141768e-04 8.500547e-04
## NDUFB2 -1.476033e+01 3.145912e+01 -2.897115 4.455702e-03 1.370097e-02
## RPS19BP1 -1.475032e+01 2.785257e+01 -3.779667 2.430424e-04 1.485191e-03
## C2orf88 1.474018e+01 3.627545e+01 4.088355 7.764310e-05 6.439491e-04
## PSME3 1.472861e+01 9.448871e+01 2.496510 1.385803e-02 3.396156e-02
## SPATS2L 1.472340e+01 1.667069e+01 2.621141 9.863175e-03 2.568859e-02
## MDM4 1.471197e+01 5.477261e+01 3.469071 7.194701e-04 3.304770e-03
## RASA4 -1.470687e+01 2.263613e+01 -4.073910 8.201165e-05 6.708390e-04
## ZBTB37 1.469115e+01 4.558402e+01 3.298293 1.270607e-03 5.087576e-03
## RNPEP -1.465406e+01 7.660925e+01 -2.585790 1.087496e-02 2.776685e-02
## USP24 1.464591e+01 4.766086e+01 4.349270 2.825802e-05 3.089093e-04
## PPDPF -1.464120e+01 1.495431e+01 -4.019953 1.005034e-04 7.766646e-04
## CDC26 -1.459751e+01 4.956672e+01 -3.674475 3.535477e-04 1.947551e-03
## CUTA -1.459669e+01 3.048356e+01 -2.456628 1.541254e-02 3.682368e-02
## CHUK 1.459478e+01 5.250260e+01 2.653994 8.999847e-03 2.383613e-02
## DDX21 1.457633e+01 4.772051e+01 2.520185 1.300297e-02 3.220868e-02
## GTF3C5 -1.457265e+01 3.660590e+01 -3.937818 1.364820e-04 9.675291e-04
## ELOF1 -1.456587e+01 3.308626e+01 -4.274652 3.788784e-05 3.849631e-04
## C20orf27 -1.455467e+01 2.245078e+01 -2.985465 3.413932e-03 1.107219e-02
## CDK14 1.455458e+01 2.908659e+01 3.904294 1.544476e-04 1.057592e-03
## LSM10 -1.455069e+01 5.713971e+01 -3.059708 2.717359e-03 9.246183e-03
## RHBDD2 -1.452898e+01 3.706205e+01 -3.099396 2.401354e-03 8.381417e-03
## POLR1D -1.451925e+01 6.077475e+01 -4.039683 9.332170e-05 7.359012e-04
## IMPDH2 -1.450800e+01 3.910486e+01 -3.577481 4.962456e-04 2.508727e-03
## KCTD2 -1.448668e+01 7.947674e+01 -2.979283 3.478784e-03 1.124513e-02
## ZBTB38 1.448629e+01 3.039728e+01 4.413480 2.189787e-05 2.614660e-04
## ARPC4-TTLL3 -1.447485e+01 3.585958e+01 -4.177510 5.522401e-05 5.108956e-04
## CDK17 1.445967e+01 3.502346e+01 4.184256 5.380789e-05 5.024894e-04
## OSTM1 1.445381e+01 8.230891e+01 2.311365 2.246786e-02 4.981612e-02
## TBC1D1 1.444531e+01 8.625291e+01 2.449259 1.571621e-02 3.745114e-02
## KDM6A 1.441191e+01 5.067786e+01 2.784492 6.204854e-03 1.774525e-02
## JADE1 -1.440106e+01 5.746459e+01 -3.137042 2.133401e-03 7.637227e-03
## EAF1 1.439481e+01 3.598020e+01 3.307974 1.230964e-03 4.974186e-03
## HLA-DQA1 -1.438371e+01 3.815829e+01 -2.356973 1.999537e-02 4.547056e-02
## U2SURP 1.437368e+01 5.825129e+01 4.049424 8.995964e-05 7.197589e-04
## RABL6 -1.436086e+01 2.391767e+01 -4.079490 8.029690e-05 6.609640e-04
## NDUFB8 -1.434769e+01 4.772423e+01 -2.884543 4.625641e-03 1.409923e-02
## SAP30BP -1.433243e+01 6.242850e+01 -3.870352 1.749198e-04 1.166055e-03
## CD7 -1.429582e+01 1.269969e+01 -3.738132 2.820517e-04 1.655157e-03
## C9orf16 -1.428613e+01 1.389679e+01 -4.213178 4.812120e-05 4.623869e-04
## HEATR5B 1.427055e+01 3.040281e+01 4.778524 4.913318e-06 9.048439e-05
## NDUFA3 -1.425950e+01 1.969129e+01 -4.138951 6.403036e-05 5.667165e-04
## RHOF -1.424972e+01 3.008967e+01 -3.907936 1.523922e-04 1.047145e-03
## INPP4A 1.424830e+01 5.956502e+01 3.965281 1.232669e-04 8.996584e-04
## TFDP1 1.424400e+01 5.232525e+01 3.132288 2.165634e-03 7.713038e-03
## NDUFB7 -1.423461e+01 1.281657e+01 -4.037182 9.420432e-05 7.411567e-04
## FBXL20 1.422926e+01 4.423513e+01 3.334550 1.127999e-03 4.664206e-03
## ANAPC13 1.422263e+01 5.842393e+01 3.205678 1.714964e-03 6.442387e-03
## SUDS3 1.421979e+01 4.831490e+01 3.878883 1.695439e-04 1.138950e-03
## SEMA4B -1.421947e+01 6.337355e+01 -2.734387 7.167974e-03 1.989054e-02
## NAGA -1.421632e+01 5.467961e+01 -3.207518 1.704878e-03 6.419001e-03
## UQCR10 -1.420648e+01 4.208845e+01 -3.002159 3.244302e-03 1.063500e-02
## CLCN7 -1.420267e+01 2.415015e+01 -4.349017 2.828630e-05 3.089093e-04
## BRAF 1.420112e+01 4.499659e+01 3.205593 1.715435e-03 6.442387e-03
## BCL7B -1.418176e+01 4.130552e+01 -3.431991 8.154313e-04 3.633566e-03
## AKAP8L -1.416500e+01 5.281197e+01 -4.552363 1.251189e-05 1.787903e-04
## GIMAP1 -1.416456e+01 3.657418e+01 -4.290132 3.566131e-05 3.703530e-04
## AP2A1 -1.416454e+01 3.873160e+01 -6.360575 3.537545e-09 5.909196e-07
## E2F4 -1.416321e+01 7.390580e+01 -3.287069 1.318060e-03 5.231657e-03
## DYNLL1 -1.415789e+01 7.980739e+01 -2.316829 2.215811e-02 4.923101e-02
## TOX4 1.415325e+01 9.386951e+01 2.478285 1.455014e-02 3.528208e-02
## FAM78A -1.414714e+01 5.976105e+01 -3.171979 1.909811e-03 6.997330e-03
## MAL -1.414711e+01 1.532058e+01 -3.618232 4.306907e-04 2.253292e-03
## MED15 -1.413732e+01 3.682910e+01 -4.775431 4.977462e-06 9.152357e-05
## UBTF -1.413369e+01 8.486721e+01 -3.791084 2.332526e-04 1.444854e-03
## C11orf68 -1.412797e+01 4.894142e+01 -2.759442 6.670571e-03 1.881502e-02
## ABLIM3 1.412741e+01 2.660013e+01 3.734735 2.854924e-04 1.666309e-03
## ADNP 1.410732e+01 6.282001e+01 3.681104 3.453690e-04 1.913161e-03
## B3GAT3 -1.410346e+01 1.835872e+01 -4.155476 6.010309e-05 5.424829e-04
## ROCK2 1.409675e+01 2.984139e+01 4.387243 2.430969e-05 2.815556e-04
## ZNF207 1.409602e+01 8.861035e+01 2.552134 1.192404e-02 2.990465e-02
## CUEDC2 -1.408995e+01 3.129498e+01 -4.373131 2.571063e-05 2.929184e-04
## PALM2AKAP2 1.408383e+01 1.760557e+01 6.269053 5.533155e-09 8.084830e-07
## DENND4B -1.408029e+01 1.012668e+02 -3.518230 6.085472e-04 2.910230e-03
## DBI -1.407447e+01 9.614689e+01 -2.402022 1.779241e-02 4.148996e-02
## CEP97 1.405734e+01 1.919710e+01 3.378656 9.747103e-04 4.170297e-03
## NOTCH1 -1.405405e+01 7.588455e+01 -2.349159 2.040111e-02 4.621030e-02
## GBGT1 -1.404686e+01 1.311994e+01 -8.550910 3.893914e-14 4.618182e-10
## BCL2L11 1.402898e+01 6.230889e+01 2.420946 1.693307e-02 3.981470e-02
## TOPBP1 1.402192e+01 4.816746e+01 4.075603 8.148793e-05 6.681202e-04
## VRK3 -1.400562e+01 5.842421e+01 -3.542065 5.607612e-04 2.736884e-03
## CASP3 1.399941e+01 5.589537e+01 4.436880 1.994280e-05 2.455745e-04
## ATG4B -1.399567e+01 3.126570e+01 -5.055824 1.504161e-06 3.876650e-05
## SH3TC1 -1.396056e+01 1.552069e+01 -6.266960 5.589849e-09 8.084830e-07
## RANGAP1 -1.394985e+01 2.825330e+01 -3.578576 4.943685e-04 2.505120e-03
## VAMP1 1.394447e+01 5.703691e+01 3.728092 2.923351e-04 1.697061e-03
## NAA10 -1.394095e+01 2.821516e+01 -4.025518 9.842616e-05 7.654651e-04
## HPS1 -1.391508e+01 6.547653e+01 -2.914170 4.234313e-03 1.315466e-02
## BRAT1 -1.391131e+01 1.303038e+01 -6.429090 2.525889e-09 4.748440e-07
## ISY1 -1.390013e+01 5.001492e+01 -3.678294 3.488143e-04 1.928642e-03
## TOR4A -1.389086e+01 2.554924e+01 -5.891748 3.383331e-08 2.922773e-06
## VPS37B -1.387856e+01 5.135728e+01 -2.892664 4.515206e-03 1.383171e-02
## DNAJC8 -1.387567e+01 8.880909e+01 -3.089167 2.479366e-03 8.587991e-03
## ARHGEF12 1.387420e+01 2.203827e+01 4.954489 2.329071e-06 5.322309e-05
## TRAF7 -1.386887e+01 3.146933e+01 -5.822825 4.680907e-08 3.751051e-06
## MYBL2 1.385934e+01 1.552904e+01 3.512413 6.207766e-04 2.950866e-03
## TNPO3 1.384111e+01 6.856404e+01 2.318984 2.203694e-02 4.904449e-02
## IGBP1 -1.382108e+01 9.315010e+01 -3.540858 5.630943e-04 2.747140e-03
## TMEM205 -1.381704e+01 2.900078e+01 -3.897252 1.584976e-04 1.079714e-03
## SMC3 1.381676e+01 4.415372e+01 4.481227 1.668905e-05 2.172341e-04
## NDUFC2 -1.380722e+01 2.833184e+01 -4.475513 1.707753e-05 2.201516e-04
## FAM53B -1.380025e+01 6.358495e+01 -3.778257 2.442784e-04 1.490299e-03
## SYNRG 1.378605e+01 4.828859e+01 4.151854 6.094362e-05 5.471547e-04
## ATP6V0C -1.377709e+01 5.574234e+01 -2.324301 2.174059e-02 4.852153e-02
## TSSC4 -1.373593e+01 1.449539e+01 -4.159391 5.920690e-05 5.364353e-04
## NSF 1.373317e+01 4.643718e+01 4.618109 9.562813e-06 1.467205e-04
## RAB11FIP4 -1.373183e+01 7.769235e+01 -2.636593 9.448227e-03 2.476922e-02
## ARIH1 1.372659e+01 5.536855e+01 3.629255 4.144178e-04 2.194935e-03
## ACLY 1.372359e+01 6.642809e+01 3.991937 1.116140e-04 8.383417e-04
## VPS13D 1.367942e+01 3.948155e+01 4.141166 6.349025e-05 5.623557e-04
## HNRNPLL 1.366857e+01 3.087377e+01 5.334420 4.402741e-07 1.633705e-05
## NCOA6 1.366743e+01 4.195751e+01 3.808610 2.189494e-04 1.380511e-03
## NFYA 1.366194e+01 5.633768e+01 2.742751 6.998310e-03 1.951408e-02
## UGGT1 1.365812e+01 6.859581e+01 2.998414 3.281659e-03 1.073668e-02
## NRAS 1.362630e+01 5.229278e+01 3.366096 1.016247e-03 4.310836e-03
## ARRDC1 -1.362559e+01 2.473697e+01 -5.585186 1.411629e-07 7.575529e-06
## PLD3 -1.361820e+01 3.540101e+01 -3.547647 5.500939e-04 2.700378e-03
## CWF19L1 -1.358009e+01 5.329476e+01 -3.736625 2.835729e-04 1.661648e-03
## SGTA -1.355976e+01 2.309352e+01 -5.202873 7.901839e-07 2.440516e-05
## HIPK2 1.352963e+01 3.288403e+01 2.978500 3.487088e-03 1.125980e-02
## ARFRP1 -1.352693e+01 1.691713e+01 -4.732329 5.960580e-06 1.032007e-04
## SLC38A10 -1.351885e+01 4.034945e+01 -3.233666 1.567379e-03 5.988763e-03
## USP20 -1.350951e+01 3.525384e+01 -3.773723 2.482923e-04 1.506265e-03
## IREB2 1.350092e+01 5.079464e+01 3.610517 4.424374e-04 2.303471e-03
## MYSM1 1.349815e+01 3.101399e+01 3.837431 1.972256e-04 1.279593e-03
## RAPGEF6 1.348317e+01 3.986585e+01 3.438526 7.976896e-04 3.578139e-03
## WASHC2A 1.347989e+01 5.737396e+01 3.765156 2.560490e-04 1.539930e-03
## TMEM115 -1.347332e+01 2.430034e+01 -5.310078 4.909065e-07 1.748394e-05
## TRADD -1.346378e+01 2.889772e+01 -3.860250 1.814956e-04 1.200523e-03
## DHX15 1.345474e+01 5.893604e+01 4.533773 1.349395e-05 1.882803e-04
## CCS -1.345224e+01 1.625326e+01 -4.357008 2.740639e-05 3.034919e-04
## IRF4 1.344762e+01 2.002576e+01 3.828734 2.035553e-04 1.310622e-03
## AKAP10 1.344703e+01 5.595202e+01 2.990287 3.364110e-03 1.094733e-02
## TNFSF8 1.344410e+01 4.500588e+01 3.483538 6.849933e-04 3.188391e-03
## SLC2A6 -1.344065e+01 1.438559e+01 -4.998300 1.929163e-06 4.594352e-05
## CPSF2 1.341943e+01 5.700730e+01 3.798251 2.273000e-04 1.418084e-03
## INTS6 1.340767e+01 5.530760e+01 2.652351 9.041334e-03 2.390863e-02
## NCAPD2 1.339519e+01 3.616550e+01 5.712367 7.842874e-08 5.285028e-06
## INTS8 1.339391e+01 6.157028e+01 2.932918 4.002627e-03 1.257143e-02
## PURB 1.338217e+01 4.766740e+01 3.836957 1.975652e-04 1.279772e-03
## GLS 1.334612e+01 6.555293e+01 3.386279 9.502830e-04 4.090873e-03
## CERK -1.334466e+01 8.355223e+01 -3.311031 1.218688e-03 4.953268e-03
## RTF1 1.333204e+01 6.566072e+01 3.292288 1.295794e-03 5.160550e-03
## KXD1 -1.331716e+01 5.303491e+01 -3.801892 2.243309e-04 1.402108e-03
## BCL7C -1.329239e+01 1.304869e+01 -3.227250 1.600127e-03 6.085974e-03
## VPS18 -1.328258e+01 3.883587e+01 -3.248118 1.495888e-03 5.782672e-03
## POU2F2 -1.327707e+01 6.306457e+01 -2.484983 1.429226e-02 3.481335e-02
## SGSM3 -1.322740e+01 2.723509e+01 -5.071986 1.402163e-06 3.669442e-05
## PRUNE1 1.320375e+01 4.397889e+01 4.129021 6.650751e-05 5.787080e-04
## GALNT7 1.320113e+01 3.724127e+01 3.047216 2.824516e-03 9.551969e-03
## FRG1 -1.317720e+01 4.000742e+01 -4.609550 9.904728e-06 1.506027e-04
## GNPTAB 1.316809e+01 4.090593e+01 3.775515 2.466989e-04 1.499666e-03
## ATP8B4 1.314774e+01 2.685775e+01 2.605096 1.031140e-02 2.659705e-02
## MCFD2 1.313125e+01 4.247083e+01 4.810721 4.291317e-06 8.235440e-05
## SNRPN -1.313099e+01 4.635097e+01 -2.478433 1.454438e-02 3.527533e-02
## STT3A 1.312585e+01 4.161521e+01 3.776084 2.461948e-04 1.498138e-03
## EIF3B -1.312237e+01 5.184686e+01 -2.758179 6.694870e-03 1.886013e-02
## DCTN3 -1.311498e+01 3.742373e+01 -3.156700 2.004774e-03 7.268913e-03
## HS1BP3 -1.311158e+01 3.926229e+01 -3.548685 5.481303e-04 2.694084e-03
## UBE2G1 1.309505e+01 5.955070e+01 3.257855 1.449447e-03 5.630674e-03
## TRAM2 1.307325e+01 1.831649e+01 5.213987 7.523311e-07 2.360489e-05
## HSPD1 1.305150e+01 7.123412e+01 3.428992 8.236950e-04 3.664299e-03
## SESTD1 1.304298e+01 2.891688e+01 4.363980 2.666031e-05 2.988576e-04
## JARID2 1.303918e+01 5.002538e+01 2.837974 5.308184e-03 1.573800e-02
## EPC1 1.303459e+01 5.822345e+01 3.414703 8.641685e-04 3.802983e-03
## CLEC2D 1.301777e+01 5.965721e+01 2.373865 1.914256e-02 4.399822e-02
## MED1 1.300871e+01 3.488881e+01 4.913027 2.781058e-06 6.060701e-05
## CPEB2 1.298135e+01 3.367483e+01 3.009425 3.172931e-03 1.044724e-02
## MXD4 -1.297231e+01 2.061608e+01 -4.663300 7.938444e-06 1.275745e-04
## HIRA 1.295942e+01 3.862961e+01 5.537914 1.753078e-07 8.566298e-06
## CYCS 1.294587e+01 4.779386e+01 4.489555 1.613801e-05 2.114882e-04
## LYL1 -1.294547e+01 1.800618e+01 -3.581418 4.895233e-04 2.488533e-03
## PARP6 1.294336e+01 4.794632e+01 4.714999 6.406740e-06 1.083936e-04
## UBQLN1 1.293664e+01 8.366452e+01 2.560302 1.166142e-02 2.932663e-02
## SGSM2 -1.292326e+01 2.487688e+01 -6.369553 3.385123e-09 5.735366e-07
## RBBP6 1.292112e+01 4.084993e+01 4.094356 7.589422e-05 6.336166e-04
## PYGB -1.291574e+01 3.795660e+01 -3.933011 1.389299e-04 9.796125e-04
## DNAJB14 1.291113e+01 4.928187e+01 2.860576 4.966172e-03 1.493756e-02
## IRF5 -1.290601e+01 5.233745e+01 -2.603175 1.036627e-02 2.670953e-02
## KDM1B 1.289909e+01 4.592843e+01 2.876758 4.733838e-03 1.436415e-02
## ABHD17A -1.289881e+01 1.314446e+01 -5.510485 1.986961e-07 9.241319e-06
## SRRT -1.289769e+01 4.574573e+01 -3.574329 5.016914e-04 2.530863e-03
## CD226 1.289501e+01 3.589041e+01 3.831567 2.014723e-04 1.298620e-03
## EIF4E2 -1.289292e+01 7.844089e+01 -3.815078 2.138847e-04 1.357235e-03
## LTN1 1.288261e+01 3.265337e+01 3.827699 2.043207e-04 1.314124e-03
## PRDM2 1.286850e+01 5.794222e+01 2.677248 8.430691e-03 2.262684e-02
## RIPOR1 -1.283310e+01 3.157259e+01 -5.757405 6.358497e-08 4.592387e-06
## GPATCH2L 1.282724e+01 4.436338e+01 3.845392 1.915961e-04 1.250594e-03
## ABCG1 1.280930e+01 3.368594e+01 2.664103 8.748289e-03 2.329472e-02
## RBM10 -1.279614e+01 3.476605e+01 -4.801592 4.459463e-06 8.462277e-05
## SCP2 1.279044e+01 5.528480e+01 3.626844 4.179265e-04 2.207855e-03
## PDS5A 1.277538e+01 4.995416e+01 3.728973 2.914188e-04 1.693399e-03
## RRAGD 1.276956e+01 5.694162e+01 2.376016 1.903631e-02 4.377872e-02
## CD300C -1.276149e+01 1.878104e+01 -5.858220 3.963103e-08 3.310028e-06
## MCM6 1.275725e+01 2.082129e+01 8.034319 6.344663e-13 3.003183e-09
## DGCR6L -1.274717e+01 1.389479e+01 -3.816460 2.128175e-04 1.351910e-03
## PCNA 1.269983e+01 3.390473e+01 4.353155 2.782729e-05 3.058992e-04
## GADD45GIP1 -1.269767e+01 1.349253e+01 -3.045819 2.836736e-03 9.585097e-03
## SRP72 1.267640e+01 5.232833e+01 3.765830 2.554307e-04 1.538552e-03
## PES1 -1.266136e+01 2.375141e+01 -4.177769 5.516893e-05 5.108956e-04
## SGSH -1.264285e+01 2.312408e+01 -4.687055 7.195125e-06 1.180298e-04
## SH3BGRL2 1.263566e+01 3.740755e+01 2.359105 1.988592e-02 4.530427e-02
## SH3GLB2 -1.262874e+01 2.797316e+01 -3.539831 5.650860e-04 2.755619e-03
## RAVER1 -1.262744e+01 3.064898e+01 -3.940547 1.351104e-04 9.612532e-04
## FBH1 1.262623e+01 5.344644e+01 6.421014 2.628424e-09 4.795863e-07
## CORO1B -1.262380e+01 2.380160e+01 -3.692443 3.317954e-04 1.861444e-03
## KANSL1 1.261968e+01 5.360751e+01 3.233484 1.568300e-03 5.990349e-03
## NIBAN2 -1.258599e+01 2.647380e+01 -4.145713 6.239458e-05 5.544196e-04
## DUS1L -1.258176e+01 2.322127e+01 -3.785306 2.381596e-04 1.464229e-03
## MKI67 1.256471e+01 1.319601e+01 6.257447 5.854826e-09 8.266456e-07
## USO1 1.255885e+01 4.623941e+01 3.955015 1.280571e-04 9.249438e-04
## FCHSD2 1.255006e+01 6.265653e+01 2.437506 1.621155e-02 3.837705e-02
## TAB3 1.253657e+01 3.729086e+01 3.783138 2.400257e-04 1.471165e-03
## GPS1 -1.252519e+01 2.055775e+01 -3.847241 1.903103e-04 1.245629e-03
## CHD8 1.250846e+01 7.355215e+01 3.110160 2.321714e-03 8.139381e-03
## SMC4 1.250477e+01 3.347087e+01 5.849088 4.137217e-08 3.366602e-06
## KCNK6 -1.249956e+01 3.633130e+01 -4.778855 4.906482e-06 9.048439e-05
## TECR -1.249451e+01 2.935526e+01 -2.384952 1.860046e-02 4.303579e-02
## SPCS2 1.249330e+01 6.406968e+01 3.418205 8.540799e-04 3.772584e-03
## TMED10 1.247475e+01 1.198959e+02 2.524993 1.283520e-02 3.186634e-02
## FAM13B 1.246656e+01 4.654983e+01 3.431442 8.169378e-04 3.638334e-03
## MAN2C1 -1.246575e+01 4.115284e+01 -2.481885 1.441104e-02 3.503072e-02
## TEX2 1.244622e+01 1.955946e+01 3.815541 2.135269e-04 1.355690e-03
## TBC1D22A -1.244187e+01 3.013958e+01 -5.778544 5.760458e-08 4.253785e-06
## AATF -1.241925e+01 5.585634e+01 -4.703171 6.729676e-06 1.124140e-04
## FKBP11 1.241090e+01 2.263391e+01 2.488260 1.416761e-02 3.455230e-02
## HNRNPR 1.238960e+01 7.475318e+01 3.241254 1.529455e-03 5.879849e-03
## PDAP1 -1.235747e+01 7.026995e+01 -2.848406 5.147735e-03 1.537450e-02
## AP3B1 1.234214e+01 4.896297e+01 3.380292 9.694189e-04 4.149155e-03
## ZNF316 -1.233432e+01 3.979331e+01 -3.952781 1.291228e-04 9.285446e-04
## MR1 1.233182e+01 5.909118e+01 2.735354 7.148162e-03 1.985414e-02
## AP5Z1 -1.233014e+01 2.355558e+01 -4.901977 2.915234e-06 6.240916e-05
## YWHAQ 1.232595e+01 1.029340e+02 2.704387 7.807755e-03 2.129225e-02
## SEC13 -1.231620e+01 5.413360e+01 -3.358812 1.041090e-03 4.387412e-03
## KTN1 1.229380e+01 6.916742e+01 3.093847 2.443384e-03 8.488146e-03
## FASTK -1.228705e+01 1.917378e+01 -3.848212 1.896389e-04 1.242520e-03
## POLR2G -1.225568e+01 4.910076e+01 -3.461641 7.378048e-04 3.369413e-03
## ANKRD17 1.224834e+01 3.976812e+01 3.527867 5.887814e-04 2.840360e-03
## ZER1 -1.222544e+01 4.875429e+01 -3.174338 1.895533e-03 6.957591e-03
## DNAJC7 -1.222449e+01 7.539283e+01 -3.289409 1.308033e-03 5.195337e-03
## FIBP -1.219889e+01 3.238332e+01 -3.359131 1.039992e-03 4.386309e-03
## BORCS8 -1.219291e+01 2.273991e+01 -4.136639 6.459920e-05 5.687154e-04
## ST6GALNAC6 -1.218870e+01 3.027056e+01 -3.214892 1.665007e-03 6.290853e-03
## SUMF1 -1.217206e+01 2.799574e+01 -5.756377 6.389072e-08 4.592387e-06
## GCC2 1.215749e+01 3.305878e+01 3.447646 7.735358e-04 3.500242e-03
## GRAP -1.214990e+01 1.639445e+01 -3.969985 1.211296e-04 8.889831e-04
## GET3 -1.212401e+01 4.197249e+01 -3.019889 3.072681e-03 1.018502e-02
## DUSP22 -1.212024e+01 8.623116e+01 -2.744523 6.962828e-03 1.943954e-02
## NSA2 -1.211432e+01 6.509212e+01 -2.943871 3.872716e-03 1.223506e-02
## RO60 1.210129e+01 3.688943e+01 3.902150 1.556704e-04 1.063509e-03
## PSMD9 -1.209290e+01 4.157325e+01 -3.370781 1.000564e-03 4.259398e-03
## TRPM2 -1.209189e+01 2.399374e+01 -2.903140 4.376305e-03 1.350585e-02
## EIF4EBP1 -1.208485e+01 1.583013e+01 -4.161513 5.872658e-05 5.341237e-04
## TYMS 1.208309e+01 1.204017e+01 5.589097 1.386492e-07 7.523124e-06
## SPG7 -1.207343e+01 3.092756e+01 -4.425023 2.091145e-05 2.530712e-04
## GGT1 -1.206604e+01 1.670209e+01 -4.111429 7.112287e-05 6.062432e-04
## MEPCE -1.204288e+01 4.292490e+01 -3.115898 2.280271e-03 8.034466e-03
## UBAC2 -1.204048e+01 6.960979e+01 -3.688883 3.360016e-04 1.876167e-03
## URM1 -1.204005e+01 3.645555e+01 -3.639946 3.991910e-04 2.131983e-03
## PIP4K2C 1.203774e+01 3.374976e+01 5.706279 8.067935e-08 5.375602e-06
## FCER2 -1.202600e+01 8.835297e+00 -4.907598 2.846219e-06 6.126345e-05
## ANKZF1 -1.202348e+01 4.886287e+01 -3.812490 2.158980e-04 1.365627e-03
## TNRC6B 1.201076e+01 5.202516e+01 2.643693 9.262903e-03 2.437498e-02
## EDC4 -1.199257e+01 3.438807e+01 -4.120884 6.860551e-05 5.921844e-04
## MGAT4A 1.198590e+01 5.895381e+01 3.092818 2.451256e-03 8.507645e-03
## POLR2C -1.198364e+01 6.906363e+01 -3.543357 5.582744e-04 2.729239e-03
## WDR48 1.198093e+01 4.323479e+01 4.075514 8.151517e-05 6.681202e-04
## MED22 -1.196128e+01 3.048407e+01 -6.229439 6.708854e-09 9.251978e-07
## FAM110A -1.195570e+01 1.801229e+01 -4.242025 4.302626e-05 4.245353e-04
## PTPN22 1.194278e+01 3.875292e+01 2.618594 9.933137e-03 2.584054e-02
## ZBTB44 1.194148e+01 5.867273e+01 2.789769 6.110597e-03 1.752640e-02
## COX8A -1.194083e+01 4.517830e+01 -2.368752 1.939726e-02 4.444582e-02
## TFEC 1.193885e+01 3.921318e+01 2.478650 1.453597e-02 3.526936e-02
## KDM5B 1.193586e+01 4.159757e+01 2.937158 3.951873e-03 1.243215e-02
## ADRM1 -1.193234e+01 2.622650e+01 -4.491837 1.599008e-05 2.102465e-04
## GLYR1 1.193119e+01 9.631619e+01 2.469478 1.489553e-02 3.592130e-02
## WWP2 -1.192802e+01 9.005559e+01 -2.323742 2.177159e-02 4.856329e-02
## GNA15 -1.191962e+01 2.381137e+01 -4.223994 4.614656e-05 4.475047e-04
## ST14 -1.191128e+01 2.232159e+01 -4.272978 3.813652e-05 3.856928e-04
## RBBP4 1.185701e+01 8.173500e+01 3.194617 1.776784e-03 6.624537e-03
## TRPM7 1.184671e+01 3.352956e+01 4.683267 7.308953e-06 1.192355e-04
## PCIF1 -1.184410e+01 4.536989e+01 -3.754133 2.663682e-04 1.582948e-03
## FEM1B 1.183675e+01 4.638225e+01 3.674947 3.529594e-04 1.946118e-03
## GPD2 1.182049e+01 2.811369e+01 3.912101 1.500730e-04 1.034204e-03
## VPS25 -1.181972e+01 4.402055e+01 -3.643813 3.938150e-04 2.111197e-03
## SMARCA5 1.181425e+01 7.238429e+01 3.023836 3.035639e-03 1.009044e-02
## UBAP2L 1.180406e+01 5.572715e+01 3.443143 7.853738e-04 3.535666e-03
## IRF8 -1.179742e+01 4.913949e+01 -3.779412 2.432656e-04 1.485649e-03
## AGAP2 -1.179700e+01 5.163394e+01 -3.068051 2.647899e-03 9.073702e-03
## UPF2 1.179343e+01 5.856242e+01 2.847064 5.168134e-03 1.541601e-02
## STK11IP -1.179140e+01 2.060218e+01 -6.800673 3.953833e-10 1.497798e-07
## PLEKHJ1 -1.178806e+01 2.948693e+01 -2.857899 5.005610e-03 1.502659e-02
## TCEA1 1.178690e+01 6.240201e+01 4.540009 1.315648e-05 1.848766e-04
## TENT5A 1.178409e+01 3.525549e+01 3.173779 1.898906e-03 6.963830e-03
## TRMT1 -1.177930e+01 1.890975e+01 -3.974743 1.190037e-04 8.760916e-04
## EPC2 1.177717e+01 3.475894e+01 3.653794 3.802534e-04 2.063984e-03
## ZDHHC12 -1.173654e+01 1.645825e+01 -4.433521 2.021272e-05 2.476476e-04
## FUNDC2 -1.172675e+01 4.428829e+01 -2.555893 1.180252e-02 2.963751e-02
## MPDU1 -1.172355e+01 4.153855e+01 -2.780054 6.285139e-03 1.794025e-02
## PIK3CB 1.172144e+01 5.083445e+01 2.480638 1.445910e-02 3.511157e-02
## FBXO34 1.171357e+01 2.824598e+01 4.119600 6.894225e-05 5.942260e-04
## PANK3 1.171172e+01 3.892376e+01 3.524894 5.948139e-04 2.860703e-03
## HSPB1 -1.170751e+01 6.645424e+00 -3.626856 4.179082e-04 2.207855e-03
## TEPSIN -1.169232e+01 2.877054e+01 -3.979428 1.169450e-04 8.652329e-04
## MAML2 1.167400e+01 2.263292e+01 4.208795 4.894431e-05 4.671473e-04
## CHTOP -1.166473e+01 6.536219e+01 -3.729874 2.904846e-04 1.690455e-03
## SBF1 -1.166243e+01 3.838872e+01 -3.953924 1.285764e-04 9.269691e-04
## AKR1A1 -1.165763e+01 4.717125e+01 -2.592764 1.066827e-02 2.736282e-02
## PCNX3 -1.165750e+01 2.663338e+01 -3.796106 2.290656e-04 1.426098e-03
## PPM1K 1.165372e+01 2.537856e+01 3.268090 1.402087e-03 5.491664e-03
## PIH1D1 -1.163637e+01 2.301395e+01 -3.831930 2.012069e-04 1.297615e-03
## TMED7 1.163377e+01 4.681076e+01 3.027000 3.006241e-03 1.000393e-02
## PPCS -1.163145e+01 4.554313e+01 -4.403476 2.278897e-05 2.692004e-04
## MAEA -1.162195e+01 5.262908e+01 -2.720809 7.451393e-03 2.049954e-02
## H2BC5 1.160882e+01 1.996329e+01 3.037126 2.913910e-03 9.770703e-03
## CYSLTR1 1.159389e+01 3.478829e+01 2.750543 6.843530e-03 1.915607e-02
## GPR107 1.158913e+01 5.775534e+01 2.837906 5.309252e-03 1.573800e-02
## KLF16 -1.157637e+01 2.217280e+01 -5.613613 1.238621e-07 7.204573e-06
## RAB11B -1.156962e+01 1.793012e+01 -5.676261 9.273641e-08 5.850286e-06
## RPS6KA4 -1.155353e+01 2.686564e+01 -4.204845 4.969771e-05 4.715319e-04
## C12orf75 1.154428e+01 1.883601e+01 4.787790 4.725877e-06 8.785094e-05
## C6orf47 -1.153088e+01 5.058061e+01 -3.620493 4.273048e-04 2.243398e-03
## COQ8B -1.153005e+01 2.772529e+01 -3.166528 1.943201e-03 7.095557e-03
## NUDT22 -1.151992e+01 1.316011e+01 -5.449059 2.626931e-07 1.137059e-05
## BORCS6 -1.151180e+01 1.692804e+01 -4.322459 3.141006e-05 3.341017e-04
## INTS1 -1.150688e+01 1.784814e+01 -4.989647 2.002448e-06 4.693940e-05
## TOP2A 1.150026e+01 1.095043e+01 5.923388 2.912986e-08 2.657539e-06
## TNIP2 -1.147290e+01 3.592328e+01 -4.129675 6.634174e-05 5.781139e-04
## MED12 1.146237e+01 3.561850e+01 3.066427 2.661286e-03 9.111676e-03
## EXOC3 -1.145752e+01 4.017123e+01 -5.369645 3.759201e-07 1.471423e-05
## SNX19 1.144852e+01 4.080178e+01 4.098478 7.471496e-05 6.287306e-04
## RNASE1 1.144751e+01 1.575656e+01 2.803270 5.875395e-03 1.703721e-02
## CDK12 1.143611e+01 4.035948e+01 3.912686 1.497499e-04 1.032578e-03
## STIM1 1.142837e+01 7.598464e+01 3.175032 1.891349e-03 6.944707e-03
## TRMT112 -1.141698e+01 5.643521e+01 -2.463594 1.513031e-02 3.637654e-02
## TLK2 1.140948e+01 4.990203e+01 3.455513 7.532539e-04 3.426770e-03
## CALU 1.138783e+01 2.990786e+01 4.859725 3.488662e-06 7.072741e-05
## ABCA13 1.138118e+01 1.089245e+01 2.713151 7.615712e-03 2.085966e-02
## TRPM6 1.137979e+01 2.782517e+01 3.265694 1.413041e-03 5.521802e-03
## MAD2L2 -1.135396e+01 2.424771e+01 -3.793658 2.310975e-04 1.436318e-03
## TRMT2A -1.135046e+01 1.576644e+01 -4.354946 2.763086e-05 3.049115e-04
## GFUS -1.132468e+01 2.559143e+01 -3.113833 2.295108e-03 8.074750e-03
## ADPGK 1.131279e+01 1.031675e+02 2.531653 1.260601e-02 3.138024e-02
## TBC1D5 1.130914e+01 4.285644e+01 4.380486 2.497107e-05 2.881531e-04
## CDK9 -1.130291e+01 3.864615e+01 -4.758828 5.335981e-06 9.574091e-05
## TOR1AIP2 1.129649e+01 5.590155e+01 2.677763 8.418448e-03 2.260421e-02
## NINJ2 -1.127724e+01 2.848899e+01 -3.641888 3.964829e-04 2.122929e-03
## INO80D 1.126377e+01 2.880287e+01 4.299139 3.442425e-05 3.601713e-04
## PIGT -1.126188e+01 4.189608e+01 -3.244992 1.511086e-03 5.835713e-03
## POLE4 -1.125348e+01 2.540997e+01 -3.257208 1.452492e-03 5.638809e-03
## PI4KB -1.124981e+01 9.368295e+01 -2.777803 6.326225e-03 1.803149e-02
## LPP 1.124452e+01 4.009717e+01 2.717871 7.514044e-03 2.063020e-02
## VEZF1 1.123159e+01 7.796185e+01 2.317444 2.212348e-02 4.918172e-02
## ST13 -1.122525e+01 8.170272e+01 -3.207046 1.707460e-03 6.420571e-03
## MRPL54 -1.121955e+01 2.150218e+01 -3.060741 2.708663e-03 9.228596e-03
## CD99L2 -1.121916e+01 2.948080e+01 -4.246618 4.226447e-05 4.191109e-04
## TTYH3 -1.120305e+01 2.129215e+01 -5.722048 7.497553e-08 5.139941e-06
## SLX1A -1.120291e+01 2.377912e+01 -3.802445 2.238829e-04 1.400449e-03
## ORAI1 -1.118943e+01 1.950644e+01 -3.031452 2.965315e-03 9.893780e-03
## SIK3 1.118825e+01 5.527531e+01 3.924627 1.432994e-04 1.003857e-03
## ARNTL 1.118463e+01 4.545895e+01 2.454764 1.548884e-02 3.697618e-02
## NXPE3 1.117593e+01 5.248253e+01 2.796553 5.991351e-03 1.728050e-02
## HMG20B -1.116254e+01 1.962604e+01 -4.156410 5.988815e-05 5.413670e-04
## MOB2 -1.115941e+01 3.492555e+01 -2.608619 1.021143e-02 2.640528e-02
## DMTF1 1.115281e+01 4.803148e+01 3.185863 1.827166e-03 6.761371e-03
## ANXA2R -1.114322e+01 1.930509e+01 -3.564917 5.182869e-04 2.591434e-03
## MFAP3 1.113208e+01 3.367424e+01 3.249049 1.491390e-03 5.767160e-03
## CLNS1A -1.112895e+01 4.082330e+01 -4.372781 2.574635e-05 2.930438e-04
## ATP2A2 1.112304e+01 3.710836e+01 3.649187 3.864576e-04 2.087153e-03
## ZBTB48 -1.111597e+01 2.623453e+01 -4.055828 8.781270e-05 7.065475e-04
## KRI1 -1.111339e+01 2.320893e+01 -4.272103 3.826716e-05 3.856928e-04
## SMIM12 -1.108834e+01 4.306449e+01 -4.117669 6.945180e-05 5.960191e-04
## TBCA -1.108449e+01 4.722366e+01 -3.003651 3.229527e-03 1.060121e-02
## ARHGAP21 1.107389e+01 2.269131e+01 4.478445 1.687714e-05 2.180424e-04
## LPCAT3 -1.107034e+01 4.303278e+01 -2.350964 2.030676e-02 4.603176e-02
## TM9SF3 1.106875e+01 9.688584e+01 2.479705 1.449513e-02 3.518466e-02
## NPLOC4 -1.104047e+01 7.647469e+01 -2.739476 7.064294e-03 1.965342e-02
## CHMP6 -1.101821e+01 1.500705e+01 -4.985813 2.035782e-06 4.752829e-05
## C2CD5 1.101273e+01 3.936890e+01 3.310482 1.220884e-03 4.958798e-03
## MON2 1.100945e+01 3.877696e+01 3.791032 2.332964e-04 1.444854e-03
## SEC31A 1.100834e+01 3.968046e+01 3.949515 1.306959e-04 9.365882e-04
## XAB2 -1.100297e+01 2.158461e+01 -4.146417 6.222656e-05 5.542660e-04
## ATP5F1D -1.099469e+01 8.241636e+00 -3.576891 4.972603e-04 2.511715e-03
## CLEC10A -1.098242e+01 1.104050e+01 -4.109378 7.168054e-05 6.090376e-04
## LSM6 -1.097470e+01 2.195575e+01 -5.788576 5.496303e-08 4.138807e-06
## RAB3GAP2 1.097321e+01 3.235553e+01 3.882275 1.674506e-04 1.127108e-03
## DCAF7 1.096561e+01 5.670916e+01 3.307706 1.232047e-03 4.976199e-03
## KCNQ1 -1.096482e+01 2.659564e+01 -5.334155 4.407974e-07 1.633705e-05
## MBD3 -1.095976e+01 1.022561e+01 -3.905578 1.537198e-04 1.053216e-03
## PRMT1 -1.095672e+01 2.990035e+01 -2.728594 7.287678e-03 2.013790e-02
## ERLEC1 1.095092e+01 3.817985e+01 3.558585 5.297410e-04 2.629827e-03
## SND1 -1.093993e+01 6.432781e+01 -2.546022 1.212399e-02 3.034197e-02
## NDE1 1.093010e+01 4.949876e+01 2.538523 1.237347e-02 3.088810e-02
## STK11 -1.090643e+01 2.416527e+01 -3.942718 1.340289e-04 9.552780e-04
## DGUOK -1.090590e+01 4.071040e+01 -2.930307 4.034176e-03 1.264412e-02
## PAPOLG 1.088995e+01 3.390322e+01 3.519211 6.065070e-04 2.903986e-03
## SUPT16H 1.088386e+01 6.353515e+01 3.556971 5.326990e-04 2.640275e-03
## CAPRIN1 1.088226e+01 9.429874e+01 3.386581 9.493290e-04 4.089736e-03
## POGZ 1.087705e+01 4.534624e+01 3.712299 3.092341e-04 1.766419e-03
## TAPBPL -1.086791e+01 3.829578e+01 -2.580532 1.103318e-02 2.808617e-02
## PAXX -1.086294e+01 1.168513e+01 -3.581555 4.892908e-04 2.488417e-03
## ZNF710 -1.084932e+01 2.654146e+01 -5.111372 1.180971e-06 3.264874e-05
## MIB1 1.084880e+01 3.257249e+01 3.370548 1.001340e-03 4.259647e-03
## ATP2C1 1.083889e+01 3.465919e+01 5.057948 1.490355e-06 3.850895e-05
## POLR2L -1.077263e+01 1.206856e+01 -3.445572 7.789666e-04 3.515175e-03
## EIF4E 1.077073e+01 3.974712e+01 5.284465 5.503105e-07 1.886324e-05
## PEX6 -1.076520e+01 2.642859e+01 -3.548854 5.478121e-04 2.693637e-03
## U2AF1L5 -1.076432e+01 4.876335e+01 -2.906755 4.329299e-03 1.339914e-02
## GABBR1 1.076124e+01 3.953987e+01 2.816080 5.659870e-03 1.654574e-02
## SMIM29 -1.076063e+01 1.803404e+01 -4.236015 4.404312e-05 4.316801e-04
## XPOT 1.076010e+01 3.630472e+01 5.109376 1.191313e-06 3.285807e-05
## RNF6 1.075701e+01 3.834992e+01 3.574742 5.009749e-04 2.528324e-03
## MAN2A1 1.075551e+01 4.161320e+01 3.689368 3.354253e-04 1.875254e-03
## CLASRP -1.074168e+01 3.717272e+01 -4.500585 1.543511e-05 2.069795e-04
## CBX1 1.072682e+01 4.810889e+01 3.002002 3.245863e-03 1.063717e-02
## YWHAG 1.072458e+01 6.568807e+01 2.719472 7.479859e-03 2.056354e-02
## PIN1 -1.072237e+01 1.756315e+01 -3.682294 3.439213e-04 1.907814e-03
## HSPA13 1.072049e+01 2.075128e+01 4.421664 2.119400e-05 2.553902e-04
## NUDT4 1.071995e+01 3.352954e+01 4.088915 7.747812e-05 6.430712e-04
## BAZ1B 1.071318e+01 3.996364e+01 4.353130 2.783012e-05 3.058992e-04
## FUBP1 1.071247e+01 4.982512e+01 2.617835 9.954072e-03 2.587797e-02
## UBE2M -1.070702e+01 3.773458e+01 -3.096069 2.426471e-03 8.451674e-03
## BRWD1 1.070391e+01 4.859498e+01 3.231513 1.578299e-03 6.020785e-03
## RLF 1.070136e+01 3.510974e+01 2.439564 1.612384e-02 3.824576e-02
## SKAP1 -1.069981e+01 2.524326e+01 -2.863746 4.919861e-03 1.482458e-02
## RNF40 -1.069761e+01 7.419362e+01 -2.732768 7.201257e-03 1.996888e-02
## RIPK3 -1.069111e+01 3.618256e+01 -3.844040 1.925413e-04 1.254692e-03
## USP48 1.068527e+01 5.022570e+01 4.901207 2.924814e-06 6.250142e-05
## C11orf98 -1.068163e+01 3.301385e+01 -2.712424 7.631471e-03 2.089318e-02
## HPS6 -1.068083e+01 1.705239e+01 -7.092034 8.961692e-11 6.642854e-08
## B3GALT4 -1.067852e+01 1.684980e+01 -4.499942 1.547528e-05 2.069795e-04
## FAXDC2 1.065994e+01 2.348800e+01 3.660537 3.713425e-04 2.024884e-03
## MICB 1.065540e+01 3.013400e+01 3.890946 1.622101e-04 1.099949e-03
## USP1 1.063492e+01 5.052917e+01 3.356699 1.048404e-03 4.410117e-03
## ELOVL1 -1.062560e+01 7.439302e+01 -2.681728 8.324856e-03 2.240871e-02
## FKBP2 -1.062517e+01 1.840962e+01 -3.264614 1.418008e-03 5.533917e-03
## CCND2 1.061072e+01 4.193033e+01 3.186536 1.823247e-03 6.751944e-03
## GNL1 -1.060484e+01 2.955268e+01 -3.639399 3.999569e-04 2.133823e-03
## PIEZO1 -1.059678e+01 2.345828e+01 -3.150228 2.046303e-03 7.389211e-03
## SLC30A1 1.059140e+01 4.042959e+01 2.365741 1.954862e-02 4.470034e-02
## TFRC 1.058958e+01 2.410539e+01 2.422443 1.686669e-02 3.967453e-02
## RUNX2 1.058241e+01 2.999564e+01 3.154722 2.017382e-03 7.303465e-03
## ERF -1.057695e+01 1.976245e+01 -5.124538 1.114911e-06 3.175596e-05
## PPP1R21 1.056842e+01 5.109023e+01 2.802703 5.885105e-03 1.704516e-02
## OSGEP -1.054914e+01 2.499738e+01 -5.078212 1.364694e-06 3.603782e-05
## ARNT 1.054355e+01 5.080378e+01 2.826154 5.495500e-03 1.617424e-02
## KPNA2 1.054069e+01 3.099392e+01 6.551906 1.375355e-09 3.395405e-07
## ZFX 1.053419e+01 3.738306e+01 2.825376 5.508037e-03 1.619368e-02
## TPP2 1.053010e+01 3.408538e+01 3.636882 4.034995e-04 2.149822e-03
## ERCC1 -1.052685e+01 2.602666e+01 -4.675467 7.548870e-06 1.223870e-04
## EPRS1 1.052406e+01 4.890320e+01 3.273655 1.376945e-03 5.416440e-03
## CERS5 -1.052365e+01 4.569431e+01 -3.360185 1.036366e-03 4.375685e-03
## ATG101 -1.051745e+01 1.961917e+01 -3.924156 1.435488e-04 1.005011e-03
## MAT2A 1.050681e+01 8.975871e+01 2.399012 1.793259e-02 4.173216e-02
## TBC1D20 1.048943e+01 5.433277e+01 4.463611 1.791504e-05 2.272432e-04
## XPNPEP1 1.048828e+01 3.470850e+01 4.490043 1.610627e-05 2.113906e-04
## ZDHHC5 1.047736e+01 7.892320e+01 2.636027 9.463156e-03 2.479740e-02
## RFX2 -1.046733e+01 2.818168e+01 -2.602997 1.037138e-02 2.671689e-02
## GATAD2B 1.044157e+01 5.197707e+01 2.619880 9.897753e-03 2.575413e-02
## BRPF3 1.044005e+01 2.636480e+01 4.137694 6.433912e-05 5.681772e-04
## STK25 -1.043939e+01 2.402542e+01 -4.000538 1.080840e-04 8.180447e-04
## H1-10 -1.042114e+01 1.852315e+01 -2.690559 8.119732e-03 2.197126e-02
## DTX2 -1.041697e+01 2.113412e+01 -4.216155 4.756981e-05 4.583942e-04
## SRGAP2B 1.041056e+01 2.119827e+01 4.013042 1.031416e-04 7.897091e-04
## G6PC3 -1.040312e+01 1.557827e+01 -4.889770 3.070761e-06 6.503432e-05
## ALAS1 1.039129e+01 5.096235e+01 3.163213 1.963768e-03 7.153036e-03
## PTPRA 1.038610e+01 6.472976e+01 3.774726 2.473991e-04 1.503152e-03
## TSC2 -1.038461e+01 2.702053e+01 -4.578011 1.126960e-05 1.666368e-04
## CDK10 -1.038262e+01 1.716372e+01 -3.605731 4.498756e-04 2.334000e-03
## TAF1 1.038122e+01 3.287209e+01 3.640755 3.980600e-04 2.129450e-03
## SMCO4 -1.036997e+01 2.082502e+01 -4.044261 9.172711e-05 7.281684e-04
## MTMR4 1.036432e+01 4.664058e+01 3.064194 2.679801e-03 9.153053e-03
## GTF2A1 1.035903e+01 3.817889e+01 3.221389 1.630596e-03 6.190419e-03
## HDGFL2 -1.035694e+01 1.668326e+01 -6.122560 1.124950e-08 1.360408e-06
## DCXR -1.035501e+01 1.824967e+01 -2.802962 5.880668e-03 1.704502e-02
## DCAF5 1.034577e+01 5.725262e+01 3.522800 5.990963e-04 2.875469e-03
## NF1 1.032682e+01 3.389437e+01 2.527371 1.275295e-02 3.169420e-02
## SLAIN2 1.032458e+01 4.312159e+01 3.435709 8.052925e-04 3.598632e-03
## ENTPD6 -1.031741e+01 2.340023e+01 -3.590030 4.751163e-04 2.433022e-03
## HAGH -1.031424e+01 1.970788e+01 -3.530354 5.837798e-04 2.822515e-03
## CEP170 1.030642e+01 3.643879e+01 2.599119 1.048301e-02 2.696930e-02
## ZNF692 -1.030346e+01 2.986729e+01 -4.051355 8.930715e-05 7.153140e-04
## PAGR1 -1.030333e+01 2.312246e+01 -6.034379 1.717565e-08 1.841392e-06
## CCNT1 1.030225e+01 3.231011e+01 3.427111 8.289213e-04 3.683405e-03
## ITFG1 1.028520e+01 3.305206e+01 3.876169 1.712367e-04 1.146567e-03
## ZNF276 -1.026774e+01 7.823383e+01 -2.660580 8.835214e-03 2.346823e-02
## TOMM22 -1.026043e+01 3.776476e+01 -3.218168 1.647572e-03 6.239806e-03
## STYXL1 -1.024909e+01 3.175269e+01 -3.079903 2.552040e-03 8.807633e-03
## MRFAP1L1 -1.024766e+01 6.573678e+01 -3.298332 1.270444e-03 5.087576e-03
## SUGP1 -1.024362e+01 2.453559e+01 -5.594203 1.354337e-07 7.523124e-06
## USP5 -1.023568e+01 2.845790e+01 -3.155090 2.015028e-03 7.297170e-03
## CUL1 1.023523e+01 3.484763e+01 2.976126 3.512352e-03 1.131970e-02
## CTDP1 -1.023129e+01 2.589872e+01 -3.611419 4.410492e-04 2.299272e-03
## SNRPD3 -1.023034e+01 6.628231e+01 -3.265784 1.412630e-03 5.521802e-03
## SATB1 1.022146e+01 4.867791e+01 2.347307 2.049834e-02 4.636855e-02
## SH3GL1 -1.021991e+01 2.443641e+01 -3.917208 1.472752e-04 1.022050e-03
## FAM199X 1.021460e+01 3.456611e+01 3.751415 2.689723e-04 1.593412e-03
## SUCLG1 -1.021090e+01 5.835953e+01 -2.522710 1.291463e-02 3.203670e-02
## DNAJC10 1.020800e+01 4.753952e+01 2.750958 6.835375e-03 1.913776e-02
## VPS16 -1.019129e+01 6.272973e+01 -2.486979 1.421622e-02 3.464958e-02
## PRPF31 -1.018971e+01 1.753053e+01 -3.990738 1.121147e-04 8.410375e-04
## TNFRSF8 -1.018093e+01 1.208855e+01 -6.571105 1.250097e-09 3.177468e-07
## GAK -1.017793e+01 4.015485e+01 -4.578954 1.122630e-05 1.662221e-04
## ATOX1 -1.017245e+01 1.878354e+01 -3.167169 1.939246e-03 7.087659e-03
## FZR1 -1.016634e+01 2.218043e+01 -4.347335 2.847492e-05 3.098280e-04
## SPTY2D1 1.014331e+01 3.829898e+01 2.794719 6.023378e-03 1.734335e-02
## CDC27 1.013241e+01 3.699892e+01 4.631619 9.046218e-06 1.412243e-04
## NAA60 -1.012562e+01 3.321897e+01 -3.425510 8.333923e-04 3.699114e-03
## TMOD2 1.011744e+01 3.218961e+01 2.693950 8.042204e-03 2.180114e-02
## MSRA -1.011103e+01 1.989037e+01 -3.579066 4.935287e-04 2.503529e-03
## SLC24A4 1.010750e+01 4.155545e+01 2.425430 1.673496e-02 3.940374e-02
## DYNC1LI2 1.010635e+01 4.561655e+01 3.308910 1.227193e-03 4.974041e-03
## YPEL2 1.008722e+01 3.750076e+01 2.949421 3.808382e-03 1.207258e-02
## ARFGEF2 1.008605e+01 2.004439e+01 4.593341 1.058490e-05 1.593108e-04
## PAF1 -1.006753e+01 4.691603e+01 -2.911370 4.269957e-03 1.324312e-02
## TUBGCP2 -1.006163e+01 3.021933e+01 -4.576787 1.132607e-05 1.667855e-04
## GALK1 -1.005748e+01 1.286662e+01 -4.377331 2.528580e-05 2.893471e-04
## TRAPPC12 -1.005530e+01 1.905027e+01 -6.580540 1.192737e-09 3.177468e-07
## FAM102A -1.005526e+01 2.275257e+01 -2.640843 9.336892e-03 2.453780e-02
## CCDC107 -1.005503e+01 1.338205e+01 -3.654142 3.797893e-04 2.063354e-03
## SNTB1 1.003891e+01 3.299569e+01 4.425985 2.083116e-05 2.526088e-04
## UBR1 1.003323e+01 2.268988e+01 5.011429 1.822913e-06 4.434920e-05
## RNF114 1.002215e+01 7.231145e+01 2.562588 1.158883e-02 2.918742e-02
## SLC35A1 1.001430e+01 4.787335e+01 2.857747 5.007853e-03 1.502863e-02
## NMRAL1 -1.000008e+01 1.672887e+01 -3.760170 2.606689e-04 1.554728e-03
## ATG2B 9.997043e+00 3.168065e+01 3.245836 1.506970e-03 5.821717e-03
## FLT3LG -9.990968e+00 1.002819e+01 -3.982289 1.157047e-04 8.575216e-04
## CLCN3 9.989313e+00 2.990211e+01 4.154779 6.026383e-05 5.435201e-04
## IFFO1 -9.973324e+00 2.912753e+01 -5.406525 3.183998e-07 1.311188e-05
## CYHR1 -9.962471e+00 1.810429e+01 -4.927832 2.610667e-06 5.798224e-05
## NDUFA2 -9.961832e+00 3.469396e+01 -2.414517 1.722078e-02 4.036019e-02
## UBE3C 9.960265e+00 4.073525e+01 4.449701 1.894403e-05 2.367505e-04
## LSM7 -9.951176e+00 1.604372e+01 -3.306784 1.235773e-03 4.986821e-03
## CXCR5 -9.949433e+00 1.186253e+01 -4.697938 6.877503e-06 1.142925e-04
## SELENOH -9.943807e+00 1.989418e+01 -3.319467 1.185403e-03 4.846220e-03
## RABEP1 9.940764e+00 3.869741e+01 3.947215 1.318151e-04 9.428997e-04
## C7orf50 -9.935769e+00 8.402341e+00 -4.710699 6.522372e-06 1.094519e-04
## FOXJ3 9.934718e+00 3.821496e+01 3.938187 1.362954e-04 9.675291e-04
## JMJD8 -9.933446e+00 1.656877e+01 -3.677749 3.494860e-04 1.930556e-03
## NAXE -9.918290e+00 2.138874e+01 -3.150170 2.046674e-03 7.389211e-03
## TRPV2 -9.910249e+00 3.707748e+01 -3.235057 1.560363e-03 5.969646e-03
## ITPR2 9.909687e+00 3.673179e+01 2.816991 5.644827e-03 1.651276e-02
## CDK11B -9.902050e+00 5.065261e+01 -2.857878 5.005908e-03 1.502659e-02
## TARS1 9.901271e+00 3.090826e+01 4.939702 2.481414e-06 5.584358e-05
## MED11 -9.886337e+00 2.602434e+01 -4.912467 2.787717e-06 6.060701e-05
## PRKAG2 9.869533e+00 4.281959e+01 2.684838 8.252074e-03 2.224309e-02
## PLXND1 -9.867982e+00 2.630384e+01 -3.421778 8.439014e-04 3.734579e-03
## TMEM203 -9.866946e+00 2.160083e+01 -3.576403 4.981025e-04 2.514898e-03
## SLC35A4 -9.845647e+00 5.713100e+01 -2.764026 6.583028e-03 1.862469e-02
## COMT -9.824699e+00 1.564950e+01 -5.034317 1.651152e-06 4.140099e-05
## C21orf91 9.796598e+00 4.130028e+01 2.742500 7.003339e-03 1.952047e-02
## STX8 -9.795108e+00 2.600792e+01 -4.022279 9.963021e-05 7.733077e-04
## NELFB -9.784245e+00 2.089472e+01 -4.575494 1.138606e-05 1.671271e-04
## TBCD -9.774092e+00 2.108134e+01 -4.303263 3.387177e-05 3.551893e-04
## CLASP1 9.766930e+00 3.223553e+01 3.190856 1.798268e-03 6.677351e-03
## ANAPC1 9.764642e+00 4.388257e+01 4.574542 1.143038e-05 1.675702e-04
## TARDBP 9.762557e+00 8.104648e+01 2.974218 3.532778e-03 1.137308e-02
## FRMD3 9.757887e+00 1.583204e+01 4.585742 1.091915e-05 1.626824e-04
## CTBP1 -9.743593e+00 4.617189e+01 -3.207055 1.707414e-03 6.420571e-03
## R3HDM2 9.738203e+00 4.754458e+01 2.764467 6.574663e-03 1.861787e-02
## OXLD1 -9.727464e+00 1.535605e+01 -4.730837 5.997778e-06 1.032937e-04
## GRHPR -9.725633e+00 2.369453e+01 -4.545698 1.285578e-05 1.819445e-04
## AGAP3 -9.724397e+00 1.427110e+01 -5.560399 1.581632e-07 8.227260e-06
## SMDT1 -9.722173e+00 2.230625e+01 -2.835956 5.339737e-03 1.580466e-02
## MRPS34 -9.709703e+00 1.684001e+01 -3.472127 7.120548e-04 3.283848e-03
## GTF2F1 -9.706590e+00 3.457997e+01 -4.028801 9.721976e-05 7.595386e-04
## LMBR1L -9.699237e+00 3.839617e+01 -3.265972 1.411767e-03 5.520542e-03
## PNKD -9.692857e+00 3.639197e+01 -3.239457 1.538357e-03 5.907637e-03
## HDHD5 -9.684372e+00 1.875453e+01 -5.278334 5.655401e-07 1.924805e-05
## NISCH -9.677786e+00 4.568418e+01 -3.250073 1.486455e-03 5.751827e-03
## CLN6 -9.675938e+00 2.197383e+01 -2.845651 5.189675e-03 1.546083e-02
## RECQL 9.665919e+00 4.278681e+01 3.315272 1.201847e-03 4.898248e-03
## MCU 9.662214e+00 3.360175e+01 3.054256 2.763653e-03 9.372869e-03
## BMPR2 9.657025e+00 2.047370e+01 4.375507 2.546948e-05 2.907295e-04
## MAP4K1 -9.622105e+00 2.700362e+01 -2.369461 1.936176e-02 4.439020e-02
## BAP1 -9.616784e+00 6.256992e+01 -2.717994 7.511413e-03 2.063020e-02
## PRELID3B 9.606129e+00 3.881452e+01 3.934567 1.381326e-04 9.763129e-04
## CNOT6 9.593662e+00 2.988508e+01 4.517286 1.442684e-05 1.984946e-04
## UAP1 9.591495e+00 1.591913e+01 4.184721 5.371155e-05 5.019850e-04
## CCT4 -9.586990e+00 6.435595e+01 -2.313166 2.236535e-02 4.962640e-02
## CCDC22 -9.581448e+00 1.477379e+01 -4.689923 7.110062e-06 1.172814e-04
## ZDHHC2 9.578476e+00 3.960195e+01 2.843486 5.222848e-03 1.553234e-02
## TMX1 9.572790e+00 4.994364e+01 3.293073 1.292476e-03 5.150794e-03
## RELB -9.559953e+00 2.527917e+01 -3.144168 2.085912e-03 7.498638e-03
## CEBPZOS -9.553234e+00 2.850579e+01 -3.776881 2.454897e-04 1.494614e-03
## ZRSR2 -9.547597e+00 2.293016e+01 -5.359409 3.936078e-07 1.525552e-05
## VDAC3 9.539775e+00 8.245638e+01 3.360791 1.034285e-03 4.370009e-03
## ANKIB1 9.529946e+00 2.255026e+01 4.868644 3.359162e-06 6.880770e-05
## PLA2G15 -9.527625e+00 1.364228e+01 -4.946613 2.409046e-06 5.483933e-05
## ZBTB22 -9.500903e+00 2.735622e+01 -4.666754 7.825900e-06 1.259365e-04
## PRDM1 9.498382e+00 4.618261e+01 2.343200 2.071540e-02 4.672940e-02
## HDAC3 -9.497677e+00 5.945637e+01 -4.098608 7.467813e-05 6.287306e-04
## SUMF2 -9.484176e+00 4.454928e+01 -2.470282 1.486369e-02 3.586641e-02
## TIMM8B -9.483288e+00 2.565855e+01 -2.535282 1.248270e-02 3.111492e-02
## MRPL24 -9.480651e+00 1.931318e+01 -3.660838 3.709505e-04 2.023676e-03
## PMVK -9.470372e+00 1.652029e+01 -3.385847 9.516538e-04 4.095288e-03
## CCNT2 9.465551e+00 4.794816e+01 2.463144 1.514840e-02 3.639053e-02
## CAMTA2 -9.456868e+00 4.590435e+01 -3.039331 2.894152e-03 9.715439e-03
## HINT3 9.447477e+00 2.993292e+01 3.654541 3.792569e-04 2.061406e-03
## B4GALT4 9.431644e+00 2.418808e+01 2.690172 8.128623e-03 2.198528e-02
## SLC35C2 -9.416764e+00 4.094905e+01 -2.443080 1.597495e-02 3.795331e-02
## TBC1D10A -9.406603e+00 1.535882e+01 -6.369597 3.384400e-09 5.735366e-07
## SLC25A29 -9.404405e+00 1.768666e+01 -4.126827 6.706718e-05 5.823342e-04
## RBM12 9.390295e+00 5.145961e+01 3.891796 1.617049e-04 1.097779e-03
## SREBF2 9.386535e+00 4.336545e+01 3.445493 7.791765e-04 3.515175e-03
## LIME1 -9.382291e+00 8.501134e+00 -3.103654 2.369554e-03 8.282615e-03
## CDC73 9.375120e+00 3.898623e+01 2.811575 5.734830e-03 1.671954e-02
## MTMR1 -9.373496e+00 2.914113e+01 -2.731169 7.234252e-03 2.004163e-02
## NDUFS1 9.373422e+00 3.990601e+01 4.767562 5.144378e-06 9.373006e-05
## COMMD7 -9.366315e+00 3.257114e+01 -3.073149 2.606269e-03 8.954331e-03
## VPS26C 9.365394e+00 5.577481e+01 2.597821 1.052062e-02 2.704701e-02
## NACC1 -9.357315e+00 2.547819e+01 -4.921931 2.677327e-06 5.932282e-05
## POLR1H -9.355537e+00 2.668011e+01 -3.321873 1.176066e-03 4.821344e-03
## RIC8A -9.355315e+00 7.083822e+01 -2.896750 4.460561e-03 1.371235e-02
## ETNK1 9.345539e+00 4.377615e+01 3.477672 6.987803e-04 3.243653e-03
## RELCH 9.337303e+00 4.382168e+01 3.119546 2.254279e-03 7.976059e-03
## RANBP3 -9.335289e+00 2.980396e+01 -5.079582 1.356577e-06 3.591296e-05
## SFXN5 -9.315530e+00 3.142315e+01 -4.148594 6.170972e-05 5.519953e-04
## DDX41 -9.284437e+00 3.839261e+01 -3.112939 2.301557e-03 8.090239e-03
## SERTAD3 -9.282715e+00 3.845581e+01 -2.991486 3.351827e-03 1.092106e-02
## SENP2 9.279939e+00 3.246777e+01 3.856295 1.841336e-04 1.215261e-03
## PRCC -9.255968e+00 3.817117e+01 -3.264645 1.417861e-03 5.533917e-03
## ANO9 -9.246071e+00 9.193611e+00 -3.532745 5.790084e-04 2.804018e-03
## MRPL11 -9.238046e+00 1.970341e+01 -3.129121 2.187357e-03 7.774063e-03
## SMC1A 9.234461e+00 4.665230e+01 2.817775 5.631910e-03 1.648839e-02
## ASL -9.232461e+00 2.054356e+01 -3.760096 2.607382e-04 1.554728e-03
## TXNL4A -9.227500e+00 2.897186e+01 -3.371106 9.994836e-04 4.257857e-03
## LARP7 9.226712e+00 4.758516e+01 3.359658 1.038177e-03 4.381772e-03
## OXR1 9.225176e+00 3.364684e+01 2.915169 4.221666e-03 1.312768e-02
## PPP1R7 -9.216488e+00 4.626269e+01 -3.184955 1.832467e-03 6.776758e-03
## WDR46 -9.215998e+00 2.379193e+01 -3.355122 1.053891e-03 4.424478e-03
## DHRS4L2 -9.197883e+00 1.293471e+01 -3.931401 1.397587e-04 9.837019e-04
## MTOR 9.194004e+00 3.125682e+01 5.027672 1.699328e-06 4.234039e-05
## NDUFS6 -9.188987e+00 1.720792e+01 -2.919846 4.162904e-03 1.297216e-02
## DYNLL2 9.176244e+00 8.140808e+01 2.404741 1.766657e-02 4.129396e-02
## SIN3B -9.171010e+00 2.379947e+01 -6.929593 2.056497e-10 1.060437e-07
## CINP -9.168228e+00 1.988453e+01 -4.355502 2.757014e-05 3.047361e-04
## TTC17 9.167322e+00 4.557256e+01 3.711883 3.096917e-04 1.766688e-03
## ARID1B 9.164698e+00 2.962887e+01 4.496906 1.566623e-05 2.076328e-04
## ZNF333 9.145540e+00 4.115134e+01 2.401336 1.782425e-02 4.155605e-02
## ATRAID -9.141499e+00 5.035186e+01 -2.432849 1.641165e-02 3.876562e-02
## MED16 -9.140483e+00 1.375212e+01 -4.251015 4.154729e-05 4.137286e-04
## TRAF1 -9.140410e+00 2.053752e+01 -3.949178 1.308594e-04 9.371932e-04
## GIT1 -9.140121e+00 2.683896e+01 -3.545157 5.548285e-04 2.714631e-03
## GON4L 9.127808e+00 4.522734e+01 3.934749 1.380396e-04 9.762372e-04
## PDXDC1 9.109635e+00 2.722793e+01 4.531049 1.364397e-05 1.898683e-04
## MARCKSL1 -9.103561e+00 3.275804e+01 -2.475472 1.465966e-02 3.547512e-02
## DENND4C 9.097444e+00 2.295997e+01 4.159800 5.911400e-05 5.364132e-04
## NECAP1 9.096252e+00 4.173764e+01 2.341244 2.081948e-02 4.692385e-02
## GOLGA4 9.092166e+00 3.466121e+01 3.147219 2.065884e-03 7.435928e-03
## MTIF3 -9.082101e+00 4.236750e+01 -2.895108 4.482450e-03 1.376335e-02
## CD5 -9.080310e+00 2.181892e+01 -2.494071 1.394894e-02 3.415244e-02
## SEC23B 9.061393e+00 5.015761e+01 3.010360 3.163852e-03 1.042603e-02
## LYSMD3 9.057998e+00 3.226299e+01 2.953839 3.757878e-03 1.194864e-02
## GET4 -9.056285e+00 1.780252e+01 -4.428531 2.062025e-05 2.509417e-04
## TTN 9.052531e+00 2.737567e+01 2.817682 5.633444e-03 1.648881e-02
## NUS1 9.036324e+00 3.757963e+01 3.600994 4.573549e-04 2.359386e-03
## SELENOO -9.028518e+00 1.127924e+01 -4.517814 1.439600e-05 1.984946e-04
## MRPL23 -9.028512e+00 1.853853e+01 -2.982181 3.448245e-03 1.116772e-02
## HSD17B4 9.017397e+00 4.753865e+01 2.777873 6.324933e-03 1.803149e-02
## DCAF10 9.014333e+00 2.555328e+01 4.970675 2.172728e-06 5.032922e-05
## ATG7 -9.013234e+00 6.132540e+01 -2.879424 4.696529e-03 1.427129e-02
## GPANK1 -9.012684e+00 3.499910e+01 -2.922981 4.123936e-03 1.288119e-02
## MCM4 9.005639e+00 1.195038e+01 6.796341 4.041276e-10 1.497798e-07
## ECHS1 -8.998284e+00 1.847767e+01 -3.982157 1.157618e-04 8.575216e-04
## SRSF4 8.996599e+00 6.388645e+01 2.888428 4.572502e-03 1.397308e-02
## CENPT -8.990250e+00 2.019970e+01 -3.712871 3.086064e-04 1.765292e-03
## CCSER2 8.986630e+00 2.716709e+01 4.048028 9.043436e-05 7.212855e-04
## PBRM1 8.986429e+00 3.209826e+01 3.760570 2.602956e-04 1.554728e-03
## MFSD10 -8.958810e+00 1.274814e+01 -4.132366 6.566315e-05 5.747343e-04
## SEC24A 8.956937e+00 2.681140e+01 2.975342 3.520733e-03 1.134055e-02
## USP16 8.946898e+00 3.370198e+01 3.915569 1.481675e-04 1.027041e-03
## TRAK2 8.946895e+00 3.640937e+01 3.467176 7.241052e-04 3.320916e-03
## KAT5 -8.944011e+00 3.823578e+01 -4.014233 1.026825e-04 7.867017e-04
## ZFYVE26 8.935819e+00 2.543646e+01 3.663226 3.678454e-04 2.011363e-03
## ZNF254 -8.930689e+00 1.428192e+01 -3.354416 1.056358e-03 4.433264e-03
## TAF8 8.927264e+00 3.178794e+01 3.569033 5.109656e-04 2.564559e-03
## NNT 8.918006e+00 3.187482e+01 4.880466 3.194686e-06 6.694165e-05
## COMMD9 -8.916401e+00 3.856956e+01 -3.555734 5.349773e-04 2.649198e-03
## APPBP2 8.910111e+00 3.302521e+01 3.779641 2.430654e-04 1.485191e-03
## NLRX1 -8.899599e+00 2.722800e+01 -3.441805 7.889261e-04 3.546878e-03
## STARD3 -8.899245e+00 4.642118e+01 -3.170744 1.917328e-03 7.018369e-03
## NOC2L -8.898222e+00 1.878158e+01 -4.494840 1.579746e-05 2.086391e-04
## BDP1 8.890475e+00 2.056879e+01 4.436556 1.996869e-05 2.455745e-04
## ETHE1 -8.887898e+00 2.039038e+01 -2.997393 3.291917e-03 1.075688e-02
## DGKQ -8.878022e+00 1.339824e+01 -5.450300 2.612209e-07 1.135566e-05
## ECHDC1 -8.866362e+00 5.240248e+01 -3.135493 2.143851e-03 7.660565e-03
## SYNCRIP 8.860907e+00 5.656288e+01 2.506956 1.347475e-02 3.317637e-02
## FAM214A 8.855944e+00 2.911284e+01 3.946938 1.319504e-04 9.432772e-04
## POLRMT -8.847287e+00 1.124837e+01 -4.407820 2.239781e-05 2.664374e-04
## CNOT7 8.842623e+00 6.337168e+01 3.139209 2.118853e-03 7.592022e-03
## ZNF664 8.830968e+00 2.391788e+01 4.479989 1.677246e-05 2.174703e-04
## RFX5 8.828954e+00 3.812953e+01 2.954365 3.751900e-03 1.193603e-02
## SLC27A1 -8.825697e+00 9.182019e+00 -5.672703 9.427774e-08 5.916053e-06
## CNOT3 -8.821391e+00 3.386693e+01 -3.483750 6.845008e-04 3.188391e-03
## GIGYF2 8.818817e+00 3.991660e+01 3.186680 1.822408e-03 6.751944e-03
## ZNF622 -8.813284e+00 3.338130e+01 -3.867165 1.769698e-04 1.175175e-03
## MYC -8.812746e+00 2.615070e+01 -3.262192 1.429201e-03 5.564781e-03
## MNT -8.811986e+00 2.408578e+01 -5.677969 9.200550e-08 5.838456e-06
## ACP5 -8.802573e+00 1.561636e+01 -3.609622 4.438196e-04 2.308640e-03
## OTUD4 8.799953e+00 2.311827e+01 4.000904 1.079363e-04 8.174487e-04
## GPR162 -8.790264e+00 1.056945e+01 -4.452503 1.873232e-05 2.350956e-04
## TP53I13 -8.790074e+00 7.957969e+00 -4.469365 1.750533e-05 2.236679e-04
## KIAA2026 8.780823e+00 2.650521e+01 3.535357 5.738398e-04 2.784672e-03
## LDLR 8.777371e+00 1.492274e+01 4.419071 2.141464e-05 2.568065e-04
## RWDD1 -8.768283e+00 2.810940e+01 -4.062077 8.576474e-05 6.957386e-04
## SF3A2 -8.768095e+00 1.103003e+01 -4.432365 2.030644e-05 2.480272e-04
## CIAO2B -8.766439e+00 2.813526e+01 -2.482585 1.438412e-02 3.498681e-02
## UPK3BL1 -8.764124e+00 2.331188e+01 -2.582642 1.096945e-02 2.794514e-02
## SRBD1 8.753208e+00 3.101500e+01 2.502668 1.363094e-02 3.348082e-02
## RAD23A -8.748217e+00 2.717567e+01 -2.477182 1.459300e-02 3.536432e-02
## PPP2CB 8.747941e+00 2.876596e+01 3.569628 5.099156e-04 2.562594e-03
## PNPT1 8.745414e+00 1.826990e+01 2.777446 6.332765e-03 1.804146e-02
## FNBP4 8.744821e+00 3.836534e+01 3.074402 2.596130e-03 8.929844e-03
## SF3B4 -8.744801e+00 3.606203e+01 -5.585957 1.406642e-07 7.575529e-06
## ZBTB11 8.741341e+00 3.351740e+01 3.186496 1.823480e-03 6.751944e-03
## HMGCL -8.738882e+00 2.599589e+01 -4.077952 8.076621e-05 6.638165e-04
## COMMD5 -8.735469e+00 1.860388e+01 -4.699933 6.820769e-06 1.136156e-04
## YIF1B -8.731201e+00 1.808188e+01 -3.613450 4.379363e-04 2.284048e-03
## PHACTR2 8.722694e+00 1.961838e+01 3.358733 1.041363e-03 4.387412e-03
## MYLK 8.721752e+00 1.493465e+01 3.846613 1.907459e-04 1.247792e-03
## RAB34 -8.721607e+00 1.661925e+01 -3.836450 1.979296e-04 1.280752e-03
## CEP85L 8.720157e+00 2.792517e+01 3.282261 1.338891e-03 5.294848e-03
## EIF4G1 8.691453e+00 7.173805e+01 2.358481 1.991789e-02 4.535313e-02
## RSF1 8.688125e+00 2.169969e+01 4.164586 5.803779e-05 5.290763e-04
## FAM234A -8.672967e+00 1.168475e+01 -5.271037 5.842026e-07 1.959547e-05
## SELENON -8.672339e+00 2.696512e+01 -3.423965 8.377258e-04 3.714179e-03
## ZKSCAN1 8.667582e+00 3.904944e+01 3.234360 1.563874e-03 5.977294e-03
## LATS2 8.653157e+00 1.903370e+01 4.220144 4.684032e-05 4.534907e-04
## ACSS2 -8.627489e+00 4.490624e+01 -2.863203 4.927761e-03 1.484461e-02
## TP53BP2 8.627374e+00 3.436596e+01 2.602347 1.038999e-02 2.675602e-02
## DHRS4 -8.611970e+00 1.587576e+01 -4.058794 8.683493e-05 7.017993e-04
## EXOSC4 -8.609682e+00 8.740912e+00 -2.493258 1.397932e-02 3.420028e-02
## CTNNBL1 -8.607879e+00 3.493474e+01 -3.262593 1.427342e-03 5.560188e-03
## FAM168A 8.598471e+00 4.525422e+01 2.570247 1.134867e-02 2.865557e-02
## DHCR24 8.597507e+00 1.364447e+01 5.295089 5.248641e-07 1.841683e-05
## FBXW11 8.596324e+00 3.109664e+01 3.531177 5.821343e-04 2.818005e-03
## ACADM 8.595116e+00 2.094770e+01 5.353804 4.036357e-07 1.559185e-05
## PARP15 8.595035e+00 4.232133e+01 3.028567 2.991775e-03 9.964182e-03
## ATP6V0A1 -8.587962e+00 5.292454e+01 -2.502743 1.362819e-02 3.348082e-02
## MAN1A2 8.585086e+00 2.294460e+01 4.278554 3.731442e-05 3.808511e-04
## MAP3K14 -8.584942e+00 1.994426e+01 -4.389005 2.414002e-05 2.798637e-04
## NFKBIE -8.580852e+00 1.940920e+01 -3.492219 6.650597e-04 3.116000e-03
## SLC2A5 8.576534e+00 9.218800e+00 3.313305 1.209631e-03 4.923208e-03
## TUBGCP6 -8.569538e+00 2.662201e+01 -3.376361 9.821803e-04 4.194691e-03
## KPNA5 8.566771e+00 2.838497e+01 2.883853 4.635139e-03 1.412092e-02
## AKR1B1 -8.565476e+00 2.668506e+01 -2.515167 1.318015e-02 3.255917e-02
## EXOC5 8.562378e+00 3.666966e+01 3.197727 1.759195e-03 6.577571e-03
## TMEM129 -8.559821e+00 1.830864e+01 -5.329553 4.499728e-07 1.662516e-05
## ARSB 8.558674e+00 2.308291e+01 5.123454 1.120212e-06 3.175596e-05
## MICOS13 -8.546411e+00 9.441504e+00 -3.919229 1.461819e-04 1.016843e-03
## CDK16 -8.545408e+00 2.956962e+01 -3.044408 2.849138e-03 9.607841e-03
## LSM8 -8.529129e+00 3.452969e+01 -4.132651 6.559153e-05 5.745315e-04
## SIL1 -8.528876e+00 1.473963e+01 -3.841507 1.943239e-04 1.264040e-03
## MATK -8.525484e+00 9.315206e+00 -3.380515 9.687015e-04 4.149079e-03
## PRPF19 -8.521413e+00 4.128558e+01 -2.491072 1.406141e-02 3.437812e-02
## ZBTB7A -8.520632e+00 2.384968e+01 -5.507418 2.014939e-07 9.309299e-06
## SECISBP2L 8.516326e+00 3.151118e+01 2.648449 9.140600e-03 2.413346e-02
## LSM4 -8.513920e+00 2.153803e+01 -3.521516 6.017383e-04 2.885813e-03
## CUEDC1 -8.513155e+00 1.455608e+01 -6.033670 1.723394e-08 1.841392e-06
## E2F1 8.506979e+00 1.297867e+01 3.601934 4.558617e-04 2.354756e-03
## RASSF7 -8.494862e+00 7.936898e+00 -3.622294 4.246242e-04 2.236254e-03
## NDOR1 -8.486897e+00 1.651867e+01 -3.696465 3.271026e-04 1.836855e-03
## FBXW4 -8.480540e+00 2.167381e+01 -3.517597 6.098658e-04 2.915360e-03
## PEAK3 -8.477052e+00 1.547851e+01 -4.109352 7.168773e-05 6.090376e-04
## PAICS 8.470501e+00 2.055779e+01 5.076093 1.377334e-06 3.621991e-05
## NDUFB5 -8.470478e+00 3.728487e+01 -4.915145 2.756036e-06 6.019630e-05
## MIS18BP1 8.469332e+00 3.257726e+01 2.742027 7.012852e-03 1.954239e-02
## RRAS -8.468570e+00 1.392990e+01 -2.935921 3.966622e-03 1.247194e-02
## GNL3L 8.467273e+00 2.936114e+01 5.260347 6.126289e-07 2.029547e-05
## MTRNR2L3 -8.466221e+00 1.428124e+01 -3.975083 1.188529e-04 8.757883e-04
## UBR3 8.460046e+00 2.758518e+01 3.238617 1.542536e-03 5.920544e-03
## MRPL38 -8.451777e+00 1.417414e+01 -3.218122 1.647814e-03 6.239806e-03
## PEX16 -8.437557e+00 1.218291e+01 -4.349074 2.827990e-05 3.089093e-04
## SLFN13 8.423497e+00 1.754261e+01 6.374270 3.307656e-09 5.735366e-07
## C5orf51 8.422851e+00 2.241249e+01 4.436867 1.994380e-05 2.455745e-04
## KPNA6 8.420130e+00 4.246204e+01 3.763579 2.575022e-04 1.546317e-03
## AKAP9 8.416926e+00 3.393378e+01 2.874523 4.765327e-03 1.444334e-02
## TNRC18 -8.395595e+00 3.905694e+01 -3.244480 1.513591e-03 5.841586e-03
## UBE2J2 -8.386388e+00 2.843482e+01 -4.556782 1.228884e-05 1.770908e-04
## DDX18 8.378359e+00 3.476933e+01 2.958362 3.706811e-03 1.182113e-02
## FAM76B 8.372849e+00 3.031518e+01 2.752747 6.800318e-03 1.907112e-02
## NSMF -8.365221e+00 1.117961e+01 -5.849720 4.124941e-08 3.366602e-06
## ESRRA -8.361910e+00 2.287860e+01 -4.881573 3.179693e-06 6.686376e-05
## PLEKHM3 8.360794e+00 1.785398e+01 3.833767 1.998688e-04 1.290389e-03
## TRIM26 8.350535e+00 3.837458e+01 3.188134 1.813972e-03 6.727239e-03
## ARL5A 8.347758e+00 3.234736e+01 4.234085 4.437447e-05 4.335100e-04
## FRMD8 -8.340719e+00 4.482045e+01 -2.842456 5.238701e-03 1.557168e-02
## GPATCH8 8.336101e+00 2.878337e+01 3.308240 1.229892e-03 4.974041e-03
## IPO7 8.335786e+00 2.954097e+01 2.994684 3.319268e-03 1.082985e-02
## EMG1 -8.331857e+00 3.052906e+01 -2.631576 9.581188e-03 2.506239e-02
## MIF4GD -8.328229e+00 2.396256e+01 -3.698592 3.246469e-04 1.828258e-03
## SPNS1 -8.325823e+00 1.207527e+01 -5.398063 3.307843e-07 1.343528e-05
## DPM2 -8.324016e+00 1.847944e+01 -2.448108 1.576414e-02 3.753516e-02
## EGF 8.319994e+00 1.065500e+01 4.094794 7.576813e-05 6.336166e-04
## ARHGEF18 -8.314231e+00 5.622365e+01 -2.677309 8.429239e-03 2.262684e-02
## PDZD4 -8.310019e+00 1.144778e+01 -3.479023 6.955835e-04 3.231344e-03
## AGPS 8.305253e+00 2.898108e+01 3.961579 1.249742e-04 9.087642e-04
## DAGLB -8.291548e+00 2.410453e+01 -4.340077 2.930291e-05 3.167871e-04
## MIGA2 -8.286353e+00 2.307077e+01 -3.455899 7.522732e-04 3.426252e-03
## DRAM2 -8.283307e+00 5.342142e+01 -2.906336 4.334723e-03 1.340892e-02
## EHD3 8.277622e+00 2.032934e+01 3.646087 3.906857e-04 2.099471e-03
## REPIN1 -8.273438e+00 2.288002e+01 -4.552337 1.251322e-05 1.787903e-04
## INO80E -8.271845e+00 1.610606e+01 -4.942723 2.449519e-06 5.554742e-05
## CLEC5A 8.263005e+00 1.976708e+01 2.390998 1.831061e-02 4.244797e-02
## STX17 8.255873e+00 1.881522e+01 4.237990 4.370638e-05 4.305296e-04
## SH2B1 -8.254867e+00 2.723072e+01 -4.436397 1.998140e-05 2.455745e-04
## EPHB4 -8.241451e+00 1.796142e+01 -2.748895 6.875988e-03 1.922877e-02
## KCNN4 -8.238052e+00 1.033067e+01 -4.429583 2.053364e-05 2.502867e-04
## ZMAT5 -8.237729e+00 1.938715e+01 -3.553826 5.385075e-04 2.662234e-03
## CPSF1 -8.232902e+00 2.130243e+01 -2.756986 6.717898e-03 1.890255e-02
## PSMC2 8.228610e+00 5.054249e+01 2.800568 5.921793e-03 1.712897e-02
## LRBA 8.220344e+00 2.016484e+01 4.022020 9.972722e-05 7.735545e-04
## MYG1 -8.217427e+00 1.438284e+01 -5.011187 1.824824e-06 4.434920e-05
## XRRA1 -8.209617e+00 1.953467e+01 -2.634982 9.490728e-03 2.484769e-02
## DNAJC14 8.202569e+00 3.068707e+01 3.786652 2.370077e-04 1.461732e-03
## SEC63 8.199138e+00 4.194978e+01 3.237060 1.550309e-03 5.940042e-03
## FYTTD1 8.197484e+00 4.199973e+01 3.499149 6.495374e-04 3.056950e-03
## ZNF865 -8.188365e+00 1.158684e+01 -5.528759 1.827978e-07 8.741863e-06
## ABCC4 8.187135e+00 1.594838e+01 3.551759 5.423584e-04 2.673525e-03
## CS 8.168183e+00 6.918905e+01 2.955868 3.734892e-03 1.189469e-02
## NDUFS3 -8.161164e+00 3.057298e+01 -3.051337 2.788738e-03 9.447139e-03
## DCK 8.158244e+00 4.034795e+01 3.309741 1.223853e-03 4.965755e-03
## PIK3C2A 8.155378e+00 1.992995e+01 4.248670 4.192825e-05 4.168223e-04
## RINL -8.148207e+00 3.743900e+01 -4.106291 7.252782e-05 6.135378e-04
## SNRPA -8.131685e+00 2.112387e+01 -2.824276 5.525799e-03 1.622981e-02
## TTC37 8.131273e+00 2.561168e+01 3.390960 9.355678e-04 4.049575e-03
## POLL -8.120751e+00 1.538896e+01 -4.441237 1.959781e-05 2.429120e-04
## RCOR3 8.105906e+00 3.665050e+01 3.143350 2.091314e-03 7.513778e-03
## SLC35F5 8.103465e+00 2.968134e+01 3.448066 7.724403e-04 3.496619e-03
## TAF15 -8.096305e+00 7.300580e+01 -2.389993 1.835852e-02 4.254242e-02
## ZNF672 -8.094122e+00 2.761042e+01 -3.487307 6.762712e-04 3.157965e-03
## METTL26 -8.089685e+00 7.711972e+00 -3.813210 2.153363e-04 1.363566e-03
## SRP54 8.087718e+00 4.311980e+01 3.035708 2.926679e-03 9.794133e-03
## HAX1 -8.087264e+00 6.246693e+01 -2.397455 1.800545e-02 4.187972e-02
## DHX40 8.086213e+00 3.718926e+01 2.925154 4.097120e-03 1.280755e-02
## GCC1 8.071081e+00 3.954041e+01 2.731826 7.220671e-03 2.001336e-02
## RTL8C -8.062721e+00 1.131030e+01 -5.547428 1.678425e-07 8.363918e-06
## NUDT16L1 -8.054941e+00 1.700588e+01 -4.279517 3.717405e-05 3.804006e-04
## ATAD2 8.052568e+00 1.211435e+01 6.374953 3.296588e-09 5.735366e-07
## MAD2L1BP 8.034981e+00 3.398890e+01 2.608579 1.021256e-02 2.640528e-02
## TESPA1 -8.013359e+00 2.351743e+01 -2.460246 1.526539e-02 3.659675e-02
## ATAD2B 8.009843e+00 2.246466e+01 3.753866 2.666229e-04 1.583449e-03
## KMT2A 8.004656e+00 2.829603e+01 2.682626 8.303766e-03 2.235702e-02
## CDIP1 -7.992644e+00 1.878473e+01 -3.817035 2.123744e-04 1.350542e-03
## YKT6 -7.987319e+00 8.339764e+01 -2.346933 2.051802e-02 4.639536e-02
## H2AJ -7.986366e+00 1.515995e+01 -3.166571 1.942934e-03 7.095557e-03
## NDRG3 7.986278e+00 4.080456e+01 3.534686 5.751640e-04 2.789957e-03
## SNTB2 7.984306e+00 2.300223e+01 3.206242 1.711870e-03 6.433072e-03
## RXRB -7.973445e+00 7.544514e+01 -2.311694 2.244908e-02 4.979354e-02
## SNRNP35 -7.972632e+00 2.813585e+01 -3.243170 1.520012e-03 5.853113e-03
## SCAF8 7.959392e+00 4.052256e+01 2.459078 1.531273e-02 3.666647e-02
## ZNF581 -7.958489e+00 1.407894e+01 -3.713034 3.084268e-04 1.765292e-03
## CNST 7.954123e+00 3.201148e+01 3.633408 4.084380e-04 2.170284e-03
## RBM27 7.949101e+00 2.871347e+01 3.646518 3.900944e-04 2.099040e-03
## MINK1 -7.947154e+00 6.387061e+01 -2.506669 1.348517e-02 3.319512e-02
## DENND4A 7.946572e+00 3.262415e+01 3.232912 1.571191e-03 5.999461e-03
## TNFSF12 -7.939772e+00 2.620079e+01 -3.131639 2.170071e-03 7.726520e-03
## NRIP1 7.939309e+00 2.160272e+01 3.207348 1.705809e-03 6.420467e-03
## RASA4B -7.909203e+00 1.221461e+01 -4.174705 5.582344e-05 5.148258e-04
## GALNT10 7.908612e+00 4.787751e+01 4.270065 3.857287e-05 3.870340e-04
## C2CD3 7.904581e+00 1.859546e+01 4.530809 1.365724e-05 1.898683e-04
## FAM3A -7.897952e+00 1.098795e+01 -4.542953 1.300002e-05 1.832339e-04
## ECPAS 7.890047e+00 5.179794e+01 2.662161 8.796104e-03 2.339605e-02
## PUM1 7.887575e+00 4.105636e+01 3.132877 2.161617e-03 7.703360e-03
## RPAP2 7.884248e+00 2.077064e+01 4.511347 1.477786e-05 2.007623e-04
## OTULIN 7.883990e+00 2.837373e+01 3.911782 1.502492e-04 1.034818e-03
## BLZF1 7.872407e+00 2.160260e+01 3.537370 5.698843e-04 2.772284e-03
## ELK4 7.868518e+00 2.604580e+01 3.281185 1.343596e-03 5.309911e-03
## FPGS -7.862274e+00 1.260087e+01 -4.094279 7.591646e-05 6.336166e-04
## NUP205 7.862242e+00 1.882619e+01 4.367716 2.626857e-05 2.958644e-04
## WDR81 -7.860864e+00 1.590335e+01 -3.842432 1.936711e-04 1.260669e-03
## STRADA -7.850553e+00 3.738181e+01 -3.826951 2.048767e-04 1.315559e-03
## NUSAP1 7.833511e+00 9.537710e+00 5.954191 2.516991e-08 2.407380e-06
## CCDC9 -7.809213e+00 1.475414e+01 -3.937948 1.364161e-04 9.675291e-04
## EID1 -7.808562e+00 6.863975e+01 -2.484261 1.431988e-02 3.486630e-02
## TNNI2 -7.801322e+00 6.999728e+00 -5.962379 2.420948e-08 2.389218e-06
## KDELR1 -7.800321e+00 4.302458e+01 -2.820175 5.592522e-03 1.638925e-02
## NRM -7.798993e+00 1.595552e+01 -4.469157 1.752002e-05 2.236679e-04
## XRCC1 -7.793504e+00 2.436230e+01 -5.397143 3.321589e-07 1.344507e-05
## UBE2E1 7.789447e+00 4.265987e+01 3.424080 8.374046e-04 3.714143e-03
## SLC25A1 -7.787942e+00 1.218737e+01 -4.432940 2.025972e-05 2.477117e-04
## BABAM2 -7.787223e+00 2.734741e+01 -4.814440 4.224596e-06 8.173525e-05
## TPCN1 -7.787082e+00 1.895048e+01 -4.066911 8.421235e-05 6.859605e-04
## CDC14B 7.781177e+00 1.230706e+01 4.853178 3.586801e-06 7.210078e-05
## HNMT -7.776904e+00 1.926410e+01 -3.998066 1.090876e-04 8.229676e-04
## TATDN2 7.776336e+00 6.748421e+01 3.557839 5.311070e-04 2.634433e-03
## MPG -7.773754e+00 8.838878e+00 -4.813384 4.243432e-06 8.196598e-05
## ZNF518A 7.769113e+00 3.079097e+01 2.662157 8.796205e-03 2.339605e-02
## DERL2 -7.759611e+00 4.675822e+01 -3.042564 2.865410e-03 9.646123e-03
## PCNX4 7.759038e+00 2.670849e+01 3.413428 8.678688e-04 3.815020e-03
## CEP192 7.758748e+00 2.353103e+01 3.293648 1.290048e-03 5.146306e-03
## TCOF1 -7.758478e+00 1.955055e+01 -3.391411 9.341630e-04 4.046447e-03
## LEMD2 -7.751555e+00 4.078282e+01 -4.100728 7.407882e-05 6.244312e-04
## PRKRIP1 -7.750366e+00 2.551916e+01 -4.132893 6.553091e-05 5.744246e-04
## CARD19 -7.738095e+00 1.928393e+01 -3.129561 2.184327e-03 7.769482e-03
## TBC1D23 7.737784e+00 3.863476e+01 2.706666 7.757404e-03 2.117928e-02
## ARMC7 -7.728343e+00 2.531383e+01 -3.160727 1.979326e-03 7.196447e-03
## AP5M1 7.720902e+00 4.154590e+01 2.708748 7.711653e-03 2.106892e-02
## REEP3 7.712062e+00 2.334613e+01 5.087560 1.310261e-06 3.505274e-05
## GFI1 7.709711e+00 1.506129e+01 2.784703 6.201063e-03 1.774297e-02
## MED23 7.709108e+00 3.481579e+01 2.397571 1.800003e-02 4.187533e-02
## SDE2 7.707715e+00 2.019426e+01 3.822178 2.084537e-04 1.330863e-03
## VPS13A 7.699998e+00 1.623763e+01 4.542790 1.300868e-05 1.832339e-04
## MOGS -7.699428e+00 3.939152e+01 -2.593209 1.065520e-02 2.733837e-02
## GPBAR1 -7.695678e+00 8.252092e+00 -4.838694 3.813505e-06 7.558984e-05
## SLBP 7.694669e+00 5.114101e+01 2.517935 1.308217e-02 3.235757e-02
## ATXN7L3B 7.687302e+00 5.556249e+01 2.790308 6.101050e-03 1.751596e-02
## COPS7A -7.686660e+00 3.298952e+01 -4.633264 8.985179e-06 1.405860e-04
## CXXC1 -7.685047e+00 2.787513e+01 -3.354039 1.057677e-03 4.437230e-03
## PLD2 -7.684614e+00 1.482156e+01 -6.350264 3.720962e-09 6.129251e-07
## CAND1 7.679876e+00 3.886795e+01 3.506479 6.334925e-04 2.996897e-03
## SUGP2 7.679165e+00 4.621708e+01 2.903896 4.366432e-03 1.348591e-02
## CDK13 7.678581e+00 3.860281e+01 2.749609 6.861911e-03 1.920299e-02
## COPS2 7.678070e+00 4.140735e+01 2.442238 1.601048e-02 3.801487e-02
## KIAA1958 7.675579e+00 1.026758e+01 4.226457 4.570793e-05 4.443410e-04
## WIPI2 -7.666470e+00 6.782077e+01 -2.543817 1.219688e-02 3.049862e-02
## RBM15B -7.665573e+00 3.841760e+01 -4.623638 9.348040e-06 1.441713e-04
## ANXA4 7.663107e+00 3.157039e+01 3.553519 5.390769e-04 2.663939e-03
## PATL2 7.658716e+00 1.928900e+01 3.834057 1.996587e-04 1.290389e-03
## C19orf25 -7.654358e+00 9.995925e+00 -4.585477 1.093095e-05 1.626824e-04
## LONP1 -7.653713e+00 1.202611e+01 -3.767598 2.538152e-04 1.531154e-03
## PPM1G -7.651552e+00 5.501452e+01 -2.726345 7.334645e-03 2.024410e-02
## HNRNPA0 -7.643134e+00 5.231583e+01 -2.831057 5.417072e-03 1.598171e-02
## ABCF3 -7.641030e+00 2.887444e+01 -3.855909 1.843929e-04 1.216295e-03
## IARS1 7.639421e+00 2.129363e+01 3.895370 1.595974e-04 1.086582e-03
## TMX3 7.632239e+00 3.815555e+01 2.694849 8.021762e-03 2.175742e-02
## OVCA2 -7.629412e+00 1.762639e+01 -3.545962 5.532925e-04 2.711127e-03
## SIRT1 7.628539e+00 2.661332e+01 2.931260 4.022641e-03 1.261463e-02
## PPIL2 -7.623689e+00 2.895664e+01 -3.989648 1.125718e-04 8.423354e-04
## DIP2A 7.621727e+00 3.502928e+01 2.878783 4.705478e-03 1.429482e-02
## NCK1 7.619898e+00 2.926003e+01 3.783313 2.398742e-04 1.470997e-03
## ZNF32 -7.612851e+00 1.629417e+01 -3.321630 1.177005e-03 4.823523e-03
## PNPLA1 7.609338e+00 2.333008e+01 2.433145 1.639887e-02 3.874314e-02
## PPP1R14B -7.607525e+00 1.286853e+01 -4.235652 4.410523e-05 4.316801e-04
## ZEB1 7.606511e+00 2.465885e+01 2.989440 3.372810e-03 1.096834e-02
## UHRF2 7.602590e+00 3.005601e+01 4.756822 5.380939e-06 9.597330e-05
## ZNF318 7.596486e+00 2.568627e+01 2.858824 4.991942e-03 1.499226e-02
## MPHOSPH8 7.588764e+00 6.376356e+01 2.507721 1.344707e-02 3.313137e-02
## SREBF1 -7.586896e+00 1.180905e+01 -6.029907 1.754682e-08 1.858083e-06
## SYMPK -7.585858e+00 2.506982e+01 -3.286077 1.322335e-03 5.241609e-03
## ZC3H15 7.580155e+00 4.990139e+01 2.358200 1.993231e-02 4.536063e-02
## MORF4L2 7.577179e+00 4.127090e+01 3.666347 3.638239e-04 1.993970e-03
## RNF185 7.573630e+00 6.056053e+01 2.312127 2.242443e-02 4.974817e-02
## ZNF524 -7.573021e+00 6.226857e+00 -5.547464 1.678146e-07 8.363918e-06
## RPA2 -7.564319e+00 5.804162e+01 -2.399468 1.791126e-02 4.169332e-02
## LEMD3 7.557303e+00 3.364193e+01 2.743555 6.982189e-03 1.948441e-02
## NHSL2 7.555284e+00 2.347604e+01 2.358089 1.993802e-02 4.536063e-02
## SCRN2 -7.554398e+00 1.024813e+01 -4.870858 3.327752e-06 6.846806e-05
## PHKB 7.541470e+00 4.623304e+01 2.849500 5.131177e-03 1.533663e-02
## TRAPPC5 -7.541441e+00 1.130855e+01 -3.369869 1.003600e-03 4.267727e-03
## DCAF15 -7.541151e+00 1.807130e+01 -5.453510 2.574470e-07 1.127093e-05
## YEATS2 7.531416e+00 2.274426e+01 5.418717 3.013482e-07 1.258447e-05
## POLM -7.529591e+00 2.148772e+01 -5.591401 1.371891e-07 7.523124e-06
## SPOUT1 -7.527275e+00 2.331154e+01 -2.814249 5.690233e-03 1.661811e-02
## ACAP3 -7.526450e+00 1.500451e+01 -3.817994 2.116385e-04 1.346584e-03
## SIKE1 7.525311e+00 2.195678e+01 4.871764 3.314980e-06 6.837507e-05
## NHP2 -7.515014e+00 1.478487e+01 -3.116922 2.272943e-03 8.013409e-03
## DMAP1 -7.489610e+00 1.628393e+01 -3.962375 1.246052e-04 9.066365e-04
## EIF4EBP3 -7.478417e+00 1.196776e+01 -4.685263 7.248764e-06 1.185798e-04
## ZSCAN29 7.476827e+00 1.847486e+01 5.402649 3.240155e-07 1.329697e-05
## DNAJB12 -7.472181e+00 4.418852e+01 -2.947020 3.836099e-03 1.214630e-02
## PSMG3 -7.466197e+00 1.167551e+01 -4.129821 6.630460e-05 5.781139e-04
## REV3L 7.464041e+00 1.774182e+01 3.785025 2.384002e-04 1.464229e-03
## RCHY1 7.460705e+00 3.129796e+01 2.740740 7.038769e-03 1.960540e-02
## MCM3 7.444678e+00 3.101750e+01 3.148773 2.055750e-03 7.415205e-03
## ASMTL -7.441448e+00 1.662093e+01 -4.530274 1.368694e-05 1.898683e-04
## HMGCS1 7.438391e+00 2.155242e+01 4.856185 3.541400e-06 7.155196e-05
## GART 7.433940e+00 2.536515e+01 4.758843 5.335633e-06 9.574091e-05
## SLC39A9 7.433295e+00 3.976978e+01 3.422873 8.408033e-04 3.722257e-03
## RIF1 7.430081e+00 2.654692e+01 3.587106 4.799628e-04 2.447274e-03
## PMM1 -7.428021e+00 1.697339e+01 -3.718670 3.023080e-04 1.741318e-03
## BUB1 7.424494e+00 7.294151e+00 5.455987 2.545725e-07 1.126578e-05
## CREB3L2 7.415067e+00 1.981567e+01 4.427134 2.073575e-05 2.518559e-04
## EIF2B4 -7.395291e+00 2.255576e+01 -3.792201 2.323152e-04 1.441034e-03
## PDZK1IP1 -7.389909e+00 9.907581e+00 -3.377019 9.800338e-04 4.187032e-03
## ZC3H13 7.389081e+00 3.932553e+01 2.703492 7.827629e-03 2.133173e-02
## GAPVD1 7.388562e+00 4.474549e+01 2.495312 1.390261e-02 3.405306e-02
## PITPNB 7.379468e+00 3.265382e+01 4.730908 5.995985e-06 1.032937e-04
## IL11RA -7.375720e+00 9.889316e+00 -3.608712 4.452297e-04 2.313946e-03
## ARL5B 7.375283e+00 1.800796e+01 3.399333 9.097795e-04 3.965449e-03
## VEGFA 7.356113e+00 1.753790e+01 3.152539 2.031380e-03 7.347414e-03
## CKAP5 7.354354e+00 2.002765e+01 4.441198 1.960091e-05 2.429120e-04
## THYN1 -7.349759e+00 3.044662e+01 -2.769496 6.479947e-03 1.839449e-02
## CSNK1G1 7.346501e+00 2.278862e+01 4.364698 2.658460e-05 2.985719e-04
## SLC39A13 -7.345983e+00 9.362732e+00 -6.411490 2.754625e-09 4.949978e-07
## ATP13A1 -7.343628e+00 2.281762e+01 -2.598665 1.049614e-02 2.699723e-02
## WDR74 -7.325798e+00 1.363374e+01 -3.792300 2.322323e-04 1.441034e-03
## TAX1BP3 -7.325086e+00 2.593053e+01 -2.789985 6.106780e-03 1.752393e-02
## OXER1 -7.319340e+00 9.987774e+00 -6.622721 9.664663e-10 2.795681e-07
## UBE4B 7.318998e+00 3.908683e+01 2.615932 1.000673e-02 2.599777e-02
## DHTKD1 7.317176e+00 3.051807e+01 2.505109 1.354184e-02 3.331050e-02
## TNIK 7.310309e+00 1.449295e+01 5.273628 5.775081e-07 1.956928e-05
## DMXL1 7.310019e+00 2.465946e+01 3.319824 1.184012e-03 4.844586e-03
## RUVBL2 -7.306434e+00 1.285314e+01 -3.187187 1.819464e-03 6.743389e-03
## THOC6 -7.302984e+00 1.286914e+01 -3.630276 4.129404e-04 2.188326e-03
## ARID5B 7.298111e+00 1.937040e+01 3.566994 5.145799e-04 2.576158e-03
## FEN1 7.296072e+00 1.415048e+01 4.106568 7.245125e-05 6.135378e-04
## ABCD4 -7.293897e+00 1.887275e+01 -5.071498 1.405143e-06 3.669442e-05
## GLCCI1 7.293690e+00 2.352113e+01 2.926140 4.085003e-03 1.277978e-02
## RPRD2 7.287564e+00 2.670022e+01 3.988603 1.130119e-04 8.440312e-04
## IRAK2 7.277684e+00 1.125861e+01 3.902767 1.553175e-04 1.062242e-03
## NUDT21 7.272600e+00 4.767534e+01 3.042812 2.863213e-03 9.641598e-03
## RANGRF -7.267765e+00 1.559046e+01 -3.624608 4.212061e-04 2.223189e-03
## DPH7 -7.266518e+00 1.941031e+01 -3.243066 1.520526e-03 5.853113e-03
## RFNG -7.260132e+00 1.035427e+01 -4.145660 6.240727e-05 5.544196e-04
## ITPA -7.253165e+00 1.822375e+01 -3.010688 3.160665e-03 1.041842e-02
## DDX46 7.242983e+00 4.691826e+01 2.516494 1.313311e-02 3.247002e-02
## ABCE1 7.240059e+00 2.419615e+01 3.352421 1.063355e-03 4.456323e-03
## ZNF787 -7.234233e+00 2.024726e+01 -3.009658 3.170661e-03 1.044267e-02
## DHX36 7.215123e+00 2.615112e+01 3.932078 1.394094e-04 9.819670e-04
## CSF1 7.210264e+00 1.604447e+01 3.493767 6.615617e-04 3.104916e-03
## ZMIZ2 -7.205192e+00 2.160966e+01 -3.801112 2.249637e-04 1.404986e-03
## DDX49 -7.201005e+00 1.523671e+01 -3.515384 6.145029e-04 2.931619e-03
## AQR 7.196340e+00 3.045538e+01 3.390402 9.373121e-04 4.053786e-03
## SRGAP2C 7.194164e+00 1.667102e+01 3.966317 1.227931e-04 8.978583e-04
## SOCS5 7.193169e+00 1.694297e+01 3.122727 2.231841e-03 7.910828e-03
## TPPP3 -7.188519e+00 4.216053e+00 -4.433662 2.020127e-05 2.476476e-04
## CHD9 7.186911e+00 1.898585e+01 4.069835 8.328633e-05 6.802717e-04
## LRRC8D 7.186158e+00 2.933636e+01 3.587687 4.789964e-04 2.444448e-03
## MDH1 7.184335e+00 5.655451e+01 2.327871 2.154361e-02 4.819072e-02
## RCBTB1 7.180773e+00 2.234775e+01 3.745972 2.742604e-04 1.619885e-03
## MRPL52 -7.174398e+00 1.131877e+01 -3.455672 7.528504e-04 3.426770e-03
## LATS1 7.166837e+00 1.826010e+01 4.266538 3.910765e-05 3.917034e-04
## OPA1 7.165468e+00 3.245593e+01 3.447040 7.751181e-04 3.504728e-03
## DNPEP -7.165102e+00 1.850241e+01 -2.932834 4.003639e-03 1.257143e-02
## ZMYND8 7.164864e+00 2.655382e+01 4.274389 3.792687e-05 3.849631e-04
## USP47 7.156877e+00 4.739430e+01 2.572132 1.129024e-02 2.856277e-02
## SMC5 7.150145e+00 2.756512e+01 3.183468 1.841184e-03 6.804751e-03
## UBE2K 7.141230e+00 5.215666e+01 3.130920 2.174992e-03 7.741717e-03
## GTF2H2C 7.140267e+00 2.918868e+01 2.942287 3.891262e-03 1.228384e-02
## MOSPD3 -7.140230e+00 7.036004e+00 -4.203742 4.990989e-05 4.724112e-04
## PTX3 7.137398e+00 8.696532e+00 2.917138 4.196833e-03 1.306416e-02
## FASTKD5 7.136395e+00 2.528509e+01 3.520596 6.036365e-04 2.893747e-03
## VIRMA 7.133137e+00 4.041834e+01 3.070135 2.630807e-03 9.030788e-03
## TTPAL 7.132688e+00 2.230395e+01 3.414344 8.652074e-04 3.806142e-03
## ENDOD1 7.132253e+00 2.710927e+01 2.607551 1.024164e-02 2.645595e-02
## TM7SF3 7.129470e+00 3.271562e+01 4.274051 3.797697e-05 3.849631e-04
## PSME4 7.128884e+00 5.103910e+01 3.277305 1.360681e-03 5.368321e-03
## TOR2A -7.128465e+00 1.410818e+01 -4.882768 3.163582e-06 6.664313e-05
## DOCK4 7.126658e+00 1.922267e+01 2.522090 1.293627e-02 3.207028e-02
## CCDC71 -7.123703e+00 1.504596e+01 -5.189407 8.385382e-07 2.550016e-05
## NEMF 7.121570e+00 2.997226e+01 2.878136 4.714512e-03 1.431493e-02
## TIMM13 -7.117121e+00 9.269463e+00 -3.645278 3.917963e-04 2.102159e-03
## FUT4 7.112530e+00 1.925956e+01 2.647354 9.168626e-03 2.420207e-02
## LRRC59 7.107643e+00 4.510553e+01 2.493240 1.398001e-02 3.420028e-02
## TASOR2 7.107398e+00 1.534560e+01 4.178909 5.492735e-05 5.101318e-04
## SMARCC2 -7.098580e+00 5.809793e+01 -2.335289 2.113921e-02 4.750115e-02
## GOLGA5 7.096065e+00 3.120932e+01 4.046460 9.097037e-05 7.240997e-04
## MAP1S -7.094668e+00 8.371213e+00 -5.476636 2.317945e-07 1.045279e-05
## GABPA 7.091082e+00 3.536235e+01 2.646062 9.201786e-03 2.426800e-02
## CLPX 7.089690e+00 3.607939e+01 3.592034 4.718217e-04 2.418239e-03
## COPS9 -7.083712e+00 1.397782e+01 -2.995410 3.311919e-03 1.080885e-02
## PYM1 -7.076090e+00 1.947500e+01 -3.465129 7.291417e-04 3.340542e-03
## REST 7.072516e+00 3.532080e+01 2.816932 5.645805e-03 1.651276e-02
## STARD4 7.070756e+00 1.238112e+01 5.159051 9.583644e-07 2.813416e-05
## ATF2 7.070745e+00 3.727888e+01 2.660797 8.829852e-03 2.345924e-02
## PELP1 -7.059616e+00 1.144704e+01 -3.588230 4.780949e-04 2.441960e-03
## GOLGA2 7.051256e+00 3.262925e+01 3.085843 2.505220e-03 8.667417e-03
## RASA1 7.049339e+00 2.479803e+01 3.419514 8.503370e-04 3.757450e-03
## SOCS4 7.040743e+00 1.959322e+01 5.182114 8.659212e-07 2.599956e-05
## TMEM101 -7.039923e+00 2.204445e+01 -4.182795 5.411150e-05 5.041339e-04
## NIPA2 7.033776e+00 4.500456e+01 2.608651 1.021053e-02 2.640528e-02
## DDX56 -7.032672e+00 2.690079e+01 -2.606120 1.028226e-02 2.654497e-02
## BTBD2 -7.028240e+00 1.029058e+01 -5.055411 1.506860e-06 3.876650e-05
## VEGFB -7.028026e+00 7.137093e+00 -4.011736 1.036476e-04 7.920490e-04
## HPS3 7.021865e+00 3.272897e+01 3.708594 3.133303e-04 1.781447e-03
## MAPK6 7.018190e+00 1.946851e+01 2.615451 1.002009e-02 2.602678e-02
## TMEM109 -7.012045e+00 2.901525e+01 -2.754981 6.756763e-03 1.899389e-02
## VPS36 7.009255e+00 3.787610e+01 2.883011 4.646762e-03 1.414543e-02
## ACBD3 7.000780e+00 2.900214e+01 3.653927 3.800754e-04 2.063963e-03
## TRAPPC11 6.992487e+00 3.241809e+01 2.865413 4.895657e-03 1.476290e-02
## SH2B2 -6.986698e+00 1.146082e+01 -4.637257 8.838709e-06 1.390280e-04
## MFSD5 -6.986586e+00 2.866155e+01 -2.945298 3.856086e-03 1.218901e-02
## CD22 -6.982702e+00 1.799009e+01 -2.482122 1.440190e-02 3.502286e-02
## ENGASE -6.979377e+00 1.680177e+01 -3.973290 1.196492e-04 8.800006e-04
## MAPRE2 6.974663e+00 3.949713e+01 2.914046 4.235890e-03 1.315466e-02
## LETM2 6.968157e+00 1.092490e+01 3.677974 3.492081e-04 1.929920e-03
## SSH3 -6.968016e+00 2.604403e+01 -2.922521 4.129631e-03 1.289558e-02
## CD2AP 6.966451e+00 1.629266e+01 3.367945 1.010032e-03 4.290464e-03
## MED18 -6.955958e+00 2.443455e+01 -3.457850 7.473269e-04 3.407650e-03
## LPCAT4 -6.949224e+00 2.093302e+01 -3.622066 4.249629e-04 2.237044e-03
## GTPBP6 -6.946321e+00 7.632038e+00 -4.370369 2.599384e-05 2.944240e-04
## MAPK1IP1L 6.941318e+00 4.939786e+01 2.486978 1.421626e-02 3.464958e-02
## B3GNTL1 -6.938712e+00 1.279576e+01 -4.504897 1.516846e-05 2.047129e-04
## NSD2 6.936647e+00 1.704069e+01 5.669916 9.550209e-08 5.946103e-06
## SIRT6 -6.935907e+00 8.585883e+00 -4.471888 1.732854e-05 2.224204e-04
## MDM1 6.934373e+00 2.360747e+01 2.964288 3.640863e-03 1.164526e-02
## TSR3 -6.932406e+00 1.278686e+01 -3.339251 1.110646e-03 4.607298e-03
## CBX6 -6.927644e+00 3.779113e+01 -2.608015 1.022852e-02 2.643501e-02
## SRRM1 6.919337e+00 4.027897e+01 2.615257 1.002547e-02 2.603506e-02
## DAB2 6.914598e+00 1.773419e+01 3.582613 4.874998e-04 2.481437e-03
## GLB1 -6.909020e+00 6.334692e+01 -2.457537 1.537545e-02 3.677952e-02
## UBTD1 -6.902676e+00 9.114590e+00 -4.838431 3.817733e-06 7.558984e-05
## AKR7A2 -6.895359e+00 1.283851e+01 -4.552644 1.249760e-05 1.787903e-04
## TRAPPC2L -6.892993e+00 2.156604e+01 -2.808965 5.778663e-03 1.682064e-02
## AMFR -6.892376e+00 4.960672e+01 -2.590981 1.072077e-02 2.746778e-02
## SKIV2L -6.888239e+00 4.727971e+01 -2.888606 4.570088e-03 1.396939e-02
## FBRSL1 -6.888201e+00 1.222482e+01 -4.731918 5.970802e-06 1.032270e-04
## XK 6.887154e+00 1.068010e+01 4.493810 1.586327e-05 2.092752e-04
## AMDHD2 -6.884168e+00 9.567544e+00 -4.368280 2.620996e-05 2.954849e-04
## AKT1S1 -6.880671e+00 1.139058e+01 -5.361414 3.900811e-07 1.516840e-05
## PPP1R35 -6.873371e+00 1.035266e+01 -5.077761 1.367371e-06 3.603782e-05
## KLC1 -6.870848e+00 5.548037e+01 -2.641144 9.329038e-03 2.452724e-02
## TRIM11 -6.867344e+00 2.216226e+01 -3.646404 3.902515e-04 2.099040e-03
## UBE3B 6.864771e+00 2.854776e+01 4.497189 1.564830e-05 2.076328e-04
## DDRGK1 -6.859700e+00 1.619401e+01 -4.797935 4.528604e-06 8.566025e-05
## CARMIL2 -6.850004e+00 9.665258e+00 -3.962900 1.243622e-04 9.059802e-04
## EPHB6 -6.843044e+00 1.670746e+01 -3.215289 1.662883e-03 6.284829e-03
## COG3 6.836267e+00 2.536233e+01 4.171872 5.643492e-05 5.168480e-04
## TAB1 -6.836072e+00 1.541310e+01 -4.783574 4.810272e-06 8.914036e-05
## TBC1D17 -6.831607e+00 1.685730e+01 -4.171894 5.643024e-05 5.168480e-04
## AGO3 6.830793e+00 2.559811e+01 3.921468 1.449797e-04 1.012928e-03
## MPI -6.830542e+00 2.455735e+01 -2.578013 1.110972e-02 2.822209e-02
## KEAP1 -6.828254e+00 2.661450e+01 -3.094948 2.434996e-03 8.471414e-03
## NT5C -6.807630e+00 9.491093e+00 -5.182359 8.649880e-07 2.599956e-05
## KIFC2 -6.803514e+00 8.742958e+00 -4.957669 2.297515e-06 5.270507e-05
## RABGAP1 6.794008e+00 2.488278e+01 4.438478 1.981560e-05 2.448053e-04
## HMGN3 -6.790541e+00 2.976979e+01 -3.044211 2.850868e-03 9.610941e-03
## LSM2 -6.788752e+00 1.747873e+01 -3.308336 1.229505e-03 4.974041e-03
## BTBD1 6.784784e+00 4.617942e+01 2.731715 7.222974e-03 2.001506e-02
## ACOT8 -6.781582e+00 1.303125e+01 -4.377193 2.529957e-05 2.893471e-04
## SLC25A20 -6.777288e+00 4.535745e+01 -2.802944 5.880964e-03 1.704502e-02
## TP53BP1 6.777214e+00 2.019902e+01 4.368918 2.614374e-05 2.954849e-04
## TMEM179B -6.774613e+00 2.938063e+01 -4.305707 3.354824e-05 3.530453e-04
## CCNK 6.773699e+00 4.080686e+01 2.512575 1.327254e-02 3.275328e-02
## DENND1B 6.761863e+00 2.025507e+01 3.686448 3.389084e-04 1.888841e-03
## ALG11 6.756872e+00 1.672117e+01 5.214777 7.497096e-07 2.358503e-05
## MFSD12 -6.754447e+00 9.787782e+00 -4.136541 6.462335e-05 5.687154e-04
## WDR47 6.750948e+00 1.887631e+01 3.577549 4.961286e-04 2.508727e-03
## LMNA -6.749101e+00 1.345381e+01 -2.772454 6.424833e-03 1.826864e-02
## HDAC10 -6.745767e+00 1.072716e+01 -3.512642 6.202909e-04 2.949739e-03
## PIGB 6.740468e+00 2.445336e+01 2.587660 1.081918e-02 2.767209e-02
## RBBP5 6.740215e+00 2.772433e+01 3.816570 2.127323e-04 1.351910e-03
## ATG4D -6.734778e+00 1.474693e+01 -3.433556 8.111490e-04 3.617987e-03
## OPLAH -6.733375e+00 8.764658e+00 -2.713152 7.615683e-03 2.085966e-02
## PSKH1 -6.727771e+00 1.908057e+01 -5.646212 1.065685e-07 6.415750e-06
## TRAPPC4 -6.724702e+00 3.443879e+01 -2.549290 1.201669e-02 3.009884e-02
## CASP8AP2 6.718405e+00 1.582888e+01 3.949620 1.306453e-04 9.365882e-04
## RPUSD1 -6.713980e+00 6.725533e+00 -4.751256 5.507673e-06 9.778593e-05
## SLC2A4RG -6.704581e+00 1.031328e+01 -3.824300 2.068560e-04 1.323968e-03
## VPS37C -6.700526e+00 1.213700e+01 -7.038160 1.181393e-10 7.560018e-08
## MEGF6 -6.697090e+00 1.931750e+01 -3.073744 2.601449e-03 8.941385e-03
## PNKP -6.695864e+00 1.543807e+01 -4.826152 4.020982e-06 7.865977e-05
## MAD1L1 -6.695293e+00 1.178844e+01 -2.846678 5.174006e-03 1.542965e-02
## APBB1 -6.695039e+00 1.029755e+01 -3.804356 2.223429e-04 1.394493e-03
## VPS54 6.694809e+00 3.189275e+01 2.406507 1.758528e-02 4.112682e-02
## ANAPC11 -6.686628e+00 1.364216e+01 -3.011492 3.152890e-03 1.040147e-02
## NOL12 -6.682736e+00 2.286315e+01 -4.156773 5.980479e-05 5.410258e-04
## TFPT -6.681632e+00 1.134438e+01 -3.764070 2.570484e-04 1.544374e-03
## ORC4 6.679821e+00 4.620457e+01 2.566041 1.147999e-02 2.894336e-02
## HNRNPAB 6.670278e+00 4.151170e+01 3.175434 1.888931e-03 6.944190e-03
## STBD1 6.669281e+00 1.136897e+01 2.397350 1.801041e-02 4.188304e-02
## NFATC2IP 6.669007e+00 2.723838e+01 4.837815 3.827697e-06 7.559352e-05
## TPD52 6.663612e+00 1.201302e+01 3.894111 1.603366e-04 1.090362e-03
## KIF11 6.658573e+00 7.513803e+00 5.719092 7.601374e-08 5.181166e-06
## CDK1 6.655621e+00 6.945888e+00 3.964898 1.234425e-04 9.003859e-04
## SEPTIN11 6.651970e+00 1.473516e+01 5.778022 5.774531e-08 4.253785e-06
## UVRAG 6.649170e+00 2.743571e+01 3.771908 2.499167e-04 1.513431e-03
## CIZ1 -6.648544e+00 2.720539e+01 -3.202480 1.732629e-03 6.496674e-03
## F2R 6.645618e+00 1.494173e+01 4.073907 8.201262e-05 6.708390e-04
## NUBP2 -6.643235e+00 6.268246e+00 -4.297536 3.464139e-05 3.619796e-04
## ACTR1B -6.640783e+00 3.230692e+01 -2.474045 1.471550e-02 3.557275e-02
## TMUB1 -6.632751e+00 6.908028e+00 -4.981038 2.078051e-06 4.841980e-05
## TNFAIP8L2-SCNM1 -6.632253e+00 1.586966e+01 -4.092904 7.631392e-05 6.360387e-04
## PCLAF 6.631975e+00 8.655233e+00 4.552059 1.252738e-05 1.787903e-04
## BCL2L13 6.630117e+00 3.905025e+01 3.394798 9.236656e-04 4.012554e-03
## DLG1 6.629596e+00 1.788671e+01 4.832409 3.916138e-06 7.702388e-05
## GGH 6.622817e+00 9.187290e+00 4.275944 3.769713e-05 3.837665e-04
## NECAB2 -6.622625e+00 9.255283e+00 -3.711231 3.104091e-04 1.768229e-03
## UFM1 6.618122e+00 4.554481e+01 2.352318 2.023622e-02 4.590696e-02
## MPND -6.612249e+00 8.577298e+00 -4.675335 7.552995e-06 1.223870e-04
## FBXO44 -6.608981e+00 1.659027e+01 -2.372477 1.921143e-02 4.412229e-02
## GPRIN3 6.593235e+00 2.072171e+01 2.374850 1.909387e-02 4.389480e-02
## LTBP1 6.590605e+00 1.225122e+01 3.604615 4.516279e-04 2.341043e-03
## LZTR1 -6.590296e+00 2.282526e+01 -3.107357 2.342217e-03 8.203984e-03
## SLC5A3 6.584427e+00 1.543358e+01 3.690494 3.340924e-04 1.870936e-03
## PDK1 6.582897e+00 2.856314e+01 2.871668 4.805827e-03 1.454008e-02
## CCDC115 -6.571476e+00 2.770323e+01 -3.979166 1.170595e-04 8.654917e-04
## SMG9 -6.567498e+00 1.302365e+01 -4.270703 3.847691e-05 3.867256e-04
## MPST -6.548996e+00 1.031564e+01 -3.269420 1.396040e-03 5.471591e-03
## GCNT1 6.542956e+00 1.954592e+01 3.617802 4.313374e-04 2.254687e-03
## SCD 6.542471e+00 8.327400e+00 4.940339 2.474653e-06 5.584358e-05
## VENTX -6.539091e+00 8.677281e+00 -6.442058 2.369449e-09 4.648246e-07
## ASGR1 -6.527101e+00 5.879841e+00 -6.114694 1.168365e-08 1.371961e-06
## PGP -6.524380e+00 1.401906e+01 -3.868938 1.758264e-04 1.169546e-03
## RING1 -6.518253e+00 2.217091e+01 -3.512036 6.215772e-04 2.953488e-03
## MCM2 6.512994e+00 9.678482e+00 4.797194 4.542737e-06 8.566025e-05
## MTRF1L 6.512844e+00 3.075054e+01 3.464443 7.308393e-04 3.345332e-03
## TMEM106C 6.508072e+00 1.945106e+01 3.244263 1.514651e-03 5.843774e-03
## SS18 6.498624e+00 3.520226e+01 4.157226 5.970088e-05 5.404981e-04
## SFXN3 -6.497838e+00 3.279589e+01 -3.544908 5.553038e-04 2.715836e-03
## GLE1 6.491909e+00 4.926146e+01 2.691721 8.093098e-03 2.191419e-02
## CORO2A 6.491682e+00 2.303928e+01 2.719232 7.484974e-03 2.057284e-02
## THOC2 6.489146e+00 2.350514e+01 3.241291 1.529270e-03 5.879849e-03
## CCT2 6.489061e+00 4.494309e+01 2.389695 1.837276e-02 4.256708e-02
## TSPAN17 -6.484494e+00 2.286245e+01 -2.725672 7.348743e-03 2.027829e-02
## SLC37A2 -6.468744e+00 2.758971e+01 -3.171711 1.911440e-03 7.001135e-03
## MEX3C 6.466426e+00 2.403613e+01 3.036849 2.916396e-03 9.776273e-03
## SEC24B 6.463246e+00 3.617099e+01 2.353525 2.017352e-02 4.579883e-02
## ALDH16A1 -6.461877e+00 7.824351e+00 -4.172627 5.627134e-05 5.168480e-04
## ENG -6.459785e+00 7.517699e+00 -4.736905 5.847873e-06 1.022174e-04
## DHPS -6.456657e+00 2.445493e+01 -4.309685 3.302822e-05 3.494332e-04
## LUC7L -6.455231e+00 2.263940e+01 -3.845052 1.918331e-04 1.251453e-03
## RFWD3 6.444258e+00 1.810170e+01 5.539748 1.738438e-07 8.566298e-06
## PDLIM5 6.437993e+00 3.178956e+01 2.749229 6.869404e-03 1.921489e-02
## GNL3 6.437553e+00 3.206503e+01 2.736783 7.118986e-03 1.979165e-02
## RHOBTB1 6.434061e+00 1.013776e+01 4.398573 2.323835e-05 2.730077e-04
## HSF1 -6.430199e+00 1.526797e+01 -4.529146 1.374969e-05 1.902815e-04
## IARS2 6.426833e+00 3.979436e+01 2.712800 7.623306e-03 2.087564e-02
## PARP11 6.414949e+00 1.214285e+01 3.322943 1.171937e-03 4.807738e-03
## BMP6 6.414043e+00 1.167175e+01 4.136521 6.462843e-05 5.687154e-04
## BET1L -6.411675e+00 5.463977e+01 -2.821596 5.569322e-03 1.633337e-02
## B3GALT6 -6.411501e+00 9.230131e+00 -4.626182 9.250784e-06 1.433694e-04
## FUCA1 -6.409890e+00 2.310023e+01 -3.294655 1.285811e-03 5.136493e-03
## RNF25 -6.405425e+00 1.846544e+01 -4.087597 7.786658e-05 6.453513e-04
## PTGES2 -6.399697e+00 9.792072e+00 -3.716664 3.044734e-04 1.750779e-03
## RETSAT 6.395122e+00 2.434155e+01 4.734659 5.902927e-06 1.026521e-04
## ELK3 6.390604e+00 3.455622e+01 3.180358 1.859528e-03 6.859722e-03
## KLHL22 -6.387671e+00 1.148237e+01 -4.989624 2.002642e-06 4.693940e-05
## ATP6V0E2 -6.384443e+00 8.987266e+00 -4.003182 1.070205e-04 8.120686e-04
## PI4K2B 6.380566e+00 1.531449e+01 4.559606 1.214826e-05 1.761349e-04
## RRM1 6.379723e+00 1.716788e+01 4.802002 4.451776e-06 8.461229e-05
## NFX1 6.379095e+00 2.472729e+01 4.727049 6.093215e-06 1.044300e-04
## FANCI 6.374826e+00 1.061400e+01 5.684344 8.932625e-08 5.757659e-06
## CTDSPL 6.359747e+00 2.087581e+01 2.462680 1.516708e-02 3.641181e-02
## DAZAP1 -6.353434e+00 2.823407e+01 -2.752169 6.811615e-03 1.908926e-02
## GPR137 -6.348089e+00 9.550849e+00 -5.199893 8.006455e-07 2.466404e-05
## EIF2AK3 6.336431e+00 1.166398e+01 3.929425 1.407830e-04 9.897373e-04
## FAF2 6.324524e+00 3.122031e+01 4.191573 5.231106e-05 4.923882e-04
## TMEM256 -6.319187e+00 1.264563e+01 -2.956786 3.724532e-03 1.187445e-02
## ZWINT 6.315529e+00 7.083687e+00 5.621029 1.197013e-07 7.062974e-06
## TST -6.309953e+00 1.558343e+01 -2.814151 5.691859e-03 1.661877e-02
## TM9SF1 6.305017e+00 3.385422e+01 3.476261 7.021355e-04 3.257931e-03
## SLC48A1 -6.304791e+00 1.747207e+01 -3.820811 2.094888e-04 1.336491e-03
## RNF220 -6.298085e+00 4.907199e+01 -2.533371 1.254750e-02 3.125674e-02
## SUSD1 6.295011e+00 3.349218e+01 2.888344 4.573649e-03 1.397308e-02
## WASHC5 6.284511e+00 2.981605e+01 3.621102 4.263969e-04 2.240013e-03
## SLC4A2 -6.281565e+00 1.786706e+01 -3.520264 6.043245e-04 2.894803e-03
## PHPT1 -6.280521e+00 1.315330e+01 -2.473965 1.471863e-02 3.557275e-02
## HEXD -6.272872e+00 1.465741e+01 -2.779563 6.294071e-03 1.796142e-02
## ALDOC -6.269870e+00 1.501200e+01 -2.895699 4.474551e-03 1.374823e-02
## ABRACL -6.260495e+00 4.455222e+01 -2.460100 1.527127e-02 3.659675e-02
## CISD3 -6.259072e+00 1.071860e+01 -3.365155 1.019425e-03 4.318803e-03
## ARL3 -6.256730e+00 1.995138e+01 -3.416632 8.585983e-04 3.785493e-03
## ING3 6.248104e+00 2.469458e+01 2.695412 8.008993e-03 2.174105e-02
## DTNBP1 -6.245981e+00 2.669733e+01 -2.810974 5.744894e-03 1.674065e-02
## MBTD1 6.242501e+00 2.273434e+01 3.196649 1.765273e-03 6.594059e-03
## PLA2G6 -6.236263e+00 1.043224e+01 -5.415913 3.051889e-07 1.270014e-05
## TAF2 6.226770e+00 1.564937e+01 4.673980 7.595481e-06 1.227281e-04
## BPNT2 6.218565e+00 3.121925e+01 3.577623 4.960017e-04 2.508727e-03
## EEPD1 -6.210387e+00 2.263370e+01 -3.267624 1.404210e-03 5.496347e-03
## RNF113A -6.205759e+00 2.277846e+01 -4.060815 8.617462e-05 6.971562e-04
## CASP7 6.204718e+00 1.821751e+01 3.001501 3.250832e-03 1.064757e-02
## TSC1 6.186596e+00 2.520761e+01 3.658119 3.745154e-04 2.039372e-03
## TMEM189 -6.180160e+00 1.619761e+01 -4.282463 3.674820e-05 3.776721e-04
## CCDC82 6.177927e+00 3.463308e+01 2.364058 1.963368e-02 4.484888e-02
## SYNJ1 6.176776e+00 2.792893e+01 2.361164 1.978075e-02 4.513267e-02
## LIG4 6.176707e+00 2.408274e+01 2.527306 1.275518e-02 3.169420e-02
## TEN1 -6.174660e+00 9.883984e+00 -4.034434 9.518314e-05 7.466085e-04
## COA3 -6.172595e+00 1.456493e+01 -3.175264 1.889953e-03 6.944190e-03
## SDR39U1 -6.170160e+00 1.199168e+01 -3.602873 4.543735e-04 2.350139e-03
## S100PBP 6.168743e+00 2.305948e+01 5.217730 7.399856e-07 2.340328e-05
## LSMEM1 6.165379e+00 1.645616e+01 2.459157 1.530954e-02 3.666624e-02
## STK35 6.165099e+00 3.225220e+01 2.363827 1.964540e-02 4.486702e-02
## TMCO6 -6.159889e+00 1.591094e+01 -6.812709 3.720548e-10 1.470857e-07
## TRAPPC6A -6.152809e+00 6.693045e+00 -3.468025 7.220241e-04 3.313233e-03
## PRKD3 6.152405e+00 2.675089e+01 3.416983 8.575865e-04 3.782438e-03
## DHRSX -6.148639e+00 1.429759e+01 -5.860801 3.915200e-08 3.293211e-06
## HENMT1 -6.147676e+00 2.612720e+01 -3.030882 2.970527e-03 9.907326e-03
## AP2A2 -6.136772e+00 2.404788e+01 -4.266508 3.911228e-05 3.917034e-04
## HECTD4 6.131360e+00 1.841572e+01 4.449716 1.894292e-05 2.367505e-04
## DRG2 -6.124932e+00 1.504177e+01 -3.518613 6.077502e-04 2.907591e-03
## VKORC1L1 6.116293e+00 1.815543e+01 2.402564 1.776724e-02 4.145573e-02
## BRCA1 6.115021e+00 1.275272e+01 4.728161 6.065048e-06 1.041990e-04
## MRPS18A -6.115011e+00 2.013211e+01 -2.343171 2.071696e-02 4.672940e-02
## CCDC137 -6.113688e+00 1.435268e+01 -3.971183 1.205910e-04 8.855787e-04
## TMEM170A 6.109837e+00 2.262480e+01 3.952658 1.291820e-04 9.285446e-04
## MSRB3 6.109790e+00 1.287583e+01 3.752485 2.679442e-04 1.589633e-03
## AIDA 6.100210e+00 5.059493e+01 2.817498 5.636465e-03 1.649358e-02
## MIF -6.097606e+00 6.159010e+00 -3.754094 2.664050e-04 1.582948e-03
## ODF3B -6.082699e+00 6.399269e+00 -3.147544 2.063761e-03 7.430541e-03
## KANSL3 6.082467e+00 3.350078e+01 3.687805 3.372853e-04 1.881564e-03
## ZNF146 6.080643e+00 2.879880e+01 2.458394 1.534056e-02 3.671087e-02
## AAAS -6.069419e+00 2.098386e+01 -3.813202 2.153423e-04 1.363566e-03
## DENND1A -6.065035e+00 2.905876e+01 -2.969069 3.588444e-03 1.152105e-02
## RNFT1 6.061606e+00 2.797873e+01 2.624417 9.773864e-03 2.551013e-02
## FARSA -6.059882e+00 1.241728e+01 -4.097750 7.492201e-05 6.293776e-04
## NDUFA7 -6.054692e+00 1.563909e+01 -3.079157 2.557983e-03 8.816528e-03
## SMS 6.053596e+00 4.362716e+01 2.361720 1.975238e-02 4.508531e-02
## ACSF3 -6.044337e+00 1.153599e+01 -4.675312 7.553734e-06 1.223870e-04
## LRRC37B 6.030699e+00 1.816606e+01 4.410395 2.216908e-05 2.642466e-04
## KHDRBS1 -6.022886e+00 7.682263e+01 -2.456998 1.539745e-02 3.681681e-02
## RFTN1 -6.022794e+00 2.251808e+01 -2.722399 7.417689e-03 2.043051e-02
## ZNF493 6.021593e+00 1.815725e+01 2.585189 1.089295e-02 2.779484e-02
## NAGPA -6.012896e+00 9.030750e+00 -4.175756 5.559801e-05 5.131458e-04
## THAP11 -6.011606e+00 2.474974e+01 -3.663412 3.676049e-04 2.010975e-03
## CERS6 6.010762e+00 2.227757e+01 4.015242 1.022949e-04 7.866765e-04
## CCDC57 -6.009147e+00 1.573375e+01 -4.114392 7.032460e-05 6.022010e-04
## U2AF1L4 -6.008239e+00 9.493169e+00 -3.852550 1.866648e-04 1.227186e-03
## RUSF1 -6.007810e+00 2.130184e+01 -2.775958 6.360069e-03 1.811055e-02
## USP28 6.005393e+00 1.504889e+01 3.849951 1.884409e-04 1.237491e-03
## HSPA4 6.004857e+00 5.706318e+01 3.381662 9.650099e-04 4.138258e-03
## AXIN1 -5.997249e+00 2.901411e+01 -3.785924 2.376302e-04 1.463657e-03
## OCEL1 -5.995561e+00 8.598829e+00 -4.854294 3.569876e-06 7.188238e-05
## HYPK -5.993879e+00 2.001202e+01 -2.609748 1.017960e-02 2.636027e-02
## PTTG1 5.983041e+00 9.821735e+00 2.837725 5.312062e-03 1.574239e-02
## NUP160 5.981599e+00 1.823241e+01 3.862304 1.801399e-04 1.193553e-03
## SREK1 5.979740e+00 3.240577e+01 2.761917 6.623170e-03 1.872040e-02
## EPAS1 5.973679e+00 8.852375e+00 3.118244 2.263524e-03 7.994460e-03
## TCF19 5.963401e+00 8.786556e+00 5.609222 1.263918e-07 7.204573e-06
## TXNRD2 -5.958838e+00 1.009480e+01 -4.492788 1.592886e-05 2.098995e-04
## TRAF6 5.951544e+00 2.421382e+01 3.188259 1.813245e-03 6.727239e-03
## RAE1 -5.945843e+00 3.551888e+01 -2.388632 1.842357e-02 4.267647e-02
## OSBP 5.944641e+00 3.421764e+01 3.392871 9.296241e-04 4.029730e-03
## NUDT1 -5.935529e+00 8.347041e+00 -3.330971 1.141381e-03 4.713365e-03
## ZNF654 5.934392e+00 2.141354e+01 2.665830 8.705950e-03 2.319240e-02
## ACP2 -5.934379e+00 1.381038e+01 -3.237564 1.547787e-03 5.933015e-03
## HOMER3 -5.928946e+00 1.220168e+01 -3.916296 1.477710e-04 1.024892e-03
## ATF7 5.927554e+00 2.988050e+01 2.624628 9.768126e-03 2.550638e-02
## SGF29 -5.926072e+00 1.059404e+01 -4.014261 1.026716e-04 7.867017e-04
## SMURF2 5.925465e+00 2.515510e+01 3.093940 2.442674e-03 8.488146e-03
## TMEM175 -5.919001e+00 1.329342e+01 -4.598747 1.035317e-05 1.566182e-04
## CHCHD10 -5.918281e+00 7.115650e+00 -3.561888 5.237363e-04 2.609514e-03
## SHISA9 5.917581e+00 1.863861e+01 3.301137 1.258837e-03 5.054099e-03
## WDR91 -5.917456e+00 2.213817e+01 -4.172457 5.630819e-05 5.168480e-04
## GHDC -5.915272e+00 1.338641e+01 -3.770012 2.516245e-04 1.521150e-03
## LRRC37A2 5.912999e+00 1.994807e+01 2.315657 2.222422e-02 4.936865e-02
## TBRG4 -5.911510e+00 1.722667e+01 -3.382761 9.614837e-04 4.129026e-03
## LRRC47 -5.909247e+00 2.235072e+01 -4.102413 7.360560e-05 6.217681e-04
## RBMX2 -5.907076e+00 1.831858e+01 -3.942395 1.341892e-04 9.558459e-04
## MRPL49 5.906036e+00 3.850536e+01 4.308797 3.314368e-05 3.499771e-04
## CBX5 5.899621e+00 2.299816e+01 3.503093 6.408568e-04 3.023294e-03
## TVP23B 5.888936e+00 3.106555e+01 2.588455 1.079555e-02 2.762912e-02
## LHPP -5.886576e+00 8.294695e+00 -5.009170 1.840784e-06 4.457842e-05
## NBPF12 5.884515e+00 1.675312e+01 3.577032 4.970181e-04 2.511561e-03
## PDE5A 5.883674e+00 1.268432e+01 4.020513 1.002926e-04 7.764168e-04
## FAM174C -5.882510e+00 5.313790e+00 -3.486147 6.789430e-04 3.167688e-03
## ACBD5 5.880105e+00 2.471806e+01 3.042977 2.861756e-03 9.639427e-03
## ZNF511 -5.879183e+00 1.132002e+01 -4.687051 7.195238e-06 1.180298e-04
## ICE1 5.869308e+00 2.366489e+01 3.251964 1.477380e-03 5.722315e-03
## ALYREF -5.869136e+00 1.808976e+01 -2.931065 4.024998e-03 1.261868e-02
## ZNF335 -5.867714e+00 2.504953e+01 -3.308393 1.229275e-03 4.974041e-03
## BOP1 -5.867704e+00 6.985680e+00 -3.676930 3.504980e-04 1.934344e-03
## PRADC1 -5.867532e+00 9.096291e+00 -3.619305 4.290799e-04 2.246749e-03
## KPNA3 5.866916e+00 2.299328e+01 3.729569 2.908005e-04 1.691084e-03
## SPIN1 5.858357e+00 1.530550e+01 5.031916 1.668402e-06 4.165736e-05
## ATXN3 5.858043e+00 2.255061e+01 4.101240 7.393470e-05 6.236597e-04
## TBL3 -5.852631e+00 7.311305e+00 -4.081098 7.980918e-05 6.577740e-04
## JUN 5.851333e+00 1.295628e+01 3.117578 2.268262e-03 8.005312e-03
## NDUFS7 -5.845635e+00 4.704812e+00 -3.992797 1.112562e-04 8.361844e-04
## RPS6KB1 5.843855e+00 2.593115e+01 4.248048 4.203002e-05 4.174842e-04
## RAB11FIP2 5.836116e+00 1.849863e+01 3.648129 3.878949e-04 2.093009e-03
## LTBP3 -5.823041e+00 7.196099e+00 -4.297033 3.470981e-05 3.623753e-04
## BANP -5.815562e+00 1.627693e+01 -4.151918 6.092854e-05 5.471547e-04
## CBWD2 5.802730e+00 2.994019e+01 3.626842 4.179287e-04 2.207855e-03
## MROH6 -5.801663e+00 8.219432e+00 -3.457449 7.483407e-04 3.410961e-03
## SLFN12 5.800045e+00 1.253977e+01 4.422960 2.108457e-05 2.546466e-04
## ARHGAP18 5.796800e+00 2.449746e+01 2.996050 3.305454e-03 1.079072e-02
## ZFYVE19 -5.790397e+00 1.608515e+01 -3.358446 1.042353e-03 4.390022e-03
## BBC3 -5.787798e+00 1.025264e+01 -3.569874 5.094832e-04 2.562594e-03
## SMU1 5.787419e+00 6.270923e+01 2.800735 5.918907e-03 1.712767e-02
## MYZAP 5.779923e+00 8.267161e+00 3.579687 4.924695e-04 2.499838e-03
## ENPP4 5.771702e+00 1.494631e+01 2.668518 8.640411e-03 2.305924e-02
## NCAPG 5.761543e+00 6.135755e+00 5.715522 7.728655e-08 5.237820e-06
## MAN2B2 -5.761041e+00 3.755041e+01 -3.408590 8.820459e-04 3.864449e-03
## DMAC1 -5.760491e+00 1.317692e+01 -3.243858 1.516636e-03 5.847627e-03
## PIP5K1C -5.754830e+00 1.354032e+01 -4.241180 4.316784e-05 4.255782e-04
## MDN1 5.750333e+00 1.625109e+01 2.972841 3.547588e-03 1.141155e-02
## CCDC124 -5.748482e+00 6.240660e+00 -4.400645 2.304741e-05 2.714421e-04
## GPATCH3 -5.737808e+00 1.686023e+01 -4.136436 6.464928e-05 5.687154e-04
## CTCF 5.718518e+00 3.778656e+01 2.850962 5.109105e-03 1.528957e-02
## FBXL13 5.716774e+00 8.770962e+00 3.604129 4.523914e-04 2.341930e-03
## TCF12 5.715616e+00 2.037587e+01 3.510725 6.243704e-04 2.963198e-03
## CCDC130 -5.712653e+00 1.241224e+01 -5.450156 2.613909e-07 1.135566e-05
## CYP51A1 5.711198e+00 1.331550e+01 4.758086 5.352568e-06 9.589344e-05
## RFC1 5.708180e+00 2.313335e+01 3.937869 1.364562e-04 9.675291e-04
## ZC3H3 -5.707416e+00 1.505171e+01 -2.380587 1.881224e-02 4.339036e-02
## AK1 -5.703134e+00 7.739893e+00 -4.061300 8.601715e-05 6.967794e-04
## NEXN 5.702457e+00 9.894202e+00 3.045443 2.840036e-03 9.588052e-03
## SERPINB8 5.690969e+00 3.233065e+01 2.469619 1.488992e-02 3.591508e-02
## CBFB 5.690196e+00 5.376841e+01 2.505069 1.354327e-02 3.331050e-02
## PRKCE 5.689772e+00 1.138614e+01 2.393194 1.820631e-02 4.223920e-02
## BRD9 -5.686501e+00 1.974526e+01 -3.890056 1.627410e-04 1.102289e-03
## FAAH -5.685927e+00 5.163740e+00 -5.238689 6.744227e-07 2.173547e-05
## R3HCC1 -5.683283e+00 1.552926e+01 -3.562273 5.230418e-04 2.608420e-03
## MYCL -5.681479e+00 1.579197e+01 -2.785486 6.186992e-03 1.770698e-02
## ZFPL1 -5.679426e+00 1.067588e+01 -4.661934 7.983375e-06 1.279498e-04
## UCK1 -5.671725e+00 2.329643e+01 -3.516204 6.127806e-04 2.925400e-03
## PLOD3 -5.669256e+00 1.374470e+01 -4.307923 3.325757e-05 3.506087e-04
## SNAPIN -5.666510e+00 2.264554e+01 -3.308570 1.228559e-03 4.974041e-03
## NCKAP5L -5.665277e+00 8.289657e+00 -6.284149 5.140683e-09 7.717532e-07
## RAB27B 5.654787e+00 1.530065e+01 3.032492 2.955827e-03 9.866622e-03
## HBS1L 5.654505e+00 2.258934e+01 4.173162 5.615573e-05 5.163670e-04
## CLPTM1 -5.648536e+00 3.432840e+01 -3.453327 7.588391e-04 3.445571e-03
## PSMD5 5.634967e+00 1.972056e+01 3.953351 1.288502e-04 9.278469e-04
## RBM14 -5.634410e+00 2.020115e+01 -3.607031 4.478441e-04 2.324477e-03
## P2RX4 -5.632903e+00 2.019813e+01 -2.735152 7.152310e-03 1.985637e-02
## STAMBP 5.623711e+00 3.094877e+01 3.305308 1.241765e-03 5.004190e-03
## CCNA2 5.622236e+00 6.591694e+00 5.554417 1.625574e-07 8.262887e-06
## NIBAN3 -5.620815e+00 1.009506e+01 -3.175331 1.889547e-03 6.944190e-03
## FFAR3 -5.616813e+00 6.900860e+00 -2.461277 1.522365e-02 3.652435e-02
## TMEM87A 5.610497e+00 3.802758e+01 3.080436 2.547807e-03 8.796794e-03
## PRDM4 5.608013e+00 2.520332e+01 3.685133 3.404866e-04 1.894077e-03
## SLC1A4 5.605386e+00 1.174624e+01 3.524610 5.953935e-04 2.862330e-03
## PNMA1 5.597736e+00 1.804228e+01 4.213029 4.814906e-05 4.623869e-04
## SCAF1 -5.593944e+00 1.161429e+01 -4.456863 1.840730e-05 2.317522e-04
## SMC6 5.593574e+00 1.899626e+01 4.496183 1.571200e-05 2.079736e-04
## SHCBP1 5.593134e+00 6.224003e+00 5.766203 6.102546e-08 4.461754e-06
## NIPSNAP1 -5.591398e+00 2.269746e+01 -3.689287 3.355218e-04 1.875254e-03
## SLC30A7 5.588337e+00 2.538686e+01 3.467973 7.221508e-04 3.313233e-03
## CEP120 5.587765e+00 2.569100e+01 2.688583 8.165224e-03 2.206918e-02
## NET1 5.578831e+00 8.979555e+00 5.387162 3.474350e-07 1.392088e-05
## ESCO1 5.576571e+00 2.550469e+01 2.952461 3.773563e-03 1.199437e-02
## TDG 5.573117e+00 2.408861e+01 3.888353 1.637605e-04 1.108562e-03
## ANKRD33B 5.569739e+00 1.126740e+01 4.347937 2.840723e-05 3.093754e-04
## KIAA1191 5.562760e+00 2.839742e+01 4.197344 5.115889e-05 4.834617e-04
## PTBP2 5.559501e+00 1.714210e+01 2.621012 9.866729e-03 2.569032e-02
## PEAK1 5.559279e+00 1.193587e+01 4.466334 1.771999e-05 2.257348e-04
## ABL2 5.551020e+00 1.639332e+01 3.456181 7.515562e-04 3.424302e-03
## TELO2 -5.543557e+00 5.477321e+00 -4.827045 4.005862e-06 7.865815e-05
## PIGQ -5.543282e+00 6.741879e+00 -3.672870 3.555552e-04 1.955884e-03
## ARID2 5.540093e+00 2.132931e+01 3.013319 3.135277e-03 1.035432e-02
## TMEM184C 5.532125e+00 1.841636e+01 3.672899 3.555186e-04 1.955884e-03
## INF2 -5.526172e+00 9.369260e+00 -3.711395 3.102286e-04 1.768229e-03
## IMPA1 5.523532e+00 2.113875e+01 2.943646 3.875349e-03 1.224012e-02
## DARS1 5.522380e+00 3.036689e+01 3.043948 2.853191e-03 9.616039e-03
## RPP25L -5.514987e+00 1.265085e+01 -3.403317 8.977445e-04 3.918900e-03
## SSBP4 -5.513408e+00 7.062787e+00 -3.919331 1.461270e-04 1.016843e-03
## POLR2F -5.505431e+00 1.787746e+01 -3.741101 2.790764e-04 1.641788e-03
## CRYL1 -5.503290e+00 1.266628e+01 -5.803092 5.134975e-08 4.006632e-06
## POLR2H -5.499619e+00 1.661062e+01 -2.728752 7.284397e-03 2.013352e-02
## LAMC1 5.498810e+00 7.348252e+00 3.568800 5.113784e-04 2.565545e-03
## PGAP3 -5.495306e+00 8.750789e+00 -4.535451 1.340233e-05 1.876642e-04
## CHD1L 5.493650e+00 1.843546e+01 5.123498 1.119999e-06 3.175596e-05
## GBF1 5.491835e+00 3.235765e+01 3.481751 6.891672e-04 3.204047e-03
## BAG5 5.487868e+00 3.207113e+01 3.365620 1.017856e-03 4.315969e-03
## PACS2 -5.479756e+00 1.100868e+01 -4.656668 8.158888e-06 1.305862e-04
## UCKL1 -5.476313e+00 8.424512e+00 -3.962929 1.243489e-04 9.059802e-04
## CEP295 5.468255e+00 1.548510e+01 4.511509 1.476821e-05 2.007623e-04
## UTP3 -5.465692e+00 2.509253e+01 -3.707694 3.143325e-04 1.784578e-03
## HCFC1R1 -5.462582e+00 7.651438e+00 -3.861288 1.808090e-04 1.197317e-03
## GATD1 -5.462344e+00 1.717060e+01 -3.360597 1.034951e-03 4.371268e-03
## ATE1 5.457506e+00 1.848914e+01 3.867288 1.768900e-04 1.175175e-03
## SLC22A18 -5.453151e+00 6.354724e+00 -4.449329 1.897237e-05 2.368551e-04
## GFPT1 5.452201e+00 1.363996e+01 5.739840 6.901396e-08 4.814738e-06
## ANAPC2 -5.449256e+00 1.141795e+01 -3.564614 5.188292e-04 2.593053e-03
## STK32C -5.444751e+00 6.029002e+00 -5.765169 6.132090e-08 4.461754e-06
## MRPL4 -5.438837e+00 6.632145e+00 -3.713808 3.075806e-04 1.763125e-03
## H4C8 5.432065e+00 5.878736e+00 4.168197 5.723796e-05 5.227702e-04
## ADAT1 5.414965e+00 2.084674e+01 3.523660 5.973351e-04 2.870500e-03
## TXNL1 -5.411742e+00 3.942697e+01 -2.404189 1.769206e-02 4.131283e-02
## TMEM147 -5.411512e+00 1.830401e+01 -2.478525 1.454083e-02 3.527392e-02
## ALKBH7 -5.406176e+00 4.973667e+00 -4.133704 6.532803e-05 5.730699e-04
## CBFA2T3 -5.402457e+00 1.983658e+01 -2.935586 3.970618e-03 1.248119e-02
## MTF2 5.398952e+00 2.614021e+01 4.097576 7.497160e-05 6.293776e-04
## NSUN2 5.394689e+00 2.688126e+01 3.042477 2.866184e-03 9.646123e-03
## BAHD1 -5.393934e+00 1.815283e+01 -3.954730 1.281924e-04 9.253574e-04
## TRIP11 5.387003e+00 1.993404e+01 3.765499 2.557340e-04 1.539597e-03
## YAF2 5.385414e+00 1.855719e+01 4.237669 4.376093e-05 4.307092e-04
## AP3M1 5.379362e+00 3.754818e+01 2.605226 1.030768e-02 2.659323e-02
## HLA-DOA -5.378206e+00 1.321052e+01 -2.802690 5.885323e-03 1.704516e-02
## ROMO1 -5.375344e+00 1.096683e+01 -2.403457 1.772591e-02 4.138372e-02
## NUDT18 -5.369735e+00 1.225316e+01 -2.514669 1.319788e-02 3.259617e-02
## TMED1 -5.369188e+00 1.255846e+01 -3.623446 4.229196e-04 2.229121e-03
## YTHDF2 -5.366500e+00 5.323008e+01 -3.445810 7.783432e-04 3.515175e-03
## PRC1 5.364674e+00 7.020148e+00 3.998860 1.087643e-04 8.221443e-04
## ETV3 5.360780e+00 2.467128e+01 2.666231 8.696145e-03 2.317148e-02
## MRPL12 -5.349428e+00 1.237536e+01 -2.364342 1.961933e-02 4.483088e-02
## MRPL33 -5.341779e+00 3.856385e+01 -2.873245 4.783413e-03 1.449075e-02
## REC8 5.336878e+00 1.908573e+01 2.588382 1.079772e-02 2.762912e-02
## CD72 -5.334915e+00 8.457486e+00 -3.871157 1.744057e-04 1.164669e-03
## GPKOW -5.334811e+00 2.144052e+01 -3.703308 3.192638e-04 1.807384e-03
## FAM20C -5.332474e+00 5.563845e+00 -5.958364 2.467581e-08 2.398813e-06
## NFIC -5.330125e+00 1.359472e+01 -5.166246 9.285373e-07 2.739416e-05
## EYA3 5.328656e+00 2.485161e+01 3.357364 1.046095e-03 4.402656e-03
## PIK3R4 5.326717e+00 1.805780e+01 4.079455 8.030769e-05 6.609640e-04
## SLC23A2 5.326617e+00 1.910793e+01 3.239393 1.538675e-03 5.907637e-03
## RAB3IP 5.322433e+00 1.368427e+01 3.917708 1.470039e-04 1.021363e-03
## RAB40C -5.321873e+00 8.201873e+00 -6.015654 1.878312e-08 1.954104e-06
## CCDC117 5.318382e+00 2.479243e+01 3.199548 1.748972e-03 6.547603e-03
## RSAD1 -5.314684e+00 1.997019e+01 -3.035720 2.926568e-03 9.794133e-03
## CCP110 5.307803e+00 1.997068e+01 2.609512 1.018624e-02 2.636594e-02
## MBD1 5.307462e+00 4.770795e+01 3.182588 1.846359e-03 6.819627e-03
## SNAI3 -5.286710e+00 1.161980e+01 -2.827313 5.476857e-03 1.613000e-02
## MED7 -5.286204e+00 1.627404e+01 -4.207546 4.918132e-05 4.688830e-04
## POLK 5.284842e+00 2.009408e+01 2.456851 1.540346e-02 3.681681e-02
## RNF7 -5.281699e+00 4.031531e+01 -2.366446 1.951309e-02 4.464221e-02
## AP3D1 -5.279726e+00 3.915788e+01 -2.976462 3.508767e-03 1.131122e-02
## DOP1B 5.278846e+00 1.931065e+01 3.343804 1.094078e-03 4.559955e-03
## EMSY 5.277839e+00 1.685720e+01 4.048046 9.042796e-05 7.212855e-04
## MRPL14 -5.265412e+00 1.666765e+01 -2.356925 1.999785e-02 4.547056e-02
## RMC1 5.257880e+00 3.124943e+01 3.833906 1.997679e-04 1.290389e-03
## GDPD5 -5.256409e+00 9.429344e+00 -2.737239 7.109705e-03 1.977512e-02
## BTBD6 -5.237932e+00 2.206897e+01 -2.716805 7.536901e-03 2.067723e-02
## ELOVL7 5.237594e+00 9.774018e+00 3.789939 2.342171e-04 1.447656e-03
## HAPLN3 -5.225462e+00 5.257257e+00 -3.779876 2.428601e-04 1.485191e-03
## SIT1 -5.224985e+00 1.382116e+01 -2.367002 1.948508e-02 4.459535e-02
## CCNQ -5.224903e+00 9.102508e+00 -5.472470 2.362233e-07 1.061215e-05
## EHMT2 -5.217414e+00 1.617896e+01 -3.055339 2.754400e-03 9.352184e-03
## RRP36 -5.209861e+00 2.243288e+01 -3.283340 1.334190e-03 5.279779e-03
## EIF2AK4 5.207917e+00 1.596136e+01 4.150385 6.128761e-05 5.494113e-04
## TMEM245 5.200469e+00 1.805798e+01 3.490871 6.681169e-04 3.125898e-03
## C6orf120 5.194105e+00 3.054948e+01 2.703037 7.837731e-03 2.135435e-02
## HGH1 -5.194040e+00 7.169800e+00 -4.153049 6.066501e-05 5.463075e-04
## ZNF580 -5.185153e+00 7.745392e+00 -4.184839 5.368718e-05 5.019850e-04
## BIRC5 5.180583e+00 6.315856e+00 3.348054 1.078823e-03 4.506812e-03
## RACGAP1 5.179398e+00 9.414088e+00 6.577400 1.211532e-09 3.177468e-07
## BAD -5.177987e+00 7.763530e+00 -4.008639 1.048568e-04 7.982038e-04
## E4F1 -5.175483e+00 6.734053e+00 -5.204119 7.858507e-07 2.439840e-05
## FHL1 5.172701e+00 1.411544e+01 2.638555 9.396686e-03 2.466136e-02
## COA8 -5.170400e+00 1.241960e+01 -4.112355 7.087248e-05 6.051459e-04
## CBLL1 5.168837e+00 2.807184e+01 2.901370 4.399499e-03 1.355979e-02
## FBXL4 5.158248e+00 1.877315e+01 2.983254 3.436996e-03 1.113433e-02
## LAX1 5.154153e+00 7.071200e+00 4.119617 6.893777e-05 5.942260e-04
## DELE1 -5.154091e+00 3.296236e+01 -3.412480 8.706282e-04 3.822899e-03
## ARMH1 -5.150395e+00 9.602009e+00 -2.692511 8.075019e-03 2.187522e-02
## MRPL53 -5.148288e+00 1.228370e+01 -3.110883 2.316455e-03 8.128152e-03
## SPAG5 5.143987e+00 6.717902e+00 5.532850 1.794126e-07 8.685934e-06
## NDUFS8 -5.142576e+00 6.602091e+00 -3.197526 1.760324e-03 6.579716e-03
## SCYL3 5.141952e+00 2.588316e+01 2.831588 5.408637e-03 1.596080e-02
## ZNF587 5.139454e+00 1.715486e+01 3.025594 3.019268e-03 1.004420e-02
## DDX54 -5.125533e+00 1.102870e+01 -3.470104 7.169546e-04 3.294491e-03
## POLD2 -5.124090e+00 1.147778e+01 -2.914081 4.235434e-03 1.315466e-02
## MRPL43 -5.121582e+00 1.271728e+01 -3.700272 3.227195e-04 1.819132e-03
## ZDHHC6 5.120239e+00 3.693531e+01 3.574157 5.019889e-04 2.531288e-03
## KIFAP3 5.119894e+00 1.393447e+01 4.462945 1.796308e-05 2.276091e-04
## C18orf21 -5.119659e+00 1.751539e+01 -5.175715 8.906615e-07 2.654082e-05
## ASCC3 5.118915e+00 1.604485e+01 3.183030 1.843755e-03 6.812130e-03
## SINHCAF 5.118297e+00 2.571026e+01 3.133719 2.155881e-03 7.689851e-03
## CARD9 -5.117503e+00 4.883578e+00 -5.941496 2.673345e-08 2.518434e-06
## CEP20 5.114169e+00 1.786974e+01 5.893133 3.361266e-08 2.922773e-06
## RNF216 -5.110229e+00 4.148618e+01 -2.414571 1.721833e-02 4.036019e-02
## DUS2 -5.102435e+00 2.216241e+01 -2.555746 1.180723e-02 2.964304e-02
## TPX2 5.100279e+00 5.671138e+00 5.279425 5.628000e-07 1.923576e-05
## SAMD1 -5.094173e+00 1.268671e+01 -3.577812 4.956776e-04 2.508727e-03
## SECISBP2 5.085378e+00 4.681965e+01 2.740288 7.047882e-03 1.962157e-02
## TTBK2 5.084983e+00 1.411520e+01 4.014913 1.024209e-04 7.866765e-04
## DUSP7 -5.084700e+00 2.252231e+01 -3.096564 2.422721e-03 8.441091e-03
## TTLL12 -5.084558e+00 1.099754e+01 -5.921032 2.945670e-08 2.666843e-06
## SERINC5 5.083923e+00 2.426804e+01 2.369296 1.937001e-02 4.440052e-02
## DPY19L1 5.083793e+00 1.366785e+01 5.008383 1.847046e-06 4.457842e-05
## ACD -5.079649e+00 8.312843e+00 -4.713980 6.433959e-06 1.084000e-04
## MGMT -5.077793e+00 5.498776e+00 -4.051305 8.932378e-05 7.153140e-04
## POP4 -5.070935e+00 2.253557e+01 -3.585204 4.831402e-04 2.460853e-03
## TIGD3 -5.062210e+00 1.031599e+01 -2.404221 1.769058e-02 4.131283e-02
## FBXO28 5.056754e+00 2.305460e+01 3.258737 1.445309e-03 5.621963e-03
## IBTK 5.053547e+00 2.250158e+01 2.648555 9.137876e-03 2.413164e-02
## FLAD1 -5.049487e+00 2.095031e+01 -3.114693 2.288918e-03 8.057752e-03
## NME4 -5.044107e+00 1.014303e+01 -2.978261 3.489621e-03 1.126481e-02
## KAT2A -5.042259e+00 1.636017e+01 -2.695823 7.999661e-03 2.173064e-02
## CWC15 -5.038585e+00 4.753225e+01 -2.318778 2.204851e-02 4.905788e-02
## FOXJ2 5.036154e+00 3.479118e+01 2.342902 2.073121e-02 4.674376e-02
## FAM98C -5.030591e+00 9.498352e+00 -4.741226 5.743364e-06 1.008188e-04
## STON2 5.027254e+00 9.101118e+00 4.223462 4.624188e-05 4.480627e-04
## CAMLG -5.026916e+00 3.164762e+01 -2.336194 2.109039e-02 4.742737e-02
## HEBP1 -5.026819e+00 1.833452e+01 -3.417968 8.547575e-04 3.772843e-03
## MLST8 -5.023269e+00 6.853178e+00 -4.134747 6.506832e-05 5.716372e-04
## PLA2G4B -5.022160e+00 1.162282e+01 -4.225435 4.588932e-05 4.453742e-04
## NDUFAB1 -5.019700e+00 1.792403e+01 -2.412459 1.731378e-02 4.054124e-02
## COQ4 -5.018817e+00 7.047491e+00 -3.567587 5.135275e-04 2.573653e-03
## ABCB10 5.018223e+00 2.075458e+01 3.064310 2.678839e-03 9.153053e-03
## IMP3 -5.017855e+00 1.711971e+01 -2.672474 8.544808e-03 2.286580e-02
## RBBP7 5.017810e+00 3.417174e+01 2.752568 6.803817e-03 1.907191e-02
## SCAND1 -5.014687e+00 4.666259e+00 -4.511640 1.476036e-05 2.007623e-04
## CHCHD5 -5.012954e+00 5.918081e+00 -4.054899 8.812113e-05 7.071154e-04
## P3H1 -5.004136e+00 2.098750e+01 -3.106615 2.347668e-03 8.220652e-03
## MCUR1 5.002044e+00 1.395039e+01 4.940048 2.477734e-06 5.584358e-05
## SORD -4.996418e+00 1.739980e+01 -3.388887 9.420599e-04 4.065804e-03
## RPRD1A 4.992325e+00 2.419009e+01 2.832224 5.398559e-03 1.593899e-02
## ALKBH5 -4.992195e+00 5.162064e+01 -2.604602 1.032549e-02 2.662181e-02
## BCL2L15 4.989774e+00 6.069439e+00 2.536251 1.244995e-02 3.105264e-02
## NCOR2 -4.989331e+00 1.550172e+01 -3.505584 6.354322e-04 3.001285e-03
## UBOX5 -4.987037e+00 1.442422e+01 -4.935230 2.529359e-06 5.660038e-05
## CIAO3 -4.974724e+00 6.969813e+00 -4.492521 1.594599e-05 2.098995e-04
## MUS81 -4.971395e+00 2.122691e+01 -3.285039 1.326816e-03 5.255858e-03
## CDK6 4.969460e+00 1.585066e+01 4.069658 8.334188e-05 6.802717e-04
## SLC30A6 4.968398e+00 2.152792e+01 3.789936 2.342197e-04 1.447656e-03
## CTDSPL2 4.968117e+00 2.482936e+01 2.998428 3.281527e-03 1.073668e-02
## FAM149B1 4.966190e+00 1.422734e+01 4.821309 4.103999e-06 7.979251e-05
## ZBTB33 4.964315e+00 2.057145e+01 3.019758 3.073916e-03 1.018626e-02
## SNAPC2 -4.958508e+00 4.923667e+00 -5.575417 1.476383e-07 7.782181e-06
## GLYCTK -4.956590e+00 1.169280e+01 -3.270262 1.392220e-03 5.462036e-03
## RABGGTA -4.954804e+00 1.531104e+01 -3.597754 4.625366e-04 2.378874e-03
## MYB 4.952400e+00 7.418803e+00 3.315356 1.201515e-03 4.898248e-03
## CC2D1A -4.951937e+00 1.088891e+01 -3.877157 1.706189e-04 1.143889e-03
## SCAMP3 -4.951658e+00 1.888963e+01 -2.589958 1.075102e-02 2.752744e-02
## HIP1R -4.950943e+00 9.582014e+00 -3.247324 1.499734e-03 5.795648e-03
## CLPP -4.946927e+00 1.129989e+01 -3.085430 2.508451e-03 8.676065e-03
## FAM126A 4.944255e+00 1.735030e+01 3.631038 4.118408e-04 2.183474e-03
## ERI3 -4.943225e+00 1.160699e+01 -3.145699 2.075838e-03 7.469491e-03
## USP12 4.943150e+00 1.805303e+01 3.764320 2.568180e-04 1.543771e-03
## DNAJC17 -4.938044e+00 1.218526e+01 -3.549664 5.462858e-04 2.688361e-03
## MZT2B -4.933879e+00 4.755649e+00 -3.326971 1.156509e-03 4.759265e-03
## KNTC1 4.933338e+00 1.035805e+01 5.789999 5.459804e-08 4.138807e-06
## ECSIT -4.929667e+00 9.465281e+00 -3.762210 2.587690e-04 1.551568e-03
## NAPG 4.927403e+00 2.510467e+01 3.330671 1.142508e-03 4.714882e-03
## FAAP20 -4.925122e+00 6.403650e+00 -4.430208 2.048242e-05 2.499192e-04
## SEC23IP 4.918142e+00 2.513588e+01 3.782156 2.408753e-04 1.474087e-03
## ARL2 -4.914614e+00 9.062380e+00 -3.191888 1.792349e-03 6.664224e-03
## TIMELESS 4.912025e+00 9.411419e+00 5.960940 2.437566e-08 2.389218e-06
## INAFM1 -4.911371e+00 5.178638e+00 -4.203835 4.989209e-05 4.724112e-04
## FAAP100 -4.907969e+00 7.343460e+00 -3.891172 1.620756e-04 1.099667e-03
## ZNF263 -4.905013e+00 2.348134e+01 -3.645448 3.915619e-04 2.102159e-03
## KHDC4 4.904904e+00 2.524410e+01 3.474419 7.065395e-04 3.270710e-03
## GP9 -4.896009e+00 7.177245e+00 -2.450797 1.565241e-02 3.731410e-02
## INTS5 -4.889090e+00 1.438611e+01 -3.669109 3.603010e-04 1.977404e-03
## KCTD17 -4.877917e+00 6.639303e+00 -4.094413 7.587797e-05 6.336166e-04
## LMBR1 4.875798e+00 1.822222e+01 2.388107 1.844868e-02 4.272630e-02
## NFKBIL1 -4.875464e+00 8.411734e+00 -4.252256 4.134706e-05 4.120808e-04
## LAS1L -4.874068e+00 1.644443e+01 -3.117540 2.268539e-03 8.005312e-03
## ZC3H6 4.873970e+00 1.307652e+01 4.285343 3.633642e-05 3.740884e-04
## MVD -4.873888e+00 6.312871e+00 -3.471220 7.142480e-04 3.285873e-03
## RABEPK -4.869334e+00 1.522785e+01 -4.928551 2.602655e-06 5.791273e-05
## PLA2G12A 4.867920e+00 1.614042e+01 3.253699 1.469103e-03 5.697528e-03
## TFAM 4.865240e+00 2.412904e+01 3.283131 1.335099e-03 5.281613e-03
## GFER -4.865231e+00 8.896291e+00 -3.578596 4.943341e-04 2.505120e-03
## ZNF688 -4.850718e+00 6.496270e+00 -5.101431 1.233358e-06 3.355788e-05
## RBM18 4.850229e+00 2.740087e+01 2.975376 3.520360e-03 1.134055e-02
## CTNNBIP1 -4.848765e+00 1.671485e+01 -3.730640 2.896919e-04 1.687498e-03
## CENPF 4.845262e+00 5.338564e+00 5.798445 5.248037e-08 4.068086e-06
## ACP1 4.844580e+00 3.509216e+01 2.642414 9.296027e-03 2.445672e-02
## XPR1 4.841448e+00 1.933676e+01 3.559258 5.285121e-04 2.625955e-03
## B9D2 -4.836802e+00 1.082149e+01 -3.502079 6.430786e-04 3.030160e-03
## PPP2R5E 4.835829e+00 2.808026e+01 3.734881 2.853434e-04 1.666309e-03
## CDC20 4.830661e+00 5.501718e+00 3.196369 1.766855e-03 6.597892e-03
## LMBRD2 4.829889e+00 1.451010e+01 3.760584 2.602826e-04 1.554728e-03
## EMD -4.827422e+00 1.839581e+01 -2.770159 6.467565e-03 1.837253e-02
## DDHD1 4.827115e+00 1.583248e+01 3.271303 1.387517e-03 5.448990e-03
## EPHB1 4.820557e+00 1.101810e+01 3.126111 2.208198e-03 7.838740e-03
## ZBTB17 -4.820502e+00 1.551052e+01 -3.551632 5.425948e-04 2.673525e-03
## PCYT2 -4.817733e+00 1.050559e+01 -2.967958 3.600562e-03 1.154750e-02
## RECQL5 -4.816125e+00 1.335482e+01 -4.644820 8.567566e-06 1.354818e-04
## SMARCD1 4.815673e+00 3.854408e+01 4.028190 9.744338e-05 7.596702e-04
## MTREX 4.813620e+00 2.840722e+01 2.714770 7.580706e-03 2.077818e-02
## INTS10 -4.813338e+00 4.195062e+01 -2.732926 7.197990e-03 1.996449e-02
## NAGLU -4.813013e+00 1.127876e+01 -3.110574 2.318700e-03 8.131220e-03
## PIK3R6 -4.806242e+00 9.613134e+00 -3.525396 5.937911e-04 2.858102e-03
## SELENOI 4.804785e+00 9.995349e+00 6.547927 1.402823e-09 3.395405e-07
## MANEA 4.804488e+00 8.094560e+00 4.767450 5.146795e-06 9.373006e-05
## DDA1 -4.801095e+00 2.078446e+01 -3.472543 7.110492e-04 3.281340e-03
## NOLC1 4.799454e+00 2.680148e+01 2.496016 1.387639e-02 3.399588e-02
## VPS72 -4.785230e+00 2.672480e+01 -4.228670 4.531709e-05 4.412649e-04
## SSBP2 4.784532e+00 1.985354e+01 3.701801 3.209752e-04 1.812570e-03
## TYSND1 -4.781386e+00 9.054637e+00 -3.928677 1.411723e-04 9.910670e-04
## WDR33 -4.774628e+00 5.250688e+01 -4.023766 9.907582e-05 7.700126e-04
## ZNF66 4.772346e+00 1.034215e+01 3.188205 1.813558e-03 6.727239e-03
## SMC2 4.770377e+00 7.879914e+00 5.929394 2.831252e-08 2.603430e-06
## DNAJC9 4.770032e+00 1.594943e+01 2.914628 4.228514e-03 1.314552e-02
## MTHFD1 4.769964e+00 1.111267e+01 5.382145 3.553707e-07 1.409598e-05
## ZMYM4 4.769086e+00 1.877902e+01 3.502692 6.417352e-04 3.026234e-03
## REXO4 -4.768423e+00 1.197259e+01 -3.621189 4.262676e-04 2.240013e-03
## DDI2 4.764793e+00 1.775701e+01 4.065082 8.479653e-05 6.897715e-04
## ATR 4.764073e+00 1.461578e+01 3.668167 3.614992e-04 1.983062e-03
## TBC1D2 -4.762552e+00 2.210001e+01 -2.730774 7.242426e-03 2.005959e-02
## MEI1 -4.759197e+00 9.547366e+00 -2.961889 3.667430e-03 1.171030e-02
## RBMXL1 4.756029e+00 2.344773e+01 2.945748 3.850849e-03 1.217658e-02
## FRS2 4.749998e+00 1.390117e+01 3.860770 1.811517e-04 1.198917e-03
## TIMM50 -4.746068e+00 1.912518e+01 -2.386983 1.850265e-02 4.284292e-02
## ISG20L2 4.740163e+00 4.408755e+01 2.653360 9.015828e-03 2.386247e-02
## DHRS1 -4.734556e+00 1.472088e+01 -3.299533 1.265465e-03 5.072122e-03
## PIWIL4 4.732689e+00 9.270949e+00 3.244709 1.512472e-03 5.839167e-03
## CAPN10 -4.730167e+00 7.217240e+00 -4.880682 3.191759e-06 6.694165e-05
## MANBAL -4.729360e+00 1.770430e+01 -3.538536 5.676054e-04 2.763465e-03
## BCLAF3 4.726283e+00 1.529940e+01 3.205426 1.716351e-03 6.443559e-03
## VTI1A 4.723592e+00 2.549703e+01 3.104319 2.364621e-03 8.270246e-03
## FAM160B2 -4.720185e+00 1.334812e+01 -3.313678 1.208151e-03 4.919799e-03
## LRRC58 4.715735e+00 1.824548e+01 3.718220 3.027930e-04 1.743265e-03
## PKHD1L1 4.713509e+00 6.406403e+00 4.756806 5.381302e-06 9.597330e-05
## DAPK3 -4.710410e+00 1.366495e+01 -3.300704 1.260622e-03 5.059551e-03
## CLTCL1 4.709029e+00 1.053767e+01 2.597089 1.054187e-02 2.709135e-02
## ZNF451 4.708906e+00 2.258545e+01 3.228962 1.591325e-03 6.060791e-03
## SFI1 -4.707817e+00 1.551822e+01 -3.344198 1.092656e-03 4.556576e-03
## COX17 -4.706127e+00 1.665823e+01 -3.136079 2.139895e-03 7.651236e-03
## BEND7 4.705162e+00 7.674486e+00 3.561755 5.239767e-04 2.609514e-03
## NAT9 -4.702848e+00 1.533557e+01 -3.731769 2.885287e-04 1.682375e-03
## KRR1 4.699357e+00 2.028162e+01 3.340380 1.106516e-03 4.593376e-03
## SERTAD1 -4.697263e+00 1.194549e+01 -2.825283 5.509538e-03 1.619408e-02
## CCL3 -4.690606e+00 8.235264e+00 -3.805932 2.210802e-04 1.389513e-03
## NCAPG2 4.685104e+00 6.530449e+00 4.959545 2.279097e-06 5.238389e-05
## TNFRSF25 -4.682489e+00 6.405671e+00 -3.350066 1.071671e-03 4.483252e-03
## MVB12A -4.682119e+00 1.016360e+01 -3.409511 8.793300e-04 3.853974e-03
## PHRF1 -4.680646e+00 1.260564e+01 -5.608213 1.269801e-07 7.204573e-06
## MARCHF9 -4.678352e+00 7.931730e+00 -3.838849 1.962111e-04 1.273707e-03
## ABCD1 -4.668441e+00 1.007647e+01 -4.514649 1.458172e-05 1.996261e-04
## AKAP11 4.664010e+00 1.744752e+01 2.493788 1.395951e-02 3.416422e-02
## FAM98A 4.659913e+00 1.188365e+01 5.435619 2.791776e-07 1.182517e-05
## CLIP4 4.653824e+00 1.803065e+01 2.780397 6.278905e-03 1.792677e-02
## ORC2 4.649141e+00 1.750766e+01 3.711998 3.095647e-04 1.766688e-03
## TSR2 -4.647465e+00 2.741597e+01 -2.967272 3.608061e-03 1.156530e-02
## SPATA2L -4.642835e+00 6.162861e+00 -3.948172 1.313482e-04 9.401262e-04
## PEAR1 4.642640e+00 8.648463e+00 3.987113 1.136417e-04 8.471346e-04
## IQCE -4.638309e+00 1.673687e+01 -3.104589 2.362619e-03 8.265682e-03
## ZNF609 4.626684e+00 2.070060e+01 2.542279 1.224794e-02 3.060049e-02
## SP4 4.624386e+00 1.337871e+01 3.688338 3.366500e-04 1.878903e-03
## DCP1A 4.618066e+00 2.479981e+01 2.753726 6.781199e-03 1.904532e-02
## DLGAP4 -4.612807e+00 2.451897e+01 -3.116149 2.278472e-03 8.030515e-03
## POLR3H -4.612419e+00 1.125702e+01 -3.094990 2.434672e-03 8.471414e-03
## ZHX1 4.611395e+00 1.298460e+01 4.048429 9.029761e-05 7.211647e-04
## KATNB1 -4.608997e+00 1.215088e+01 -4.365343 2.651677e-05 2.983766e-04
## ABT1 -4.598592e+00 2.377140e+01 -3.639902 3.992525e-04 2.131983e-03
## GSS -4.590199e+00 1.797060e+01 -2.606977 1.025793e-02 2.648793e-02
## TENT4B 4.586125e+00 2.079962e+01 2.567396 1.143754e-02 2.884925e-02
## NAPB 4.580979e+00 1.268102e+01 3.869651 1.753685e-04 1.167155e-03
## CDC6 4.579365e+00 4.799886e+00 6.262223 5.720297e-09 8.173822e-07
## EOLA2 -4.577085e+00 1.464802e+01 -4.339858 2.932818e-05 3.167871e-04
## ATXN10 -4.573393e+00 3.321966e+01 -2.383214 1.868454e-02 4.319663e-02
## ABHD11 -4.564680e+00 8.280971e+00 -5.251962 6.358677e-07 2.082271e-05
## FCSK -4.562687e+00 1.015727e+01 -4.193472 5.192932e-05 4.891832e-04
## SPATA20 -4.561987e+00 8.463381e+00 -3.717019 3.040887e-04 1.749875e-03
## DNM1L 4.544756e+00 2.414621e+01 3.204100 1.723658e-03 6.465079e-03
## WDR70 -4.541314e+00 1.612595e+01 -3.893870 1.604789e-04 1.090705e-03
## RPS6KC1 4.538442e+00 1.663964e+01 3.570502 5.083776e-04 2.560237e-03
## KDM4A 4.537218e+00 3.218762e+01 2.791176 6.085701e-03 1.748460e-02
## MAFK -4.535567e+00 9.546257e+00 -6.225110 6.851374e-09 9.339919e-07
## METAP1 4.534324e+00 1.861043e+01 3.803208 2.232669e-04 1.398191e-03
## THAP3 -4.533329e+00 8.212353e+00 -3.822990 2.078410e-04 1.328122e-03
## ASPSCR1 -4.533174e+00 5.321511e+00 -3.998303 1.089910e-04 8.228089e-04
## HAUS7 -4.529837e+00 6.169819e+00 -4.514770 1.457458e-05 1.996261e-04
## PRRC1 4.527952e+00 1.791919e+01 3.533661 5.771919e-04 2.798649e-03
## CCAR1 4.526020e+00 3.225730e+01 2.591056 1.071856e-02 2.746778e-02
## CUL4A 4.524784e+00 3.796653e+01 2.951558 3.783877e-03 1.201520e-02
## ABHD10 -4.520884e+00 1.903502e+01 -3.446706 7.759923e-04 3.507343e-03
## UCHL5 4.517605e+00 1.745539e+01 5.591935 1.368529e-07 7.523124e-06
## PSMG2 -4.517004e+00 2.825350e+01 -3.018447 3.086322e-03 1.021881e-02
## GOPC 4.514703e+00 2.275215e+01 2.927089 4.073378e-03 1.275013e-02
## CLASP2 4.508688e+00 1.568982e+01 3.843840 1.926811e-04 1.254914e-03
## STAU2 4.506520e+00 2.132552e+01 2.478738 1.453256e-02 3.526829e-02
## BOLA2B -4.505606e+00 9.346033e+00 -2.515585 1.316531e-02 3.253607e-02
## YJU2 -4.503047e+00 8.966040e+00 -3.787762 2.360617e-04 1.456656e-03
## AAR2 -4.501390e+00 2.004174e+01 -3.723987 2.966412e-04 1.717015e-03
## TMEM134 -4.497068e+00 5.038670e+00 -4.864849 3.413692e-06 6.968397e-05
## SENP1 4.496692e+00 1.516419e+01 4.271945 3.829075e-05 3.856928e-04
## NEURL4 -4.493489e+00 1.358058e+01 -4.319512 3.177646e-05 3.373937e-04
## KCTD9 4.491560e+00 1.433280e+01 3.750269 2.700779e-04 1.598365e-03
## SLC35E3 4.489062e+00 2.077680e+01 2.608651 1.021053e-02 2.640528e-02
## WDR44 4.488561e+00 1.693130e+01 2.777619 6.329588e-03 1.803674e-02
## EZH2 4.485325e+00 9.072242e+00 6.767952 4.663586e-10 1.626769e-07
## ARIH2 4.481546e+00 6.893537e+01 2.351371 2.028555e-02 4.600126e-02
## TTF1 4.478708e+00 1.657198e+01 4.861934 3.456150e-06 7.042052e-05
## ANKRD27 4.470340e+00 2.370359e+01 3.662940 3.682153e-04 2.012090e-03
## ILVBL -4.467484e+00 6.593759e+00 -3.744341 2.758649e-04 1.628550e-03
## MTG1 -4.458467e+00 1.044783e+01 -2.471206 1.482717e-02 3.579284e-02
## HECTD3 -4.458182e+00 2.772989e+01 -3.479505 6.944453e-04 3.227320e-03
## EIF2S1 4.456669e+00 3.251727e+01 2.867714 4.862439e-03 1.467992e-02
## GMEB1 4.456602e+00 2.241214e+01 5.285296 5.482794e-07 1.885163e-05
## HACD2 4.453806e+00 1.611157e+01 3.681213 3.452372e-04 1.913161e-03
## KCND1 4.444544e+00 8.704328e+00 3.139721 2.115426e-03 7.582748e-03
## CATSPER1 -4.438237e+00 5.990464e+00 -5.525512 1.855284e-07 8.836814e-06
## MAPK9 4.436954e+00 2.051185e+01 4.934219 2.540322e-06 5.673864e-05
## DESI2 4.435260e+00 2.281496e+01 3.774391 2.476971e-04 1.504193e-03
## ATP13A2 -4.433293e+00 9.373363e+00 -3.483619 6.848050e-04 3.188391e-03
## PEX19 4.433121e+00 4.544849e+01 2.350012 2.035647e-02 4.611800e-02
## SCAMP1 4.432756e+00 2.308457e+01 2.340134 2.087877e-02 4.701389e-02
## CAPN7 4.430823e+00 2.147013e+01 2.799866 5.933903e-03 1.715235e-02
## SPATS2 4.423625e+00 6.266650e+00 4.645919 8.528828e-06 1.350493e-04
## GRK5 4.416908e+00 3.155185e+01 2.562682 1.158587e-02 2.918616e-02
## TMED4 4.416778e+00 4.843742e+01 3.475547 7.038399e-04 3.262872e-03
## ATP10D 4.414731e+00 1.253299e+01 3.172451 1.906949e-03 6.989004e-03
## DENR 4.414270e+00 4.751001e+01 2.513755 1.323041e-02 3.265611e-02
## CDK2 4.412739e+00 1.049011e+01 6.337333 3.964269e-09 6.353545e-07
## AHSA1 -4.410221e+00 4.621075e+01 -2.372162 1.922706e-02 4.414111e-02
## TBC1D13 -4.409537e+00 2.688484e+01 -2.847341 5.163920e-03 1.540732e-02
## IPO9 4.408508e+00 2.128201e+01 3.567467 5.137396e-04 2.573653e-03
## NPAT 4.407781e+00 1.584570e+01 3.029912 2.979414e-03 9.931379e-03
## DNAJC15 4.406618e+00 2.523826e+01 2.816186 5.658121e-03 1.654470e-02
## C9orf139 -4.398730e+00 1.419504e+01 -3.289021 1.309692e-03 5.200184e-03
## TMEM39A 4.396733e+00 1.924127e+01 3.192232 1.790377e-03 6.660561e-03
## SPNS3 -4.393226e+00 3.924589e+00 -2.571238 1.131792e-02 2.860837e-02
## DHRS3 -4.391454e+00 6.324083e+00 -3.616251 4.336791e-04 2.264832e-03
## ARHGEF10L -4.386508e+00 6.468444e+00 -4.272223 3.824922e-05 3.856928e-04
## LRSAM1 -4.385413e+00 1.464646e+01 -4.055647 8.787257e-05 7.065475e-04
## TNFAIP8L1 -4.384853e+00 1.129388e+01 -4.117328 6.954210e-05 5.963624e-04
## GMEB2 -4.382539e+00 1.546603e+01 -4.671699 7.667496e-06 1.235550e-04
## RBM43 4.381581e+00 9.406702e+00 3.352001 1.064834e-03 4.460943e-03
## ZBTB47 -4.370255e+00 1.085733e+01 -5.020042 1.756335e-06 4.330590e-05
## ZNF444 -4.369687e+00 5.833269e+00 -4.155616 6.007083e-05 5.424829e-04
## UFL1 4.361510e+00 1.805867e+01 2.620301 9.886217e-03 2.572976e-02
## PWWP2A 4.358495e+00 2.304911e+01 2.913872 4.238087e-03 1.315804e-02
## CCNB1 4.357051e+00 5.424136e+00 4.146319 6.224978e-05 5.542660e-04
## TCF4 4.356961e+00 9.909642e+00 3.338277 1.114222e-03 4.618901e-03
## VPS53 4.356687e+00 2.735479e+01 3.192639 1.788050e-03 6.656080e-03
## APPL1 4.348391e+00 2.426074e+01 2.753345 6.788622e-03 1.904733e-02
## PAXBP1 4.348150e+00 2.355145e+01 3.117270 2.270459e-03 8.007029e-03
## GNG7 -4.340010e+00 1.507455e+01 -2.694823 8.022361e-03 2.175742e-02
## GTF2F2 -4.338844e+00 1.956746e+01 -2.631850 9.573888e-03 2.505435e-02
## WHAMM 4.338467e+00 2.010645e+01 2.758511 6.688473e-03 1.884659e-02
## SORBS3 -4.337351e+00 4.846766e+00 -4.226566 4.568851e-05 4.443410e-04
## SAMM50 -4.336495e+00 1.939349e+01 -2.905804 4.341622e-03 1.342676e-02
## SCAMP4 -4.333429e+00 1.125526e+01 -4.764385 5.213288e-06 9.439633e-05
## ARL15 4.332105e+00 1.407171e+01 4.254304 4.101852e-05 4.091986e-04
## PATZ1 -4.324831e+00 1.413974e+01 -3.445052 7.803353e-04 3.518926e-03
## JMJD4 -4.322516e+00 6.850376e+00 -3.386308 9.501920e-04 4.090873e-03
## CDCA5 4.315652e+00 4.949994e+00 4.822920 4.076194e-06 7.951260e-05
## GCHFR -4.314499e+00 5.653780e+00 -3.471426 7.137489e-04 3.284851e-03
## ARMC6 -4.314152e+00 9.994980e+00 -3.320124 1.182845e-03 4.842436e-03
## MGA 4.311227e+00 1.588797e+01 2.925604 4.091586e-03 1.279589e-02
## MCM9 4.310891e+00 1.651753e+01 3.690472 3.341183e-04 1.870936e-03
## SIVA1 -4.309473e+00 3.976360e+00 -4.469974 1.746250e-05 2.234145e-04
## DHX16 -4.297121e+00 4.375778e+01 -3.117528 2.268622e-03 8.005312e-03
## SENP5 4.292601e+00 2.901791e+01 3.671549 3.572145e-04 1.962281e-03
## LRFN1 -4.292198e+00 1.284972e+01 -2.652838 9.029029e-03 2.388142e-02
## MOB1B 4.292152e+00 1.889591e+01 2.877304 4.726177e-03 1.434667e-02
## SYNJ2 4.291166e+00 9.003649e+00 4.485849 1.638098e-05 2.141990e-04
## TNRC6A 4.290356e+00 2.137933e+01 2.546908 1.209482e-02 3.028173e-02
## SSX2IP 4.289881e+00 1.099070e+01 4.485195 1.642425e-05 2.145282e-04
## RIN1 -4.289211e+00 4.628575e+00 -4.631160 9.063294e-06 1.412492e-04
## RSPRY1 4.285217e+00 2.862161e+01 2.740442 7.044784e-03 1.961755e-02
## NSUN3 4.279413e+00 2.123095e+01 2.326740 2.160585e-02 4.827531e-02
## SLC35E1 4.277204e+00 2.980168e+01 3.449098 7.697550e-04 3.485794e-03
## LENG1 -4.274184e+00 7.684041e+00 -4.242841 4.288999e-05 4.238961e-04
## TBPL1 4.270397e+00 2.635264e+01 2.626648 9.713437e-03 2.537475e-02
## TUFT1 4.268902e+00 9.264024e+00 3.334480 1.128258e-03 4.664206e-03
## ACSF2 -4.260892e+00 8.752576e+00 -3.286928 1.318665e-03 5.232308e-03
## METTL4 4.260772e+00 1.514392e+01 3.392539 9.306545e-04 4.032723e-03
## USP6NL 4.259712e+00 9.523376e+00 4.789223 4.697506e-06 8.746063e-05
## ESS2 -4.258851e+00 1.197674e+01 -4.063735 8.522932e-05 6.923423e-04
## TNF -4.257344e+00 1.049249e+01 -3.506547 6.333450e-04 2.996897e-03
## ZNF75D 4.257298e+00 1.705072e+01 4.193718 5.188006e-05 4.891077e-04
## CDKN1C -4.253786e+00 3.971863e+00 -2.956316 3.729825e-03 1.188493e-02
## TCHP 4.243781e+00 1.758723e+01 4.466688 1.769483e-05 2.256567e-04
## B4GALT7 -4.240471e+00 6.365812e+00 -3.556954 5.327301e-04 2.640275e-03
## CKAP2 4.235238e+00 1.082355e+01 5.183967 8.588818e-07 2.591943e-05
## NEK4 4.234124e+00 1.222143e+01 3.720309 3.005511e-04 1.735710e-03
## IGFL4 4.229270e+00 7.592843e+00 3.724609 2.959852e-04 1.714813e-03
## AP4E1 4.226411e+00 1.253658e+01 4.346986 2.851420e-05 3.099710e-04
## LRRC8B 4.225277e+00 9.636119e+00 4.294596 3.504292e-05 3.655313e-04
## KIAA0319 4.223438e+00 1.110885e+01 2.519397 1.303067e-02 3.225973e-02
## HEMK1 -4.221851e+00 1.651636e+01 -2.677846 8.416483e-03 2.260421e-02
## TESK2 4.217224e+00 1.999311e+01 2.360575 1.981079e-02 4.519254e-02
## TKFC -4.214893e+00 9.708086e+00 -3.434450 8.087129e-04 3.611079e-03
## RABEP2 -4.211002e+00 4.150292e+00 -4.398958 2.320280e-05 2.730012e-04
## PDE1B -4.206561e+00 1.109671e+01 -3.759047 2.617206e-04 1.559019e-03
## IL21R -4.206507e+00 9.077452e+00 -3.159456 1.987324e-03 7.214466e-03
## CNOT9 4.201937e+00 2.827073e+01 3.729494 2.908778e-04 1.691084e-03
## SMPD2 -4.200633e+00 1.086746e+01 -3.810502 2.174565e-04 1.372557e-03
## FUOM -4.197718e+00 3.384459e+00 -3.854353 1.854422e-04 1.220502e-03
## ZBTB2 4.188314e+00 2.431637e+01 2.819600 5.601941e-03 1.640875e-02
## PUS7L 4.187628e+00 1.317004e+01 4.331222 3.034438e-05 3.248054e-04
## SNRPB2 -4.184016e+00 3.409251e+01 -2.635491 9.477283e-03 2.481797e-02
## EEFSEC -4.180858e+00 6.400606e+00 -3.760290 2.605572e-04 1.554728e-03
## ARMCX3 4.175611e+00 2.614452e+01 2.428833 1.658597e-02 3.909173e-02
## TMEM60 4.172739e+00 2.154349e+01 2.429341 1.656380e-02 3.906277e-02
## CCDC32 4.172285e+00 2.227692e+01 4.148188 6.180590e-05 5.519953e-04
## GIPC1 -4.170794e+00 5.809523e+00 -3.569562 5.100326e-04 2.562594e-03
## POU2F1 4.164591e+00 1.961298e+01 3.036682 2.917901e-03 9.778555e-03
## COQ2 -4.162154e+00 1.348426e+01 -3.796154 2.290263e-04 1.426098e-03
## NR4A1 -4.159040e+00 4.219090e+00 -4.137104 6.448445e-05 5.687154e-04
## GOLPH3L 4.156861e+00 1.486673e+01 2.749449 6.865072e-03 1.920730e-02
## CSE1L 4.156240e+00 2.860318e+01 2.929523 4.043696e-03 1.267060e-02
## IMP4 -4.152272e+00 1.551667e+01 -2.582534 1.097269e-02 2.794514e-02
## CALHM2 -4.148690e+00 1.316614e+01 -2.826102 5.496336e-03 1.617424e-02
## SEMA7A -4.146190e+00 6.358780e+00 -4.011954 1.035629e-04 7.920490e-04
## UBQLN4 -4.142923e+00 1.762492e+01 -2.810561 5.751827e-03 1.675674e-02
## IGSF8 -4.138052e+00 7.130157e+00 -3.653429 3.807415e-04 2.064180e-03
## DALRD3 -4.137103e+00 1.644585e+01 -3.198284 1.756063e-03 6.570003e-03
## THAP4 -4.132936e+00 9.293156e+00 -3.602062 4.556588e-04 2.354734e-03
## ATF1 4.130323e+00 1.875766e+01 2.901093 4.403136e-03 1.356747e-02
## DLGAP5 4.130019e+00 4.193011e+00 4.917232 2.731592e-06 5.999386e-05
## ATP11C 4.129354e+00 1.601883e+01 3.343410 1.095503e-03 4.562031e-03
## FAM102B 4.127613e+00 2.062025e+01 3.211712 1.682093e-03 6.339833e-03
## FUT8 4.120379e+00 8.212014e+00 6.300499 4.746485e-09 7.217092e-07
## DVL1 -4.119037e+00 5.111012e+00 -5.557830 1.600359e-07 8.252286e-06
## ZNF224 4.119014e+00 2.327206e+01 2.597761 1.052233e-02 2.704701e-02
## MLLT10 4.118875e+00 2.162956e+01 3.113855 2.294948e-03 8.074750e-03
## CLK2 -4.118366e+00 3.994927e+01 -3.711355 3.102724e-04 1.768229e-03
## ZNF844 4.117701e+00 1.766881e+01 2.377267 1.897477e-02 4.365486e-02
## HDHD3 -4.110997e+00 8.956087e+00 -3.195376 1.772477e-03 6.614718e-03
## ITPR1 4.104271e+00 1.809554e+01 2.327053 2.158861e-02 4.825897e-02
## HPS5 4.099968e+00 1.502502e+01 3.258110 1.448252e-03 5.627872e-03
## MRE11 4.097028e+00 1.950657e+01 3.421161 8.456512e-04 3.739532e-03
## MTMR11 -4.096974e+00 1.378616e+01 -2.695067 8.016819e-03 2.175234e-02
## DIABLO -4.093043e+00 2.386523e+01 -3.388339 9.437823e-04 4.070275e-03
## UHRF1BP1 4.088204e+00 1.049230e+01 4.035985 9.462957e-05 7.427576e-04
## ATMIN 4.082079e+00 3.150146e+01 2.771249 6.447225e-03 1.832353e-02
## USE1 -4.079934e+00 6.885723e+00 -3.720902 2.999169e-04 1.733438e-03
## TUT4 4.079835e+00 1.829120e+01 2.400747 1.785167e-02 4.158728e-02
## UBR7 4.076471e+00 2.258471e+01 4.178060 5.510722e-05 5.108956e-04
## TRRAP 4.076338e+00 1.691544e+01 2.594993 1.060295e-02 2.722473e-02
## ADCK2 -4.075371e+00 8.212438e+00 -4.402235 2.290190e-05 2.699966e-04
## ADRB2 -4.062008e+00 1.692708e+01 -2.683439 8.284740e-03 2.231958e-02
## TPM2 -4.055541e+00 5.117356e+00 -3.757053 2.635973e-04 1.568622e-03
## TRNAU1AP -4.053639e+00 2.255634e+01 -2.453817 1.552777e-02 3.705419e-02
## EEA1 4.053535e+00 1.316197e+01 3.171485 1.912819e-03 7.004023e-03
## RDX 4.050495e+00 9.716763e+00 4.905302 2.874218e-06 6.175404e-05
## LRCH3 4.047343e+00 2.333332e+01 3.968693 1.217129e-04 8.921604e-04
## STK19 -4.043382e+00 1.266014e+01 -3.554738 5.368164e-04 2.655855e-03
## CSNK1G3 4.037742e+00 2.119050e+01 2.404324 1.768584e-02 4.131283e-02
## MRPL42 4.035683e+00 1.959851e+01 4.301122 3.415746e-05 3.578688e-04
## MRPS25 -4.031225e+00 1.919950e+01 -2.890921 4.538703e-03 1.388061e-02
## ARHGAP5 4.027220e+00 1.044044e+01 3.611107 4.415284e-04 2.300759e-03
## PTPMT1 -4.021006e+00 1.691512e+01 -2.702622 7.846975e-03 2.137463e-02
## SURF2 -4.020715e+00 5.003539e+00 -4.456913 1.840364e-05 2.317522e-04
## ATAD1 4.017897e+00 2.214331e+01 3.092346 2.454873e-03 8.513098e-03
## MRPS23 -4.014700e+00 2.095550e+01 -2.652993 9.025096e-03 2.388030e-02
## RBBP8 4.013021e+00 1.393609e+01 4.547736 1.274967e-05 1.809355e-04
## THAP7 -4.008031e+00 4.236115e+00 -4.113897 7.045735e-05 6.024688e-04
## TMEM94 -4.004036e+00 1.972200e+01 -2.825780 5.501515e-03 1.617864e-02
## ANKRD52 4.002314e+00 2.173494e+01 3.958911 1.262187e-04 9.155681e-04
## GOLGA7B -4.000954e+00 6.787066e+00 -2.682814 8.299368e-03 2.235025e-02
## NBPF11 3.999389e+00 1.473116e+01 2.979044 3.481320e-03 1.124719e-02
## CDK5RAP1 -3.992956e+00 1.508499e+01 -3.111904 2.309043e-03 8.109344e-03
## TOM1L2 -3.992798e+00 1.523963e+01 -5.544640 1.699973e-07 8.435852e-06
## KLHDC4 -3.992066e+00 9.421845e+00 -2.989718 3.369949e-03 1.096204e-02
## CEP162 3.991513e+00 1.075719e+01 3.707024 3.150816e-04 1.787975e-03
## KCTD5 -3.990239e+00 2.158560e+01 -3.811478 2.166899e-04 1.369905e-03
## ZSWIM7 -3.990182e+00 1.089111e+01 -4.209638 4.878489e-05 4.664214e-04
## GSE1 3.990141e+00 1.562932e+01 3.141942 2.100640e-03 7.545000e-03
## FAM3C 3.986369e+00 1.279755e+01 2.914442 4.230860e-03 1.314937e-02
## SMIM7 -3.976114e+00 2.801361e+01 -2.685228 8.243001e-03 2.222635e-02
## NCAPD3 3.974826e+00 1.025959e+01 5.127036 1.102792e-06 3.152463e-05
## RNASEH1 3.972445e+00 1.494570e+01 4.742330 5.716937e-06 1.005977e-04
## INTS4 3.972420e+00 2.197453e+01 4.893148 3.026941e-06 6.433605e-05
## SMURF1 3.969804e+00 1.848964e+01 2.451117 1.563914e-02 3.728995e-02
## SLC10A3 -3.967072e+00 1.375667e+01 -3.062614 2.692971e-03 9.185689e-03
## DHX38 -3.958873e+00 4.268733e+01 -2.778603 6.311583e-03 1.799944e-02
## PLCB3 -3.951569e+00 9.166749e+00 -4.766241 5.172922e-06 9.380864e-05
## ASPM 3.950271e+00 3.928611e+00 5.848721 4.144384e-08 3.366602e-06
## MAP4K5 3.946181e+00 1.338117e+01 3.878648 1.696902e-04 1.138950e-03
## PHF6 3.944742e+00 1.144247e+01 3.854662 1.852330e-04 1.219802e-03
## NAA15 3.944272e+00 1.702195e+01 3.493521 6.621155e-04 3.105849e-03
## MIEF1 3.939376e+00 2.204912e+01 3.393713 9.270168e-04 4.021368e-03
## RNF126 -3.937759e+00 5.363808e+00 -4.423359 2.105097e-05 2.544999e-04
## FAM122B 3.936775e+00 2.266170e+01 3.432535 8.139402e-04 3.629072e-03
## PTK2 3.933382e+00 8.331115e+00 3.953006 1.290150e-04 9.284696e-04
## C5orf24 3.929946e+00 1.594183e+01 3.190091 1.802669e-03 6.691599e-03
## PHTF2 3.927722e+00 2.344879e+01 2.971102 3.566365e-03 1.146263e-02
## LARP4 3.918441e+00 1.249580e+01 4.445371 1.927581e-05 2.402812e-04
## ZNF784 -3.914699e+00 6.822751e+00 -4.650431 8.371614e-06 1.334507e-04
## SLC39A6 3.913423e+00 2.295276e+01 2.829057 5.448933e-03 1.605574e-02
## COA4 -3.909530e+00 1.090686e+01 -3.144458 2.083997e-03 7.494299e-03
## ZMAT3 3.899959e+00 2.203178e+01 2.992044 3.346126e-03 1.090548e-02
## NME3 -3.895551e+00 3.381609e+00 -3.614869 4.357749e-04 2.273775e-03
## FADS1 3.890047e+00 1.026303e+01 3.478277 6.973481e-04 3.238273e-03
## MRPS11 -3.886961e+00 1.483592e+01 -2.729357 7.271811e-03 2.011387e-02
## GUCY1B1 3.869872e+00 1.001657e+01 2.764265 6.578497e-03 1.861787e-02
## SDHAF1 -3.865569e+00 6.307657e+00 -4.354886 2.763743e-05 3.049115e-04
## GSTZ1 -3.865116e+00 5.734021e+00 -5.439025 2.749076e-07 1.177041e-05
## FOXM1 3.863017e+00 4.901730e+00 4.747109 5.603960e-06 9.919846e-05
## GOLT1B 3.861701e+00 2.098623e+01 3.647690 3.884935e-04 2.095286e-03
## MED14 3.861373e+00 1.837739e+01 2.674668 8.492178e-03 2.275237e-02
## LYRM4 -3.856096e+00 9.831868e+00 -2.894535 4.490105e-03 1.377817e-02
## OXCT1 3.855899e+00 1.213257e+01 3.313620 1.208379e-03 4.919799e-03
## PSMD11 3.853607e+00 3.415894e+01 3.073707 2.601747e-03 8.941385e-03
## GALNT6 -3.851236e+00 1.291209e+01 -2.329231 2.146895e-02 4.805999e-02
## FBXO31 -3.851037e+00 8.484113e+00 -3.712985 3.084806e-04 1.765292e-03
## SPAG1 3.845600e+00 7.047075e+00 3.790643 2.336234e-04 1.446124e-03
## MIER3 3.842123e+00 1.024188e+01 4.502084 1.534191e-05 2.062853e-04
## MTMR12 3.841516e+00 2.617007e+01 2.433208 1.639613e-02 3.874314e-02
## KIF2C 3.838297e+00 4.777789e+00 4.168107 5.725789e-05 5.227702e-04
## SART3 3.835329e+00 2.322677e+01 3.138660 2.122531e-03 7.600609e-03
## NECTIN1 -3.832173e+00 9.194156e+00 -3.424803 8.353717e-04 3.706513e-03
## UTP18 -3.831356e+00 2.293167e+01 -3.058373 2.728625e-03 9.280610e-03
## MED17 3.827751e+00 2.408551e+01 2.535431 1.247766e-02 3.110890e-02
## HRAS -3.823520e+00 5.487688e+00 -3.191567 1.794190e-03 6.666384e-03
## STRIP1 3.821820e+00 2.905519e+01 3.236997 1.550621e-03 5.940042e-03
## TMEM11 -3.819131e+00 2.044951e+01 -2.329682 2.144426e-02 4.802569e-02
## DHX29 3.816759e+00 1.834194e+01 3.598818 4.608288e-04 2.373165e-03
## TTYH2 -3.813943e+00 1.125504e+01 -2.866930 4.873726e-03 1.470513e-02
## RAB30 3.809154e+00 7.387232e+00 3.831979 2.011710e-04 1.297615e-03
## AMIGO2 3.808581e+00 1.002078e+01 3.810525 2.174382e-04 1.372557e-03
## NHLRC2 3.805637e+00 1.106596e+01 4.790149 4.679261e-06 8.746063e-05
## PHACTR4 3.805045e+00 1.447161e+01 4.217296 4.736001e-05 4.572774e-04
## RBM12B 3.804414e+00 1.741799e+01 2.608775 1.020703e-02 2.640528e-02
## DENND6B -3.801059e+00 3.805693e+00 -5.531936 1.801636e-07 8.685934e-06
## NFATC1 -3.798948e+00 1.200746e+01 -3.914362 1.488278e-04 1.029212e-03
## CCNB2 3.798293e+00 4.519676e+00 3.957384 1.269361e-04 9.196472e-04
## ZNF22 3.796176e+00 1.954409e+01 3.266894 1.407546e-03 5.507586e-03
## PRPS2 3.793552e+00 1.599031e+01 3.414733 8.640816e-04 3.802983e-03
## NAALADL1 -3.792294e+00 5.807295e+00 -3.653377 3.808117e-04 2.064180e-03
## RMND5B -3.792224e+00 1.969871e+01 -2.873066 4.785946e-03 1.449472e-02
## ZNF81 3.790453e+00 1.015307e+01 3.997911 1.091508e-04 8.229676e-04
## MRPS2 -3.790275e+00 8.503008e+00 -2.687313 8.194591e-03 2.213342e-02
## C12orf76 3.787843e+00 1.295168e+01 4.067229 8.411093e-05 6.856052e-04
## PLCD1 -3.787564e+00 1.155611e+01 -3.341930 1.100871e-03 4.577954e-03
## RELL2 -3.781636e+00 7.260266e+00 -3.968303 1.218897e-04 8.924554e-04
## TK1 3.780263e+00 5.283466e+00 2.846132 5.182334e-03 1.544672e-02
## ARL16 -3.778625e+00 1.312072e+01 -3.446425 7.767288e-04 3.509335e-03
## DPH5 -3.777087e+00 1.455070e+01 -4.021416 9.995350e-05 7.744576e-04
## SMAD5 3.777055e+00 1.192468e+01 3.278481 1.355481e-03 5.353314e-03
## CENPU 3.771570e+00 5.718738e+00 5.393437 3.377525e-07 1.362498e-05
## SOWAHD -3.766601e+00 6.818966e+00 -5.066743 1.434487e-06 3.730924e-05
## SWT1 3.765032e+00 1.053536e+01 3.643047 3.948738e-04 2.115268e-03
## VPS52 -3.758323e+00 2.290242e+01 -3.623986 4.221222e-04 2.226042e-03
## ZNF428 -3.754394e+00 5.318681e+00 -4.009114 1.046708e-04 7.972994e-04
## POLR2M 3.751744e+00 1.955286e+01 2.504654 1.355839e-02 3.334076e-02
## REV1 3.750975e+00 1.620872e+01 3.270855 1.389538e-03 5.453805e-03
## EXOC2 3.747921e+00 1.759741e+01 2.885217 4.616389e-03 1.407827e-02
## REXO1 -3.738882e+00 8.139960e+00 -5.728558 7.273785e-08 5.044859e-06
## DNAH1 3.737691e+00 2.261873e+01 2.559161 1.169778e-02 2.941183e-02
## CDK5 -3.733167e+00 1.028263e+01 -3.977370 1.178451e-04 8.697217e-04
## TESK1 -3.729455e+00 9.805560e+00 -3.836941 1.975770e-04 1.279772e-03
## UBN2 3.728874e+00 1.534881e+01 3.035344 2.929964e-03 9.796836e-03
## CFDP1 -3.725328e+00 2.735743e+01 -2.686819 8.206042e-03 2.215426e-02
## TTC33 3.713841e+00 1.880220e+01 2.403146 1.774029e-02 4.140322e-02
## PLA2G7 -3.712512e+00 4.290104e+00 -5.071071 1.407754e-06 3.669442e-05
## NFKBIB -3.711405e+00 1.648650e+01 -2.668006 8.652864e-03 2.308209e-02
## NOL8 3.699937e+00 2.246275e+01 2.695709 8.002259e-03 2.173272e-02
## METTL14 3.696869e+00 1.674182e+01 3.194826 1.775595e-03 6.622187e-03
## RAD50 3.693503e+00 1.636742e+01 3.036010 2.923950e-03 9.790527e-03
## HIKESHI -3.690151e+00 1.597694e+01 -2.668597 8.638504e-03 2.305924e-02
## SNX8 -3.689176e+00 6.323892e+00 -4.045769 9.120731e-05 7.245404e-04
## BLM 3.687134e+00 7.675997e+00 5.268713 5.902692e-07 1.971998e-05
## ZKSCAN8 3.684102e+00 1.158964e+01 2.848608 5.144684e-03 1.536926e-02
## APEX2 -3.683059e+00 1.617381e+01 -3.451543 7.634273e-04 3.462427e-03
## ACADS -3.683048e+00 4.749622e+00 -4.028615 9.728780e-05 7.595386e-04
## CFAP410 -3.680609e+00 5.579006e+00 -3.413470 8.677458e-04 3.815020e-03
## ZSCAN32 3.673550e+00 1.941421e+01 3.040576 2.883051e-03 9.688874e-03
## ABHD18 3.669847e+00 1.646802e+01 3.559075 5.288464e-04 2.626515e-03
## SERGEF -3.669545e+00 8.533401e+00 -3.443081 7.855379e-04 3.535666e-03
## CAPS -3.668753e+00 3.179834e+00 -4.515122 1.455381e-05 1.996261e-04
## VPS37A 3.668340e+00 2.034202e+01 2.507258 1.346382e-02 3.315971e-02
## S1PR3 3.667295e+00 1.022066e+01 2.718347 7.503872e-03 2.061522e-02
## PARG 3.665445e+00 1.400629e+01 3.886760 1.647201e-04 1.113786e-03
## PBDC1 -3.663647e+00 1.601970e+01 -2.744304 6.967193e-03 1.944714e-02
## EDRF1 3.657325e+00 1.457291e+01 4.835261 3.869227e-06 7.622764e-05
## MASTL 3.656637e+00 8.050500e+00 5.122532 1.124742e-06 3.175596e-05
## POGK 3.656094e+00 2.561519e+01 2.491436 1.404772e-02 3.435175e-02
## INPP5B -3.653176e+00 2.233440e+01 -3.377561 9.782681e-04 4.181477e-03
## HSPBP1 -3.650095e+00 4.388639e+00 -3.365330 1.018836e-03 4.318581e-03
## SLC25A45 -3.648624e+00 7.124357e+00 -4.287061 3.609283e-05 3.732005e-04
## MSI2 3.646769e+00 1.646098e+01 2.740130 7.051083e-03 1.962587e-02
## PHETA1 -3.642788e+00 5.213331e+00 -4.402764 2.285376e-05 2.696971e-04
## ANKRA2 3.639271e+00 1.404003e+01 3.793400 2.313126e-04 1.436318e-03
## PCBP4 -3.635958e+00 5.078516e+00 -3.323876 1.168344e-03 4.797977e-03
## TRAPPC9 -3.629530e+00 1.611589e+01 -3.370567 1.001276e-03 4.259647e-03
## STRN3 3.625996e+00 1.439236e+01 2.846438 5.177668e-03 1.543669e-02
## ZNF684 3.620836e+00 5.441514e+00 3.011299 3.154754e-03 1.040472e-02
## ASB13 -3.620425e+00 8.068603e+00 -4.309402 3.306499e-05 3.495105e-04
## PEX5 -3.619628e+00 1.715291e+01 -4.393190 2.374152e-05 2.760534e-04
## ITGA1 3.618699e+00 7.039792e+00 3.419853 8.493695e-04 3.754574e-03
## DUSP18 3.613728e+00 1.203169e+01 3.646207 3.905217e-04 2.099471e-03
## LRRC61 -3.613578e+00 4.476915e+00 -5.793014 5.383259e-08 4.119061e-06
## NDUFA8 -3.607758e+00 1.787617e+01 -2.578424 1.109719e-02 2.820882e-02
## IQCB1 3.595693e+00 1.512658e+01 3.735990 2.842166e-04 1.662954e-03
## CENPE 3.595145e+00 4.188713e+00 4.902794 2.905102e-06 6.230473e-05
## DHRS7B -3.594073e+00 1.486559e+01 -3.191782 1.792954e-03 6.664224e-03
## NUBP1 -3.591397e+00 1.721894e+01 -3.265236 1.415146e-03 5.526387e-03
## CROCC -3.590996e+00 4.274006e+00 -4.961150 2.263447e-06 5.212521e-05
## MSH6 3.586682e+00 2.168682e+01 3.586542 4.809036e-04 2.451017e-03
## HDDC2 -3.584370e+00 1.591801e+01 -2.921410 4.143413e-03 1.292501e-02
## AGFG2 -3.584211e+00 7.216096e+00 -2.907699 4.317090e-03 1.337880e-02
## PCK2 -3.582711e+00 1.423518e+01 -2.608178 1.022390e-02 2.642883e-02
## TRMU -3.576382e+00 9.363853e+00 -3.320177 1.182639e-03 4.842436e-03
## HEATR1 3.573283e+00 9.263991e+00 3.226588 1.603538e-03 6.095500e-03
## DHX30 -3.572215e+00 1.784720e+01 -2.839880 5.278526e-03 1.567042e-02
## TOP3B -3.572022e+00 1.327283e+01 -4.186118 5.342303e-05 5.000767e-04
## TRAF2 -3.568383e+00 7.122814e+00 -3.304523 1.244962e-03 5.013668e-03
## BOD1 -3.566363e+00 9.862066e+00 -4.043763 9.189912e-05 7.286783e-04
## CAPN15 -3.565016e+00 5.202729e+00 -4.186730 5.329719e-05 4.996874e-04
## MPHOSPH9 3.564852e+00 7.194862e+00 4.916339 2.742032e-06 6.011183e-05
## FEM1A -3.561224e+00 2.698472e+01 -3.959908 1.257525e-04 9.127443e-04
## OGFOD2 -3.559689e+00 9.250384e+00 -3.165173 1.951585e-03 7.113981e-03
## SLC17A5 3.555724e+00 1.547184e+01 3.120854 2.245026e-03 7.945691e-03
## ZNHIT3 -3.553205e+00 2.452705e+01 -2.430762 1.650201e-02 3.894029e-02
## HYAL2 -3.547845e+00 9.461095e+00 -3.269876 1.393969e-03 5.465279e-03
## USP39 3.544606e+00 4.384130e+01 2.319987 2.198081e-02 4.893794e-02
## INTS6L 3.539868e+00 2.228831e+01 2.496470 1.385952e-02 3.396156e-02
## REX1BD -3.536559e+00 3.423726e+00 -3.697065 3.264083e-04 1.834693e-03
## BCAT2 -3.534393e+00 5.510112e+00 -3.826309 2.053537e-04 1.317011e-03
## SMARCAD1 3.533936e+00 1.120224e+01 2.944208 3.868789e-03 1.222591e-02
## PICK1 -3.532000e+00 9.753561e+00 -3.415017 8.632601e-04 3.801806e-03
## SLC16A1 3.529924e+00 7.814640e+00 5.285254 5.483821e-07 1.885163e-05
## EDC3 -3.524002e+00 2.121562e+01 -3.151801 2.036134e-03 7.360119e-03
## MAD2L1 3.517043e+00 5.855353e+00 4.419067 2.141498e-05 2.568065e-04
## BTLA 3.516678e+00 9.656279e+00 3.504124 6.386075e-04 3.015082e-03
## SACS 3.515835e+00 8.787320e+00 2.760299 6.654125e-03 1.878954e-02
## ZNF799 3.512954e+00 8.736181e+00 2.609666 1.018190e-02 2.636047e-02
## FXR2 -3.506651e+00 3.413960e+01 -2.362595 1.970787e-02 4.499237e-02
## DENND5B 3.502210e+00 4.222445e+00 4.098362 7.474791e-05 6.287306e-04
## NPIPA7 -3.501721e+00 1.139457e+01 -2.666272 8.695138e-03 2.317148e-02
## UNC50 3.501300e+00 2.825608e+01 2.561496 1.162345e-02 2.924976e-02
## VSIG10 3.500050e+00 6.069372e+00 2.578510 1.109459e-02 2.820882e-02
## TCERG1 3.496234e+00 1.565597e+01 2.834646 5.360329e-03 1.584783e-02
## PRXL2B -3.493311e+00 8.273215e+00 -4.553511 1.245356e-05 1.785964e-04
## TMEM234 -3.491536e+00 9.954188e+00 -3.569378 5.103581e-04 2.562594e-03
## FIP1L1 3.485685e+00 2.867529e+01 3.295598 1.281851e-03 5.125675e-03
## ZNF136 3.484352e+00 1.346685e+01 2.977229 3.500585e-03 1.129098e-02
## GUCY1A1 3.479637e+00 6.703931e+00 2.946054 3.847302e-03 1.217658e-02
## ZNF783 -3.478669e+00 1.092345e+01 -3.002702 3.238912e-03 1.062026e-02
## ANKRD40 3.474694e+00 1.607301e+01 3.476148 7.024054e-04 3.257931e-03
## NGRN -3.473633e+00 2.365247e+01 -2.519366 1.303173e-02 3.225973e-02
## KAT6B 3.472513e+00 9.824632e+00 3.390114 9.382129e-04 4.055104e-03
## GALK2 3.469836e+00 1.196634e+01 5.155557 9.731833e-07 2.846467e-05
## SLC25A25 -3.469117e+00 1.216950e+01 -3.858046 1.829612e-04 1.209543e-03
## EXOSC5 -3.466199e+00 3.921173e+00 -4.713959 6.434539e-06 1.084000e-04
## CENPX -3.465988e+00 8.374589e+00 -2.446541 1.582954e-02 3.766066e-02
## AARSD1 -3.465364e+00 8.709452e+00 -3.055053 2.756843e-03 9.355856e-03
## CCDC61 -3.464548e+00 4.173247e+00 -5.005756 1.868104e-06 4.479053e-05
## SPPL2B -3.464221e+00 5.348899e+00 -4.160670 5.891703e-05 5.350352e-04
## CTNNAL1 3.463298e+00 6.573702e+00 3.955116 1.280092e-04 9.249438e-04
## BTBD7 3.459090e+00 1.779174e+01 2.714654 7.583201e-03 2.078021e-02
## SEPHS1 3.458092e+00 1.593709e+01 3.545585 5.540110e-04 2.712870e-03
## ZSCAN18 -3.457676e+00 5.291161e+00 -4.732457 5.957396e-06 1.032007e-04
## CEP135 3.455364e+00 1.292994e+01 2.443346 1.596372e-02 3.794182e-02
## RPRD1B 3.452839e+00 1.997588e+01 2.861478 4.952960e-03 1.490916e-02
## SLC16A7 3.452054e+00 1.160564e+01 2.582320 1.097917e-02 2.795468e-02
## RAP1GDS1 3.450491e+00 2.541334e+01 3.343168 1.096379e-03 4.564076e-03
## FAM20B 3.447566e+00 2.014781e+01 3.434843 8.076442e-04 3.607781e-03
## PPP2R3B -3.446629e+00 4.742568e+00 -5.015892 1.788116e-06 4.381622e-05
## GORASP2 3.444107e+00 3.007691e+01 2.346206 2.055636e-02 4.644664e-02
## GINS2 3.441858e+00 4.211891e+00 4.620341 9.475546e-06 1.457535e-04
## HAAO -3.440960e+00 3.365732e+00 -6.840592 3.231077e-10 1.425294e-07
## INO80 3.439599e+00 2.256520e+01 2.837229 5.319809e-03 1.576141e-02
## HMGXB4 3.437401e+00 1.218550e+01 3.751058 2.693162e-04 1.594653e-03
## UBA5 3.423600e+00 1.449998e+01 3.516704 6.117338e-04 2.921934e-03
## NDUFAF7 -3.423500e+00 1.187214e+01 -3.997076 1.094921e-04 8.250165e-04
## TGFBRAP1 3.421573e+00 1.744006e+01 3.870718 1.746863e-04 1.165230e-03
## GCDH -3.416283e+00 9.478377e+00 -2.932379 4.009122e-03 1.258222e-02
## NDC80 3.408834e+00 5.917033e+00 6.341852 3.877503e-09 6.299614e-07
## TNPO2 -3.408587e+00 2.371625e+01 -2.796964 5.984203e-03 1.726828e-02
## DDX28 -3.406124e+00 1.279964e+01 -3.426851 8.296438e-04 3.685234e-03
## SNRNP48 3.404924e+00 1.562827e+01 2.984828 3.420557e-03 1.108410e-02
## MUTYH -3.398736e+00 6.164116e+00 -4.417002 2.159228e-05 2.584102e-04
## GATA3 -3.391679e+00 4.840346e+00 -3.187321 1.818686e-03 6.742613e-03
## SLC4A7 3.389109e+00 9.586608e+00 2.539479 1.234139e-02 3.082100e-02
## DEAF1 -3.388976e+00 1.034211e+01 -3.214675 1.666167e-03 6.293230e-03
## RGPD8 3.387696e+00 7.697106e+00 4.041117 9.281932e-05 7.338914e-04
## WDR43 3.387491e+00 1.520267e+01 2.447426 1.579257e-02 3.759532e-02
## REEP4 -3.383179e+00 1.188265e+01 -3.135406 2.144441e-03 7.660565e-03
## SCCPDH -3.382909e+00 1.456021e+01 -2.681452 8.331320e-03 2.242102e-02
## GFM2 3.382430e+00 1.627594e+01 3.836430 1.979442e-04 1.280752e-03
## ZNF362 -3.381311e+00 9.425953e+00 -6.768511 4.650460e-10 1.626769e-07
## LIN37 -3.376766e+00 1.274398e+01 -2.653382 9.015276e-03 2.386247e-02
## CENPC 3.375852e+00 1.437690e+01 2.585301 1.088960e-02 2.779227e-02
## NRF1 -3.374217e+00 2.468651e+01 -3.397583 9.151147e-04 3.982466e-03
## CPTP -3.373442e+00 5.274636e+00 -3.906322 1.532997e-04 1.051553e-03
## ZNF671 -3.369486e+00 1.503733e+01 -4.117683 6.944814e-05 5.960191e-04
## GALT -3.362345e+00 1.076786e+01 -2.972716 3.548934e-03 1.141279e-02
## HJURP 3.360710e+00 3.574267e+00 4.973327 2.148109e-06 4.985632e-05
## ELP5 -3.358456e+00 1.575679e+01 -2.888138 4.576458e-03 1.397446e-02
## C7orf26 -3.357980e+00 2.206129e+01 -2.728771 7.283987e-03 2.013352e-02
## KIFC1 3.350532e+00 3.895032e+00 4.591828 1.065067e-05 1.598948e-04
## CEP57 3.350386e+00 2.293802e+01 2.446655 1.582479e-02 3.765691e-02
## UBALD1 -3.347368e+00 4.023117e+00 -3.740922 2.792549e-04 1.642024e-03
## CACTIN -3.341300e+00 5.544140e+00 -4.584553 1.097236e-05 1.630729e-04
## LOXHD1 3.338021e+00 6.948033e+00 3.061353 2.703529e-03 9.213750e-03
## SUCNR1 3.337149e+00 3.860900e+00 4.332064 3.024377e-05 3.240209e-04
## PTRHD1 -3.337115e+00 7.100940e+00 -3.295352 1.282884e-03 5.128076e-03
## ARHGAP11A 3.334508e+00 5.148749e+00 6.065518 1.479671e-08 1.646359e-06
## TOP1MT -3.334259e+00 5.481799e+00 -3.546693 5.519023e-04 2.707015e-03
## ECT2 3.334109e+00 7.316110e+00 4.851386 3.614113e-06 7.250265e-05
## PELI3 -3.330519e+00 4.537970e+00 -6.852400 3.043515e-10 1.425294e-07
## SNIP1 3.327978e+00 1.656125e+01 3.123250 2.228170e-03 7.900177e-03
## CDC7 3.324990e+00 5.656738e+00 7.608243 6.104652e-12 1.206686e-08
## DCUN1D3 3.324735e+00 9.086661e+00 3.720260 3.006028e-04 1.735710e-03
## DTL 3.322925e+00 3.235270e+00 6.736214 5.471795e-10 1.802652e-07
## ACTL6A 3.322795e+00 1.502742e+01 3.565164 5.178448e-04 2.590316e-03
## RNF168 3.322085e+00 2.170754e+01 2.617319 9.968315e-03 2.590932e-02
## DSTYK 3.321954e+00 1.804712e+01 2.574505 1.121709e-02 2.842014e-02
## PDK2 -3.318051e+00 7.084785e+00 -3.862925 1.797315e-04 1.191512e-03
## NDRG2 -3.314536e+00 4.379704e+00 -4.991128 1.989717e-06 4.685951e-05
## SLC33A1 3.312548e+00 1.850734e+01 3.640408 3.985454e-04 2.131086e-03
## CDYL2 3.310058e+00 9.220896e+00 4.130139 6.622415e-05 5.781139e-04
## BRF1 -3.309086e+00 5.506299e+00 -4.536870 1.332535e-05 1.870280e-04
## PLD1 3.303512e+00 9.232717e+00 3.516122 6.129527e-04 2.925400e-03
## NCBP1 3.303007e+00 2.127427e+01 2.949995 3.801783e-03 1.205915e-02
## TNFRSF9 -3.299963e+00 7.481335e+00 -2.483964 1.433124e-02 3.488566e-02
## TM2D2 -3.298866e+00 1.716392e+01 -3.539634 5.654682e-04 2.755619e-03
## ERCC3 3.296643e+00 2.778887e+01 2.996643 3.299464e-03 1.077710e-02
## PIGBOS1 -3.295832e+00 1.692936e+01 -2.841199 5.258106e-03 1.561788e-02
## DERA 3.295259e+00 2.078248e+01 2.645936 9.205034e-03 2.427117e-02
## PPP2R1B 3.294712e+00 1.189528e+01 5.169888 9.137880e-07 2.709381e-05
## SMIM5 3.293537e+00 7.977298e+00 2.364289 1.962202e-02 4.483088e-02
## SCRN1 3.292327e+00 1.257360e+01 2.477640 1.457520e-02 3.532841e-02
## TMEM187 -3.291307e+00 4.428668e+00 -5.500730 2.077284e-07 9.475610e-06
## ZNF280D 3.290216e+00 1.587320e+01 2.735175 7.151841e-03 1.985637e-02
## NBDY -3.286040e+00 9.286331e+00 -3.289889 1.305987e-03 5.188945e-03
## ABCB8 -3.283056e+00 6.121221e+00 -3.588623 4.774424e-04 2.440719e-03
## METTL3 3.281299e+00 2.451178e+01 2.623125 9.809004e-03 2.559058e-02
## KCNH3 -3.280271e+00 5.687760e+00 -2.365718 1.954980e-02 4.470034e-02
## SKA2 3.280175e+00 1.253413e+01 3.989161 1.127766e-04 8.433358e-04
## XPO4 3.278112e+00 1.176345e+01 2.778584 6.311944e-03 1.799944e-02
## GRAMD4 -3.276606e+00 1.295125e+01 -3.678530 3.485238e-04 1.927935e-03
## COQ9 -3.273276e+00 1.839751e+01 -3.785478 2.380121e-04 1.464120e-03
## SQLE 3.272453e+00 8.555923e+00 4.030430 9.662667e-05 7.559316e-04
## ZDHHC13 3.272105e+00 1.513708e+01 2.660258 8.843201e-03 2.348418e-02
## RAD17 3.271110e+00 1.547157e+01 4.189572 5.271641e-05 4.958102e-04
## CUL5 3.269312e+00 1.720670e+01 2.894063 4.496427e-03 1.379301e-02
## MROH1 -3.264627e+00 7.455327e+00 -3.682132 3.441175e-04 1.908010e-03
## RASGRP3 3.261660e+00 5.629790e+00 4.514453 1.459324e-05 1.996261e-04
## FBXL6 -3.257749e+00 6.115787e+00 -3.029764 2.980767e-03 9.933097e-03
## MEN1 -3.256461e+00 1.135054e+01 -2.675184 8.479849e-03 2.272791e-02
## KLHDC10 3.255429e+00 2.108948e+01 2.714797 7.580120e-03 2.077818e-02
## ZNF598 -3.253959e+00 7.452848e+00 -3.982559 1.155886e-04 8.575216e-04
## UHRF1 3.250698e+00 4.605744e+00 5.211586 7.603568e-07 2.373113e-05
## RTL8A -3.250521e+00 6.778449e+00 -5.319257 4.711787e-07 1.708923e-05
## AK3 3.250159e+00 1.842348e+01 3.740496 2.796805e-04 1.643712e-03
## CZIB -3.249865e+00 2.281314e+01 -2.586530 1.085287e-02 2.773064e-02
## UXS1 3.249380e+00 2.384312e+01 2.571852 1.129891e-02 2.857861e-02
## GMNN 3.249379e+00 6.201325e+00 4.499129 1.552621e-05 2.070123e-04
## SLC30A5 3.248322e+00 2.559714e+01 2.511465 1.331227e-02 3.283768e-02
## SNX21 -3.248205e+00 7.582398e+00 -5.254387 6.290607e-07 2.078178e-05
## INO80B -3.245410e+00 8.678664e+00 -5.232386 6.935182e-07 2.217015e-05
## ZNF699 3.244581e+00 8.758494e+00 3.147840 2.061824e-03 7.428076e-03
## OGFOD3 -3.240753e+00 6.277364e+00 -3.914925 1.485198e-04 1.027681e-03
## PMPCA -3.239878e+00 1.365694e+01 -2.850430 5.117136e-03 1.530624e-02
## NR6A1 -3.238146e+00 8.241806e+00 -3.708303 3.136537e-04 1.782431e-03
## CES2 -3.236858e+00 2.257962e+01 -3.228959 1.591341e-03 6.060791e-03
## MAP3K6 -3.236249e+00 6.981483e+00 -3.709791 3.120009e-04 1.775082e-03
## PTGIR -3.233124e+00 7.081861e+00 -2.631314 9.588186e-03 2.506964e-02
## PIGC 3.231890e+00 2.101348e+01 3.607768 4.466958e-04 2.320548e-03
## GTF3C3 3.230048e+00 1.454921e+01 3.184635 1.834343e-03 6.781581e-03
## ERMP1 3.227747e+00 1.049954e+01 4.111145 7.119982e-05 6.062432e-04
## MAP2K7 -3.227219e+00 1.644871e+01 -2.820218 5.591818e-03 1.638925e-02
## CUL2 3.226835e+00 2.219729e+01 3.002858 3.237368e-03 1.061814e-02
## PEX13 3.223627e+00 1.442421e+01 3.641091 3.975918e-04 2.127906e-03
## ATAD3B -3.221743e+00 5.989959e+00 -3.184958 1.832450e-03 6.776758e-03
## PLEKHB1 -3.221609e+00 6.360133e+00 -2.849018 5.138467e-03 1.535455e-02
## NUDT2 -3.214894e+00 1.421060e+01 -2.543999 1.219084e-02 3.048995e-02
## IDE 3.210312e+00 1.526620e+01 3.722242 2.984898e-04 1.726031e-03
## BLOC1S3 -3.209510e+00 1.518008e+01 -4.341633 2.912347e-05 3.151499e-04
## PRPS1 3.209464e+00 2.240772e+01 2.462227 1.518533e-02 3.644234e-02
## MDP1 -3.206690e+00 7.681028e+00 -3.223380 1.620185e-03 6.154834e-03
## BCOR 3.205135e+00 1.210760e+01 2.860794 4.962982e-03 1.493223e-02
## SIAE 3.199592e+00 1.134729e+01 2.784268 6.208871e-03 1.775246e-02
## YLPM1 3.199062e+00 1.652196e+01 2.958779 3.702129e-03 1.181233e-02
## MSMO1 3.198025e+00 1.239637e+01 2.768092 6.506266e-03 1.845153e-02
## VRK2 3.195871e+00 1.473284e+01 2.355746 2.005864e-02 4.557385e-02
## SLC27A4 -3.191550e+00 7.812821e+00 -2.968453 3.595156e-03 1.153640e-02
## SLC35D1 3.190514e+00 1.060355e+01 3.126256 2.207184e-03 7.837485e-03
## PVRIG -3.186824e+00 7.353762e+00 -2.584461 1.091478e-02 2.783856e-02
## TAPT1 3.176706e+00 2.214571e+01 2.320507 2.195171e-02 4.890069e-02
## ZNF28 3.174070e+00 1.160783e+01 3.545892 5.534266e-04 2.711127e-03
## DUSP23 -3.173582e+00 8.907170e+00 -2.479750 1.449337e-02 3.518466e-02
## GOLGA3 3.173171e+00 2.604738e+01 2.669061 8.627232e-03 2.303444e-02
## ZNF621 3.172884e+00 1.099581e+01 3.451176 7.643740e-04 3.464072e-03
## PPAN -3.166896e+00 5.320803e+00 -4.177303 5.526804e-05 5.108956e-04
## USP14 3.161048e+00 1.817708e+01 2.717226 7.527873e-03 2.065872e-02
## OSBPL3 3.156990e+00 1.017479e+01 2.843347 5.224986e-03 1.553480e-02
## ZNF100 3.154161e+00 1.207066e+01 2.433529 1.638228e-02 3.872710e-02
## TMEM62 3.151395e+00 1.265611e+01 2.901514 4.397602e-03 1.355924e-02
## TOMM40 -3.148956e+00 1.089243e+01 -2.415230 1.718866e-02 4.031195e-02
## KANSL1L 3.148489e+00 9.319335e+00 3.140458 2.110508e-03 7.575856e-03
## FBXO5 3.148001e+00 5.296409e+00 6.477479 1.989160e-09 4.212756e-07
## SWI5 -3.147572e+00 8.839777e+00 -3.306090 1.238587e-03 4.996088e-03
## TBC1D22B 3.147080e+00 1.272462e+01 3.305388 1.241437e-03 5.004190e-03
## CCDC134 3.146445e+00 8.867526e+00 5.005238 1.872287e-06 4.479053e-05
## RPP21 -3.145332e+00 4.346456e+00 -3.684725 3.409786e-04 1.894480e-03
## ECI1 -3.141571e+00 4.541724e+00 -3.736129 2.840756e-04 1.662950e-03
## SLC22A1 3.137702e+00 7.523701e+00 2.631348 9.587266e-03 2.506964e-02
## SMYD5 -3.134735e+00 9.047072e+00 -2.659737 8.856140e-03 2.350802e-02
## CENPN 3.131995e+00 6.068023e+00 3.647100 3.892985e-04 2.097841e-03
## TBC1D25 -3.131420e+00 1.967767e+01 -2.424839 1.676093e-02 3.945704e-02
## MAP1A 3.131407e+00 7.732170e+00 2.571449 1.131138e-02 2.860394e-02
## DIPK1A 3.131301e+00 6.401045e+00 4.032174 9.599528e-05 7.519841e-04
## ZNF358 -3.128231e+00 2.678694e+00 -5.012566 1.813987e-06 4.426725e-05
## RNGTT 3.126704e+00 1.787533e+01 2.542738 1.223267e-02 3.057524e-02
## XYLT2 -3.121143e+00 8.142774e+00 -3.587384 4.794999e-04 2.445965e-03
## LCMT1 -3.119980e+00 1.328296e+01 -2.883235 4.643668e-03 1.414327e-02
## ABRAXAS2 3.117090e+00 1.367703e+01 3.699966 3.230693e-04 1.820239e-03
## GPN2 -3.116279e+00 2.161797e+01 -2.595032 1.060183e-02 2.722473e-02
## MRPL41 -3.114569e+00 3.160560e+00 -3.492959 6.633843e-04 3.109778e-03
## CPSF4 -3.106418e+00 1.513954e+01 -2.331296 2.135607e-02 4.787959e-02
## NOB1 -3.101150e+00 1.124976e+01 -2.990372 3.363240e-03 1.094733e-02
## KNL1 3.100207e+00 3.506061e+00 5.890654 3.400866e-08 2.922773e-06
## ALDH18A1 3.099912e+00 9.977832e+00 3.227259 1.600079e-03 6.085974e-03
## CHEK1 3.097601e+00 4.014832e+00 6.331366 4.081743e-09 6.454597e-07
## ZNF226 -3.094180e+00 1.282068e+01 -4.249660 4.176699e-05 4.155675e-04
## MAPK11 -3.093733e+00 3.276328e+00 -3.901210 1.562092e-04 1.066575e-03
## TMEM102 -3.092270e+00 5.149900e+00 -4.603005 1.017414e-05 1.543035e-04
## NAA16 3.086750e+00 1.149473e+01 3.910340 1.510495e-04 1.039122e-03
## VAMP4 3.082903e+00 2.447515e+01 2.511120 1.332462e-02 3.286131e-02
## GGCX 3.082464e+00 1.796261e+01 3.844422 1.922734e-04 1.253635e-03
## NDUFV3 -3.081768e+00 1.748673e+01 -3.224335 1.615216e-03 6.137924e-03
## ERCC6 3.081588e+00 1.040618e+01 3.550029 5.455995e-04 2.686098e-03
## TIMM9 -3.078541e+00 8.627813e+00 -3.474681 7.059114e-04 3.269078e-03
## AMMECR1L 3.077654e+00 1.874704e+01 3.397502 9.153628e-04 3.982466e-03
## RARS1 -3.076436e+00 2.727670e+01 -2.371454 1.926228e-02 4.420485e-02
## CPEB3 3.075612e+00 8.221757e+00 3.036097 2.923166e-03 9.790527e-03
## CSRNP2 3.075109e+00 1.500102e+01 2.962862 3.656635e-03 1.168940e-02
## POLR2I -3.073080e+00 5.214807e+00 -3.304668 1.244368e-03 5.012977e-03
## BUD13 -3.073019e+00 2.442742e+01 -3.079391 2.556117e-03 8.812660e-03
## NFRKB 3.070484e+00 2.628609e+01 2.530684 1.263914e-02 3.143881e-02
## PUS1 -3.070192e+00 5.357162e+00 -3.735518 2.846951e-04 1.664933e-03
## SLC9A6 3.066781e+00 1.768685e+01 2.668110 8.650328e-03 2.308052e-02
## COG5 3.065942e+00 2.359828e+01 2.333242 2.125014e-02 4.766011e-02
## TMEM64 3.062693e+00 1.042728e+01 4.512363 1.471722e-05 2.006278e-04
## DOK4 -3.062008e+00 4.788552e+00 -5.413931 3.079331e-07 1.272504e-05
## WDR36 3.058943e+00 1.407454e+01 2.951133 3.788741e-03 1.202421e-02
## TRMT61A -3.058696e+00 3.457566e+00 -4.096094 7.539501e-05 6.319684e-04
## CRTC1 -3.055472e+00 5.402910e+00 -5.373597 3.693009e-07 1.451429e-05
## N4BP2 3.054198e+00 7.302057e+00 3.619423 4.289040e-04 2.246749e-03
## VAV2 -3.053924e+00 8.208061e+00 -3.867940 1.764690e-04 1.173163e-03
## PEPD -3.052408e+00 1.507985e+01 -2.378891 1.889512e-02 4.349692e-02
## NETO2 3.048555e+00 9.078100e+00 3.485079 6.814140e-04 3.176718e-03
## KIF13B 3.045191e+00 1.598210e+01 2.797670 5.971930e-03 1.724071e-02
## TMEM86B -3.044819e+00 4.339878e+00 -4.107911 7.208206e-05 6.115116e-04
## LRRC37A3 3.043604e+00 6.371172e+00 4.892054 3.041069e-06 6.452072e-05
## SLC46A2 -3.041639e+00 9.503168e+00 -2.372607 1.920497e-02 4.411600e-02
## RP9 -3.041484e+00 7.968395e+00 -3.139906 2.114196e-03 7.582208e-03
## ABCA5 3.040362e+00 1.266321e+01 3.040867 2.880460e-03 9.685304e-03
## GNE 3.036247e+00 1.085411e+01 3.986807 1.137715e-04 8.475691e-04
## ITPRIPL2 3.033871e+00 1.257233e+01 3.140054 2.113206e-03 7.582208e-03
## KCTD11 -3.031501e+00 1.050792e+01 -4.049126 9.006090e-05 7.197589e-04
## POMGNT1 -3.025518e+00 1.280208e+01 -2.475784 1.464748e-02 3.546735e-02
## PWWP2B -3.025018e+00 4.062516e+00 -4.791314 4.656423e-06 8.724356e-05
## PRMT7 -3.021706e+00 8.293110e+00 -2.978497 3.487120e-03 1.125980e-02
## ZNF468 3.021518e+00 1.291771e+01 2.905056 4.351332e-03 1.345328e-02
## ACBD4 -3.020349e+00 6.645627e+00 -4.029115 9.710521e-05 7.591745e-04
## DOP1A 3.019969e+00 9.170055e+00 2.964681 3.636522e-03 1.163765e-02
## ZNF791 3.019944e+00 2.165035e+01 2.939487 3.924247e-03 1.236164e-02
## SLC35A3 3.017731e+00 1.108306e+01 4.274127 3.796565e-05 3.849631e-04
## DYM -3.016083e+00 3.008620e+01 -2.368042 1.943285e-02 4.450157e-02
## NTMT1 -3.012535e+00 7.979702e+00 -3.193997 1.780307e-03 6.631419e-03
## PAFAH1B3 -3.009234e+00 4.704533e+00 -3.054951 2.757715e-03 9.355856e-03
## IL18BP -3.004802e+00 6.305278e+00 -4.797179 4.543027e-06 8.566025e-05
## DDX52 3.003654e+00 1.568359e+01 3.785915 2.376376e-04 1.463657e-03
## MCCC2 3.002139e+00 1.023146e+01 3.685855 3.396198e-04 1.891165e-03
## BUB1B 3.001721e+00 2.893909e+00 5.590414 1.378129e-07 7.523124e-06
## NUP85 -3.001105e+00 2.246862e+01 -2.965299 3.629723e-03 1.162217e-02
## GOLGA8O 2.999825e+00 9.260147e+00 2.354858 2.010447e-02 4.566923e-02
## SLC52A2 -2.999243e+00 6.032908e+00 -3.357947 1.044079e-03 4.395734e-03
## ITGAV 2.998924e+00 9.370621e+00 3.569845 5.095347e-04 2.562594e-03
## EFEMP2 -2.998496e+00 6.392319e+00 -3.205334 1.716858e-03 6.443559e-03
## ILKAP -2.996298e+00 1.502851e+01 -2.465131 1.506868e-02 3.626512e-02
## AGK 2.994886e+00 1.185189e+01 2.769558 6.478795e-03 1.839449e-02
## ASCC1 2.992836e+00 1.512868e+01 2.537401 1.241117e-02 3.096917e-02
## ELOA 2.990558e+00 2.736178e+01 2.690311 8.125446e-03 2.198170e-02
## NPDC1 -2.987007e+00 2.348900e+00 -4.346033 2.862178e-05 3.107565e-04
## IGHMBP2 -2.986597e+00 1.056043e+01 -3.514228 6.169360e-04 2.938498e-03
## ASTN2 2.985062e+00 6.078699e+00 3.609359 4.442268e-04 2.309746e-03
## ZNF513 -2.984248e+00 9.470021e+00 -5.218553 7.372988e-07 2.338065e-05
## SMG6 -2.982429e+00 1.636467e+01 -3.472608 7.108937e-04 3.281340e-03
## TIMMDC1 -2.980217e+00 3.044333e+01 -2.791734 6.075852e-03 1.746410e-02
## SMARCA4 -2.979941e+00 1.715594e+01 -2.379376 1.887137e-02 4.348409e-02
## IL15RA 2.976535e+00 8.611292e+00 2.498025 1.380184e-02 3.385028e-02
## CYB5D1 2.975181e+00 8.488635e+00 2.358451 1.991943e-02 4.535313e-02
## TMEM88 -2.968003e+00 4.722608e+00 -4.785582 4.769887e-06 8.853030e-05
## TTF2 2.967962e+00 8.141427e+00 3.935666 1.375726e-04 9.735147e-04
## PKD2 2.965538e+00 6.841540e+00 4.988804 2.009732e-06 4.701267e-05
## NRG1 -2.956723e+00 6.878998e+00 -2.350713 2.031985e-02 4.605183e-02
## SRD5A3 -2.955039e+00 5.860785e+00 -4.821320 4.103801e-06 7.979251e-05
## PDRG1 -2.954864e+00 1.468776e+01 -2.395742 1.808600e-02 4.200116e-02
## TPRN -2.954064e+00 2.888773e+00 -4.036368 9.449333e-05 7.421794e-04
## CTSF -2.953491e+00 4.320339e+00 -3.827147 2.047308e-04 1.315365e-03
## AASDHPPT 2.950244e+00 1.933586e+01 2.676549 8.447298e-03 2.266628e-02
## GLO1 2.949738e+00 2.510294e+01 2.357127 1.998746e-02 4.546437e-02
## KLC4 -2.948749e+00 1.591845e+01 -2.672394 8.546721e-03 2.286580e-02
## ZKSCAN7 2.947343e+00 5.455537e+00 3.462529 7.355896e-04 3.364478e-03
## TMEM204 -2.947094e+00 4.402109e+00 -3.191766 1.793047e-03 6.664224e-03
## ABCC2 2.945368e+00 7.386530e+00 2.859764 4.978110e-03 1.496209e-02
## NIPAL3 2.943092e+00 1.313330e+01 3.018555 3.085294e-03 1.021826e-02
## BCL2L2 2.935886e+00 1.026324e+01 4.271822 3.830911e-05 3.856928e-04
## RFC4 2.935809e+00 8.599739e+00 4.311749 3.276144e-05 3.472303e-04
## RTN2 -2.928236e+00 7.924557e+00 -2.801512 5.905539e-03 1.709954e-02
## CLSPN 2.923208e+00 4.133007e+00 7.338497 2.506148e-11 2.972291e-08
## LSS -2.916146e+00 1.240258e+01 -2.320371 2.195933e-02 4.890847e-02
## FNIP2 2.911535e+00 9.233160e+00 2.788392 6.135073e-03 1.758810e-02
## CMC2 2.910042e+00 1.266003e+01 2.997984 3.285974e-03 1.074487e-02
## MRPL55 -2.908475e+00 3.920676e+00 -3.114804 2.288119e-03 8.057331e-03
## TRIM65 -2.908035e+00 1.137430e+01 -3.005601 3.210310e-03 1.054981e-02
## ERC1 2.905242e+00 9.859469e+00 4.106368 7.250639e-05 6.135378e-04
## ZNF446 -2.899757e+00 5.543368e+00 -3.767346 2.540451e-04 1.531762e-03
## NAE1 2.898291e+00 1.552913e+01 3.602458 4.550307e-04 2.352513e-03
## NUP107 2.896083e+00 1.780963e+01 3.124002 2.222900e-03 7.886188e-03
## TMEM150A -2.892919e+00 4.694545e+00 -4.696210 6.927008e-06 1.145806e-04
## TTC7B 2.891845e+00 8.643513e+00 3.161207 1.976312e-03 7.189895e-03
## CACNA1I -2.890913e+00 5.741571e+00 -2.593490 1.064695e-02 2.732586e-02
## EOLA1 -2.889367e+00 1.819797e+01 -3.841396 1.944022e-04 1.264040e-03
## SLC9A3 -2.889264e+00 7.545866e+00 -4.089005 7.745167e-05 6.430712e-04
## THEM6 -2.889204e+00 3.528391e+00 -4.459445 1.821742e-05 2.298495e-04
## GATA2 -2.888065e+00 4.237327e+00 -3.635926 4.048539e-04 2.156070e-03
## TNFRSF13C -2.884304e+00 7.707114e+00 -2.618015 9.949094e-03 2.587070e-02
## MTMR9 2.882376e+00 1.339593e+01 3.186380 1.824153e-03 6.752326e-03
## BCAS4 -2.878318e+00 3.058864e+00 -3.275097 1.370498e-03 5.396449e-03
## NCKAP1 2.875208e+00 6.203910e+00 3.578369 4.947231e-04 2.505302e-03
## LAPTM4B 2.872920e+00 6.250814e+00 3.060051 2.714469e-03 9.240415e-03
## NBPF1 2.872595e+00 8.137959e+00 3.001901 3.246864e-03 1.063752e-02
## FKBPL -2.867206e+00 8.103339e+00 -2.948768 3.815901e-03 1.209099e-02
## TLNRD1 -2.867075e+00 1.627159e+01 -3.207160 1.706838e-03 6.420571e-03
## GPR35 -2.866530e+00 2.643002e+00 -5.869102 3.764976e-08 3.189472e-06
## ABHD17B 2.866293e+00 1.388921e+01 3.330661 1.142544e-03 4.714882e-03
## ZNF76 -2.863216e+00 1.496780e+01 -2.433340 1.639046e-02 3.873871e-02
## CEP152 2.859142e+00 5.899880e+00 5.087339 1.311518e-06 3.505274e-05
## ZNF408 -2.858485e+00 7.434030e+00 -3.430941 8.183149e-04 3.643099e-03
## SPIB -2.857799e+00 6.385561e+00 -2.723546 7.393464e-03 2.038746e-02
## PLEKHA3 2.855432e+00 1.959763e+01 2.351076 2.030094e-02 4.602736e-02
## FLYWCH1 -2.852891e+00 6.890713e+00 -2.829685 5.438921e-03 1.603118e-02
## ACVR1 2.851724e+00 1.197090e+01 3.268260 1.401310e-03 5.490432e-03
## BLOC1S4 -2.851568e+00 8.199685e+00 -3.701191 3.216692e-04 1.814074e-03
## UBE2C 2.849083e+00 4.610626e+00 4.555412 1.235756e-05 1.774343e-04
## SMN1 2.847418e+00 1.036015e+01 3.286104 1.322217e-03 5.241609e-03
## GPR137B -2.842723e+00 8.107503e+00 -2.813937 5.695411e-03 1.662505e-02
## JOSD2 -2.837256e+00 2.372521e+00 -4.646922 8.493619e-06 1.346716e-04
## KATNA1 -2.835172e+00 1.846442e+01 -2.711485 7.651886e-03 2.093940e-02
## STRBP 2.833817e+00 8.940492e+00 3.408183 8.832472e-04 3.866856e-03
## PTDSS2 -2.833695e+00 5.440338e+00 -3.730641 2.896908e-04 1.687498e-03
## PUSL1 -2.832890e+00 3.141627e+00 -4.450235 1.890355e-05 2.367435e-04
## QTRT1 -2.828698e+00 3.254806e+00 -3.915107 1.484201e-04 1.027590e-03
## UBFD1 2.827553e+00 1.061324e+01 3.259236 1.442971e-03 5.614711e-03
## OSBPL7 -2.824992e+00 7.909496e+00 -2.412599 1.730744e-02 4.053441e-02
## JAG1 2.823823e+00 7.101478e+00 3.794942 2.300295e-04 1.431348e-03
## ICMT 2.823197e+00 1.931146e+01 2.416685 1.712328e-02 4.017449e-02
## PIGF 2.822990e+00 1.674583e+01 3.055685 2.751453e-03 9.344853e-03
## TLCD4 2.821618e+00 3.671654e+00 2.326082 2.164211e-02 4.832902e-02
## MMP14 -2.817271e+00 3.941682e+00 -4.907971 2.841691e-06 6.126345e-05
## COG6 2.814439e+00 1.039650e+01 3.845474 1.915389e-04 1.250594e-03
## RRP8 -2.810208e+00 1.294658e+01 -3.908232 1.522259e-04 1.046608e-03
## MFSD6 2.809618e+00 1.397862e+01 2.888221 4.575329e-03 1.397446e-02
## CDC45 2.809361e+00 3.003641e+00 5.515368 1.943200e-07 9.145378e-06
## ZNF507 2.807329e+00 1.056775e+01 3.552165 5.415985e-04 2.673525e-03
## SPSB2 -2.805230e+00 5.437133e+00 -2.807237 5.807861e-03 1.687438e-02
## POLH 2.802538e+00 1.322299e+01 4.444933 1.930969e-05 2.403073e-04
## PDE6D -2.802513e+00 2.145613e+01 -2.418000 1.706439e-02 4.006340e-02
## NAA80 -2.802114e+00 4.282632e+00 -3.210030 1.691197e-03 6.371537e-03
## MRPS12 -2.796030e+00 5.952540e+00 -2.492577 1.400484e-02 3.425395e-02
## INTS7 2.794678e+00 8.363574e+00 5.205852 7.798586e-07 2.427591e-05
## ZNF385D -2.790743e+00 5.222245e+00 -4.512375 1.471651e-05 2.006278e-04
## SLC37A1 2.790257e+00 1.032149e+01 3.996165 1.098651e-04 8.273019e-04
## LONRF3 2.789545e+00 4.007938e+00 3.697756 3.256105e-04 1.831945e-03
## DCLRE1A 2.789319e+00 7.064350e+00 4.173236 5.613964e-05 5.163670e-04
## HMGB3 2.785088e+00 6.394433e+00 2.430681 1.650553e-02 3.894083e-02
## DIS3L 2.781823e+00 1.067322e+01 3.216432 1.656791e-03 6.268030e-03
## TARBP2 -2.781483e+00 6.617235e+00 -2.969682 3.581773e-03 1.150280e-02
## CACFD1 -2.781450e+00 3.413359e+00 -5.290405 5.359387e-07 1.863866e-05
## HMG20A 2.780347e+00 1.444773e+01 3.117347 2.269914e-03 8.007029e-03
## SMAP1 -2.778214e+00 2.645970e+01 -2.962985 3.655273e-03 1.168820e-02
## CDCA8 2.775801e+00 4.144365e+00 4.690185 7.102337e-06 1.172814e-04
## AURKA 2.772635e+00 4.470423e+00 4.576602 1.133467e-05 1.667855e-04
## CHERP -2.770223e+00 1.143976e+01 -3.436933 8.019805e-04 3.590596e-03
## BFAR 2.769152e+00 2.622119e+01 3.035484 2.928695e-03 9.795352e-03
## WDR76 2.768139e+00 5.510450e+00 6.127347 1.099305e-08 1.344099e-06
## MYO1D 2.766699e+00 3.711571e+00 3.685561 3.399720e-04 1.892101e-03
## SEMA6B -2.764540e+00 1.846020e+00 -3.356639 1.048611e-03 4.410117e-03
## D2HGDH -2.762250e+00 2.923586e+00 -4.548612 1.270431e-05 1.806632e-04
## MIB2 -2.758160e+00 3.460727e+00 -4.706275 6.643437e-06 1.111300e-04
## PGM3 2.758064e+00 9.785178e+00 4.215344 4.771944e-05 4.593771e-04
## C12orf4 2.754906e+00 1.173463e+01 2.847658 5.159095e-03 1.539680e-02
## MLH1 2.749956e+00 1.870455e+01 3.029346 2.984611e-03 9.943116e-03
## PPARD -2.745247e+00 1.077193e+01 -3.848079 1.897305e-04 1.242520e-03
## GCLC 2.744300e+00 1.331350e+01 2.703761 7.821645e-03 2.132032e-02
## MINDY3 2.744123e+00 1.187627e+01 3.394699 9.239701e-04 4.012554e-03
## VPS33A 2.743348e+00 2.945702e+01 2.998079 3.285021e-03 1.074472e-02
## KIF20B 2.742465e+00 5.553991e+00 4.912143 2.791568e-06 6.060701e-05
## TSPAN4 -2.741462e+00 2.597940e+00 -5.338638 4.320348e-07 1.616382e-05
## LEPR 2.741414e+00 7.060569e+00 3.890663 1.623790e-04 1.100466e-03
## CFAP36 -2.736499e+00 8.554080e+00 -3.939700 1.355346e-04 9.636931e-04
## C5orf22 2.735855e+00 1.313112e+01 3.437391 8.007456e-04 3.586421e-03
## CDR2 2.735575e+00 1.259112e+01 2.667106 8.674783e-03 2.313015e-02
## OAF -2.735318e+00 1.065974e+01 -2.326185 2.163644e-02 4.832545e-02
## VGLL4 2.733096e+00 8.831687e+00 3.822124 2.084943e-04 1.330863e-03
## PRPSAP1 2.729726e+00 1.801430e+01 2.751251 6.829609e-03 1.912613e-02
## KRIT1 2.729166e+00 1.518428e+01 2.532571 1.257473e-02 3.131142e-02
## PAQR7 -2.728274e+00 6.692685e+00 -3.267961 1.402671e-03 5.492137e-03
## RREB1 2.725350e+00 1.595914e+01 2.940369 3.913830e-03 1.234194e-02
## WEE1 2.723608e+00 4.494965e+00 6.459154 2.177709e-09 4.453039e-07
## LTBP4 -2.721207e+00 3.915807e+00 -4.180066 5.468338e-05 5.082640e-04
## PPP1R8 2.718393e+00 3.369086e+01 2.753915 6.777519e-03 1.904321e-02
## WDR7 2.717051e+00 1.093938e+01 3.604424 4.519284e-04 2.341560e-03
## NUTM2D -2.712034e+00 5.869624e+00 -3.954351 1.283728e-04 9.260961e-04
## VEZT 2.708707e+00 1.268307e+01 2.660934 8.826455e-03 2.345547e-02
## FOLR2 -2.706189e+00 2.761971e+00 -5.287296 5.434162e-07 1.878984e-05
## TBCEL 2.704599e+00 7.423975e+00 2.892289 4.520248e-03 1.383171e-02
## MRPL17 -2.704140e+00 1.030868e+01 -2.509003 1.340078e-02 3.302853e-02
## DOT1L -2.701833e+00 8.184520e+00 -3.335229 1.125477e-03 4.659041e-03
## HPF1 -2.700629e+00 1.099528e+01 -3.345185 1.089099e-03 4.546537e-03
## FASTKD1 2.696896e+00 1.053862e+01 3.884395 1.661546e-04 1.121567e-03
## RFC5 2.696675e+00 6.068064e+00 6.695292 6.720756e-10 2.097583e-07
## VAC14 -2.694830e+00 9.370250e+00 -3.081802 2.536991e-03 8.767106e-03
## POLR1E -2.688952e+00 7.351630e+00 -3.508880 6.283177e-04 2.977167e-03
## MRGBP -2.687224e+00 1.621016e+01 -2.406652 1.757863e-02 4.112081e-02
## FLYWCH2 -2.685119e+00 2.980148e+00 -4.673101 7.623149e-06 1.230075e-04
## USP49 2.681174e+00 8.151365e+00 3.782166 2.408668e-04 1.474087e-03
## SLC25A30 2.678819e+00 8.382502e+00 3.671844 3.568439e-04 1.961153e-03
## STK39 2.677611e+00 1.322061e+01 2.489929 1.410449e-02 3.444087e-02
## UBASH3A -2.675671e+00 6.634330e+00 -2.420262 1.696346e-02 3.987052e-02
## GNGT2 -2.673953e+00 6.307515e+00 -2.852134 5.091488e-03 1.524875e-02
## CDC23 2.661297e+00 1.199490e+01 3.111144 2.314556e-03 8.123892e-03
## NDUFAF8 -2.660821e+00 5.177936e+00 -3.121168 2.242812e-03 7.941851e-03
## CMC1 -2.660793e+00 1.313216e+01 -2.464099 1.511004e-02 3.633738e-02
## STX18 -2.647841e+00 1.523342e+01 -3.205240 1.717377e-03 6.443559e-03
## NUF2 2.647397e+00 3.343925e+00 3.555156 5.360448e-04 2.653377e-03
## PRKAB2 2.646750e+00 1.409569e+01 2.655219 8.969010e-03 2.377192e-02
## GTF2E1 2.646679e+00 1.610145e+01 2.799543 5.939488e-03 1.716431e-02
## CEP104 2.646106e+00 1.183220e+01 3.826199 2.054360e-04 1.317011e-03
## UBE2T 2.645294e+00 3.633067e+00 2.977692 3.495663e-03 1.127817e-02
## PLK4 2.640068e+00 3.109371e+00 5.796197 5.303585e-08 4.084450e-06
## HCFC2 2.637984e+00 8.464388e+00 4.216107 4.757869e-05 4.583942e-04
## LENG9 -2.636104e+00 2.339504e+00 -3.734860 2.853651e-04 1.666309e-03
## ZWILCH 2.635100e+00 4.909032e+00 6.317489 4.368421e-09 6.728504e-07
## CEP55 2.633972e+00 2.924191e+00 5.677849 9.205660e-08 5.838456e-06
## CCNYL1 2.633685e+00 1.112069e+01 3.388009 9.448219e-04 4.073278e-03
## EMC6 -2.632122e+00 8.438409e+00 -3.072670 2.610148e-03 8.965060e-03
## RRP1 -2.629207e+00 6.928780e+00 -2.644857 9.232833e-03 2.431271e-02
## RNF144A 2.623203e+00 1.045950e+01 2.891010 4.537502e-03 1.388052e-02
## MSH2 2.619163e+00 9.829185e+00 3.403196 8.981087e-04 3.918900e-03
## DEXI -2.618432e+00 5.925844e+00 -2.591173 1.071510e-02 2.746510e-02
## ANKMY1 -2.615041e+00 9.051543e+00 -3.475471 7.040209e-04 3.262872e-03
## ZMYND15 -2.614337e+00 3.878085e+00 -4.334480 2.995708e-05 3.218215e-04
## NDC1 2.613964e+00 8.953929e+00 4.134453 6.514138e-05 5.718555e-04
## ZNF768 -2.613935e+00 9.028955e+00 -3.522139 6.004556e-04 2.880827e-03
## PRKCI 2.612730e+00 1.052824e+01 3.771833 2.499841e-04 1.513431e-03
## GATAD1 2.608783e+00 1.537554e+01 3.598950 4.606184e-04 2.373165e-03
## DPM3 -2.608116e+00 3.044090e+00 -3.348641 1.076731e-03 4.499657e-03
## YDJC -2.594246e+00 4.389892e+00 -4.068187 8.380693e-05 6.835971e-04
## SLC49A3 -2.587711e+00 4.653460e+00 -4.116692 6.971094e-05 5.973784e-04
## GANC 2.587261e+00 1.304719e+01 3.236118 1.555026e-03 5.954992e-03
## RALGAPA1 2.586894e+00 9.593842e+00 2.531605 1.260766e-02 3.138024e-02
## YIPF2 -2.586651e+00 5.261648e+00 -3.294187 1.287780e-03 5.140717e-03
## ACACA 2.581891e+00 7.632913e+00 4.164786 5.799315e-05 5.290760e-04
## FAM136A 2.581188e+00 1.833310e+01 2.325772 2.165922e-02 4.834902e-02
## ENKD1 -2.579971e+00 3.950843e+00 -3.772549 2.493419e-04 1.511086e-03
## HS6ST1 -2.579423e+00 1.059926e+01 -3.144084 2.086468e-03 7.498638e-03
## HAUS6 2.579288e+00 1.388787e+01 3.066466 2.660965e-03 9.111676e-03
## YRDC 2.573617e+00 9.707811e+00 3.912849 1.496600e-04 1.032578e-03
## BRCA2 2.572711e+00 3.651334e+00 5.816211 4.828545e-08 3.843392e-06
## G2E3 2.570574e+00 1.160361e+01 3.121506 2.240427e-03 7.938888e-03
## HDAC9 2.569430e+00 9.619631e+00 2.439270 1.613633e-02 3.825273e-02
## PEX11B -2.569283e+00 2.087471e+01 -2.468966 1.491580e-02 3.595278e-02
## KIAA1614 2.568238e+00 4.105178e+00 4.918259 2.719642e-06 5.991759e-05
## C1orf35 -2.567792e+00 4.197782e+00 -4.761393 5.278989e-06 9.515016e-05
## PM20D2 2.565746e+00 1.020218e+01 2.828432 5.458927e-03 1.608119e-02
## ATPAF2 -2.565591e+00 6.526448e+00 -4.647152 8.485597e-06 1.346716e-04
## TRNT1 2.564398e+00 1.629360e+01 2.950296 3.798332e-03 1.205142e-02
## CENPK 2.564092e+00 3.789117e+00 4.759062 5.330747e-06 9.574091e-05
## DDX19B -2.563267e+00 1.611731e+01 -2.787855 6.144627e-03 1.760698e-02
## IFT80 2.562492e+00 8.677430e+00 3.454153 7.567236e-04 3.438598e-03
## DBT 2.556186e+00 8.330932e+00 4.379937 2.502556e-05 2.881531e-04
## MED29 -2.554818e+00 3.489606e+01 -2.393712 1.818182e-02 4.219064e-02
## DDX51 -2.553276e+00 9.271125e+00 -2.600010 1.045726e-02 2.691472e-02
## LRRC14 -2.547646e+00 8.942702e+00 -2.611651 1.012612e-02 2.626193e-02
## CDPF1 -2.545483e+00 4.154368e+00 -3.988914 1.128808e-04 8.435833e-04
## LYPLAL1 -2.545418e+00 1.627181e+01 -2.572442 1.128066e-02 2.854463e-02
## HIBCH 2.542808e+00 7.869389e+00 3.032890 2.952211e-03 9.857325e-03
## PPM1L 2.542002e+00 9.154108e+00 3.647084 3.893210e-04 2.097841e-03
## ZNF282 -2.541816e+00 1.095556e+01 -2.361189 1.977947e-02 4.513267e-02
## TXLNG 2.538669e+00 9.740697e+00 2.952018 3.778621e-03 1.200494e-02
## TNFSF4 2.536611e+00 7.992977e+00 2.829664 5.439248e-03 1.603118e-02
## ATG16L1 2.535105e+00 2.406044e+01 2.522180 1.293313e-02 3.206919e-02
## CPSF3 -2.532001e+00 2.198405e+01 -2.468931 1.491720e-02 3.595278e-02
## ABI2 2.530460e+00 7.786202e+00 3.234491 1.563210e-03 5.976681e-03
## TUT1 -2.524732e+00 6.978918e+00 -3.943901 1.334431e-04 9.522471e-04
## WDR25 -2.524701e+00 4.539490e+00 -5.511730 1.975714e-07 9.225184e-06
## TMEM104 -2.524428e+00 1.124395e+01 -2.956636 3.726223e-03 1.187665e-02
## ANGEL2 2.521033e+00 1.761940e+01 2.911406 4.269491e-03 1.324312e-02
## TAF1D 2.518464e+00 1.788070e+01 2.450598 1.566064e-02 3.732619e-02
## SLC7A1 2.515835e+00 7.062949e+00 3.760778 2.601013e-04 1.554728e-03
## EBPL -2.501813e+00 1.060662e+01 -2.669803 8.609245e-03 2.300034e-02
## PSAT1 2.498720e+00 4.080667e+00 5.595496 1.346307e-07 7.523124e-06
## CLUH -2.493581e+00 5.924444e+00 -2.988469 3.382811e-03 1.099182e-02
## ERCC2 -2.492555e+00 5.580682e+00 -3.023028 3.043185e-03 1.010702e-02
## CMAS 2.491927e+00 1.506844e+01 2.743399 6.985318e-03 1.948856e-02
## ATF5 -2.491084e+00 7.087778e+00 -2.764236 6.579048e-03 1.861787e-02
## LIN7C 2.490722e+00 1.433878e+01 3.400833 9.052323e-04 3.947079e-03
## NCAPH 2.489123e+00 2.934950e+00 6.078280 1.391816e-08 1.587205e-06
## PIN4 -2.485255e+00 1.310390e+01 -2.706509 7.760864e-03 2.118386e-02
## HSD3B7 -2.484581e+00 5.049075e+00 -2.860151 4.972422e-03 1.495257e-02
## DBF4 2.481511e+00 6.344090e+00 3.437523 8.003895e-04 3.586421e-03
## CNPY4 -2.481407e+00 1.075072e+01 -3.315939 1.199218e-03 4.894179e-03
## NT5C3B -2.473994e+00 5.489423e+00 -2.709076 7.704467e-03 2.105949e-02
## WDR54 -2.473556e+00 4.946373e+00 -2.676445 8.449780e-03 2.266781e-02
## SLC26A2 2.472686e+00 9.960958e+00 3.161211 1.976286e-03 7.189895e-03
## COBLL1 2.468303e+00 3.479418e+00 4.271369 3.837703e-05 3.860489e-04
## CEP85 2.467889e+00 1.216090e+01 2.778596 6.311715e-03 1.799944e-02
## LILRB5 -2.467192e+00 5.902708e+00 -2.645251 9.222676e-03 2.430688e-02
## GEN1 2.463544e+00 5.313267e+00 6.120606 1.135585e-08 1.360408e-06
## DIMT1 2.463231e+00 8.100835e+00 3.427919 8.266730e-04 3.676169e-03
## BRD1 -2.457586e+00 1.482579e+01 -3.384774 9.550615e-04 4.105484e-03
## SEMA4C -2.456868e+00 4.868428e+00 -3.871003 1.745042e-04 1.164671e-03
## EXOSC7 -2.447527e+00 1.010529e+01 -2.553578 1.187722e-02 2.979984e-02
## BEX2 -2.447518e+00 4.092596e+00 -3.455534 7.532010e-04 3.426770e-03
## ENTR1 -2.445041e+00 1.042726e+01 -2.899079 4.429681e-03 1.363156e-02
## NCBP2AS2 -2.444588e+00 9.126740e+00 -2.840331 5.271536e-03 1.565359e-02
## TGS1 2.442410e+00 1.334297e+01 2.980393 3.467058e-03 1.121769e-02
## NEMP1 2.439394e+00 7.893184e+00 3.568037 5.127289e-04 2.571232e-03
## UBXN2A 2.436597e+00 8.049690e+00 4.610994 9.846222e-06 1.504848e-04
## NPRL3 -2.436296e+00 8.948226e+00 -2.339738 2.089996e-02 4.704978e-02
## FUBP3 2.435546e+00 1.415145e+01 2.381153 1.878467e-02 4.337313e-02
## MRPL46 -2.435402e+00 9.783554e+00 -2.317322 2.213033e-02 4.918773e-02
## LUZP1 2.431418e+00 9.065831e+00 2.808919 5.779436e-03 1.682064e-02
## JMJD7 -2.428796e+00 5.397760e+00 -4.597014 1.042694e-05 1.572333e-04
## BATF3 -2.428562e+00 2.223752e+00 -5.133687 1.071143e-06 3.098476e-05
## C17orf80 2.427937e+00 1.375346e+01 3.495306 6.581023e-04 3.092351e-03
## FBXL19 -2.422811e+00 9.718664e+00 -2.874932 4.759546e-03 1.442950e-02
## DONSON 2.419590e+00 6.118128e+00 6.050072 1.593319e-08 1.749700e-06
## ATG4A 2.417510e+00 1.336205e+01 3.276480 1.364342e-03 5.377566e-03
## CEP44 2.410349e+00 9.416458e+00 4.137978 6.426919e-05 5.681772e-04
## MCM8 2.409583e+00 4.723672e+00 5.366201 3.817838e-07 1.489459e-05
## C12orf45 2.409021e+00 1.306772e+01 2.561585 1.162062e-02 2.924885e-02
## SLC26A11 -2.407812e+00 8.702901e+00 -2.753684 6.782006e-03 1.904532e-02
## MFSD11 2.406482e+00 1.768062e+01 2.313482 2.234740e-02 4.959584e-02
## C9orf40 2.406015e+00 6.742911e+00 2.490484 1.408354e-02 3.441056e-02
## MED27 -2.404859e+00 9.809472e+00 -2.783394 6.224632e-03 1.779323e-02
## ANKRD55 2.403353e+00 6.440418e+00 2.345370 2.060045e-02 4.649313e-02
## RAD51 2.401622e+00 2.763694e+00 5.155267 9.744229e-07 2.846467e-05
## ARMC5 -2.400172e+00 4.093646e+00 -3.580364 4.913153e-04 2.496572e-03
## HACD3 2.399785e+00 1.073915e+01 3.284382 1.329665e-03 5.263628e-03
## KCTD10 2.397687e+00 2.765802e+01 2.431451 1.647214e-02 3.888527e-02
## HELB 2.396506e+00 3.936331e+00 3.990163 1.123559e-04 8.417822e-04
## KCTD15 -2.392625e+00 5.033526e+00 -4.049261 9.001501e-05 7.197589e-04
## EVI5L -2.389675e+00 4.592831e+00 -4.392050 2.384944e-05 2.770366e-04
## SH3TC2 2.389457e+00 3.758019e+00 4.561015 1.207874e-05 1.753413e-04
## NIPA1 2.388945e+00 5.963572e+00 4.305933 3.351847e-05 3.530453e-04
## ZNF197 2.388424e+00 9.191447e+00 3.112340 2.305888e-03 8.100660e-03
## RBSN 2.387501e+00 1.969911e+01 2.323953 2.175987e-02 4.854628e-02
## RBAK 2.384789e+00 1.133658e+01 2.437962 1.619207e-02 3.833858e-02
## CDCA7 2.381649e+00 3.371571e+00 5.339020 4.312964e-07 1.616382e-05
## SHMT1 2.381540e+00 7.720134e+00 2.335702 2.111693e-02 4.746906e-02
## MED10 -2.379027e+00 1.490351e+01 -2.938783 3.932577e-03 1.238459e-02
## KIF15 2.377942e+00 2.471721e+00 5.299384 5.149052e-07 1.822918e-05
## TIGAR 2.377501e+00 1.743032e+01 2.413583 1.726291e-02 4.044610e-02
## MYO9A 2.375609e+00 8.313552e+00 2.800281 5.926746e-03 1.713584e-02
## TMEM80 -2.374897e+00 1.341032e+01 -2.794806 6.021861e-03 1.734319e-02
## PIK3R2 -2.372108e+00 7.528999e+00 -3.466884 7.248205e-04 3.322911e-03
## OBSCN -2.371944e+00 4.263741e+00 -2.729441 7.270071e-03 2.011387e-02
## SUCLA2 2.371060e+00 1.166638e+01 2.870270 4.825774e-03 1.459298e-02
## AKT3 2.369506e+00 9.796585e+00 2.347788 2.047304e-02 4.633783e-02
## RCE1 -2.369181e+00 7.901381e+00 -3.068697 2.642589e-03 9.060742e-03
## PRDM10 2.368895e+00 1.017151e+01 2.607781 1.023515e-02 2.644637e-02
## SCOC 2.368552e+00 1.593377e+01 3.172969 1.903810e-03 6.979655e-03
## NUP43 -2.366726e+00 1.474970e+01 -2.477003 1.459998e-02 3.537400e-02
## SMUG1 -2.365911e+00 1.639757e+01 -2.395633 1.809114e-02 4.200487e-02
## POGLUT3 2.365868e+00 5.595443e+00 4.921588 2.681257e-06 5.932282e-05
## GTF3C4 2.363082e+00 8.958395e+00 3.902631 1.553954e-04 1.062242e-03
## RAB2B 2.361800e+00 1.148864e+01 3.639670 3.995769e-04 2.132755e-03
## ITGA9 2.361637e+00 3.148738e+00 2.674642 8.492812e-03 2.275237e-02
## SLC39A11 2.358439e+00 1.463294e+01 2.327275 2.157635e-02 4.824576e-02
## TIMM44 -2.355072e+00 7.465000e+00 -2.900188 4.415040e-03 1.359709e-02
## COX19 -2.352629e+00 1.716230e+01 -2.792569 6.061136e-03 1.743091e-02
## FBXL15 -2.351990e+00 2.371857e+00 -4.213851 4.799611e-05 4.616657e-04
## SETD6 -2.344657e+00 7.474746e+00 -2.832518 5.393910e-03 1.592923e-02
## CBFA2T2 2.344634e+00 1.133471e+01 3.330458 1.143311e-03 4.716408e-03
## DUS3L -2.344181e+00 3.230816e+00 -4.378271 2.519158e-05 2.892786e-04
## WIZ -2.342959e+00 6.936220e+00 -4.329323 3.057231e-05 3.269500e-04
## SCAPER 2.337172e+00 8.222480e+00 3.372326 9.954415e-04 4.245213e-03
## FRK 2.337159e+00 5.208222e+00 3.483951 6.840331e-04 3.187675e-03
## ZBTB21 2.336739e+00 8.360560e+00 3.396985 9.169456e-04 3.987889e-03
## TBCK 2.334915e+00 8.811330e+00 3.021746 3.055199e-03 1.013840e-02
## GPATCH11 2.334871e+00 9.434440e+00 2.726796 7.325201e-03 2.022274e-02
## SIDT1 2.334578e+00 8.330734e+00 2.391317 1.829542e-02 4.242105e-02
## SERAC1 2.333209e+00 7.581262e+00 3.599647 4.595019e-04 2.369432e-03
## PDIA5 2.332541e+00 5.246741e+00 3.332010 1.137479e-03 4.698887e-03
## FUZ -2.327962e+00 6.359326e+00 -3.201414 1.738556e-03 6.514778e-03
## BBS5 -2.327792e+00 6.521254e+00 -4.442609 1.949041e-05 2.420484e-04
## AURKB 2.327719e+00 3.815974e+00 3.309870 1.223335e-03 4.965351e-03
## ZNF639 2.327648e+00 1.376298e+01 2.789342 6.118176e-03 1.754390e-02
## SYN2 -2.327103e+00 3.475432e+00 -3.273328 1.378410e-03 5.420405e-03
## NR2C2AP -2.321442e+00 6.491272e+00 -3.250379 1.484982e-03 5.748007e-03
## GFM1 2.315594e+00 1.494705e+01 2.345899 2.057255e-02 4.645667e-02
## FLT1 2.314006e+00 4.549040e+00 2.955294 3.741377e-03 1.190894e-02
## PEX1 2.313393e+00 1.211659e+01 2.613898 1.006330e-02 2.611614e-02
## CEMP1 -2.311733e+00 5.007336e+00 -2.824513 5.521961e-03 1.622255e-02
## FIZ1 -2.310404e+00 5.056317e+00 -3.870057 1.751085e-04 1.166079e-03
## FAM228B -2.307175e+00 7.620070e+00 -2.429142 1.657250e-02 3.907552e-02
## PI16 -2.305583e+00 2.062281e+00 -3.884036 1.663735e-04 1.121947e-03
## STX2 2.304763e+00 1.068066e+01 2.921787 4.138741e-03 1.291383e-02
## TWSG1 2.303699e+00 6.287963e+00 3.941753 1.345086e-04 9.575464e-04
## ORC3 2.302214e+00 1.192844e+01 3.148523 2.057377e-03 7.416871e-03
## SLC11A2 2.300032e+00 1.377493e+01 2.478169 1.455466e-02 3.528582e-02
## SARS2 -2.298893e+00 4.118629e+00 -3.152261 2.033173e-03 7.351658e-03
## MEIS1 2.298465e+00 5.378549e+00 3.412637 8.701706e-04 3.822305e-03
## PCYT1B 2.293397e+00 3.967098e+00 4.237151 4.384921e-05 4.312203e-04
## FBXO8 2.292374e+00 1.404209e+01 2.397233 1.801591e-02 4.188762e-02
## ASB1 -2.290893e+00 2.034317e+01 -2.366826 1.949395e-02 4.460704e-02
## ZDHHC8 -2.290078e+00 3.354689e+00 -4.579700 1.119215e-05 1.659236e-04
## KIZ 2.290025e+00 1.313133e+01 3.290273 1.304348e-03 5.185358e-03
## NRDE2 2.284185e+00 1.985082e+01 2.470846 1.484140e-02 3.581989e-02
## ZC3H10 -2.283233e+00 1.320082e+01 -3.064239 2.679424e-03 9.153053e-03
## HSD17B8 -2.277741e+00 3.798992e+00 -3.010263 3.164792e-03 1.042623e-02
## MRPL45 -2.277668e+00 1.451130e+01 -2.734175 7.172330e-03 1.989797e-02
## TICAM1 -2.277135e+00 6.145860e+00 -3.449369 7.690499e-04 3.483931e-03
## ZCWPW1 -2.273114e+00 6.955573e+00 -3.405761 8.904360e-04 3.892580e-03
## MTRF1 2.267777e+00 7.471736e+00 5.612835 1.243067e-07 7.204573e-06
## SNX16 2.266842e+00 9.649240e+00 2.439191 1.613968e-02 3.825273e-02
## TRAPPC2B -2.266013e+00 3.184848e+00 -5.740118 6.892442e-08 4.814738e-06
## TMEM263 2.265670e+00 9.363230e+00 2.334443 2.118499e-02 4.755896e-02
## ZNF506 2.259807e+00 1.059132e+01 2.438935 1.615060e-02 3.827096e-02
## NUDT14 -2.258801e+00 2.040977e+00 -4.121632 6.841011e-05 5.913586e-04
## DSN1 2.253982e+00 1.080937e+01 3.539603 5.655293e-04 2.755619e-03
## GPER1 -2.253692e+00 2.359528e+00 -3.607236 4.475240e-04 2.323833e-03
## RABL3 2.252053e+00 1.204163e+01 3.656158 3.771068e-04 2.052541e-03
## RTN1 -2.252020e+00 7.194776e+00 -2.586685 1.084825e-02 2.772885e-02
## IDUA -2.251991e+00 2.836378e+00 -4.009766 1.044151e-04 7.958635e-04
## ALS2CL -2.250844e+00 4.226670e+00 -2.722454 7.416538e-03 2.043051e-02
## RPE 2.250399e+00 1.534480e+01 2.359094 1.988651e-02 4.530427e-02
## ARHGAP6 2.250220e+00 5.115979e+00 3.443132 7.854050e-04 3.535666e-03
## SLC25A32 2.249009e+00 1.008751e+01 3.548901 5.477234e-04 2.693637e-03
## ABHD14A -2.246769e+00 4.115691e+00 -3.003074 3.235235e-03 1.061701e-02
## ODR4 2.245835e+00 1.227280e+01 2.850885 5.110273e-03 1.528957e-02
## MTA1 -2.242371e+00 8.067803e+00 -3.219682 1.639573e-03 6.216539e-03
## TTC21B 2.238678e+00 7.534113e+00 3.712872 3.086045e-04 1.765292e-03
## KLHL20 2.237305e+00 6.873662e+00 3.719663 3.012424e-04 1.736867e-03
## HDGFL3 2.235995e+00 9.306207e+00 2.519491 1.302735e-02 3.225973e-02
## RRP9 -2.235812e+00 4.980052e+00 -3.139692 2.115625e-03 7.582748e-03
## MRPL19 2.232747e+00 1.176687e+01 3.177533 1.876343e-03 6.908858e-03
## PDHX 2.231564e+00 7.971595e+00 4.152496 6.079382e-05 5.470521e-04
## SMIM19 -2.231385e+00 1.051331e+01 -3.194153 1.779422e-03 6.630207e-03
## DHX37 -2.229318e+00 5.786447e+00 -3.220050 1.637636e-03 6.213166e-03
## AP4M1 -2.226109e+00 5.696577e+00 -4.974565 2.136704e-06 4.968885e-05
## ZNF8 2.224393e+00 9.043717e+00 3.551673 5.425173e-04 2.673525e-03
## NDUFC1 -2.223770e+00 8.786406e+00 -3.363893 1.023703e-03 4.333019e-03
## CPNE8 2.222296e+00 8.536716e+00 2.421685 1.690028e-02 3.974565e-02
## TTL 2.222050e+00 1.797326e+01 2.370476 1.931102e-02 4.429098e-02
## OSGIN1 -2.220593e+00 2.115793e+00 -5.691535 8.639600e-08 5.599216e-06
## EFNB1 -2.217527e+00 3.525066e+00 -4.763411 5.234583e-06 9.449338e-05
## DHX33 2.216568e+00 7.645431e+00 4.870507 3.332713e-06 6.846806e-05
## IFI27L1 2.214286e+00 4.431149e+00 2.806238 5.824794e-03 1.691529e-02
## ARL1 2.213858e+00 1.658319e+01 2.426052 1.670761e-02 3.934715e-02
## TSPYL4 2.212631e+00 1.031825e+01 2.748553 6.882743e-03 1.924312e-02
## NSDHL -2.211385e+00 8.814317e+00 -2.767259 6.521936e-03 1.848713e-02
## SAV1 2.210372e+00 6.493361e+00 3.962399 1.245939e-04 9.066365e-04
## QSER1 2.208299e+00 6.886135e+00 2.986168 3.406625e-03 1.105406e-02
## ISOC1 2.207311e+00 7.637516e+00 2.929278 4.046680e-03 1.267661e-02
## POMT1 -2.204822e+00 8.146058e+00 -2.589970 1.075065e-02 2.752744e-02
## ZNF691 -2.204500e+00 7.326318e+00 -3.820060 2.100603e-04 1.338697e-03
## GTF2H1 2.202736e+00 2.305593e+01 2.417893 1.706917e-02 4.006340e-02
## ZNF623 2.199349e+00 7.597434e+00 3.365099 1.019616e-03 4.318803e-03
## MED21 2.197932e+00 1.232508e+01 2.672833 8.536164e-03 2.284787e-02
## MED6 -2.196935e+00 1.610671e+01 -3.831204 2.017379e-04 1.299626e-03
## NKD1 2.194682e+00 3.876576e+00 3.663965 3.668891e-04 2.007985e-03
## ZNF765 2.194607e+00 7.979432e+00 3.805190 2.216740e-04 1.391770e-03
## ASB6 -2.193957e+00 2.012116e+01 -2.324146 2.174921e-02 4.853163e-02
## PRR11 2.192140e+00 1.070429e+01 2.757731 6.703512e-03 1.886655e-02
## SLC66A1 -2.187640e+00 5.241048e+00 -3.806159 2.208985e-04 1.389107e-03
## CD40 -2.187351e+00 7.647977e+00 -2.622479 9.826618e-03 2.563090e-02
## SCRN3 2.185892e+00 1.065063e+01 2.791663 6.077093e-03 1.746410e-02
## PLEKHF1 -2.185703e+00 4.088781e+00 -2.359185 1.988185e-02 4.530427e-02
## CARNMT1 2.179024e+00 6.683046e+00 3.824934 2.063808e-04 1.321640e-03
## TMEM39B -2.178106e+00 7.144007e+00 -3.689605 3.351444e-04 1.874912e-03
## ORC1 2.177516e+00 2.570500e+00 5.661631 9.923573e-08 6.066679e-06
## ANKRD54 -2.175974e+00 8.073713e+00 -3.471927 7.125361e-04 3.284222e-03
## CHAC2 2.169157e+00 2.937801e+00 4.290468 3.561440e-05 3.702076e-04
## FDXR -2.168731e+00 3.060171e+00 -3.715797 3.054134e-04 1.753244e-03
## SNAPC4 -2.168667e+00 5.430458e+00 -4.496866 1.566875e-05 2.076328e-04
## GLT8D1 2.167559e+00 2.335021e+01 2.844150 5.212653e-03 1.550591e-02
## APBA3 -2.165216e+00 5.240749e+00 -3.621052 4.264712e-04 2.240013e-03
## SLC22A16 2.164504e+00 3.172906e+00 3.427322 8.283335e-04 3.682172e-03
## ANAPC7 2.161440e+00 2.897211e+01 2.481054 1.444302e-02 3.508691e-02
## ENOPH1 2.160264e+00 1.221730e+01 2.685636 8.233515e-03 2.220821e-02
## THUMPD3 2.159115e+00 1.289320e+01 2.654479 8.987616e-03 2.380905e-02
## CILK1 2.158896e+00 9.893442e+00 3.033603 2.945724e-03 9.841207e-03
## RBM15 2.156976e+00 1.072733e+01 2.419519 1.699658e-02 3.993253e-02
## RPUSD3 -2.155662e+00 9.020370e+00 -2.660071 8.847843e-03 2.349125e-02
## ZNF761 2.155430e+00 7.829581e+00 3.460243 7.413011e-04 3.382775e-03
## LRRC45 -2.155076e+00 3.421982e+00 -3.813674 2.149750e-04 1.362696e-03
## GLI1 2.154954e+00 3.458689e+00 3.323396 1.170193e-03 4.802246e-03
## PANX1 2.152455e+00 7.663442e+00 4.046077 9.110161e-05 7.245404e-04
## URGCP -2.150237e+00 6.727349e+00 -3.213844 1.670619e-03 6.304023e-03
## HAUS2 2.149483e+00 1.140757e+01 3.664241 3.665333e-04 2.006964e-03
## ALKBH3 -2.148128e+00 8.083538e+00 -2.726818 7.324749e-03 2.022274e-02
## GPR180 2.147895e+00 5.340497e+00 4.464476 1.785289e-05 2.266973e-04
## AIFM3 -2.147168e+00 2.507852e+00 -4.310787 3.288551e-05 3.482341e-04
## MALSU1 -2.146488e+00 1.167633e+01 -2.380966 1.879378e-02 4.337313e-02
## GEMIN6 -2.146092e+00 1.045493e+01 -3.036365 2.920749e-03 9.785335e-03
## LRP8 2.144697e+00 5.351551e+00 5.114524 1.164817e-06 3.258190e-05
## SKA1 2.140668e+00 2.946798e+00 4.653008 8.283086e-06 1.322172e-04
## RITA1 -2.140619e+00 6.178398e+00 -3.079761 2.553174e-03 8.807633e-03
## P4HTM -2.138110e+00 5.995981e+00 -3.214502 1.667094e-03 6.294725e-03
## OGFOD1 2.132796e+00 1.351192e+01 2.945724 3.851127e-03 1.217658e-02
## AGPAT5 2.131351e+00 9.237360e+00 2.990950 3.357310e-03 1.093592e-02
## ZNF611 2.129959e+00 8.239436e+00 2.335788 2.111227e-02 4.746759e-02
## C16orf91 -2.128633e+00 4.667212e+00 -3.892035 1.615636e-04 1.097448e-03
## TMEM161A -2.127744e+00 2.388716e+00 -4.610143 9.880677e-06 1.506027e-04
## PIGN 2.125046e+00 8.850118e+00 4.096031 7.541294e-05 6.319684e-04
## CTPS1 2.124946e+00 8.866075e+00 3.705894 3.163475e-04 1.794300e-03
## MRPS26 -2.124019e+00 7.574787e+00 -2.311295 2.247186e-02 4.981612e-02
## ICOSLG -2.123168e+00 4.295330e+00 -3.391220 9.347569e-04 4.047542e-03
## SNX22 -2.122081e+00 6.937930e+00 -2.380965 1.879384e-02 4.337313e-02
## C1orf198 2.120058e+00 6.082813e+00 3.054935 2.757848e-03 9.355856e-03
## TMEM107 -2.118607e+00 7.840540e+00 -3.507231 6.318689e-04 2.991603e-03
## FBXO45 2.116111e+00 1.239601e+01 2.554054 1.186181e-02 2.976748e-02
## PIDD1 -2.113641e+00 2.507303e+00 -3.798069 2.274493e-04 1.418269e-03
## SEPSECS 2.110861e+00 9.833919e+00 3.912723 1.497294e-04 1.032578e-03
## GABPB1 2.109130e+00 1.739452e+01 2.359426 1.986950e-02 4.529162e-02
## THOC1 -2.109107e+00 1.153976e+01 -2.564151 1.153946e-02 2.907542e-02
## CENPBD1 -2.101867e+00 9.399546e+00 -3.417962 8.547748e-04 3.772843e-03
## DTX3 -2.101222e+00 5.829146e+00 -2.394750 1.813274e-02 4.209323e-02
## DLAT 2.099824e+00 9.339011e+00 3.300392 1.261911e-03 5.063011e-03
## PLEKHA8 2.097792e+00 8.093103e+00 3.684850 3.408286e-04 1.894480e-03
## B3GALNT2 2.097081e+00 7.077720e+00 3.596114 4.651817e-04 2.389370e-03
## LARP1B 2.092794e+00 5.579827e+00 4.160754 5.889802e-05 5.350352e-04
## SETDB2 2.090389e+00 1.293624e+01 2.520385 1.299595e-02 3.219802e-02
## NUGGC 2.089295e+00 3.148243e+00 3.474248 7.069483e-04 3.271325e-03
## FRA10AC1 -2.088014e+00 7.471636e+00 -3.882652 1.672196e-04 1.126193e-03
## NAA35 2.087653e+00 7.548764e+00 4.600370 1.028460e-05 1.557796e-04
## TRMT13 2.083836e+00 8.742033e+00 2.859919 4.975833e-03 1.495903e-02
## LRMDA -2.082052e+00 4.899770e+00 -3.475144 7.048032e-04 3.265221e-03
## DUSP12 -2.081840e+00 1.244491e+01 -3.075890 2.584131e-03 8.891149e-03
## ZNF875 -2.080108e+00 9.775785e+00 -2.596791 1.055054e-02 2.710776e-02
## SNX25 2.077163e+00 5.475031e+00 3.716601 3.045410e-04 1.750779e-03
## EXO5 2.077134e+00 6.732986e+00 3.227552 1.598569e-03 6.084413e-03
## KIF23 2.076608e+00 3.069673e+00 5.588676 1.389177e-07 7.523124e-06
## AGAP5 2.075537e+00 7.263153e+00 2.824748 5.518164e-03 1.621542e-02
## IGFBP4 -2.074747e+00 2.835312e+00 -2.823167 5.543767e-03 1.627855e-02
## C16orf74 -2.071916e+00 2.209318e+00 -3.487914 6.748760e-04 3.154919e-03
## ZNF574 -2.071171e+00 5.547733e+00 -4.171483 5.651940e-05 5.172223e-04
## SLC25A22 -2.071073e+00 4.013721e+00 -3.315519 1.200871e-03 4.897638e-03
## DCAF17 2.067920e+00 7.498758e+00 2.862775 4.934004e-03 1.485688e-02
## PCYOX1L -2.067121e+00 1.018455e+01 -2.691184 8.105404e-03 2.194250e-02
## ZNF367 2.064485e+00 3.446861e+00 6.531681 1.520699e-09 3.536370e-07
## LRCH1 2.063389e+00 8.424754e+00 3.115495 2.283159e-03 8.042252e-03
## MRM2 -2.062407e+00 1.210393e+01 -2.795025 6.018038e-03 1.733639e-02
## NUP155 2.062208e+00 1.010517e+01 3.593302 4.697491e-04 2.408658e-03
## TAF5L 2.059158e+00 1.582283e+01 2.503188 1.361190e-02 3.345153e-02
## ZNF788P 2.056714e+00 3.710909e+00 3.510317 6.252410e-04 2.964957e-03
## SC5D 2.056699e+00 9.730385e+00 3.319674 1.184595e-03 4.844586e-03
## SLC35F2 2.054288e+00 3.301884e+00 5.151790 9.894092e-07 2.883143e-05
## TCEANC2 2.053889e+00 1.543131e+01 2.313878 2.232493e-02 4.955618e-02
## CEP128 2.051978e+00 2.654485e+00 4.915494 2.751943e-06 6.019630e-05
## TAF13 2.051258e+00 6.980751e+00 2.330587 2.139475e-02 4.793006e-02
## GGT7 -2.050695e+00 5.028157e+00 -2.885378 4.614173e-03 1.407513e-02
## ADCK5 -2.048907e+00 2.614462e+00 -4.188349 5.296564e-05 4.976989e-04
## TUBGCP4 2.047436e+00 5.749259e+00 3.955746 1.277104e-04 9.235643e-04
## NT5DC3 2.047155e+00 6.803999e+00 2.605829 1.029053e-02 2.656053e-02
## GABPB2 2.047143e+00 1.467883e+01 2.767577 6.515944e-03 1.847456e-02
## PCYOX1 2.046086e+00 1.019511e+01 2.646750 9.184110e-03 2.422677e-02
## EPB41L5 2.044716e+00 4.358731e+00 4.435560 2.004847e-05 2.461438e-04
## LYRM9 -2.043207e+00 4.286510e+00 -4.997725 1.933945e-06 4.596511e-05
## CRYZ 2.040861e+00 7.434375e+00 2.320290 2.196386e-02 4.890939e-02
## SS18L1 2.039669e+00 9.890588e+00 4.498311 1.557756e-05 2.073511e-04
## SPRTN 2.038975e+00 9.633731e+00 2.567049 1.144841e-02 2.887054e-02
## NAA30 2.037092e+00 1.022050e+01 3.179257 1.866068e-03 6.877430e-03
## C1QTNF6 -2.035609e+00 3.743056e+00 -4.688713 7.145824e-06 1.175443e-04
## SPATA5L1 2.035487e+00 1.079640e+01 2.513912 1.322480e-02 3.264906e-02
## TCEA2 -2.034065e+00 2.814431e+00 -4.143453 6.293676e-05 5.582872e-04
## INTS9 -2.030909e+00 1.000025e+01 -4.146585 6.218644e-05 5.542660e-04
## TJAP1 -2.030722e+00 1.175996e+01 -2.551772 1.193577e-02 2.991392e-02
## C16orf87 2.024811e+00 6.091570e+00 4.159593 5.916111e-05 5.364303e-04
## MIER2 -2.022770e+00 4.815209e+00 -4.556160 1.231997e-05 1.773238e-04
## EEF1E1 2.022295e+00 9.160501e+00 2.444547 1.591315e-02 3.783680e-02
## ATP6V0A2 2.021124e+00 1.695438e+01 2.709390 7.697590e-03 2.104990e-02
## CDKN3 2.019939e+00 3.118757e+00 2.475159 1.467189e-02 3.549748e-02
## WRAP53 -2.016647e+00 5.915849e+00 -3.370791 1.000532e-03 4.259398e-03
## OCRL 2.015880e+00 5.708875e+00 3.913184 1.494753e-04 1.032485e-03
## WDR18 -2.010763e+00 3.384955e+00 -3.334738 1.127302e-03 4.664206e-03
## CENPO 2.008163e+00 6.808000e+00 2.586343 1.085844e-02 2.773064e-02
## PYROXD1 -2.006497e+00 1.986844e+01 -2.489849 1.410750e-02 3.444111e-02
## ZBED4 2.006461e+00 1.134551e+01 2.862752 4.934337e-03 1.485688e-02
## ATAD3A -2.003118e+00 3.543895e+00 -2.795792 6.004628e-03 1.731102e-02
## DNAL4 -2.001461e+00 8.689553e+00 -3.905938 1.535164e-04 1.052431e-03
## CHAMP1 1.997982e+00 7.345854e+00 3.271552 1.386395e-03 5.446388e-03
## CLCC1 1.997672e+00 8.700595e+00 3.629158 4.145577e-04 2.194935e-03
## ANKMY2 1.995164e+00 9.701918e+00 3.742658 2.775289e-04 1.636617e-03
## ZBTB20 1.994942e+00 6.400153e+00 2.902039 4.390720e-03 1.354329e-02
## POLA1 1.994130e+00 4.077027e+00 5.445643 2.667905e-07 1.146426e-05
## MRPL2 -1.989842e+00 6.783673e+00 -2.834603 5.361003e-03 1.584783e-02
## FHIT -1.989726e+00 3.570145e+00 -2.488293 1.416635e-02 3.455230e-02
## ALS2 1.989625e+00 1.020565e+01 2.737088 7.112786e-03 1.977905e-02
## TMEM18 -1.985909e+00 9.872214e+00 -2.984873 3.420089e-03 1.108410e-02
## TIGD5 -1.984348e+00 2.591716e+00 -4.565771 1.184684e-05 1.726087e-04
## ARHGEF5 1.980834e+00 3.774047e+00 4.428416 2.062970e-05 2.509417e-04
## ZDHHC21 1.980495e+00 5.760158e+00 3.398815 9.113571e-04 3.970074e-03
## EMC8 -1.978700e+00 1.396832e+01 -2.380722 1.880566e-02 4.338360e-02
## LIG3 1.978090e+00 1.172082e+01 2.488962 1.414104e-02 3.450170e-02
## SGO2 1.977629e+00 4.123897e+00 3.778064 2.444476e-04 1.490565e-03
## DYRK1B -1.977615e+00 6.251720e+00 -3.473935 7.077007e-04 3.271332e-03
## TMEM159 1.975706e+00 1.023573e+01 3.096763 2.421217e-03 8.438328e-03
## SCN9A 1.973423e+00 3.471534e+00 2.371249 1.927250e-02 4.421975e-02
## ARMC1 1.972087e+00 1.237289e+01 2.453980 1.552108e-02 3.704567e-02
## ZNF431 1.970380e+00 1.337439e+01 2.318345 2.207283e-02 4.907831e-02
## ZNF808 1.961018e+00 6.967464e+00 2.925545 4.092310e-03 1.279589e-02
## SASS6 1.960374e+00 4.424492e+00 5.261332 6.099540e-07 2.026346e-05
## MYBBP1A -1.960001e+00 6.380048e+00 -2.574595 1.121431e-02 2.841917e-02
## PSPH 1.958504e+00 4.751889e+00 2.922076 4.135146e-03 1.290601e-02
## TMEM186 -1.956581e+00 8.079584e+00 -3.133087 2.160182e-03 7.700557e-03
## SCAF4 1.955282e+00 1.302500e+01 2.609959 1.017364e-02 2.635059e-02
## MRAS -1.955155e+00 3.335592e+00 -3.452466 7.610487e-04 3.454281e-03
## ZNF277 -1.953955e+00 1.797207e+01 -2.339688 2.090264e-02 4.704978e-02
## NUP37 1.953523e+00 1.211658e+01 2.327020 2.159039e-02 4.825897e-02
## TMEM209 1.953373e+00 1.012231e+01 2.945737 3.850973e-03 1.217658e-02
## SLC29A3 -1.951605e+00 4.857206e+00 -3.807745 2.196359e-04 1.382999e-03
## DBP -1.949142e+00 3.415151e+00 -3.977844 1.176372e-04 8.687283e-04
## CDC25A 1.949137e+00 2.056359e+00 5.504045 2.046155e-07 9.405968e-06
## WASF1 1.948106e+00 3.100667e+00 4.465148 1.780468e-05 2.265703e-04
## TACO1 -1.947041e+00 8.590247e+00 -2.645615 9.213282e-03 2.428751e-02
## PAPLN 1.946732e+00 5.702490e+00 2.342568 2.074901e-02 4.677500e-02
## MELK 1.943635e+00 1.925849e+00 6.541209 1.450430e-09 3.440421e-07
## GTF2H3 1.941166e+00 8.981806e+00 3.027660 3.000138e-03 9.989231e-03
## CRELD1 -1.940250e+00 9.180591e+00 -2.398961 1.793498e-02 4.173216e-02
## LCLAT1 1.938228e+00 7.711663e+00 3.389972 9.386573e-04 4.055547e-03
## HSCB -1.935369e+00 5.028321e+00 -4.359044 2.718644e-05 3.024343e-04
## SHPRH 1.931646e+00 7.974053e+00 2.530538 1.264412e-02 3.144460e-02
## MTMR2 1.930781e+00 7.173805e+00 4.177472 5.523209e-05 5.108956e-04
## KCNN3 1.929095e+00 1.832696e+00 3.265559 1.413660e-03 5.522400e-03
## INTS2 1.928996e+00 6.623384e+00 3.148509 2.057463e-03 7.416871e-03
## B4GALNT2 1.927683e+00 5.062191e+00 2.442412 1.600310e-02 3.801258e-02
## SPDL1 1.926871e+00 3.972153e+00 5.700451 8.289338e-08 5.431577e-06
## PPP1R37 -1.923276e+00 3.768274e+00 -4.235599 4.411436e-05 4.316801e-04
## CLOCK 1.922256e+00 7.306462e+00 2.880462 4.682076e-03 1.424196e-02
## PYCR1 1.921131e+00 2.020009e+00 3.043086 2.860798e-03 9.638939e-03
## TMEM243 -1.917443e+00 1.558741e+01 -2.573699 1.124189e-02 2.845867e-02
## TRIP6 -1.916710e+00 4.341131e+00 -3.659459 3.727547e-04 2.031650e-03
## ZNF775 -1.916484e+00 2.188327e+00 -6.238783 6.411111e-09 8.945386e-07
## ELAVL1 1.914973e+00 2.192804e+01 2.558525 1.171809e-02 2.945667e-02
## FOCAD 1.914597e+00 1.268748e+01 2.494238 1.394270e-02 3.414421e-02
## CIP2A 1.913572e+00 2.647639e+00 5.663991 9.815815e-08 6.063311e-06
## ZCCHC14 1.913215e+00 8.135402e+00 2.635665 9.472689e-03 2.481144e-02
## PSRC1 -1.911537e+00 8.164901e+00 -3.019382 3.077470e-03 1.019519e-02
## TMEM128 -1.910547e+00 9.579223e+00 -3.684676 3.410383e-04 1.894480e-03
## PDP2 1.909242e+00 4.398036e+00 5.346638 4.168197e-07 1.594671e-05
## DNM3 1.907967e+00 5.609791e+00 2.845753 5.188116e-03 1.546006e-02
## MAPK7 -1.907251e+00 7.408218e+00 -3.805611 2.213367e-04 1.390389e-03
## NIP7 1.902962e+00 1.508204e+01 3.742401 2.777833e-04 1.636617e-03
## POLR1B 1.899364e+00 9.759477e+00 2.350646 2.032338e-02 4.605183e-02
## WDHD1 1.894819e+00 2.838481e+00 6.166862 9.084678e-09 1.171133e-06
## ZNF500 -1.890524e+00 4.895895e+00 -3.993686 1.108876e-04 8.339425e-04
## KCNA3 1.889500e+00 4.606723e+00 2.906501 4.332580e-03 1.340579e-02
## ERO1B 1.888330e+00 1.353535e+01 2.443088 1.597457e-02 3.795331e-02
## PRPF4 1.887018e+00 1.785673e+01 3.494613 6.596584e-04 3.097209e-03
## SCRIB -1.884690e+00 3.799350e+00 -3.716251 3.049201e-04 1.751409e-03
## TG 1.881298e+00 2.999186e+00 3.308657 1.228212e-03 4.974041e-03
## NBEAL1 1.880076e+00 5.194572e+00 3.968243 1.219171e-04 8.924554e-04
## LRRC40 1.877940e+00 7.298671e+00 2.803449 5.872331e-03 1.703249e-02
## CASD1 1.877568e+00 8.515218e+00 2.410598 1.739826e-02 4.071496e-02
## PLD6 1.875923e+00 4.416462e+00 4.114203 7.037526e-05 6.022010e-04
## TRAPPC2 1.875515e+00 1.772602e+01 2.938361 3.937575e-03 1.239375e-02
## ZNF48 -1.875450e+00 3.972516e+00 -3.498836 6.502308e-04 3.058999e-03
## MBD5 1.874945e+00 9.170422e+00 2.639159 9.380856e-03 2.463617e-02
## ELMO3 -1.869354e+00 4.025029e+00 -2.879478 4.695777e-03 1.427129e-02
## ZFAND4 1.867676e+00 5.305844e+00 5.340861 4.277535e-07 1.615655e-05
## FGFR1 1.858389e+00 5.117522e+00 3.053755 2.767944e-03 9.384738e-03
## NKAIN3 1.858362e+00 5.275168e+00 3.181743 1.851341e-03 6.835899e-03
## H2BC11 1.856172e+00 3.239165e+00 4.876706 3.246134e-06 6.733671e-05
## ZNF133 -1.854848e+00 7.075448e+00 -3.255814 1.459071e-03 5.662495e-03
## ZNF436 1.854757e+00 7.393578e+00 3.175140 1.890699e-03 6.944471e-03
## PER2 1.853924e+00 7.395293e+00 3.105930 2.352715e-03 8.233462e-03
## FANCG 1.852683e+00 6.806998e+00 3.040493 2.883788e-03 9.688874e-03
## ZSCAN30 1.851696e+00 6.901201e+00 2.567722 1.142735e-02 2.882970e-02
## SH2D3A -1.850110e+00 2.920412e+00 -4.055480 8.792812e-05 7.065475e-04
## XPNPEP3 1.848877e+00 9.121096e+00 4.505564 1.512765e-05 2.045769e-04
## SLC12A2 1.847051e+00 3.596070e+00 5.453431 2.575398e-07 1.127093e-05
## FBF1 -1.846944e+00 3.855134e+00 -2.997348 3.292367e-03 1.075688e-02
## KCTD13 -1.846307e+00 8.575395e+00 -2.897953 4.444578e-03 1.367385e-02
## MMP17 -1.845327e+00 1.189793e+00 -5.981174 2.213901e-08 2.225158e-06
## MUSTN1 -1.844974e+00 3.420320e+00 -3.013878 3.129902e-03 1.034001e-02
## ZNF37A 1.842793e+00 1.151861e+01 2.352923 2.020477e-02 4.585315e-02
## TMEM69 1.842531e+00 1.481066e+01 2.582859 1.096290e-02 2.794327e-02
## UQCC3 -1.841990e+00 2.492238e+00 -3.496532 6.553596e-04 3.081075e-03
## C4orf46 1.840690e+00 6.413515e+00 3.302650 1.252618e-03 5.037656e-03
## GINS1 1.840650e+00 1.987370e+00 6.169956 8.949849e-09 1.166431e-06
## TTK 1.839365e+00 2.108625e+00 5.086542 1.316082e-06 3.507580e-05
## TMEM35B -1.833641e+00 1.474854e+01 -2.368282 1.942080e-02 4.449114e-02
## RAD51AP1 1.831306e+00 2.255727e+00 4.479367 1.681453e-05 2.174703e-04
## IRF2BP1 -1.829305e+00 3.893644e+00 -4.956299 2.311057e-06 5.291338e-05
## STIL 1.829180e+00 2.017819e+00 6.516977 1.635780e-09 3.592657e-07
## TERF1 1.828532e+00 1.566183e+01 2.326474 2.162048e-02 4.829891e-02
## RGS12 -1.821525e+00 2.385566e+00 -4.742528 5.712211e-06 1.005977e-04
## SERPINH1 -1.821519e+00 2.296805e+00 -4.041250 9.277285e-05 7.338914e-04
## HDAC11 -1.821225e+00 4.338856e+00 -3.769991 2.516439e-04 1.521150e-03
## EEF2KMT -1.820586e+00 5.516544e+00 -2.758986 6.679325e-03 1.882621e-02
## CAV2 1.820159e+00 2.579547e+00 4.153530 6.055328e-05 5.457157e-04
## LTA -1.819220e+00 3.263284e+00 -3.957799 1.267407e-04 9.187923e-04
## INTS13 1.818937e+00 1.106256e+01 2.937699 3.945433e-03 1.241519e-02
## TAF4B 1.815242e+00 3.161009e+00 4.287411 3.604333e-05 3.730139e-04
## PIAS3 1.811761e+00 1.113880e+01 2.729338 7.272198e-03 2.011387e-02
## ZNF236 1.808153e+00 5.345087e+00 3.848513 1.894306e-04 1.241928e-03
## LLGL2 -1.805002e+00 3.625928e+00 -2.464150 1.510798e-02 3.633738e-02
## DNA2 1.803053e+00 3.229567e+00 5.894970 3.332214e-08 2.922773e-06
## DGKG 1.800299e+00 7.272686e+00 3.192440 1.789192e-03 6.658241e-03
## ZNF841 1.800256e+00 6.951769e+00 3.401157 9.042513e-04 3.944252e-03
## LIN52 1.794367e+00 6.449285e+00 4.723733 6.177991e-06 1.054259e-04
## FBLN5 -1.793715e+00 2.666329e+00 -3.527107 5.903189e-04 2.846009e-03
## MTHFSD -1.792809e+00 7.413862e+00 -3.969322 1.214284e-04 8.906253e-04
## DNPH1 -1.791967e+00 2.217869e+00 -3.650586 3.845630e-04 2.077866e-03
## MED9 -1.789553e+00 6.636698e+00 -3.968106 1.219789e-04 8.924554e-04
## FLJ44635 -1.788658e+00 3.438260e+00 -3.982647 1.155506e-04 8.575216e-04
## BARD1 1.787356e+00 3.664282e+00 5.316687 4.766236e-07 1.716016e-05
## MED12L 1.785101e+00 2.302674e+00 3.542605 5.597212e-04 2.734058e-03
## ABHD8 -1.784111e+00 2.969135e+00 -3.510816 6.241766e-04 2.963198e-03
## TMIGD2 -1.784057e+00 3.438034e+00 -2.378122 1.893280e-02 4.357520e-02
## DNLZ -1.783084e+00 2.137907e+00 -3.325811 1.160933e-03 4.772501e-03
## LSR -1.781901e+00 2.717078e+00 -3.703635 3.188934e-04 1.806149e-03
## LDLRAD3 1.780598e+00 4.434473e+00 2.679615 8.374607e-03 2.250687e-02
## KIAA1841 1.780474e+00 5.410219e+00 3.623997 4.221059e-04 2.226042e-03
## YBEY -1.780435e+00 5.374931e+00 -3.051684 2.785745e-03 9.441517e-03
## R3HDM1 1.772302e+00 1.206262e+01 2.885579 4.611423e-03 1.407036e-02
## NLE1 -1.772136e+00 4.429862e+00 -3.389679 9.395741e-04 4.056630e-03
## CDK3 -1.771089e+00 8.252463e+00 -2.665567 8.712384e-03 2.320433e-02
## MAP2K5 -1.770996e+00 5.856772e+00 -5.191327 8.314709e-07 2.539767e-05
## BLNK 1.767881e+00 6.007002e+00 2.354147 2.014128e-02 4.573532e-02
## MPV17L2 -1.767831e+00 5.120855e+00 -3.076438 2.579732e-03 8.881168e-03
## FIGNL1 1.766734e+00 4.554028e+00 4.081593 7.965960e-05 6.569978e-04
## PLK1 1.764611e+00 2.521290e+00 4.141817 6.333223e-05 5.613754e-04
## NBPF3 1.764265e+00 5.432229e+00 2.892288 4.520260e-03 1.383171e-02
## MEGF8 -1.761845e+00 5.122226e+00 -4.370148 2.601656e-05 2.944240e-04
## LAGE3 -1.761799e+00 3.435749e+00 -2.510075 1.336217e-02 3.294020e-02
## PPARA 1.756549e+00 6.965596e+00 3.181294 1.853992e-03 6.841425e-03
## CDCA2 1.753061e+00 1.762604e+00 5.378585 3.611096e-07 1.427587e-05
## RAD54L2 1.752368e+00 1.226087e+01 2.702433 7.851176e-03 2.138116e-02
## ZNF512B -1.752096e+00 4.074057e+00 -3.165599 1.948942e-03 7.107764e-03
## RBL1 1.749641e+00 7.491732e+00 3.355200 1.053619e-03 4.424478e-03
## TMEM79 -1.748540e+00 8.155048e+00 -2.784569 6.203466e-03 1.774525e-02
## RAD51D 1.744305e+00 8.382773e+00 3.008952 3.177525e-03 1.045656e-02
## PRIM1 1.743532e+00 5.484404e+00 4.371578 2.586950e-05 2.933635e-04
## NR1H3 -1.742366e+00 3.587953e+00 -3.827701 2.043197e-04 1.314124e-03
## FOXP4 -1.739422e+00 3.184719e+00 -4.022363 9.959868e-05 7.733077e-04
## ATXN7L1 1.738760e+00 9.068632e+00 2.331937 2.132110e-02 4.781023e-02
## ABCB7 -1.738681e+00 1.423068e+01 -2.807911 5.796462e-03 1.684952e-02
## ZNF419 -1.733300e+00 6.193570e+00 -3.761504 2.594251e-04 1.553930e-03
## RHBDD1 1.728287e+00 1.197727e+01 2.699109 7.925532e-03 2.154902e-02
## DARS2 1.726341e+00 6.751483e+00 4.398454 2.324939e-05 2.730077e-04
## KCTD3 1.725955e+00 4.933285e+00 4.182999 5.406907e-05 5.041339e-04
## CCDC18 1.725576e+00 5.339632e+00 4.620048 9.486966e-06 1.457535e-04
## PAXIP1 1.725116e+00 6.051895e+00 4.210691 4.858668e-05 4.654589e-04
## TRPT1 -1.724959e+00 5.435570e+00 -3.240647 1.532454e-03 5.889471e-03
## RHPN1 -1.723254e+00 1.631164e+00 -4.042602 9.230207e-05 7.307761e-04
## C22orf34 -1.719928e+00 3.797665e+00 -2.576486 1.115634e-02 2.829646e-02
## ALMS1 1.718355e+00 5.039630e+00 2.927786 4.064858e-03 1.272683e-02
## MTIF2 1.718316e+00 1.704702e+01 2.502068 1.365292e-02 3.351761e-02
## RGS6 1.718276e+00 3.861306e+00 3.482295 6.878937e-04 3.200593e-03
## PEX14 -1.717892e+00 3.735753e+00 -4.205868 4.950145e-05 4.715319e-04
## RFX1 -1.716426e+00 5.288178e+00 -3.590541 4.742757e-04 2.429766e-03
## ZNF213 -1.712707e+00 6.368852e+00 -3.022154 3.051371e-03 1.013137e-02
## PSMG4 -1.711861e+00 4.468802e+00 -3.846068 1.911247e-04 1.249581e-03
## SAC3D1 -1.708156e+00 2.035092e+00 -3.314949 1.203120e-03 4.901754e-03
## SEC14L5 1.707861e+00 3.350264e+00 3.092738 2.451866e-03 8.507645e-03
## ID3 -1.704352e+00 1.593617e+00 -5.191431 8.310917e-07 2.539767e-05
## SOCS7 1.702694e+00 6.979578e+00 2.683919 8.273531e-03 2.229586e-02
## ALKBH4 -1.696224e+00 5.552355e+00 -4.876690 3.246358e-06 6.733671e-05
## SLC39A14 1.695973e+00 3.344150e+00 4.010196 1.042475e-04 7.956083e-04
## NAA25 1.692781e+00 7.751185e+00 2.481958 1.440821e-02 3.503072e-02
## RFC3 1.685526e+00 3.856438e+00 4.551563 1.255269e-05 1.789362e-04
## SIRT3 -1.683236e+00 8.250311e+00 -2.438753 1.615836e-02 3.828170e-02
## NREP 1.683037e+00 8.542821e+00 3.020059 3.071076e-03 1.018254e-02
## TMEM212 1.682421e+00 5.080624e+00 3.167794 1.935396e-03 7.077676e-03
## TRIP13 1.679138e+00 1.759339e+00 5.885944 3.477365e-08 2.967018e-06
## CRACR2A 1.677160e+00 3.480265e+00 3.746324 2.739154e-04 1.618653e-03
## SNAP47 -1.668262e+00 7.187783e+00 -2.932779 4.004297e-03 1.257143e-02
## RIMKLB 1.666560e+00 3.286410e+00 4.840384 3.786343e-06 7.547232e-05
## TAF1B 1.666351e+00 5.208159e+00 3.631316 4.114399e-04 2.182324e-03
## POP7 -1.658244e+00 5.072606e+00 -2.793930 6.037204e-03 1.736630e-02
## MYL5 -1.657203e+00 2.187574e+00 -4.018743 1.009607e-04 7.786096e-04
## MZT2A -1.653665e+00 1.805651e+00 -2.641707 9.314414e-03 2.449878e-02
## SLC10A7 1.653555e+00 5.177957e+00 3.730237 2.901085e-04 1.689095e-03
## MRPS10 1.652590e+00 2.141636e+01 2.319077 2.203175e-02 4.904215e-02
## ZNF510 1.652399e+00 7.945826e+00 2.645022 9.228582e-03 2.431271e-02
## ZNF414 -1.648513e+00 1.781093e+00 -4.609770 9.895812e-06 1.506027e-04
## AFF2 1.648463e+00 2.363112e+00 2.880123 4.686789e-03 1.425264e-02
## ALG8 1.645943e+00 9.727654e+00 2.622228 9.833478e-03 2.563550e-02
## SCFD2 1.645482e+00 7.682012e+00 2.907019 4.325877e-03 1.339204e-02
## ALG12 -1.643271e+00 9.022112e+00 -2.610424 1.016057e-02 2.633399e-02
## PRPSAP2 1.641801e+00 1.592003e+01 2.481717 1.441750e-02 3.503926e-02
## ADCK1 -1.640476e+00 3.334364e+00 -3.385419 9.530095e-04 4.098148e-03
## FKRP -1.639394e+00 5.317226e+00 -5.591903 1.368727e-07 7.523124e-06
## LZTS2 -1.639027e+00 4.465167e+00 -3.113397 2.298251e-03 8.083411e-03
## GPD1L 1.638777e+00 9.288984e+00 2.583988 1.092896e-02 2.786872e-02
## MMAB -1.638357e+00 4.138288e+00 -2.392970 1.821696e-02 4.225565e-02
## CMC4 -1.637978e+00 4.140022e+00 -4.117998 6.936476e-05 5.960191e-04
## MRM3 -1.637003e+00 5.350658e+00 -2.753547 6.784696e-03 1.904532e-02
## IFT43 -1.635822e+00 3.631648e+00 -3.551865 5.421597e-04 2.673525e-03
## NEIL1 -1.632084e+00 4.627217e+00 -2.426880 1.667131e-02 3.926947e-02
## ARNTL2 1.630539e+00 2.754961e+00 5.464027 2.454541e-07 1.094393e-05
## USP53 1.628750e+00 5.756835e+00 2.399677 1.790154e-02 4.167889e-02
## QRSL1 1.626231e+00 9.624723e+00 2.419064 1.701686e-02 3.997227e-02
## SDHAF4 -1.621858e+00 5.064403e+00 -3.242933 1.521180e-03 5.853728e-03
## KLHL11 1.618784e+00 7.187823e+00 3.017565 3.094687e-03 1.024365e-02
## FAHD2B -1.616871e+00 3.477513e+00 -2.783114 6.229672e-03 1.780335e-02
## NOC4L -1.616317e+00 2.475631e+00 -3.598695 4.610262e-04 2.373165e-03
## FBXL18 -1.615350e+00 6.821226e+00 -3.910651 1.508762e-04 1.038533e-03
## SPC25 1.615243e+00 2.387813e+00 4.722170 6.218341e-06 1.059620e-04
## ESF1 1.609537e+00 5.234544e+00 3.212838 1.676023e-03 6.320390e-03
## CENPJ 1.608083e+00 3.495916e+00 5.580959 1.439299e-07 7.689226e-06
## ZNF341 -1.607605e+00 6.068680e+00 -3.705271 3.170481e-04 1.796556e-03
## MIGA1 1.605207e+00 7.134786e+00 3.051622 2.786282e-03 9.441517e-03
## C5 1.604821e+00 4.165035e+00 3.538832 5.670295e-04 2.761795e-03
## POLD1 -1.604337e+00 4.016221e+00 -2.576968 1.114160e-02 2.827279e-02
## KCNMB1 -1.603772e+00 4.568279e+00 -3.527805 5.889077e-04 2.840360e-03
## CPED1 1.600253e+00 3.810962e+00 2.797597 5.973193e-03 1.724071e-02
## TSNARE1 -1.598246e+00 3.936729e+00 -3.307643 1.232302e-03 4.976199e-03
## MTHFD2L 1.597880e+00 5.595890e+00 4.088898 7.748303e-05 6.430712e-04
## ZSCAN2 -1.597521e+00 5.631078e+00 -3.351543 1.066448e-03 4.464552e-03
## PRSS36 -1.596700e+00 3.097334e+00 -2.838754 5.296035e-03 1.571060e-02
## S100A13 -1.595299e+00 2.825308e+00 -3.914090 1.489773e-04 1.029645e-03
## PPAT 1.593815e+00 3.558442e+00 4.380124 2.500693e-05 2.881531e-04
## TNFRSF10A 1.590719e+00 6.817997e+00 2.710483 7.673718e-03 2.099430e-02
## WDR83 -1.589967e+00 3.226678e+00 -4.055091 8.805717e-05 7.070806e-04
## MEF2B -1.587563e+00 2.260429e+00 -3.640272 3.987356e-04 2.131142e-03
## AAMDC -1.586683e+00 4.168536e+00 -3.148954 2.054570e-03 7.413204e-03
## OTUD6B 1.577067e+00 5.811019e+00 3.129236 2.186566e-03 7.773582e-03
## ZNF212 -1.576754e+00 9.367830e+00 -2.976654 3.506713e-03 1.130767e-02
## UCK2 1.575520e+00 7.303900e+00 3.003991 3.226171e-03 1.059313e-02
## ZBTB45 -1.572597e+00 2.702421e+00 -4.338872 2.944249e-05 3.175304e-04
## ZNF778 1.571912e+00 6.761855e+00 4.464697 1.783699e-05 2.266973e-04
## TOGARAM1 1.569080e+00 4.533942e+00 3.921390 1.450212e-04 1.012928e-03
## CDKL1 1.567496e+00 5.002712e+00 4.043720 9.191422e-05 7.286783e-04
## CBR3 -1.565394e+00 1.579246e+00 -3.472089 7.121464e-04 3.283848e-03
## SLC15A2 1.562020e+00 8.377752e+00 2.318670 2.205461e-02 4.905788e-02
## CBX8 -1.559483e+00 2.949253e+00 -4.921171 2.686033e-06 5.932282e-05
## RBM41 1.558634e+00 8.090103e+00 2.780458 6.277786e-03 1.792677e-02
## XPA -1.556920e+00 7.300014e+00 -3.123908 2.223559e-03 7.886188e-03
## CCDC84 -1.555626e+00 7.097132e+00 -2.766806 6.530455e-03 1.849802e-02
## MED20 1.553811e+00 1.116383e+01 2.310989 2.248928e-02 4.984543e-02
## NEK2 1.553571e+00 1.748322e+00 4.556995 1.227818e-05 1.770908e-04
## ALKBH2 -1.553129e+00 3.203358e+00 -3.849684 1.886246e-04 1.238012e-03
## ARG2 1.552888e+00 3.299904e+00 2.902619 4.383125e-03 1.352338e-02
## WDR12 1.552114e+00 9.028192e+00 3.310115 1.222354e-03 4.963065e-03
## AUH 1.551682e+00 6.933930e+00 3.211683 1.682247e-03 6.339833e-03
## ZNF346 1.550579e+00 1.263160e+01 2.700941 7.884474e-03 2.145706e-02
## ZNF669 1.549964e+00 6.245737e+00 3.762025 2.589411e-04 1.551815e-03
## H2BC8 1.549517e+00 2.516798e+00 4.501819 1.535834e-05 2.062853e-04
## ASB3 1.548686e+00 8.578420e+00 3.079782 2.553006e-03 8.807633e-03
## PARP2 1.547824e+00 5.247251e+00 3.343657 1.094610e-03 4.559955e-03
## SPHK2 -1.546299e+00 2.405806e+00 -5.177375 8.841757e-07 2.648061e-05
## C1orf54 -1.544333e+00 1.723211e+00 -5.539422 1.741036e-07 8.566298e-06
## WDR24 -1.543199e+00 2.938215e+00 -4.183314 5.400340e-05 5.039184e-04
## TTLL5 1.542962e+00 5.402496e+00 4.555435 1.235641e-05 1.774343e-04
## SAMD10 -1.542784e+00 2.040856e+00 -3.349609 1.073290e-03 4.488441e-03
## FAM43A -1.542432e+00 4.893110e+00 -3.257453 1.451338e-03 5.636171e-03
## NELFA -1.542112e+00 4.133731e+00 -4.479615 1.679777e-05 2.174703e-04
## SCO1 1.541579e+00 1.588251e+01 2.663759 8.756726e-03 2.330673e-02
## ST7 1.540357e+00 6.817270e+00 3.340689 1.105390e-03 4.590308e-03
## CDYL 1.538674e+00 1.183027e+01 2.965033 3.632649e-03 1.162840e-02
## ZBTB41 1.537360e+00 6.390101e+00 2.558159 1.172980e-02 2.947515e-02
## ZNRF1 -1.536242e+00 4.057024e+00 -2.775691 6.364985e-03 1.811776e-02
## PDIK1L 1.534208e+00 6.609427e+00 3.281964 1.340187e-03 5.298208e-03
## GINS4 1.533162e+00 2.236294e+00 6.569648 1.259199e-09 3.177468e-07
## UNK -1.532320e+00 5.764356e+00 -3.526430 5.916903e-04 2.850303e-03
## INPP5E -1.531596e+00 3.934240e+00 -3.464816 7.299151e-04 3.342391e-03
## LOC100421372 1.531522e+00 1.044805e+01 2.917302 4.194764e-03 1.306114e-02
## ZNF836 -1.523241e+00 7.651357e+00 -3.405355 8.916455e-04 3.896432e-03
## DAAM1 1.520825e+00 5.636923e+00 3.492140 6.652371e-04 3.116000e-03
## GOLIM4 1.520292e+00 4.754365e+00 3.725206 2.953561e-04 1.712921e-03
## ZNF707 -1.519731e+00 4.475382e+00 -4.620034 9.487493e-06 1.457535e-04
## COIL 1.519436e+00 1.150454e+01 2.915955 4.211733e-03 1.310366e-02
## RINT1 1.517997e+00 9.476999e+00 3.147615 2.063296e-03 7.430541e-03
## PAOX -1.517428e+00 2.008571e+00 -4.327833 3.075230e-05 3.285786e-04
## SPICE1 1.513458e+00 3.300865e+00 5.230158 7.003953e-07 2.226994e-05
## FTO 1.509606e+00 6.696907e+00 2.514261 1.321239e-02 3.262522e-02
## MMP19 -1.507390e+00 5.630683e+00 -2.434940 1.632155e-02 3.859893e-02
## SLC27A2 1.507344e+00 1.900271e+00 2.960807 3.679471e-03 1.174341e-02
## TMEM192 1.504483e+00 1.293951e+01 3.375101 9.863053e-04 4.209277e-03
## ZNF440 1.501493e+00 6.699211e+00 3.327205 1.155620e-03 4.758908e-03
## ACTR8 1.500594e+00 1.325107e+01 3.092774 2.451596e-03 8.507645e-03
## ZNF497 -1.500464e+00 3.232523e+00 -3.234905 1.561127e-03 5.970644e-03
## PARPBP 1.499744e+00 2.206733e+00 6.070340 1.445851e-08 1.633124e-06
## RAB19 1.499360e+00 2.951988e+00 2.686700 8.208794e-03 2.215665e-02
## CISD1 -1.497237e+00 6.009505e+00 -2.602309 1.039108e-02 2.675602e-02
## ZNF747 -1.497114e+00 7.011110e+00 -3.296809 1.276789e-03 5.107157e-03
## FHL2 1.493756e+00 4.269777e+00 3.078612 2.562329e-03 8.826380e-03
## RCL1 1.492491e+00 4.011113e+00 2.465869 1.503914e-02 3.620873e-02
## ZFYVE21 -1.491455e+00 9.759003e+00 -2.516184 1.314406e-02 3.249033e-02
## SPC24 1.488705e+00 2.788181e+00 2.635665 9.472699e-03 2.481144e-02
## ACY1 -1.488213e+00 2.749381e+00 -4.521341 1.419176e-05 1.959420e-04
## PROCA1 -1.487756e+00 3.907384e+00 -2.923743 4.114516e-03 1.285854e-02
## GTSE1 1.487709e+00 1.650940e+00 5.233205 6.910083e-07 2.214962e-05
## VANGL1 1.482563e+00 3.245556e+00 4.398192 2.327367e-05 2.730224e-04
## ZNF615 1.481495e+00 7.225470e+00 2.548607 1.203905e-02 3.014847e-02
## AP1M2 1.480851e+00 3.628289e+00 2.883029 4.646501e-03 1.414543e-02
## SLAIN1 1.479806e+00 5.090475e+00 3.361897 1.030499e-03 4.357120e-03
## ROM1 -1.479317e+00 3.040250e+00 -2.671519 8.567805e-03 2.291704e-02
## ZNRD2 -1.475919e+00 2.601572e+00 -2.690745 8.115478e-03 2.196476e-02
## SLX4IP 1.473136e+00 6.511272e+00 2.701041 7.882228e-03 2.145587e-02
## PFKM 1.472445e+00 6.160440e+00 3.703091 3.195099e-04 1.807914e-03
## RAB39B 1.470981e+00 6.234750e+00 2.663856 8.754341e-03 2.330561e-02
## RTEL1 -1.469896e+00 5.039526e+00 -2.496855 1.384524e-02 3.394058e-02
## POLR1C -1.466822e+00 7.249118e+00 -2.431998 1.644845e-02 3.884481e-02
## ZNF275 1.465744e+00 6.549024e+00 2.345899 2.057252e-02 4.645667e-02
## HACE1 1.463698e+00 3.573234e+00 3.845494 1.915250e-04 1.250594e-03
## FAHD1 -1.463621e+00 5.384156e+00 -3.056843 2.741600e-03 9.319395e-03
## NOTCH4 -1.461879e+00 1.992060e+00 -5.784860 5.592734e-08 4.171687e-06
## NADK2 1.457966e+00 7.657185e+00 3.144891 2.081151e-03 7.486336e-03
## IFT122 -1.456371e+00 5.680293e+00 -4.281685 3.686019e-05 3.783904e-04
## BCL11A -1.456148e+00 5.220450e+00 -2.709054 7.704936e-03 2.105949e-02
## FRS3 -1.453846e+00 2.447842e+00 -5.263639 6.037357e-07 2.011322e-05
## FER 1.452047e+00 3.823844e+00 3.702135 3.205944e-04 1.811458e-03
## MCAT -1.449567e+00 3.748407e+00 -3.265967 1.411788e-03 5.520542e-03
## HMBOX1 1.448732e+00 4.292516e+00 3.674475 3.535479e-04 1.947551e-03
## TTI1 1.442965e+00 1.076233e+01 2.836616 5.329409e-03 1.578197e-02
## SWSAP1 -1.442620e+00 3.381582e+00 -3.041029 2.879022e-03 9.683833e-03
## M1AP 1.440994e+00 2.552213e+00 2.384046 1.864427e-02 4.312032e-02
## LLGL1 -1.440672e+00 6.318037e+00 -2.607492 1.024332e-02 2.645595e-02
## EHBP1 1.439611e+00 4.589209e+00 3.985086 1.145043e-04 8.519578e-04
## INO80C -1.438456e+00 8.325959e+00 -2.951341 3.786358e-03 1.201986e-02
## TRDMT1 1.437839e+00 7.586136e+00 2.727914 7.301845e-03 2.017235e-02
## ZBTB39 1.434967e+00 3.930734e+00 3.057895 2.732671e-03 9.291710e-03
## LARS2 1.431520e+00 6.436108e+00 3.238143 1.544899e-03 5.925778e-03
## SETBP1 1.427367e+00 3.115494e+00 3.759665 2.611407e-04 1.556346e-03
## KHK -1.427333e+00 2.326318e+00 -2.707774 7.733017e-03 2.111756e-02
## TRUB1 1.426963e+00 4.664349e+00 2.926564 4.079812e-03 1.276691e-02
## ELOVL6 1.426625e+00 3.519954e+00 3.782474 2.406003e-04 1.473926e-03
## ZBTB26 1.425128e+00 8.262354e+00 2.341179 2.082295e-02 4.692385e-02
## RMI2 1.423274e+00 2.761673e+00 3.050405 2.796795e-03 9.469023e-03
## BTRC 1.422204e+00 8.399350e+00 2.729664 7.265428e-03 2.010921e-02
## COX18 1.421081e+00 1.143435e+01 3.134558 2.150183e-03 7.671833e-03
## MTLN -1.420332e+00 2.240073e+00 -2.823022 5.546127e-03 1.628145e-02
## NUDCD1 1.419947e+00 7.171650e+00 3.056161 2.747393e-03 9.333738e-03
## SKA3 1.419663e+00 1.473196e+00 5.531950 1.801526e-07 8.685934e-06
## SNTA1 -1.418889e+00 1.745718e+00 -3.702508 3.201703e-04 1.809924e-03
## DPH1 -1.417005e+00 6.084637e+00 -2.333340 2.124481e-02 4.765718e-02
## TXNDC16 1.412775e+00 4.983668e+00 3.346583 1.084079e-03 4.527176e-03
## DHFR2 1.411491e+00 5.450357e+00 2.910929 4.275591e-03 1.325713e-02
## CASTOR1 -1.409834e+00 1.811159e+00 -5.098587 1.248759e-06 3.381344e-05
## CCNF 1.409211e+00 2.866262e+00 3.277722 1.358838e-03 5.364788e-03
## DNAAF4 -1.405821e+00 3.362708e+00 -3.044951 2.844362e-03 9.597192e-03
## HELLS 1.402312e+00 1.789444e+00 5.906040 3.162290e-08 2.798863e-06
## HSD17B7 1.401796e+00 1.025720e+01 2.867662 4.863186e-03 1.467992e-02
## PIAS4 -1.398651e+00 8.388484e+00 -2.459446 1.529782e-02 3.665295e-02
## ZNF45 1.396793e+00 9.325411e+00 2.448530 1.574655e-02 3.750083e-02
## ALPK3 1.389274e+00 2.586811e+00 2.623906 9.787751e-03 2.554075e-02
## ZNF616 1.387958e+00 5.664482e+00 3.514735 6.158673e-04 2.934587e-03
## SH3D21 -1.385900e+00 3.131447e+00 -4.009834 1.043888e-04 7.958635e-04
## ZBTB42 -1.385790e+00 1.962875e+00 -3.694614 3.292544e-04 1.848063e-03
## BTG3 1.385520e+00 3.740489e+00 2.872814 4.789527e-03 1.450186e-02
## PALB2 1.383761e+00 4.903372e+00 3.356290 1.049825e-03 4.413655e-03
## TRIM59 1.383002e+00 6.174073e+00 3.025497 3.020165e-03 1.004420e-02
## CHST7 -1.382733e+00 4.284618e+00 -2.534124 1.252191e-02 3.119955e-02
## GLI4 -1.378439e+00 1.514855e+00 -5.120665 1.133964e-06 3.186922e-05
## IPPK 1.376693e+00 6.941924e+00 3.366086 1.016281e-03 4.310836e-03
## C9orf64 1.376450e+00 8.613999e+00 2.442036 1.601903e-02 3.802755e-02
## UTP20 1.376372e+00 4.647699e+00 2.650832 9.079866e-03 2.399858e-02
## TCEA3 -1.373694e+00 2.591549e+00 -2.576778 1.114741e-02 2.827984e-02
## WRN 1.372421e+00 5.436949e+00 3.752358 2.680663e-04 1.589633e-03
## ESPL1 1.372348e+00 1.738439e+00 4.377322 2.528663e-05 2.893471e-04
## HSF4 -1.368148e+00 2.233804e+00 -4.450310 1.889783e-05 2.367435e-04
## PTER 1.367940e+00 6.386741e+00 2.501689 1.366680e-02 3.354476e-02
## FAM207A -1.367543e+00 2.279916e+00 -3.159179 1.989074e-03 7.218610e-03
## NPIPB11 1.361438e+00 3.952164e+00 3.035566 2.927962e-03 9.795352e-03
## ENTPD5 1.360082e+00 5.403470e+00 3.216420 1.656853e-03 6.268030e-03
## NEK1 1.357794e+00 4.852121e+00 3.734848 2.853766e-04 1.666309e-03
## UGDH 1.357574e+00 6.331026e+00 2.932060 4.012965e-03 1.259094e-02
## DTWD2 1.356866e+00 4.652920e+00 2.790396 6.099497e-03 1.751575e-02
## EOGT 1.354978e+00 5.719742e+00 3.960347 1.255473e-04 9.118132e-04
## ZNF853 -1.350923e+00 2.134514e+00 -3.714660 3.066495e-04 1.758638e-03
## HOOK2 -1.348546e+00 3.464195e+00 -4.025533 9.842040e-05 7.654651e-04
## TMEM68 1.346939e+00 7.484016e+00 3.987539 1.134615e-04 8.468552e-04
## NPFF -1.346362e+00 3.625030e+00 -2.686464 8.214264e-03 2.216636e-02
## TMEM223 -1.345726e+00 4.657895e+00 -2.703992 7.816524e-03 2.131126e-02
## C6orf136 -1.345467e+00 6.670025e+00 -3.007798 3.188777e-03 1.048777e-02
## CASR 1.344175e+00 5.321598e+00 2.718720 7.495889e-03 2.059806e-02
## PRMT3 1.343739e+00 5.450884e+00 4.208713 4.895987e-05 4.671473e-04
## TEDC1 -1.343271e+00 1.382271e+00 -3.150366 2.045406e-03 7.389132e-03
## CASP6 1.342540e+00 6.602254e+00 3.956765 1.272284e-04 9.212023e-04
## CNTLN 1.342033e+00 4.327969e+00 3.074210 2.597674e-03 8.932564e-03
## C8orf82 -1.340735e+00 2.961072e+00 -3.181416 1.853270e-03 6.840891e-03
## ABRAXAS1 1.340314e+00 7.843159e+00 2.462811 1.516182e-02 3.641181e-02
## ENO3 -1.339098e+00 3.130735e+00 -2.872031 4.800655e-03 1.452814e-02
## CBY1 -1.337621e+00 4.702091e+00 -4.089982 7.716497e-05 6.417788e-04
## ANKS3 -1.336673e+00 2.066478e+00 -3.765296 2.559206e-04 1.539930e-03
## C8orf58 -1.336438e+00 6.774849e+00 -2.329658 2.144553e-02 4.802569e-02
## SYTL4 1.334237e+00 3.325325e+00 2.966434 3.617246e-03 1.159161e-02
## FBXW9 -1.333646e+00 1.491701e+00 -3.946781 1.320270e-04 9.432772e-04
## E2F5 1.332115e+00 2.769126e+00 3.290775 1.302213e-03 5.179159e-03
## PHYH -1.329659e+00 3.697303e+00 -4.736733 5.852077e-06 1.022174e-04
## OTUD3 1.329456e+00 4.521405e+00 3.258543 1.446217e-03 5.622857e-03
## ZFP64 -1.328117e+00 3.132364e+00 -2.939633 3.922521e-03 1.236164e-02
## FAM189B -1.326429e+00 6.273706e+00 -2.429668 1.654958e-02 3.903700e-02
## MIEF2 -1.324531e+00 4.339859e+00 -4.083356 7.912903e-05 6.530761e-04
## ANXA9 1.322745e+00 4.519119e+00 2.907523 4.319362e-03 1.338235e-02
## SMIM4 -1.322075e+00 2.872167e+00 -3.215718 1.660593e-03 6.280175e-03
## SMIM13 1.321367e+00 5.972887e+00 4.358138 2.728409e-05 3.026332e-04
## WNT10B -1.320098e+00 2.295194e+00 -3.327854 1.153154e-03 4.752054e-03
## PARD3 1.319041e+00 3.609685e+00 2.680873 8.344953e-03 2.244244e-02
## FADS3 -1.315369e+00 3.447368e+00 -3.377610 9.781093e-04 4.181477e-03
## EPS8L2 -1.314421e+00 2.161680e+00 -3.089235 2.478844e-03 8.587991e-03
## MBTPS2 1.309192e+00 3.748538e+00 4.014830 1.024530e-04 7.866765e-04
## PCBD1 -1.308101e+00 4.670637e+00 -3.434325 8.090527e-04 3.611079e-03
## SLC25A51 1.307574e+00 3.039906e+00 2.721882 7.428631e-03 2.045115e-02
## ACO1 1.304238e+00 5.432511e+00 3.069798 2.633559e-03 9.035072e-03
## GAMT -1.304056e+00 1.547255e+00 -3.274054 1.375156e-03 5.412995e-03
## LRRC23 -1.301633e+00 2.637460e+00 -3.785710 2.378134e-04 1.463657e-03
## ZMYND19 -1.300446e+00 3.781144e+00 -2.745358 6.946162e-03 1.940214e-02
## ERCC4 1.300227e+00 4.003893e+00 3.438942 7.965719e-04 3.575830e-03
## BICRA -1.299699e+00 5.170974e+00 -2.790061 6.105430e-03 1.752393e-02
## MPP5 1.298492e+00 4.875689e+00 3.452099 7.619942e-04 3.457250e-03
## KMT5C -1.297751e+00 2.773191e+00 -3.605338 4.504914e-04 2.336173e-03
## C11orf49 -1.297736e+00 3.427721e+00 -4.148227 6.179659e-05 5.519953e-04
## CCDC9B 1.295923e+00 3.939992e+00 2.904658 4.356506e-03 1.346226e-02
## PGAP1 1.293773e+00 2.596372e+00 3.012636 3.141845e-03 1.037080e-02
## POLR3A 1.293611e+00 9.810883e+00 2.404465 1.767934e-02 4.130753e-02
## AMMECR1 1.292481e+00 5.085063e+00 3.056504 2.744474e-03 9.326493e-03
## BTBD3 1.290379e+00 4.210206e+00 2.794093 6.034347e-03 1.736229e-02
## MTRES1 -1.289904e+00 4.660758e+00 -3.610310 4.427561e-04 2.304119e-03
## RNF8 1.287774e+00 8.267978e+00 2.320634 2.194460e-02 4.889404e-02
## NOP16 -1.286600e+00 6.223517e+00 -2.345773 2.057918e-02 4.645778e-02
## UBE2E2 -1.284073e+00 5.685146e+00 -2.970005 3.578263e-03 1.149464e-02
## ZNF668 -1.283375e+00 1.976076e+00 -3.561686 5.241030e-04 2.609514e-03
## CENPA 1.281544e+00 1.450877e+00 3.705428 3.168708e-04 1.796409e-03
## GALE -1.281076e+00 6.604650e+00 -2.401006 1.783960e-02 4.156731e-02
## GID4 1.280549e+00 1.111266e+01 2.529941 1.266459e-02 3.148229e-02
## GEMIN5 1.277689e+00 6.379240e+00 2.672961 8.533084e-03 2.284478e-02
## CCNE1 1.275812e+00 1.938149e+00 4.246164 4.233917e-05 4.195009e-04
## ZSWIM9 -1.275458e+00 4.628154e+00 -3.423538 8.389298e-04 3.716738e-03
## BMP8B 1.275418e+00 2.344230e+00 4.794090 4.602409e-06 8.638814e-05
## GOT1 1.275409e+00 6.205814e+00 2.536176 1.245248e-02 3.105264e-02
## LANCL3 1.273653e+00 2.256862e+00 4.576626 1.133353e-05 1.667855e-04
## ATAD5 1.269964e+00 2.339838e+00 5.335746 4.376682e-07 1.632310e-05
## C1orf112 1.268806e+00 4.741065e+00 5.048264 1.554317e-06 3.964344e-05
## TMEM8B -1.265684e+00 2.113129e+00 -4.345882 2.863886e-05 3.107565e-04
## SIMC1 1.264462e+00 5.006946e+00 3.597561 4.628474e-04 2.379441e-03
## BAIAP2 -1.255822e+00 3.930960e+00 -2.522307 1.292871e-02 3.206492e-02
## CCDC153 -1.255773e+00 1.783605e+00 -4.127979 6.677284e-05 5.805909e-04
## PBLD 1.253542e+00 3.704078e+00 3.754978 2.655633e-04 1.579529e-03
## C1orf159 -1.253371e+00 1.311305e+00 -4.040282 9.311168e-05 7.352227e-04
## SSPN 1.252756e+00 2.199426e+00 2.725394 7.354582e-03 2.028968e-02
## COG8 1.252375e+00 1.378825e+01 3.033872 2.943286e-03 9.835834e-03
## ACOT11 1.251538e+00 6.939236e+00 2.753357 6.788399e-03 1.904733e-02
## NOM1 1.251013e+00 7.310789e+00 2.452511 1.558154e-02 3.717503e-02
## ANKRD36B 1.246371e+00 3.478468e+00 3.270828 1.389663e-03 5.453805e-03
## GRPEL2 1.243847e+00 9.412169e+00 2.456859 1.540310e-02 3.681681e-02
## KBTBD3 -1.243280e+00 4.509391e+00 -3.395703 9.208775e-04 4.003522e-03
## DCLRE1B 1.240065e+00 7.472998e+00 2.420872 1.693635e-02 3.981470e-02
## TBP 1.236290e+00 9.441433e+00 3.471519 7.135230e-04 3.284851e-03
## ZNF697 1.233805e+00 3.507411e+00 2.692544 8.074279e-03 2.187522e-02
## DNAJC27 1.233723e+00 3.945380e+00 3.119350 2.255671e-03 7.978604e-03
## ATP9B -1.232599e+00 6.902785e+00 -2.347489 2.048876e-02 4.636457e-02
## NCR1 1.231713e+00 2.678526e+00 3.338007 1.115213e-03 4.621391e-03
## RHBDD3 -1.227674e+00 1.742790e+00 -3.898968 1.575017e-04 1.074163e-03
## INCENP 1.226599e+00 2.695294e+00 4.587076 1.085976e-05 1.624170e-04
## RPP25 -1.224571e+00 2.577725e+00 -2.866910 4.874019e-03 1.470513e-02
## BORA 1.222712e+00 5.074057e+00 3.027482 3.001785e-03 9.991909e-03
## RBBP9 1.221557e+00 5.171973e+00 3.118528 2.261501e-03 7.992075e-03
## CCDC77 -1.221348e+00 6.643483e+00 -3.836992 1.975401e-04 1.279772e-03
## RORC -1.220321e+00 2.441038e+00 -2.698503 7.939160e-03 2.157618e-02
## BRICD5 -1.217413e+00 1.341393e+00 -4.303394 3.385432e-05 3.551893e-04
## C16orf86 -1.215855e+00 1.445341e+00 -3.804757 2.220211e-04 1.393212e-03
## CDC42BPA 1.211404e+00 1.982018e+00 4.861155 3.467587e-06 7.042052e-05
## SUV39H2 1.210212e+00 2.070052e+00 6.634178 9.127030e-10 2.706164e-07
## FRMD4A 1.208100e+00 3.503061e+00 2.660947 8.826117e-03 2.345547e-02
## WDR53 -1.206648e+00 1.146513e+01 -2.335053 2.115201e-02 4.751190e-02
## AK9 1.205599e+00 4.325557e+00 2.904893 4.353454e-03 1.345634e-02
## FDX2 -1.205065e+00 2.842168e+00 -2.680780 8.347144e-03 2.244324e-02
## TFAP4 -1.202949e+00 1.811167e+00 -5.270772 5.848901e-07 1.959547e-05
## RYR1 -1.198147e+00 1.546502e+00 -4.362883 2.677642e-05 2.990286e-04
## BAMBI 1.197710e+00 1.766533e+00 3.645705 3.912097e-04 2.101334e-03
## DPY19L4 1.197002e+00 4.967538e+00 2.734929 7.156869e-03 1.986437e-02
## UBE2D4 -1.196444e+00 5.316323e+00 -2.577992 1.111037e-02 2.822209e-02
## MOCS2 1.195394e+00 9.137600e+00 2.435576 1.629422e-02 3.854197e-02
## NEIL2 -1.194583e+00 4.264154e+00 -2.739866 7.056403e-03 1.963607e-02
## PINX1 -1.191643e+00 4.533616e+00 -2.348635 2.042861e-02 4.625493e-02
## PCDHA4 1.191542e+00 4.803577e+00 2.751758 6.819661e-03 1.910729e-02
## DNAJC30 -1.191542e+00 2.862615e+00 -3.270156 1.392703e-03 5.462124e-03
## TRIM68 1.191433e+00 6.333891e+00 2.912640 4.253747e-03 1.319975e-02
## PRR12 -1.185119e+00 4.883483e+00 -2.808349 5.789056e-03 1.683624e-02
## CEP57L1 1.182709e+00 3.212878e+00 6.497625 1.800409e-09 3.882337e-07
## MRPL57 -1.179903e+00 6.744878e+00 -2.352139 2.024555e-02 4.591933e-02
## PERP 1.177019e+00 2.418782e+00 2.569530 1.137096e-02 2.870573e-02
## RAD18 1.175520e+00 5.186807e+00 3.570711 5.080094e-04 2.559470e-03
## SCARB1 -1.174293e+00 3.578753e+00 -3.344562 1.091342e-03 4.554299e-03
## DNAJB4 1.166821e+00 3.413015e+00 3.834948 1.990128e-04 1.286964e-03
## CKB -1.165913e+00 1.329976e+00 -2.595694 1.058248e-02 2.718393e-02
## TAF5 1.163667e+00 6.139433e+00 5.023449 1.730652e-06 4.285081e-05
## ZW10 1.163314e+00 7.974917e+00 2.700672 7.890500e-03 2.146361e-02
## FBXW8 1.163182e+00 3.216289e+00 2.851587 5.099708e-03 1.526568e-02
## ENDOV -1.162865e+00 1.723702e+00 -4.872617 3.302987e-06 6.824639e-05
## TM7SF2 -1.162527e+00 2.276657e+00 -2.661699 8.807523e-03 2.341565e-02
## PRMT9 1.160509e+00 6.298467e+00 2.442264 1.600939e-02 3.801487e-02
## UPF3B 1.158767e+00 8.109281e+00 3.522934 5.988227e-04 2.875319e-03
## NAV1 1.157316e+00 2.520998e+00 3.129499 2.184757e-03 7.769482e-03
## PNMA3 -1.154314e+00 1.748211e+00 -2.812335 5.722125e-03 1.669070e-02
## CHRNE -1.150186e+00 2.193163e+00 -2.655196 8.969590e-03 2.377192e-02
## CCDC142 -1.149067e+00 6.586726e+00 -3.530561 5.833647e-04 2.821658e-03
## KIF18B 1.148334e+00 2.002096e+00 4.394575 2.361111e-05 2.753469e-04
## TNNC2 -1.145315e+00 1.436843e+00 -4.086537 7.818028e-05 6.470468e-04
## FKBP14 1.143560e+00 2.738380e+00 5.291366 5.336485e-07 1.861492e-05
## USP31 1.142258e+00 4.433027e+00 3.761052 2.598462e-04 1.554728e-03
## ZGRF1 1.141826e+00 2.908208e+00 4.272454 3.821463e-05 3.856928e-04
## KATNAL1 1.139628e+00 3.879421e+00 4.180391 5.461498e-05 5.080264e-04
## ZNF629 -1.139212e+00 3.616183e+00 -3.341107 1.103864e-03 4.587186e-03
## MON1A -1.137060e+00 3.209275e+00 -2.599233 1.047971e-02 2.696666e-02
## PRIM2 1.135465e+00 5.037376e+00 4.363487 2.671241e-05 2.990286e-04
## ARV1 1.135109e+00 7.050759e+00 3.065975 2.665022e-03 9.121836e-03
## MREG 1.134078e+00 3.418508e+00 3.487283 6.763265e-04 3.157965e-03
## MTERF2 -1.133100e+00 4.866048e+00 -3.063944 2.681882e-03 9.154701e-03
## FAM122C 1.132686e+00 3.209902e+00 4.697082 6.901986e-06 1.143262e-04
## ZNF175 1.132415e+00 5.446901e+00 2.486679 1.422764e-02 3.466307e-02
## CA11 -1.131162e+00 2.080973e+00 -2.964397 3.639656e-03 1.164454e-02
## DNAL1 1.131111e+00 6.766036e+00 3.442929 7.859405e-04 3.536136e-03
## ZNF383 -1.131102e+00 7.555948e+00 -3.013246 3.135979e-03 1.035432e-02
## GON7 -1.130731e+00 7.016080e+00 -3.132731 2.162614e-03 7.704595e-03
## RRS1 -1.128569e+00 4.683742e+00 -3.104095 2.366281e-03 8.273612e-03
## MED19 -1.126015e+00 5.387049e+00 -2.922203 4.133577e-03 1.290451e-02
## EFCAB7 1.125710e+00 3.072523e+00 3.263905 1.421273e-03 5.541190e-03
## POLE2 1.125126e+00 1.416959e+00 5.087233 1.312127e-06 3.505274e-05
## SPIN4 1.124156e+00 2.247519e+00 4.394620 2.360684e-05 2.753469e-04
## GNPNAT1 1.119389e+00 6.601890e+00 2.381081 1.878819e-02 4.337313e-02
## PARD6A -1.112601e+00 2.308288e+00 -2.814281 5.689704e-03 1.661811e-02
## WASL 1.111356e+00 5.664260e+00 3.349327 1.074292e-03 4.491046e-03
## ALDH6A1 1.109250e+00 8.584034e+00 2.809491 5.769809e-03 1.680499e-02
## LCORL 1.109049e+00 6.693662e+00 2.323488 2.178570e-02 4.858563e-02
## SEMA3E -1.109020e+00 1.539377e+00 -3.814833 2.140751e-04 1.357717e-03
## SLC27A5 -1.108679e+00 1.237225e+00 -3.198059 1.757328e-03 6.572661e-03
## MFSD3 -1.107543e+00 1.270886e+00 -3.272001 1.384371e-03 5.440240e-03
## DSCC1 1.107302e+00 1.277179e+00 5.643465 1.079298e-07 6.464886e-06
## C11orf71 -1.105268e+00 8.395453e+00 -2.373724 1.914953e-02 4.400569e-02
## E2F6 1.100942e+00 6.140207e+00 3.925766 1.426984e-04 1.000239e-03
## FBXO22 1.099962e+00 1.132537e+01 2.551814 1.193442e-02 2.991392e-02
## MMS22L 1.099151e+00 3.994012e+00 3.470291 7.165011e-04 3.293683e-03
## MVK -1.097426e+00 3.331573e+00 -2.760736 6.645743e-03 1.877503e-02
## ACBD7 1.096852e+00 2.422620e+00 2.458538 1.533471e-02 3.670426e-02
## NDUFAF2 -1.094443e+00 4.506628e+00 -2.675691 8.467748e-03 2.270069e-02
## SYNM 1.094199e+00 3.136887e+00 2.438518 1.616838e-02 3.829777e-02
## BTBD8 1.093165e+00 3.132139e+00 2.318398 2.206982e-02 4.907831e-02
## COA7 1.092422e+00 5.340126e+00 3.380302 9.693889e-04 4.149155e-03
## CIT 1.092239e+00 1.329366e+00 4.347976 2.840287e-05 3.093754e-04
## SERPINF1 -1.089672e+00 3.423952e+00 -2.414827 1.720681e-02 4.034653e-02
## LZTFL1 1.088005e+00 6.559705e+00 2.322006 2.186809e-02 4.874187e-02
## TEX10 1.087755e+00 6.772992e+00 2.945852 3.849639e-03 1.217658e-02
## FGFRL1 -1.087672e+00 3.056748e+00 -2.542625 1.223643e-02 3.057819e-02
## NECAB3 -1.085490e+00 2.165013e+00 -3.223234 1.620946e-03 6.155753e-03
## SLFN14 1.081509e+00 3.494918e+00 2.390408 1.833872e-02 4.250482e-02
## HARBI1 1.080813e+00 4.396917e+00 4.091378 7.675730e-05 6.392848e-04
## C19orf47 -1.079118e+00 5.208254e+00 -2.841193 5.258195e-03 1.561788e-02
## BRIP1 1.076845e+00 2.504174e+00 4.861411 3.463826e-06 7.042052e-05
## NR1D1 -1.075565e+00 1.989791e+00 -3.277111 1.361544e-03 5.368321e-03
## BNIPL 1.075441e+00 2.612308e+00 3.016211 3.107576e-03 1.027771e-02
## ZNF576 -1.075410e+00 6.341939e+00 -2.722234 7.421191e-03 2.043541e-02
## DTX1 -1.072169e+00 2.220793e+00 -2.695074 8.016650e-03 2.175234e-02
## FANCL 1.071740e+00 2.872283e+00 4.276256 3.765115e-05 3.836277e-04
## FOXP3 -1.068664e+00 1.938904e+00 -2.424597 1.677161e-02 3.947437e-02
## HAUS8 -1.067005e+00 5.389528e+00 -2.354740 2.011061e-02 4.567442e-02
## ZKSCAN3 1.066937e+00 4.269976e+00 4.460043 1.817375e-05 2.295427e-04
## TMEM135 1.065090e+00 5.174368e+00 2.585572 1.088150e-02 2.777758e-02
## FANCM 1.063678e+00 2.828959e+00 4.126810 6.707154e-05 5.823342e-04
## SLC2A8 -1.060060e+00 1.523039e+00 -3.416109 8.601043e-04 3.790723e-03
## TMEM38B 1.059799e+00 3.900253e+00 3.923109 1.441044e-04 1.008306e-03
## MCC 1.058278e+00 3.368672e+00 2.457168 1.539049e-02 3.680806e-02
## PTPRS -1.058162e+00 1.541531e+00 -3.485720 6.799299e-04 3.171045e-03
## CSPP1 1.056971e+00 4.377968e+00 3.252914 1.472841e-03 5.708464e-03
## ZNF764 -1.056006e+00 4.090278e+00 -4.376005 2.541917e-05 2.904348e-04
## GPATCH1 1.055525e+00 6.017622e+00 2.869136 4.842008e-03 1.463088e-02
## KRBA1 -1.053160e+00 2.329323e+00 -3.950930 1.300121e-04 9.339454e-04
## ABCC6 1.051694e+00 3.504481e+00 2.929151 4.048222e-03 1.267809e-02
## SLC25A17 1.049672e+00 7.619363e+00 2.620478 9.881346e-03 2.572273e-02
## MLYCD -1.049027e+00 6.967407e+00 -2.884023 4.632798e-03 1.411742e-02
## MPV17L 1.048282e+00 3.473934e+00 3.162465 1.968439e-03 7.165648e-03
## LIMS2 -1.045753e+00 1.200250e+00 -3.302029 1.255169e-03 5.044495e-03
## RUFY2 1.043119e+00 5.046102e+00 3.109339 2.327703e-03 8.157965e-03
## MRM1 -1.041328e+00 2.091572e+00 -3.301732 1.256391e-03 5.047694e-03
## RAI1 -1.040533e+00 2.227215e+00 -4.454275 1.859953e-05 2.336763e-04
## ZFYVE28 -1.038742e+00 2.388811e+00 -2.880006 4.688417e-03 1.425394e-02
## AEBP1 -1.034175e+00 1.780795e+00 -2.700776 7.888156e-03 2.146216e-02
## PRICKLE3 -1.033208e+00 3.878913e+00 -4.358836 2.720888e-05 3.024343e-04
## LTO1 -1.031493e+00 9.091057e+00 -2.530148 1.265749e-02 3.147125e-02
## PEMT -1.029736e+00 1.908379e+00 -3.588838 4.770872e-04 2.439955e-03
## PHETA2 -1.028369e+00 4.191451e+00 -2.909393 4.295287e-03 1.331472e-02
## GPAM 1.027566e+00 3.870907e+00 3.063864 2.682547e-03 9.154701e-03
## ZGLP1 -1.026686e+00 2.340164e+00 -2.534673 1.250332e-02 3.115979e-02
## PHLPP2 1.026062e+00 3.143928e+00 2.639310 9.376925e-03 2.463130e-02
## PORCN -1.025775e+00 4.422878e+00 -2.331119 2.136573e-02 4.789218e-02
## CHAF1A 1.023894e+00 6.383250e+00 2.317090 2.214341e-02 4.920758e-02
## GOLGA8H 1.017530e+00 3.468855e+00 2.462650 1.516827e-02 3.641181e-02
## GTPBP3 -1.013630e+00 3.047540e+00 -2.580398 1.103726e-02 2.809053e-02
## APOOL 1.012054e+00 5.427433e+00 2.487920 1.418048e-02 3.457657e-02
## ZNF714 1.010331e+00 3.046234e+00 3.775532 2.466836e-04 1.499666e-03
## CENPM 1.007101e+00 1.562284e+00 2.372177 1.922631e-02 4.414111e-02
## IFNLR1 1.005037e+00 5.060651e+00 2.790509 6.097484e-03 1.751421e-02
## BBS7 1.003530e+00 4.894015e+00 2.760224 6.655554e-03 1.878954e-02
## LDAH 1.003381e+00 6.194975e+00 2.315108 2.225526e-02 4.942835e-02
## SLC2A13 9.984365e-01 2.540598e+00 4.020103 1.004471e-04 7.766646e-04
## INVS 9.959059e-01 4.965375e+00 3.482183 6.881544e-04 3.200593e-03
## NFS1 9.949888e-01 1.025568e+01 2.579993 1.104953e-02 2.810970e-02
## FUT11 9.940441e-01 3.035451e+00 2.756778 6.721922e-03 1.890491e-02
## ZBTB32 9.892075e-01 1.441802e+00 2.367744 1.944783e-02 4.452726e-02
## ZNF71 -9.879380e-01 3.016998e+00 -3.301160 1.258743e-03 5.054099e-03
## ANKRD26 9.867942e-01 2.666260e+00 3.627924 4.163505e-04 2.202461e-03
## STON1 9.862770e-01 1.746819e+00 4.662867 7.952646e-06 1.276297e-04
## BAG2 9.855803e-01 3.437048e+00 4.338573 2.947732e-05 3.175304e-04
## ACVR2A -9.853783e-01 3.539209e+00 -2.377745 1.895127e-02 4.360925e-02
## PPP1R32 -9.850973e-01 1.814344e+00 -4.679161 7.434318e-06 1.209479e-04
## CCNJ 9.842164e-01 3.942130e+00 2.699632 7.913802e-03 2.152206e-02
## ORC6 9.835262e-01 1.587685e+00 4.838660 3.814046e-06 7.558984e-05
## TNK1 -9.826121e-01 1.346362e+00 -3.372115 9.961395e-04 4.246662e-03
## MOB3B 9.798445e-01 2.925225e+00 3.175250 1.890037e-03 6.944190e-03
## LRRCC1 9.797395e-01 3.115080e+00 3.166644 1.942487e-03 7.095557e-03
## SHISAL2A -9.767651e-01 1.921058e+00 -2.483126 1.436337e-02 3.494477e-02
## CHAF1B 9.746098e-01 3.494046e+00 3.878794 1.695992e-04 1.138950e-03
## PNPLA7 -9.716571e-01 1.013381e+00 -4.010946 1.039548e-04 7.938852e-04
## TIPIN 9.693773e-01 2.310445e+00 4.674590 7.576339e-06 1.225858e-04
## FZD2 -9.684145e-01 2.146637e+00 -3.174255 1.896031e-03 6.957591e-03
## CCDC30 9.678703e-01 2.899017e+00 3.390321 9.375663e-04 4.053786e-03
## PDE6G -9.638457e-01 1.858678e+00 -3.536058 5.724601e-04 2.781737e-03
## GCM1 9.630436e-01 2.442605e+00 2.362777 1.969866e-02 4.497999e-02
## NEMP2 9.584984e-01 4.109036e+00 3.091148 2.464079e-03 8.542526e-03
## IER5L -9.579302e-01 9.050714e-01 -6.701131 6.526684e-10 2.092067e-07
## MITF 9.568435e-01 3.186825e+00 3.030589 2.973203e-03 9.913462e-03
## DOCK7 9.548840e-01 2.774259e+00 2.899489 4.424269e-03 1.361844e-02
## TADA1 9.539288e-01 6.346924e+00 2.396762 1.803801e-02 4.192256e-02
## USP45 9.521519e-01 3.448391e+00 2.604887 1.031737e-02 2.660665e-02
## DOLK -9.515446e-01 4.295139e+00 -2.782294 6.244502e-03 1.784143e-02
## GSTO2 9.511597e-01 2.164190e+00 2.380890 1.879746e-02 4.337313e-02
## LMF1 -9.495369e-01 2.269577e+00 -2.985391 3.414702e-03 1.107219e-02
## MAP4K3 9.486312e-01 3.646618e+00 2.532804 1.256678e-02 3.129819e-02
## DECR2 -9.479034e-01 1.056399e+00 -4.742684 5.708490e-06 1.005977e-04
## ZNF777 -9.474122e-01 3.357228e+00 -2.800696 5.919589e-03 1.712767e-02
## FAM104B -9.467583e-01 5.192011e+00 -2.764326 6.577335e-03 1.861787e-02
## ANKRD39 -9.466845e-01 2.196243e+00 -2.757837 6.701456e-03 1.886524e-02
## CTU2 -9.461355e-01 2.152264e+00 -3.042165 2.868943e-03 9.652672e-03
## ERI2 9.455921e-01 3.443466e+00 3.598264 4.617172e-04 2.375690e-03
## MZF1 -9.451871e-01 2.037143e+00 -4.419997 2.133559e-05 2.563730e-04
## PDCL 9.428862e-01 1.126053e+01 2.347406 2.049316e-02 4.636568e-02
## PCBP3 -9.421201e-01 1.923354e+00 -2.545081 1.215505e-02 3.040685e-02
## SGO1 9.416645e-01 1.233835e+00 5.398493 3.301438e-07 1.343528e-05
## CENPQ 9.414526e-01 3.905702e+00 2.610794 1.015016e-02 2.631276e-02
## SPSB1 9.401938e-01 2.543345e+00 3.936801 1.369964e-04 9.705960e-04
## UBAP2 9.387767e-01 6.711356e+00 2.395868 1.808003e-02 4.199553e-02
## MECR -9.368572e-01 2.993961e+00 -2.574412 1.121996e-02 2.842135e-02
## ZDHHC23 9.337657e-01 2.360267e+00 3.632297 4.100305e-04 2.175893e-03
## ZNF619 9.332759e-01 5.841133e+00 3.051175 2.790139e-03 9.449186e-03
## CEP131 -9.312123e-01 1.575724e+00 -4.171955 5.641701e-05 5.168480e-04
## GINS3 9.300601e-01 2.159317e+00 4.391036 2.394587e-05 2.778846e-04
## SFN -9.287514e-01 1.388447e+00 -3.068539 2.643885e-03 9.062564e-03
## CRYM 9.272702e-01 1.360570e+00 2.895597 4.475910e-03 1.374885e-02
## FNBP1L 9.262004e-01 2.346202e+00 3.156913 2.003417e-03 7.266216e-03
## GNB1L -9.240139e-01 8.240062e-01 -4.585446 1.093237e-05 1.626824e-04
## MPP6 9.229874e-01 2.802503e+00 2.892288 4.520264e-03 1.383171e-02
## ARHGAP32 9.225556e-01 2.544693e+00 3.243901 1.516427e-03 5.847627e-03
## ACVRL1 -9.206772e-01 2.229447e+00 -2.490670 1.407654e-02 3.440803e-02
## PROSER3 -9.162508e-01 6.664087e+00 -2.689545 8.143067e-03 2.201431e-02
## COL8A2 -9.151157e-01 2.827473e+00 -2.830090 5.432467e-03 1.601916e-02
## LSM11 9.143908e-01 3.490817e+00 3.610842 4.419369e-04 2.301876e-03
## RBM11 9.142290e-01 1.756431e+00 3.201976 1.735427e-03 6.505109e-03
## A1BG -9.128366e-01 1.011980e+00 -3.300211 1.262659e-03 5.064301e-03
## IKZF4 9.124718e-01 2.972551e+00 3.180258 1.860122e-03 6.859778e-03
## CCDC106 -9.114008e-01 1.103475e+00 -5.139476 1.044318e-06 3.028267e-05
## IZUMO4 -9.106617e-01 1.271574e+00 -3.888129 1.638955e-04 1.108843e-03
## PPP1R16A -9.103546e-01 1.630258e+00 -3.362848 1.027257e-03 4.344962e-03
## LIN9 9.077989e-01 1.900948e+00 5.033498 1.657019e-06 4.146044e-05
## GAN 9.068924e-01 3.963195e+00 3.162832 1.966147e-03 7.159504e-03
## OLFM2 -9.066210e-01 1.435571e+00 -3.696632 3.269100e-04 1.836643e-03
## CHST14 -9.065894e-01 4.590768e+00 -2.968164 3.598320e-03 1.154343e-02
## KLHL17 -9.027805e-01 1.517939e+00 -3.708016 3.139743e-04 1.783398e-03
## ZSCAN9 9.001733e-01 4.782326e+00 2.659435 8.863643e-03 2.352267e-02
## UACA 8.970509e-01 3.029000e+00 2.439204 1.613914e-02 3.825273e-02
## BIVM 8.965821e-01 3.791649e+00 2.675690 8.467780e-03 2.270069e-02
## MAB21L3 8.960579e-01 1.583380e+00 2.907422 4.320676e-03 1.338292e-02
## MARS2 8.899764e-01 3.196093e+00 2.753113 6.793168e-03 1.905558e-02
## KRBA2 8.869656e-01 5.176327e+00 3.567398 5.138625e-04 2.573653e-03
## LNX2 8.869400e-01 5.372403e+00 2.798819 5.951997e-03 1.719627e-02
## MORN3 -8.789370e-01 2.673827e+00 -2.838924 5.293385e-03 1.570667e-02
## LRP12 8.753893e-01 2.042920e+00 3.064132 2.680316e-03 9.153053e-03
## ANKS6 -8.729362e-01 2.548366e+00 -2.605552 1.029840e-02 2.657508e-02
## CHRNA10 -8.719219e-01 2.490098e+00 -3.065009 2.673033e-03 9.145167e-03
## MTHFD1L 8.715784e-01 2.951414e+00 2.791840 6.073980e-03 1.746361e-02
## ERCC6L 8.712347e-01 1.118754e+00 4.773308 5.021963e-06 9.205638e-05
## PTCD2 8.693627e-01 3.773746e+00 2.852178 5.090825e-03 1.524875e-02
## KIAA1586 8.685669e-01 4.083829e+00 3.175839 1.886494e-03 6.939769e-03
## RBM44 8.679147e-01 2.126454e+00 2.379179 1.888102e-02 4.348978e-02
## ZNF852 8.669373e-01 2.387923e+00 3.701535 3.212773e-04 1.812725e-03
## MND1 8.667384e-01 1.056202e+00 4.351843 2.797207e-05 3.071747e-04
## PIF1 8.660753e-01 1.555607e+00 2.874008 4.772610e-03 1.446171e-02
## FANCE 8.648441e-01 4.627691e+00 2.571373 1.131375e-02 2.860394e-02
## GCSH 8.609470e-01 2.159640e+00 3.127067 2.201559e-03 7.819855e-03
## CACNB1 -8.608509e-01 2.481048e+00 -3.218565 1.645470e-03 6.236904e-03
## LIPH 8.538450e-01 1.626697e+00 4.111071 7.121990e-05 6.062432e-04
## RDH10 8.442531e-01 4.159491e+00 4.077139 8.101520e-05 6.649414e-04
## PCGF6 8.428496e-01 3.656142e+00 3.855520 1.846543e-04 1.217343e-03
## TIMM23B 8.402354e-01 3.428654e+00 2.717201 7.528413e-03 2.065872e-02
## PDE6B -8.400477e-01 2.813572e+00 -2.551884 1.193213e-02 2.991392e-02
## PLK2 8.389754e-01 2.035528e+00 2.949579 3.806569e-03 1.207110e-02
## F12 -8.379809e-01 1.546974e+00 -2.992201 3.344519e-03 1.090324e-02
## ANKRD36C 8.378215e-01 1.395668e+00 4.421466 2.121074e-05 2.553902e-04
## TEC 8.360544e-01 4.397626e+00 2.531183 1.262206e-02 3.140290e-02
## C1orf109 8.334186e-01 3.256964e+00 2.895051 4.483199e-03 1.376335e-02
## PCOLCE -8.284255e-01 1.317475e+00 -4.196632 5.129973e-05 4.844067e-04
## MC1R -8.279548e-01 1.474273e+00 -3.327046 1.156224e-03 4.759265e-03
## RTTN 8.275770e-01 3.618170e+00 2.346508 2.054042e-02 4.643718e-02
## RWDD2B 8.257689e-01 4.272339e+00 2.538918 1.236020e-02 3.086147e-02
## TRMT10A 8.235362e-01 4.627912e+00 2.436965 1.623467e-02 3.841979e-02
## AK4 8.223933e-01 2.908255e+00 2.575755 1.117873e-02 2.833506e-02
## ERCC8 8.192928e-01 5.337944e+00 2.578398 1.109801e-02 2.820882e-02
## CTU1 -8.179706e-01 2.318572e+00 -2.457565 1.537431e-02 3.677952e-02
## STARD5 8.149139e-01 2.043127e+00 3.803072 2.233770e-04 1.398191e-03
## CCDC86 -8.119230e-01 3.068816e+00 -2.900375 4.412587e-03 1.359306e-02
## IL12RB2 8.105791e-01 1.931912e+00 2.756439 6.728472e-03 1.891884e-02
## CENPL 8.102473e-01 2.131621e+00 5.074417 1.387411e-06 3.640420e-05
## ZSCAN12 8.089447e-01 1.838900e+00 3.218446 1.646103e-03 6.237309e-03
## FUT10 8.040719e-01 1.775982e+00 3.230627 1.582808e-03 6.036046e-03
## TMEM97 8.036127e-01 1.949132e+00 3.870217 1.750066e-04 1.166055e-03
## ZNF653 -7.962150e-01 1.136965e+00 -3.999385 1.085508e-04 8.210540e-04
## XRCC2 7.960439e-01 1.202861e+00 5.618851 1.209087e-07 7.098898e-06
## ZNF219 -7.936119e-01 1.032236e+00 -4.368488 2.618836e-05 2.954849e-04
## WWC2 7.914165e-01 2.016655e+00 2.835208 5.351484e-03 1.583548e-02
## SHLD3 7.895175e-01 3.902340e+00 2.973409 3.541467e-03 1.139495e-02
## CEP76 7.893647e-01 2.212199e+00 4.716451 6.368149e-06 1.080490e-04
## GPX3 -7.869617e-01 2.657986e+00 -2.373327 1.916922e-02 4.404243e-02
## LRRC29 -7.865182e-01 1.152030e+00 -4.454408 1.858960e-05 2.336763e-04
## MTFR2 7.845698e-01 1.739175e+00 4.730716 6.000791e-06 1.032937e-04
## ZNF888 7.814421e-01 2.734716e+00 2.518879 1.304889e-02 3.229546e-02
## CCDC189 -7.792715e-01 1.440579e+00 -3.818804 2.110184e-04 1.343359e-03
## B3GLCT 7.655022e-01 3.320756e+00 3.152977 2.028563e-03 7.339463e-03
## POU5F1 7.654673e-01 2.925267e+00 2.562349 1.159639e-02 2.920026e-02
## CDH13 -7.648088e-01 1.223656e+00 -4.936474 2.515935e-06 5.640640e-05
## CABLES2 7.631372e-01 5.607016e+00 2.472645 1.477048e-02 3.567051e-02
## OIP5 7.586582e-01 1.118985e+00 3.417623 8.557498e-04 3.775741e-03
## CPLANE1 7.548619e-01 2.175872e+00 2.640831 9.337191e-03 2.453780e-02
## SHISA4 -7.519580e-01 1.411928e+00 -2.962497 3.660674e-03 1.169916e-02
## MKS1 -7.506451e-01 2.925463e+00 -2.475607 1.465441e-02 3.547512e-02
## PYCR3 -7.502486e-01 1.437874e+00 -2.369979 1.933584e-02 4.433933e-02
## TTLL1 -7.499826e-01 2.397822e+00 -2.988657 3.380877e-03 1.098854e-02
## PRX -7.490913e-01 1.646852e+00 -3.928580 1.412229e-04 9.910670e-04
## RSKR 7.464303e-01 3.583314e+00 2.719795 7.472969e-03 2.054937e-02
## HSD17B13 7.463068e-01 1.965186e+00 2.759423 6.670923e-03 1.881502e-02
## NEIL3 7.441375e-01 9.016860e-01 3.231679 1.577452e-03 6.019491e-03
## FSCN1 -7.436657e-01 1.136395e+00 -4.503656 1.524475e-05 2.054576e-04
## ZNF578 -7.393818e-01 1.902252e+00 -3.635773 4.050702e-04 2.156253e-03
## FBXO10 7.359710e-01 2.625028e+00 2.833293 5.381656e-03 1.590096e-02
## IL23A -7.311202e-01 1.405165e+00 -3.264409 1.418949e-03 5.535468e-03
## MAP3K21 7.303169e-01 1.711377e+00 3.736145 2.840586e-04 1.662950e-03
## SERPINF2 -7.284078e-01 1.182672e+00 -3.430065 8.207310e-04 3.652484e-03
## PLAG1 7.277252e-01 2.677675e+00 2.757993 6.698449e-03 1.886126e-02
## CEP83 7.269469e-01 2.951110e+00 3.363928 1.023585e-03 4.333019e-03
## MANEAL -7.266902e-01 1.880665e+00 -3.589338 4.762592e-04 2.436771e-03
## SRFBP1 7.258797e-01 3.240072e+00 2.440721 1.607471e-02 3.814446e-02
## FAM86B1 -7.247446e-01 2.181992e+00 -2.502631 1.363228e-02 3.348082e-02
## C6orf226 -7.244898e-01 9.471067e-01 -4.633550 8.974630e-06 1.405860e-04
## NAGS -7.244241e-01 9.556516e-01 -6.080620 1.376272e-08 1.584718e-06
## MORN2 -7.236311e-01 1.565137e+00 -4.413384 2.190628e-05 2.614660e-04
## ZNF568 -7.228593e-01 2.682268e+00 -3.273882 1.375928e-03 5.414234e-03
## PEX10 -7.216202e-01 2.277136e+00 -3.545241 5.546688e-04 2.714631e-03
## C10orf143 -7.204256e-01 1.522015e+00 -3.382622 9.619308e-04 4.129026e-03
## SOX12 -7.190176e-01 2.236598e+00 -2.481123 1.444037e-02 3.508691e-02
## TRPM4 -7.131990e-01 7.660720e-01 -4.371995 2.582673e-05 2.933635e-04
## SLIT1 7.117029e-01 2.047054e+00 2.404526 1.767653e-02 4.130753e-02
## FBXL8 -7.072250e-01 6.848887e-01 -3.374350 9.887677e-04 4.218268e-03
## EIF5A2 7.038046e-01 4.360189e+00 2.787748 6.146537e-03 1.760820e-02
## ZNF232 -6.981446e-01 3.774050e+00 -2.333474 2.123756e-02 4.764992e-02
## ZNF74 -6.974994e-01 2.627838e+00 -2.365295 1.957113e-02 4.474047e-02
## ST8SIA6 6.972786e-01 1.627960e+00 2.795087 6.016953e-03 1.733639e-02
## CHCHD6 -6.881126e-01 8.816320e-01 -3.465094 7.292297e-04 3.340542e-03
## LRFN4 -6.874316e-01 9.580936e-01 -3.403284 8.978458e-04 3.918900e-03
## UNC5A -6.873141e-01 8.168418e-01 -3.589416 4.761304e-04 2.436771e-03
## CCDC13 -6.861365e-01 1.952256e+00 -3.093507 2.445987e-03 8.494700e-03
## NANP 6.849989e-01 2.393846e+00 4.326450 3.092024e-05 3.297788e-04
## PCDH12 -6.832720e-01 1.708182e+00 -3.690877 3.336395e-04 1.870021e-03
## KLHL26 -6.816698e-01 3.219880e+00 -3.094549 2.438028e-03 8.479476e-03
## SCUBE1 -6.799317e-01 1.213141e+00 -4.426994 2.074732e-05 2.518559e-04
## GPRIN1 6.795424e-01 2.205504e+00 2.815453 5.670253e-03 1.657201e-02
## ALG10 6.762840e-01 1.896770e+00 5.041738 1.598920e-06 4.043324e-05
## AP1S3 6.752474e-01 2.740719e+00 3.556565 5.334462e-04 2.642720e-03
## ME3 -6.748167e-01 1.309368e+00 -3.155603 2.011754e-03 7.289764e-03
## MLLT11 6.722753e-01 2.757407e+00 3.034819 2.934706e-03 9.809926e-03
## MAMDC4 -6.722639e-01 8.934200e-01 -3.563454 5.209126e-04 2.599866e-03
## ZBTB46 -6.718424e-01 1.175160e+00 -4.019906 1.005211e-04 7.766646e-04
## SPIN2B -6.705666e-01 2.680894e+00 -2.396254 1.806189e-02 4.196984e-02
## BMP1 -6.698019e-01 1.842075e+00 -2.808578 5.785190e-03 1.682913e-02
## THAP2 6.656641e-01 3.164721e+00 2.356320 2.002903e-02 4.552402e-02
## RFXAP 6.612832e-01 3.263114e+00 2.832768 5.389952e-03 1.592150e-02
## PAWR 6.559517e-01 2.197997e+00 3.394568 9.243724e-04 4.012832e-03
## MAP3K10 -6.534295e-01 2.064994e+00 -2.616027 1.000410e-02 2.599662e-02
## EME1 6.532455e-01 8.328714e-01 4.968674 2.191490e-06 5.066485e-05
## RAD54B 6.525856e-01 1.374293e+00 4.541659 1.306859e-05 1.838594e-04
## TMPRSS13 -6.520505e-01 1.618883e+00 -3.000763 3.258177e-03 1.066869e-02
## NUDT17 -6.516413e-01 2.127483e+00 -3.383642 9.586688e-04 4.119497e-03
## DHODH -6.515199e-01 3.417780e+00 -2.381391 1.877307e-02 4.337313e-02
## C18orf54 6.489604e-01 1.642474e+00 4.508220 1.496600e-05 2.027904e-04
## TRIM46 -6.481904e-01 1.150601e+00 -3.121117 2.243168e-03 7.941851e-03
## RGS16 6.456392e-01 1.018245e+00 3.005627 3.210049e-03 1.054981e-02
## PAK4 -6.429621e-01 2.334588e+00 -3.102034 2.381605e-03 8.319835e-03
## UNC13B 6.426358e-01 1.599115e+00 3.291101 1.300826e-03 5.175376e-03
## SLC38A6 -6.426252e-01 3.370163e+00 -2.526069 1.279793e-02 3.178710e-02
## PLXNA1 -6.401377e-01 1.748965e+00 -2.675804 8.465046e-03 2.270069e-02
## NPIPA8 6.400490e-01 1.905008e+00 2.814892 5.679547e-03 1.659508e-02
## GPT2 6.362548e-01 1.883708e+00 2.323129 2.180564e-02 4.861183e-02
## CARMIL1 6.355850e-01 1.526675e+00 2.949361 3.809073e-03 1.207258e-02
## FZD3 6.355390e-01 1.567895e+00 3.710368 3.113629e-04 1.772810e-03
## C7orf31 6.329131e-01 4.481170e+00 2.652934 9.026593e-03 2.388030e-02
## FGF11 -6.294691e-01 2.107552e+00 -2.500713 1.370267e-02 3.361888e-02
## SPTBN5 -6.263501e-01 1.637391e+00 -2.716693 7.539294e-03 2.067901e-02
## IL17RC -6.255253e-01 1.757813e+00 -2.402256 1.778154e-02 4.148085e-02
## FAM216A -6.255185e-01 2.930699e+00 -3.060632 2.709585e-03 9.229085e-03
## ZC3H12C 6.245655e-01 1.611875e+00 3.507232 6.318667e-04 2.991603e-03
## MTFR1 6.242063e-01 2.852083e+00 3.777546 2.449040e-04 1.492580e-03
## ELOVL3 6.234409e-01 1.462435e+00 2.622177 9.834867e-03 2.563550e-02
## LAMB3 -6.231755e-01 7.699130e-01 -2.345741 2.058087e-02 4.645778e-02
## PIGW 6.218244e-01 2.418164e+00 3.360992 1.033596e-03 4.368658e-03
## WDR62 6.182963e-01 9.978733e-01 3.563367 5.210693e-04 2.599866e-03
## DNAAF5 -6.161637e-01 3.015104e+00 -2.334117 2.120267e-02 4.758063e-02
## ATL1 6.156081e-01 1.615097e+00 3.685834 3.396443e-04 1.891165e-03
## NDFIP2 6.130206e-01 1.610832e+00 2.761929 6.622946e-03 1.872040e-02
## AKAP5 6.120162e-01 1.764332e+00 2.612311 1.010762e-02 2.621968e-02
## YAE1 -6.085705e-01 2.625677e+00 -2.794472 6.027713e-03 1.734741e-02
## MOCS3 -6.077961e-01 5.218685e+00 -2.386217 1.853950e-02 4.291150e-02
## POLR3B 6.067118e-01 3.886780e+00 2.947646 3.828854e-03 1.212880e-02
## FICD 6.062299e-01 2.978338e+00 2.489082 1.413648e-02 3.449766e-02
## URB2 6.053295e-01 2.695909e+00 2.518755 1.305327e-02 3.229955e-02
## GRAMD2B 6.019332e-01 1.933442e+00 3.021986 3.052949e-03 1.013378e-02
## C3orf14 -5.984976e-01 1.314562e+00 -3.333736 1.131030e-03 4.673875e-03
## KRT18 -5.978000e-01 1.647307e+00 -2.592494 1.067620e-02 2.737724e-02
## SPATA33 -5.940616e-01 1.245432e+00 -2.851586 5.099714e-03 1.526568e-02
## EML6 5.917820e-01 1.241100e+00 3.515047 6.152115e-04 2.933670e-03
## TMEM53 -5.885594e-01 9.642774e-01 -4.558297 1.221325e-05 1.766453e-04
## REXO5 5.883587e-01 1.370325e+00 3.136368 2.137943e-03 7.646980e-03
## KIF24 5.879658e-01 8.539490e-01 4.917964 2.723068e-06 5.991759e-05
## PTK6 -5.876259e-01 1.471093e+00 -3.178710 1.869324e-03 6.887288e-03
## C21orf58 5.825989e-01 1.457600e+00 3.235709 1.557080e-03 5.959011e-03
## KCNA2 5.795013e-01 8.876496e-01 3.886318 1.649877e-04 1.114960e-03
## LMLN 5.790059e-01 1.771806e+00 3.338917 1.111870e-03 4.610762e-03
## BBOF1 5.787870e-01 1.678686e+00 2.579613 1.106104e-02 2.813295e-02
## ANO5 5.777433e-01 1.203212e+00 2.869593 4.835452e-03 1.461480e-02
## KCNQ5 5.762614e-01 1.012879e+00 4.489943 1.611274e-05 2.113906e-04
## ZCCHC4 5.751778e-01 3.306997e+00 2.745112 6.951064e-03 1.941126e-02
## KDM8 -5.743392e-01 2.048480e+00 -2.531519 1.261058e-02 3.138092e-02
## USP54 5.739886e-01 1.902972e+00 3.561291 5.248174e-04 2.611974e-03
## RIMS3 5.738125e-01 2.478128e+00 2.667638 8.661833e-03 2.310082e-02
## CCDC96 -5.722465e-01 1.130881e+00 -4.225634 4.585401e-05 4.453742e-04
## NPHP4 -5.717031e-01 3.062974e+00 -2.572729 1.127181e-02 2.852831e-02
## ZNF547 -5.702536e-01 1.212514e+00 -3.666604 3.634950e-04 1.993088e-03
## ZFP69 5.699865e-01 3.746610e+00 2.490521 1.408214e-02 3.441056e-02
## CATIP -5.695015e-01 5.528792e-01 -5.237856 6.769162e-07 2.175671e-05
## FZD5 5.658529e-01 1.647727e+00 2.358794 1.990188e-02 4.533057e-02
## CENPP 5.578146e-01 2.306867e+00 2.436932 1.623609e-02 3.841979e-02
## CALHM5 5.567674e-01 1.104768e+00 3.474115 7.072672e-04 3.271332e-03
## EPDR1 5.564881e-01 1.176926e+00 4.016591 1.017788e-04 7.838289e-04
## TDRKH 5.541263e-01 2.357464e+00 2.561086 1.163649e-02 2.927635e-02
## DAGLA -5.503238e-01 8.452911e-01 -3.767970 2.534761e-04 1.529886e-03
## B4GAT1 -5.455218e-01 1.598192e+00 -2.631870 9.573345e-03 2.505435e-02
## AFAP1L2 5.428669e-01 1.847041e+00 2.577013 1.114024e-02 2.827279e-02
## IL24 -5.423661e-01 1.157309e+00 -3.038831 2.898622e-03 9.724937e-03
## COMTD1 -5.412638e-01 7.595181e-01 -2.732427 7.208270e-03 1.998366e-02
## LDOC1 -5.402556e-01 1.071736e+00 -2.560315 1.166099e-02 2.932663e-02
## VSIG10L 5.400028e-01 1.199625e+00 2.448644 1.574177e-02 3.749697e-02
## ZNF606 -5.397546e-01 2.971470e+00 -2.705421 7.784866e-03 2.123959e-02
## PDE3A 5.368663e-01 1.338506e+00 2.501117 1.368782e-02 3.358939e-02
## PHLDB3 -5.364319e-01 9.218508e-01 -3.285171 1.326246e-03 5.255356e-03
## POLG2 -5.357603e-01 4.241741e+00 -2.383785 1.865689e-02 4.314109e-02
## PLEKHA5 5.338521e-01 2.092805e+00 2.419938 1.697790e-02 3.989654e-02
## PPM1J -5.328182e-01 8.856314e-01 -3.533191 5.781231e-04 2.800874e-03
## RHOBTB3 5.327751e-01 1.656373e+00 2.379046 1.888753e-02 4.349634e-02
## ZNF416 -5.284853e-01 2.795505e+00 -2.329244 2.146824e-02 4.805999e-02
## MFSD4B 5.280084e-01 3.108766e+00 2.570815 1.133104e-02 2.862325e-02
## PRTFDC1 5.269723e-01 1.277977e+00 2.586426 1.085598e-02 2.773064e-02
## TXLNB 5.256015e-01 1.520963e+00 2.386622 1.851998e-02 4.287467e-02
## NEGR1 5.254845e-01 2.112816e+00 2.848292 5.149471e-03 1.537581e-02
## SDR42E1 5.253850e-01 1.897883e+00 2.353459 2.017697e-02 4.579883e-02
## FAM185A 5.197039e-01 2.421610e+00 2.955753 3.736183e-03 1.189561e-02
## TMEM241 5.191342e-01 2.146202e+00 2.893913 4.498429e-03 1.379301e-02
## CA13 5.180249e-01 2.137345e+00 2.772615 6.421832e-03 1.826449e-02
## P3H4 -5.152617e-01 1.667944e+00 -2.381182 1.878324e-02 4.337313e-02
## RAB3A -5.123448e-01 8.812048e-01 -4.407125 2.246002e-05 2.669096e-04
## KCNMB4 -5.042680e-01 1.185359e+00 -3.315839 1.199610e-03 4.894179e-03
## RCCD1 5.039642e-01 2.116400e+00 2.405420 1.763531e-02 4.122901e-02
## GDPGP1 -5.028327e-01 2.245276e+00 -2.954899 3.745847e-03 1.191997e-02
## THAP9 5.002815e-01 2.111199e+00 2.934908 3.978734e-03 1.250339e-02
## CCDC80 4.988062e-01 8.918237e-01 3.243164 1.520044e-03 5.853113e-03
## HSPA4L 4.960779e-01 1.974137e+00 2.802849 5.882600e-03 1.704516e-02
## PLCE1 -4.960397e-01 1.467656e+00 -3.302982 1.251260e-03 5.034985e-03
## HYLS1 4.912161e-01 3.551171e+00 2.394029 1.816679e-02 4.216402e-02
## SPAG16 -4.893251e-01 1.090955e+00 -3.076028 2.583020e-03 8.889905e-03
## SLC6A4 4.874263e-01 2.218951e+00 2.402181 1.778500e-02 4.148085e-02
## TRAF3IP1 4.843004e-01 2.780169e+00 2.382057 1.874069e-02 4.330955e-02
## LRRC34 4.815374e-01 1.853664e+00 3.031417 2.965631e-03 9.893780e-03
## PPP1R3F -4.811791e-01 1.999511e+00 -3.322638 1.173111e-03 4.810892e-03
## COLEC12 -4.779188e-01 1.902017e+00 -2.621836 9.844183e-03 2.565414e-02
## ZNF280C 4.711097e-01 1.340856e+00 3.173847 1.898495e-03 6.963830e-03
## KLHL25 -4.682423e-01 9.562206e-01 -3.243574 1.518030e-03 5.851102e-03
## FANCC 4.637684e-01 2.008549e+00 2.946991 3.836427e-03 1.214630e-02
## SLC6A16 4.628210e-01 1.320153e+00 3.426583 8.303912e-04 3.687173e-03
## HSD17B1 -4.608678e-01 6.280013e-01 -5.430159 2.861590e-07 1.203491e-05
## DNAJC18 4.602477e-01 1.998183e+00 2.760658 6.647247e-03 1.877503e-02
## NME7 4.591001e-01 2.856890e+00 2.410671 1.739495e-02 4.071496e-02
## ZNF223 -4.585767e-01 1.914829e+00 -2.503223 1.361063e-02 3.345153e-02
## MAGI3 4.585064e-01 1.382790e+00 2.735970 7.135572e-03 1.982846e-02
## POLR3G 4.575117e-01 1.347490e+00 2.913777 4.239295e-03 1.315835e-02
## PRPF40B -4.549655e-01 1.231315e+00 -2.489199 1.413207e-02 3.449400e-02
## ZNF324B -4.542914e-01 1.494305e+00 -3.167710 1.935917e-03 7.077676e-03
## KCNIP2 -4.529296e-01 1.316227e+00 -3.000036 3.265437e-03 1.068951e-02
## SCLY -4.505842e-01 2.599165e+00 -2.484871 1.429657e-02 3.481669e-02
## UNC5CL -4.489432e-01 2.499475e+00 -2.455225 1.546997e-02 3.694600e-02
## CLDN12 4.484803e-01 1.004470e+00 4.090672 7.696324e-05 6.405502e-04
## AMIGO3 -4.471345e-01 1.157669e+00 -2.474360 1.470318e-02 3.556593e-02
## ATP8B3 4.423428e-01 1.436782e+00 2.710017 7.683874e-03 2.101724e-02
## JADE3 4.417057e-01 9.399663e-01 3.468104 7.218315e-04 3.313233e-03
## ZNF460 4.383401e-01 1.432244e+00 2.901471 4.398177e-03 1.355924e-02
## EID2B -4.354635e-01 1.626585e+00 -2.864132 4.914236e-03 1.481139e-02
## SCIN 4.311719e-01 1.002622e+00 3.662731 3.684873e-04 2.012090e-03
## AHI1 4.264549e-01 1.419891e+00 2.658929 8.876240e-03 2.354556e-02
## PUS7 4.257798e-01 1.676554e+00 2.685186 8.243991e-03 2.222635e-02
## DPH3P1 4.239099e-01 1.590977e+00 2.624480 9.772143e-03 2.551013e-02
## WDR97 -4.207165e-01 8.739580e-01 -3.650787 3.842922e-04 2.077350e-03
## MYH10 4.201811e-01 1.159752e+00 2.638002 9.411185e-03 2.468849e-02
## BPHL -4.197431e-01 1.550904e+00 -2.720429 7.459482e-03 2.051704e-02
## FARP1 4.190467e-01 1.287432e+00 2.756893 6.719691e-03 1.890311e-02
## TULP3 4.185861e-01 2.055632e+00 2.340316 2.086905e-02 4.700093e-02
## GRB14 4.175582e-01 1.002550e+00 2.884738 4.622964e-03 1.409469e-02
## INTU 4.175276e-01 1.435362e+00 2.986474 3.403451e-03 1.104678e-02
## H2BC15 4.144205e-01 5.357225e-01 3.195409 1.772287e-03 6.614718e-03
## PSMC3IP 4.118069e-01 1.694968e+00 2.872109 4.799542e-03 1.452814e-02
## C21orf62 4.114634e-01 1.612874e+00 2.490412 1.408628e-02 3.441056e-02
## FAM83H -4.083374e-01 1.219264e+00 -2.669748 8.610582e-03 2.300034e-02
## GGT6 -4.072811e-01 1.189500e+00 -2.845101 5.198081e-03 1.547809e-02
## LRRC7 -4.034113e-01 1.081276e+00 -3.095788 2.428608e-03 8.456632e-03
## GPRC5C -4.013224e-01 7.084544e-01 -2.819935 5.596444e-03 1.639670e-02
## SPATA7 -3.984278e-01 1.202327e+00 -3.409977 8.779591e-04 3.849388e-03
## EGFL8 -3.974058e-01 6.893250e-01 -2.806338 5.823094e-03 1.691450e-02
## MAP6D1 -3.973055e-01 1.334564e+00 -2.860783 4.963142e-03 1.493223e-02
## AASS 3.968886e-01 1.022028e+00 2.941744 3.897635e-03 1.229741e-02
## CENPS 3.966765e-01 1.065779e+00 2.870865 4.817264e-03 1.457096e-02
## ARSK 3.950246e-01 1.587801e+00 2.465925 1.503691e-02 3.620873e-02
## EFCAB11 3.895362e-01 1.920036e+00 2.942172 3.892608e-03 1.228481e-02
## ZFP69B 3.872143e-01 1.021524e+00 2.958696 3.703056e-03 1.181233e-02
## LRRC46 -3.845752e-01 8.210395e-01 -3.294482 1.286537e-03 5.137483e-03
## PFN2 -3.841643e-01 1.050604e+00 -2.455564 1.545606e-02 3.692022e-02
## ZNF850 3.799717e-01 1.992499e+00 3.033403 2.947541e-03 9.844504e-03
## SLC35E4 -3.761556e-01 9.743732e-01 -2.439324 1.613404e-02 3.825273e-02
## AZIN2 -3.699790e-01 9.100170e-01 -3.047379 2.823094e-03 9.549886e-03
## EFNA3 -3.657283e-01 1.096881e+00 -2.826040 5.497331e-03 1.617424e-02
## BMP8A 3.644500e-01 1.404541e+00 2.313870 2.232535e-02 4.955618e-02
## ASIC3 -3.619556e-01 5.728481e-01 -3.359417 1.039007e-03 4.383714e-03
## L3MBTL4 3.604290e-01 1.170795e+00 2.845279 5.195367e-03 1.547389e-02
## KCNC4 -3.588210e-01 8.713637e-01 -2.881860 4.662669e-03 1.418657e-02
## BBS12 3.564612e-01 1.604934e+00 2.630017 9.622857e-03 2.515475e-02
## TMEM44 3.528036e-01 1.122166e+00 2.624886 9.761126e-03 2.549371e-02
## MTCP1 3.525382e-01 1.041086e+00 3.438642 7.973769e-04 3.578089e-03
## TSPAN15 -3.506823e-01 6.990599e-01 -2.730521 7.247663e-03 2.006472e-02
## IFT140 -3.469209e-01 1.216554e+00 -2.464913 1.507738e-02 3.627871e-02
## TEX22 -3.414100e-01 8.313437e-01 -2.498002 1.380269e-02 3.385028e-02
## NWD1 3.364114e-01 6.645564e-01 3.006636 3.200153e-03 1.052227e-02
## ZNF257 3.337473e-01 9.942495e-01 2.639062 9.383399e-03 2.463739e-02
## CCDC15 3.335280e-01 1.057565e+00 2.428723 1.659076e-02 3.909526e-02
## CDK20 -3.321920e-01 7.955739e-01 -2.787018 6.159581e-03 1.763704e-02
## WTIP 3.309830e-01 2.166025e+00 2.415315 1.718485e-02 4.031098e-02
## TRPC6 3.283484e-01 9.027659e-01 2.379783 1.885149e-02 4.345552e-02
## IFT81 3.256704e-01 1.196678e+00 2.356335 2.002825e-02 4.552402e-02
## UGT8 3.249797e-01 1.101377e+00 2.798227 5.962264e-03 1.722174e-02
## EHHADH 3.230398e-01 1.220799e+00 2.326827 2.160105e-02 4.827368e-02
## CDIN1 3.196180e-01 9.359835e-01 2.977793 3.494590e-03 1.127778e-02
## BEND5 -3.184724e-01 8.350352e-01 -2.392689 1.823027e-02 4.227826e-02
## ZRANB3 3.182388e-01 1.510941e+00 2.892622 4.515773e-03 1.383171e-02
## CCL24 -3.165023e-01 5.501559e-01 -3.209541 1.693849e-03 6.379503e-03
## BEX5 -3.161760e-01 8.298340e-01 -2.334973 2.115632e-02 4.751258e-02
## LIPT2 -3.147380e-01 1.254477e+00 -2.370665 1.930160e-02 4.427794e-02
## EXTL2 3.109177e-01 1.216805e+00 2.447083 1.580691e-02 3.762190e-02
## CCDC138 3.061915e-01 1.137407e+00 3.190874 1.798167e-03 6.677351e-03
## NAP1L5 3.027248e-01 1.092955e+00 2.571124 1.132146e-02 2.861123e-02
## FN3K -3.014653e-01 5.278538e-01 -2.830195 5.430782e-03 1.601817e-02
## ZNF670 2.964981e-01 1.529215e+00 2.460170 1.526847e-02 3.659675e-02
## SENP8 2.962466e-01 1.238043e+00 3.343654 1.094620e-03 4.559955e-03
## PARD6G 2.914228e-01 7.660642e-01 2.900011 4.417375e-03 1.360074e-02
## LTB4R2 2.807973e-01 1.058158e+00 2.365743 1.954851e-02 4.470034e-02
## GPLD1 2.786230e-01 6.561487e-01 2.836162 5.336518e-03 1.579908e-02
## TDRD12 -2.757423e-01 6.505601e-01 -2.340729 2.084696e-02 4.696904e-02
## MYORG 2.717525e-01 1.655845e+00 2.418346 1.704889e-02 4.003957e-02
## FCRLB -2.689549e-01 7.086895e-01 -2.570612 1.133733e-02 2.863303e-02
## CELF3 2.688073e-01 7.136636e-01 2.452113 1.559796e-02 3.720672e-02
## ADSS1 -2.594655e-01 4.803343e-01 -3.342698 1.098081e-03 4.567955e-03
## MYO1A -2.591972e-01 6.631207e-01 -2.753611 6.783446e-03 1.904532e-02
## CPLANE2 -2.564949e-01 6.914240e-01 -2.375948 1.903968e-02 4.377872e-02
## KCNMB3 2.505177e-01 8.327175e-01 2.803627 5.869281e-03 1.702800e-02
## CATSPERG -2.489468e-01 5.568691e-01 -2.855762 5.037290e-03 1.510550e-02
## ZNF620 2.405353e-01 1.111005e+00 2.866706 4.876955e-03 1.471025e-02
## MAP3K13 2.388587e-01 1.073659e+00 2.371638 1.925310e-02 4.419234e-02
## CFAP97D1 2.252862e-01 6.577462e-01 2.475492 1.465888e-02 3.547512e-02
## NAF1 2.214203e-01 9.078471e-01 2.347232 2.050227e-02 4.636860e-02
## SCML2 2.201663e-01 5.013808e-01 2.769652 6.477028e-03 1.839449e-02
## TPH1 -2.127810e-01 6.945819e-01 -2.399924 1.788998e-02 4.166015e-02
## KRTCAP3 -2.046506e-01 5.837618e-01 -2.524003 1.286960e-02 3.194505e-02
## WNT2B 1.968871e-01 8.187923e-01 2.352372 2.023343e-02 4.590696e-02
## SSC4D -1.935743e-01 4.950435e-01 -2.337076 2.104283e-02 4.733752e-02
## UFSP1 -1.905395e-01 3.418626e-01 -2.318656 2.205536e-02 4.905788e-02
## LOC100133315 1.798380e-01 4.838266e-01 2.578102 1.110700e-02 2.822209e-02
## ZNF835 -1.783090e-01 4.630805e-01 -2.438104 1.618601e-02 3.833188e-02
## OR1F1 1.723349e-01 5.898291e-01 2.330590 2.139456e-02 4.793006e-02
## B
## S100A9 -3.3784597502
## HBA2 5.0153718196
## ACTB 8.6518053976
## FTL 6.5659556315
## RNA28SN1 7.8026755086
## IFITM2 -0.5090658435
## RNA28SN4 14.2240520144
## EEF1A1 1.2600293980
## FCGR3B -3.4649413719
## HBA1 0.4898601027
## FTH1 -2.3965733168
## RNA18SN2 13.7859931467
## RNA18SN3 13.7859931467
## RNA18SN4 13.7859931467
## IGKC -0.7601800217
## RNA28SN3 -0.7680545612
## IGHG1 -0.1965925579
## CSF3R -1.1638578361
## TPT1 4.1646015622
## MYL6 -0.0661886176
## RPL13A 3.0031075611
## RPS27 0.2659594927
## UBC -2.3509966306
## RPS11 3.3575500465
## RPS3A 1.1647621683
## GAPDH -2.5756033888
## LAPTM5 3.0031439274
## EEF1G 4.7295161144
## RPL10 2.3001516959
## TMSB10 -0.7817999848
## JCHAIN 2.1775946781
## RPL3 3.3063167963
## CD74 3.9497806803
## COTL1 14.4345917919
## RPL11 2.3128695152
## SERPINA1 -2.0064146850
## RPL9 1.2262517127
## RPL13 2.0177595352
## RPS6 5.1181841290
## JAML 3.7231042685
## VSIR 1.4075179573
## RPLP0 1.5988903002
## RPL8 5.1304148090
## S100A11 -3.1015675247
## PSAP 3.3324244653
## IFIT3 -2.9112782593
## OAZ1 0.1400858699
## RPL21 2.0003678704
## RPL27A 3.5091208441
## RPS3 2.8084218321
## RPS2 5.7823015258
## FLOT2 1.4407140258
## CORO1A 3.1902960921
## TUBA1A 7.3128845196
## ACTG1 1.6207017014
## RPL19 5.9789417528
## ZYX 6.6739469678
## RPS9 4.4137599564
## FCN1 0.3844168530
## RPL7 1.6884542247
## IFIT2 -2.8987790417
## RPS14 3.2201340482
## GABARAP 0.5490308389
## RPS18 2.2145891298
## RPL4 3.1271500543
## RPS4X 4.1964676138
## SH3BGRL3 3.8943009369
## ALPL -0.5966156196
## RPL32 1.7249771745
## VIM -0.9416596878
## RPS8 2.3889540007
## RPS20 1.8889115481
## IFIT1 -3.1336791973
## RPSA -1.4433432878
## RPS12 -1.1493127269
## RPL41 -1.5067122335
## ALDOA 7.0714633898
## CYTH4 7.3045292788
## LILRA5 -0.5623366764
## RPS27A 1.4598375787
## PFN1 0.8738572548
## CLIC1 -1.9271237571
## RPL6 4.2817394490
## HCLS1 -2.4286567447
## RPS19 -0.4524269137
## TRIM22 -0.7393717525
## RPS23 2.3797394116
## RPL18A 2.4736770308
## ICAM3 5.2501748920
## RPL12 3.1725026996
## MMP25 -1.5078319831
## RPS10 1.3240552901
## TYROBP 3.5751810654
## RPL39 -0.7935561151
## UBA52 0.3301200652
## ARRB2 -0.9616681132
## RPS15A 0.2733645329
## IFI30 0.3944378379
## RPLP1 2.0399920902
## RPL7A 2.2717771560
## RPL26 2.7137556050
## MXD1 -3.2191109614
## TALDO1 1.7477890515
## RACK1 5.2631026246
## LSP1 9.3126756895
## RPS24 0.4384855164
## HCK 2.3802856000
## RPL17 1.4861804231
## RPL37A -0.3994452815
## GPSM3 1.3330399147
## LRRK2 -1.6068953817
## RPL23A 1.4870452204
## ENO1 3.3170165655
## RPLP2 0.1841617556
## AIF1 15.9736043289
## RPL30 0.8238710607
## MCEMP1 -2.1278068421
## SMCHD1 0.1710524996
## RPS17 1.4528716180
## CFL1 -0.2230917743
## SELPLG -2.2126783726
## RPS16 1.1646818782
## FKBP8 4.0119336770
## CST7 -2.1034480971
## SERF2 2.5939150068
## TXNDC5 -0.2023366209
## FCGR3A -2.8792423353
## EEF1D 7.0715841726
## MSRB1 -2.2622122482
## ADAR 0.9717292026
## MMP9 -3.3812474137
## RPL28 -0.4487015857
## TKT 0.9972023190
## S100A6 -3.6717733292
## RSAD2 -3.3913584247
## RPL15 3.4046280481
## MME 0.4381662968
## MYO1F 0.3690672804
## PFDN5 2.9531392751
## RPL37 -1.3458702203
## RPL27 2.1049563002
## RESF1 -2.9537698935
## RPL23 0.3123218208
## ABTB1 -1.2091523479
## ADGRG3 -1.1154921232
## RNF213 0.1667920473
## RHOG -0.1200523440
## FAU 2.8553344067
## LIMD2 6.8273579534
## CD52 -1.7040257506
## RPL5 1.9817668561
## HLA-DRB1 0.1120793756
## CNN2 2.2125519925
## TAP1 -2.6555084119
## NCF1 -2.6246325999
## SPI1 2.3094055129
## MEGF9 -2.5107471277
## LILRB3 2.4333504013
## HK3 1.1395215132
## RPL18 1.2271446076
## RPS7 1.9550616990
## RPS5 2.2878124814
## ITGB2 0.2196019378
## RPL36A 0.2720523641
## NCF4 -0.2754174648
## FLOT1 -2.6610393209
## EFHD2 9.6507075436
## STAT1 -0.9784861622
## HSP90B1 -0.5910686883
## OAS3 -2.7702961925
## NFAM1 1.7493530271
## TNFRSF1B 5.1125892450
## OAS2 -2.4814830874
## IFI44L -2.8171312235
## RPL35 1.8996112460
## SLC11A1 -1.7714585982
## ARAP1 2.2842118864
## RPL34 -2.1023138553
## RPL31 -0.6243141092
## LST1 -0.5120938168
## RPS25 1.1893283101
## VASP -2.4297707515
## GNAI2 3.5909941994
## GNB2 6.9103733472
## ANXA11 1.0384490524
## MX1 -3.5077355323
## MBOAT7 4.1206234033
## OAS1 -2.2022989732
## ARPC3 -2.8061423109
## RPL29 1.3221149663
## MVP 7.2993667110
## IFI44 -2.5419698164
## PARP9 -0.5074857635
## RPL24 2.0121753432
## CYBA 7.9345494963
## RPL10A 1.5469618000
## ARPC4 0.3069410380
## PGGHG 1.6515743604
## CST3 -1.2076456246
## FLNA 1.0969956434
## CNPY3 5.2598997807
## CYSTM1 -1.2016936133
## COX4I1 2.3557882020
## KLF6 -2.4749174288
## DGAT2 -1.8798791920
## NFE2 -3.0409365451
## MOB3A -0.3235696896
## R3HDM4 -0.5407075631
## FXYD5 7.0667975741
## CTSD -3.3826556835
## EPSTI1 1.2837774584
## TNFRSF10C -0.1476940867
## CD48 6.6404865241
## FCGRT 7.1514831175
## TMEM123 -1.6746568763
## GRN -3.4939082784
## RPL14 -0.5032940463
## PXN -0.2311030097
## TYMP 2.2721850690
## PARP14 -0.9348602667
## SAMD9L -1.9940935782
## IFI27 -2.3789053562
## XAF1 -2.2738328317
## RPL38 1.5106443282
## TPI1 2.9426708977
## ATP6V0D1 5.3388292733
## ARPC1B 2.0482642051
## RPL35A -0.1214133888
## RPS29 -1.5538582793
## NACA 5.9663106436
## IL4R -1.2713255633
## ADAM8 3.8450338904
## JUNB 5.2829349197
## RPS15 -0.4498235094
## RPL22 2.5368176442
## STK17B -2.9388757057
## RPS28 -1.7217721142
## PPT1 -3.3960074698
## OASL -0.9468820506
## TCIRG1 2.3182119790
## BTN3A1 2.9376194139
## EEF1B2 2.0548199716
## EEF2 5.7968098288
## IGSF6 -1.8592972866
## PABPC1 1.7916021723
## APOBR 0.1914375758
## TIMP1 -1.2058917110
## LILRA2 0.3839818195
## MAN2A2 -2.2339828924
## STXBP2 4.1510050309
## CD44 -3.6577496092
## IMPDH1 9.9241345084
## CSK 11.7842213544
## B4GALT5 -1.6626484631
## LRG1 -3.2440123768
## ATG16L2 2.8837468565
## RPS6KA1 -1.1186259544
## PTAFR -1.6774784480
## CAPZB 3.6927226228
## CTDSP1 4.0196934063
## CFP 7.5061460790
## TSPO 3.2997459007
## LILRB2 7.5650293041
## FGD3 5.4138621561
## HLA-DPB1 2.6188680789
## RPS26 -1.6721446275
## ATP5F1E -3.2538521101
## CTSZ 5.1980214945
## TMEM154 -2.6803318371
## CEBPB 0.5221900172
## SPARC -1.3165842693
## CSGALNACT2 -2.9352200217
## PTPN6 -0.1120663461
## DDX60L -3.0453275838
## SLC25A6 8.0822940085
## HLA-DPA1 1.9678675539
## SLC16A3 4.0306389605
## GPX1 -0.6790043341
## RAC2 -3.5754441612
## UCP2 6.6149166919
## APOL6 -1.7225009459
## LRRC25 8.7071734962
## C19orf38 9.5441340474
## SECTM1 1.0480684085
## HSPA1A 6.3012006012
## CAPNS1 5.1757769453
## LTB 3.8465914590
## EGLN2 6.1945966381
## SHKBP1 -2.6097727479
## CD14 1.3613546099
## LYST -1.2680756220
## PECAM1 -2.6352247238
## ARHGAP4 9.1121772989
## CLEC7A 0.6429615336
## CYP4F3 0.2878937678
## TLE5 -0.7223424845
## NUCB1 8.3821013858
## CYBC1 4.3230256919
## DBNL 5.7876597496
## TAPBP 3.7437299332
## GRK6 4.9397818782
## RPS21 -0.7143249373
## RPL36 0.3692494760
## GNAS -3.2016013131
## PPM1M 2.2296187755
## THEMIS2 0.9700691617
## SLC38A2 -1.2739467450
## EIF4A1 1.1245716858
## NOP53 5.2166935766
## PSMB3 1.7128204661
## FERMT3 1.6468967237
## SEPTIN9 6.4735542338
## ARHGAP30 -3.1454781374
## PLP2 -3.3620957346
## CAPG -0.1776237866
## CHMP2A 3.8056874515
## SAMD9 -1.1777482379
## STAT2 -2.4873908174
## ARHGAP45 0.0075067593
## HERC5 -3.2677828780
## RNPEPL1 7.1693791961
## RNASEK 5.2023056106
## DDX17 -1.7790724438
## DOCK8 -1.0274227181
## TBC1D10C 5.4769232252
## CDKN2D -2.3058877511
## CD24 -3.3513797784
## SLC44A2 -3.1114909482
## PLEKHO2 -2.1803901886
## PCNX1 -2.8600006115
## CD164 -2.3305679400
## ZC3H11A 1.0357995341
## WAS 0.0003198471
## NINJ1 -1.6889453644
## COX6B1 -0.5555412152
## SIPA1 11.4297899130
## PLEKHO1 0.2596009321
## LGALS1 -0.1841198707
## F13A1 -1.7448649955
## SERINC1 -3.6524255024
## S1PR4 4.3160684564
## STK10 5.8785886291
## CIRBP 5.0876889710
## KLF2 -0.1386855758
## ARF5 7.6101568299
## RPS13 -1.9858340798
## SLC12A9 18.6085684940
## BACH1 -2.8754813314
## CREB5 -3.5339660745
## PKN1 5.4509240439
## CCDC88B 4.5622062983
## PELATON 7.0554763941
## GRINA -3.3295299682
## ITGB1 3.0386451426
## PPP1CA 2.7763965255
## IL32 -3.6968737193
## ACAP1 2.7292051347
## EIF2AK2 -1.1324196771
## DTX3L -0.2195146571
## FAM8A1 -0.0089894439
## TAGAP -2.9823922120
## ARHGEF1 5.9512609704
## C1orf162 -1.8720456476
## TOMM7 1.0031070376
## CELF2 -3.3672326707
## TMX4 -3.6232415019
## RAF1 -2.3082561320
## PRELID1 -0.0022952566
## TNFRSF1A -2.8765481668
## NBPF14 0.3463150936
## RNASE2 -3.5798385977
## FES 2.2517244297
## ELF1 1.1295722497
## PARP8 -2.5545416817
## CD37 8.9970356545
## TWF2 14.7537055817
## PRKCB -2.5185467017
## STK4 -1.3669412123
## CREBRF -1.4539910248
## NOTCH2 -3.1043825662
## PTMA -2.1197095620
## CMPK2 -2.3992960545
## TGFB1 0.9497190478
## PRDX5 -2.7220080549
## JPT1 3.3422276568
## DDX60 -1.6728302432
## DDX58 -2.6792350625
## NIN -3.2828578220
## RAB1B 1.8580817002
## PPP4C 0.8391630484
## ACAA1 4.5006395037
## PPM1F 3.0834786539
## ZNFX1 0.7610840360
## LGALS9 -2.7756296307
## BSG -0.2234607539
## EIF3K 2.0324740678
## AGTRAP -2.6834534898
## AMPD2 1.5338816610
## SUN2 7.6740962174
## CAT -2.8830879309
## EMP3 -0.3435908172
## GSTK1 2.8157230980
## EHD1 2.8248545098
## RASGRP4 -1.1929761896
## CD82 0.3377626453
## SLC9A3R1 4.2356729616
## NBPF19 -0.4365108662
## CD68 -1.4318401308
## WAC -0.4102629783
## C15orf39 6.1054714876
## ATP2A3 -0.9590380036
## RGS14 2.2716625804
## ADD3 -2.6027676235
## SETX 3.8304436363
## USP32 -2.5463147913
## PSTPIP1 5.9022844704
## EHBP1L1 3.8753226779
## SP100 -2.7658069156
## MICAL1 -0.5886669192
## BTN3A2 -0.1190523844
## MGAT1 -1.9386137916
## BPI -3.4806638876
## SMG1 2.4688746475
## LAMTOR1 -2.4370119877
## RXRA 7.1350997521
## MAP3K2 -2.9633105983
## GRK2 -1.5104710667
## VAMP8 0.3838729397
## GSTP1 2.8249377831
## RNF167 3.2499673255
## RPL36AL -1.3111826758
## EDF1 0.9792146654
## WDR26 -2.9793552214
## BCAP31 3.7786504755
## CTSC -2.0814686177
## CRIP1 -3.5792791578
## ARL6IP4 6.1010818894
## NBPF10 1.6859555841
## XBP1 -2.4017869944
## TRIR 0.3101775370
## OGA -2.4388186842
## MAP2K3 -1.2404685721
## TP53INP1 -1.2172963148
## BLOC1S1 -3.4627555021
## RPH3A 1.3692675093
## SNN -2.1064436583
## MED13L -1.1201726990
## PSMD4 1.0960111268
## HECA -0.9074934685
## WASHC1 1.4436348895
## PTPN12 -2.1337305695
## TGFBI 4.3551816121
## PBXIP1 -3.6762485746
## ACAP2 -3.0006139045
## ANXA2 -3.5195605284
## UBR2 -1.1286451503
## ZFAND5 -3.1754096172
## YBX1 -0.1429721885
## RGL4 -3.4953991683
## CSF1R 3.7538203406
## UBN1 -1.4890422804
## TAP2 -2.4541890574
## ERP29 2.3498397086
## TSC22D4 4.7875999837
## ITGB3 -2.9032883684
## OGT -0.2221848145
## CRISPLD2 -3.4102011908
## SASH3 -3.0477755001
## HMOX1 6.7829795874
## CHD2 0.6843575368
## LPAR2 -0.1619156403
## NARF -0.8323773871
## ARHGAP27 -2.1529475170
## VNN3 -0.9078505126
## QSOX1 -1.0853775737
## CD300LF 4.8184425669
## CEACAM8 -3.0211205292
## PSTPIP2 -3.2972383035
## ELOB 3.6629969714
## COLGALT1 9.8215219128
## SYNGR2 12.8593282510
## TNFRSF14 5.7403290792
## SLC43A2 7.7166815815
## CHMP5 -3.3441399102
## UBALD2 -3.0939972473
## DICER1 -2.9788510419
## ROCK1 -3.6905842022
## DEF6 4.2699422342
## PSMB4 0.2490990621
## TACC3 2.9387669095
## UBXN1 6.1837617005
## EIF3F 4.4066494257
## PPP2R1A 3.9312457407
## SP3 -3.2069893514
## OSCAR -0.4433016137
## CEBPA 11.0725721453
## IFIT5 -1.8267166498
## EIF3G 6.0618415820
## RICTOR -1.0780604722
## LRCH4 5.6442252273
## UQCRB -1.0439443241
## ANXA6 -3.5855926516
## AKAP13 -2.8577179863
## PAPOLA -1.6579183045
## SLC15A3 18.1141991825
## SLFN5 -1.9238645421
## DOK2 3.7850614144
## ANKRD13A -3.3717179598
## PAG1 -3.3677719386
## IFIH1 -2.0063936631
## QKI -3.1872881561
## GSN -2.9636806993
## TFEB 2.7317901988
## RALY 2.3529563759
## POLD4 3.6204893905
## FAM214B 0.1575513974
## CD4 0.8149015477
## KLF3 -2.0254946213
## MAP3K1 -0.5100144112
## TRAFD1 -2.7758241537
## PSMB10 3.3580880271
## SYK -3.3614871456
## SLC7A7 2.0858529759
## APOBEC3A_B -3.2788187942
## NEK7 -2.0895823506
## EPB41 1.0809028476
## BTF3 1.7992838760
## EIF3D 8.6230733197
## NT5C3A -2.7705627314
## NBN -2.4091178360
## LILRA3 -0.9210313629
## PRRG4 0.4257920686
## NDUFA13 -0.1384437581
## MEFV -2.9492707574
## PYCARD 6.1038203758
## UNC13D 0.6941052823
## GYPC -1.5893013619
## FBL 2.4382500207
## DMXL2 -0.3919073689
## SKP1 0.9748912763
## KIAA0930 2.7421753846
## EIF3L -0.7484164804
## RBM3 -3.6314510601
## MDM2 -3.0064829010
## HIPK1 -3.6785866794
## MAN2B1 6.1798323398
## APAF1 -2.1782166484
## BAZ2A -0.9581801316
## TNFAIP8L2 7.3884877711
## PTPRE -3.1193383138
## NEDD8 0.7600842562
## XRN1 0.0643040309
## HDAC7 1.4811459930
## WLS -0.6373968088
## ERBIN -2.4483186137
## RAD21 -2.3739712485
## KIAA1109 0.7051314565
## PDLIM7 0.9876797327
## ABCA1 -0.3503760439
## TRANK1 -2.1295344956
## NAP1L1 -3.1749846388
## SP1 -3.5775704113
## CORO7 6.5665455211
## ARHGDIA 4.0119015110
## RBL2 -2.3333597519
## CYLD 1.4637659228
## HADHA 6.5502797939
## ZCCHC2 1.6350810342
## H2BC4 -2.0390126075
## MAPKAPK3 3.6439219424
## PPP4R2 -3.5113459817
## LPIN2 -1.1735799644
## ATP5MC2 0.6209567690
## MYO9B 1.7449697854
## TRIM38 -2.4239834654
## TLE3 -2.9194389164
## BOD1L1 -2.3084745804
## STK40 -0.9884780658
## G6PD 1.3942521942
## SSR2 -2.7707079565
## LFNG 1.6397760074
## CD3E -2.1689213086
## SON -0.5562146944
## WASHC4 -1.0707291476
## TADA3 -0.0868724490
## ACADVL 1.4038679002
## TUBB1 -1.5564137050
## PLEC 13.4521906166
## STX10 -1.0810837529
## PLCB2 -2.5478768923
## SYNE1 -1.7673817199
## RASGRP2 2.0226061638
## PARVG 6.4207388866
## SPG11 2.4309037481
## NT5C2 -3.4348629535
## TP53I11 3.6324000454
## MAP3K11 3.9722040553
## LMAN2 0.5981559152
## MYO1G 4.1734778979
## GUK1 2.4007739632
## CTSH -0.2819072709
## PNPLA6 4.5479753148
## CHMP4B 2.9873179835
## IL1B -3.6700249588
## SH3BP2 -0.7659140376
## TENT5C 1.1949766534
## HLA-DQB1 -1.2232763640
## C9orf72 -3.5312295241
## PTGS1 -2.4489890222
## PPP1R9B 11.0150586080
## TRAPPC1 -0.3506700993
## UBA1 1.9937899697
## BRD2 0.8597277099
## GSTO1 -2.6997145485
## SNRK -2.2549490618
## LUZP6 -3.1135428529
## MTPN -3.1135428529
## MLF2 -0.6815773857
## ARHGAP15 -0.4951224793
## COPE 2.6826208971
## CAPN2 0.7888079114
## RGS19 0.0853115083
## UBXN11 6.0397916867
## VPS28 0.4879260220
## SLC25A3 -0.7160471575
## CCM2 0.7677783329
## SPOCK2 -0.7820523474
## PRKAR2B -1.4059374379
## C5AR2 0.2045004633
## POR 1.0823868685
## TAB2 -3.0611738917
## GSDMD 3.7895486737
## TSEN34 -0.0337770804
## SIGLEC10 -3.6725323104
## PTP4A2 -3.6780421865
## STXBP5 -2.7384535024
## ZC3HAV1 -3.1789168547
## PSMD13 0.1123425089
## ITM2C -2.6486491214
## TMEM120A 1.5533636743
## PPP1R15B -1.2272933390
## GBP4 -3.2475084608
## PACS1 3.9542601110
## INPP5D -2.4686623374
## PRKCSH 5.2219244759
## EIF3C 2.8215819659
## WNK1 -1.3693475381
## VCPIP1 -1.8866871026
## DEF8 0.2306770596
## EIF2AK1 5.0292572409
## AP2M1 -1.8646402891
## STAT5A -0.5565807513
## SPOPL -3.6126208308
## PATL1 3.0999382395
## ACTR1A 1.2341176849
## MIDN -2.0208706635
## ARID5A -0.0988245013
## AHCTF1 -2.5070197273
## CDC37 6.3456672726
## NOSIP 1.8594952740
## TYK2 2.4694965142
## PSD4 -2.9830562673
## ADAM17 -1.3371963243
## RIN3 -2.5676223906
## UBL5 -2.4905520527
## VCL -0.6189059118
## MAPK13 -2.0566557532
## PPP1R12C 7.3685127113
## PLIN3 -0.4543574547
## CPEB4 -2.9025519356
## IMPA2 4.9640076504
## PLB1 0.6191727291
## PHB2 4.7634537073
## MAPK3 -0.1084763695
## TRIP12 -2.9847215864
## ILK -3.5806957650
## WBP2 -2.3531233864
## KDM7A -2.2621808965
## GAA 7.8910034818
## DHRS13 -0.7413721776
## SBNO2 -2.1059300904
## RAB5C -1.7767389235
## DNAJC13 1.5418889198
## NCOA1 -3.1566109436
## S100A10 -3.6221954951
## PRAM1 2.1064795028
## FAM89B 9.6091618022
## KIF5B -1.2303327762
## RARA -2.4353603113
## TOM1 -1.6098638369
## MAP7D1 -1.5914115764
## ANKRD13D 1.9656671488
## PGLS 8.8198847670
## CD2BP2 4.5330880969
## FNDC3B -1.6816190191
## NUFIP2 -2.1422750163
## CIB1 1.7729350983
## IRAG1 -3.6066105553
## CHMP1A 2.7643888472
## CD3D -2.7216518221
## NSD3 3.0741842988
## IGFLR1 4.8319685356
## ATM -1.1775372700
## DOCK11 -3.1984588802
## TMC8 -2.7893370587
## DOCK2 -3.5658502497
## NCOA3 4.9441014965
## BTN3A3 2.2911916632
## ARRB1 3.9328829090
## PSENEN 0.7438310987
## HLA-DMA 0.1544487423
## DEK 0.1669727966
## CTDNEP1 -0.0518456971
## COX7C -3.3668641821
## MKNK2 -3.3791365620
## MCMBP -1.1641301981
## USP34 -1.0752674507
## ABHD3 -3.3914717954
## ITSN2 -1.8798926052
## HNRNPH3 -1.2271528223
## TAF10 0.6116983333
## CRTAP 2.0136914298
## APP 5.5230395355
## EIF3M 3.5447249132
## PSMA7 -1.7903634975
## PGAP6 8.7310016034
## TPP1 -2.8308353742
## EP300 -1.3411889256
## PTPRCAP -1.5495940867
## DEDD2 -1.4049266993
## STK38 -1.4911841286
## SEL1L -0.7099857590
## LCK -3.0848046982
## MARF1 -2.9958067286
## AKT1 7.0562560298
## ORAI2 -3.2137306297
## KMT2E -0.6095088854
## SCAF11 -2.4877537018
## LILRA1 -0.1675225882
## VOPP1 -2.8435687799
## AMD1 -2.6764701460
## CNOT1 1.9911831794
## FUT7 9.2196252463
## YWHAH -1.6775313550
## MAZ -2.9421976652
## USF2 4.7984532338
## STAB1 -2.2152112096
## OSGIN2 -0.4169921066
## TNPO1 0.2366627967
## PHF20L1 -2.6969874242
## CDK5RAP3 -3.7278413488
## NME2 -2.5228359434
## UNC119 -0.7754700536
## LIMS1 0.3258437233
## BIRC6 4.2757830927
## MRFAP1 -0.9987077904
## SIPA1L2 -3.3974382978
## PSMB1 -0.7904168078
## DOK1 6.9094225233
## ZAP70 -2.3376783638
## CAVIN2 -1.8752807300
## NCOA2 -1.5808599981
## SERPINB6 6.2158754179
## CEACAM6 -2.8252677770
## KDM3B -2.6792207424
## SEPTIN7 -2.8694347848
## NLRP12 -1.8314869325
## QARS1 0.8049481636
## H2BC21 -1.1698261782
## APRT 2.4391362320
## CEP63 0.3217542240
## C18orf25 -0.1164342667
## KDM5A 0.3417380640
## PTP4A1 -3.0881726647
## VAMP2 -2.6731620299
## SNX27 -2.6414473121
## KMT2C -0.8859033379
## ZBTB16 -3.6921457356
## USP3 -2.0420566900
## MARCHF2 -1.1456395005
## CPNE3 -2.7119018613
## ZBP1 -3.6651089397
## MED13 0.6739837236
## GPX4 -1.8338577882
## EDEM1 4.8492594767
## PNISR -3.0669724760
## LDB1 2.4758518590
## MYCBP2 4.0768381158
## NIPBL -2.0830620524
## HERC3 -1.0942292364
## RAP2C -3.5269676384
## FLII -0.4380761248
## MTDH 4.9065779248
## VPS9D1 -1.1225989731
## PRPF6 7.5353013263
## EDEM3 1.2450069559
## SLC19A1 -1.6770117932
## DYRK1A -1.6350364817
## BID -1.9412109063
## ZEB2 -3.1267927156
## DRAP1 -1.3765998053
## TRABD 7.1680947697
## HMGN4 1.3033985958
## ARFGAP2 3.1178052047
## SNRPD2 -3.0912982299
## LYPLA2 5.7091197794
## SNX17 -0.6143490360
## EIF6 0.0722609456
## MKLN1 2.2418672987
## HSBP1 0.5363535895
## ZNF385A 7.7074300757
## REL -2.0054645049
## KLRB1 1.1051035152
## SEL1L3 -1.9139000512
## DPP7 2.4409381790
## PIAS1 -3.2565645179
## RFFL -2.1426426966
## SART1 6.0967673104
## SPAG9 -3.1081533570
## BAZ2B -1.8235917375
## FOXN2 -2.0763664537
## CRKL 2.3388914840
## GIMAP5 -2.8485693804
## PIM2 -2.4619692474
## ZNF467 6.8430410417
## DDX39B -0.8560278817
## MTRNR2L6 -1.3334501986
## TMEM259 6.5324837721
## UQCRC1 -1.8364359742
## FIS1 -0.0231283557
## FBRS 1.5601100022
## RNH1 6.8674641655
## FNIP1 -3.6530202017
## ZBTB34 -3.1247665197
## RHOT2 4.5208966237
## TLK1 3.5207965504
## KLHL8 -3.4690291298
## MAF1 4.7334482354
## CNPPD1 -2.2108314822
## CD79B -2.5196830862
## SCAMP2 6.3786824900
## TUFM 0.9379741323
## APEH 3.3222288170
## EIF5 -3.5684480938
## GBP3 -2.9714694273
## ARL6IP1 1.4242165674
## DGKZ 2.1205187304
## FAM111A 5.5421144228
## AUP1 -2.3347413951
## CPNE1 -1.0050401436
## SETD2 2.5314776583
## TBC1D10B 4.2742006829
## KIDINS220 -2.2762356325
## CRTC2 0.1704202905
## SEPTIN2 -0.3767628709
## RIOK3 -3.6520203231
## LPCAT1 6.0444574537
## MORC3 -1.3108282405
## SH3BP1 5.2258129310
## LRPAP1 -2.0649723661
## TAOK1 -1.5813984937
## ARID4B -2.9223921238
## RAB43 -3.1630873455
## CSNK2B 3.1548398345
## EIF3A -0.2827107163
## SZRD1 -0.0402748994
## LAMP1 0.4424082193
## CANX -3.0374069580
## RSU1 2.9535827715
## NAPRT 7.2210610950
## RPN1 -2.5570862144
## MDH2 5.2801079542
## ERGIC3 -1.1838670276
## KAT2B -0.7930078338
## MAT2B -1.9862758752
## CASP10 4.9154709511
## HLA-DMB -0.5803323605
## PRRC2C -1.3809723319
## SH3BP5L -0.4137434696
## CHD1 -3.3666856117
## PIM3 -0.6321106246
## TNKS2 2.3239203299
## TRIM28 2.0559418814
## POLR2E 6.1762611086
## WDR83OS -1.0533635933
## KCNAB2 4.8662920581
## MARCO 7.9219599137
## CREG1 -1.1433902777
## VAMP3 -3.6593989125
## OGFR 1.2524473712
## CELF1 -1.2826894814
## PGRMC1 -1.5888273597
## SLC66A2 5.4801203995
## EVL -2.9019753071
## TACC1 -1.6235676058
## SMARCD2 4.8640750155
## XPO1 -1.4117684495
## MLLT1 2.6053477682
## ATP6AP1 -2.3341014203
## SF3B5 -1.7764427423
## C3orf86 -1.8518616813
## TMEM170B -3.1001552453
## UHMK1 1.4571816657
## ADCY7 -2.6692594389
## RC3H1 -3.5724584519
## UBR5 -1.7157105843
## RELT 3.1043281082
## BAG1 -2.0186832977
## YIPF3 -2.6608024881
## LARP1 5.1682210532
## IRF3 1.0905041283
## UBXN4 -2.6464854208
## ATF7IP 1.6612118086
## ATXN7 0.3193518596
## USP25 0.4474993415
## ALDH3B1 2.3253932887
## EPN1 5.1820222572
## TNFSF13 5.8768169129
## SPSB3 4.9098824328
## KMT2D -2.9589013890
## STX16 -3.6045842480
## CCNY -2.8142081918
## TMC6 -1.1230075013
## RB1CC1 -3.3121336001
## PHF3 -1.7390560205
## COMMD6 -0.5798162859
## GPR108 -1.8060313377
## DIP2B -2.1198733980
## PCGF5 4.2489936137
## LEPROT -0.4053968871
## BRK1 -3.6859362897
## ATP6V1F 2.2079288806
## ITCH -1.9255986008
## PTPN18 -1.8054315238
## COPA -1.9164032943
## BLVRB -2.2306388309
## NADSYN1 4.6341476820
## EIF3H 0.9598718448
## TES -0.8691082186
## ROGDI 2.3729823465
## NDUFA1 -3.3459484603
## FAR2 -1.6047687469
## NCLN 2.5990926930
## TMOD3 -1.6189172625
## UQCR11 -0.8647962693
## WASHC2C -0.2899615660
## PPP2R5C -2.2987649479
## CHMP4A 2.3184268890
## PHIP -2.2093193154
## PFKL 4.2789028434
## MTCH1 -1.5895508122
## PLXNB2 1.4821417873
## IL6ST 0.3903647101
## SYTL1 7.5022928122
## CD1D 11.1754419476
## STRN4 12.1066015254
## CCR7 -1.1643048990
## BRMS1 2.0503978529
## BAG6 3.6258006399
## SELENOW -0.7380493870
## CMTM3 -0.3247784100
## YME1L1 -0.5178226103
## RNF169 1.2868920951
## NAPSA 12.5248365966
## CSNK1A1 -3.3911288449
## TCF25 3.8415097714
## EPG5 2.0202187945
## CMTR1 -2.9662911550
## THOC5 -0.7201149601
## TMEM219 -2.3827030400
## MTF1 -2.7592325990
## MMD 1.0866146056
## FBXW5 1.4643738259
## HM13 0.7620462097
## LNPEP 2.6213771292
## DENND1C 5.6335895127
## NFAT5 -0.9313584317
## ZDHHC19 -2.7145704362
## REEP5 0.6038132817
## PRMT2 -0.2125614057
## AFF1 -3.1713022743
## PEF1 -2.6510677524
## CDIPT 3.0701424397
## MAP2K2 1.4440803013
## SARS1 4.7864872630
## CLTB 5.5936858772
## PCF11 -3.2924182551
## DGCR2 -0.1205927196
## TRAM1 -1.1445725434
## TUBB4B -1.5934686210
## RPN2 -3.4319067538
## CENPB 3.6867107761
## CYFIP2 -2.9289725940
## ARHGEF6 -2.4616493754
## HDAC5 -2.6561785182
## PTAR1 -1.1775479360
## SLC38A1 -0.3983136386
## CDC42EP2 9.6885905101
## TTC9 15.3779910084
## ST6GAL1 -0.2369270666
## LRRC75A -3.5408233572
## PDIA6 -2.9769024534
## SSR1 0.8001503179
## CAPN1 -1.3230083792
## FAM120A -3.5425000044
## DNM2 -2.4789377218
## ARAF 2.1361999465
## MTMR6 -2.5909054757
## VPS13C -1.2198998693
## FAM193B 3.1479140393
## TNK2 4.0189115175
## MTX1 -1.9924892854
## UBXN6 2.1762437696
## SH2D3C 0.4244969352
## LSM14A -1.2215905231
## DNAJC5 -2.8397050668
## SIGLEC9 0.7500646828
## PIKFYVE 1.1925690551
## IKBKG 6.9977218899
## TOR1B -2.8929282796
## MFNG -1.9406012011
## SMG7 0.2375226839
## EPS15 -1.3985031765
## RRM2 10.2795229230
## CD79A -1.0923549790
## PRKD2 -2.9578575441
## PNPLA2 3.7133079343
## TAGLN 9.0377886344
## TIMM17B 0.8036912768
## MRPL28 1.1807322613
## ARFGAP1 6.9627111651
## C17orf49 0.7974059097
## ANO6 2.1873112062
## FBP1 12.8396526378
## SLC8B1 13.1214758947
## TRIM56 -0.9599562070
## NCOR1 2.3107238612
## BANF1 -0.2246542679
## ANKRD12 -2.4952852860
## OSM -2.6115345630
## FAM50A 0.8982188074
## LAMTOR2 3.1636286467
## STX5 1.3635425536
## LTBR 0.4487599792
## NOD2 -3.0209184763
## TDRD7 -2.5818146223
## PIP4K2A 2.4862522786
## RHOT1 -2.7560832088
## TRIM5 1.2425892716
## ATP5PO -2.9320938457
## SRF 3.8480783184
## FCMR -2.6565498665
## NDUFV1 0.0813404978
## NSD1 1.1593345504
## SPRYD3 10.9634150534
## PDIA4 -3.4005895513
## RAB11A -2.9012575148
## CGGBP1 -2.0603395765
## KDM4B 0.3083663465
## VPS51 3.0549625058
## DNAJB2 4.0065196179
## WDR82 -2.8089111585
## GTF3A -1.4957815222
## KLHDC3 2.8368715563
## SCAP 9.5272225303
## UTRN -0.5211698128
## MRTFA 3.9038531476
## RASSF4 0.0257304512
## STING1 -0.3799636028
## COPB2 -2.6936693035
## BCKDK 5.2921219351
## PPCDC -0.4124483992
## BAX -0.0314022002
## SBF2 0.3650687025
## GALM -2.5562682412
## ASGR2 1.0509038682
## UXT 1.4622420823
## SCYL2 0.0735571292
## TBK1 -0.1745259236
## TINF2 -0.9187299047
## MARS1 4.7986556800
## PLIN5 -1.1926855811
## TOP1 -0.4800771115
## ELL2 -1.2471693378
## TBCB 6.1584350446
## PPTC7 -2.1734264356
## RAB4B 3.9955277041
## PRKAA1 -2.3636965085
## HP1BP3 -0.8722915809
## PTPA -2.0648766970
## CLINT1 -0.4649734511
## ZNHIT1 0.2006328017
## ZFAND2B -0.5802083568
## NUDC 0.7605358934
## ENTPD4 2.3743472228
## COASY 3.6544184736
## PELI2 -2.8946037175
## CCDC12 2.8224700098
## LMAN1 4.1254199543
## SLAMF7 -2.8754588019
## COPB1 -2.5531708107
## SCYL1 5.1837080643
## HSPA1B -0.1792397845
## WBP1L -3.1287049839
## ERAP1 0.6382894036
## CYB5R3 2.8905791543
## BCL3 -2.9517106136
## CHKB -0.7157225945
## ARFGEF1 -1.9807263894
## EFR3A 2.7494811904
## MFSD14A -1.2685854740
## CD6 -3.6265193923
## SOD1 -0.4846200971
## AP2S1 -0.8829146574
## HCST -2.8582975919
## RASAL3 -1.6980263659
## FNDC3A 0.6069236783
## ARCN1 0.9147056228
## TXN2 -0.7893310568
## PNRC2 -1.9252855853
## HIGD2A 2.9866733472
## SPINT2 -1.6661142989
## LAT -1.8276709220
## CLIP1 -3.7219093731
## DGAT1 1.8579562134
## OTUB1 -1.1469904303
## NECAP2 4.9348215447
## CABIN1 0.2286416298
## RCOR1 -3.4310910048
## SRSF9 -2.3248224739
## CIC 10.4668642659
## ARSA 5.2220518585
## WDR13 4.0228551218
## NELFE -0.0549697555
## EIF4G3 -0.2287936844
## ZNF24 -3.3374808845
## CDC34 0.9146751517
## SARNP -2.5281011246
## LMF2 2.7562376409
## RER1 0.9461781306
## PITPNA -3.2903405582
## SLC39A1 2.1651141596
## PKN2 -3.4713741386
## STUB1 2.7241048181
## COL18A1 -1.6038570840
## SNRNP70 3.2399685487
## AIP 2.7136674371
## RIC1 3.3822287461
## ARHGAP1 4.9870088276
## SURF4 -0.3004486897
## H2BC12 -3.3670737026
## PPP1R12B -2.6388632130
## TAZ 1.2323132534
## ATP5ME -1.6064932036
## CANT1 -3.5313367846
## WBP1 3.5325518331
## PSMB6 -1.3060032544
## TRAPPC8 -2.4614643014
## UHRF1BP1L -2.7093042109
## NUP153 -2.8434382892
## FUS -2.2205087375
## RRP12 -3.3760098342
## NUMA1 4.0439055783
## BTAF1 -0.5993714855
## PHF12 -3.1841516367
## CD81 0.2560535572
## SIDT2 1.3833562565
## SSNA1 3.6785563373
## MMP24OS 3.1944046515
## MTURN -3.1457167437
## TOMM6 -1.0484310465
## B3GNT8 5.9885431646
## RNF38 -1.7803026674
## STMN1 3.2979486810
## PRR14L 3.2478241099
## PAN3 -2.5646437418
## HMGCR -2.2703606048
## SAP30 -2.7841141089
## SLA2 -0.4874498670
## SLC25A28 3.7333328227
## RPSAP58 -3.1343392238
## CLN3 -2.1523553647
## HERC6 -3.2595853180
## GIMAP1-GIMAP5 2.4392377731
## C1GALT1 -1.6074360318
## PAFAH1B1 -3.6929803493
## UNC93B1 -1.9274976868
## OXSR1 -3.1528020698
## RNF19A -0.2197972045
## NKTR -0.8910132699
## RGS3 -0.5666544284
## TRIM8 -0.8386587143
## BPTF 2.2662380457
## CSNK1G2 8.2595250202
## PTOV1 -0.8340965262
## NDUFB9 -2.0758653394
## MCRIP1 3.3005429816
## SEPTIN1 -1.7818973127
## INPP5K -0.4669145899
## TBKBP1 -1.7913021206
## PPP6R1 1.2505330380
## ECH1 0.8827674811
## NCOA7 -1.8586919560
## SLC44A1 12.8709531467
## RPS6KB2 -0.6388217556
## USP18 -3.4240828023
## MIIP 2.4773859409
## RSL1D1 0.5739004522
## TRIM58 -1.8742529341
## TMF1 -1.2588732689
## ABI3 2.3013853301
## HMOX2 0.8058812621
## GOLGB1 1.7706373789
## WDR45 1.4181941537
## PLEKHM2 5.7921141711
## HERC1 -0.8788467384
## FAM91A1 -2.8350736318
## CEP350 -2.0267894032
## FAM241A -0.5458341544
## VPS13B 1.1725321761
## CHD7 -3.4419915791
## SCARB2 0.3603684215
## KCTD20 -3.6260986890
## MTRNR2L10 -2.5849026911
## PSMF1 6.8953456074
## SMCR8 -2.4247058140
## ATP11A -3.5055236834
## ARPP19 -3.2528759390
## STK26 0.6147795840
## PARK7 -3.2639082460
## WIPF2 -0.5678614049
## G3BP2 -0.6878500540
## NSMCE1 3.1115054732
## SMIM3 -1.3479574660
## PARL 7.0900254353
## RUBCN 1.0548916528
## SIGLEC7 11.3908050910
## PDE7A -1.6396126415
## MIA3 -0.8796832425
## NAAA -1.4518271077
## PQBP1 2.0522783852
## ANAPC15 0.6221449337
## MAN1B1 -0.4289516687
## C12orf57 0.0974406436
## ATRX -0.3332958488
## BIN3 0.0383107664
## VPS4A 0.2840536379
## SULT1A3 -3.1036438414
## TMEM222 1.6822772892
## GPR132 13.6312864474
## AP1B1 1.5381061549
## ETFB 0.0937182513
## ATP8A1 4.7324977863
## AP1M1 8.7603869892
## CFD -0.1318317790
## LCOR -1.7954170357
## ZC3H7A -0.6824401779
## TRAPPC10 1.4161377197
## AFF4 -0.2982598832
## NDUFA11 -0.6860230516
## NR1H2 5.2936666952
## UBXN7 0.7153273472
## NR2C2 -1.7376585335
## SIGIRR 0.6372281219
## MAPK8IP3 17.8262688373
## PUF60 1.0598929561
## LY86 1.8329215256
## ARID1A -3.5016171809
## C19orf53 -0.0182234936
## CDK19 -0.5269295897
## CSRP1 1.3224587574
## BIRC2 -3.4063231637
## MCRS1 3.3650859818
## GIGYF1 1.1282065248
## AP1G1 -3.0762666815
## DNAJC4 4.8361384982
## UQCRFS1 -2.1030956800
## PHKG2 1.5050768151
## SUZ12 2.9607615963
## EML3 4.3406471440
## SLC25A11 8.8728678502
## EMC10 3.6412785986
## AGPAT2 3.5763052048
## FAM32A -2.6810650557
## APC -2.5431295876
## RETREG3 -1.8234682451
## CD38 4.1897409766
## TSC22D1 -0.8001387581
## EFCAB14 -0.7949612452
## GPAA1 3.0092590746
## LILRB4 -1.4350852284
## DCTN1 1.7500191398
## TRIM33 -1.1804198049
## STT3B -2.3269084758
## UBR4 -0.9713320166
## ICAM2 -3.3213334476
## FGFR1OP2 -3.0972190857
## NRBP1 -3.2713499315
## SPAG7 9.0781009585
## IDH1 -0.9960042953
## SNRPB -3.3016668646
## TEX264 1.7644120274
## AAMP 9.9020222958
## PSMC5 -1.7576909762
## SRI -0.8071034532
## PRR14 1.2281124445
## ABHD14B 0.1187016390
## OXA1L 1.6031474250
## IDH3G 4.9716796418
## SP140 -2.9487071119
## LMBRD1 -3.4823961819
## ATXN1L -1.6177794729
## FRY -3.0276812229
## TIAF1 0.1559885240
## HERC2 2.0407582235
## GALNT2 -2.6070181516
## POLR2J -1.3831830189
## SLC22A15 -2.0803778735
## IRAK1 -0.3826809883
## PDLIM2 8.1517197359
## TESC -0.0877623667
## STX4 2.5492489141
## CARS2 14.5367691685
## CLTA -1.8848397661
## TOLLIP 2.8728576100
## ESYT2 1.8004840197
## ZDHHC17 -2.1024622908
## APEX1 1.1578462963
## POU2AF1 0.0741585132
## SDF4 5.7943732441
## SURF1 0.1080677381
## ADIPOR2 8.1825807190
## NPEPL1 1.8824414681
## NUP58 -3.2218523930
## AZI2 -3.4536515788
## ODC1 -1.3884334642
## RANBP9 -1.9430608543
## RABAC1 -0.2301570531
## IDH3B -0.0451362566
## SAT2 5.5652032332
## PNN -3.3965435715
## PPP6R2 6.3518825668
## RBM33 -1.1744780604
## RBM25 -3.3895151769
## HDLBP -2.8632608058
## SRPRA 0.9980779874
## TCF20 2.8434343298
## CREB1 -3.7025167811
## SIPA1L1 -3.1408057268
## FMR1 -0.0774691065
## TMED2 -3.0477569872
## RRP7A -1.7232969609
## RFXANK -2.0827149570
## NDUFB10 -2.2672295297
## UBL7 1.0261140885
## RALGAPB 2.0652203089
## EXOC7 -0.3055516081
## COX6A1 -3.4020629935
## SAP25 1.7481353017
## STMN3 4.4027505879
## PRPF4B -0.4886276132
## SHARPIN 5.1510283307
## ATG13 -1.8138244266
## CALCOCO2 -3.6920592639
## ZNF148 -3.6463467923
## SLC26A8 -2.0046578324
## XPO7 1.8471919266
## METRNL 14.8591792407
## RBM4 -1.2210294530
## EIF3I -2.5741942842
## NAA38 0.7795846323
## CMTM7 3.3097435999
## HSD17B10 -0.1814597177
## USP33 0.5755694631
## CYB5R1 -1.8739322789
## TIA1 0.8614065614
## ARAP2 -1.4478631721
## BCKDHA 6.0026076480
## CNTRL 0.7592175295
## KIF2A -0.5164450106
## BIN1 0.1622316532
## MRPL20 0.8467302619
## SBNO1 -0.3048092905
## CCAR2 2.2239294313
## TECPR1 11.0133042119
## TOPORS -2.9653649783
## SETD5 -0.7926336258
## AKT2 6.6896254774
## KLHL24 0.5418313156
## TXNDC11 -0.9557588232
## BRD7 -1.4137627376
## WDFY1 -1.1310647934
## TMPO -2.1378718645
## SAMD8 -2.7980917097
## HELZ 0.4014742562
## RBM42 2.5206863075
## MYO15B -0.7808818155
## CBX7 -2.0355270823
## CCDC186 -2.1518271391
## ZFP91 -0.5524823619
## DGLUCY -3.3928373619
## TMEM250 6.1079871650
## PITPNM1 15.5016774377
## CAMK1 1.1438124994
## NANS 7.2964167469
## PTPN11 2.5033311555
## GGA1 2.7513233233
## UBE4A -1.9214183321
## PCNP -1.0378980267
## SNF8 0.1247403618
## PITPNC1 11.8173464289
## ATF6B 6.0659703754
## ANKFY1 -1.7422351835
## INTS11 1.7671141641
## PPFIA1 -0.7689047906
## GPS2 -0.6268724570
## LHFPL2 -1.0035816698
## DERPC -0.1175220012
## SPTBN1 2.0386439703
## SNRNP200 -3.1252884154
## TCP11L2 -0.9244763466
## TBL1XR1 -3.4176500937
## ANKRD28 -3.2934436812
## EWSR1 0.5296948651
## PET100 -3.6483259097
## DHX9 -3.0181734654
## SPCS3 -3.6223446160
## NEK9 -1.0427717515
## TMEM141 2.5768807322
## VPS39 0.7161958423
## YY1 -1.7533746050
## ULK1 -2.5197330505
## ATP6AP2 -3.4569752422
## ASH1L -0.5360255831
## CHPF2 1.8334793417
## AURKAIP1 -1.0997403425
## ADAP1 5.7394884068
## GNPTG 9.6088660128
## RNF187 -0.2728592434
## HVCN1 1.9244733592
## TET3 -3.2892460462
## LONP2 -2.7523627915
## ADORA2A 0.9400730583
## CDK2AP2 3.3877229967
## RENBP 4.0744163548
## USP8 -1.0142125228
## ADSS2 -2.5876651044
## ADD1 -3.4443707310
## PRPF40A -3.0381273449
## PHF1 -3.6025802226
## MEA1 -1.1409777176
## PEA15 -1.8047813943
## SIRT2 2.0038297752
## SLTM -2.8540853436
## RTRAF -2.3439156513
## TSPAN33 -3.5783577150
## RSBN1L -3.1864535430
## BBX 2.7543746425
## RB1 -0.4870352013
## KRTCAP2 -2.2639484237
## RNF31 -2.7244491841
## CYC1 -0.3541368750
## FHOD1 2.8569676622
## NAA50 -2.5888690088
## HGS 1.2229342268
## COQ8A 1.3552419657
## FCHO1 4.7347279319
## FRYL 1.8899869593
## ANP32E 2.9095426538
## SIRT7 -1.0352335269
## CYB561A3 3.9978970765
## FLCN -1.4731207166
## RC3H2 1.1696352633
## SMAD2 -0.8722171596
## MTHFD2 -2.3784826822
## HK1 -3.7072052130
## DHFR 3.0480578581
## DPP8 1.3002406982
## ZGPAT 7.7320220974
## AVL9 -1.9461574605
## RCN3 5.5322849653
## SPEN -2.7397622052
## ZFC3H1 -1.7874323401
## AATK 1.5556897003
## CLIC4 2.6803851516
## ME2 -3.6766730341
## SRGAP2 0.0243472983
## NDUFB11 -3.3866696289
## BICRAL -2.0087651918
## PSMC3 -1.5582892306
## ST3GAL1 -1.5012244573
## CCDC93 1.8547348988
## MAP2K1 -0.6853756433
## PCED1A 0.7563024063
## ZZEF1 -2.5636648576
## SLFN11 0.5477884278
## ZRANB1 0.0964665689
## HECTD1 1.0725545430
## DAD1 -1.6295114719
## BABAM1 -1.1944932906
## BTN2A2 2.0367986633
## USF3 0.0415004429
## C1QA -3.1285182095
## NUDT4B 1.2133965830
## PHC3 1.0113632297
## SOS1 3.7238341048
## RNPS1 -0.9384313952
## LILRB1 -3.0613347408
## PLSCR3 0.9832536517
## NDUFB2 -2.3249569168
## RPS19BP1 0.2921685011
## C2orf88 1.3372415270
## PSME3 -3.3151035013
## SPATS2L -3.0210567086
## MDM4 -0.6938215008
## RASA4 1.2869472125
## ZBTB37 -1.2065748493
## RNPEP -3.1057635527
## USP24 2.2684123950
## PPDPF 1.1002590943
## CDC26 -0.0493184611
## CUTA -3.4064777163
## CHUK -2.9414186726
## DDX21 -3.2602349154
## GTF3C5 0.8197189224
## ELOF1 1.9977878784
## C20orf27 -2.0893012589
## CDK14 0.7064942494
## LSM10 -1.8865680327
## RHBDD2 -1.7764494391
## POLR1D 1.1683053450
## IMPDH2 -0.3573781999
## KCTD2 -2.1059869072
## ZBTB38 2.5040018327
## ARPC4-TTLL3 1.6506295358
## CDK17 1.6745454866
## OSTM1 -3.7279954729
## TBC1D1 -3.4232160706
## KDM6A -2.6164208898
## JADE1 -1.6708823033
## EAF1 -1.1780808936
## HLA-DQA1 -3.6289676023
## U2SURP 1.2019921018
## RABL6 1.3063601330
## NDUFB8 -2.3579911950
## SAP30BP 0.5926186575
## CD7 0.1564228704
## C9orf16 1.7774122333
## HEATR5B 3.8892495335
## NDUFA3 1.5144730388
## RHOF 0.7187567019
## INPP4A 0.9130291375
## TFDP1 -1.6842718660
## NDUFB7 1.1596639535
## FBXL20 -1.0995019791
## ANAPC13 -1.4756395758
## SUDS3 0.6211680523
## SEMA4B -2.7428313452
## NAGA -1.4703568065
## UQCR10 -2.0440873420
## CLCN7 2.2674887664
## BRAF -1.4758853001
## BCL7B -0.8069598360
## AKAP8L 3.0219666344
## GIMAP1 2.0536495903
## AP2A1 10.6603171966
## E2F4 -1.2395230093
## DYNLL1 -3.7162248200
## TOX4 -3.3570243222
## FAM78A -1.5719442238
## MAL -0.2287543674
## MED15 3.8771971821
## UBTF 0.3296874276
## C11orf68 -2.6798728074
## ABLIM3 0.1453723311
## ADNP -0.0280215545
## B3GAT3 1.5727074251
## ROCK2 2.4074347152
## ZNF207 -3.1854548768
## CUEDC2 2.3556688362
## PALM2AKAP2 10.2400013352
## DENND4B -0.5423009128
## DBI -3.5294279681
## CEP97 -0.9679437813
## NOTCH1 -3.6460592166
## GBGT1 21.4040252974
## BCL2L11 -3.4871018406
## TOPBP1 1.2928326972
## VRK3 -0.4682111517
## CASP3 2.5904698379
## ATG4B 4.9909473914
## SH3TC1 10.2304243631
## RANGAP1 -0.3539397076
## VAMP1 0.1237884305
## NAA10 1.1194250328
## HPS1 -2.2799436798
## BRAT1 10.9769032746
## ISY1 -0.0370541839
## TOR4A 8.5402317589
## VPS37B -2.3366674890
## DNAJC8 -1.8049450011
## ARHGEF12 4.5836138246
## TRAF7 8.2358102741
## MYBL2 -0.5603184227
## TNPO3 -3.7115740345
## IGBP1 -0.4719740578
## TMEM205 0.6828059862
## SMC3 2.7552407068
## NDUFC2 2.7339476447
## FAM53B 0.2875402835
## SYNRG 1.5599284681
## ATP6V0C -3.7000867866
## TSSC4 1.5865318937
## NSF 3.2710947842
## RAB11FIP4 -2.9837103455
## ARIH1 -0.1937615506
## ACLY 1.0040716277
## VPS13D 1.5222655831
## HNRNPLL 6.1376346972
## NCOA6 0.3874568730
## NFYA -2.7218715803
## UGGT1 -2.0542476757
## NRAS -1.0055532227
## ARRDC1 7.2016066926
## PLD3 -0.4508029457
## CWF19L1 0.1515205261
## SGTA 5.5913958050
## HIPK2 -2.1081004650
## ARFRP1 3.7097608821
## SLC38A10 -1.3950068602
## USP20 0.2726704918
## IREB2 -0.2531952076
## MYSM1 0.4829038204
## RAPGEF6 -0.7870919281
## WASHC2A 0.2446098643
## TMEM115 6.0359218676
## TRADD 0.5588743410
## DHX15 2.9519770548
## CCS 2.2966719625
## IRF4 0.4540418728
## AKAP10 -2.0762627031
## TNFSF8 -0.6494093807
## SLC2A6 4.7590612841
## CPSF2 0.3532840976
## INTS6 -2.9454213710
## NCAPD2 7.7520691393
## INTS8 -2.2301973240
## PURB 0.4813317176
## GLS -0.9450622127
## CERK -1.1690684352
## RTF1 -1.2242150929
## KXD1 0.3652874078
## BCL7C -1.4135433770
## VPS18 -1.3531399143
## POU2F2 -3.3416493209
## SGSM3 5.0564040489
## PRUNE1 1.4795601381
## GALNT7 -1.9209771261
## FRG1 3.2385219859
## GNPTAB 0.2785442078
## ATP8B4 -3.0596315906
## MCFD2 4.0150484222
## SNRPN -3.3566842369
## STT3A 0.2804104288
## EIF3B -2.6830582567
## DCTN3 -1.6153279630
## HS1BP3 -0.4475614429
## UBE2G1 -1.3248432225
## TRAM2 5.6372185251
## HSPD1 -0.8160652177
## SESTD1 2.3221636682
## JARID2 -2.4792692847
## EPC1 -0.8593689853
## CLEC2D -3.5918441683
## MED1 4.4185077847
## CPEB2 -2.0243413900
## MXD4 3.4437704171
## HIRA 6.9988283202
## CYCS 2.7863133107
## LYL1 -0.3450030208
## PARP6 3.6427344729
## UBQLN1 -3.1662008458
## SGSM2 10.7017077877
## RBBP6 1.3581782979
## PYGB 0.8034372243
## DNAJB14 -2.4206219237
## IRF5 -3.0642350872
## KDM1B -2.3783860668
## ABHD17A 6.8816325118
## SRRT -0.3672799780
## CD226 0.4634388511
## EIF4E2 0.4088286711
## LTN1 0.4506129578
## PRDM2 -2.8845170765
## RIPOR1 7.9486848866
## GPATCH2L 0.5093678504
## ABCG1 -2.9167367228
## RBM10 3.9793223555
## SCP2 -0.2014223860
## PDS5A 0.1266491404
## RRAGD -3.5870997035
## CD300C 8.3918978381
## MCM6 18.7780738730
## DGCR6L 0.4133968552
## PCNA 2.2825968996
## GADD45GIP1 -1.9248168723
## SRP72 0.2468150457
## PES1 1.6515481163
## SGSH 3.5350030871
## SH3BGRL2 -3.6242955730
## SH3GLB2 -0.4751739411
## RAVER1 0.8289706732
## FBH1 10.9395008681
## CORO1B 0.0084714804
## KANSL1 -1.3955330728
## NIBAN2 1.5382801703
## DUS1L 0.3106875015
## MKI67 10.1869148888
## USO1 0.8780909314
## FCHSD2 -3.4498168519
## TAB3 0.3035651006
## GPS1 0.5155222846
## CHD8 -1.7463741459
## SMC4 8.3515791400
## KCNK6 3.8905431524
## TECR -3.5673467403
## SPCS2 -0.8487696238
## TMED10 -3.2490353052
## FAM13B -0.8086267130
## MAN2C1 -3.3487660317
## TEX2 0.4103574416
## TBC1D22A 8.0412648540
## AATF 3.5970794001
## FKBP11 -3.3341147665
## HNRNPR -1.3730438142
## PDAP1 -2.4522505475
## AP3B1 -0.9630367950
## ZNF316 0.8704970856
## MR1 -2.7404100301
## AP5Z1 4.3746576806
## YWHAQ -2.8175501127
## SEC13 -1.0273116212
## KTN1 -1.7919164965
## FASTK 0.5187522848
## POLR2G -0.7165722417
## ANKRD17 -0.5123928764
## ZER1 -1.5652331219
## DNAJC7 -1.2326623317
## FIBP -1.0263606534
## BORCS8 1.5063371253
## ST6GALNAC6 -1.4491600429
## SUMF1 7.9441891676
## GCC2 -0.7593138377
## GRAP 0.9290607064
## GET3 -1.9958302495
## DUSP22 -2.7174227669
## NSA2 -2.2010056083
## RO60 0.6992768684
## PSMD9 -0.9915383177
## TRPM2 -2.3090807935
## EIF4EBP1 1.5940280598
## TYMS 7.2184283619
## SPG7 2.5466142941
## GGT1 1.4178645244
## MEPCE -1.7303071309
## UBAC2 -0.0029955126
## URM1 -0.1597402878
## PIP4K2C 7.7255605881
## FCER2 4.3969534840
## ANKZF1 0.4002724733
## TNRC6B -2.9664848201
## EDC4 1.4509983397
## MGAT4A -1.7947834316
## POLR2C -0.4641830008
## WDR48 1.2925256260
## MED22 10.0590069636
## FAM110A 1.8805327350
## PTPN22 -3.0271945911
## ZBTB44 -2.6029885417
## COX8A -3.6031076830
## TFEC -3.3561870524
## KDM5B -2.2189090131
## ADRM1 2.7948364231
## GLYR1 -3.3771833496
## WWP2 -3.7012957346
## GNA15 1.8160145612
## ST14 1.9917548411
## RBBP4 -1.5073458129
## TRPM7 3.5204353448
## PCIF1 0.2085778564
## FEM1B -0.0478032902
## GPD2 0.7327945790
## VPS25 -0.1474151150
## SMARCA5 -1.9850557272
## UBAP2L -0.7730359834
## IRF8 0.2913310630
## AGAP2 -1.8635199138
## UPF2 -2.4557328092
## STK11IP 12.7209332926
## PLEKHJ1 -2.4275911985
## TCEA1 2.9754341029
## TENT5A -1.5668229879
## TRMT1 0.9452915283
## EPC2 -0.1155540024
## ZDHHC12 2.5780378119
## FUNDC2 -3.1766008432
## MPDU1 -2.6276990159
## PIK3CB -3.3516286841
## FBXO34 1.4464960733
## PANK3 -0.5216268843
## HSPB1 -0.2013824792
## TEPSIN 0.9612892014
## MAML2 1.7617893111
## CHTOP 0.1295749901
## SBF1 0.8743827294
## AKR1A1 -3.0891350308
## PCNX3 0.3462208783
## PPM1K -1.2950254837
## PIH1D1 0.4646433067
## TMED7 -1.9764092137
## PPCS 2.4671324887
## MAEA -2.7767387929
## H2BC5 -1.9486838684
## CYSLTR1 -2.7022930528
## GPR107 -2.4794463047
## KLF16 7.3240239615
## RAB11B 7.5950772456
## RPS6KA4 1.7477189924
## C12orf75 3.9253944368
## C6orf47 -0.2215844821
## COQ8B -1.5874429939
## NUDT22 6.6204257393
## BORCS6 2.1707811118
## INTS1 4.7243309337
## TOP2A 8.6806325899
## TNIP2 1.4818552952
## MED12 -1.8680091394
## EXOC3 6.2853216414
## SNX19 1.3725715168
## RNASE1 -2.5685268643
## CDK12 0.7347670681
## STIM1 -1.5632566747
## TRMT112 -3.3906139616
## TLK2 -0.7353034904
## CALU 4.2075971878
## ABCA13 -2.7957992992
## TRPM6 -1.3020116011
## MAD2L2 0.3381594693
## TRMT2A 2.2891389473
## GFUS -1.7360931654
## ADPGK -3.2334892324
## TBC1D5 2.3826329106
## CDK9 3.8125773418
## TOR1AIP2 -2.8832503273
## NINJ2 -0.1535525794
## INO80D 2.0862206114
## PIGT -1.3622067691
## POLE4 -1.3267264726
## PI4KB -2.6334138534
## LPP -2.7840562475
## VEZF1 -3.7148984839
## ST13 -1.4717123835
## MRPL54 -1.8837153204
## CD99L2 1.8969983563
## TTYH3 7.7942609893
## SLX1A 0.3671125039
## ORAI1 -1.9642279432
## SIK3 0.7750792648
## ARNTL -3.4107152504
## NXPE3 -2.5856892009
## HMG20B 1.5760040417
## MOB2 -3.0511791786
## DMTF1 -1.5323708388
## ANXA2R -0.3967995640
## MFAP3 -1.3504378559
## CLNS1A 2.3543862452
## ATP2A2 -0.1302698060
## ZBTB48 1.2241726768
## KRI1 1.9886009481
## SMIM12 1.4397249165
## TBCA -2.0400359403
## ARHGAP21 2.7448696863
## LPCAT3 -3.6421164597
## TM9SF3 -3.3537683089
## NPLOC4 -2.7300841096
## CHMP6 4.7089531041
## C2CD5 -1.1706877985
## MON2 0.3295159516
## SEC31A 0.8594023541
## XAB2 1.5407610302
## ATP5F1D -0.3592314799
## CLEC10A 1.4106839877
## LSM6 8.0852660842
## RAB3GAP2 0.6325319019
## DCAF7 -1.1788710996
## KCNQ1 6.1365246577
## MBD3 0.7108172758
## PRMT1 -2.7573164744
## ERLEC1 -0.4166228071
## SND1 -3.1998252269
## NDE1 -3.2174168222
## STK11 0.8363325522
## DGUOK -2.2371412339
## PAPOLG -0.5392596015
## SUPT16H -0.4216718492
## CAPRIN1 -0.9441565736
## POGZ 0.0725924510
## TAPBPL -3.1182745979
## PAXX -0.3445718848
## ZNF710 5.2164842458
## MIB1 -0.9922376700
## ATP2C1 4.9995426881
## POLR2L -0.7656351102
## EIF4E 5.9292112072
## PEX6 -0.4470351302
## U2AF1L5 -2.2995429723
## GABBR1 -2.5356900574
## SMIM29 1.8590046582
## XPOT 5.2083524531
## RNF6 -0.3659833725
## MAN2A1 -0.0014330603
## CLASRP 2.8275324057
## CBX1 -2.0445141907
## YWHAG -2.7800713172
## PIN1 -0.0241988399
## HSPA13 2.5342054488
## NUDT4 1.3391962693
## BAZ1B 2.2825028483
## FUBP1 -3.0290226359
## UBE2M -1.7857253902
## BRWD1 -1.4012307957
## RLF -3.4451681916
## SKAP1 -2.4123659421
## RNF40 -2.7468834688
## RIPK3 0.5048703643
## USP48 4.3716048294
## C11orf98 -2.7976050591
## HPS6 14.1177406502
## B3GALT4 2.8251262801
## FAXDC2 -0.0939891929
## MICB 0.6616207622
## USP1 -1.0336174965
## ELOVL1 -2.8735039022
## FKBP2 -1.3051612539
## CCND2 -1.5304492838
## GNL1 -0.1614824411
## PIEZO1 -1.6336501775
## SLC30A1 -3.6097288343
## TFRC -3.4837406929
## RUNX2 -1.6209310543
## ERF 5.2701706645
## PPP1R21 -2.5699772728
## OSGEP 5.0816562479
## ARNT -2.5097786130
## KPNA2 11.5483962914
## ZFX -2.5117826708
## TPP2 -0.1694976236
## ERCC1 3.4904620222
## EPRS1 -1.2787788864
## CERS5 -1.0232147203
## ATG101 0.7734864972
## MAT2A -3.5361319021
## TBC1D20 2.6896502423
## XPNPEP1 2.7881356695
## ZDHHC5 -2.9850829058
## RFX2 -3.0646626860
## GATAD2B -3.0240957854
## BRPF3 1.5100480752
## STK25 1.0335466463
## H1-10 -2.8517450038
## DTX2 1.7880288189
## SRGAP2B 1.0764843263
## G6PC3 4.3262945237
## ALAS1 -1.5968554868
## PTPRA 0.2759583993
## TSC2 3.1188572220
## CDK10 -0.2683354909
## TAF1 -0.1571612310
## SMCO4 1.1841277187
## MTMR4 -1.8741806990
## GTF2A1 -1.4304481828
## HDGFL2 9.5735719564
## DCXR -2.5693147755
## DCAF5 -0.5281249270
## NF1 -3.2434893887
## SLAIN2 -0.7956600970
## ENTPD6 -0.3178933500
## HAGH -0.5046641532
## CEP170 -3.0739472815
## ZNF692 1.2086763261
## PAGR1 9.1763212623
## CCNT1 -0.8217764133
## ITFG1 0.6120807587
## ZNF276 -2.9253466910
## TOMM22 -1.4397288095
## STYXL1 -1.8306839317
## MRFAP1L1 -1.2064592389
## SUGP1 7.2403971441
## USP5 -1.6198875321
## CUL1 -2.1144997548
## CTDP1 -0.2503410710
## SNRPD3 -1.3017502755
## SATB1 -3.6501028045
## SH3GL1 0.7500223296
## FAM199X 0.1997074587
## SUCLG1 -3.2543561395
## DNAJC10 -2.7012489118
## VPS16 -3.3370612804
## PRPF31 0.9999666978
## TNFRSF8 11.6381885037
## GAK 3.1224254798
## ATOX1 -1.5856209920
## FZR1 2.2613516472
## SPTY2D1 -2.5903697332
## CDC27 3.3225947914
## NAA60 -0.8266333844
## TMOD2 -2.8433744508
## MSRA -0.3523971106
## SLC24A4 -3.4770298268
## DYNC1LI2 -1.1753217231
## YPEL2 -2.1861786970
## ARFGEF2 3.1769516303
## PAF1 -2.2873504562
## TUBGCP2 3.1142254528
## GALK1 2.3710612963
## TRAPPC12 11.6823578015
## FAM102A -2.9734039729
## CCDC107 -0.1144436160
## SNTB1 2.5501710385
## UBR1 4.8118375303
## RNF114 -3.1608008799
## SLC35A1 -2.4279858577
## NMRAL1 0.2283006976
## ATG2B -1.3597607800
## FLT3LG 0.9710656355
## CLCN3 1.5702497706
## IFFO1 6.4405747210
## CYHR1 4.4773555975
## NDUFA2 -3.5015145917
## UBE3C 2.6379881829
## LSM7 -1.1815863569
## CXCR5 3.5769090450
## SELENOH -1.1441638320
## RABEP1 0.8515900166
## C7orf50 3.6261269759
## FOXJ3 0.8209717017
## JMJD8 -0.0388046302
## NAXE -1.6338123235
## TRPV2 -1.3909841839
## ITPR2 -2.5333507205
## CDK11B -2.4276436998
## TARS1 4.5246243486
## MED11 4.4162819958
## PRKAG2 -2.8658468002
## PLXND1 -0.8379469274
## TMEM203 -0.3607667564
## SLC35A4 -2.6682976422
## COMT 4.9040494762
## C21orf91 -2.7225002833
## STX8 1.1082669089
## NELFB 3.1093301223
## TBCD 2.1011487004
## CLASP1 -1.5181039259
## ANAPC1 3.1057299695
## TARDBP -2.1196393137
## FRMD3 3.1481355209
## CTBP1 -1.4716879646
## R3HDM2 -2.6671834106
## OXLD1 3.7039834514
## GRHPR 2.9968502656
## AGAP3 7.0951562270
## SMDT1 -2.4844845916
## MRPS34 -0.6844533954
## GTF2F1 1.1307435065
## LMBR1L -1.3012020224
## PNKD -1.3782483178
## HDHD5 5.9037127573
## NISCH -1.3474644001
## CLN6 -2.4593950222
## RECQL -1.1565544914
## MCU -1.9015993974
## BMPR2 2.3643746061
## MAP4K1 -3.6015469060
## BAP1 -2.7837502397
## PRELID3B 0.8087080185
## CNOT6 2.8900736713
## UAP1 1.6761953515
## CCT4 -3.7241190304
## CCDC22 3.5460411729
## ZDHHC2 -2.4650043013
## TMX1 -1.2219109940
## RELB -1.6507771546
## CEBPZOS 0.2830271490
## ZRSR2 6.2423457898
## VDAC3 -1.0214037045
## ANKIB1 4.2427825706
## PLA2G15 4.5521794827
## ZBTB22 3.4570187484
## PRDM1 -3.6590586272
## HDAC3 1.3730246938
## SUMF2 -3.3753455142
## TIMM8B -3.2250047057
## MRPL24 -0.0930285486
## PMVK -0.9463619073
## CCNT2 -3.3916399320
## CAMTA2 -1.9426351618
## HINT3 -0.1131679172
## B4GALT4 -2.8526997100
## SLC35C2 -3.4372167648
## TBC1D10A 10.7019084683
## SLC25A29 1.4718531883
## RBM12 0.6644748431
## SREBF2 -0.7658786260
## LIME1 -1.7645638071
## CDC73 -2.5472532228
## MTMR1 -2.7508817541
## NDUFS1 3.8465504522
## COMMD7 -1.8494104440
## VPS26C -3.0770524829
## NACC1 4.4538870530
## POLR1H -1.1370504448
## RIC8A -2.3259191849
## ETNK1 -0.6674344257
## RELCH -1.7200785215
## RANBP3 5.0872176941
## SFXN5 1.5484344965
## DDX41 -1.7385961962
## SERTAD3 -2.0730179984
## SENP2 0.5456817786
## PRCC -1.3050683513
## ANO9 -0.4972287133
## MRPL11 -1.6931820470
## SMC1A -2.5313370735
## ASL 0.2280585537
## TXNL4A -0.9905650473
## LARP7 -1.0247874512
## OXR1 -2.2773004590
## PPP1R7 -1.5349630979
## WDR46 -1.0383193875
## DHRS4L2 0.7979900367
## MTOR 4.8772497303
## NDUFS6 -2.2649124949
## DYNLL2 -3.5233636859
## SIN3B 13.3360040660
## CINP 2.2911704288
## TTC17 0.0712456722
## ARID1B 2.8137751773
## ZNF333 -3.5309557502
## ATRAID -3.4603257153
## MED16 1.9127745732
## TRAF1 0.8582572897
## GIT1 -0.4585712046
## GON4L 0.8093249758
## PDXDC1 2.9417375717
## MARCKSL1 -3.3634694543
## DENND4C 1.5879769115
## NECAP1 -3.6633187340
## GOLGA4 -1.6421586267
## MTIF3 -2.3302406225
## CD5 -3.3207310916
## SEC23B -2.0217972576
## LYSMD3 -2.1743596658
## GET4 2.5595802225
## TTN -2.5315763954
## NUS1 -0.2833069398
## SELENOO 2.8920547148
## MRPL23 -2.0981693831
## HSD17B4 -2.6332347531
## DCAF10 4.6483186653
## ATG7 -2.3714074737
## GPANK1 -2.2565989289
## MCM4 12.7003527263
## ECHS1 0.9706133205
## SRSF4 -2.3477960949
## CENPT 0.0744431892
## CCSER2 1.1971595017
## PBRM1 0.2296077665
## MFSD10 1.4913114301
## SEC24A -2.1166123849
## USP16 0.7444921787
## TRAK2 -0.6996277642
## KAT5 1.0805775460
## ZFYVE26 -0.0853833040
## ZNF254 -1.0404248243
## TAF8 -0.3838960498
## NNT 4.2894849635
## COMMD9 -0.4255414571
## APPBP2 0.2920820507
## NLRX1 -0.7771128464
## STARD3 -1.5754574198
## NOC2L 2.8060537119
## BDP1 2.5892700783
## ETHE1 -2.0570169146
## DGKQ 6.6256825166
## ECHDC1 -1.6752457360
## SYNCRIP -3.2909521641
## FAM214A 0.8506506938
## POLRMT 2.4831352051
## CNOT7 -1.6647717956
## ZNF664 2.7506271142
## RFX5 -2.1729499270
## SLC27A1 7.5796358540
## CNOT3 -0.6487587157
## GIGYF2 -1.5300375855
## ZNF622 0.5819634871
## MYC -1.3122184641
## MNT 7.6024896699
## ACP5 -0.2560278582
## OTUD4 1.0348007013
## GPR162 2.6483833656
## TP53I13 2.7110548886
## KIAA2026 -0.4891040082
## LDLR 2.5246304151
## RWDD1 1.2458448535
## SF3A2 2.5737602107
## CIAO2B -3.3471586255
## UPK3BL1 -3.1132574037
## SRBD1 -3.3008778448
## RAD23A -3.3595526259
## PPP2CB -0.3820300695
## PNPT1 -2.6343199944
## FNBP4 -1.8459394775
## SF3B4 7.2049200862
## ZBTB11 -1.5305638091
## HMGCL 1.3010059085
## COMMD5 3.5845982057
## YIF1B -0.2439080341
## PHACTR2 -1.0275476273
## MYLK 0.5134324192
## RAB34 0.4796479579
## CEP85L -1.2536094796
## EIF4G1 -3.6256630552
## RSF1 1.6048860039
## FAM234A 5.8733888124
## SELENON -0.8313159579
## ZKSCAN1 -1.3929993723
## LATS2 1.8022663750
## ACSS2 -2.4137798991
## TP53BP2 -3.0662179042
## DHRS4 1.2344555883
## EXOSC4 -3.3226035824
## CTNNBL1 -1.3110504753
## FAM168A -3.1426827339
## DHCR24 5.9734356823
## FBXW11 -0.5021068339
## ACADM 6.2188324473
## PARP15 -1.9721228698
## ATP6V0A1 -3.3007042208
## MAN1A2 2.0118529408
## MAP3K14 2.4139067118
## NFKBIE -0.6226899473
## SLC2A5 -1.1623608013
## TUBGCP6 -0.9748254958
## KPNA5 -2.3598008896
## AKR1B1 -3.2719034099
## EXOC5 -1.4984401018
## TMEM129 6.1172733583
## ARSB 5.2657467129
## MICOS13 0.7568441251
## CDK16 -1.9286963763
## LSM8 1.4923151473
## SIL1 0.4964483145
## MATK -0.9623694450
## PRPF19 -3.3276414107
## ZBTB7A 6.8685491147
## SECISBP2L -2.9549226293
## LSM4 -0.5321103117
## CUEDC1 9.1731414341
## E2F1 -0.2803376461
## RASSF7 -0.2158674839
## NDOR1 0.0214390355
## FBXW4 -0.5442610537
## PEAK3 1.4105918452
## PAICS 5.0730607064
## NDUFB5 4.4269191394
## MIS18BP1 -2.7236882570
## RRAS -2.2222044997
## GNL3L 5.8290163000
## MTRNR2L3 0.9464537682
## UBR3 -1.3806814018
## MRPL38 -1.4398601850
## PEX16 2.2676974470
## SLFN13 10.7234645651
## C5orf51 2.5904235342
## KPNA6 0.2394479919
## AKAP9 -2.3842325061
## TNRC18 -1.3636928683
## UBE2J2 3.0386308112
## DDX18 -2.1622435686
## FAM76B -2.6967462117
## NSMF 8.3543657515
## ESRRA 4.2938614964
## PLEKHM3 0.4707395396
## TRIM26 -1.5258855156
## ARL5A 1.8520975540
## FRMD8 -2.4676721791
## GPATCH8 -1.1772974241
## IPO7 -2.0643584388
## EMG1 -2.9958570338
## MIF4GD 0.0283000009
## SPNS1 6.4048972076
## DPM2 -3.4258270244
## EGF 1.3597065299
## ARHGEF18 -2.8843669649
## PDZD4 -0.6632871338
## AGPS 0.9004220351
## DAGLB 2.2348856962
## MIGA2 -0.7341260416
## DRAM2 -2.3006488416
## EHD3 -0.1401626386
## REPIN1 3.0218682430
## INO80E 4.5366680807
## CLEC5A -3.5539443332
## STX17 1.8660780687
## SH2B1 2.5886818295
## EPHB4 -2.7064359763
## KCNN4 2.5634719590
## ZMAT5 -0.4315048321
## CPSF1 -2.6860661167
## PSMC2 -2.5754352497
## LRBA 1.1073738043
## MYG1 4.8108615718
## XRRA1 -2.9876120064
## DNAJC14 0.3151121169
## SEC63 -1.3851884639
## FYTTD1 -0.6013176160
## ZNF865 6.9596737833
## ABCC4 -0.4379648621
## CS -2.1689268165
## NDUFS3 -1.9096380880
## DCK -1.1728718280
## PIK3C2A 1.9043605991
## RINL 1.3998813289
## SNRPA -2.5146138597
## TTC37 -0.9309895450
## POLL 2.6066079208
## RCOR3 -1.6530874003
## SLC35F5 -0.7580333270
## TAF15 -3.5561748857
## ZNF672 -0.6378160111
## METTL26 0.4026516838
## SRP54 -1.9525706741
## HAX1 -3.5395954260
## DHX40 -2.2508314041
## GCC1 -2.7492383203
## RTL8C 7.0395578526
## NUDT16L1 2.0153288164
## ATAD2 10.7266147986
## MAD2L1BP -3.0512751791
## TESPA1 -3.3982445685
## ATAD2B 0.2077063564
## KMT2A -2.8712921509
## CDIP1 0.4153003147
## YKT6 -3.6509187941
## H2AJ -1.5873197414
## NDRG3 -0.4911925520
## SNTB2 -1.4740221192
## RXRB -3.7272866023
## SNRNP35 -1.3674896908
## SCAF8 -3.4009021742
## ZNF581 0.0749734706
## CNST -0.1805534738
## RBM27 -0.1387855589
## MINK1 -3.2916175157
## DENND4A -1.3971844956
## TNFSF12 -1.6860991320
## NRIP1 -1.4708457060
## RASA4B 1.6406912416
## GALNT10 1.9812632777
## C2CD3 2.9408370423
## FAM3A 2.9865150421
## ECPAS -2.9214836337
## PUM1 -1.6826145605
## RPAP2 2.8678157786
## OTULIN 0.7317201066
## BLZF1 -0.4828363554
## ELK4 -1.2567599792
## FPGS 1.3579090910
## NUP205 2.3358370795
## WDR81 0.4995235299
## STRADA 0.4481305901
## NUSAP1 8.8177085679
## CCDC9 0.8201607862
## EID1 -3.3433094361
## TNNI2 8.8542102870
## KDELR1 -2.5251671431
## NRM 2.7102785851
## XRCC1 6.4010201413
## UBE2E1 -0.8309696643
## SLC25A1 2.5758901034
## BABAM2 4.0296152322
## TPCN1 1.2626223712
## CDC14B 4.1817945119
## HNMT 1.0250688016
## TATDN2 -0.4189580234
## MPG 4.0254795239
## ZNF518A -2.9214936652
## DERL2 -1.9337606957
## PCNX4 -0.8632252200
## CEP192 -1.2202214185
## TCOF1 -0.9296343572
## LEMD2 1.3804310232
## PRKRIP1 1.4931657121
## CARD19 -1.6919446200
## TBC1D23 -2.8119006405
## ARMC7 -1.6039099942
## AP5M1 -2.8067347300
## REEP3 5.1196065457
## GFI1 -2.6158847192
## MED23 -3.5393383296
## SDE2 0.4323197361
## VPS13A 2.9858985065
## MOGS -3.0880722451
## GPBAR1 4.1247987677
## SLBP -3.2654711515
## ATXN7L3B -2.6016162774
## COPS7A 3.3288739049
## CXXC1 -1.0415488911
## PLD2 10.6128137171
## CAND1 -0.5786768266
## SUGP2 -2.3070862944
## CDK13 -2.7046415799
## COPS2 -3.4391210309
## KIAA1958 1.8248145333
## WIPI2 -3.2050025834
## RBM15B 3.2921584033
## ANXA4 -0.4324629713
## PATL2 0.4717007346
## C19orf25 3.1471337770
## LONP1 0.2526021336
## PPM1G -2.7629337039
## HNRNPA0 -2.4971355648
## ABCF3 0.5443954165
## IARS1 0.6764783159
## TMX3 -2.8411536044
## OVCA2 -0.4560583731
## SIRT1 -2.2346087287
## PPIL2 0.9962354178
## DIP2A -2.3730866475
## NCK1 0.3041410653
## ZNF32 -1.1377678767
## PNPLA1 -3.4596583553
## PPP1R14B 1.8577061008
## ZEB1 -2.0785535026
## UHRF2 3.8047832242
## ZNF318 -2.4251822178
## MPHOSPH8 -3.2891801524
## SREBF1 9.1562550743
## SYMPK -1.2424321308
## ZC3H15 -3.6262792295
## MORF4L2 -0.0753841008
## RNF185 -3.7263552878
## ZNF524 7.0397138705
## RPA2 -3.5351153063
## LEMD3 -2.7198531466
## NHSL2 -3.6265231400
## SCRN2 4.2515216094
## PHKB -2.4494136105
## TRAPPC5 -0.9942685781
## DCAF15 6.6392938881
## YEATS2 6.4920413610
## POLM 7.2283401300
## SPOUT1 -2.5403924815
## ACAP3 0.4184705181
## SIKE1 4.2550985712
## NHP2 -1.7274355478
## DMAP1 0.9031323347
## EIF4EBP3 3.5281098060
## ZSCAN29 6.4242278701
## DNAJB12 -2.1925975919
## PSMG3 1.4823703507
## REV3L 0.3097659715
## RCHY1 -2.7269165622
## MCM3 -1.6377653843
## ASMTL 2.9388257940
## HMGCS1 4.1936422750
## GART 3.8126380180
## SLC39A9 -0.8346265113
## RIF1 -0.3271044525
## PMM1 0.0932259629
## BUB1 6.6497960358
## CREB3L2 2.5544155457
## EIF2B4 0.3333629842
## PDZK1IP1 -0.9728535012
## ZC3H13 -2.8197696895
## GAPVD1 -3.3178677607
## PITPNB 3.7042611705
## IL11RA -0.2589087581
## ARL5B -0.9057790379
## VEGFA -1.6271102308
## CKAP5 2.6064616770
## THYN1 -2.6544650425
## CSNK1G1 2.3247906909
## SLC39A13 10.8954209766
## ATP13A1 -3.0750329749
## WDR74 0.3336888130
## TAX1BP3 -2.6024401633
## OXER1 11.8801841223
## UBE4B -3.0336034090
## DHTKD1 -3.2952298740
## TNIK 5.8841533133
## DMXL1 -1.1431074815
## RUVBL2 -1.5285907675
## THOC6 -0.1905163433
## ARID5B -0.3902892720
## FEN1 1.4008523708
## ABCD4 5.0544251100
## GLCCI1 -2.2482126061
## RPRD2 0.9926571381
## IRAK2 0.7013542220
## NUDT21 -1.9330786495
## RANGRF -0.2085245166
## DPH7 -1.3677929706
## RFNG 1.5380931257
## ITPA -2.0209024803
## DDX46 -3.2688212600
## ABCE1 -1.0463710038
## ZNF787 -2.0237061099
## DHX36 0.8002815005
## CSF1 -0.6179179731
## ZMIZ2 0.3627158956
## DDX49 -0.5511206032
## AQR -0.9326692814
## SRGAP2C 0.9165585197
## SOCS5 -1.7111517065
## TPPP3 2.5785617272
## CHD9 1.2727790870
## LRRC8D -0.3252752693
## MDH1 -3.6923610580
## RCBTB1 0.1819569986
## MRPL52 -0.7348192421
## LATS1 1.9685666714
## OPA1 -0.7611602982
## DNPEP -2.2304208683
## ZMYND8 1.9968383643
## USP47 -3.1382154540
## SMC5 -1.5392092453
## UBE2K -1.6881212940
## GTF2H2C -2.2052335635
## MOSPD3 1.7437950603
## PTX3 -2.2720868538
## FASTKD5 -0.5349629785
## VIRMA -1.8577544708
## TTPAL -0.8604533638
## ENDOD1 -3.0537423506
## TM7SF3 1.9956210558
## PSME4 -1.2681089660
## TOR2A 4.2985874609
## DOCK4 -3.2558005499
## CCDC71 5.5359595603
## NEMF -2.3747782100
## TIMM13 -0.1427433006
## FUT4 -2.9575860536
## LRRC59 -3.3226462287
## TASOR2 1.6555881969
## SMARCC2 -3.6762690613
## GOLGA5 1.1917335618
## MAP1S 6.7374781446
## GABPA -2.9607266757
## CLPX -0.3115774426
## COPS9 -2.0623917988
## PYM1 -0.7058945860
## REST -2.5335030237
## STARD4 5.4113180913
## ATF2 -2.9248181614
## PELP1 -0.3235654648
## GOLGA2 -1.8141882492
## RASA1 -0.8448049855
## SOCS4 5.5059701477
## TMEM101 1.6693650866
## NIPA2 -3.0511023870
## DDX56 -3.0571763317
## BTBD2 4.9892766118
## VEGFB 1.0719947827
## HPS3 0.0606076119
## MAPK6 -3.0347618348
## TMEM109 -2.6911189072
## VPS36 -2.3620103845
## ACBD3 -0.1151283714
## TRAPPC11 -2.4080195306
## SH2B2 3.3441174275
## MFSD5 -2.1971971590
## CD22 -3.3482205932
## ENGASE 0.9403324813
## MAPRE2 -2.2802728433
## LETM2 -0.0380809887
## SSH3 -2.2578189079
## CD2AP -1.0000253976
## MED18 -0.7281635616
## LPCAT4 -0.2165917573
## GTPBP6 2.3455488170
## MAPK1IP1L -3.3370635561
## B3GNTL1 2.8436643375
## NSD2 7.5675490843
## SIRT6 2.7204464502
## MDM1 -2.1463431085
## TSR3 -1.0855483203
## CBX6 -3.0526300442
## SRRM1 -3.0352279193
## DAB2 -0.3412442341
## GLB1 -3.4044101595
## UBTD1 4.1237682433
## AKR7A2 3.0230254028
## TRAPPC2L -2.5539436015
## AMFR -3.0933898658
## SKIV2L -2.3473301395
## FBRSL1 3.7081697284
## XK 2.8022057295
## AMDHD2 2.3379003485
## AKT1S1 6.2507581712
## PPP1R35 5.0798288853
## KLC1 -2.9726721081
## TRIM11 -0.1391516217
## UBE3B 2.8148350084
## DDRGK1 3.9650224479
## CARMIL2 0.9049212133
## EPHB6 -1.4480162575
## COG3 1.6306631390
## TAB1 3.9089454200
## TBC1D17 1.6307394630
## AGO3 0.7644047369
## MPI -3.1242614171
## KEAP1 -1.7888513537
## NT5C 5.5069764522
## KIFC2 4.5963159614
## RABGAP1 2.5963870253
## HMGN3 -1.9292361200
## LSM2 -1.1770144355
## BTBD1 -2.7495172232
## ACOT8 2.3705582283
## SLC25A20 -2.5693589954
## TP53BP1 2.3402368216
## TMEM179B 2.1100045098
## CCNK -3.2779236132
## DENND1B -0.0108358504
## ALG11 5.6404771204
## MFSD12 1.5059934164
## WDR47 -0.3571641330
## LMNA -2.6469766568
## HDAC10 -0.5596096849
## PIGB -3.1013081404
## RBBP5 0.4137623768
## ATG4D -0.8022045505
## OPLAH -2.7957959464
## PSKH1 7.4648538199
## TRAPPC4 -3.1921443633
## CASP8AP2 0.8597572422
## RPUSD1 3.7831584523
## SLC2A4RG 0.4393475140
## VPS37C 13.8576673535
## MEGF6 -1.8477619310
## PNKP 4.0755391708
## MAD1L1 -2.4567327049
## APBB1 0.3734142476
## VPS54 -3.5194222221
## ANAPC11 -2.0187156069
## NOL12 1.5772857379
## TFPT 0.2410567250
## ORC4 -3.1526376335
## HNRNPAB -1.5621125001
## STBD1 -3.5398306096
## NFATC2IP 4.1213446044
## TPD52 0.6722501828
## KIF11 7.7813747831
## CDK1 0.9117244800
## SEPTIN11 8.0389776984
## UVRAG 0.2667219264
## CIZ1 -1.4848162382
## F2R 1.2869363700
## NUBP2 2.0804192180
## ACTR1B -3.3667366385
## TMUB1 4.6898125118
## TNFAIP8L2-SCNM1 1.3531100313
## PCLAF 3.0208207189
## BCL2L13 -0.9194424026
## DLG1 4.1001043277
## GGH 2.0024419108
## NECAB2 0.0691383046
## UFM1 -3.6391561483
## MPND 3.4899550632
## FBXO44 -3.5949046502
## GPRIN3 -3.5896732246
## LTBP1 -0.2718653612
## LZTR1 -1.7542157303
## SLC5A3 0.0021913042
## PDK1 -2.3916946043
## CCDC115 0.9603927035
## SMG9 1.9835601343
## MPST -1.2911447634
## GCNT1 -0.2301172211
## SCD 4.5271642364
## VENTX 11.0370019971
## ASGR1 9.5380184985
## PGP 0.5878909809
## RING1 -0.5614854098
## MCM2 3.9621263970
## MTRF1L -0.7079969902
## TMEM106C -1.3643205768
## SS18 1.5788859648
## SFXN3 -0.4593472583
## GLE1 -2.8488785912
## CORO2A -2.7806687769
## THOC2 -1.3729357172
## CCT2 -3.5568362594
## TSPAN17 -2.7646126100
## SLC37A2 -1.5727065926
## MEX3C -1.9494418431
## SEC24B -3.6365158684
## ALDH16A1 1.6333350937
## ENG 3.7274895688
## DHPS 2.1244200205
## LUC7L 0.5082378451
## RFWD3 7.0066773613
## PDLIM5 -2.7055971215
## GNL3 -2.7368319014
## RHOBTB1 2.4490851191
## HSF1 2.9345898866
## IARS2 -2.7966699955
## PARP11 -1.1338860717
## BMP6 1.5059211274
## BET1L -2.5215123126
## B3GALT6 3.3018568349
## FUCA1 -1.2172647551
## RNF25 1.3346003264
## PTGES2 0.0867243150
## RETSAT 3.7187872190
## ELK3 -1.5480789081
## KLHL22 4.7242403845
## ATP6V0E2 1.0426165177
## PI4K2B 3.0492905925
## RRM1 3.9809258788
## NFX1 3.6893233247
## FANCI 7.6301747452
## CTDSPL -3.3926981362
## DAZAP1 -2.6981998536
## GPR137 5.5791191631
## EIF2AK3 0.7913021250
## FAF2 1.7005220522
## TMEM256 -2.1664670110
## ZWINT 7.3560204764
## TST -2.5406436264
## TM9SF1 -0.6717666671
## SLC48A1 0.4277954528
## RNF220 -3.2294742302
## SUSD1 -2.3480175556
## WASHC5 -0.2196522854
## SLC4A2 -0.5359947172
## PHPT1 -3.3669194625
## HEXD -2.6289445859
## ALDOC -2.3286836349
## ABRACL -3.3985751484
## CISD3 -1.0083661790
## ARL3 -0.8535323295
## ING3 -2.8397634053
## DTNBP1 -2.5487939521
## MBTD1 -1.5015276941
## PLA2G6 6.4801989120
## TAF2 3.4847498242
## BPNT2 -0.3569320466
## EEPD1 -1.2963835851
## RNF113A 1.2414660069
## CASP7 -2.0458718061
## TSC1 -0.1017270947
## TMEM189 2.0259558497
## CCDC82 -3.6134264844
## SYNJ1 -3.6197811840
## LIG4 -3.2436399510
## TEN1 1.1501755251
## COA3 -1.5625959012
## SDR39U1 -0.2773686709
## S100PBP 5.6526644921
## LSMEM1 -3.4007234162
## STK35 -3.6139348971
## TMCO6 12.7781498296
## TRAPPC6A -0.6970254557
## PRKD3 -0.8524680016
## DHRSX 8.4033017825
## HENMT1 -1.9657887389
## AP2A2 1.9684573844
## HECTD4 2.6380425153
## DRG2 -0.5411141471
## VKORC1L1 -3.5282187177
## BRCA1 3.6936260402
## MRPS18A -3.6591229092
## CCDC137 0.9331450993
## TMEM170A 0.8700773872
## MSRB3 0.2031989656
## AIDA -2.5320476753
## MIF 0.2084519383
## ODF3B -1.6412400047
## KANSL3 -0.0064664202
## ZNF146 -3.4024606497
## AAAS 0.4026260474
## DENND1A -2.1334946189
## RNFT1 -3.0131561580
## FARSA 1.3700279552
## NDUFA7 -1.8327556971
## SMS -3.6185595490
## ACSF3 3.4898642650
## LRRC37B 2.4926232311
## KHDRBS1 -3.4056369683
## RFTN1 -2.7727761555
## ZNF493 -3.1071955914
## NAGPA 1.6444161883
## THAP11 -0.0847883760
## CERS6 1.0840475263
## CCDC57 1.4282421363
## U2AF1L4 0.5332010515
## RUSF1 -2.6380930659
## USP28 0.5245445887
## HSPA4 -0.9589273484
## AXIN1 0.3127183094
## OCEL1 4.1861936750
## HYPK -3.0484697681
## PTTG1 -2.4799118477
## NUP160 0.5657290370
## SREK1 -2.6736247407
## EPAS1 -1.7237304268
## TCF19 7.3050928981
## TXNRD2 2.7983867664
## TRAF6 -1.5255268329
## RAE1 -3.5591933757
## OSBP -0.9252417928
## NUDT1 -1.1101162697
## ZNF654 -2.9125113055
## ACP2 -1.3837282633
## HOMER3 0.7469451636
## ATF7 -3.0126460060
## SGF29 1.0806751382
## SMURF2 -1.7916574712
## TMEM175 3.1974703723
## CHCHD10 -0.4062852765
## SHISA9 -1.1982100092
## WDR91 1.6327324209
## GHDC 0.2605093601
## LRRC37A2 -3.7187513618
## TBRG4 -0.9556271144
## LRRC47 1.3863216399
## RBMX2 0.8352378232
## MRPL49 2.1211997267
## CBX5 -0.5891394776
## TVP23B -3.0994135383
## LHPP 4.8027486828
## NBPF12 -0.3587893287
## PDE5A 1.1021857776
## FAM174C -0.6413833112
## ACBD5 -1.9326259200
## ZNF511 3.5349885468
## ICE1 -1.3419706454
## ALYREF -2.2351268294
## ZNF335 -1.1768463105
## BOP1 -0.0414357189
## PRADC1 -0.2253503583
## KPNA3 0.1285844444
## SPIN1 4.8943647634
## ATXN3 1.3822209578
## TBL3 1.3119579115
## JUN -1.7255961997
## NDUFS7 1.0070155401
## RPS6KB1 1.9021257828
## RAB11FIP2 -0.1336448611
## LTBP3 2.0785987271
## BANP 1.5601561888
## CBWD2 -0.2014271140
## MROH6 -0.7293888664
## SLFN12 2.5389915596
## ARHGAP18 -2.0606582038
## ZFYVE19 -1.0284033041
## BBC3 -0.3812605915
## SMU1 -2.5750071172
## MYZAP -0.3504475759
## ENPP4 -2.9059288980
## NCAPG 7.7658151699
## MAN2B2 -0.8778479681
## DMAC1 -1.3654951617
## PIP5K1C 1.8775050289
## MDN1 -2.1233470098
## CCDC124 2.4567102881
## GPATCH3 1.5056243239
## CTCF -2.4456173109
## FBXL13 -0.2733991517
## TCF12 -0.5655450998
## CCDC130 6.6250738395
## CYP51A1 3.8096941017
## RFC1 0.8198919231
## ZC3H3 -3.5770039113
## AK1 1.2431458175
## NEXN -1.9258507985
## SERPINB8 -3.3768599189
## CBFB -3.2953212886
## PRKCE -3.5490677074
## BRD9 0.6586312410
## FAAH 5.7392802857
## R3HCC1 -0.4050818710
## MYCL -2.6138914887
## ZFPL1 3.4385338546
## UCK1 -0.5485789626
## PLOD3 2.1180342667
## SNAPIN -1.1763225058
## NCKAP5L 10.3091219779
## RAB27B -1.9613796625
## HBS1L 1.6352281366
## CLPTM1 -0.7419799955
## PSMD5 0.8724335608
## RBM14 -0.2642255307
## P2RX4 -2.7409176164
## STAMBP -1.1859350253
## CCNA2 7.0695049002
## NIBAN3 -1.5624037013
## FFAR3 -3.3958941348
## TMEM87A -1.8292051700
## PRDM4 -0.0150643079
## SLC1A4 -0.5225091266
## PNMA1 1.7768792020
## SCAF1 2.6645739887
## SMC6 2.8110746615
## SHCBP1 7.9871927250
## NIPSNAP1 -0.0016946929
## SLC30A7 -0.6971841125
## CEP120 -2.8566188100
## NET1 6.3589830441
## ESCO1 -2.1780475231
## TDG 0.6529171441
## ANKRD33B 2.2635491925
## KIAA1191 1.7210312315
## PTBP2 -3.0213695350
## PEAK1 2.6997782775
## ABL2 -0.7332642843
## TELO2 4.0790420440
## PIGQ -0.0544700638
## ARID2 -2.0137410906
## TMEM184C -0.0543764386
## INF2 0.0696681230
## IMPA1 -2.2016070736
## DARS1 -1.9299604633
## RPP25L -0.8937654145
## SSBP4 0.7571882406
## POLR2F 0.1660890562
## CRYL1 8.1490119496
## POLR2H -2.7569227453
## LAMC1 -0.3846285237
## PGAP3 2.9582867095
## CHD1L 5.2659241985
## GBF1 -0.6549047530
## BAG5 -1.0069780668
## PACS2 3.4183578534
## UCKL1 0.9050194481
## CEP295 2.8684208444
## UTP3 0.0576995146
## HCFC1R1 0.5623396389
## GATD1 -1.0219839834
## ATE1 0.5823760889
## SLC22A18 2.6366054720
## GFPT1 7.8719006577
## ANAPC2 -0.3977480152
## STK32C 7.9826660702
## MRPL4 0.0774758564
## H4C8 1.6176581119
## ADAT1 -0.5254582313
## TXNL1 -3.5245955638
## TMEM147 -3.3564739950
## ALKBH7 1.4960176482
## CBFA2T3 -2.2230951562
## MTF2 1.3694198992
## NSUN2 -1.9340006960
## BAHD1 0.8771233464
## TRIP11 0.2457325335
## YAF2 1.8649285878
## AP3M1 -3.0593184323
## HLA-DOA -2.5700097247
## ROMO1 -3.5262287781
## NUDT18 -3.2730618030
## TMED1 -0.2122129633
## YTHDF2 -0.7649118480
## PRC1 1.0277915883
## ETV3 -2.9115297736
## MRPL12 -3.6128039350
## MRPL33 -2.3875727958
## REC8 -3.0995877557
## CD72 0.5953102114
## GPKOW 0.0435240331
## FAM20C 8.8363093557
## NFIC 5.4408194922
## EYA3 -1.0316314092
## PIK3R4 1.3062367505
## SLC23A2 -1.3784340312
## RAB3IP 0.7517104503
## RAB40C 9.0923548223
## CCDC117 -1.4932221826
## RSAD1 -1.9525371321
## CCP110 -3.0490352011
## MBD1 -1.5417205421
## SNAI3 -2.5067900606
## MED7 1.7573396594
## POLK -3.4059719573
## RNF7 -3.6081792391
## AP3D1 -2.1135946413
## DOP1B -1.0720177263
## EMSY 1.1972244804
## MRPL14 -3.6290730733
## RMC1 0.4712009187
## GDPD5 -2.7356905485
## BTBD6 -2.7867104605
## ELOVL7 0.3259214084
## HAPLN3 0.2928530428
## SIT1 -3.6069558769
## CCNQ 6.7197726482
## EHMT2 -1.8986154025
## RRP36 -1.2504501361
## EIF2AK4 1.5547495789
## TMEM245 -0.6268400178
## C6orf120 -2.8208958403
## HGH1 1.5641445228
## ZNF580 1.6766131920
## BIRC5 -1.0593754501
## RACGAP1 11.6676554903
## BAD 1.0613532389
## E4F1 5.5965285688
## FHL1 -2.9789546555
## COA8 1.4211069234
## CBLL1 -2.3137487775
## FBXL4 -2.0952719513
## LAX1 1.4465557489
## DELE1 -0.8660902267
## ARMH1 -2.8469274464
## MRPL53 -1.7443515051
## SPAG5 6.9771671846
## NDUFS8 -1.4990142484
## SCYL3 -2.4957646119
## ZNF587 -1.9802511362
## DDX54 -0.6906544254
## POLD2 -2.2801776640
## MRPL43 0.0337214048
## ZDHHC6 -0.3678178550
## KIFAP3 2.6871729152
## C18orf21 5.4796811103
## ASCC3 -1.5404577034
## SINHCAF -1.6802422153
## CARD9 8.7611675213
## CEP20 8.5463685010
## RNF216 -3.5013929539
## DUS2 -3.1769454101
## TPX2 5.9082492448
## SAMD1 -0.3563389940
## SECISBP2 -2.7280487038
## TTBK2 1.0829176048
## DUSP7 -1.7843467437
## TTLL12 8.6701658019
## SERINC5 -3.6019096105
## DPY19L1 4.7995845549
## ACD 3.6387982850
## MGMT 1.2085053137
## POP4 -0.3330925722
## TIGD3 -3.5245241763
## FBXO28 -1.3222772092
## IBTK -2.9546633637
## FLAD1 -1.7336837751
## NME4 -2.1087443422
## KAT2A -2.8387459651
## CWC15 -3.7120192674
## FOXJ2 -3.6597074788
## FAM98C 3.7442375543
## STON2 1.8141133471
## CAMLG -3.6743045010
## HEBP1 -0.8494855174
## MLST8 1.4996816117
## PLA2G4B 1.8211652269
## NDUFAB1 -3.5061204118
## COQ4 -0.3884324027
## ABCB10 -1.8738612655
## IMP3 -2.8962347791
## RBBP7 -2.6971966750
## SCAND1 2.8689131639
## CHCHD5 1.2209528774
## P3H1 -1.7562891661
## MCUR1 4.5260058216
## SORD -0.9372255368
## RPRD1A -2.4941237736
## ALKBH5 -3.0608161495
## BCL2L15 -3.2227370622
## NCOR2 -0.5814444608
## UBOX5 4.5068083978
## CIAO3 2.7973919326
## MUS81 -1.2454713056
## CDK6 1.2721665996
## SLC30A6 0.3259110864
## CTDSPL2 -2.0542118042
## FAM149B1 4.0565397469
## ZBTB33 -1.9961869219
## SNAPC2 7.1596178399
## GLYCTK -1.2886850615
## RABGGTA -0.2935351588
## MYB -1.1563060450
## CC2D1A 0.6153869911
## SCAMP3 -3.0958315373
## HIP1R -1.3554429968
## CLPP -1.8153366992
## FAM126A -0.1880932821
## ERI3 -1.6464527637
## USP12 0.2418748587
## DNAJC17 -0.4445059578
## MZT2B -1.1219640776
## KNTC1 8.0915117573
## ECSIT 0.2349721545
## NAPG -1.1110041590
## FAAP20 2.5657815974
## SEC23IP 0.3003407604
## ARL2 -1.5151530751
## TIMELESS 8.8477918734
## INAFM1 1.7441235720
## FAAP100 0.6623793547
## ZNF263 -0.1421991069
## KHDC4 -0.6774215306
## GP9 -3.4197272378
## INTS5 -0.0665327196
## KCTD17 1.3583751884
## LMBR1 -3.5603558402
## NFKBIL1 1.9172279201
## LAS1L -1.7257049884
## ZC3H6 2.0363499306
## MVD -0.6872343308
## RABEPK 4.4802169899
## PLA2G12A -1.3369297401
## TFAM -1.2510618553
## GFER -0.3538765108
## ZNF688 5.1760067107
## RBM18 -2.1165183916
## CTNNBIP1 0.1320650132
## CENPF 8.1285949050
## ACP1 -2.9695894425
## XPR1 -0.4145168775
## B9D2 -0.5922722198
## PPP2R5E 0.1458480163
## CDC20 -1.5023298226
## LMBRD2 0.2296532755
## EMD -2.6527882792
## DDHD1 -1.2856465172
## EPHB1 -1.7016467786
## ZBTB17 -0.4383599629
## PCYT2 -2.1364817665
## RECQL5 3.3730172366
## SMARCD1 1.1286348240
## MTREX -2.7917741052
## INTS10 -2.7464865733
## NAGLU -1.7452156812
## PIK3R6 -0.5200679579
## SELENOI 11.5298024118
## MANEA 3.8461140574
## DDA1 -0.6831753654
## NOLC1 -3.3162434055
## VPS72 1.8327275590
## SSBP2 0.0386562773
## TYSND1 0.7887735074
## WDR33 1.1133875603
## ZNF66 -1.5256811724
## SMC2 8.7073299547
## DNAJC9 -2.2787326320
## MTHFD1 6.3378704972
## ZMYM4 -0.5903792858
## REXO4 -0.2193766584
## DDI2 1.2562726654
## ATR -0.0695530627
## TBC1D2 -2.7518693716
## MEI1 -2.1527835467
## RBMXL1 -2.1959943583
## FRS2 0.5606083360
## TIMM50 -3.5628483743
## ISG20L2 -2.9429627548
## DHRS1 -1.2029297721
## PIWIL4 -1.3630295828
## CAPN10 4.2903378362
## MANBAL -0.4792053206
## BCLAF3 -1.4763634616
## VTI1A -1.7627053983
## FAM160B2 -1.1612593481
## LRRC58 0.0917656219
## PKHD1L1 3.8047204535
## DAPK3 -1.1994834024
## CLTCL1 -3.0788023312
## ZNF451 -1.4085991237
## SFI1 -1.0708470563
## COX17 -1.6735962522
## BEND7 -0.4067013969
## NAT9 0.1357314800
## KRR1 -1.0821941361
## SERTAD1 -2.5120222285
## CCL3 0.3786138933
## NCAPG2 4.6038105065
## TNFRSF25 -1.0533861010
## MVB12A -0.8750652188
## PHRF1 7.3007444410
## MARCHF9 0.4876165029
## ABCD1 2.8801869784
## AKAP11 -3.3213833091
## FAM98A 6.5635042392
## CLIP4 -2.6268285948
## ORC2 0.0716194504
## TSR2 -2.1383251396
## SPATA2L 0.8548415097
## PEAR1 0.9875610077
## IQCE -1.7619501582
## ZNF609 -3.2086108912
## SP4 -0.0047501591
## DCP1A -2.6942806169
## DLGAP4 -1.7296031500
## POLR3H -1.7887328220
## ZHX1 1.1985489959
## KATNB1 2.3271502425
## ABT1 -0.1598802641
## GSS -3.0551211202
## TENT4B -3.1494323970
## NAPB 0.5902756474
## CDC6 10.2087525707
## EOLA2 2.2340898453
## ATXN10 -3.5711944378
## ABHD11 5.7942479129
## FCSK 1.7072665183
## SPATA20 0.0878760577
## DNM1L -1.4801675931
## WDR70 0.6714382710
## RPS6KC1 -0.3792900426
## KDM4A -2.5994054544
## MAFK 10.0392613945
## METAP1 0.3696278483
## THAP3 0.4350085826
## ASPSCR1 1.0258819976
## HAUS7 2.8806403961
## PRRC1 -0.4943816072
## CCAR1 -3.0932111783
## CUL4A -2.1804641402
## ABHD10 -0.7621786949
## UCHL5 7.2306369782
## PSMG2 -1.9997646672
## GOPC -2.2456927086
## CLASP2 0.5042069663
## STAU2 -3.3559850800
## BOLA2B -3.2709324958
## YJU2 0.3187616593
## AAR2 0.1104653595
## TMEM134 4.2278037388
## SENP1 1.9880326763
## NEURL4 2.1600768808
## KCTD9 0.1959672178
## SLC35E3 -3.0511026643
## WDR44 -2.6338799327
## EZH2 12.5656083947
## ARIH2 -3.6412274286
## TTF1 4.2163062101
## ANKRD27 -0.0862972784
## ILVBL 0.1766394398
## MTG1 -3.3732319412
## HECTD3 -0.6618059545
## EIF2S1 -2.4020185571
## GMEB1 5.9326651399
## HACD2 -0.0276740344
## KCND1 -1.6633261563
## CATSPER1 6.9457977810
## MAPK9 4.5027824102
## DESI2 0.2748600671
## ATP13A2 -0.6491607362
## PEX19 -3.6441961508
## SCAMP1 -3.6657356029
## CAPN7 -2.5772291466
## SPATS2 3.3772208017
## GRK5 -3.1605797640
## TMED4 -0.6739594811
## ATP10D -1.5706031290
## DENR -3.2751836994
## CDK2 10.5532927652
## AHSA1 -3.5955980401
## TBC1D13 -2.4550146890
## IPO9 -0.3888069077
## NPAT -1.9684434453
## DNAJC15 -2.5354183295
## C9orf139 -1.2338010497
## TMEM39A -1.5141675770
## SPNS3 -3.1403343644
## DHRS3 -0.2350353554
## ARHGEF10L 1.9890334160
## LRSAM1 1.2235468115
## TNFAIP8L1 1.4385302701
## GMEB2 3.4759931576
## RBM43 -1.0476221741
## ZBTB47 4.8465034462
## ZNF444 1.5732013265
## UFL1 -3.0230830578
## PWWP2A -2.2807309298
## CCNB1 1.5404177599
## TCF4 -1.0884418367
## VPS53 -1.5130035173
## APPL1 -2.6952387372
## PAXBP1 -1.7264596165
## GNG7 -2.8412187380
## GTF2F2 -2.9951946326
## WHAMM -2.6822207578
## SORBS3 1.8252060786
## SAMM50 -2.3020535868
## SCAMP4 3.8341880882
## ARL15 1.9245823719
## PATZ1 -0.7672212073
## JMJD4 -0.9449759011
## CDCA5 4.0628600539
## GCHFR -0.6866022639
## ARMC6 -1.1422201912
## MGA -2.2496362907
## MCM9 0.0021208532
## SIVA1 2.7133213603
## DHX16 -1.7257375290
## SENP5 -0.0587059390
## LRFN1 -2.9442361318
## MOB1B -2.3769576450
## SYNJ2 2.7724830836
## TNRC6A -3.1977438000
## SSX2IP 2.7700418801
## RIN1 3.3208457758
## RSPRY1 -2.7276639999
## NSUN3 -3.6948099897
## SLC35E1 -0.7548866256
## LENG1 1.8834565472
## TBPL1 -3.0077686466
## TUFT1 -1.0997092611
## ACSF2 -1.2399353937
## METTL4 -0.9262408835
## USP6NL 3.9309902493
## ESS2 1.2515967050
## TNF -0.5784659843
## ZNF75D 1.7081404591
## CDKN1C -2.1677247127
## TCHP 2.7010928242
## B4GALT7 -0.4217247836
## CKAP2 5.5135878999
## NEK4 0.0985357185
## IGFL4 0.1124823164
## AP4E1 2.2600786501
## LRRC8B 2.0697868694
## KIAA0319 -3.2620701732
## HEMK1 -2.8830468134
## TESK2 -3.6210734941
## TKFC -0.7994880903
## RABEP2 2.4504997751
## PDE1B 0.2246289497
## IL21R -1.6075143714
## CNOT9 0.1283423480
## SMPD2 0.3937043081
## FUOM 0.5392079528
## ZBTB2 -2.5266466882
## PUS7L 2.2026429049
## SNRPB2 -2.9863796835
## EEFSEC 0.2286917921
## ARMCX3 -3.4693738143
## TMEM60 -3.4682285194
## CCDC32 1.5470016757
## GIPC1 -0.3822381616
## POU2F1 -1.9499005749
## COQ2 0.3463775198
## NR4A1 1.5079725616
## GOLPH3L -2.7050449045
## CSE1L -2.2392254980
## IMP4 -3.1135137109
## CALHM2 -2.5099124818
## SEMA7A 1.0727443338
## UBQLN4 -2.5498537245
## IGSF8 -0.1167206223
## DALRD3 -1.4968448573
## THAP4 -0.2799335343
## ATF1 -2.3144784480
## DLGAP5 4.4352108911
## ATP11C -1.0731896931
## FAM102B -1.4583059427
## FUT8 10.3840806306
## DVL1 7.0841380820
## ZNF224 -3.0771941095
## MLLT10 -1.7360309573
## CLK2 0.0695395342
## ZNF844 -3.5843392597
## HDHD3 -1.5051733989
## ITPR1 -3.6941325341
## HPS5 -1.3241026153
## MRE11 -0.8398168357
## MTMR11 -2.8406157388
## DIABLO -0.9388726636
## UHRF1BP1 1.1555296078
## ATMIN -2.6500269161
## USE1 0.1004599432
## TUT4 -3.5322689525
## UBR7 1.6525784355
## TRRAP -3.0838113359
## ADCK2 2.4625635743
## ADRB2 -2.8692919472
## TPM2 0.2181132673
## TRNAU1AP -3.4128687255
## EEA1 -1.5733515397
## RDX 4.3878435680
## LRCH3 0.9246567993
## STK19 -0.4286531658
## CSNK1G3 -3.5242951058
## MRPL42 2.0933988908
## MRPS25 -2.3412486229
## ARHGAP5 -0.2513273980
## PTPMT1 -2.8219249326
## SURF2 2.6647577776
## ATAD1 -1.7960976215
## MRPS23 -2.9438569100
## RBBP8 3.0045275034
## THAP7 1.4265081014
## TMEM94 -2.5107407020
## ANKRD52 0.8913417068
## GOLGA7B -2.8708302628
## NBPF11 -2.1066328552
## CDK5RAP1 -1.7414930777
## TOM1L2 7.0276182235
## KLHDC4 -2.0778009249
## CEP162 0.0555317118
## KCTD5 0.3969291968
## ZSWIM7 1.7647944440
## GSE1 -1.6570617528
## FAM3C -2.2792228699
## SMIM7 -2.8648874308
## NCAPD3 5.2803653041
## RNASEH1 3.7485211353
## INTS4 4.3396678228
## SMURF1 -3.4189994734
## SLC10A3 -1.8785445020
## DHX38 -2.6313816214
## PLCB3 3.8414097940
## ASPM 8.3499562422
## MAP4K5 0.6203792438
## PHF6 0.5402397836
## NAA15 -0.6186751808
## MIEF1 -0.9227087628
## RNF126 2.5404661359
## FAM122B -0.8053068385
## PTK2 0.8712626828
## C5orf24 -1.5202916938
## PHTF2 -2.1280254615
## LARP4 2.6219299608
## ZNF784 3.3944797838
## SLC39A6 -2.5022941220
## COA4 -1.6499566377
## ZMAT3 -2.0715078853
## NME3 -0.2394142082
## FADS1 -0.6655788338
## MRPS11 -2.7554105138
## GUCY1B1 -2.6676943599
## SDHAF1 2.2889193831
## GSTZ1 6.5779190020
## FOXM1 3.7670599539
## GOLT1B -0.1350468869
## MED14 -2.8908507132
## LYRM4 -2.3317467916
## OXCT1 -1.1614292764
## PSMD11 -1.8478640164
## GALNT6 -3.6894140455
## FBXO31 0.0748147179
## SPAG1 0.3282375823
## MIER3 2.8331389131
## MTMR12 -3.4595152934
## KIF2C 1.6173377159
## SART3 -1.6663207582
## NECTIN1 -0.8287752740
## UTP18 -1.8902496287
## MED17 -3.2246560911
## HRAS -1.5160720722
## STRIP1 -1.3853690365
## TMEM11 -3.6884368861
## DHX29 -0.2901768524
## TTYH2 -2.4040623575
## RAB30 0.4648063612
## AMIGO2 0.3937814866
## NHLRC2 3.9346067451
## PHACTR4 1.7921010122
## RBM12B -3.0508051703
## DENND6B 6.9732582875
## NFATC1 0.7404213718
## CCNB2 0.8861478438
## ZNF22 -1.2985136174
## PRPS2 -0.8592782171
## NAALADL1 -0.1168880589
## RMND5B -2.3880396253
## ZNF81 1.0245382686
## MRPS2 -2.8597503290
## C12orf76 1.2637292807
## PLCD1 -1.0775899535
## RELL2 0.9233266043
## TK1 -2.4581487565
## ARL16 -0.7630358395
## DPH5 1.1052939408
## SMAD5 -1.2646699789
## CENPU 6.3854069803
## SOWAHD 5.0351578807
## SWT1 -0.1498559476
## VPS52 -0.2104983914
## ZNF428 1.0629823259
## POLR2M -3.2962818020
## REV1 -1.2869536420
## EXOC2 -2.3562248021
## REXO1 7.8226534149
## DNAH1 -3.1688928803
## CDK5 0.9542603731
## TESK1 0.4812774715
## UBN2 -1.9535681050
## CFDP1 -2.8609682046
## TTC33 -3.5269216154
## PLA2G7 5.0526944987
## NFKBIB -2.9071835243
## NOL8 -2.8390293596
## METTL14 -1.5067467107
## RAD50 -1.9517415632
## HIKESHI -2.9057365743
## SNX8 1.1893453694
## BLM 5.8637401125
## ZKSCAN8 -2.4517284457
## APEX2 -0.7474276190
## ACADS 1.1301014236
## CFAP410 -0.8630973717
## ZSCAN32 -1.9392180517
## ABHD18 -0.4150903073
## SERGEF -0.7732247078
## CAPS 2.8819604478
## VPS37A -3.2902530064
## S1PR3 -2.7828724742
## PARG 0.6475722643
## PBDC1 -2.7179712844
## EDRF1 4.1113098712
## MASTL 5.2619820356
## POGK -3.3268037597
## INPP5B -0.9712280358
## HSPBP1 -1.0078452031
## SLC25A45 2.0425541962
## MSI2 -2.7284461246
## PHETA1 2.4645085168
## ANKRA2 0.3373106027
## PCBP4 -1.1311237494
## TRAPPC9 -0.9921800563
## STRN3 -2.4573556927
## ZNF684 -2.0192404567
## ASB13 2.1233931119
## PEX5 2.4292883422
## ITGA1 -0.8437773906
## DUSP18 -0.1397809309
## LRRC61 8.1047469035
## NDUFA8 -3.1232845849
## IQCB1 0.1494541596
## CENPE 4.3778974402
## DHRS7B -1.5154551963
## NUBP1 -1.3033479352
## CROCC 4.6102265207
## MSH6 -0.3288816324
## HDDC2 -2.2607641289
## AGFG2 -2.2970483905
## PCK2 -3.0522379357
## TRMU -1.1420637901
## HEATR1 -1.4154518237
## DHX30 -2.4743382646
## TOP3B 1.6811544016
## TRAF2 -1.1882468264
## BOD1 1.1824077441
## CAPN15 1.6833258769
## MPHOSPH9 4.4316604618
## FEM1A 0.8947330405
## OGFOD2 -1.5912921876
## SLC17A5 -1.7164083126
## ZNHIT3 -3.4650284263
## HYAL2 -1.2898117332
## USP39 -3.7094106353
## INTS6L -3.3151961845
## REX1BD 0.0233734830
## BCAT2 0.4460061237
## SMARCAD1 -2.2001079350
## PICK1 -0.8584196432
## SLC16A1 5.9324902132
## EDC3 -1.6291988208
## MAD2L1 2.5246158399
## BTLA -0.5859568030
## SACS -2.6777101361
## ZNF799 -3.0486657623
## FXR2 -3.6166385679
## DENND5B 1.3721663236
## NPIPA7 -2.9114288929
## UNC50 -3.1633806292
## VSIG10 -3.1230816465
## TCERG1 -2.4878713191
## PRXL2B 3.0262959683
## TMEM234 -0.3828168713
## FIP1L1 -1.2144930606
## ZNF136 -2.1115251627
## GUCY1A1 -2.1951786467
## ZNF783 -2.0426116061
## ANKRD40 -0.6721143434
## NGRN -3.2621405657
## KAT6B -0.9335355839
## GALK2 5.3970014444
## SLC25A25 0.5515210961
## EXOSC5 3.6387145781
## CENPX -3.4293775943
## AARSD1 -1.8994043008
## CCDC61 4.7890229093
## SPPL2B 1.5910484862
## CTNNAL1 0.8784336600
## BTBD7 -2.7920616962
## SEPHS1 -0.4572346622
## ZSCAN18 3.7102571384
## CEP135 -3.4366138399
## RPRD1B -2.4182746370
## SLC16A7 -3.1140245508
## RAP1GDS1 -1.0739091330
## FAM20B -0.7982937369
## PPP2R3B 4.8297946112
## GORASP2 -3.6525062563
## GINS2 3.2795955771
## HAAO 12.9108650175
## INO80 -2.4811943716
## HMGXB4 0.1985422073
## UBA5 -0.5470306812
## NDUFAF7 1.0216746911
## TGFBRAP1 0.5938401963
## GCDH -2.2316314654
## NDC80 10.5740884896
## TNPO2 -2.5846409784
## DDX28 -0.8225630543
## SNRNP48 -2.0910205088
## MUTYH 2.5169931680
## GATA3 -1.5282080787
## SLC4A7 -3.2151755127
## DEAF1 -1.4497838809
## RGPD8 1.1732607662
## WDR43 -3.4273724801
## REEP4 -1.6754915910
## SCCPDH -2.8741806311
## GFM2 0.4795805669
## ZNF362 12.5682600536
## LIN37 -2.9429094575
## CENPC -3.1069291119
## NRF1 -0.9110534196
## CPTP 0.7133220673
## ZNF671 1.4397733701
## GALT -2.1236832451
## HJURP 4.6589312450
## ELP5 -2.3485592904
## C7orf26 -2.7568734848
## KIFC1 3.1712103940
## CEP57 -3.4291202070
## UBALD1 0.1655061151
## CACTIN 3.1436297264
## LOXHD1 -1.8820268237
## SUCNR1 2.2057087245
## PTRHD1 -1.2152168653
## ARHGAP11A 9.3162602655
## TOP1MT -0.4537780061
## ECT2 4.1747396438
## PELI3 12.9671335633
## SNIP1 -1.7096824934
## CDC7 16.6467818194
## DCUN1D3 0.0983789903
## DTL 12.4152577960
## ACTL6A -0.3960257323
## RNF168 -3.0302640679
## DSTYK -3.1325886505
## PDK2 0.5678044824
## NDRG2 4.7302718592
## SLC33A1 -0.1582689156
## CDYL2 1.4834869208
## BRF1 2.9636213690
## PLD1 -0.5488333622
## NCBP1 -2.1846434867
## TNFRSF9 -3.3439912809
## TM2D2 -0.4757867566
## ERCC3 -2.0590488906
## PIGBOS1 -2.4709266327
## DERA -2.9610336556
## PPP2R1B 5.4557604833
## SMIM5 -3.6129205791
## SCRN1 -3.3585037425
## TMEM187 6.8400364997
## ZNF280D -2.7408601795
## NBDY -1.2312551806
## ABCB8 -0.3223259652
## METTL3 -3.0162734156
## KCNH3 -3.6097804266
## SKA2 0.9945686154
## XPO4 -2.6314316999
## GRAMD4 -0.0362959165
## COQ9 0.3112528424
## SQLE 1.1363597958
## ZDHHC13 -2.9261334313
## RAD17 1.6934143775
## CUL5 -2.3329888841
## MROH1 -0.0247177176
## RASGRP3 2.8794555479
## FBXL6 -1.9688469107
## MEN1 -2.8895844889
## KLHDC10 -2.7917065606
## ZNF598 0.9719859208
## UHRF1 5.6273130288
## RTL8A 6.0742442264
## AK3 0.1641179186
## CZIB -3.1040018406
## UXS1 -3.1388798196
## GMNN 2.8220850384
## SLC30A5 -3.2804999746
## SNX21 5.8042984118
## INO80B 5.7132113278
## ZNF699 -1.6404010145
## OGFOD3 0.7423178881
## PMPCA -2.4470004896
## NR6A1 0.0596682565
## CES2 -1.4086079124
## MAP3K6 0.0644798138
## PTGIR -2.9964915375
## PIGC -0.2618941308
## GTF3C3 -1.5358786402
## ERMP1 1.4168703312
## MAP2K7 -2.5250564700
## CUL2 -2.0421883016
## PEX13 -0.1560914348
## ATAD3B -1.5349544341
## PLEKHB1 -2.4506637336
## NUDT2 -3.2045748940
## IDE 0.1048054870
## BLOC1S3 2.2405570822
## PRPS1 -3.3937304755
## MDP1 -1.4247080499
## BCOR -2.4200558264
## SIAE -2.6169888080
## YLPM1 -2.1611242911
## MSMO1 -2.6580180659
## VRK2 -3.6316565556
## SLC27A4 -2.1351503218
## SLC35D1 -1.7012366703
## PVRIG -3.1089298072
## TAPT1 -3.7082867924
## ZNF28 -0.4562779829
## DUSP23 -3.3536636704
## GOLGA3 -2.9045990947
## ZNF621 -0.7485475876
## PPAN 1.6498958034
## USP14 -2.7856631197
## OSBPL3 -2.4653646985
## ZNF100 -3.4587917002
## TMEM62 -2.3133680159
## TOMM40 -3.4999182625
## KANSL1L -1.6612477323
## FBXO5 11.2014606048
## SWI5 -1.1836312982
## TBC1D22B -1.1856975320
## CCDC134 4.7869394373
## RPP21 -0.0163783748
## ECI1 0.1499064564
## SLC22A1 -2.9964081505
## SMYD5 -2.9274064439
## CENPN -0.1369288651
## TBC1D25 -3.4783569415
## MAP1A -3.1398347262
## DIPK1A 1.1423769937
## ZNF358 4.8164109783
## RNGTT -3.2075338048
## XYLT2 -0.3262286365
## LCMT1 -2.3614228653
## ABRAXAS2 0.0327349763
## GPN2 -3.0837192172
## MRPL41 -0.6204075467
## CPSF4 -3.6849377893
## NOB1 -2.0760332565
## KNL1 8.5353832571
## ALDH18A1 -1.4135165111
## CHEK1 10.5258514872
## ZNF226 1.9079127552
## MAPK11 0.6961151989
## TMEM102 3.2136410043
## NAA16 0.7268573865
## VAMP4 -3.2812989187
## GGCX 0.5061427586
## NDUFV3 -1.4219552873
## ERCC6 -0.4433663656
## TIMM9 -0.6766173131
## AMMECR1L -0.9112978752
## RARS1 -3.5971575715
## CPEB3 -1.9515030155
## CSRNP2 -2.1501723089
## POLR2I -1.1878176493
## BUD13 -1.8321059233
## NFRKB -3.2357547066
## PUS1 0.1479211061
## SLC9A6 -2.9069281786
## COG5 -3.6807146602
## TMEM64 2.8716232617
## DOK4 6.4718286361
## WDR36 -2.1816013067
## TRMT61A 1.3642437539
## CRTC1 6.3019272662
## N4BP2 -0.2249778907
## VAV2 0.5845550017
## PEPD -3.5807523730
## NETO2 -0.6446699069
## KIF13B -2.5828384311
## TMEM86B 1.4055488614
## LRRC37A3 4.3353348695
## SLC46A2 -3.5946181423
## RP9 -1.6628068220
## ABCA5 -1.9384187889
## GNE 0.9865146388
## ITPRIPL2 -1.6623887062
## KCTD11 1.2009591413
## POMGNT1 -3.3627551671
## PWWP2B 3.9391538204
## PRMT7 -2.1081086466
## ZNF468 -2.3040266433
## ACBD4 1.1318255743
## DOP1A -2.1452861955
## ZNF791 -2.2127025354
## SLC35A3 1.9958959095
## DYM -3.6046692844
## NTMT1 -1.5091189431
## PAFAH1B3 -1.8996857146
## IL18BP 3.9620670404
## DDX52 0.3126898533
## MCCC2 -0.0127442793
## BUB1B 7.2240923548
## NUP85 -2.1436284506
## GOLGA8O -3.6335987009
## SLC52A2 -1.0298942932
## ITGAV -0.3813522909
## EFEMP2 -1.4766280965
## ILKAP -3.3871092579
## AGK -2.6543091921
## ASCC1 -3.2200434353
## ELOA -2.8523587385
## NPDC1 2.2566015111
## IGHMBP2 -0.5546989700
## ASTN2 -0.2568607299
## ZNF513 5.6560601579
## SMG6 -0.6829776205
## TIMMDC1 -2.5979837542
## SMARCA4 -3.5796800315
## IL15RA -3.3116062834
## CYB5D1 -3.6257290406
## TMEM88 3.9167802364
## TTF2 0.8124290312
## PKD2 4.7209485729
## NRG1 -3.6426646496
## SRD5A3 4.0565847086
## PDRG1 -3.5434068402
## TPRN 1.1568520930
## CTSF 0.4487813478
## AASDHPPT -2.8862323685
## GLO1 -3.6286307904
## KLC4 -2.8964298084
## ZKSCAN7 -0.7138539612
## TMEM204 -1.5155016250
## ABCC2 -2.4227375928
## NIPAL3 -1.9994689041
## BCL2L2 1.9875905868
## RFC4 2.1319041543
## RTN2 -2.5730214481
## CLSPN 15.3171970179
## LSS -3.7085810772
## FNIP2 -2.6064967618
## CMC2 -2.0554136204
## MRPL55 -1.7333723490
## TRIM65 -2.0347384065
## ERC1 1.4001530537
## ZNF446 0.2517761447
## NAE1 -0.2786811320
## NUP107 -1.7075695044
## TMEM150A 3.5702513788
## TTC7B -1.6025476338
## CACNA1I -3.0874008499
## EOLA1 0.4960801597
## SLC9A3 1.3395100336
## THEM6 2.6741661275
## GATA2 -0.1725432362
## TNFRSF13C -3.0285882966
## MTMR9 -1.5308937725
## BCAS4 -1.2745646251
## NCKAP1 -0.3545902543
## LAPTM4B -1.8856210772
## NBPF1 -2.0447879414
## FKBPL -2.1879247845
## TLNRD1 -1.4713856428
## GPR35 8.4399925820
## ABHD17B -1.1110323123
## ZNF76 -3.4592191598
## CEP152 5.1187120648
## ZNF408 -0.8101476890
## SPIB -2.7699166710
## PLEKHA3 -3.6418724817
## FLYWCH1 -2.5006764138
## ACVR1 -1.2945276580
## BLOC1S4 0.0366894619
## UBE2C 3.0334646529
## SMN1 -1.2423518359
## GPR137B -2.5411919206
## JOSD2 3.3810581853
## KATNA1 -2.7999388230
## STRBP -0.8790760955
## PTDSS2 0.1320684762
## PUSL1 2.6399667748
## QTRT1 0.7429331667
## UBFD1 -1.3208245216
## OSBPL7 -3.5058075414
## JAG1 0.3423876841
## ICMT -3.4966582757
## PIGF -1.8976629377
## TLCD4 -3.6962334266
## MMP14 4.3984354328
## COG6 0.5096407376
## RRP8 0.7197561596
## MFSD6 -2.3483415645
## CDC45 6.9024719898
## ZNF507 -0.4366937278
## SPSB2 -2.5583715196
## POLH 2.6203057784
## PDE6D -3.4937115213
## NAA80 -1.4631407594
## MRPS12 -3.3241730658
## INTS7 5.6036731672
## ZNF385D 2.8716677526
## SLC37A1 1.0185551317
## LONRF3 0.0256017097
## DCLRE1A 1.6354919594
## HMGB3 -3.4652107772
## DIS3L -1.4447278618
## TARBP2 -2.1318457840
## CACFD1 5.9539303696
## HMG20A -1.7262457186
## SMAP1 -2.1498423160
## CDCA8 3.5470501388
## AURKA 3.1135225028
## CHERP -0.7919377030
## BFAR -1.9531828559
## WDR76 9.5952242579
## MYO1D -0.0136875544
## SEMA6B -1.0337955665
## D2HGDH 3.0078288927
## MIB2 3.6090526888
## PGM3 1.7851356899
## C12orf4 -2.4541915938
## MLH1 -1.9699924701
## PPARD 0.5183107047
## GCLC -2.8191020626
## MINDY3 -0.9197396779
## VPS33A -2.0551562667
## KIF20B 4.4149971340
## TSPAN4 6.1552884893
## LEPR 0.6606685801
## CFAP36 0.8260993207
## C5orf22 -0.7905457122
## CDR2 -2.9093873640
## OAF -3.6960108607
## VGLL4 0.4321417268
## PRPSAP1 -2.7005100133
## KRIT1 -3.2313450527
## PAQR7 -1.2953993263
## RREB1 -2.2103505314
## WEE1 11.1163258156
## LTBP4 1.6596863940
## PPP1R8 -2.6938051439
## WDR7 -0.2724693288
## NUTM2D 0.8758347075
## VEZT -2.9244830910
## FOLR2 5.9409874349
## TBCEL -2.3376525277
## MRPL17 -3.2862098044
## DOT1L -1.0974875799
## HPF1 -1.0679111801
## FASTKD1 0.6396396533
## RFC5 12.2218623708
## VAC14 -1.8254154967
## POLR1E -0.5712510176
## MRGBP -3.5190986430
## FLYWCH2 3.4813757752
## USP49 0.3003731299
## SLC25A30 -0.0577615706
## STK39 -3.3302738091
## UBASH3A -3.4886361295
## GNGT2 -2.4425752528
## CDC23 -1.7436198927
## NDUFAF8 -1.7155279846
## CMC1 -3.3894631141
## STX18 -1.4768984951
## NUF2 -0.4273488847
## PRKAB2 -2.9384312707
## GTF2E1 -2.5780553470
## CEP104 0.4456402056
## UBE2T -2.1102778087
## PLK4 8.1187246591
## HCFC2 1.7878569912
## LENG9 0.1457787890
## ZWILCH 10.4620701607
## CEP55 7.6019696090
## CCNYL1 -0.9398654386
## EMC6 -1.8507346323
## RRP1 -2.9636566859
## RNF144A -2.3410150882
## MSH2 -0.8941313687
## DEXI -3.0929309629
## ANKMY1 -0.6741920295
## ZMYND15 2.2145017205
## NDC1 1.4986493127
## ZNF768 -0.5301776134
## PRKCI 0.2664758575
## GATAD1 -0.2897623219
## DPM3 -1.0576273789
## YDJC 1.2670552063
## SLC49A3 1.4363005552
## GANC -1.3879124483
## RALGAPA1 -3.2336024579
## YIPF2 -1.2186401119
## ACACA 1.6055941341
## FAM136A -3.6969041410
## ENKD1 0.2688222518
## HS6ST1 -1.6510151208
## HAUS6 -1.8679020145
## YRDC 0.7353172057
## BRCA2 8.2066962772
## G2E3 -1.7145781689
## HDAC9 -3.4458316304
## PEX11B -3.3783519185
## KIAA1614 4.4392916513
## C1orf35 3.8225531416
## PM20D2 -2.5039057971
## ATPAF2 3.3819346930
## TRNT1 -2.1838395245
## CENPK 3.8134890076
## DDX19B -2.6078623271
## IFT80 -0.7394569878
## DBT 2.3806191640
## MED29 -3.5479186096
## DDX51 -3.0718143375
## LRRC14 -3.0438985114
## CDPF1 0.9937214334
## LYPLAL1 -3.1374808119
## HIBCH -1.9602915648
## PPM1L -0.1369813928
## ZNF282 -3.6197264290
## TXLNG -2.1792333622
## TNFSF4 -2.5007293051
## ATG16L1 -3.2555910958
## CPSF3 -3.3784325328
## ABI2 -1.3926185322
## TUT1 0.8403453521
## WDR25 6.8869444850
## TMEM104 -2.1668690554
## ANGEL2 -2.2872540094
## TAF1D -3.4201776375
## SLC7A1 0.2302888952
## EBPL -2.9027808110
## PSAT1 7.2459649616
## CLUH -2.0811797598
## ERCC2 -1.9872613374
## CMAS -2.7202452477
## ATF5 -2.6677677804
## LIN7C -0.9012588778
## NCAPH 9.3737202003
## PIN4 -2.8122901223
## HSD3B7 -2.4217301787
## DBF4 -0.7901439756
## CNPY4 -1.1545851333
## NT5C3B -2.8059205068
## WDR54 -2.8864884102
## SLC26A2 -1.6025359388
## COBLL1 1.9859570563
## CEP85 -2.6313999717
## LILRB5 -2.9626992475
## GEN1 9.5647374054
## DIMT1 -0.8193239604
## BRD1 -0.9495847534
## SEMA4C 0.5947938827
## EXOSC7 -3.1820546685
## BEX2 -0.7352400999
## ENTR1 -2.3197856927
## NCBP2AS2 -2.4731719929
## TGS1 -2.1029934444
## NEMP1 -0.3870207546
## UBXN2A 3.2440148330
## NPRL3 -3.6665976834
## FUBP3 -3.5757527566
## MRPL46 -3.7151610753
## LUZP1 -2.5540611110
## JMJD7 3.1908889301
## BATF3 5.3075271739
## C17orf80 -0.6131733913
## FBXL19 -2.3831622740
## DONSON 9.2467995015
## ATG4A -1.2705218936
## CEP44 1.5110483936
## MCM8 6.2708542413
## C12orf45 -3.1631701519
## SLC26A11 -2.6943848294
## MFSD11 -3.7234381783
## C9orf40 -3.3289947582
## MED27 -2.6192129532
## ANKRD55 -3.6543282918
## RAD51 5.3958138198
## ARMC5 -0.3483185568
## HACD3 -1.2473982524
## KCTD10 -3.4634767877
## HELB 0.9979956948
## KCTD15 1.2014270983
## EVI5L 2.4250971565
## SH3TC2 3.0546079679
## NIPA1 2.1108235810
## ZNF197 -1.7402731127
## RBSN -3.7008389052
## RBAK -3.4487863440
## CDCA7 6.1568870329
## SHMT1 -3.6753730438
## MED10 -2.2145785273
## KIF15 5.9913314506
## TIGAR -3.5036046737
## MYO9A -2.5761693650
## TMEM80 -2.5901485560
## PIK3R2 -0.7005204882
## OBSCN -2.7552012288
## SUCLA2 -2.3953463281
## AKT3 -3.6490525751
## RCE1 -1.8617327821
## PRDM10 -3.0531918982
## SCOC -1.5691295925
## NUP43 -3.3599634511
## SMUG1 -3.5436495809
## POGLUT3 4.4525217049
## GTF3C4 0.7008949109
## RAB2B -0.1606185058
## ITGA9 -2.8909157098
## SLC39A11 -3.6936501705
## TIMM44 -2.3168625431
## COX19 -2.5958552132
## FBXL15 1.7798100664
## SETD6 -2.4933658705
## CBFA2T2 -1.1116365522
## DUS3L 2.3745099932
## WIZ 2.1957348040
## SCAPER -0.9869130507
## FRK -0.6481403923
## ZBTB21 -0.9128562550
## TBCK -1.9907615302
## GPATCH11 -2.7618071071
## SIDT1 -3.5532357991
## SERAC1 -0.2875590738
## PDIA5 -1.1070344755
## FUZ -1.4878739509
## BBS5 2.6116901170
## AURKB -1.1724909362
## ZNF639 -2.6040764326
## SYN2 -1.2797338420
## NR2C2AP -1.3465755350
## GFM1 -3.6531757641
## FLT1 -2.1704630135
## PEX1 -3.0384971078
## CEMP1 -2.5140028217
## FIZ1 0.5916324322
## FAM228B -3.4686783196
## PI16 0.6384352553
## STX2 -2.2597669141
## TWSG1 0.8330595519
## ORC3 -1.6384722461
## SLC11A2 -3.3572911703
## SARS2 -1.6278986338
## MEIS1 -0.8656157530
## PCYT1B 1.8630712572
## FBXO8 -3.5400913929
## ASB1 -3.6073435751
## ZDHHC8 3.1252489840
## KIZ -1.2301270472
## NRDE2 -3.3740559135
## ZC3H10 -1.8740556411
## HSD17B8 -2.0220610409
## MRPL45 -2.7433627060
## TICAM1 -0.7540585134
## ZCWPW1 -0.8863902893
## MTRF1 7.3206690735
## SNX16 -3.4460095680
## TRAPPC2B 7.8731171905
## TMEM263 -3.6781064639
## ZNF506 -3.4465890960
## NUDT14 1.4536211427
## DSN1 -0.4758845690
## GPER1 -0.2635762203
## RABL3 -0.1079977979
## RTN1 -3.1036328161
## IDUA 1.0652255229
## ALS2CL -2.7726405703
## RPE -3.6243211091
## ARHGAP6 -0.7730717919
## SLC25A32 -0.4468883042
## ABHD14A -2.0416034080
## ODR4 -2.4458187034
## MTA1 -1.4353678646
## TTC21B 0.0744489866
## KLHL20 0.0964428090
## HDGFL3 -3.2618505257
## RRP9 -1.6634103529
## MRPL19 -1.5561316596
## PDHX 1.5621928586
## SMIM19 -1.5086741974
## DHX37 -1.4343084020
## AP4M1 4.6638890185
## ZNF8 -0.4382304337
## NDUFC1 -1.0121394178
## CPNE8 -3.4854430420
## TTL -3.5993108265
## OSGIN1 7.6614218573
## EFNB1 3.8304010087
## DHX33 4.2501358642
## IFI27L1 -2.5609291021
## ARL1 -3.4756297100
## TSPYL4 -2.7072956136
## NSDHL -2.6601265297
## SAV1 0.9032152903
## QSER1 -2.0874012291
## ISOC1 -2.2398780350
## POMT1 -3.0958016201
## ZNF691 0.4253069446
## GTF2H1 -3.4939509951
## ZNF623 -1.0085353372
## MED21 -2.8953528715
## MED6 0.4622353432
## NKD1 -0.0830154228
## ZNF765 0.3761648936
## ASB6 -3.7004230524
## PRR11 -2.6841882559
## SLC66A1 0.3793645964
## CD40 -3.0178317164
## SCRN3 -2.5981630576
## PLEKHF1 -3.6241215940
## CARNMT1 0.4414485429
## TMEM39B -0.0006703760
## ORC1 7.5316265668
## ANKRD54 -0.6850644086
## CHAC2 2.0548637968
## FDXR 0.0839164611
## SNAPC4 2.8136261393
## GLT8D1 -2.4632843934
## APBA3 -0.2198105000
## SLC22A16 -0.8211358634
## ANAPC7 -3.3506724044
## ENOPH1 -2.8638832600
## THUMPD3 -2.9402350430
## CILK1 -1.9583364327
## RBM15 -3.4903048342
## RPUSD3 -2.9265904005
## ZNF761 -0.7208458382
## LRRC45 0.4041850284
## GLI1 -1.1325465813
## PANX1 1.1904099652
## URGCP -1.4521744198
## HAUS2 -0.0821328728
## ALKBH3 -2.7617532328
## GPR180 2.6928654132
## AIFM3 2.1284158566
## MALSU1 -3.5761663594
## GEMIN6 -1.9507678814
## LRP8 5.2293292618
## SKA1 3.4043420159
## RITA1 -1.8310796207
## P4HTM -1.4502818329
## OGFOD1 -2.1960582303
## AGPAT5 -2.0744679371
## ZNF611 -3.6751855976
## C16orf91 0.6652744810
## TMEM161A 3.2407760928
## PIGN 1.3640251095
## CTPS1 0.0518803716
## MRPS26 -3.7281464429
## ICOSLG -0.9302075113
## SNX22 -3.5761691827
## C1orf198 -1.8997285103
## TMEM107 -0.5763535921
## FBXO45 -3.1809324637
## PIDD1 0.3526846633
## SEPSECS 0.7348925678
## GABPB1 -3.6235926077
## THOC1 -3.1571078278
## CENPBD1 -0.8495037407
## DTX3 -3.5456110346
## DLAT -1.2004019183
## PLEKHA8 -0.0159779524
## B3GALNT2 -0.2987118654
## LARP1B 1.5913453443
## SETDB2 -3.2597692535
## NUGGC -0.6779447046
## FRA10AC1 0.6337945483
## NAA35 3.2036305482
## TRMT13 -2.4223344420
## LRMDA -0.6751964361
## DUSP12 -1.8418137640
## ZNF875 -3.0795151270
## SNX25 0.0865220102
## EXO5 -1.4126702934
## KIF23 7.2166168013
## AGAP5 -2.5133980613
## IGFBP4 -2.5174684737
## C16orf74 -0.6359474667
## ZNF574 1.6292862898
## SLC25A22 -1.1558242196
## DCAF17 -2.4148956761
## PCYOX1L -2.8502042428
## ZNF367 11.4539385606
## LRCH1 -1.7314362281
## MRM2 -2.5895910103
## NUP155 -0.3075813320
## TAF5L -3.2996741673
## ZNF788P -0.5668067663
## SC5D -1.1435503329
## SLC35F2 5.3815739656
## TCEANC2 -3.7225850136
## CEP128 4.4283024615
## TAF13 -3.6864742424
## GGT7 -2.3558012051
## ADCK5 1.6890715331
## TUBGCP4 0.8805753069
## NT5DC3 -3.0578735410
## GABPB2 -2.6593208671
## PCYOX1 -2.9590540589
## EPB41L5 2.5855828950
## LYRM9 4.7567548480
## CRYZ -3.7087563025
## SS18L1 2.8190290149
## SPRTN -3.1502546812
## NAA30 -1.5512196192
## C1QTNF6 3.5413845089
## SPATA5L1 -3.2748180735
## TCEA2 1.5303204426
## INTS9 1.5413542629
## TJAP1 -3.1863049776
## C16orf87 1.5872438166
## MIER2 3.0362872559
## EEF1E1 -3.4338938855
## ATP6V0A2 -2.8051405648
## CDKN3 -3.3641862590
## WRAP53 -0.9915097334
## OCRL 0.7364477454
## WDR18 -1.0989458278
## CENPO -3.1044462226
## PYROXD1 -3.3304569762
## ZBED4 -2.4149552024
## ATAD3A -2.5876326202
## DNAL4 0.7120291953
## CHAMP1 -1.2849204179
## CLCC1 -0.1940682721
## ANKMY2 0.1711574744
## ZBTB20 -2.3119848427
## POLA1 6.6059501344
## MRPL2 -2.4879818853
## FHIT -3.3340380612
## ALS2 -2.7360697006
## TMEM18 -2.0908993481
## TIGD5 3.0725694128
## ARHGEF5 2.5591566095
## ZDHHC21 -0.9073418816
## EMC8 -3.5767052164
## LIG3 -3.3325001743
## SGO2 0.2869083727
## DYRK1B -0.6789066291
## TMEM159 -1.7837929629
## SCN9A -3.5976097520
## ARMC1 -3.4124987937
## ZNF431 -3.7129542893
## ZNF808 -2.2497928054
## SASS6 5.8331028801
## MYBBP1A -3.1323742027
## PSPH -2.2589985359
## TMEM186 -1.6820213349
## SCAF4 -3.0479615134
## MRAS -0.7446076418
## ZNF277 -3.6667067688
## NUP37 -3.6942026160
## TMEM209 -2.1960228987
## SLC29A3 0.3845985621
## DBP 0.9558787484
## CDC25A 6.8541640086
## WASF1 2.6953671637
## TACO1 -2.9618127845
## PAPLN -3.6604370325
## MELK 11.4984218033
## GTF2H3 -1.9746034266
## CRELD1 -3.5362458088
## LCLAT1 -0.9339626135
## HSCB 2.3041141742
## SHPRH -3.2360944821
## MTMR2 1.6504947834
## KCNN3 -1.3024044723
## INTS2 -1.6385093360
## B4GALNT2 -3.4387261069
## SPDL1 7.7001957212
## PPP1R37 1.8575153048
## CLOCK -2.3686888797
## PYCR1 -1.9323282631
## TMEM243 -3.1345007864
## TRIP6 -0.0974414260
## ZNF775 10.1016491755
## ELAVL1 -3.1703934827
## FOCAD -3.3203460205
## CIP2A 7.5418534362
## ZCCHC14 -2.9859582215
## PSRC1 -1.9972135273
## TMEM128 -0.0165376034
## PDP2 6.1887936995
## DNM3 -2.4591304687
## MAPK7 0.3775551174
## NIP7 0.1703222175
## POLR1B -3.6428124012
## WDHD1 9.7742726531
## ZNF500 1.0100590092
## KCNA3 -2.3002121426
## ERO1B -3.4371964552
## PRPF4 -0.6153107302
## SCRIB 0.0853888861
## TG -1.1760682016
## NBEAL1 0.9231208658
## LRRC40 -2.5680686698
## CASD1 -3.5102825575
## PLD6 1.4275800267
## TRAPPC2 -2.2157021470
## ZNF48 -0.6022831854
## MBD5 -2.9774886784
## ELMO3 -2.3712662173
## ZFAND4 6.1645951448
## FGFR1 -1.9029796930
## NKAIN3 -1.5441312572
## H2BC11 4.2746221763
## ZNF133 -1.3307816960
## ZNF436 -1.5629492834
## PER2 -1.7582041780
## FANCG -1.9394454320
## ZSCAN30 -3.1486617321
## SH2D3A 1.2229664311
## XPNPEP3 2.8461580788
## SLC12A2 6.6389568278
## FBF1 -2.0571382387
## KCTD13 -2.3227499472
## MMP17 8.9380966040
## MUSTN1 -2.0122174588
## ZNF37A -3.6378329303
## TMEM69 -3.1127404837
## UQCC3 -0.6093938302
## C4orf46 -1.1937578762
## GINS1 9.7883146814
## TTK 5.1154734244
## TMEM35B -3.6041406574
## RAD51AP1 2.7483093195
## IRF2BP1 4.5908437671
## STIL 11.3853488501
## TERF1 -3.6953846591
## RGS12 3.7492892189
## SERPINH1 1.1737204139
## HDAC11 0.2604388438
## EEF2KMT -2.6810218077
## CAV2 1.5658408214
## LTA 0.8875600149
## INTS13 -2.2174660403
## TAF4B 2.0438201530
## PIAS3 -2.7554570218
## ZNF236 0.5197567230
## LLGL2 -3.3893456770
## DNA2 8.5545104862
## DGKG -1.5135750519
## ZNF841 -0.9002806988
## LIN52 3.6764927714
## FBLN5 -0.5147553504
## MTHFSD 0.9268019830
## DNPH1 -0.1258012747
## MED9 0.9226558305
## FLJ44635 0.9722870724
## BARD1 6.0635089460
## MED12L -0.4665287662
## ABHD8 -0.5652640871
## TMIGD2 -3.5824511002
## DNLZ -1.1253989120
## LSR 0.0445811340
## LDLRAD3 -2.8786987082
## KIAA1841 -0.2104633365
## YBEY -1.9086827097
## R3HDM1 -2.3552752168
## NLE1 -0.9348429742
## CDK3 -2.9131547624
## MAP2K5 5.5438589470
## BLNK -3.6351549726
## MPV17L2 -1.8402965624
## FIGNL1 1.3136815722
## PLK1 1.5245579812
## NBPF3 -2.3376550152
## MEGF8 2.3447417012
## LAGE3 -3.2837233216
## PPARA -1.5454111904
## CDCA2 6.3228948285
## RAD54L2 -2.8223921110
## ZNF512B -1.5900802247
## RBL1 -1.0380865930
## TMEM79 -2.6162245832
## RAD51D -2.0256259028
## PRIM1 2.3499779936
## NR1H3 0.4506176654
## FOXP4 1.1085573344
## ATXN7L1 -3.6835460862
## ABCB7 -2.5566455958
## ZNF419 0.2326628546
## RHBDD1 -2.8306207062
## DARS2 2.4486460558
## KCTD3 1.6700872776
## CCDC18 3.2784786556
## PAXIP1 1.7685444778
## TRPT1 -1.3748007943
## RHPN1 1.1783910144
## C22orf34 -3.1278877286
## ALMS1 -2.2438414246
## MTIF2 -3.3022653952
## RGS6 -0.6532316109
## PEX14 1.7513635370
## RFX1 -0.3162859243
## ZNF213 -1.9896477476
## PSMG4 0.5116190318
## SAC3D1 -1.1575070625
## SEC14L5 -1.7950052182
## ID3 5.5442846598
## SOCS7 -2.8681114053
## ALKBH4 4.2745581372
## SLC39A14 1.0666996441
## NAA25 -3.3485974610
## RFC3 3.0189509870
## SIRT3 -3.4470007687
## NREP -1.9953660004
## TMEM212 -1.5838441905
## TRIP13 8.5145198883
## CRACR2A 0.1831045406
## SNAP47 -2.2305661860
## RIMKLB 4.1314456577
## TAF1B -0.1872081775
## POP7 -2.5923823476
## MYL5 1.0960936309
## MZT2A -2.9713078188
## SLC10A7 0.1307554776
## MRPS10 -3.7113743996
## ZNF510 -2.9632561086
## ZNF414 3.2393570137
## AFF2 -2.3695763309
## ALG8 -3.0184377897
## SCFD2 -2.2988446056
## ALG12 -3.0468458429
## PRPSAP2 -3.3491517513
## ADCK1 -0.9476454978
## FKRP 7.2305015137
## LZTS2 -1.7373140637
## GPD1L -3.1100540779
## MMAB -3.5495670843
## CMC4 1.4408779627
## MRM3 -2.6947320442
## IFT43 -0.4376327382
## NEIL1 -3.4737678540
## ARNTL2 6.6839148271
## USP53 -3.5346518515
## QRSL1 -3.4913252983
## SDHAF4 -1.3681782290
## KLHL11 -2.0021688499
## FAHD2B -2.6199230973
## NOC4L -0.2905657776
## FBXL18 0.7279082940
## SPC25 3.6704478804
## ESF1 -1.4550671233
## CENPJ 7.1834334522
## ZNF341 0.0498656571
## MIGA1 -1.9088543844
## C5 -0.4782853646
## POLD1 -3.1267430025
## KCNMB1 -0.5125872227
## CPED1 -2.5830240933
## TSNARE1 -1.1790570985
## MTHFD2L 1.3391380280
## ZSCAN2 -1.0489864704
## PRSS36 -2.4772527765
## S100A13 0.7395024122
## PPAT 2.3813071768
## TNFRSF10A -2.8024275966
## WDR83 1.2216196828
## MEF2B -0.1587026647
## AAMDC -1.6372524545
## OTUD6B -1.6928592461
## ZNF212 -2.1130755506
## UCK2 -2.0391132184
## ZBTB45 2.2304983142
## ZNF778 2.6936896241
## TOGARAM1 0.7641429902
## CDKL1 1.1822568385
## CBR3 -0.6845697637
## SLC15A2 -3.7122537809
## CBX8 4.4508653179
## RBM41 -2.6266722247
## XPA -1.7078339854
## CCDC84 -2.6612706801
## MED20 -3.7288034072
## NEK2 3.0394348499
## ALKBH2 0.5236541470
## ARG2 -2.3104560975
## WDR12 -1.1717692080
## AUH -1.4583879359
## ZNF346 -2.8260868161
## ZNF669 0.2343660060
## H2BC8 2.8321481859
## ASB3 -1.8310211616
## PARP2 -1.0724556437
## SPHK2 5.4865015229
## C1orf54 7.0052795480
## WDR24 1.6712062793
## TTLL5 3.0335509117
## SAMD10 -1.0547453754
## FAM43A -1.3260128020
## NELFA 2.7492317644
## SCO1 -2.9175762517
## ST7 -1.0812776754
## CDYL -2.1443423144
## ZBTB41 -3.1712565875
## ZNRF1 -2.6387706040
## PDIK1L -1.2544786578
## GINS4 11.6313670900
## UNK -0.5168574295
## INPP5E -0.7068529650
## LOC100421372 -2.2716509814
## ZNF836 -0.8876150941
## DAAM1 -0.6229312872
## GOLIM4 0.1144210183
## ZNF707 3.2784271519
## COIL -2.2752187576
## RINT1 -1.6410389600
## PAOX 2.1903160518
## SPICE1 5.7039987206
## FTO -3.2740089767
## MMP19 -3.4556104452
## SLC27A2 -2.1556868635
## TMEM192 -0.9786029898
## ZNF440 -1.1212718928
## ACTR8 -1.7949069391
## ZNF497 -1.3914232740
## PARPBP 9.3379646504
## RAB19 -2.8612606992
## CISD1 -3.0663088627
## ZNF747 -1.2109371941
## FHL2 -1.8342679903
## RCL1 -3.3854244576
## ZFYVE21 -3.2695400598
## SPC24 -2.9859590803
## ACY1 2.9052858960
## PROCA1 -2.2545772209
## GTSE1 5.7165964713
## VANGL1 2.4476815273
## ZNF615 -3.1937506567
## AP1M2 -2.3619608012
## SLAIN1 -1.0181007254
## ROM1 -2.8985767463
## ZNRD2 -2.8512878338
## SLX4IP -2.8258381454
## PFKM 0.0428225723
## RAB39B -2.9173389986
## RTEL1 -3.3143084749
## POLR1C -3.4622441552
## ZNF275 -3.6531743933
## HACE1 0.5097072270
## FAHD1 -1.8944708831
## NOTCH4 8.0689625916
## NADK2 -1.6487360298
## IFT122 2.0231491545
## BCL11A -2.8059736481
## FRS3 5.8426726826
## FER 0.0397369885
## MCAT -1.3012150308
## HMBOX1 -0.0493188846
## TTI1 -2.4827809005
## SWSAP1 -1.9379745781
## M1AP -3.5693536134
## LLGL1 -3.0538841638
## EHBP1 0.9806277388
## INO80C -2.1810442776
## TRDMT1 -2.7590148034
## ZBTB39 -1.8915683985
## LARS2 -1.3820539778
## SETBP1 0.2266516471
## KHK -2.8091509307
## TRUB1 -2.2470883612
## ELOVL6 0.3013831714
## ZBTB26 -3.6634605648
## RMI2 -1.9122044002
## BTRC -2.7546425044
## COX18 -1.6778791670
## MTLN -2.5178428270
## NUDCD1 -1.8963491806
## SKA3 6.9733153869
## SNTA1 0.0409422731
## DPH1 -3.6805017201
## TXNDC16 -1.0637518447
## DHFR2 -2.2885154114
## CASTOR1 5.1644346379
## CCNF -1.2668917982
## DNAAF4 -1.9272043206
## HELLS 8.6036037220
## HSD17B7 -2.4021540199
## PIAS4 -3.4000657411
## ZNF45 -3.4248700553
## ALPK3 -3.0143894293
## ZNF616 -0.5531290403
## SH3D21 1.0654565283
## ZBTB42 0.0154699254
## BTG3 -2.3886990585
## PALB2 -1.0348370928
## TRIM59 -1.9805151182
## CHST7 -3.2277121565
## GLI4 5.2543661408
## IPPK -1.0055834972
## C9orf64 -3.4395785353
## UTP20 -2.9491220883
## TCEA3 -3.1271938657
## WRN 0.2027834887
## ESPL1 2.3710308693
## HSF4 2.6402465366
## PTER -3.3031406744
## FAM207A -1.6083011506
## NPIPB11 -1.9529604294
## ENTPD5 -1.4447614032
## NEK1 0.1457419964
## UGDH -2.2324788545
## DTWD2 -2.6013929142
## EOGT 0.8962293796
## ZNF853 0.0802373970
## HOOK2 1.1194786976
## TMEM68 0.9890168074
## NPFF -2.8618416286
## TMEM223 -2.8185302023
## C6orf136 -2.0287642596
## CASR -2.7819423129
## PRMT3 1.7614963728
## TEDC1 -1.6332585660
## CASP6 0.8840400050
## CNTLN -1.8464689286
## C8orf82 -1.5450629308
## ABRAXAS1 -3.3923999658
## ENO3 -2.3907451930
## CBY1 1.3429180443
## ANKS3 0.2450674566
## C8orf58 -3.6884872891
## SYTL4 -2.1405776379
## FBXW9 0.8501188486
## E2F5 -1.2286555956
## PHYH 3.7268221418
## OTUD3 -1.3228409403
## ZFP64 -2.2123131452
## FAM189B -3.4674932182
## MIEF2 1.3198218404
## ANXA9 -2.2975132566
## SMIM4 -1.4467813936
## SMIM13 2.3008026208
## WNT10B -1.1193500635
## PARD3 -2.8756061752
## FADS3 -0.9710817501
## EPS8L2 -1.8047575275
## MBTPS2 1.0826307057
## PCBD1 -0.7998674508
## SLC25A51 -2.7740646442
## ACO1 -1.8586851197
## GAMT -1.2776118417
## LRRC23 0.3120150127
## ZMYND19 -2.7153250164
## ERCC4 -0.7858253667
## BICRA -2.6022462276
## MPP5 -0.7457296433
## KMT5C -0.2695775435
## C11orf49 1.5471402445
## CCDC9B -2.3050762498
## PGAP1 -2.0155996286
## POLR3A -3.5239811648
## AMMECR1 -1.8954033288
## BTBD3 -2.5919668751
## MTRES1 -0.2538491849
## RNF8 -3.7080119936
## NOP16 -3.6534496223
## UBE2E2 -2.1309768445
## ZNF668 -0.4069200446
## CENPA 0.0503751938
## GALE -3.5316908646
## GID4 -3.2374901688
## GEMIN5 -2.8950383375
## CCNE1 1.8953705975
## ZSWIM9 -0.8326125694
## BMP8B 3.9499974753
## GOT1 -3.2229120765
## LANCL3 3.1136149871
## ATAD5 6.1431821659
## C1orf112 4.9603749059
## TMEM8B 2.2560506484
## SIMC1 -0.2941448489
## BAIAP2 -3.2552959243
## CCDC153 1.4758982500
## PBLD 0.2113374118
## C1orf159 1.1703736353
## SSPN -2.7653070259
## COG8 -1.9576005468
## ACOT11 -2.6952099325
## NOM1 -3.4158343061
## ANKRD36B -1.2870340760
## GRPEL2 -3.4059516999
## KBTBD3 -0.9167156979
## DCLRE1B -3.4872677562
## TBP -0.6863160056
## ZNF697 -2.8468474554
## DNAJC27 -1.7206293752
## ATP9B -3.6497053939
## NCR1 -1.0892414895
## RHBDD3 0.6885741565
## INCENP 3.1531905116
## RPP25 -2.4041153031
## BORA -1.9750911148
## RBBP9 -1.7229325756
## CCDC77 0.4814478418
## RORC -2.8321203155
## BRICD5 2.1016241730
## C16orf86 0.3747366020
## CDC42BPA 4.2132331332
## SUV39H2 11.9340134389
## FRMD4A -2.9244497429
## WDR53 -3.6767831290
## AK9 -2.3044574032
## FDX2 -2.8758350105
## TFAP4 5.8722903332
## RYR1 2.3181497563
## BAMBI -0.1413809830
## DPY19L4 -2.7414749465
## UBE2D4 -3.1243120185
## MOCS2 -3.4541745315
## NEIL2 -2.7291060969
## PINX1 -3.6472049671
## PCDHA4 -2.6992335656
## DNAJC30 -1.2889964398
## TRIM68 -2.2839898088
## PRR12 -2.5555223060
## CEP57L1 11.2951904605
## MRPL57 -3.6395481787
## PERP -3.1443805003
## RAD18 -0.3786328476
## SCARB1 -1.0697636901
## DNAJB4 0.4746611833
## CKB -3.0821356421
## TAF5 4.8602294179
## ZW10 -2.8267537763
## FBXW8 -2.4439960083
## ENDOV 4.2584702708
## TM7SF2 -2.9226133379
## PRMT9 -3.4390625510
## UPF3B -0.5277111337
## NAV1 -1.6921206413
## PNMA3 -2.5453041927
## CHRNE -2.9384876055
## CCDC142 -0.5040197131
## KIF18B 2.4343784105
## TNNC2 1.3309057965
## FKBP14 5.9579306053
## USP31 0.2311837897
## ZGRF1 1.9898677435
## KATNAL1 1.6608386049
## ZNF629 -1.0800344760
## MON1A -3.0736743754
## PRIM2 2.3203604899
## ARV1 -1.8692581146
## MREG -0.6378899778
## MTERF2 -1.8748717015
## FAM122C 3.5736104997
## ZNF175 -3.3377518179
## CA11 -2.1460495352
## DNAL1 -0.7736875313
## ZNF383 -2.0139399218
## GON7 -1.6830258890
## RRS1 -1.7633311480
## MED19 -2.2586630657
## EFCAB7 -1.3072257561
## POLE2 5.1182792494
## SPIN4 2.4345458233
## GNPNAT1 -3.5759125940
## PARD6A -2.5403107805
## WASL -1.0555852132
## ALDH6A1 -2.5525963153
## LCORL -3.7018456618
## SEMA3E 0.4080159637
## SLC27A5 -1.4974893157
## MFSD3 -1.2836087616
## DSCC1 7.4529661063
## C11orf71 -3.5921541923
## E2F6 0.7789272297
## FBXO22 -3.1862072363
## MMS22L -0.6900823187
## MVK -2.6766058993
## ACBD7 -3.4021329088
## NDUFAF2 -2.8883398377
## SYNM -3.4475316266
## BTBD8 -3.7128387937
## COA7 -0.9630088630
## CIT 2.2636908574
## SERPINF1 -3.5008205867
## LZTFL1 -3.7050485831
## TEX10 -2.1957162160
## FGFRL1 -3.2077992616
## NECAB3 -1.4251288088
## SLFN14 -3.5552534894
## HARBI1 1.3477859993
## C19orf47 -2.4709415855
## BRIP1 4.2142427504
## NR1D1 -1.2686781856
## BNIPL -2.0058602404
## ZNF576 -2.7731888131
## DTX1 -2.8405972625
## FANCL 2.0035674931
## FOXP3 -3.4789025815
## HAUS8 -3.6338583432
## ZKSCAN3 2.6763865064
## TMEM135 -3.1062846273
## FANCM 1.4717933927
## SLC2A8 -0.8551141034
## TMEM38B 0.7699493971
## MCC -3.4052489871
## PTPRS -0.6426974016
## CSPP1 -1.3392100950
## ZNF764 2.3662011296
## GPATCH1 -2.3983068971
## KRBA1 0.8642083692
## ABCC6 -2.2402148220
## SLC25A17 -3.0226551603
## MLYCD -2.3593552364
## MPV17L -1.5989792732
## LIMS2 -1.1955868693
## RUFY2 -1.7486719030
## MRM1 -1.1964612538
## RAI1 2.6549638811
## ZFYVE28 -2.3698827702
## AEBP1 -2.8264944940
## PRICKLE3 2.3033519121
## LTO1 -3.2370065464
## PEMT -0.3216505662
## PHETA2 -2.2925758103
## GPAM -1.8750922644
## ZGLP1 -3.2264298536
## PHLPP2 -2.9771243009
## PORCN -3.6853214769
## CHAF1A -3.7156622693
## GOLGA8H -3.3927653915
## GTPBP3 -3.1185948519
## APOOL -3.3348957351
## ZNF714 0.2786009625
## CENPM -3.5955645275
## IFNLR1 -2.6011032431
## BBS7 -2.6778982845
## LDAH -3.7199348978
## SLC2A13 1.1007738012
## INVS -0.6535743745
## NFS1 -3.1195572642
## FUT11 -2.6865906859
## ZBTB32 -3.6053255017
## ZNF71 -1.1981427265
## ANKRD26 -0.1979893809
## STON1 3.4421121031
## BAG2 2.2294067401
## ACVR2A -3.5832824374
## PPP1R32 3.5046521694
## CCNJ -2.8293278927
## ORC6 4.1246667248
## TNK1 -0.9875447551
## MOB3B -1.5626360535
## LRRCC1 -1.5871143271
## SHISAL2A -3.3459172409
## CHAF1B 0.6208695228
## PNPLA7 1.0692793176
## TIPIN 3.4870914582
## FZD2 -1.5654680609
## CCDC30 -0.9329137862
## PDE6G -0.4869227491
## GCM1 -3.6162402206
## NEMP2 -1.7994335444
## IER5L 12.2494243965
## MITF -1.9665888789
## DOCK7 -2.3187063229
## TADA1 -3.5411383179
## USP45 -3.0601332988
## DOLK -2.6220089839
## GSTO2 -3.5763334227
## LMF1 -2.0895012869
## MAP4K3 -3.2307991079
## DECR2 3.7498943350
## ZNF777 -2.5751083319
## FAM104B -2.6675395053
## ANKRD39 -2.6839196034
## CTU2 -1.9348564890
## ERI2 -0.2919253921
## MZF1 2.5280493477
## PDCL -3.6498880683
## PCBP3 -3.2020349988
## SGO1 6.4067095628
## CENPQ -3.0459563102
## SPSB1 0.8162728353
## UBAP2 -3.5431252008
## MECR -3.1328105069
## ZDHHC23 -0.1840899634
## ZNF619 -1.9100849007
## CEP131 1.6309553266
## GINS3 2.4213684916
## SFN -1.8621691456
## CRYM -2.3289516479
## FNBP1L -1.6147229783
## GNB1L 3.1470139246
## MPP6 -2.3376558108
## ARHGAP32 -1.3653714696
## ACVRL1 -3.3285670200
## PROSER3 -2.8542484967
## COL8A2 -2.4996319210
## LSM11 -0.2521672030
## RBM11 -1.4862610670
## A1BG -1.2009350024
## IKZF4 -1.5483644012
## CCDC106 5.3311858168
## IZUMO4 0.6521632156
## PPP1R16A -1.0152620104
## LIN9 4.9007440640
## GAN -1.5979379515
## OLFM2 0.0219753504
## CHST14 -2.1359297214
## KLHL17 0.0587377395
## ZSCAN9 -2.9281438184
## UACA -3.4459809972
## BIVM -2.8883431502
## MAB21L3 -2.2977817803
## MARS2 -2.6958249682
## KRBA2 -0.3890238712
## LNX2 -2.5799026980
## MORN3 -2.4768122026
## LRP12 -1.8743519372
## ANKS6 -3.0585374786
## CHRNA10 -1.8719298366
## MTHFD1L -2.5977132732
## ERCC6L 3.8689270403
## PTCD2 -2.4424606072
## KIAA1586 -1.5609575077
## RBM44 -3.5801158118
## ZNF852 0.0377997281
## MND1 2.2778046124
## PIF1 -2.3855791449
## FANCE -3.1400157378
## GCSH -1.6989593149
## CACNB1 -1.4385847956
## LIPH 1.4166111945
## RDH10 1.2981779445
## PCGF6 0.5431000650
## TIMM23B -2.7857257911
## PDE6B -3.1860415636
## PLK2 -2.1857571950
## F12 -2.0710816469
## ANKRD36C 2.5334754148
## TEC -3.2345873700
## C1orf109 -2.3303881125
## PCOLCE 1.7184993468
## MC1R -1.1217418676
## RTTN -3.6518469725
## RWDD2B -3.2164904596
## TRMT10A -3.4510379210
## AK4 -3.1296231006
## ERCC8 -3.1233480842
## CTU1 -3.4043463980
## STARD5 0.3691777008
## CCDC86 -2.3163717010
## IL12RB2 -2.6874437432
## CENPL 5.0662642858
## ZSCAN12 -1.4389292194
## FUT10 -1.4037884698
## TMEM97 0.5921649582
## ZNF653 1.0295934822
## XRCC2 7.3466222736
## ZNF219 2.3386618611
## WWC2 -2.4864181907
## SHLD3 -2.1218165605
## CEP76 3.6483440101
## GPX3 -3.5930304503
## LRRC29 2.6554578966
## MTFR2 3.7035170042
## ZNF888 -3.2632748492
## CCDC189 0.4211503836
## B3GLCT -1.6258701654
## POU5F1 -3.1613648778
## CDH13 4.5117624986
## CABLES2 -3.3699409598
## OIP5 -0.8505327842
## CPLANE1 -2.9734317823
## SHISA4 -2.1511502832
## MKS1 -3.3631617996
## PYCR3 -3.6004052426
## TTLL1 -2.0806723376
## PRX 0.7884455613
## RSKR -2.7792659573
## HSD17B13 -2.6799191024
## NEIL3 -1.4007497235
## FSCN1 2.8390200650
## ZNF578 -0.1730287888
## FBXO10 -2.4913649826
## IL23A -1.3057567299
## MAP3K21 0.1499608171
## SERPINF2 -0.8128099296
## PLAG1 -2.6835264455
## CEP83 -1.0120354856
## MANEAL -0.3200740042
## SRFBP1 -3.4425523841
## FAM86B1 -3.3009630026
## C6orf226 3.3299634058
## NAGS 9.3842630314
## MORN2 2.5036469258
## ZNF568 -1.2781152033
## PEX10 -0.4583102325
## C10orf143 -0.9560462266
## SOX12 -3.3505141374
## TRPM4 2.3515064723
## SLIT1 -3.5238450424
## FBXL8 -0.9808504189
## EIF5A2 -2.6081351596
## ZNF232 -3.6802117248
## ZNF74 -3.6107089673
## ST8SIA6 -2.5894326656
## CHCHD6 -0.7060036432
## LRFN4 -0.8938672605
## UNC5A -0.3198283501
## CCDC13 -1.7928654649
## NANP 2.1852887692
## PCDH12 0.0034261705
## KLHL26 -1.7899606473
## SCUBE1 2.5538995488
## GPRIN1 -2.5373010182
## ALG10 4.9340065715
## AP1S3 -0.4229428473
## ME3 -1.6184341711
## MLLT11 -1.9550055826
## MAMDC4 -0.4013825971
## ZBTB46 1.1000978032
## SPIN2B -3.5422681279
## BMP1 -2.5549353303
## THAP2 -3.6303993042
## RFXAP -2.4927200778
## PAWR -0.9201322470
## MAP3K10 -3.0333748338
## EME1 4.6403118020
## RAD54B 2.9816423154
## TMPRSS13 -2.0478748299
## NUDT17 -0.9529837254
## DHODH -3.5752263089
## C18orf54 2.8561040916
## TRIM46 -1.7156692899
## RGS16 -2.0346662218
## PAK4 -1.7690870469
## UNC13B -1.2276975954
## SLC38A6 -3.2465263676
## PLXNA1 -2.8880617046
## NPIPA8 -2.5387404333
## GPT2 -3.7026222195
## CARMIL1 -2.1863393728
## FZD3 0.0663442381
## C7orf31 -2.9440013234
## FGF11 -3.3053974718
## SPTBN5 -2.7869878707
## IL17RC -3.5289059850
## FAM216A -1.8840181552
## ZC3H12C -0.5763503736
## MTFR1 0.2852065050
## ELOVL3 -3.0185604667
## LAMB3 -3.6535198008
## PIGW -1.0208041511
## WDR62 -0.4016553078
## DNAAF5 -3.6788150537
## ATL1 -0.0128098258
## NDFIP2 -2.6735950802
## AKAP5 -3.0423113898
## YAE1 -2.5910013022
## MOCS3 -3.5645461749
## POLR3B -2.1909243843
## FICD -3.3322223323
## URB2 -3.2635639172
## GRAMD2B -1.9901072607
## C3orf14 -1.1019176764
## KRT18 -3.0897791091
## SPATA33 -2.4439970595
## EML6 -0.5521642905
## TMEM53 3.0443476495
## REXO5 -1.6727814185
## KIF24 4.4381199359
## PTK6 -1.5527788717
## C21orf58 -1.3890961595
## KCNA2 0.6460869119
## LMLN -1.0865396462
## BBOF1 -3.1204589284
## ANO5 -2.3971124507
## KCNQ5 2.7877636105
## ZCCHC4 -2.7159425991
## KDM8 -3.2338022002
## USP54 -0.4081552519
## RIMS3 -2.9080860564
## CCDC96 1.8218743530
## NPHP4 -3.1368011101
## ZNF547 -0.0745613578
## ZFP69 -3.3289094428
## CATIP 5.7358345713
## FZD5 -3.6249786354
## CENPP -3.4511124236
## CALHM5 -0.6783525299
## EPDR1 1.0886883867
## TDRKH -3.1643499032
## DAGLA 0.2538216624
## B4GAT1 -2.9951454053
## AFAP1L2 -3.1266371956
## IL24 -1.9440070463
## COMTD1 -2.7477348344
## LDOC1 -3.1661692396
## VSIG10L -3.4246096498
## ZNF606 -2.8149865012
## PDE3A -3.3044636807
## PHLDB3 -1.2450853369
## POLG2 -3.5699308042
## PLEKHA5 -3.4893639379
## PPM1J -0.4958422342
## RHOBTB3 -3.5804099924
## ZNF416 -3.6893856783
## MFSD4B -3.1413374200
## PRTFDC1 -3.1042500003
## TXLNB -3.5636470799
## NEGR1 -2.4525474981
## SDR42E1 -3.6366615616
## FAM185A -2.1692329476
## TMEM241 -2.3333817743
## CA13 -2.6465671116
## P3H4 -3.5756881585
## RAB3A 2.4805717182
## KCNMB4 -1.1548793657
## RCCD1 -3.5218499559
## GDPGP1 -2.1715203338
## THAP9 -2.2249013645
## CCDC80 -1.3675086294
## HSPA4L -2.5696032712
## PLCE1 -1.1927825809
## HYLS1 -3.5472128249
## SPAG16 -1.8414308049
## SLC6A4 -3.5290723265
## TRAF3IP1 -3.5737537461
## LRRC34 -1.9643228375
## PPP1R3F -1.1347872980
## COLEC12 -3.0193827967
## ZNF280C -1.5666292022
## KLHL25 -1.3663195567
## FANCC -2.1926732671
## SLC6A16 -0.8233761074
## HSD17B1 6.5404055254
## DNAJC18 -2.6768041264
## NME7 -3.5101198621
## ZNF223 -3.2995938165
## MAGI3 -2.7388679004
## POLR3G -2.2809827107
## PRPF40B -3.3319542726
## ZNF324B -1.5840851484
## KCNIP2 -2.0498499958
## SCLY -3.3419084048
## UNC5CL -3.4096690717
## CLDN12 1.3453236684
## AMIGO3 -3.3660171757
## ATP8B3 -2.8035828521
## JADE3 -0.6967842513
## ZNF460 -2.3134834845
## EID2B -2.4113577730
## SCIN -0.0869691287
## AHI1 -2.9293802733
## PUS7 -2.8649921356
## DPH3P1 -3.0130032061
## WDR97 -0.1251607918
## MYH10 -2.9802951657
## BPHL -2.7776871152
## FARP1 -2.6862998729
## TULP3 -3.6653399215
## GRB14 -2.3574804140
## INTU -2.0865744432
## H2BC15 -1.5050776245
## PSMC3IP -2.3905408083
## C21orf62 -3.3291620009
## FAM83H -2.9029160440
## GGT6 -2.4608198954
## LRRC7 -1.7865099484
## GPRC5C -2.5257835435
## SPATA7 -0.8736572431
## EGFL8 -2.5606726215
## MAP6D1 -2.4200842911
## AASS -2.2066815851
## CENPS -2.3937902308
## ARSK -3.3852969552
## EFCAB11 -2.2055395833
## ZFP69B -2.1613460019
## LRRC46 -1.2177721217
## PFN2 -3.4088972715
## ZNF850 -1.9588844999
## SLC35E4 -3.4457098110
## AZIN2 -1.9205294905
## EFNA3 -2.5100716057
## BMP8A -3.7226011587
## ASIC3 -1.0255072333
## L3MBTL4 -2.4603599735
## KCNC4 -2.3650251286
## BBS12 -2.9996282670
## TMEM44 -3.0120232930
## MTCP1 -0.7867377089
## TSPAN15 -2.7525015343
## IFT140 -3.3876050990
## TEX22 -3.3116593669
## NWD1 -2.0319254731
## ZNF257 -2.9777243618
## CCDC15 -3.4696212488
## CDK20 -2.6099953116
## WTIP -3.4997283566
## TRPC6 -3.5787809946
## IFT81 -3.6303660978
## UGT8 -2.5814160673
## EHHADH -3.6946213246
## CDIN1 -2.1100055647
## BEND5 -3.5501908050
## ZRANB3 -2.3367784715
## CCL24 -1.4645442899
## BEX5 -3.6769561002
## LIPT2 -3.5988951707
## EXTL2 -3.4281504791
## CCDC138 -1.5180533994
## NAP1L5 -3.1406051186
## FN3K -2.4993589686
## ZNF670 -3.3984175124
## SENP8 -1.0724637171
## PARD6G -2.3173293748
## LTB4R2 -3.6097238814
## GPLD1 -2.4839538910
## TDRD12 -3.6644400962
## MYORG -3.4929340044
## FCRLB -3.1418175605
## CELF3 -3.4167379178
## ADSS1 -1.0753058056
## MYO1A -2.6945707832
## CPLANE2 -3.5872505649
## KCNMB3 -2.5676124409
## CATSPERG -2.4331489600
## ZNF620 -2.4046460876
## MAP3K13 -3.5967515178
## CFAP97D1 -3.3634240926
## NAF1 -3.6502660117
## SCML2 -2.6540700245
## TPH1 -3.5340999900
## KRTCAP3 -3.2513439002
## WNT2B -3.6390388749
## SSC4D -3.6723867032
## UFSP1 -3.7122828847
## LOC100133315 -3.1240498523
## ZNF835 -3.4484655153
## OR1F1 -3.6864668427
test <- topTable(efit_age, coef = "COVIDyes", adjust.method = "fdr", p.value = 0.05, n = Inf, sort.by = "p")
#We see that when arranged by logFC and by adjusted pvalue our model with and without age shows the same ordering of the genes.
#We saw that lactate concentration was contributing to PC2. Let’s check if we should be adjusting for this variable.
mm_lactate <- model.matrix(~COVID + Age + Lactate_mmol.l , pDat)
mm_lactate_df <- as.data.frame(mm_lactate)
lactate_logres <- glm(COVIDyes ~ Lactate_mmol.l, data = mm_lactate_df, family = binomial)
summary(lactate_logres)##
## Call:
## glm(formula = COVIDyes ~ Lactate_mmol.l, family = binomial, data = mm_lactate_df)
##
## Deviance Residuals:
## Min 1Q Median 3Q Max
## -2.1839 0.4396 0.4876 0.6916 1.3768
##
## Coefficients:
## Estimate Std. Error z value Pr(>|z|)
## (Intercept) 2.2880 0.3943 5.803 6.5e-09 ***
## Lactate_mmol.l -0.8370 0.2641 -3.170 0.00153 **
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## (Dispersion parameter for binomial family taken to be 1)
##
## Null deviance: 128.29 on 125 degrees of freedom
## Residual deviance: 114.03 on 124 degrees of freedom
## AIC: 118.03
##
## Number of Fisher Scoring iterations: 5
#The summary shows that lactate conc indeed does seem to be significantly associated with COVID status. Let's visualise that
mm_lactate_df %>%
ggplot(aes(x = Lactate_mmol.l, y = COVIDyes)) +
geom_point(alpha = 0.2, colour = "orange") +
geom_smooth(method = "glm", method.args = list(family = "binomial"), colour = "orange") +
theme_minimal() +
labs(title = "Does lactate concentration inform of COVID status?", x = "Lactate (mmol/l)", y = "Probability of COVID-positive status")## `geom_smooth()` using formula 'y ~ x'
#so now we know that there is a significant association with lactate levels and the probability of having COVID. Let's add lactate to our linear model
efit_lactate <- lmFit(eNorm, mm_lactate) %>%
eBayes()
topTable(efit_lactate, coef = "COVIDyes", adjust.method = "fdr", p.value = 0.05, n = Inf, sort.by = "logFC")## logFC AveExpr t P.Value adj.P.Val
## HBA2 -5210.0066201 2.670516e+03 -5.385548 3.539048e-07 1.345292e-05
## FTL -4311.1486346 6.897358e+03 -5.390220 3.465486e-07 1.330119e-05
## ACTB -4282.1435805 7.242785e+03 -5.505742 2.054988e-07 9.671785e-06
## B2M 3412.4168490 1.601035e+04 2.456013 1.544921e-02 3.429982e-02
## RNA28SN1 -3159.3396190 2.785014e+03 -6.270212 5.604685e-09 9.535513e-07
## EEF1A1 -2693.2804779 8.071037e+03 -4.421591 2.132161e-05 2.241793e-04
## TXNIP 2553.2877016 6.352420e+03 2.633243 9.545841e-03 2.326149e-02
## FCGR3B 2515.1552594 6.069773e+03 2.625327 9.758295e-03 2.365285e-02
## RNA28SN4 -2484.4673816 1.437686e+03 -7.066989 1.047085e-10 7.304959e-08
## HBA1 -2333.6950131 1.667291e+03 -3.995972 1.103875e-04 7.395894e-04
## IFITM2 -2264.2050970 5.357986e+03 -2.804146 5.867286e-03 1.580715e-02
## FTH1 -2175.3051279 5.797449e+03 -2.913139 4.253094e-03 1.224016e-02
## RNA18SN2 -1936.1165997 1.965368e+03 -7.282163 3.459589e-11 3.419227e-08
## RNA18SN3 -1936.1165997 1.965368e+03 -7.282163 3.459589e-11 3.419227e-08
## RNA18SN4 -1936.1165997 1.965368e+03 -7.282163 3.459589e-11 3.419227e-08
## IGKC 1616.8945186 1.619772e+03 3.243960 1.519090e-03 5.389799e-03
## RNA28SN3 -1479.5362707 2.155951e+03 -3.476437 7.034558e-04 2.964814e-03
## IGHG1 1407.0336676 1.138835e+03 3.501928 6.450462e-04 2.770825e-03
## RPL13A -1399.4925858 1.394651e+03 -4.970531 2.192699e-06 4.815816e-05
## TPT1 -1373.4090646 2.890233e+03 -4.764054 5.259187e-06 8.603305e-05
## MYL6 -1291.6649850 2.073412e+03 -3.626615 4.194631e-04 1.999531e-03
## RPS27 -1163.1239738 1.484866e+03 -4.358240 2.742166e-05 2.698137e-04
## RPS11 -1080.9031350 1.485880e+03 -5.069799 1.428530e-06 3.624398e-05
## SELL 1071.8624189 2.868742e+03 2.986096 3.412337e-03 1.025084e-02
## RPS3A -1062.3716015 1.531365e+03 -4.455314 1.863104e-05 2.042183e-04
## TMSB10 -967.9014465 1.540732e+03 -4.065474 8.503336e-05 6.119512e-04
## EEF1G -920.1179314 1.192537e+03 -5.456970 2.564203e-07 1.093937e-05
## GAPDH -915.8569617 2.151126e+03 -2.718244 7.513987e-03 1.915647e-02
## RPL10 -913.8209145 1.452109e+03 -4.791709 4.683814e-06 7.969876e-05
## CD74 -904.1187775 1.048920e+03 -5.572926 1.512199e-07 7.888812e-06
## RPL3 -885.7122500 1.152295e+03 -5.107460 1.212613e-06 3.246408e-05
## RPL11 -843.0593632 1.135183e+03 -4.858938 3.528056e-06 6.691289e-05
## UBC -797.0040414 3.852682e+03 -2.282877 2.415932e-02 4.943574e-02
## RPL13 -791.5727759 6.604025e+02 -4.799341 4.536098e-06 7.819495e-05
## JCHAIN 789.6469425 6.739732e+02 4.102969 7.377463e-05 5.527272e-04
## RPL9 -787.3063161 1.129985e+03 -4.480628 1.682963e-05 1.890146e-04
## COTL1 -773.6727672 1.129329e+03 -7.024560 1.300685e-10 8.570070e-08
## RPS6 -750.8944793 1.194081e+03 -5.631847 1.153649e-07 6.674283e-06
## LAPTM5 -749.6700966 2.310992e+03 -3.842395 1.943780e-04 1.130061e-03
## RPLP0 -716.9058242 1.012390e+03 -4.560476 1.218241e-05 1.520878e-04
## RPL8 -710.0789610 6.032670e+02 -5.561610 1.592601e-07 8.071902e-06
## RPL21 -695.8166341 1.023501e+03 -4.853123 3.615942e-06 6.764207e-05
## RPS3 -676.6183589 1.090454e+03 -5.025942 1.727322e-06 4.105420e-05
## RPL27A -672.5368611 6.994942e+02 -5.189555 8.463050e-07 2.528256e-05
## JAML -653.4630203 1.197389e+03 -4.551120 1.265491e-05 1.557568e-04
## RPS2 -650.3693061 6.653893e+02 -5.629624 1.165523e-07 6.687795e-06
## LTF 625.6997066 5.693231e+02 2.621013 9.875874e-03 2.389877e-02
## PSAP -615.5557585 2.632804e+03 -4.384863 2.467716e-05 2.490819e-04
## RPL19 -592.5056597 7.975828e+02 -5.720989 7.638403e-08 5.206406e-06
## RPS18 -585.2507763 1.000275e+03 -5.013334 1.823927e-06 4.275053e-05
## OAZ1 -581.5983370 1.263818e+03 -3.467190 7.258474e-04 3.027981e-03
## FCN1 -581.2308216 1.185167e+03 -4.161424 5.901926e-05 4.726323e-04
## RPL7 -576.9465687 1.020900e+03 -4.561095 1.215180e-05 1.518654e-04
## RPS14 -575.5316618 7.788518e+02 -5.128481 1.106282e-06 3.060805e-05
## IFIT3 572.2984065 7.003602e+02 2.401360 1.783544e-02 3.852975e-02
## RPS4X -570.6712995 8.255936e+02 -5.566787 1.555310e-07 7.970689e-06
## RPS9 -564.1646043 7.184505e+02 -5.184015 8.671870e-07 2.545752e-05
## CORO1A -558.2737110 9.710792e+02 -4.337911 2.971276e-05 2.862659e-04
## RPL32 -555.9875177 7.569707e+02 -4.778008 4.960797e-06 8.240204e-05
## RPSA -555.5450122 9.156639e+02 -3.725820 2.956411e-04 1.546671e-03
## RPL4 -548.8839612 1.106526e+03 -4.959610 2.297835e-06 4.954967e-05
## RPS12 -546.5449676 7.046718e+02 -3.900491 1.572026e-04 9.655220e-04
## RIPOR2 544.7178925 1.644850e+03 2.478601 1.454904e-02 3.268642e-02
## RPS20 -544.0821064 6.199251e+02 -4.758617 5.380090e-06 8.740804e-05
## RPL41 -543.0433236 1.413507e+03 -3.747964 2.731920e-04 1.460801e-03
## RPS8 -538.6510841 7.798878e+02 -4.835909 3.888734e-06 7.128343e-05
## SH3BGRL3 -537.0776614 8.286535e+02 -5.068807 1.434697e-06 3.624398e-05
## ACTG1 -533.3473912 1.362670e+03 -3.959638 1.263698e-04 8.149785e-04
## GABARAP -516.1652746 1.144464e+03 -3.788245 2.364399e-04 1.316943e-03
## VSIR -506.8351107 1.318588e+03 -3.168100 1.936981e-03 6.547770e-03
## TUBA1A -505.9577223 8.119862e+02 -4.981053 2.095837e-06 4.672299e-05
## RPS27A -503.7829130 8.250003e+02 -4.670302 7.765291e-06 1.102950e-04
## ZYX -484.4432425 7.049949e+02 -4.832915 3.938180e-06 7.175901e-05
## MXD1 482.1604526 1.244850e+03 3.253188 1.474427e-03 5.279590e-03
## RPS19 -478.6018826 4.883219e+02 -3.967623 1.226788e-04 7.972439e-04
## IFIT2 478.4894608 6.826143e+02 2.422875 1.685959e-02 3.685122e-02
## RPS23 -478.4674417 7.103642e+02 -4.951348 2.380604e-06 5.095517e-05
## RPL6 -472.2321594 8.469566e+02 -5.293985 5.330522e-07 1.821902e-05
## RPL18A -459.3277790 3.745194e+02 -4.820587 4.148259e-06 7.420566e-05
## PFN1 -458.8483651 9.599760e+02 -4.061723 8.624584e-05 6.181055e-04
## TRIM22 458.7116378 6.802649e+02 3.692025 3.333026e-04 1.689303e-03
## RPL39 -451.8136503 6.796865e+02 -3.904517 1.548947e-04 9.533220e-04
## EVI2B 447.6325095 1.505786e+03 2.352093 2.026097e-02 4.271912e-02
## RPS10 -443.5006180 5.866406e+02 -4.523536 1.415322e-05 1.680252e-04
## FLOT2 -441.4814527 9.928826e+02 -3.062167 2.701010e-03 8.528747e-03
## RPL12 -439.7965048 5.833387e+02 -5.039601 1.628284e-06 3.949170e-05
## ALDOA -431.8174791 6.776759e+02 -5.128301 1.107155e-06 3.060805e-05
## RPS15A -429.2470887 7.551598e+02 -4.195372 5.179585e-05 4.297886e-04
## UBA52 -427.1991559 7.891039e+02 -4.100079 7.458907e-05 5.577720e-04
## VIM -426.2851562 1.523395e+03 -2.905554 4.350623e-03 1.243747e-02
## RPL7A -425.6992461 9.370175e+02 -4.842499 3.782031e-06 7.008577e-05
## RPL26 -424.1340892 6.829367e+02 -4.968300 2.213790e-06 4.844198e-05
## RPLP1 -422.1922069 3.387761e+02 -4.709684 6.596593e-06 1.006893e-04
## IFI30 -420.9913010 8.837136e+02 -4.151961 6.119901e-05 4.835578e-04
## CYTH4 -415.6767952 6.955792e+02 -5.074197 1.401506e-06 3.587214e-05
## LILRA5 -415.6668308 6.052065e+02 -3.208661 1.701824e-03 5.894751e-03
## RPL37A -412.3813500 5.893191e+02 -4.197996 5.127441e-05 4.264478e-04
## RPS24 -411.6028989 7.285410e+02 -4.347356 2.862630e-05 2.787421e-04
## RACK1 -397.5355670 6.840549e+02 -5.422669 2.994220e-07 1.211995e-05
## RPL23A -392.3991071 5.566685e+02 -4.777622 4.968828e-06 8.242001e-05
## TYROBP -392.2205141 6.529630e+02 -4.540023 1.323828e-05 1.600469e-04
## RPL17 -392.0598984 7.536195e+02 -4.590865 1.076243e-05 1.401125e-04
## LRRK2 390.6613903 7.133897e+02 3.575601 5.008523e-04 2.296138e-03
## ICAM3 -388.3218054 6.793966e+02 -4.699946 6.868640e-06 1.032472e-04
## RPLP2 -382.3911542 2.782993e+02 -4.243940 4.291924e-05 3.712780e-04
## ALPL -380.2717153 7.099232e+02 -2.704835 7.805926e-03 1.971848e-02
## FKBP5 379.7773083 6.929104e+02 2.373068 1.919482e-02 4.089286e-02
## RPL30 -378.0285472 7.576033e+02 -4.441885 1.966069e-05 2.117854e-04
## CLIC1 -373.0861811 1.415129e+03 -2.554286 1.186441e-02 2.768830e-02
## RPS17 -370.4010960 5.248163e+02 -4.648020 8.512817e-06 1.172613e-04
## RPS16 -368.0462643 3.986775e+02 -4.583378 1.109667e-05 1.425856e-04
## HMGB2 361.6332609 7.559518e+02 2.678415 8.411424e-03 2.095788e-02
## LSP1 -356.4741433 6.114417e+02 -5.698581 8.475324e-08 5.515280e-06
## RESF1 353.1142768 7.096737e+02 3.265855 1.415116e-03 5.110621e-03
## TALDO1 -349.3695009 7.690418e+02 -3.830333 2.030804e-04 1.167491e-03
## SMCHD1 346.0659532 7.308843e+02 3.858984 1.829863e-04 1.090329e-03
## RPL37 -333.1246854 7.505007e+02 -3.736169 2.849404e-04 1.506640e-03
## RPL28 -331.5284212 3.684683e+02 -3.907169 1.533919e-04 9.466965e-04
## SERF2 -331.0780346 4.475110e+02 -4.635237 8.972570e-06 1.213394e-04
## AIF1 -330.6583855 4.725196e+02 -7.225793 4.629570e-11 3.921907e-08
## ENO1 -327.9178105 6.216098e+02 -4.407703 2.253519e-05 2.336253e-04
## CFL1 -325.7415175 9.282552e+02 -3.535996 5.740866e-04 2.546248e-03
## RPL23 -323.6603286 6.485856e+02 -4.277741 3.762426e-05 3.362651e-04
## FKBP8 -323.0413261 3.546305e+02 -4.709802 6.593349e-06 1.006893e-04
## EEF1D -322.0066527 2.657495e+02 -5.883929 3.563711e-08 3.040691e-06
## CD52 -321.6755567 4.501647e+02 -3.799021 2.274345e-04 1.277165e-03
## ADAR 321.0419779 7.163728e+02 4.202138 5.046133e-05 4.205702e-04
## PFDN5 -317.5814835 4.489034e+02 -4.961511 2.279187e-06 4.932694e-05
## RPL15 -317.3249630 6.730490e+02 -5.057344 1.507850e-06 3.741235e-05
## MEGF9 316.7988215 6.226543e+02 3.533367 5.792889e-04 2.567401e-03
## ARRB2 -315.8135645 1.097418e+03 -2.718769 7.502764e-03 1.914382e-02
## MME 315.4257570 4.623207e+02 4.128796 6.686516e-05 5.151525e-04
## HLA-DRB1 -315.0801386 3.976591e+02 -4.537112 1.339558e-05 1.614549e-04
## RPL27 -314.2477773 5.364111e+02 -4.687588 7.229531e-06 1.059855e-04
## FCGR3A 311.6606455 9.488448e+02 2.660873 8.836621e-03 2.179296e-02
## CFLAR 308.7985849 9.755296e+02 2.841046 5.266929e-03 1.451342e-02
## S100A6 -305.7230427 1.118226e+03 -2.402603 1.777773e-02 3.843307e-02
## MMP25 -304.4469354 8.946589e+02 -2.423013 1.685348e-02 3.684466e-02
## TXNDC5 303.4223140 2.778705e+02 3.490476 6.706973e-04 2.858236e-03
## CST7 -295.5998077 4.633194e+02 -2.672507 8.552509e-03 2.122468e-02
## RPL5 -293.1192456 6.126065e+02 -4.730899 6.039589e-06 9.562201e-05
## GPSM3 -290.6048303 7.229320e+02 -3.403102 9.004565e-04 3.580092e-03
## FAU -287.1531447 3.203537e+02 -4.798128 4.559266e-06 7.848025e-05
## RPL18 -283.4117316 3.225091e+02 -4.532697 1.363758e-05 1.633321e-04
## HCK -282.8025004 7.718585e+02 -3.463512 7.349387e-04 3.057304e-03
## RPL36A -280.4122922 3.750905e+02 -4.298508 3.468870e-05 3.186739e-04
## RASSF2 277.1827786 9.324978e+02 2.484890 1.430689e-02 3.222175e-02
## TAP1 275.2595765 5.968937e+02 2.916436 4.211328e-03 1.213173e-02
## RPS5 -273.5109981 3.041199e+02 -4.753861 5.488058e-06 8.867625e-05
## RPS7 -271.0153366 5.779519e+02 -4.588977 1.084579e-05 1.404269e-04
## LIMD2 -270.0468398 3.674818e+02 -5.498772 2.121180e-07 9.827029e-06
## RPL34 -268.7559145 4.798503e+02 -3.479884 6.952773e-04 2.939112e-03
## RPL31 -261.7572790 5.798508e+02 -4.005510 1.065235e-04 7.207595e-04
## RPS25 -260.9000067 4.875764e+02 -4.692358 7.088111e-06 1.052128e-04
## TLR2 255.3027515 7.191036e+02 2.369647 1.936523e-02 4.118931e-02
## RPL35 -254.9375116 2.659602e+02 -4.648358 8.500957e-06 1.172613e-04
## RNF213 254.3551288 4.557329e+02 3.462327 7.378913e-04 3.065286e-03
## CDC42SE1 252.8039208 1.095522e+03 2.394684 1.814825e-02 3.907029e-02
## LST1 -250.4907950 3.942650e+02 -3.877214 1.712019e-04 1.031735e-03
## ABTB1 -243.1781996 5.332241e+02 -2.800758 5.925429e-03 1.591386e-02
## RHOG -241.1251166 5.131822e+02 -3.232849 1.574537e-03 5.539607e-03
## NCF1 -238.3763376 8.546713e+02 -2.546816 1.210806e-02 2.816823e-02
## RPL29 -233.9865549 4.046779e+02 -4.503442 1.535103e-05 1.776098e-04
## TNFRSF1B -233.4654711 6.979230e+02 -4.963435 2.260463e-06 4.910090e-05
## MSN 232.7821710 1.000436e+03 2.601655 1.041933e-02 2.489890e-02
## STAT1 232.1484541 4.288975e+02 3.234831 1.564509e-03 5.520703e-03
## MSL1 230.2574017 6.883031e+02 2.558610 1.172543e-02 2.741789e-02
## EFHD2 -226.7241737 4.131762e+02 -5.742260 6.919188e-08 4.855715e-06
## GBP1 226.4877789 2.827242e+02 2.321165 2.192845e-02 4.567464e-02
## SPI1 -225.6658857 4.114436e+02 -3.795904 2.300054e-04 1.287943e-03
## HSP90B1 225.2987715 4.310104e+02 3.265865 1.415070e-03 5.110621e-03
## RPL24 -223.4323193 3.951215e+02 -4.813641 4.271383e-06 7.572288e-05
## MYO1F -222.6293763 8.823565e+02 -2.923721 4.120369e-03 1.192885e-02
## CST3 -222.3102117 2.747407e+02 -3.779286 2.441834e-04 1.347891e-03
## KLF6 221.1899022 5.865033e+02 3.338726 1.114965e-03 4.218018e-03
## RPL10A -220.6049952 3.855645e+02 -4.639880 8.802872e-06 1.204176e-04
## TKT -219.2654133 7.439736e+02 -2.999998 3.270652e-03 9.928317e-03
## USP15 215.2242828 6.551776e+02 2.549525 1.201917e-02 2.799438e-02
## HLA-DRA -213.4885152 6.389640e+02 -2.798829 5.958773e-03 1.598353e-02
## RGS18 213.2311968 4.455505e+02 2.970120 3.582139e-03 1.066370e-02
## IFI16 210.3725536 5.089642e+02 3.015016 3.123704e-03 9.567958e-03
## FLNA -208.6907794 4.771500e+02 -4.321989 3.163471e-05 2.989900e-04
## RPL14 -206.6184452 4.359828e+02 -4.111614 7.138920e-05 5.403165e-04
## CNN2 -205.4545037 5.810240e+02 -3.445117 7.820366e-04 3.203784e-03
## HK3 -205.2071980 3.791184e+02 -3.248160 1.498608e-03 5.342774e-03
## COX4I1 -204.9338706 3.397489e+02 -4.699378 6.884821e-06 1.033043e-04
## OAS2 204.1378883 2.480898e+02 2.432666 1.643141e-02 3.611500e-02
## ITGB2 -203.9958750 8.217875e+02 -3.083312 2.529188e-03 8.096133e-03
## LILRB3 -202.3784385 4.729252e+02 -3.492058 6.670976e-04 2.845963e-03
## PARP9 202.2821764 3.519181e+02 3.515481 6.158812e-04 2.682465e-03
## OAS3 202.1953576 2.316988e+02 2.292291 2.359309e-02 4.851145e-02
## IFI44L 200.5738061 2.146960e+02 2.281887 2.421959e-02 4.952350e-02
## ARAP1 -200.3989612 5.173862e+02 -3.746274 2.748463e-04 1.466651e-03
## FXYD5 -198.5130661 1.842737e+02 -6.004766 2.010506e-08 2.109454e-06
## RPS29 -198.3179803 3.203185e+02 -3.817280 2.129151e-04 1.211695e-03
## OAS1 196.7017568 2.445976e+02 2.677378 8.436025e-03 2.099271e-02
## MBOAT7 -195.5080918 3.280778e+02 -4.375140 2.564733e-05 2.564733e-04
## GNB2 -194.8394154 2.760143e+02 -4.899481 2.970433e-06 5.891192e-05
## RPL35A -194.2997718 3.597403e+02 -4.280173 3.726862e-05 3.345167e-04
## CYBA -194.1998078 2.018822e+02 -5.572691 1.513828e-07 7.888812e-06
## ARPC4 -193.8743581 5.025762e+02 -3.662837 3.694450e-04 1.817344e-03
## VASP -192.1420725 8.106965e+02 -2.407119 1.756942e-02 3.805904e-02
## MAN2A2 190.3965945 3.448806e+02 3.747627 2.735210e-04 1.461902e-03
## RPL38 -190.0912517 2.303508e+02 -4.637199 8.900477e-06 1.210546e-04
## B4GALT5 189.1239583 3.283939e+02 4.063352 8.571721e-05 6.161187e-04
## STK17B 188.1398929 4.969193e+02 3.120887 2.248615e-03 7.362942e-03
## CNPY3 -186.6864063 3.547225e+02 -4.947307 2.422136e-06 5.126408e-05
## SLC6A6 185.8544425 5.331331e+02 2.630946 9.607060e-03 2.337963e-02
## CD48 -185.7081095 4.285098e+02 -5.501082 2.099017e-07 9.827029e-06
## MVP -184.5295785 3.117979e+02 -4.992821 1.992439e-06 4.482501e-05
## IGF2R 184.2815756 6.692719e+02 2.395175 1.812511e-02 3.903379e-02
## GNAI2 -183.6379170 6.991300e+02 -3.940226 1.357902e-04 8.580032e-04
## RPS15 -181.7197801 1.712884e+02 -4.008088 1.055011e-04 7.162240e-04
## RPS28 -181.2527573 1.339300e+02 -3.528293 5.894558e-04 2.595322e-03
## RPL22 -181.2003595 2.970501e+02 -5.054217 1.528423e-06 3.784363e-05
## TYMP -180.7352514 1.938283e+02 -4.535164 1.350186e-05 1.620770e-04
## IFI44 178.8022239 2.112690e+02 2.457126 1.540369e-02 3.422400e-02
## NCF4 -178.5097585 5.687098e+02 -2.643261 9.282951e-03 2.271890e-02
## ANXA11 -177.9310400 5.232896e+02 -3.281060 1.346863e-03 4.899963e-03
## CTSD -177.4209550 4.440580e+02 -2.359449 1.988125e-02 4.206809e-02
## NACA -173.4911186 4.856995e+02 -5.529875 1.841045e-07 9.022644e-06
## NFAM1 -173.4553562 6.159283e+02 -3.125084 2.219135e-03 7.276454e-03
## MOB3A -173.1024104 4.839249e+02 -3.282304 1.341417e-03 4.889121e-03
## FCGRT -172.7858804 2.520064e+02 -5.233511 6.971172e-07 2.204749e-05
## EEF1B2 -172.1485514 3.136372e+02 -4.750798 5.558711e-06 8.945226e-05
## TPI1 -171.9794190 3.607991e+02 -4.536244 1.344282e-05 1.618330e-04
## SSH2 171.7726373 5.039462e+02 2.452499 1.559360e-02 3.456823e-02
## EPSTI1 170.7267761 1.882055e+02 3.754881 2.665170e-04 1.438731e-03
## RPS26 -168.7008521 2.203303e+02 -3.779126 2.443239e-04 1.347891e-03
## SAMD9L 167.7276311 2.506602e+02 2.919823 4.168810e-03 1.203556e-02
## CD46 167.3824228 5.083978e+02 2.793618 6.049692e-03 1.616340e-02
## DDX3X 166.9789263 6.239814e+02 2.344711 2.064846e-02 4.338188e-02
## CSGALNACT2 166.4989769 2.362771e+02 3.214542 1.670021e-03 5.808344e-03
## TIMP1 -165.4653538 2.282849e+02 -3.570850 5.091483e-04 2.326078e-03
## ARPC1B -165.3934738 3.803105e+02 -4.172044 5.666170e-05 4.600182e-04
## ATP6V0D1 -161.9124315 3.232266e+02 -4.853397 3.611757e-06 6.764207e-05
## TMEM123 161.8652155 3.200924e+02 2.766761 6.538621e-03 1.714474e-02
## PLEK 160.4868698 5.939236e+02 2.419469 1.701081e-02 3.710654e-02
## HLA-DPB1 -158.5264801 1.731408e+02 -5.029765 1.699024e-06 4.070792e-05
## PGGHG -158.4562527 2.902349e+02 -3.369755 1.006210e-03 3.908827e-03
## PARP14 158.0066705 2.498047e+02 3.079544 2.559049e-03 8.171870e-03
## IL18R1 156.9373722 2.124126e+02 2.424139 1.680377e-02 3.676309e-02
## CYSTM1 -156.8740525 1.942429e+02 -2.699141 7.932976e-03 1.998834e-02
## TRIM25 156.7164457 4.251199e+02 2.943204 3.885904e-03 1.138790e-02
## EEF2 -156.0200350 3.273209e+02 -5.239582 6.786416e-07 2.163626e-05
## IRAK3 155.5710648 3.448661e+02 2.285616 2.399337e-02 4.918953e-02
## BTN3A1 155.5642062 2.566035e+02 4.439697 1.983361e-05 2.130676e-04
## HLA-DPA1 -155.4938112 2.059903e+02 -4.995025 1.973625e-06 4.475564e-05
## TMEM154 154.5584054 4.303347e+02 3.018099 3.094301e-03 9.497518e-03
## R3HDM4 -154.2947501 4.578008e+02 -2.897064 4.462243e-03 1.265173e-02
## SPARC 152.0336466 2.452228e+02 3.522535 6.011967e-04 2.632039e-03
## JUNB -151.7851511 1.695710e+02 -4.746768 5.652995e-06 9.072330e-05
## TCIRG1 -151.1997817 2.462051e+02 -4.139745 6.412713e-05 5.010196e-04
## IFI27 151.1613139 1.304780e+02 2.510224 1.336754e-02 3.055222e-02
## XAF1 149.0393271 1.972448e+02 2.514737 1.320608e-02 3.025969e-02
## ATP5F1E -148.6353472 4.871762e+02 -2.634778 9.505121e-03 2.317655e-02
## UCP2 -148.2175566 1.718684e+02 -6.245216 6.328196e-09 1.000699e-06
## ADAM8 -145.1381598 3.010802e+02 -4.219693 4.715085e-05 3.994351e-04
## OASL 144.8972393 1.697173e+02 3.055996 2.753150e-03 8.661104e-03
## GNAS 142.4831320 6.489505e+02 3.107408 2.345764e-03 7.599478e-03
## STEAP4 142.3076116 4.319857e+02 2.486239 1.425546e-02 3.213643e-02
## DDX60L 141.7145148 3.287047e+02 2.693799 8.053875e-03 2.024994e-02
## CSK -141.5327968 2.366198e+02 -6.165203 9.319499e-09 1.270451e-06
## STXBP2 -141.1853621 2.493379e+02 -4.462661 1.808988e-05 1.997635e-04
## SLC38A2 140.7397826 2.550631e+02 4.101927 7.406717e-05 5.545686e-04
## LTB -140.6730366 1.145366e+02 -5.315315 4.847149e-07 1.680912e-05
## TLE5 -140.4174414 1.823832e+02 -4.017810 1.017307e-04 6.959422e-04
## CTSZ -140.3743866 4.423528e+02 -5.051876 1.544008e-06 3.801320e-05
## SLC25A6 -139.6218078 1.450113e+02 -5.962883 2.453341e-08 2.433778e-06
## TSPO -138.9515468 1.217790e+02 -4.478027 1.700669e-05 1.904620e-04
## GPX1 -138.8362145 2.005700e+02 -3.620812 4.280471e-04 2.031468e-03
## PXN -137.3390803 5.532081e+02 -2.854399 5.063904e-03 1.405192e-02
## HNRNPK 137.3128197 6.870707e+02 2.962392 3.667037e-03 1.086190e-02
## PABPC1 -137.0139813 6.655593e+02 -3.725892 2.955659e-04 1.546671e-03
## CFP -136.1893776 1.664709e+02 -5.336870 4.402210e-07 1.577348e-05
## RPS21 -135.0554347 1.582505e+02 -3.955091 1.285187e-04 8.261416e-04
## CTDSP1 -134.4123085 2.903284e+02 -4.445010 1.941635e-05 2.099161e-04
## RPL36 -130.8583234 1.128532e+02 -4.226708 4.588706e-05 3.909630e-04
## CD14 -130.6825725 1.982496e+02 -4.247870 4.226866e-05 3.675266e-04
## CAPNS1 -130.4426040 2.459115e+02 -5.193653 8.311761e-07 2.489330e-05
## PCNX1 130.3889407 2.675124e+02 3.479737 6.956229e-04 2.939112e-03
## APOL6 130.2099671 1.887671e+02 3.054497 2.765952e-03 8.689853e-03
## CAPZB -130.1964288 4.180101e+02 -4.224637 4.625665e-05 3.929828e-04
## LYST 129.4633963 3.138105e+02 3.372369 9.975180e-04 3.881418e-03
## EGLN2 -129.0696061 1.603529e+02 -5.387789 3.503575e-07 1.336090e-05
## PELI1 128.3063865 2.218051e+02 2.443761 1.595793e-02 3.523492e-02
## SERINC1 127.9341282 3.567440e+02 3.032853 2.957088e-03 9.154545e-03
## APOBR -126.1087391 3.566010e+02 -3.088776 2.486468e-03 7.974449e-03
## EIF4A1 -125.6639008 4.049447e+02 -4.434254 2.027006e-05 2.161896e-04
## SEPTIN9 -125.4053483 1.770292e+02 -6.056924 1.567561e-08 1.753893e-06
## PTAFR -125.3009488 5.063361e+02 -2.688601 8.173112e-03 2.048027e-02
## TNFRSF10C -124.9649005 4.380031e+02 -2.546320 1.212440e-02 2.818411e-02
## LILRA2 -124.7840818 4.083333e+02 -3.116612 2.279015e-03 7.433751e-03
## CYP4F3 124.6192033 2.319367e+02 3.831011 2.025816e-04 1.166123e-03
## ARHGAP4 -124.2663419 1.336422e+02 -6.106072 1.238682e-08 1.530289e-06
## DDX17 123.9261993 5.416477e+02 3.664154 3.677368e-04 1.812238e-03
## IMPDH1 -123.6648444 2.316221e+02 -5.165638 9.401168e-07 2.699706e-05
## CEBPB -123.5045516 2.601786e+02 -3.353265 1.062706e-03 4.074723e-03
## IL32 -123.3426637 1.576115e+02 -3.029374 2.988929e-03 9.223265e-03
## NOP53 -123.0216612 9.809079e+01 -5.521350 1.914008e-07 9.265360e-06
## C19orf38 -122.3582825 1.659232e+02 -5.667489 9.787089e-08 5.803744e-06
## IGSF6 -122.2930915 4.148170e+02 -2.419493 1.700977e-02 3.710654e-02
## WIPF1 122.2089136 5.650234e+02 2.837994 5.314363e-03 1.461696e-02
## LRRC25 -121.9459490 2.524165e+02 -5.472514 2.389800e-07 1.045868e-05
## CLEC7A 121.8692509 3.088035e+02 3.847109 1.910739e-04 1.117424e-03
## LILRB2 -121.7974756 2.983491e+02 -4.858309 3.537469e-06 6.691289e-05
## ATG16L2 -121.3015376 3.370351e+02 -3.758331 2.632467e-04 1.423669e-03
## CPD 121.2717362 3.083924e+02 2.479302 1.452190e-02 3.263781e-02
## PICALM 121.2359213 4.716139e+02 2.451876 1.561935e-02 3.461238e-02
## FGD3 -121.2006751 2.872203e+02 -4.398098 2.341326e-05 2.397938e-04
## SLC16A3 -121.1881710 1.816934e+02 -4.332323 3.037421e-05 2.902805e-04
## CELF2 120.2717212 3.380498e+02 3.326994 1.158881e-03 4.338487e-03
## PIK3AP1 119.4229154 3.334210e+02 2.431186 1.649552e-02 3.622905e-02
## CD164 119.1631308 3.924765e+02 3.385924 9.535597e-04 3.750984e-03
## RAB31 118.6590436 4.434606e+02 2.355106 2.010467e-02 4.245750e-02
## CREB5 118.4475626 2.863596e+02 2.926771 4.082818e-03 1.184049e-02
## CD24 118.3345614 1.206098e+02 2.801612 5.910721e-03 1.588155e-02
## RPS13 -118.3126115 3.360920e+02 -3.666957 3.641276e-04 1.800073e-03
## OSBPL8 116.5449812 3.010835e+02 2.552512 1.192189e-02 2.780056e-02
## PLEKHO1 -116.4594035 1.823990e+02 -4.411446 2.220171e-05 2.313816e-04
## TAPBP -115.6065914 2.464338e+02 -4.505332 1.523433e-05 1.770105e-04
## NUCB1 -115.0572792 1.311204e+02 -5.477782 2.333369e-07 1.034262e-05
## HSPA1A -114.9118109 1.697230e+02 -4.730498 6.049678e-06 9.562201e-05
## DOCK8 114.3969582 3.126439e+02 3.639692 4.007080e-04 1.926444e-03
## CYBC1 -114.0184741 1.942781e+02 -4.543843 1.303462e-05 1.585569e-04
## EIF4G2 113.6755652 6.640409e+02 2.540779 1.230821e-02 2.851082e-02
## LGALS1 -112.8709235 1.560579e+02 -4.090642 7.730842e-05 5.694893e-04
## TMX4 112.7026165 2.581959e+02 2.938474 3.941664e-03 1.151432e-02
## ZC3H11A 112.5854853 2.547754e+02 4.439064 1.988392e-05 2.132218e-04
## SECTM1 -112.3124244 2.043904e+02 -3.421725 8.460300e-04 3.406635e-03
## PARP8 112.1277597 2.770455e+02 3.591852 4.734314e-04 2.200195e-03
## BACH1 111.6666733 3.123030e+02 3.051793 2.789187e-03 8.753574e-03
## CAPG -111.5802181 1.862372e+02 -3.600817 4.589191e-04 2.150447e-03
## FERMT3 -111.4139577 2.103145e+02 -4.030533 9.699011e-05 6.715676e-04
## GRK6 -110.0945471 2.211526e+02 -4.572146 1.161694e-05 1.471975e-04
## DBNL -109.1464212 2.778256e+02 -4.715366 6.442723e-06 9.962281e-05
## RAF1 108.9216834 3.638603e+02 3.502447 6.439051e-04 2.769361e-03
## COX6B1 -108.3177056 2.210346e+02 -3.748610 2.725615e-04 1.460222e-03
## RNF24 108.1926966 2.776160e+02 2.858205 5.007356e-03 1.390802e-02
## RPS6KA1 -107.9575901 4.504943e+02 -2.486266 1.425441e-02 3.213643e-02
## TBC1D10C -107.6151868 1.237966e+02 -5.279167 5.693706e-07 1.906138e-05
## RNPEPL1 -107.5803333 1.060256e+02 -5.652429 1.049207e-07 6.160195e-06
## PECAM1 -107.1095391 5.697328e+02 -2.376514 1.902448e-02 4.056707e-02
## PTPN6 -106.8184353 5.268262e+02 -2.870098 4.834370e-03 1.352003e-02
## PTMA -106.1496341 4.247802e+02 -3.723803 2.977709e-04 1.554453e-03
## KPNB1 105.4921770 3.424025e+02 2.902671 4.388237e-03 1.250468e-02
## PSMB3 -104.5384800 2.138546e+02 -3.796082 2.298580e-04 1.287726e-03
## RNASEK -104.2084457 1.489011e+02 -4.993895 1.983253e-06 4.482501e-05
## SAMD9 104.1196865 1.715035e+02 3.086000 2.508090e-03 8.035103e-03
## MBNL1 103.9067876 3.960728e+02 2.402760 1.777045e-02 3.842435e-02
## CHMP2A -103.8622469 2.089416e+02 -4.401016 2.314312e-05 2.372319e-04
## NFIL3 103.7189117 2.600225e+02 2.620012 9.903331e-03 2.395055e-02
## MTMR3 103.4680955 2.966046e+02 3.277459 1.362743e-03 4.947088e-03
## KLF2 -102.9778793 2.064148e+02 -3.773203 2.495774e-04 1.371000e-03
## FAM126B 102.6905417 2.257905e+02 2.749220 6.877114e-03 1.785862e-02
## PRKCB 102.4716503 3.776651e+02 3.339191 1.113257e-03 4.217053e-03
## CREBRF 102.4575647 1.868625e+02 3.838420 1.972059e-04 1.142023e-03
## FAM8A1 102.0621196 2.186716e+02 3.995846 1.104395e-04 7.395894e-04
## TOMM7 -101.7759837 1.460260e+02 -4.457709 1.845291e-05 2.027279e-04
## ARHGAP45 -101.6523503 2.357847e+02 -3.402647 9.018282e-04 3.581943e-03
## PPM1M -101.6201159 2.218853e+02 -3.770083 2.523884e-04 1.381323e-03
## F13A1 100.7075613 2.145782e+02 3.095402 2.435560e-03 7.836620e-03
## PKN1 -100.5908919 1.353741e+02 -5.310100 4.961216e-07 1.715453e-05
## EIF2AK2 100.3583917 1.460407e+02 3.504187 6.400956e-04 2.760558e-03
## NIN 100.3448588 2.998832e+02 2.997405 3.296666e-03 9.986836e-03
## ARF5 -100.0409537 1.345374e+02 -5.719349 7.696825e-08 5.216248e-06
## CIRBP -99.6828096 2.013316e+02 -5.068711 1.435295e-06 3.624398e-05
## NINJ1 -99.4213920 2.246074e+02 -3.039725 2.895119e-03 9.002650e-03
## STAT2 99.3378049 2.076732e+02 2.532063 1.260244e-02 2.907878e-02
## CCDC88B -99.2244113 1.197151e+02 -5.008299 1.863960e-06 4.334620e-05
## PPP1CA -98.4145335 2.112399e+02 -4.549971 1.271413e-05 1.559355e-04
## S1PR4 -97.7984226 8.645349e+01 -4.740012 5.814555e-06 9.268901e-05
## LGALS9 -97.5609989 1.996380e+02 -3.190648 1.802769e-03 6.186585e-03
## HERC5 97.0356310 1.214148e+02 2.281442 2.424671e-02 4.954617e-02
## EMP3 -96.7884080 1.863266e+02 -4.318129 3.211837e-05 3.023205e-04
## STK4 96.7718794 2.956413e+02 3.611677 4.419004e-04 2.084701e-03
## ELF1 96.6668311 1.895308e+02 4.366217 2.656991e-05 2.631665e-04
## RNASE2 96.4880625 1.704180e+02 2.533596 1.255024e-02 2.896962e-02
## SLC12A6 95.5547576 2.525683e+02 2.780015 6.293009e-03 1.667823e-02
## KIAA0040 95.2043534 3.340359e+02 2.572405 1.129165e-02 2.660289e-02
## TAGAP 94.8052597 2.715670e+02 2.683278 8.296863e-03 2.072032e-02
## LAMP2 94.1708701 3.942402e+02 2.381301 1.879006e-02 4.016347e-02
## USP32 93.0467892 2.223904e+02 3.347722 1.082353e-03 4.126231e-03
## STAT3 92.6191078 3.502145e+02 2.845658 5.195971e-03 1.435458e-02
## LAMTOR4 -92.2655288 1.927988e+02 -2.438942 1.616207e-02 3.560879e-02
## SIPA1 -92.0455008 1.324994e+02 -5.904256 3.237893e-08 2.887324e-06
## GNA13 91.2377273 2.550123e+02 2.776193 6.362957e-03 1.680454e-02
## HIF1A 90.9836413 1.863594e+02 2.303868 2.291278e-02 4.734244e-02
## EIF3K -90.4269811 1.420417e+02 -4.666369 7.892454e-06 1.116239e-04
## NOTCH2 90.4075556 2.724189e+02 2.686089 8.231300e-03 2.059127e-02
## WAC 89.8748255 2.422765e+02 4.029463 9.738067e-05 6.726469e-04
## NBPF14 89.7787826 1.938345e+02 3.748977 2.722046e-04 1.460130e-03
## WDR26 89.7578311 2.800902e+02 3.219764 1.642246e-03 5.730819e-03
## DTX3L 89.6988929 1.784870e+02 3.402037 9.036689e-04 3.586141e-03
## STK10 -87.9872917 3.211683e+02 -4.641531 8.743291e-06 1.197407e-04
## THEMIS2 -87.6019391 3.447426e+02 -3.037213 2.917633e-03 9.065529e-03
## ANXA2 -87.4236620 3.756854e+02 -3.080271 2.553260e-03 8.159976e-03
## ITGB1 87.3611080 2.508506e+02 4.085590 7.880302e-05 5.768894e-04
## ADD3 87.2042039 2.493372e+02 3.076178 2.585999e-03 8.249044e-03
## CD68 -87.1373506 2.689111e+02 -3.479125 6.970690e-04 2.944173e-03
## PRDX5 -86.9462249 1.977528e+02 -2.776172 6.363337e-03 1.680454e-02
## CDKN2D -86.8704511 2.568970e+02 -2.388740 1.843088e-02 3.955668e-02
## SPTLC2 86.6374691 2.368614e+02 2.680826 8.354438e-03 2.083010e-02
## MAP3K2 86.5862427 2.218011e+02 3.071610 2.622984e-03 8.333401e-03
## CRIP1 -86.5015201 8.135996e+01 -2.828759 5.460304e-03 1.493869e-02
## ZNFX1 86.4014320 1.987261e+02 4.023463 9.959757e-05 6.835805e-04
## BPI 86.3239234 8.152870e+01 2.735970 7.143276e-03 1.842877e-02
## TGFB1 -85.9999151 2.032272e+02 -3.958574 1.268695e-04 8.173127e-04
## MAP4K4 85.3344698 3.230936e+02 2.606477 1.028150e-02 2.463355e-02
## PRELID1 -85.1969035 2.591440e+02 -3.440614 7.939912e-04 3.240446e-03
## ACAP1 -85.0770570 1.814443e+02 -3.967986 1.225130e-04 7.970404e-04
## ARHGEF1 -85.0361822 1.995232e+02 -4.833900 3.921851e-06 7.166895e-05
## SP100 84.9222270 2.643511e+02 2.989142 3.380826e-03 1.017570e-02
## SLC12A9 -84.9038332 1.006486e+02 -6.942159 1.979072e-10 1.020513e-07
## CD37 -84.8528734 1.999032e+02 -5.716846 7.786814e-08 5.245842e-06
## GSTK1 -84.7234487 2.186417e+02 -4.649964 8.444913e-06 1.171423e-04
## C1orf162 -84.3282620 2.135242e+02 -2.788956 6.132094e-03 1.633635e-02
## SUN2 -84.2317918 2.153823e+02 -5.851473 4.151800e-08 3.327050e-06
## CRISPLD2 84.1047021 1.922765e+02 3.145032 2.083855e-03 6.930600e-03
## VAMP8 -83.8715162 1.398074e+02 -4.307995 3.342217e-05 3.111357e-04
## IVNS1ABP 83.8233473 2.820156e+02 2.791963 6.078818e-03 1.621930e-02
## PLEKHO2 -83.5726032 3.508440e+02 -2.379932 1.885682e-02 4.027408e-02
## TWF2 -82.9648016 1.005644e+02 -6.773415 4.645648e-10 1.777335e-07
## ACAP2 82.8375398 2.308484e+02 3.169540 1.928139e-03 6.526177e-03
## PELATON -82.2889512 1.215682e+02 -4.697936 6.926110e-06 1.034345e-04
## RPL36AL -81.8648848 2.487973e+02 -3.593147 4.713094e-04 2.193771e-03
## PTPN12 81.8628730 2.119369e+02 3.492156 6.668752e-04 2.845963e-03
## AMPD2 -81.4403323 1.416329e+02 -4.034398 9.559263e-05 6.652809e-04
## TP53INP1 81.4040007 1.800324e+02 3.783234 2.407418e-04 1.333371e-03
## PSTPIP2 80.9306314 1.418600e+02 3.162548 1.971426e-03 6.623545e-03
## PPP4C -80.7121899 1.614571e+02 -3.745054 2.760467e-04 1.470101e-03
## RAB11FIP1 80.6670401 3.021901e+02 2.565046 1.152123e-02 2.704706e-02
## C15orf39 -80.6493718 1.381994e+02 -5.368182 3.826102e-07 1.409241e-05
## EDF1 -80.5204799 9.163668e+01 -4.334090 3.016352e-05 2.884995e-04
## ANXA6 -80.4998317 2.694456e+02 -3.161368 1.978818e-03 6.641729e-03
## WAS -80.4374839 2.968501e+02 -2.919548 4.172245e-03 1.203954e-02
## ROCK1 80.3556139 2.028554e+02 3.001110 3.259555e-03 9.904771e-03
## OGA 79.5233933 2.992402e+02 3.166077 1.949469e-03 6.577293e-03
## GSTP1 -79.3091345 8.592448e+01 -4.793817 4.642562e-06 7.945279e-05
## AP5B1 79.2502956 2.790455e+02 2.834724 5.365623e-03 1.472381e-02
## HECA 79.1866494 2.105327e+02 3.820025 2.108102e-04 1.203760e-03
## SNN 79.1061137 2.542842e+02 3.326497 1.160775e-03 4.344207e-03
## SLC9A3R1 -78.9962637 1.637925e+02 -4.725076 6.187753e-06 9.681630e-05
## SMG1 78.3090005 1.639072e+02 4.513846 1.471915e-05 1.728407e-04
## DDX60 78.1052902 9.344242e+01 2.850258 5.126082e-03 1.419125e-02
## PLSCR1 77.7027270 1.655015e+02 2.295891 2.337970e-02 4.813945e-02
## TRIR -77.6016980 1.294770e+02 -4.099908 7.463751e-05 5.577825e-04
## DENND5A 77.5874187 3.080680e+02 2.457157 1.540243e-02 3.422400e-02
## CMPK2 77.4899923 8.260055e+01 2.556603 1.178974e-02 2.753571e-02
## BSG -77.2260703 1.354238e+02 -3.319506 1.187750e-03 4.425801e-03
## RAB1B -77.2160245 2.190219e+02 -3.844899 1.926158e-04 1.123119e-03
## UBR2 77.0783087 1.951267e+02 3.732516 2.886747e-04 1.522313e-03
## CEACAM8 76.9947082 6.231524e+01 3.119778 2.256459e-03 7.380474e-03
## DDX58 76.9789889 1.574548e+02 2.489975 1.411376e-02 3.193842e-02
## CTDSP2 76.9681747 3.324591e+02 2.661902 8.811145e-03 2.173465e-02
## UBN1 76.9479277 2.279030e+02 3.688579 3.373884e-04 1.702995e-03
## MED13L 76.8162240 1.527720e+02 3.606515 4.499128e-04 2.115768e-03
## ATP2A3 -76.7477806 2.092872e+02 -3.240315 1.537076e-03 5.444958e-03
## JPT1 -76.5488189 1.543234e+02 -4.134600 6.540007e-05 5.062956e-04
## PBXIP1 -76.2020742 2.398842e+02 -2.540115 1.233041e-02 2.855108e-02
## TGFBI -76.1928442 1.059929e+02 -5.382442 3.588804e-07 1.355516e-05
## DICER1 76.0623976 1.614229e+02 3.197543 1.763492e-03 6.076412e-03
## SETX 75.8660823 1.878250e+02 4.540614 1.320658e-05 1.598265e-04
## SP3 75.7195560 2.218778e+02 3.117475 2.272846e-03 7.419752e-03
## ARL6IP4 -75.3701799 8.013245e+01 -5.547165 1.701325e-07 8.480045e-06
## NBPF19 75.1888695 1.276146e+02 3.286677 1.322434e-03 4.836284e-03
## LCP2 75.0113536 2.872292e+02 2.900880 4.411756e-03 1.255167e-02
## OGT 74.8556598 2.333961e+02 4.096864 7.550495e-05 5.614350e-04
## PPM1F -74.7435702 1.712101e+02 -4.048141 9.077667e-05 6.423695e-04
## JAK1 74.6283080 3.273323e+02 2.653859 9.011982e-03 2.217143e-02
## APOBEC3A_B 74.4466287 1.202150e+02 3.238744 1.544887e-03 5.466098e-03
## PAG1 74.2125721 1.555030e+02 3.033106 2.954790e-03 9.150847e-03
## CSF1R -74.1306790 9.314737e+01 -5.288422 5.464136e-07 1.851617e-05
## ERP29 -74.0572748 1.449785e+02 -4.887169 3.130032e-06 6.135898e-05
## PSTPIP1 -73.6790364 1.156801e+02 -4.949825 2.396179e-06 5.111274e-05
## FES -73.5311950 1.466250e+02 -3.563236 5.227120e-04 2.371378e-03
## ZFAND5 73.3976762 2.388022e+02 2.709917 7.694099e-03 1.950663e-02
## YBX1 -73.3864846 2.855851e+02 -3.883670 1.672043e-04 1.014863e-03
## BTN3A2 72.9600190 2.241474e+02 3.440648 7.938996e-04 3.240446e-03
## TUT7 72.9234795 2.176384e+02 2.796533 5.998674e-03 1.606328e-02
## QKI 72.9165838 2.115372e+02 3.089140 2.483652e-03 7.967570e-03
## EHD1 -72.9077151 1.832896e+02 -4.000199 1.086589e-04 7.301388e-04
## MEFV 72.6214963 2.121622e+02 3.411957 8.741798e-04 3.500261e-03
## BCAP31 -72.5531378 1.461989e+02 -4.643994 8.655111e-06 1.189451e-04
## AGTRAP -72.3375634 1.879971e+02 -2.378538 1.892505e-02 4.039190e-02
## ANKRD13A 71.9554637 2.569890e+02 2.910186 4.290826e-03 1.230992e-02
## MGAT1 -71.9092822 2.801515e+02 -2.835520 5.353108e-03 1.469626e-02
## AKAP13 71.8575732 2.290312e+02 3.148832 2.058971e-03 6.869027e-03
## CD4 -71.7463709 1.056741e+02 -4.914651 2.784619e-06 5.635765e-05
## ACAA1 -71.5420589 1.934182e+02 -4.204190 5.006324e-05 4.178396e-04
## EHBP1L1 -71.5192637 2.309080e+02 -4.350833 2.823609e-05 2.760418e-04
## CYTIP 71.5143147 2.682568e+02 2.487393 1.421154e-02 3.206372e-02
## CD82 -71.5025517 1.359257e+02 -3.334501 1.130598e-03 4.263617e-03
## HIPK1 71.4529591 1.774878e+02 3.034151 2.945290e-03 9.132323e-03
## SP1 71.2828729 2.413558e+02 3.184570 1.838070e-03 6.277747e-03
## LAMTOR1 -71.2579929 2.472719e+02 -2.672561 8.551200e-03 2.122468e-02
## PAPOLA 71.1829255 2.530105e+02 3.660159 3.729410e-04 1.830745e-03
## HMOX1 -70.9397053 7.744090e+01 -5.895459 3.375145e-08 2.965128e-06
## CHD2 70.8038769 1.699545e+02 4.172217 5.662408e-05 4.600182e-04
## NBPF10 70.7319043 1.138213e+02 4.094196 7.627351e-05 5.646715e-04
## RPH3A 70.4962744 6.782958e+01 4.036854 9.471418e-05 6.615490e-04
## PPP2R5A 69.9584784 2.511935e+02 2.738336 7.095075e-03 1.832334e-02
## ITGB3 69.8224756 1.344838e+02 2.776401 6.359142e-03 1.680094e-02
## SEMA4D 69.6814512 3.121918e+02 2.687579 8.196736e-03 2.052429e-02
## BLOC1S1 -68.9949182 1.778309e+02 -2.341599 2.081377e-02 4.361331e-02
## WASHC1 -68.8580759 1.276131e+02 -4.004248 1.070272e-04 7.228604e-04
## CHMP5 68.7652708 1.664297e+02 2.682035 8.326015e-03 2.078437e-02
## NT5C2 68.4220728 2.124893e+02 3.338754 1.114863e-03 4.218018e-03
## NEK7 68.2255492 1.417374e+02 3.502165 6.445247e-04 2.770592e-03
## EIF3F -67.9245977 1.320393e+02 -5.384641 3.553507e-07 1.346472e-05
## DOK2 -67.4297837 7.500722e+01 -5.280096 5.670243e-07 1.905073e-05
## STAG2 67.3447600 2.308170e+02 2.690955 8.118903e-03 2.038669e-02
## UQCRB -67.0514964 1.766402e+02 -3.641052 3.988040e-04 1.921127e-03
## ELOB -66.8994014 5.956803e+01 -4.912841 2.806179e-06 5.660082e-05
## RGS14 -66.7971132 1.545188e+02 -3.662691 3.696344e-04 1.817522e-03
## MDM2 66.7871140 1.458468e+02 3.162834 1.969635e-03 6.619627e-03
## MOB1A 66.7632899 3.434518e+02 2.436125 1.628245e-02 3.582743e-02
## PSMD4 -66.6008897 2.292773e+02 -3.750693 2.705392e-04 1.454486e-03
## PTBP3 66.4049909 2.794482e+02 2.299254 2.318183e-02 4.779841e-02
## MFN2 66.3771682 1.629244e+02 3.236612 1.555549e-03 5.495429e-03
## XBP1 66.2413324 1.621142e+02 2.625781 9.746012e-03 2.363757e-02
## KLF3 66.2164328 1.861907e+02 3.363606 1.026940e-03 3.967453e-03
## PPP2R1A -66.2047464 1.109987e+02 -5.102787 1.237572e-06 3.274735e-05
## NEDD9 66.1859510 1.483511e+02 2.985688 3.416584e-03 1.026100e-02
## PTPRE 66.1371995 2.166827e+02 3.109960 2.327073e-03 7.553128e-03
## BAZ2A 66.1288895 1.888915e+02 4.096258 7.567890e-05 5.620237e-04
## RICTOR 66.1277106 1.414603e+02 3.558803 5.307665e-04 2.398967e-03
## JMJD1C 65.9690028 1.958046e+02 2.605194 1.031800e-02 2.469657e-02
## PPP4R2 65.9631876 1.510288e+02 2.979273 3.483930e-03 1.040529e-02
## TNFRSF14 -65.4074984 8.717731e+01 -5.374768 3.714659e-07 1.374831e-05
## UBXN1 -65.3115352 8.588660e+01 -5.591677 1.387643e-07 7.446789e-06
## PSMB4 -65.2828648 1.868292e+02 -3.894557 1.606642e-04 9.824133e-04
## TAP2 65.0855411 1.655187e+02 2.744351 6.973860e-03 1.807246e-02
## CTSC -64.9385116 1.944628e+02 -2.636626 9.456317e-03 2.308128e-02
## VNN3 64.9093125 1.254469e+02 3.347831 1.081965e-03 4.126078e-03
## EPB41 64.8736682 1.634100e+02 4.483026 1.666803e-05 1.880902e-04
## EIF3G -64.7927996 7.738905e+01 -5.566243 1.559190e-07 7.970689e-06
## RAD21 64.6535294 2.241692e+02 3.421569 8.464729e-04 3.406635e-03
## SYNGR2 -64.4624440 8.737147e+01 -6.874896 2.783722e-10 1.184174e-07
## SP110 64.4110748 2.454660e+02 2.280259 2.431892e-02 4.964431e-02
## SASH3 -64.3465102 3.505792e+02 -2.503814 1.359986e-02 3.100622e-02
## RXRA -64.3385848 1.622886e+02 -4.766451 5.206707e-06 8.552846e-05
## TRAFD1 64.2093911 1.844486e+02 2.949117 3.817215e-03 1.122822e-02
## NAP1L1 -64.1983220 2.810142e+02 -3.034369 2.943313e-03 9.129232e-03
## FBL -63.8944282 7.987545e+01 -5.021102 1.763806e-06 4.167634e-05
## CD3E -63.8553694 9.747340e+01 -3.622547 4.254642e-04 2.023258e-03
## CD300LF -63.8056585 1.197838e+02 -4.880188 3.224199e-06 6.275827e-05
## DEF6 -63.5047188 1.396421e+02 -4.897455 2.996134e-06 5.922357e-05
## TSC22D4 -63.3945102 1.116143e+02 -4.712877 6.509694e-06 9.987706e-05
## OSCAR -62.9646292 1.194916e+02 -3.570636 5.095242e-04 2.326899e-03
## APAF1 62.9009448 1.655364e+02 3.350366 1.072939e-03 4.104857e-03
## NDUFA13 -62.8843371 7.325513e+01 -3.971927 1.207320e-04 7.881573e-04
## RBL2 62.7247559 1.712824e+02 3.366912 1.015745e-03 3.935556e-03
## SYNE1 62.6392808 1.224060e+02 3.819127 2.114968e-04 1.205939e-03
## BTF3 -62.6258946 2.373983e+02 -4.529062 1.383996e-05 1.651327e-04
## MAP3K1 62.5956275 1.591445e+02 3.728248 2.930970e-04 1.537383e-03
## POLD4 -61.7200610 8.465221e+01 -4.847603 3.701334e-06 6.880537e-05
## PSMB10 -61.2981820 6.302457e+01 -4.821855 4.126172e-06 7.414606e-05
## COLGALT1 -61.0180912 1.124530e+02 -5.822226 4.762669e-08 3.691847e-06
## PRRG4 60.7816009 7.128888e+01 3.977850 1.181010e-04 7.772905e-04
## ERBIN 60.5329595 1.783405e+02 3.141690 2.105970e-03 6.986520e-03
## MICAL1 -60.5098638 2.019733e+02 -2.766922 6.535600e-03 1.714114e-02
## RASGRP4 -60.3890502 2.604875e+02 -2.472724 1.477862e-02 3.313943e-02
## ATP5MC2 -60.3440685 1.550039e+02 -4.409031 2.241637e-05 2.330045e-04
## LFNG -60.2098729 6.125100e+01 -4.824856 4.074316e-06 7.343676e-05
## RBM3 -60.1385086 2.169976e+02 -2.511855 1.330898e-02 3.043728e-02
## WDFY3 60.0440560 1.682302e+02 2.350412 2.034866e-02 4.286591e-02
## EIF3D -59.9348706 1.697161e+02 -6.061296 1.535127e-08 1.733962e-06
## TCN1 59.8932674 5.782832e+01 2.487371 1.421239e-02 3.206372e-02
## XRCC5 59.7077463 3.186512e+02 2.991944 3.352067e-03 1.011333e-02
## LPIN2 59.6754893 1.283581e+02 3.686761 3.395628e-04 1.708097e-03
## ABHD5 59.4243848 1.507703e+02 2.879746 4.698083e-03 1.319736e-02
## BOD1L1 59.2374480 1.387488e+02 3.232149 1.578089e-03 5.547166e-03
## RNF167 -59.0843722 1.992480e+02 -3.696785 3.277361e-04 1.666788e-03
## TUBB1 58.9929031 9.688470e+01 3.604850 4.525267e-04 2.127216e-03
## NBN 58.9341762 1.330333e+02 2.877533 4.729026e-03 1.327171e-02
## EIF3L -58.8656218 2.008918e+02 -3.592092 4.730385e-04 2.199230e-03
## SLC15A3 -58.7525736 6.881456e+01 -7.482132 1.222926e-11 2.417318e-08
## INPP5D 58.5950001 2.307735e+02 3.750353 2.708685e-04 1.454937e-03
## XRN1 58.3485357 9.117972e+01 3.914894 1.490941e-04 9.280979e-04
## UBALD2 -58.3085377 1.670303e+02 -2.363448 1.967749e-02 4.169645e-02
## MFSD14B 58.0816289 1.377446e+02 2.642329 9.307133e-03 2.276399e-02
## NARF -58.0125853 1.496072e+02 -3.007769 3.193840e-03 9.735014e-03
## SKP1 -57.9497140 1.994948e+02 -4.061613 8.628187e-05 6.181055e-04
## LUZP6 57.8901330 1.960422e+02 3.133008 2.164446e-03 7.140565e-03
## MTPN 57.8901330 1.960422e+02 3.133008 2.164446e-03 7.140565e-03
## RALY -57.8465422 1.311957e+02 -4.152856 6.098973e-05 4.831919e-04
## NT5C3A 57.7716164 1.339374e+02 2.677384 8.435895e-03 2.099271e-02
## WASHC4 57.6966121 1.371519e+02 3.681252 3.462334e-04 1.736983e-03
## KIAA1109 57.6434968 1.164281e+02 4.107984 7.238171e-05 5.450457e-04
## ACADVL -57.6010434 1.710647e+02 -4.561881 1.211295e-05 1.517164e-04
## MAN2B1 -57.5541673 9.714994e+01 -5.530683 1.834269e-07 9.022644e-06
## NLRC5 57.3172942 2.352592e+02 2.485718 1.427529e-02 3.216280e-02
## QSOX1 -57.1920148 1.285050e+02 -2.906649 4.336421e-03 1.241370e-02
## MAP2K3 -57.1750004 1.944811e+02 -2.626549 9.725239e-03 2.361144e-02
## IFIT5 57.0085045 8.400345e+01 2.804052 5.868896e-03 1.580715e-02
## NEDD8 -56.9259595 1.413112e+02 -4.024547 9.919358e-05 6.812020e-04
## H2BC4 56.8129242 1.102399e+02 3.154141 2.024667e-03 6.771728e-03
## SNRK 56.7962686 1.634270e+02 3.475360 7.060290e-04 2.967820e-03
## MTARC1 56.5523487 1.154470e+02 3.042958 2.866381e-03 8.932024e-03
## JAK2 56.5187026 1.592936e+02 2.996829 3.302465e-03 9.996742e-03
## TAB2 56.4116373 1.842722e+02 3.201015 1.744010e-03 6.019777e-03
## CEBPA -56.3203708 7.814298e+01 -5.809419 5.057171e-08 3.869551e-06
## TFEB -56.2032407 9.473989e+01 -4.122357 6.852738e-05 5.236693e-04
## STXBP5 56.1483227 1.107839e+02 3.380297 9.715822e-04 3.802959e-03
## SPOPL 55.9307561 1.486251e+02 3.002887 3.241899e-03 9.863756e-03
## PYCARD -55.7533058 7.104117e+01 -5.176954 8.945345e-07 2.593931e-05
## ARHGDIA -55.4380150 7.885851e+01 -4.901829 2.940896e-06 5.842382e-05
## UGCG 55.3692070 1.105831e+02 2.485315 1.429067e-02 3.219134e-02
## MS4A3 55.3475481 5.048592e+01 2.690211 8.136012e-03 2.041318e-02
## GYPC -55.2668997 8.305970e+01 -3.058051 2.735682e-03 8.622160e-03
## DMXL2 55.0934277 1.334923e+02 3.440620 7.939755e-04 3.240446e-03
## SLC43A2 -54.9761434 1.304071e+02 -4.927234 2.639100e-06 5.444686e-05
## MAPKAPK3 -54.9373760 1.593994e+02 -4.792341 4.671418e-06 7.960203e-05
## SSR2 -54.8504969 3.097936e+02 -2.798691 5.961160e-03 1.598353e-02
## GSTO1 -54.8109954 1.312624e+02 -3.120409 2.251993e-03 7.367900e-03
## LRCH4 -54.3661461 1.139145e+02 -4.566860 1.186988e-05 1.497625e-04
## SERINC3 54.2901525 2.027505e+02 3.029744 2.985525e-03 9.218836e-03
## LPAR2 -54.2512062 1.384895e+02 -2.991213 3.359546e-03 1.012817e-02
## LILRA3 -54.2385669 8.682558e+01 -3.136088 2.143536e-03 7.087353e-03
## SON 54.2048326 2.002074e+02 3.608772 4.463935e-04 2.100884e-03
## PAK2 54.1386512 2.705991e+02 2.342950 2.074183e-02 4.352101e-02
## IFIH1 54.0066292 7.607794e+01 2.654303 9.000785e-03 2.215175e-02
## MYO1G -53.9402989 9.704217e+01 -5.154289 9.881022e-07 2.786683e-05
## TRIP12 53.9302891 1.994150e+02 3.447350 7.761726e-04 3.186745e-03
## WLS 53.9126644 8.562399e+01 3.387174 9.495975e-04 3.737878e-03
## PNPLA6 -53.9099030 6.076791e+01 -5.329833 4.542877e-07 1.611394e-05
## MANSC1 53.7331213 1.303586e+02 2.644772 9.243870e-03 2.265130e-02
## SPG11 53.7175338 1.212577e+02 4.578568 1.131664e-05 1.444730e-04
## CORO7 -53.5680040 6.196403e+01 -5.330133 4.536799e-07 1.611394e-05
## KIAA0930 -53.1897521 1.297134e+02 -4.182653 5.439686e-05 4.470871e-04
## ABCA1 53.1617231 9.167669e+01 3.471676 7.149034e-04 2.996026e-03
## GRK2 -53.1244651 3.422874e+02 -2.296702 2.333181e-02 4.806911e-02
## TACC3 -53.1137088 1.445115e+02 -3.840029 1.960563e-04 1.137031e-03
## SPOCK2 -53.0665974 8.982975e+01 -3.928268 1.419224e-04 8.905818e-04
## TNFAIP6 53.0533353 1.110777e+02 2.325576 2.168349e-02 4.523591e-02
## CYLD 53.0143540 1.725038e+02 4.009529 1.049340e-04 7.140088e-04
## SLFN5 52.9363449 8.678247e+01 2.607153 1.026229e-02 2.460473e-02
## C9orf72 52.8836767 1.577024e+02 2.563306 1.157612e-02 2.713832e-02
## RBMS1 52.8106605 1.663695e+02 2.674567 8.503064e-03 2.113293e-02
## SOS2 52.6468792 1.431168e+02 2.622265 9.841617e-03 2.383046e-02
## S100A10 -52.5200839 1.530519e+02 -3.014190 3.131627e-03 9.584799e-03
## PDLIM7 -52.2162271 9.641261e+01 -3.778620 2.447683e-04 1.347891e-03
## RAB8B 52.1015912 1.825296e+02 2.770927 6.460507e-03 1.697224e-02
## GUK1 -52.0764107 6.148328e+01 -4.500514 1.553357e-05 1.786888e-04
## HDAC7 -51.7745603 1.545089e+02 -3.848814 1.898921e-04 1.113258e-03
## VCPIP1 51.7530007 1.132242e+02 3.543527 5.594260e-04 2.499922e-03
## BRD2 51.3985272 2.390096e+02 4.183143 5.429440e-05 4.465545e-04
## TNFAIP8L2 -51.3921102 1.078734e+02 -5.188930 8.486373e-07 2.528854e-05
## PRKAR2B 51.3800595 9.233238e+01 3.552095 5.431765e-04 2.440179e-03
## SLC7A7 -51.2867457 1.638978e+02 -3.735310 2.858143e-04 1.509242e-03
## SLC25A3 -51.2163304 1.959651e+02 -3.753045 2.682737e-04 1.444926e-03
## HLA-DQB1 -51.1710911 8.499740e+01 -3.388251 9.461991e-04 3.728213e-03
## CPEB4 50.8061985 1.023659e+02 3.223397 1.623181e-03 5.677063e-03
## SLC15A4 50.7557694 1.563869e+02 2.447904 1.578426e-02 3.490997e-02
## MAP3K11 -50.2955843 8.308636e+01 -4.683979 7.338329e-06 1.069196e-04
## TENT5C 50.1638581 6.198452e+01 4.072788 8.271556e-05 5.989051e-04
## HADHA -50.1393171 1.995597e+02 -5.008425 1.862946e-06 4.334620e-05
## UBXN11 -50.0653915 5.223788e+01 -5.615723 1.242524e-07 7.017304e-06
## MYO9B -50.0114203 1.816536e+02 -3.900176 1.573846e-04 9.661394e-04
## PPP1R15B 49.9602174 1.214792e+02 3.594196 4.695965e-04 2.188375e-03
## PARVG -49.9248176 1.533990e+02 -5.199195 8.111312e-07 2.441628e-05
## WNK1 49.8778910 1.310469e+02 3.603884 4.540513e-04 2.133537e-03
## TPST1 49.7938552 7.701321e+01 2.829881 5.442375e-03 1.489651e-02
## TRIM38 49.7784153 1.433815e+02 2.649961 9.110820e-03 2.237613e-02
## TRANK1 49.7582519 1.464117e+02 2.696573 7.990894e-03 2.011717e-02
## KDM7A 49.5917058 1.187623e+02 3.484802 6.837598e-04 2.898282e-03
## CHMP4B -49.5855867 1.371259e+02 -4.453534 1.876444e-05 2.051118e-04
## AHCTF1 49.5139338 1.191115e+02 3.179297 1.869218e-03 6.359984e-03
## PLEC -49.5007046 6.690541e+01 -6.563970 1.323335e-09 3.649944e-07
## CD3D -49.3352850 6.773680e+01 -3.429053 8.254714e-04 3.341328e-03
## DOCK2 49.3194642 2.546311e+02 3.017079 3.103996e-03 9.517424e-03
## ZC3HAV1 49.3039316 1.424413e+02 2.733395 7.196073e-03 1.851713e-02
## KIF5B 49.0711470 1.318361e+02 3.994143 1.111436e-04 7.426272e-04
## PTGS1 49.0432869 1.412529e+02 2.816067 5.666839e-03 1.537881e-02
## RALGAPA2 49.0204760 1.203591e+02 2.766088 6.551330e-03 1.716920e-02
## ZNF106 48.8935157 1.783189e+02 2.427176 1.667029e-02 3.654522e-02
## B4GALT1 48.8762211 1.719942e+02 2.910013 4.293038e-03 1.231328e-02
## ADAM17 48.8472787 6.728714e+01 3.691423 3.340133e-04 1.692182e-03
## TADA3 -48.8329949 1.381441e+02 -3.392427 9.331189e-04 3.682792e-03
## CTSH -48.7658600 1.260717e+02 -3.452116 7.637927e-04 3.147527e-03
## FAM214B -48.6826746 1.511736e+02 -3.065089 2.676640e-03 8.472099e-03
## NCOA1 48.6773393 1.496879e+02 3.009335 3.178564e-03 9.700917e-03
## ZCCHC2 48.3189168 6.420986e+01 3.717723 3.042789e-04 1.580012e-03
## FNDC3B 48.1641408 9.921672e+01 3.770631 2.518918e-04 1.379242e-03
## EIF3C -48.1289902 1.050756e+02 -4.802466 4.476925e-06 7.783979e-05
## MPO 48.0947352 4.694274e+01 2.424821 1.677369e-02 3.670406e-02
## ABHD3 48.0572188 1.245124e+02 3.080944 2.547918e-03 8.145095e-03
## PSMD13 -47.9738431 1.625850e+02 -3.881518 1.685273e-04 1.018204e-03
## PPP1R9B -47.8814287 1.324204e+02 -6.231522 6.762754e-09 1.028285e-06
## VPS28 -47.8179759 7.076920e+01 -3.856289 1.847928e-04 1.092818e-03
## LMAN2 -47.7388179 1.254091e+02 -3.599326 4.613025e-04 2.159056e-03
## NUFIP2 47.5255369 1.414914e+02 3.508859 6.299716e-04 2.726322e-03
## PIK3R5 47.4990415 2.255393e+02 2.802870 5.889130e-03 1.584867e-02
## GSDMD -47.3307501 5.409087e+01 -4.838086 3.853161e-06 7.107074e-05
## MAPK13 47.2544863 1.071179e+02 3.320524 1.183786e-03 4.413613e-03
## DOCK11 47.0351148 1.609723e+02 3.035190 2.935879e-03 9.112672e-03
## COPE -46.8033188 7.238238e+01 -4.330979 3.053530e-05 2.913562e-04
## KAT6A 46.7092812 1.180539e+02 2.967686 3.608688e-03 1.072120e-02
## ATP6V1A 46.7052794 1.573441e+02 2.625607 9.750720e-03 2.364415e-02
## VCL 46.6385846 1.254732e+02 3.781244 2.424702e-04 1.340651e-03
## HLA-DMA -46.2998408 7.506412e+01 -4.514397 1.468637e-05 1.726267e-04
## TRAPPC1 -46.2626171 1.334744e+02 -3.357490 1.047956e-03 4.030076e-03
## RASGRP2 -46.1938056 1.684985e+02 -3.803116 2.240984e-04 1.261442e-03
## LCK -46.1383576 7.904417e+01 -3.174771 1.896338e-03 6.433230e-03
## UNC13D -46.0672474 1.432537e+02 -3.163085 1.968072e-03 6.619627e-03
## PPP1R12A 45.9601276 1.725085e+02 2.421069 1.693961e-02 3.699743e-02
## STX10 -45.9281974 1.517715e+02 -2.930601 4.036126e-03 1.174840e-02
## MCMBP 45.7902604 1.342862e+02 3.946949 1.324541e-04 8.438996e-04
## EIF2AK1 45.7772910 1.240806e+02 5.166162 9.379578e-07 2.699706e-05
## NOSIP -45.7725566 5.621492e+01 -4.447756 1.920395e-05 2.085186e-04
## ITSN2 45.7099459 1.178624e+02 3.645480 3.926641e-04 1.901591e-03
## MLF2 -45.6931381 1.443005e+02 -3.277493 1.362595e-03 4.947088e-03
## CSGALNACT1 45.6628796 7.920192e+01 3.056354 2.750099e-03 8.654052e-03
## CDC37 -45.6460959 9.211347e+01 -5.622618 1.203725e-07 6.830709e-06
## SIGLEC10 -45.5800195 1.200481e+02 -2.289104 2.378348e-02 4.886903e-02
## FLI1 45.5740235 2.197847e+02 2.545246 1.215981e-02 2.824430e-02
## IQGAP2 45.5274302 1.575463e+02 2.300053 2.313502e-02 4.772680e-02
## TMC8 -45.4713916 1.104688e+02 -3.131421 2.175302e-03 7.164422e-03
## IRF2 45.3730136 1.772945e+02 2.489733 1.412289e-02 3.194688e-02
## SIPA1L2 45.3558136 7.630592e+01 3.154423 2.022855e-03 6.767577e-03
## RAD23B 45.2874418 1.457850e+02 2.931810 4.021487e-03 1.171863e-02
## RP2 45.2863136 1.112537e+02 2.918393 4.186709e-03 1.206961e-02
## G6PD -45.2795968 1.197778e+02 -3.491489 6.683910e-04 2.849431e-03
## NPEPPS 45.2204702 1.485120e+02 2.725320 7.363953e-03 1.887132e-02
## ZBTB16 45.1528389 4.482214e+01 3.120587 2.250734e-03 7.367501e-03
## COX7C -45.0618349 1.291261e+02 -2.860912 4.967493e-03 1.382969e-02
## AP2M1 -44.9324205 2.064488e+02 -3.061693 2.704976e-03 8.536727e-03
## BTN2A1 44.8975839 1.762697e+02 2.931137 4.029626e-03 1.173658e-02
## PATL1 44.8524042 9.050442e+01 4.589555 1.082021e-05 1.402983e-04
## PARP4 44.7935499 1.476256e+02 2.820032 5.601553e-03 1.524365e-02
## PHF20L1 44.7310284 1.218556e+02 3.406196 8.911931e-04 3.557573e-03
## MARF1 44.6527425 1.548640e+02 3.114603 2.293430e-03 7.465717e-03
## HBP1 44.6422573 1.536565e+02 2.756988 6.725296e-03 1.753397e-02
## ARRB1 -44.3524445 1.067599e+02 -5.537891 1.774925e-07 8.771090e-06
## GBP4 44.0998898 7.451168e+01 2.420218 1.697746e-02 3.705422e-02
## UBL5 -43.9246718 1.293483e+02 -2.861162 4.963824e-03 1.382272e-02
## CPVL -43.8132540 1.376264e+02 -2.580022 1.105839e-02 2.610520e-02
## KDM3B 43.7102690 1.335177e+02 3.472655 7.125356e-04 2.989272e-03
## DEK 43.7021291 1.299614e+02 4.212228 4.853230e-05 4.082220e-04
## CCM2 -43.6396838 1.243615e+02 -3.600043 4.601551e-04 2.155387e-03
## EP300 43.6285911 1.004415e+02 3.718066 3.039078e-04 1.580012e-03
## PHB2 -43.6056915 9.922310e+01 -5.147733 1.016903e-06 2.851174e-05
## KDM2A 43.5302867 1.963097e+02 2.878491 4.715610e-03 1.324346e-02
## SCAF11 43.4574164 1.420130e+02 3.289704 1.309443e-03 4.797000e-03
## PTPRCAP -43.3062135 3.035666e+01 -3.602668 4.559745e-04 2.141726e-03
## STK40 -43.2841100 1.975066e+02 -2.741416 7.032760e-03 1.819376e-02
## USP34 43.1723170 1.223386e+02 3.717793 3.042026e-04 1.580012e-03
## ITM2C 43.0799481 5.459665e+01 2.585147 1.090387e-02 2.582782e-02
## CIB1 -42.9926618 7.120905e+01 -4.490445 1.617727e-05 1.838490e-04
## DNAJC13 42.9814379 8.729956e+01 4.258899 4.049313e-05 3.554763e-04
## SNX27 42.8054517 1.223616e+02 3.512208 6.228080e-04 2.706071e-03
## ZAP70 -42.7585180 5.520149e+01 -3.490319 6.710574e-04 2.858743e-03
## TMCC3 42.4976772 1.260470e+02 2.530097 1.266968e-02 2.921120e-02
## PPP1R12C -42.4416098 6.496655e+01 -5.571027 1.525408e-07 7.900147e-06
## SEL1L 42.3892526 1.146033e+02 3.868469 1.767618e-04 1.059320e-03
## EIF3M -42.3458817 1.046939e+02 -5.220149 7.395231e-07 2.284048e-05
## HNRNPH3 42.0534176 1.583682e+02 3.580431 4.925496e-04 2.265079e-03
## RGS19 -41.9535572 1.154492e+02 -3.240668 1.535322e-03 5.440369e-03
## CRTAP -41.7739013 1.004140e+02 -4.657561 8.184579e-06 1.140648e-04
## FAM89B -41.6894533 5.020861e+01 -6.155661 9.758254e-09 1.300370e-06
## CEACAM6 41.6719104 3.525454e+01 3.172098 1.912527e-03 6.480736e-03
## TMEM120A -41.6522906 7.230839e+01 -3.746650 2.744773e-04 1.465691e-03
## E2F3 41.6488729 9.748426e+01 2.947767 3.832799e-03 1.126980e-02
## PRKCSH -41.6444061 9.262552e+01 -4.672450 7.696660e-06 1.095827e-04
## NME2 -41.5936288 8.205699e+01 -3.253247 1.474148e-03 5.279590e-03
## CPNE3 41.3168290 8.814839e+01 3.354049 1.059953e-03 4.067272e-03
## AMD1 41.2330716 1.446059e+02 3.054045 2.769825e-03 8.699715e-03
## KMT2E 41.1333294 1.066485e+02 3.825232 2.068715e-04 1.186410e-03
## TAF10 -41.0064482 1.088662e+02 -4.113282 7.093726e-05 5.375820e-04
## RAP2C 40.9465293 1.361175e+02 2.942479 3.894405e-03 1.140154e-02
## GAA -40.8974226 5.734432e+01 -5.569415 1.536708e-07 7.924068e-06
## PIAS1 40.8202623 1.315906e+02 3.220210 1.639899e-03 5.727091e-03
## MAZ -40.7638075 1.201400e+02 -2.920884 4.155566e-03 1.200609e-02
## CDS2 40.6880832 1.538449e+02 2.493925 1.396534e-02 3.164480e-02
## PACS1 -40.4566683 1.243962e+02 -4.233141 4.475672e-05 3.835366e-04
## SNRPD2 -40.4143766 8.833110e+01 -3.214006 1.672896e-03 5.816638e-03
## CES1 -40.4097095 8.420999e+01 -2.314030 2.232989e-02 4.633989e-02
## NCOA2 40.2714508 9.099769e+01 3.579225 4.946111e-04 2.271037e-03
## PGLS -40.2469035 4.444768e+01 -5.861086 3.968343e-08 3.233976e-06
## PSMA7 -40.1487729 1.303205e+02 -3.214746 1.668928e-03 5.806244e-03
## NSD3 40.1332048 9.646241e+01 4.565152 1.195274e-05 1.506477e-04
## NIPBL 40.0871632 1.104868e+02 3.587764 4.801936e-04 2.222669e-03
## MAP7D1 -40.0326015 1.373781e+02 -3.071425 2.624492e-03 8.335960e-03
## PSMB1 -40.0110387 1.283435e+02 -3.850281 1.888812e-04 1.108427e-03
## SEPTIN7 39.9919891 1.790245e+02 3.052607 2.782173e-03 8.736185e-03
## USP3 39.8418632 1.450562e+02 3.511547 6.242161e-04 2.709811e-03
## NCOA3 39.8257929 8.477207e+01 5.083767 1.344404e-06 3.481361e-05
## TANK 39.8184319 1.281511e+02 2.688394 8.177898e-03 2.048793e-02
## RNASE3 39.8174680 3.985542e+01 2.319763 2.200684e-02 4.581378e-02
## DPYD 39.6647491 1.357611e+02 2.457790 1.537664e-02 3.418829e-02
## TNPO1 39.5805356 8.426560e+01 4.063194 8.576829e-05 6.161187e-04
## SH3BP2 -39.5689979 2.169452e+02 -2.733647 7.190893e-03 1.851128e-02
## PRAM1 -39.4222730 6.144100e+01 -4.057608 8.759522e-05 6.250778e-04
## APP 39.4036937 8.579951e+01 5.288416 5.464299e-07 1.851617e-05
## CAPN2 39.2508073 1.490575e+02 3.225443 1.612535e-03 5.644824e-03
## YWHAH 39.1526770 1.134181e+02 3.305703 1.242738e-03 4.595593e-03
## UBA1 -39.1083234 1.873462e+02 -3.458240 7.481582e-04 3.101418e-03
## MACIR 39.0928781 4.416678e+01 2.602264 1.040183e-02 2.486210e-02
## CNOT1 39.0683562 1.413727e+02 4.499217 1.561509e-05 1.792788e-04
## KLHL8 38.9945445 6.464648e+01 3.028837 2.993874e-03 9.227482e-03
## ACTR1A -38.9756192 1.517200e+02 -3.543167 5.601187e-04 2.502074e-03
## JTB -38.8766683 1.369361e+02 -2.459778 1.529579e-02 3.403528e-02
## GIMAP5 -38.8751632 8.577913e+01 -3.282466 1.340708e-03 4.888043e-03
## OSGIN2 38.8685632 7.306707e+01 3.753911 2.674434e-04 1.442282e-03
## VOPP1 -38.8407557 1.332950e+02 -2.783656 6.227012e-03 1.652548e-02
## DYRK1A 38.7568795 1.169311e+02 3.687955 3.381331e-04 1.704317e-03
## PNISR 38.7318591 1.664202e+02 2.970376 3.579361e-03 1.065810e-02
## ZNF217 38.5771748 1.417172e+02 2.393843 1.818803e-02 3.914173e-02
## CTDNEP1 -38.4793224 1.228679e+02 -3.595622 4.672773e-04 2.180137e-03
## CAVIN2 38.2422009 9.727598e+01 3.262732 1.429532e-03 5.153266e-03
## SERPINB6 -38.2391956 6.216465e+01 -5.785678 5.651070e-08 4.188856e-06
## ZBTB34 38.2343431 1.014707e+02 3.146130 2.076637e-03 6.910471e-03
## HERC3 38.2248041 7.371338e+01 3.810162 2.184670e-04 1.238537e-03
## PUM2 38.1847923 1.661177e+02 2.961257 3.679665e-03 1.089079e-02
## STAB1 -38.1841846 8.270922e+01 -3.028123 3.000457e-03 9.242967e-03
## ERLIN1 38.0361898 7.037644e+01 2.952980 3.772942e-03 1.112282e-02
## C5AR2 -37.9334955 1.259894e+02 -3.048727 2.815760e-03 8.799110e-03
## TPP1 37.9112205 2.078114e+02 2.642814 9.294561e-03 2.273793e-02
## MIER1 37.8945405 1.145982e+02 3.066785 2.662588e-03 8.436625e-03
## KDM5A 37.8746121 1.203062e+02 4.165090 5.819500e-05 4.685626e-04
## APRT -37.8607512 3.286586e+01 -4.804182 4.444756e-06 7.763594e-05
## PSENEN -37.7446174 8.391309e+01 -3.744461 2.766317e-04 1.472555e-03
## TP53I11 -37.7265706 8.715598e+01 -3.562207 5.245713e-04 2.375493e-03
## FNIP1 37.7235093 8.706293e+01 2.799423 5.948483e-03 1.596493e-02
## GPX4 -37.7044697 8.001004e+01 -3.405314 8.938262e-04 3.560893e-03
## IGFLR1 -37.4914783 5.324574e+01 -4.677721 7.530808e-06 1.082611e-04
## FOXN2 37.4118314 8.517708e+01 3.487696 6.770689e-04 2.878149e-03
## PTP4A1 37.3430823 1.037282e+02 2.789722 6.118476e-03 1.631410e-02
## CHMP1A -37.3073363 8.704788e+01 -4.144934 6.286723e-05 4.944333e-04
## LIMS1 37.2969198 9.863491e+01 3.907184 1.533837e-04 9.466965e-04
## IL1R1 37.2821586 6.187158e+01 2.618499 9.944971e-03 2.403551e-02
## SPAG9 37.2652588 1.064268e+02 2.986565 3.407470e-03 1.024141e-02
## ARID4B 37.2325758 1.045844e+02 3.281922 1.343086e-03 4.893073e-03
## EDEM3 37.0674847 7.418345e+01 4.535272 1.349595e-05 1.620770e-04
## QARS1 -37.0057820 1.124299e+02 -4.131278 6.623498e-05 5.114828e-04
## IMPA2 -36.9799281 5.859757e+01 -4.391384 2.404640e-05 2.447986e-04
## STX16 36.9512125 1.431381e+02 3.109523 2.330267e-03 7.559347e-03
## PPM1A 36.9272669 1.457929e+02 2.788943 6.132331e-03 1.633635e-02
## MAN1A1 36.9235459 1.117366e+02 2.385194 1.860133e-02 3.984319e-02
## C18orf25 36.9059106 6.291991e+01 3.881298 1.686625e-04 1.018502e-03
## VAMP2 -36.8992234 1.433549e+02 -2.945534 3.858702e-03 1.132777e-02
## H2BC21 36.8647691 9.096919e+01 3.480812 6.930905e-04 2.931545e-03
## RFFL 36.8486574 1.079016e+02 3.387007 9.501260e-04 3.738718e-03
## DRAP1 -36.8457861 6.098790e+01 -3.621563 4.269271e-04 2.029130e-03
## KMT2C 36.7965794 8.591296e+01 3.640559 3.994940e-04 1.922278e-03
## CD2BP2 -36.6853103 1.251863e+02 -4.439879 1.981917e-05 2.130676e-04
## SHOC2 36.6748087 1.442953e+02 2.396693 1.805363e-02 3.890190e-02
## CD79B -36.5762776 4.278334e+01 -3.298514 1.272306e-03 4.689107e-03
## CHMP1B 36.5477969 1.734707e+02 2.472018 1.480643e-02 3.317669e-02
## RNF145 36.5246850 1.378634e+02 2.709209 7.709585e-03 1.953336e-02
## STAT5A -36.4380145 1.592304e+02 -2.867942 4.865323e-03 1.358670e-02
## MED13 36.4345790 8.061566e+01 4.156407 6.016559e-05 4.795457e-04
## KIDINS220 36.4201047 8.987570e+01 3.483533 6.867158e-04 2.908732e-03
## EVL -36.4082805 6.519973e+01 -3.383484 9.613359e-04 3.769072e-03
## CDK5RAP3 -36.3746274 2.413536e+02 -2.280480 2.430541e-02 4.964220e-02
## RB1CC1 36.3288819 9.750158e+01 3.238413 1.546539e-03 5.468681e-03
## TOM1 -36.2286045 9.757974e+01 -2.774201 6.399690e-03 1.687424e-02
## KLRB1 -36.2099692 4.120303e+01 -4.504765 1.526926e-05 1.771952e-04
## TSEN34 -36.1617100 1.151767e+02 -2.893762 4.506343e-03 1.275847e-02
## TYK2 -36.1339569 1.468494e+02 -3.667285 3.637072e-04 1.800073e-03
## CALM1 35.9737076 3.500291e+02 2.285361 2.400878e-02 4.921261e-02
## PLIN3 -35.9171709 1.068782e+02 -2.989094 3.381320e-03 1.017570e-02
## PGAP6 -35.8949536 5.542591e+01 -5.499600 2.113214e-07 9.827029e-06
## CRKL 35.8929074 9.064875e+01 4.915854 2.770373e-06 5.616517e-05
## EIF6 -35.8504759 7.179992e+01 -4.074424 8.220540e-05 5.959389e-04
## PLB1 -35.7717598 5.871048e+01 -3.269088 1.400341e-03 5.070763e-03
## SNX17 -35.7576448 1.125624e+02 -3.819243 2.114081e-04 1.205939e-03
## NFE2L2 35.7129751 1.273963e+02 2.387061 1.851140e-02 3.968641e-02
## MIDN -35.7072864 1.448856e+02 -2.431940 1.646282e-02 3.617062e-02
## EDEM1 35.6260854 8.903135e+01 5.266955 6.011089e-07 1.974834e-05
## AKT1 -35.5838914 1.027137e+02 -5.199294 8.107772e-07 2.441628e-05
## ANKRD13D -35.5820021 1.041355e+02 -3.707261 3.157927e-04 1.624860e-03
## POR -35.4704939 6.314590e+01 -3.091445 2.465849e-03 7.923319e-03
## LILRA1 -35.4091602 1.003846e+02 -3.409261 8.821031e-04 3.526664e-03
## PLXDC2 35.4009495 1.286897e+02 2.443073 1.598692e-02 3.527533e-02
## UBR5 35.3757350 1.123865e+02 3.885289 1.662162e-04 1.009900e-03
## HLA-DMB -35.3254065 7.190885e+01 -4.171922 5.668829e-05 4.600182e-04
## ATM 35.2653412 1.240426e+02 2.913338 4.250557e-03 1.223583e-02
## BIRC6 35.1878592 7.190745e+01 4.728205 6.107700e-06 9.585751e-05
## ZNF385A -35.1860449 3.754878e+01 -6.234042 6.680651e-09 1.028285e-06
## DEF8 -35.1839542 1.550802e+02 -2.967235 3.613623e-03 1.073049e-02
## SVIL 35.1740659 1.304548e+02 2.449311 1.572564e-02 3.479591e-02
## REL 35.1046802 1.015583e+02 3.241877 1.529342e-03 5.421296e-03
## BTN3A3 35.0794662 7.670434e+01 3.869174 1.763072e-04 1.057665e-03
## DHRS13 -34.9518329 7.013825e+01 -2.873568 4.784938e-03 1.340959e-02
## RC3H1 34.9060499 1.009587e+02 2.886458 4.605345e-03 1.299843e-02
## GIT2 34.8662195 1.790233e+02 2.475307 1.467732e-02 3.294966e-02
## MRFAP1 -34.6929625 1.634503e+02 -3.226626 1.606409e-03 5.630026e-03
## TPR 34.6571404 1.473671e+02 2.469878 1.489097e-02 3.332493e-02
## FUT7 -34.6456563 3.223891e+01 -5.602710 1.319106e-07 7.286037e-06
## ARFGAP2 -34.6088385 9.070118e+01 -4.802865 4.469414e-06 7.783738e-05
## ARID5A -34.5810942 6.795398e+01 -2.882270 4.663008e-03 1.311437e-02
## USF2 -34.5491161 9.784618e+01 -4.650918 8.411792e-06 1.168195e-04
## MKLN1 34.4640638 8.586137e+01 4.575556 1.145651e-05 1.459444e-04
## RIOK3 34.3872281 1.113256e+02 2.625919 9.742271e-03 2.363333e-02
## DPP7 -34.3700260 2.498545e+01 -4.647673 8.524968e-06 1.172925e-04
## BAZ2B 34.2180195 9.035474e+01 3.253475 1.473059e-03 5.278091e-03
## EIF5 34.1979827 1.723897e+02 2.604779 1.032985e-02 2.471495e-02
## PRPF6 -34.1681626 6.287130e+01 -5.769481 6.094952e-08 4.434732e-06
## KAT2B 34.0336418 8.504289e+01 3.894499 1.606983e-04 9.824133e-04
## UBXN4 34.0055559 1.113414e+02 3.285305 1.328363e-03 4.853263e-03
## PLAAT4 -33.9737697 6.513321e+01 -2.755305 6.757931e-03 1.759971e-02
## ERGIC3 -33.9350661 9.158749e+01 -3.729638 2.916492e-04 1.532548e-03
## PHF3 33.8989748 9.405755e+01 3.756128 2.653309e-04 1.433633e-03
## CHD1 33.7573471 8.106465e+01 2.782130 6.254606e-03 1.659162e-02
## MAPK3 -33.7257360 1.167952e+02 -2.928367 4.063309e-03 1.180280e-02
## TUFM -33.6556316 7.979441e+01 -4.271658 3.852852e-05 3.420272e-04
## MAT2B 33.6188429 1.422819e+02 3.369491 1.007093e-03 3.910977e-03
## ZEB2 33.5983854 1.107059e+02 2.587435 1.083553e-02 2.569674e-02
## KMT2D 33.5398876 1.069567e+02 3.113696 2.299968e-03 7.481519e-03
## TMEM170B 33.4967011 1.049071e+02 2.987700 3.395707e-03 1.021123e-02
## NBR1 33.4726692 1.864490e+02 2.397617 1.801026e-02 3.882099e-02
## CHSY1 33.4595555 1.093149e+02 2.412272 1.733440e-02 3.764622e-02
## MTDH 33.2772968 9.650345e+01 4.958815 2.305672e-06 4.962844e-05
## DIP2B 33.2437795 8.847932e+01 3.510756 6.259051e-04 2.713171e-03
## DEDD2 -33.2413677 1.291831e+02 -2.795822 6.011084e-03 1.607474e-02
## DDX6 33.2122331 1.749070e+02 2.765851 6.555808e-03 1.716920e-02
## LYPLA2 -33.1820561 4.850174e+01 -5.257005 6.282366e-07 2.046947e-05
## RARA -33.1664430 1.399666e+02 -2.300772 2.309303e-02 4.767335e-02
## CREG1 33.1618418 1.090574e+02 3.725263 2.962285e-04 1.549061e-03
## SETD2 33.1085475 8.511057e+01 4.765647 5.224262e-06 8.569813e-05
## UNC119 -33.1062655 1.044217e+02 -3.128640 2.194437e-03 7.215420e-03
## CASP10 33.0307961 6.485548e+01 5.591119 1.391195e-07 7.446789e-06
## FIS1 -32.9837745 5.308226e+01 -3.787982 2.366638e-04 1.317144e-03
## AFF1 32.9329012 7.991046e+01 3.181479 1.856268e-03 6.324430e-03
## MORC3 32.9123830 8.802963e+01 3.496433 6.572366e-04 2.816827e-03
## SELENOW -32.8258894 4.948854e+01 -4.235056 4.442552e-05 3.809737e-04
## DDX39B -32.8224905 1.821055e+02 -3.476717 7.027887e-04 2.964109e-03
## DOK1 -32.8030160 6.841051e+01 -5.017387 1.792316e-06 4.226018e-05
## TAOK1 32.6450293 9.036542e+01 3.376206 9.848845e-04 3.846141e-03
## THRAP3 32.5973630 1.367113e+02 3.183304 1.845503e-03 6.293177e-03
## PCF11 32.5744514 1.057245e+02 3.105253 2.361654e-03 7.640266e-03
## PIP4P2 32.5726275 1.038930e+02 2.711948 7.649809e-03 1.941914e-02
## RNH1 -32.5400568 3.276725e+01 -5.612899 1.258765e-07 7.034515e-06
## ARL6IP1 32.5384030 1.047719e+02 4.300198 3.445986e-05 3.175555e-04
## GPBP1L1 32.5016307 1.587829e+02 2.755851 6.747320e-03 1.757593e-02
## ABI1 32.4892064 1.304218e+02 2.773974 6.403896e-03 1.687679e-02
## LEPROT 32.4882411 8.947314e+01 4.131248 6.624262e-05 5.114828e-04
## RHOT2 -32.4787178 4.303786e+01 -5.065672 1.454352e-06 3.654366e-05
## TRABD -32.4594331 3.744705e+01 -5.441473 2.750437e-07 1.152657e-05
## KLF7 32.4027395 8.493973e+01 2.319025 2.204821e-02 4.585707e-02
## ATXN7 32.3725085 6.438516e+01 4.293602 3.536167e-05 3.231982e-04
## MYCBP2 32.3358678 6.689463e+01 4.585299 1.100995e-05 1.417785e-04
## MDH2 -32.3214695 5.830712e+01 -5.517646 1.946586e-07 9.346765e-06
## WDR83OS -32.3125610 7.107354e+01 -3.640534 3.995291e-04 1.922278e-03
## LDB1 -32.2471832 1.415039e+02 -4.172663 5.652707e-05 4.598155e-04
## RAB1A 32.2146225 1.349901e+02 2.368230 1.943619e-02 4.129582e-02
## TMEM259 -32.1659381 6.005994e+01 -5.429681 2.900942e-07 1.193831e-05
## RAB5C -32.0919131 2.103433e+02 -2.387174 1.850600e-02 3.968641e-02
## CNPPD1 -32.0890324 1.013221e+02 -2.976944 3.508686e-03 1.047395e-02
## EIF5A -32.0573965 1.353363e+02 -2.811262 5.746861e-03 1.553276e-02
## ITCH 31.9943461 9.900280e+01 3.475197 7.064213e-04 2.967820e-03
## TMEM50A 31.9757826 2.020649e+02 2.340820 2.085534e-02 4.368498e-02
## SF3B5 -31.9386235 6.150043e+01 -3.402011 9.037454e-04 3.586141e-03
## ARHGAP15 -31.8669310 1.275339e+02 -2.413994 1.725650e-02 3.751825e-02
## TLK1 31.8570535 7.687831e+01 4.700689 6.847483e-06 1.030598e-04
## CHIT1 31.8487345 2.777570e+01 2.844787 5.209306e-03 1.437802e-02
## COPA 31.7972267 1.265631e+02 3.474877 7.071871e-04 2.969985e-03
## PHIP 31.7512513 8.980356e+01 3.396585 9.202667e-04 3.642641e-03
## CRLF3 31.7388639 1.122039e+02 2.727307 7.322321e-03 1.878087e-02
## APEH -31.6640744 7.373473e+01 -4.678918 7.493608e-06 1.079881e-04
## LPCAT1 -31.6278682 1.039814e+02 -5.475790 2.354558e-07 1.034262e-05
## SLC19A1 -31.6234536 7.846143e+01 -2.943068 3.887495e-03 1.138975e-02
## MAF1 -31.5946125 6.724306e+01 -4.971479 2.183802e-06 4.814107e-05
## NPC2 -31.5307095 1.421390e+02 -2.618205 9.953093e-03 2.404148e-02
## CEP63 31.5173360 9.140290e+01 3.403985 8.978049e-04 3.571944e-03
## TRIM28 -31.4980783 5.913307e+01 -4.506783 1.514534e-05 1.762745e-04
## CSNK2B -31.4409280 8.004811e+01 -4.716112 6.422772e-06 9.944397e-05
## TMC6 -31.3907062 8.870563e+01 -3.663425 3.686812e-04 1.815093e-03
## TMOD3 31.3856569 7.800535e+01 3.579038 4.949317e-04 2.271629e-03
## COMMD6 -31.3067280 6.616956e+01 -3.867479 1.774021e-04 1.062620e-03
## CHMP4A -31.2791003 6.563874e+01 -5.001386 1.920309e-06 4.405196e-05
## SZRD1 -31.2717315 1.369710e+02 -3.764970 2.570592e-04 1.400635e-03
## MTMR6 31.2255559 8.538179e+01 3.372121 9.983386e-04 3.882517e-03
## AUP1 -31.2207055 1.253401e+02 -2.906512 4.338195e-03 1.241578e-02
## HSBP1 -31.1892006 1.159853e+02 -3.652354 3.833080e-04 1.865344e-03
## BID -31.1481592 1.278205e+02 -2.819581 5.608948e-03 1.525073e-02
## CSNK1A1 31.1231891 1.691170e+02 2.814071 5.699955e-03 1.543413e-02
## TNKS2 31.1181833 7.444453e+01 4.522138 1.423357e-05 1.688101e-04
## UQCRC1 -31.0675077 1.053646e+02 -2.964596 3.642638e-03 1.080582e-02
## CANX 30.9861379 1.956729e+02 2.650056 9.108383e-03 2.237478e-02
## NOD2 30.9441747 7.447489e+01 3.357196 1.048974e-03 4.032684e-03
## NAPRT -30.9297206 2.198267e+01 -5.702732 8.313815e-08 5.477880e-06
## PRRC2C 30.9175555 1.108168e+02 3.309637 1.226827e-03 4.549252e-03
## SH3BP1 -30.8546241 5.284604e+01 -5.124181 1.127268e-06 3.101949e-05
## CELF1 30.8061536 1.141638e+02 3.401996 9.037923e-04 3.586141e-03
## FAR2 30.7559818 5.885948e+01 3.496190 6.577821e-04 2.816827e-03
## IRF3 -30.7383542 4.385028e+01 -4.269702 3.882360e-05 3.438744e-04
## YOD1 30.6607243 5.202285e+01 3.504665 6.390526e-04 2.757062e-03
## CCR7 -30.6352084 4.138170e+01 -3.722490 2.991654e-04 1.560977e-03
## HMGN4 30.6131129 1.096389e+02 3.748453 2.727143e-04 1.460222e-03
## MARCO -30.6085637 2.188781e+01 -5.935875 2.788351e-08 2.603925e-06
## MTRNR2L6 -30.5429690 4.498673e+01 -3.078116 2.570447e-03 8.203847e-03
## GPR27 30.5402671 8.660367e+01 2.489860 1.411810e-02 3.194213e-02
## LSM14A 30.5135053 1.306511e+02 3.944127 1.338450e-04 8.497867e-04
## TMEM219 -30.5007126 7.548929e+01 -3.233105 1.573236e-03 5.536669e-03
## TMED8 30.4983020 6.825837e+01 2.641801 9.320867e-03 2.278818e-02
## DGKZ -30.4770877 7.529135e+01 -4.208598 4.921794e-05 4.128181e-04
## CORO1C 30.4574852 1.635465e+02 2.368517 1.942182e-02 4.128006e-02
## POLR2E -30.4471869 3.925324e+01 -5.420082 3.029376e-07 1.222054e-05
## MARCHF2 -30.4181960 7.536482e+01 -2.923085 4.128240e-03 1.193878e-02
## PGRMC1 30.3727918 7.516286e+01 3.242600 1.525775e-03 5.411391e-03
## TES 30.3601407 8.796754e+01 3.717031 3.050274e-04 1.583206e-03
## RHOT1 30.3377943 8.289552e+01 3.442003 7.902850e-04 3.231993e-03
## HPSE 30.3102286 8.443525e+01 2.385901 1.856724e-02 3.978455e-02
## PPP2R5C 30.3041056 1.555864e+02 3.174845 1.895889e-03 6.433230e-03
## PLXNB2 -30.2476390 4.299010e+01 -4.551018 1.266017e-05 1.557568e-04
## SEPTIN2 30.2205198 1.525657e+02 3.488093 6.761557e-04 2.876330e-03
## IKZF1 30.1391585 2.170370e+02 2.620536 9.888948e-03 2.392553e-02
## TBC1D10B -30.1346873 6.165357e+01 -4.742255 5.760434e-06 9.194986e-05
## CEP19 30.1078146 7.496780e+01 2.556093 1.180616e-02 2.756862e-02
## CREBBP 30.0573310 1.134018e+02 2.739588 7.069674e-03 1.827116e-02
## TSPAN2 30.0571601 6.673063e+01 2.720609 7.463527e-03 1.906881e-02
## TACC1 30.0298288 1.064991e+02 3.232616 1.575718e-03 5.542115e-03
## BAG1 -30.0247781 7.074354e+01 -3.106250 2.354292e-03 7.618527e-03
## PTAR1 29.9996671 6.570521e+01 3.783745 2.402993e-04 1.331984e-03
## EIF3H -29.9768597 1.270660e+02 -4.277118 3.771601e-05 3.368312e-04
## PIM3 -29.9064383 6.916755e+01 -3.457149 7.509197e-04 3.111777e-03
## LRRC75A -29.8563913 5.610602e+01 -2.716017 7.561765e-03 1.923967e-02
## NFAT5 29.8467587 5.619766e+01 3.778881 2.445388e-04 1.347891e-03
## YME1L1 29.8140995 1.133109e+02 3.857528 1.839601e-04 1.092818e-03
## MAP3K5 29.7492706 9.358860e+01 2.756519 6.734379e-03 1.755379e-02
## STK38 -29.7429115 2.130187e+02 -2.502698 1.364067e-02 3.108731e-02
## FAM120A 29.7364356 1.535071e+02 2.718619 7.505958e-03 1.914382e-02
## EPS15 29.7173517 8.613818e+01 3.778963 2.444664e-04 1.347891e-03
## SMG7 29.7153293 9.100097e+01 4.424374 2.108606e-05 2.220965e-04
## USP9X 29.7052981 1.098897e+02 2.716895 7.542897e-03 1.921365e-02
## STXBP3 29.6770946 1.052541e+02 2.471149 1.484072e-02 3.324098e-02
## MTF1 29.6665183 8.288418e+01 2.990531 3.366535e-03 1.014408e-02
## RSU1 29.6487879 7.403378e+01 4.397177 2.349912e-05 2.404655e-04
## SCAMP2 -29.5873453 9.379822e+01 -5.036182 1.652541e-06 3.975483e-05
## TRAF3IP3 -29.5202200 1.618663e+02 -2.691407 8.108550e-03 2.036582e-02
## FAM111A 29.4469263 7.331442e+01 4.905224 2.898713e-06 5.777939e-05
## ATP6V1F -29.4383022 5.748247e+01 -4.504438 1.528944e-05 1.772559e-04
## SART1 -29.4076698 5.642193e+01 -4.807211 4.388498e-06 7.691466e-05
## USP25 29.3944228 6.833131e+01 3.887210 1.650506e-04 1.003846e-03
## IL6ST 29.3549788 7.018728e+01 4.069844 8.364091e-05 6.039874e-04
## KIAA0232 29.3386293 1.188543e+02 2.293713 2.350859e-02 4.836285e-02
## ATF7IP 29.3299731 7.425007e+01 4.224309 4.631547e-05 3.932008e-04
## SLC66A2 -29.2935004 3.194441e+01 -5.120868 1.143699e-06 3.137439e-05
## FAM160B1 29.2664981 9.024988e+01 2.676924 8.446821e-03 2.101517e-02
## BRK1 -29.2659294 1.710527e+02 -2.397562 1.801281e-02 3.882099e-02
## CAMK2G 29.2459863 1.231632e+02 2.780331 6.287255e-03 1.666671e-02
## NAPSA -29.2184959 2.401286e+01 -7.379814 2.084582e-11 3.090392e-08
## EPN1 -29.2011726 3.854586e+01 -5.173668 9.075416e-07 2.625230e-05
## PTPN18 -29.1873172 1.747350e+02 -3.194685 1.779676e-03 6.126838e-03
## RCOR1 29.1707015 9.074520e+01 3.244540 1.516243e-03 5.384025e-03
## SEL1L3 29.0985351 6.457743e+01 2.707960 7.736975e-03 1.957349e-02
## WASHC2C 29.0766194 9.573364e+01 3.761137 2.606136e-04 1.411360e-03
## BANF1 -29.0295552 4.939688e+01 -4.282651 3.690944e-05 3.323811e-04
## EPG5 29.0249115 5.076223e+01 4.568740 1.177929e-05 1.489364e-04
## CGGBP1 29.0106903 1.293696e+02 3.659454 3.738659e-04 1.833767e-03
## UQCR11 -28.9990740 5.132063e+01 -3.554377 5.389249e-04 2.428438e-03
## KIF1B 28.9889970 7.758487e+01 2.589958 1.076062e-02 2.554451e-02
## MMD 28.8211083 5.295268e+01 4.287537 3.621105e-05 3.283904e-04
## GBP3 28.8117347 5.272194e+01 2.427688 1.664786e-02 3.650955e-02
## ZNF281 28.8010973 6.635523e+01 2.963190 3.658185e-03 1.084381e-02
## OGFR -28.7964667 5.197173e+01 -3.930402 1.408091e-04 8.850004e-04
## CD79A -28.7488292 3.696312e+01 -3.768040 2.542446e-04 1.387640e-03
## SPSB3 -28.6621591 3.523570e+01 -5.009382 1.855273e-06 4.331406e-05
## CD6 -28.6463732 4.376320e+01 -2.986667 3.406409e-03 1.024081e-02
## ROGDI -28.6017823 3.294670e+01 -4.479130 1.693140e-05 1.899777e-04
## LAMP1 -28.5732755 1.181997e+02 -3.569701 5.111737e-04 2.332636e-03
## NPTN 28.5602681 1.041581e+02 2.856169 5.037534e-03 1.398856e-02
## C17orf49 -28.5566972 4.899262e+01 -4.512654 1.479024e-05 1.735037e-04
## PFKL -28.5384241 3.511668e+01 -5.034761 1.662731e-06 3.991901e-05
## NDUFA1 -28.4751446 1.163793e+02 -2.522322 1.293872e-02 2.973324e-02
## HCST -28.4075809 4.651372e+01 -3.403475 8.993352e-04 3.576833e-03
## FBRS -28.3562996 9.235538e+01 -3.666850 3.642643e-04 1.800073e-03
## LARP1 28.2967352 7.621258e+01 4.951800 2.376002e-06 5.095517e-05
## EIF3A 28.2905305 1.238513e+02 3.322857 1.174748e-03 4.388192e-03
## ZNF467 -28.2843928 4.233810e+01 -4.822745 4.110720e-06 7.398048e-05
## COPB2 28.2632624 1.192865e+02 3.307874 1.233934e-03 4.568986e-03
## RNF11 28.2250358 1.154221e+02 2.310191 2.254853e-02 4.668743e-02
## ATP5PO -28.2237159 1.055607e+02 -3.095429 2.435353e-03 7.836620e-03
## KBTBD2 28.2106421 1.072864e+02 2.863853 4.924511e-03 1.372291e-02
## USP4 28.1918989 1.605139e+02 2.329500 2.146756e-02 4.484065e-02
## CRTC2 -28.1899468 1.006048e+02 -3.405987 8.918152e-04 3.558196e-03
## CENPB -28.1104739 3.313386e+01 -5.040412 1.622577e-06 3.946073e-05
## TOP1 28.0798056 7.723353e+01 4.326716 3.105200e-05 2.948573e-04
## KCNAB2 -27.9846112 1.084747e+02 -4.698358 6.913993e-06 1.034345e-04
## ESYT1 -27.9595523 8.448768e+01 -2.802278 5.899288e-03 1.586880e-02
## PRKAA1 27.9132754 7.547090e+01 3.483129 6.876572e-04 2.910640e-03
## PIK3CG 27.8616196 1.022963e+02 2.853462 5.077909e-03 1.408090e-02
## RNF169 27.8254570 5.189974e+01 4.134740 6.536525e-05 5.062956e-04
## PHF12 27.7019262 9.665000e+01 3.346900 1.085296e-03 4.135005e-03
## TNFSF14 27.6568898 9.290756e+01 2.302610 2.298588e-02 4.748520e-02
## RHOC -27.5946319 6.498898e+01 -2.295316 2.341364e-02 4.819260e-02
## MYLIP 27.5724924 8.963508e+01 2.560810 1.165524e-02 2.728606e-02
## BRMS1 -27.5558624 5.200969e+01 -4.297218 3.486449e-05 3.190532e-04
## TAGLN -27.5322051 2.005573e+01 -6.616804 1.017576e-09 3.175908e-07
## ANKRD12 27.5073931 9.082200e+01 3.126747 2.207548e-03 7.252500e-03
## RASSF4 -27.4501853 5.750386e+01 -4.334711 3.008983e-05 2.880270e-04
## PIM2 27.4390534 1.381539e+02 2.413567 1.727577e-02 3.755326e-02
## ADCY7 27.4079164 9.889263e+01 2.590592 1.074185e-02 2.551540e-02
## KIAA0319L 27.3562434 1.067191e+02 2.749001 6.881442e-03 1.785862e-02
## UHMK1 27.3547496 9.391854e+01 3.848286 1.902576e-04 1.113749e-03
## ALDH3B1 -27.3390350 5.200472e+01 -4.113748 7.081157e-05 5.373162e-04
## CLIP1 27.3222674 7.835296e+01 2.820355 5.596266e-03 1.523335e-02
## SMARCD2 -27.3200438 1.008590e+02 -4.674609 7.628319e-06 1.092655e-04
## SYTL1 -27.2996861 3.094226e+01 -5.596660 1.356268e-07 7.344904e-06
## LAT -27.2913377 4.094321e+01 -3.786265 2.381309e-04 1.322833e-03
## DENND1C -27.2897978 6.290853e+01 -5.267849 5.987261e-07 1.972470e-05
## MTCH1 -27.2746579 1.391175e+02 -3.104462 2.367508e-03 7.650857e-03
## PEF1 -27.2602127 7.664237e+01 -2.808735 5.789370e-03 1.564053e-02
## PTPA -27.2536964 6.543058e+01 -3.527134 5.918014e-04 2.600306e-03
## ARFGEF1 27.2397694 7.973127e+01 3.642705 3.965016e-04 1.911589e-03
## SOD1 -27.2354245 5.595933e+01 -4.303741 3.398453e-05 3.150529e-04
## XPO1 27.2233149 1.037991e+02 2.994619 3.324825e-03 1.004648e-02
## FBXW5 -27.2002445 3.542401e+01 -4.135141 6.526514e-05 5.061787e-04
## ZDHHC19 -27.1953591 1.671525e+01 -2.762314 6.622975e-03 1.732050e-02
## VPS9D1 -27.1710753 5.384773e+01 -2.691800 8.099535e-03 2.035611e-02
## MFNG -27.0627725 8.476068e+01 -3.186785 1.825134e-03 6.239863e-03
## CLTB -27.0213234 3.613798e+01 -5.268250 5.976629e-07 1.972470e-05
## SARS1 -27.0206670 8.426163e+01 -5.060608 1.486655e-06 3.704144e-05
## TCF25 -26.9968343 6.821969e+01 -4.691314 7.118830e-06 1.054355e-04
## SSR1 26.9099107 1.405781e+02 4.007356 1.057907e-04 7.169584e-04
## LNPEP 26.9031056 7.994613e+01 4.413861 2.198910e-05 2.293673e-04
## FAM50A -26.8920785 5.044365e+01 -4.298918 3.463303e-05 3.186739e-04
## BLVRB -26.8857188 4.367586e+01 -2.796164 6.005105e-03 1.607143e-02
## FCMR -26.8558986 6.614753e+01 -3.059245 2.725582e-03 8.592610e-03
## PELI2 26.8500518 8.550254e+01 3.123016 2.233612e-03 7.315834e-03
## NLRP12 -26.7917261 1.132651e+02 -2.353386 2.019376e-02 4.259257e-02
## TNFSF13 -26.7708606 8.516356e+01 -4.879682 3.231130e-06 6.275827e-05
## JDP2 26.7050854 7.230123e+01 2.686604 8.219333e-03 2.056753e-02
## STING1 -26.6986004 7.368207e+01 -4.041316 9.313878e-05 6.543778e-04
## HM13 -26.6939331 8.163811e+01 -3.853941 1.863801e-04 1.099008e-03
## COPB1 26.6537790 1.048339e+02 3.268276 1.404039e-03 5.079898e-03
## ARHGEF6 26.6290649 1.070178e+02 2.848816 5.147897e-03 1.424500e-02
## FLII -26.5613187 1.642210e+02 -2.814719 5.689185e-03 1.541730e-02
## NUP153 26.5410674 6.752663e+01 3.336385 1.123602e-03 4.243924e-03
## LPAR6 -26.5362502 8.193540e+01 -3.001000 3.260652e-03 9.905567e-03
## RELT -26.5215384 7.667061e+01 -4.158508 5.968297e-05 4.771804e-04
## ATP1A1 -26.4665135 1.653623e+02 -2.744318 6.974508e-03 1.807246e-02
## ATP11A 26.4550492 7.149303e+01 3.202246 1.737155e-03 5.999610e-03
## TBK1 26.3972455 6.103732e+01 4.110707 7.163583e-05 5.412018e-04
## PCGF5 26.3867706 5.694832e+01 4.495245 1.586730e-05 1.807744e-04
## ARAF -26.3769139 6.003651e+01 -4.329231 3.074619e-05 2.926564e-04
## EIF4G3 26.3687696 5.492458e+01 4.383189 2.484168e-05 2.505292e-04
## NDUFV1 -26.3623916 3.372970e+01 -4.049354 9.036296e-05 6.402059e-04
## RPN1 -26.2958692 2.078619e+02 -2.426129 1.671618e-02 3.661875e-02
## CHD7 26.2862773 4.486913e+01 3.192304 1.793263e-03 6.162880e-03
## PIKFYVE 26.2206348 5.550777e+01 4.094683 7.613253e-05 5.643324e-04
## MFSD14A 26.2056996 7.224146e+01 3.781408 2.423272e-04 1.340486e-03
## SCYL2 26.1505832 6.530541e+01 4.149023 6.189136e-05 4.878698e-04
## GPR141 26.1017208 5.524532e+01 3.075078 2.594860e-03 8.266195e-03
## WWC3 26.0503616 8.311294e+01 2.961185 3.680462e-03 1.089079e-02
## NCLN -25.9906891 4.016096e+01 -4.114560 7.059316e-05 5.360019e-04
## MAP2K2 -25.9735794 5.718113e+01 -3.985078 1.149646e-04 7.620613e-04
## ANO6 25.9731413 5.733702e+01 4.465975 1.785080e-05 1.982308e-04
## GTF3A -25.9383460 9.971062e+01 -3.471297 7.158200e-04 2.997749e-03
## PIP4K2A 25.9200851 1.349147e+02 4.671218 7.735970e-06 1.100103e-04
## BAX -25.8812514 5.942547e+01 -4.035514 9.519251e-05 6.633274e-04
## AKIRIN1 25.8680817 1.219952e+02 2.593897 1.064458e-02 2.534355e-02
## NADSYN1 -25.7888481 7.232743e+01 -4.548646 1.278281e-05 1.566158e-04
## GPR108 -25.7863552 9.714116e+01 -2.782123 6.254735e-03 1.659162e-02
## MRPL28 -25.7677371 3.672365e+01 -4.091620 7.702223e-05 5.680868e-04
## PPCDC -25.7516678 4.968927e+01 -3.874184 1.731093e-04 1.041642e-03
## ATP6AP1 -25.7403934 1.256068e+02 -2.542235 1.225969e-02 2.843174e-02
## NSD1 25.7302609 8.064910e+01 4.285771 3.646191e-05 3.300721e-04
## TRAPPC8 25.7236177 6.987621e+01 3.396419 9.207767e-04 3.642641e-03
## CDC42EP2 -25.7212182 2.776886e+01 -5.958613 2.503549e-08 2.433778e-06
## ARCN1 25.6679981 1.004514e+02 4.536035 1.345424e-05 1.618330e-04
## YIPF3 -25.6676565 1.152890e+02 -2.435809 1.629601e-02 3.585062e-02
## ARFGAP1 -25.6055917 3.094574e+01 -5.572296 1.516568e-07 7.888812e-06
## CEMIP2 25.6006682 9.081123e+01 2.575778 1.118781e-02 2.637398e-02
## FNDC3A 25.5958161 4.673518e+01 4.396925 2.352266e-05 2.404989e-04
## PKN2 25.5491440 8.184720e+01 2.819573 5.609078e-03 1.525073e-02
## TNK2 -25.5454445 4.660747e+01 -4.680367 7.448820e-06 1.076925e-04
## TOMM6 -25.5094729 5.964225e+01 -4.048291 9.072545e-05 6.423695e-04
## UXT -25.4898498 4.278123e+01 -4.481829 1.674852e-05 1.884606e-04
## AP2S1 -25.4831754 4.404107e+01 -3.821837 2.094318e-04 1.196465e-03
## NUDC -25.4649867 4.170508e+01 -4.330974 3.053590e-05 2.913562e-04
## HACD4 25.4262151 1.380235e+02 2.355928 2.006224e-02 4.238304e-02
## PAN3 25.4160475 7.822233e+01 3.374294 9.911605e-04 3.864288e-03
## LAMTOR2 -25.3999309 3.675093e+01 -4.714643 6.462089e-06 9.966477e-05
## CMTM3 -25.3857681 9.704492e+01 -3.309413 1.227726e-03 4.550259e-03
## NCOR1 25.3519198 9.055509e+01 4.417111 2.170601e-05 2.268135e-04
## FBP1 -25.3286529 2.618608e+01 -6.896371 2.496796e-10 1.138923e-07
## CDIPT -25.2680607 6.149917e+01 -4.287494 3.621708e-05 3.283904e-04
## MARS1 25.2575269 1.075905e+02 5.429060 2.909083e-07 1.193831e-05
## FBXL3 25.2547228 9.621983e+01 2.607531 1.025159e-02 2.458722e-02
## RAB11A 25.2508289 1.410280e+02 2.784513 6.211572e-03 1.649565e-02
## WDR82 25.2497492 1.305999e+02 2.845220 5.202684e-03 1.436309e-02
## SLC38A1 25.2381065 6.328160e+01 3.384303 9.587174e-04 3.760049e-03
## RRM2 25.2337423 2.452927e+01 6.141175 1.046342e-08 1.376937e-06
## RASAL3 -25.2157687 5.587792e+01 -3.467852 7.242238e-04 3.025465e-03
## VPS51 -25.1956574 2.467671e+01 -4.801812 4.489243e-06 7.783979e-05
## PSMB6 -25.1827411 6.851829e+01 -3.809246 2.191915e-04 1.241253e-03
## OXSR1 25.1080347 7.923882e+01 3.075950 2.587826e-03 8.252654e-03
## KLHDC3 -25.0721132 5.692648e+01 -4.729631 6.071548e-06 9.575607e-05
## ELL2 25.0448482 3.826902e+01 3.500716 6.477171e-04 2.781291e-03
## TRIM56 25.0271938 9.278373e+01 3.368962 1.008864e-03 3.916571e-03
## TIMM17B -25.0220271 4.423219e+01 -3.850688 1.886015e-04 1.107333e-03
## STRN4 -24.9711481 5.213295e+01 -6.045132 1.658441e-08 1.804506e-06
## PAFAH1B1 24.9441389 1.407413e+02 2.760335 6.660837e-03 1.740800e-02
## NECAP2 -24.9396035 8.799286e+01 -5.698985 8.459469e-08 5.515280e-06
## SH3BP5L -24.9095767 9.975082e+01 -2.945546 3.858564e-03 1.132777e-02
## SBF2 24.9019061 4.786018e+01 3.995205 1.107039e-04 7.407252e-04
## SAP30 24.8680589 3.269407e+01 3.191825 1.796006e-03 6.170520e-03
## TOR1B 24.8598480 5.528300e+01 2.563413 1.157273e-02 2.713574e-02
## UBXN6 -24.8485373 3.852493e+01 -4.104672 7.329882e-05 5.498571e-04
## CCDC12 -24.8443308 3.068563e+01 -4.865468 3.431847e-06 6.596712e-05
## LGALSL 24.8428197 5.275608e+01 2.547622 1.208154e-02 2.812859e-02
## PPTC7 24.8078408 7.583239e+01 3.119342 2.259553e-03 7.388557e-03
## CD81 -24.8061291 3.513478e+01 -4.403381 2.292631e-05 2.356205e-04
## FUS -24.7287354 1.326888e+02 -3.362872 1.029440e-03 3.975628e-03
## SEPTIN1 -24.6814679 3.454141e+01 -3.702025 3.217095e-04 1.648153e-03
## OSBPL11 24.6630039 8.639420e+01 2.751322 6.835726e-03 1.776719e-02
## ENTPD4 24.6602974 7.385286e+01 4.679875 7.464013e-06 1.076925e-04
## HIGD2A -24.6366456 3.950013e+01 -4.983018 2.078217e-06 4.650501e-05
## PCMTD1 24.5995090 9.676103e+01 2.296650 2.333491e-02 4.806911e-02
## CHKB -24.5970911 8.134594e+01 -3.715848 3.063129e-04 1.588448e-03
## HMGCR 24.5921799 8.049557e+01 3.384441 9.582785e-04 3.760049e-03
## FAM91A1 24.5244176 7.974683e+01 3.254572 1.467835e-03 5.262552e-03
## TDRD7 24.5004964 6.044724e+01 2.770833 6.462261e-03 1.697224e-02
## NDUFB9 -24.4968776 6.045578e+01 -3.529427 5.871689e-04 2.588782e-03
## TBCB -24.4863269 4.505945e+01 -5.596780 1.355518e-07 7.344904e-06
## UHRF1BP1L 24.4429582 6.272811e+01 3.095401 2.435563e-03 7.836620e-03
## TRAM1 24.4211145 1.306377e+02 3.034346 2.943523e-03 9.129232e-03
## B3GNT2 24.3905251 6.300361e+01 2.812703 5.722760e-03 1.547468e-02
## RNF38 24.3800719 6.358499e+01 3.540012 5.662248e-04 2.523648e-03
## CFD -24.3609612 2.060355e+01 -4.655055 8.269559e-06 1.149789e-04
## CD2 -24.3227732 6.064990e+01 -2.393120 1.822228e-02 3.919409e-02
## DNAJB2 -24.3100988 3.986088e+01 -4.864334 3.448366e-06 6.610897e-05
## TXN2 -24.2859179 5.223611e+01 -3.673768 3.554953e-04 1.770758e-03
## CHPT1 24.2726006 6.479005e+01 2.545803 1.214145e-02 2.821268e-02
## MTX1 -24.2151089 6.535539e+01 -2.791003 6.095785e-03 1.626091e-02
## ZNHIT1 -24.2146542 3.595589e+01 -3.896634 1.594445e-04 9.777723e-04
## TUBB4B -24.2120414 7.236131e+01 -2.869490 4.843080e-03 1.353846e-02
## RPSAP58 -24.2052427 4.319015e+01 -2.947036 3.841263e-03 1.128496e-02
## ZNF33A 24.1968989 9.466988e+01 2.312474 2.241827e-02 4.647451e-02
## PRKD2 -24.0960660 8.720458e+01 -2.485800 1.427219e-02 3.216191e-02
## ARID1A 24.0873721 9.428265e+01 3.019611 3.079973e-03 9.455986e-03
## SSH1 24.0701978 8.185990e+01 2.277246 2.450371e-02 4.996878e-02
## CD1D -24.0391691 4.675289e+01 -5.667997 9.764151e-08 5.803744e-06
## TCF7 -24.0305866 4.601554e+01 -2.688782 8.168919e-03 2.047409e-02
## ATP5ME -23.9625616 3.814345e+01 -3.472526 7.128460e-04 2.989517e-03
## ZNF24 23.9236967 1.078281e+02 2.670187 8.608483e-03 2.131795e-02
## STX5 -23.8781080 5.960294e+01 -3.948928 1.314870e-04 8.402132e-04
## SH2D3C -23.8648786 7.585229e+01 -3.484972 6.833672e-04 2.897653e-03
## HP1BP3 23.8611963 9.159015e+01 3.466092 7.285501e-04 3.038187e-03
## TMF1 23.8575124 6.342939e+01 3.832596 2.014200e-04 1.161323e-03
## RNF19A 23.8573703 6.059115e+01 4.133860 6.558516e-05 5.073972e-04
## NELFE -23.8490976 5.379988e+01 -3.942118 1.348435e-04 8.542971e-04
## OTUB1 -23.7988712 7.650581e+01 -3.505802 6.365796e-04 2.749393e-03
## LCOR 23.7413228 5.215263e+01 3.777122 2.460895e-04 1.353093e-03
## BAG6 -23.7183054 1.182935e+02 -4.071935 8.298245e-05 6.004709e-04
## ICAM2 -23.7043268 5.028034e+01 -3.135920 2.144673e-03 7.089136e-03
## DGKH 23.7038289 2.303035e+01 2.725725 7.355463e-03 1.885364e-02
## HERC1 23.6579120 7.746065e+01 3.973822 1.198842e-04 7.859740e-04
## REEP5 -23.6541979 1.299043e+02 -3.396786 9.196520e-04 3.642641e-03
## BCKDK -23.6525259 3.943819e+01 -5.092377 1.294978e-06 3.382915e-05
## CEP350 23.6462067 6.702272e+01 3.493418 6.640181e-04 2.836907e-03
## H2BC12 23.6458659 7.443029e+01 2.664366 8.750415e-03 2.161181e-02
## YTHDF3 23.6305781 8.807644e+01 2.575454 1.119776e-02 2.639219e-02
## KCTD20 23.5845113 1.076263e+02 2.723428 7.403796e-03 1.895656e-02
## TRIM58 23.5404211 4.058413e+01 3.510874 6.256522e-04 2.713066e-03
## SLC9A8 23.5319935 7.809568e+01 2.595785 1.058934e-02 2.523027e-02
## ARPP19 23.5072592 1.074464e+02 2.927051 4.079397e-03 1.183794e-02
## SURF4 -23.5005324 1.022172e+02 -3.856441 1.846907e-04 1.092818e-03
## STUB1 -23.4143144 2.941626e+01 -4.767500 5.183917e-06 8.542002e-05
## ASGR2 -23.4136084 3.299900e+01 -3.943893 1.339608e-04 8.500672e-04
## NR2C2 23.3728350 5.029766e+01 3.768519 2.538081e-04 1.386533e-03
## MTURN 23.3609626 8.618507e+01 2.786659 6.173070e-03 1.641978e-02
## ST6GAL1 23.3544924 7.503714e+01 3.184525 1.838332e-03 6.277747e-03
## LRPAP1 -23.3516633 9.556031e+01 -2.288885 2.379663e-02 4.888760e-02
## CARD6 23.3328949 6.474590e+01 2.359501 1.987861e-02 4.206809e-02
## AIP -23.3228736 4.099780e+01 -4.755236 5.456628e-06 8.828869e-05
## TRIM5 23.2676438 3.731099e+01 3.853635 1.865884e-04 1.099008e-03
## HDAC5 -23.1935760 8.636239e+01 -2.416289 1.715314e-02 3.731405e-02
## SIDT2 -23.1706802 4.756924e+01 -4.430314 2.059174e-05 2.186374e-04
## ZFAND2B -23.1626143 5.251443e+01 -3.477841 7.001138e-04 2.954929e-03
## IKBKG -23.1396650 5.184681e+01 -4.945394 2.442042e-06 5.153492e-05
## PDZD8 23.1096619 7.019456e+01 2.310399 2.253665e-02 4.667768e-02
## CLINT1 23.1027996 5.934045e+01 3.492207 6.667606e-04 2.845963e-03
## NUP58 23.0701996 6.098182e+01 3.221403 1.633623e-03 5.708537e-03
## RAB4B -23.0621803 3.842153e+01 -4.707271 6.663005e-06 1.013118e-04
## LMF2 -23.0537188 2.634210e+01 -4.673203 7.672754e-06 1.095453e-04
## ABI3 -23.0430290 2.608378e+01 -4.941110 2.487196e-06 5.211686e-05
## NAAA -23.0293335 5.565332e+01 -3.706962 3.161284e-04 1.625177e-03
## RSL1D1 -23.0081013 7.996146e+01 -4.329622 3.069890e-05 2.924410e-04
## PNRC2 22.9757943 1.367760e+02 3.072562 2.615239e-03 8.313249e-03
## EFR3A 22.9655403 5.636296e+01 4.468941 1.763943e-05 1.960671e-04
## SIGLEC9 -22.9184987 6.044614e+01 -3.459504 7.449684e-04 3.090355e-03
## VPS13C 22.9062849 6.096054e+01 2.870746 4.825096e-03 1.350298e-02
## PNPLA2 -22.9047367 4.696022e+01 -4.237108 4.407312e-05 3.790480e-04
## PDIA6 22.8930271 1.040426e+02 2.281713 2.423016e-02 4.952727e-02
## SNRNP70 -22.8811012 6.214085e+01 -4.792541 4.667483e-06 7.960203e-05
## BIRC2 22.8695686 1.027338e+02 2.905488 4.351490e-03 1.243747e-02
## CPNE1 -22.8262782 1.233677e+02 -2.515743 1.317034e-02 3.019530e-02
## AP1G1 22.7949397 7.768832e+01 3.083545 2.527358e-03 8.092459e-03
## UTRN 22.7002321 5.905859e+01 3.342048 1.102816e-03 4.190771e-03
## WIPF2 22.6677867 6.652457e+01 3.958978 1.266797e-04 8.165331e-04
## RIC1 22.6366968 4.648304e+01 4.780860 4.901863e-06 8.176666e-05
## C12orf57 -22.6314922 1.789455e+01 -4.248869 4.210488e-05 3.663711e-04
## CYB5R3 -22.6312859 4.821838e+01 -4.429372 2.066936e-05 2.192653e-04
## SMCR8 22.6198523 7.548509e+01 3.177006 1.882900e-03 6.398554e-03
## GIMAP1-GIMAP5 -22.5691898 3.764135e+01 -4.704704 6.734392e-06 1.020050e-04
## LY86 -22.5594157 3.761406e+01 -5.001842 1.916541e-06 4.405196e-05
## PARK7 -22.5396908 1.207459e+02 -2.799112 5.953863e-03 1.597575e-02
## COASY -22.4691868 4.948381e+01 -4.556977 1.235710e-05 1.539446e-04
## PPP1R12B 22.4446924 5.287306e+01 2.831237 5.420785e-03 1.485799e-02
## NSMCE1 -22.4396604 2.904887e+01 -5.154142 9.887413e-07 2.786683e-05
## HSPA1B -22.4364667 2.484944e+01 -3.523024 6.001921e-04 2.629582e-03
## GALM 22.4259310 3.332247e+01 2.644465 9.251798e-03 2.266136e-02
## SRF -22.3907857 5.850857e+01 -4.363385 2.686942e-05 2.655594e-04
## BPTF 22.3487548 4.924442e+01 4.625276 9.347417e-06 1.251246e-04
## MMP24OS -22.3398171 3.034755e+01 -4.773495 5.055446e-06 8.373964e-05
## DGCR2 -22.3132257 9.258023e+01 -3.063369 2.690959e-03 8.503805e-03
## PARL -22.2588612 3.934935e+01 -6.271254 5.576343e-09 9.535513e-07
## KRAS 22.2318014 8.017462e+01 2.607750 1.024538e-02 2.457982e-02
## FGFR1OP2 22.2153924 7.865893e+01 3.029132 2.991154e-03 9.223892e-03
## SRPK2 22.2144414 7.458289e+01 2.628774 9.665256e-03 2.348493e-02
## CLN3 -22.2067616 5.489069e+01 -3.095644 2.433721e-03 7.836620e-03
## SMIM3 22.1975774 4.929895e+01 3.583346 4.876032e-04 2.247943e-03
## SLC22A15 22.1886337 4.100394e+01 3.601768 4.574038e-04 2.145889e-03
## AP1G2 -22.1586369 1.103251e+02 -2.283341 2.413116e-02 4.939516e-02
## HMOX2 -22.1545184 5.262125e+01 -4.240223 4.354347e-05 3.750367e-04
## SPINT2 -22.1518536 5.487710e+01 -3.056747 2.746752e-03 8.651271e-03
## ZNF148 22.1413638 7.321317e+01 2.939199 3.933073e-03 1.149668e-02
## APC 22.1338981 5.278771e+01 3.256185 1.460188e-03 5.238302e-03
## SARNP -22.1323854 6.445111e+01 -2.804202 5.866345e-03 1.580715e-02
## RRP12 -22.1304643 7.295115e+01 -2.506563 1.349978e-02 3.081952e-02
## ZNF292 22.1201287 6.102139e+01 2.838720 5.303054e-03 1.458924e-02
## PNN 22.1110474 9.887861e+01 2.989460 3.377550e-03 1.017210e-02
## MRTFA -22.0692444 6.588437e+01 -4.409275 2.239457e-05 2.329821e-04
## CSRP1 -22.0423035 5.188594e+01 -4.701457 6.825708e-06 1.028626e-04
## WBP1 -22.0422117 4.403225e+01 -4.719304 6.338102e-06 9.864815e-05
## SPRYD3 -21.9981302 4.861012e+01 -5.806135 5.135500e-08 3.904297e-06
## MCRIP1 -21.9812682 1.728762e+01 -4.867865 3.397164e-06 6.551280e-05
## ECH1 -21.9809017 4.688155e+01 -4.176012 5.580415e-05 4.558107e-04
## GPBP1 21.9399898 1.477481e+02 2.364153 1.964173e-02 4.165045e-02
## ARSA -21.9361559 3.680211e+01 -4.992960 1.991248e-06 4.482501e-05
## MLLT1 -21.9347727 4.617664e+01 -3.408815 8.834205e-04 3.530110e-03
## PSMC5 -21.9143671 6.931705e+01 -3.648420 3.886361e-04 1.886706e-03
## SSNA1 -21.8657407 2.442246e+01 -4.787798 4.761318e-06 8.041483e-05
## RASA2 21.8569257 7.043974e+01 2.735557 7.151725e-03 1.843500e-02
## RANBP9 21.8471524 5.218978e+01 3.655730 3.787908e-04 1.852560e-03
## FAM193B -21.8352585 7.591747e+01 -3.838282 1.973049e-04 1.142038e-03
## OSBPL9 21.8289823 6.144700e+01 2.796126 6.005782e-03 1.607143e-02
## UQCRFS1 -21.7961724 6.939107e+01 -3.374592 9.901809e-04 3.863008e-03
## C1GALT1 21.7893183 5.852892e+01 3.243947 1.519151e-03 5.389799e-03
## SRSF9 -21.7788672 1.132605e+02 -2.797906 5.974785e-03 1.600654e-02
## BTAF1 21.7539995 5.556688e+01 3.502553 6.436729e-04 2.769361e-03
## STK26 21.7226055 5.509762e+01 4.155842 6.029589e-05 4.799391e-04
## SIGLEC7 -21.7130395 2.992479e+01 -7.167697 6.245275e-11 4.629310e-08
## GOLGB1 21.7096649 6.867235e+01 4.449894 1.904020e-05 2.071714e-04
## PPM1B 21.6172416 8.281630e+01 2.758055 6.704692e-03 1.749948e-02
## FAM241A 21.6039217 5.828870e+01 3.701179 3.226753e-04 1.652030e-03
## RMND5A 21.5997149 8.317677e+01 2.724338 7.384615e-03 1.892018e-02
## PRR14L 21.5995217 4.775455e+01 4.635597 8.959299e-06 1.212983e-04
## SIGIRR -21.5994832 2.176615e+01 -4.309504 3.322485e-05 3.097852e-04
## RPS6KB2 -21.5728426 4.355116e+01 -3.621300 4.273199e-04 2.029641e-03
## ZNF608 21.5604248 2.966113e+01 2.344075 2.068217e-02 4.343731e-02
## C19orf53 -21.5292301 3.260124e+01 -4.097355 7.536428e-05 5.610474e-04
## LMAN1 21.5240904 2.938228e+01 4.480707 1.682429e-05 1.890146e-04
## DGAT1 -21.5123478 4.230236e+01 -4.017757 1.017507e-04 6.959422e-04
## EIF3I -21.4741831 8.362708e+01 -3.414561 8.665925e-04 3.477869e-03
## CABIN1 -21.4413794 4.119331e+01 -3.563166 5.228386e-04 2.371378e-03
## UBXN7 21.4183242 4.947988e+01 4.292299 3.554260e-05 3.237597e-04
## PEA15 -21.4045180 5.234471e+01 -4.155916 6.027877e-05 4.799391e-04
## NUMA1 -21.3970739 6.524004e+01 -4.737533 5.874938e-06 9.327545e-05
## TRIM33 21.3612913 5.967808e+01 3.711737 3.108174e-04 1.606229e-03
## G3BP2 21.3368997 8.254191e+01 3.655257 3.794200e-04 1.854873e-03
## ZDHHC17 21.3017422 5.333495e+01 3.445706 7.804863e-04 3.198537e-03
## RETREG3 -21.2709545 6.969379e+01 -3.423469 8.410959e-04 3.391839e-03
## MIA3 21.2659701 6.565482e+01 3.593701 4.704038e-04 2.190416e-03
## ELF2 21.2246244 6.821774e+01 2.940407 3.918797e-03 1.146446e-02
## PTOV1 -21.2209641 3.583851e+01 -3.444680 7.831894e-04 3.207399e-03
## ZC3H7A 21.2181306 5.200075e+01 3.746215 2.749043e-04 1.466651e-03
## ATP8A1 21.1849583 3.887458e+01 5.376376 3.687931e-07 1.374831e-05
## SLC44A1 21.1736987 4.453388e+01 6.997401 1.493988e-10 8.859351e-08
## ETFB -21.1581812 2.558850e+01 -3.971992 1.207027e-04 7.881573e-04
## RUFY1 21.1433592 9.545441e+01 2.568261 1.142042e-02 2.686358e-02
## DR1 21.1075004 1.081880e+02 2.545963 1.213616e-02 2.820593e-02
## CALCOCO2 21.0563090 1.120548e+02 2.749903 6.863638e-03 1.783193e-02
## SNRPB -21.0461704 7.053258e+01 -2.784512 6.211601e-03 1.649565e-02
## PUF60 -21.0427145 4.447099e+01 -4.327658 3.093709e-05 2.942373e-04
## SLC25A28 -21.0266845 4.201629e+01 -4.664904 7.940334e-06 1.118557e-04
## UBR4 21.0073865 1.047262e+02 3.726059 2.953897e-04 1.546671e-03
## ARID4A 21.0070105 7.010847e+01 2.778525 6.320198e-03 1.673533e-02
## NDUFA11 -20.9946816 2.527139e+01 -3.712310 3.101854e-04 1.604361e-03
## ABHD14B -20.9867258 2.785926e+01 -4.194884 5.189354e-05 4.297886e-04
## MAP2K4 20.9778195 8.293539e+01 2.364008 1.964906e-02 4.165853e-02
## HDLBP 20.9668896 1.125088e+02 3.089298 2.482424e-03 7.965788e-03
## TNPO3 20.9503860 6.856404e+01 3.451670 7.649436e-04 3.150955e-03
## EMC10 -20.9500441 3.324849e+01 -5.181269 8.777230e-07 2.557689e-05
## WDR13 -20.8996804 3.330578e+01 -4.488443 1.630830e-05 1.847340e-04
## LONP2 20.8759092 4.934011e+01 3.484991 6.833214e-04 2.897653e-03
## CDK19 20.8640322 5.172317e+01 3.778581 2.448025e-04 1.347891e-03
## PHKG2 -20.8244414 3.977870e+01 -4.482360 1.671272e-05 1.884153e-04
## TIAF1 -20.8219293 2.625894e+01 -4.185789 5.374428e-05 4.426438e-04
## CLTA -20.7920914 6.304633e+01 -3.431114 8.197766e-04 3.323949e-03
## RSBN1L 20.7595249 6.680096e+01 3.289857 1.308790e-03 4.796740e-03
## PQBP1 -20.7588732 3.757419e+01 -4.434774 2.022797e-05 2.161407e-04
## SLA2 20.7469646 4.602632e+01 3.425537 8.352773e-04 3.374111e-03
## MAN1B1 -20.7251705 3.860330e+01 -3.664598 3.671627e-04 1.811377e-03
## THOC5 -20.6881859 8.236836e+01 -2.650992 9.084568e-03 2.232552e-02
## LRP1 -20.6788525 5.487309e+01 -2.455716 1.546136e-02 3.430715e-02
## PRPF40A 20.6775635 9.444992e+01 3.309825 1.226070e-03 4.548387e-03
## SRPRA 20.6696754 1.257673e+02 4.569492 1.174328e-05 1.486395e-04
## VPS13B 20.6693798 4.326907e+01 4.057828 8.752252e-05 6.249411e-04
## ATRX 20.6563545 5.216689e+01 3.690643 3.349358e-04 1.695407e-03
## AZI2 20.6508903 5.484694e+01 2.732104 7.222671e-03 1.857348e-02
## VPS4A -20.6190387 7.216327e+01 -3.886907 1.652338e-04 1.004445e-03
## SCAP -20.5428129 4.630877e+01 -5.269873 5.933713e-07 1.965750e-05
## IDH3B -20.5118596 5.581112e+01 -4.137088 6.478168e-05 5.038103e-04
## NKTR 20.4833433 6.373023e+01 3.283447 1.336433e-03 4.877043e-03
## AFF4 20.4793176 4.742511e+01 3.740379 2.806930e-04 1.490161e-03
## FBXO38 20.4646919 7.830115e+01 2.472194 1.479951e-02 3.317373e-02
## TMED2 20.4524879 1.279011e+02 2.944357 3.872418e-03 1.135960e-02
## TEX264 -20.4461891 3.376475e+01 -4.576560 1.140971e-05 1.455045e-04
## TINF2 -20.4110111 1.076528e+02 -2.933779 3.997755e-03 1.165567e-02
## CAMK1 -20.3823172 2.373025e+01 -4.836538 3.878425e-06 7.128343e-05
## TAZ -20.3380616 4.737609e+01 -3.746015 2.751007e-04 1.466740e-03
## SNX1 20.3328185 1.324886e+02 2.666554 8.696828e-03 2.148394e-02
## RBM25 20.3297806 9.309987e+01 2.732732 7.209723e-03 1.854823e-02
## CDC34 -20.3292489 3.895673e+01 -3.618286 4.318363e-04 2.047457e-03
## TOPORS 20.3246132 5.086077e+01 3.062510 2.698134e-03 8.524206e-03
## SAT2 -20.3215909 3.396465e+01 -5.866201 3.873992e-08 3.233976e-06
## CIC -20.3189435 3.983140e+01 -5.707492 8.132286e-08 5.418478e-06
## SAMD8 20.3098805 5.824889e+01 3.158698 1.995642e-03 6.692552e-03
## SRI -20.3042167 5.618161e+01 -3.707765 3.152290e-04 1.622663e-03
## IDH1 20.2984373 6.050865e+01 3.611938 4.414989e-04 2.083636e-03
## TBC1D1 20.2924754 8.625291e+01 3.333084 1.135887e-03 4.272636e-03
## STMN1 20.2527981 3.292449e+01 4.343425 2.907376e-05 2.824036e-04
## SETD5 20.1850743 5.800582e+01 3.979414 1.174156e-04 7.740685e-04
## BIN1 -20.1806622 2.477512e+01 -4.321839 3.165333e-05 2.989900e-04
## TMEM222 -20.1768704 3.463368e+01 -4.218335 4.739921e-05 4.008960e-04
## CREB1 20.1543473 8.403639e+01 2.565788 1.149788e-02 2.701364e-02
## SUPT20H 20.1505769 8.254823e+01 3.065207 2.675660e-03 8.471257e-03
## CAPN1 -20.1469600 1.002344e+02 -2.513810 1.323912e-02 3.032367e-02
## MTRNR2L10 -20.1430853 4.819139e+01 -2.736616 7.130093e-03 1.839924e-02
## SBNO1 20.1316221 5.723994e+01 4.141111 6.379316e-05 4.993973e-04
## LILRB4 -20.1270112 4.152024e+01 -3.375629 9.867760e-04 3.852259e-03
## TET3 20.1257161 6.028762e+01 3.048313 2.819362e-03 8.806329e-03
## MPP7 20.0882074 4.850902e+01 2.628899 9.661898e-03 2.348182e-02
## RER1 -20.0707974 9.603072e+01 -3.586567 4.821908e-04 2.229545e-03
## CSNK1G2 -20.0688141 4.134168e+01 -5.519249 1.932419e-07 9.316458e-06
## HSD17B10 -20.0511162 3.583463e+01 -4.130745 6.636978e-05 5.120515e-04
## NCOA7 20.0035786 3.206978e+01 2.930557 4.036654e-03 1.174840e-02
## APEX1 -19.9991168 5.645519e+01 -4.369145 2.626374e-05 2.610964e-04
## RBM33 19.9690741 7.705365e+01 3.612517 4.406091e-04 2.080264e-03
## SUZ12 19.9548654 5.628733e+01 4.692470 7.084816e-06 1.052128e-04
## PLEKHM2 -19.9444046 4.673070e+01 -5.066605 1.448478e-06 3.647335e-05
## NDUFB10 -19.9383668 3.962241e+01 -3.225970 1.609799e-03 5.636912e-03
## RAB21 19.9315874 8.878515e+01 2.668017 8.661148e-03 2.140917e-02
## ADIPOR2 19.9208445 6.453421e+01 6.347685 3.841478e-09 7.761098e-07
## AAMP -19.9041268 4.330290e+01 -6.600255 1.104970e-09 3.196327e-07
## INPP5K -19.9016405 6.800043e+01 -3.349907 1.074569e-03 4.108441e-03
## EZH1 19.8736033 1.204256e+02 2.626365 9.730200e-03 2.361641e-02
## ANP32B -19.8724736 1.059486e+02 -2.319605 2.201570e-02 4.582419e-02
## RRP7A -19.8661145 3.740405e+01 -3.423275 8.416419e-04 3.392887e-03
## CCDC186 19.8596095 4.464278e+01 3.384340 9.585995e-04 3.760049e-03
## TTC9 -19.8333990 1.943297e+01 -5.928300 2.890105e-08 2.657104e-06
## FRY 19.8296239 5.823806e+01 2.759158 6.683434e-03 1.745552e-02
## B3GNT8 -19.8128964 2.107599e+01 -4.854972 3.587776e-06 6.747120e-05
## STT3B 19.7837040 1.144594e+02 2.985560 3.417912e-03 1.026239e-02
## GPAA1 -19.7804472 2.123605e+01 -4.689780 7.164206e-06 1.055497e-04
## LTBR -19.7284832 6.887649e+01 -3.081325 2.544899e-03 8.138608e-03
## DERPC -19.7247397 3.455066e+01 -4.259377 4.041778e-05 3.553409e-04
## ANAPC15 -19.6563077 3.635041e+01 -3.779695 2.438248e-04 1.346885e-03
## ARHGAP1 -19.6509164 7.660466e+01 -4.505266 1.523843e-05 1.770105e-04
## PRPF38B 19.6454596 9.010559e+01 2.992900 3.342304e-03 1.009158e-02
## SNRNP200 19.6380518 1.389758e+02 2.970985 3.572756e-03 1.064111e-02
## MRPL20 -19.5904461 3.487864e+01 -4.408523 2.246173e-05 2.332716e-04
## STMN3 -19.5874953 1.759112e+01 -5.400839 3.303802e-07 1.297453e-05
## UBE4A 19.5837395 6.951969e+01 3.463003 7.362053e-04 3.061499e-03
## MCRS1 -19.5802257 4.663987e+01 -4.661694 8.046227e-06 1.127993e-04
## AP1B1 -19.5673744 5.288828e+01 -4.060068 8.678614e-05 6.211730e-04
## KLHL24 19.5527890 4.580787e+01 4.317646 3.217943e-05 3.026551e-04
## SLC8B1 -19.5499027 4.169616e+01 -5.602426 1.320825e-07 7.286037e-06
## UNC93B1 -19.5408913 5.683454e+01 -2.798724 5.960596e-03 1.598353e-02
## SPAG7 -19.5164200 2.973020e+01 -6.180192 8.669177e-09 1.238752e-06
## ARF4 19.5091071 1.081584e+02 2.422593 1.687207e-02 3.687170e-02
## PDPK1 19.4544159 6.653772e+01 2.717881 7.521754e-03 1.916792e-02
## SLC26A8 19.4512889 3.280014e+01 3.282504 1.340545e-03 4.888043e-03
## ARAP2 19.4079631 4.519780e+01 3.524906 5.963368e-04 2.617526e-03
## TESC -19.3972846 2.362683e+01 -3.807981 2.201955e-04 1.245887e-03
## CCAR2 -19.3960709 6.108747e+01 -4.812615 4.289857e-06 7.593688e-05
## AFTPH 19.3947702 9.830807e+01 2.772314 6.434681e-03 1.692511e-02
## EML3 -19.3384845 4.758364e+01 -4.893871 3.042139e-06 6.003290e-05
## RFXANK -19.3267496 4.244945e+01 -3.191188 1.799662e-03 6.179498e-03
## GIGYF1 -19.3108710 6.456015e+01 -3.982245 1.161846e-04 7.680879e-04
## ZNF652 19.3095405 8.422580e+01 2.710560 7.680037e-03 1.948347e-02
## DGLUCY 19.2997559 9.082943e+01 2.721975 7.434527e-03 1.901520e-02
## FCHO2 19.2923757 4.642645e+01 2.671028 8.588151e-03 2.128634e-02
## TRAPPC10 19.2861319 7.131962e+01 4.008775 1.052304e-04 7.152049e-04
## EFCAB14 19.2846466 9.661470e+01 3.438966 7.984077e-04 3.251757e-03
## COL18A1 -19.2792072 3.524071e+01 -2.752721 6.808301e-03 1.770367e-02
## IDH3G -19.2757561 3.108879e+01 -5.184252 8.662859e-07 2.545752e-05
## DNAJC4 -19.2503427 2.498282e+01 -4.974986 2.151167e-06 4.765210e-05
## TOX4 19.2492992 9.386951e+01 3.244786 1.515040e-03 5.383889e-03
## ANKRD28 19.2403901 4.109088e+01 2.841917 5.253460e-03 1.447967e-02
## CHUK 19.2391151 5.250260e+01 3.358624 1.044029e-03 4.017044e-03
## ZNF638 19.2370989 1.025984e+02 2.733581 7.192241e-03 1.851128e-02
## SCYL1 -19.1991575 4.785456e+01 -4.276434 3.781686e-05 3.372240e-04
## FMR1 19.1826322 5.758137e+01 3.863008 1.803209e-04 1.077384e-03
## PXK 19.1645649 6.834272e+01 2.309103 2.261086e-02 4.677565e-02
## ERAP1 19.1550540 6.179211e+01 3.240164 1.537824e-03 5.445982e-03
## PDE7A 19.1192660 8.462636e+01 2.968412 3.600752e-03 1.070705e-02
## XPO7 19.1074268 4.926980e+01 4.542039 1.313042e-05 1.593928e-04
## SLTM 19.1062158 9.324867e+01 3.129546 2.188182e-03 7.198844e-03
## PPFIA1 19.0672584 4.560539e+01 3.836215 1.987913e-04 1.148959e-03
## PSMF1 -19.0635904 7.245226e+01 -5.110228 1.198062e-06 3.234627e-05
## USP33 19.0612908 6.113851e+01 4.150584 6.152259e-05 4.854677e-04
## VPS39 19.0441431 9.002657e+01 4.477316 1.705540e-05 1.908274e-04
## TCP11L2 19.0273585 3.490892e+01 3.799209 2.272801e-04 1.276903e-03
## SIPA1L1 18.9907533 7.976661e+01 2.669005 8.637150e-03 2.137213e-02
## ATXN1L 18.9824387 4.331353e+01 3.177740 1.878502e-03 6.385507e-03
## RALGAPB 18.9727676 5.390568e+01 4.519614 1.437968e-05 1.700330e-04
## MAPK8IP3 -18.9532926 2.939884e+01 -7.552521 8.461124e-12 2.006979e-08
## ME2 18.9416248 7.556347e+01 2.786524 6.175492e-03 1.642182e-02
## HVCN1 -18.9053126 4.399802e+01 -4.892701 3.057307e-06 6.023199e-05
## AVL9 18.8536656 6.014709e+01 3.610384 4.438945e-04 2.092444e-03
## SULT1A3 -18.8006554 8.117230e+01 -2.419960 1.698894e-02 3.707247e-02
## OXA1L -18.7620962 8.050274e+01 -4.140071 6.404741e-05 5.007266e-04
## TMED5 18.7431828 8.907431e+01 2.406406 1.760219e-02 3.811433e-02
## SURF1 -18.7149263 5.475207e+01 -3.747975 2.731811e-04 1.460801e-03
## TIA1 18.7118758 7.442085e+01 4.167430 5.767474e-05 4.651446e-04
## KRTCAP2 -18.7036821 3.171061e+01 -3.361384 1.034529e-03 3.990086e-03
## CUTA -18.6627074 3.048356e+01 -2.991049 3.361225e-03 1.013066e-02
## AP1M1 -18.6405699 4.827055e+01 -5.559393 1.608836e-07 8.103145e-06
## MIIP -18.6241868 3.057718e+01 -3.941628 1.350879e-04 8.545784e-04
## TLE4 18.6212526 1.029233e+02 2.300097 2.313249e-02 4.772680e-02
## ZFYVE16 18.6088896 6.675315e+01 2.439557 1.613587e-02 3.557750e-02
## SLC25A11 -18.6003872 3.749459e+01 -5.727039 7.426718e-08 5.120981e-06
## SPCS3 18.5687074 1.342507e+02 2.586197 1.087246e-02 2.576887e-02
## DYNLL1 -18.5685680 7.980739e+01 -2.898594 4.441932e-03 1.261224e-02
## COX6A1 -18.5637328 8.649238e+01 -2.520045 1.301848e-02 2.988757e-02
## RSBN1 18.5589584 4.788845e+01 2.944095 3.875480e-03 1.136577e-02
## SNF8 -18.5529674 4.642449e+01 -4.003566 1.073003e-04 7.242923e-04
## NDUFB11 -18.5339140 3.412486e+01 -2.880833 4.682950e-03 1.316109e-02
## SHARPIN -18.4649939 1.932599e+01 -5.227384 7.162572e-07 2.247304e-05
## ZFP91 18.4491592 5.371768e+01 3.710799 3.118538e-04 1.608081e-03
## PET100 -18.4312188 5.337917e+01 -2.544041 1.219971e-02 2.832033e-02
## TSPAN33 -18.4304729 4.558144e+01 -2.670130 8.609863e-03 2.131795e-02
## LHFPL2 18.4154842 3.078348e+01 3.612692 4.403395e-04 2.079820e-03
## DHX9 18.3917228 1.185330e+02 2.843003 5.236707e-03 1.444021e-02
## USP8 18.3888339 6.292121e+01 3.737370 2.837226e-04 1.502210e-03
## RNF187 -18.3658468 3.671700e+01 -3.977856 1.180986e-04 7.772905e-04
## GPR132 -18.3572223 2.743879e+01 -6.408671 2.849083e-09 6.257431e-07
## NR1H2 -18.3568098 3.380674e+01 -4.771030 5.107907e-06 8.449062e-05
## MTMR10 18.3565753 8.689626e+01 2.285117 2.402353e-02 4.923433e-02
## PDLIM2 -18.3562024 3.011743e+01 -5.690506 8.798447e-08 5.637723e-06
## NDUFB2 -18.3441359 3.145912e+01 -3.431691 8.181879e-04 3.319777e-03
## KHNYN 18.3352245 1.155606e+02 2.582892 1.097161e-02 2.595717e-02
## RABAC1 -18.3298157 2.794759e+01 -3.585395 4.841524e-04 2.235130e-03
## BIN3 -18.3197602 4.934805e+01 -3.370290 1.004428e-03 3.903182e-03
## PCNP 18.3139819 8.967242e+01 3.545195 5.562275e-04 2.486566e-03
## RBM42 -18.2786765 2.330363e+01 -4.613629 9.804938e-06 1.300745e-04
## RAB33B 18.2597667 5.520196e+01 2.486424 1.424840e-02 3.213272e-02
## BICRAL 18.2563711 4.974306e+01 3.483420 6.869788e-04 2.908807e-03
## CYB5R1 -18.2416420 5.285440e+01 -3.132621 2.167093e-03 7.147308e-03
## ASH1L 18.2033015 4.233724e+01 3.822220 2.091414e-04 1.195958e-03
## ZZEF1 18.1930233 7.937154e+01 3.236531 1.555957e-03 5.495429e-03
## INTS6 18.1888541 5.530760e+01 3.475297 7.061802e-04 2.967820e-03
## POLR2J -18.1805805 5.636251e+01 -3.132443 2.168308e-03 7.149326e-03
## CARS2 -18.1718677 3.037522e+01 -6.975895 1.666987e-10 9.414507e-08
## TRIM8 -18.1713583 7.694182e+01 -2.939147 3.933687e-03 1.149668e-02
## RAB6A 18.1507224 1.105454e+02 2.321270 2.192259e-02 4.567046e-02
## RTRAF -18.1504115 7.284550e+01 -3.190236 1.805144e-03 6.191154e-03
## NEK9 18.1400678 7.601523e+01 3.598380 4.628224e-04 2.163978e-03
## KDM6A 18.1385314 5.067786e+01 3.342752 1.100261e-03 4.182402e-03
## NAA38 -18.1307280 2.271306e+01 -3.979471 1.173907e-04 7.740685e-04
## PSMC3 -18.1178712 4.726482e+01 -3.645118 3.931619e-04 1.902448e-03
## RNF181 -18.0966053 7.283246e+01 -2.513337 1.325600e-02 3.035647e-02
## NAA50 18.0830964 9.630966e+01 3.104498 2.367241e-03 7.650857e-03
## RAB14 18.0782308 1.060614e+02 2.581140 1.102451e-02 2.603557e-02
## PRMT2 -18.0669445 1.297037e+02 -2.510053 1.337367e-02 3.055515e-02
## METRNL -18.0596012 1.563471e+01 -7.343845 2.512911e-11 3.311459e-08
## ZRANB1 18.0429563 3.288000e+01 4.297493 3.482693e-05 3.190532e-04
## AGPAT2 -18.0376941 2.308495e+01 -4.373451 2.581965e-05 2.573589e-04
## RUBCN 18.0205104 4.736894e+01 3.562806 5.234886e-04 2.371496e-03
## WDR45 -18.0178131 6.259678e+01 -3.588526 4.789265e-04 2.219644e-03
## TFDP1 18.0058285 5.232525e+01 3.797512 2.286758e-04 1.283358e-03
## CDK2AP2 -18.0053331 2.138118e+01 -5.072891 1.409479e-06 3.587214e-05
## TCF20 18.0029513 4.303633e+01 4.426198 2.093306e-05 2.210739e-04
## LILRB1 -17.9742785 4.010830e+01 -2.999286 3.277781e-03 9.942322e-03
## CD38 17.9718497 2.185368e+01 4.516910 1.453786e-05 1.712205e-04
## TMEM250 -17.9421600 3.189680e+01 -5.487766 2.229972e-07 1.005607e-05
## WDFY1 17.9371376 4.960455e+01 3.378518 9.773470e-04 3.821740e-03
## PRR14 -17.9228012 4.328289e+01 -3.840525 1.957030e-04 1.135537e-03
## PRPF4B 17.8960820 6.849967e+01 3.495785 6.586891e-04 2.818172e-03
## ZFC3H1 17.8580235 5.988510e+01 3.467426 7.252679e-04 3.027694e-03
## CYB561A3 -17.8530743 4.109154e+01 -5.389275 3.480256e-07 1.331479e-05
## POU2F2 -17.8487091 6.306457e+01 -3.209036 1.699777e-03 5.894547e-03
## USP7 17.8410118 9.981722e+01 2.391462 1.830099e-02 3.932061e-02
## TSC22D1 17.8133762 5.140493e+01 3.167759 1.939083e-03 6.550134e-03
## YY1 17.8121885 1.061422e+02 3.281867 1.343326e-03 4.893073e-03
## PHF1 -17.7870777 7.084651e+01 -2.541676 1.227831e-02 2.846378e-02
## GGA1 -17.7822979 3.310172e+01 -4.589468 1.082403e-05 1.402983e-04
## MCTP1 17.7036801 5.051273e+01 2.766695 6.539864e-03 1.714474e-02
## SCARB2 17.6843363 4.767871e+01 3.272262 1.385970e-03 5.025254e-03
## RASA4 -17.6563163 2.263613e+01 -4.688193 7.211426e-06 1.058509e-04
## PLIN5 -17.6377919 3.173251e+01 -2.500640 1.371620e-02 3.121159e-02
## RB1 17.6240836 4.613643e+01 3.817424 2.128039e-04 1.211644e-03
## CD8B -17.6160340 2.716239e+01 -2.692506 8.083391e-03 2.031984e-02
## HLA-DQA1 -17.6147677 3.815829e+01 -2.731929 7.226295e-03 1.857877e-02
## IRAK1 -17.6098605 6.347228e+01 -3.350455 1.072624e-03 4.104857e-03
## MEA1 -17.5891459 5.827329e+01 -3.530867 5.842777e-04 2.578317e-03
## HERC2 17.5827891 3.273910e+01 4.002880 1.075758e-04 7.249142e-04
## PTPN11 17.5796879 4.422719e+01 4.446673 1.928743e-05 2.089031e-04
## PPP6R1 -17.5749020 7.938191e+01 -3.424755 8.374724e-04 3.380675e-03
## TMEM141 -17.5621281 2.084994e+01 -4.624676 9.370470e-06 1.252917e-04
## HELZ 17.5620066 4.709536e+01 3.803101 2.241106e-04 1.261442e-03
## ADSS2 17.5323582 5.848943e+01 2.942716 3.891622e-03 1.139902e-02
## INTS11 -17.5034982 3.166988e+01 -4.263478 3.977731e-05 3.510110e-04
## CNTRL 17.4918963 5.283669e+01 3.848046 1.904238e-04 1.114172e-03
## SMAD2 17.4813208 8.402819e+01 3.704712 3.186601e-04 1.635357e-03
## POU2AF1 17.4585923 2.255729e+01 3.473038 7.116109e-04 2.986449e-03
## SAP25 -17.4412728 1.959619e+01 -4.046434 9.136198e-05 6.449720e-04
## ZBTB37 17.4308053 4.558402e+01 3.715695 3.064792e-04 1.588448e-03
## BCKDHA -17.4010368 3.072037e+01 -5.177561 8.921511e-07 2.593361e-05
## ADNP 17.3788290 6.282001e+01 4.355634 2.770555e-05 2.720098e-04
## ADORA2A -17.3637560 2.737159e+01 -4.135481 6.518044e-05 5.059162e-04
## RGS3 -17.3563313 5.650161e+01 -2.887984 4.584497e-03 1.295191e-02
## AURKAIP1 -17.3422722 2.883187e+01 -3.435773 8.070349e-04 3.279011e-03
## PLSCR3 -17.3401948 2.927789e+01 -4.453857 1.874020e-05 2.051029e-04
## CHD3 -17.3335008 1.170389e+02 -2.488522 1.416873e-02 3.200174e-02
## CYC1 -17.3308321 3.715765e+01 -3.799576 2.269791e-04 1.276421e-03
## DNAJC8 -17.3214156 8.880909e+01 -3.686804 3.395112e-04 1.708097e-03
## NUCB2 17.3182873 4.434316e+01 2.277240 2.450408e-02 4.996878e-02
## BABAM1 -17.3174567 4.057294e+01 -3.633725 4.091654e-04 1.958626e-03
## PPP6R2 -17.3154726 4.765179e+01 -5.051745 1.544887e-06 3.801320e-05
## RBM4 -17.3013107 9.074107e+01 -3.172670 1.909054e-03 6.472666e-03
## TOLLIP -17.2986209 4.089486e+01 -4.173646 5.631405e-05 4.587120e-04
## DHFR 17.2841284 2.806569e+01 4.928970 2.619617e-06 5.424517e-05
## RHOF -17.2736155 3.008967e+01 -4.543909 1.303110e-05 1.585569e-04
## BRD7 17.2703313 9.699937e+01 3.152686 2.034015e-03 6.795329e-03
## INTS8 17.2650135 6.157028e+01 3.630025 4.144935e-04 1.979820e-03
## TECPR1 -17.2293254 3.910663e+01 -6.255327 6.025079e-09 9.861056e-07
## NAGA -17.2249357 5.467961e+01 -3.699958 3.240740e-04 1.655194e-03
## MAL -17.1990541 1.532058e+01 -4.208334 4.926830e-05 4.129484e-04
## PITPNM1 -17.1676186 2.469994e+01 -7.251009 4.064336e-11 3.707925e-08
## STX4 -17.1421534 5.384012e+01 -4.049845 9.019618e-05 6.397887e-04
## RNPS1 -17.1307496 4.826228e+01 -3.713441 3.089424e-04 1.599326e-03
## KDM4B -17.1264753 6.111368e+01 -2.753935 6.784594e-03 1.765751e-02
## BRAF 17.1138705 4.499659e+01 3.674405 3.546976e-04 1.767527e-03
## GPS2 -17.1060456 5.330418e+01 -3.453153 7.611236e-04 3.138709e-03
## GALNT2 -17.0976555 4.087008e+01 -2.535907 1.247192e-02 2.881125e-02
## PCED1A -17.0951748 2.710439e+01 -4.238706 4.380069e-05 3.769783e-04
## DPP8 17.0732881 4.744703e+01 4.335251 3.002591e-05 2.878558e-04
## NDUFB8 -17.0633676 4.772423e+01 -3.248766 1.495675e-03 5.334950e-03
## KIF2A 17.0609334 7.356831e+01 3.375225 9.881008e-04 3.856162e-03
## RC3H2 17.0483358 5.048998e+01 4.276818 3.776022e-05 3.369723e-04
## SPEN 17.0199267 5.806554e+01 2.901641 4.401744e-03 1.253256e-02
## RENBP -17.0180455 2.630851e+01 -4.930102 2.606991e-06 5.424370e-05
## SUDS3 17.0071774 4.831490e+01 4.433803 2.030664e-05 2.162122e-04
## OSTM1 17.0045111 8.230891e+01 2.564280 1.154536e-02 2.709299e-02
## ODC1 17.0020829 6.080888e+01 2.969864 3.584925e-03 1.066931e-02
## NDST1 17.0018442 7.399382e+01 2.462951 1.516756e-02 3.380704e-02
## ST3GAL1 16.9907098 7.788900e+01 3.412792 8.717396e-04 3.492849e-03
## SDF4 -16.9740190 4.612987e+01 -4.781479 4.889161e-06 8.166965e-05
## PLEKHA2 16.9693773 1.049547e+02 2.568025 1.142780e-02 2.687561e-02
## BRWD3 16.9262035 5.383229e+01 2.347903 2.048012e-02 4.307398e-02
## ATG13 -16.9210159 1.048043e+02 -2.894141 4.501271e-03 1.275020e-02
## FRYL 16.9149051 4.537357e+01 4.410679 2.226965e-05 2.318859e-04
## UBL7 -16.9077101 4.444979e+01 -3.721007 3.007467e-04 1.568538e-03
## RAPGEF2 16.8883335 5.571680e+01 2.639403 9.383421e-03 2.291278e-02
## TOPBP1 16.8831306 4.816746e+01 4.707593 6.654102e-06 1.013064e-04
## CCDC93 16.8752247 4.769011e+01 4.507346 1.511094e-05 1.762200e-04
## MAP2K1 16.8375097 6.019692e+01 3.680916 3.466445e-04 1.736983e-03
## BBX 16.8266582 3.457360e+01 4.597635 1.046863e-05 1.365874e-04
## RNF31 -16.8148778 6.911293e+01 -2.808515 5.793080e-03 1.564699e-02
## FBXL20 16.7979109 4.423513e+01 3.735714 2.854030e-04 1.507741e-03
## IMPDH2 -16.7943758 3.910486e+01 -3.924374 1.439760e-04 9.006096e-04
## GNPTG -16.7828088 3.084933e+01 -6.136896 1.068113e-08 1.376937e-06
## GIMAP1 -16.7544526 3.657418e+01 -4.855808 3.575110e-06 6.740986e-05
## DBI -16.7189902 9.614689e+01 -2.693957 8.050268e-03 2.024516e-02
## FHOD1 -16.6912386 4.207058e+01 -4.607288 1.006302e-05 1.326083e-04
## FLT3 16.6851248 2.876724e+01 2.561187 1.164326e-02 2.727187e-02
## DCTN1 -16.6714109 8.389166e+01 -3.650782 3.854280e-04 1.873433e-03
## FOXO4 16.6640646 6.612361e+01 3.219732 1.642416e-03 5.730819e-03
## USF3 16.6603196 3.340978e+01 3.912156 1.506040e-04 9.351644e-04
## FAM53B -16.6320717 6.358495e+01 -4.355225 2.775037e-05 2.722245e-04
## PPDPF -16.6250205 1.495431e+01 -4.322603 3.155849e-05 2.987101e-04
## AKAP10 16.6096678 5.595202e+01 3.520350 6.057089e-04 2.647883e-03
## PHC3 16.5791761 4.706296e+01 4.221825 4.676320e-05 3.964343e-04
## CD7 -16.5724414 1.269969e+01 -4.111338 7.146413e-05 5.405386e-04
## HERC4 16.5715368 6.649899e+01 2.870154 4.833565e-03 1.352003e-02
## CDCA7L 16.5714814 2.405230e+01 2.502119 1.366188e-02 3.112368e-02
## STRN 16.5192293 5.637887e+01 2.749045 6.880568e-03 1.785862e-02
## AKT2 -16.5168799 6.823690e+01 -5.090454 1.305858e-06 3.403840e-05
## FCHSD2 16.5037661 6.265653e+01 3.064635 2.680409e-03 8.479888e-03
## SRGAP2 16.4743149 3.942572e+01 3.809160 2.192602e-04 1.241253e-03
## TXNDC11 16.4727100 4.448300e+01 3.145127 2.083228e-03 6.930458e-03
## FLCN 16.4615464 4.531634e+01 3.251280 1.483562e-03 5.299711e-03
## ELOF1 -16.4331664 3.308626e+01 -4.567466 1.184059e-05 1.495521e-04
## SUPT5H -16.4029668 7.357200e+01 -2.496354 1.387478e-02 3.148574e-02
## PRDM2 16.3837481 5.794222e+01 3.253014 1.475258e-03 5.279590e-03
## MARK3 16.3774158 1.069861e+02 2.407368 1.755800e-02 3.804126e-02
## UQCR10 -16.3756743 4.208845e+01 -3.267925 1.405638e-03 5.084132e-03
## LSM10 -16.3599799 5.713971e+01 -3.241849 1.529482e-03 5.421296e-03
## CEP97 16.3085348 1.919710e+01 3.711414 3.111734e-04 1.606656e-03
## SP140 16.3052275 4.515005e+01 2.291664 2.363048e-02 4.857991e-02
## NPEPL1 -16.3043535 4.376779e+01 -3.730689 2.905603e-04 1.528858e-03
## PITPNC1 -16.3023014 3.865031e+01 -6.187334 8.375251e-09 1.211347e-06
## FAM78A -16.2800079 5.976105e+01 -3.449066 7.716948e-04 3.172374e-03
## SPTBN1 16.2342799 3.219713e+01 4.039913 9.363139e-05 6.566932e-04
## ESYT2 16.2260887 5.671876e+01 3.676736 3.517951e-04 1.756812e-03
## HECTD1 16.2066564 4.431339e+01 4.100832 7.437589e-05 5.565287e-04
## DCUN1D1 16.2064338 5.525981e+01 3.223545 1.622409e-03 5.676037e-03
## RPS19BP1 -16.2004599 2.785257e+01 -3.911114 1.511825e-04 9.377744e-04
## C9orf16 -16.1920319 1.389679e+01 -4.524869 1.407707e-05 1.674564e-04
## CDK17 16.1566176 3.502346e+01 4.419466 2.150309e-05 2.254878e-04
## CDK14 16.1521861 2.908659e+01 4.088183 7.803244e-05 5.726886e-04
## SIRT2 -16.1261835 5.563416e+01 -4.152131 6.115927e-05 4.835578e-04
## BCL7B -16.1260488 4.130552e+01 -3.686607 3.397472e-04 1.708097e-03
## NDUFA3 -16.1113526 1.969129e+01 -4.427392 2.083355e-05 2.204156e-04
## PIK3CA 16.0968020 5.873495e+01 2.667521 8.673226e-03 2.143456e-02
## NFYA 16.0726736 5.633768e+01 3.049473 2.809270e-03 8.793334e-03
## MTHFD2 16.0580563 4.943303e+01 2.849381 5.139345e-03 1.422465e-02
## UGGT1 16.0404010 6.859581e+01 3.332187 1.139246e-03 4.279941e-03
## CCT3 -16.0401632 8.844045e+01 -2.438139 1.619630e-02 3.566434e-02
## RANGAP1 -16.0398523 2.825330e+01 -3.895382 1.601784e-04 9.807514e-04
## NCOA6 16.0373917 4.195751e+01 4.251297 4.170917e-05 3.639961e-04
## NUDT4B 16.0291558 4.657074e+01 4.126298 6.750554e-05 5.188695e-04
## B3GAT3 -16.0284797 1.835872e+01 -4.475877 1.715443e-05 1.915740e-04
## SLC39A1 -16.0275035 6.807186e+01 -3.220809 1.636742e-03 5.717750e-03
## HIPK2 16.0271471 3.288403e+01 3.341839 1.103580e-03 4.192331e-03
## VAV3 16.0070028 6.167824e+01 2.378589 1.892255e-02 4.039190e-02
## C1QA -16.0064942 1.742241e+01 -2.613561 1.008196e-02 2.430290e-02
## CMTM7 -15.9997973 5.335599e+01 -4.137863 6.459013e-05 5.029803e-04
## GTF3C5 -15.9820407 3.660590e+01 -4.069746 8.367212e-05 6.039874e-04
## FAM32A -15.9803205 1.230006e+02 -2.284244 2.407637e-02 4.932557e-02
## NANS -15.9792007 2.880041e+01 -5.117656 1.159852e-06 3.169549e-05
## SNRPN -15.9747068 4.635097e+01 -2.854503 5.062344e-03 1.405088e-02
## FCHO1 -15.9523554 2.976469e+01 -4.865510 3.431238e-06 6.596712e-05
## SF3A1 15.9493115 1.035021e+02 2.287614 2.387297e-02 4.902743e-02
## ROCK2 15.9476811 2.984139e+01 4.705476 6.712847e-06 1.018086e-04
## ZGPAT -15.9411385 2.003335e+01 -5.647556 1.073063e-07 6.269223e-06
## CUEDC2 -15.9257306 3.129498e+01 -4.685053 7.305787e-06 1.065764e-04
## GALNT7 15.9148467 3.724127e+01 3.489654 6.725755e-04 2.863153e-03
## ARIH1 15.9137394 5.536855e+01 3.989300 1.131697e-04 7.529732e-04
## NAA10 -15.8872619 2.821516e+01 -4.346972 2.866978e-05 2.789365e-04
## RANBP2 15.8844669 7.534771e+01 2.506026 1.351926e-02 3.084473e-02
## ARNTL 15.8768477 4.545895e+01 3.384551 9.579264e-04 3.760049e-03
## SOS1 15.8720075 3.596716e+01 4.780091 4.917679e-06 8.191528e-05
## NDUFB7 -15.8687816 1.281657e+01 -4.250769 4.179492e-05 3.644763e-04
## GLYR1 15.8662554 9.631619e+01 3.147387 2.068404e-03 6.892742e-03
## CHD8 15.8634161 7.355215e+01 3.784413 2.397225e-04 1.330421e-03
## CPEB2 15.8507576 3.367483e+01 3.496321 6.574873e-04 2.816827e-03
## ABLIM3 15.8433754 2.660013e+01 3.954667 1.287208e-04 8.263959e-04
## NDUFC2 -15.8233698 2.833184e+01 -4.877698 3.258436e-06 6.314551e-05
## ANKFY1 15.8211970 5.898861e+01 2.836879 5.331787e-03 1.465469e-02
## TRADD -15.8180342 2.889772e+01 -4.317030 3.225738e-05 3.030241e-04
## RABL6 -15.8011258 2.391767e+01 -4.232945 4.479078e-05 3.835514e-04
## TMEM205 -15.7981221 2.900078e+01 -4.221888 4.675182e-05 3.964343e-04
## ANP32E 15.7886004 4.607049e+01 4.385765 2.458898e-05 2.484032e-04
## COQ8A -15.7846387 3.535968e+01 -3.941461 1.351712e-04 8.545784e-04
## C2orf88 15.7823399 3.627545e+01 4.117002 6.993990e-05 5.324051e-04
## ARHGEF12 15.7785164 2.203827e+01 5.364610 3.887896e-07 1.427568e-05
## MDM4 15.7662370 5.477261e+01 3.494081 6.625225e-04 2.832558e-03
## EIF3B -15.7460607 5.184686e+01 -3.134912 2.151499e-03 7.105758e-03
## SLC2A6 -15.7209541 1.438559e+01 -5.613575 1.254858e-07 7.034515e-06
## BCL7C -15.6982154 1.304869e+01 -3.614473 4.376163e-04 2.069430e-03
## PSME3 15.6917891 9.448871e+01 2.497011 1.385035e-02 3.144528e-02
## HEATR5B 15.6497889 3.040281e+01 4.949162 2.402982e-06 5.116372e-05
## STARD7 -15.6480633 9.569628e+01 -2.453408 1.555613e-02 3.449807e-02
## VAMP1 15.6438215 5.703691e+01 3.949129 1.313895e-04 8.400431e-04
## AGO2 15.6362888 5.669193e+01 2.370039 1.934564e-02 4.115502e-02
## PLCL2 15.6265775 8.763922e+01 2.560986 1.164965e-02 2.727836e-02
## BRAT1 -15.6167599 1.303038e+01 -6.907509 2.359713e-10 1.119448e-07
## CASP3 15.6138434 5.589537e+01 4.680873 7.433259e-06 1.076925e-04
## DNAJB14 15.5979641 4.928187e+01 3.278748 1.357039e-03 4.930907e-03
## KIF27 15.5920593 2.845127e+01 2.685308 8.249473e-03 2.063238e-02
## EPC1 15.5757564 5.822345e+01 3.882506 1.679184e-04 1.017635e-03
## EAF1 15.5461170 3.598020e+01 3.358566 1.044228e-03 4.017044e-03
## TNRC6B 15.5288005 5.202516e+01 3.269018 1.400659e-03 5.070763e-03
## ADAM9 15.5101233 4.478936e+01 2.392533 1.825009e-02 3.922296e-02
## PYGB -15.4790889 3.795660e+01 -4.509502 1.497986e-05 1.755545e-04
## NCAPD2 15.4675756 3.616550e+01 6.346653 3.860917e-09 7.761098e-07
## CLIC4 15.4572192 3.683004e+01 4.292794 3.547372e-05 3.236295e-04
## ADAP1 -15.4391250 3.430717e+01 -4.803522 4.457087e-06 7.773684e-05
## RRAGD 15.4018562 5.694162e+01 2.708872 7.716962e-03 1.954413e-02
## CLCN7 -15.3674244 2.415015e+01 -4.431923 2.045977e-05 2.174308e-04
## POLR1D -15.3558566 6.077475e+01 -4.014526 1.029896e-04 7.040099e-04
## PRUNE1 15.3329034 4.397889e+01 4.562301 1.209229e-05 1.517164e-04
## C11orf68 -15.3323110 4.894142e+01 -2.813985 5.701381e-03 1.543446e-02
## TSSC4 -15.3312855 1.449539e+01 -4.387339 2.443589e-05 2.472778e-04
## MAML1 15.3216078 6.333276e+01 2.914742 4.232741e-03 1.218750e-02
## ZBTB38 15.3211163 3.039728e+01 4.387499 2.442038e-05 2.472778e-04
## SRRT -15.2869499 4.574573e+01 -4.030356 9.705454e-05 6.715676e-04
## UBTF -15.2822827 8.486721e+01 -3.856715 1.845064e-04 1.092818e-03
## COX6C -15.2608084 5.867955e+01 -2.514633 1.320981e-02 3.026238e-02
## EIF4E2 -15.2557425 7.844089e+01 -4.301718 3.425515e-05 3.169002e-04
## ARFRP1 -15.2481536 1.691713e+01 -5.062444 1.474867e-06 3.682510e-05
## CDC26 -15.2446944 4.956672e+01 -3.602550 4.561618e-04 2.141757e-03
## UBQLN1 15.2430212 8.366452e+01 2.848666 5.150174e-03 1.424797e-02
## RHBDD2 -15.2366675 3.706205e+01 -3.051090 2.795264e-03 8.759818e-03
## SMC3 15.2364817 4.415372e+01 4.666893 7.875385e-06 1.115915e-04
## SGSH -15.2083554 2.312408e+01 -5.447441 2.677195e-07 1.129948e-05
## SH3TC1 -15.2031337 1.552069e+01 -6.465910 2.149669e-09 5.311473e-07
## SNU13 -15.1916017 5.854534e+01 -2.823117 5.551246e-03 1.513512e-02
## UBE2G1 15.1779144 5.955070e+01 3.572562 5.061435e-04 2.316813e-03
## KANSL1 15.1621087 5.360751e+01 3.694218 3.307264e-04 1.677680e-03
## KDM5B 15.1413139 4.159757e+01 3.566150 5.174810e-04 2.354171e-03
## ATP8B4 15.1180570 2.685775e+01 2.823508 5.544900e-03 1.512321e-02
## ADPGK 15.1173254 1.031675e+02 3.249011 1.494489e-03 5.332322e-03
## ISY1 -15.1046683 5.001492e+01 -3.761428 2.603424e-04 1.410872e-03
## TAOK3 15.1035393 8.685884e+01 2.507824 1.345409e-02 3.073296e-02
## EXOC7 -15.0799856 1.037912e+02 -3.001609 3.254586e-03 9.896233e-03
## SIRT7 -15.0744216 4.780414e+01 -3.107397 2.345842e-03 7.599478e-03
## FRG1 -15.0719935 4.000742e+01 -5.016021 1.802912e-06 4.238778e-05
## CCS -15.0716073 1.625326e+01 -4.619438 9.574127e-06 1.275833e-04
## PIK3CB 15.0700119 5.083445e+01 3.040482 2.888366e-03 8.988722e-03
## PLD3 -15.0513637 3.540101e+01 -3.694330 3.305960e-04 1.677680e-03
## GADD45GIP1 -15.0356574 1.349253e+01 -3.417370 8.584742e-04 3.449235e-03
## U2SURP 15.0310379 5.825129e+01 3.976458 1.187143e-04 7.802418e-04
## GPR107 15.0261770 5.775534e+01 3.531824 5.823641e-04 2.573338e-03
## TOR4A -15.0122289 2.554924e+01 -6.016047 1.905322e-08 2.035777e-06
## PURB 15.0083930 4.766740e+01 4.064640 8.530130e-05 6.135072e-04
## AP3B1 14.9976594 4.896297e+01 3.919363 1.466600e-04 9.149853e-04
## HNRNPLL 14.9667852 3.087377e+01 5.524211 1.889210e-07 9.182802e-06
## BTN2A2 14.9664652 3.296008e+01 4.039669 9.371717e-05 6.567846e-04
## ZMPSTE24 14.9662502 5.759936e+01 2.593015 1.067047e-02 2.537124e-02
## DGCR6L -14.9662279 1.389479e+01 -4.263259 3.981126e-05 3.510495e-04
## DNAJC7 -14.9223486 7.539283e+01 -3.831107 2.025109e-04 1.166123e-03
## CPSF2 14.9178380 5.700730e+01 3.983443 1.156670e-04 7.659470e-04
## NSA2 -14.9174874 6.509212e+01 -3.451588 7.651560e-04 3.150955e-03
## CHPF2 -14.9143922 5.356536e+01 -3.740803 2.802682e-04 1.488572e-03
## AKR1A1 -14.9102025 4.717125e+01 -3.163616 1.964755e-03 6.612372e-03
## TEX2 14.8929861 1.955946e+01 4.361237 2.709870e-05 2.671576e-04
## STIM1 14.8636643 7.598464e+01 3.990584 1.126292e-04 7.500184e-04
## RCN3 -14.8607661 1.853455e+01 -4.784416 4.829332e-06 8.112731e-05
## ZBTB44 14.8602497 5.867273e+01 3.305622 1.243066e-03 4.595593e-03
## VWA8 14.8457418 1.930754e+01 2.947727 3.833254e-03 1.126980e-02
## NSF 14.8104627 4.643718e+01 4.691244 7.120899e-06 1.054355e-04
## ST6GALNAC6 -14.7988291 3.027056e+01 -3.717756 3.042431e-04 1.580012e-03
## SGSM3 -14.7781171 2.723509e+01 -5.376042 3.693469e-07 1.374831e-05
## MYBL2 14.7745423 1.552904e+01 3.518268 6.100386e-04 2.661905e-03
## MYSM1 14.7739127 3.101399e+01 3.956327 1.279312e-04 8.236387e-04
## COX5B -14.7708131 5.214352e+01 -2.363088 1.969571e-02 4.172015e-02
## PHB -14.7602035 4.843347e+01 -2.608688 1.021884e-02 2.453831e-02
## IREB2 14.7261054 5.079464e+01 3.706704 3.164176e-04 1.625510e-03
## MYO15B -14.7023186 5.486274e+01 -2.883960 4.639657e-03 1.307349e-02
## VPS13D 14.6977004 3.948155e+01 4.186271 5.364456e-05 4.421296e-04
## FIBP -14.6806657 3.238332e+01 -3.849446 1.894560e-04 1.111250e-03
## PES1 -14.6714382 2.375141e+01 -4.605724 1.012771e-05 1.331648e-04
## MED12 14.6679440 3.561850e+01 3.769826 2.526205e-04 1.381845e-03
## SLCO4C1 14.6663336 3.220046e+01 2.702247 7.863442e-03 1.983842e-02
## TMPO 14.6503151 8.012343e+01 2.470393 1.487057e-02 3.329525e-02
## C20orf27 -14.6483686 2.245078e+01 -2.818463 5.627300e-03 1.529326e-02
## FAM110A -14.6441725 1.801229e+01 -5.021071 1.764041e-06 4.167634e-05
## ATG4B -14.6225496 3.126570e+01 -4.962933 2.265338e-06 4.911683e-05
## RAPGEF6 14.6188059 3.986585e+01 3.506394 6.352954e-04 2.745847e-03
## MED15 -14.6075278 3.682910e+01 -4.632114 9.088509e-06 1.224883e-04
## KCNK6 -14.6010759 3.633130e+01 -5.347023 4.206683e-07 1.525726e-05
## ST13 -14.5938125 8.170272e+01 -4.031340 9.669667e-05 6.715676e-04
## MXD4 -14.5727818 2.061608e+01 -4.966385 2.232046e-06 4.875150e-05
## ATF6B -14.5640482 7.748992e+01 -4.501117 1.549578e-05 1.784271e-04
## MEPCE -14.5637814 4.292490e+01 -3.583296 4.876862e-04 2.247943e-03
## USP20 -14.5485242 3.525384e+01 -3.822281 2.090946e-04 1.195958e-03
## DDX21 14.5462782 4.772051e+01 2.359093 1.989947e-02 4.209912e-02
## INPP4A 14.5411962 5.956502e+01 3.796745 2.293089e-04 1.285864e-03
## LYL1 -14.5264825 1.800618e+01 -3.792806 2.325874e-04 1.299334e-03
## DUS1L -14.5261181 2.322127e+01 -4.144656 6.293415e-05 4.946315e-04
## DHX15 14.5212282 5.893604e+01 4.608767 1.000224e-05 1.321009e-04
## HPS1 -14.4776040 6.547653e+01 -2.845287 5.201658e-03 1.436309e-02
## DAD1 14.4765059 9.216252e+01 2.871362 4.816309e-03 1.348157e-02
## MPDU1 -14.4559958 4.153855e+01 -3.259257 1.445728e-03 5.198353e-03
## TNFSF8 14.4408184 4.500588e+01 3.517312 6.120379e-04 2.668665e-03
## TECR -14.4216559 2.935526e+01 -2.593332 1.066115e-02 2.535417e-02
## RTF1 14.4137382 6.566072e+01 3.346359 1.087236e-03 4.139526e-03
## FAM13B 14.4132238 4.654983e+01 3.755738 2.657007e-04 1.434977e-03
## TAB3 14.4039094 3.729086e+01 4.118944 6.942438e-05 5.294605e-04
## SAP30BP -14.3816232 6.242850e+01 -3.642919 3.962038e-04 1.911570e-03
## FBXO9 14.3664064 6.660879e+01 2.333672 2.124010e-02 4.442032e-02
## FUNDC2 -14.3659170 4.428829e+01 -2.968369 3.601217e-03 1.070705e-02
## ABHD17A -14.3589802 1.314446e+01 -5.826478 4.668679e-08 3.645857e-06
## VEZF1 14.3544282 7.796185e+01 2.815558 5.675260e-03 1.539538e-02
## KDM1B 14.3220966 4.592843e+01 3.005750 3.213632e-03 9.785282e-03
## SYNRG 14.3171749 4.828859e+01 4.047820 9.088641e-05 6.425558e-04
## ACLY 14.3060729 6.642809e+01 3.906980 1.534989e-04 9.466965e-04
## CD300C -14.2892112 1.878104e+01 -6.251319 6.143482e-09 9.861056e-07
## CNEP1R1 14.2888000 4.973625e+01 2.383095 1.870290e-02 4.001017e-02
## FCER2 -14.2666664 8.835297e+00 -5.612105 1.263366e-07 7.034515e-06
## NIBAN2 -14.2622807 2.647380e+01 -4.449949 1.903604e-05 2.071714e-04
## ANAPC13 14.2615825 5.842393e+01 3.015208 3.121859e-03 9.567249e-03
## EWSR1 -14.2558138 1.511758e+02 -3.230710 1.585421e-03 5.570485e-03
## HIRA 14.2541015 3.862961e+01 5.769945 6.081781e-08 4.434732e-06
## TREX1 -14.2537116 2.155944e+01 -2.653740 9.014988e-03 2.217291e-02
## USP24 14.2465432 4.766086e+01 3.970198 1.215102e-04 7.919858e-04
## UPF2 14.2274333 5.856242e+01 3.257664 1.453208e-03 5.216420e-03
## HGS -14.2234845 5.154154e+01 -3.527477 5.911060e-04 2.599163e-03
## SH3GLB2 -14.2171449 2.797316e+01 -3.761787 2.600083e-04 1.410872e-03
## GRAP -14.2144906 1.639445e+01 -4.421036 2.136889e-05 2.244774e-04
## SLFN11 14.2010846 3.929425e+01 3.441840 7.907190e-04 3.232653e-03
## POLR2B 14.1865160 8.952935e+01 2.299642 2.315911e-02 4.776818e-02
## IRF5 -14.1752489 5.233745e+01 -2.687549 8.197444e-03 2.052429e-02
## RO60 14.1538144 3.688943e+01 4.341908 2.924822e-05 2.831705e-04
## SGTA -14.1363196 2.309352e+01 -5.095800 1.275820e-06 3.340227e-05
## LTN1 14.1327013 3.265337e+01 3.956202 1.279904e-04 8.236387e-04
## MR1 14.1311085 5.909118e+01 2.955145 3.748336e-03 1.106127e-02
## ARRDC1 -14.1067474 2.473697e+01 -5.430691 2.887744e-07 1.193332e-05
## PPP6C 14.0964599 9.243677e+01 2.316709 2.217842e-02 4.606587e-02
## RIPOR1 -14.0880406 3.157259e+01 -5.989225 2.164814e-08 2.213336e-06
## ZNF207 14.0875165 8.861035e+01 2.392488 1.825224e-02 3.922296e-02
## COX8A -14.0858823 4.517830e+01 -2.636263 9.465897e-03 2.309040e-02
## HSPB1 -14.0786073 6.645424e+00 -4.162984 5.866719e-05 4.710853e-04
## POLR2G -14.0775743 4.910076e+01 -3.761522 2.602553e-04 1.410872e-03
## GPS1 -14.0718633 2.055775e+01 -4.083760 7.935123e-05 5.796833e-04
## URM1 -14.0695904 3.645555e+01 -4.038417 9.415942e-05 6.588382e-04
## PTPN22 14.0562524 3.875292e+01 2.910867 4.282090e-03 1.229080e-02
## MIA2 14.0328722 6.510253e+01 2.450007 1.569675e-02 3.475145e-02
## ABCA13 13.9919043 1.089245e+01 3.167962 1.937831e-03 6.547770e-03
## RBBP6 13.9675458 4.084993e+01 4.166158 5.795690e-05 4.669625e-04
## GBGT1 -13.9635786 1.311994e+01 -7.973972 9.113518e-13 1.080863e-08
## SH3BGRL2 13.9595260 3.740755e+01 2.449473 1.571891e-02 3.478751e-02
## VPS18 -13.9507543 3.883587e+01 -3.202758 1.734312e-03 5.992807e-03
## PIH1D1 -13.9434307 2.301395e+01 -4.388208 2.435166e-05 2.468468e-04
## PALM2AKAP2 13.9334111 1.760557e+01 5.818477 4.847099e-08 3.732896e-06
## FASTK -13.9329587 1.917378e+01 -4.128182 6.702216e-05 5.154882e-04
## EPC2 13.9087832 3.475894e+01 4.105037 7.319705e-05 5.494411e-04
## IRF8 -13.8956334 4.913949e+01 -4.236878 4.411257e-05 3.791124e-04
## TMEM115 -13.8804366 2.430034e+01 -5.135628 1.072243e-06 2.992189e-05
## ABCG1 13.8679232 3.368594e+01 2.709661 7.699683e-03 1.951244e-02
## GLS 13.8622583 6.555293e+01 3.301011 1.261962e-03 4.656773e-03
## NRAS 13.8470324 5.229278e+01 3.208890 1.700577e-03 5.894751e-03
## PAM 13.8361707 3.321219e+01 2.301019 2.307861e-02 4.766017e-02
## SGSM2 -13.8225670 2.487688e+01 -6.430737 2.556248e-09 6.063421e-07
## JARID2 13.8223269 5.002538e+01 2.824546 5.528076e-03 1.509277e-02
## PARP6 13.7960524 4.794632e+01 4.728604 6.097567e-06 9.585751e-05
## TOR1AIP2 13.7957970 5.590155e+01 3.102265 2.383849e-03 7.695279e-03
## SESTD1 13.7856737 2.891688e+01 4.335067 3.004768e-05 2.878558e-04
## DCTN3 -13.7735379 3.742373e+01 -3.112192 2.310843e-03 7.512772e-03
## CERK -13.7593724 8.355223e+01 -3.203384 1.730838e-03 5.983018e-03
## CCT4 -13.7540813 6.435595e+01 -3.217897 1.652126e-03 5.759618e-03
## KXD1 -13.7474460 5.303491e+01 -3.683214 3.438439e-04 1.726498e-03
## TRAF7 -13.7441125 3.146933e+01 -5.413227 3.124480e-07 1.251903e-05
## PLEKHJ1 -13.7407246 2.948693e+01 -3.147279 2.069106e-03 6.893145e-03
## C6orf89 13.7388582 9.686296e+01 2.889529 4.563489e-03 1.290486e-02
## RPS6KA4 -13.7387733 2.686564e+01 -4.787339 4.770498e-06 8.041483e-05
## NDE1 13.7337777 4.949876e+01 3.033069 2.955122e-03 9.150847e-03
## E2F4 -13.7211670 7.390580e+01 -2.988078 3.391804e-03 1.020467e-02
## DEGS1 13.7005198 7.228960e+01 2.313878 2.233851e-02 4.634805e-02
## USO1 13.6935478 4.623941e+01 4.061540 8.630546e-05 6.181055e-04
## AP2A1 -13.6917669 3.873160e+01 -5.775437 5.927879e-08 4.366748e-06
## ANKRD17 13.6597473 3.976812e+01 3.710030 3.127062e-04 1.611075e-03
## NF1 13.6427561 3.389437e+01 3.199559 1.752157e-03 6.042622e-03
## ZNF316 -13.6168723 3.979331e+01 -4.115434 7.035864e-05 5.352492e-04
## CORO1B -13.5750429 2.380160e+01 -3.733738 2.874203e-04 1.517047e-03
## LPP 13.5509179 4.009717e+01 3.103084 2.377742e-03 7.677652e-03
## EIF4EBP1 -13.5381154 1.583013e+01 -4.408170 2.249339e-05 2.333960e-04
## GPATCH2L 13.5327262 4.436338e+01 3.810824 2.179455e-04 1.236171e-03
## SKAP1 -13.5097986 2.524326e+01 -3.454294 7.581976e-04 3.132088e-03
## MCFD2 13.4843390 4.247083e+01 4.636322 8.932643e-06 1.212141e-04
## AKAP8L -13.4820973 5.281197e+01 -4.070537 8.342236e-05 6.029939e-04
## TRAM2 13.4723629 1.831649e+01 5.044158 1.596487e-06 3.895955e-05
## CWF19L1 -13.4669138 5.329476e+01 -3.475898 7.047440e-04 2.967080e-03
## SMC4 13.4599211 3.347087e+01 5.943385 2.690928e-08 2.532889e-06
## RAVER1 -13.4552278 3.064898e+01 -3.946962 1.324476e-04 8.438996e-04
## TMED7 13.4496280 4.681076e+01 3.306061 1.241282e-03 4.591891e-03
## WASHC2A 13.4468152 5.737396e+01 3.523108 6.000193e-04 2.629582e-03
## ZDHHC5 13.4328819 7.892320e+01 3.227285 1.603002e-03 5.621408e-03
## MRPL54 -13.4282214 2.150218e+01 -3.476507 7.032900e-04 2.964814e-03
## CLNS1A -13.4225396 4.082330e+01 -5.079784 1.367893e-06 3.534468e-05
## PIP4K2C 13.4209309 3.374976e+01 6.050771 1.614354e-08 1.772800e-06
## SIK3 13.4176529 5.527531e+01 4.503219 1.536489e-05 1.776098e-04
## POLE4 -13.4144502 2.540997e+01 -3.688103 3.379563e-04 1.704317e-03
## RAB11FIP4 -13.4140734 7.769235e+01 -2.416213 1.715657e-02 3.731468e-02
## FBXO34 13.3865163 2.824598e+01 4.465490 1.788563e-05 1.984123e-04
## TRMT1 -13.3796163 1.890975e+01 -4.274650 3.808116e-05 3.390710e-04
## MED1 13.3783168 3.488881e+01 4.742358 5.757964e-06 9.194986e-05
## FBH1 13.3737450 5.344644e+01 6.409058 2.843670e-09 6.257431e-07
## RLF 13.3267865 3.510974e+01 2.882730 4.656643e-03 1.310268e-02
## GNA15 -13.3250334 2.381137e+01 -4.464632 1.794732e-05 1.984279e-04
## GOLPH3 13.3226837 8.692761e+01 2.494029 1.396143e-02 3.164463e-02
## EDC4 -13.3177459 3.438807e+01 -4.321114 3.174375e-05 2.995075e-04
## SCP2 13.3005234 5.528480e+01 3.540051 5.661499e-04 2.523648e-03
## AATK -13.2973169 2.784013e+01 -3.456232 7.532517e-04 3.118173e-03
## TLK2 13.2895395 4.990203e+01 3.814897 2.147587e-04 1.220879e-03
## SLC38A10 -13.2578356 4.034945e+01 -2.975024 3.529208e-03 1.052462e-02
## MKI67 13.2457027 1.319601e+01 6.210415 7.490738e-09 1.110502e-06
## TRMT112 -13.2330566 5.643521e+01 -2.691625 8.103547e-03 2.035757e-02
## WAPL 13.2291635 7.478111e+01 2.457733 1.537897e-02 3.418829e-02
## KDM5C 13.1911229 8.466323e+01 2.535562 1.248357e-02 2.882695e-02
## STT3A 13.1569193 4.161521e+01 3.550407 5.463424e-04 2.452544e-03
## HS1BP3 -13.1527776 3.926229e+01 -3.339183 1.113288e-03 4.217053e-03
## ARPC4-TTLL3 -13.1490025 3.585958e+01 -3.576295 4.996509e-04 2.291516e-03
## CLASP1 13.1480252 3.223553e+01 4.194993 5.187168e-05 4.297886e-04
## GATAD2B 13.1470427 5.197707e+01 3.140520 2.113764e-03 7.004537e-03
## WDR6 -13.1465916 6.720226e+01 -2.440508 1.609545e-02 3.549499e-02
## MCM6 13.1440899 2.082129e+01 7.779510 2.559992e-12 1.518075e-08
## CLEC10A -13.1211997 1.104050e+01 -4.701935 6.812186e-06 1.027895e-04
## SPG7 -13.0941043 3.092756e+01 -4.521764 1.425511e-05 1.688967e-04
## MFAP3 13.0731311 3.367424e+01 3.616094 4.351495e-04 2.061051e-03
## CD226 13.0611781 3.589041e+01 3.640653 3.993617e-04 1.922278e-03
## TYMS 13.0593605 1.204017e+01 5.703284 8.292559e-08 5.477880e-06
## MTA2 -13.0418681 9.407895e+01 -2.851842 5.102217e-03 1.413178e-02
## SKIL 13.0392234 3.547515e+01 2.839859 5.285330e-03 1.455737e-02
## ARNT 13.0320108 5.080378e+01 3.323935 1.170593e-03 4.376807e-03
## SATB1 13.0289376 4.867791e+01 2.844352 5.215972e-03 1.438972e-02
## PRMT1 -13.0216032 2.990035e+01 -3.067671 2.655270e-03 8.420188e-03
## TBC1D5 13.0177813 4.285644e+01 4.796940 4.582084e-06 7.875872e-05
## SEC13 -13.0111271 5.413360e+01 -3.332180 1.139273e-03 4.279941e-03
## IRF4 13.0080140 2.002576e+01 3.475726 7.051544e-04 2.967754e-03
## TBC1D22A -13.0076609 3.013958e+01 -5.679308 9.266559e-08 5.720219e-06
## MTMR4 12.9894432 4.664058e+01 3.673195 3.562143e-04 1.772107e-03
## SND1 -12.9798292 6.432781e+01 -2.854010 5.069710e-03 1.406474e-02
## DENND4B -12.9785564 1.012668e+02 -3.049264 2.811087e-03 8.794379e-03
## BORCS8 -12.9651667 2.273991e+01 -4.135003 6.529961e-05 5.061787e-04
## SNRPD3 -12.9649613 6.628231e+01 -3.979685 1.172972e-04 7.740685e-04
## PCNA 12.9633905 3.390473e+01 4.169136 5.729805e-05 4.629120e-04
## GET3 -12.9548390 4.197249e+01 -3.030936 2.974591e-03 9.194332e-03
## C11orf98 -12.9514851 3.301385e+01 -3.118018 2.268974e-03 7.409148e-03
## MAT2A 12.9474971 8.975871e+01 2.800794 5.924808e-03 1.591386e-02
## CBX1 12.9296634 4.810889e+01 3.435903 8.066821e-04 3.278701e-03
## MAN2C1 -12.9190906 4.115284e+01 -2.413327 1.728663e-02 3.756311e-02
## SPTLC1 12.9132995 6.138518e+01 2.775895 6.368446e-03 1.680796e-02
## NXPE3 12.9132040 5.248253e+01 3.049324 2.810564e-03 8.794379e-03
## GNL1 -12.8971807 2.955268e+01 -4.235798 4.429780e-05 3.804286e-04
## RUNX2 12.8971358 2.999564e+01 3.662231 3.702327e-04 1.819710e-03
## INO80D 12.8905801 2.880287e+01 4.672633 7.690858e-06 1.095827e-04
## IFI27L2 -12.8825245 2.122706e+01 -2.668246 8.655584e-03 2.140540e-02
## TOMM22 -12.8789430 3.776476e+01 -3.872917 1.739126e-04 1.044991e-03
## DMTF1 12.8729371 4.803148e+01 3.476035 7.044147e-04 2.966746e-03
## ORAI1 -12.8654803 1.950644e+01 -3.291086 1.303552e-03 4.784937e-03
## MIB1 12.8528949 3.257249e+01 3.792636 2.327303e-04 1.299520e-03
## PIEZO1 -12.8369984 2.345828e+01 -3.631147 4.128711e-04 1.974456e-03
## ZFX 12.8277850 3.738306e+01 3.266760 1.410965e-03 5.098736e-03
## PPP1R21 12.8257937 5.109023e+01 3.227443 1.602189e-03 5.620218e-03
## POGZ 12.8226305 4.534624e+01 4.163747 5.849574e-05 4.703454e-04
## PAPOLG 12.8004513 3.390322e+01 3.928025 1.420501e-04 8.909121e-04
## WDR48 12.7981163 4.323479e+01 4.093691 7.641963e-05 5.650479e-04
## ENTPD6 -12.7980246 2.340023e+01 -4.279603 3.735172e-05 3.345856e-04
## BORCS6 -12.7910133 1.692804e+01 -4.538437 1.332377e-05 1.609164e-04
## ANXA2R -12.7893232 1.930509e+01 -3.872162 1.743936e-04 1.046715e-03
## MED22 -12.7867754 3.048407e+01 -6.283552 5.252532e-09 9.297766e-07
## TRMT2A -12.7691159 1.576644e+01 -4.639418 8.819616e-06 1.205077e-04
## FEM1B 12.7618736 4.638225e+01 3.726340 2.950949e-04 1.546543e-03
## ATP5F1D -12.7584990 8.241636e+00 -3.934772 1.385552e-04 8.736120e-04
## COPZ1 -12.7521620 8.225838e+01 -2.790619 6.102576e-03 1.627537e-02
## SMARCA5 12.7521281 7.238429e+01 3.067182 2.659308e-03 8.428484e-03
## UBAC2 -12.7461718 6.960979e+01 -3.668470 3.621927e-04 1.795071e-03
## CDK12 12.7289736 4.035948e+01 4.110680 7.164308e-05 5.412018e-04
## GCC2 12.7076012 3.305878e+01 3.382882 9.632648e-04 3.774140e-03
## PAXX -12.7040951 1.168513e+01 -3.975745 1.190299e-04 7.816690e-04
## KRI1 -12.7033345 2.320893e+01 -4.635910 8.947782e-06 1.212808e-04
## PRDM1 12.6651830 4.618261e+01 2.989258 3.379632e-03 1.017570e-02
## SLC35A4 -12.6401913 5.713100e+01 -3.395610 9.232678e-04 3.649985e-03
## MOB2 -12.6138229 3.492555e+01 -2.776032 6.365929e-03 1.680764e-02
## PDAP1 -12.6135750 7.026995e+01 -2.727515 7.317976e-03 1.877378e-02
## PSMD8 -12.6108127 7.256145e+01 -2.343162 2.073061e-02 4.352101e-02
## FKBP2 -12.6084358 1.840962e+01 -3.677455 3.509037e-04 1.755999e-03
## PI4KB -12.5559088 9.368295e+01 -2.917777 4.194445e-03 1.208897e-02
## USP1 12.5523074 5.052917e+01 3.760280 2.614151e-04 1.414408e-03
## MARCKSL1 -12.5516612 3.275804e+01 -3.294814 1.287783e-03 4.738785e-03
## TTYH3 -12.5439947 2.129215e+01 -6.101364 1.266990e-08 1.533316e-06
## UBAP2L 12.5239343 5.572715e+01 3.431483 8.187591e-04 3.320959e-03
## STK11IP -12.5189983 2.060218e+01 -6.810946 3.845438e-10 1.572652e-07
## AP5Z1 -12.5169418 2.355558e+01 -4.668598 7.820134e-06 1.109411e-04
## PANK3 12.5071760 3.892376e+01 3.537409 5.713088e-04 2.538256e-03
## NUDT22 -12.5013291 1.316011e+01 -5.585079 1.430283e-07 7.606798e-06
## CAPRIN1 12.4976761 9.429874e+01 3.677846 3.504199e-04 1.754318e-03
## GPD2 12.4857171 2.811369e+01 3.882095 1.681715e-04 1.017808e-03
## FAM102A -12.4816731 2.275257e+01 -3.115329 2.288210e-03 7.455542e-03
## PCNX3 -12.4728828 2.663338e+01 -3.818414 2.120434e-04 1.207894e-03
## DGUOK -12.4587214 4.071040e+01 -3.157530 2.003048e-03 6.712672e-03
## SRSF4 12.4581527 6.388645e+01 3.908250 1.527836e-04 9.447412e-04
## ADRM1 -12.4554628 2.622650e+01 -4.403546 2.291126e-05 2.356205e-04
## RAB3GAP2 12.4490109 3.235553e+01 4.167623 5.763207e-05 4.651446e-04
## PIGT -12.4325911 4.189608e+01 -3.372469 9.971879e-04 3.881408e-03
## POLR2L -12.4273082 1.206856e+01 -3.762034 2.597777e-04 1.410872e-03
## PDS5A 12.4120258 4.995416e+01 3.399554 9.111926e-04 3.614296e-03
## JADE1 -12.4091919 5.746459e+01 -2.550878 1.197504e-02 2.791351e-02
## MBD3 -12.4045275 1.022561e+01 -4.181765 5.458301e-05 4.483065e-04
## IGBP1 -12.4011220 9.315010e+01 -2.992739 3.343951e-03 1.009398e-02
## ALAS1 12.3941772 5.096235e+01 3.581564 4.906221e-04 2.258195e-03
## CHMP6 -12.3819160 1.500705e+01 -5.320313 4.740225e-07 1.658380e-05
## USP5 -12.3756034 2.845790e+01 -3.628729 4.163752e-04 1.987207e-03
## GFUS -12.3746643 2.559143e+01 -3.200101 1.749121e-03 6.035665e-03
## OSGEP -12.3738492 2.499738e+01 -5.729498 7.342314e-08 5.104923e-06
## SRBD1 12.3698308 3.101500e+01 3.436190 8.059020e-04 3.277003e-03
## PIN1 -12.3696419 1.756315e+01 -4.025799 9.872896e-05 6.791911e-04
## RBM10 -12.3495716 3.476605e+01 -4.350655 2.825588e-05 2.760418e-04
## SLAIN2 12.3470668 4.312159e+01 3.910698 1.514142e-04 9.387207e-04
## TRPV2 -12.3406738 3.707748e+01 -3.856585 1.845938e-04 1.092818e-03
## GTF2A1 12.3195285 3.817889e+01 3.636753 4.048531e-04 1.942378e-03
## VRK3 -12.3111624 5.842421e+01 -2.937711 3.950734e-03 1.153513e-02
## NAXE -12.3107810 2.138874e+01 -3.736832 2.842669e-04 1.504420e-03
## ABHD13 12.3101783 5.196101e+01 2.430422 1.652867e-02 3.629513e-02
## TM9SF3 12.3044526 9.688584e+01 2.591979 1.070093e-02 2.543347e-02
## ATG101 -12.2840793 1.961917e+01 -4.359762 2.725721e-05 2.684971e-04
## R3HDM2 12.2828386 4.754458e+01 3.326270 1.161642e-03 4.346081e-03
## MAD2L2 -12.2743410 2.424771e+01 -3.858565 1.832665e-04 1.090588e-03
## TRPM6 12.2635472 2.782517e+01 3.307918 1.233755e-03 4.568986e-03
## CCDC107 -12.2341706 1.338205e+01 -4.256084 4.093935e-05 3.580684e-04
## TAPBPL -12.2144738 3.829578e+01 -2.729361 7.279499e-03 1.869125e-02
## SPCS2 12.1940518 6.406968e+01 3.130184 2.183790e-03 7.188383e-03
## CEP170 12.1927634 3.643879e+01 2.905176 4.355547e-03 1.243747e-02
## TFEC 12.1834696 3.921318e+01 2.372837 1.920626e-02 4.090512e-02
## FLT3LG -12.1752984 1.002819e+01 -4.665805 7.910851e-06 1.116937e-04
## GGT1 -12.1720707 1.670209e+01 -3.890624 1.629982e-04 9.946889e-04
## HMG20B -12.1720434 1.962604e+01 -4.270560 3.869385e-05 3.432379e-04
## MRPS21 -12.1719328 4.111597e+01 -2.818179 5.631985e-03 1.530248e-02
## ERCC1 -12.1614758 2.602666e+01 -5.153646 9.908927e-07 2.786683e-05
## COMMD7 -12.1571297 3.257114e+01 -3.845351 1.923000e-04 1.122381e-03
## SNX19 12.1563412 4.080178e+01 4.090459 7.736210e-05 5.695310e-04
## USP48 12.1441220 5.022570e+01 5.300987 5.166889e-07 1.771649e-05
## PXYLP1 12.1412527 2.353962e+01 2.659353 8.874360e-03 2.188148e-02
## STK24 12.1273883 1.023257e+02 2.286539 2.393766e-02 4.911776e-02
## AATF -12.1263169 5.585634e+01 -4.309263 3.325627e-05 3.098345e-04
## SELENOH -12.1090704 1.989418e+01 -3.856220 1.848392e-04 1.092818e-03
## H1-10 -12.1066789 1.852315e+01 -2.949772 3.809667e-03 1.121158e-02
## TOP2A 12.1014712 1.095043e+01 5.864568 3.903880e-08 3.233976e-06
## STK25 -12.0994337 2.402542e+01 -4.406266 2.266452e-05 2.343515e-04
## MAP4K1 -12.0917294 2.700362e+01 -2.826424 5.497773e-03 1.502387e-02
## CDK10 -12.0647261 1.716372e+01 -3.973470 1.200414e-04 7.865694e-04
## SMIM29 -12.0123527 1.803404e+01 -4.470241 1.754748e-05 1.952280e-04
## TMEM203 -12.0055648 2.160083e+01 -4.162011 5.888660e-05 4.722076e-04
## SMDT1 -11.9927587 2.230625e+01 -3.328120 1.154596e-03 4.326542e-03
## ATG2B 11.9835875 3.168065e+01 3.698830 3.253720e-04 1.659033e-03
## KTN1 11.9826385 6.916742e+01 2.829166 5.453784e-03 1.492429e-02
## SRGAP2B 11.9712799 2.119827e+01 4.379237 2.523419e-05 2.531261e-04
## DCAF7 11.9530736 5.670916e+01 3.391635 9.355865e-04 3.691303e-03
## SUMF2 -11.9474211 4.454928e+01 -2.957886 3.717395e-03 1.098363e-02
## MCU 11.9438211 3.360175e+01 3.601428 4.579451e-04 2.146731e-03
## PSMD9 -11.9289722 4.157325e+01 -3.119182 2.260693e-03 7.390248e-03
## FAXDC2 11.9268191 2.348800e+01 3.864997 1.790165e-04 1.071209e-03
## NPLOC4 -11.9204212 7.647469e+01 -2.778680 6.317362e-03 1.673156e-02
## MGAT4A 11.9115553 5.895381e+01 2.883141 4.650963e-03 1.309291e-02
## CYCS 11.9099799 4.779386e+01 3.890260 1.632160e-04 9.947845e-04
## MON2 11.9047949 3.877696e+01 3.856888 1.843899e-04 1.092818e-03
## RAB11B -11.8919733 1.793012e+01 -5.477108 2.340515e-07 1.034262e-05
## ZNF333 11.8847119 4.115134e+01 2.976416 3.514314e-03 1.048812e-02
## SLX1A -11.8784681 2.377912e+01 -3.788154 2.365167e-04 1.316943e-03
## NECAP1 11.8769364 4.173764e+01 2.915266 4.226099e-03 1.217133e-02
## ARHGAP21 11.8768480 2.269131e+01 4.520602 1.432233e-05 1.695238e-04
## TENT5A 11.8629030 3.525549e+01 2.996998 3.300768e-03 9.994155e-03
## KLHL6 11.8582218 4.830589e+01 2.497000 1.385077e-02 3.144528e-02
## C2CD5 11.8521951 3.936890e+01 3.348755 1.078666e-03 4.117470e-03
## GNPTAB 11.8501297 4.090593e+01 3.201571 1.740911e-03 6.010830e-03
## RASSF1 -11.8480998 4.895616e+01 -2.489059 1.414837e-02 3.197633e-02
## HSPD1 11.8437919 7.123412e+01 2.928183 4.065552e-03 1.180354e-02
## CD244 -11.8379403 3.556631e+01 -2.828088 5.471044e-03 1.496462e-02
## BRWD1 11.8361762 4.859498e+01 3.364347 1.024423e-03 3.962705e-03
## ATOX1 -11.8303184 1.878354e+01 -3.484626 6.841688e-04 2.898979e-03
## CXCR5 -11.8281171 1.186253e+01 -5.374836 3.713521e-07 1.374831e-05
## INTS1 -11.8178338 1.784814e+01 -4.809612 4.344409e-06 7.655972e-05
## RNF6 11.8145554 3.834992e+01 3.697338 3.270945e-04 1.664953e-03
## EXOC8 11.8013850 4.223895e+01 2.753833 6.786587e-03 1.765882e-02
## TLR10 11.7912563 3.139801e+01 2.538432 1.238683e-02 2.865375e-02
## RNF111 11.7844197 4.514416e+01 2.461879 1.521079e-02 3.388430e-02
## PNKD -11.7832452 3.639197e+01 -3.752589 2.687114e-04 1.446626e-03
## ZDHHC12 -11.7795068 1.645825e+01 -4.173961 5.624588e-05 4.584716e-04
## TNIP2 -11.7665126 3.592328e+01 -3.974232 1.197017e-04 7.852115e-04
## CDK9 -11.7575369 3.864615e+01 -4.648800 8.485511e-06 1.172613e-04
## CDC73 11.7564203 3.898623e+01 3.362062 1.032207e-03 3.982427e-03
## PPCS -11.7438323 4.554313e+01 -4.170664 5.696283e-05 4.611462e-04
## LSM7 -11.7388560 1.604372e+01 -3.700731 3.231880e-04 1.653585e-03
## SLC35A1 11.7363207 4.787335e+01 3.165918 1.950450e-03 6.577293e-03
## EIF4E 11.7273164 3.974712e+01 5.435286 2.828420e-07 1.177020e-05
## TBCA -11.7155689 4.722366e+01 -2.980640 3.469479e-03 1.037519e-02
## SPTY2D1 11.7141561 3.829898e+01 3.045626 2.842868e-03 8.868072e-03
## DCXR -11.7046785 1.824967e+01 -2.984579 3.428136e-03 1.027748e-02
## PRPF31 -11.6782094 1.753053e+01 -4.337245 2.979084e-05 2.865526e-04
## STAG1 11.6729118 4.837270e+01 2.626322 9.731361e-03 2.361641e-02
## G6PC3 -11.6727657 1.557827e+01 -5.205652 7.883736e-07 2.397464e-05
## SUPT16H 11.6648198 6.353515e+01 3.583310 4.876636e-04 2.247943e-03
## H2BC5 11.6539478 1.996329e+01 2.859948 4.981647e-03 1.386258e-02
## VPS25 -11.6478250 4.402055e+01 -3.368536 1.010288e-03 3.920815e-03
## CCNT2 11.6284629 4.794816e+01 2.867396 4.873183e-03 1.360545e-02
## TBC1D20 11.6266499 5.433277e+01 4.675751 7.592387e-06 1.088824e-04
## CD5 -11.6218544 2.181892e+01 -3.041713 2.877423e-03 8.959368e-03
## ST14 -11.6146858 2.232159e+01 -3.909710 1.519654e-04 9.416455e-04
## ITFG1 11.6074655 3.305206e+01 4.136071 6.503384e-05 5.051089e-04
## KLF16 -11.6050006 2.217280e+01 -5.278700 5.705556e-07 1.906138e-05
## NMRAL1 -11.5960733 1.672887e+01 -4.137593 6.465676e-05 5.031688e-04
## SMIM12 -11.5944223 4.306449e+01 -4.043249 9.246373e-05 6.508129e-04
## MICU1 11.5940984 7.068736e+01 2.393230 1.821705e-02 3.918996e-02
## MICB 11.5931732 3.013400e+01 3.985839 1.146392e-04 7.608763e-04
## B4GALT4 11.5922020 2.418808e+01 3.139556 2.120206e-03 7.020965e-03
## RELB -11.5852153 2.527917e+01 -3.625507 4.210898e-04 2.005829e-03
## TEPSIN -11.5804079 2.877054e+01 -3.697195 3.272601e-04 1.665081e-03
## C12orf75 11.5622527 1.883601e+01 4.498009 1.569134e-05 1.796325e-04
## ATP2C1 11.5501892 3.465919e+01 5.073553 1.405432e-06 3.587214e-05
## NUDT4 11.5338987 3.352954e+01 4.139365 6.422041e-05 5.010994e-04
## MRPL24 -11.5248890 1.931318e+01 -4.259460 4.040477e-05 3.553409e-04
## DCAF5 11.5134386 5.725262e+01 3.695984 3.286669e-04 1.670805e-03
## RNASE1 11.5087794 1.575656e+01 2.643594 9.274326e-03 2.270248e-02
## FAM199X 11.5083882 3.456611e+01 3.993308 1.114904e-04 7.441629e-04
## KPNA2 11.5000862 3.099392e+01 6.782182 4.445136e-10 1.757311e-07
## TCEA1 11.4782808 6.240201e+01 4.148947 6.190928e-05 4.878698e-04
## JMJD8 -11.4761161 1.656877e+01 -4.027463 9.811438e-05 6.760933e-04
## SRP72 11.4621457 5.232833e+01 3.207312 1.709194e-03 5.914812e-03
## C21orf91 11.4595836 4.130028e+01 3.030109 2.982180e-03 9.212986e-03
## SBF1 -11.4530324 3.838872e+01 -3.642824 3.963364e-04 1.911570e-03
## SACM1L 11.4515458 5.677837e+01 2.671754 8.570637e-03 2.126245e-02
## ABHD4 11.4458536 5.751743e+01 2.786077 6.183500e-03 1.643626e-02
## LSM6 -11.4231318 2.195575e+01 -5.661693 1.005273e-07 5.931610e-06
## B3GALT4 -11.3973144 1.684980e+01 -4.518313 1.445560e-05 1.707064e-04
## SENP2 11.3954806 3.246777e+01 4.555061 1.245376e-05 1.544995e-04
## CHMP7 -11.3949097 5.313369e+01 -2.912276 4.264083e-03 1.226038e-02
## XAB2 -11.3852296 2.158461e+01 -4.027172 9.822165e-05 6.760933e-04
## STX8 -11.3792841 2.600792e+01 -4.443265 1.955245e-05 2.110028e-04
## ZNF710 -11.3781035 2.654146e+01 -5.038155 1.638501e-06 3.962977e-05
## TAF1 11.3674894 3.287209e+01 3.753811 2.675396e-04 1.442282e-03
## RBBP4 11.3634455 8.173500e+01 2.873467 4.786366e-03 1.341042e-02
## TRPM7 11.3621450 3.352956e+01 4.218196 4.742471e-05 4.008960e-04
## STK11 -11.3480691 2.416527e+01 -3.851197 1.882522e-04 1.106378e-03
## MRPS34 -11.3415230 1.684001e+01 -3.846066 1.918006e-04 1.120017e-03
## STAU1 11.3243616 6.861135e+01 2.716505 7.551286e-03 1.922676e-02
## AGAP3 -11.3121719 1.427110e+01 -6.232655 6.725721e-09 1.028285e-06
## GRHPR -11.3074598 2.369453e+01 -5.045780 1.585317e-06 3.884681e-05
## BRPF3 11.3028308 2.636480e+01 4.217645 4.752592e-05 4.014654e-04
## PMVK -11.3017133 1.652029e+01 -3.842790 1.940988e-04 1.129545e-03
## DCTN4 11.2990243 5.106143e+01 2.555222 1.183419e-02 2.762320e-02
## SPCS1 -11.2572792 5.789500e+01 -2.499048 1.377492e-02 3.130304e-02
## ATP2A2 11.2512780 3.710836e+01 3.462642 7.371063e-04 3.063516e-03
## C7orf50 -11.2444011 8.402341e+00 -5.062948 1.471642e-06 3.682510e-05
## TNFRSF8 -11.2438367 1.208855e+01 -6.911371 2.313940e-10 1.119448e-07
## PLA2G15 -11.2011997 1.364228e+01 -5.590693 1.393918e-07 7.446789e-06
## ZDHHC2 11.1979136 3.960195e+01 3.141312 2.108484e-03 6.990949e-03
## HPS6 -11.1961846 1.705239e+01 -6.999484 1.478205e-10 8.859351e-08
## CCNT1 11.1932379 3.231011e+01 3.502477 6.438387e-04 2.769361e-03
## FOXJ3 11.1915241 3.821496e+01 4.194584 5.195354e-05 4.299853e-04
## NDUFA2 -11.1877646 3.469396e+01 -2.550726 1.197996e-02 2.791951e-02
## SLC30A1 11.1788036 4.042959e+01 2.343447 2.071547e-02 4.349955e-02
## ZBTB48 -11.1735573 2.623453e+01 -3.824181 2.076603e-04 1.189783e-03
## CDC27 11.1601265 3.699892e+01 4.819069 4.174868e-06 7.434525e-05
## TMX1 11.1598355 4.994364e+01 3.635623 4.064578e-04 1.947713e-03
## MAML2 11.1400925 2.263292e+01 3.771787 2.508492e-04 1.376602e-03
## OXR1 11.1387904 3.364684e+01 3.340701 1.107729e-03 4.204052e-03
## GIGYF2 11.1293940 3.991660e+01 3.858695 1.831795e-04 1.090588e-03
## VAMP7 11.1214444 5.519732e+01 2.565369 1.151104e-02 2.703692e-02
## TXNL4A -11.1173111 2.897186e+01 -3.868757 1.765760e-04 1.058742e-03
## NISCH -11.1136201 4.568418e+01 -3.527049 5.919751e-04 2.600306e-03
## PAGR1 -11.0864080 2.312246e+01 -6.131622 1.095565e-08 1.384520e-06
## ZER1 -11.0787806 4.875429e+01 -2.705921 7.781895e-03 1.967454e-02
## MRPL11 -11.0635334 1.970341e+01 -3.558624 5.310943e-04 2.399535e-03
## YWHAG 11.0629809 6.568807e+01 2.632004 9.578826e-03 2.332270e-02
## YPEL2 11.0386851 3.750076e+01 3.035016 2.937453e-03 9.115173e-03
## DYNC1LI2 11.0326962 4.561655e+01 3.398234 9.152180e-04 3.627836e-03
## TAF15 -11.0304589 7.300580e+01 -3.129764 2.186684e-03 7.195915e-03
## WDR46 -11.0284379 2.379193e+01 -3.819239 2.114111e-04 1.205939e-03
## TTN 11.0275960 2.737567e+01 3.259015 1.446860e-03 5.198353e-03
## CERS5 -11.0262171 4.569431e+01 -3.305123 1.245099e-03 4.600273e-03
## CLN6 -11.0249106 2.197383e+01 -3.056705 2.747107e-03 8.651271e-03
## TOMM20 -11.0174494 6.520279e+01 -2.751790 6.826548e-03 1.774723e-02
## NFKBIE -11.0008834 1.940920e+01 -4.335242 3.002690e-05 2.878558e-04
## CALU 10.9959673 2.990786e+01 4.405537 2.273037e-05 2.346233e-04
## ANO9 -10.9928260 9.193611e+00 -3.996723 1.100786e-04 7.380059e-04
## ATRAID -10.9924780 5.035186e+01 -2.765503 6.562382e-03 1.718098e-02
## NCK2 10.9871883 4.530043e+01 3.033177 2.954141e-03 9.150847e-03
## NDUFS6 -10.9738562 1.720792e+01 -3.304774 1.246522e-03 4.604097e-03
## AKR1B1 -10.9719079 2.668506e+01 -3.071165 2.626617e-03 8.340477e-03
## LIME1 -10.9596068 8.501134e+00 -3.430481 8.215207e-04 3.329882e-03
## ITPR2 10.9483017 3.673179e+01 2.927428 4.074773e-03 1.182741e-02
## UBE2M -10.9431608 3.773458e+01 -2.968642 3.598235e-03 1.070355e-02
## ZRSR2 -10.9413919 2.293016e+01 -5.876438 3.691726e-08 3.105239e-06
## EXOC3 -10.9395717 4.017123e+01 -4.818129 4.191438e-06 7.452843e-05
## SMCO4 -10.9393059 2.082502e+01 -4.008125 1.054866e-04 7.162240e-04
## XPOT 10.9362803 3.630472e+01 4.872219 3.335050e-06 6.441969e-05
## TBCD -10.9272968 2.108134e+01 -4.550166 1.270407e-05 1.559355e-04
## CHST2 -10.9117779 2.239104e+01 -2.684685 8.263989e-03 2.065997e-02
## PLXND1 -10.8837265 2.630384e+01 -3.554081 5.394754e-04 2.429996e-03
## CTNNBL1 -10.8836384 3.493474e+01 -3.964237 1.242310e-04 8.051254e-04
## GTF2F1 -10.8735515 3.457997e+01 -4.265293 3.949680e-05 3.489752e-04
## DHRS4L2 -10.8648211 1.293471e+01 -4.427988 2.078395e-05 2.200872e-04
## PRPF19 -10.8622614 4.128558e+01 -3.023839 3.040232e-03 9.355551e-03
## TAF8 10.8601129 3.178794e+01 4.152117 6.116243e-05 4.835578e-04
## KBTBD6 10.8487372 1.384360e+01 3.211064 1.688760e-03 5.861744e-03
## CHTOP -10.8479039 6.536219e+01 -3.260743 1.438779e-03 5.185027e-03
## LYSMD3 10.8458750 3.226299e+01 3.354028 1.060029e-03 4.067272e-03
## ANKZF1 -10.8411826 4.886287e+01 -3.238997 1.543625e-03 5.463264e-03
## HIF1AN 10.8406150 6.708500e+01 2.890697 4.547650e-03 1.286314e-02
## SLC25A29 -10.8182590 1.768666e+01 -4.508428 1.504500e-05 1.760992e-04
## MRFAP1L1 -10.8172180 6.573678e+01 -3.269325 1.399262e-03 5.068799e-03
## COMT -10.8125394 1.564950e+01 -5.239869 6.777819e-07 2.163626e-05
## CLCN3 10.8076883 2.990211e+01 4.232117 4.493495e-05 3.845083e-04
## CCDC22 -10.7940431 1.477379e+01 -5.012344 1.831728e-06 4.284871e-05
## SUMF1 -10.7829045 2.799574e+01 -4.850253 3.660102e-06 6.825285e-05
## TESPA1 -10.7764592 2.351743e+01 -3.176919 1.883419e-03 6.398554e-03
## NELFB -10.7755980 2.089472e+01 -4.759322 5.364258e-06 8.739025e-05
## GIT1 -10.7643691 2.683896e+01 -3.966652 1.231221e-04 7.995408e-04
## ECHS1 -10.7607711 1.847767e+01 -4.555820 1.241540e-05 1.541850e-04
## KCNQ1 -10.7539258 2.659564e+01 -4.908913 2.853536e-06 5.736090e-05
## CNOT6 10.7498860 2.988508e+01 4.793273 4.653171e-06 7.951961e-05
## LMBR1L -10.7407917 3.839617e+01 -3.405828 8.922911e-04 3.558363e-03
## SENP7 10.7325726 4.000166e+01 2.342182 2.078269e-02 4.356322e-02
## HSPA13 10.7078240 2.075128e+01 4.142681 6.341136e-05 4.970646e-04
## RELCH 10.6878215 4.382168e+01 3.371270 1.001166e-03 3.891781e-03
## CIAO2B -10.6849063 2.813526e+01 -2.865294 4.903579e-03 1.367743e-02
## SELENON -10.6680638 2.696512e+01 -4.031087 9.678873e-05 6.715676e-04
## PEX6 -10.6641770 2.642859e+01 -3.297746 1.275504e-03 4.697975e-03
## C6orf47 -10.6501545 5.058061e+01 -3.144322 2.088535e-03 6.936441e-03
## OXLD1 -10.6456926 1.535605e+01 -4.887524 3.125319e-06 6.135898e-05
## UBR1 10.6373142 2.268988e+01 4.998287 1.946111e-06 4.438631e-05
## GABBR1 10.6230777 3.953987e+01 2.607713 1.024643e-02 2.457982e-02
## FAM168A 10.6131440 4.525422e+01 3.010689 3.165403e-03 9.667541e-03
## TP53BP2 10.5970757 3.436596e+01 3.032525 2.960078e-03 9.161410e-03
## GPR162 -10.5684721 1.056945e+01 -5.155956 9.809068e-07 2.786683e-05
## PRELID3B 10.5658982 3.881452e+01 4.079485 8.064607e-05 5.875076e-04
## HDGFL2 -10.5610732 1.668326e+01 -5.858951 4.008385e-08 3.233976e-06
## RNF114 10.5422034 7.231145e+01 2.529891 1.267672e-02 2.922176e-02
## RWDD1 -10.5406829 2.810940e+01 -4.681804 7.404675e-06 1.076925e-04
## DDX41 -10.5358787 3.839261e+01 -3.332237 1.139058e-03 4.279941e-03
## HINT3 10.5322181 2.993292e+01 3.843149 1.938453e-04 1.128623e-03
## XPNPEP1 10.5309655 3.470850e+01 4.228904 4.549813e-05 3.884866e-04
## SUGP1 -10.5306217 2.453559e+01 -5.398671 3.336202e-07 1.305853e-05
## HDHD5 -10.5280648 1.875453e+01 -5.418996 3.044254e-07 1.223893e-05
## SNTB1 10.5229263 3.299569e+01 4.358105 2.743636e-05 2.698137e-04
## ZBTB11 10.4980336 3.351740e+01 3.637321 4.040483e-04 1.940086e-03
## TRAF1 -10.4912776 2.053752e+01 -4.298603 3.467587e-05 3.186739e-04
## ERLEC1 10.4900579 3.817985e+01 3.199801 1.750801e-03 6.039704e-03
## MARCHF5 10.4821456 4.221113e+01 2.461578 1.522293e-02 3.389639e-02
## VPS26C 10.4779406 5.577481e+01 2.734544 7.172471e-03 1.847242e-02
## UBE3C 10.4694938 4.073525e+01 4.394500 2.375053e-05 2.422023e-04
## CTBP1 -10.4598719 4.617189e+01 -3.235118 1.563062e-03 5.518879e-03
## LMTK2 10.4491418 3.392135e+01 2.465704 1.505708e-02 3.360500e-02
## CD99L2 -10.4444603 2.948080e+01 -3.718491 3.034494e-04 1.579162e-03
## APPBP2 10.4268883 3.302521e+01 4.204516 5.000022e-05 4.176075e-04
## COMMD9 -10.4237854 3.856956e+01 -3.944708 1.335573e-04 8.484144e-04
## ANAPC1 10.4177448 4.388257e+01 4.591650 1.072794e-05 1.398169e-04
## SMC1A 10.4088577 4.665230e+01 2.991469 3.356922e-03 1.012283e-02
## MRPL23 -10.4053228 1.853853e+01 -3.245285 1.512599e-03 5.379138e-03
## ACP5 -10.4040516 1.561636e+01 -4.057826 8.752338e-05 6.249411e-04
## PPP2R2A 10.4008641 4.953540e+01 3.316495 1.199546e-03 4.463953e-03
## RAB34 -10.3974180 1.661925e+01 -4.366094 2.658293e-05 2.631665e-04
## DTX2 -10.3961694 2.113412e+01 -3.946919 1.324687e-04 8.438996e-04
## TIMM8B -10.3934961 2.565855e+01 -2.611293 1.014547e-02 2.440505e-02
## IL27RA -10.3895311 4.168119e+01 -2.919635 4.171154e-03 1.203940e-02
## EID1 -10.3854234 6.863975e+01 -3.167602 1.940052e-03 6.551543e-03
## POLR1H -10.3728661 2.668011e+01 -3.469194 7.209383e-04 3.014925e-03
## TUBGCP2 -10.3682522 3.021933e+01 -4.426651 2.089526e-05 2.208715e-04
## PTPRA 10.3631401 6.472976e+01 3.532922 5.801754e-04 2.569054e-03
## FZR1 -10.3614996 2.218043e+01 -4.157060 6.001523e-05 4.786689e-04
## NDUFS1 10.3595194 3.990601e+01 4.982459 2.083216e-06 4.652908e-05
## MATK -10.3511607 9.315206e+00 -3.915715 1.486437e-04 9.259005e-04
## DCAF10 10.3371453 2.555328e+01 5.439454 2.775646e-07 1.159126e-05
## CYHR1 -10.3341884 1.810429e+01 -4.799997 4.523612e-06 7.819495e-05
## IFFO1 -10.3321048 2.912753e+01 -5.260156 6.195190e-07 2.024103e-05
## HNRNPR 10.3280327 7.475318e+01 2.558176 1.173930e-02 2.744492e-02
## GALK1 -10.3197933 1.286662e+01 -4.214829 4.804653e-05 4.050314e-04
## RRAS -10.3160432 1.392990e+01 -3.399288 9.120030e-04 3.616301e-03
## TMED3 -10.3099152 2.822494e+01 -2.407693 1.754313e-02 3.802453e-02
## USP38 10.3058575 3.820104e+01 2.775871 6.368884e-03 1.680796e-02
## FAM76B 10.3028840 3.031518e+01 3.218733 1.647699e-03 5.745871e-03
## TSC2 -10.2975791 2.702053e+01 -4.258446 4.056463e-05 3.558407e-04
## PCIF1 -10.2771017 4.536989e+01 -3.079750 2.557407e-03 8.168824e-03
## LARP7 10.2692530 4.758516e+01 3.523644 5.989185e-04 2.625942e-03
## SNTB2 10.2521412 2.300223e+01 3.967630 1.226756e-04 7.972439e-04
## GOLGA4 10.2451725 3.466121e+01 3.343453 1.097716e-03 4.174065e-03
## MYLK 10.2447011 1.493465e+01 4.300263 3.445105e-05 3.175555e-04
## FUBP1 10.2441807 4.982512e+01 2.349196 2.041228e-02 4.296177e-02
## MED23 10.2390712 3.481579e+01 3.047517 2.826310e-03 8.823383e-03
## BAZ1B 10.2387245 3.996364e+01 3.907068 1.534489e-04 9.466965e-04
## MAN2A1 10.2262739 4.161320e+01 3.293836 1.291901e-03 4.749518e-03
## RIPK3 -10.2114077 3.618256e+01 -3.447229 7.764881e-04 3.186745e-03
## UBR3 10.2084661 2.758518e+01 3.718975 3.029275e-04 1.577138e-03
## HDAC3 -10.2059563 5.945637e+01 -4.143561 6.319840e-05 4.960510e-04
## SEC31A 10.1975539 3.968046e+01 3.441097 7.927013e-04 3.238525e-03
## LSM4 -10.1957086 2.153803e+01 -4.017941 1.016806e-04 6.959422e-04
## SNRPA -10.1884629 2.112387e+01 -3.374406 9.907916e-04 3.864120e-03
## POLRMT -10.1881671 1.124837e+01 -4.830163 3.984158e-06 7.214063e-05
## TP53I13 -10.1720905 7.957969e+00 -4.929362 2.615238e-06 5.424517e-05
## ZNF655 10.1551728 7.605659e+01 2.309371 2.259547e-02 4.676013e-02
## NOC2L -10.1541254 1.878158e+01 -4.873990 3.310088e-06 6.404184e-05
## RNF40 -10.1529186 7.419362e+01 -2.434347 1.635887e-02 3.596890e-02
## DPYSL2 -10.1455406 3.895147e+01 -2.887683 4.588605e-03 1.296043e-02
## PPM1K 10.1321676 2.537856e+01 2.680808 8.354873e-03 2.083010e-02
## FRMD3 10.1130227 1.583204e+01 4.461987 1.813891e-05 2.001186e-04
## PPP1R7 -10.1070475 4.626269e+01 -3.286101 1.324921e-03 4.842394e-03
## DHRS4 -10.0928228 1.587576e+01 -4.532513 1.364773e-05 1.633321e-04
## SLC2A5 10.0923608 9.218800e+00 3.697704 3.266711e-04 1.664226e-03
## SEC23B 10.0907030 5.015761e+01 3.156255 2.011156e-03 6.732811e-03
## FBXW4 -10.0904059 2.167381e+01 -3.982699 1.159884e-04 7.676462e-04
## KIAA2026 10.0784036 2.650521e+01 3.839683 1.963032e-04 1.137906e-03
## NACC1 -10.0777212 2.547819e+01 -4.995109 1.972919e-06 4.475564e-05
## NDUFS3 -10.0735487 3.057298e+01 -3.591668 4.737344e-04 2.200740e-03
## SH3GL1 -10.0652873 2.443641e+01 -3.619203 4.304579e-04 2.042092e-03
## ZNF200 10.0571576 3.703499e+01 2.413485 1.727950e-02 3.755450e-02
## RASA4B -10.0412261 1.221461e+01 -5.184349 8.659141e-07 2.545752e-05
## STAM2 10.0337567 4.149427e+01 2.589818 1.076475e-02 2.554451e-02
## FBXW11 10.0258361 3.109664e+01 3.906104 1.539936e-04 9.487806e-04
## GET4 -10.0200761 1.780252e+01 -4.628864 9.210691e-06 1.239941e-04
## CISH -10.0176400 3.373516e+01 -2.594474 1.062766e-02 2.531004e-02
## EXOSC4 -10.0160217 8.740912e+00 -2.735164 7.159769e-03 1.845131e-02
## MPHOSPH8 10.0068155 6.376356e+01 3.166653 1.945903e-03 6.568212e-03
## ELOVL1 -9.9955942 7.439302e+01 -2.368250 1.943522e-02 4.129582e-02
## CDIP1 -9.9874881 1.878473e+01 -4.608838 9.999355e-06 1.321009e-04
## CENPT -9.9874778 2.019970e+01 -3.890043 1.633459e-04 9.950087e-04
## ZKSCAN1 9.9860325 3.904944e+01 3.522539 6.011883e-04 2.632039e-03
## SLC27A1 -9.9805256 9.182019e+00 -6.125443 1.128608e-08 1.408978e-06
## HAGH -9.9709135 1.970788e+01 -3.202691 1.734680e-03 5.992807e-03
## SIRT5 9.9704538 1.964690e+01 2.670955 8.589919e-03 2.128634e-02
## LEMD3 9.9672865 3.364193e+01 3.479790 6.954989e-04 2.939112e-03
## SRP54 9.9662343 4.311980e+01 3.565661 5.183558e-04 2.357247e-03
## ETHE1 -9.9660906 2.039038e+01 -3.165987 1.950027e-03 6.577293e-03
## ARFGEF2 9.9653925 2.004439e+01 4.257480 4.071758e-05 3.566547e-04
## SEC24A 9.9606299 2.681140e+01 3.114664 2.292993e-03 7.465717e-03
## GAPVD1 9.9466119 4.474549e+01 3.228440 1.597057e-03 5.603873e-03
## MRPL38 -9.9113785 1.417414e+01 -3.575188 5.015682e-04 2.298531e-03
## ARID1B 9.9061468 2.962887e+01 4.578702 1.131046e-05 1.444730e-04
## TRAPPC12 -9.9049357 1.905027e+01 -6.082207 1.388887e-08 1.646271e-06
## NAA60 -9.8915286 3.321897e+01 -3.139513 2.120497e-03 7.020965e-03
## LSM8 -9.8854488 3.452969e+01 -4.555838 1.241448e-05 1.541850e-04
## ABCC4 9.8794320 1.594838e+01 4.090863 7.724377e-05 5.693668e-04
## CCDC125 9.8771164 3.400019e+01 2.358911 1.990880e-02 4.211136e-02
## ZNF518A 9.8726654 3.079097e+01 3.226938 1.604794e-03 5.626029e-03
## SF3A2 -9.8703284 1.103003e+01 -4.727101 6.135832e-06 9.613074e-05
## PNPLA1 9.8696513 2.333008e+01 3.010628 3.165997e-03 9.667541e-03
## UAP1 9.8570970 1.591913e+01 4.035742 9.511087e-05 6.633274e-04
## ERF -9.8559287 1.976245e+01 -4.496664 1.577673e-05 1.801724e-04
## DIP2A 9.8555264 3.502928e+01 3.573462 5.045706e-04 2.311397e-03
## FAM214A 9.8540737 2.911284e+01 4.145685 6.268695e-05 4.933426e-04
## MICOS13 -9.8522802 9.441504e+00 -4.287114 3.627104e-05 3.286284e-04
## SELENOO -9.8508978 1.127924e+01 -4.648841 8.484077e-06 1.172613e-04
## EMG1 -9.8484032 3.052906e+01 -2.939245 3.932531e-03 1.149668e-02
## ZBTB22 -9.8465377 2.735622e+01 -4.540885 1.319206e-05 1.598265e-04
## STYXL1 -9.8455416 3.175269e+01 -2.776535 6.356672e-03 1.679816e-02
## LATS2 9.8352340 1.903370e+01 4.547561 1.283926e-05 1.569831e-04
## ZNF692 -9.8332789 2.986729e+01 -3.630749 4.134455e-04 1.975610e-03
## MYC -9.8324599 2.615070e+01 -3.429595 8.239697e-04 3.338668e-03
## YIF1B -9.8022583 1.808188e+01 -3.829213 2.039068e-04 1.171156e-03
## RABEP1 9.7854516 3.869741e+01 3.645131 3.931439e-04 1.902448e-03
## EHD3 9.7822494 2.032934e+01 4.099322 7.480360e-05 5.586717e-04
## ANKIB1 9.7818086 2.255026e+01 4.690016 7.157192e-06 1.055497e-04
## RASSF7 -9.7740574 7.936898e+00 -3.946874 1.324908e-04 8.438996e-04
## NINJ2 -9.7628910 2.848899e+01 -2.980124 3.474928e-03 1.038887e-02
## SIN3B -9.7583169 2.379947e+01 -6.959983 1.807598e-10 9.744596e-08
## TPP2 9.7488091 3.408538e+01 3.165654 1.952090e-03 6.579080e-03
## ETNK1 9.7415710 4.377615e+01 3.402686 9.017114e-04 3.581943e-03
## NSMF -9.7377028 1.117961e+01 -6.582833 1.204974e-09 3.402616e-07
## ZSWIM6 9.7339770 3.786293e+01 2.468593 1.494196e-02 3.340463e-02
## HERPUD2 9.7309476 5.929152e+01 2.602969 1.038159e-02 2.482371e-02
## EXOC5 9.7254184 3.666966e+01 3.427531 8.297039e-04 3.352739e-03
## MTOR 9.7211725 3.125682e+01 4.999645 1.934763e-06 4.429785e-05
## NDUFB5 -9.7196218 3.728487e+01 -5.380909 3.613604e-07 1.360550e-05
## RECQL 9.7176941 4.278681e+01 3.126456 2.209573e-03 7.257141e-03
## RAD23A -9.7161051 2.717567e+01 -2.586887 1.085186e-02 2.572517e-02
## TMEM109 -9.7133373 2.901525e+01 -3.715072 3.071584e-04 1.590785e-03
## GON4L 9.7020992 4.522734e+01 3.930719 1.406444e-04 8.844340e-04
## TRAK2 9.6886069 3.640937e+01 3.531148 5.837145e-04 2.578317e-03
## PDZD4 -9.6818061 1.144778e+01 -3.842528 1.942840e-04 1.130061e-03
## CINP -9.6801319 1.988453e+01 -4.321756 3.166369e-05 2.989900e-04
## CLASRP -9.6765819 3.717272e+01 -3.827291 2.053332e-04 1.178330e-03
## RSF1 9.6465904 2.169969e+01 4.366757 2.651326e-05 2.629665e-04
## RBM12 9.6461993 5.145961e+01 3.751381 2.698748e-04 1.452230e-03
## ZNF32 -9.6447011 1.629417e+01 -4.049667 9.025675e-05 6.398356e-04
## SLC35F5 9.6335148 2.968134e+01 3.897835 1.587431e-04 9.739748e-04
## POLR2C -9.6331458 6.906363e+01 -2.713738 7.610968e-03 1.934135e-02
## CPSF1 -9.6251720 2.130243e+01 -3.044509 2.852692e-03 8.895394e-03
## CDK13 9.6250750 3.860281e+01 3.284035 1.333874e-03 4.870612e-03
## SECISBP2L 9.6190139 3.151118e+01 2.816477 5.660055e-03 1.536467e-02
## SIL1 -9.6049338 1.473963e+01 -4.088621 7.790326e-05 5.724490e-04
## GLCCI1 9.5884407 2.352113e+01 3.709526 3.132662e-04 1.613260e-03
## DHTKD1 9.5880699 3.051807e+01 3.139947 2.117595e-03 7.015271e-03
## TTC17 9.5874501 4.557256e+01 3.644711 3.937231e-04 1.902834e-03
## XRRA1 -9.5827356 1.953467e+01 -2.903007 4.383836e-03 1.249514e-02
## BAP1 -9.5782344 6.256992e+01 -2.539303 1.235762e-02 2.859734e-02
## TBC1D23 9.5749585 3.863476e+01 3.183718 1.843069e-03 6.290302e-03
## REPIN1 -9.5708149 2.288002e+01 -5.021690 1.759332e-06 4.167634e-05
## GP1BB -9.5700293 1.421608e+01 -2.345678 2.059733e-02 4.328979e-02
## CCDC47 9.5680752 4.736312e+01 2.625076 9.765116e-03 2.365971e-02
## SEC23A 9.5665019 3.955392e+01 2.740469 7.051875e-03 1.822913e-02
## RCOR3 9.5644355 3.665050e+01 3.514924 6.170537e-04 2.686585e-03
## HSD17B4 9.5634309 4.753865e+01 2.765949 6.553957e-03 1.716920e-02
## TBC1D10A -9.5590138 1.535882e+01 -6.073637 1.447084e-08 1.666255e-06
## MAP3K14 -9.5210236 1.994426e+01 -4.599418 1.039254e-05 1.360436e-04
## COMMD5 -9.5210229 1.860388e+01 -4.832542 3.944381e-06 7.175901e-05
## SEC63 9.5114443 4.194978e+01 3.552804 5.418520e-04 2.436075e-03
## DPM2 -9.5060728 1.847944e+01 -2.632573 9.563667e-03 2.330014e-02
## TARS1 9.5054111 3.090826e+01 4.453775 1.874633e-05 2.051029e-04
## RASGEF1A 9.5041796 2.034468e+01 2.349539 2.039429e-02 4.293233e-02
## BMPR2 9.4944569 2.047370e+01 4.035887 9.505935e-05 6.633274e-04
## KPNA6 9.4937082 4.246204e+01 4.009828 1.048167e-04 7.137918e-04
## EPRS1 9.4790097 4.890320e+01 2.775130 6.382548e-03 1.683653e-02
## AP5M1 9.4714525 4.154590e+01 3.154935 2.019584e-03 6.758539e-03
## MFSD10 -9.4547031 1.274814e+01 -4.097585 7.529858e-05 5.610474e-04
## GPATCH8 9.4514479 2.878337e+01 3.540461 5.653516e-04 2.521651e-03
## DNPEP -9.4390748 1.850241e+01 -3.728133 2.932175e-04 1.537383e-03
## METTL26 -9.4352008 7.711972e+00 -4.226085 4.599797e-05 3.916267e-04
## FAM234A -9.4210054 1.168475e+01 -5.406348 3.222850e-07 1.278361e-05
## TMOD2 9.4124050 3.218961e+01 2.353503 2.018770e-02 4.258735e-02
## DNAJC14 9.4092975 3.068707e+01 4.115227 7.041407e-05 5.353275e-04
## AMN1 9.4017693 2.692241e+01 2.718551 7.507413e-03 1.914382e-02
## UPK3BL1 -9.3867534 2.331188e+01 -2.597434 1.054134e-02 2.513476e-02
## PRCC -9.3846390 3.817117e+01 -3.105052 2.363135e-03 7.642973e-03
## NDRG3 9.3808579 4.080456e+01 3.942539 1.346335e-04 8.537857e-04
## UBE4B 9.3711740 3.908683e+01 3.196877 1.767246e-03 6.087580e-03
## E2F1 9.3666879 1.297867e+01 3.735857 2.852577e-04 1.507645e-03
## MIF4GD -9.3613344 2.396256e+01 -3.926023 1.431032e-04 8.960949e-04
## MCM4 9.3573217 1.195038e+01 6.638894 9.114700e-10 2.979627e-07
## SPOUT1 -9.3484451 2.331154e+01 -3.327835 1.155678e-03 4.329231e-03
## PPP2CB 9.3452128 2.876596e+01 3.583735 4.869459e-04 2.247151e-03
## MYG1 -9.3398049 1.438284e+01 -5.423881 2.977903e-07 1.211995e-05
## MED16 -9.3391537 1.375212e+01 -4.075284 8.193848e-05 5.943672e-04
## CNOT7 9.3334325 6.337168e+01 3.111060 2.319066e-03 7.535377e-03
## FPGS -9.3141411 1.260087e+01 -4.634580 8.996862e-06 1.215294e-04
## SLC25A1 -9.3131070 1.218737e+01 -5.095919 1.275156e-06 3.340227e-05
## GNL3L 9.2978272 2.936114e+01 5.464678 2.476216e-07 1.071822e-05
## SCAF8 9.2852446 4.052256e+01 2.705333 7.794900e-03 1.969483e-02
## HMGCL -9.2780879 2.599589e+01 -4.069383 8.378694e-05 6.044484e-04
## PPM1G -9.2761452 5.501452e+01 -3.133849 2.158720e-03 7.127622e-03
## TARDBP 9.2629204 8.104648e+01 2.649022 9.134768e-03 2.243030e-02
## ASL -9.2594630 2.054356e+01 -3.537348 5.714286e-04 2.538256e-03
## USP16 9.2584047 3.370198e+01 3.802979 2.242091e-04 1.261442e-03
## POLL -9.2581484 1.538896e+01 -4.808875 4.357900e-06 7.668352e-05
## H2AJ -9.2496899 1.515995e+01 -3.467878 7.241593e-04 3.025465e-03
## ZNF581 -9.2436140 1.407894e+01 -4.092266 7.683381e-05 5.674028e-04
## CLEC5A 9.2333943 1.976708e+01 2.512472 1.328690e-02 3.040963e-02
## RANBP3 -9.2317752 2.980396e+01 -4.712360 6.523686e-06 9.996243e-05
## RTL8C -9.2266952 1.131030e+01 -6.079884 1.404432e-08 1.646271e-06
## PDXDC1 9.2232032 2.722793e+01 4.303607 3.400234e-05 3.150529e-04
## PHACTR2 9.2203749 1.961838e+01 3.334181 1.131789e-03 4.265249e-03
## EGF 9.2198771 1.065500e+01 4.283168 3.683497e-05 3.322094e-04
## TUBGCP6 -9.2124169 2.662201e+01 -3.411618 8.751730e-04 3.501873e-03
## MED11 -9.2079782 2.602434e+01 -4.307349 3.350699e-05 3.113707e-04
## ACSS2 -9.1932777 4.490624e+01 -2.865059 4.906983e-03 1.368049e-02
## TPCN1 -9.1895973 1.895048e+01 -4.580607 1.122288e-05 1.437401e-04
## CCSER2 9.1884776 2.716709e+01 3.883410 1.673640e-04 1.015313e-03
## NTNG2 9.1831048 2.500437e+01 2.411701 1.736033e-02 3.768872e-02
## SPNS1 -9.1746279 1.207527e+01 -5.634116 1.141655e-07 6.637267e-06
## DGKQ -9.1717000 1.339824e+01 -5.287035 5.497976e-07 1.857721e-05
## TTPAL 9.1653662 2.230395e+01 4.244997 4.274326e-05 3.702959e-04
## PLEKHM3 9.1385625 1.785398e+01 3.946627 1.326120e-04 8.442184e-04
## PEX16 -9.1355911 1.218291e+01 -4.435253 2.018931e-05 2.161058e-04
## AGO1 9.1288800 5.366029e+01 2.536222 1.246126e-02 2.879784e-02
## MIS18BP1 9.1127025 3.257726e+01 2.771262 6.454261e-03 1.696532e-02
## HAX1 -9.1108085 6.246693e+01 -2.540902 1.230413e-02 2.850758e-02
## IL11RA -9.1101706 9.889316e+00 -4.280042 3.728762e-05 3.345167e-04
## ZNF622 -9.1071223 3.338130e+01 -3.750372 2.708502e-04 1.454937e-03
## CEP85L 9.1047824 2.792517e+01 3.216743 1.658262e-03 5.779308e-03
## GTF2H2C 9.0990077 2.918868e+01 3.592098 4.730290e-04 2.199230e-03
## KCNN4 -9.0771917 1.033067e+01 -4.608130 1.002841e-05 1.322991e-04
## KDELR1 -9.0768316 4.302458e+01 -3.099302 2.406050e-03 7.754281e-03
## TMEM129 -9.0755496 1.830864e+01 -5.317837 4.792894e-07 1.666971e-05
## MPI -9.0740827 2.455735e+01 -3.288220 1.315796e-03 4.817952e-03
## DHCR24 9.0689088 1.364447e+01 5.253282 6.386898e-07 2.061774e-05
## NHP2 -9.0593232 1.478487e+01 -3.571356 5.082582e-04 2.323802e-03
## GAK -9.0573165 4.015485e+01 -3.853441 1.867202e-04 1.099008e-03
## INO80E -9.0540159 1.610606e+01 -5.110317 1.197598e-06 3.234627e-05
## COQ8B -9.0508001 2.772529e+01 -2.366663 1.951496e-02 4.144832e-02
## SERTAD3 -9.0425731 3.845581e+01 -2.733980 7.184049e-03 1.849822e-02
## PPP1R14B -9.0415827 1.286853e+01 -4.820638 4.147376e-06 7.420566e-05
## DHX8 9.0405117 6.633369e+01 2.368555 1.941993e-02 4.128006e-02
## NCK1 9.0300303 2.926003e+01 4.272563 3.839268e-05 3.413322e-04
## TCOF1 -9.0277391 1.955055e+01 -3.738339 2.827429e-04 1.498361e-03
## ZBTB7A -9.0258618 2.384968e+01 -5.490982 2.197628e-07 9.981245e-06
## EIF2B4 -9.0239364 2.255576e+01 -4.439954 1.981319e-05 2.130676e-04
## NNT 9.0052643 3.187482e+01 4.623073 9.432357e-06 1.259772e-04
## CUEDC1 -8.9959264 1.455608e+01 -6.002984 2.027637e-08 2.109454e-06
## GPANK1 -8.9787081 3.499910e+01 -2.731468 7.235822e-03 1.859923e-02
## CTDP1 -8.9732355 2.589872e+01 -2.989796 3.374089e-03 1.016426e-02
## C5orf51 8.9727948 2.241249e+01 4.445438 1.938305e-05 2.097473e-04
## SMARCC2 -8.9716112 5.809793e+01 -2.802517 5.895180e-03 1.586135e-02
## NUDT16L1 -8.9664163 1.700588e+01 -4.502136 1.543219e-05 1.781619e-04
## OVCA2 -8.9610342 1.762639e+01 -3.955100 1.285143e-04 8.261416e-04
## GCC1 8.9446089 3.954041e+01 2.847739 5.164244e-03 1.428024e-02
## RANGRF -8.9225464 1.559046e+01 -4.267358 3.918018e-05 3.466939e-04
## ZNF664 8.9184905 2.391788e+01 4.244205 4.287513e-05 3.711672e-04
## TWF1 8.9118358 3.541904e+01 2.304366 2.288391e-02 4.729926e-02
## HNRNPM -8.9099089 8.434736e+01 -2.789308 6.125840e-03 1.633006e-02
## DHX40 8.9027100 3.718926e+01 3.029290 2.989697e-03 9.223265e-03
## PHF2 8.9012524 3.990543e+01 2.703891 7.826863e-03 1.976295e-02
## BDP1 8.8968408 2.056879e+01 4.164531 5.832011e-05 4.692513e-04
## GFI1 8.8896313 1.506129e+01 3.029371 2.988958e-03 9.223265e-03
## RBM27 8.8819166 2.871347e+01 3.844288 1.930447e-04 1.125067e-03
## NAB1 8.8696099 3.853792e+01 2.362472 1.972704e-02 4.177160e-02
## ZFR 8.8610225 5.404329e+01 2.494824 1.393177e-02 3.158684e-02
## NDOR1 -8.8569013 1.651867e+01 -3.621487 4.270411e-04 2.029130e-03
## TNFSF12 -8.8464007 2.620079e+01 -3.286318 1.323983e-03 4.840456e-03
## MIGA2 -8.8421075 2.307077e+01 -3.465009 7.312261e-04 3.047204e-03
## SMAD4 8.8410257 5.109182e+01 2.735751 7.147752e-03 1.842877e-02
## ATP6V0A1 -8.8404529 5.292454e+01 -2.417041 1.711940e-02 3.727484e-02
## NIPA2 8.8369975 4.500456e+01 3.118873 2.262888e-03 7.393347e-03
## CUL1 8.8150875 3.484763e+01 2.417426 1.710213e-02 3.725777e-02
## ITPA -8.8076224 1.822375e+01 -3.475554 7.055659e-04 2.967820e-03
## ZFYVE26 8.7939144 2.543646e+01 3.381949 9.662566e-04 3.784611e-03
## MFSD5 -8.7790936 2.866155e+01 -3.536252 5.735830e-04 2.544966e-03
## TMEM208 -8.7739740 2.840579e+01 -2.535572 1.248323e-02 2.882695e-02
## KPNA5 8.7721274 2.838497e+01 2.770356 6.471155e-03 1.698714e-02
## HMGN3 -8.7699608 2.976979e+01 -3.783697 2.403411e-04 1.331984e-03
## STARD3 -8.7659642 4.642118e+01 -2.929865 4.045058e-03 1.175843e-02
## HNRNPA0 -8.7649874 5.231583e+01 -3.062186 2.700851e-03 8.528747e-03
## WDR81 -8.7646949 1.590335e+01 -4.043804 9.227091e-05 6.502276e-04
## ARSB 8.7603318 2.308291e+01 4.921386 2.705789e-06 5.532871e-05
## PBRM1 8.7586103 3.209826e+01 3.439030 7.982362e-04 3.251757e-03
## GPBAR1 -8.7579043 8.252092e+00 -5.239994 6.774067e-07 2.163626e-05
## HNMT -8.7292439 1.926410e+01 -4.241893 4.326185e-05 3.735921e-04
## WDR74 -8.7292027 1.363374e+01 -4.311558 3.295807e-05 3.077817e-04
## SEC24D 8.7077437 3.715812e+01 2.778216 6.325855e-03 1.674657e-02
## PSMG3 -8.7067735 1.167551e+01 -4.586597 1.095173e-05 1.411821e-04
## ATF2 8.6997852 3.727888e+01 3.108199 2.339959e-03 7.584562e-03
## RASA1 8.6947342 2.479803e+01 4.038765 9.403622e-05 6.583646e-04
## FAM3A -8.6858486 1.098795e+01 -4.717331 6.390320e-06 9.920051e-05
## ATP13A1 -8.6797599 2.281762e+01 -2.901756 4.400243e-03 1.253256e-02
## RCHY1 8.6753200 3.129796e+01 3.008466 3.187029e-03 9.719251e-03
## STK35 8.6744215 3.225220e+01 3.215735 1.663639e-03 5.794642e-03
## MTRNR2L3 -8.6594841 1.428124e+01 -3.814796 2.148377e-04 1.220879e-03
## RIC8A -8.6564527 7.083822e+01 -2.517955 1.309208e-02 3.004377e-02
## ZEB1 8.6556885 2.465885e+01 3.208279 1.703907e-03 5.900245e-03
## RBM15B -8.6517947 3.841760e+01 -4.950966 2.384496e-06 5.095517e-05
## DDX56 -8.6502773 2.690079e+01 -3.041762 2.876986e-03 8.959368e-03
## KAZN 8.6470236 1.601950e+01 2.741375 7.033591e-03 1.819376e-02
## CDC14B 8.6462083 1.230706e+01 5.105845 1.221181e-06 3.254655e-05
## ABCF3 -8.6443387 2.887444e+01 -4.125530 6.770355e-05 5.196033e-04
## DENND4C 8.6443325 2.295997e+01 3.712670 3.097898e-04 1.603014e-03
## FBXO44 -8.6430051 1.659027e+01 -2.960876 3.683915e-03 1.089829e-02
## OTUD4 8.6403947 2.311827e+01 3.685471 3.411146e-04 1.713519e-03
## SLFN13 8.6389264 1.754261e+01 6.137261 1.066242e-08 1.376937e-06
## PIK3C2A 8.6375500 1.992995e+01 4.229418 4.540767e-05 3.879935e-04
## LONP1 -8.6236418 1.202611e+01 -4.011055 1.043366e-04 7.111675e-04
## CDK11B -8.6215634 5.065261e+01 -2.344255 2.067259e-02 4.342490e-02
## CNST 8.6192500 3.201148e+01 3.704052 3.194066e-04 1.637770e-03
## CCND2 8.6164749 4.193033e+01 2.455361 1.547591e-02 3.433300e-02
## AGPS 8.6150302 2.898108e+01 3.857293 1.841182e-04 1.092818e-03
## ACAP3 -8.6122726 1.500451e+01 -4.138057 6.454219e-05 5.029372e-04
## BLZF1 8.6055762 2.160260e+01 3.639684 4.007198e-04 1.926444e-03
## AKAP9 8.6018634 3.393378e+01 2.755932 6.745748e-03 1.757570e-02
## RPRD2 8.6016127 2.670022e+01 4.490347 1.618367e-05 1.838490e-04
## DMAP1 -8.6000409 1.628393e+01 -4.315371 3.246824e-05 3.044058e-04
## CXXC1 -8.5953606 2.787513e+01 -3.536569 5.729588e-04 2.543148e-03
## SCRN2 -8.5908196 1.024813e+01 -5.271045 5.902916e-07 1.961025e-05
## PELP1 -8.5822063 1.144704e+01 -4.171836 5.670713e-05 4.600182e-04
## SEM1 -8.5672085 3.102854e+01 -2.578988 1.108981e-02 2.616894e-02
## APPL2 8.5656530 3.608201e+01 2.616094 1.001149e-02 2.416286e-02
## PRKRIP1 -8.5607458 2.551916e+01 -4.307678 3.346375e-05 3.112784e-04
## VDAC3 8.5535396 8.245638e+01 2.837456 5.322777e-03 1.463332e-02
## ECHDC1 -8.5482785 5.240248e+01 -2.836759 5.333675e-03 1.465649e-02
## ACADM 8.5452563 2.094770e+01 4.992966 1.991189e-06 4.482501e-05
## IKBKE -8.5442607 3.080434e+01 -2.584961 1.090946e-02 2.583590e-02
## GABPA 8.5342804 3.536235e+01 3.015086 3.123029e-03 9.567958e-03
## MAN1A2 8.5259927 2.294460e+01 3.985826 1.146447e-04 7.608763e-04
## PYM1 -8.5228242 1.947500e+01 -3.978804 1.176824e-04 7.753964e-04
## ZNF865 -8.5051158 1.158684e+01 -5.394511 3.399248e-07 1.318397e-05
## MINK1 -8.5044000 6.387061e+01 -2.518629 1.306831e-02 2.999615e-02
## ATAD2 8.4924706 1.211435e+01 6.330904 4.169772e-09 8.107130e-07
## SNRNP35 -8.4917246 2.813585e+01 -3.244805 1.514949e-03 5.383889e-03
## GOLGA2 8.4786161 3.262925e+01 3.524437 5.972954e-04 2.619794e-03
## UBE2J2 -8.4623531 2.843482e+01 -4.313275 3.273664e-05 3.064377e-04
## HEXIM1 8.4585855 4.887549e+01 2.622431 9.837093e-03 2.382437e-02
## PLD2 -8.4571060 1.482156e+01 -6.641942 8.977144e-10 2.979627e-07
## ZC3H13 8.4449994 3.932553e+01 2.912132 4.265930e-03 1.226222e-02
## DPH7 -8.4369740 1.941031e+01 -3.563042 5.230629e-04 2.371378e-03
## PDZK1IP1 -8.4352142 9.907581e+00 -3.642244 3.971423e-04 1.913900e-03
## MRPL52 -8.4321043 1.131877e+01 -3.854895 1.857339e-04 1.097014e-03
## C19orf25 -8.4261629 9.995925e+00 -4.767418 5.185701e-06 8.542002e-05
## MAD2L1BP 8.4260726 3.398890e+01 2.567293 1.145067e-02 2.692359e-02
## MPG -8.4174943 8.838878e+00 -4.913762 2.795190e-06 5.647522e-05
## ABCD4 -8.4170447 1.887275e+01 -5.599159 1.340795e-07 7.344904e-06
## ARMC8 8.4167549 4.799737e+01 2.892577 4.522281e-03 1.279443e-02
## PAICS 8.4108392 2.055779e+01 4.728102 6.110310e-06 9.585751e-05
## NUSAP1 8.4067750 9.537710e+00 6.030312 1.780027e-08 1.919192e-06
## EFTUD2 -8.4054191 6.116681e+01 -2.450094 1.569313e-02 3.474990e-02
## CDK16 -8.4051770 2.956962e+01 -2.809054 5.783994e-03 1.562957e-02
## VEGFB -8.4033441 7.137093e+00 -4.590184 1.079245e-05 1.402730e-04
## CLPX 8.4022711 3.607939e+01 4.050465 8.998558e-05 6.390593e-04
## ATAD2B 8.3880840 2.246466e+01 3.691138 3.343494e-04 1.693162e-03
## OTULIN 8.3834095 2.837373e+01 3.909370 1.521556e-04 9.418400e-04
## THYN1 -8.3800276 3.044662e+01 -2.976256 3.516026e-03 1.049058e-02
## SOCS5 8.3798530 1.694297e+01 3.441518 7.915791e-04 3.235054e-03
## SIRT1 8.3628783 2.661332e+01 3.021887 3.058523e-03 9.399866e-03
## PCNX4 8.3582081 2.670849e+01 3.456728 7.519885e-04 3.114030e-03
## THOC6 -8.3574434 1.286914e+01 -3.931370 1.403070e-04 8.832489e-04
## KAT5 -8.3542446 3.823578e+01 -3.524964 5.962170e-04 2.617526e-03
## RIF1 8.3513798 2.654692e+01 3.805952 2.218157e-04 1.252134e-03
## ECPAS 8.3410114 5.179794e+01 2.641811 9.320607e-03 2.278818e-02
## TMX3 8.3345602 3.815555e+01 2.765818 6.556433e-03 1.716920e-02
## RUVBL2 -8.3274693 1.285314e+01 -3.429074 8.254134e-04 3.341328e-03
## PTX3 8.3237432 8.696532e+00 3.215222 1.666379e-03 5.800780e-03
## NHSL2 8.3169771 2.347604e+01 2.439295 1.614701e-02 3.558885e-02
## CS 8.3138131 6.918905e+01 2.822324 5.564140e-03 1.515982e-02
## ZNF672 -8.3112635 2.761042e+01 -3.359829 1.039872e-03 4.005620e-03
## SH2B1 -8.3102375 2.723072e+01 -4.189433 5.299530e-05 4.379960e-04
## PPIL2 -8.3075133 2.895664e+01 -4.094707 7.612557e-05 5.643324e-04
## COPS9 -8.3056547 1.397782e+01 -3.322702 1.175348e-03 4.389052e-03
## SUMO3 -8.3029507 4.447507e+01 -2.852904 5.086261e-03 1.410076e-02
## DAGLB -8.3012407 2.410453e+01 -4.075814 8.177427e-05 5.935391e-04
## RNF220 -8.2889561 4.907199e+01 -3.193209 1.788083e-03 6.148642e-03
## SRGAP2C 8.2862052 1.667102e+01 4.335398 3.000846e-05 2.878558e-04
## ESRRA -8.2859500 2.287860e+01 -4.537672 1.336518e-05 1.612523e-04
## TNNI2 -8.2797928 6.999728e+00 -5.961188 2.473157e-08 2.433778e-06
## PSME4 8.2692701 5.103910e+01 3.597453 4.643154e-04 2.168878e-03
## ZC3H15 8.2691471 4.990139e+01 2.416610 1.713874e-02 3.730050e-02
## CD22 -8.2611651 1.799009e+01 -2.772787 6.425895e-03 1.691482e-02
## TRAPPC5 -8.2606398 1.130855e+01 -3.473844 7.096696e-04 2.979356e-03
## REST 8.2514553 3.532080e+01 3.104586 2.366586e-03 7.650857e-03
## EIF4EBP3 -8.2489210 1.196776e+01 -4.883916 3.173568e-06 6.190546e-05
## TPPP3 -8.2433543 4.216053e+00 -4.834519 3.911625e-06 7.159239e-05
## MOGS -8.2422878 3.939152e+01 -2.606736 1.027413e-02 2.462636e-02
## VIRMA 8.2401217 4.041834e+01 3.350985 1.070746e-03 4.099111e-03
## C2CD3 8.2361437 1.859546e+01 4.433317 2.034615e-05 2.164174e-04
## PMM1 -8.2255010 1.697339e+01 -3.882354 1.680119e-04 1.017682e-03
## PITPNB 8.2243456 3.265382e+01 4.992454 1.995582e-06 4.482501e-05
## ZNF524 -8.2104694 6.226857e+00 -5.681081 9.190856e-08 5.707961e-06
## TSPAN17 -8.1978269 2.286245e+01 -3.286833 1.321765e-03 4.835330e-03
## RPAP2 8.1964093 2.077064e+01 4.403717 2.289570e-05 2.356205e-04
## DCK 8.1961118 4.034795e+01 3.119014 2.261885e-03 7.392107e-03
## AMFR -8.1928571 4.960672e+01 -2.911122 4.278829e-03 1.228739e-02
## RFNG -8.1889311 1.035427e+01 -4.425879 2.095980e-05 2.211595e-04
## PUM1 8.1682700 4.105636e+01 3.044460 2.853126e-03 8.895394e-03
## TRAPPC11 8.1678548 3.241809e+01 3.162971 1.968782e-03 6.619627e-03
## UBE2K 8.1645818 5.215666e+01 3.379369 9.745851e-04 3.812196e-03
## NRM -8.1533558 1.595552e+01 -4.388359 2.433711e-05 2.468468e-04
## TIMM13 -8.1527097 9.269463e+00 -3.952319 1.298458e-04 8.315180e-04
## SF3B4 -8.1503150 3.606203e+01 -4.906020 2.888907e-06 5.768087e-05
## CSNK1G1 8.1457735 2.278862e+01 4.572433 1.160334e-05 1.471975e-04
## SEC24B 8.1438191 3.617099e+01 2.815345 5.678793e-03 1.539792e-02
## TRAPPC2L -8.1262944 2.156604e+01 -3.131492 2.174812e-03 7.164422e-03
## SYMPK -8.1259089 2.506982e+01 -3.307576 1.235136e-03 4.572009e-03
## GLE1 8.1257081 4.926146e+01 3.207375 1.708853e-03 5.914812e-03
## TTC37 8.1189732 2.561168e+01 3.175957 1.889198e-03 6.414511e-03
## FNBP4 8.1175089 3.836534e+01 2.681100 8.348000e-03 2.082610e-02
## ARHGEF18 -8.1173105 5.622365e+01 -2.452182 1.560669e-02 3.459080e-02
## LSM2 -8.1095923 1.747873e+01 -3.756796 2.646970e-04 1.430860e-03
## REEP3 8.1072557 2.334613e+01 5.027612 1.714906e-06 4.100561e-05
## VASH1 -8.1049547 2.062135e+01 -2.483457 1.436177e-02 3.233920e-02
## IPO7 8.1033287 2.954097e+01 2.731322 7.238837e-03 1.860295e-02
## ZMIZ2 -8.0976987 2.160966e+01 -4.035661 9.513992e-05 6.633274e-04
## DAZAP1 -8.0976685 2.823407e+01 -3.351613 1.068524e-03 4.092136e-03
## ENGASE -8.0948844 1.680177e+01 -4.379123 2.524563e-05 2.531261e-04
## SREBF2 8.0933681 4.336545e+01 2.806814 5.821877e-03 1.570688e-02
## DRAM2 -8.0919399 5.342142e+01 -2.663579 8.769770e-03 2.165510e-02
## GOLGA5 8.0841466 3.120932e+01 4.368412 2.634010e-05 2.616362e-04
## ADPRS -8.0810433 3.217192e+01 -2.528529 1.272351e-02 2.930683e-02
## SLC39A13 -8.0714184 9.362732e+00 -6.693743 6.929484e-10 2.490414e-07
## ARL6IP6 8.0662902 3.080458e+01 2.313309 2.237082e-02 4.639237e-02
## TSR3 -8.0614649 1.278686e+01 -3.677101 3.513421e-04 1.756642e-03
## NEMF 8.0610926 2.997226e+01 3.069981 2.636293e-03 8.366722e-03
## DENND1B 8.0531668 2.025507e+01 4.184675 5.397524e-05 4.442376e-04
## SYNJ1 8.0445377 2.792893e+01 2.932378 4.014632e-03 1.170153e-02
## SLBP 8.0400860 5.114101e+01 2.468881 1.493050e-02 3.338532e-02
## RING1 -8.0374749 2.217091e+01 -4.151437 6.132198e-05 4.842068e-04
## KIAA1958 8.0356024 1.026758e+01 4.155618 6.034774e-05 4.800296e-04
## SLC39A9 8.0197354 3.976978e+01 3.472054 7.139872e-04 2.993244e-03
## AKR7A2 -8.0162585 1.283851e+01 -5.053302 1.534498e-06 3.791488e-05
## LSMEM1 8.0132266 1.645616e+01 3.051167 2.794598e-03 8.759818e-03
## ATG7 -8.0105106 6.132540e+01 -2.408316 1.751457e-02 3.799526e-02
## VPS54 8.0036315 3.189275e+01 2.717808 7.523328e-03 1.916792e-02
## CCDC9 -7.9979052 1.475414e+01 -3.784191 2.399145e-04 1.330863e-03
## DENND4A 7.9952124 3.262415e+01 3.051114 2.795056e-03 8.759818e-03
## TRIM26 7.9901409 3.837458e+01 2.863167 4.934500e-03 1.374751e-02
## CARD19 -7.9858132 1.928393e+01 -3.030511 2.978486e-03 9.203973e-03
## HPS3 7.9782998 3.272897e+01 3.984958 1.150160e-04 7.620613e-04
## PPIE -7.9753664 2.710814e+01 -2.726392 7.341457e-03 1.882181e-02
## ZMAT5 -7.9749376 1.938715e+01 -3.228511 1.596692e-03 5.603873e-03
## NUS1 7.9737269 3.757963e+01 2.997696 3.293737e-03 9.980510e-03
## BABAM2 -7.9736103 2.734741e+01 -4.626056 9.317532e-06 1.251246e-04
## SMC5 7.9647937 2.756512e+01 3.340341 1.109043e-03 4.205005e-03
## UBE3B 7.9646138 2.854776e+01 4.977015 2.132506e-06 4.736240e-05
## ASMTL -7.9628927 1.662093e+01 -4.561854 1.211429e-05 1.517164e-04
## ACBD3 7.9626865 2.900214e+01 3.929942 1.410486e-04 8.860363e-04
## FBRSL1 -7.9620685 1.222482e+01 -5.221607 7.347764e-07 2.281269e-05
## COPS2 7.9521122 4.140735e+01 2.373187 1.918890e-02 4.088760e-02
## NRIP1 7.9501472 2.160272e+01 3.012643 3.146510e-03 9.615461e-03
## COPS7A -7.9491846 3.298952e+01 -4.498078 1.568698e-05 1.796325e-04
## LDLR 7.9427218 1.492274e+01 3.772191 2.504857e-04 1.375352e-03
## TAX1BP3 -7.9348155 2.593053e+01 -2.839748 5.287062e-03 1.455875e-02
## TRAPPC4 -7.9268810 3.443879e+01 -2.837530 5.321607e-03 1.463332e-02
## SIKE1 7.9203616 2.195678e+01 4.819702 4.163759e-06 7.434525e-05
## RFTN1 -7.9082810 2.251808e+01 -3.433203 8.140392e-04 3.304074e-03
## VPS13A 7.9034239 1.623763e+01 4.375779 2.558249e-05 2.560408e-04
## PHKB 7.9009173 4.623304e+01 2.801905 5.905687e-03 1.587521e-02
## GALNT10 7.8987981 4.787751e+01 4.000414 1.085716e-04 7.301388e-04
## FASTKD5 7.8984158 2.528509e+01 3.671504 3.583431e-04 1.780456e-03
## IRAK2 7.8975977 1.125861e+01 3.986695 1.142741e-04 7.592663e-04
## ABRACL -7.8915435 4.455222e+01 -2.947507 3.835804e-03 1.127451e-02
## LPCAT4 -7.8906658 2.093302e+01 -3.887665 1.647754e-04 1.002687e-03
## ENDOD1 7.8842027 2.710927e+01 2.710300 7.685719e-03 1.948955e-02
## RBBP5 7.8798747 2.772433e+01 4.241778 4.328124e-05 3.735921e-04
## FUT4 7.8771524 1.925956e+01 2.757311 6.719049e-03 1.752538e-02
## CEP192 7.8651278 2.353103e+01 3.132048 2.171008e-03 7.156241e-03
## CCNK 7.8602714 4.080686e+01 2.749103 6.879414e-03 1.785862e-02
## CIZ1 -7.8581366 2.720539e+01 -3.589391 4.774914e-04 2.214724e-03
## PARP15 7.8528711 4.232133e+01 2.601189 1.043274e-02 2.492592e-02
## CARMIL2 -7.8519923 9.665258e+00 -4.307203 3.352617e-05 3.113707e-04
## GTPBP6 -7.8492847 7.632038e+00 -4.680580 7.442274e-06 1.076925e-04
## IP6K2 7.8431469 5.072548e+01 2.965144 3.636598e-03 1.079061e-02
## WDR47 7.8354110 1.887631e+01 3.936358 1.377454e-04 8.689681e-04
## MNT -7.8305066 2.408578e+01 -4.794077 4.637501e-06 7.945279e-05
## USP47 7.8303958 4.739430e+01 2.644671 9.246482e-03 2.265302e-02
## FYTTD1 7.8137522 4.199973e+01 3.131272 2.176323e-03 7.165794e-03
## LMNA -7.8136356 1.345381e+01 -3.029239 2.990173e-03 9.223265e-03
## MGAT5 7.8000882 4.416082e+01 2.897709 4.453666e-03 1.263044e-02
## LIG4 7.7974968 2.408274e+01 3.035400 2.933984e-03 9.109175e-03
## TAB1 -7.7904541 1.541310e+01 -5.187492 8.540259e-07 2.538533e-05
## GTF2H2 7.7888676 1.818970e+01 2.880226 4.691397e-03 1.318170e-02
## ANXA4 7.7880119 3.157039e+01 3.387940 9.471780e-04 3.730830e-03
## CCDC115 -7.7816271 2.770323e+01 -4.497203 1.574244e-05 1.800438e-04
## PDK1 7.7801076 2.856314e+01 3.211485 1.686485e-03 5.857015e-03
## RBIS -7.7790536 2.578783e+01 -2.746881 6.923429e-03 1.795973e-02
## PTBP2 7.7633880 1.714210e+01 3.557254 5.336083e-04 2.408141e-03
## DDX49 -7.7623875 1.523671e+01 -3.563052 5.230447e-04 2.371378e-03
## LRBA 7.7600562 2.016484e+01 3.567210 5.155906e-04 2.348274e-03
## STBD1 7.7571183 1.136897e+01 2.628333 9.677115e-03 2.350411e-02
## GATD3A -7.7486244 8.628400e+00 -2.364584 1.961990e-02 4.162155e-02
## TMEM101 -7.7419150 2.204445e+01 -4.338791 2.960989e-05 2.855067e-04
## LZTR1 -7.7391963 2.282526e+01 -3.455221 7.558279e-04 3.125564e-03
## MOSPD3 -7.7391331 7.036004e+00 -4.290884 3.573993e-05 3.250579e-04
## BUB1 7.7351700 7.294151e+00 5.340799 4.325520e-07 1.557720e-05
## STX17 7.7310725 1.881522e+01 3.731204 2.900276e-04 1.527410e-03
## VKORC1 -7.7217239 2.440993e+01 -2.526864 1.278092e-02 2.942764e-02
## EPHB6 -7.7216718 1.670746e+01 -3.421796 8.458290e-04 3.406635e-03
## DDX46 7.7145315 4.691826e+01 2.516327 1.314963e-02 3.015948e-02
## MSRA -7.7142910 1.989037e+01 -2.622035 9.847904e-03 2.384081e-02
## KEAP1 -7.7017534 2.661450e+01 -3.290899 1.304347e-03 4.786372e-03
## CISD3 -7.7017381 1.071860e+01 -3.960517 1.259584e-04 8.127672e-04
## MAPK1IP1L 7.6995968 4.939786e+01 2.593743 1.064909e-02 2.534355e-02
## MFSD12 -7.6903185 9.787782e+00 -4.464564 1.795220e-05 1.984279e-04
## REV3L 7.6826041 1.774182e+01 3.655795 3.787038e-04 1.852560e-03
## NLRX1 -7.6742349 2.722800e+01 -2.804005 5.869703e-03 1.580715e-02
## AQR 7.6729572 3.045538e+01 3.396313 9.211030e-04 3.642641e-03
## VEGFA 7.6697871 1.753790e+01 3.084990 2.516004e-03 8.058278e-03
## SLC2A4RG -7.6685546 1.031328e+01 -4.142980 6.333902e-05 4.968259e-04
## DERL2 -7.6668540 4.675822e+01 -2.819967 5.602621e-03 1.524365e-02
## BTBD1 7.6615850 4.617942e+01 2.905040 4.357311e-03 1.243747e-02
## FKBP4 -7.6593509 2.504215e+01 -2.922706 4.132929e-03 1.194942e-02
## MAD1L1 -7.6490513 1.178844e+01 -3.066654 2.663671e-03 8.437805e-03
## MIDEAS 7.6473862 3.006373e+01 2.608351 1.022835e-02 2.454956e-02
## LTBP1 7.6471519 1.225122e+01 3.965488 1.236552e-04 8.022707e-04
## APBB1 -7.6457085 1.029755e+01 -4.113551 7.086467e-05 5.373753e-04
## ASB7 7.6455637 3.039819e+01 3.039277 2.899123e-03 9.012739e-03
## CCDC82 7.6454063 3.463308e+01 2.772154 6.437660e-03 1.692919e-02
## PNPT1 7.6429566 1.826990e+01 2.285769 2.398414e-02 4.918353e-02
## ARL5B 7.6389103 1.800796e+01 3.304146 1.249086e-03 4.612131e-03
## UHRF2 7.6363333 3.005601e+01 4.481835 1.674807e-05 1.884606e-04
## ARL5A 7.6354869 3.234736e+01 3.647900 3.893454e-04 1.888999e-03
## ENG -7.6315860 7.517699e+00 -5.376866 3.679822e-07 1.374831e-05
## MDM1 7.6278922 2.360747e+01 3.067200 2.659161e-03 8.428484e-03
## SREBF1 -7.6255028 1.180905e+01 -5.685100 9.021458e-08 5.707961e-06
## ZNF493 7.6178138 1.815725e+01 3.114545 2.293851e-03 7.465717e-03
## DCAF15 -7.6152082 1.807130e+01 -5.166182 9.378736e-07 2.699706e-05
## CCDC71 -7.6099778 1.504596e+01 -5.220866 7.371848e-07 2.282771e-05
## COPS6 -7.6094883 3.888161e+01 -2.711951 7.649738e-03 1.941914e-02
## LATS1 7.6052783 1.826010e+01 4.256123 4.093321e-05 3.580684e-04
## TMEM179B -7.6016925 2.938063e+01 -4.572187 1.161497e-05 1.471975e-04
## COA3 -7.5994503 1.456493e+01 -3.731320 2.899079e-04 1.527410e-03
## LEMD2 -7.5988337 4.078282e+01 -3.771536 2.510754e-04 1.376678e-03
## PATL2 7.5985814 1.928900e+01 3.568262 5.137214e-04 2.341559e-03
## GCNT1 7.5953305 1.954592e+01 3.982418 1.161098e-04 7.680215e-04
## KIFC2 -7.5814491 8.742958e+00 -5.235805 6.900799e-07 2.188328e-05
## LUC7L -7.5807550 2.263940e+01 -4.297346 3.484700e-05 3.190532e-04
## HYPK -7.5795189 2.001202e+01 -3.143513 2.093879e-03 6.951568e-03
## ATP6V0E2 -7.5708594 8.987266e+00 -4.533207 1.360943e-05 1.632031e-04
## XK 7.5700670 1.068010e+01 4.662723 8.012106e-06 1.124539e-04
## HDAC10 -7.5672338 1.072716e+01 -3.717807 3.041882e-04 1.580012e-03
## ZNF770 7.5556805 3.597619e+01 2.581449 1.101518e-02 2.601873e-02
## ZSCAN29 7.5539079 1.847486e+01 5.120516 1.145456e-06 3.137439e-05
## ING3 7.5511860 2.469458e+01 3.086760 2.502154e-03 8.018250e-03
## BTBD2 -7.5499483 1.029058e+01 -5.116988 1.163239e-06 3.171498e-05
## POLM -7.5457161 2.148772e+01 -5.256076 6.308280e-07 2.049759e-05
## B3GALT6 -7.5350265 9.230131e+00 -5.209723 7.743471e-07 2.360863e-05
## PHPT1 -7.5327753 1.315330e+01 -2.805067 5.851576e-03 1.577983e-02
## CBX6 -7.5291672 3.779113e+01 -2.663107 8.781414e-03 2.167934e-02
## TMEM256 -7.5239265 1.264563e+01 -3.336098 1.124666e-03 4.246589e-03
## SUGP2 7.5211038 4.621708e+01 2.668129 8.658433e-03 2.140692e-02
## KHDRBS1 -7.5199737 7.682263e+01 -2.912263 4.264255e-03 1.226038e-02
## SLC29A1 -7.5091724 1.245679e+01 -2.329376 2.147438e-02 4.484701e-02
## DOCK4 7.5086282 1.922267e+01 2.493998 1.396259e-02 3.164463e-02
## RCBTB1 7.5073988 2.234775e+01 3.676993 3.514765e-04 1.756642e-03
## MYCL -7.5033296 1.579197e+01 -3.541545 5.632508e-04 2.513226e-03
## NT5C -7.4998941 9.491093e+00 -5.403318 3.267136e-07 1.291608e-05
## DMXL1 7.4965182 2.465946e+01 3.194215 1.782351e-03 6.134266e-03
## ARID5B 7.4962045 1.937040e+01 3.437730 8.017372e-04 3.264196e-03
## RNFT1 7.4944618 2.797873e+01 3.081537 2.543217e-03 8.136649e-03
## ARMC7 -7.4944216 2.531383e+01 -2.875901 4.751971e-03 1.333010e-02
## SDE2 7.4913186 2.019426e+01 3.485872 6.812788e-04 2.891899e-03
## NENF -7.4881465 1.850034e+01 -2.362742 1.971329e-02 4.174994e-02
## CEBPZOS -7.4779553 2.850579e+01 -2.834402 5.370696e-03 1.473432e-02
## PPP1R35 -7.4774865 1.035266e+01 -5.214734 7.574126e-07 2.315184e-05
## DDRGK1 -7.4773064 1.619401e+01 -4.935064 2.552315e-06 5.329305e-05
## LRRC8D 7.4762959 2.933636e+01 3.503507 6.415834e-04 2.765969e-03
## NUBP2 -7.4757917 6.268246e+00 -4.578719 1.130969e-05 1.444730e-04
## ANAPC11 -7.4610496 1.364216e+01 -3.164226 1.960958e-03 6.605216e-03
## IARS1 7.4603853 2.129363e+01 3.569222 5.120195e-04 2.335597e-03
## ORC4 7.4469015 4.620457e+01 2.690816 8.122102e-03 2.038691e-02
## COG3 7.4468173 2.536233e+01 4.281688 3.704866e-05 3.331290e-04
## SLC37A2 -7.4409350 2.758971e+01 -3.447200 7.765658e-04 3.186745e-03
## AGO3 7.4392402 2.559811e+01 4.021652 1.002764e-04 6.874071e-04
## TOR2A -7.4331816 1.410818e+01 -4.782513 4.868022e-06 8.143123e-05
## SDR39U1 -7.4291488 1.199168e+01 -4.140801 6.386880e-05 4.996596e-04
## TATDN2 7.4245671 6.748421e+01 3.188959 1.812518e-03 6.207469e-03
## PCED1B -7.4241968 1.421719e+01 -2.894472 4.496827e-03 1.274065e-02
## XRCC1 -7.4133840 2.436230e+01 -4.826309 4.049438e-06 7.309945e-05
## CLDND1 7.4111982 4.380425e+01 2.486441 1.424775e-02 3.213272e-02
## YEATS2 7.4108642 2.274426e+01 5.002675 1.909679e-06 4.405196e-05
## GTF2H2C_2 7.4033056 2.246886e+01 2.830767 5.428252e-03 1.486759e-02
## ATF7 7.3997105 2.988050e+01 3.115701 2.285544e-03 7.450948e-03
## SIRT6 -7.3972266 8.585883e+00 -4.486312 1.644888e-05 1.861486e-04
## ACTR1B -7.3968942 3.230692e+01 -2.591454 1.071640e-02 2.546513e-02
## MINDY2 7.3967485 2.203068e+01 2.865177 4.905270e-03 1.367893e-02
## DHPS -7.3958012 2.445493e+01 -4.689431 7.174573e-06 1.055713e-04
## THAP11 -7.3941406 2.474974e+01 -4.325216 3.123581e-05 2.963654e-04
## F2R 7.3929424 1.494173e+01 4.279728 3.733337e-05 3.345856e-04
## ZNF445 7.3755535 3.168285e+01 2.608782 1.021618e-02 2.453705e-02
## ALDH16A1 -7.3738709 7.824351e+00 -4.516393 1.456829e-05 1.714087e-04
## SMURF2 7.3673994 2.515510e+01 3.675138 3.537823e-04 1.764448e-03
## MRPS18A -7.3652681 2.013211e+01 -2.666811 8.690542e-03 2.147288e-02
## CKAP5 7.3637452 2.002765e+01 4.171230 5.683910e-05 4.607736e-04
## OPA1 7.3589750 3.245593e+01 3.321603 1.179598e-03 4.400764e-03
## CORO2A 7.3575297 2.303928e+01 2.903030 4.383544e-03 1.249514e-02
## MORF4L2 7.3571384 4.127090e+01 3.340415 1.108774e-03 4.205005e-03
## PTGES2 -7.3569241 9.792072e+00 -4.047654 9.094324e-05 6.425558e-04
## PGPEP1 -7.3561954 3.231951e+01 -2.573647 1.125332e-02 2.651786e-02
## LRRC59 7.3545136 4.510553e+01 2.420497 1.696504e-02 3.704075e-02
## AKT1S1 -7.3518568 1.139058e+01 -5.396629 3.367009e-07 1.313577e-05
## PTBP1 -7.3405102 5.232086e+01 -2.390923 1.832663e-02 3.936856e-02
## DHX36 7.3318199 2.615112e+01 3.748481 2.726876e-04 1.460222e-03
## MPND -7.3314573 8.577298e+00 -4.902971 2.926640e-06 5.823817e-05
## RFX5 7.3287475 3.812953e+01 2.318978 2.205083e-02 4.585707e-02
## TMEM189 -7.3184646 1.619761e+01 -4.853746 3.606422e-06 6.764207e-05
## CREB3L2 7.3109973 1.981567e+01 4.094934 7.606017e-05 5.643324e-04
## FEN1 7.3043304 1.415048e+01 3.856381 1.847306e-04 1.092818e-03
## DRG2 -7.3002238 1.504177e+01 -3.992037 1.120205e-04 7.472233e-04
## TM7SF3 7.2987750 3.271562e+01 4.105669 7.302140e-05 5.491654e-04
## TMUB1 -7.2976808 6.908028e+00 -5.181874 8.753914e-07 2.557178e-05
## ZNF654 7.2953725 2.141354e+01 3.111208 2.317986e-03 7.533930e-03
## TRMT1L 7.2903425 3.277542e+01 2.375213 1.908862e-02 4.068855e-02
## SOCS4 7.2892859 1.959322e+01 5.037851 1.640659e-06 3.962977e-05
## SCD 7.2891384 8.327400e+00 5.215905 7.535096e-07 2.314214e-05
## MBTD1 7.2864517 2.273434e+01 3.532145 5.817231e-04 2.572422e-03
## ASGR1 -7.2858881 5.879841e+00 -6.507736 1.748532e-09 4.508172e-07
## ATXN7L3B 7.2786563 5.556249e+01 2.479944 1.449706e-02 3.259433e-02
## RPUSD1 -7.2767693 6.725533e+00 -4.854842 3.589741e-06 6.747120e-05
## OXER1 -7.2736496 9.987774e+00 -6.173781 8.941672e-09 1.248019e-06
## SMG9 -7.2708065 1.302365e+01 -4.464730 1.794025e-05 1.984279e-04
## FUCA1 -7.2705899 2.310023e+01 -3.527393 5.912767e-04 2.599163e-03
## MAP1S -7.2652492 8.371213e+00 -5.263585 6.101658e-07 1.999052e-05
## CTDSPL 7.2511052 2.087581e+01 2.643810 9.268747e-03 2.269350e-02
## TM9SF1 7.2491691 3.385422e+01 3.781750 2.420295e-04 1.339463e-03
## TRIM11 -7.2457327 2.216226e+01 -3.613473 4.391428e-04 2.074993e-03
## GART 7.2429175 2.536515e+01 4.351227 2.819213e-05 2.758996e-04
## GGH 7.2395270 9.187290e+00 4.406627 2.263198e-05 2.342193e-04
## MTRF1L 7.2388809 3.075054e+01 3.629192 4.157021e-04 1.984793e-03
## GMPPA -7.2340227 2.279266e+01 -2.280799 2.428593e-02 4.961776e-02
## SRRM1 7.2239561 4.027897e+01 2.562221 1.161044e-02 2.721340e-02
## CDK1 7.2095726 6.945888e+00 4.042679 9.266229e-05 6.518237e-04
## CHD9 7.2087892 1.898585e+01 3.829202 2.039155e-04 1.171156e-03
## DDX18 7.2025716 3.476933e+01 2.398714 1.795884e-02 3.873988e-02
## KLHL22 -7.1984286 1.148237e+01 -5.342881 4.285404e-07 1.549539e-05
## NUP205 7.1915980 1.882619e+01 3.764135 2.578291e-04 1.403973e-03
## TFPT -7.1861981 1.134438e+01 -3.807156 2.208531e-04 1.248483e-03
## PCLAF 7.1772283 8.655233e+00 4.641641 8.739305e-06 1.197407e-04
## STAMBP 7.1670703 3.094877e+01 4.058762 8.721483e-05 6.234888e-04
## MAPRE2 7.1644456 3.949713e+01 2.808351 5.795861e-03 1.565094e-02
## MSRB3 7.1600957 1.287583e+01 4.180577 5.483304e-05 4.497371e-04
## ACOT8 -7.1568482 1.303125e+01 -4.341169 2.933366e-05 2.837660e-04
## FAF2 7.1442204 3.122031e+01 4.483550 1.663291e-05 1.878727e-04
## HMGCS1 7.1431425 2.155242e+01 4.379535 2.520433e-05 2.531261e-04
## GFOD1 7.1427626 1.356395e+01 2.616809 9.991680e-03 2.411995e-02
## MPST -7.1418203 1.031564e+01 -3.353707 1.061152e-03 4.070265e-03
## VPS36 7.1381996 3.787610e+01 2.754297 6.777539e-03 1.764302e-02
## PNKP -7.1380435 1.543807e+01 -4.841597 3.796464e-06 7.024347e-05
## BMP6 7.1304611 1.167175e+01 4.343045 2.911738e-05 2.825958e-04
## UBE2E1 7.1238381 4.265987e+01 2.945398 3.860285e-03 1.132962e-02
## SLC4A2 -7.1199174 1.786706e+01 -3.769267 2.531281e-04 1.383456e-03
## UVRAG 7.1182192 2.743571e+01 3.796233 2.297325e-04 1.287631e-03
## MCM2 7.1091693 9.678482e+00 4.942092 2.476782e-06 5.199050e-05
## RABGAP1 7.1081368 2.488278e+01 4.361691 2.705001e-05 2.668994e-04
## PGP -7.1078839 1.401906e+01 -3.968803 1.221418e-04 7.954977e-04
## MCUB -7.1040591 3.449203e+01 -2.488961 1.415209e-02 3.197633e-02
## HSPA4 7.0975267 5.706318e+01 3.795150 2.306310e-04 1.289931e-03
## ACP2 -7.0876697 1.381038e+01 -3.673539 3.557829e-04 1.771446e-03
## HOOK3 7.0856125 3.843573e+01 2.336130 2.110709e-02 4.416550e-02
## NUDT21 7.0831072 4.767534e+01 2.780385 6.286280e-03 1.666671e-02
## KANSL3 7.0746114 3.350078e+01 4.070504 8.343280e-05 6.029939e-04
## SNRPC -7.0716440 2.728609e+01 -2.905084 4.356745e-03 1.243747e-02
## TBC1D17 -7.0655043 1.685730e+01 -4.049902 9.017666e-05 6.397887e-04
## RBMX2 -7.0576746 1.831858e+01 -4.503463 1.534973e-05 1.776098e-04
## MIF -7.0567736 6.159010e+00 -4.121206 6.882879e-05 5.252957e-04
## RETSAT 7.0548734 2.434155e+01 4.936898 2.532386e-06 5.297019e-05
## LRRC37B 7.0532736 1.816606e+01 4.926773 2.644299e-06 5.444686e-05
## ALDOC -7.0529869 1.501200e+01 -3.068233 2.650642e-03 8.407761e-03
## MCM3 7.0477881 3.101750e+01 2.798634 5.962154e-03 1.598353e-02
## SUCO 7.0460586 2.565766e+01 2.384130 1.865274e-02 3.993890e-02
## TASOR2 7.0381886 1.534560e+01 3.881910 1.682852e-04 1.017808e-03
## TP53BP1 7.0370174 2.019902e+01 4.259004 4.047664e-05 3.554763e-04
## SFXN3 -7.0342216 3.279589e+01 -3.609487 4.452835e-04 2.096491e-03
## BRCA1 7.0327172 1.275272e+01 5.184225 8.663868e-07 2.545752e-05
## CNOT3 -7.0307658 3.386693e+01 -2.646848 9.190448e-03 2.253902e-02
## BRD9 -7.0303213 1.974526e+01 -4.637388 8.893573e-06 1.210546e-04
## KIF11 7.0216088 7.513803e+00 5.674635 9.469037e-08 5.759117e-06
## DAB2 7.0208698 1.773419e+01 3.412518 8.725412e-04 3.494880e-03
## CSF1 7.0175217 1.604447e+01 3.190479 1.803740e-03 6.188129e-03
## LETM2 6.9988750 1.092490e+01 3.465228 7.306841e-04 3.046015e-03
## RFWD3 6.9963702 1.810170e+01 5.682365 9.136421e-08 5.707961e-06
## STARD4 6.9945374 1.238112e+01 4.787575 4.765778e-06 8.041483e-05
## PRKCE 6.9927664 1.138614e+01 2.785627 6.191562e-03 1.644980e-02
## CCDC137 -6.9878569 1.435268e+01 -4.301920 3.422798e-05 3.168961e-04
## POLR2H -6.9728085 1.661062e+01 -3.301747 1.258927e-03 4.647019e-03
## HEXD -6.9677990 1.465741e+01 -2.904867 4.359568e-03 1.244092e-02
## HSF1 -6.9652142 1.526797e+01 -4.622782 9.443634e-06 1.259859e-04
## ALYREF -6.9569113 1.808976e+01 -3.289916 1.308538e-03 4.796740e-03
## RNF25 -6.9550578 1.846544e+01 -4.179589 5.504201e-05 4.511391e-04
## EEPD1 -6.9523437 2.263370e+01 -3.447987 7.745080e-04 3.182836e-03
## MRPL14 -6.9484803 1.666765e+01 -2.971553 3.566595e-03 1.062543e-02
## TVP23B 6.9461922 3.106555e+01 2.883753 4.642509e-03 1.307532e-02
## CAND1 6.9402890 3.886795e+01 2.983196 3.442607e-03 1.031043e-02
## ZMYND8 6.9222178 2.655382e+01 3.876233 1.718172e-04 1.034917e-03
## CHCHD10 -6.9210216 7.115650e+00 -3.953171 1.294367e-04 8.293461e-04
## TRAPPC6A -6.9206765 6.693045e+00 -3.680995 3.465478e-04 1.736983e-03
## NIBAN3 -6.9160604 1.009506e+01 -3.728802 2.925198e-04 1.535761e-03
## TMEM147 -6.9081457 1.830401e+01 -3.013167 3.141463e-03 9.604989e-03
## PSMC4 -6.9063145 3.771708e+01 -2.321298 2.192103e-02 4.567046e-02
## NAGPA -6.9053008 9.030750e+00 -4.554135 1.250077e-05 1.545977e-04
## NGLY1 6.9040525 4.092783e+01 2.798496 5.964546e-03 1.598633e-02
## CASP8AP2 6.9006225 1.582888e+01 3.806669 2.212421e-04 1.250086e-03
## MFN1 6.8892645 4.363003e+01 2.283201 2.413965e-02 4.940400e-02
## LRRC47 -6.8886781 2.235072e+01 -4.553275 1.254455e-05 1.549775e-04
## BCL2L13 6.8883791 3.905025e+01 3.310245 1.224383e-03 4.545670e-03
## NUDT1 -6.8840333 8.347041e+00 -3.656843 3.773125e-04 1.846853e-03
## U2AF1L4 -6.8757865 9.493169e+00 -4.176790 5.563748e-05 4.547626e-04
## NDUFA7 -6.8692071 1.563909e+01 -3.294842 1.287667e-03 4.738785e-03
## TXNRD2 -6.8627488 1.009480e+01 -4.926786 2.644159e-06 5.444686e-05
## VENTX -6.8613727 8.677281e+00 -6.360978 3.599616e-09 7.623472e-07
## RHOBTB1 6.8545712 1.013776e+01 4.407165 2.258359e-05 2.339226e-04
## FARSA -6.8520757 1.241728e+01 -4.386385 2.452861e-05 2.480046e-04
## DLST 6.8486857 6.467866e+01 2.370986 1.929837e-02 4.109132e-02
## TNIK 6.8363870 1.449295e+01 4.643314 8.679352e-06 1.191402e-04
## NSD2 6.8311789 1.704069e+01 5.238845 6.808609e-07 2.164882e-05
## TRAF6 6.8309602 2.421382e+01 3.456983 7.513426e-04 3.112442e-03
## TBRG4 -6.8279457 1.722667e+01 -3.697414 3.270068e-04 1.664953e-03
## RNF113A -6.8254648 2.277846e+01 -4.211527 4.866389e-05 4.090388e-04
## GABRR2 6.8230114 1.063639e+01 2.554152 1.186874e-02 2.769294e-02
## FAM174C -6.8224077 5.313790e+00 -3.830463 2.029850e-04 1.167491e-03
## SECISBP2 6.8174723 4.681965e+01 3.545384 5.558666e-04 2.485889e-03
## BAHD1 -6.8090306 1.815283e+01 -4.851566 3.639833e-06 6.798176e-05
## AMDHD2 -6.8053195 9.567544e+00 -4.050901 8.983811e-05 6.387769e-04
## ATG4D -6.8008143 1.474693e+01 -3.252419 1.478101e-03 5.283386e-03
## ACSF3 -6.7968428 1.153599e+01 -4.985425 2.056830e-06 4.611343e-05
## ADAT1 6.7948655 2.084674e+01 4.257963 4.064096e-05 3.562467e-04
## DCAF6 6.7919597 3.890570e+01 2.539094 1.236461e-02 2.860794e-02
## FANCI 6.7776511 1.061400e+01 5.692307 8.725337e-08 5.624049e-06
## NOL12 -6.7750461 2.286315e+01 -3.953386 1.293335e-04 8.291327e-04
## SH2B2 -6.7638358 1.146082e+01 -4.213993 4.820216e-05 4.060210e-04
## TMEM106C 6.7623498 1.945106e+01 3.163678 1.964373e-03 6.612372e-03
## PEAK3 -6.7620231 1.547851e+01 -3.144568 2.086916e-03 6.934689e-03
## MED18 -6.7613932 2.443455e+01 -3.153723 2.027346e-03 6.776868e-03
## PSKH1 -6.7601128 1.908057e+01 -5.321823 4.708359e-07 1.652105e-05
## CTCF 6.7480726 3.778656e+01 3.182443 1.850575e-03 6.308659e-03
## ZFYVE19 -6.7469063 1.608515e+01 -3.707065 3.160123e-04 1.625177e-03
## ODF3B -6.7431651 6.399269e+00 -3.285224 1.328714e-03 4.853263e-03
## RUSF1 -6.7357187 2.130184e+01 -2.929916 4.044437e-03 1.175843e-02
## TNRC18 -6.7340720 3.905694e+01 -2.473667 1.474159e-02 3.306890e-02
## BOP1 -6.7303362 6.985680e+00 -3.993288 1.114989e-04 7.441629e-04
## RSAD1 -6.7223384 1.997019e+01 -3.678044 3.501753e-04 1.753834e-03
## TST -6.7187706 1.558343e+01 -2.813708 5.706000e-03 1.544344e-02
## UTP3 -6.7146295 2.509253e+01 -4.373421 2.582269e-05 2.573589e-04
## S100PBP 6.7077917 2.305948e+01 5.357482 4.014167e-07 1.464862e-05
## SFXN5 -6.7073236 3.142315e+01 -2.930231 4.040617e-03 1.175128e-02
## RBM14 -6.7070596 2.020115e+01 -4.089261 7.771429e-05 5.717689e-04
## AAAS -6.7063555 2.098386e+01 -3.972448 1.204981e-04 7.881573e-04
## CCP110 6.7022147 1.997068e+01 3.137989 2.130721e-03 7.046947e-03
## GDPD5 -6.7020744 9.429344e+00 -3.334273 1.131448e-03 4.265249e-03
## VDAC2 -6.6812971 5.077176e+01 -2.545694 1.214503e-02 2.821548e-02
## DLG1 6.6688541 1.788671e+01 4.559834 1.221429e-05 1.523255e-04
## ZNF787 -6.6677815 2.024726e+01 -2.606646 1.027668e-02 2.462749e-02
## LTBP3 -6.6674070 7.196099e+00 -4.673115 7.675561e-06 1.095453e-04
## SIT1 -6.6664290 1.382116e+01 -2.871950 4.807931e-03 1.346130e-02
## TEN1 -6.6567394 9.883984e+00 -4.092731 7.669855e-05 5.667569e-04
## ARID2 6.6565926 2.132931e+01 3.436649 8.046601e-04 3.273848e-03
## SREK1 6.6482531 3.240577e+01 2.889107 4.569217e-03 1.291798e-02
## OPLAH -6.6456999 8.764658e+00 -2.511933 1.330618e-02 3.043728e-02
## CD2AP 6.6439116 1.629266e+01 3.015240 3.121561e-03 9.567249e-03
## LHPP -6.6437555 8.294695e+00 -5.374383 3.721087e-07 1.374831e-05
## KCNE1 6.6420460 1.221338e+01 2.445369 1.589033e-02 3.511445e-02
## OCEL1 -6.6403216 8.598829e+00 -5.087289 1.323968e-06 3.435943e-05
## PDS5B 6.6360237 3.839535e+01 2.469846 1.489226e-02 3.332493e-02
## TMEM87A 6.6267955 3.802758e+01 3.447151 7.766944e-04 3.186745e-03
## IMPA1 6.6260553 2.113875e+01 3.349242 1.076930e-03 4.113971e-03
## FAM120AOS 6.6245741 4.912268e+01 2.490549 1.409210e-02 3.190765e-02
## RAB3IP 6.6239673 1.368427e+01 4.712920 6.508512e-06 9.987706e-05
## STRADA -6.6166858 3.738181e+01 -3.060900 2.711636e-03 8.553192e-03
## RAB11FIP2 6.6140316 1.849863e+01 3.907576 1.531625e-04 9.465903e-04
## NCBP3 6.6098926 4.165977e+01 2.908294 4.315166e-03 1.237077e-02
## RINL -6.6033321 3.743900e+01 -3.183341 1.845285e-03 6.293177e-03
## ELK4 6.5977905 2.604580e+01 2.604066 1.035019e-02 2.475363e-02
## PRADC1 -6.5958041 9.096291e+00 -3.841030 1.953444e-04 1.134566e-03
## IARS2 6.5938213 3.979436e+01 2.611172 1.014888e-02 2.440505e-02
## DMAC1 -6.5921479 1.317692e+01 -3.506585 6.348813e-04 2.745057e-03
## SLF1 6.5878713 1.760196e+01 2.963098 3.659208e-03 1.084413e-02
## IMP3 -6.5876656 1.711971e+01 -3.366632 1.016691e-03 3.936753e-03
## SHISA9 6.5804713 1.863861e+01 3.458435 7.476655e-04 3.100459e-03
## MAN2B2 -6.5745411 3.755041e+01 -3.675928 3.527987e-04 1.760283e-03
## WASHC5 6.5688972 2.981605e+01 3.553380 5.407796e-04 2.434945e-03
## ABCE1 6.5635507 2.419615e+01 2.859707 4.985193e-03 1.386920e-02
## GPR137 -6.5589136 9.550849e+00 -5.044350 1.595158e-06 3.895955e-05
## TAF2 6.5565364 1.564937e+01 4.625461 9.340327e-06 1.251246e-04
## MAPK6 6.5512600 1.946851e+01 2.292308 2.359209e-02 4.851145e-02
## ZWINT 6.5503471 7.083687e+00 5.476261 2.349525e-07 1.034262e-05
## NDUFAB1 -6.5493476 1.792403e+01 -3.004503 3.225916e-03 9.820164e-03
## PIGB 6.5483557 2.445336e+01 2.358486 1.993058e-02 4.214991e-02
## TNFAIP8L2-SCNM1 -6.5469735 1.586966e+01 -3.790170 2.348062e-04 1.309878e-03
## HOMER3 -6.5466275 1.220168e+01 -4.077867 8.114160e-05 5.907328e-04
## SSBP4 -6.5365967 7.062787e+00 -4.433779 2.030863e-05 2.162122e-04
## SCYL3 6.5346081 2.588316e+01 3.440303 7.948245e-04 3.242731e-03
## ACBD5 6.5280265 2.471806e+01 3.180245 1.863580e-03 6.344104e-03
## GATD1 -6.5267260 1.717060e+01 -3.818892 2.116767e-04 1.206384e-03
## NDUFS7 -6.5187723 4.704812e+00 -4.204902 4.992563e-05 4.175726e-04
## FOXJ2 6.5141170 3.479118e+01 2.886282 4.607761e-03 1.300215e-02
## CBFA2T3 -6.5100050 1.983658e+01 -3.356964 1.049779e-03 4.034470e-03
## ARL3 -6.5068124 1.995138e+01 -3.334922 1.129033e-03 4.260367e-03
## SLC48A1 -6.5055695 1.747207e+01 -3.699848 3.242003e-04 1.655194e-03
## BBC3 -6.5036440 1.025264e+01 -3.786263 2.381322e-04 1.322833e-03
## AP2A2 -6.4984636 2.404788e+01 -4.246457 4.250142e-05 3.692797e-04
## MRPL12 -6.4968251 1.237536e+01 -2.715743 7.567681e-03 1.924784e-02
## RPS6KB1 6.4954304 2.593115e+01 4.460911 1.821741e-05 2.004937e-04
## ZNF143 6.4936580 3.353984e+01 2.541819 1.227354e-02 2.845830e-02
## AK1 -6.4830250 7.739893e+00 -4.373553 2.580913e-05 2.573589e-04
## DENND1A -6.4809701 2.905876e+01 -2.979947 3.476794e-03 1.039183e-02
## GHDC -6.4808832 1.338641e+01 -3.890551 1.630418e-04 9.946889e-04
## ANKRD33B 6.4778891 1.126740e+01 4.820982 4.141369e-06 7.420566e-05
## TMIGD3 6.4678487 9.240646e+00 2.319007 2.204918e-02 4.585707e-02
## OSBP 6.4625232 3.421764e+01 3.469455 7.203014e-04 3.014388e-03
## TBL3 -6.4552772 7.311305e+00 -4.246190 4.254555e-05 3.693481e-04
## ZNF511 -6.4537139 1.132002e+01 -4.858643 3.532471e-06 6.691289e-05
## P2RX4 -6.4505897 2.019813e+01 -2.952857 3.774338e-03 1.112417e-02
## SGMS1 6.4490815 2.585904e+01 2.898103 4.448437e-03 1.262466e-02
## HCFC1R1 -6.4472165 7.651438e+00 -4.342113 2.922456e-05 2.831705e-04
## SLC25A20 -6.4410370 4.535745e+01 -2.500288 1.372916e-02 3.122298e-02
## UBTD1 -6.4406379 9.114590e+00 -4.248905 4.209899e-05 3.663711e-04
## GBF1 6.4385255 3.235765e+01 3.873479 1.735557e-04 1.043799e-03
## CCDC124 -6.4368698 6.240660e+00 -4.663496 7.986589e-06 1.123383e-04
## PDLIM5 6.4327594 3.178956e+01 2.576717 1.115906e-02 2.631666e-02
## R3HCC1 -6.4312023 1.552926e+01 -3.807864 2.202889e-04 1.245887e-03
## ENPP4 6.4280176 1.494631e+01 2.795927 6.009243e-03 1.607344e-02
## PPA2 -6.4254518 2.498057e+01 -2.319255 2.203530e-02 4.584889e-02
## HLA-DOA -6.4158519 1.321052e+01 -3.165710 1.951743e-03 6.579080e-03
## ACAA2 -6.4139844 3.788093e+01 -2.612367 1.011536e-02 2.435463e-02
## PARP11 6.4070149 1.214285e+01 3.113112 2.304182e-03 7.493172e-03
## ATXN10 -6.4001386 3.321966e+01 -3.222497 1.627886e-03 5.691842e-03
## ARMT1 6.3944968 3.302271e+01 2.328349 2.153069e-02 4.494878e-02
## TCF19 6.3917157 8.786556e+00 5.668743 9.730532e-08 5.803744e-06
## CASP7 6.3889829 1.821751e+01 2.899792 4.426089e-03 1.257930e-02
## RPRD1A 6.3798332 2.419009e+01 3.463859 7.340769e-04 3.055862e-03
## PLOD3 -6.3798086 1.374470e+01 -4.590048 1.079842e-05 1.402730e-04
## FFAR3 -6.3797260 6.900860e+00 -2.631650 9.588249e-03 2.334085e-02
## SAMD1 -6.3783041 1.268671e+01 -4.314947 3.252239e-05 3.046727e-04
## PGAP3 -6.3705984 8.750789e+00 -5.015768 1.804876e-06 4.238778e-05
## VPS37C -6.3558005 1.213700e+01 -6.288507 5.127364e-09 9.213718e-07
## HNRNPAB 6.3530497 4.151170e+01 2.838998 5.298716e-03 1.458407e-02
## HAPLN3 -6.3508158 5.257257e+00 -4.402787 2.298056e-05 2.357694e-04
## UCKL1 -6.3507273 8.424512e+00 -4.366708 2.651837e-05 2.629665e-04
## GPATCH3 -6.3479050 1.686023e+01 -4.319214 3.198172e-05 3.015129e-04
## TMEM170A 6.3459809 2.262480e+01 3.853807 1.864714e-04 1.099008e-03
## EPAS1 6.3434293 8.852375e+00 3.109680 2.329116e-03 7.557679e-03
## DTNBP1 -6.3233721 2.669733e+01 -2.669504 8.625025e-03 2.134658e-02
## PACS2 -6.3123933 1.100868e+01 -5.113691 1.180097e-06 3.202734e-05
## HECTD4 6.3095281 1.841572e+01 4.297470 3.483004e-05 3.190532e-04
## PIP5K1C -6.3067043 1.354032e+01 -4.382883 2.487191e-05 2.506209e-04
## MBD1 6.3057824 4.770795e+01 3.587903 4.799623e-04 2.222669e-03
## ZNF397 6.2955284 3.295403e+01 2.674400 8.507077e-03 2.113404e-02
## SLC5A3 6.2942656 1.543358e+01 3.311966 1.217499e-03 4.522246e-03
## INF2 -6.2918293 9.369260e+00 -3.997391 1.098044e-04 7.365835e-04
## MEX3C 6.2875092 2.403613e+01 2.770409 6.470160e-03 1.698714e-02
## ROMO1 -6.2858859 1.096683e+01 -2.650350 9.100899e-03 2.236102e-02
## EIF2AK3 6.2787311 1.166398e+01 3.652442 3.831894e-04 1.865344e-03
## NFX1 6.2777817 2.472729e+01 4.364404 2.676123e-05 2.647108e-04
## SPIN1 6.2760431 1.530550e+01 5.077339 1.382503e-06 3.556722e-05
## ABL2 6.2760324 1.639332e+01 3.689322 3.365036e-04 1.701890e-03
## CRYL1 -6.2746268 1.266628e+01 -6.340977 3.969533e-09 7.846443e-07
## PDE5A 6.2715489 1.268432e+01 4.028917 9.758055e-05 6.736352e-04
## TPD52 6.2690591 1.201302e+01 3.442269 7.895789e-04 3.230219e-03
## SMU1 6.2640546 6.270923e+01 2.848306 5.155634e-03 1.425975e-02
## ALG11 6.2616565 1.672117e+01 4.554210 1.249694e-05 1.545977e-04
## EHMT2 -6.2524019 1.617896e+01 -3.475250 7.062946e-04 2.967820e-03
## PRKD3 6.2522094 2.675089e+01 3.257490 1.454030e-03 5.217790e-03
## SLC30A7 6.2451010 2.538686e+01 3.654642 3.802401e-04 1.856586e-03
## DUSP7 -6.2432170 2.252231e+01 -3.624162 4.230721e-04 2.013497e-03
## POLD2 -6.2422503 1.147778e+01 -3.373528 9.936859e-04 3.871588e-03
## ELK3 6.2359040 3.455622e+01 2.911551 4.273339e-03 1.227757e-02
## MRPL4 -6.2323108 6.632145e+00 -4.029567 9.734256e-05 6.726469e-04
## MTM1 6.2226508 2.286117e+01 2.584404 1.092615e-02 2.586510e-02
## PLA2G6 -6.2219076 1.043224e+01 -5.068548 1.436313e-06 3.624398e-05
## CEP120 6.2195948 2.569100e+01 2.815365 5.678459e-03 1.539792e-02
## HBS1L 6.2158380 2.258934e+01 4.326731 3.105014e-05 2.948573e-04
## SEPTIN11 6.1984788 1.473516e+01 5.075454 1.393875e-06 3.578216e-05
## NECAB2 -6.1984091 9.255283e+00 -3.264060 1.423385e-03 5.135792e-03
## STK32C -6.1849927 6.029002e+00 -6.266516 5.706285e-09 9.535513e-07
## TELO2 -6.1848189 5.477321e+00 -5.102381 1.239761e-06 3.274735e-05
## ETV3 6.1804590 2.467128e+01 2.898702 4.440502e-03 1.261120e-02
## NCAPG 6.1623512 6.135755e+00 5.763227 6.275347e-08 4.510643e-06
## CCL3 -6.1559310 8.235264e+00 -4.910892 2.829578e-06 5.697587e-05
## MTF2 6.1514786 2.614021e+01 4.425399 2.099996e-05 2.213862e-04
## RAB27B 6.1510061 1.530065e+01 3.101113 2.392458e-03 7.716768e-03
## ALKBH7 -6.1498900 4.973667e+00 -4.456894 1.851337e-05 2.031161e-04
## SCAMP3 -6.1439867 1.888963e+01 -3.052334 2.784527e-03 8.741261e-03
## RRM1 6.1413614 1.716788e+01 4.340498 2.941134e-05 2.842856e-04
## NUDT18 -6.1409045 1.225316e+01 -2.708789 7.718777e-03 1.954413e-02
## TXNL1 -6.1377268 3.942697e+01 -2.566180 1.148556e-02 2.699539e-02
## TSR2 -6.1356226 2.741597e+01 -3.784683 2.394902e-04 1.329754e-03
## CD72 -6.1279376 8.457486e+00 -4.215531 4.791624e-05 4.044745e-04
## PEAK1 6.1158750 1.193587e+01 4.638490 8.853348e-06 1.206905e-04
## MRPL49 6.1144805 3.850536e+01 4.187439 5.340377e-05 4.404972e-04
## MRPL43 -6.1144218 1.271728e+01 -4.213166 4.835664e-05 4.070331e-04
## THOC2 6.1104426 2.350514e+01 2.866198 4.890478e-03 1.364410e-02
## RRP36 -6.1067248 2.243288e+01 -3.647189 3.903179e-04 1.891774e-03
## SCAMP1 6.0984171 2.308457e+01 3.096894 2.424232e-03 7.810755e-03
## PTTG1 6.0904235 9.821735e+00 2.709822 7.696174e-03 1.950772e-02
## RALGDS -6.0884129 2.393769e+01 -2.597255 1.054655e-02 2.514213e-02
## DOP1B 6.0848976 1.931065e+01 3.645773 3.922607e-04 1.900413e-03
## TSC1 6.0816191 2.520761e+01 3.373555 9.935976e-04 3.871588e-03
## PI4K2B 6.0776824 1.531449e+01 4.080026 8.048110e-05 5.866661e-04
## SNAPIN -6.0755353 2.264554e+01 -3.333547 1.134157e-03 4.270144e-03
## FLAD1 -6.0745058 2.095031e+01 -3.560181 5.282502e-04 2.389415e-03
## BCL2L15 6.0725701 6.069439e+00 2.923551 4.122465e-03 1.192885e-02
## ESCO1 6.0639168 2.550469e+01 3.017862 3.096549e-03 9.501959e-03
## ELOVL7 6.0630152 9.774018e+00 4.162698 5.873172e-05 4.712843e-04
## TMEM184C 6.0593001 1.841636e+01 3.788305 2.363888e-04 1.316943e-03
## EMSY 6.0521959 1.685720e+01 4.403844 2.288411e-05 2.356205e-04
## LAS1L -6.0474867 1.644443e+01 -3.695005 3.298071e-04 1.675108e-03
## RPP25L -6.0466924 1.265085e+01 -3.512166 6.228983e-04 2.706071e-03
## HGH1 -6.0458363 7.169800e+00 -4.602789 1.025015e-05 1.346254e-04
## MROH6 -6.0415337 8.219432e+00 -3.379418 9.744275e-04 3.812196e-03
## CBLL1 6.0407231 2.807184e+01 3.205064 1.721549e-03 5.952645e-03
## POLR2F -6.0359600 1.787746e+01 -3.863349 1.800967e-04 1.076586e-03
## NDUFS8 -6.0358168 6.602091e+00 -3.555288 5.372365e-04 2.422671e-03
## ISG20L2 6.0324676 4.408755e+01 3.221408 1.633595e-03 5.708537e-03
## TRABD2A -6.0310468 1.071478e+01 -2.605961 1.029616e-02 2.465923e-02
## CLTCL1 6.0278806 1.053767e+01 3.172124 1.912368e-03 6.480736e-03
## EMD -6.0277210 1.839581e+01 -3.294537 1.288947e-03 4.741597e-03
## CBFB 6.0210136 5.376841e+01 2.488077 1.418559e-02 3.203371e-02
## ZNF263 -6.0053396 2.348134e+01 -4.278403 3.752711e-05 3.356497e-04
## KPNA3 6.0048850 2.299328e+01 3.581534 4.906719e-04 2.258195e-03
## SORD -6.0044003 1.739980e+01 -3.878115 1.706386e-04 1.029387e-03
## GSS -5.9990840 1.797060e+01 -3.262972 1.428416e-03 5.150809e-03
## ARHGAP18 5.9957541 2.449746e+01 2.907767 4.321968e-03 1.238428e-02
## AXIN1 -5.9916273 2.901411e+01 -3.547924 5.510315e-04 2.468921e-03
## NME4 -5.9911355 1.014303e+01 -3.351598 1.068579e-03 4.092136e-03
## POP4 -5.9879067 2.253557e+01 -4.025179 9.895877e-05 6.803774e-04
## MRPL53 -5.9854064 1.228370e+01 -3.420434 8.497020e-04 3.418408e-03
## BET1L -5.9829197 5.463977e+01 -2.472504 1.478731e-02 3.315264e-02
## P3H1 -5.9761099 2.098750e+01 -3.521001 6.043613e-04 2.642966e-03
## LAMC1 5.9559558 7.348252e+00 3.636067 4.058269e-04 1.945476e-03
## DDX54 -5.9435389 1.102870e+01 -3.811794 2.171826e-04 1.232433e-03
## ERI3 -5.9435168 1.160699e+01 -3.594351 4.693434e-04 2.188056e-03
## PRC1 5.9418122 7.020148e+00 4.179160 5.513280e-05 4.515712e-04
## ZNF580 -5.9409028 7.745392e+00 -4.551679 1.262618e-05 1.556616e-04
## PIK3R4 5.9256798 1.805780e+01 4.285602 3.648605e-05 3.300721e-04
## FAM20C -5.9244254 5.563845e+00 -6.297594 4.905411e-09 8.950489e-07
## SGF29 -5.9224799 1.059404e+01 -3.763155 2.587366e-04 1.406977e-03
## ANAPC2 -5.9219004 1.141795e+01 -3.644754 3.936640e-04 1.902834e-03
## CERS6 5.9211618 2.227757e+01 3.710635 3.120357e-04 1.608320e-03
## COQ4 -5.9178047 7.047491e+00 -3.998059 1.095307e-04 7.353534e-04
## MGMT -5.9130224 5.498776e+00 -4.489017 1.627066e-05 1.846603e-04
## BTBD6 -5.9010034 2.206897e+01 -2.881847 4.668875e-03 1.312464e-02
## SHCBP1 5.9000424 6.224003e+00 5.723822 7.538543e-08 5.168042e-06
## CEP295 5.8958257 1.548510e+01 4.580900 1.120948e-05 1.437401e-04
## ARL2 -5.8863648 9.062380e+00 -3.632271 4.112514e-04 1.967504e-03
## CCNA2 5.8860342 6.591694e+00 5.466407 2.456889e-07 1.067352e-05
## USP28 5.8855390 1.504889e+01 3.539901 5.664417e-04 2.523666e-03
## WDR91 -5.8854712 2.213817e+01 -3.892736 1.617410e-04 9.882784e-04
## KAT2A -5.8803086 1.636017e+01 -2.967986 3.605405e-03 1.071413e-02
## TMEM175 -5.8788987 1.329342e+01 -4.284604 3.662878e-05 3.311107e-04
## REXO4 -5.8759585 1.197259e+01 -4.282978 3.686235e-05 3.322094e-04
## PIK3R6 -5.8759061 9.613134e+00 -4.124262 6.803152e-05 5.212234e-04
## EYA3 5.8755838 2.485161e+01 3.485660 6.817702e-04 2.892950e-03
## KHDC4 5.8718176 2.524410e+01 3.960967 1.257481e-04 8.122943e-04
## CCDC130 -5.8672023 1.241224e+01 -5.254279 6.358748e-07 2.060512e-05
## BEND7 5.8668316 7.674486e+00 4.272060 3.846808e-05 3.417464e-04
## POLK 5.8660814 2.009408e+01 2.563970 1.155513e-02 2.710518e-02
## FAAH -5.8650227 5.163740e+00 -5.073149 1.407900e-06 3.587214e-05
## PIGQ -5.8629205 6.741879e+00 -3.649065 3.877576e-04 1.883213e-03
## SMC6 5.8504017 1.899626e+01 4.417119 2.170538e-05 2.268135e-04
## RMC1 5.8496281 3.124943e+01 4.024868 9.907443e-05 6.807780e-04
## ZDHHC6 5.8435371 3.693531e+01 3.857563 1.839370e-04 1.092818e-03
## DELE1 -5.8421169 3.296236e+01 -3.652402 3.832436e-04 1.865344e-03
## SNAI3 -5.8380886 1.161980e+01 -2.936775 3.961877e-03 1.156482e-02
## ATXN3 5.8380222 2.255061e+01 3.833901 2.004686e-04 1.156400e-03
## ZNF335 -5.8365730 2.504953e+01 -3.086879 2.501225e-03 8.017441e-03
## KCTD17 -5.8342935 6.639303e+00 -4.690609 7.139654e-06 1.055497e-04
## PNMA1 5.8335839 1.804228e+01 4.122516 6.848579e-05 5.236693e-04
## IQCE -5.8254935 1.673687e+01 -3.733132 2.880412e-04 1.519648e-03
## DNAJC17 -5.8159276 1.218526e+01 -3.972129 1.206414e-04 7.881573e-04
## BANP -5.8155246 1.627693e+01 -3.894537 1.606758e-04 9.824133e-04
## CCDC57 -5.8144079 1.573375e+01 -3.736400 2.847055e-04 1.506069e-03
## SLC30A6 5.8124508 2.152792e+01 4.214808 4.805052e-05 4.050314e-04
## IWS1 5.8124343 4.263088e+01 2.852072 5.098754e-03 1.412549e-02
## SS18 5.8121445 3.520226e+01 3.509166 6.293117e-04 2.725945e-03
## MEI1 -5.8112151 9.547366e+00 -3.439573 7.967790e-04 3.248470e-03
## COA8 -5.8083155 1.241960e+01 -4.369241 2.625374e-05 2.610964e-04
## TDG 5.8079475 2.408861e+01 3.804263 2.231728e-04 1.258597e-03
## TIGD3 -5.8072685 1.031599e+01 -2.597459 1.054061e-02 2.513476e-02
## FHL1 5.8050219 1.411544e+01 2.786770 6.171087e-03 1.641978e-02
## MED7 -5.8003535 1.627404e+01 -4.353829 2.790385e-05 2.735038e-04
## UCK1 -5.7983109 2.329643e+01 -3.372522 9.970103e-04 3.881408e-03
## CCNQ -5.7916846 9.102508e+00 -5.754880 6.524300e-08 4.625039e-06
## TRIP11 5.7878032 1.993404e+01 3.804380 2.230781e-04 1.258597e-03
## ATE1 5.7857263 1.848914e+01 3.852363 1.874546e-04 1.102784e-03
## ZNF587 5.7854214 1.715486e+01 3.209530 1.697088e-03 5.888665e-03
## NFATC2IP 5.7790768 2.723838e+01 3.985482 1.147920e-04 7.614276e-04
## BAD -5.7787491 7.763530e+00 -4.225552 4.609301e-05 3.918732e-04
## RABGGTA -5.7734605 1.531104e+01 -3.977217 1.183797e-04 7.786929e-04
## CLPP -5.7716016 1.129989e+01 -3.405377 8.936358e-04 3.560893e-03
## RBM18 5.7683178 2.740087e+01 3.353181 1.063001e-03 4.074723e-03
## MYZAP 5.7666649 8.267161e+00 3.350103 1.073874e-03 4.107107e-03
## GFER -5.7652272 8.896291e+00 -4.034263 9.564115e-05 6.652809e-04
## RMI1 5.7646251 1.983818e+01 2.565283 1.151377e-02 2.703692e-02
## PYCR2 -5.7644930 3.472539e+01 -2.475553 1.466771e-02 3.293430e-02
## NET1 5.7643315 8.979555e+00 5.226605 7.187279e-07 2.249106e-05
## COX14 -5.7514578 1.856957e+01 -2.546331 1.212404e-02 2.818411e-02
## TIMM50 -5.7503351 1.912518e+01 -2.735044 7.162220e-03 1.845131e-02
## TNFRSF25 -5.7480547 6.405671e+00 -3.930730 1.406386e-04 8.844340e-04
## GNL3 5.7478907 3.206503e+01 2.298400 2.323191e-02 4.789336e-02
## FBXL13 5.7431696 8.770962e+00 3.396365 9.209439e-04 3.642641e-03
## MRPS24 -5.7314696 1.528638e+01 -2.505942 1.352231e-02 3.084473e-02
## MRPL33 -5.7279407 3.856385e+01 -2.893945 4.503900e-03 1.275460e-02
## C6orf120 5.7254449 3.054948e+01 2.801668 5.909773e-03 1.588155e-02
## ABHD10 -5.7210365 1.903502e+01 -4.204639 4.997646e-05 4.176075e-04
## RFC1 5.7195093 2.313335e+01 3.701118 3.227448e-04 1.652030e-03
## SCAF1 -5.7184111 1.161429e+01 -4.274964 3.803454e-05 3.389103e-04
## ICE1 5.7097801 2.366489e+01 2.968215 3.602903e-03 1.070938e-02
## CHCHD1 -5.7047600 2.002231e+01 -2.429859 1.655318e-02 3.632877e-02
## MYB 5.6914012 7.418803e+00 3.602009 4.570208e-04 2.144941e-03
## HIP1R -5.6907462 9.582014e+00 -3.527669 5.907175e-04 2.598631e-03
## MRPS5 -5.6885053 3.331341e+01 -2.606411 1.028337e-02 2.463355e-02
## SLC1A4 5.6877201 1.174624e+01 3.354982 1.056688e-03 4.057078e-03
## MVD -5.6874473 6.312871e+00 -3.840727 1.955598e-04 1.135261e-03
## UBQLN4 -5.6847948 1.762492e+01 -3.750144 2.710713e-04 1.455367e-03
## TTBK2 5.6786980 1.411520e+01 4.235428 4.436151e-05 3.807001e-04
## MRPS6 -5.6716319 2.460458e+01 -2.589184 1.078354e-02 2.557856e-02
## NBPF12 5.6702989 1.675312e+01 3.234905 1.564134e-03 5.520703e-03
## DHRSX -5.6698927 1.429759e+01 -5.103340 1.234591e-06 3.274735e-05
## B3GNTL1 -5.6668676 1.279576e+01 -3.528341 5.893598e-04 2.595322e-03
## ZFPL1 -5.6653135 1.067588e+01 -4.362122 2.700398e-05 2.666671e-04
## CAMLG -5.6642093 3.164762e+01 -2.476102 1.464630e-02 3.289869e-02
## TYSND1 -5.6618295 9.054637e+00 -4.438119 1.995918e-05 2.138354e-04
## NAGLU -5.6588560 1.127876e+01 -3.463556 7.348309e-04 3.057304e-03
## PSMG2 -5.6526214 2.825350e+01 -3.609796 4.448048e-04 2.095070e-03
## CTNNBIP1 -5.6476223 1.671485e+01 -4.125731 6.765156e-05 5.196033e-04
## HEBP1 -5.6453343 1.833452e+01 -3.620987 4.277867e-04 2.031045e-03
## WDR70 -5.6439681 1.612595e+01 -4.673958 7.648869e-06 1.094277e-04
## NEXN 5.6426255 9.894202e+00 2.826786 5.491941e-03 1.501485e-02
## TNF -5.6355231 1.049249e+01 -4.543839 1.303482e-05 1.585569e-04
## SLFN12 5.6333244 1.253977e+01 4.031619 9.659567e-05 6.715267e-04
## TCF12 5.6297618 2.037587e+01 3.243931 1.519232e-03 5.389799e-03
## FBXO28 5.6297459 2.305460e+01 3.417939 8.568396e-04 3.445954e-03
## PRDM4 5.6283633 2.520332e+01 3.469273 7.207462e-04 3.014925e-03
## MLST8 -5.6283090 6.853178e+00 -4.380242 2.513381e-05 2.528304e-04
## STAU2 5.6273628 2.132552e+01 2.939063 3.934688e-03 1.149677e-02
## GPKOW -5.6243603 2.144052e+01 -3.667005 3.640655e-04 1.800073e-03
## TSEN54 -5.6201895 1.154290e+01 -3.022917 3.048860e-03 9.377457e-03
## CWC22 5.6176059 3.133828e+01 2.612285 1.011764e-02 2.435463e-02
## TMED1 -5.6153843 1.255846e+01 -3.557815 5.325776e-04 2.405284e-03
## ARMH1 -5.6147234 9.602009e+00 -2.758472 6.696638e-03 1.748231e-02
## NUP160 5.6132877 1.823241e+01 3.405942 8.919490e-04 3.558196e-03
## INTS5 -5.6124554 1.438611e+01 -3.988392 1.135537e-04 7.549027e-04
## MZT2B -5.6083095 4.755649e+00 -3.570862 5.091270e-04 2.326078e-03
## PSMD5 5.6039887 1.972056e+01 3.687972 3.381133e-04 1.704317e-03
## CARD9 -5.6039003 4.883578e+00 -6.165708 9.296817e-09 1.270451e-06
## YTHDF2 -5.5969469 5.323008e+01 -3.373363 9.942313e-04 3.872441e-03
## PKP4 5.5891375 1.898969e+01 2.756196 6.740637e-03 1.756624e-02
## FAAP20 -5.5841750 6.403650e+00 -4.765165 5.234792e-06 8.575226e-05
## DUS2 -5.5740951 2.216241e+01 -2.623583 9.805677e-03 2.375313e-02
## GBE1 5.5685261 1.973066e+01 2.416498 1.714376e-02 3.730050e-02
## IL21R -5.5679362 9.077452e+00 -4.059893 8.684358e-05 6.212092e-04
## NCOR2 -5.5673777 1.550172e+01 -3.688630 3.373273e-04 1.702995e-03
## CHCHD5 -5.5610792 5.918081e+00 -4.246033 4.257158e-05 3.693481e-04
## KLHL28 5.5563617 2.259121e+01 2.582584 1.098091e-02 2.596364e-02
## STON2 5.5557136 9.101118e+00 4.405783 2.270817e-05 2.345983e-04
## POLR3H -5.5494986 1.125702e+01 -3.537657 5.708234e-04 2.537982e-03
## NIPSNAP1 -5.5493724 2.269746e+01 -3.434679 8.100084e-04 3.289966e-03
## SINHCAF 5.5484549 2.571026e+01 3.193558 1.786095e-03 6.143587e-03
## FBXL4 5.5464379 1.877315e+01 3.013753 3.135820e-03 9.595156e-03
## YAF2 5.5437716 1.855719e+01 4.093905 7.635771e-05 5.649422e-04
## FAM160B2 -5.5418583 1.334812e+01 -3.688536 3.374400e-04 1.702995e-03
## PIWIL4 5.5381027 9.270949e+00 3.596535 4.657968e-04 2.174085e-03
## CIAO3 -5.5321340 6.969813e+00 -4.724406 6.205037e-06 9.695881e-05
## PCYT2 -5.5294085 1.050559e+01 -3.214920 1.667998e-03 5.804712e-03
## NAT9 -5.5262613 1.533557e+01 -4.170265 5.705016e-05 4.615381e-04
## SCAND1 -5.5191571 4.666259e+00 -4.688494 7.202447e-06 1.058501e-04
## BIRC5 5.5144884 6.315856e+00 3.347894 1.081739e-03 4.126078e-03
## SNAPC2 -5.5138976 4.923667e+00 -5.889013 3.479327e-08 3.034178e-06
## E4F1 -5.5095896 6.734053e+00 -5.215414 7.551440e-07 2.314214e-05
## SAMM50 -5.5087602 1.939349e+01 -3.532407 5.812001e-04 2.571068e-03
## SPAG5 5.5070566 6.717902e+00 5.583332 1.441782e-07 7.633720e-06
## ECSIT -5.5046005 9.465281e+00 -3.964902 1.239245e-04 8.035779e-04
## H4C8 5.4924764 5.878736e+00 3.953586 1.292377e-04 8.289665e-04
## DHRS1 -5.4864620 1.472088e+01 -3.618221 4.319341e-04 2.047457e-03
## MARCHF9 -5.4845218 7.931730e+00 -4.281312 3.710308e-05 3.333655e-04
## GALNT6 -5.4770795 1.291209e+01 -3.207237 1.709610e-03 5.914812e-03
## FAM149B1 5.4770138 1.422734e+01 5.027067 1.718947e-06 4.101203e-05
## CCDC117 5.4748906 2.479243e+01 3.090411 2.473816e-03 7.945270e-03
## BAG5 5.4632679 3.207113e+01 3.142871 2.098133e-03 6.962466e-03
## SLC22A18 -5.4625535 6.354724e+00 -4.180745 5.479763e-05 4.497371e-04
## TPX2 5.4605756 5.671138e+00 5.325607 4.629474e-07 1.634094e-05
## ACD -5.4588631 8.312843e+00 -4.770695 5.115074e-06 8.449133e-05
## RACGAP1 5.4586780 9.414088e+00 6.528553 1.577366e-09 4.202133e-07
## KDM4A 5.4551946 3.218762e+01 3.180240 1.863607e-03 6.344104e-03
## KNTC1 5.4549839 1.035805e+01 6.078194 1.415849e-08 1.646271e-06
## FCSK -5.4487533 1.015727e+01 -4.799591 4.531328e-06 7.819495e-05
## BCLAF3 5.4477684 1.529940e+01 3.492380 6.663684e-04 2.845923e-03
## BPNT2 5.4342667 3.121925e+01 2.951757 3.786906e-03 1.115126e-02
## FAAP100 -5.4327530 7.343460e+00 -4.062647 8.594555e-05 6.170183e-04
## PATZ1 -5.4273117 1.413974e+01 -4.158399 5.970790e-05 4.771804e-04
## SFI1 -5.4230386 1.551822e+01 -3.643459 3.954553e-04 1.910428e-03
## CAPN10 -5.4187084 7.217240e+00 -5.330715 4.525022e-07 1.611394e-05
## ZNF688 -5.4056470 6.496270e+00 -5.391300 3.448699e-07 1.327973e-05
## CTDSPL2 5.4007414 2.482936e+01 3.064127 2.684640e-03 8.486095e-03
## EOLA2 -5.3878716 1.464802e+01 -4.884512 3.165549e-06 6.185076e-05
## SPNS3 -5.3797095 3.924589e+00 -2.985197 3.421697e-03 1.026631e-02
## KIAA1191 5.3786266 2.839742e+01 3.809184 2.192406e-04 1.241253e-03
## WDR44 5.3780395 1.693130e+01 3.152228 2.036966e-03 6.803273e-03
## CYP51A1 5.3689469 1.331550e+01 4.206574 4.960433e-05 4.154713e-04
## XPR1 5.3681913 1.933676e+01 3.719632 3.022214e-04 1.574844e-03
## ADAP2 -5.3621548 2.145997e+01 -2.585987 1.087875e-02 2.577862e-02
## DPY19L1 5.3598502 1.366785e+01 4.964732 2.247925e-06 4.900807e-05
## TENT4B 5.3513069 2.079962e+01 2.826580 5.495257e-03 1.502045e-02
## AAR2 -5.3501754 2.004174e+01 -4.218403 4.738681e-05 4.008960e-04
## MTG1 -5.3475751 1.044783e+01 -2.801977 5.904449e-03 1.587521e-02
## FAM98C -5.3455597 9.498352e+00 -4.739082 5.837135e-06 9.292406e-05
## C18orf21 -5.3455211 1.751539e+01 -5.077510 1.381478e-06 3.556722e-05
## PLA2G4B -5.3450328 1.162282e+01 -4.228260 4.561182e-05 3.891772e-04
## TNFAIP8L1 -5.3432316 1.129388e+01 -4.832146 3.950981e-06 7.175901e-05
## GLYCTK -5.3377526 1.169280e+01 -3.310103 1.224955e-03 4.545670e-03
## LMBRD2 5.3367486 1.451010e+01 3.917088 1.478941e-04 9.217154e-04
## TMEM39A 5.3341381 1.924127e+01 3.687415 3.387796e-04 1.706850e-03
## JUN 5.3325567 1.295628e+01 2.671550 8.575557e-03 2.126408e-02
## PTPMT1 -5.3312408 1.691512e+01 -3.447109 7.768027e-04 3.186745e-03
## NFIC -5.3218996 1.359472e+01 -4.838562 3.845436e-06 7.103873e-05
## HEMK1 -5.3160032 1.651636e+01 -3.212349 1.681813e-03 5.844213e-03
## ZC3H6 5.3145279 1.307652e+01 4.404097 2.286108e-05 2.356205e-04
## TMCO6 -5.3070786 1.591094e+01 -5.668157 9.756920e-08 5.803744e-06
## AP3D1 -5.3065884 3.915788e+01 -2.806188 5.832505e-03 1.573198e-02
## BOLA2B -5.3048279 9.346033e+00 -2.795952 6.008819e-03 1.607344e-02
## AP3M1 5.2966456 3.754818e+01 2.406284 1.760779e-02 3.811433e-02
## C2orf69 5.2937395 1.457595e+01 2.981989 3.455267e-03 1.034052e-02
## ASPSCR1 -5.2929559 5.321511e+00 -4.442883 1.958236e-05 2.111334e-04
## ALG3 -5.2911926 1.254849e+01 -2.546825 1.210776e-02 2.816823e-02
## GFPT1 5.2844271 1.363996e+01 5.223577 7.284102e-07 2.267839e-05
## HIVEP1 5.2840523 1.866408e+01 2.444296 1.593540e-02 3.519437e-02
## GP9 -5.2774070 7.177245e+00 -2.480836 1.446260e-02 3.252302e-02
## NFKBIL1 -5.2730029 8.411734e+00 -4.330481 3.059530e-05 2.916883e-04
## TMEM134 -5.2706890 5.038670e+00 -5.471400 2.401908e-07 1.047303e-05
## MUS81 -5.2669699 2.122691e+01 -3.268582 1.402642e-03 5.076390e-03
## RECQL5 -5.2607594 1.335482e+01 -4.787196 4.773359e-06 8.041483e-05
## COMMD4 -5.2579009 1.227254e+01 -2.363568 1.967138e-02 4.169096e-02
## PWWP2A 5.2553997 2.304911e+01 3.333995 1.132485e-03 4.265249e-03
## ABCB10 5.2519052 2.075458e+01 3.010163 3.170509e-03 9.678825e-03
## TUT4 5.2495634 1.829120e+01 2.942184 3.897865e-03 1.140885e-02
## CENPF 5.2370880 5.338564e+00 5.920385 3.000337e-08 2.727088e-06
## CHD1L 5.2337963 1.843546e+01 4.587168 1.092623e-05 1.410066e-04
## SERTAD1 -5.2315695 1.194549e+01 -2.961333 3.678814e-03 1.089079e-02
## ORC2 5.2311874 1.750766e+01 3.944975 1.334255e-04 8.480314e-04
## MRPS23 -5.2297020 2.095550e+01 -3.310138 1.224815e-03 4.545670e-03
## CDC20 5.2254404 5.501718e+00 3.250318 1.488185e-03 5.313028e-03
## INAFM1 -5.2112061 5.178638e+00 -4.192777 5.231670e-05 4.326891e-04
## ILVBL -5.2066199 6.593759e+00 -4.144157 6.305441e-05 4.952486e-04
## RBMXL1 5.2010888 2.344773e+01 3.029042 2.991987e-03 9.224062e-03
## GOLGA7B -5.1994370 6.787066e+00 -3.339539 1.111982e-03 4.214800e-03
## IMP4 -5.1991873 1.551667e+01 -3.074907 2.596242e-03 8.268375e-03
## SORBS3 -5.1976695 4.846766e+00 -4.860684 3.502083e-06 6.666886e-05
## MTMR11 -5.1945176 1.378616e+01 -3.259649 1.443891e-03 5.198353e-03
## RAB40C -5.1929665 8.201873e+00 -5.509838 2.017036e-07 9.645986e-06
## TESK2 5.1884187 1.999311e+01 2.750105 6.859658e-03 1.782549e-02
## COA1 5.1806913 2.183920e+01 2.681234 8.344837e-03 2.082259e-02
## CALHM2 -5.1790357 1.316614e+01 -3.362304 1.031379e-03 3.980525e-03
## RSPRY1 5.1776249 2.862161e+01 3.138530 2.127083e-03 7.036877e-03
## ZNF444 -5.1755459 5.833269e+00 -4.705506 6.712008e-06 1.018086e-04
## PEAR1 5.1730130 8.648463e+00 4.194958 5.187876e-05 4.297886e-04
## MDN1 5.1674371 1.625109e+01 2.513153 1.326257e-02 3.035979e-02
## HENMT1 -5.1644214 2.612720e+01 -2.406321 1.760607e-02 3.811433e-02
## ARHGEF10L -5.1598775 6.468444e+00 -4.801239 4.500071e-06 7.791363e-05
## SLC35E3 5.1584841 2.077680e+01 2.825457 5.513359e-03 1.505952e-02
## MVB12A -5.1579713 1.016360e+01 -3.536719 5.726632e-04 2.542787e-03
## ACSF2 -5.1496023 8.752576e+00 -3.783148 2.408162e-04 1.333371e-03
## NR4A1 -5.1406595 4.219090e+00 -4.948753 2.407197e-06 5.116372e-05
## PLA2G12A 5.1403452 1.614042e+01 3.226217 1.608523e-03 5.635771e-03
## YJU2 -5.1329784 8.966040e+00 -4.086604 7.850093e-05 5.750593e-04
## DDA1 -5.1302647 2.078446e+01 -3.486904 6.788932e-04 2.883837e-03
## VRK1 5.1294201 1.578291e+01 2.460465 1.526796e-02 3.397974e-02
## EIF2AK4 5.1286469 1.596136e+01 3.834356 2.001378e-04 1.155053e-03
## MRPS16 -5.1270663 3.150231e+01 -2.378526 1.892561e-02 4.039190e-02
## NCKAP5L -5.1240948 8.289657e+00 -5.393632 3.412713e-07 1.318397e-05
## MED17 5.1215267 2.408551e+01 3.259027 1.446805e-03 5.198353e-03
## GIPC1 -5.1195447 5.809523e+00 -4.198804 5.111476e-05 4.257170e-04
## MCM9 5.1194717 1.651753e+01 4.175038 5.601348e-05 4.572057e-04
## USP12 5.1136438 1.805303e+01 3.654735 3.801162e-04 1.856586e-03
## DHRS3 -5.1135306 6.324083e+00 -3.994959 1.108056e-04 7.407858e-04
## NSUN2 5.1102180 2.688126e+01 2.705608 7.788826e-03 1.968367e-02
## KCND1 5.1079957 8.704328e+00 3.408589 8.840896e-04 3.531594e-03
## SLC25A38 -5.1034648 1.705997e+01 -2.697177 7.977230e-03 2.008704e-02
## VTI1A 5.0977723 2.549703e+01 3.148614 2.060390e-03 6.871539e-03
## IGSF8 -5.0834545 7.130157e+00 -4.306262 3.365018e-05 3.122778e-04
## GNG7 -5.0834032 1.507455e+01 -2.980998 3.465698e-03 1.036650e-02
## CRCP 5.0778057 2.918578e+01 2.494844 1.393100e-02 3.158684e-02
## TSPAN32 -5.0749841 1.292532e+01 -2.514884 1.320086e-02 3.025747e-02
## LMBR1 5.0703889 1.822222e+01 2.330150 2.143201e-02 4.477428e-02
## CEP20 5.0699247 1.786974e+01 5.480506 2.304701e-07 1.027585e-05
## NAPG 5.0629998 2.510467e+01 3.211050 1.688835e-03 5.861744e-03
## THAP3 -5.0628235 8.212353e+00 -4.030474 9.701176e-05 6.715676e-04
## PBDC1 -5.0503370 1.601970e+01 -3.676726 3.518068e-04 1.756812e-03
## PKHD1L1 5.0474056 6.406403e+00 4.795369 4.612406e-06 7.916517e-05
## CC2D1A -5.0461395 1.088891e+01 -3.706660 3.164674e-04 1.625510e-03
## JMJD4 -5.0443322 6.850376e+00 -3.745058 2.760428e-04 1.470101e-03
## NEURL4 -5.0434718 1.358058e+01 -4.588604 1.086231e-05 1.404874e-04
## UBOX5 -5.0410254 1.442422e+01 -4.679875 7.464020e-06 1.076925e-04
## LHX4 5.0390290 5.755695e+00 2.597479 1.054002e-02 2.513476e-02
## DARS1 5.0364716 3.036689e+01 2.609985 1.018226e-02 2.446547e-02
## SPATA2L -5.0358009 6.162861e+00 -4.031226 9.673811e-05 6.715676e-04
## NSUN3 5.0348883 2.123095e+01 2.581676 1.100830e-02 2.600869e-02
## PEX19 5.0206846 4.544849e+01 2.504232 1.358458e-02 3.097733e-02
## HAUS7 -5.0194996 6.169819e+00 -4.728617 6.097241e-06 9.585751e-05
## TTLL12 -5.0162924 1.099754e+01 -5.480579 2.303939e-07 1.027585e-05
## CDK5RAP1 -5.0155379 1.508499e+01 -3.742821 2.782569e-04 1.479878e-03
## ZNF66 5.0140381 1.034215e+01 3.144644 2.086412e-03 6.934689e-03
## CATSPER1 -5.0137054 5.990464e+00 -5.952916 2.572101e-08 2.441007e-06
## GRK5 5.0130327 3.155185e+01 2.738685 7.087986e-03 1.831050e-02
## DESI2 5.0108112 2.281496e+01 4.030694 9.693162e-05 6.715676e-04
## CDKN1C -5.0086358 3.971863e+00 -3.294073 1.290904e-03 4.747325e-03
## COX17 -4.9954081 1.665823e+01 -3.126202 2.211342e-03 7.258925e-03
## CDK2 4.9900732 1.049011e+01 6.874048 2.795689e-10 1.184174e-07
## PPP2R5E 4.9871785 2.808026e+01 3.614592 4.374337e-04 2.069430e-03
## ATF1 4.9860511 1.875766e+01 3.323410 1.172616e-03 4.382463e-03
## SENP5 4.9813477 2.901791e+01 4.041338 9.313092e-05 6.543778e-04
## TBC1D13 -4.9712964 2.688484e+01 -3.023763 3.040948e-03 9.355551e-03
## HDHD3 -4.9704380 8.956087e+00 -3.676394 3.522189e-04 1.758130e-03
## MRPS25 -4.9679898 1.919950e+01 -3.390812 9.381565e-04 3.700212e-03
## HECTD3 -4.9652439 2.772989e+01 -3.653263 3.820869e-04 1.864069e-03
## DIABLO -4.9651373 2.386523e+01 -3.920947 1.458064e-04 9.106180e-04
## SNRPB2 -4.9578828 3.409251e+01 -2.951723 3.787292e-03 1.115126e-02
## ZBTB2 4.9556352 2.431637e+01 3.156228 2.011328e-03 6.732811e-03
## KLF5 4.9537601 1.109216e+01 2.884510 4.632091e-03 1.305528e-02
## ZBTB33 4.9533017 2.057145e+01 2.826297 5.499820e-03 1.502600e-02
## KIFAP3 4.9380188 1.393447e+01 4.040831 9.330872e-05 6.548174e-04
## LYRM4 -4.9337813 9.831868e+00 -3.548442 5.500505e-04 2.465457e-03
## SCAMP4 -4.9286461 1.125526e+01 -5.153494 9.915517e-07 2.786683e-05
## ZBTB17 -4.9266578 1.551052e+01 -3.405512 8.932336e-04 3.560893e-03
## CBX5 4.9248309 2.299816e+01 2.772669 6.428080e-03 1.691525e-02
## SLC23A2 4.9227625 1.910793e+01 2.813610 5.707629e-03 1.544384e-02
## DLGAP4 -4.9123327 2.451897e+01 -3.116849 2.277319e-03 7.430336e-03
## AHSA1 -4.9080729 4.621075e+01 -2.481963 1.441917e-02 3.244381e-02
## SP4 4.9070713 1.337871e+01 3.677150 3.512816e-04 1.756642e-03
## CBWD2 4.9036182 2.994019e+01 2.904167 4.368687e-03 1.246095e-02
## TIMELESS 4.9005783 9.411419e+00 5.578490 1.474140e-07 7.770358e-06
## DVL3 4.8984149 3.473005e+01 2.708526 7.724559e-03 1.955042e-02
## DIS3 4.8980309 3.410501e+01 2.407902 1.753354e-02 3.801606e-02
## INTS10 -4.8902560 4.195062e+01 -2.604647 1.033361e-02 2.471897e-02
## GCHFR -4.8898522 5.653780e+00 -3.715856 3.063034e-04 1.588448e-03
## FRS2 4.8891209 1.390117e+01 3.729047 2.922638e-04 1.535097e-03
## ARMC6 -4.8874597 9.994980e+00 -3.550204 5.467247e-04 2.453332e-03
## KCTD9 4.8820201 1.433280e+01 3.836594 1.985181e-04 1.147940e-03
## SEC23IP 4.8786212 2.513588e+01 3.519316 6.078564e-04 2.655314e-03
## ANKRD27 4.8765470 2.370359e+01 3.761361 2.604046e-04 1.410872e-03
## TTYH2 -4.8750701 1.125504e+01 -3.509049 6.295641e-04 2.726042e-03
## TPM2 -4.8706718 5.117356e+00 -4.311291 3.299267e-05 3.078623e-04
## SMC2 4.8660445 7.879914e+00 5.675989 9.409949e-08 5.752680e-06
## MANBAL -4.8633856 1.770430e+01 -3.414355 8.671886e-04 3.478139e-03
## NAPB 4.8633026 1.268102e+01 3.860477 1.819933e-04 1.085735e-03
## CACYBP -4.8623124 3.904108e+01 -2.539939 1.233630e-02 2.855915e-02
## RABEPK -4.8610138 1.522785e+01 -4.615182 9.742721e-06 1.295389e-04
## B4GALT7 -4.8559779 6.365812e+00 -3.853528 1.866614e-04 1.099008e-03
## SENP1 4.8551815 1.516419e+01 4.342645 2.916338e-05 2.828109e-04
## KLHDC4 -4.8507103 9.421845e+00 -3.453236 7.609099e-04 3.138709e-03
## LAX1 4.8497463 7.071200e+00 3.642895 3.962377e-04 1.911570e-03
## NCAPG2 4.8462843 6.530449e+00 4.816648 4.217661e-06 7.488242e-05
## EEFSEC -4.8390002 6.400606e+00 -4.128654 6.690137e-05 5.151525e-04
## FUOM -4.8225770 3.384459e+00 -4.197741 5.132479e-05 4.265676e-04
## CDC6 4.8207113 4.799886e+00 6.205193 7.682437e-09 1.124861e-06
## TTF1 4.8144059 1.657198e+01 4.923226 2.684627e-06 5.499080e-05
## ATP13A2 -4.8090845 9.373363e+00 -3.554533 5.386357e-04 2.428057e-03
## ARFIP2 -4.8083372 2.437996e+01 -2.496196 1.388062e-02 3.148574e-02
## ADRB2 -4.8026738 1.692708e+01 -2.998959 3.281054e-03 9.949707e-03
## ZSWIM7 -4.7886907 1.089111e+01 -4.849467 3.672280e-06 6.837244e-05
## CAPN7 4.7817137 2.147013e+01 2.838736 5.302802e-03 1.458924e-02
## SPATA20 -4.7808948 8.463381e+00 -3.657626 3.762752e-04 1.844059e-03
## MYNN 4.7795190 2.527375e+01 2.593733 1.064939e-02 2.534355e-02
## SIRPG -4.7788742 9.555623e+00 -2.800217 5.934767e-03 1.593533e-02
## SMIM7 -4.7779902 2.801361e+01 -3.055339 2.758754e-03 8.674133e-03
## WDR33 -4.7662089 5.250688e+01 -3.767708 2.545471e-04 1.388652e-03
## RABEP2 -4.7638045 4.150292e+00 -4.718215 6.366880e-06 9.896618e-05
## PSMD3 -4.7624326 3.463562e+01 -2.461532 1.522480e-02 3.389639e-02
## COA4 -4.7620494 1.090686e+01 -3.647604 3.897505e-04 1.889796e-03
## SMPD2 -4.7598689 1.086746e+01 -4.083676 7.937653e-05 5.796833e-04
## SIVA1 -4.7564606 3.976360e+00 -4.659731 8.111643e-06 1.135822e-04
## VPS72 -4.7405848 2.672480e+01 -3.929751 1.411482e-04 8.861923e-04
## ABCD1 -4.7404559 1.007647e+01 -4.300808 3.437747e-05 3.174456e-04
## ESD -4.7381544 4.064251e+01 -2.500047 1.373805e-02 3.123721e-02
## KIAA0319 4.7380894 1.110885e+01 2.659174 8.878819e-03 2.188337e-02
## PHRF1 -4.7318668 1.260564e+01 -5.318824 4.771828e-07 1.664526e-05
## GMEB1 4.7310397 2.241214e+01 5.280804 5.652426e-07 1.904482e-05
## USE1 -4.7294404 6.885723e+00 -4.091747 7.698512e-05 5.680868e-04
## ABT1 -4.7292374 2.377140e+01 -3.512478 6.222334e-04 2.706071e-03
## UCHL5 4.7261152 1.745539e+01 5.499098 2.118045e-07 9.827029e-06
## UTP18 -4.7220339 2.293167e+01 -3.593869 4.701293e-04 2.189997e-03
## MANEA 4.7218259 8.094560e+00 4.395952 2.361385e-05 2.410157e-04
## SURF2 -4.7212152 5.003539e+00 -5.005809 1.884069e-06 4.355762e-05
## MTHFD1 4.7194476 1.111267e+01 4.995607 1.968688e-06 4.475564e-05
## PAXBP1 4.7171554 2.355145e+01 3.179268 1.869385e-03 6.359984e-03
## MCUR1 4.7137539 1.395039e+01 4.378067 2.535147e-05 2.539430e-04
## STRN3 4.7115384 1.439236e+01 3.552214 5.429538e-04 2.440103e-03
## MTREX 4.7036616 2.840722e+01 2.488626 1.416479e-02 3.199893e-02
## ESS2 -4.6952935 1.197674e+01 -4.225824 4.604449e-05 3.917415e-04
## RIN1 -4.6945618 4.628575e+00 -4.783841 4.840984e-06 8.120801e-05
## DDT -4.6921484 1.158096e+01 -2.389619 1.838884e-02 3.948789e-02
## CSNK1G3 4.6860287 2.119050e+01 2.629865 9.635997e-03 2.343304e-02
## LENG1 -4.6819298 7.684041e+00 -4.382385 2.492102e-05 2.509026e-04
## ZNF451 4.6780690 2.258545e+01 3.009023 3.181600e-03 9.705191e-03
## ZNF384 4.6780086 5.270992e+01 2.348185 2.046530e-02 4.305045e-02
## DCP1A 4.6754053 2.479981e+01 2.615203 1.003625e-02 2.421275e-02
## DAPK3 -4.6685189 1.366495e+01 -3.068659 2.647136e-03 8.398885e-03
## ADCK2 -4.6615158 8.212438e+00 -4.784588 4.825844e-06 8.112731e-05
## ZHX1 4.6588529 1.298460e+01 3.836787 1.983786e-04 1.147693e-03
## SMARCD1 4.6580406 3.854408e+01 3.656844 3.773103e-04 1.846853e-03
## THAP7 -4.6565166 4.236115e+00 -4.547701 1.283196e-05 1.569831e-04
## VPS37A 4.6542126 2.034202e+01 3.027879 3.002706e-03 9.247491e-03
## MAFK -4.6538248 9.546257e+00 -5.996567 2.090512e-08 2.155954e-06
## TTC33 4.6537239 1.880220e+01 2.858435 5.003953e-03 1.390802e-02
## POU2F1 4.6507902 1.961298e+01 3.193771 1.784881e-03 6.141192e-03
## DNAH1 4.6469064 2.261873e+01 3.021891 3.058481e-03 9.399866e-03
## TMEM245 4.6453895 1.805798e+01 2.937962 3.947755e-03 1.152927e-02
## WHAMM 4.6453664 2.010645e+01 2.773918 6.404926e-03 1.687679e-02
## TKFC -4.6385633 9.708086e+00 -3.558886 5.306153e-04 2.398967e-03
## ARL15 4.6377047 1.407171e+01 4.284393 3.665891e-05 3.311307e-04
## ATP11C 4.6335821 1.601883e+01 3.537898 5.703513e-04 2.537272e-03
## UBR7 4.6311940 2.258471e+01 4.498818 1.564021e-05 1.793935e-04
## NDUFA8 -4.6303276 1.787617e+01 -3.158140 1.999177e-03 6.701594e-03
## USP6NL 4.6272931 9.523376e+00 4.906727 2.880223e-06 5.767389e-05
## MRPL16 -4.6259461 2.530340e+01 -2.380654 1.882160e-02 4.021333e-02
## CREB3 -4.6244656 1.724143e+01 -2.613808 1.007509e-02 2.429657e-02
## TFAM 4.6187889 2.412904e+01 2.926196 4.089876e-03 1.185674e-02
## HRAS -4.6162745 5.487688e+00 -3.665779 3.656401e-04 1.805367e-03
## ABHD11 -4.6131421 8.280971e+00 -4.979241 2.112221e-06 4.699990e-05
## DENR 4.6117780 4.751001e+01 2.464429 1.510819e-02 3.368737e-02
## NCR3 -4.5915591 8.292290e+00 -2.432234 1.645007e-02 3.614931e-02
## CEP162 4.5911019 1.075719e+01 4.039562 9.375517e-05 6.567846e-04
## YIPF6 4.5885166 2.201619e+01 2.966626 3.620302e-03 1.074763e-02
## ZNF428 -4.5859675 5.318681e+00 -4.713097 6.503748e-06 9.987706e-05
## NFATC1 -4.5842840 1.200746e+01 -4.525880 1.401950e-05 1.671068e-04
## INSR 4.5829963 1.121639e+01 3.312875 1.213876e-03 4.510205e-03
## MRPS2 -4.5780534 8.503008e+00 -3.075270 2.593310e-03 8.264338e-03
## CDK6 4.5780415 1.585066e+01 3.528258 5.895276e-04 2.595322e-03
## DVL1 -4.5738246 5.111012e+00 -5.859471 3.998606e-08 3.233976e-06
## ZPR1 -4.5735525 2.470273e+01 -2.774018 6.403083e-03 1.687679e-02
## CDCA5 4.5579223 4.949994e+00 4.789120 4.734983e-06 8.033892e-05
## EEA1 4.5558837 1.316197e+01 3.360100 1.038938e-03 4.004485e-03
## PFDN6 -4.5477232 1.915355e+01 -2.769608 6.485141e-03 1.702009e-02
## RBM12B 4.5475520 1.741799e+01 2.949490 3.812911e-03 1.121834e-02
## THAP4 -4.5460715 9.293156e+00 -3.731938 2.892697e-04 1.524773e-03
## MRPS11 -4.5443860 1.483592e+01 -3.013657 3.136742e-03 9.595503e-03
## LSM5 -4.5417725 1.623787e+01 -2.342909 2.074404e-02 4.352101e-02
## SELENOI 4.5393114 9.995349e+00 5.827012 4.656994e-08 3.645857e-06
## SMURF1 4.5310854 1.848964e+01 2.634324 9.517151e-03 2.320111e-02
## EZH2 4.5294386 9.072242e+00 6.411854 2.804876e-09 6.257431e-07
## ZNF395 -4.5240074 1.756606e+01 -2.821431 5.578688e-03 1.519597e-02
## TMEM94 -4.5192191 1.972200e+01 -3.004306 3.227858e-03 9.823555e-03
## B9D2 -4.5188869 1.082149e+01 -3.074262 2.601449e-03 8.280510e-03
## IGFL4 4.5181364 7.592843e+00 3.740068 2.810047e-04 1.491148e-03
## FBXO31 -4.5166963 8.484113e+00 -4.139359 6.422184e-05 5.010994e-04
## CCNB1 4.5097890 5.424136e+00 4.028365 9.778286e-05 6.746391e-04
## CKAP2 4.5083421 1.082355e+01 5.194698 8.273614e-07 2.484179e-05
## SLC35E1 4.5077359 2.980168e+01 3.413433 8.698718e-04 3.487721e-03
## SSBP2 4.5034233 1.985354e+01 3.273254 1.381511e-03 5.010617e-03
## MOB1B 4.4989243 1.889591e+01 2.830701 5.429303e-03 1.486759e-02
## KRR1 4.4957521 2.028162e+01 2.999568 3.274957e-03 9.936298e-03
## FAM98A 4.4947911 1.188365e+01 4.923854 2.677453e-06 5.493874e-05
## FAM126A 4.4938950 1.735030e+01 3.106537 2.352176e-03 7.615837e-03
## SH2D2A -4.4908124 8.030250e+00 -2.718552 7.507406e-03 1.914382e-02
## TUFT1 4.4897459 9.264024e+00 3.292719 1.296624e-03 4.763928e-03
## NAALADL1 -4.4881114 5.807295e+00 -4.114844 7.051682e-05 5.357652e-04
## NPIPB5 4.4881004 1.996691e+01 2.505901 1.352383e-02 3.084473e-02
## ZNF609 4.4824038 2.070060e+01 2.310789 2.251436e-02 4.664111e-02
## CLPTM1 -4.4809283 3.432840e+01 -2.612294 1.011739e-02 2.435463e-02
## ARMCX3 4.4796286 2.614452e+01 2.446587 1.583929e-02 3.500819e-02
## NME3 -4.4768418 3.381609e+00 -3.933290 1.393157e-04 8.774746e-04
## MED14 4.4732826 1.837739e+01 2.923182 4.127035e-03 1.193820e-02
## ATR 4.4707592 1.461578e+01 3.234197 1.567708e-03 5.527055e-03
## DALRD3 -4.4686570 1.644585e+01 -3.247249 1.503029e-03 5.353131e-03
## GOPC 4.4669503 2.275215e+01 2.716694 7.547220e-03 1.922053e-02
## PCK2 -4.4658237 1.423518e+01 -3.090385 2.474021e-03 7.945270e-03
## AGFG2 -4.4644562 7.216096e+00 -3.453687 7.597521e-04 3.135447e-03
## RNF126 -4.4613399 5.363808e+00 -4.753392 5.498828e-06 8.872938e-05
## PLCB3 -4.4605625 9.166749e+00 -5.108215 1.208628e-06 3.243060e-05
## PHF14 -4.4560711 1.882346e+01 -2.423614 1.682690e-02 3.679333e-02
## PLA2G7 -4.4515156 4.290104e+00 -5.897660 3.340278e-08 2.956396e-06
## UFL1 4.4491695 1.805867e+01 2.507500 1.346582e-02 3.075250e-02
## DDI2 4.4465862 1.775701e+01 3.566819 5.162871e-04 2.350543e-03
## ZMYM4 4.4399759 1.877902e+01 3.064534 2.681246e-03 8.479888e-03
## ATAD1 4.4311369 2.214331e+01 3.209327 1.698195e-03 5.890784e-03
## SERGEF -4.4302559 8.533401e+00 -3.963841 1.244139e-04 8.058703e-04
## LRRC58 4.4297012 1.824548e+01 3.281503 1.344923e-03 4.897388e-03
## ZNF75D 4.4294209 1.705072e+01 4.096567 7.559017e-05 5.617164e-04
## MAPK9 4.4268273 2.051185e+01 4.617849 9.636716e-06 1.282732e-04
## LIN54 4.4264230 1.761995e+01 2.324077 2.176648e-02 4.540107e-02
## RMND5B -4.4256205 1.969871e+01 -3.168362 1.935372e-03 6.545056e-03
## CZIB -4.4202008 2.281314e+01 -3.394772 9.258508e-04 3.658977e-03
## ARL16 -4.4196130 1.312072e+01 -3.822920 2.086111e-04 1.194077e-03
## SPATS2 4.4167599 6.266650e+00 4.351203 2.819480e-05 2.758996e-04
## SDHAF1 -4.4142032 6.307657e+00 -4.722378 6.257606e-06 9.752327e-05
## HSD17B12 4.4134454 1.990616e+01 2.337179 2.105057e-02 4.406278e-02
## PCBP4 -4.4133091 5.078516e+00 -3.846617 1.914166e-04 1.118325e-03
## GALT -4.4116351 1.076786e+01 -3.762926 2.589491e-04 1.407487e-03
## EPHB1 4.4111177 1.101810e+01 2.689303 8.156915e-03 2.045265e-02
## COQ2 -4.4091762 1.348426e+01 -3.778287 2.450613e-04 1.348064e-03
## HIKESHI -4.4044319 1.597694e+01 -3.013349 3.139705e-03 9.602089e-03
## APPL1 4.3988485 2.426074e+01 2.612731 1.010517e-02 2.434437e-02
## DLGAP5 4.3913341 4.193011e+00 4.919449 2.728236e-06 5.559601e-05
## RARS1 -4.3896081 2.727670e+01 -3.282561 1.340293e-03 4.888043e-03
## ZNF783 -4.3864397 1.092345e+01 -3.622912 4.249214e-04 2.021487e-03
## ULK3 -4.3855248 2.198114e+01 -2.400026 1.789757e-02 3.863105e-02
## RBBP8 4.3769389 1.393609e+01 4.678046 7.520685e-06 1.082468e-04
## TGIF2 -4.3709824 2.454050e+01 -2.399878 1.790447e-02 3.863664e-02
## APEX2 -4.3621141 1.617381e+01 -3.884810 1.665077e-04 1.011153e-03
## SPAG1 4.3620550 7.047075e+00 4.066816 8.460324e-05 6.095956e-04
## BOD1 -4.3610802 9.862066e+00 -4.762800 5.286838e-06 8.636625e-05
## ZNHIT3 -4.3588127 2.452705e+01 -2.824421 5.530101e-03 1.509482e-02
## SSX2IP 4.3575517 1.099070e+01 4.274243 3.814178e-05 3.393560e-04
## LOXHD1 4.3549117 6.948033e+00 3.854359 1.860971e-04 1.098612e-03
## ASCC3 4.3538858 1.604485e+01 2.557953 1.174644e-02 2.745621e-02
## NPIPA7 -4.3534160 1.139457e+01 -3.151673 2.040546e-03 6.813309e-03
## ELP5 -4.3451817 1.575679e+01 -3.588061 4.796998e-04 2.222359e-03
## LRFN1 -4.3348731 1.284972e+01 -2.513197 1.326100e-02 3.035979e-02
## ZNF224 4.3348523 2.327206e+01 2.565934 1.149330e-02 2.700822e-02
## VPS53 4.3346045 2.735479e+01 2.979590 3.480571e-03 1.039788e-02
## HDDC2 -4.3322331 1.591801e+01 -3.351865 1.067635e-03 4.091164e-03
## CLASP2 4.3290987 1.568982e+01 3.464548 7.323680e-04 3.049819e-03
## NBDY -4.3260069 9.286331e+00 -4.210127 4.892803e-05 4.107939e-04
## HLA-DOB -4.3249541 1.228008e+01 -2.386545 1.853623e-02 3.972818e-02
## AARSD1 -4.3242756 8.709452e+00 -3.642906 3.962219e-04 1.911570e-03
## DDB2 -4.3233692 1.917101e+01 -2.417240 1.711048e-02 3.726911e-02
## STRIP1 4.3227622 2.905519e+01 3.454145 7.585795e-04 3.132574e-03
## RPS6KC1 4.3195694 1.663964e+01 3.190673 1.802624e-03 6.186585e-03
## GOLPH3L 4.3177602 1.486673e+01 2.679813 8.378343e-03 2.087984e-02
## CFAP410 -4.3081814 5.579006e+00 -3.788816 2.359544e-04 1.315665e-03
## KATNB1 -4.3059161 1.215088e+01 -3.835550 1.992716e-04 1.151175e-03
## DDHD1 4.2990468 1.583248e+01 2.744027 6.980342e-03 1.808363e-02
## PHETA1 -4.2899645 5.213331e+00 -4.960928 2.284891e-06 4.936031e-05
## DENND6B -4.2898815 3.805693e+00 -5.952864 2.572731e-08 2.441007e-06
## MLLT10 4.2895737 2.162956e+01 3.043502 2.861572e-03 8.919381e-03
## LRSAM1 -4.2877580 1.464646e+01 -3.720517 3.012719e-04 1.570587e-03
## ZNF280D 4.2856873 1.587320e+01 3.417011 8.595074e-04 3.452001e-03
## RBM43 4.2822697 9.406702e+00 3.073527 2.607405e-03 8.291117e-03
## VPS52 -4.2802650 2.290242e+01 -3.902971 1.557772e-04 9.576758e-04
## TESK1 -4.2799574 9.805560e+00 -4.173108 5.643048e-05 4.593449e-04
## STK19 -4.2777998 1.266014e+01 -3.532485 5.810440e-04 2.571068e-03
## INPP5B -4.2739328 2.233440e+01 -3.745946 2.751684e-04 1.466740e-03
## ZSCAN32 4.2704613 1.941421e+01 3.341546 1.104646e-03 4.193693e-03
## CHID1 -4.2663680 1.074409e+01 -2.439296 1.614697e-02 3.558885e-02
## CEP135 4.2655527 1.292994e+01 2.859236 4.992138e-03 1.388526e-02
## SLC66A3 -4.2629809 2.557005e+01 -2.352547 2.023736e-02 4.267693e-02
## GATA3 -4.2579658 4.840346e+00 -3.834961 1.996988e-04 1.153081e-03
## CDK5 -4.2578330 1.028263e+01 -4.298045 3.475178e-05 3.190063e-04
## TRNAU1AP -4.2557038 2.255634e+01 -2.417599 1.709437e-02 3.724770e-02
## ZNF799 4.2525781 8.736181e+00 2.992113 3.350333e-03 1.011068e-02
## SCCPDH -4.2502773 1.456021e+01 -3.208671 1.701770e-03 5.894751e-03
## METAP1 4.2498437 1.861043e+01 3.349712 1.075261e-03 4.109764e-03
## PRRC1 4.2470994 1.791919e+01 3.113788 2.299305e-03 7.481416e-03
## ASPM 4.2461861 3.928611e+00 5.933498 2.819889e-08 2.612804e-06
## CDKL5 4.2459564 1.390341e+01 2.317065 2.215835e-02 4.604029e-02
## NPAT 4.2450893 1.584570e+01 2.738288 7.096046e-03 1.832334e-02
## SLC39A6 4.2429015 2.295276e+01 2.882315 4.662380e-03 1.311437e-02
## NEK4 4.2413887 1.222143e+01 3.495703 6.588725e-04 2.818172e-03
## TBPL1 4.2408389 2.635264e+01 2.446806 1.583011e-02 3.499444e-02
## TMEM60 4.2367635 2.154349e+01 2.313823 2.234164e-02 4.634805e-02
## HSPBP1 -4.2284379 4.388639e+00 -3.690378 3.352497e-04 1.696272e-03
## RDX 4.2280200 9.716763e+00 4.810004 4.337245e-06 7.655972e-05
## DDX28 -4.2263649 1.279964e+01 -4.077680 8.119906e-05 5.907328e-04
## NGRN -4.2220515 2.365247e+01 -2.899629 4.428248e-03 1.258242e-02
## TM2D2 -4.2220253 1.716392e+01 -4.388296 2.434318e-05 2.468468e-04
## GUCY1B1 4.2187772 1.001657e+01 2.832290 5.404075e-03 1.481904e-02
## ZNF844 4.2102655 1.766881e+01 2.280244 2.431985e-02 4.964431e-02
## CFDP1 -4.2085763 2.735743e+01 -2.858252 5.006660e-03 1.390802e-02
## BCAT2 -4.2085545 5.510112e+00 -4.347929 2.856168e-05 2.785703e-04
## UHRF1BP1 4.1993564 1.049230e+01 3.890245 1.632252e-04 9.947845e-04
## ATP10D 4.1963785 1.253299e+01 2.830838 5.427137e-03 1.486759e-02
## SYNJ2 4.1927469 9.003649e+00 4.112686 7.109854e-05 5.384602e-04
## SWT1 4.1915239 1.053536e+01 3.825078 2.069869e-04 1.186498e-03
## ZNF784 -4.1903084 6.822751e+00 -4.685290 7.298645e-06 1.065764e-04
## HACD2 4.1887150 1.611157e+01 3.252474 1.477842e-03 5.283386e-03
## FKBP3 -4.1853539 2.626388e+01 -2.426136 1.671589e-02 3.661875e-02
## METTL4 4.1851216 1.514392e+01 3.126114 2.211952e-03 7.258925e-03
## TOM1L2 -4.1842452 1.523963e+01 -5.462656 2.499011e-07 1.077755e-05
## ABHD18 4.1785083 1.646802e+01 3.830924 2.026458e-04 1.166123e-03
## CLIP4 4.1772863 1.803065e+01 2.347043 2.052534e-02 4.315379e-02
## ZBTB47 -4.1709279 1.085733e+01 -4.501627 1.546397e-05 1.782338e-04
## CXXC5 -4.1689526 1.214782e+01 -2.306437 2.276420e-02 4.706824e-02
## PEX13 4.1679459 1.442421e+01 4.584630 1.104006e-05 1.420121e-04
## C5orf24 4.1672385 1.594183e+01 3.176781 1.884247e-03 6.399534e-03
## PRPS2 4.1667117 1.599031e+01 3.530826 5.843605e-04 2.578317e-03
## GMEB2 -4.1639897 1.546603e+01 -4.170807 5.693173e-05 4.611462e-04
## NFKBIB -4.1633850 1.648650e+01 -2.816862 5.653688e-03 1.535090e-02
## DNAJC9 4.1582736 1.594943e+01 2.393976 1.818175e-02 3.913532e-02
## CROCC -4.1581679 4.274006e+00 -5.496923 2.139090e-07 9.833181e-06
## SMAD5 4.1573561 1.192468e+01 3.396682 9.199691e-04 3.642641e-03
## KIF2C 4.1557011 4.777789e+00 4.249137 4.206098e-05 3.663711e-04
## PTGIR -4.1533755 7.081861e+00 -3.228776 1.595326e-03 5.601114e-03
## GCDH -4.1503229 9.478377e+00 -3.384566 9.578790e-04 3.760049e-03
## REX1BD -4.1498318 3.423726e+00 -4.123455 6.824120e-05 5.224924e-04
## SNX8 -4.1453595 6.323892e+00 -4.298577 3.467933e-05 3.186739e-04
## FAM102B 4.1388684 2.062025e+01 3.020859 3.068197e-03 9.424713e-03
## TCHP 4.1385250 1.758723e+01 4.087512 7.823120e-05 5.737922e-04
## MMS19 -4.1285196 3.437427e+01 -2.326428 2.163645e-02 4.514573e-02
## PUS7L 4.1281591 1.317004e+01 4.005552 1.065068e-04 7.207595e-04
## ZNF81 4.1258296 1.015307e+01 4.098238 7.511234e-05 5.606245e-04
## SLC17A5 4.1256227 1.547184e+01 3.423918 8.398296e-04 3.389007e-03
## CENPX -4.1182102 8.374589e+00 -2.745278 6.955330e-03 1.803065e-02
## PRR5 -4.1107282 6.403167e+00 -2.543645 1.221281e-02 2.834177e-02
## NPRL2 -4.1106110 2.244391e+01 -2.282631 2.417432e-02 4.945791e-02
## SEMA7A -4.1101657 6.358780e+00 -3.730731 2.905167e-04 1.528858e-03
## SMYD5 -4.1056640 9.047072e+00 -3.340394 1.108850e-03 4.205005e-03
## ASB13 -4.0995632 8.068603e+00 -4.625298 9.346592e-06 1.251246e-04
## NUBP1 -4.0987354 1.721894e+01 -3.519376 6.077327e-04 2.655314e-03
## VAPB 4.0961138 2.941068e+01 2.546607 1.211494e-02 2.817869e-02
## SLC10A3 -4.0914907 1.375667e+01 -2.963747 3.652021e-03 1.083095e-02
## CAPN15 -4.0904819 5.202729e+00 -4.561589 1.212735e-05 1.517198e-04
## DERA 4.0866148 2.078248e+01 3.118200 2.267673e-03 7.406942e-03
## CAPS -4.0855571 3.179834e+00 -4.756353 5.431223e-06 8.799768e-05
## TMED4 4.0833385 4.843742e+01 3.020610 3.070544e-03 9.429480e-03
## TAPT1 4.0818885 2.214571e+01 2.836554 5.336889e-03 1.465852e-02
## TRMU -4.0788667 9.363853e+00 -3.576757 4.988539e-04 2.288745e-03
## FIP1L1 4.0780724 2.867529e+01 3.653266 3.820818e-04 1.864069e-03
## BRAP 4.0717355 2.636844e+01 2.510160 1.336982e-02 3.055222e-02
## PLEKHB1 -4.0708841 6.360133e+00 -3.439085 7.980881e-04 3.251757e-03
## UNC50 4.0696261 2.825608e+01 2.808185 5.798656e-03 1.565492e-02
## DHX30 -4.0681431 1.784720e+01 -3.048758 2.815490e-03 8.799110e-03
## ANKRA2 4.0672299 1.404003e+01 4.002082 1.078972e-04 7.266669e-04
## FOXM1 4.0672258 4.901730e+00 4.697682 6.933422e-06 1.034345e-04
## UBN2 4.0618105 1.534881e+01 3.108675 2.336470e-03 7.575322e-03
## EXOSC1 -4.0613418 1.979221e+01 -2.681788 8.331805e-03 2.079444e-02
## CCDC32 4.0596726 2.227692e+01 3.787560 2.370233e-04 1.318449e-03
## AP4E1 4.0586991 1.253658e+01 3.919453 1.466113e-04 9.149853e-04
## TK1 4.0583174 5.283466e+00 2.870081 4.834608e-03 1.352003e-02
## RELL2 -4.0582947 7.260266e+00 -4.005397 1.065684e-04 7.207595e-04
## SLC25A25 -4.0573128 1.216950e+01 -4.291222 3.569263e-05 3.248769e-04
## MRE11 4.0533649 1.950657e+01 3.175038 1.894727e-03 6.431445e-03
## TRAF2 -4.0518020 7.122814e+00 -3.542238 5.619116e-04 2.508194e-03
## SLC25A45 -4.0444652 7.124357e+00 -4.488567 1.630019e-05 1.847340e-04
## PHLPP1 4.0419971 1.374674e+01 2.366531 1.952164e-02 4.145508e-02
## CCNB2 4.0383627 4.519676e+00 3.954585 1.287600e-04 8.263959e-04
## LRCH3 4.0280003 2.333332e+01 3.704956 3.183845e-04 1.634649e-03
## HPS5 4.0272340 1.502502e+01 3.002260 3.248119e-03 9.880148e-03
## MEN1 -4.0219324 1.135054e+01 -3.138885 2.124702e-03 7.030962e-03
## CENPU 4.0182581 5.718738e+00 5.411509 3.148774e-07 1.257389e-05
## FUT8 4.0175020 8.212014e+00 5.767006 6.165722e-08 4.458870e-06
## NDRG2 -4.0156190 4.379704e+00 -5.884146 3.560065e-08 3.040691e-06
## C12orf76 4.0141108 1.295168e+01 4.050636 8.992791e-05 6.390324e-04
## TACSTD2 4.0133690 4.273694e+00 2.690274 8.134560e-03 2.041318e-02
## NHLRC2 4.0119892 1.106596e+01 4.747080 5.645643e-06 9.072330e-05
## CUL4A 4.0115813 3.796653e+01 2.463369 1.515074e-02 3.377589e-02
## PRXL2B -4.0054997 8.273215e+00 -4.968374 2.213084e-06 4.844198e-05
## RPF1 -4.0053299 2.606056e+01 -3.336789 1.122108e-03 4.239905e-03
## KATNIP 4.0017789 2.168983e+01 2.407615 1.754668e-02 3.802453e-02
## NCAPD3 3.9971246 1.025959e+01 4.836380 3.881024e-06 7.128343e-05
## PTRHD1 -3.9948378 7.100940e+00 -3.750916 2.703239e-04 1.453987e-03
## PVRIG -3.9869907 7.353762e+00 -3.074349 2.600746e-03 8.280496e-03
## RPRD1B 3.9846965 1.997588e+01 3.116846 2.277341e-03 7.430336e-03
## ACADS -3.9799351 4.749622e+00 -4.097277 7.538672e-05 5.610474e-04
## POMGNT1 -3.9785204 1.280208e+01 -3.114565 2.293705e-03 7.465717e-03
## RNF168 3.9703418 2.170754e+01 2.958770 3.707464e-03 1.096239e-02
## FAM122B 3.9670898 2.266170e+01 3.244641 1.515751e-03 5.383889e-03
## FADS1 3.9668946 1.026303e+01 3.327635 1.156440e-03 4.330716e-03
## PDE1B -3.9668850 1.109671e+01 -3.330000 1.147476e-03 4.305305e-03
## MSH6 3.9662266 2.168682e+01 3.737379 2.837132e-04 1.502210e-03
## PDK2 -3.9596809 7.084785e+00 -4.402911 2.296919e-05 2.357694e-04
## BTBD7 3.9552978 1.779174e+01 2.925790 4.094860e-03 1.186829e-02
## KANSL1L 3.9546453 9.319335e+00 3.778451 2.449166e-04 1.347894e-03
## ITGA1 3.9492729 7.039792e+00 3.511827 6.236198e-04 2.708213e-03
## PEPD -3.9389355 1.507985e+01 -2.924189 4.114584e-03 1.191963e-02
## PPIH -3.9360520 1.300290e+01 -3.087255 2.498291e-03 8.010200e-03
## SNRNP48 3.9351998 1.562827e+01 3.258290 1.450267e-03 5.207436e-03
## INTS4 3.9312392 2.197453e+01 4.542666 1.309702e-05 1.591503e-04
## NUDT2 -3.9300282 1.421060e+01 -2.947255 3.838723e-03 1.128029e-02
## MUTYH -3.9275577 6.164116e+00 -4.861371 3.491905e-06 6.666886e-05
## PMPCA -3.9182333 1.365694e+01 -3.270774 1.392689e-03 5.046528e-03
## CPSF4 -3.9153988 1.513954e+01 -2.789117 6.129230e-03 1.633543e-02
## TJP2 3.9041188 1.543924e+01 2.459201 1.531923e-02 3.408105e-02
## ZDHHC13 3.8985073 1.513708e+01 2.997860 3.292081e-03 9.978042e-03
## LRRC8B 3.8965155 9.636119e+00 3.728208 2.931387e-04 1.537383e-03
## BLM 3.8907631 7.675997e+00 5.229200 7.105324e-07 2.235256e-05
## PTK2 3.8896443 8.331115e+00 3.666986 3.640907e-04 1.800073e-03
## PARG 3.8868781 1.400629e+01 3.872890 1.739301e-04 1.044991e-03
## VSIG10 3.8784137 6.069372e+00 2.686784 8.215173e-03 2.056394e-02
## C7orf26 -3.8773682 2.206129e+01 -2.972397 3.557476e-03 1.060359e-02
## HAAO -3.8768291 3.365732e+00 -7.408312 1.797297e-11 3.045134e-08
## TCF4 3.8765627 9.909642e+00 2.798156 5.970450e-03 1.599854e-02
## SNRPF -3.8757294 1.587034e+01 -2.381361 1.878715e-02 4.016347e-02
## ARHGAP5 3.8734969 1.044044e+01 3.259951 1.442481e-03 5.195208e-03
## MASTL 3.8728386 8.050500e+00 5.104048 1.230785e-06 3.272896e-05
## TRRAP 3.8721681 1.691544e+01 2.313464 2.236200e-02 4.638218e-02
## TANC2 3.8718352 1.232253e+01 2.475584 1.466652e-02 3.293430e-02
## ZMYM5 3.8694755 1.542612e+01 2.832492 5.400873e-03 1.481368e-02
## GEMIN7 -3.8691275 1.344263e+01 -2.560541 1.166382e-02 2.729537e-02
## KCTD5 -3.8684459 2.158560e+01 -3.467598 7.248450e-04 3.026994e-03
## POP5 -3.8670706 1.053645e+01 -2.867193 4.876116e-03 1.360723e-02
## CES2 -3.8661558 2.257962e+01 -3.663810 3.681824e-04 1.813390e-03
## VPS45 -3.8606406 1.936041e+01 -2.711874 7.651403e-03 1.941914e-02
## DSTYK 3.8565432 1.804712e+01 2.818956 5.619198e-03 1.527474e-02
## TRAPPC9 -3.8563084 1.611589e+01 -3.363935 1.025822e-03 3.965530e-03
## MGA 3.8561717 1.588797e+01 2.462066 1.520323e-02 3.387382e-02
## EDC3 -3.8487658 2.121562e+01 -3.237586 1.550668e-03 5.481647e-03
## FBXL6 -3.8462274 6.115787e+00 -3.387718 9.478775e-04 3.732346e-03
## CNOT9 3.8456830 2.827073e+01 3.211942 1.684014e-03 5.850149e-03
## PLD1 3.8426988 9.232717e+00 3.877267 1.711689e-04 1.031735e-03
## ABITRAM 3.8404219 1.852229e+01 2.438581 1.617743e-02 3.563550e-02
## ECT2 3.8375172 7.316110e+00 5.329405 4.551578e-07 1.611394e-05
## RNPC3 3.8336673 1.911659e+01 2.383177 1.869888e-02 4.000879e-02
## CENPE 3.8333141 4.188713e+00 4.920112 2.720535e-06 5.553450e-05
## SNIP1 3.8313471 1.656125e+01 3.396942 9.191732e-04 3.642297e-03
## RP9 -3.8219403 7.968395e+00 -3.779792 2.437390e-04 1.346885e-03
## ZNF684 3.8218379 5.441514e+00 2.984100 3.433145e-03 1.028729e-02
## ATAD3B -3.8200045 5.989959e+00 -3.582331 4.893196e-04 2.254596e-03
## PHACTR4 3.8187100 1.447161e+01 3.970142 1.215358e-04 7.919858e-04
## REXO1 -3.8182933 8.139960e+00 -5.490249 2.204963e-07 9.981245e-06
## GPN2 -3.8175697 2.161797e+01 -3.014797 3.125798e-03 9.571899e-03
## MAP4K5 3.8174256 1.338117e+01 3.521325 6.036932e-04 2.641019e-03
## PELI3 -3.8155122 4.537970e+00 -7.608310 6.313696e-12 2.006979e-08
## TNKS 3.8153476 1.869459e+01 2.761558 6.637418e-03 1.735062e-02
## OGFOD2 -3.8151750 9.250384e+00 -3.187302 1.822123e-03 6.233164e-03
## OGFOD3 -3.8143990 6.277364e+00 -4.389765 2.420157e-05 2.459560e-04
## TOMM5 -3.8135064 1.603418e+01 -2.505907 1.352361e-02 3.084473e-02
## MRTO4 -3.8117594 1.373769e+01 -2.496402 1.387296e-02 3.148574e-02
## SPPL2B -3.8106936 5.348899e+00 -4.316932 3.226977e-05 3.030241e-04
## DNM1L 3.8028172 2.414621e+01 2.536979 1.243573e-02 2.875005e-02
## NRG1 -3.8027370 6.878998e+00 -2.877566 4.728556e-03 1.327171e-02
## REV1 3.8018926 1.620872e+01 3.109960 2.327077e-03 7.553128e-03
## TAF1C -3.8018879 1.492922e+01 -2.515783 1.316893e-02 3.019530e-02
## SNX21 -3.7994580 7.582398e+00 -5.916542 3.055346e-08 2.745182e-06
## SUCNR1 3.7974083 3.860900e+00 4.677341 7.542623e-06 1.082996e-04
## SLC27A4 -3.7969691 7.812821e+00 -3.346521 1.086655e-03 4.138641e-03
## ZNF136 3.7951925 1.346685e+01 3.048664 2.816309e-03 8.799110e-03
## SPIB -3.7921738 6.385561e+00 -3.478737 6.979876e-04 2.947004e-03
## PRMT7 -3.7870270 8.293110e+00 -3.566541 5.167827e-04 2.351897e-03
## GSTZ1 -3.7856112 5.734021e+00 -4.998977 1.940333e-06 4.433979e-05
## EXOSC5 -3.7856057 3.921173e+00 -4.858465 3.535138e-06 6.691289e-05
## ABCB8 -3.7806518 6.121221e+00 -3.913329 1.499551e-04 9.321105e-04
## ZMAT3 3.7805861 2.203178e+01 2.721403 7.446671e-03 1.903395e-02
## NFKBID -3.7783610 1.767117e+01 -2.323900 2.177627e-02 4.541119e-02
## SOWAHD -3.7774837 6.818966e+00 -4.766486 5.205956e-06 8.552846e-05
## CYREN 3.7774203 2.893711e+01 2.330161 2.143140e-02 4.477428e-02
## DUSP23 -3.7770454 8.907170e+00 -2.788101 6.147321e-03 1.636893e-02
## KLHL18 3.7767619 2.334186e+01 2.592441 1.068733e-02 2.540623e-02
## ABCC2 3.7742235 7.386530e+00 3.510339 6.267975e-04 2.716046e-03
## MAP3K6 -3.7718455 6.981483e+00 -4.105205 7.315045e-05 5.494391e-04
## DHX29 3.7664958 1.834194e+01 3.331537 1.141689e-03 4.286303e-03
## PHF6 3.7658238 1.144247e+01 3.455101 7.561334e-04 3.125738e-03
## MDP1 -3.7644380 7.681028e+00 -3.585455 4.840515e-04 2.235130e-03
## IL18BP -3.7639221 6.305278e+00 -5.919550 3.012213e-08 2.727088e-06
## TNPO2 -3.7634434 2.371625e+01 -2.904561 4.363548e-03 1.244928e-02
## CCDC61 -3.7618432 4.173247e+00 -5.128584 1.105785e-06 3.060805e-05
## SYCP2 3.7604539 8.955937e+00 2.464493 1.510562e-02 3.368737e-02
## TIMM9 -3.7587596 8.627813e+00 -4.056118 8.808871e-05 6.278438e-04
## ILKAP -3.7571938 1.502851e+01 -2.936305 3.967488e-03 1.157835e-02
## PLEKHA3 3.7560980 1.959763e+01 2.952984 3.772896e-03 1.112282e-02
## EDRF1 3.7549348 1.457291e+01 4.659098 8.132848e-06 1.137448e-04
## TMEM9 -3.7540185 1.312264e+01 -2.354550 2.013343e-02 4.250843e-02
## IPO9 3.7524435 2.128201e+01 2.874185 4.776201e-03 1.338826e-02
## MIER3 3.7519701 1.024188e+01 4.125418 6.773244e-05 5.196033e-04
## ECI2 -3.7518527 1.333330e+01 -2.684873 8.259603e-03 2.065336e-02
## MAPK11 -3.7470900 3.276328e+00 -4.530974 1.373317e-05 1.640236e-04
## CPEB3 3.7444412 8.221757e+00 3.516237 6.142912e-04 2.676522e-03
## TRIM65 -3.7442860 1.137430e+01 -3.719339 3.025364e-04 1.575793e-03
## CTNNAL1 3.7300067 6.573702e+00 4.007505 1.057317e-04 7.169584e-04
## PRRT4 3.7294065 3.160280e+00 2.705792 7.784745e-03 1.967755e-02
## SS18L2 -3.7289897 2.032878e+01 -2.372813 1.920747e-02 4.090512e-02
## ZSCAN18 -3.7269178 5.291161e+00 -4.805589 4.418535e-06 7.729177e-05
## ZNF100 3.7254581 1.207066e+01 2.712928 7.628519e-03 1.938180e-02
## MROH1 -3.7223157 7.455327e+00 -3.971889 1.207489e-04 7.881573e-04
## LSS -3.7217021 1.240258e+01 -2.814755 5.688588e-03 1.541730e-02
## CSE1L 3.7174086 2.860318e+01 2.465300 1.507326e-02 3.362846e-02
## LARP4 3.7169244 1.249580e+01 3.961982 1.252755e-04 8.104009e-04
## INTS6L 3.7105234 2.228831e+01 2.455750 1.545997e-02 3.430715e-02
## CDKN2AIP 3.7103131 2.376953e+01 2.648776 9.141041e-03 2.244106e-02
## METTL14 3.7090350 1.674182e+01 3.006673 3.204571e-03 9.765214e-03
## GSTM4 -3.7083063 8.290163e+00 -2.510931 1.334213e-02 3.050658e-02
## ASCC1 3.7076489 1.512868e+01 2.983595 3.438420e-03 1.030050e-02
## ZNF22 3.7053185 1.954409e+01 2.991638 3.355193e-03 1.012019e-02
## OAF -3.7044158 1.065974e+01 -3.020930 3.067527e-03 9.424713e-03
## TRIM24 3.7043071 2.171718e+01 2.278973 2.439765e-02 4.978597e-02
## PPAN -3.7034527 5.320803e+00 -4.656953 8.205121e-06 1.142168e-04
## SMARCA4 -3.7033280 1.715594e+01 -2.803546 5.877549e-03 1.582468e-02
## BRF1 -3.7030580 5.506299e+00 -4.807103 4.390491e-06 7.691466e-05
## DCUN1D3 3.7002620 9.086661e+00 3.905794 1.541695e-04 9.493509e-04
## GPR137B -3.6996903 8.107503e+00 -3.516521 6.136949e-04 2.674907e-03
## DEAF1 -3.6972910 1.034211e+01 -3.298722 1.271442e-03 4.688838e-03
## LCMT1 -3.6964203 1.328296e+01 -3.233472 1.571379e-03 5.535062e-03
## HMGXB4 3.6961402 1.218550e+01 3.793026 2.324030e-04 1.298916e-03
## VAV2 -3.6942301 8.208061e+00 -4.483556 1.663250e-05 1.878727e-04
## OCIAD2 -3.6929081 9.570746e+00 -2.466293 1.503355e-02 3.357144e-02
## CENPC 3.6925378 1.437690e+01 2.657513 8.920239e-03 2.197176e-02
## SLC46A2 -3.6898325 9.503168e+00 -2.722006 7.433875e-03 1.901520e-02
## GATA2 -3.6860089 4.237327e+00 -4.499447 1.560056e-05 1.792788e-04
## ZNF598 -3.6825211 7.452848e+00 -4.265161 3.951718e-05 3.489752e-04
## RNASEH1 3.6811246 1.494570e+01 4.138101 6.453127e-05 5.029372e-04
## HJURP 3.6806631 3.574267e+00 5.146006 1.024623e-06 2.866044e-05
## SMPD3 -3.6790241 4.532284e+00 -2.962547 3.665320e-03 1.085953e-02
## SART3 3.6764831 2.322677e+01 2.823694 5.541885e-03 1.512321e-02
## FAM3C 3.6764522 1.279755e+01 2.525375 1.283246e-02 2.952909e-02
## CYB5D1 3.6744796 8.488635e+00 2.759300 6.680705e-03 1.745224e-02
## EHD4 -3.6711163 1.952976e+01 -2.877916 4.723658e-03 1.326292e-02
## GFM2 3.6702329 1.627594e+01 3.918127 1.473291e-04 9.186767e-04
## UHRF1 3.6682265 4.605744e+00 5.596721 1.355884e-07 7.344904e-06
## RAB30 3.6652876 7.387232e+00 3.461011 7.411820e-04 3.075724e-03
## MRPL41 -3.6652249 3.160560e+00 -3.903299 1.555894e-04 9.571005e-04
## MAD2L1 3.6650121 5.855353e+00 4.324325 3.134548e-05 2.971682e-04
## DUSP18 3.6631376 1.203169e+01 3.467245 7.257130e-04 3.027981e-03
## CACTIN -3.6622758 5.544140e+00 -4.742830 5.746639e-06 9.194986e-05
## ODF2L 3.6617813 1.886988e+01 2.489522 1.413088e-02 3.195718e-02
## CEP57 3.6611435 2.293802e+01 2.511978 1.330459e-02 3.043728e-02
## REEP4 -3.6608630 1.188265e+01 -3.189174 1.811271e-03 6.206782e-03
## CSRNP2 3.6573479 1.500102e+01 3.338965 1.114089e-03 4.217395e-03
## MRPL48 -3.6554510 1.356353e+01 -2.580369 1.104787e-02 2.608556e-02
## PHTF2 3.6521317 2.344879e+01 2.594976 1.061297e-02 2.528015e-02
## CLK2 -3.6512104 3.994927e+01 -3.103937 2.371401e-03 7.659262e-03
## SWI5 -3.6473828 8.839777e+00 -3.625484 4.211225e-04 2.005829e-03
## POLR2I -3.6468759 5.214807e+00 -3.723929 2.976377e-04 1.554453e-03
## NOP9 -3.6372395 3.665590e+01 -2.713908 7.607285e-03 1.933613e-02
## CPTP -3.6367207 5.274636e+00 -3.961890 1.253183e-04 8.104009e-04
## ABHD12 -3.6342108 1.046983e+01 -2.875893 4.752079e-03 1.333010e-02
## NOB1 -3.6334792 1.124976e+01 -3.314365 1.207959e-03 4.491031e-03
## KIFC1 3.6279214 3.895032e+00 4.685386 7.295725e-06 1.065764e-04
## UBALD1 -3.6277567 4.023117e+00 -3.814904 2.147537e-04 1.220879e-03
## GALK2 3.6262736 1.196634e+01 5.062770 1.472781e-06 3.682510e-05
## ERCC3 3.6252441 2.778887e+01 3.099881 2.401694e-03 7.742347e-03
## ZNF671 -3.6208554 1.503733e+01 -4.163113 5.863824e-05 4.710853e-04
## COQ9 -3.6186896 1.839751e+01 -3.945601 1.331166e-04 8.465218e-04
## PDCD2 -3.6179744 3.606219e+01 -2.561146 1.164457e-02 2.727187e-02
## PLCD1 -3.6165297 1.155611e+01 -2.995396 3.316945e-03 1.002771e-02
## DPH5 -3.6158662 1.455070e+01 -3.614537 4.375187e-04 2.069430e-03
## PDRG1 -3.6124644 1.468776e+01 -2.772503 6.431163e-03 1.691961e-02
## GINS2 3.6124164 4.211891e+00 4.556342 1.238904e-05 1.541805e-04
## GUCY1A1 3.6089390 6.703931e+00 2.867227 4.875624e-03 1.360723e-02
## TNFRSF13C -3.6087163 7.707114e+00 -3.115587 2.286358e-03 7.451554e-03
## SLF2 3.6041400 1.976486e+01 2.280255 2.431917e-02 4.964431e-02
## SRD5A3 -3.6006621 5.860785e+00 -5.715683 7.828954e-08 5.245842e-06
## RPP21 -3.5996711 4.346456e+00 -3.991681 1.121692e-04 7.477948e-04
## TOMM40 -3.5945681 1.089243e+01 -2.595766 1.058991e-02 2.523027e-02
## RTL8A -3.5890782 6.778449e+00 -5.563799 1.576728e-07 8.025749e-06
## PEX5 -3.5877496 1.715291e+01 -4.084806 7.903763e-05 5.779201e-04
## DSTN -3.5858932 2.926313e+01 -2.333844 2.123080e-02 4.441328e-02
## SLC16A1 3.5852027 7.814640e+00 5.036436 1.650728e-06 3.975483e-05
## ANKRD52 3.5851255 2.173494e+01 3.344577 1.093652e-03 4.161283e-03
## ZNF76 -3.5764532 1.496780e+01 -2.884949 4.626043e-03 1.304133e-02
## TMEM234 -3.5746050 9.954188e+00 -3.428585 8.267717e-04 3.343168e-03
## TLNRD1 -3.5742708 1.627159e+01 -3.827251 2.053632e-04 1.178330e-03
## PASK -3.5694156 7.467374e+00 -2.786980 6.167338e-03 1.641486e-02
## MPHOSPH9 3.5670803 7.194862e+00 4.614526 9.768960e-06 1.297423e-04
## SAMD4B 3.5654134 2.104429e+01 2.418432 1.705713e-02 3.718023e-02
## ZNF699 3.5625770 8.758494e+00 3.251965 1.480277e-03 5.289569e-03
## GNGT2 -3.5548815 6.307515e+00 -3.660855 3.720291e-04 1.827025e-03
## OSBPL7 -3.5532894 7.909496e+00 -2.882108 4.665248e-03 1.311755e-02
## GET1 3.5524210 1.590482e+01 2.593422 1.065851e-02 2.535417e-02
## PUS1 -3.5507787 5.357162e+00 -4.097211 7.540552e-05 5.610474e-04
## TLCD4 3.5471462 3.671654e+00 2.774637 6.391639e-03 1.685676e-02
## XYLT2 -3.5446546 8.142774e+00 -3.850726 1.885753e-04 1.107333e-03
## ZNF358 -3.5388112 2.678694e+00 -5.393697 3.411715e-07 1.318397e-05
## C9orf139 -3.5309982 1.419504e+01 -2.510330 1.336373e-02 3.055009e-02
## ABCA5 3.5273649 1.266321e+01 3.334497 1.130613e-03 4.263617e-03
## ERCC6 3.5273230 1.040618e+01 3.843984 1.932581e-04 1.125757e-03
## SIAE 3.5266164 1.134729e+01 2.886057 4.610840e-03 1.300775e-02
## TMEM204 -3.5255103 4.402109e+00 -3.627027 4.188592e-04 1.997455e-03
## ING5 -3.5142905 1.971061e+01 -2.553327 1.189544e-02 2.774979e-02
## BCAS4 -3.5138726 3.058864e+00 -3.814323 2.152049e-04 1.222380e-03
## BLOC1S4 -3.5118843 8.199685e+00 -4.379093 2.524858e-05 2.531261e-04
## GRAMD4 -3.5098802 1.295125e+01 -3.704266 3.191646e-04 1.637237e-03
## ARHGAP11A 3.5095284 5.148749e+00 6.007652 1.983073e-08 2.099932e-06
## NETO2 3.5084972 9.078100e+00 3.795754 2.301295e-04 1.288030e-03
## CDC7 3.5084666 5.656738e+00 7.573188 7.592156e-12 2.006979e-08
## L3MBTL2 -3.5066990 1.897028e+01 -2.367753 1.946014e-02 4.133929e-02
## CDYL2 3.5034034 9.220896e+00 4.108053 7.236266e-05 5.450457e-04
## EXOC2 3.5023950 1.759741e+01 2.531958 1.260603e-02 2.908141e-02
## TRMT61A -3.5021595 3.457566e+00 -4.449402 1.907781e-05 2.073903e-04
## NDUFV3 -3.4994635 1.748673e+01 -3.455436 7.552791e-04 3.124385e-03
## FEM1A -3.4867138 2.698472e+01 -3.637547 4.037289e-04 1.939338e-03
## ECI1 -3.4857956 4.541724e+00 -3.909423 1.521259e-04 9.418400e-04
## ACBD4 -3.4856529 6.645627e+00 -4.416000 2.180242e-05 2.276204e-04
## ANKRD55 3.4817669 6.440418e+00 3.305529 1.243445e-03 4.595593e-03
## KAT6B 3.4745277 9.824632e+00 3.181833 1.854178e-03 6.319124e-03
## NAA16 3.4726487 1.149473e+01 4.158221 5.974874e-05 4.771852e-04
## PSMD11 3.4726202 3.415894e+01 2.605792 1.030097e-02 2.466577e-02
## ZNF362 -3.4720765 9.425953e+00 -6.526384 1.594401e-09 4.202133e-07
## DHX38 -3.4716154 4.268733e+01 -2.294115 2.348477e-02 4.833061e-02
## VRK2 3.4686457 1.473284e+01 2.401415 1.783289e-02 3.852975e-02
## HARS1 -3.4660598 2.687007e+01 -2.441930 1.603519e-02 3.537525e-02
## MRPL42 3.4643887 1.959851e+01 3.504905 6.385309e-04 2.755814e-03
## DTL 3.4638441 3.235270e+00 6.603921 1.084991e-09 3.196327e-07
## DENND5B 3.4591781 4.222445e+00 3.797417 2.287536e-04 1.283358e-03
## FLYWCH1 -3.4564386 6.890713e+00 -3.253057 1.475052e-03 5.279590e-03
## HYAL2 -3.4523443 9.461095e+00 -2.985372 3.419875e-03 1.026568e-02
## SMIM5 3.4497458 7.977298e+00 2.323851 2.177899e-02 4.541119e-02
## NOL8 3.4426655 2.246275e+01 2.355420 2.008843e-02 4.243076e-02
## PWWP2B -3.4409308 4.062516e+00 -5.184257 8.662678e-07 2.545752e-05
## MSI2 3.4407663 1.646098e+01 2.426938 1.668071e-02 3.656131e-02
## TMEM187 -3.4385963 4.428668e+00 -5.401155 3.299109e-07 1.297453e-05
## SLC52A2 -3.4349763 6.032908e+00 -3.635002 4.073412e-04 1.951158e-03
## AP1S1 -3.4347646 1.425743e+01 -2.339635 2.091870e-02 4.380995e-02
## IQCB1 3.4333234 1.512658e+01 3.349207 1.077056e-03 4.113971e-03
## AMIGO2 3.4296281 1.002078e+01 3.233489 1.571293e-03 5.535062e-03
## MIEF1 3.4262737 2.204912e+01 2.786066 6.183693e-03 1.643626e-02
## TPRN -3.4239863 2.888773e+00 -4.447107 1.925398e-05 2.087315e-04
## LIN37 -3.4238680 1.274398e+01 -2.523741 1.288922e-02 2.964821e-02
## PAFAH1B3 -3.4237021 4.704533e+00 -3.278768 1.356951e-03 4.930907e-03
## PIGC 3.4229584 2.101348e+01 3.589416 4.774506e-04 2.214724e-03
## ZNF430 3.4162909 1.709272e+01 2.366051 1.954581e-02 4.149155e-02
## TMEM102 -3.4140443 5.149900e+00 -4.802138 4.483092e-06 7.783979e-05
## NUP93 -3.4132830 1.742790e+01 -2.652957 9.034780e-03 2.221237e-02
## GSE1 3.4125080 1.562932e+01 2.537263 1.242617e-02 2.873916e-02
## PPP2R3B -3.4055494 4.742568e+00 -4.649480 8.461747e-06 1.172387e-04
## GOLT1B 3.4006643 2.098623e+01 3.031412 2.970237e-03 9.185661e-03
## RAP1GDS1 3.3993524 2.541334e+01 3.089715 2.479194e-03 7.957576e-03
## GMNN 3.3976343 6.201325e+00 4.418759 2.156382e-05 2.258453e-04
## TARBP2 -3.3971016 6.617235e+00 -3.449803 7.697785e-04 3.165594e-03
## CTSF -3.3945215 4.320339e+00 -4.169484 5.722164e-05 4.626098e-04
## SLC9A6 3.3940296 1.768685e+01 2.776948 6.349079e-03 1.678183e-02
## CHORDC1 3.3938819 1.874550e+01 2.315558 2.224340e-02 4.617657e-02
## SLC4A7 3.3926820 9.586608e+00 2.384582 1.863087e-02 3.989925e-02
## NPHP3 3.3920114 1.494527e+01 2.286600 2.393401e-02 4.911776e-02
## NAA15 3.3914304 1.702195e+01 2.839369 5.292945e-03 1.457157e-02
## MRPS12 -3.3897373 5.952540e+00 -2.860100 4.979415e-03 1.385963e-02
## NTMT1 -3.3847332 7.979702e+00 -3.382957 9.630224e-04 3.774140e-03
## INO80B -3.3830415 8.678664e+00 -5.124285 1.126757e-06 3.101949e-05
## UBASH3A -3.3830369 6.634330e+00 -2.908488 4.312657e-03 1.236656e-02
## LRRC61 -3.3804188 4.476915e+00 -5.106091 1.219874e-06 3.254655e-05
## TGFBRAP1 3.3786098 1.744006e+01 3.585488 4.839971e-04 2.235130e-03
## NPDC1 -3.3781124 2.348900e+00 -4.658619 8.148917e-06 1.138353e-04
## CRTC1 -3.3774133 5.402910e+00 -5.629300 1.167263e-07 6.687795e-06
## OXCT1 3.3712195 1.213257e+01 2.732626 7.211908e-03 1.854982e-02
## TMEM150A -3.3687073 4.694545e+00 -5.229699 7.089655e-07 2.235256e-05
## MRPL55 -3.3675743 3.920676e+00 -3.409208 8.822606e-04 3.526664e-03
## BTLA 3.3645731 9.656279e+00 3.147060 2.070541e-03 6.895988e-03
## FBN2 3.3638739 8.114657e+00 2.640703 9.349449e-03 2.284394e-02
## SLC22A1 3.3576044 7.523701e+00 2.644089 9.261528e-03 2.268051e-02
## ZKSCAN8 3.3531486 1.158964e+01 2.437074 1.624181e-02 3.575127e-02
## RGPD8 3.3486555 7.697106e+00 3.747226 2.739134e-04 1.463339e-03
## SLC30A5 3.3477917 2.559714e+01 2.428388 1.661728e-02 3.646271e-02
## MAP1A 3.3448999 7.732170e+00 2.579028 1.108858e-02 2.616894e-02
## ZKSCAN7 3.3443750 5.455537e+00 3.711171 3.114421e-04 1.606656e-03
## TBC1D22B 3.3429173 1.272462e+01 3.297889 1.274908e-03 4.697238e-03
## ATF5 -3.3408421 7.087778e+00 -3.579935 4.933962e-04 2.267214e-03
## AK3 3.3405928 1.842348e+01 3.607527 4.483313e-04 2.109167e-03
## NDC80 3.3366902 5.917033e+00 5.826299 4.672599e-08 3.645857e-06
## MRPL17 -3.3308783 1.030868e+01 -2.930592 4.036240e-03 1.174840e-02
## ABHD17B 3.3304818 1.388921e+01 3.664196 3.676828e-04 1.812238e-03
## KLHDC10 3.3295618 2.108948e+01 2.604829 1.032840e-02 2.471495e-02
## AMMECR1L 3.3205703 1.874704e+01 3.446342 7.788145e-04 3.193894e-03
## SNRNP27 3.3200037 2.234867e+01 2.392610 1.824644e-02 3.922296e-02
## HINT2 -3.3166049 7.877930e+00 -2.520397 1.300610e-02 2.987070e-02
## GRAMD1C 3.3116940 8.180348e+00 2.349715 2.038509e-02 4.293233e-02
## GGCX 3.3096166 1.796261e+01 3.881800 1.683533e-04 1.017808e-03
## SLC35D1 3.3044476 1.060355e+01 3.038406 2.906920e-03 9.034611e-03
## TIMMDC1 -3.2971965 3.044333e+01 -2.905367 4.353063e-03 1.243747e-02
## RREB1 3.2922099 1.595914e+01 3.372086 9.984550e-04 3.882517e-03
## NBPF11 3.2914199 1.473116e+01 2.320308 2.197635e-02 4.576638e-02
## ERMP1 3.2867631 1.049954e+01 3.927558 1.422951e-04 8.915057e-04
## KNL1 3.2842421 3.506061e+00 5.876508 3.690518e-08 3.105239e-06
## CNPY4 -3.2757233 1.075072e+01 -4.261376 4.010436e-05 3.533713e-04
## GNPAT 3.2715604 3.635112e+01 2.354220 2.015052e-02 4.252772e-02
## DDX51 -3.2712935 9.271125e+00 -3.179127 1.870224e-03 6.361015e-03
## RAD50 3.2701263 1.636742e+01 2.531140 1.263398e-02 2.913456e-02
## FBXO5 3.2667955 5.296409e+00 6.317406 4.453752e-09 8.519597e-07
## CENPN 3.2649852 6.068023e+00 3.569037 5.123477e-04 2.336195e-03
## NDUFAF8 -3.2646972 5.177936e+00 -3.650804 3.853987e-04 1.873433e-03
## RNGTT 3.2640565 1.787533e+01 2.490892 1.407918e-02 3.188449e-02
## QTRT1 -3.2614878 3.254806e+00 -4.283431 3.679702e-05 3.321253e-04
## HEATR1 3.2600257 9.263991e+00 2.768306 6.509557e-03 1.707661e-02
## JAG1 3.2586827 7.101478e+00 4.153218 6.090500e-05 4.828431e-04
## BUB1B 3.2559073 2.893909e+00 5.728969 7.360386e-08 5.104923e-06
## RAD17 3.2555371 1.547157e+01 3.911251 1.511062e-04 9.377744e-04
## SLC16A7 3.2537803 1.160564e+01 2.284727 2.404717e-02 4.927426e-02
## MRPL46 -3.2534918 9.783554e+00 -2.961400 3.678068e-03 1.089079e-02
## GOLGA8N 3.2534663 1.085017e+01 2.659248 8.876957e-03 2.188333e-02
## TMEM64 3.2534312 1.042728e+01 4.507633 1.509343e-05 1.761890e-04
## CFAP36 -3.2521248 8.554080e+00 -4.470793 1.750864e-05 1.949788e-04
## LAPTM4B 3.2450491 6.250814e+00 3.258482 1.449362e-03 5.205763e-03
## THEM6 -3.2400483 3.528391e+00 -4.735340 5.928877e-06 9.400599e-05
## NAA80 -3.2392069 4.282632e+00 -3.508805 6.300885e-04 2.726322e-03
## ZNF446 -3.2391631 5.543368e+00 -3.972078 1.206642e-04 7.881573e-04
## MINDY3 3.2384292 1.187627e+01 3.803325 2.239296e-04 1.261442e-03
## TBC1D25 -3.2340188 1.967767e+01 -2.349532 2.039466e-02 4.293233e-02
## ZNF791 3.2321062 2.165035e+01 2.955004 3.749929e-03 1.106322e-02
## HPF1 -3.2196834 1.099528e+01 -3.791032 2.340786e-04 1.306434e-03
## ABRAXAS2 3.2192892 1.367703e+01 3.586112 4.829517e-04 2.232193e-03
## EOLA1 -3.2177423 1.819797e+01 -4.037341 9.454127e-05 6.607304e-04
## FKBP9 3.2136326 8.639116e+00 2.706464 7.769908e-03 1.964842e-02
## INO80 3.2132687 2.256520e+01 2.489002 1.415055e-02 3.197633e-02
## RASGRP3 3.2092783 5.629790e+00 4.167352 5.769205e-05 4.651446e-04
## PIN4 -3.2081254 1.310390e+01 -3.343645 1.097023e-03 4.172768e-03
## ACTL6A 3.2068358 1.502742e+01 3.229073 1.593803e-03 5.597425e-03
## SMARCAD1 3.2066034 1.120224e+01 2.511848 1.330925e-02 3.043728e-02
## LTBP4 -3.2054431 3.915807e+00 -4.702099 6.807565e-06 1.027895e-04
## TCERG1 3.2005390 1.565597e+01 2.438516 1.618020e-02 3.563550e-02
## RRP8 -3.1894519 1.294658e+01 -4.197996 5.127429e-05 4.264478e-04
## TTC7B 3.1892621 8.643513e+00 3.281273 1.345927e-03 4.899538e-03
## LONRF3 3.1884795 4.007938e+00 4.000303 1.086168e-04 7.301388e-04
## PRDM10 3.1882146 1.017151e+01 3.380670 9.703787e-04 3.799502e-03
## SLC26A11 -3.1843230 8.702901e+00 -3.504917 6.385051e-04 2.755814e-03
## ZNF28 3.1810662 1.160783e+01 3.333454 1.134505e-03 4.270144e-03
## TMEM86B -3.1789055 4.339878e+00 -4.027192 9.821423e-05 6.760933e-04
## SLC33A1 3.1776183 1.850734e+01 3.277969 1.360486e-03 4.941917e-03
## UBE2C 3.1775371 4.610626e+00 4.808015 4.373694e-06 7.684741e-05
## GNE 3.1750329 1.085411e+01 3.914786 1.491530e-04 9.280979e-04
## JOSD2 -3.1744061 2.372521e+00 -4.924831 2.666307e-06 5.480485e-05
## TOP3B -3.1713875 1.327283e+01 -3.510914 6.255662e-04 2.713066e-03
## CACFD1 -3.1689160 3.413359e+00 -5.753987 6.551488e-08 4.625039e-06
## GPR35 -3.1680830 2.643002e+00 -6.159613 9.574114e-09 1.290330e-06
## TNFSF4 3.1607579 7.992977e+00 3.359495 1.041020e-03 4.008603e-03
## PTDSS2 -3.1601703 5.440338e+00 -3.925697 1.432753e-04 8.966994e-04
## TRAP1 -3.1597948 1.101433e+01 -2.559394 1.170037e-02 2.737010e-02
## SEPHS1 3.1594180 1.593709e+01 3.047663 2.825035e-03 8.821726e-03
## VAC14 -3.1575486 9.370250e+00 -3.417680 8.575814e-04 3.447768e-03
## CHEK1 3.1552142 4.014832e+00 6.052185 1.603476e-08 1.772800e-06
## METTL3 3.1521107 2.451178e+01 2.364460 1.962618e-02 4.162491e-02
## UBA5 3.1431909 1.449998e+01 3.036561 2.923505e-03 9.081396e-03
## D2HGDH -3.1428031 2.923586e+00 -4.916240 2.765814e-06 5.616517e-05
## EXOSC7 -3.1414200 1.010529e+01 -3.126867 2.206715e-03 7.252500e-03
## CUL2 3.1410838 2.219729e+01 2.742434 7.012275e-03 1.815050e-02
## STX18 -3.1363922 1.523342e+01 -3.601545 4.577583e-04 2.146704e-03
## ZNF131 3.1301728 1.826822e+01 2.282140 2.420419e-02 4.950711e-02
## DEXI -3.1244218 5.925844e+00 -2.923622 4.121584e-03 1.192885e-02
## CPSF3 -3.1211811 2.198405e+01 -2.885193 4.622694e-03 1.303498e-02
## ZBTB6 3.1154958 1.339248e+01 2.343080 2.073496e-02 4.352101e-02
## ZNF513 -3.1133261 9.470021e+00 -5.115175 1.172483e-06 3.189368e-05
## BLOC1S3 -3.1126403 1.518008e+01 -3.951789 1.301012e-04 8.327036e-04
## SKA2 3.1105828 1.253413e+01 3.553255 5.410123e-04 2.435069e-03
## WDR54 -3.1099729 4.946373e+00 -3.205120 1.721243e-03 5.952645e-03
## LEPR 3.1084159 7.060569e+00 4.174224 5.618897e-05 4.583227e-04
## SACS 3.1083730 8.787320e+00 2.296607 2.333743e-02 4.806911e-02
## VGLL4 3.1047711 8.831687e+00 4.108197 7.232296e-05 5.450457e-04
## C2orf49 3.1044301 1.875372e+01 2.499833 1.374595e-02 3.124917e-02
## BCOR 3.1024183 1.210760e+01 2.598168 1.052003e-02 2.510414e-02
## YLPM1 3.1018234 1.652196e+01 2.691717 8.101443e-03 2.035659e-02
## PKD2 3.0991137 6.841540e+00 4.898287 2.985547e-06 5.911284e-05
## ERMAP 3.0955803 1.430786e+01 2.377728 1.896478e-02 4.046820e-02
## PAQR7 -3.0923723 6.692685e+00 -3.495682 6.589199e-04 2.818172e-03
## DIPK1A 3.0876574 6.401045e+00 3.729926 2.913506e-04 1.532025e-03
## WDR20 3.0810289 2.009892e+01 2.464607 1.510104e-02 3.368410e-02
## RRP1 -3.0770648 6.928780e+00 -2.922419 4.136491e-03 1.195681e-02
## NRROS -3.0755068 1.161965e+01 -2.646109 9.209432e-03 2.257624e-02
## SMG6 -3.0750869 1.636467e+01 -3.359818 1.039908e-03 4.005620e-03
## GTF3C3 3.0741839 1.454921e+01 2.845231 5.202510e-03 1.436309e-02
## SLC9A3 -3.0732850 7.545866e+00 -4.088694 7.788150e-05 5.724490e-04
## PUSL1 -3.0704685 3.141627e+00 -4.544671 1.299086e-05 1.585099e-04
## CDK7 3.0701486 1.924249e+01 2.293732 2.350750e-02 4.836285e-02
## TSPAN4 -3.0645290 2.597940e+00 -5.669686 9.688242e-08 5.803744e-06
## SEMA4C -3.0626213 4.868428e+00 -4.663260 7.994393e-06 1.123383e-04
## BEX2 -3.0613200 4.092596e+00 -4.154543 6.059685e-05 4.816881e-04
## FOLR2 -3.0610628 2.761971e+00 -5.697698 8.510087e-08 5.515280e-06
## PM20D2 3.0573630 1.020218e+01 3.191387 1.798523e-03 6.177377e-03
## SPSB2 -3.0563259 5.437133e+00 -2.874709 4.768782e-03 1.337063e-02
## STAM 3.0549434 1.310515e+01 3.014632 3.127384e-03 9.574285e-03
## NT5C3B -3.0488301 5.489423e+00 -3.171766 1.914549e-03 6.485732e-03
## EMC6 -3.0477424 8.438409e+00 -3.362569 1.030477e-03 3.978337e-03
## LRRC14 -3.0441813 8.942702e+00 -2.951620 3.788467e-03 1.115195e-02
## GRWD1 -3.0441224 8.859273e+00 -2.467909 1.496912e-02 3.345275e-02
## CLSPN 3.0438972 4.133007e+00 7.189075 5.594415e-11 4.423318e-08
## POLR1E -3.0427989 7.351630e+00 -3.750007 2.712040e-04 1.455421e-03
## ENTR1 -3.0407444 1.042726e+01 -3.436822 8.041899e-04 3.273058e-03
## KIF13B 3.0387414 1.598210e+01 2.618708 9.939223e-03 2.403245e-02
## ZNF621 3.0383520 1.099581e+01 3.102116 2.384955e-03 7.696753e-03
## NRDE2 3.0368610 1.985082e+01 3.148401 2.061779e-03 6.872596e-03
## BCL2L2 3.0327483 1.026324e+01 4.141892 6.360309e-05 4.982382e-04
## HS6ST1 -3.0301646 1.059926e+01 -3.498270 6.531382e-04 2.803554e-03
## YDJC -3.0295896 4.389892e+00 -4.523898 1.413253e-05 1.679477e-04
## DOT1L -3.0281331 8.184520e+00 -3.524551 5.970623e-04 2.619741e-03
## ITPRIPL2 3.0280748 1.257233e+01 2.939805 3.925904e-03 1.148242e-02
## LRRC37A3 3.0263424 6.371172e+00 4.562967 1.205953e-05 1.517164e-04
## PDE2A 3.0209185 4.228940e+00 2.625213 9.761403e-03 2.365554e-02
## IDE 3.0206224 1.526620e+01 3.290289 1.306946e-03 4.794428e-03
## SLC35A3 3.0205389 1.108306e+01 4.012967 1.035926e-04 7.073161e-04
## MED27 -3.0202289 9.809472e+00 -3.333092 1.135856e-03 4.272636e-03
## SHMT1 3.0185374 7.720134e+00 2.812011 5.734326e-03 1.550242e-02
## SQLE 3.0176551 8.555923e+00 3.497216 6.554865e-04 2.811855e-03
## ZNF468 3.0135835 1.291771e+01 2.717843 7.522566e-03 1.916792e-02
## FKBPL -3.0123436 8.103339e+00 -2.908072 4.318030e-03 1.237599e-02
## LENG9 -3.0109796 2.339504e+00 -4.037931 9.433168e-05 6.596543e-04
## MAP2K7 -3.0087135 1.644871e+01 -2.469159 1.491949e-02 3.336699e-02
## KCTD15 -3.0072527 5.033526e+00 -4.947042 2.424886e-06 5.126408e-05
## NCKAP1 3.0026450 6.203910e+00 3.508162 6.314726e-04 2.731315e-03
## N4BP2 3.0019420 7.302057e+00 3.337411 1.119810e-03 4.233646e-03
## FLYWCH2 -3.0014260 2.980148e+00 -4.947728 2.417779e-06 5.126408e-05
## RCN1 -3.0005126 1.288915e+01 -2.858834 4.998059e-03 1.389521e-02
## WDR77 -3.0003661 1.618780e+01 -2.674985 8.493076e-03 2.111253e-02
## FAM193A 2.9958567 1.891574e+01 2.643106 9.286972e-03 2.272405e-02
## ITGA9 2.9947241 3.148738e+00 3.234660 1.565373e-03 5.522108e-03
## TBCEL 2.9901430 7.423975e+00 3.008376 3.187908e-03 9.719431e-03
## ZNF226 -2.9895539 1.282068e+01 -3.854018 1.863284e-04 1.099008e-03
## CCDC134 2.9862891 8.867526e+00 4.465281 1.790060e-05 1.984123e-04
## CDCA8 2.9859430 4.144365e+00 4.751657 5.538806e-06 8.925304e-05
## ASTN2 2.9844848 6.078699e+00 3.384999 9.565002e-04 3.760049e-03
## FAM20B 2.9836352 2.014781e+01 2.807485 5.810503e-03 1.567977e-02
## MSMO1 2.9734887 1.239637e+01 2.417113 1.711616e-02 3.727463e-02
## ITGAV 2.9725752 9.370621e+00 3.319271 1.188668e-03 4.427638e-03
## CEP152 2.9702467 5.899880e+00 4.963687 2.258027e-06 4.910090e-05
## SUGT1 -2.9678709 2.263787e+01 -2.576809 1.115625e-02 2.631525e-02
## HMGB3 2.9661394 6.394433e+00 2.430165 1.653985e-02 3.631296e-02
## MRGBP -2.9656185 1.621016e+01 -2.496286 1.387728e-02 3.148574e-02
## CDPF1 -2.9645431 4.154368e+00 -4.418626 2.157528e-05 2.258453e-04
## USP49 2.9636444 8.151365e+00 3.941451 1.351761e-04 8.545784e-04
## ACVR1 2.9612001 1.197090e+01 3.184976 1.835693e-03 6.272348e-03
## ERCC2 -2.9602565 5.580682e+00 -3.402689 9.017025e-04 3.581943e-03
## NUTM2D -2.9581062 5.869624e+00 -4.062475 8.600150e-05 6.170465e-04
## CDC45 2.9557891 3.003641e+00 5.457605 2.556834e-07 1.093937e-05
## TMEM104 -2.9539517 1.124395e+01 -3.271664 1.388670e-03 5.033505e-03
## TTF2 2.9530586 8.141427e+00 3.673251 3.561434e-04 1.772107e-03
## PEX11B -2.9503357 2.087471e+01 -2.670807 8.593505e-03 2.129078e-02
## PDE6D -2.9484031 2.145613e+01 -2.387397 1.849528e-02 3.967336e-02
## DDX19B -2.9460724 1.611731e+01 -3.022283 3.054805e-03 9.393306e-03
## PICK1 -2.9443686 9.753561e+00 -2.698193 7.954295e-03 2.003354e-02
## NCBP1 2.9442789 2.127427e+01 2.474694 1.470132e-02 3.298480e-02
## C1orf35 -2.9431277 4.197782e+00 -5.199792 8.090002e-07 2.441628e-05
## C12orf4 2.9385820 1.173463e+01 2.852515 5.092102e-03 1.411366e-02
## ZNF507 2.9380131 1.056775e+01 3.490148 6.714466e-04 2.859374e-03
## PIK3R2 -2.9373128 7.528999e+00 -4.117080 6.991909e-05 5.324051e-04
## GTF2E1 2.9361136 1.610145e+01 2.921909 4.142825e-03 1.197220e-02
## GCLC 2.9357107 1.331350e+01 2.716139 7.559145e-03 1.923851e-02
## ANKMY1 -2.9355464 9.051543e+00 -3.680900 3.466643e-04 1.736983e-03
## NUP43 -2.9278322 1.474970e+01 -2.906328 4.340586e-03 1.241962e-02
## MED10 -2.9276329 1.490351e+01 -3.442902 7.878969e-04 3.224450e-03
## CD40 -2.9275083 7.647977e+00 -3.377879 9.794254e-04 3.828604e-03
## TRIAP1 -2.9271505 1.250365e+01 -2.956545 3.732502e-03 1.102278e-02
## RTN2 -2.9264339 7.924557e+00 -2.626250 9.733305e-03 2.361641e-02
## RCE1 -2.9255819 7.901381e+00 -3.614632 4.373737e-04 2.069430e-03
## ARL14EP -2.9226583 1.401954e+01 -2.712296 7.642234e-03 1.940833e-02
## DOK4 -2.9225953 4.788552e+00 -4.856593 3.563247e-06 6.729317e-05
## ANKRD40 2.9213143 1.607301e+01 2.768466 6.506543e-03 1.707248e-02
## DOP1A 2.9201222 9.170055e+00 2.689802 8.145425e-03 2.043248e-02
## YIF1A -2.9197666 7.975858e+00 -2.349648 2.038860e-02 4.293233e-02
## CD1C -2.9194374 5.845133e+00 -2.784424 6.213176e-03 1.649614e-02
## COPS7B -2.9194132 1.925988e+01 -2.418811 1.704018e-02 3.715494e-02
## BUD13 -2.9193032 2.442742e+01 -2.746107 6.938818e-03 1.799178e-02
## FBXO8 2.9169288 1.404209e+01 2.900851 4.412135e-03 1.255167e-02
## TAF1D 2.9159268 1.788070e+01 2.674216 8.511473e-03 2.113611e-02
## RFC4 2.9130032 8.599739e+00 4.013253 1.034819e-04 7.069676e-04
## SNX16 2.9128066 9.649240e+00 2.986169 3.411580e-03 1.025084e-02
## COX19 -2.9110646 1.716230e+01 -3.287454 1.319090e-03 4.827032e-03
## DPM3 -2.9029868 3.044090e+00 -3.512250 6.227192e-04 2.706071e-03
## ZNF408 -2.9019346 7.434030e+00 -3.267495 1.407601e-03 5.089680e-03
## NOP14 -2.8985405 1.566237e+01 -2.481712 1.442882e-02 3.245936e-02
## BICDL1 -2.8960303 6.473885e+00 -2.719108 7.495524e-03 1.913407e-02
## OBSCN -2.8939380 4.263741e+00 -3.160122 1.986651e-03 6.665258e-03
## NCBP2AS2 -2.8927562 9.126740e+00 -3.180234 1.863647e-03 6.344104e-03
## AURKA 2.8877287 4.470423e+00 4.476320 1.712389e-05 1.914131e-04
## KIAA1614 2.8838840 4.105178e+00 5.241683 6.723607e-07 2.161029e-05
## NR2C2AP -2.8834522 6.491272e+00 -3.863794 1.798044e-04 1.075381e-03
## CACNA1I -2.8815643 5.741571e+00 -2.424876 1.677129e-02 3.670406e-02
## ATPAF2 -2.8801499 6.526448e+00 -4.944878 2.447435e-06 5.155697e-05
## YIPF2 -2.8777983 5.261648e+00 -3.452931 7.616954e-04 3.139975e-03
## PPP2R1B 2.8769081 1.189528e+01 4.293528 3.537195e-05 3.231982e-04
## KRIT1 2.8720872 1.518428e+01 2.501398 1.368833e-02 3.116000e-02
## MIB2 -2.8694533 3.460727e+00 -4.598025 1.045192e-05 1.365196e-04
## SETD6 -2.8682491 7.474746e+00 -3.292391 1.298012e-03 4.767549e-03
## ENKD1 -2.8669657 3.950843e+00 -3.954570 1.287672e-04 8.263959e-04
## KATNA1 -2.8647187 1.846442e+01 -2.569992 1.136647e-02 2.675791e-02
## XPO4 2.8643498 1.176345e+01 2.286330 2.395030e-02 4.912669e-02
## ALS2CL -2.8634857 4.226670e+00 -3.306964 1.237614e-03 4.579750e-03
## CCNYL1 2.8633080 1.112069e+01 3.464722 7.319373e-04 3.049096e-03
## MTMR9 2.8630989 1.339593e+01 2.968940 3.594985e-03 1.069657e-02
## PRKAB2 2.8594462 1.409569e+01 2.694693 8.033514e-03 2.021160e-02
## PIGF 2.8563541 1.674583e+01 2.900287 4.419567e-03 1.256980e-02
## COG6 2.8538004 1.039650e+01 3.657928 3.758760e-04 1.842865e-03
## NUP85 -2.8537000 2.246862e+01 -2.646668 9.195056e-03 2.254566e-02
## ZNF211 -2.8515964 1.862264e+01 -2.417854 1.708299e-02 3.722973e-02
## BFAR 2.8444406 2.622119e+01 2.925391 4.099777e-03 1.187964e-02
## ELOA 2.8439112 2.736178e+01 2.401137 1.784579e-02 3.853808e-02
## CHERP -2.8430898 1.143976e+01 -3.309576 1.227070e-03 4.549252e-03
## NUF2 2.8360370 3.343925e+00 3.579742 4.937273e-04 2.267857e-03
## UBE2T 2.8319089 3.633067e+00 2.994377 3.327279e-03 1.005133e-02
## AASDHPPT 2.8270563 1.933586e+01 2.406771 1.758543e-02 3.808677e-02
## DHRS7B -2.8225211 1.486559e+01 -2.387079 1.851057e-02 3.968641e-02
## MMP14 -2.8214807 3.941682e+00 -4.610713 9.922809e-06 1.313443e-04
## PLK4 2.8203420 3.109371e+00 5.837444 4.434557e-08 3.529789e-06
## PIGBOS1 -2.8175361 1.692936e+01 -2.290729 2.368628e-02 4.867774e-02
## NSMCE3 -2.8144705 1.470593e+01 -2.721730 7.439721e-03 1.902028e-02
## G2E3 2.8094753 1.160361e+01 3.208747 1.701355e-03 5.894751e-03
## PRPSAP1 2.8059943 1.801430e+01 2.653327 9.025418e-03 2.219396e-02
## CUL5 2.8055594 1.720670e+01 2.342168 2.078343e-02 4.356322e-02
## ALDH18A1 2.8037833 9.977832e+00 2.746344 6.934097e-03 1.798347e-02
## CLUH -2.8016167 5.924444e+00 -3.163254 1.967014e-03 6.618095e-03
## GANC 2.8006818 1.304719e+01 3.293408 1.293710e-03 4.754695e-03
## NMT2 -2.7996137 7.176702e+00 -2.842202 5.249057e-03 1.447090e-02
## TMEM88 -2.7971213 4.722608e+00 -4.240790 4.344759e-05 3.747552e-04
## IGFBP2 -2.7964541 3.117651e+00 -2.443709 1.596013e-02 3.523492e-02
## PRKCI 2.7962676 1.052824e+01 3.795083 2.306866e-04 1.289931e-03
## THOC1 -2.7951959 1.153976e+01 -3.260486 1.439980e-03 5.187779e-03
## MEIS1 2.7949793 5.378549e+00 3.961613 1.254469e-04 8.107901e-04
## WEE1 2.7925540 4.494965e+00 6.217643 7.233158e-09 1.085889e-06
## ABHD14A -2.7916122 4.115691e+00 -3.560536 5.276039e-04 2.387403e-03
## NSDHL -2.7893203 8.814317e+00 -3.329904 1.147841e-03 4.305313e-03
## ERC1 2.7875880 9.859469e+00 3.699132 3.250233e-04 1.657969e-03
## SLC49A3 -2.7754908 4.653460e+00 -4.153574 6.082206e-05 4.825081e-04
## NUP107 2.7703277 1.780963e+01 2.804769 5.856660e-03 1.578995e-02
## ARMC5 -2.7696331 4.093646e+00 -3.913372 1.499314e-04 9.321105e-04
## FIZ1 -2.7689267 5.056317e+00 -4.434536 2.024724e-05 2.161407e-04
## PI16 -2.7679828 2.062281e+00 -4.460826 1.822363e-05 2.004937e-04
## DTX3 -2.7661779 5.829146e+00 -3.012648 3.146462e-03 9.615461e-03
## C5orf22 2.7656107 1.313112e+01 3.259560 1.444310e-03 5.198353e-03
## ATG16L1 2.7618808 2.406044e+01 2.581662 1.100874e-02 2.600869e-02
## RPUSD3 -2.7617310 9.020370e+00 -3.255068 1.465483e-03 5.255709e-03
## FNIP2 2.7581507 9.233160e+00 2.479468 1.451545e-02 3.262950e-02
## IPO13 -2.7566321 1.629793e+01 -2.298169 2.324549e-02 4.791302e-02
## RFC5 2.7560580 6.068064e+00 6.423250 2.652119e-09 6.167476e-07
## VPS33A 2.7537678 2.945702e+01 2.822950 5.553962e-03 1.513905e-02
## HSD17B8 -2.7517435 3.798992e+00 -3.454629 7.573404e-04 3.129637e-03
## WDR25 -2.7512020 4.539490e+00 -5.678329 9.308619e-08 5.720219e-06
## GEMIN6 -2.7506605 1.045493e+01 -3.738418 2.826632e-04 1.498361e-03
## TUT1 -2.7473080 6.978918e+00 -4.041167 9.319091e-05 6.543778e-04
## NBPF1 2.7413591 8.137959e+00 2.688802 8.168460e-03 2.047409e-02
## WDR76 2.7397378 5.510450e+00 5.689449 8.841624e-08 5.637723e-06
## ALKBH3 -2.7392927 8.083538e+00 -3.321658 1.179384e-03 4.400764e-03
## JMJD7 -2.7388145 5.397760e+00 -4.916619 2.761352e-06 5.616517e-05
## KIF20B 2.7377613 5.553991e+00 4.599853 1.037407e-05 1.359519e-04
## DDX52 2.7358399 1.568359e+01 3.246396 1.507176e-03 5.363069e-03
## PPP1R8 2.7355006 3.369086e+01 2.599504 1.048135e-02 2.502191e-02
## INTS7 2.7334185 8.363574e+00 4.778197 4.956877e-06 8.240204e-05
## NSRP1 2.7329375 1.643866e+01 2.568440 1.141483e-02 2.685576e-02
## HSD3B7 -2.7328890 5.049075e+00 -2.958690 3.708357e-03 1.096239e-02
## KLC4 -2.7252973 1.591845e+01 -2.319816 2.200386e-02 4.581378e-02
## IGFBP4 -2.7227612 2.835312e+00 -3.564431 5.205621e-04 2.365466e-03
## POMT1 -2.7222558 8.146058e+00 -3.035412 2.933869e-03 9.109175e-03
## ASB1 -2.7211903 2.034317e+01 -2.653838 9.012518e-03 2.217143e-02
## CEP55 2.7198690 2.924191e+00 5.505736 2.055050e-07 9.671785e-06
## GATAD1 2.7191931 1.537554e+01 3.521371 6.035979e-04 2.641019e-03
## KCTD11 -2.7187984 1.050792e+01 -3.425413 8.356245e-04 3.374364e-03
## PLEKHF1 -2.7173025 4.088781e+00 -2.780408 6.285847e-03 1.666671e-02
## KCTD18 2.7156731 1.629534e+01 2.669554 8.623832e-03 2.134658e-02
## BATF3 -2.7151912 2.223752e+00 -5.447836 2.672425e-07 1.129948e-05
## SARS2 -2.7148913 4.118629e+00 -3.528609 5.888192e-04 2.595093e-03
## CMC1 -2.7119711 1.313216e+01 -2.355992 2.005890e-02 4.238304e-02
## MCCC2 2.7113729 1.023146e+01 3.135262 2.149124e-03 7.099891e-03
## RRP9 -2.7078435 4.980052e+00 -3.617715 4.326975e-04 2.050257e-03
## ASB6 -2.7077710 2.012116e+01 -2.716333 7.554967e-03 1.923200e-02
## SNRPA1 -2.7059211 1.446240e+01 -2.370870 1.930413e-02 4.109275e-02
## EVI5L -2.7030755 4.592831e+00 -4.710084 6.585655e-06 1.006893e-04
## CAMTA1 -2.7028388 1.058185e+01 -2.911465 4.274442e-03 1.227776e-02
## DSN1 2.7022743 1.080937e+01 4.044762 9.193870e-05 6.482717e-04
## FBXL15 -2.7019790 2.371857e+00 -4.598688 1.042361e-05 1.362999e-04
## WDR36 2.7018798 1.407454e+01 2.454352 1.551729e-02 3.441837e-02
## ZNF8 2.7014472 9.043717e+00 4.122737 6.842832e-05 5.235870e-04
## SGO2 2.7011180 4.123897e+00 5.163817 9.476607e-07 2.714796e-05
## MRPL45 -2.6993239 1.451130e+01 -3.064541 2.681191e-03 8.479888e-03
## DIS3L 2.6978502 1.067322e+01 2.926880 4.081486e-03 1.184049e-02
## BBS10 2.6969322 1.045328e+01 2.380556 1.882637e-02 4.021627e-02
## SMIM19 -2.6965725 1.051331e+01 -3.672907 3.565761e-04 1.773163e-03
## PGM3 2.6963609 9.785178e+00 3.866734 1.778850e-04 1.064975e-03
## MYO1D 2.6886874 3.711571e+00 3.360814 1.036485e-03 3.996329e-03
## CEP44 2.6816548 9.416458e+00 4.348506 2.849663e-05 2.781646e-04
## MFSD11 2.6765015 1.768062e+01 2.418762 1.704240e-02 3.715494e-02
## BRCA2 2.6755579 3.651334e+00 5.683724 9.079126e-08 5.707961e-06
## NPRL3 -2.6690903 8.948226e+00 -2.408251 1.751754e-02 3.799526e-02
## THAP6 2.6651801 1.172890e+01 2.655914 8.960295e-03 2.206584e-02
## ZNF875 -2.6615821 9.775785e+00 -3.170258 1.923749e-03 6.513179e-03
## NCAPH 2.6615427 2.934950e+00 6.131285 1.097343e-08 1.384520e-06
## TMEM62 2.6599604 1.265611e+01 2.312328 2.242661e-02 4.648368e-02
## MRM2 -2.6596693 1.210393e+01 -3.453667 7.598040e-04 3.135447e-03
## DONSON 2.6586793 6.118128e+00 6.308067 4.661321e-09 8.681495e-07
## ZWILCH 2.6561804 4.909032e+00 5.973992 2.327325e-08 2.339159e-06
## NAT1 2.6493864 1.120642e+01 2.618494 9.945109e-03 2.403551e-02
## KIZ 2.6483360 1.313133e+01 3.599689 4.607220e-04 2.157190e-03
## TMEM39B -2.6469658 7.144007e+00 -4.292826 3.546936e-05 3.236295e-04
## ZNF385D -2.6469225 5.222245e+00 -4.021512 1.003290e-04 6.874071e-04
## EFNB1 -2.6461332 3.525066e+00 -5.481482 2.294519e-07 1.027585e-05
## URGCP -2.6455805 6.727349e+00 -3.775440 2.475807e-04 1.360661e-03
## ICOSLG -2.6450817 4.295330e+00 -4.053473 8.897172e-05 6.329962e-04
## CDR2 2.6416127 1.259112e+01 2.416505 1.714345e-02 3.730050e-02
## HIBCH 2.6408177 7.869389e+00 2.955850 3.740351e-03 1.104239e-02
## MED21 2.6405298 1.232508e+01 3.040138 2.891436e-03 8.995916e-03
## DCLRE1A 2.6404387 7.064350e+00 3.711512 3.110656e-04 1.606656e-03
## GGT7 -2.6401014 5.028157e+00 -3.563146 5.228759e-04 2.371378e-03
## IGHMBP2 -2.6374068 1.056043e+01 -2.926734 4.083272e-03 1.184049e-02
## ODR4 2.6343544 1.227280e+01 3.161327 1.979078e-03 6.641729e-03
## MRPS26 -2.6304738 7.574787e+00 -2.711264 7.664701e-03 1.944873e-02
## MTA1 -2.6265305 8.067803e+00 -3.572225 5.067343e-04 2.318622e-03
## ZNF768 -2.6259042 9.028955e+00 -3.319003 1.189713e-03 4.430139e-03
## CEP104 2.6258137 1.183220e+01 3.561643 5.255930e-04 2.379211e-03
## DUS3L -2.6235353 3.230816e+00 -4.636641 8.920940e-06 1.211940e-04
## ZNF611 2.6232493 8.239436e+00 2.723873 7.394412e-03 1.894119e-02
## TRAPPC2B -2.6231829 3.184848e+00 -6.401862 2.945940e-09 6.352518e-07
## TGS1 2.6184385 1.334297e+01 3.001560 3.255076e-03 9.896233e-03
## HELB 2.6167706 3.936331e+00 4.104466 7.335614e-05 5.499392e-04
## NDUFC1 -2.6158929 8.786406e+00 -3.753998 2.673606e-04 1.442282e-03
## EBPL -2.6146094 1.060662e+01 -2.618441 9.946568e-03 2.403551e-02
## RARG -2.6124087 7.731286e+00 -2.943910 3.877640e-03 1.136930e-02
## RITA1 -2.6082753 6.178398e+00 -3.571736 5.075919e-04 2.321650e-03
## FAM114A2 2.6039910 1.559514e+01 2.390708 1.833691e-02 3.938351e-02
## CEMP1 -2.6033010 5.007336e+00 -2.995712 3.313746e-03 1.002066e-02
## C17orf80 2.6003067 1.375346e+01 3.518337 6.098953e-04 2.661905e-03
## FRK 2.5998172 5.208222e+00 3.653134 3.822594e-04 1.864143e-03
## DUSP13 2.5986828 3.363361e+00 2.683751 8.285802e-03 2.069848e-02
## TMEM18 -2.5969256 9.872214e+00 -3.763521 2.583978e-04 1.406289e-03
## TCEANC2 2.5965306 1.543131e+01 2.777056 6.347100e-03 1.678183e-02
## SMN1 2.5959867 1.036015e+01 2.817792 5.638353e-03 1.531387e-02
## UMAD1 2.5936358 1.364854e+01 2.342326 2.077503e-02 4.356322e-02
## STRBP 2.5936299 8.940492e+00 2.933765 3.997915e-03 1.165567e-02
## TJAP1 -2.5916445 1.175996e+01 -3.104137 2.369919e-03 7.656561e-03
## TIMM44 -2.5900395 7.465000e+00 -2.999845 3.272184e-03 9.930425e-03
## DHX37 -2.5896223 5.786447e+00 -3.539228 5.677508e-04 2.527599e-03
## CENPK 2.5890984 3.789117e+00 4.508003 1.507088e-05 1.760992e-04
## ACAD9 -2.5869570 1.236727e+01 -2.629909 9.634815e-03 2.343304e-02
## MFSD6 2.5862432 1.397862e+01 2.497999 1.381373e-02 3.137921e-02
## SH3TC2 2.5797805 3.758019e+00 4.638647 8.847627e-06 1.206905e-04
## MLH1 2.5797254 1.870455e+01 2.668663 8.645438e-03 2.138817e-02
## RPAIN -2.5779395 1.572142e+01 -2.549825 1.200938e-02 2.797707e-02
## NR6A1 -2.5773479 8.241806e+00 -2.820382 5.595833e-03 1.523335e-02
## ZDHHC8 -2.5771994 3.354689e+00 -4.885950 3.146276e-06 6.157564e-05
## TICAM1 -2.5740704 6.145860e+00 -3.681241 3.462478e-04 1.736983e-03
## KIF15 2.5727173 2.471721e+00 5.410688 3.160439e-07 1.257812e-05
## MRPL2 -2.5667659 6.783673e+00 -3.505854 6.364662e-04 2.749393e-03
## SEMA6B -2.5663299 1.846020e+00 -2.928241 4.064839e-03 1.180354e-02
## ANKRD54 -2.5658354 8.073713e+00 -3.888336 1.643707e-04 1.000737e-03
## TTC19 -2.5657594 1.305885e+01 -2.910478 4.287085e-03 1.230216e-02
## HCFC2 2.5649317 8.464388e+00 3.846970 1.911706e-04 1.117439e-03
## DUSP12 -2.5627153 1.244491e+01 -3.610052 4.444080e-04 2.094032e-03
## NUDT14 -2.5621227 2.040977e+00 -4.428686 2.072614e-05 2.196712e-04
## GEN1 2.5591369 5.313267e+00 5.974927 2.317014e-08 2.339159e-06
## FHIT -2.5572173 3.570145e+00 -3.048931 2.813986e-03 8.799110e-03
## MCM8 2.5551131 4.723672e+00 5.355632 4.047574e-07 1.472522e-05
## RAD51 2.5516240 2.763694e+00 5.154884 9.855276e-07 2.786683e-05
## TWSG1 2.5515053 6.287963e+00 4.118795 6.946378e-05 5.294605e-04
## NIFK -2.5508180 1.760604e+01 -2.608617 1.022085e-02 2.453831e-02
## MRPS35 -2.5487258 1.763253e+01 -2.449638 1.571207e-02 3.477886e-02
## SLC35B3 2.5454568 1.728169e+01 2.299281 2.318024e-02 4.779841e-02
## UEVLD 2.5391617 1.384850e+01 2.388741 1.843082e-02 3.955668e-02
## NIPAL3 2.5388671 1.313330e+01 2.456009 1.544938e-02 3.429982e-02
## UBXN2A 2.5367650 8.049690e+00 4.508225 1.505734e-05 1.760992e-04
## SLC25A30 2.5357265 8.382502e+00 3.264284 1.422349e-03 5.133616e-03
## LYPLAL1 -2.5342949 1.627181e+01 -2.402463 1.778422e-02 3.844010e-02
## NRF1 -2.5306357 2.468651e+01 -2.446936 1.582468e-02 3.498894e-02
## PCYOX1L -2.5299147 1.018455e+01 -3.125799 2.214144e-03 7.264108e-03
## INTS12 2.5295901 1.725507e+01 2.467981 1.496628e-02 3.345271e-02
## SLC25A26 -2.5248056 7.561977e+00 -2.528443 1.272648e-02 2.930797e-02
## DBF4 2.5239047 6.344090e+00 3.279923 1.351860e-03 4.915103e-03
## C8orf33 -2.5235760 1.431302e+01 -2.537164 1.242948e-02 2.874121e-02
## LILRB5 -2.5191901 5.902708e+00 -2.533841 1.254192e-02 2.895604e-02
## AURKB 2.5184477 3.815974e+00 3.367007 1.015427e-03 3.935556e-03
## PPARD -2.5174268 1.077193e+01 -3.320811 1.182671e-03 4.410841e-03
## POLH 2.5173275 1.322299e+01 3.769720 2.527168e-04 1.381845e-03
## NAXD -2.5169738 1.338206e+01 -2.823588 5.543603e-03 1.512321e-02
## CD160 -2.5158968 5.254157e+00 -2.356186 2.004889e-02 4.237744e-02
## ACACA 2.5127323 7.632913e+00 3.803543 2.237532e-04 1.261270e-03
## SMAP1 -2.5127059 2.645970e+01 -2.520145 1.301497e-02 2.988529e-02
## WDR7 2.5119901 1.093938e+01 3.133229 2.162938e-03 7.139563e-03
## IFT80 2.5055135 8.677430e+00 3.168624 1.933761e-03 6.543339e-03
## ZMYND15 -2.5021739 3.878085e+00 -3.895709 1.599866e-04 9.800832e-04
## AIFM3 -2.5010192 2.507852e+00 -4.787413 4.769010e-06 8.041483e-05
## IDUA -2.5003543 2.836378e+00 -4.202280 5.043371e-05 4.205702e-04
## FRA10AC1 -2.5002054 7.471636e+00 -4.444728 1.943826e-05 2.099615e-04
## MRPS9 -2.4990391 1.051346e+01 -2.836567 5.336683e-03 1.465852e-02
## AP4M1 -2.4988284 5.696577e+00 -5.300914 5.168553e-07 1.771649e-05
## RNF144A 2.4979983 1.045950e+01 2.583951 1.093976e-02 2.589215e-02
## YRDC 2.4972049 9.707811e+00 3.562907 5.233071e-04 2.371496e-03
## ATG4A 2.4900611 1.336205e+01 3.166622 1.946096e-03 6.568212e-03
## P4HTM -2.4896348 5.995981e+00 -3.542584 5.612425e-04 2.506151e-03
## CMC2 2.4881868 1.266003e+01 2.419050 1.702954e-02 3.714055e-02
## SPRTN 2.4873061 9.633731e+00 2.967583 3.609814e-03 1.072186e-02
## ZNF691 -2.4871377 7.326318e+00 -4.073897 8.236929e-05 5.967622e-04
## PSAT1 2.4866298 4.080667e+00 5.223537 7.285384e-07 2.267839e-05
## HAUS6 2.4857776 1.388787e+01 2.773214 6.417964e-03 1.689988e-02
## NDC1 2.4831382 8.953929e+00 3.689147 3.367116e-04 1.702217e-03
## OMG 2.4826611 4.402234e+00 2.728845 7.290231e-03 1.871070e-02
## FASTKD1 2.4823995 1.053862e+01 3.364072 1.025354e-03 3.965016e-03
## MTRF1 2.4768319 7.471736e+00 5.799997 5.285147e-08 3.967205e-06
## LRRC45 -2.4758203 3.421982e+00 -4.152466 6.108075e-05 4.835578e-04
## FDXR -2.4748882 3.060171e+00 -4.012790 1.036612e-04 7.073773e-04
## SLC37A1 2.4739114 1.032149e+01 3.345390 1.090721e-03 4.151460e-03
## POLR2J2 2.4696784 8.874426e+00 2.675711 8.475719e-03 2.107380e-02
## WIZ -2.4662222 6.936220e+00 -4.281756 3.703871e-05 3.331290e-04
## TIGAR 2.4643825 1.743032e+01 2.347299 2.051189e-02 4.313316e-02
## TAFA2 2.4642651 4.147867e+00 2.605364 1.031315e-02 2.468993e-02
## EXO5 2.4642011 6.732986e+00 3.633679 4.092307e-04 1.958626e-03
## MRAS -2.4626984 3.335592e+00 -4.187412 5.340936e-05 4.404972e-04
## HMG20A 2.4618304 1.444773e+01 2.599693 1.047587e-02 2.501386e-02
## SCAPER 2.4600127 8.222480e+00 3.332914 1.136522e-03 4.273669e-03
## SLC7A1 2.4598730 7.062949e+00 3.450003 7.692574e-04 3.164548e-03
## PEX1 2.4577835 1.211659e+01 2.607127 1.026304e-02 2.460473e-02
## C16orf91 -2.4556166 4.667212e+00 -4.260300 4.027282e-05 3.545922e-04
## PCYT1B 2.4552536 3.967098e+00 4.267225 3.920038e-05 3.466939e-04
## GLI1 2.4533403 3.458689e+00 3.573197 5.050345e-04 2.312629e-03
## PYROXD1 -2.4532480 1.986844e+01 -2.883823 4.641557e-03 1.307532e-02
## TMEM161A -2.4470655 2.388716e+00 -5.050864 1.550789e-06 3.807941e-05
## TACO1 -2.4467724 8.590247e+00 -3.165279 1.954412e-03 6.585037e-03
## TMEM80 -2.4463297 1.341032e+01 -2.701044 7.890298e-03 1.989348e-02
## RAB2B 2.4440496 1.148864e+01 3.534806 5.764355e-04 2.555710e-03
## ARHGAP6 2.4396188 5.115979e+00 3.510968 6.254513e-04 2.713066e-03
## TRNT1 2.4362001 1.629360e+01 2.630906 9.608120e-03 2.337963e-02
## ZNF407 2.4343994 9.356130e+00 3.056344 2.750179e-03 8.654052e-03
## UBFD1 2.4328692 1.061324e+01 2.647945 9.162313e-03 2.248862e-02
## ELP6 -2.4318822 9.360740e+00 -2.601044 1.043692e-02 2.493088e-02
## SCN9A 2.4292678 3.471534e+00 2.764534 6.580740e-03 1.722524e-02
## SLC29A3 -2.4244392 4.857206e+00 -4.562174 1.209853e-05 1.517164e-04
## CDCA7 2.4237822 3.371571e+00 5.098271 1.262161e-06 3.319120e-05
## C1orf50 -2.4213611 9.110777e+00 -2.730017 7.265877e-03 1.866031e-02
## SERAC1 2.4188217 7.581262e+00 3.502402 6.440050e-04 2.769361e-03
## ORC1 2.4141185 2.570500e+00 5.960035 2.486714e-08 2.433778e-06
## C16orf74 -2.4136127 2.209318e+00 -3.852024 1.876860e-04 1.103597e-03
## GABPB1 2.4129685 1.739452e+01 2.541357 1.228894e-02 2.848286e-02
## ARL17B 2.4109838 9.646725e+00 2.528994 1.270753e-02 2.928138e-02
## SLC25A22 -2.4098254 4.013721e+00 -3.653013 3.824223e-04 1.864171e-03
## SNX22 -2.4094513 6.937930e+00 -2.544247 1.219287e-02 2.830998e-02
## FN3KRP -2.4092952 9.358461e+00 -2.668228 8.656012e-03 2.140540e-02
## CPNE8 2.4090485 8.536716e+00 2.465727 1.505619e-02 3.360500e-02
## DBT 2.4079009 8.330932e+00 3.878133 1.706277e-04 1.029387e-03
## ZNF765 2.4047150 7.979432e+00 3.927696 1.422225e-04 8.915057e-04
## PIDD1 -2.4035073 2.507303e+00 -4.086658 7.848493e-05 5.750593e-04
## LRCH1 2.4010952 8.424754e+00 3.429142 8.252253e-04 3.341328e-03
## RCC1L -2.4007991 1.065291e+01 -2.369035 1.939586e-02 4.123968e-02
## CDC23 2.3930212 1.199490e+01 2.632365 9.569194e-03 2.330882e-02
## ZNF506 2.3892049 1.059132e+01 2.420266 1.697532e-02 3.705422e-02
## PAPLN 2.3883817 5.702490e+00 2.720398 7.468029e-03 1.907621e-02
## NAE1 2.3879035 1.552913e+01 2.820385 5.595786e-03 1.523335e-02
## ORC3 2.3777970 1.192844e+01 3.051385 2.792712e-03 8.759818e-03
## SCRN3 2.3773872 1.065063e+01 2.853472 5.077761e-03 1.408090e-02
## APBA3 -2.3765745 5.240749e+00 -3.743097 2.779825e-04 1.479081e-03
## COBLL1 2.3741513 3.479418e+00 3.857094 1.842517e-04 1.092818e-03
## MALSU1 -2.3738683 1.167633e+01 -2.474982 1.469003e-02 3.296660e-02
## LRMDA -2.3715807 4.899770e+00 -3.740932 2.801397e-04 1.488556e-03
## LIN7C 2.3715357 1.433878e+01 3.039967 2.892964e-03 8.998308e-03
## C12orf45 2.3705430 1.306772e+01 2.364562 1.962102e-02 4.162155e-02
## NEMP1 2.3700273 7.893184e+00 3.252799 1.476287e-03 5.280084e-03
## C9orf40 2.3695777 6.742911e+00 2.300846 2.308871e-02 4.767272e-02
## TMEM138 -2.3678890 1.263962e+01 -2.897831 4.452041e-03 1.263044e-02
## MYBBP1A -2.3663891 6.380048e+00 -2.942508 3.894067e-03 1.140154e-02
## HDHD2 -2.3636933 1.701176e+01 -2.430064 1.654422e-02 3.631583e-02
## MMUT 2.3627843 1.345620e+01 2.346155 2.057215e-02 4.324453e-02
## TMEM107 -2.3613726 7.840540e+00 -3.685813 3.407016e-04 1.712170e-03
## TSPYL4 2.3599219 1.031825e+01 2.752755 6.807636e-03 1.770367e-02
## ANGEL2 2.3582393 1.761940e+01 2.557480 1.176159e-02 2.748620e-02
## HSCB -2.3577480 5.028321e+00 -5.130989 1.094218e-06 3.046345e-05
## NEO1 2.3571987 4.629023e+00 2.560632 1.166091e-02 2.729394e-02
## TOP1MT -2.3550993 5.481799e+00 -2.435256 1.631977e-02 3.589624e-02
## FBXL19 -2.3535440 9.718664e+00 -2.620209 9.897923e-03 2.394236e-02
## DBP -2.3534387 3.415151e+00 -4.606006 1.011602e-05 1.331588e-04
## SLC66A1 -2.3499737 5.241048e+00 -3.844978 1.925611e-04 1.123119e-03
## SLC22A16 2.3478285 3.172906e+00 3.496578 6.569119e-04 2.816694e-03
## RBM15 2.3445698 1.072733e+01 2.470417 1.486965e-02 3.329525e-02
## ZNF788P 2.3424057 3.710909e+00 3.778808 2.446026e-04 1.347891e-03
## MSH2 2.3386511 9.829185e+00 2.862481 4.944513e-03 1.377218e-02
## GPATCH11 2.3384648 9.434440e+00 2.561728 1.162608e-02 2.724467e-02
## PIAS3 2.3345307 1.113880e+01 3.365863 1.019286e-03 3.944121e-03
## EFEMP2 -2.3314777 6.392319e+00 -2.376507 1.902479e-02 4.056707e-02
## INTS9 -2.3308106 1.000025e+01 -4.518145 1.446543e-05 1.707064e-04
## NT5DC3 2.3293488 6.803999e+00 2.792731 6.065282e-03 1.619047e-02
## SETD1A -2.3289242 9.069894e+00 -2.613494 1.008386e-02 2.430290e-02
## H3C6 2.3273720 4.574164e+00 2.678274 8.414749e-03 2.096176e-02
## NIPA1 2.3254084 5.963572e+00 3.933316 1.393024e-04 8.774746e-04
## TBCK 2.3176350 8.811330e+00 2.813532 5.708925e-03 1.544384e-02
## TCEA2 -2.3108691 2.814431e+00 -4.460897 1.821841e-05 2.004937e-04
## RTN1 -2.3102654 7.194776e+00 -2.489470 1.413283e-02 3.195718e-02
## NDUFAF7 -2.3088407 1.187214e+01 -2.676624 8.453959e-03 2.102851e-02
## PDIA5 2.3078739 5.246741e+00 3.092575 2.457159e-03 7.899677e-03
## ZNF197 2.3043630 9.191447e+00 2.817767 5.638757e-03 1.531387e-02
## ZBTB21 2.3030445 8.360560e+00 3.140748 2.112247e-03 7.001469e-03
## KLHL20 2.3024608 6.873662e+00 3.592102 4.730219e-04 2.199230e-03
## ECHDC2 -2.3014647 5.134585e+00 -2.840920 5.268875e-03 1.451541e-02
## UROS -2.2973207 9.239829e+00 -2.425610 1.673899e-02 3.664841e-02
## DIMT1 2.2950976 8.100835e+00 3.001212 3.258546e-03 9.904243e-03
## EPB41L5 2.2887025 4.358731e+00 4.699202 6.889858e-06 1.033043e-04
## IFI27L1 2.2879450 4.431149e+00 2.720630 7.463085e-03 1.906881e-02
## ZNF512B -2.2877561 4.074057e+00 -3.997990 1.095590e-04 7.353534e-04
## PPM1L 2.2873372 9.154108e+00 3.091456 2.465762e-03 7.923319e-03
## NKD1 2.2854434 3.876576e+00 3.581651 4.904743e-04 2.258195e-03
## ARHGEF5 2.2851282 3.774047e+00 4.864197 3.450376e-06 6.610897e-05
## SNAPC4 -2.2841174 5.430458e+00 -4.450897 1.896381e-05 2.069159e-04
## NLGN3 2.2825159 7.157466e+00 2.793311 6.055086e-03 1.617053e-02
## TRAF4 -2.2817052 4.973751e+00 -2.899380 4.431540e-03 1.258876e-02
## SNUPN -2.2799738 1.352912e+01 -2.571831 1.130941e-02 2.663416e-02
## ZNF48 -2.2759088 3.972516e+00 -4.055346 8.834572e-05 6.292975e-04
## FBF1 -2.2749811 3.855134e+00 -3.517510 6.116227e-04 2.667836e-03
## SLC26A2 2.2718294 9.960958e+00 2.730138 7.263374e-03 1.865792e-02
## CMAS 2.2701554 1.506844e+01 2.348792 2.043343e-02 4.299866e-02
## WDR18 -2.2677813 3.384955e+00 -3.548446 5.500426e-04 2.465457e-03
## TXLNG 2.2672278 9.740697e+00 2.480839 1.446248e-02 3.252302e-02
## ATAD3A -2.2661655 3.543895e+00 -2.979686 3.479554e-03 1.039746e-02
## CILK1 2.2652015 9.893442e+00 2.987829 3.394375e-03 1.020981e-02
## MIER2 -2.2648354 4.815209e+00 -4.831150 3.967613e-06 7.195091e-05
## CHAC2 2.2640700 2.937801e+00 4.205421 4.982567e-05 4.170307e-04
## CRAMP1 2.2613844 1.181142e+01 2.466965 1.500675e-02 3.351790e-02
## ADCK5 -2.2584395 2.614462e+00 -4.356060 2.765894e-05 2.717772e-04
## CRELD1 -2.2554930 9.180591e+00 -2.628601 9.669918e-03 2.349144e-02
## LLGL2 -2.2554136 3.625928e+00 -2.923525 4.122796e-03 1.192885e-02
## HDGFL3 2.2551642 9.306207e+00 2.383628 1.867703e-02 3.997647e-02
## OSGIN1 -2.2550714 2.115793e+00 -5.423194 2.987137e-07 1.211995e-05
## EEF2KMT -2.2526150 5.516544e+00 -3.246632 1.506028e-03 5.360913e-03
## TIGD5 -2.2467777 2.591716e+00 -4.906444 2.883695e-06 5.767389e-05
## ERO1B 2.2452120 1.353535e+01 2.743417 6.992554e-03 1.811131e-02
## RHOBTB2 -2.2441986 7.848496e+00 -2.735803 7.146681e-03 1.842877e-02
## ZNF367 2.2398107 3.446861e+00 6.713459 6.277822e-10 2.326718e-07
## SH2D3A -2.2392742 2.920412e+00 -4.714638 6.462244e-06 9.966477e-05
## TMEM186 -2.2388228 8.079584e+00 -3.384895 9.568313e-04 3.760049e-03
## MTERF4 -2.2381917 1.346292e+01 -2.641421 9.330751e-03 2.280295e-02
## ISCA2 -2.2361011 1.495407e+01 -2.487859 1.419384e-02 3.204624e-02
## TMEM128 -2.2348685 9.579223e+00 -4.094262 7.625414e-05 5.646715e-04
## ZCCHC14 2.2346879 8.135402e+00 2.905886 4.346312e-03 1.243164e-02
## BRD1 -2.2343358 1.482579e+01 -2.895281 4.486010e-03 1.271304e-02
## FLT1 2.2282088 4.549040e+00 2.670366 8.604158e-03 2.131272e-02
## FANCD2 2.2203892 1.171078e+01 2.314867 2.228247e-02 4.624958e-02
## SERPINH1 -2.2141131 2.296805e+00 -4.723096 6.238936e-06 9.736023e-05
## ZNF500 -2.2127428 4.895895e+00 -4.450705 1.897843e-05 2.069159e-04
## B4GALNT2 2.2122145 5.062191e+00 2.640117 9.364757e-03 2.287663e-02
## SKA1 2.2088568 2.946798e+00 4.506889 1.513884e-05 1.762745e-04
## SCOC 2.2086540 1.593377e+01 2.779442 6.303443e-03 1.669842e-02
## TAF13 2.2066859 6.980751e+00 2.354117 2.015584e-02 4.252772e-02
## EMC8 -2.2039547 1.396832e+01 -2.493212 1.399202e-02 3.169920e-02
## TMEM69 2.2002109 1.481066e+01 2.916479 4.210784e-03 1.213173e-02
## RGS12 -2.1992539 2.385566e+00 -5.544251 1.724125e-07 8.555702e-06
## PBX3 2.1973857 1.315494e+01 2.412501 1.732404e-02 3.763060e-02
## CBFA2T2 2.1970804 1.133471e+01 2.931538 4.024775e-03 1.172533e-02
## ZBTB20 2.1970038 6.400153e+00 3.006165 3.209554e-03 9.777885e-03
## CEP85 2.1967271 1.216090e+01 2.326897 2.161061e-02 4.510470e-02
## ABI2 2.1950543 7.786202e+00 2.647368 9.177102e-03 2.251560e-02
## OCRL 2.1949172 5.708875e+00 4.012128 1.039185e-04 7.087256e-04
## CDKN3 2.1914203 3.118757e+00 2.522393 1.293622e-02 2.973324e-02
## WRAP53 -2.1901442 5.915849e+00 -3.443131 7.872876e-04 3.223069e-03
## XPA -2.1859868 7.300014e+00 -4.339720 2.950164e-05 2.849263e-04
## ZNF574 -2.1798261 5.547733e+00 -4.124559 6.795458e-05 5.209705e-04
## LTK -2.1778184 3.393492e+00 -2.630826 9.610277e-03 2.338008e-02
## HDAC11 -2.1765971 4.338856e+00 -4.300997 3.435212e-05 3.174456e-04
## NLE1 -2.1764823 4.429862e+00 -3.981485 1.165137e-04 7.698343e-04
## SASS6 2.1723624 4.424492e+00 5.526221 1.871980e-07 9.136494e-06
## TTC21B 2.1698076 7.534113e+00 3.377036 9.821722e-04 3.836812e-03
## PPP1R37 -2.1697986 3.768274e+00 -4.524992 1.407003e-05 1.674564e-04
## GPER1 -2.1695375 2.359528e+00 -3.259216 1.445918e-03 5.198353e-03
## SEPSECS 2.1652458 9.833919e+00 3.766039 2.560757e-04 1.396349e-03
## PIGN 2.1635817 8.850118e+00 3.912578 1.503703e-04 9.342022e-04
## NKAIN3 2.1622655 5.275168e+00 3.502887 6.429409e-04 2.768801e-03
## POGLUT3 2.1604359 5.595443e+00 4.240429 4.350861e-05 3.750088e-04
## SCAF4 2.1583997 1.302500e+01 2.708855 7.717338e-03 1.954413e-02
## TP53RK -2.1559033 1.288815e+01 -2.582796 1.097451e-02 2.595886e-02
## PLXNA3 -2.1547391 6.851060e+00 -2.777633 6.336521e-03 1.676732e-02
## ISOC1 2.1542475 7.637516e+00 2.682096 8.324569e-03 2.078437e-02
## SUCLA2 2.1536578 1.166638e+01 2.450906 1.565948e-02 3.468187e-02
## SLC35C1 -2.1530691 1.319819e+01 -2.385682 1.857778e-02 3.979995e-02
## FBXO25 -2.1519797 1.207744e+01 -2.310342 2.253989e-02 4.667768e-02
## CEP128 2.1516037 2.654485e+00 4.843597 3.764519e-06 6.987041e-05
## SLC25A32 2.1504094 1.008751e+01 3.185468 1.832816e-03 6.264321e-03
## KIF23 2.1493496 3.069673e+00 5.432745 2.861079e-07 1.186447e-05
## DYRK1B -2.1493389 6.251720e+00 -3.551897 5.435484e-04 2.440925e-03
## C1orf198 2.1477097 6.082813e+00 2.903126 4.382280e-03 1.249514e-02
## ATP6V0A2 2.1462794 1.695438e+01 2.701263 7.885405e-03 1.988537e-02
## MED9 -2.1457106 6.636698e+00 -4.554155 1.249973e-05 1.545977e-04
## ZCWPW1 -2.1446401 6.955573e+00 -3.017683 3.098256e-03 9.504739e-03
## SLC25A19 -2.1436822 7.353874e+00 -2.609206 1.020422e-02 2.451328e-02
## ZNF133 -2.1405154 7.075448e+00 -3.552891 5.416902e-04 2.436075e-03
## DNPH1 -2.1403359 2.217869e+00 -4.157130 5.999894e-05 4.786689e-04
## PRR11 2.1372078 1.070429e+01 2.522372 1.293698e-02 2.973324e-02
## NUGGC 2.1340626 3.148243e+00 3.329360 1.149897e-03 4.311660e-03
## LAGE3 -2.1322357 3.435749e+00 -2.875115 4.763058e-03 1.335774e-02
## MED6 -2.1313192 1.610671e+01 -3.487901 6.765971e-04 2.877175e-03
## GPR180 2.1305003 5.340497e+00 4.154106 6.069826e-05 4.821710e-04
## ABCB7 -2.1290720 1.423068e+01 -3.266790 1.410828e-03 5.098736e-03
## FUZ -2.1258574 6.359326e+00 -2.749044 6.880592e-03 1.785862e-02
## LARP1B 2.1246121 5.579827e+00 3.962779 1.249051e-04 8.086107e-04
## IFRD2 -2.1226948 5.925424e+00 -2.443413 1.597259e-02 3.525027e-02
## DGKG 2.1203118 7.272686e+00 3.563541 5.221622e-04 2.371378e-03
## FAHD2A -2.1199321 6.909538e+00 -2.331173 2.137609e-02 4.468107e-02
## TMEM243 -2.1182077 1.558741e+01 -2.673135 8.537405e-03 2.119607e-02
## C4orf46 2.1164555 6.413515e+00 3.590137 4.762581e-04 2.210732e-03
## CCNB1IP1 -2.1148113 1.117792e+01 -2.524490 1.286319e-02 2.959407e-02
## TG 2.1122858 2.999186e+00 3.503093 6.424883e-04 2.767858e-03
## FOXP4 -2.1077380 3.184719e+00 -4.681211 7.422882e-06 1.076925e-04
## GTF3C4 2.1057898 8.958395e+00 3.281058 1.346870e-03 4.899963e-03
## PSMG4 -2.1048655 4.468802e+00 -4.550114 1.270679e-05 1.559355e-04
## ZBED4 2.1028359 1.134551e+01 2.816005 5.667856e-03 1.537881e-02
## SAV1 2.1025306 6.493361e+00 3.539718 5.667967e-04 2.524299e-03
## DHX33 2.1009941 7.645431e+00 4.339413 2.953736e-05 2.850391e-04
## MED12L 2.0950467 2.302674e+00 3.947793 1.320411e-04 8.431606e-04
## MMAB -2.0908636 4.138288e+00 -2.905211 4.355086e-03 1.243747e-02
## LSR -2.0907058 2.717078e+00 -4.130615 6.640263e-05 5.120515e-04
## MYO9A 2.0893416 8.313552e+00 2.318592 2.207249e-02 4.588602e-02
## WASF1 2.0847603 3.100667e+00 4.496346 1.579698e-05 1.801724e-04
## ANKMY2 2.0843543 9.701918e+00 3.670943 3.590514e-04 1.782413e-03
## MAN1C1 -2.0838782 5.655100e+00 -2.636134 9.469294e-03 2.309394e-02
## ZNF761 2.0838284 7.829581e+00 3.139298 2.121935e-03 7.023764e-03
## MRM3 -2.0837616 5.350658e+00 -3.348404 1.079918e-03 4.120924e-03
## PANX1 2.0827706 7.663442e+00 3.674485 3.545980e-04 1.767527e-03
## C22orf39 2.0810473 2.507049e+01 2.283797 2.410352e-02 4.935562e-02
## HAUS2 2.0808507 1.140757e+01 3.328866 1.151766e-03 4.317304e-03
## CENPO 2.0716943 6.808000e+00 2.503331 1.361751e-02 3.104049e-02
## FBLN5 -2.0711999 2.666329e+00 -3.857015 1.843047e-04 1.092818e-03
## CENPBD1 -2.0691170 9.399546e+00 -3.156472 2.009771e-03 6.732811e-03
## DNLZ -2.0671083 2.137907e+00 -3.649323 3.874065e-04 1.882278e-03
## LTA -2.0617646 3.263284e+00 -4.245250 4.270140e-05 3.702037e-04
## VMA21 -2.0604101 1.933178e+01 -2.421361 1.692667e-02 3.697740e-02
## LRP8 2.0593338 5.351551e+00 4.612778 9.839208e-06 1.303832e-04
## ZNF808 2.0592079 6.967464e+00 2.883608 4.644517e-03 1.307787e-02
## MPV17L2 -2.0590213 5.120855e+00 -3.388874 9.442361e-04 3.722952e-03
## TMIGD2 -2.0568080 3.438034e+00 -2.582635 1.097938e-02 2.596364e-02
## IFT43 -2.0551794 3.631648e+00 -4.300683 3.439440e-05 3.174456e-04
## TIRAP 2.0545645 9.808354e+00 2.536720 1.244447e-02 2.876466e-02
## SPATA5L1 2.0537636 1.079640e+01 2.379315 1.888700e-02 4.033125e-02
## LDLRAD3 2.0524236 4.434473e+00 2.912783 4.257626e-03 1.224726e-02
## IRF2BP1 -2.0519010 3.893644e+00 -5.276325 5.766081e-07 1.920947e-05
## SCRIB -2.0507384 3.799350e+00 -3.806081 2.217125e-04 1.252134e-03
## PER2 2.0503025 7.395293e+00 3.233193 1.572793e-03 5.536669e-03
## TMEM35B -2.0502206 1.474854e+01 -2.490087 1.410953e-02 3.193492e-02
## LCLAT1 2.0500682 7.711663e+00 3.367478 1.013842e-03 3.932036e-03
## CDC25A 2.0500545 2.056359e+00 5.444507 2.712957e-07 1.140981e-05
## UQCC3 -2.0485777 2.492238e+00 -3.665660 3.657933e-04 1.805372e-03
## LYRM9 -2.0469356 4.286510e+00 -4.696676 6.962401e-06 1.037363e-04
## MMP17 -2.0462003 1.189793e+00 -6.307037 4.684787e-09 8.681495e-07
## FOCAD 2.0453001 1.268748e+01 2.501674 1.367820e-02 3.114292e-02
## BCS1L -2.0429801 8.742880e+00 -2.461788 1.521447e-02 3.388613e-02
## MELK 2.0419725 1.925849e+00 6.469179 2.115301e-09 5.311473e-07
## MBD5 2.0404222 9.170422e+00 2.698737 7.942067e-03 2.000699e-02
## WDHD1 2.0382599 2.838481e+00 6.266438 5.708444e-09 9.535513e-07
## PYCR1 2.0378865 2.020009e+00 3.031270 2.971536e-03 9.187282e-03
## XPNPEP3 2.0360481 9.121096e+00 4.685352 7.296748e-06 1.065764e-04
## DVL2 -2.0359048 1.237332e+01 -2.316378 2.219710e-02 4.609658e-02
## PDHX 2.0354111 7.971595e+00 3.567920 5.143276e-04 2.343421e-03
## PCYOX1 2.0318156 1.019511e+01 2.465422 1.506838e-02 3.362390e-02
## ZNF277 -2.0310001 1.797207e+01 -2.281829 2.422309e-02 4.952350e-02
## ZSCAN2 -2.0308129 5.631078e+00 -4.105764 7.299506e-05 5.491654e-04
## QSER1 2.0285239 6.886135e+00 2.577903 1.112285e-02 2.624169e-02
## MAP2K5 -2.0283438 5.856772e+00 -5.681044 9.192416e-08 5.707961e-06
## ZNF419 -2.0258473 6.193570e+00 -4.177792 5.542373e-05 4.536408e-04
## ZNF623 2.0243668 7.597434e+00 2.912049 4.266988e-03 1.226229e-02
## TRAPPC2 2.0229021 1.772602e+01 2.977908 3.498414e-03 1.044592e-02
## HACD3 2.0200432 1.073915e+01 2.615849 1.001828e-02 2.417432e-02
## FBXO45 2.0165148 1.239601e+01 2.284046 2.408838e-02 4.934166e-02
## CHAMP1 2.0139197 7.345854e+00 3.093355 2.451186e-03 7.882610e-03
## DNM3 2.0139131 5.609791e+00 2.819852 5.604502e-03 1.524527e-02
## SLC35F2 2.0132321 3.301884e+00 4.737650 5.872095e-06 9.327545e-05
## KCNN3 2.0097121 1.832696e+00 3.193090 1.788767e-03 6.149211e-03
## CTPS1 2.0084800 8.866075e+00 3.290026 1.308071e-03 4.796740e-03
## AGAP5 2.0080399 7.263153e+00 2.564198 1.154793e-02 2.709366e-02
## ELMO3 -2.0043686 4.025029e+00 -2.900095 4.422099e-03 1.257399e-02
## C16orf87 2.0023882 6.091570e+00 3.858905 1.830392e-04 1.090329e-03
## CCDC18 1.9990234 5.339632e+00 5.108334 1.208003e-06 3.243060e-05
## CARNMT1 1.9982341 6.683046e+00 3.300795 1.262855e-03 4.658619e-03
## NAA35 1.9971431 7.548764e+00 4.133471 6.568283e-05 5.078216e-04
## SAC3D1 -1.9968958 2.035092e+00 -3.671955 3.577744e-04 1.778375e-03
## MEGF8 -1.9959098 5.122226e+00 -4.694550 7.024022e-06 1.045231e-04
## SS18L1 1.9950289 9.890588e+00 4.128522 6.693507e-05 5.151525e-04
## PLEKHA8 1.9905113 8.093103e+00 3.283441 1.336458e-03 4.877043e-03
## MAPK7 -1.9884463 7.408218e+00 -3.724879 2.966334e-04 1.550495e-03
## PLD6 1.9880299 4.416462e+00 4.097800 7.523716e-05 5.610474e-04
## ZSCAN30 1.9866628 6.901201e+00 2.587021 1.084788e-02 2.572088e-02
## FAM156A -1.9864417 5.038230e+00 -2.363346 1.968266e-02 4.169996e-02
## SPDL1 1.9832129 3.972153e+00 5.508613 2.028318e-07 9.660984e-06
## TSNARE1 -1.9796029 3.936729e+00 -3.921371 1.455790e-04 9.096770e-04
## SNX25 1.9792712 5.475031e+00 3.325229 1.165627e-03 4.359613e-03
## MRPS17 -1.9775579 7.608810e+00 -2.626547 9.725284e-03 2.361144e-02
## AFF2 1.9770246 2.363112e+00 3.274563 1.375641e-03 4.992380e-03
## RAD51AP1 1.9734394 2.255727e+00 4.545461 1.294924e-05 1.581648e-04
## TMEM42 -1.9704403 6.129691e+00 -2.801973 5.904531e-03 1.587521e-02
## ZFAND4 1.9669273 5.305844e+00 5.289848 5.429594e-07 1.850431e-05
## C22orf34 -1.9652040 3.797665e+00 -2.773381 6.414879e-03 1.689551e-02
## AGPAT5 1.9649047 9.237360e+00 2.590976 1.073052e-02 2.549359e-02
## PRPF4 1.9648960 1.785673e+01 3.415606 8.635641e-04 3.467119e-03
## CIP2A 1.9642488 2.647639e+00 5.457799 2.554590e-07 1.093937e-05
## KIAA1841 1.9632166 5.410219e+00 3.764928 2.570980e-04 1.400635e-03
## POLA1 1.9617574 4.077027e+00 5.026644 1.722090e-06 4.101203e-05
## DNA2 1.9602293 3.229567e+00 6.063049 1.522303e-08 1.733962e-06
## YBEY -1.9573900 5.374931e+00 -3.156311 2.010799e-03 6.732811e-03
## FAHD2B -1.9570692 3.477513e+00 -3.194916 1.778359e-03 6.124083e-03
## RABL3 1.9555459 1.204163e+01 3.000194 3.268699e-03 9.924928e-03
## ZNF436 1.9545043 7.393578e+00 3.141460 2.107499e-03 6.989635e-03
## SLC12A2 1.9521873 3.596070e+00 5.423482 2.983259e-07 1.211995e-05
## CBR3 -1.9498406 1.579246e+00 -4.153887 6.074921e-05 4.822527e-04
## SNAP47 -1.9486765 7.187783e+00 -3.238540 1.545907e-03 5.468074e-03
## KCNMB1 -1.9443480 4.568279e+00 -4.085440 7.884803e-05 5.768894e-04
## CISD1 -1.9433583 6.009505e+00 -3.230663 1.585663e-03 5.570485e-03
## ABHD8 -1.9424871 2.969135e+00 -3.596725 4.654909e-04 2.173512e-03
## DPH2 -1.9416961 9.237798e+00 -2.309126 2.260953e-02 4.677565e-02
## PEX14 -1.9415267 3.735753e+00 -4.501968 1.544270e-05 1.781619e-04
## TRMT13 1.9411253 8.742033e+00 2.501999 1.366628e-02 3.112773e-02
## AUH 1.9408760 6.933930e+00 3.848456 1.901398e-04 1.113609e-03
## EPHX2 -1.9404789 4.417657e+00 -2.461274 1.523523e-02 3.391325e-02
## B3GALNT2 1.9389182 7.077720e+00 3.126160 2.211634e-03 7.258925e-03
## ATRIP -1.9388807 8.778928e+00 -2.423871 1.681556e-02 3.677531e-02
## DNAL4 -1.9380348 8.689553e+00 -3.549525 5.480039e-04 2.458142e-03
## BBS5 -1.9372667 6.521254e+00 -3.531024 5.839630e-04 2.578317e-03
## MZT2A -1.9352195 1.805651e+00 -2.918708 4.182764e-03 1.206410e-02
## LIG3 1.9344768 1.172082e+01 2.283442 2.412500e-02 4.939108e-02
## YPEL1 1.9339231 7.419667e+00 2.560201 1.167464e-02 2.731530e-02
## TMEM120B -1.9290643 7.747859e+00 -2.695434 8.016686e-03 2.017782e-02
## FCGBP -1.9289498 2.585408e+00 -2.331582 2.135381e-02 4.464238e-02
## SLC15A2 1.9267988 8.377752e+00 2.708224 7.731188e-03 1.956302e-02
## TUBGCP4 1.9256961 5.749259e+00 3.496140 6.578931e-04 2.816827e-03
## POLR1C -1.9250283 7.249118e+00 -3.050335 2.801798e-03 8.774576e-03
## FKRP -1.9249620 5.317226e+00 -6.353832 3.727709e-09 7.756251e-07
## TTK 1.9247270 2.108625e+00 5.001766 1.917168e-06 4.405196e-05
## ADCK1 -1.9185063 3.334364e+00 -3.753306 2.680228e-04 1.444230e-03
## TMEM212 1.9182633 5.080624e+00 3.409457 8.815264e-04 3.526106e-03
## BCL11A -1.9181980 5.220450e+00 -3.428944 8.257761e-04 3.341421e-03
## PSPH 1.9179237 4.751889e+00 2.684501 8.268282e-03 2.066456e-02
## TRPT1 -1.9175771 5.435570e+00 -3.393418 9.300414e-04 3.673090e-03
## GLT8D1 1.9143812 2.335021e+01 2.364561 1.962109e-02 4.162155e-02
## CMC4 -1.9100847 4.140022e+00 -4.573077 1.157291e-05 1.471975e-04
## POP7 -1.9082684 5.072606e+00 -3.033081 2.955017e-03 9.150847e-03
## SC5D 1.9076351 9.730385e+00 2.893579 4.508800e-03 1.276238e-02
## NUP155 1.9071190 1.010517e+01 3.124391 2.223972e-03 7.288286e-03
## H2BC11 1.9068829 3.239165e+00 4.702241 6.803550e-06 1.027895e-04
## PDP2 1.9058762 4.398036e+00 5.006637 1.877359e-06 4.348726e-05
## ALKBH2 -1.9051349 3.203358e+00 -4.540767 1.319840e-05 1.598265e-04
## ZNF775 -1.9003864 2.188327e+00 -5.803801 5.191905e-08 3.922038e-06
## LZTS2 -1.8997899 4.465167e+00 -3.411791 8.746682e-04 3.501034e-03
## NSG1 -1.8989964 3.531187e+00 -2.426142 1.671560e-02 3.661875e-02
## FLJ44635 -1.8929923 3.438260e+00 -3.960600 1.259193e-04 8.127672e-04
## GINS1 1.8918746 1.987370e+00 5.954564 2.552087e-08 2.441007e-06
## MTMR2 1.8912538 7.173805e+00 3.839306 1.965723e-04 1.138910e-03
## CC2D2B 1.8910277 5.099503e+00 2.425744 1.673310e-02 3.664841e-02
## ZC3H10 -1.8902471 1.320082e+01 -2.400903 1.785673e-02 3.855467e-02
## NR1H3 -1.8901949 3.587953e+00 -3.908287 1.527628e-04 9.447412e-04
## MRPS28 -1.8883627 8.535328e+00 -2.618254 9.951740e-03 2.404148e-02
## INPP5E -1.8839671 3.934240e+00 -4.081094 8.015637e-05 5.850182e-04
## AAMDC -1.8838557 4.168536e+00 -3.546449 5.538347e-04 2.478671e-03
## SAMD10 -1.8786056 2.040856e+00 -3.892279 1.620121e-04 9.894250e-04
## PUS10 1.8769418 6.077285e+00 3.336769 1.122181e-03 4.239905e-03
## ZNF236 1.8763794 5.345087e+00 3.748785 2.723916e-04 1.460222e-03
## FGFR1 1.8741320 5.117522e+00 2.888836 4.572897e-03 1.292222e-02
## DLAT 1.8730737 9.339011e+00 2.772755 6.426491e-03 1.691482e-02
## STIL 1.8691193 2.017819e+00 6.251008 6.152767e-09 9.861056e-07
## NBEAL1 1.8688954 5.194572e+00 3.700294 3.236884e-04 1.655194e-03
## CAV2 1.8680751 2.579547e+00 4.000278 1.086268e-04 7.301388e-04
## NOC4L -1.8676721 2.475631e+00 -3.940070 1.358687e-04 8.580418e-04
## ALS2 1.8674444 1.020565e+01 2.411953 1.734888e-02 3.767077e-02
## ZNF414 -1.8673017 1.781093e+00 -4.957421 2.319481e-06 4.983522e-05
## C9orf64 1.8667482 8.613999e+00 3.184108 1.840777e-03 6.284288e-03
## NF2 -1.8644975 1.108642e+01 -2.321589 2.190479e-02 4.565743e-02
## ID3 -1.8624713 1.593617e+00 -5.361354 3.945090e-07 1.444098e-05
## SMARCAL1 -1.8623098 1.124412e+01 -2.437198 1.623653e-02 3.574628e-02
## DNAJC19 -1.8620803 8.439006e+00 -2.786644 6.173338e-03 1.641978e-02
## RGS6 1.8609106 3.861306e+00 3.547101 5.525938e-04 2.474986e-03
## KCTD13 -1.8581571 8.575395e+00 -2.735835 7.146029e-03 1.842877e-02
## M1AP 1.8532108 2.552213e+00 2.919469 4.173233e-03 1.203954e-02
## RAB19 1.8505428 2.951988e+00 3.150362 2.049030e-03 6.839713e-03
## CDCA2 1.8502639 1.762604e+00 5.340346 4.334297e-07 1.557720e-05
## KNSTRN 1.8482798 7.894371e+00 2.596703 1.056261e-02 2.517535e-02
## ZNRF1 -1.8468644 4.057024e+00 -3.161927 1.975313e-03 6.634725e-03
## INTS2 1.8459172 6.623384e+00 2.827844 5.474949e-03 1.497185e-02
## TCEA3 -1.8456645 2.591549e+00 -3.331541 1.141674e-03 4.286303e-03
## C1orf54 -1.8436385 1.723211e+00 -6.443943 2.395402e-09 5.797849e-07
## ZNF615 1.8418366 7.225470e+00 3.009091 3.180933e-03 9.705191e-03
## FAM43A -1.8413725 4.893110e+00 -3.694894 3.299370e-04 1.675108e-03
## PLK1 1.8408027 2.521290e+00 4.057089 8.776692e-05 6.259265e-04
## C5 1.8366054 4.165035e+00 3.830927 2.026433e-04 1.166123e-03
## INTS13 1.8348958 1.106256e+01 2.779879 6.295476e-03 1.668104e-02
## SEC14L5 1.8339915 3.350264e+00 3.120514 2.251250e-03 7.367501e-03
## DCAF17 1.8332401 7.498758e+00 2.388619 1.843666e-02 3.956193e-02
## ZNF497 -1.8326106 3.232523e+00 -3.768049 2.542361e-04 1.387640e-03
## FARS2 -1.8292102 7.004654e+00 -2.369381 1.937854e-02 4.121024e-02
## UNK -1.8288672 5.764356e+00 -4.007847 1.055965e-04 7.164615e-04
## FANCG 1.8275073 6.806998e+00 2.813465 5.710055e-03 1.544384e-02
## RHPN1 -1.8270425 1.631164e+00 -4.028126 9.787051e-05 6.748513e-04
## DARS2 1.8266163 6.751483e+00 4.374712 2.569095e-05 2.566930e-04
## BARD1 1.8264791 3.664282e+00 5.098761 1.259472e-06 3.319120e-05
## ZP3 -1.8177086 3.124754e+00 -2.498929 1.377930e-02 3.130700e-02
## BRD3OS -1.8164236 7.790026e+00 -2.777042 6.347362e-03 1.678183e-02
## NBPF3 1.8164163 5.432229e+00 2.793894 6.044846e-03 1.615410e-02
## MTHFSD -1.8105265 7.413862e+00 -3.760370 2.613312e-04 1.414408e-03
## C1QTNF6 -1.8104707 3.743056e+00 -3.945614 1.331103e-04 8.465218e-04
## FAHD1 -1.8061582 5.384156e+00 -3.597459 4.643053e-04 2.168878e-03
## CDKL1 1.8059761 5.002712e+00 4.423815 2.113314e-05 2.223949e-04
## MRPL19 1.8031791 1.176687e+01 2.436237 1.627767e-02 3.582356e-02
## SMIM8 1.8024843 6.595449e+00 2.412736 1.731339e-02 3.761436e-02
## COA6 -1.8016002 1.065373e+01 -2.373705 1.916321e-02 4.084019e-02
## TAF4B 1.8012898 3.161009e+00 3.991013 1.124491e-04 7.492398e-04
## ALKBH4 -1.7981591 5.552355e+00 -4.862832 3.470367e-06 6.638477e-05
## LRRC40 1.7968421 7.298671e+00 2.517316 1.311465e-02 3.008505e-02
## ZNF480 -1.7945971 1.053665e+01 -2.485968 1.426577e-02 3.215356e-02
## SLC27A2 1.7923461 1.900271e+00 3.335831 1.125656e-03 4.248975e-03
## ZDHHC21 1.7909200 5.760158e+00 2.892752 4.519922e-03 1.279081e-02
## ZNF212 -1.7904646 9.367830e+00 -3.187169 1.822899e-03 6.234022e-03
## MYL5 -1.7831986 2.187574e+00 -4.068464 8.407845e-05 6.061826e-04
## LLGL1 -1.7792009 6.318037e+00 -3.057315 2.741922e-03 8.639530e-03
## DPH1 -1.7776030 6.084637e+00 -2.776994 6.348240e-03 1.678183e-02
## PAOX -1.7761168 2.008571e+00 -4.836209 3.883823e-06 7.128343e-05
## GPR68 -1.7756428 4.611133e+00 -2.489108 1.414651e-02 3.197633e-02
## KCTD3 1.7690349 4.933285e+00 4.023184 9.970217e-05 6.839027e-04
## KHK -1.7674164 2.326318e+00 -3.187584 1.820487e-03 6.229364e-03
## CDK3 -1.7619590 8.252463e+00 -2.487496 1.420765e-02 3.206372e-02
## PSRC1 -1.7599342 8.164901e+00 -2.612398 1.011448e-02 2.435463e-02
## RCL1 1.7577068 4.011113e+00 2.740846 7.044255e-03 1.821340e-02
## CCDC84 -1.7520323 7.097132e+00 -2.934419 3.990063e-03 1.163850e-02
## ADGRL1 -1.7513208 4.228283e+00 -2.474972 1.469043e-02 3.296660e-02
## PAXIP1 1.7510690 6.051895e+00 4.009764 1.048419e-04 7.137918e-04
## WDR83 -1.7503642 3.226678e+00 -4.210053 4.894197e-05 4.107939e-04
## PROCA1 -1.7501562 3.907384e+00 -3.253883 1.471117e-03 5.272725e-03
## RTEL1 -1.7477054 5.039526e+00 -2.804686 5.858071e-03 1.579017e-02
## TRIP13 1.7472186 1.759339e+00 5.755811 6.496048e-08 4.625039e-06
## TTI1 1.7472163 1.076233e+01 3.259121 1.446364e-03 5.198353e-03
## TRIP6 -1.7424244 4.341131e+00 -3.131592 2.174127e-03 7.164422e-03
## POLD1 -1.7371908 4.016221e+00 -2.621232 9.869870e-03 2.388911e-02
## FIGNL1 1.7353844 4.554028e+00 3.761404 2.603653e-04 1.410872e-03
## PKIG -1.7345673 5.241906e+00 -2.318368 2.208505e-02 4.589669e-02
## TMEM209 1.7309682 1.012231e+01 2.457364 1.539397e-02 3.421524e-02
## RAD51D 1.7304084 8.382773e+00 2.800052 5.937608e-03 1.593935e-02
## SCFD2 1.7300420 7.682012e+00 2.869040 4.849531e-03 1.355218e-02
## SLC24A3 1.7297585 4.343573e+00 2.410730 1.740444e-02 3.777757e-02
## SDHAF4 -1.7216713 5.064403e+00 -3.233292 1.572288e-03 5.536619e-03
## NELFA -1.7209781 4.133731e+00 -4.730287 6.054986e-06 9.562201e-05
## CLCC1 1.7204779 8.700595e+00 2.955792 3.741006e-03 1.104239e-02
## CHST7 -1.7197851 4.284618e+00 -2.993010 3.341181e-03 1.009076e-02
## NOTCH4 -1.7196422 1.992060e+00 -6.605678 1.075543e-09 3.196327e-07
## ZNRD2 -1.7124680 2.601572e+00 -2.945982 3.853493e-03 1.131808e-02
## ZBTB42 -1.7070583 1.962875e+00 -4.372291 2.593854e-05 2.582964e-04
## NIP7 1.7063325 1.508204e+01 3.162824 1.969702e-03 6.619627e-03
## MMP19 -1.7061443 5.630683e+00 -2.593703 1.065027e-02 2.534355e-02
## ASB3 1.7042169 8.578420e+00 3.188776 1.813574e-03 6.209290e-03
## SPC25 1.7033845 2.387813e+00 4.681300 7.420154e-06 1.076925e-04
## USP53 1.6964256 5.756835e+00 2.345226 2.062124e-02 4.333237e-02
## ERMARD -1.6950464 9.150698e+00 -2.614362 1.005964e-02 2.426425e-02
## SLX4IP 1.6941441 6.511272e+00 2.929091 4.054476e-03 1.178003e-02
## ANXA9 1.6923129 4.519119e+00 3.564892 5.197337e-04 2.362607e-03
## ZBTB45 -1.6908543 2.702421e+00 -4.391051 2.407822e-05 2.449123e-04
## ZNF841 1.6879886 6.951769e+00 2.995723 3.313635e-03 1.002066e-02
## ACY1 -1.6859617 2.749381e+00 -4.860936 3.498354e-06 6.666886e-05
## CENPJ 1.6829801 3.495916e+00 5.491047 2.196980e-07 9.981245e-06
## HABP4 -1.6821256 5.216105e+00 -2.462666 1.517905e-02 3.382630e-02
## ZNF707 -1.6814185 4.475382e+00 -4.832218 3.949786e-06 7.175901e-05
## TMEM223 -1.6811414 4.657895e+00 -3.215353 1.665682e-03 5.800055e-03
## LIN52 1.6800454 6.449285e+00 4.160788 5.916344e-05 4.734672e-04
## MEF2B -1.6777632 2.260429e+00 -3.613660 4.388575e-04 2.074472e-03
## SNAPC5 -1.6774575 1.206340e+01 -2.526130 1.280632e-02 2.948040e-02
## TMEM159 1.6772220 1.023573e+01 2.483310 1.436741e-02 3.234576e-02
## GPD1L 1.6695762 9.288984e+00 2.469589 1.490241e-02 3.334136e-02
## NEK2 1.6667928 1.748322e+00 4.602438 1.026489e-05 1.346699e-04
## CLOCK 1.6579399 7.306462e+00 2.342117 2.078619e-02 4.356322e-02
## PRIM1 1.6568999 5.484404e+00 3.902853 1.558444e-04 9.576758e-04
## SNTA1 -1.6565328 1.745718e+00 -4.105293 7.312591e-05 5.494391e-04
## KCNA3 1.6547960 4.606723e+00 2.397662 1.800813e-02 3.882099e-02
## ZNF747 -1.6535502 7.011110e+00 -3.428631 8.266423e-04 3.343168e-03
## PPM1H 1.6528340 4.843851e+00 2.723362 7.405206e-03 1.895656e-02
## C8orf82 -1.6472834 2.961072e+00 -3.729859 2.914207e-04 1.532025e-03
## GINS4 1.6467463 2.236294e+00 6.670102 7.799426e-10 2.720623e-07
## MUSTN1 -1.6452186 3.420320e+00 -2.529579 1.268743e-02 2.924075e-02
## GTF2H3 1.6442410 8.981806e+00 2.422162 1.689115e-02 3.690661e-02
## TRIT1 -1.6439997 7.341735e+00 -2.868818 4.852727e-03 1.355791e-02
## MCAT -1.6400899 3.748407e+00 -3.486741 6.792695e-04 2.884402e-03
## SPHK2 -1.6385931 2.405806e+00 -5.162358 9.537460e-07 2.725645e-05
## NAA30 1.6380120 1.022050e+01 2.428084 1.663055e-02 3.648508e-02
## ZNF213 -1.6354467 6.368852e+00 -2.708591 7.723117e-03 1.955042e-02
## GAMT -1.6348638 1.547255e+00 -3.937539 1.371456e-04 8.656452e-04
## TCEAL4 -1.6303660 7.000191e+00 -2.641714 9.323121e-03 2.278900e-02
## S100A13 -1.6281425 2.825308e+00 -3.747969 2.731864e-04 1.460801e-03
## LRRC23 -1.6275718 2.637460e+00 -4.572901 1.158123e-05 1.471975e-04
## ARNTL2 1.6254848 2.754961e+00 5.109852 1.200030e-06 3.234627e-05
## SPC24 1.6253742 2.788181e+00 2.704337 7.816959e-03 1.974215e-02
## MTLN -1.6250066 2.240073e+00 -3.045743 2.841836e-03 8.867187e-03
## LOC100421372 1.6246537 1.044805e+01 2.905843 4.346880e-03 1.243164e-02
## WDR24 -1.6240500 2.938215e+00 -4.136095 6.502776e-05 5.051089e-04
## PHYH -1.6233779 3.697303e+00 -5.624091 1.195591e-07 6.817166e-06
## PPARA 1.6232595 6.965596e+00 2.762830 6.613139e-03 1.729859e-02
## C8orf58 -1.6225199 6.774849e+00 -2.674283 8.509880e-03 2.113611e-02
## UBE2D4 -1.6208241 5.316323e+00 -3.366624 1.016718e-03 3.936753e-03
## CLUAP1 -1.6190210 5.147531e+00 -2.869462 4.843480e-03 1.353846e-02
## FRS3 -1.6154114 2.447842e+00 -5.547113 1.701729e-07 8.480045e-06
## FADS3 -1.6154024 3.447368e+00 -3.966553 1.231670e-04 7.995408e-04
## THG1L -1.6142887 6.978189e+00 -2.824807 5.523858e-03 1.508472e-02
## ZFP64 -1.6134231 3.132364e+00 -3.393104 9.310171e-04 3.675720e-03
## RIMKLB 1.6106790 3.286410e+00 4.392012 2.398648e-05 2.443983e-04
## ALPK3 1.6034788 2.586811e+00 2.855689 5.044671e-03 1.400510e-02
## FBXL18 -1.6014990 6.821226e+00 -3.637051 4.044305e-04 1.941135e-03
## RAB11FIP3 -1.5986037 5.800835e+00 -2.499274 1.376657e-02 3.129005e-02
## ENO3 -1.5982391 3.130735e+00 -3.247446 1.502072e-03 5.352938e-03
## PCBD1 -1.5956702 4.670637e+00 -4.002926 1.075573e-04 7.249142e-04
## RFC3 1.5948278 3.856438e+00 4.047589 9.096553e-05 6.425558e-04
## FRMD4A 1.5924681 3.503061e+00 3.367768 1.012868e-03 3.929542e-03
## UCK2 1.5912703 7.303900e+00 2.846097 5.189274e-03 1.433942e-02
## TAF1B 1.5883314 5.208159e+00 3.249820 1.490586e-03 5.319997e-03
## SMIM4 -1.5859546 2.872167e+00 -3.666861 3.642504e-04 1.800073e-03
## ANKS3 -1.5841889 2.066478e+00 -4.252275 4.155079e-05 3.628810e-04
## ZFYVE21 -1.5798169 9.759003e+00 -2.501854 1.367159e-02 3.113384e-02
## CRACR2A 1.5766216 3.480265e+00 3.308852 1.229987e-03 4.557216e-03
## CBX8 -1.5761780 2.949253e+00 -4.666245 7.896495e-06 1.116239e-04
## GTSE1 1.5757133 1.650940e+00 5.215494 7.548771e-07 2.314214e-05
## P2RY12 1.5751063 5.732731e+00 2.409501 1.746044e-02 3.789219e-02
## NPIPB11 1.5746951 3.952164e+00 3.317424 1.195895e-03 4.451764e-03
## OTUD6B 1.5744009 5.811019e+00 2.930375 4.038867e-03 1.175128e-02
## CBY1 -1.5729893 4.702091e+00 -4.587877 1.089463e-05 1.407519e-04
## ST7 1.5723022 6.817270e+00 3.199179 1.754286e-03 6.048207e-03
## RAB39B 1.5660490 6.234750e+00 2.662783 8.789379e-03 2.168998e-02
## EPS8L2 -1.5642661 2.161680e+00 -3.487055 6.785449e-04 2.883390e-03
## PPAT 1.5631748 3.558442e+00 4.030726 9.691984e-05 6.715676e-04
## ZMYND19 -1.5627471 3.781144e+00 -3.125262 2.217887e-03 7.274375e-03
## TRDMT1 1.5625966 7.586136e+00 2.785862 6.187344e-03 1.644228e-02
## RFX1 -1.5622241 5.288178e+00 -3.075660 2.590163e-03 8.257886e-03
## TEDC1 -1.5602125 1.382271e+00 -3.461024 7.411487e-04 3.075724e-03
## RMI2 1.5593410 2.761673e+00 3.143455 2.094262e-03 6.951568e-03
## NOP16 -1.5585522 6.223517e+00 -2.686572 8.220076e-03 2.056753e-02
## CCDC127 -1.5575635 8.400089e+00 -3.051535 2.791414e-03 8.758245e-03
## FAM189B -1.5571781 6.273706e+00 -2.690895 8.120296e-03 2.038669e-02
## SH3D21 -1.5556451 3.131447e+00 -4.254895 4.112928e-05 3.594644e-04
## SLC39A14 1.5556357 3.344150e+00 3.462601 7.372069e-04 3.063516e-03
## ELOVL6 1.5550032 3.519954e+00 3.881763 1.683760e-04 1.017808e-03
## TOGARAM1 1.5547149 4.533942e+00 3.644931 3.934204e-04 1.902834e-03
## ZNF616 1.5535799 5.664482e+00 3.711210 3.113992e-04 1.606656e-03
## ZNF853 -1.5530426 2.134514e+00 -4.045793 9.158269e-05 6.461456e-04
## BICRA -1.5516085 5.170974e+00 -3.153878 2.026351e-03 6.775451e-03
## FHL2 1.5513968 4.269777e+00 3.000636 3.264287e-03 9.914071e-03
## PARPBP 1.5485638 2.206733e+00 5.887332 3.507003e-08 3.035989e-06
## PINX1 -1.5474718 4.533616e+00 -2.906713 4.335594e-03 1.241370e-02
## PARP2 1.5474263 5.247251e+00 3.135679 2.146300e-03 7.092536e-03
## SWSAP1 -1.5450864 3.381582e+00 -3.059754 2.721288e-03 8.581353e-03
## C6orf136 -1.5407226 6.670025e+00 -3.250619 1.486738e-03 5.309461e-03
## ALG12 -1.5395762 9.022112e+00 -2.296111 2.336670e-02 4.812103e-02
## FAM207A -1.5369570 2.279916e+00 -3.346884 1.085352e-03 4.135005e-03
## FBXW9 -1.5358004 1.491701e+00 -4.312836 3.279315e-05 3.067246e-04
## HMBOX1 1.5339861 4.292516e+00 3.655112 3.796133e-04 1.855053e-03
## IPPK 1.5332565 6.941924e+00 3.533119 5.797823e-04 2.568628e-03
## GALE -1.5320697 6.604650e+00 -2.712616 7.635293e-03 1.939485e-02
## PDIK1L 1.5318697 6.609427e+00 3.073923 2.604190e-03 8.284791e-03
## TNFRSF10A 1.5309971 6.817997e+00 2.447862 1.578602e-02 3.490997e-02
## MTRES1 -1.5301975 4.660758e+00 -4.076563 8.154278e-05 5.922213e-04
## SLC10A7 1.5300349 5.177957e+00 3.245750 1.510326e-03 5.372666e-03
## ZNF778 1.5294536 6.761855e+00 4.076916 8.143389e-05 5.917929e-04
## MRPL57 -1.5294258 6.744878e+00 -2.905127 4.356179e-03 1.243747e-02
## ALMS1 1.5268987 5.039630e+00 2.448644 1.575341e-02 3.485086e-02
## CCDC65 -1.5240830 3.227501e+00 -2.793048 6.059708e-03 1.617923e-02
## CDYL 1.5239562 1.183027e+01 2.754770 6.768336e-03 1.762293e-02
## NREP 1.5224703 8.542821e+00 2.569425 1.138412e-02 2.679414e-02
## DAAM1 1.5199866 5.636923e+00 3.273976 1.378269e-03 5.000389e-03
## C11orf49 -1.5188982 3.427721e+00 -4.628564 9.222052e-06 1.240063e-04
## ZNF836 -1.5154889 7.651357e+00 -3.178140 1.876115e-03 6.379221e-03
## TEF -1.5152454 3.927073e+00 -2.646861 9.190092e-03 2.253902e-02
## ZNF341 -1.5149286 6.068680e+00 -3.280094 1.351107e-03 4.913868e-03
## GLI4 -1.5148487 1.514855e+00 -5.322625 4.691532e-07 1.651085e-05
## ZBTB26 1.5134803 8.262354e+00 2.333803 2.123299e-02 4.441328e-02
## ESPL1 1.5117093 1.738439e+00 4.551888 1.261547e-05 1.556616e-04
## R3HDM1 1.5111989 1.206262e+01 2.321342 2.191857e-02 4.567046e-02
## ARG2 1.5086781 3.299904e+00 2.645811 9.217101e-03 2.259037e-02
## TMEM8B -1.5086613 2.113129e+00 -4.970545 2.192568e-06 4.815816e-05
## PWWP3A -1.5084150 7.168334e+00 -2.701973 7.869543e-03 1.984959e-02
## TMEM192 1.5054535 1.293951e+01 3.168029 1.937417e-03 6.547770e-03
## MIGA1 1.5031425 7.134786e+00 2.683727 8.286373e-03 2.069848e-02
## UBE2E2 -1.5028827 5.685146e+00 -3.287587 1.318520e-03 4.826433e-03
## TTC27 -1.5021895 7.394919e+00 -2.532747 1.257914e-02 2.903066e-02
## ESF1 1.5006847 5.234544e+00 2.814161 5.698458e-03 1.543360e-02
## RPP25 -1.5001772 2.577725e+00 -3.338989 1.113999e-03 4.217395e-03
## COG8 1.4990891 1.378825e+01 3.445862 7.800750e-04 3.197957e-03
## DNAJC30 -1.4968267 2.862615e+00 -3.942424 1.346908e-04 8.537857e-04
## PLPP3 1.4937005 3.012651e+00 2.943597 3.881299e-03 1.137721e-02
## DNAAF4 -1.4907632 3.362708e+00 -3.032129 2.963693e-03 9.167815e-03
## H2BC8 1.4903402 2.516798e+00 4.065530 8.501523e-05 6.119512e-04
## SKA3 1.4881282 1.473196e+00 5.452153 2.620723e-07 1.114042e-05
## CCDC9B 1.4876555 3.939992e+00 3.146317 2.075408e-03 6.910258e-03
## ZNF669 1.4871368 6.245737e+00 3.388417 9.456746e-04 3.727385e-03
## ZNF668 -1.4853667 1.976076e+00 -3.906099 1.539969e-04 9.487806e-04
## SERPINF1 -1.4835964 3.423952e+00 -3.161554 1.977652e-03 6.640702e-03
## CASTOR1 -1.4824259 1.811159e+00 -5.040255 1.623679e-06 3.946073e-05
## PBLD 1.4817514 3.704078e+00 4.226875 4.585729e-05 3.909630e-04
## HSF4 -1.4789330 2.233804e+00 -4.531501 1.370387e-05 1.638386e-04
## HELLS 1.4788739 1.789444e+00 5.862457 3.942833e-08 3.233976e-06
## SLC25A51 1.4774012 3.039906e+00 2.896358 4.471640e-03 1.267535e-02
## SPICE1 1.4768232 3.300865e+00 4.790003 4.717480e-06 8.015662e-05
## ZNF346 1.4737083 1.263160e+01 2.409334 1.746809e-02 3.790185e-02
## PXMP4 -1.4731594 6.311813e+00 -2.899933 4.424236e-03 1.257705e-02
## NPFF -1.4714101 3.625030e+00 -2.759514 6.676589e-03 1.744533e-02
## EOGT 1.4695446 5.719742e+00 4.043597 9.234283e-05 6.503480e-04
## EHBP1 1.4683168 4.589209e+00 3.813549 2.158088e-04 1.225224e-03
## WDR12 1.4625713 9.028192e+00 2.929282 4.052155e-03 1.177617e-02
## KLHL11 1.4622779 7.187823e+00 2.563851 1.155888e-02 2.710862e-02
## ZNF45 1.4612146 9.325411e+00 2.403700 1.772694e-02 3.833725e-02
## COIL 1.4597654 1.150454e+01 2.628943 9.660735e-03 2.348182e-02
## TMEM45A 1.4581496 2.313776e+00 2.312619 2.241002e-02 4.646553e-02
## RORC -1.4579329 2.441038e+00 -3.051050 2.795608e-03 8.759818e-03
## CKB -1.4557980 1.329976e+00 -3.081286 2.545202e-03 8.138608e-03
## HACE1 1.4556671 3.573234e+00 3.587537 4.805713e-04 2.222923e-03
## MIEF2 -1.4554472 4.339859e+00 -4.231016 4.512718e-05 3.858748e-04
## FDX2 -1.4507976 2.842168e+00 -3.056611 2.747905e-03 8.651488e-03
## MTHFD2L 1.4478421 5.595890e+00 3.491825 6.676286e-04 2.847204e-03
## GOLIM4 1.4477874 4.754365e+00 3.331110 1.143295e-03 4.290974e-03
## CPED1 1.4462123 3.810962e+00 2.377102 1.899551e-02 4.052649e-02
## ACTR5 -1.4450139 6.393978e+00 -2.561146 1.164458e-02 2.727187e-02
## CCNF 1.4449464 2.866262e+00 3.153310 2.030000e-03 6.783827e-03
## PNMA3 -1.4446394 1.748211e+00 -3.355363 1.055357e-03 4.054594e-03
## CNTLN 1.4442929 4.327969e+00 3.108901 2.334813e-03 7.572021e-03
## RUSC1 -1.4420377 7.610170e+00 -2.300114 2.313151e-02 4.772680e-02
## BAIAP2 -1.4391113 3.930960e+00 -2.723083 7.411100e-03 1.896755e-02
## ACBD7 1.4374563 2.422620e+00 3.079897 2.556235e-03 8.167280e-03
## WNT10B -1.4359826 2.295194e+00 -3.404972 8.948487e-04 3.563770e-03
## TTLL5 1.4358101 5.402496e+00 3.989228 1.131999e-04 7.529732e-04
## SYTL4 1.4355868 3.325325e+00 2.998851 3.282139e-03 9.950451e-03
## FGFRL1 -1.4341556 3.056748e+00 -3.212516 1.680913e-03 5.842800e-03
## CASR 1.4340281 5.321598e+00 2.723593 7.400329e-03 1.895226e-02
## SLAIN1 1.4329375 5.090475e+00 3.054824 2.763151e-03 8.683354e-03
## NDUFAF2 -1.4311504 4.506628e+00 -3.355097 1.056284e-03 4.056844e-03
## PARD3 1.4292540 3.609685e+00 2.729232 7.282188e-03 1.869410e-02
## MCC 1.4290123 3.368672e+00 3.188313 1.816259e-03 6.216689e-03
## SCARB1 -1.4288624 3.578753e+00 -3.882915 1.676676e-04 1.016635e-03
## TMEM218 -1.4259058 9.703013e+00 -2.678122 8.418356e-03 2.096634e-02
## ZNF440 1.4258384 6.699211e+00 2.966446 3.622272e-03 1.075079e-02
## VANGL1 1.4255729 3.245556e+00 3.970801 1.212385e-04 7.909178e-04
## PRMT3 1.4224784 5.450884e+00 4.187513 5.338849e-05 4.404972e-04
## ARHGEF19 -1.4206476 3.418552e+00 -2.737072 7.120792e-03 1.837924e-02
## AK9 1.4180705 4.325557e+00 3.232173 1.577969e-03 5.547166e-03
## NEIL2 -1.4174528 4.264154e+00 -3.075236 2.593581e-03 8.264338e-03
## ROM1 -1.4156942 3.040250e+00 -2.399199 1.793620e-02 3.869808e-02
## ZNF383 -1.4139949 7.555948e+00 -3.599034 4.617717e-04 2.160399e-03
## PRR12 -1.4103344 4.883483e+00 -3.163728 1.964057e-03 6.612372e-03
## RBL1 1.4101048 7.491732e+00 2.571378 1.132345e-02 2.666193e-02
## C1orf159 -1.4068609 1.311305e+00 -4.287691 3.618924e-05 3.283904e-04
## RBM41 1.4054974 8.090103e+00 2.357497 1.998141e-02 4.224235e-02
## RYR1 -1.4029964 1.546502e+00 -4.879533 3.233162e-06 6.275827e-05
## MED19 -1.4024459 5.387049e+00 -3.471327 7.157493e-04 2.997749e-03
## CA11 -1.3999902 2.080973e+00 -3.497189 6.555463e-04 2.811855e-03
## TXNDC16 1.3981851 4.983668e+00 3.106948 2.349148e-03 7.608109e-03
## KMT5C -1.3979887 2.773191e+00 -3.652249 3.834493e-04 1.865344e-03
## VEPH1 1.3970919 2.797088e+00 2.341262 2.083171e-02 4.364319e-02
## LARS2 1.3943183 6.436108e+00 2.959245 3.702135e-03 1.094946e-02
## KBTBD3 -1.3941412 4.509391e+00 -3.591292 4.743535e-04 2.202754e-03
## EVA1B -1.3931080 1.572618e+00 -2.600739 1.044570e-02 2.494684e-02
## PFKM 1.3926515 6.160440e+00 3.289651 1.309670e-03 4.797000e-03
## UBTD2 1.3902814 9.102136e+00 2.395113 1.812800e-02 3.903379e-02
## PRSS36 -1.3891921 3.097334e+00 -2.326853 2.161299e-02 4.510470e-02
## ATP9B -1.3884238 6.902785e+00 -2.487371 1.421239e-02 3.206372e-02
## NCR1 1.3873070 2.678526e+00 3.546870 5.530323e-04 2.476015e-03
## C1orf112 1.3838257 4.741065e+00 5.199823 8.088900e-07 2.441628e-05
## HSD17B7 1.3834606 1.025720e+01 2.654908 8.985553e-03 2.212345e-02
## CCDC153 -1.3832520 1.783605e+00 -4.289448 3.594126e-05 3.266386e-04
## TFAP4 -1.3822830 1.811167e+00 -5.796603 5.369713e-08 4.005333e-06
## CCDC28B -1.3820281 2.897535e+00 -2.351721 2.028034e-02 4.275236e-02
## TBL2 -1.3773226 1.094377e+01 -2.307671 2.269309e-02 4.693758e-02
## BTRC 1.3765320 8.399350e+00 2.478896 1.453763e-02 3.266696e-02
## RINT1 1.3763621 9.476999e+00 2.684457 8.269308e-03 2.066456e-02
## GID4 1.3751269 1.111266e+01 2.551282 1.196187e-02 2.788830e-02
## ZNF329 -1.3721735 5.920480e+00 -2.710401 7.683512e-03 1.948812e-02
## ANKRD36B 1.3702979 3.478468e+00 3.384671 9.575451e-04 3.760049e-03
## ZNF526 -1.3687121 5.420247e+00 -2.901603 4.402248e-03 1.253256e-02
## UGDH 1.3633871 6.331026e+00 2.762181 6.625522e-03 1.732334e-02
## EFCAB7 1.3627754 3.072523e+00 3.763419 2.584916e-04 1.406289e-03
## CENPA 1.3610480 1.450877e+00 3.697771 3.265939e-04 1.664226e-03
## ENDOG -1.3609313 1.706903e+00 -2.565255 1.151463e-02 2.703692e-02
## RRS1 -1.3603144 4.683742e+00 -3.555921 5.360652e-04 2.418309e-03
## ACTR8 1.3602248 1.325107e+01 2.636776 9.452366e-03 2.307638e-02
## TM7SF2 -1.3580553 2.276657e+00 -2.935471 3.977450e-03 1.160457e-02
## ZSWIM9 -1.3576888 4.628154e+00 -3.423819 8.401080e-04 3.389007e-03
## PCDHA4 1.3563155 4.803577e+00 2.951828 3.786094e-03 1.115126e-02
## PAPSS2 1.3558281 4.832155e+00 2.342994 2.073949e-02 4.352101e-02
## MMS22L 1.3520963 3.994012e+00 4.088191 7.803034e-05 5.726886e-04
## MON1A -1.3516268 3.209275e+00 -2.920684 4.158059e-03 1.201037e-02
## NR1D1 -1.3508318 1.989791e+00 -3.950160 1.308887e-04 8.372926e-04
## SETBP1 1.3506565 3.115494e+00 3.341565 1.104575e-03 4.193693e-03
## BTBD3 1.3487952 4.210206e+00 2.741018 7.040793e-03 1.820842e-02
## BRICD5 -1.3407739 1.341393e+00 -4.473120 1.734561e-05 1.933449e-04
## PRMT9 1.3372230 6.298467e+00 2.651455 9.072818e-03 2.230127e-02
## CHRNE -1.3345504 2.193163e+00 -2.906693 4.335851e-03 1.241370e-02
## DTX1 -1.3337387 2.220793e+00 -3.188962 1.812499e-03 6.207469e-03
## DHFR2 1.3336306 5.450357e+00 2.582054 1.099689e-02 2.599106e-02
## NEK1 1.3329261 4.852121e+00 3.439849 7.960390e-04 3.246569e-03
## INCENP 1.3324592 2.695294e+00 4.697935 6.926153e-06 1.034345e-04
## RHBDD3 -1.3315914 1.742790e+00 -3.980904 1.167660e-04 7.710717e-04
## LANCL3 1.3305343 2.256862e+00 4.490988 1.614194e-05 1.837269e-04
## ZNF629 -1.3272220 3.616183e+00 -3.687194 3.390442e-04 1.707458e-03
## MREG 1.3224258 3.418508e+00 3.855907 1.850502e-04 1.093520e-03
## PGAP1 1.3209627 2.596372e+00 2.885746 4.615103e-03 1.301668e-02
## NUDCD1 1.3169507 7.171650e+00 2.663017 8.783626e-03 2.168029e-02
## USP31 1.3167318 4.433027e+00 4.110372 7.172725e-05 5.414928e-04
## FOXP3 -1.3165171 1.938904e+00 -2.830434 5.433568e-03 1.487584e-02
## CDC42BPA 1.3143169 1.982018e+00 4.974725 2.153586e-06 4.765210e-05
## TMEM68 1.3131305 7.484016e+00 3.647840 3.894269e-04 1.888999e-03
## HAUS5 -1.3126882 4.529125e+00 -2.602840 1.038530e-02 2.482759e-02
## SLFN14 1.3120382 3.494918e+00 2.742967 7.001576e-03 1.812975e-02
## AK5 -1.3112052 2.385579e+00 -2.572148 1.129962e-02 2.661638e-02
## KATNAL1 1.3095303 3.879421e+00 4.562887 1.206348e-05 1.517164e-04
## DCLRE1B 1.3090466 7.472998e+00 2.398567 1.796573e-02 3.874770e-02
## CCDC142 -1.3081136 6.586726e+00 -3.799245 2.272504e-04 1.276903e-03
## C16orf86 -1.3075843 1.445341e+00 -3.848488 1.901179e-04 1.113609e-03
## MFSD3 -1.3039399 1.270886e+00 -3.652888 3.825898e-04 1.864221e-03
## ZGLP1 -1.3021748 2.340164e+00 -3.060933 2.711358e-03 8.553192e-03
## MVK -1.3007335 3.331573e+00 -3.095293 2.436391e-03 7.837158e-03
## CASP6 1.2973693 6.602254e+00 3.588837 4.784098e-04 2.218116e-03
## INO80C -1.2956158 8.325959e+00 -2.500385 1.372559e-02 3.122298e-02
## E2F5 1.2925842 2.769126e+00 2.996210 3.308716e-03 1.001055e-02
## MPP5 1.2911352 4.875689e+00 3.219951 1.641264e-03 5.730172e-03
## ATAD5 1.2910512 2.339838e+00 5.089947 1.308743e-06 3.403879e-05
## SLC27A5 -1.2892993 1.237225e+00 -3.519185 6.081287e-04 2.655525e-03
## COX18 1.2890663 1.143435e+01 2.674406 8.506914e-03 2.113404e-02
## BTG3 1.2874959 3.740489e+00 2.507444 1.346783e-02 3.075250e-02
## NECAB3 -1.2864756 2.165013e+00 -3.624673 4.223172e-04 2.010711e-03
## ABCC6 1.2853306 3.504481e+00 3.404213 8.971194e-04 3.571613e-03
## ZFYVE28 -1.2852382 2.388811e+00 -3.393423 9.300263e-04 3.673090e-03
## PARP3 -1.2814688 3.838518e+00 -2.543009 1.223393e-02 2.838310e-02
## SLC2A8 -1.2769533 1.523039e+00 -3.921552 1.454815e-04 9.095471e-04
## TRUB1 1.2736626 4.664349e+00 2.458031 1.536683e-02 3.417411e-02
## CCNE1 1.2736155 1.938149e+00 3.976385 1.187468e-04 7.802418e-04
## GATB -1.2727140 7.725042e+00 -2.628896 9.661995e-03 2.348182e-02
## IFT27 -1.2709408 4.878075e+00 -2.466222 1.503641e-02 3.357150e-02
## GEMIN8 -1.2697830 4.973845e+00 -2.719405 7.489191e-03 1.912202e-02
## NEK8 -1.2695246 5.116764e+00 -2.608305 1.022968e-02 2.454956e-02
## FER 1.2686591 3.823844e+00 3.055478 2.757570e-03 8.672706e-03
## AEBP1 -1.2682711 1.780795e+00 -3.144491 2.087423e-03 6.934689e-03
## KIF18B 1.2674917 2.002096e+00 4.580682 1.121945e-05 1.437401e-04
## GTPBP3 -1.2668065 3.047540e+00 -3.065841 2.670395e-03 8.456845e-03
## PALB2 1.2656960 4.903372e+00 2.887263 4.594342e-03 1.297355e-02
## IFT122 -1.2603325 5.680293e+00 -3.513100 6.209134e-04 2.702398e-03
## CCDC77 -1.2590161 6.643483e+00 -3.712033 3.104902e-04 1.605237e-03
## DTWD2 1.2588483 4.652920e+00 2.431551 1.647967e-02 3.620094e-02
## BMP8B 1.2587964 2.344230e+00 4.439264 1.986802e-05 2.132218e-04
## PARD6A -1.2577559 2.308288e+00 -2.997214 3.298586e-03 9.990099e-03
## CIT 1.2575276 1.329366e+00 4.762054 5.303349e-06 8.651680e-05
## SIMC1 1.2548068 5.006946e+00 3.349042 1.077642e-03 4.114887e-03
## ZNF71 -1.2544978 3.016998e+00 -4.035274 9.527825e-05 6.635350e-04
## LTO1 -1.2538928 9.091057e+00 -2.912787 4.257578e-03 1.224726e-02
## EFCAB12 1.2520659 2.454177e+00 2.719900 7.478631e-03 1.909917e-02
## WRN 1.2506045 5.436949e+00 3.218854 1.647056e-03 5.745318e-03
## KRBA1 -1.2501851 2.329323e+00 -4.478120 1.700032e-05 1.904620e-04
## BAMBI 1.2451410 1.766533e+00 3.557709 5.327723e-04 2.405284e-03
## ZNF764 -1.2436444 4.090278e+00 -4.930231 2.605554e-06 5.424370e-05
## PORCN -1.2433950 4.422878e+00 -2.671430 8.578458e-03 2.126683e-02
## SSPN 1.2427275 2.199426e+00 2.536103 1.246529e-02 2.880156e-02
## RPUSD2 -1.2413005 4.172351e+00 -2.582111 1.099518e-02 2.599106e-02
## ENDOV -1.2399164 1.723702e+00 -4.890184 3.090190e-06 6.077886e-05
## GON7 -1.2372434 7.016080e+00 -3.224431 1.617791e-03 5.661553e-03
## ZBTB39 1.2349372 3.930734e+00 2.482944 1.438146e-02 3.237125e-02
## LIMS2 -1.2349291 1.200250e+00 -3.700051 3.239679e-04 1.655194e-03
## PTPRS -1.2348396 1.541531e+00 -3.857554 1.839428e-04 1.092818e-03
## RHD 1.2343716 3.174576e+00 2.287477 2.388119e-02 4.903583e-02
## TRIM59 1.2340157 6.174073e+00 2.540893 1.230441e-02 2.850758e-02
## ENTPD5 1.2329024 5.403470e+00 2.742910 7.002730e-03 1.812975e-02
## TBP 1.2325355 9.441433e+00 3.246614 1.506118e-03 5.360913e-03
## STX1A -1.2303212 2.022411e+00 -2.319382 2.202820e-02 4.584215e-02
## C19orf47 -1.2288924 5.208254e+00 -3.050201 2.802954e-03 8.775879e-03
## TNNC2 -1.2280706 1.436843e+00 -4.121957 6.863188e-05 5.241301e-04
## MRM1 -1.2278200 2.091572e+00 -3.693191 3.319308e-04 1.683069e-03
## PLEKHG4 -1.2276974 2.916454e+00 -2.400004 1.789862e-02 3.863105e-02
## PHETA2 -1.2275960 4.191451e+00 -3.291285 1.302704e-03 4.783304e-03
## BNIPL 1.2271881 2.612308e+00 3.247350 1.502539e-03 5.352993e-03
## ZGRF1 1.2263321 2.908208e+00 4.318337 3.209210e-05 3.023131e-04
## SNX33 -1.2262289 5.135357e+00 -2.383767 1.867031e-02 3.996929e-02
## TAF5 1.2250324 6.139433e+00 4.972234 2.176731e-06 4.807455e-05
## ERCC4 1.2247718 4.003893e+00 3.042558 2.869929e-03 8.940730e-03
## AMMECR1 1.2227102 5.085063e+00 2.714714 7.589872e-03 1.929601e-02
## ACOT11 1.2184178 6.939236e+00 2.514836 1.320257e-02 3.025747e-02
## HOOK2 -1.2157851 3.464195e+00 -3.421564 8.464885e-04 3.406635e-03
## GPATCH1 1.2128449 6.017622e+00 3.110668 2.321913e-03 7.542561e-03
## AKAP7 -1.2122052 5.447240e+00 -2.316736 2.217692e-02 4.606587e-02
## EFNA4 -1.2119511 5.635971e+00 -2.482417 1.440169e-02 3.241064e-02
## MPV17L 1.2115832 3.473934e+00 3.455476 7.551766e-04 3.124385e-03
## DNAJC27 1.2109912 3.945380e+00 2.872496 4.800166e-03 1.344273e-02
## WASL 1.2021412 5.664260e+00 3.406657 8.898198e-04 3.553287e-03
## MBTPS2 1.2020383 3.748538e+00 3.469853 7.193326e-04 3.011396e-03
## ZNF576 -1.1998947 6.341939e+00 -2.858211 5.007258e-03 1.390802e-02
## CEP57L1 1.1975281 3.212878e+00 6.173716 8.944486e-09 1.248019e-06
## RBFA -1.1972189 4.593282e+00 -2.443648 1.596267e-02 3.523492e-02
## SLC45A3 -1.1937868 3.100764e+00 -2.295489 2.340341e-02 4.817990e-02
## ZNF697 1.1911244 3.507411e+00 2.439017 1.615886e-02 3.560833e-02
## POLE2 1.1895080 1.416959e+00 5.059242 1.495489e-06 3.718344e-05
## PCGF1 -1.1883252 9.006267e+00 -2.471509 1.482651e-02 3.321542e-02
## LMAN2L -1.1881190 9.559004e+00 -2.303877 2.291226e-02 4.734244e-02
## SEMA3E -1.1878822 1.539377e+00 -3.842095 1.945900e-04 1.130739e-03
## BORA 1.1867108 5.074057e+00 2.757004 6.724988e-03 1.753397e-02
## SUV39H2 1.1858198 2.070052e+00 6.102157 1.262177e-08 1.533316e-06
## PNPLA7 -1.1818121 1.013381e+00 -4.690017 7.157179e-06 1.055497e-04
## CES4A -1.1759052 3.763215e+00 -2.832085 5.407330e-03 1.482453e-02
## FBXW8 1.1737295 3.216289e+00 2.699238 7.930787e-03 1.998707e-02
## ACVR2A -1.1673789 3.539209e+00 -2.658735 8.889731e-03 2.190572e-02
## NADK2 1.1653778 7.657185e+00 2.388415 1.844644e-02 3.957576e-02
## LCORL 1.1598071 6.693662e+00 2.280090 2.432928e-02 4.965501e-02
## TNK1 -1.1580230 1.346362e+00 -3.771680 2.509454e-04 1.376602e-03
## SHISAL2A -1.1547558 1.921058e+00 -2.771834 6.443602e-03 1.694106e-02
## ATXN2 1.1541679 9.209699e+00 2.490438 1.409629e-02 3.191106e-02
## DSCC1 1.1480965 1.277179e+00 5.497133 2.137051e-07 9.833181e-06
## MECR -1.1451517 2.993961e+00 -2.983066 3.443966e-03 1.031190e-02
## SPIN4 1.1441982 2.247519e+00 4.196932 5.148520e-05 4.276012e-04
## ANKS6 -1.1418169 2.548366e+00 -3.264500 1.421354e-03 5.131584e-03
## RBBP9 1.1416031 5.171973e+00 2.737493 7.112217e-03 1.836110e-02
## DNAJB4 1.1358726 3.413015e+00 3.503210 6.422316e-04 2.767757e-03
## PERP 1.1341322 2.418782e+00 2.323146 2.181816e-02 4.548486e-02
## ANKRD6 1.1320768 4.782337e+00 2.456618 1.542447e-02 3.426376e-02
## PEMT -1.1318900 1.908379e+00 -3.715609 3.065731e-04 1.588448e-03
## HARBI1 1.1277786 4.396917e+00 4.008922 1.051726e-04 7.152049e-04
## ANKRD39 -1.1252580 2.196243e+00 -3.101788 2.387405e-03 7.702563e-03
## CTU2 -1.1228926 2.152264e+00 -3.422204 8.446711e-04 3.403941e-03
## FAAP24 1.1226792 4.073066e+00 2.795039 6.024762e-03 1.610768e-02
## BRIP1 1.1221354 2.504174e+00 4.758797 5.376040e-06 8.740804e-05
## UPF3B 1.1179098 8.109281e+00 3.189792 1.807700e-03 6.196337e-03
## DOLK -1.1155621 4.295139e+00 -3.082444 2.536042e-03 8.115881e-03
## PRICKLE3 -1.1127143 3.878913e+00 -4.419589 2.149258e-05 2.254878e-04
## FKBP14 1.1113615 2.738380e+00 4.827682 4.026066e-06 7.278833e-05
## MTERF2 -1.1068054 4.866048e+00 -2.807905 5.803396e-03 1.566415e-02
## RAI1 -1.1048329 2.227215e+00 -4.447590 1.921676e-05 2.085186e-04
## PDE6G -1.1014930 1.858678e+00 -3.821954 2.093427e-04 1.196465e-03
## ARV1 1.1003044 7.050759e+00 2.788654 6.137459e-03 1.634634e-02
## OLFM2 -1.0998838 1.435571e+00 -4.292595 3.550139e-05 3.236330e-04
## ZNF714 1.0977653 3.046234e+00 3.861437 1.813572e-04 1.082485e-03
## RIOX1 -1.0974398 6.543144e+00 -2.404123 1.770737e-02 3.830890e-02
## ACO1 1.0931377 5.432511e+00 2.432670 1.643122e-02 3.611500e-02
## ZNF250 -1.0900420 4.737338e+00 -2.306103 2.278347e-02 4.709986e-02
## FAM122C 1.0896742 3.209902e+00 4.243372 4.301412e-05 3.718276e-04
## NAV1 1.0892330 2.520998e+00 2.765926 6.554400e-03 1.716920e-02
## GOLGA8H 1.0883993 3.468855e+00 2.473287 1.475649e-02 3.309607e-02
## LNX2 1.0882394 5.372403e+00 3.263463 1.426144e-03 5.144182e-03
## TRIM68 1.0881035 6.333891e+00 2.500312 1.372830e-02 3.122298e-02
## ZNF777 -1.0878509 3.357228e+00 -3.033327 2.952779e-03 9.150847e-03
## MLYCD -1.0839081 6.967407e+00 -2.796153 6.005302e-03 1.607143e-02
## FAM71F2 1.0827015 3.086909e+00 2.814679 5.689841e-03 1.541730e-02
## RUFY2 1.0786987 5.046102e+00 3.017328 3.101625e-03 9.512613e-03
## PRIM2 1.0721396 5.037376e+00 3.872393 1.742462e-04 1.046359e-03
## CENPM 1.0720677 1.562284e+00 2.370519 1.932167e-02 4.111141e-02
## CCDC30 1.0720106 2.899017e+00 3.537598 5.709390e-04 2.537982e-03
## NFS1 1.0718400 1.025568e+01 2.610392 1.017078e-02 2.444780e-02
## CTU1 -1.0714932 2.318572e+00 -3.077109 2.578513e-03 8.227377e-03
## FANCM 1.0704276 2.828959e+00 3.896023 1.598023e-04 9.794600e-04
## DPY19L4 1.0703292 4.967538e+00 2.300117 2.313130e-02 4.772680e-02
## KLHL17 -1.0681622 1.517939e+00 -4.177451 5.549645e-05 4.539227e-04
## SERPINE1 1.0674387 2.163803e+00 2.523656 1.289220e-02 2.964930e-02
## IZUMO4 -1.0670252 1.271574e+00 -4.335643 2.997948e-05 2.878558e-04
## SMIM13 1.0669035 5.972887e+00 3.377380 9.810514e-04 3.833697e-03
## RBM11 1.0653610 1.756431e+00 3.531844 5.823228e-04 2.573338e-03
## STON1 1.0653603 1.746819e+00 4.746334 5.663239e-06 9.076489e-05
## SFN -1.0653174 1.388447e+00 -3.323351 1.172845e-03 4.382463e-03
## PDE6B -1.0642641 2.813572e+00 -3.078469 2.567623e-03 8.197042e-03
## SH2D4A 1.0565498 1.055651e+00 2.521966 1.295114e-02 2.975601e-02
## S1PR2 -1.0543651 2.965999e+00 -2.868556 4.856479e-03 1.356520e-02
## CHST14 -1.0533518 4.590768e+00 -3.259092 1.446499e-03 5.198353e-03
## GCM1 1.0523495 2.442605e+00 2.425633 1.673797e-02 3.664841e-02
## RALGPS1 1.0496208 5.439197e+00 2.526003 1.281072e-02 2.948479e-02
## A1BG -1.0478519 1.011980e+00 -3.581003 4.915754e-04 2.261476e-03
## BBS7 1.0471419 4.894015e+00 2.703009 7.846455e-03 1.980252e-02
## RAD18 1.0464443 5.186807e+00 2.996439 3.306405e-03 1.000612e-02
## TMEM38B 1.0455093 3.900253e+00 3.630950 4.131561e-04 1.975023e-03
## UACA 1.0443212 3.029000e+00 2.677423 8.434952e-03 2.099271e-02
## PPP1R16A -1.0421562 1.630258e+00 -3.638900 4.018212e-04 1.930956e-03
## LMF1 -1.0394503 2.269577e+00 -3.073505 2.607577e-03 8.291117e-03
## DECR2 -1.0385592 1.056399e+00 -4.907116 2.875452e-06 5.767389e-05
## PRR3 -1.0384553 6.114441e+00 -2.360511 1.982697e-02 4.196820e-02
## CHAF1B 1.0359006 3.494046e+00 3.874886 1.726657e-04 1.039500e-03
## DNAL1 1.0325997 6.766036e+00 2.956873 3.728796e-03 1.101458e-02
## E2F6 1.0294014 6.140207e+00 3.450549 7.678434e-04 3.159827e-03
## MOB3B 1.0286003 2.925225e+00 3.129318 2.189759e-03 7.202035e-03
## ZBTB32 1.0283262 1.441802e+00 2.309529 2.258641e-02 4.674954e-02
## OTUD3 1.0271345 4.521405e+00 2.403862 1.771946e-02 3.832806e-02
## GNB1L -1.0248580 8.240062e-01 -4.809792 4.341124e-06 7.655972e-05
## CENPQ 1.0218821 3.905702e+00 2.662515 8.796001e-03 2.170180e-02
## COA7 1.0159986 5.340126e+00 2.954378 3.757032e-03 1.108142e-02
## SGO1 1.0154146 1.233835e+00 5.492881 2.178755e-07 9.976846e-06
## PPP1R32 -1.0132520 1.814344e+00 -4.517775 1.448713e-05 1.707925e-04
## GKAP1 1.0113799 4.207569e+00 2.285733 2.398630e-02 4.918353e-02
## SLC2A11 -1.0084508 3.019815e+00 -2.380973 1.880602e-02 4.018728e-02
## IER5L -1.0070344 9.050714e-01 -6.634954 9.295634e-10 2.979627e-07
## ORC6 1.0066652 1.587685e+00 4.648138 8.508647e-06 1.172613e-04
## MORN3 -1.0052446 2.673827e+00 -3.062055 2.701945e-03 8.529428e-03
## INVS 1.0049981 4.965375e+00 3.296515 1.280647e-03 4.715451e-03
## ZKSCAN3 1.0044860 4.269976e+00 3.947692 1.320904e-04 8.431606e-04
## ZNF232 -1.0027342 3.774050e+00 -3.252889 1.475857e-03 5.280084e-03
## MKS1 -1.0016283 2.925463e+00 -3.168497 1.934542e-03 6.544116e-03
## GINS3 1.0012322 2.159317e+00 4.450660 1.898183e-05 2.069159e-04
## FZD2 -0.9982225 2.146637e+00 -3.070280 2.633844e-03 8.361186e-03
## ZNF540 -0.9964626 2.732737e+00 -2.297922 2.326000e-02 4.793459e-02
## ACVRL1 -0.9963379 2.229447e+00 -2.531762 1.261272e-02 2.909118e-02
## ASCL2 -0.9961786 2.773980e+00 -2.383461 1.868515e-02 3.998662e-02
## CCDC106 -0.9951748 1.103475e+00 -5.302818 5.124909e-07 1.766902e-05
## MAB21L3 0.9912868 1.583380e+00 3.026424 3.016170e-03 9.286545e-03
## ZSCAN9 0.9910550 4.782326e+00 2.752899 6.804819e-03 1.770238e-02
## RBM44 0.9882509 2.126454e+00 2.550073 1.200129e-02 2.796371e-02
## CEP131 -0.9881076 1.575724e+00 -4.161575 5.898526e-05 4.726323e-04
## TIPIN 0.9851390 2.310445e+00 4.457602 1.846089e-05 2.027279e-04
## GLIPR1L2 0.9844854 3.583693e+00 2.450961 1.565717e-02 3.468187e-02
## CDT1 0.9824281 1.408057e+00 2.342203 2.078157e-02 4.356322e-02
## FNBP1L 0.9823582 2.346202e+00 3.144664 2.086279e-03 6.934689e-03
## MZF1 -0.9819095 2.037143e+00 -4.311737 3.293494e-05 3.077817e-04
## SLC2A13 0.9793826 2.540598e+00 3.700019 3.240042e-04 1.655194e-03
## ERI2 0.9782807 3.443466e+00 3.493937 6.628461e-04 2.832921e-03
## CACNB1 -0.9741020 2.481048e+00 -3.436158 8.059879e-04 3.277003e-03
## FAM104B -0.9704899 5.192011e+00 -2.658518 8.895143e-03 2.191450e-02
## KCNK5 0.9645530 1.340515e+00 2.741766 7.025721e-03 1.818133e-02
## TRMT10A 0.9605307 4.627912e+00 2.680335 8.366018e-03 2.085351e-02
## TTLL1 -0.9595319 2.397822e+00 -3.669222 3.612354e-04 1.791075e-03
## CSPP1 0.9568632 4.377968e+00 2.770813 6.462618e-03 1.697224e-02
## ERCC6L 0.9551067 1.118754e+00 4.942663 2.470733e-06 5.195549e-05
## PET117 -0.9534561 4.415426e+00 -2.613693 1.007828e-02 2.429933e-02
## LIPH 0.9532040 1.626697e+00 4.337255 2.978972e-05 2.865526e-04
## SHISA4 -0.9529709 1.411928e+00 -3.594369 4.693146e-04 2.188056e-03
## GALNT12 -0.9495583 2.563289e+00 -2.792233 6.074062e-03 1.621026e-02
## PRR29 -0.9458319 2.963770e+00 -2.354501 2.013595e-02 4.250843e-02
## CRYM 0.9416457 1.360570e+00 2.758563 6.694895e-03 1.748161e-02
## ANKRD26 0.9409421 2.666260e+00 3.248127 1.498770e-03 5.342774e-03
## FUT11 0.9390157 3.035451e+00 2.444671 1.591965e-02 3.516614e-02
## FANCL 0.9387311 2.872283e+00 3.545586 5.554802e-04 2.485098e-03
## GOLGA6L4 0.9307722 2.826771e+00 2.590439 1.074637e-02 2.552102e-02
## TMEM252 0.9274197 2.137548e+00 2.506378 1.350649e-02 3.082891e-02
## IKZF4 0.9262413 2.972551e+00 3.028595 2.996103e-03 9.231951e-03
## KRBA2 0.9241077 5.176327e+00 3.489225 6.735575e-04 2.866305e-03
## PLK2 0.9236825 2.035528e+00 3.054943 2.762140e-03 8.682477e-03
## CCNJ 0.9226963 3.942130e+00 2.376267 1.903664e-02 4.058505e-02
## ZNF74 -0.9153282 2.627838e+00 -2.963587 3.653791e-03 1.083349e-02
## LRP12 0.9148985 2.042920e+00 3.005977 3.211398e-03 9.780990e-03
## LIN9 0.9145640 1.900948e+00 4.757820 5.398036e-06 8.757963e-05
## BAG2 0.9142497 3.437048e+00 3.787446 2.371208e-04 1.318449e-03
## FANCE 0.9125703 4.627691e+00 2.546856 1.210672e-02 2.816823e-02
## ZNF852 0.9125667 2.387923e+00 3.659673 3.735778e-04 1.833113e-03
## IFNLR1 0.9123519 5.060651e+00 2.381272 1.879149e-02 4.016347e-02
## TEX10 0.9108228 6.772992e+00 2.330947 2.138844e-02 4.469901e-02
## MND1 0.9072326 1.056202e+00 4.279112 3.742341e-05 3.349749e-04
## CCDC86 -0.9058401 3.068816e+00 -3.046441 2.835717e-03 8.850423e-03
## TEC 0.9057831 4.397626e+00 2.576101 1.117793e-02 2.635592e-02
## GPAM 0.9040831 3.870907e+00 2.539681 1.234495e-02 2.857360e-02
## GPX3 -0.9011437 2.657986e+00 -2.559018 1.171238e-02 2.739278e-02
## PYCR3 -0.9010786 1.437874e+00 -2.689626 8.149466e-03 2.043829e-02
## PIF1 0.9000870 1.555607e+00 2.803055 5.885952e-03 1.584371e-02
## POU5F1 0.9000512 2.925267e+00 2.844697 5.210695e-03 1.437851e-02
## COL8A2 -0.8999299 2.827473e+00 -2.610949 1.015512e-02 2.441512e-02
## AK4 0.8995088 2.908255e+00 2.647721 9.168046e-03 2.249804e-02
## MITF 0.8982168 3.186825e+00 2.671652 8.573104e-03 2.126245e-02
## LRRCC1 0.8956144 3.115080e+00 2.721882 7.436513e-03 1.901618e-02
## MORN2 -0.8881395 1.565137e+00 -5.252911 6.397411e-07 2.061774e-05
## PRX -0.8863635 1.646852e+00 -4.434735 2.023112e-05 2.161407e-04
## BAG3 -0.8854225 2.833685e+00 -2.617137 9.982582e-03 2.410290e-02
## SPIN2B -0.8853609 2.680894e+00 -3.025079 3.028674e-03 9.322624e-03
## C1orf109 0.8838750 3.256964e+00 2.883037 4.652403e-03 1.309385e-02
## ME3 -0.8828753 1.309368e+00 -3.995132 1.107340e-04 7.407252e-04
## FAM151B 0.8827493 2.746729e+00 2.405854 1.762755e-02 3.814318e-02
## SPSB1 0.8811580 2.543345e+00 3.468021 7.238096e-04 3.025465e-03
## F12 -0.8806846 1.546974e+00 -2.952175 3.782129e-03 1.114436e-02
## C10orf143 -0.8789502 1.522015e+00 -3.941649 1.350774e-04 8.545784e-04
## SHROOM4 0.8785188 1.643237e+00 3.095615 2.433936e-03 7.836620e-03
## FAM86B1 -0.8764505 2.181992e+00 -2.864172 4.919870e-03 1.371320e-02
## ZNF653 -0.8757078 1.136965e+00 -4.147739 6.219623e-05 4.898056e-04
## KIAA1586 0.8702076 4.083829e+00 2.984862 3.425184e-03 1.027122e-02
## CABLES2 0.8700597 5.607016e+00 2.654652 8.992009e-03 2.213475e-02
## ARHGAP32 0.8699779 2.544693e+00 2.872752 4.796523e-03 1.343570e-02
## ZNF888 0.8686735 2.734716e+00 2.633283 9.544775e-03 2.326149e-02
## C11orf1 -0.8684922 4.458629e+00 -2.425180 1.675788e-02 3.668298e-02
## IL23A -0.8651663 1.405165e+00 -3.665873 3.655193e-04 1.805367e-03
## ZNF568 -0.8648312 2.682268e+00 -3.723791 2.977839e-04 1.554453e-03
## GPR82 -0.8646955 2.380888e+00 -2.467411 1.498896e-02 3.349079e-02
## LRRC27 -0.8643325 3.470049e+00 -2.911040 4.279882e-03 1.228744e-02
## NAT14 -0.8636968 1.742984e+00 -2.784260 6.216128e-03 1.650029e-02
## PROSER3 -0.8586246 6.664087e+00 -2.366438 1.952631e-02 4.145757e-02
## SOX12 -0.8549579 2.236598e+00 -2.787093 6.165314e-03 1.641316e-02
## ZNF619 0.8542336 5.841133e+00 2.625396 9.756418e-03 2.365285e-02
## ZNF578 -0.8530589 1.902252e+00 -3.974993 1.193630e-04 7.834228e-04
## ZNF219 -0.8488113 1.032236e+00 -4.396474 2.356492e-05 2.407235e-04
## LSM11 0.8480714 3.490817e+00 3.148539 2.060882e-03 6.871539e-03
## GAN 0.8457862 3.963195e+00 2.771090 6.457465e-03 1.696998e-02
## ZNF597 0.8443340 4.708560e+00 2.283868 2.409920e-02 4.935530e-02
## XXYLT1 -0.8438795 5.730841e+00 -2.318363 2.208536e-02 4.589669e-02
## STARD5 0.8435427 2.043127e+00 3.695264 3.295052e-04 1.674349e-03
## PLXNA1 -0.8433650 1.748965e+00 -3.385653 9.544192e-04 3.753121e-03
## PCOLCE -0.8422094 1.317475e+00 -4.003270 1.074191e-04 7.246816e-04
## COQ10A -0.8405468 3.206566e+00 -2.292308 2.359209e-02 4.851145e-02
## NEMP2 0.8356125 4.109036e+00 2.540667 1.231197e-02 2.851396e-02
## DOCK7 0.8328981 2.774259e+00 2.382853 1.871461e-02 4.002800e-02
## SHLD3 0.8319525 3.902340e+00 2.941657 3.904058e-03 1.142416e-02
## DHODH -0.8305016 3.417780e+00 -2.887178 4.595500e-03 1.297373e-02
## MTFR2 0.8303577 1.739175e+00 4.708955 6.616581e-06 1.008646e-04
## XRCC2 0.8300065 1.202861e+00 5.507239 2.041036e-07 9.671785e-06
## DNAAF5 -0.8298195 3.015104e+00 -3.012220 3.150593e-03 9.625460e-03
## ZDHHC23 0.8290063 2.360267e+00 3.041266 2.881389e-03 8.969362e-03
## ZBTB46 -0.8280123 1.175160e+00 -4.782849 4.861172e-06 8.143123e-05
## MPP6 0.8259467 2.802503e+00 2.435077 1.632747e-02 3.590651e-02
## TRPM4 -0.8252348 7.660720e-01 -4.819108 4.174180e-06 7.434525e-05
## C6orf226 -0.8237205 9.471067e-01 -5.007411 1.871105e-06 4.342720e-05
## LIAS -0.8215452 6.398663e+00 -2.694161 8.045614e-03 2.023775e-02
## SERPINF2 -0.8184058 1.182672e+00 -3.636289 4.055117e-04 1.944751e-03
## SLC38A6 -0.8182804 3.370163e+00 -3.064209 2.683955e-03 8.486095e-03
## HSD17B13 0.8155642 1.965186e+00 2.834732 5.365501e-03 1.472381e-02
## NEIL3 0.8131819 9.016860e-01 3.322519 1.176053e-03 4.390302e-03
## PEX10 -0.8128899 2.277136e+00 -3.770820 2.517216e-04 1.379242e-03
## FBXL8 -0.8127426 6.848887e-01 -3.667602 3.633011e-04 1.799812e-03
## RSKR 0.8112508 3.583314e+00 2.777911 6.331431e-03 1.675759e-02
## FSCN1 -0.8111839 1.136395e+00 -4.633792 9.026048e-06 1.217849e-04
## OIP5 0.8096780 1.118985e+00 3.427561 8.296191e-04 3.352739e-03
## PCGF6 0.8096030 3.656142e+00 3.476892 7.023718e-04 2.963404e-03
## KLHL26 -0.8089283 3.219880e+00 -3.482189 6.898572e-04 2.918911e-03
## CHCHD6 -0.8074812 8.816320e-01 -3.859307 1.827713e-04 1.089828e-03
## CCDC189 -0.8042585 1.440579e+00 -3.699275 3.248592e-04 1.657844e-03
## SLIT1 0.8042291 2.047054e+00 2.556835 1.178230e-02 2.752376e-02
## LRRC29 -0.8033749 1.152030e+00 -4.269954 3.878538e-05 3.437927e-04
## TMEM97 0.8028092 1.949132e+00 3.627222 4.185736e-04 1.996896e-03
## CENPL 0.8020634 2.131621e+00 4.713369 6.496384e-06 9.987706e-05
## CEP76 0.8019232 2.212199e+00 4.496310 1.579927e-05 1.801724e-04
## ELAC1 -0.7994816 4.138869e+00 -2.441009 1.607423e-02 3.545479e-02
## BMP1 -0.7958264 1.842075e+00 -3.158655 1.995915e-03 6.692552e-03
## GCSH 0.7956870 2.159640e+00 2.715967 7.562847e-03 1.923967e-02
## NPTXR -0.7865234 1.926910e+00 -2.302047 2.301865e-02 4.754462e-02
## RDH10 0.7861105 4.159491e+00 3.570510 5.097462e-04 2.327017e-03
## SLC4A5 0.7859708 2.891648e+00 2.361911 1.975559e-02 4.182458e-02
## MTHFD1L 0.7853290 2.951414e+00 2.365527 1.957225e-02 4.154024e-02
## MARS2 0.7852595 3.196093e+00 2.286366 2.394809e-02 4.912669e-02
## CDHR1 -0.7775182 1.189851e+00 -2.395249 1.812163e-02 3.903379e-02
## ANKRD36C 0.7774418 1.395668e+00 3.861660 1.812093e-04 1.082146e-03
## LIPT1 -0.7749360 4.128858e+00 -2.567227 1.145274e-02 2.692359e-02
## MC1R -0.7730272 1.474273e+00 -2.918593 4.184206e-03 1.206532e-02
## MANEAL -0.7729493 1.880665e+00 -3.587682 4.803290e-04 2.222669e-03
## MAP3K10 -0.7720359 2.064994e+00 -2.920563 4.159577e-03 1.201183e-02
## NAGS -0.7703176 9.556516e-01 -6.096602 1.296271e-08 1.552907e-06
## CDH13 -0.7691518 1.223656e+00 -4.658131 8.165360e-06 1.139308e-04
## TRIM46 -0.7671252 1.150601e+00 -3.502020 6.448445e-04 2.770825e-03
## RABL2A -0.7669937 3.496864e+00 -2.715467 7.573612e-03 1.925880e-02
## TMPRSS13 -0.7655199 1.618883e+00 -3.334024 1.132377e-03 4.265249e-03
## MAP3K21 0.7641359 1.711377e+00 3.670944 3.590500e-04 1.782413e-03
## YAE1 -0.7625594 2.625677e+00 -3.338398 1.116172e-03 4.221239e-03
## TRIM3 -0.7605411 3.822182e+00 -2.793959 6.043695e-03 1.615410e-02
## WWC2 0.7581802 2.016655e+00 2.549131 1.203207e-02 2.801893e-02
## LRFN4 -0.7570957 9.580936e-01 -3.529744 5.865313e-04 2.586932e-03
## UNC13B 0.7533712 1.599115e+00 3.657204 3.768338e-04 1.846034e-03
## MAMDC4 -0.7521272 8.934200e-01 -3.761801 2.599953e-04 1.410872e-03
## TIMM23B 0.7502481 3.428654e+00 2.282098 2.420672e-02 4.950711e-02
## PAK4 -0.7481799 2.334588e+00 -3.414480 8.668281e-04 3.477869e-03
## KDM8 -0.7474786 2.048480e+00 -3.149630 2.053780e-03 6.853640e-03
## SPTBN5 -0.7431297 1.637391e+00 -3.048715 2.815866e-03 8.799110e-03
## C12orf73 -0.7395657 2.616295e+00 -2.543618 1.221372e-02 2.834177e-02
## PCDH12 -0.7359835 1.708182e+00 -3.739514 2.815601e-04 1.493427e-03
## NUDT17 -0.7343182 2.127483e+00 -3.598330 4.629015e-04 2.163978e-03
## PLAG1 0.7308257 2.677675e+00 2.598304 1.051608e-02 2.509975e-02
## CEP83 0.7302811 2.951110e+00 3.170337 1.923263e-03 6.513179e-03
## B4GAT1 -0.7257112 1.598192e+00 -3.366451 1.017299e-03 3.937719e-03
## KRT18 -0.7255477 1.647307e+00 -2.981013 3.465540e-03 1.036650e-02
## PPM1J -0.7200157 8.856314e-01 -4.716672 6.407828e-06 9.934227e-05
## GPRIN1 0.7189047 2.205504e+00 2.796576 5.997929e-03 1.606328e-02
## FBXO10 0.7151800 2.625028e+00 2.583356 1.095764e-02 2.592929e-02
## CHRNA10 -0.7116774 2.490098e+00 -2.370833 1.930597e-02 4.109275e-02
## SCUBE1 -0.7103027 1.213141e+00 -4.344643 2.893438e-05 2.812801e-04
## C14orf28 -0.7058137 4.319275e+00 -2.396557 1.806001e-02 3.890858e-02
## IL17RC -0.7047105 1.757813e+00 -2.546325 1.212421e-02 2.818411e-02
## ZSCAN12 0.7023077 1.838900e+00 2.636357 9.463405e-03 2.308907e-02
## FUT10 0.6960986 1.775982e+00 2.639536 9.379930e-03 2.290897e-02
## FAM216A -0.6925671 2.930699e+00 -3.190051 1.806207e-03 6.193007e-03
## ZC3H12C 0.6922797 1.611875e+00 3.664109 3.677957e-04 1.812238e-03
## ELOVL3 0.6893803 1.462435e+00 2.726760 7.333767e-03 1.880616e-02
## EME1 0.6889573 8.328714e-01 4.928866 2.620783e-06 5.424517e-05
## PTK6 -0.6885330 1.471093e+00 -3.527884 5.902831e-04 2.597684e-03
## CLCF1 -0.6820605 2.005736e+00 -2.318870 2.205690e-02 4.586165e-02
## TMEM160 -0.6779372 8.725450e-01 -2.632066 9.577158e-03 2.332270e-02
## NANP 0.6758189 2.393846e+00 4.005331 1.065946e-04 7.207595e-04
## LAMB3 -0.6739565 7.699130e-01 -2.382616 1.872612e-02 4.004541e-02
## ZNF416 -0.6675251 2.795505e+00 -2.793539 6.051076e-03 1.616346e-02
## RGS16 0.6642049 1.018245e+00 2.901478 4.403888e-03 1.253422e-02
## DAGLA -0.6597955 8.452911e-01 -4.316495 3.232528e-05 3.033052e-04
## POLG2 -0.6590261 4.241741e+00 -2.777486 6.339211e-03 1.677070e-02
## UNC5A -0.6579601 8.168418e-01 -3.226095 1.609155e-03 5.636321e-03
## PLCH2 -0.6569937 1.426267e+00 -2.288007 2.384934e-02 4.898739e-02
## ZNF287 -0.6567855 2.184216e+00 -2.427965 1.663577e-02 3.648978e-02
## AP1S3 0.6564251 2.740719e+00 3.244699 1.515465e-03 5.383889e-03
## WDR62 0.6561152 9.978733e-01 3.553051 5.413911e-04 2.435849e-03
## NTAQ1 -0.6555415 3.126340e+00 -2.355927 2.006226e-02 4.238304e-02
## BBOF1 0.6550050 1.678686e+00 2.748792 6.885575e-03 1.786544e-02
## COMTD1 -0.6529463 7.595181e-01 -3.124109 2.225947e-03 7.292745e-03
## MB21D2 -0.6516131 1.437332e+00 -2.700468 7.903192e-03 1.992175e-02
## KIF24 0.6513886 8.539490e-01 5.159369 9.663371e-07 2.754990e-05
## C3orf14 -0.6513454 1.314562e+00 -3.413296 8.702717e-04 3.488145e-03
## RFXAP 0.6498753 3.263114e+00 2.611837 1.013019e-02 2.437494e-02
## IL24 -0.6489467 1.157309e+00 -3.450603 7.677018e-04 3.159827e-03
## LDOC1 -0.6466098 1.071736e+00 -2.898279 4.446105e-03 1.262106e-02
## KCNMB4 -0.6431541 1.185359e+00 -4.077552 8.123821e-05 5.907328e-04
## C21orf58 0.6424350 1.457600e+00 3.359328 1.041597e-03 4.009522e-03
## PHLDB3 -0.6423469 9.218508e-01 -3.741188 2.798831e-04 1.487859e-03
## CCDC96 -0.6405303 1.130881e+00 -4.474516 1.724852e-05 1.924435e-04
## TMEM53 -0.6387837 9.642774e-01 -4.664877 7.941192e-06 1.118557e-04
## PAWR 0.6384626 2.197997e+00 3.100591 2.396367e-03 7.727272e-03
## PPP1R13B -0.6374233 2.445888e+00 -2.277999 2.445742e-02 4.989079e-02
## LRP6 0.6344041 1.512048e+00 2.557335 1.176624e-02 2.749164e-02
## MLLT11 0.6324087 2.757407e+00 2.680995 8.350471e-03 2.082788e-02
## SPATA33 -0.6314186 1.245432e+00 -2.846356 5.185320e-03 1.433183e-02
## B3GLCT 0.6292543 3.320756e+00 2.456088 1.544611e-02 3.429982e-02
## C7orf31 0.6274296 4.481170e+00 2.467244 1.499560e-02 3.349931e-02
## CARMIL1 0.6244415 1.526675e+00 2.718639 7.505545e-03 1.914382e-02
## CALHM5 0.6223775 1.104768e+00 3.663247 3.689122e-04 1.815477e-03
## EIF5A2 0.6199976 4.360189e+00 2.311899 2.245102e-02 4.652613e-02
## NHLRC4 -0.6165932 9.591407e-01 -2.310052 2.255652e-02 4.669582e-02
## KCNIP2 -0.6152272 1.316227e+00 -3.972120 1.206454e-04 7.881573e-04
## TNKS1BP1 -0.6143263 2.019099e+00 -2.610146 1.017771e-02 2.445951e-02
## ALG10 0.6136405 1.896770e+00 4.322744 3.154098e-05 2.987101e-04
## ZFP82 -0.6133393 2.896900e+00 -2.342286 2.077719e-02 4.356322e-02
## C18orf54 0.6131742 1.642474e+00 4.004686 1.068521e-04 7.220890e-04
## SPAG16 -0.6129452 1.090955e+00 -3.686625 3.397263e-04 1.708097e-03
## P3H4 -0.6122924 1.667944e+00 -2.671671 8.572639e-03 2.126245e-02
## FZD5 0.6113261 1.647727e+00 2.393385 1.820972e-02 3.918129e-02
## ST8SIA6 0.6112655 1.627960e+00 2.307374 2.271019e-02 4.696474e-02
## ATL1 0.6112356 1.615097e+00 3.433666 8.127720e-04 3.300060e-03
## MTFR1 0.6093982 2.852083e+00 3.461021 7.411573e-04 3.075724e-03
## ZNF547 -0.6073283 1.212514e+00 -3.670531 3.595738e-04 1.783582e-03
## RAD54B 0.6056514 1.374293e+00 3.968447 1.223035e-04 7.961141e-04
## ZNF324B -0.6022526 1.494305e+00 -4.080760 8.025780e-05 5.853982e-04
## CATIP -0.5990092 5.528792e-01 -5.182699 8.722230e-07 2.554214e-05
## REXO5 0.5988618 1.370325e+00 2.995315 3.317768e-03 1.002771e-02
## MACROH2A2 -0.5965189 1.740882e+00 -2.350967 2.031965e-02 4.282001e-02
## MAGI3 0.5950723 1.382790e+00 3.404113 8.974220e-04 3.571619e-03
## ZNF563 -0.5949664 2.022477e+00 -3.029733 2.985628e-03 9.218836e-03
## EML6 0.5948597 1.241100e+00 3.315091 1.205086e-03 4.483161e-03
## EPDR1 0.5936835 1.176926e+00 4.030022 9.717641e-05 6.720188e-04
## EID2B -0.5904819 1.626585e+00 -3.770646 2.518785e-04 1.379242e-03
## PDE3A 0.5857879 1.338506e+00 2.564455 1.153985e-02 2.708541e-02
## PRTFDC1 0.5802918 1.277977e+00 2.677818 8.425571e-03 2.097990e-02
## PIGW 0.5767598 2.418164e+00 2.930250 4.040386e-03 1.175128e-02
## GDPGP1 -0.5767308 2.245276e+00 -3.199002 1.755282e-03 6.049883e-03
## LRRN2 0.5763660 1.173983e+00 2.470075 1.488318e-02 3.331721e-02
## HSPA4L 0.5758444 1.974137e+00 3.072365 2.616840e-03 8.316110e-03
## PLCE1 -0.5731638 1.467656e+00 -3.611357 4.423932e-04 2.086196e-03
## MST1L -0.5720616 1.230889e+00 -2.528660 1.271901e-02 2.930214e-02
## FZD3 0.5639723 1.567895e+00 3.106403 2.353159e-03 7.616939e-03
## PRPF40B -0.5603185 1.231315e+00 -2.906969 4.332281e-03 1.241083e-02
## PPP1R3F -0.5597457 1.999511e+00 -3.661071 3.717460e-04 1.826391e-03
## SCLY -0.5586644 2.599165e+00 -2.923675 4.120937e-03 1.192885e-02
## POLR3B 0.5567878 3.886780e+00 2.542552 1.224912e-02 2.841278e-02
## KCNQ5 0.5539898 1.012879e+00 4.054311 8.869109e-05 6.313783e-04
## ETFBKMT 0.5529267 2.903084e+00 2.458236 1.535846e-02 3.416191e-02
## KCNA2 0.5518372 8.876496e-01 3.476196 7.040313e-04 2.966185e-03
## FAM185A 0.5512547 2.421610e+00 2.944475 3.871037e-03 1.135836e-02
## ZDHHC14 -0.5505150 1.524684e+00 -2.687542 8.197602e-03 2.052429e-02
## CCDC80 0.5494623 8.918237e-01 3.363592 1.026988e-03 3.967453e-03
## THAP9 0.5494343 2.111199e+00 3.032148 2.963518e-03 9.167815e-03
## GRAMD2B 0.5486137 1.933442e+00 2.589884 1.076281e-02 2.554451e-02
## BPHL -0.5424615 1.550904e+00 -3.367105 1.015098e-03 3.935556e-03
## RIMS3 0.5379521 2.478128e+00 2.348296 2.045946e-02 4.304581e-02
## KLHL25 -0.5366128 9.562206e-01 -3.512966 6.211975e-04 2.702642e-03
## USP54 0.5361827 1.902972e+00 3.126751 2.207522e-03 7.252500e-03
## ZNF223 -0.5354876 1.914829e+00 -2.757870 6.708257e-03 1.750108e-02
## LMLN 0.5352752 1.771806e+00 2.901885 4.398546e-03 1.253105e-02
## NEGR1 0.5352625 2.112816e+00 2.722204 7.429691e-03 1.901103e-02
## MEOX1 -0.5329208 9.461129e-01 -2.985186 3.421814e-03 1.026631e-02
## ZFP41 -0.5328495 1.632877e+00 -2.612160 1.012116e-02 2.435814e-02
## TMEM241 0.5283211 2.146202e+00 2.763346 6.603316e-03 1.727671e-02
## AFAP1L2 0.5279389 1.847041e+00 2.351513 2.029117e-02 4.276759e-02
## PLCD3 -0.5233555 2.541970e+00 -2.363866 1.965625e-02 4.166634e-02
## SAPCD1 -0.5207388 1.781312e+00 -2.358262 1.994209e-02 4.216672e-02
## CA13 0.5157409 2.137345e+00 2.589769 1.076621e-02 2.554451e-02
## LRRC34 0.5157125 1.853664e+00 3.050577 2.799703e-03 8.770332e-03
## ZNF606 -0.5113691 2.971470e+00 -2.406196 1.761181e-02 3.811607e-02
## ANO5 0.5103283 1.203212e+00 2.386517 1.853759e-02 3.972818e-02
## THSD1 -0.5091416 1.486633e+00 -2.421014 1.694208e-02 3.699743e-02
## PPEF1 0.5079833 8.070089e-01 3.146223 2.076029e-03 6.910387e-03
## GRB14 0.5053138 1.002550e+00 3.314546 1.207243e-03 4.489778e-03
## CLDN12 0.5037501 1.004470e+00 4.347546 2.860481e-05 2.787421e-04
## SLC6A4 0.5035570 2.218951e+00 2.328675 2.151280e-02 4.491933e-02
## ANKRD16 -0.5028392 2.132169e+00 -2.311426 2.247799e-02 4.657390e-02
## PSMC3IP 0.5001381 1.694968e+00 3.313160 1.212739e-03 4.507393e-03
## SPATA7 -0.4992497 1.202327e+00 -4.108288 7.229802e-05 5.450457e-04
## HSD17B1 -0.4992450 6.280013e-01 -5.558905 1.612430e-07 8.103145e-06
## AMIGO3 -0.4982475 1.157669e+00 -2.593404 1.065903e-02 2.535417e-02
## POLR3G 0.4941515 1.347490e+00 2.957935 3.716845e-03 1.098363e-02
## FAM83H -0.4813593 1.219264e+00 -2.974515 3.534672e-03 1.053826e-02
## INTU 0.4788872 1.435362e+00 3.233943 1.568994e-03 5.529946e-03
## COLEC12 -0.4765017 1.902017e+00 -2.452500 1.559354e-02 3.456823e-02
## TMEM86A -0.4749845 1.475551e+00 -2.493024 1.399908e-02 3.170915e-02
## MAP6D1 -0.4747725 1.334564e+00 -3.239928 1.538997e-03 5.448511e-03
## MYH10 0.4693956 1.159752e+00 2.773430 6.413967e-03 1.689551e-02
## EGFL8 -0.4678696 6.893250e-01 -3.124798 2.221131e-03 7.280987e-03
## WDR97 -0.4670594 8.739580e-01 -3.823240 2.083698e-04 1.193272e-03
## ZNF460 0.4660761 1.432244e+00 2.897745 4.453188e-03 1.263044e-02
## UNC5CL -0.4655863 2.499475e+00 -2.389496 1.839472e-02 3.949337e-02
## DPH3P1 0.4643935 1.590977e+00 2.702961 7.847540e-03 1.980252e-02
## EFCAB11 0.4636743 1.920036e+00 3.319493 1.187801e-03 4.425801e-03
## SCIN 0.4617525 1.002622e+00 3.688987 3.369021e-04 1.702454e-03
## RAB3A -0.4584160 8.812048e-01 -3.726135 2.953098e-04 1.546671e-03
## SLC35E4 -0.4583670 9.743732e-01 -2.814482 5.693121e-03 1.542266e-02
## IFT140 -0.4580075 1.216554e+00 -3.115760 2.285120e-03 7.450948e-03
## AZIN2 -0.4557866 9.100170e-01 -3.580261 4.928398e-04 2.265535e-03
## DNAJC18 0.4540267 1.998183e+00 2.555233 1.183386e-02 2.762320e-02
## EFNA3 -0.4489040 1.096881e+00 -3.298564 1.272099e-03 4.689107e-03
## ZNF425 0.4474862 1.260547e+00 2.636549 9.458354e-03 2.308150e-02
## ATP8B3 0.4468643 1.436782e+00 2.568696 1.140685e-02 2.684230e-02
## LRRC7 -0.4451606 1.081276e+00 -3.216132 1.661520e-03 5.788961e-03
## C21orf62 0.4438068 1.612874e+00 2.523329 1.290358e-02 2.966973e-02
## LOC100996842 -0.4429094 1.310419e+00 -2.278865 2.440424e-02 4.979086e-02
## ZFP69B 0.4402285 1.021524e+00 3.173035 1.906837e-03 6.466997e-03
## JADE3 0.4393029 9.399663e-01 3.236746 1.554877e-03 5.494887e-03
## CDK20 -0.4374519 7.955739e-01 -3.532853 5.803116e-04 2.569054e-03
## TSPAN15 -0.4363806 6.990599e-01 -3.234507 1.566142e-03 5.523176e-03
## C15orf61 -0.4344967 1.005492e+00 -2.889017 4.570438e-03 1.291835e-02
## LMOD3 -0.4344452 1.628685e+00 -2.544375 1.218864e-02 2.830572e-02
## GGT6 -0.4314880 1.189500e+00 -2.830817 5.427465e-03 1.486759e-02
## GPRC5C -0.4312393 7.084544e-01 -2.847220 5.172145e-03 1.429875e-02
## C1orf116 0.4265722 9.731384e-01 2.398251 1.798053e-02 3.877256e-02
## ZNF280C 0.4264786 1.340856e+00 2.703630 7.832647e-03 1.977335e-02
## BEX5 -0.4211108 8.298340e-01 -2.975496 3.524148e-03 1.051217e-02
## ASIC3 -0.4177986 5.728481e-01 -3.670835 3.591878e-04 1.782413e-03
## PUS7 0.4142600 1.676554e+00 2.451628 1.562959e-02 3.462860e-02
## H2BC15 0.4124769 5.357225e-01 2.984436 3.429629e-03 1.027935e-02
## ZNF582 -0.4114628 1.775558e+00 -2.850624 5.120561e-03 1.417928e-02
## SLC6A16 0.4084253 1.320153e+00 2.852148 5.097607e-03 1.412549e-02
## WTIP 0.4080758 2.166025e+00 2.822785 5.556648e-03 1.514289e-02
## PFN2 -0.4045351 1.050604e+00 -2.427432 1.665906e-02 3.652736e-02
## FARP1 0.4045316 1.287432e+00 2.497843 1.381949e-02 3.138627e-02
## TMEM44 0.4043272 1.122166e+00 2.836030 5.345106e-03 1.467769e-02
## ZNF846 -0.4024553 1.957657e+00 -2.597861 1.052894e-02 2.512035e-02
## MTCP1 0.4016185 1.041086e+00 3.703874 3.196085e-04 1.638097e-03
## CCDC15 0.3965720 1.057565e+00 2.728049 7.306834e-03 1.874925e-02
## ZFPM1 -0.3957480 8.856199e-01 -2.370762 1.930952e-02 4.109293e-02
## LIPT2 -0.3865664 1.254477e+00 -2.757968 6.706364e-03 1.750000e-02
## LRRC46 -0.3843528 8.210395e-01 -3.089936 2.477489e-03 7.954256e-03
## NUDT13 -0.3809258 1.432521e+00 -2.407902 1.753355e-02 3.801606e-02
## FN3K -0.3809212 5.278538e-01 -3.417351 8.585281e-04 3.449235e-03
## BEND5 -0.3772447 8.350352e-01 -2.676153 8.465187e-03 2.105203e-02
## AASS 0.3760480 1.022028e+00 2.617405 9.975177e-03 2.408992e-02
## DHRS11 -0.3747020 1.046463e+00 -2.585459 1.089454e-02 2.581087e-02
## CRYGS -0.3722152 1.113857e+00 -2.316035 2.221645e-02 4.612868e-02
## CENPS 0.3679920 1.065779e+00 2.502447 1.364986e-02 3.110227e-02
## HILPDA -0.3675137 1.499195e+00 -2.376965 1.900228e-02 4.053365e-02
## ZNF850 0.3643555 1.992499e+00 2.730896 7.247646e-03 1.862155e-02
## QPRT -0.3609079 1.181394e+00 -2.337198 2.104952e-02 4.406278e-02
## AMDHD1 0.3604960 1.205948e+00 2.584597 1.092035e-02 2.585654e-02
## NWD1 0.3552688 6.645564e-01 2.982574 3.449128e-03 1.032475e-02
## CA8 -0.3540648 7.930698e-01 -2.401163 1.784462e-02 3.853808e-02
## MCF2L -0.3480199 7.730811e-01 -2.546846 1.210705e-02 2.816823e-02
## TEX22 -0.3406668 8.313437e-01 -2.338863 2.096006e-02 4.388883e-02
## EXTL2 0.3380914 1.216805e+00 2.500639 1.371626e-02 3.121159e-02
## ZNF132 -0.3363762 1.305671e+00 -2.350527 2.034265e-02 4.286087e-02
## ZNF596 -0.3356181 1.332930e+00 -2.332399 2.130931e-02 4.455721e-02
## BBS12 0.3299788 1.604934e+00 2.287284 2.389278e-02 4.905113e-02
## CELF3 0.3289330 7.136636e-01 2.843418 5.230330e-03 1.442598e-02
## FCRLB -0.3279686 7.086895e-01 -2.972283 3.558704e-03 1.060458e-02
## PARD6G 0.3277366 7.660642e-01 3.073949 2.603982e-03 8.284791e-03
## GPLD1 0.3233862 6.561487e-01 3.110421 2.323712e-03 7.546337e-03
## UGT8 0.3231466 1.101377e+00 2.611230 1.014722e-02 2.440505e-02
## PSD3 0.3223671 9.779205e-01 2.416841 1.712836e-02 3.728751e-02
## FAM124B -0.3215541 1.021604e+00 -2.455836 1.545643e-02 3.430715e-02
## ZRANB3 0.3174147 1.510941e+00 2.707731 7.742016e-03 1.958207e-02
## CPLANE2 -0.3149703 6.914240e-01 -2.764168 6.587695e-03 1.723964e-02
## CCL24 -0.3135853 5.501559e-01 -2.984899 3.424804e-03 1.027122e-02
## KCNC4 -0.3083970 8.713637e-01 -2.336518 2.108617e-02 4.412952e-02
## L3MBTL4 0.3075348 1.170795e+00 2.290875 2.367751e-02 4.866815e-02
## CFAP251 0.3046600 6.168644e-01 2.858969 4.996079e-03 1.389297e-02
## PSTK -0.3045136 1.065512e+00 -2.423918 1.681348e-02 3.677531e-02
## LTB4R2 0.3022967 1.058158e+00 2.392589 1.824744e-02 3.922296e-02
## SENP8 0.3004347 1.238043e+00 3.183562 1.843986e-03 6.291620e-03
## TDRD12 -0.2952565 6.505601e-01 -2.354160 2.015362e-02 4.252772e-02
## ADSS1 -0.2910015 4.803343e-01 -3.538980 5.682360e-04 2.528810e-03
## ZNF19 -0.2903888 9.221692e-01 -2.496163 1.388187e-02 3.148574e-02
## MYORG 0.2863171 1.655845e+00 2.392511 1.825115e-02 3.922296e-02
## ZNF726 0.2827303 1.187037e+00 2.287059 2.390633e-02 4.907046e-02
## MYO1A -0.2825746 6.631207e-01 -2.823465 5.545604e-03 1.512321e-02
## CCDC138 0.2788754 1.137407e+00 2.735020 7.162717e-03 1.845131e-02
## CDIN1 0.2737374 9.359835e-01 2.407607 1.754707e-02 3.802453e-02
## NRL -0.2653398 8.816544e-01 -2.445244 1.589555e-02 3.511945e-02
## ZNF135 -0.2611389 5.798026e-01 -2.415603 1.718398e-02 3.736743e-02
## CABP4 -0.2594789 8.406373e-01 -2.281662 2.423329e-02 4.952727e-02
## CATSPERG -0.2576420 5.568691e-01 -2.775527 6.375213e-03 1.682092e-02
## PIGZ -0.2522609 5.999261e-01 -2.469293 1.491415e-02 3.336134e-02
## MAP3K13 0.2446732 1.073659e+00 2.280466 2.430626e-02 4.964220e-02
## ZNF620 0.2334506 1.111005e+00 2.612783 1.010372e-02 2.434437e-02
## KRTCAP3 -0.2319171 5.837618e-01 -2.695325 8.019171e-03 2.017979e-02
## KCNMB3 0.2281283 8.327175e-01 2.401530 1.782752e-02 3.852668e-02
## SSC4D -0.2213299 4.950435e-01 -2.517897 1.309412e-02 3.004377e-02
## SCML2 0.2192448 5.013808e-01 2.589741 1.076703e-02 2.554451e-02
## UFSP1 -0.2157205 3.418626e-01 -2.472100 1.480319e-02 3.317571e-02
## ZNF835 -0.2118887 4.630805e-01 -2.739377 7.073963e-03 1.827826e-02
## OR1F1 0.2001159 5.898291e-01 2.553017 1.190549e-02 2.776778e-02
## LOC100133315 0.1871264 4.838266e-01 2.520506 1.300229e-02 2.986775e-02
## B
## HBA2 6.340548153
## FTL 6.360120148
## ACTB 6.847266798
## B2M -3.380355616
## RNA28SN1 10.213496185
## EEF1A1 2.539580529
## TXNIP -2.965629823
## FCGR3B -2.984703434
## RNA28SN4 13.943124423
## HBA1 1.029708181
## IFITM2 -2.541480576
## FTH1 -2.258813828
## RNA18SN2 14.981576656
## RNA18SN3 14.981576656
## RNA18SN4 14.981576656
## IGKC -1.344497983
## RNA28SN3 -0.653009309
## IGHG1 -0.574807701
## RPL13A 4.644122991
## TPT1 3.832943829
## MYL6 -0.185660454
## RPS27 2.307793896
## RPS11 5.042084671
## SELL -2.064394210
## RPS3A 2.663939979
## TMSB10 1.268498725
## EEF1G 6.640851111
## GAPDH -2.757613044
## RPL10 3.940263934
## CD74 7.133356786
## RPL3 5.194381894
## RPL11 4.202883350
## UBC -3.760239109
## RPL13 3.969952829
## JCHAIN 1.398609730
## RPL9 2.757731037
## COTL1 13.739772737
## RPS6 7.385905056
## LAPTM5 0.513233846
## RPLP0 3.056018787
## RPL8 7.085026150
## RPL21 4.180071270
## RPS3 4.865638958
## RPL27A 5.528827209
## JAML 3.020876041
## RPS2 7.376347951
## LTF -2.995077363
## PSAP 2.404910411
## RPL19 7.770851436
## RPS18 4.815096811
## OAZ1 -0.681262158
## FCN1 1.603232281
## RPL7 3.058342933
## RPS14 5.279698548
## IFIT3 -3.502993016
## RPS4X 7.107131008
## RPS9 5.506152829
## CORO1A 2.233924070
## RPL32 3.887042225
## RPSA 0.131708023
## RPL4 4.600650008
## RPS12 0.706779431
## RIPOR2 -3.328939588
## RPS20 3.811895441
## RPL41 0.203470014
## RPS8 4.112649942
## SH3BGRL3 5.038081633
## ACTG1 0.906118014
## GABARAP 0.334868289
## VSIR -1.561509465
## TUBA1A 4.686065192
## RPS27A 3.472264561
## ZYX 4.100938518
## MXD1 -1.317804604
## RPS19 0.933203963
## IFIT2 -3.455013326
## RPS23 4.567806023
## RPL6 5.959043155
## RPL18A 4.052772621
## PFN1 1.255534004
## TRIM22 0.022831600
## RPL39 0.720274522
## EVI2B -3.611399532
## RPS10 2.917561917
## FLOT2 -1.857290089
## RPL12 4.920485645
## ALDOA 5.278965070
## RPS15A 1.723053247
## UBA52 1.388548384
## VIM -2.278786159
## RPL7A 4.138439468
## RPL26 4.635236500
## RPLP1 3.623180874
## IFI30 1.569960594
## CYTH4 5.059831532
## LILRA5 -1.446013512
## RPL37A 1.732342686
## RPS24 2.268212785
## RACK1 6.496336060
## RPL23A 3.885543932
## TYROBP 2.979260538
## RPL17 3.170507475
## LRRK2 -0.346196549
## ICAM3 3.585782201
## RPLP2 1.895721231
## ALPL -2.790816417
## FKBP5 -3.565497164
## RPL30 2.614340134
## CLIC1 -3.153586387
## RPS17 3.387261372
## RPS16 3.142249656
## HMGB2 -2.855812847
## LSP1 7.673766053
## RESF1 -1.281063112
## TALDO1 0.473333767
## SMCHD1 0.568272759
## RPL37 0.165203627
## RPL28 0.729171251
## SERF2 3.338625567
## AIF1 14.708400384
## ENO1 2.488564861
## CFL1 -0.469569714
## RPL23 2.016751090
## FKBP8 3.623636072
## EEF1D 8.483116487
## CD52 0.370207261
## ADAR 1.747019143
## PFDN5 4.608213071
## RPL15 4.991873236
## MEGF9 -0.477719762
## ARRB2 -2.756310479
## MME 1.488752630
## HLA-DRB1 2.968354159
## RPL27 3.538400197
## FCGR3A -2.898656323
## CFLAR -2.446834086
## S100A6 -3.500231564
## MMP25 -3.454703972
## TXNDC5 -0.609996093
## CST7 -2.870269659
## RPL5 3.704834720
## GPSM3 -0.875387285
## FAU 3.965232925
## RPL18 2.951823579
## HCK -0.692482955
## RPL36A 2.091457099
## RASSF2 -3.314549197
## TAP1 -2.250117771
## RPS5 3.793496060
## RPS7 3.163378811
## LIMD2 6.817702565
## RPL34 -0.642463019
## RPL31 1.062292151
## RPS25 3.556678562
## TLR2 -3.573008367
## RPL35 3.388550537
## RNF213 -0.696096977
## CDC42SE1 -3.517801423
## LST1 0.628963677
## ABTB1 -2.550116795
## RHOG -1.376552935
## NCF1 -3.171105032
## RPL29 2.842579508
## TNFRSF1B 4.615870200
## MSN -3.041438162
## STAT1 -1.370841166
## MSL1 -3.143426821
## EFHD2 7.863204523
## GBP1 -3.678407255
## SPI1 0.359976818
## HSP90B1 -1.281034090
## RPL24 4.025667699
## MYO1F -2.230872068
## CST3 0.305548905
## KLF6 -1.067389136
## RPL10A 3.356279952
## TKT -2.026879359
## USP15 -3.164755960
## HLA-DRA -2.555030634
## RGS18 -2.107322422
## IFI16 -1.986185535
## FLNA 2.176241772
## RPL14 1.428734127
## CNN2 -0.748456077
## HK3 -1.332356695
## COX4I1 3.583604801
## OAS2 -3.433049933
## ITGB2 -1.798929939
## LILRB3 -0.605140771
## PARP9 -0.533041065
## OAS3 -3.740234092
## IFI44L -3.762339669
## ARAP1 0.197982615
## FXYD5 9.018281077
## RPS29 0.430263717
## OAS1 -2.858351386
## MBOAT7 2.369393331
## GNB2 4.362426209
## RPL35A 2.025483856
## CYBA 7.132352627
## ARPC4 -0.070570202
## VASP -3.490187031
## MAN2A2 0.202375965
## RPL38 3.346084484
## B4GALT5 1.261163753
## STK17B -1.694388849
## CNPY3 4.551754493
## SLC6A6 -2.971170147
## CD48 6.827497325
## MVP 4.733038493
## IGF2R -3.516715056
## GNAI2 0.840441436
## RPS15 1.071112804
## RPS28 -0.493436519
## RPL22 4.979282578
## TYMP 2.961057816
## IFI44 -3.377830054
## NCF4 -2.941417419
## ANXA11 -1.236802943
## CTSD -3.595343498
## NACA 6.949799069
## NFAM1 -1.682644761
## MOB3A -1.233173552
## FCGRT 5.709263453
## EEF1B2 3.781651255
## TPI1 2.965103679
## SSH2 -3.388314416
## EPSTI1 0.225957273
## RPS26 0.305025749
## SAMD9L -2.241174680
## CD46 -2.568288179
## DDX3X -3.627466860
## CSGALNACT2 -1.429164456
## TIMP1 -0.361055936
## ARPC1B 1.640637949
## ATP6V0D1 4.181145000
## TMEM123 -2.636267765
## PLEK -3.462633274
## HLA-DPB1 4.880982054
## PGGHG -0.975221909
## PARP14 -1.809355830
## IL18R1 -3.452182869
## CYSTM1 -2.804871947
## TRIM25 -2.179197700
## EEF2 5.734260720
## IRAK3 -3.754426960
## BTN3A1 2.606266668
## HLA-DPA1 4.741847570
## TMEM154 -1.977809814
## R3HDM4 -2.301092630
## SPARC -0.511249588
## JUNB 3.766077859
## TCIRG1 1.527093153
## IFI27 -3.256250742
## XAF1 -3.245807197
## ATP5F1E -2.961924536
## UCP2 10.099841951
## ADAM8 1.809333890
## OASL -1.874256607
## GNAS -1.732013667
## STEAP4 -3.311460400
## DDX60L -2.818034987
## CSK 9.737549501
## STXBP2 2.691123608
## SLC38A2 1.394982997
## LTB 6.047558478
## TLE5 1.104401475
## CTSZ 4.969856994
## SLC25A6 8.832137191
## TSPO 2.748076597
## GPX1 -0.204011278
## PXN -2.412319127
## HNRNPK -2.128016462
## PABPC1 0.131939190
## CFP 6.137230530
## RPS21 0.890712920
## CTDSP1 2.625870231
## RPL36 1.834290095
## CD14 1.909757302
## CAPNS1 5.545607616
## PCNX1 -0.642911230
## APOL6 -1.878372526
## CAPZB 1.826920976
## LYST -0.967426152
## EGLN2 6.349934853
## PELI1 -3.408065160
## SERINC1 -1.937624191
## APOBR -1.783795117
## EIF4A1 2.586200027
## SEPTIN9 9.251042318
## PTAFR -2.830820580
## TNFRSF10C -3.172266437
## LILRA2 -1.706336828
## CYP4F3 0.475573833
## ARHGAP4 9.471323727
## DDX17 -0.066367453
## IMPDH1 5.431044931
## CEBPB -1.024291857
## IL32 -1.947115567
## NOP53 6.913548988
## C19orf38 7.539411390
## IGSF6 -3.462581107
## WIPF1 -2.454702792
## LRRC25 6.706520767
## CLEC7A 0.528856115
## LILRB2 4.200413068
## ATG16L2 0.237182448
## CPD -3.327339126
## PICALM -3.389726014
## FGD3 2.453344956
## SLC16A3 2.213659996
## CELF2 -1.102054857
## PIK3AP1 -3.436375692
## CD164 -0.926917756
## RAB31 -3.604828456
## CREB5 -2.222800442
## CD24 -2.547940410
## RPS13 -0.057422109
## OSBPL8 -3.157752146
## PLEKHO1 2.502303255
## TAPBP 2.849621443
## NUCB1 6.728801322
## HSPA1A 3.703289540
## DOCK8 -0.144212707
## CYBC1 2.993576110
## EIF4G2 -3.185227562
## LGALS1 1.355736821
## TMX4 -2.191768745
## ZC3H11A 2.603931114
## SECTM1 -0.819283521
## PARP8 -0.295252428
## BACH1 -1.885793443
## CAPG -0.267072543
## FERMT3 1.148063157
## GRK6 3.099920524
## DBNL 3.645024648
## RAF1 -0.573209711
## COX6B1 0.205570234
## RNF24 -2.402454634
## RPS6KA1 -3.311396968
## TBC1D10C 5.897676877
## RNPEPL1 7.474480946
## PECAM1 -3.557920140
## PTPN6 -2.371558018
## PTMA 0.125187526
## KPNB1 -2.286367528
## PSMB3 0.360560247
## RNASEK 4.737329102
## SAMD9 -1.791488145
## MBNL1 -3.499882851
## CHMP2A 2.464037251
## NFIL3 -2.997481727
## MTMR3 -1.247300002
## KLF2 0.285673746
## FAM126B -2.680358089
## PRKCB -1.066013232
## CREBRF 0.500074129
## FAM8A1 1.029277289
## TOMM7 2.672799280
## ARHGAP45 -0.876756608
## PPM1M 0.275486837
## F13A1 -1.765411209
## PKN1 6.025897881
## EIF2AK2 -0.567854179
## NIN -2.033889550
## ARF5 7.763736149
## CIRBP 5.037694496
## NINJ1 -1.918850519
## STAT2 -3.205565456
## CCDC88B 4.794933924
## PPP1CA 3.016564420
## S1PR4 3.739987954
## LGALS9 -1.497456898
## HERC5 -3.763283104
## EMP3 2.162280399
## STK4 -0.232858002
## ELF1 2.336848340
## RNASE2 -3.201993349
## SLC12A6 -2.602791932
## KIAA0040 -3.110905610
## TAGAP -2.843890239
## LAMP2 -3.547376834
## USP32 -1.040740962
## STAT3 -2.434927507
## LAMTOR4 -3.418929616
## SIPA1 8.572735207
## GNA13 -2.612459463
## HIF1A -3.715530185
## EIF3K 3.457240060
## NOTCH2 -2.836990964
## WAC 1.144385745
## NBPF14 0.206761459
## WDR26 -1.414181233
## DTX3L -0.878590753
## STK10 3.362559514
## THEMIS2 -1.925717940
## ANXA2 -1.807344340
## ITGB1 1.338193668
## ADD3 -1.818659724
## CD68 -0.644784124
## PRDX5 -2.612511712
## CDKN2D -3.530956270
## SPTLC2 -2.849903065
## MAP3K2 -1.831269381
## CRIP1 -2.478470774
## ZNFX1 1.123789372
## BPI -2.713498300
## TGFB1 0.902511839
## MAP4K4 -3.029918539
## PRELID1 -0.762121722
## ACAP1 0.934439240
## ARHGEF1 4.104789825
## SP100 -2.056189589
## SLC12A9 13.346243123
## CD37 7.752881541
## GSTK1 3.394667281
## C1orf162 -2.580129319
## SUN2 8.340369564
## CRISPLD2 -1.626643760
## VAMP8 2.125671411
## IVNS1ABP -2.572492172
## PLEKHO2 -3.550393435
## TWF2 12.546343279
## ACAP2 -1.557429824
## PELATON 3.578071946
## RPL36AL -0.291186673
## PTPN12 -0.604839898
## AMPD2 1.161344360
## TP53INP1 0.318462649
## PSTPIP2 -1.577223507
## PPP4C 0.194021500
## RAB11FIP1 -3.128274219
## C15orf39 6.267886166
## EDF1 2.220065969
## ANXA6 -1.580559469
## WAS -2.241900646
## ROCK1 -2.023871711
## OGA -1.567239080
## GSTP1 3.948459541
## AP5B1 -2.463125952
## HECA 0.439310953
## SNN -1.103520077
## SLC9A3R1 3.682399612
## SMG1 2.881371830
## DDX60 -2.423037220
## PLSCR1 -3.732565680
## TRIR 1.387953462
## DENND5A -3.377760309
## CMPK2 -3.148143299
## BSG -1.124127262
## RAB1B 0.521532191
## UBR2 0.153372710
## CEACAM8 -1.697487202
## DDX58 -3.302891036
## CTDSP2 -2.896149334
## UBN1 0.011773714
## MED13L -0.249128697
## ATP2A3 -1.355023940
## JPT1 1.509067545
## PBXIP1 -3.186779104
## TGFBI 6.327539860
## DICER1 -1.477795828
## SETX 2.981474562
## SP3 -1.703925505
## ARL6IP4 7.023419753
## NBPF19 -1.220407637
## LCP2 -2.291074271
## OGT 1.377364929
## PPM1F 1.208658034
## JAK1 -2.915715057
## APOBEC3A_B -1.359556535
## PAG1 -1.936935232
## CSF1R 5.935992853
## ERP29 4.313884377
## PSTPIP1 4.561753676
## FES -0.384832396
## ZFAND5 -2.778250316
## YBX1 0.650511620
## BTN3A2 -0.762017867
## TUT7 -2.560874089
## QKI -1.782788055
## EHD1 1.044140571
## MEFV -0.848741598
## BCAP31 3.371932421
## AGTRAP -3.553464579
## ANKRD13A -2.266595384
## MGAT1 -2.461077044
## AKAP13 -1.615942157
## CD4 4.422349130
## ACAA1 1.754291646
## EHBP1L1 2.280847910
## CYTIP -3.308813509
## CD82 -1.079885444
## HIPK1 -1.934080857
## SP1 -1.514761149
## LAMTOR1 -2.870136623
## PAPOLA -0.079111194
## HMOX1 8.533929420
## CHD2 1.641247463
## NBPF10 1.368085205
## RPH3A 1.169793145
## PPP2R5A -2.707591184
## ITGB3 -2.611935035
## SEMA4D -2.833331144
## BLOC1S1 -3.634226862
## WASHC1 1.057977735
## CHMP5 -2.846940005
## NT5C2 -1.067306657
## NEK7 -0.574077833
## EIF3F 6.336749338
## DOK2 5.901521274
## STAG2 -2.825031696
## UQCRB -0.139896057
## ELOB 4.415193977
## RGS14 -0.071035031
## MDM2 -1.576413228
## MOB1A -3.425270239
## PSMD4 0.212340010
## PTBP3 -3.725389719
## MFN2 -1.365705811
## XBP1 -2.983612329
## KLF3 -0.993543080
## PPP2R1A 5.175443750
## NEDD9 -2.065494243
## PTPRE -1.724898953
## BAZ2A 1.375256335
## RICTOR -0.398658792
## JMJD1C -3.032984768
## PPP4R2 -2.082752852
## TNFRSF14 6.295425753
## UBXN1 7.213560391
## PSMB4 0.686907369
## TAP2 -2.692553172
## CTSC -2.957462108
## VNN3 -1.040419007
## EPB41 2.766632443
## EIF3G 7.104806240
## RAD21 -0.819754646
## SYNGR2 13.026411154
## SP110 -3.765789936
## SASH3 -3.271052091
## RXRA 3.842231704
## TRAFD1 -2.163457491
## NAP1L1 -1.933485671
## FBL 4.846225983
## CD3E -0.198528857
## CD300LF 4.286394950
## DEF6 4.354435209
## TSC22D4 3.635453672
## OSCAR -0.361723481
## APAF1 -1.032897562
## NDUFA13 0.947822071
## RBL2 -0.983696298
## SYNE1 0.436349806
## BTF3 2.938223932
## MAP3K1 0.139559808
## POLD4 4.158432901
## PSMB10 4.057720133
## COLGALT1 8.212103702
## PRRG4 0.967959756
## ERBIN -1.636046320
## MICAL1 -2.635863900
## RASGRP4 -3.342357597
## ATP5MC2 2.493436503
## LFNG 4.069441241
## RBM3 -3.252477628
## WDFY3 -3.615063207
## EIF3D 9.270599322
## TCN1 -3.308864835
## XRCC5 -2.048633240
## LPIN2 0.005943774
## ABHD5 -2.346412703
## BOD1L1 -1.378567086
## RNF167 0.038118448
## TUBB1 -0.254373626
## NBN -2.352186404
## EIF3L -0.294500976
## SLC15A3 15.956753739
## INPP5D 0.211234261
## XRN1 0.755107255
## UBALD2 -3.586596531
## MFSD14B -2.943673772
## NARF -2.005845110
## SKP1 1.255151550
## LUZP6 -1.660433747
## MTPN -1.660433747
## RALY 1.573102882
## NT5C3A -2.858338012
## WASHC4 -0.011709124
## KIAA1109 1.416079126
## ACADVL 3.061299841
## MAN2B1 6.953238493
## NLRC5 -3.312652893
## QSOX1 -2.275906316
## MAP2K3 -2.981763872
## IFIT5 -2.541720826
## NEDD8 1.127508126
## H2BC4 -1.600972878
## SNRK -0.656301886
## MTARC1 -1.910005684
## JAK2 -2.035444492
## TAB2 -1.467878494
## CEBPA 8.156045029
## TFEB 1.466239016
## STXBP5 -0.943749606
## SPOPL -2.019064942
## PYCARD 5.477271789
## ARHGDIA 4.371695966
## UGCG -3.313576432
## MS4A3 -2.826862951
## GYPC -1.868609044
## DMXL2 -0.762103938
## SLC43A2 4.472146591
## MAPKAPK3 3.942719096
## SSR2 -2.555381434
## GSTO1 -1.695724585
## LRCH4 3.080023585
## SERINC3 -1.946106036
## LPAR2 -2.050604547
## LILRA3 -1.651790610
## SON -0.242018430
## PAK2 -3.631291921
## IFIH1 -2.914635953
## MYO1G 5.384747237
## TRIP12 -0.741675448
## WLS -0.923174250
## PNPLA6 6.107935048
## MANSC1 -2.937758229
## SPG11 3.124114617
## CORO7 6.109182031
## KIAA0930 1.678075855
## ABCA1 -0.667565042
## GRK2 -3.730834720
## TACC3 0.505400913
## SPOCK2 0.800109113
## TNFAIP6 -3.668900662
## CYLD 1.076042627
## SLFN5 -3.028300934
## C9orf72 -3.132374400
## RBMS1 -2.865231020
## SOS2 -2.992067981
## S100A10 -1.988428614
## PDLIM7 0.303372462
## RAB8B -2.625762338
## GUK1 2.831670502
## HDAC7 0.534509799
## VCPIP1 -0.446194617
## BRD2 1.679806235
## TNFAIP8L2 5.526267078
## PRKAR2B -0.419552769
## SLC7A7 0.162420771
## SLC25A3 0.219984661
## HLA-DQB1 -0.919950817
## CPEB4 -1.403746942
## SLC15A4 -3.398708895
## MAP3K11 3.524580579
## TENT5C 1.293807828
## HADHA 4.795439203
## UBXN11 7.316640626
## MYO9B 0.705723788
## PPP1R15B -0.287891358
## PARVG 5.568318323
## WNK1 -0.257418612
## TPST1 -2.475585941
## TRIM38 -2.925180731
## TRANK1 -2.811203233
## KDM7A -0.627396711
## CHMP4B 2.657360810
## AHCTF1 -1.529751830
## PLEC 11.565359774
## CD3D -0.797136998
## DOCK2 -1.980580412
## ZC3HAV1 -2.719922098
## KIF5B 1.023466317
## PTGS1 -2.511023597
## RALGAPA2 -2.637964849
## ZNF106 -3.445374988
## B4GALT1 -2.267049412
## ADAM17 0.020898306
## TADA3 -0.907433913
## CTSH -0.727188808
## FAM214B -1.849246042
## NCOA1 -2.001600656
## ZCCHC2 0.105549402
## FNDC3B 0.277278036
## EIF3C 3.982118803
## MPO -3.450653668
## ABHD3 -1.805483686
## PSMD13 0.643323462
## PPP1R9B 10.037674816
## VPS28 0.559318476
## LMAN2 -0.271761904
## NUFIP2 -0.553463309
## PIK3R5 -2.544735332
## GSDMD 4.121168029
## MAPK13 -1.121128794
## DOCK11 -1.931244144
## COPE 2.208791900
## KAT6A -2.113846817
## ATP6V1A -2.984030701
## VCL 0.311954172
## HLA-DMA 2.883429818
## TRAPPC1 -1.011739862
## RASGRP2 0.383657483
## LCK -1.542599905
## UNC13D -1.575705472
## PPP1R12A -3.459054197
## STX10 -2.212657861
## MCMBP 0.863160439
## EIF2AK1 5.433183334
## NOSIP 2.636012155
## ITSN2 -0.125833065
## MLF2 -1.247202769
## CSGALNACT1 -1.873272664
## CDC37 7.346247532
## SIGLEC10 -3.747015665
## FLI1 -3.174779379
## IQGAP2 -3.723683083
## TMC8 -1.664887720
## IRF2 -3.303445588
## SIPA1L2 -1.600175133
## RAD23B -2.209453507
## RP2 -2.244950739
## G6PD -0.606888366
## NPEPPS -2.740032628
## ZBTB16 -1.695226729
## COX7C -2.395432264
## AP2M1 -1.858592460
## BTN2A1 -2.211236420
## PATL1 3.165560388
## PARP4 -2.500866154
## PHF20L1 -0.866084539
## MARF1 -1.711945731
## HBP1 -2.660863432
## ARRB1 6.983914577
## GBP4 -3.460958508
## UBL5 -2.394782987
## CPVL -3.092884045
## KDM3B -0.664573853
## DEK 1.782811906
## CCM2 -0.269507472
## EP300 0.106657561
## PHB2 5.358029579
## KDM2A -2.349687780
## SCAF11 -1.211563569
## PTPRCAP -0.261245216
## STK40 -2.699893366
## USP34 0.105777170
## ITM2C -3.080729200
## CIB1 2.794204544
## DNAJC13 1.949197634
## SNX27 -0.543138868
## ZAP70 -0.610480345
## TMCC3 -3.210145180
## PPP1R12C 7.125242821
## SEL1L 0.599822692
## EIF3M 5.654311963
## HNRNPH3 -0.331074377
## RGS19 -1.354002837
## CRTAP 3.423624905
## FAM89B 9.694499511
## CEACAM6 -1.550180832
## TMEM120A 0.199203746
## E2F3 -2.167053710
## PRKCSH 3.480476397
## NME2 -1.317635493
## CPNE3 -1.021963118
## AMD1 -1.879613801
## KMT2E 0.456487163
## TAF10 1.434555318
## RAP2C -2.181126014
## GAA 7.118356792
## PIAS1 -1.412903220
## MAZ -2.238369993
## CDS2 -3.293819162
## PACS1 1.857203226
## SNRPD2 -1.430701066
## CES1 -3.693751450
## NCOA2 -0.334852982
## PGLS 8.382603680
## PSMA7 -1.428579514
## NSD3 3.073598350
## NIPBL -0.308086979
## MAP7D1 -1.831779776
## PSMB1 0.539374223
## SEPTIN7 -1.883559864
## USP3 -0.545177681
## NCOA3 5.098487218
## TANK -2.831329864
## RNASE3 -3.681426270
## DPYD -3.376326078
## TNPO1 1.260618249
## SH3BP2 -2.719293893
## PRAM1 1.241319222
## APP 5.935965039
## CAPN2 -1.397866601
## YWHAH -1.164706852
## UBA1 -0.708551203
## MACIR -3.039984514
## CNOT1 2.826840424
## KLHL8 -1.948580662
## ACTR1A -0.447312873
## JTB -3.371813910
## GIMAP5 -1.232700682
## OSGIN2 0.222802843
## VOPP1 -2.593569586
## DYRK1A 0.009772841
## PNISR -2.106636751
## ZNF217 -3.519665914
## CTDNEP1 -0.283410314
## CAVIN2 -1.290134544
## SERPINB6 8.052309457
## ZBTB34 -1.623553200
## HERC3 0.406825866
## PUM2 -2.131052795
## STAB1 -1.950526901
## ERLIN1 -2.153158716
## C5AR2 -1.894204021
## TPP1 -2.942501467
## MIER1 -1.844573482
## KDM5A 1.616136844
## APRT 3.988800604
## PSENEN 0.192097372
## TP53I11 -0.388043165
## FNIP1 -2.553517300
## GPX4 -0.868738661
## IGFLR1 3.500627981
## FOXN2 -0.618525965
## PTP4A1 -2.578183638
## CHMP1A 1.545291717
## LIMS1 0.729219945
## IL1R1 -3.001114965
## SPAG9 -2.063132048
## ARID4B -1.234287728
## EDEM3 2.961462234
## QARS1 1.497435232
## IMPA2 2.428762404
## STX16 -1.726119131
## PPM1A -2.580163118
## MAN1A1 -3.538789510
## C18orf25 0.642592010
## VAMP2 -2.172998382
## H2BC21 -0.639621802
## RFFL -0.923674488
## DRAP1 -0.201638166
## KMT2C -0.141462759
## CD2BP2 2.606938203
## SHOC2 -3.513349984
## CD79B -1.185783070
## CHMP1B -3.343968178
## RNF145 -2.780001506
## STAT5A -2.377168368
## MED13 1.585583607
## KIDINS220 -0.631287796
## EVL -0.934219294
## CDK5RAP3 -3.765321501
## RB1CC1 -1.360512301
## TOM1 -2.617492962
## KLRB1 2.847507780
## TSEN34 -2.309749694
## TYK2 -0.056374391
## CALM1 -3.754968367
## PLIN3 -2.056318589
## PGAP6 6.821211188
## CRKL 4.427107608
## EIF6 1.299474238
## PLB1 -1.271667923
## SNX17 0.436731797
## NFE2L2 -3.534666086
## MIDN -3.434680752
## EDEM1 5.847179083
## AKT1 5.568724422
## ANKRD13D 0.071820644
## POR -1.776395631
## LILRA1 -0.856860422
## PLXDC2 -3.409616960
## UBR5 0.655917646
## HLA-DMB 1.640207456
## ATM -2.258288074
## BIRC6 3.694453579
## ZNF385A 10.049108090
## DEF8 -2.115054317
## SVIL -3.395526882
## REL -1.350513101
## BTN3A3 0.602170099
## DHRS13 -2.362522111
## RC3H1 -2.328874199
## GIT2 -3.336463707
## MRFAP1 -1.394464904
## TPR -3.348845668
## FUT7 7.260825778
## ARFGAP2 3.983674471
## ARID5A -2.339821190
## USF2 3.398301213
## MKLN1 3.112766596
## RIOK3 -2.983279732
## DPP7 3.385942284
## BAZ2B -1.316974229
## EIF5 -3.033977468
## PRPF6 7.981673948
## KAT2B 0.686713816
## UBXN4 -1.224414600
## PLAAT4 -2.665091633
## ERGIC3 0.144058474
## PHF3 0.230012490
## CHD1 -2.597437640
## MAPK3 -2.218577088
## TUFM 1.994915358
## MAT2B -0.976010342
## ZEB2 -3.075297444
## KMT2D -1.714478068
## TMEM170B -2.060073867
## NBR1 -3.511301494
## CHSY1 -3.478706370
## MTDH 4.597489643
## DIP2B -0.547617151
## DEDD2 -2.562683511
## DDX6 -2.638562044
## LYPLA2 5.806091169
## RARA -3.722149006
## CREG1 0.129905002
## SETD2 3.839114387
## UNC119 -1.672683633
## CASP10 7.211174762
## FIS1 0.334007016
## AFF1 -1.523550393
## MORC3 -0.591703429
## SELENOW 1.864027170
## DDX39B -0.652153667
## DOK1 4.831333488
## TAOK1 -0.955971867
## THRAP3 -1.518361866
## PCF11 -1.738016966
## PIP4P2 -2.773221632
## RNH1 7.304521720
## ARL6IP1 2.097545330
## GPBP1L1 -2.663719187
## ABI1 -2.618067464
## LEPROT 1.497329473
## RHOT2 5.025438439
## TRABD 6.575492442
## KLF7 -3.683015290
## ATXN7 2.073784617
## MYCBP2 3.149498534
## MDH2 6.897807725
## WDR83OS -0.141542455
## LDB1 1.642821103
## RAB1A -3.576116224
## TMEM259 6.525833652
## RAB5C -3.534417587
## CNPPD1 -2.089011937
## EIF5A -2.523312270
## ITCH -0.656802795
## TMEM50A -3.635918041
## SF3B5 -0.878666858
## ARHGAP15 -3.474865189
## TLK1 3.588636886
## CHIT1 -2.437177661
## COPA -0.657779771
## PHIP -0.894961270
## CRLF3 -2.735089444
## APEH 3.505209023
## LPCAT1 6.720372503
## SLC19A1 -2.179559025
## MAF1 4.647896920
## NPC2 -3.001821793
## CEP63 -0.872734276
## TRIM28 2.855028591
## CSNK2B 3.647895158
## TMC6 -0.068693289
## TMOD3 -0.335439230
## COMMD6 0.596526008
## CHMP4A 4.767277085
## SZRD1 0.258810168
## MTMR6 -0.968165124
## AUP1 -2.276266505
## HSBP1 -0.103971906
## BID -2.502022797
## CSNK1A1 -2.516130496
## TNKS2 2.912336255
## UQCRC1 -2.122119309
## CANX -2.924948578
## NOD2 -1.012611934
## NAPRT 7.691731241
## PRRC2C -1.153154528
## SH3BP1 5.262226489
## CELF1 -0.878713567
## FAR2 -0.592452089
## IRF3 1.987901330
## YOD1 -0.566382153
## CCR7 0.120943380
## HMGN4 0.205060812
## MARCO 8.712464445
## MTRNR2L6 -1.813302624
## GPR27 -3.303154533
## LSM14A 0.853619292
## TMEM219 -1.375813515
## TMED8 -2.944952492
## DGKZ 1.769928699
## CORO1C -3.575487568
## POLR2E 6.485456977
## MARCHF2 -2.232554549
## PGRMC1 -1.348424945
## TES 0.103317701
## RHOT1 -0.757907500
## HPSE -3.537228932
## PPP2R5C -1.542388471
## PLXNB2 3.020492485
## SEPTIN2 -0.617308492
## IKZF1 -2.996223084
## TBC1D10B 3.748645922
## CEP19 -3.149343035
## CREBBP -2.704461762
## TSPAN2 -2.751740663
## TACC1 -1.377222795
## BAG1 -1.735240623
## PTAR1 0.320136317
## EIF3H 2.014511706
## PIM3 -0.711871469
## LRRC75A -2.763136287
## NFAT5 0.304225750
## YME1L1 0.563434904
## MAP3K5 -2.662042342
## STK38 -3.273625523
## FAM120A -2.756681429
## EPS15 0.304495361
## SMG7 2.549819301
## USP9X -2.760959355
## STXBP3 -3.345950398
## MTF1 -2.052442877
## RSU1 2.449972382
## SCAMP2 4.906749135
## TRAF3IP3 -2.823921557
## FAM111A 4.385097497
## ATP6V1F 2.846289073
## SART1 4.000603059
## USP25 0.662336401
## IL6ST 1.283619039
## KIAA0232 -3.737206070
## ATF7IP 1.825753740
## SLC66A2 5.248773318
## FAM160B1 -2.859463036
## BRK1 -3.511422187
## CAMK2G -2.601991879
## NAPSA 15.456626410
## EPN1 5.463844370
## PTPN18 -1.485950472
## RCOR1 -1.342820482
## SEL1L3 -2.783090273
## WASHC2C 0.246322764
## BANF1 2.034388878
## EPG5 3.087100656
## CGGBP1 -0.081357236
## UQCR11 -0.412449314
## KIF1B -3.069302694
## MMD 2.051955454
## GBP3 -3.444225498
## ZNF281 -2.125881518
## OGFR 0.807299612
## CD79A 0.268822422
## SPSB3 4.799271834
## CD6 -2.062856558
## ROGDI 2.752169559
## LAMP1 -0.364646643
## NPTN -2.407732970
## C17orf49 2.876924853
## PFKL 4.901038687
## NDUFA1 -3.228221968
## HCST -0.874266347
## FBRS -0.057762357
## LARP1 4.569601749
## EIF3A -1.114254034
## ZNF467 4.061197373
## COPB2 -1.158333857
## RNF11 -3.701989070
## ATP5PO -1.765335835
## KBTBD2 -2.387795865
## USP4 -3.660428025
## CRTC2 -0.866712340
## CENPB 4.923747228
## TOP1 2.193349753
## KCNAB2 3.579692193
## ESYT1 -2.546244775
## PRKAA1 -0.632523470
## PIK3CG -2.414745026
## RNF169 1.509556024
## PHF12 -1.043178651
## TNFSF14 -3.718220750
## RHOC -3.733790121
## MYLIP -3.138249727
## BRMS1 2.086807693
## TAGLN 11.811531460
## ANKRD12 -1.677985874
## RASSF4 2.222317208
## PIM2 -3.475816920
## ADCY7 -3.067794104
## KIAA0319L -2.680907367
## UHMK1 0.532757650
## ALDH3B1 1.436180912
## CLIP1 -2.500038327
## SMARCD2 3.488726804
## SYTL1 7.234900548
## LAT 0.328384178
## DENND1C 5.850876575
## MTCH1 -1.740218406
## PEF1 -2.529769430
## PTPA -0.497023666
## ARFGEF1 -0.134648296
## SOD1 2.110321577
## XPO1 -2.041414613
## FBXW5 1.510961537
## ZDHHC19 -2.647469485
## VPS9D1 -2.822953754
## MFNG -1.508459234
## CLTB 5.852531035
## SARS1 5.005026454
## TCF25 3.552677192
## SSR1 1.068606180
## LNPEP 2.511170952
## FAM50A 2.092934581
## BLVRB -2.561812191
## FCMR -1.865326862
## PELI2 -1.688431680
## NLRP12 -3.608580613
## TNFSF13 4.284403395
## JDP2 -2.835725602
## STING1 1.185144444
## HM13 0.551522870
## COPB1 -1.274028865
## ARHGEF6 -2.426766327
## FLII -2.514472950
## NUP153 -1.074314882
## LPAR6 -2.024169503
## RELT 1.592972375
## ATP1A1 -2.692634293
## ATP11A -1.464362525
## TBK1 1.425573006
## PCGF5 2.812055611
## ARAF 2.202457794
## EIF4G3 2.398789891
## NDUFV1 1.212839570
## RPN1 -3.447721879
## CHD7 -1.492738636
## PIKFYVE 1.369780349
## MFSD14A 0.312490797
## SCYL2 1.559641330
## GPR141 -1.821697600
## WWC3 -2.131244189
## NCLN 1.439012475
## MAP2K2 0.992563320
## ANO6 2.703394014
## GTF3A -0.668720417
## PIP4K2A 3.475764005
## BAX 1.165182897
## AKIRIN1 -3.059931797
## NADSYN1 3.011590070
## GPR108 -2.597455595
## MRPL28 1.359134911
## PPCDC 0.618860664
## ATP6AP1 -3.181825438
## NSD1 2.045606695
## TRAPPC8 -0.895459630
## CDC42EP2 8.813195718
## ARCN1 2.964319619
## YIPF3 -3.425981645
## ARFGAP1 7.130665444
## CEMIP2 -3.102930885
## FNDC3A 2.449049862
## PKN2 -2.502043122
## TNK2 3.510754806
## TOMM6 1.209174714
## UXT 2.762188086
## AP2S1 0.445285224
## NUDC 2.208773861
## HACD4 -3.603035594
## PAN3 -0.961680552
## LAMTOR2 3.642246837
## CMTM3 -1.153811571
## NCOR1 2.523112273
## FBP1 13.128388059
## CDIPT 2.051802245
## MARS1 6.523221696
## FBXL3 -3.027397971
## RAB11A -2.591397569
## WDR82 -2.436060928
## SLC38A1 -0.931767321
## RRM2 9.629211826
## RASAL3 -0.679243433
## VPS51 3.979573030
## PSMB6 0.403811637
## OXSR1 -1.819287060
## KLHDC3 3.699949024
## ELL2 -0.578536942
## TRIM56 -0.977588645
## TIMM17B 0.540724881
## STRN4 9.198327402
## PAFAH1B1 -2.652450147
## NECAP2 7.675514407
## SH3BP5L -2.172966790
## SBF2 1.027090645
## SAP30 -1.494102933
## TOR1B -3.132121593
## UBXN6 1.404539524
## CCDC12 4.228518450
## LGALSL -3.169215375
## PPTC7 -1.698706348
## CD81 2.472709411
## FUS -0.995727391
## SEPTIN1 0.054967077
## OSBPL11 -2.675087408
## ENTPD4 3.508869901
## HIGD2A 4.693903256
## PCMTD1 -3.730946723
## CHKB 0.099498294
## HMGCR -0.931355681
## FAM91A1 -1.313795548
## TDRD7 -2.625999622
## NDUFB9 -0.489925304
## TBCB 7.235417011
## UHRF1BP1L -1.765412590
## TRAM1 -1.933549018
## B3GNT2 -2.519629700
## RNF38 -0.457110645
## CFD 3.414072034
## CD2 -3.521267230
## DNAJB2 4.224066071
## TXN2 -0.035659317
## CHPT1 -3.173477078
## MTX1 -2.574931761
## ZNHIT1 0.693859804
## TUBB4B -2.373140392
## RPSAP58 -2.169000635
## ZNF33A -3.697091266
## PRKD2 -3.312466091
## ARID1A -1.973698911
## SSH1 -3.772169956
## CD1D 7.541601913
## TCF7 -2.830374257
## ATP5ME -0.664966452
## ZNF24 -2.875937746
## STX5 0.869854171
## SH2D3C -0.626878592
## HP1BP3 -0.684612665
## TMF1 0.480811976
## RNF19A 1.506476056
## NELFE 0.846830888
## OTUB1 -0.562882434
## LCOR 0.298475393
## BAG6 1.290857450
## ICAM2 -1.652262759
## DGKH -2.739026951
## HERC1 0.954262222
## REEP5 -0.894360331
## BCKDK 5.133299672
## CEP350 -0.600965983
## H2BC12 -2.890143037
## YTHDF3 -3.103698389
## KCTD20 -2.744736785
## TRIM58 -0.547252197
## SLC9A8 -3.055433915
## ARPP19 -2.222061256
## SURF4 0.559822322
## STUB1 3.846294428
## ASGR2 0.852829044
## NR2C2 0.270385367
## MTURN -2.585957300
## ST6GAL1 -1.514888060
## LRPAP1 -3.747482160
## CARD6 -3.595230753
## AIP 3.798814434
## TRIM5 0.550505076
## HDAC5 -3.469741182
## SIDT2 2.571685673
## ZFAND2B -0.648714742
## IKBKG 4.544158325
## PDZD8 -3.701543538
## CLINT1 -0.604684809
## NUP58 -1.409477329
## RAB4B 3.613910291
## LMF2 3.483354015
## ABI3 4.527155975
## NAAA 0.070855904
## RSL1D1 2.203874248
## PNRC2 -1.828643799
## EFR3A 2.714380491
## SIGLEC9 -0.704700384
## VPS13C -2.369869991
## PNPLA2 1.871344408
## PDIA6 -3.762707482
## SNRNP70 3.943499734
## BIRC2 -2.278961626
## CPNE1 -3.243477725
## AP1G1 -1.798286940
## UTRN -1.057554942
## WIPF2 0.903880099
## RIC1 3.898112391
## C12orf57 1.913325103
## CYB5R3 2.568217311
## SMCR8 -1.536256884
## GIMAP1-GIMAP5 3.604047919
## LY86 4.769100758
## PARK7 -2.554308890
## COASY 3.042869252
## PPP1R12B -2.472099218
## NSMCE1 5.384145890
## HSPA1B -0.509739232
## GALM -2.938501746
## SRF 2.326526218
## BPTF 3.300787605
## MMP24OS 3.869536778
## DGCR2 -1.853981553
## PARL 10.218242099
## KRAS -3.026874164
## FGFR1OP2 -1.947775167
## SRPK2 -2.976403507
## CLN3 -1.764739978
## SMIM3 -0.321942521
## SLC22A15 -0.264078472
## AP1G2 -3.759255767
## HMOX2 1.882453145
## SPINT2 -1.872192205
## ZNF148 -2.189843672
## APC -1.309121988
## SARNP -2.541340012
## RRP12 -3.264708014
## ZNF292 -2.452833280
## PNN -2.055332052
## MRTFA 2.494332820
## CSRP1 3.591584278
## WBP1 3.660177929
## SPRYD3 8.141685105
## MCRIP1 4.237936943
## ECH1 1.654633417
## GPBP1 -3.585051896
## ARSA 4.733593803
## MLLT1 -0.858203195
## PSMC5 -0.116486371
## SSNA1 3.925060218
## RASA2 -2.714529490
## RANBP9 -0.093223669
## FAM193B 0.499616919
## OSBPL9 -2.561910838
## UQCRFS1 -0.960791907
## C1GALT1 -1.344533767
## SRSF9 -2.557380394
## BTAF1 -0.572884215
## STK26 1.583599069
## SIGLEC7 14.427684856
## GOLGB1 2.643908156
## PPM1B -2.658183186
## FAM241A 0.052245646
## RMND5A -2.742475333
## PRR14L 3.339994141
## SIGIRR 2.131118572
## RPS6KB2 -0.202471117
## ZNF608 -3.628849778
## C19orf53 1.379073772
## LMAN1 2.758023853
## DGAT1 1.104221670
## EIF3I -0.840897069
## CABIN1 -0.385051511
## UBXN7 2.069090937
## PEA15 1.583859439
## NUMA1 3.730423206
## TRIM33 0.086240718
## G3BP2 -0.094728636
## ZDHHC17 -0.746668422
## RETREG3 -0.814018285
## MIA3 -0.289446050
## ELF2 -2.186635334
## PTOV1 -0.749783078
## ZC3H7A 0.197790858
## ATP8A1 6.302153813
## SLC44A1 13.609862160
## ETFB 0.948044073
## RUFY1 -3.120691904
## DR1 -3.173101899
## CALCOCO2 -2.678645497
## SNRPB -2.591401566
## PUF60 2.196761552
## SLC25A28 3.451645768
## UBR4 0.132480971
## ARID4A -2.606562664
## NDUFA11 0.088089052
## ABHD14B 1.721323314
## MAP2K4 -3.585368413
## HDLBP -1.782348917
## TNPO3 -0.728545549
## EMC10 5.494919391
## WDR13 2.786761417
## LONP2 -0.626818149
## CDK19 0.303245424
## PHKG2 2.764162053
## TIAF1 1.689153999
## CLTA -0.790903690
## RSBN1L -1.211116699
## PQBP1 2.588116010
## SLA2 -0.807768958
## MAN1B1 -0.064950421
## THOC5 -2.922676827
## LRP1 -3.381027938
## PRPF40A -1.152601590
## SRPRA 3.089928829
## VPS13B 1.242079481
## ATRX 0.018395150
## AZI2 -2.723140012
## VPS4A 0.661324461
## SCAP 5.859239603
## IDH3B 1.517779873
## NKTR -1.229839650
## AFF4 0.178851443
## FBXO38 -3.343567944
## TMED2 -2.176129774
## TEX264 3.116547923
## TINF2 -2.204233175
## CAMK1 4.115110389
## TAZ 0.197141787
## SNX1 -2.884807694
## RBM25 -2.721575062
## CDC34 -0.211994058
## TOPORS -1.856344682
## SAT2 8.405092248
## CIC 7.712345284
## SAMD8 -1.588105359
## SRI 0.073442951
## IDH1 -0.232034823
## TBC1D1 -1.084073291
## STMN1 2.253935092
## SETD5 0.973279536
## BIN1 2.175700282
## TMEM222 1.804508779
## CREB1 -3.126524212
## SUPT20H -1.848920921
## CAPN1 -3.247954581
## MTRNR2L10 -2.711886700
## SBNO1 1.531881884
## LILRB4 -0.957696229
## TET3 -1.895337945
## MPP7 -2.976102347
## RER1 -0.311842674
## CSNK1G2 6.904620453
## HSD17B10 1.495571014
## NCOA7 -2.212773360
## APEX1 2.347521206
## RBM33 -0.230207806
## SUZ12 3.557108794
## PLEKHM2 5.029198680
## NDUFB10 -1.396349260
## RAB21 -2.881236481
## ADIPOR2 10.567163867
## AAMP 11.734327258
## INPP5K -1.034260106
## EZH1 -2.982205699
## ANP32B -3.681767106
## RRP7A -0.814602453
## CCDC186 -0.931656710
## TTC9 8.678956475
## FRY -2.655409028
## B3GNT8 4.187321017
## STT3B -2.065837766
## GPAA1 3.546798374
## LTBR -1.804430690
## DERPC 1.950909593
## ANAPC15 0.306885806
## ARHGAP1 2.849373481
## PRPF38B -2.046053174
## SNRNP200 -2.105004820
## MRPL20 2.491573571
## STMN3 6.404642042
## UBE4A -0.694035072
## MCRS1 3.439392587
## AP1B1 1.249815665
## KLHL24 2.160532723
## SLC8B1 7.259611092
## UNC93B1 -2.555298542
## SPAG7 9.805241974
## ARF4 -3.455644651
## PDPK1 -2.758513421
## SLC26A8 -1.232591485
## ARAP2 -0.503919274
## TESC 0.399651374
## CCAR2 4.021668436
## AFTPH -2.622260483
## EML3 4.340301204
## RFXANK -1.495917427
## GIGYF1 0.982913361
## ZNF652 -2.776656895
## DGLUCY -2.748347391
## FCHO2 -2.873883249
## TRAPPC10 1.073462850
## EFCAB14 -0.767117939
## COL18A1 -2.671576935
## IDH3G 5.507119954
## DNAJC4 4.661874389
## TOX4 -1.342110458
## ANKRD28 -2.444586702
## CHUK -1.008367933
## ZNF638 -2.719457417
## SCYL1 2.012056561
## FMR1 0.581648146
## PXK -3.704322052
## ERAP1 -1.355459160
## PDE7A -2.111901584
## XPO7 2.986814644
## SLTM -1.670142706
## PPFIA1 0.492779437
## PSMF1 5.205603662
## USP33 1.565123148
## VPS39 2.745438160
## TCP11L2 0.370825057
## SIPA1L1 -2.878826168
## ATXN1L -1.534171275
## RALGAPB 2.902908784
## MAPK8IP3 16.302172421
## ME2 -2.586300567
## HVCN1 4.335688314
## AVL9 -0.236934884
## SULT1A3 -3.461535631
## OXA1L 1.528234000
## TMED5 -3.491775522
## SURF1 0.203506283
## TIA1 1.624376700
## KRTCAP2 -1.000157581
## CUTA -2.051046585
## AP1M1 7.075564493
## MIIP 0.845177432
## TLE4 -3.723590487
## ZFYVE16 -3.417543097
## SLC25A11 7.797096989
## SPCS3 -3.078237497
## DYNLL1 -2.297076301
## COX6A1 -3.233506778
## RSBN1 -2.176827267
## SNF8 1.055647262
## NDUFB11 -2.343574957
## SHARPIN 5.684057671
## ZFP91 0.083217751
## PET100 -3.177601314
## TSPAN33 -2.876077075
## LHFPL2 -0.229653695
## DHX9 -2.441783012
## USP8 0.169095662
## RNF187 0.967977825
## GPR132 10.847033418
## NR1H2 3.859974980
## MTMR10 -3.755486323
## PDLIM2 7.638830523
## NDUFB2 -0.789157065
## KHNYN -3.086079398
## RABAC1 -0.315516340
## BIN3 -0.973629045
## PCNP -0.441012858
## RBM42 3.256615579
## RAB33B -3.311035202
## BICRAL -0.631633213
## CYB5R1 -1.661521742
## ASH1L 0.446548769
## ZZEF1 -1.365940456
## INTS6 -0.656495027
## POLR2J -1.662020609
## CARS2 13.507134519
## TRIM8 -2.189981374
## RAB6A -3.678181289
## RTRAF -1.498631973
## NEK9 -0.274739327
## KDM6A -1.055472817
## NAA38 0.973473332
## PSMC3 -0.126981509
## RNF181 -3.249049749
## NAA50 -1.740118229
## RAB14 -3.090233502
## PRMT2 -3.256644683
## METRNL 15.281383677
## ZRANB1 2.087799232
## AGPAT2 2.363226228
## RUBCN -0.386174961
## WDR45 -0.305695884
## TFDP1 0.365253000
## CDK2AP2 5.054560259
## TCF20 2.556532051
## LILRB1 -2.028805993
## CD38 2.892810917
## TMEM250 6.771062643
## WDFY1 -0.949067000
## PRR14 0.507044075
## PRPF4B -0.593695508
## ZFC3H1 -0.680542210
## CYB561A3 6.356157112
## POU2F2 -1.444938705
## USP7 -3.524936741
## TSC22D1 -1.562476385
## YY1 -1.234447557
## PHF1 -3.183132375
## GGA1 3.165234367
## MCTP1 -2.636433866
## SCARB2 -1.262432758
## RASA4 3.540720046
## PLIN5 -3.278367163
## RB1 0.430739305
## CD8B -2.821217837
## HLA-DQA1 -2.723577465
## IRAK1 -1.032633547
## MEA1 -0.485466306
## HERC2 1.053302217
## PTPN11 2.632012649
## PPP6R1 -0.810131681
## TMEM141 3.298510441
## HELZ 0.383608050
## ADSS2 -2.180495265
## INTS11 1.965592029
## CNTRL 0.531962039
## SMAD2 0.063613548
## POU2AF1 -0.663402856
## SAP25 1.202774772
## ZBTB37 0.099005322
## BCKDHA 5.479753380
## ADNP 2.298310852
## ADORA2A 1.512152378
## RGS3 -2.324881871
## AURKAIP1 -0.776797359
## PLSCR3 2.658552883
## CHD3 -3.306225772
## CYC1 0.372031215
## DNAJC8 0.006081868
## NUCB2 -3.772182797
## BABAM1 -0.163140047
## PPP6R2 4.969328244
## RBM4 -1.548560023
## TOLLIP 1.646285858
## DHFR 4.479021845
## RHOF 2.993825515
## BRD7 -1.605077605
## INTS8 -0.174862809
## TECPR1 10.145788885
## NAGA 0.048319008
## MAL 1.768989640
## PITPNM1 14.830505814
## STX4 1.214530682
## RNPS1 0.091735652
## KDM4B -2.668530700
## BRAF -0.033621584
## GPS2 -0.724034423
## GALNT2 -3.196604180
## PCED1A 1.877041418
## DPP8 2.224274397
## NDUFB8 -1.330604566
## KIF2A -0.958901947
## RC3H2 2.013434691
## SPEN -2.289073810
## RENBP 4.483505111
## SUDS3 2.584537574
## OSTM1 -3.130079319
## ODC1 -2.108009403
## NDST1 -3.364607015
## ST3GAL1 -0.846226244
## SDF4 3.900515678
## PLEKHA2 -3.121249096
## BRWD3 -3.620525198
## ATG13 -2.308758439
## FRYL 2.499487652
## UBL7 0.116154660
## RAPGEF2 -2.950752734
## TOPBP1 3.615147640
## CCDC93 2.857127114
## MAP2K1 -0.012785867
## BBX 3.196083965
## RNF31 -2.530330713
## FBXL20 0.163729636
## IMPDH2 0.786992997
## GNPTG 9.609942599
## GIMAP1 4.190600001
## DBI -2.817645116
## FHOD1 3.232602008
## FLT3 -3.137362668
## DCTN1 -0.108972108
## FOXO4 -1.414273509
## USF3 0.745910533
## FAM53B 2.296822580
## PPDPF 2.178461322
## AKAP10 -0.518002277
## PHC3 1.816916772
## CD7 1.427772563
## HERC4 -2.371411648
## CDCA7L -3.274959579
## STRN -2.680796491
## AKT2 5.125523539
## FCHSD2 -1.850494708
## SRGAP2 0.403526655
## TXNDC11 -1.626375672
## FLCN -1.323329995
## ELOF1 3.082305654
## SUPT5H -3.288235476
## PRDM2 -1.318308766
## MARK3 -3.489632985
## UQCR10 -1.275047636
## LSM10 -1.350595044
## CEP97 0.085201193
## SP140 -3.741570462
## NPEPL1 0.147457182
## PITPNC1 9.837522354
## FAM78A -0.736462690
## SPTBN1 1.180316409
## ESYT2 -0.026167459
## HECTD1 1.391171274
## DCUN1D1 -1.403321847
## RPS19BP1 0.742411683
## C9orf16 2.922542115
## CDK17 2.531768606
## CDK14 1.347196346
## SIRT2 1.570556421
## BCL7B 0.005451263
## NDUFA3 2.560924015
## PIK3CA -2.882447030
## NFYA -1.892157422
## MTHFD2 -2.425306311
## UGGT1 -1.086722975
## CCT3 -3.420737557
## RANGAP1 0.689670304
## NCOA6 1.922003002
## NUDT4B 1.480013210
## B3GAT3 2.740097140
## SLC39A1 -1.411181510
## HIPK2 -1.058176686
## VAV3 -3.553352128
## C1QA -3.012958924
## CMTM7 1.520495483
## GTF3C5 1.283277350
## FAM32A -3.757338884
## NANS 5.235735326
## SNRPN -2.412048621
## FCHO1 4.228683210
## SF3A1 -3.750183686
## ROCK2 3.607013398
## ZGPAT 7.453495001
## CUEDC2 3.528692419
## GALNT7 -0.612518961
## ARIH1 1.006948919
## NAA10 2.266815622
## RANBP2 -3.265946794
## ARNTL -0.931025303
## SOS1 3.895128376
## NDUFB7 1.920115458
## GLYR1 -1.620014220
## CHD8 0.322323043
## CPEB2 -0.592047518
## ABLIM3 0.889276773
## NDUFC2 4.276599239
## ANKFY1 -2.457575173
## TRADD 2.158306574
## RABL6 1.856504331
## TMEM205 1.817140369
## ANP32E 2.408207855
## COQ8A 0.844614360
## C2orf88 1.447534787
## ARHGEF12 6.252960060
## MDM4 -0.598931488
## EIF3B -1.655092154
## SLC2A6 7.307422391
## BCL7C -0.224035706
## PSME3 -3.286722656
## HEATR5B 4.559122576
## STARD7 -3.386256421
## VAMP1 0.870531479
## AGO2 -3.572148242
## PLCL2 -3.137835903
## BRAT1 13.181325646
## CASP3 3.512689561
## DNAJB14 -1.243543559
## KIF27 -2.838909006
## EPC1 0.646624752
## EAF1 -1.008539364
## TNRC6B -1.271871150
## ADAM9 -3.522565582
## PYGB 2.865167397
## NCAPD2 10.562437353
## CLIC4 2.070874816
## ADAP1 3.986233512
## RRAGD -2.780834578
## CLCN7 2.577612517
## POLR1D 1.093150676
## PRUNE1 3.062876950
## C11orf68 -2.516349748
## TSSC4 2.413961104
## MAML1 -2.254587020
## ZBTB38 2.414546098
## SRRT 1.147455460
## UBTF 0.560732278
## COX6C -3.246049739
## EIF4E2 2.103025928
## ARFRP1 5.012423042
## CDC26 -0.261616964
## UBQLN1 -2.427154511
## RHBDD2 -1.887724050
## SMC3 3.459242645
## SGSH 6.600651849
## SH3TC1 11.110862212
## SNU13 -2.492956526
## UBE2G1 -0.355702293
## KANSL1 0.029874055
## KDM5B -0.375737282
## ATP8B4 -2.491953635
## ADPGK -1.329894734
## ISY1 0.247269772
## TAOK3 -3.261795635
## EXOC7 -2.022521654
## SIRT7 -1.732043329
## FRG1 4.825859350
## CCS 3.278634809
## PIK3CB -1.916780149
## PLD3 0.030232268
## GADD45GIP1 -0.832426318
## U2SURP 0.963225101
## GPR107 -0.482502850
## TOR4A 9.068534716
## PURB 1.265617727
## AP3B1 0.770132452
## HNRNPLL 6.925711432
## BTN2A2 1.179478228
## ZMPSTE24 -3.062031113
## DGCR6L 1.964807598
## DNAJC7 0.475891968
## CPSF2 0.986994782
## NSA2 -0.728795736
## CHPF2 0.180227782
## AKR1A1 -1.574202080
## TEX2 2.318702263
## STIM1 1.011325890
## RCN3 3.911921090
## ZBTB44 -1.164943737
## VWA8 -2.167158387
## NSF 3.552408348
## ST6GALNAC6 0.105656117
## SGSM3 6.300755652
## MYBL2 -0.524434278
## MYSM1 0.894898078
## COX5B -3.587382494
## PHB -3.024629688
## IREB2 0.070025673
## MYO15B -2.335404837
## VPS13D 1.690858736
## FIBP 0.536605260
## PES1 3.226680060
## MED12 0.274650919
## SLCO4C1 -2.797208149
## TMPO -3.347671468
## C20orf27 -2.504886324
## FAM110A 4.846102257
## ATG4B 4.613870564
## RAPGEF6 -0.561059659
## MED15 3.326755581
## KCNK6 6.179548339
## ST13 1.150835874
## MXD4 4.627613273
## ATF6B 2.833918381
## MEPCE -0.322096501
## USP20 0.446752570
## DDX21 -3.596120911
## INPP4A 0.362736970
## LYL1 0.349817305
## DUS1L 1.544315954
## DHX15 3.238201445
## HPS1 -2.435887930
## DAD1 -2.368267450
## MPDU1 -1.300216856
## TNFSF8 -0.527388806
## TECR -3.061276051
## RTF1 -1.044782663
## FAM13B 0.228746174
## TAB3 1.454316808
## SAP30BP -0.133967266
## FBXO9 -3.651407375
## FUNDC2 -2.112015808
## ABHD17A 8.230727773
## VEZF1 -2.512325089
## KDM1B -2.011313703
## SYNRG 1.207552116
## ACLY 0.728534817
## CD300C 10.127571652
## CNEP1R1 -3.543422046
## FCER2 7.301116894
## NIBAN2 2.644109884
## ANAPC13 -1.985662321
## EWSR1 -1.382710643
## HIRA 7.983694624
## TREX1 -2.916004425
## USP24 0.941950719
## UPF2 -1.304834859
## HGS -0.495961743
## SH3GLB2 0.248437166
## GRAP 2.537538977
## SLFN11 -0.758401927
## POLR2B -3.724561812
## IRF5 -2.833406301
## RO60 2.248428298
## SGTA 5.147152110
## LTN1 0.894475726
## MR1 -2.147381662
## ARRDC1 6.530084024
## PPP6C -3.687995888
## RIPOR1 8.949128688
## ZNF207 -3.522665802
## COX8A -2.958339930
## HSPB1 1.608721908
## POLR2G 0.247574072
## GPS1 1.331842690
## URM1 1.175169466
## PTPN22 -2.264799864
## MIA2 -3.393954508
## ABCA13 -1.561900459
## RBBP6 1.619898581
## GBGT1 18.391458161
## SH3BGRL2 -3.395161005
## VPS18 -1.462900081
## PIH1D1 2.417141767
## PALM2AKAP2 8.195685202
## FASTK 1.486602226
## EPC2 1.405812890
## IRF8 1.870522310
## TMEM115 5.308755551
## ABCG1 -2.778882176
## GLS -1.178466818
## NRAS -1.445358950
## PAM -3.721621465
## SGSM2 10.948610586
## JARID2 -2.489288992
## PARP6 3.695990530
## TOR1AIP2 -1.746334390
## SESTD1 2.223607478
## DCTN3 -1.718673934
## CERK -1.461109475
## CCT4 -1.419540258
## KXD1 -0.005425245
## TRAF7 6.456648467
## PLEKHJ1 -1.620316663
## C6orf89 -2.320840294
## RPS6KA4 3.923275797
## NDE1 -1.937034693
## E2F4 -2.059056741
## DEGS1 -3.694077759
## USO1 1.254901270
## AP2A1 8.007636940
## ANKRD17 0.080739281
## NF1 -1.472039308
## ZNF316 1.442062841
## CORO1B 0.157329525
## LPP -1.744053417
## EIF4EBP1 2.490275724
## GPATCH2L 0.409002052
## SKAP1 -0.720563657
## MCFD2 3.342749087
## AKAP8L 1.286015170
## TRAM2 4.938805358
## CWF19L1 -0.654659171
## SMC4 8.745713731
## RAVER1 0.863205219
## TMED7 -1.163656123
## WASHC2A -0.509479234
## ZDHHC5 -1.392567512
## MRPL54 -0.652796723
## CLNS1A 5.082390870
## PIP4K2C 9.223528785
## SIK3 2.841746236
## POLE4 0.010247519
## RAB11FIP4 -3.469911956
## FBXO34 2.701596462
## TRMT1 2.005653070
## MED1 3.749042992
## FBH1 10.848814448
## RLF -2.338619512
## GNA15 2.698420503
## GOLPH3 -3.293579410
## EDC4 2.173075393
## SCP2 -0.456991028
## AATK -0.714665906
## TLK2 0.422413273
## SLC38A10 -2.094166644
## MKI67 9.941982691
## TRMT112 -2.823384634
## WAPL -3.376455556
## KDM5C -3.197408464
## STT3A -0.424806026
## HS1BP3 -1.066037963
## ARPC4-TTLL3 -0.344024004
## CLASP1 1.721710008
## GATAD2B -1.639335940
## WDR6 -3.415399883
## MCM6 17.423152040
## CLEC10A 3.593419321
## SPG7 2.910940193
## MFAP3 -0.218916191
## CD226 -0.141162465
## TYMS 7.694121590
## MTA2 -2.418939250
## SKIL -2.449895200
## ARNT -1.111075859
## SATB1 -2.438300307
## PRMT1 -1.842130469
## TBC1D5 3.960607598
## SEC13 -1.086743904
## IRF4 -0.655184089
## TBC1D22A 7.590433294
## MTMR4 -0.037492394
## SND1 -2.413325705
## DENND4B -1.892730882
## BORCS8 1.510477286
## SNRPD3 0.974201536
## PCNA 1.630389564
## GET3 -1.942854546
## C11orf98 -1.702408220
## MAT2A -2.550025093
## CBX1 -0.776403619
## MAN2C1 -3.476353128
## SPTLC1 -2.613213492
## NXPE3 -1.892565792
## GNL1 1.866672359
## RUNX2 -0.072501749
## INO80D 3.481173964
## IFI27L2 -2.880678263
## TOMM22 0.614639209
## DMTF1 -0.654237659
## ORAI1 -1.207523978
## MIB1 0.349258549
## PIEZO1 -0.171309277
## ZFX -1.278433738
## PPP1R21 -1.392113958
## POGZ 1.611407259
## PAPOLG 0.799287676
## WDR48 1.366331478
## ENTPD6 2.023435971
## BORCS6 2.973317124
## ANXA2R 0.612120563
## MED22 10.274246176
## TRMT2A 3.354522906
## FEM1B 0.133388021
## ATP5F1D 0.822033834
## COPZ1 -2.575906334
## SMARCA5 -1.843479293
## UBAC2 -0.052589575
## CDK12 1.425480281
## GCC2 -0.936021245
## PAXX 0.960799037
## KRI1 3.341183426
## PRDM1 -2.055877093
## SLC35A4 -0.897889431
## MOB2 -2.612867822
## PDAP1 -2.734571920
## PSMD8 -3.630833038
## FKBP2 -0.023865715
## PI4KB -2.246577778
## USP1 0.243530901
## MARCKSL1 -1.196618508
## TTYH3 9.450183796
## UBAP2L -0.789785441
## STK11IP 12.723538741
## AP5Z1 3.465754712
## PANK3 -0.465187281
## NUDT22 7.185319594
## CAPRIN1 -0.022613836
## GPD2 0.645250911
## FAM102A -1.709918883
## PCNX3 0.433999356
## DGUOK -1.591406327
## SRSF4 0.732797500
## ADRM1 2.473314551
## RAB3GAP2 1.625055921
## PIGT -0.967128795
## POLR2L 0.249244250
## PDS5A -0.886048802
## JADE1 -3.161585540
## MBD3 1.674940084
## IGBP1 -2.046488729
## ALAS1 -0.327526920
## CHMP6 6.068331444
## USP5 -0.178966418
## GFUS -1.470491421
## OSGEP 7.807771262
## SRBD1 -0.775532345
## PIN1 1.131803846
## RBM10 2.280202800
## SLAIN2 0.741014069
## TRPV2 0.560300614
## GTF2A1 -0.153538994
## VRK3 -2.193796332
## NAXE 0.167353838
## ABHD13 -3.438089985
## TM9SF3 -3.064495133
## ATG101 2.313332169
## R3HDM2 -1.104189990
## MAD2L2 0.566877897
## TRPM6 -1.158203628
## CCDC107 1.939124460
## TAPBPL -2.729975033
## SPCS2 -1.668354263
## CEP170 -2.279782443
## TFEC -3.566003619
## FLT3LG 3.455086519
## GGT1 0.673750260
## HMG20B 1.990978769
## MRPS21 -2.505615780
## ERCC1 5.382124606
## COMMD7 0.523027663
## SNX19 1.355100835
## USP48 5.988073687
## PXYLP1 -2.902356589
## STK24 -3.752466293
## AATF 2.130249133
## SELENOH 0.559089485
## H1-10 -2.161710259
## TOP2A 8.397909717
## STK25 2.483291797
## MAP4K1 -2.484468632
## CDK10 0.953065043
## SMIM29 2.719201263
## TMEM203 1.605297015
## SMDT1 -1.098731458
## ATG2B 0.044690335
## KTN1 -2.477422887
## SRGAP2B 2.384350220
## DCAF7 -0.909808785
## SUMF2 -2.140062504
## MCU -0.265149174
## PSMD9 -1.699155283
## FAXDC2 0.588267010
## NPLOC4 -2.606170223
## MGAT4A -2.337545877
## CYCS 0.672532208
## MON2 0.561307807
## RAB11B 6.725950300
## ZNF333 -2.090428654
## SLX1A 0.334573003
## NECAP1 -2.253203296
## ARHGAP21 2.906597564
## TENT5A -2.034989644
## KLHL6 -3.286749019
## C2CD5 -1.037677382
## GNPTAB -1.466290574
## RASSF1 -3.304991840
## HSPD1 -2.219063599
## CD244 -2.480194221
## BRWD1 -0.991338832
## ATOX1 -0.627936116
## CXCR5 6.295711277
## INTS1 4.009959281
## RNF6 0.039897410
## EXOC8 -2.668787226
## TLR10 -3.190710021
## RNF111 -3.367043824
## PNKD 0.218502530
## ZDHHC12 1.647397459
## TNIP2 0.955654705
## CDK9 3.390232244
## CDC73 -0.998139325
## PPCS 1.635773922
## LSM7 0.050804337
## SLC35A1 -1.567687642
## EIF4E 6.549431531
## TBCA -2.079078098
## SPTY2D1 -1.902701322
## DCXR -2.068478921
## PRPF31 2.231508663
## STAG1 -2.982309046
## G6PC3 5.594794249
## SUPT16H -0.322054679
## H2BC5 -2.397932210
## VPS25 -0.978855867
## CCNT2 -2.378587244
## TBC1D20 3.493094451
## CD5 -1.913414589
## ST14 0.737698034
## ITFG1 1.514217274
## KLF16 5.895741308
## NMRAL1 1.519549946
## SMIM12 1.191802497
## MICU1 -3.521023238
## MICB 0.995154208
## B4GALT4 -1.642046111
## RELB -0.189166987
## TEPSIN 0.039437947
## C12orf75 2.822345586
## ATP2C1 5.057232088
## NUDT4 1.525760051
## MRPL24 1.951205459
## DCAF5 0.035544285
## RNASE1 -2.940611234
## FAM199X 1.020617832
## KPNA2 12.587697453
## TCEA1 1.559375875
## JMJD8 1.137517414
## SRP72 -1.449873065
## C21orf91 -1.945112420
## SBF1 -0.134270747
## SACM1L -2.872109496
## ABHD4 -2.587434476
## LSM6 7.514411467
## B3GALT4 2.898048518
## SENP2 3.035673481
## CHMP7 -2.261087187
## XAB2 1.136517558
## STX8 2.619429973
## ZNF710 4.914674540
## TAF1 0.222475788
## RBBP4 -2.362784455
## TRPM7 1.804014729
## STK11 0.542414427
## MRPS34 0.525397218
## STAU1 -2.761927966
## AGAP3 10.042814558
## GRHPR 4.945328396
## BRPF3 1.802056701
## PMVK 0.514543643
## DCTN4 -3.151387575
## SPCS1 -3.282034969
## ATP2A2 -0.695137524
## C7orf50 5.014456894
## TNFRSF8 13.199689439
## PLA2G15 7.209350045
## ZDHHC2 -1.637108781
## HPS6 13.619820009
## CCNT1 -0.573116647
## FOXJ3 1.720262347
## NDUFA2 -3.161940130
## SLC30A1 -3.630213783
## ZBTB48 0.453021177
## CDC27 4.046847112
## TMX1 -0.157123731
## MAML2 0.281050534
## OXR1 -1.061544754
## GIGYF2 0.567310997
## VAMP7 -3.127511085
## TXNL4A 0.600781484
## NISCH -0.497288811
## PAGR1 9.586198364
## ZER1 -2.788131696
## MRPL11 -0.399217024
## YWHAG -2.968619534
## YPEL2 -1.931719315
## DYNC1LI2 -0.890013479
## TAF15 -1.669533451
## WDR46 0.436719133
## TTN -1.300917458
## CERS5 -1.166408754
## CLN6 -1.872306813
## TOMM20 -2.673914201
## NFKBIE 2.224244169
## CALU 2.480618361
## ANO9 1.032270320
## ATRAID -2.639437899
## NCK2 -1.936740535
## NDUFS6 -1.167432824
## AKR1B1 -1.832498494
## LIME1 -0.792817385
## ITPR2 -2.221061205
## UBE2M -2.111283805
## ZRSR2 8.450131505
## EXOC3 4.043176197
## SMCO4 1.071239124
## XPOT 4.255048199
## TBCD 3.017295928
## CHST2 -2.840437886
## PLXND1 -0.413372322
## CTNNBL1 0.921714594
## GTF2F1 1.972097419
## DHRS4L2 2.563121311
## PRPF19 -1.962194807
## TAF8 1.570509031
## KBTBD6 -1.439131128
## CHTOP -1.295905303
## LYSMD3 -1.022026884
## ANKZF1 -1.358826005
## HIF1AN -2.317780570
## SLC25A29 2.861162679
## MRFAP1L1 -1.270977740
## COMT 5.735440394
## CLCN3 1.853552052
## CCDC22 4.811132903
## SUMF1 4.168817883
## TESPA1 -1.536503005
## NELFB 3.814624528
## GIT1 0.929907819
## ECHS1 3.038522348
## KCNQ1 4.399669099
## CNOT6 3.946344851
## LMBR1L -0.867192298
## SENP7 -3.632959959
## HSPA13 1.537387418
## RELCH -0.970705966
## CIAO2B -2.384052330
## SELENON 1.149965114
## PEX6 -1.188033115
## C6orf47 -1.628642040
## OXLD1 4.315282126
## UBR1 4.754883329
## GABBR1 -3.026962505
## FAM168A -1.997927241
## TP53BP2 -1.938519892
## GPR162 5.391544022
## PRELID3B 1.317015532
## HDGFL2 8.373221164
## RNF114 -3.210623265
## RWDD1 3.516253864
## DDX41 -1.086574595
## HINT3 0.515734395
## XPNPEP1 1.842109499
## SUGP1 6.395548002
## HDHD5 6.480890731
## SNTB1 2.307300189
## ZBTB11 -0.151735943
## TRAF1 2.091797421
## ERLEC1 -1.471348388
## MARCHF5 -3.367726819
## VPS26C -2.717056366
## UBE3C 2.440168049
## CTBP1 -1.370013660
## LMTK2 -3.358347260
## CD99L2 0.108028542
## APPBP2 1.755448361
## COMMD9 0.855584552
## ANAPC1 3.173473404
## SMC1A -2.049913338
## MRPL23 -1.340668342
## ACP5 1.242070506
## PPP2R2A -1.132990357
## RAB34 2.336397198
## DTX2 0.863060082
## TIMM8B -3.018393818
## IL27RA -2.241670077
## EID1 -1.562921983
## POLR1H -0.675144064
## TUBGCP2 2.558197854
## PTPRA -0.479101241
## FZR1 1.587879165
## NDUFS1 4.691672823
## MATK 0.757868641
## DCAF10 6.566987810
## CYHR1 3.972506723
## IFFO1 5.819097903
## HNRNPR -3.144446270
## GALK1 1.792050602
## RRAS -0.886848376
## TMED3 -3.488910825
## USP38 -2.613273688
## FAM76B -1.417142742
## TSC2 1.947575918
## PCIF1 -1.808785559
## LARP7 -0.507820837
## SNTB2 0.933227798
## GOLGA4 -1.053393933
## MYLK 2.097780325
## FUBP1 -3.617711031
## MED23 -1.897520868
## BAZ1B 0.728832211
## MAN2A1 -1.199479291
## RIPK3 -0.742041520
## UBR3 0.109592217
## HDAC3 1.540472842
## SEC31A -0.760657336
## LSM4 1.104852875
## SNRPA -0.961345995
## POLRMT 4.090180331
## TP53I13 4.480574293
## ZNF655 -3.703746694
## NOC2L 4.262014727
## RNF40 -3.429270626
## DPYSL2 -2.325669949
## PPM1K -2.849948370
## FRMD3 2.688627160
## PPP1R7 -1.222090816
## DHRS4 2.951136847
## SLC2A5 0.041073235
## SEC23B -1.595006652
## FBXW4 0.984458918
## KIAA2026 0.504254453
## NACC1 4.742180002
## NDUFS3 -0.295831461
## SH3GL1 -0.209098202
## ZNF200 -3.476001374
## RASA4B 5.507519270
## STAM2 -3.069634257
## FBXW11 0.725599070
## GET4 3.314409735
## CISH -3.058556013
## EXOSC4 -2.715510117
## MPHOSPH8 -1.565606898
## ELOVL1 -3.576073435
## CDIP1 3.238468201
## CENPT 0.671806733
## ZKSCAN1 -0.511237033
## SLC27A1 9.558395165
## HAGH -1.463089506
## SIRT5 -2.874062082
## LEMD3 -0.642750449
## SRP54 -0.377264789
## ETHE1 -1.567494390
## ARFGEF2 1.944116852
## SEC24A -1.711776359
## GAPVD1 -1.389246503
## MRPL38 -0.347488598
## ARID1B 3.124619546
## TRAPPC12 9.364247168
## NAA60 -1.642168204
## LSM8 3.038590544
## ABCC4 1.356503325
## CCDC125 -3.596519075
## ZNF518A -1.393566100
## SF3A2 3.690199548
## PNPLA1 -1.998093579
## UAP1 1.165968152
## ERF 2.817337458
## DIP2A -0.352886957
## FAM214A 1.547925632
## MICOS13 2.050433148
## SELENOO 3.390388594
## EMG1 -2.189722103
## ZBTB22 2.982489796
## STYXL1 -2.611595281
## LATS2 3.007520616
## ZNF692 -0.172569117
## MYC -0.795497552
## YIF1B 0.469634993
## RABEP1 -0.126940160
## EHD3 1.385916513
## ANKIB1 3.547704690
## RASSF7 0.862907273
## NINJ2 -2.080465581
## SIN3B 13.431210930
## TPP2 -1.568436635
## ETNK1 -0.876640026
## NSMF 11.653148207
## ZSWIM6 -3.351773732
## HERPUD2 -3.038299323
## EXOC5 -0.801741658
## MTOR 4.760313962
## NDUFB5 6.321123462
## RECQL -1.678801827
## RAD23A -3.076598463
## TMEM109 0.096994944
## GON4L 0.808368185
## TRAK2 -0.484595091
## PDZD4 0.513674689
## CINP 2.175399071
## CLASRP 0.463285564
## RSF1 2.338813510
## RBM12 0.214575298
## ZNF32 1.213916205
## SLC35F5 0.697881975
## POLR2C -2.768787117
## CPSF1 -1.905760682
## CDK13 -1.228123199
## SECISBP2L -2.509973641
## SIL1 1.348714311
## GLCCI1 0.079114548
## DHTKD1 -1.640948432
## TTC17 -0.128274423
## XRRA1 -2.285483770
## BAP1 -3.188677449
## TBC1D23 -1.517184279
## REPIN1 4.848584721
## GP1BB -3.625364541
## CCDC47 -2.985308701
## SEC23A -2.702262069
## RCOR3 -0.534758220
## HSD17B4 -2.638315249
## TBC1D10A 9.325848066
## MAP3K14 3.202824888
## COMMD5 4.099480449
## SEC63 -0.417345977
## DPM2 -2.967246889
## TARS1 2.658251193
## RASGEF1A -3.616963485
## BMPR2 1.166464013
## KPNA6 1.077065555
## EPRS1 -2.615147701
## AP5M1 -1.598732900
## MFSD10 1.379872912
## GPATCH8 -0.455715978
## DNPEP 0.139186190
## METTL26 1.832072462
## FAM234A 6.427760196
## TMOD2 -3.608325718
## DNAJC14 1.441340958
## AMN1 -2.756850316
## UPK3BL1 -3.051505789
## PRCC -1.738574496
## NDRG3 0.848254338
## UBE4B -1.479694160
## E2F1 0.164192289
## MIF4GD 0.792544559
## MCM4 11.914718788
## SPOUT1 -1.099572314
## PPP2CB -0.320722032
## MYG1 6.501429304
## MED16 1.302453062
## CNOT7 -1.721833598
## FPGS 3.336125844
## SLC25A1 5.147635808
## GNL3L 6.673402622
## SCAF8 -2.789585658
## HMGCL 1.282021481
## PPM1G -1.658075291
## TARDBP -2.927458332
## ASL -0.465376774
## USP16 0.383207813
## POLL 4.007086337
## H2AJ -0.679163137
## ZNF581 1.361379054
## CLEC5A -3.251051062
## RANBP3 3.633466432
## RTL8C 9.353834959
## PDXDC1 2.109839715
## PHACTR2 -1.080830022
## EGF 2.036246004
## TUBGCP6 -0.849763390
## MED11 2.123339487
## ACSS2 -2.384662161
## TPCN1 3.131801048
## CCSER2 0.649640739
## NTNG2 -3.479980771
## SPNS1 7.395659965
## DGKQ 5.930244571
## TTPAL 1.899496815
## PLEKHM3 0.862071935
## PEX16 2.589879750
## AGO1 -3.195868160
## MIS18BP1 -2.624916669
## HAX1 -3.184941488
## IL11RA 2.025015249
## ZNF622 0.211295725
## CEP85L -1.422851782
## GTF2H2C -0.294482862
## KCNN4 3.235786948
## KDELR1 -1.754575554
## TMEM129 6.058040951
## MPI -1.215899827
## DHCR24 5.790731286
## NHP2 -0.359473338
## GAK 0.549861153
## INO80E 5.205963755
## COQ8B -3.579552014
## SERTAD3 -2.718463334
## PPP1R14B 4.052970006
## DHX8 -3.575405041
## NCK1 1.998162608
## TCOF1 0.172238750
## ZBTB7A 6.784686193
## EIF2B4 2.607216299
## NNT 3.292425186
## CUEDC1 9.010346473
## GPANK1 -2.724726589
## CTDP1 -2.054425291
## C5orf51 2.627452858
## SMARCC2 -2.545634603
## NUDT16L1 2.837713307
## OVCA2 0.890743703
## GCC1 -2.429549999
## RANGRF 1.979496254
## ZNF664 1.896666058
## TWF1 -3.714465068
## HNRNPM -2.579236249
## DHX40 -1.947343430
## PHF2 -2.793148740
## BDP1 1.614166337
## GFI1 -1.947124426
## RBM27 0.519505419
## NAB1 -3.588732344
## ZFR -3.291753786
## NDOR1 -0.201879952
## TNFSF12 -1.221456253
## MIGA2 -0.687917801
## SMAD4 -2.714044792
## ATP6V0A1 -3.468061640
## NIPA2 -1.700018717
## CUL1 -3.467201002
## ITPA -0.655710212
## ZFYVE26 -0.938808838
## MFSD5 -0.468776711
## TMEM208 -3.197384556
## KPNA5 -2.627201946
## HMGN3 0.319978368
## STARD3 -2.214607252
## HNRNPA0 -1.857237870
## WDR81 1.193713237
## ARSB 4.448992384
## PBRM1 -0.766924421
## GPBAR1 5.735955697
## HNMT 1.888415264
## WDR74 2.138535556
## SEC24D -2.607345152
## PSMG3 3.154397462
## ATF2 -1.729810168
## RASA1 1.176367708
## FAM3A 3.652583630
## ATP13A1 -2.288773342
## RCHY1 -2.003955318
## STK35 -1.425743923
## MTRNR2L3 0.422078527
## RIC8A -3.238353870
## ZEB1 -1.447106262
## RBM15B 4.566290057
## DDX56 -1.913279997
## KAZN -2.699996480
## CDC14B 5.187836622
## ABCF3 1.477327804
## DENND4C 0.089248034
## FBXO44 -2.132072311
## OTUD4 0.001806197
## SLFN13 9.611582598
## PIK3C2A 1.843937749
## LONP1 1.081265355
## CDK11B -3.628457222
## CNST 0.061489171
## CCND2 -3.381832700
## AGPS 0.562651882
## ACAP3 1.521176412
## BLZF1 -0.144239331
## AKAP9 -2.663515657
## RPRD2 2.793839690
## DMAP1 2.152311901
## CXXC1 -0.467793072
## SCRN2 5.864083723
## PELP1 1.639902469
## SEM1 -3.095333703
## APPL2 -3.006886840
## PRKRIP1 2.124527644
## VDAC3 -2.456090924
## ECHDC1 -2.457885883
## ACADM 4.733621306
## IKBKE -3.081171993
## GABPA -1.985993950
## MAN1A2 0.995110806
## PYM1 0.971204881
## ZNF865 6.378102662
## MINK1 -3.236791161
## ATAD2 10.490379444
## SNRNP35 -1.342056515
## GOLGA2 -0.505369872
## UBE2J2 2.144737550
## HEXIM1 -2.991669784
## PLD2 11.928968556
## ZC3H13 -2.261468902
## DPH7 -0.385439265
## PDZK1IP1 -0.136111838
## MRPL52 0.554688171
## C19orf25 3.845975753
## MAD2L1BP -3.122974334
## MPG 4.418834021
## ABCD4 7.245607539
## ARMC8 -2.312857081
## PAICS 3.694057979
## NUSAP1 9.132153646
## EFTUD2 -3.393756854
## CDK16 -2.528955505
## VEGFB 3.167934220
## CLPX 1.216670651
## ATAD2B 0.019985421
## OTULIN 0.736556381
## THYN1 -2.090858926
## SOCS5 -0.759381228
## SIRT1 -1.967508578
## PCNX4 -0.713153257
## THOC6 0.810561287
## KAT5 -0.503737728
## RIF1 0.392977594
## ECPAS -2.944928327
## TMX3 -2.638645332
## RUVBL2 -0.797073737
## PTX3 -1.427214116
## NHSL2 -3.418133194
## CS -2.494990716
## ZNF672 -1.004784367
## SH2B1 1.702036476
## PPIL2 1.369864164
## COPS9 -1.114712293
## SUMO3 -2.416188298
## DAGLB 1.304290434
## RNF220 -1.490156837
## SRGAP2C 2.224809633
## ESRRA 2.970451994
## TNNI2 8.824615554
## PSME4 -0.277654673
## ZC3H15 -3.469024961
## CD22 -2.621065949
## TRAPPC5 -0.660939696
## REST -1.739871920
## EIF4EBP3 4.301073585
## TPPP3 4.107209742
## MOGS -3.029298824
## VIRMA -1.031060270
## C2CD3 2.582745823
## PMM1 0.646117225
## PITPNB 4.731574816
## ZNF524 7.598091823
## TSPAN17 -1.219954494
## RPAP2 2.473940493
## DCK -1.699624253
## AMFR -2.264128839
## RFNG 2.555355076
## PUM1 -1.905895656
## TRAPPC11 -1.576026961
## UBE2K -0.946523395
## NRM 2.417692442
## TIMM13 0.881327585
## SF3B4 4.388240876
## CSNK1G1 3.101002904
## SEC24B -2.512870589
## TRAPPC2L -1.664687296
## SYMPK -1.159206733
## GLE1 -1.449694835
## TTC37 -1.539235338
## FNBP4 -2.849232795
## ARHGEF18 -3.389032605
## LSM2 0.232187175
## REEP3 4.872339762
## VASH1 -3.317832225
## IPO7 -2.725089984
## ZMIZ2 1.165688632
## DAZAP1 -1.029195368
## ENGASE 2.383932976
## SREBF2 -2.534674775
## DRAM2 -2.892061837
## GOLGA5 2.344847570
## ADPRS -3.213793329
## SLC39A13 12.171585668
## ARL6IP6 -3.695300106
## TSR3 -0.024998295
## NEMF -1.835763090
## DENND1B 1.685217756
## SYNJ1 -2.207948774
## SLBP -3.351116955
## RING1 1.568119246
## KIAA1958 1.582810461
## SLC39A9 -0.666408803
## AKR7A2 4.975597498
## LSMEM1 -1.887512645
## ATG7 -3.487522204
## VPS54 -2.758695751
## CCDC9 0.321594531
## DENND4A -1.887658000
## TRIM26 -2.389576500
## CARD19 -1.944014256
## HPS3 0.992154710
## PPIE -2.737365175
## ZMAT5 -1.389042156
## NUS1 -2.033102877
## BABAM2 3.303747913
## SMC5 -1.062609490
## UBE3B 4.669962765
## ASMTL 3.061198239
## ACBD3 0.805747830
## FBRSL1 5.660303769
## COPS2 -3.565235193
## NRIP1 -1.992626811
## COPS7A 2.822601738
## LDLR 0.282369452
## TAX1BP3 -2.450182692
## TRAPPC4 -2.455898126
## SIKE1 4.049316389
## RFTN1 -0.784579441
## VPS13A 2.371724725
## PHKB -2.547194157
## GALNT10 1.044875484
## FASTKD5 -0.042897272
## IRAK2 0.998070980
## ABRACL -2.167745384
## LPCAT4 0.663858476
## ENDOD1 -2.777301034
## RBBP5 1.888003366
## FUT4 -2.660051713
## CEP192 -1.663128670
## CCNK -2.680650077
## CIZ1 -0.302980264
## PARP15 -3.042550499
## CARMIL2 2.122813190
## GTPBP6 3.511568224
## IP6K2 -2.120653304
## WDR47 0.827386498
## MNT 3.949469929
## USP47 -2.938003223
## FYTTD1 -1.665305435
## LMNA -1.947484460
## MGAT5 -2.299398931
## LIG4 -1.930671908
## TAB1 5.520378961
## GTF2H2 -2.345160042
## ANXA4 -0.920880450
## CCDC115 2.819345182
## PDK1 -1.437926947
## RBIS -2.686217952
## PTBP2 -0.403486539
## DDX49 -0.385407845
## LRBA -0.372427701
## STBD1 -2.977465916
## GATD3A -3.584107345
## TMEM101 2.237116284
## LZTR1 -0.717742693
## MOSPD3 2.063999000
## BUB1 6.153599762
## STX17 0.149124472
## VKORC1 -3.217666773
## EPHB6 -0.819069690
## DDX46 -3.242124960
## MSRA -2.992621102
## KEAP1 -1.208069953
## CISD3 0.909097390
## MAPK1IP1L -3.060297404
## MFSD12 2.698169613
## REV3L -0.093015369
## NLRX1 -2.541841367
## AQR -0.895778257
## VEGFA -1.794286799
## SLC2A4RG 1.538434426
## DERL2 -2.501033238
## BTBD1 -2.280138952
## FKBP4 -2.233555100
## MAD1L1 -1.844934762
## MIDEAS -3.025434952
## LTBP1 0.925959462
## APBB1 1.435493786
## ASB7 -1.920075963
## CCDC82 -2.622665089
## PNPT1 -3.754102497
## ARL5B -1.169274740
## UHRF2 2.762212867
## ARL5A -0.118139516
## ENG 6.304204535
## MDM1 -1.843430309
## SREBF1 7.615460322
## ZNF493 -1.712109160
## DCAF15 5.433266786
## CCDC71 5.657258738
## COPS6 -2.773213547
## LATS1 1.939262376
## TMEM179B 3.100077361
## COA3 0.149499278
## LEMD2 0.280230868
## PATL2 -0.369143027
## GCNT1 0.983502099
## KIFC2 5.718705673
## LUC7L 2.087269246
## HYPK -1.630917991
## ATP6V0E2 2.953731367
## XK 3.443323090
## HDAC10 0.105820070
## ZNF770 -3.089502617
## ZSCAN29 5.247346268
## ING3 -1.789382687
## BTBD2 5.233024254
## POLM 5.802259740
## B3GALT6 5.611496802
## PHPT1 -2.539132103
## CBX6 -2.893214192
## TMEM256 -1.075163934
## SUGP2 -2.880964153
## KHDRBS1 -2.261122790
## SLC29A1 -3.660697113
## DOCK4 -3.293650619
## RCBTB1 -0.025345352
## MYCL -0.452352019
## NT5C 6.415042003
## DMXL1 -1.487290932
## ARID5B -0.770866014
## RNFT1 -1.803843651
## ARMC7 -2.356442967
## SDE2 -0.624117625
## NENF -3.588140145
## CEBPZOS -2.463955086
## PPP1R35 5.632070899
## DDRGK1 4.503172934
## LRRC8D -0.569949613
## NUBP2 3.124682733
## ANAPC11 -1.572477612
## IARS1 -0.366141868
## ORC4 -2.825374415
## COG3 2.030926854
## SLC37A2 -0.742131758
## AGO3 1.117575130
## TOR2A 3.904529469
## SDR39U1 1.530795160
## TATDN2 -1.502270005
## PCED1B -2.307888905
## XRCC1 4.075117463
## CLDND1 -3.310996347
## YEATS2 4.772431409
## GTF2H2C_2 -2.473306791
## ATF7 -1.708881678
## SIRT6 2.778842529
## ACTR1B -3.065743584
## MINDY2 -2.384355361
## DHPS 3.545460464
## THAP11 2.187918606
## F2R 2.023887563
## ZNF445 -3.024404728
## ALDH16A1 2.890880613
## SMURF2 -0.031277495
## MRPS18A -2.884179626
## CKAP5 1.637769389
## OPA1 -1.117949644
## CORO2A -2.285425266
## MORF4L2 -1.062391307
## PTGES2 1.206979914
## PGPEP1 -3.107970795
## LRRC59 -3.460334058
## AKT1S1 6.386982553
## PTBP1 -3.526128394
## DHX36 0.205150036
## MPND 4.376203289
## RFX5 -3.683115827
## TMEM189 4.182515276
## CREB3L2 1.370651650
## FEN1 0.559625197
## DRG2 1.016280984
## TM7SF3 1.408014837
## TMUB1 5.497393605
## ZNF654 -1.721419073
## TRMT1L -3.560781523
## SOCS4 4.913452150
## SCD 5.636878077
## MBTD1 -0.481507945
## ASGR1 11.304333225
## ATXN7L3B -3.325871345
## RPUSD1 4.186813566
## OXER1 9.776279107
## SMG9 2.698783902
## FUCA1 -0.496222421
## MAP1S 5.833258351
## CTDSPL -2.940089280
## TM9SF1 0.313609212
## TRIM11 -0.227189135
## GART 2.282282323
## GGH 2.484615630
## MTRF1L -0.177500650
## GMPPA -3.764645643
## SRRM1 -3.134927619
## CDK1 1.189838961
## CHD9 0.469595830
## DDX18 -3.508866622
## KLHL22 6.162278578
## NUP205 0.256090712
## TFPT 0.396936588
## PCLAF 3.362981079
## STAMBP 1.245303974
## MAPRE2 -2.530751234
## MSRB3 1.670745437
## ACOT8 2.245743401
## FAF2 2.768578198
## HMGCS1 2.385441010
## GFOD1 -3.005172006
## MPST -1.022977912
## VPS36 -2.667622076
## PNKP 4.134908708
## BMP6 2.252555347
## UBE2E1 -2.173360408
## SLC4A2 0.272825195
## UVRAG 0.361057320
## MCM2 4.531049781
## RABGAP1 2.320358405
## PGP 0.937212782
## MCUB -3.305217333
## HSPA4 0.357504871
## ACP2 -0.036392926
## HOOK3 -3.646085532
## NUDT21 -2.601856210
## KANSL3 1.285900499
## SNRPC -2.280024628
## TBC1D17 1.214728872
## RBMX2 2.842657373
## MIF 1.462215489
## RETSAT 4.510446827
## LRRC37B 4.470320558
## ALDOC -1.840581979
## MCM3 -2.555527371
## SUCO -3.541137796
## TASOR2 0.644634411
## TP53BP1 1.949571961
## SFXN3 -0.239763904
## BRCA1 5.507011605
## CNOT3 -2.932730490
## BRD9 3.346801863
## KIF11 7.570253451
## DAB2 -0.847053280
## CSF1 -1.497937714
## LETM2 -0.687249270
## RFWD3 7.603637873
## STARD4 3.924192862
## PRKCE -2.588574482
## CCDC137 2.103755568
## POLR2H -1.176308572
## HEXD -2.280595036
## HSF1 3.291320637
## ALYREF -1.210944291
## RNF25 1.667254163
## EEPD1 -0.739741223
## MRPL14 -2.103479584
## TVP23B -2.335945395
## CAND1 -2.072203535
## ZMYND8 0.625692164
## CHCHD10 0.884210178
## TRAPPC6A -0.012532552
## NIBAN3 0.141350607
## TMEM147 -1.991205529
## PSMC4 -3.678120989
## NAGPA 3.032193333
## NGLY1 -2.555878592
## CASP8AP2 0.395334457
## MFN1 -3.759552139
## LRRC47 3.028964709
## BCL2L13 -1.151367095
## NUDT1 -0.089678083
## U2AF1L4 1.657378509
## NDUFA7 -1.196537836
## TXNRD2 4.470369913
## VENTX 10.628057391
## RHOBTB1 2.486587875
## FARSA 2.410472256
## DLST -3.570069546
## TNIK 3.369346231
## NSD2 5.731222177
## TRAF6 -0.712378864
## TBRG4 0.040140626
## RNF113A 1.780325223
## GABRR2 -3.153900427
## FAM174C 0.473761954
## SECISBP2 -0.440426137
## BAHD1 4.173966208
## AMDHD2 1.218172233
## ATG4D -1.320031025
## ACSF3 4.703507348
## ADAT1 1.945848040
## DCAF6 -3.189164559
## FANCI 7.646621211
## NOL12 0.884938971
## SH2B2 1.789080541
## TMEM106C -1.574028496
## PEAK3 -1.627951297
## MED18 -1.602151489
## PSKH1 6.074613117
## CTCF -1.520810353
## ZFYVE19 0.071189563
## ODF3B -1.224651188
## RUSF1 -2.214471944
## TNRC18 -3.340207832
## BOP1 1.020547912
## RSAD1 -0.021980368
## TST -2.517059416
## UTP3 2.363117928
## S100PBP 6.223184902
## SFXN5 -2.213638575
## RBM14 1.350939383
## AAAS 0.949594459
## CCP110 -1.646451370
## GDPD5 -1.080559459
## VDAC2 -3.173731272
## DLG1 3.053604942
## ZNF787 -3.029513415
## LTBP3 3.483015606
## SIT1 -2.366736843
## TEN1 1.362993404
## ARID2 -0.774143366
## SREK1 -2.321944129
## OPLAH -3.252296751
## CD2AP -1.985577542
## LHPP 6.293814930
## KCNE1 -3.404435712
## OCEL1 5.112722933
## PDS5B -3.348919835
## TMEM87A -0.742280837
## IMPA1 -1.036231460
## FAM120AOS -3.301572969
## RAB3IP 3.635621727
## STRADA -1.860774705
## RAB11FIP2 0.730537392
## NCBP3 -2.271578325
## RINL -1.518256259
## ELK4 -3.035679522
## PRADC1 0.508715269
## IARS2 -3.018684626
## DMAC1 -0.560471167
## SLF1 -2.126128615
## IMP3 -0.984532684
## SHISA9 -0.707957413
## MAN2B2 -0.028751833
## WASHC5 -0.415555003
## ABCE1 -2.398557425
## GPR137 4.939579479
## TAF2 3.301488972
## MAPK6 -3.740198539
## ZWINT 6.722367714
## NDUFAB1 -2.014690541
## PIGB -3.597447223
## TNFAIP8L2-SCNM1 0.341177635
## HOMER3 1.311404504
## SSBP4 2.584447306
## SCYL3 -0.763066613
## ACBD5 -1.527057520
## GATD1 0.435575611
## NDUFS7 1.756819165
## FOXJ2 -2.329335583
## CBFA2T3 -1.013300645
## ARL3 -1.078642187
## SLC48A1 0.047965350
## BBC3 0.328379091
## AP2A2 1.904710784
## MRPL12 -2.763817721
## RPS6KB1 2.684644843
## ZNF143 -3.182797979
## AK1 2.363601332
## DENND1A -2.080940281
## GHDC 0.673506526
## ANKRD33B 4.054313245
## TMIGD3 -3.683052436
## OSBP -0.674347296
## TBL3 1.903757117
## ZNF511 4.201723971
## P2RX4 -2.153485326
## SGMS1 -2.298364662
## HCFC1R1 2.249173160
## SLC25A20 -3.279177943
## UBTD1 1.913453718
## GBF1 0.616512032
## CCDC124 3.446273457
## PDLIM5 -3.100709398
## R3HCC1 0.399265393
## ENPP4 -2.562415286
## PPA2 -3.682519845
## HLA-DOA -1.568278203
## ACAA2 -3.015821141
## PARP11 -1.716106512
## ATXN10 -1.406333535
## ARMT1 -3.662914455
## TCF19 7.544821796
## CASP7 -2.293930286
## RPRD1A -0.691425300
## PLOD3 3.167423133
## FFAR3 -2.969471589
## SAMD1 2.150778605
## PGAP3 4.824848119
## VPS37C 10.296825709
## HNRNPAB -2.452115084
## HAPLN3 2.470531726
## UCKL1 2.338636043
## GPATCH3 2.166203393
## TMEM170A 0.551076398
## EPAS1 -1.725679569
## DTNBP1 -2.877605705
## PACS2 5.219648816
## HECTD4 2.087716981
## PIP5K1C 2.397669833
## MBD1 -0.307650943
## ZNF397 -2.865641008
## SLC5A3 -1.146311182
## INF2 1.034551434
## MEX3C -2.627067551
## ROMO1 -2.924235314
## EIF2AK3 -0.103691336
## NFX1 2.330241324
## SPIN1 5.072517443
## ABL2 0.014156879
## CRYL1 10.536459394
## PDE5A 1.142509553
## TPD52 -0.757102251
## SMU1 -2.428084871
## ALG11 3.032476503
## EHMT2 -0.656641086
## PRKD3 -1.305340665
## SLC30A7 -0.096686160
## DUSP7 -0.193421450
## POLD2 -0.963967298
## ELK3 -2.262997659
## MRPL4 1.144743987
## MTM1 -3.082492810
## PLA2G6 5.037035503
## CEP120 -2.512818973
## HBS1L 2.193404977
## SEPTIN11 5.064905124
## NECAB2 -1.286278040
## STK32C 10.196678270
## TELO2 5.173801201
## ETV3 -2.296792769
## NCAPG 7.954428825
## CCL3 4.407490678
## MTF2 2.553590999
## RAB27B -1.749539340
## ALKBH7 2.669782953
## SCAMP3 -1.884310013
## RRM1 2.243309153
## NUDT18 -2.781039356
## TXNL1 -3.125599256
## TSR2 0.323205105
## CD72 1.794544426
## PEAK1 3.350993332
## MRPL49 1.694988330
## MRPL43 1.786141996
## THOC2 -2.381701044
## RRP36 -0.120400722
## SCAMP1 -1.761267518
## PTTG1 -2.778485164
## RALGDS -3.051932890
## DOP1B -0.124901456
## TSC1 -0.963887476
## PI4K2B 1.318891320
## SNAPIN -1.082705591
## FLAD1 -0.394362176
## BCL2L15 -2.231320362
## ESCO1 -1.978452972
## ELOVL7 1.607713285
## TMEM184C 0.335065125
## EMSY 2.474407075
## LAS1L 0.032400759
## RPP25L -0.543269709
## HGH1 3.215574407
## MROH6 -0.946377995
## CBLL1 -1.456304666
## POLR2F 0.582782437
## NDUFS8 -0.409612682
## ISG20L2 -1.409461685
## TRABD2A -3.031151858
## CLTCL1 -1.550106723
## EMD -1.197428016
## CBFB -3.307245552
## ZNF263 2.019128402
## KPNA3 -0.327618676
## SORD 0.631969314
## GSS -1.289435507
## ARHGAP18 -2.272965700
## AXIN1 -0.432530483
## NME4 -1.029241146
## POP4 1.129676508
## MRPL53 -0.823181919
## BET1L -3.342861137
## P3H1 -0.515990888
## LAMC1 -0.155716145
## DDX54 0.412194313
## ERI3 -0.287403560
## PRC1 1.665741551
## ZNF580 3.022975294
## PIK3R4 2.044998103
## FAM20C 10.338255613
## SGF29 0.252895603
## ANAPC2 -0.128138305
## CERS6 0.082688235
## COQ4 1.036832958
## MGMT 2.788893780
## BTBD6 -2.340927152
## SHCBP1 7.783140502
## CEP295 3.132904694
## ARL2 -0.167747830
## CCNA2 6.680707845
## USP28 -0.457456679
## WDR91 0.680813527
## KAT2A -2.113042620
## TMEM175 2.041407910
## REXO4 2.035562564
## PIK3R6 1.472897155
## EYA3 -0.624768139
## KHDC4 0.910623905
## CCDC130 5.794842696
## BEND7 1.996358752
## POLK -3.130808542
## FAAH 5.055601844
## PIGQ -0.114435050
## SMC6 2.523139178
## RMC1 1.128607751
## ZDHHC6 0.563549519
## DELE1 -0.103819437
## SNAI3 -2.196281148
## ATXN3 0.485125262
## ZNF335 -1.789052909
## KCTD17 3.549974578
## PNMA1 1.466795651
## IQCE 0.155368667
## DNAJC17 0.948507811
## BANP 0.686841394
## CCDC57 0.165953087
## SLC30A6 1.791974325
## IWS1 -2.418342982
## SS18 -0.552517209
## MEI1 -0.765278771
## COA8 2.347872038
## TDG 0.387424852
## TIGD3 -3.051445946
## FHL1 -2.585676110
## MED7 2.291744892
## UCK1 -0.966968683
## CCNQ 7.918090100
## TRIP11 0.387811444
## ATE1 0.546283530
## ZNF587 -1.443524607
## NFATC2IP 0.993937230
## BAD 1.830176570
## RABGGTA 0.965805064
## CLPP -0.868547053
## RBM18 -1.024541677
## MYZAP -1.033679202
## GFER 1.160879980
## RMI1 -3.127715654
## PYCR2 -3.335902062
## NET1 5.680853171
## COX14 -3.172240914
## TIMM50 -2.715808737
## TNFRSF25 0.808405736
## GNL3 -3.727212186
## FBXL13 -0.895622892
## MRPS24 -3.266140560
## MRPL33 -2.309272342
## C6orf120 -2.547799937
## ABHD10 1.755884746
## RFC1 0.052050000
## SCAF1 2.006779257
## ICE1 -2.112429339
## CHCHD1 -3.439355391
## MYB -0.263320209
## HIP1R -0.495367827
## MRPS5 -3.030075979
## SLC1A4 -1.019191991
## MVD 0.507711233
## UBQLN4 0.210553823
## TTBK2 1.865351982
## MRPS6 -3.071141468
## NBPF12 -1.370626396
## DHRSX 5.177685101
## B3GNTL1 -0.493289424
## ZFPL1 2.321926487
## CAMLG -3.334650199
## TYSND1 2.600448422
## NAGLU -0.692350684
## PSMG2 -0.238790091
## CTNNBIP1 1.478032056
## HEBP1 -0.203460120
## WDR70 3.486238103
## NEXN -2.483537852
## TNF 2.993562134
## SLFN12 1.151792202
## TCF12 -1.344581927
## FBXO28 -0.830711006
## PRDM4 -0.674903811
## MLST8 2.388021362
## STAU2 -2.190205991
## GPKOW -0.057267288
## TSEN54 -1.964705243
## CWC22 -3.016016887
## TMED1 -0.401738534
## ARMH1 -2.657133117
## NUP160 -0.866847315
## INTS5 1.003852621
## MZT2B -0.361018100
## PSMD5 0.009825853
## CARD9 9.739829832
## YTHDF2 -0.964460380
## PKP4 -2.662853701
## FAAP20 3.837249599
## DUS2 -2.988899255
## GBE1 -3.469274821
## IL21R 1.249209831
## NCOR2 0.011938065
## CHCHD5 1.903195186
## KLHL28 -3.086811494
## STON2 2.481518797
## POLR3H -0.464419352
## NIPSNAP1 -0.780109354
## SINHCAF -1.489163945
## FBXL4 -1.989613469
## YAF2 1.367074284
## FAM160B2 0.011635004
## PIWIL4 -0.280537963
## CIAO3 3.679817713
## PCYT2 -1.428081680
## NAT9 1.634368232
## SCAND1 3.541872750
## BIRC5 -1.040231870
## SNAPC2 8.505514326
## E4F1 5.634861933
## SAMM50 -0.480695357
## SPAG5 7.177848382
## ECSIT 0.923972024
## H4C8 0.885615969
## DHRS1 -0.212198986
## MARCHF9 2.029577274
## GALNT6 -1.450090204
## FAM149B1 4.870153739
## CCDC117 -1.779262078
## BAG5 -1.632725533
## SLC22A18 1.671338278
## TPX2 6.090348788
## ACD 3.858676396
## RACGAP1 11.400843947
## KDM4A -1.527070330
## KNTC1 9.346261399
## FCSK 3.970927651
## BCLAF3 -0.604154002
## BPNT2 -2.156420270
## FAAP100 1.258727760
## PATZ1 1.592589265
## SFI1 -0.132253487
## CAPN10 6.111602829
## ZNF688 6.364644614
## CTDSPL2 -1.851894763
## EOLA2 4.303419986
## SPNS3 -2.066816532
## KIAA1191 0.403607883
## WDR44 -1.606369506
## CYP51A1 1.762747794
## XPR1 0.111711768
## ADAP2 -3.078736826
## DPY19L1 4.621033103
## TENT4B -2.484067207
## AAR2 1.804748940
## MTG1 -2.547010615
## FAM98C 3.736399571
## C18orf21 5.073207226
## PLA2G4B 1.839816775
## TNFAIP8L1 4.097930707
## GLYCTK -1.151785475
## LMBRD2 0.762483176
## TMEM39A 0.008039474
## JUN -2.872608151
## PTPMT1 -0.742406449
## NFIC 4.123028329
## HEMK1 -1.435449233
## ZC3H6 2.475334735
## TMCO6 7.542293502
## AP3D1 -2.536272499
## BOLA2B -2.562353553
## AP3M1 -3.492046687
## C2orf69 -2.075449244
## ASPSCR1 2.618020789
## ALG3 -3.171083300
## GFPT1 5.668401144
## HIVEP1 -3.406857095
## GP9 -3.323830953
## NFKBIL1 2.206985356
## TMEM134 6.701808761
## MUS81 -1.273137321
## RECQL5 3.922720401
## COMMD4 -3.586332796
## PWWP2A -1.081381373
## ABCB10 -1.999354286
## TUT4 -2.181909727
## CENPF 8.643963766
## CHD1L 3.156551437
## SERTAD1 -2.130848513
## ORC2 0.856486213
## MRPS23 -1.151683028
## CDC20 -1.326113700
## INAFM1 1.713867334
## ILVBL 1.542564909
## RBMXL1 -1.948021886
## GOLGA7B -1.064984695
## IMP4 -1.822170284
## SORBS3 4.209734332
## MTMR11 -1.299079108
## RAB40C 6.864651119
## TESK2 -2.678139121
## COA1 -2.848903292
## CALHM2 -0.997417955
## RSPRY1 -1.644929678
## ZNF444 3.607128969
## PEAR1 1.721584719
## MDN1 -3.249475664
## HENMT1 -3.491963407
## ARHGEF10L 3.977340971
## SLC35E3 -2.486951277
## MVB12A -0.467326666
## ACSF2 0.318181547
## NR4A1 4.557496085
## PLA2G12A -1.395640570
## YJU2 1.341712399
## DDA1 -0.620953343
## VRK1 -3.370255272
## EIF2AK4 0.486629448
## MRPS16 -3.553489864
## NCKAP5L 6.374419006
## MED17 -1.300883409
## GIPC1 1.735206046
## MCM9 1.651197268
## USP12 -0.096390673
## DHRS3 1.026251670
## NSUN2 -2.788906919
## KCND1 -0.858884435
## SLC25A38 -2.809713847
## VTI1A -1.616555988
## IGSF8 2.119416841
## GNG7 -2.078114246
## CRCP -3.291706688
## TSPAN32 -3.245467021
## LMBR1 -3.659024629
## CEP20 6.740327698
## NAPG -1.439170800
## THAP3 1.147858867
## PBDC1 -0.026197652
## PKHD1L1 3.954496932
## CC2D1A 0.069882769
## JMJD4 0.194034234
## NEURL4 3.161972430
## UBOX5 3.508869021
## LHX4 -3.051397340
## DARS1 -3.021526124
## SPATA2L 1.150443768
## NSUN3 -3.088962914
## PEX19 -3.270086309
## HAUS7 3.696039983
## TTLL12 6.740636122
## CDK5RAP1 0.186773345
## ZNF66 -1.627735935
## CATSPER1 8.787938380
## GRK5 -2.706718926
## DESI2 1.148615086
## CDKN1C -1.198787714
## COX17 -1.679513992
## CDK2 13.022389811
## PPP2R5E -0.223657772
## ATF1 -1.112624981
## SENP5 1.185221657
## TBC1D13 -1.962403552
## HDHD3 -0.027259600
## MRPS25 -0.912275413
## HECTD3 -0.101079072
## DIABLO 0.775460867
## SNRPB2 -2.156510234
## ZBTB2 -1.595082643
## KLF5 -2.333968997
## ZBTB33 -2.484795077
## KIFAP3 1.183476001
## LYRM4 -0.430919959
## SCAMP4 5.381506354
## ZBTB17 -0.868142042
## CBX5 -2.621363183
## SLC23A2 -2.517309557
## DLGAP4 -1.705674669
## AHSA1 -3.321252341
## SP4 -0.024842148
## CBWD2 -2.282435454
## TIMELESS 7.157139177
## DVL3 -2.781691563
## DIS3 -3.488444787
## INTS10 -3.034292825
## GCHFR 0.099526539
## FRS2 0.142146059
## ARMC6 -0.425438296
## KCTD9 0.494032411
## SEC23IP -0.521198252
## ANKRD27 0.247052315
## TTYH2 -0.552879122
## TPM2 2.137570359
## SMC2 7.576097407
## MANBAL -0.841515908
## NAPB 0.573232958
## CACYBP -3.187190557
## RABEPK 3.262499490
## B4GALT7 0.550148614
## SENP1 2.251102126
## KLHDC4 -0.723781461
## LAX1 -0.134044973
## NCAPG2 4.037396638
## EEFSEC 1.488256213
## FUOM 1.731441074
## CDC6 9.918331978
## TTF1 4.456277186
## ATP13A2 -0.411964102
## ARFIP2 -3.288596995
## ADRB2 -2.029689277
## ZSWIM7 4.165738472
## CAPN7 -2.452791566
## SPATA20 -0.087182001
## MYNN -3.060322364
## SIRPG -2.551495834
## SMIM7 -1.876060770
## WDR33 0.267741037
## RABEP2 3.655984895
## PSMD3 -3.367831628
## COA4 -0.119082192
## SMPD2 1.331550656
## SIVA1 3.431903588
## VPS72 0.805103561
## ABCD1 2.099747119
## ESD -3.279733632
## KIAA0319 -2.902792650
## PHRF1 6.062143182
## GMEB1 5.904451132
## USE1 1.359576472
## ABT1 -0.542305470
## UCHL5 6.819081981
## UTP18 -0.288917679
## MANEA 2.445485141
## SURF2 4.784969042
## MTHFD1 4.744173208
## PAXBP1 -1.529831685
## MCUR1 2.380079425
## STRN3 -0.419182127
## MTREX -3.305986973
## ESS2 1.831143991
## RIN1 3.909688853
## DDT -3.529012673
## CSNK1G3 -2.973776390
## LENG1 2.395852863
## ZNF451 -2.002446074
## ZNF384 -3.619911402
## DCP1A -3.009024794
## DAPK3 -1.839406877
## ADCK2 3.912590332
## ZHX1 0.494672610
## SMARCD1 -0.089672979
## THAP7 3.008046004
## VPS37A -1.951190633
## MAFK 8.981788722
## TTC33 -2.401857249
## POU2F1 -1.488557095
## DNAH1 -1.967496449
## TMEM245 -2.193130939
## WHAMM -2.618208051
## TKFC -0.398401221
## ARL15 2.040651748
## ATP11C -0.463671765
## UBR7 2.825357536
## NDUFA8 -1.589682522
## USP6NL 4.391033479
## MRPL16 -3.548803323
## CREB3 -3.012368650
## TFAM -2.224323356
## HRAS -0.061181635
## ABHD11 4.678835800
## DENR -3.361248924
## NCR3 -3.434019225
## CEP162 1.179107182
## YIPF6 -2.116685765
## ZNF428 3.636299336
## NFATC1 2.926324986
## INSR -1.143639597
## MRPS2 -1.821167027
## CDK6 -0.493546613
## DVL1 8.375503840
## ZPR1 -2.617956402
## CDCA5 3.930198144
## EEA1 -1.003977130
## PFDN6 -2.629089275
## RBM12B -2.162461532
## THAP4 0.151501608
## MRPS11 -1.989873899
## LSM5 -3.631382054
## SELENOI 8.233069289
## SMURF1 -2.963020849
## EZH2 10.861678883
## ZNF395 -2.497280249
## TMEM94 -2.015223258
## B9D2 -1.823949311
## IGFL4 0.177842967
## FBXO31 1.525739597
## CCNB1 1.140614428
## CKAP2 5.549887045
## SLC35E1 -0.844295992
## SSBP2 -1.259547438
## MOB1B -2.473476482
## KRR1 -2.028043271
## FAM98A 4.458759870
## FAM126A -1.734441225
## SH2D2A -2.756849538
## TUFT1 -1.202749102
## NAALADL1 1.440004319
## NPIPB5 -3.266236717
## ZNF609 -3.700707133
## CLPTM1 -3.015995119
## ARMCX3 -3.401684993
## NME3 0.817035041
## MED14 -2.232297130
## ATR -1.372666862
## DALRD3 -1.334991655
## GOPC -2.761458620
## PCK2 -1.779335607
## AGFG2 -0.722409298
## RNF126 3.791680710
## PLCB3 5.197441759
## PHF14 -3.453356772
## PLA2G7 8.543635691
## UFL1 -3.262544164
## DDI2 -0.373648561
## ZMYM4 -1.850771998
## ATAD1 -1.444107144
## SERGEF 0.920370468
## LRRC58 -1.235512027
## ZNF75D 1.376331349
## MAPK9 3.272611677
## LIN54 -3.672134046
## RMND5B -1.560768468
## CZIB -0.900401959
## ARL16 0.448860857
## SPATS2 2.282194992
## SDHAF1 3.672008659
## HSD17B12 -3.643813750
## PCBP4 0.527223431
## GALT 0.252149064
## EPHB1 -2.829095076
## COQ2 0.302284321
## HIKESHI -1.990709789
## APPL1 -3.014949193
## DLGAP5 4.441327176
## RARS1 -1.232423151
## ZNF783 -0.197372541
## ULK3 -3.505955425
## RBBP8 3.501872270
## TGIF2 -3.506283674
## APEX2 0.654319529
## SPAG1 1.273142572
## BOD1 3.828087471
## ZNHIT3 -2.489610156
## SSX2IP 2.004190517
## LOXHD1 0.552907659
## ASCC3 -3.144970946
## NPIPA7 -1.607933767
## ELP5 -0.307155808
## LRFN1 -3.249374120
## ZNF224 -3.126180164
## VPS53 -2.081900056
## HDDC2 -1.028447740
## CLASP2 -0.689324378
## NBDY 1.775354063
## HLA-DOB -3.535806442
## AARSD1 -0.134008831
## DDB2 -3.467617357
## STRIP1 -0.721017420
## RPS6KC1 -1.497384968
## GOLPH3L -2.852387150
## CFAP410 0.336738570
## KATNB1 0.490580762
## DDHD1 -2.693364108
## PHETA1 4.605893174
## DENND6B 8.787709457
## MLLT10 -1.908516692
## LRSAM1 0.114569737
## ZNF280D -0.833508903
## RBM43 -1.825980186
## VPS52 0.715090480
## TESK1 1.644390505
## STK19 -0.480452786
## INPP5B 0.196917946
## ZSCAN32 -1.059043101
## CHID1 -3.418130996
## CEP135 -2.399780537
## SLC66A3 -3.610410339
## GATA3 0.488630049
## CDK5 2.089786113
## TRNAU1AP -3.466813671
## ZNF799 -2.048175587
## SCCPDH -1.445985342
## METAP1 -1.034838662
## PRRC1 -1.714221847
## ASPM 8.701949712
## CDKL5 -3.687229866
## NPAT -2.707710612
## SLC39A6 -2.339702630
## NEK4 -0.593946588
## TBPL1 -3.401189638
## TMEM60 -3.694196182
## HSPBP1 0.017544965
## RDX 4.011488479
## DDX28 1.310756124
## NGRN -2.294359691
## TM2D2 2.417462764
## GUCY1B1 -2.469390848
## ZNF844 -3.765822215
## CFDP1 -2.402332466
## BCAT2 2.270293329
## UHRF1BP1 0.672480903
## ATP10D -2.473126558
## SYNJ2 1.432473603
## SWT1 0.455979513
## ZNF784 3.529597401
## HACD2 -1.319874321
## FKBP3 -3.447707113
## METTL4 -1.679759615
## TOM1L2 6.664859432
## ABHD18 0.475285395
## CLIP4 -3.622395770
## ZBTB47 2.835815002
## CXXC5 -3.710033810
## PEX13 3.146975256
## C5orf24 -1.536895120
## PRPS2 -0.485594274
## GMEB2 1.636275172
## NFKBIB -2.508987116
## DNAJC9 -3.519371837
## CROCC 6.809862030
## SMAD5 -0.894670383
## KIF2C 1.914283801
## PTGIR -1.388277332
## GCDH -0.930980831
## REX1BD 1.470075709
## SNX8 2.091705554
## FAM102B -1.970305904
## TCHP 1.344865747
## MMS19 -3.667062573
## PUS7L 1.062435997
## ZNF81 1.382142171
## SLC17A5 -0.812662038
## CENPX -2.690230884
## PRR5 -3.178525913
## NPRL2 -3.760762527
## SEMA7A 0.147593501
## SMYD5 -1.062452743
## ASB13 3.300869120
## NUBP1 -0.521014399
## VAPB -3.171594084
## SLC10A3 -2.124391911
## CAPN15 3.060202797
## DERA -1.701898260
## CAPS 3.803135906
## TMED4 -1.970983208
## TAPT1 -2.458414440
## TRMU -0.342579896
## FIP1L1 -0.101066884
## BRAP -3.256396869
## PLEKHB1 -0.766757366
## UNC50 -2.531173558
## DHX30 -1.894119110
## ANKRA2 1.050574274
## FOXM1 3.577095562
## UBN2 -1.728483023
## EXOSC1 -2.847544411
## CCDC32 0.332626001
## AP4E1 0.770435186
## TK1 -2.371601230
## RELL2 1.061907249
## SLC25A25 2.065216845
## MRE11 -1.541841990
## TRAF2 -0.450200909
## SLC25A45 2.787220723
## PHLPP1 -3.579842660
## CCNB2 0.888998967
## LRCH3 0.064399258
## HPS5 -2.020761486
## MEN1 -1.643932349
## CENPU 6.449430042
## FUT8 7.970890415
## NDRG2 8.484073193
## C12orf76 1.217257532
## TACSTD2 -2.826707756
## NHLRC2 3.767282743
## CUL4A -3.363656957
## PRXL2B 4.635532759
## RPF1 -1.073120325
## KATNIP -3.489083391
## NCAPD3 4.114489403
## PTRHD1 0.213063737
## PVRIG -1.823709451
## RPRD1B -1.705683265
## ACADS 1.378800967
## POMGNT1 -1.712052701
## RNF168 -2.137699991
## FAM122B -1.342529991
## FADS1 -1.100163196
## PDE1B -1.093181875
## MSH6 0.169125616
## PDK2 2.470987846
## BTBD7 -2.225397030
## KANSL1L 0.302821482
## ITGA1 -0.544314740
## PEPD -2.229633465
## PPIH -1.788009977
## SNRNP48 -1.303021620
## INTS4 2.989166036
## NUDT2 -2.168416853
## MUTYH 4.212432792
## PMPCA -1.266762109
## CPSF4 -2.579720453
## TJP2 -3.373124742
## ZDHHC13 -2.032657970
## LRRC8B 0.139430446
## BLM 5.691525205
## PTK2 -0.057330203
## PARG 0.614547113
## VSIG10 -2.835285341
## C7orf26 -2.101217214
## HAAO 15.595681727
## TCF4 -2.556744835
## SNRPF -3.547245034
## ARHGAP5 -1.298204518
## MASTL 5.180554965
## TRRAP -3.694966423
## TANC2 -3.335832568
## ZMYM5 -2.468870884
## GEMIN7 -3.138884292
## KCTD5 -0.680016368
## POP5 -2.379115980
## CES2 -0.067465622
## VPS45 -2.773403103
## DSTYK -2.503623248
## TRAPPC9 -0.992564670
## MGA -3.366618258
## EDC3 -1.362896180
## FBXL6 -0.921544204
## CNOT9 -1.436617732
## PLD1 0.629139504
## ABITRAM -3.419741387
## ECT2 6.106152962
## RNPC3 -3.543239441
## CENPE 4.443949640
## SNIP1 -0.893891987
## RP9 0.307205995
## ZNF684 -2.069770126
## ATAD3B -0.325121856
## PHACTR4 0.941758092
## REXO1 6.781579218
## GPN2 -1.986778901
## MAP4K5 -0.514992002
## PELI3 16.576702015
## TNKS -2.649372860
## OGFOD2 -1.506986072
## OGFOD3 2.422836972
## TOMM5 -3.266222748
## MRTO4 -3.288123239
## SPPL2B 2.157953455
## DNM1L -3.194102635
## NRG1 -2.352098893
## REV1 -1.724900463
## TAF1C -3.243385238
## SNX21 8.626979961
## SUCNR1 3.499177791
## SLC27A4 -1.044302386
## ZNF136 -1.894376869
## SPIB -0.645971784
## PRMT7 -0.374516184
## GSTZ1 4.757644338
## EXOSC5 4.201024212
## ABCB8 0.749851995
## ZMAT3 -2.749769983
## NFKBID -3.672514328
## SOWAHD 3.842365411
## CYREN -3.659000664
## DUSP23 -2.582299666
## KLHL18 -3.063395685
## ABCC2 -0.548903308
## MAP3K6 1.406396578
## DHX29 -1.088645050
## PHF6 -0.718106873
## MDP1 -0.315327777
## IL18BP 8.640270936
## TNPO2 -2.281398747
## CCDC61 5.280116348
## SYCP2 -3.361103216
## TIMM9 1.236175609
## ILKAP -2.197529526
## PLEKHA3 -2.153148084
## EDRF1 3.429489100
## TMEM9 -3.606041782
## IPO9 -2.360915063
## MIER3 1.476936597
## ECI2 -2.839976190
## MAPK11 2.945374926
## CPEB3 -0.530707012
## TRIM65 0.110765561
## CTNNAL1 1.069116396
## PRRT4 -2.788450489
## SS18L2 -3.566057228
## ZSCAN18 3.994282859
## ZNF100 -2.770793820
## MROH1 0.947694334
## LSS -2.514381028
## CSE1L -3.359267190
## LARP4 0.914063888
## INTS6L -3.380951037
## CDKN2AIP -2.928053945
## METTL14 -2.008814443
## GSTM4 -3.254615247
## ASCC1 -2.071127616
## ZNF22 -2.049457815
## OAF -1.970112370
## TRIM24 -3.768514155
## PPAN 3.421306645
## SMARCA4 -2.543011248
## BRF1 4.000182398
## DCUN1D3 0.724557309
## GPR137B -0.529830059
## DEAF1 -1.185174554
## LCMT1 -1.374757849
## HMGXB4 0.350539045
## VAV2 2.768600932
## OCIAD2 -3.357008060
## CENPC -2.906833325
## SLC46A2 -2.748270904
## GATA2 2.827699420
## ZNF598 1.971623278
## RNASEH1 1.521331614
## HJURP 5.350996701
## SMPD3 -2.127602736
## SART3 -2.491476598
## FAM3C -3.221128366
## CYB5D1 -2.655052164
## EHD4 -2.351187507
## GFM2 0.765977171
## UHRF1 7.235164806
## RAB30 -0.700107657
## MRPL41 0.716191611
## MAD2L1 2.184693450
## DUSP18 -0.681095284
## CACTIN 3.750865751
## ODF2L -3.303930651
## CEP57 -3.252194477
## REEP4 -1.501655676
## CSRNP2 -1.066683798
## MRPL48 -3.092062056
## PHTF2 -3.057360786
## CLK2 -1.741679092
## SWI5 -0.189237394
## POLR2I 0.125593789
## NOP9 -2.768365439
## CPTP 0.913752033
## ABHD12 -2.356462874
## NOB1 -1.139257281
## KIFC1 3.529967498
## UBALD1 0.422434567
## GALK2 5.013738284
## ERCC3 -1.752964743
## ZNF671 1.609174856
## COQ9 0.858603184
## PDCD2 -3.137459583
## PLCD1 -2.039315293
## DPH5 -0.223833676
## PDRG1 -2.621782374
## GINS2 3.040485006
## GUCY1A1 -2.379027317
## TNFRSF13C -1.709198561
## SLF2 -3.765798549
## SRD5A3 7.747841557
## RPP21 1.015067902
## TOMM40 -3.055479887
## RTL8A 7.094371054
## PEX5 1.335470316
## DSTN -3.651036228
## SLC16A1 4.907768866
## ANKRD52 -1.050064863
## ZNF76 -2.332819484
## TMEM234 -0.798554124
## TLNRD1 0.463152372
## PASK -2.585144447
## MPHOSPH9 3.260013484
## SAMD4B -3.464953365
## ZNF699 -1.321346886
## GNGT2 -0.076891174
## OSBPL7 -2.340243606
## GET1 -3.061062145
## PUS1 1.378572418
## TLCD4 -2.616392264
## XYLT2 0.540851530
## ZNF358 6.374691600
## C9orf139 -3.256005678
## ABCA5 -1.079897330
## ERCC6 0.518498613
## SIAE -2.329923372
## TMEM204 -0.184355250
## ING5 -3.155837575
## BCAS4 0.420523500
## BLOC1S4 2.383825294
## GRAMD4 0.062177397
## ARHGAP11A 9.031129750
## NETO2 0.359485955
## CDC7 16.403791196
## L3MBTL2 -3.577162282
## CDYL2 1.416320277
## EXOC2 -3.205810727
## TRMT61A 2.642088917
## NDUFV3 -0.717088199
## FEM1A -0.151019106
## ECI1 0.736734496
## ACBD4 2.519027897
## ANKRD55 -1.165216985
## KAT6B -1.522545351
## NAA16 1.591962015
## PSMD11 -3.031556018
## ZNF362 11.390780472
## DHX38 -3.736350430
## VRK2 -3.502871167
## HARS1 -3.412193675
## MRPL42 -0.565644966
## DTL 11.751423716
## DENND5B 0.364943411
## FLYWCH1 -1.318183571
## HYAL2 -2.066345460
## SMIM5 -3.672620190
## NOL8 -3.604142665
## PWWP2B 5.507139381
## MSI2 -3.445908555
## TMEM187 6.405966768
## SLC52A2 -0.159091074
## AP1S1 -3.638488767
## IQCB1 -1.036335797
## AMIGO2 -1.374709045
## MIEF1 -2.587461723
## TPRN 2.633613019
## LIN37 -3.224925036
## PAFAH1B3 -1.243485350
## PIGC -0.302902904
## ZNF430 -3.580893656
## TMEM102 3.980843379
## NUP93 -2.917907770
## GSE1 -3.193440613
## PPP2R3B 3.392825658
## GOLT1B -1.941556317
## RAP1GDS1 -1.781191962
## GMNN 2.529169731
## TARBP2 -0.734222635
## CTSF 1.631614113
## SLC9A6 -2.610550013
## CHORDC1 -3.690469944
## SLC4A7 -3.540139393
## NPHP3 -3.752337682
## NAA15 -2.451158688
## MRPS12 -2.397538473
## NTMT1 -0.935794985
## INO80B 5.262648275
## UBASH3A -2.271065900
## LRRC61 5.188832032
## TGFBRAP1 -0.315226037
## NPDC1 3.427663481
## CRTC1 7.374955896
## OXCT1 -2.721839323
## TMEM150A 5.693579751
## MRPL55 -0.857021122
## BTLA -1.620934103
## FBN2 -2.947607664
## SLC22A1 -2.939413513
## ZKSCAN8 -3.423135049
## RGPD8 0.201073045
## SLC30A5 -3.442655695
## MAP1A -3.095237999
## ZKSCAN7 0.084417557
## TBC1D22B -1.187614114
## ATF5 -0.332628127
## AK3 -0.245940452
## NDC80 8.229943376
## MRPL17 -2.212682754
## ABHD17B -0.066234048
## KLHDC10 -3.033856134
## AMMECR1L -0.744736696
## SNRNP27 -3.522395546
## HINT2 -3.232688281
## GRAMD1C -3.616580757
## GGCX 0.644265877
## SLC35D1 -1.922457107
## TIMMDC1 -2.279279895
## RREB1 -0.968269842
## NBPF11 -3.680253602
## ERMP1 0.797714455
## KNL1 8.450437513
## CNPY4 1.958065012
## GNPAT -3.606761613
## DDX51 -1.530231998
## RAD50 -3.207716857
## FBXO5 10.428690368
## CENPN -0.366721524
## NDUFAF8 -0.108903214
## RNGTT -3.300786029
## QTRT1 2.037193821
## HEATR1 -2.632374060
## JAG1 1.574378155
## BUB1B 7.805475401
## RAD17 0.742872707
## SLC16A7 -3.756315652
## MRPL46 -2.130669386
## GOLGA8N -2.902610633
## TMEM64 2.858196943
## CFAP36 2.721245050
## LAPTM4B -1.302463118
## THEM6 3.721962054
## NAA80 -0.553630718
## ZNF446 0.948335590
## MINDY3 0.384343268
## TBC1D25 -3.616978920
## ZNF791 -2.147756837
## HPF1 0.344001561
## ABRAXAS2 -0.313269509
## EOLA1 1.171465461
## FKBP9 -2.786789256
## INO80 -3.305124055
## RASGRP3 1.624101416
## PIN4 -1.052827134
## ACTL6A -1.387423800
## SMARCAD1 -3.252495406
## LTBP4 3.594047243
## TCERG1 -3.419887605
## RRP8 1.732344900
## TTC7B -1.236180161
## LONRF3 1.044495389
## PRDM10 -0.942635488
## SLC26A11 -0.565608608
## ZNF28 -1.082980496
## TMEM86B 1.136586683
## SLC33A1 -1.245815108
## UBE2C 4.003734253
## GNE 0.754746799
## JOSD2 4.462630453
## TOP3B -0.547128141
## CACFD1 7.914205915
## GPR35 9.712326265
## TNFSF4 -1.005775683
## PTDSS2 0.791447019
## TRAP1 -3.141582221
## SEPHS1 -1.897120748
## VAC14 -0.831489859
## CHEK1 9.229852875
## METTL3 -3.584379129
## UBA5 -1.927500351
## D2HGDH 4.428635709
## EXOSC7 -1.677649694
## CUL2 -2.697347644
## STX18 -0.264779872
## ZNF131 -3.761803317
## DEXI -2.231131971
## CPSF3 -2.332182258
## ZBTB6 -3.631011135
## ZNF513 5.225666478
## BLOC1S3 0.879532970
## SKA2 -0.415943936
## WDR54 -1.456145905
## LEPR 1.648326493
## SACS -3.731038093
## VGLL4 1.416823234
## C2orf49 -3.280226995
## BCOR -3.049755985
## YLPM1 -2.823158707
## PKD2 4.357718387
## ERMAP -3.555247586
## PAQR7 -0.594011571
## DIPK1A 0.144989313
## WDR20 -3.360843778
## RRP1 -2.234314586
## NRROS -2.934520516
## SMG6 -1.004815426
## GTF3C3 -2.436031718
## SLC9A3 1.348970154
## PUSL1 2.996681219
## CDK7 -3.737167024
## TSPAN4 7.548887892
## SEMA4C 3.445370136
## BEX2 1.579031416
## FOLR2 7.669944056
## PM20D2 -1.495352591
## SPSB2 -2.359548283
## STAM -1.987228151
## NT5C3B -1.551122766
## EMC6 -0.996631763
## LRRC14 -2.156784084
## GRWD1 -3.353329351
## CLSPN 14.530885385
## POLR1E 0.210108876
## ENTR1 -0.773617011
## KIF13B -3.000614333
## ZNF621 -1.746746652
## NRDE2 -1.617156436
## BCL2L2 1.534618585
## HS6ST1 -0.586058612
## YDJC 2.918912679
## DOT1L -0.505017312
## ITPRIPL2 -2.188234161
## LRRC37A3 3.065382492
## PDE2A -2.984979256
## IDE -1.209853702
## SLC35A3 1.087810990
## MED27 -1.084049006
## SHMT1 -2.521398879
## SQLE -0.589297397
## ZNF468 -2.758607473
## FKBPL -2.272162807
## LENG9 1.173496676
## MAP2K7 -3.350484783
## KCTD15 4.550701264
## NCKAP1 -0.555611600
## N4BP2 -1.071280839
## FLYWCH2 4.553425308
## RCN1 -2.400821944
## WDR77 -2.864209500
## FAM193A -2.941792984
## ITGA9 -1.371334634
## TBCEL -2.004199364
## ZNF226 0.551775957
## CCDC134 2.700824450
## CDCA8 3.784972996
## ASTN2 -0.929685845
## FAM20B -2.532961744
## MSMO1 -3.467900313
## ITGAV -1.124819793
## CEP152 4.616871090
## SUGT1 -3.100491203
## HMGB3 -3.438667448
## MRGBP -3.288390235
## CDPF1 2.528680031
## USP49 0.844580812
## ACVR1 -1.513606490
## ERCC2 -0.876631206
## NUTM2D 1.258131834
## CDC45 6.643533876
## TMEM104 -1.264175309
## TTF2 -0.037311623
## PEX11B -2.874424699
## PDE6D -3.533924662
## DDX19B -1.966430910
## PICK1 -2.807207965
## NCBP1 -3.337863691
## C1orf35 5.570765720
## C12orf4 -2.417196396
## ZNF507 -0.611003421
## PIK3R2 1.447807546
## GTF2E1 -2.235663262
## GCLC -2.762834412
## ANKMY1 -0.012837674
## NUP43 -2.276751810
## MED10 -0.755181375
## CD40 -0.950976244
## TRIAP1 -2.143643872
## RTN2 -2.982482052
## RCE1 -0.223533411
## ARL14EP -2.772358599
## DOK4 4.193681349
## ANKRD40 -2.631969225
## DOP1A -2.827868885
## YIF1A -3.616726670
## CD1C -2.591623484
## COPS7B -3.464105054
## BUD13 -2.688156120
## FBXO8 -2.291149894
## TAF1D -2.866090014
## RFC4 1.088788608
## SNX16 -2.064197952
## COX19 -1.218139610
## DPM3 -0.543010038
## ZNF408 -1.276296899
## NOP14 -3.321825892
## BICDL1 -2.755469052
## OBSCN -1.584080875
## NCBP2AS2 -1.527089618
## AURKA 2.741741165
## KIAA1614 5.742914271
## NR2C2AP 0.584263557
## CACNA1I -3.450531228
## ATPAF2 4.542111428
## YIPF2 -0.724711191
## PPP2R1B 2.073517314
## KRIT1 -3.276620491
## MIB2 3.197559683
## SETD6 -1.203707462
## ENKD1 0.888947521
## KATNA1 -3.116605672
## XPO4 -3.752911383
## ALS2CL -1.161002975
## CCNYL1 -0.688794032
## MTMR9 -2.110485387
## PRKAB2 -2.815832349
## PIGF -2.292631952
## COG6 -0.086219566
## NUP85 -2.933165327
## ZNF211 -3.466245310
## BFAR -2.226455053
## ELOA -3.503487460
## CHERP -1.153332767
## NUF2 -0.333234913
## UBE2T -2.042067320
## AASDHPPT -3.490963422
## DHRS7B -3.534628022
## MMP14 3.245570610
## PLK4 8.278801395
## PIGBOS1 -3.743560479
## NSMCE3 -2.748956140
## G2E3 -1.445767657
## PRPSAP1 -2.917008008
## CUL5 -3.632990149
## ALDH18A1 -2.687562015
## CLUH -1.575226149
## GANC -1.200733133
## NMT2 -2.443850752
## TMEM88 1.884478621
## IGFBP2 -3.408182848
## PRKCI 0.357285220
## THOC1 -1.296652017
## MEIS1 0.912815198
## WEE1 9.974733371
## ABHD14A -0.393255280
## NSDHL -1.093467349
## ERC1 0.045663580
## SLC49A3 1.575628270
## NUP107 -2.539892765
## ARMC5 0.749995679
## FIZ1 2.587238136
## PI16 2.684329969
## DTX3 -1.992613382
## C5orf22 -1.299338646
## ATG16L1 -3.088997214
## RPUSD3 -1.312360912
## FNIP2 -3.326958325
## IPO13 -3.727705400
## RFC5 10.914127086
## VPS33A -2.493385449
## HSD17B8 -0.719544227
## WDR25 7.586205319
## GEMIN6 0.172495166
## TUT1 1.184632329
## NBPF1 -2.830325346
## WDR76 7.634259895
## ALKBH3 -1.117786838
## JMJD7 4.430133514
## KIF20B 3.204468997
## DDX52 -1.337456114
## PPP1R8 -3.046571024
## INTS7 3.887774459
## NSRP1 -3.120269481
## HSD3B7 -2.137912655
## KLC4 -3.681311911
## IGFBP4 -0.381105523
## POMT1 -1.930637041
## ASB1 -2.915766589
## CEP55 6.847238454
## GATAD1 -0.514849411
## KCTD11 -0.808143117
## PLEKHF1 -2.601795989
## KCTD18 -2.877485476
## BATF3 6.602314403
## SARS2 -0.492460533
## CMC1 -3.602894219
## MCCC2 -1.654108744
## RRP9 -0.213798381
## ASB6 -2.762352621
## SNRPA1 -3.570323233
## EVI5L 3.624716673
## CAMTA1 -2.263225104
## DSN1 1.197014679
## FBXL15 3.200066529
## WDR36 -3.384117475
## ZNF8 1.467565283
## SGO2 5.423611609
## MRPL45 -1.850753750
## DIS3L -2.222512707
## BBS10 -3.549018795
## SMIM19 -0.038413308
## PGM3 0.594047381
## MYO1D -1.001853917
## CEP44 2.272392357
## MFSD11 -3.464216016
## BRCA2 7.609511150
## NPRL3 -3.487666746
## THAP6 -2.910722624
## ZNF875 -1.555397635
## NCAPH 9.584680840
## TMEM62 -3.697405834
## MRM2 -0.722470776
## DONSON 10.386041504
## ZWILCH 8.881442745
## NAT1 -3.001127003
## KIZ -0.270621933
## TMEM39B 2.070987952
## ZNF385D 1.117095113
## EFNB1 6.744456334
## URGCP 0.292980049
## ICOSLG 1.227043861
## CDR2 -3.469259165
## HIBCH -2.145498679
## MED21 -1.917722112
## DCLRE1A 0.085516032
## GGT7 -0.385115892
## IGHMBP2 -2.222898426
## ODR4 -1.580676633
## MRPS26 -2.774915726
## MTA1 -0.356757533
## ZNF768 -1.125607916
## CEP104 -0.389802483
## DUS3L 3.343961182
## ZNF611 -2.743631111
## TRAPPC2B 10.815724593
## TGS1 -2.022654907
## HELB 1.403823201
## NDUFC1 0.223084204
## EBPL -3.001253951
## RARG -2.177318985
## RITA1 -0.358286824
## FAM114A2 -3.526605689
## CEMP1 -2.038461543
## C17orf80 -0.524222021
## FRK -0.101488316
## DUSP13 -2.842730191
## TMEM18 0.254087319
## TCEANC2 -2.610277427
## SMN1 -2.506606427
## UMAD1 -3.632647430
## STRBP -2.204268457
## TJAP1 -1.741123295
## TIMM44 -2.027293732
## DHX37 -0.459542537
## CENPK 2.859576539
## ACAD9 -2.973670082
## MFSD6 -3.284450277
## SH3TC2 3.351590980
## MLH1 -2.879659315
## RPAIN -3.164053812
## NR6A1 -2.499970460
## ZDHHC8 4.309083609
## TICAM1 -0.011746752
## KIF15 6.445983886
## MRPL2 -0.562721609
## SEMA6B -2.218909038
## ANKRD54 0.666101724
## TTC19 -2.265826950
## HCFC2 0.528394957
## DUSP12 -0.237981845
## NUDT14 2.565688450
## GEN1 8.885594333
## FHIT -1.893644994
## MCM8 6.215464407
## RAD51 5.387173484
## TWSG1 1.453796605
## NIFK -3.024799486
## MRPS35 -3.394788662
## SLC35B3 -3.725331991
## UEVLD -3.530953539
## NIPAL3 -3.380364756
## UBXN2A 2.860406304
## SLC25A30 -1.285626365
## LYPLAL1 -3.500542665
## NRF1 -3.400895886
## PCYOX1L -1.680641159
## INTS12 -3.353166925
## SLC25A26 -3.213993871
## DBF4 -1.240119602
## C8orf33 -3.193669917
## LILRB5 -3.201422297
## AURKB -0.983414658
## PPARD -1.120283188
## POLH 0.274304239
## NAXD -2.491748468
## CD160 -3.602470739
## ACACA 0.385060765
## SMAP1 -3.233274519
## WDR7 -1.659813445
## IFT80 -1.560025946
## ZMYND15 0.690763140
## AIFM3 3.923564849
## IDUA 1.747521874
## FRA10AC1 2.624830410
## MRPS9 -2.458380530
## AP4M1 5.987773899
## RNF144A -3.083568026
## YRDC -0.385861358
## ATG4A -1.565695036
## P4HTM -0.449124188
## CMC2 -3.463571777
## SPRTN -2.114122564
## ZNF691 1.297650048
## PSAT1 5.668237330
## HAUS6 -2.619986149
## NDC1 0.013595978
## OMG -2.731259592
## FASTKD1 -0.992155365
## MTRF1 8.114850030
## LRRC45 1.571734850
## FDXR 1.087205433
## SLC37A1 -1.047655205
## POLR2J2 -2.862431534
## WIZ 2.031173793
## TIGAR -3.621839967
## TAFA2 -3.032577651
## EXO5 -0.163284656
## MRAS 1.694892246
## HMG20A -3.046118546
## SCAPER -1.084574796
## SLC7A1 -0.733612502
## PEX1 -3.028363755
## C16orf91 1.954212049
## PCYT1B 1.979022406
## GLI1 -0.353718308
## PYROXD1 -2.335764885
## TMEM161A 4.965785875
## TACO1 -1.569496801
## TMEM80 -2.800176336
## RAB2B -0.473258725
## ARHGAP6 -0.546962331
## TRNT1 -2.971265814
## ZNF407 -1.873298535
## UBFD1 -2.930070593
## ELP6 -3.042896710
## SCN9A -2.641879309
## SLC29A3 3.062400505
## CDCA7 5.157156629
## C1orf50 -2.728341593
## SERAC1 -0.573349730
## ORC1 8.819504355
## C16orf74 0.545159487
## GABPB1 -3.183877585
## ARL17B -3.212711684
## SLC25A22 -0.101874607
## SNX22 -3.177117743
## FN3KRP -2.880721195
## CPNE8 -3.358296346
## DBT 0.632027646
## ZNF765 0.798180867
## PIDD1 1.341899152
## LRCH1 -0.796868522
## RCC1L -3.574351400
## CDC23 -2.967747608
## ZNF506 -3.460851249
## PAPLN -2.752266269
## NAE1 -2.499963061
## ORC3 -1.886913680
## SCRN3 -2.414719440
## APBA3 0.187670227
## COBLL1 0.561991427
## MALSU1 -3.337205664
## LRMDA 0.180644737
## LIN7C -1.918190385
## C12orf45 -3.584155624
## NEMP1 -1.318932278
## C9orf40 -3.721990775
## TMEM138 -2.299077610
## MYBBP1A -2.181049523
## HDHD2 -3.438893124
## MMUT -3.624327348
## TMEM107 0.002905553
## TSPYL4 -2.671491712
## ANGEL2 -3.146082216
## HSCB 5.289892440
## NEO1 -3.138668934
## TOP1MT -3.427226392
## FBXL19 -2.997008697
## DBP 3.227747094
## SLC66A1 0.521791167
## SLC22A16 -0.591257527
## RBM15 -3.347618623
## ZNF788P 0.303988409
## MSH2 -2.391357911
## GPATCH11 -3.136088704
## PIAS3 -0.986822538
## EFEMP2 -3.557933907
## INTS9 2.897421116
## NT5DC3 -2.570540970
## SETD1A -3.013121650
## H3C6 -2.856156363
## NIPA1 0.817122507
## TBCK -2.517508442
## TCEA2 2.684594138
## RTN1 -3.304049507
## NDUFAF7 -2.860197282
## PDIA5 -1.773258362
## ZNF197 -2.506669267
## ZBTB21 -1.638696863
## KLHL20 -0.294469229
## ECHDC2 -2.447158312
## UROS -3.448886021
## DIMT1 -2.023597783
## EPB41L5 3.582928041
## IFI27L1 -2.751689045
## ZNF512B 1.036597164
## PPM1L -1.776364463
## NKD1 -0.327254275
## ARHGEF5 4.223526034
## SNAPC4 2.647615196
## NLGN3 -2.569068202
## TRAF4 -2.295013990
## SNUPN -3.112262268
## ZNF48 1.233508238
## FBF1 -0.526775906
## SLC26A2 -2.728041090
## CMAS -3.618589446
## WDR18 -0.430906984
## TXLNG -3.323823957
## ATAD3A -2.081641782
## CILK1 -2.059726891
## MIER2 4.094037182
## CHAC2 1.758659464
## CRAMP1 -3.355479793
## ADCK5 2.299861092
## CRELD1 -2.976821342
## LLGL2 -2.231391075
## HDGFL3 -3.542244918
## OSGIN1 6.498543646
## EEF2KMT -1.336774251
## TIGD5 4.389916166
## ERO1B -2.694889689
## RHOBTB2 -2.713914008
## ZNF367 12.264144091
## SH2D3A 3.642224628
## TMEM186 -0.929996988
## MTERF4 -2.945871686
## ISCA2 -3.307744308
## TMEM128 1.368317892
## ZCCHC14 -2.277913031
## BRD1 -2.305768895
## FLT1 -2.875501144
## FANCD2 -3.691953980
## SERPINH1 3.674774567
## ZNF500 2.646904443
## B4GALNT2 -2.949026286
## SKA1 2.855424539
## SCOC -2.604241027
## TAF13 -3.606985838
## EMC8 -3.295457260
## TMEM69 -2.250004038
## RGS12 7.011001596
## PBX3 -3.478196415
## CBFA2T2 -2.210174126
## ZBTB20 -2.010189709
## CEP85 -3.666050895
## ABI2 -2.931469831
## OCRL 1.084937358
## CDKN3 -3.228055699
## WRAP53 -0.754484517
## XPA 2.240487302
## ZNF574 1.473934560
## LTK -2.971460272
## HDAC11 2.100425460
## NLE1 0.980327955
## SASS6 6.934257245
## TTC21B -0.953493377
## PPP1R37 2.923003940
## GPER1 -1.300334625
## SEPSECS 0.262296127
## PIGN 0.747328042
## NKAIN3 -0.571857268
## POGLUT3 1.883189004
## SCAF4 -2.780876930
## TP53RK -3.086307936
## PLXNA3 -2.608818577
## ISOC1 -2.846789045
## SUCLA2 -3.391920989
## SLC35C1 -3.537711914
## FBXO25 -3.701664979
## CEP128 4.142741811
## SLC25A32 -1.512206800
## KIF23 6.538730700
## DYRK1B -0.420171501
## C1orf198 -2.285171158
## ATP6V0A2 -2.799636318
## MED9 3.032270289
## ZCWPW1 -1.978941175
## SLC25A19 -3.023390777
## ZNF133 -0.417075870
## DNPH1 1.588128284
## PRR11 -3.228105971
## NUGGC -1.095072725
## LAGE3 -2.358492188
## MED6 -0.617897139
## GPR180 1.577497430
## ABCB7 -1.278346781
## FUZ -2.680799524
## LARP1B 0.916769597
## IFRD2 -3.408850211
## DGKG -0.383880902
## FAHD2A -3.656812383
## TMEM243 -2.868733657
## C4orf46 -0.300639732
## CCNB1IP1 -3.223186136
## TG -0.571221737
## FOXP4 3.513981955
## GTF3C4 -1.236807495
## PSMG4 3.017098264
## ZBED4 -2.511180983
## SAV1 -0.458022786
## DHX33 2.239373554
## MED12L 0.866012636
## MMAB -2.279689192
## LSR 1.495117328
## MYO9A -3.683946289
## WASF1 2.816153951
## ANKMY2 -0.044688551
## MAN1C1 -2.958650931
## ZNF761 -1.642771768
## MRM3 -1.038719120
## PANX1 -0.033366667
## C22orf39 -3.758289355
## HAUS2 -1.096530030
## CENPO -3.272165992
## FBLN5 0.561729143
## CENPBD1 -1.594392763
## DNLZ -0.113613890
## LTA 1.900397040
## VMA21 -3.458402145
## LRP8 3.253390674
## ZNF808 -2.336325793
## MPV17L2 -0.918083500
## TMIGD2 -3.086690634
## IFT43 2.099294083
## TIRAP -3.194707660
## SPATA5L1 -3.551753068
## LDLRAD3 -2.259752169
## IRF2BP1 5.885917638
## SCRIB 0.393400955
## PER2 -1.375561892
## TMEM35B -3.302633523
## LCLAT1 -0.982011379
## CDC25A 6.588282251
## UQCC3 -0.061561383
## LYRM9 3.573236138
## MMP17 10.381340041
## FOCAD -3.275984716
## BCS1L -3.367250927
## MELK 11.125958450
## MBD5 -2.805868860
## WDHD1 10.196324110
## PYCR1 -1.941943761
## XPNPEP3 3.529837843
## DVL2 -3.688707661
## PDHX -0.370209519
## PCYOX1 -3.358989788
## ZNF277 -3.762461543
## ZSCAN2 1.408345457
## QSER1 -3.097902467
## MAP2K5 7.597933340
## ZNF419 1.660911169
## ZNF623 -2.261687300
## TRAPPC2 -2.086420207
## HACD3 -3.007473570
## FBXO45 -3.757759621
## CHAMP1 -1.771095320
## DNM3 -2.501327591
## SLC35F2 3.730871213
## KCNN3 -1.490498246
## CTPS1 -1.210624578
## AGAP5 -3.130271086
## ELMO3 -2.293136214
## C16orf87 0.568009065
## CCDC18 5.197922235
## CARNMT1 -1.179100879
## NAA35 1.505111492
## SAC3D1 -0.041456407
## MEGF8 3.565082685
## SS18L1 1.487794382
## PLEKHA8 -1.229856508
## MAPK7 0.128664175
## PLD6 1.380620706
## ZSCAN30 -3.076281571
## FAM156A -3.586819611
## SPDL1 6.859449289
## TSNARE1 0.776885474
## SNX25 -1.107261920
## MRPS17 -2.981767816
## AFF2 -1.255734833
## RAD51AP1 2.999644537
## TMEM42 -2.547022817
## ZFAND4 5.941897269
## C22orf34 -2.619565745
## AGPAT5 -3.066882180
## PRPF4 -0.837746669
## CIP2A 6.644352619
## KIAA1841 0.258673101
## POLA1 4.868456662
## DNA2 9.278445997
## YBEY -1.594848144
## FAHD2B -1.485289832
## RABL3 -2.026350784
## ZNF436 -1.636692466
## SLC12A2 6.499754364
## CBR3 1.576727791
## SNAP47 -1.360146425
## KCNMB1 1.337670577
## CISD1 -1.382846734
## ABHD8 -0.279943303
## DPH2 -3.704272399
## PEX14 2.837084903
## TRMT13 -3.275236050
## AUH 0.533321918
## EPHX2 -3.368418032
## B3GALNT2 -1.679631413
## ATRIP -3.452781388
## DNAL4 -0.427550669
## BBS5 -0.484979545
## MZT2A -2.244119852
## LIG3 -3.759040555
## YPEL1 -3.139683733
## TMEM120B -2.814007546
## FCGBP -3.655929438
## SLC15A2 -2.782438569
## TUBGCP4 -0.592604280
## POLR1C -1.889794948
## FKRP 10.595314512
## TTK 4.768797051
## ADCK1 0.220835389
## TMEM212 -0.856272028
## BCL11A -0.797469304
## PSPH -2.840889494
## TRPT1 -0.904463131
## GLT8D1 -3.584158633
## CMC4 3.103428448
## POP7 -1.937003375
## SC5D -2.310229451
## NUP155 -1.684582664
## H2BC11 3.594593125
## PDP2 4.788282151
## ALKBH2 2.982046645
## ZNF775 8.131479590
## LZTS2 -0.849244166
## NSG1 -3.447691984
## FLJ44635 0.909380781
## GINS1 8.795242134
## MTMR2 0.503005989
## CC2D2B -3.448585211
## ZC3H10 -3.504009253
## NR1H3 0.732921518
## MRPS28 -3.001704072
## INPP5E 1.322594742
## AAMDC -0.437116479
## SAMD10 0.679285880
## PUS10 -1.073178630
## ZNF236 0.206137127
## FGFR1 -2.322652494
## DLAT -2.621147028
## STIL 10.126157996
## NBEAL1 0.049399783
## CAV2 1.044411352
## NOC4L 0.839913992
## ALS2 -3.479418368
## ZNF414 4.591947442
## C9orf64 -1.516074012
## NF2 -3.677493938
## ID3 6.239355239
## SMARCAL1 -3.422857319
## DNAJC19 -2.585995325
## RGS6 -0.435089362
## KCTD13 -2.713834397
## M1AP -2.242109330
## RAB19 -1.611630665
## CDCA2 6.151711615
## KNSTRN -3.053248251
## ZNRF1 -1.578979183
## INTS2 -2.480820134
## TCEA3 -1.088633092
## C1orf54 11.009480944
## ZNF615 -2.002260282
## FAM43A 0.032043236
## PLK1 1.239526307
## C5 0.475296336
## INTS13 -2.603134746
## SEC14L5 -1.695430866
## DCAF17 -3.531223208
## ZNF497 0.268852986
## FARS2 -3.573592432
## UNK 1.070286102
## FANCG -2.517681887
## RHPN1 1.139794551
## DARS2 2.367828424
## BARD1 5.159139348
## ZP3 -3.282307948
## BRD3OS -2.610313493
## NBPF3 -2.567586681
## MTHFSD 0.243822522
## C1QTNF6 0.858646312
## FAHD1 -0.277635031
## CDKL1 2.547763871
## MRPL19 -3.425019384
## SMIM8 -3.477672102
## COA6 -3.564096376
## TAF4B 1.012789013
## ALKBH4 4.218169226
## LRRC40 -3.239834442
## ZNF480 -3.312080333
## SLC27A2 -1.075953802
## ZDHHC21 -2.312397879
## ZNF212 -1.507366246
## MYL5 1.278840760
## LLGL1 -1.870630513
## DPH1 -2.610434452
## PAOX 4.113821233
## GPR68 -3.304879449
## KCTD3 1.122828984
## KHK -1.506184634
## CDK3 -3.308578710
## PSRC1 -3.015746543
## RCL1 -2.701318676
## CCDC84 -2.202534321
## ADGRL1 -3.337228568
## PAXIP1 1.076845607
## WDR83 1.775092329
## PROCA1 -1.315793880
## RTEL1 -2.540103882
## TRIP13 7.922143467
## TTI1 -1.300610676
## TRIP6 -1.664406545
## POLD1 -2.994550692
## FIGNL1 0.247189614
## PKIG -3.684427592
## TMEM209 -3.377290352
## RAD51D -2.551914947
## SCFD2 -2.374310520
## SLC24A3 -3.482144507
## SDHAF4 -1.375274852
## NELFA 3.702477735
## CLCC1 -2.145653454
## CHST7 -2.045755778
## NOTCH4 11.759619116
## ZNRD2 -2.171806195
## ZBTB42 2.358995371
## NIP7 -1.576443493
## MMP19 -3.060393725
## ASB3 -1.502789393
## SPC25 3.514322018
## USP53 -3.626348307
## ERMARD -3.011040302
## SLX4IP -2.216657979
## ANXA9 -0.379665485
## ZBTB45 2.427544149
## ZNF841 -2.038431910
## ACY1 4.210721986
## CENPJ 6.784961123
## HABP4 -3.365255497
## ZNF707 4.098211095
## TMEM223 -1.426840291
## LIN52 1.600993694
## MEF2B -0.226600590
## SNAPC5 -3.219374805
## TMEM159 -3.318168846
## GPD1L -3.349503661
## NEK2 3.214246105
## CLOCK -3.633102948
## PRIM1 0.714697210
## SNTA1 1.406704078
## KCNA3 -3.511200812
## ZNF747 -0.798413270
## PPM1H -2.744902741
## C8orf82 0.144770815
## GINS4 12.060754195
## MUSTN1 -3.211349711
## GTF2H3 -3.456609615
## TRIT1 -2.374889705
## MCAT -0.621453200
## SPHK2 5.417658636
## NAA30 -3.443337419
## ZNF213 -2.781528893
## GAMT 0.831371040
## TCEAL4 -2.945162214
## S100A13 0.203488851
## LRRC23 3.102764767
## ARNTL2 5.204077925
## SPC24 -2.792046263
## MTLN -1.902379501
## LOC100421372 -2.278028036
## WDR24 1.514302941
## PHYH 7.352576055
## PPARA -2.646170881
## C8orf58 -2.865927370
## UBE2D4 -0.984556209
## CLUAP1 -2.373213000
## FRS3 7.023198374
## FADS3 0.929574089
## THG1L -2.488619680
## ZFP64 -0.905406144
## RIMKLB 2.431061084
## ALPK3 -2.408976631
## FBXL18 -0.152592619
## RAB11FIP3 -3.281514057
## ENO3 -1.334422085
## PCBD1 1.053459404
## RFC3 1.206755539
## FRMD4A -0.981147325
## UCK2 -2.433795172
## TAF1B -1.327555525
## SMIM4 -0.057727990
## ANKS3 1.925499415
## ZFYVE21 -3.275569548
## CRACR2A -1.155461431
## CBX8 3.456766530
## GTSE1 5.635190881
## P2RY12 -3.484883245
## NPIPB11 -1.130256630
## OTUD6B -2.213256619
## CBY1 3.159227560
## ST7 -1.473123507
## RAB39B -2.894001508
## EPS8L2 -0.620490458
## PPAT 1.148726321
## ZMYND19 -1.682144266
## TRDMT1 -2.587978191
## RFX1 -1.820088716
## TEDC1 -0.700067134
## RMI2 -1.631081039
## NOP16 -2.835804280
## CCDC127 -1.886501355
## FAM189B -2.825180938
## SH3D21 1.934870473
## SLC39A14 -0.695260551
## ELOVL6 0.644142777
## TOGARAM1 -0.127577379
## ZNF616 0.084542422
## ZNF853 1.200566028
## BICRA -1.601713896
## FHL2 -2.025155623
## PARPBP 8.498109071
## PINX1 -2.275738414
## PARP2 -1.652937925
## SWSAP1 -1.863927652
## C6orf136 -1.325243576
## ALG12 -3.732096045
## FAM207A -1.043224916
## FBXW9 2.143150681
## HMBOX1 -0.095190356
## IPPK -0.478488835
## GALE -2.771567052
## PDIK1L -1.824884721
## TNFRSF10A -3.398804242
## MTRES1 1.306886947
## SLC10A7 -1.339323506
## ZNF778 1.308110922
## MRPL57 -2.279910190
## ALMS1 -3.397035951
## CCDC65 -2.569736128
## CDYL -2.666435422
## NREP -3.117944695
## DAAM1 -1.257444089
## C11orf49 3.313270063
## ZNF836 -1.533037105
## TEF -2.932696908
## ZNF341 -1.239620026
## GLI4 6.077947512
## ZBTB26 -3.651123834
## ESPL1 3.023758783
## R3HDM1 -3.678026150
## ARG2 -2.935242585
## TMEM8B 4.644178254
## PWWP3A -2.797883363
## TMEM192 -1.561710134
## MIGA1 -2.842790124
## UBE2E2 -1.217751925
## TTC27 -3.203972785
## ESF1 -2.515900292
## RPP25 -1.066610825
## COG8 -0.746193536
## DNAJC30 0.847865783
## PLPP3 -2.178151299
## DNAAF4 -1.939601683
## H2BC8 1.268693916
## SKA3 6.620525959
## CCDC9B -1.623025688
## ZNF669 -0.919452284
## ZNF668 0.725579507
## SERPINF1 -1.580034240
## CASTOR1 4.923116221
## PBLD 1.834886213
## HSF4 2.947346803
## HELLS 8.388630855
## SLC25A51 -2.302944599
## SPICE1 3.933628909
## ZNF346 -3.485256619
## PXMP4 -2.293561637
## NPFF -2.654513815
## EOGT 1.193000009
## EHBP1 0.417972062
## WDR12 -2.216153168
## KLHL11 -3.131088779
## ZNF45 -3.497793926
## COIL -2.975998073
## TMEM45A -3.696780061
## RORC -1.887833241
## CKB -1.804536537
## HACE1 -0.308798376
## MIEF2 1.849630113
## FDX2 -1.872564641
## MTHFD2L -0.605858653
## GOLIM4 -1.089906210
## CPED1 -3.556624477
## ACTR5 -3.137460306
## CCNF -1.603317127
## PNMA3 -1.018060244
## CNTLN -1.727852210
## RUSC1 -3.723554768
## BAIAP2 -2.745596259
## ACBD7 -1.808378402
## WNT10B -0.869767291
## TTLL5 1.006704986
## SYTL4 -2.029981685
## FGFRL1 -1.434971425
## CASR -2.744328374
## SLAIN1 -1.877473706
## NDUFAF2 -1.018849326
## PARD3 -2.730297029
## MCC -1.504109636
## SCARB1 0.647987731
## TMEM218 -2.856528846
## ZNF440 -2.117166298
## VANGL1 0.943996193
## PRMT3 1.695250845
## ARHGEF19 -2.710747913
## AK9 -1.378499071
## NEIL2 -1.821259532
## ROM1 -3.507792106
## ZNF383 -0.272682024
## PRR12 -1.573884974
## RBL1 -3.113333055
## C1orf159 2.052509433
## RBM41 -3.599609443
## RYR1 4.283820331
## MED19 -0.668631299
## CA11 -0.589379697
## TXNDC16 -1.733295601
## KMT5C -0.104305883
## VEPH1 -3.634957041
## LARS2 -2.136429734
## KBTBD3 -0.297013414
## EVA1B -3.043624316
## PFKM -1.211718834
## UBTD2 -3.516851006
## PRSS36 -3.666144059
## ATP9B -3.308865084
## NCR1 -0.435806133
## C1orf112 5.570892406
## HSD17B7 -2.913165879
## CCDC153 2.058832805
## TFAP4 8.100019792
## CCDC28B -3.612210185
## TBL2 -3.707390114
## BTRC -3.328266822
## RINT1 -2.840997466
## GID4 -3.160637482
## ZNF329 -2.777050881
## ANKRD36B -0.930667342
## ZNF526 -2.289174583
## UGDH -2.647805514
## EFCAB7 0.253757331
## CENPA 0.041287651
## ENDOG -3.127779771
## RRS1 -0.407639631
## ACTR8 -2.957099775
## TM7SF2 -2.199741780
## ZSWIM9 -0.812960402
## PCDHA4 -2.156231012
## PAPSS2 -3.631196366
## MMS22L 1.347221042
## MON1A -2.238898780
## NR1D1 0.874019734
## SETBP1 -1.058985366
## BTBD3 -2.700889625
## BRICD5 2.729873880
## PRMT9 -2.921553709
## CHRNE -2.275790554
## DTX1 -1.502260611
## DHFR2 -3.088067251
## NEK1 -0.764441851
## INCENP 3.578066185
## RHBDD3 0.978350800
## LANCL3 2.796221746
## ZNF629 0.007330825
## MREG 0.558049573
## PGAP1 -2.330736362
## NUDCD1 -2.893432938
## USP31 1.424404055
## FOXP3 -2.474165384
## CDC42BPA 4.660831353
## TMEM68 -0.118329068
## HAUS5 -3.038608903
## SLFN14 -2.696015101
## AK5 -3.111514625
## KATNAL1 3.065079702
## DCLRE1B -3.509193351
## CCDC142 0.370943974
## C16orf86 0.533426695
## MFSD3 -0.102271525
## ZGLP1 -1.860683637
## MVK -1.765714704
## CASP6 -0.304719063
## INO80C -3.278954762
## E2F5 -2.037117620
## MPP5 -1.413646754
## ATAD5 5.123472553
## SLC27A5 -0.521602754
## COX18 -2.865624441
## BTG3 -3.262672486
## NECAB3 -0.191803601
## ABCC6 -0.872047196
## ZFYVE28 -0.904448602
## PARP3 -3.180013720
## SLC2A8 0.777496916
## TRUB1 -3.375779648
## CCNE1 0.962975491
## GATB -2.976111087
## IFT27 -3.357170650
## GEMIN8 -2.754732403
## NEK8 -3.025546641
## FER -1.875679611
## AEBP1 -1.628167671
## KIF18B 3.132083383
## GTPBP3 -1.847172512
## PALB2 -2.326769338
## IFT122 -0.540388227
## CCDC77 0.087197363
## DTWD2 -3.435554554
## BMP8B 2.604668561
## PARD6A -2.034404612
## CIT 3.825199827
## SIMC1 -1.036824935
## ZNF71 1.164358956
## LTO1 -2.259742109
## EFCAB12 -2.753502659
## WRN -1.416793924
## KRBA1 2.748421931
## BAMBI -0.402069079
## ZNF764 4.484016440
## PORCN -2.872902058
## SSPN -3.196146943
## RPUSD2 -3.087932522
## ENDOV 4.325765850
## GON7 -1.400774904
## ZBTB39 -3.319007093
## LIMS2 0.048616349
## PTPRS 0.563520775
## RHD -3.750474320
## TRIM59 -3.184961317
## ENTPD5 -2.696158924
## TBP -1.336828116
## STX1A -3.682247052
## C19orf47 -1.890160836
## TNNC2 1.464842054
## MRM1 0.026574860
## PLEKHG4 -3.506005307
## PHETA2 -1.206940807
## BNIPL -1.334699927
## ZGRF1 2.163033323
## SNX33 -3.541938644
## TAF5 4.650907516
## ERCC4 -1.911102438
## AMMECR1 -2.766368898
## ACOT11 -3.245578149
## HOOK2 -0.819771263
## GPATCH1 -1.722924862
## AKAP7 -3.687938446
## EFNA4 -3.320212669
## MPV17L -0.716965838
## DNAJC27 -2.365315789
## WASL -0.864697043
## MBTPS2 -0.673133807
## ZNF576 -2.402437427
## CEP57L1 9.775984714
## RBFA -3.408318899
## SLC45A3 -3.733421173
## ZNF697 -3.418759780
## POLE2 4.999521354
## PCGF1 -3.345129638
## LMAN2L -3.715510968
## SEMA3E 0.512240755
## BORA -2.660823389
## SUV39H2 9.453744445
## PNPLA7 3.547706309
## CES4A -2.469919105
## FBXW8 -2.804631791
## ACVR2A -2.903859048
## NADK2 -3.531674569
## LCORL -3.766148921
## TNK1 0.280701679
## SHISAL2A -2.623471739
## ATXN2 -3.301828264
## DSCC1 6.810751439
## MECR -2.072552486
## SPIN4 1.728576098
## ANKS6 -1.284999601
## RBBP9 -2.709696604
## DNAJB4 -0.570860988
## PERP -3.674140716
## ANKRD6 -3.378983991
## PEMT 0.098727053
## HARBI1 1.073965181
## ANKRD39 -1.747659407
## CTU2 -0.817836531
## FAAP24 -2.564673314
## BRIP1 3.812592865
## UPF3B -1.499894801
## DOLK -1.801333787
## PRICKLE3 2.532219344
## FKBP14 4.080482266
## MTERF2 -2.531889438
## RAI1 2.635397262
## PDE6G 0.445672844
## ARV1 -2.580894643
## OLFM2 2.070157824
## ZNF714 0.576424326
## RIOX1 -3.496852680
## ACO1 -3.433040014
## ZNF250 -3.710748535
## FAM122C 1.893691989
## NAV1 -2.638374284
## GOLGA8H -3.341073728
## LNX2 -1.288011166
## TRIM68 -3.279124011
## ZNF777 -1.936331702
## MLYCD -2.561840980
## FAM71F2 -2.514574022
## RUFY2 -1.979903650
## PRIM2 0.612891817
## CENPM -3.571094959
## CCDC30 -0.464602266
## NFS1 -3.020550286
## CTU1 -1.816085170
## FANCM 0.691814778
## DPY19L4 -3.723547292
## KLHL17 1.659707896
## SERPINE1 -3.225123465
## IZUMO4 2.225698862
## SMIM13 -0.952467138
## RBM11 -0.482438821
## STON1 3.764401441
## SFN -1.112799564
## PDE6B -1.812326523
## SH2D4A -3.229046938
## S1PR2 -2.375569067
## CHST14 -1.300693869
## GCM1 -3.448833915
## RALGPS1 -3.219670094
## A1BG -0.329283220
## BBS7 -2.795325385
## RAD18 -2.036499475
## TMEM38B -0.171934649
## UACA -2.858240866
## PPP1R16A -0.146726954
## LMF1 -1.826038794
## DECR2 4.392571471
## PRR3 -3.593022277
## CHAF1B 0.621200260
## DNAL1 -2.142766704
## E2F6 -0.731954772
## MOB3B -1.670784013
## ZBTB32 -3.703407797
## OTUD3 -3.497434170
## GNB1L 4.010660138
## CENPQ -2.894655476
## COA7 -2.149427884
## SGO1 6.792729067
## PPP1R32 2.896037697
## GKAP1 -3.754178325
## SLC2A11 -3.548099066
## IER5L 11.896299606
## ORC6 3.387714370
## MORN3 -1.857597204
## INVS -1.191638920
## ZKSCAN3 0.865671851
## ZNF232 -1.318671893
## MKS1 -1.560386225
## GINS3 2.646739360
## FZD2 -1.834937892
## ZNF540 -3.728232137
## ACVRL1 -3.206267192
## ASCL2 -3.542614251
## CCDC106 5.995670118
## MAB21L3 -1.955154763
## ZSCAN9 -2.671130184
## RBM44 -3.163472863
## CEP131 1.603761044
## TIPIN 2.672400690
## GLIPR1L2 -3.391794715
## CDT1 -3.632914317
## FNBP1L -1.627679323
## MZF1 2.139181401
## SLC2A13 0.048514387
## ERI2 -0.599372121
## CACNB1 -0.775628299
## FAM104B -2.904387417
## KCNK5 -2.699019569
## TRMT10A -2.851107335
## TTLL1 -0.050189058
## CSPP1 -2.626047863
## ERCC6L 4.533318840
## PET117 -3.012642740
## LIPH 2.231543093
## SHISA4 -0.287347876
## GALNT12 -2.571807160
## PRR29 -3.606147871
## CRYM -2.656905819
## ANKRD26 -1.332453324
## FUT11 -3.406011722
## FANCL -0.439797817
## GOLGA6L4 -3.068157514
## TMEM252 -3.265135005
## IKZF4 -1.949239993
## KRBA2 -0.613835239
## PLK2 -1.877149031
## CCNJ -3.558463446
## ZNF74 -2.124819993
## LRP12 -2.010698086
## LIN9 3.808811580
## BAG2 0.332251752
## FANCE -3.171009698
## ZNF852 -0.080658285
## IFNLR1 -3.547441634
## TEX10 -3.657301583
## MND1 2.021672644
## CCDC86 -1.900467967
## TEC -3.102168070
## GPAM -3.187794098
## GPX3 -3.142466474
## PYCR3 -2.828300268
## PIF1 -2.544262529
## POU5F1 -2.437411773
## COL8A2 -3.019217066
## AK4 -2.930613275
## MITF -2.872359570
## LRRCC1 -2.748580206
## MORN2 5.789200485
## PRX 2.587972564
## BAG3 -3.004383306
## SPIN2B -1.958820282
## C1orf109 -2.337818264
## ME3 1.026842067
## FAM151B -3.493002694
## SPSB1 -0.678727681
## F12 -2.155305798
## C10orf143 0.845248508
## SHROOM4 -1.764818602
## FAM86B1 -2.386967254
## ZNF653 1.555134103
## KIAA1586 -2.067717216
## CABLES2 -2.913789337
## ARHGAP32 -2.364648193
## ZNF888 -2.965533041
## C11orf1 -3.449848412
## IL23A -0.060881908
## ZNF568 0.125147654
## GPR82 -3.354464150
## LRRC27 -2.264345598
## NAT14 -2.592038961
## PROSER3 -3.580045794
## SOX12 -2.584857202
## ZNF619 -2.984536756
## ZNF578 0.958244768
## ZNF219 2.447396224
## LSM11 -1.616768890
## GAN -2.625350547
## ZNF597 -3.758138351
## XXYLT1 -3.684439444
## STARD5 0.033231970
## PLXNA1 -0.927727760
## PCOLCE 1.054635499
## COQ10A -3.740198370
## NEMP2 -3.185490603
## DOCK7 -3.543954594
## SHLD3 -2.183310618
## DHODH -2.326991182
## MTFR2 3.620380898
## XRCC2 6.853619993
## DNAAF5 -1.993775186
## ZDHHC23 -1.914635811
## ZBTB46 3.905833874
## MPP6 -3.427629201
## TRPM4 4.046999850
## C6orf226 4.791381107
## LIAS -2.817141998
## SERPINF2 -0.155012021
## SLC38A6 -1.851668427
## HSD17B13 -2.463106043
## NEIL3 -1.115250111
## PEX10 0.277893002
## FBXL8 -0.055360896
## RSKR -2.608115709
## FSCN1 3.333131417
## OIP5 -0.801649602
## PCGF6 -0.651618632
## KLHL26 -0.635404518
## CHCHD6 0.569344338
## CCDC189 0.046122113
## SLIT1 -3.147599270
## LRRC29 1.988806733
## TMEM97 -0.183737450
## CENPL 3.637347903
## CEP76 2.816020505
## ELAC1 -3.414272404
## BMP1 -1.588227283
## GCSH -2.763260961
## NPTXR -3.719424246
## RDH10 -0.362117455
## SLC4A5 -3.589960141
## MTHFD1L -3.582041809
## MARS2 -3.752833645
## CDHR1 -3.516551674
## ANKRD36C 0.577168186
## LIPT1 -3.123130512
## MC1R -2.244423708
## MANEAL -0.308341976
## MAP3K10 -2.239220384
## NAGS 9.428808262
## CDH13 3.425799242
## TRIM46 -0.574525508
## RABL2A -2.764500321
## TMPRSS13 -1.081296054
## MAP3K21 -0.044684998
## YAE1 -1.068360496
## TRIM3 -2.567419926
## WWC2 -3.165680451
## LRFN4 -0.488943770
## UNC13B -0.088527106
## MAMDC4 0.248482805
## TIMM23B -3.761891741
## PAK4 -0.841141714
## KDM8 -1.613693654
## SPTBN5 -1.894237452
## C12orf73 -3.178590031
## PCDH12 0.176048310
## NUDT17 -0.274894043
## PLAG1 -3.049430824
## CEP83 -1.555172076
## B4GAT1 -0.985069915
## KRT18 -2.078073938
## PPM1J 3.650051279
## GPRIN1 -2.560765373
## FBXO10 -3.084978776
## CHRNA10 -3.570404137
## SCUBE1 2.258358894
## C14orf28 -3.513651090
## IL17RC -3.172253449
## ZSCAN12 -2.958111678
## FUT10 -2.950430096
## FAM216A -1.499157114
## ZC3H12C -0.066512597
## ELOVL3 -2.736451350
## EME1 4.478609160
## PTK6 -0.494703342
## CLCF1 -3.683348612
## TMEM160 -2.968468579
## NANP 1.061681937
## LAMB3 -3.544477760
## ZNF416 -2.568488374
## RGS16 -2.289502614
## DAGLA 2.156372055
## POLG2 -2.609189765
## UNC5A -1.395991665
## PLCH2 -3.749348512
## ZNF287 -3.443605130
## AP1S3 -1.342361336
## WDR62 -0.416576714
## NTAQ1 -3.603036577
## BBOF1 -2.681431583
## COMTD1 -1.685372749
## MB21D2 -2.801597677
## KIF24 5.405461094
## C3orf14 -0.844709617
## RFXAP -3.017089678
## IL24 -0.731788601
## LDOC1 -2.297902880
## KCNMB4 1.310314637
## C21orf58 -1.006273041
## PHLDB3 0.181477538
## CCDC96 2.735051744
## TMEM53 3.451545811
## PAWR -1.750990379
## PPP1R13B -3.770576557
## LRP6 -3.146422617
## MLLT11 -2.849490128
## SPATA33 -2.433125921
## B3GLCT -3.380183511
## C7orf31 -3.354843364
## CARMIL1 -2.756633385
## CALHM5 -0.069261468
## EIF5A2 -3.698325292
## NHLRC4 -3.702288372
## KCNIP2 0.948477689
## TNKS1BP1 -3.021139860
## ALG10 2.178972246
## ZFP82 -3.632735722
## C18orf54 1.059475285
## SPAG16 0.005507004
## P3H4 -2.872312468
## FZD5 -3.520680315
## ST8SIA6 -3.708026352
## ATL1 -0.783176561
## MTFR1 -0.700077570
## ZNF547 -0.046007184
## RAD54B 0.936003268
## ZNF324B 1.321436405
## CATIP 5.500766508
## REXO5 -2.039534743
## MACROH2A2 -3.613853117
## MAGI3 -0.872350574
## ZNF563 -1.946136552
## EML6 -1.137122053
## EPDR1 1.146307116
## EID2B 0.277326318
## PDE3A -3.129667093
## PRTFDC1 -2.857273588
## PIGW -2.213588139
## GDPGP1 -1.473630359
## LRRN2 -3.348397834
## HSPA4L -1.829187330
## PLCE1 -0.233867242
## MST1L -3.213488518
## FZD3 -1.734812610
## PRPF40B -2.275065059
## PPP1R3F -0.076200766
## SCLY -2.230993470
## POLR3B -3.181082582
## KCNQ5 1.229936173
## ETFBKMT -3.375313435
## KCNA2 -0.653746806
## FAM185A -2.175815126
## ZDHHC14 -2.833423013
## CCDC80 -0.993585654
## THAP9 -1.939549355
## GRAMD2B -3.069478807
## BPHL -0.983123256
## RIMS3 -3.619669499
## KLHL25 -0.540801160
## USP54 -1.677975129
## ZNF223 -2.658647553
## LMLN -2.288433846
## NEGR1 -2.747780157
## MEOX1 -2.066846838
## ZFP41 -3.016317444
## TMEM241 -2.644872030
## AFAP1L2 -3.612663093
## PLCD3 -3.585679419
## SAPCD1 -3.597937167
## CA13 -3.069751468
## LRRC34 -1.889131516
## ZNF606 -3.492241199
## ANO5 -3.535868844
## THSD1 -3.459178433
## PPEF1 -1.623292304
## GRB14 -1.138726044
## CLDN12 2.268904287
## SLC6A4 -3.662210594
## ANKRD16 -3.699340411
## PSMC3IP -1.142799345
## SPATA7 1.417139386
## HSD17B1 7.073482375
## AMIGO3 -3.061104465
## POLR3G -2.139931642
## FAM83H -2.095533871
## INTU -1.373400009
## COLEC12 -3.388311616
## TMEM86A -3.295890366
## MAP6D1 -1.356141151
## MYH10 -2.619441467
## EGFL8 -1.683444979
## WDR97 0.449914958
## ZNF460 -2.299304433
## UNC5CL -3.529284913
## DPH3P1 -2.795445802
## EFCAB11 -1.124165982
## SCIN 0.013082818
## RAB3A 0.132726777
## SLC35E4 -2.515079083
## IFT140 -1.708716792
## AZIN2 -0.331607146
## DNAJC18 -3.151363435
## EFNA3 -1.185637316
## ZNF425 -2.957648858
## ATP8B3 -3.119665558
## LRRC7 -1.424605270
## C21orf62 -3.225882652
## LOC100996842 -3.768741906
## ZFP69B -1.547523648
## JADE3 -1.365319541
## CDK20 -0.479313300
## TSPAN15 -1.371773373
## C15orf61 -2.322179293
## LMOD3 -3.176819336
## GGT6 -2.473179614
## GPRC5C -2.430892285
## C1orf116 -3.509894685
## ZNF280C -2.793791917
## BEX5 -2.092898464
## ASIC3 -0.045032999
## PUS7 -3.390286637
## H2BC15 -2.068863974
## ZNF582 -2.422090842
## SLC6A16 -2.418145236
## WTIP -2.493809375
## PFN2 -3.444799733
## FARP1 -3.284807962
## TMEM44 -2.459764379
## ZNF846 -3.050488099
## MTCP1 0.060915663
## CCDC15 -2.733243281
## ZFPM1 -3.570560324
## LIPT2 -2.658401029
## LRRC46 -1.780580581
## NUDT13 -3.488445012
## FN3K -0.832482810
## BEND5 -2.861350840
## AASS -3.003740785
## DHRS11 -3.079989591
## CRYGS -3.689444511
## CENPS -3.274203668
## HILPDA -3.556927510
## ZNF850 -2.726150567
## QPRT -3.643771829
## AMDHD1 -3.082034450
## NWD1 -2.073876759
## CA8 -3.503431430
## MCF2L -3.171032965
## TEX22 -3.640162806
## EXTL2 -3.278370436
## ZNF132 -3.614812776
## ZNF596 -3.654162787
## BBS12 -3.750883546
## CELF3 -2.440713364
## FCRLB -2.101522269
## PARD6G -1.824813563
## GPLD1 -1.723613558
## UGT8 -3.018543548
## PSD3 -3.468508241
## FAM124B -3.380755420
## ZRANB3 -2.783657521
## CPLANE2 -2.642802351
## CCL24 -2.067619062
## KCNC4 -3.645245680
## L3MBTL4 -3.743248069
## CFAP251 -2.400473859
## PSTK -3.452676079
## LTB4R2 -3.522442014
## SENP8 -1.517627861
## TDRD12 -3.606892316
## ADSS1 -0.460314421
## ZNF19 -3.288674045
## MYORG -3.522615191
## ZNF726 -3.751361721
## MYO1A -2.492064830
## CCDC138 -2.715869221
## CDIN1 -3.489102232
## NRL -3.404716638
## ZNF135 -3.471273448
## CABP4 -3.762816293
## CATSPERG -2.614142230
## PIGZ -3.350178270
## MAP3K13 -3.765351099
## ZNF620 -3.014824678
## KRTCAP3 -2.814277249
## KCNMB3 -3.502614639
## SSC4D -3.238487597
## SCML2 -3.069817613
## UFSP1 -3.343780806
## ZNF835 -2.704990923
## OR1F1 -3.156565851
## LOC100133315 -3.232436744
topTable(efit_lactate, coef = "COVIDyes", adjust.method = "fdr", p.value = 0.05, n = Inf, sort.by = "p")## logFC AveExpr t P.Value adj.P.Val
## GBGT1 -13.9635786 1.311994e+01 -7.973972 9.113518e-13 1.080863e-08
## MCM6 13.1440899 2.082129e+01 7.779510 2.559992e-12 1.518075e-08
## PELI3 -3.8155122 4.537970e+00 -7.608310 6.313696e-12 2.006979e-08
## CDC7 3.5084666 5.656738e+00 7.573188 7.592156e-12 2.006979e-08
## MAPK8IP3 -18.9532926 2.939884e+01 -7.552521 8.461124e-12 2.006979e-08
## SLC15A3 -58.7525736 6.881456e+01 -7.482132 1.222926e-11 2.417318e-08
## HAAO -3.8768291 3.365732e+00 -7.408312 1.797297e-11 3.045134e-08
## NAPSA -29.2184959 2.401286e+01 -7.379814 2.084582e-11 3.090392e-08
## METRNL -18.0596012 1.563471e+01 -7.343845 2.512911e-11 3.311459e-08
## RNA18SN2 -1936.1165997 1.965368e+03 -7.282163 3.459589e-11 3.419227e-08
## RNA18SN3 -1936.1165997 1.965368e+03 -7.282163 3.459589e-11 3.419227e-08
## RNA18SN4 -1936.1165997 1.965368e+03 -7.282163 3.459589e-11 3.419227e-08
## PITPNM1 -17.1676186 2.469994e+01 -7.251009 4.064336e-11 3.707925e-08
## AIF1 -330.6583855 4.725196e+02 -7.225793 4.629570e-11 3.921907e-08
## CLSPN 3.0438972 4.133007e+00 7.189075 5.594415e-11 4.423318e-08
## SIGLEC7 -21.7130395 2.992479e+01 -7.167697 6.245275e-11 4.629310e-08
## RNA28SN4 -2484.4673816 1.437686e+03 -7.066989 1.047085e-10 7.304959e-08
## COTL1 -773.6727672 1.129329e+03 -7.024560 1.300685e-10 8.570070e-08
## HPS6 -11.1961846 1.705239e+01 -6.999484 1.478205e-10 8.859351e-08
## SLC44A1 21.1736987 4.453388e+01 6.997401 1.493988e-10 8.859351e-08
## CARS2 -18.1718677 3.037522e+01 -6.975895 1.666987e-10 9.414507e-08
## SIN3B -9.7583169 2.379947e+01 -6.959983 1.807598e-10 9.744596e-08
## SLC12A9 -84.9038332 1.006486e+02 -6.942159 1.979072e-10 1.020513e-07
## TNFRSF8 -11.2438367 1.208855e+01 -6.911371 2.313940e-10 1.119448e-07
## BRAT1 -15.6167599 1.303038e+01 -6.907509 2.359713e-10 1.119448e-07
## FBP1 -25.3286529 2.618608e+01 -6.896371 2.496796e-10 1.138923e-07
## SYNGR2 -64.4624440 8.737147e+01 -6.874896 2.783722e-10 1.184174e-07
## CDK2 4.9900732 1.049011e+01 6.874048 2.795689e-10 1.184174e-07
## STK11IP -12.5189983 2.060218e+01 -6.810946 3.845438e-10 1.572652e-07
## KPNA2 11.5000862 3.099392e+01 6.782182 4.445136e-10 1.757311e-07
## TWF2 -82.9648016 1.005644e+02 -6.773415 4.645648e-10 1.777335e-07
## ZNF367 2.2398107 3.446861e+00 6.713459 6.277822e-10 2.326718e-07
## SLC39A13 -8.0714184 9.362732e+00 -6.693743 6.929484e-10 2.490414e-07
## GINS4 1.6467463 2.236294e+00 6.670102 7.799426e-10 2.720623e-07
## PLD2 -8.4571060 1.482156e+01 -6.641942 8.977144e-10 2.979627e-07
## MCM4 9.3573217 1.195038e+01 6.638894 9.114700e-10 2.979627e-07
## IER5L -1.0070344 9.050714e-01 -6.634954 9.295634e-10 2.979627e-07
## TAGLN -27.5322051 2.005573e+01 -6.616804 1.017576e-09 3.175908e-07
## NOTCH4 -1.7196422 1.992060e+00 -6.605678 1.075543e-09 3.196327e-07
## DTL 3.4638441 3.235270e+00 6.603921 1.084991e-09 3.196327e-07
## AAMP -19.9041268 4.330290e+01 -6.600255 1.104970e-09 3.196327e-07
## NSMF -9.7377028 1.117961e+01 -6.582833 1.204974e-09 3.402616e-07
## PLEC -49.5007046 6.690541e+01 -6.563970 1.323335e-09 3.649944e-07
## RACGAP1 5.4586780 9.414088e+00 6.528553 1.577366e-09 4.202133e-07
## ZNF362 -3.4720765 9.425953e+00 -6.526384 1.594401e-09 4.202133e-07
## ASGR1 -7.2858881 5.879841e+00 -6.507736 1.748532e-09 4.508172e-07
## MELK 2.0419725 1.925849e+00 6.469179 2.115301e-09 5.311473e-07
## SH3TC1 -15.2031337 1.552069e+01 -6.465910 2.149669e-09 5.311473e-07
## C1orf54 -1.8436385 1.723211e+00 -6.443943 2.395402e-09 5.797849e-07
## SGSM2 -13.8225670 2.487688e+01 -6.430737 2.556248e-09 6.063421e-07
## RFC5 2.7560580 6.068064e+00 6.423250 2.652119e-09 6.167476e-07
## EZH2 4.5294386 9.072242e+00 6.411854 2.804876e-09 6.257431e-07
## FBH1 13.3737450 5.344644e+01 6.409058 2.843670e-09 6.257431e-07
## GPR132 -18.3572223 2.743879e+01 -6.408671 2.849083e-09 6.257431e-07
## TRAPPC2B -2.6231829 3.184848e+00 -6.401862 2.945940e-09 6.352518e-07
## VENTX -6.8613727 8.677281e+00 -6.360978 3.599616e-09 7.623472e-07
## FKRP -1.9249620 5.317226e+00 -6.353832 3.727709e-09 7.756251e-07
## ADIPOR2 19.9208445 6.453421e+01 6.347685 3.841478e-09 7.761098e-07
## NCAPD2 15.4675756 3.616550e+01 6.346653 3.860917e-09 7.761098e-07
## CRYL1 -6.2746268 1.266628e+01 -6.340977 3.969533e-09 7.846443e-07
## ATAD2 8.4924706 1.211435e+01 6.330904 4.169772e-09 8.107130e-07
## FBXO5 3.2667955 5.296409e+00 6.317406 4.453752e-09 8.519597e-07
## DONSON 2.6586793 6.118128e+00 6.308067 4.661321e-09 8.681495e-07
## MMP17 -2.0462003 1.189793e+00 -6.307037 4.684787e-09 8.681495e-07
## FAM20C -5.9244254 5.563845e+00 -6.297594 4.905411e-09 8.950489e-07
## VPS37C -6.3558005 1.213700e+01 -6.288507 5.127364e-09 9.213718e-07
## MED22 -12.7867754 3.048407e+01 -6.283552 5.252532e-09 9.297766e-07
## PARL -22.2588612 3.934935e+01 -6.271254 5.576343e-09 9.535513e-07
## RNA28SN1 -3159.3396190 2.785014e+03 -6.270212 5.604685e-09 9.535513e-07
## STK32C -6.1849927 6.029002e+00 -6.266516 5.706285e-09 9.535513e-07
## WDHD1 2.0382599 2.838481e+00 6.266438 5.708444e-09 9.535513e-07
## TECPR1 -17.2293254 3.910663e+01 -6.255327 6.025079e-09 9.861056e-07
## CD300C -14.2892112 1.878104e+01 -6.251319 6.143482e-09 9.861056e-07
## STIL 1.8691193 2.017819e+00 6.251008 6.152767e-09 9.861056e-07
## UCP2 -148.2175566 1.718684e+02 -6.245216 6.328196e-09 1.000699e-06
## ZNF385A -35.1860449 3.754878e+01 -6.234042 6.680651e-09 1.028285e-06
## AGAP3 -11.3121719 1.427110e+01 -6.232655 6.725721e-09 1.028285e-06
## PPP1R9B -47.8814287 1.324204e+02 -6.231522 6.762754e-09 1.028285e-06
## WEE1 2.7925540 4.494965e+00 6.217643 7.233158e-09 1.085889e-06
## MKI67 13.2457027 1.319601e+01 6.210415 7.490738e-09 1.110502e-06
## CDC6 4.8207113 4.799886e+00 6.205193 7.682437e-09 1.124861e-06
## PITPNC1 -16.3023014 3.865031e+01 -6.187334 8.375251e-09 1.211347e-06
## SPAG7 -19.5164200 2.973020e+01 -6.180192 8.669177e-09 1.238752e-06
## OXER1 -7.2736496 9.987774e+00 -6.173781 8.941672e-09 1.248019e-06
## CEP57L1 1.1975281 3.212878e+00 6.173716 8.944486e-09 1.248019e-06
## CARD9 -5.6039003 4.883578e+00 -6.165708 9.296817e-09 1.270451e-06
## CSK -141.5327968 2.366198e+02 -6.165203 9.319499e-09 1.270451e-06
## GPR35 -3.1680830 2.643002e+00 -6.159613 9.574114e-09 1.290330e-06
## FAM89B -41.6894533 5.020861e+01 -6.155661 9.758254e-09 1.300370e-06
## RRM2 25.2337423 2.452927e+01 6.141175 1.046342e-08 1.376937e-06
## SLFN13 8.6389264 1.754261e+01 6.137261 1.066242e-08 1.376937e-06
## GNPTG -16.7828088 3.084933e+01 -6.136896 1.068113e-08 1.376937e-06
## PAGR1 -11.0864080 2.312246e+01 -6.131622 1.095565e-08 1.384520e-06
## NCAPH 2.6615427 2.934950e+00 6.131285 1.097343e-08 1.384520e-06
## SLC27A1 -9.9805256 9.182019e+00 -6.125443 1.128608e-08 1.408978e-06
## ARHGAP4 -124.2663419 1.336422e+02 -6.106072 1.238682e-08 1.530289e-06
## SUV39H2 1.1858198 2.070052e+00 6.102157 1.262177e-08 1.533316e-06
## TTYH3 -12.5439947 2.129215e+01 -6.101364 1.266990e-08 1.533316e-06
## NAGS -0.7703176 9.556516e-01 -6.096602 1.296271e-08 1.552907e-06
## TRAPPC12 -9.9049357 1.905027e+01 -6.082207 1.388887e-08 1.646271e-06
## RTL8C -9.2266952 1.131030e+01 -6.079884 1.404432e-08 1.646271e-06
## KNTC1 5.4549839 1.035805e+01 6.078194 1.415849e-08 1.646271e-06
## TBC1D10A -9.5590138 1.535882e+01 -6.073637 1.447084e-08 1.666255e-06
## DNA2 1.9602293 3.229567e+00 6.063049 1.522303e-08 1.733962e-06
## EIF3D -59.9348706 1.697161e+02 -6.061296 1.535127e-08 1.733962e-06
## SEPTIN9 -125.4053483 1.770292e+02 -6.056924 1.567561e-08 1.753893e-06
## CHEK1 3.1552142 4.014832e+00 6.052185 1.603476e-08 1.772800e-06
## PIP4K2C 13.4209309 3.374976e+01 6.050771 1.614354e-08 1.772800e-06
## STRN4 -24.9711481 5.213295e+01 -6.045132 1.658441e-08 1.804506e-06
## NUSAP1 8.4067750 9.537710e+00 6.030312 1.780027e-08 1.919192e-06
## TOR4A -15.0122289 2.554924e+01 -6.016047 1.905322e-08 2.035777e-06
## ARHGAP11A 3.5095284 5.148749e+00 6.007652 1.983073e-08 2.099932e-06
## FXYD5 -198.5130661 1.842737e+02 -6.004766 2.010506e-08 2.109454e-06
## CUEDC1 -8.9959264 1.455608e+01 -6.002984 2.027637e-08 2.109454e-06
## MAFK -4.6538248 9.546257e+00 -5.996567 2.090512e-08 2.155954e-06
## RIPOR1 -14.0880406 3.157259e+01 -5.989225 2.164814e-08 2.213336e-06
## GEN1 2.5591369 5.313267e+00 5.974927 2.317014e-08 2.339159e-06
## ZWILCH 2.6561804 4.909032e+00 5.973992 2.327325e-08 2.339159e-06
## SLC25A6 -139.6218078 1.450113e+02 -5.962883 2.453341e-08 2.433778e-06
## TNNI2 -8.2797928 6.999728e+00 -5.961188 2.473157e-08 2.433778e-06
## ORC1 2.4141185 2.570500e+00 5.960035 2.486714e-08 2.433778e-06
## CDC42EP2 -25.7212182 2.776886e+01 -5.958613 2.503549e-08 2.433778e-06
## GINS1 1.8918746 1.987370e+00 5.954564 2.552087e-08 2.441007e-06
## CATSPER1 -5.0137054 5.990464e+00 -5.952916 2.572101e-08 2.441007e-06
## DENND6B -4.2898815 3.805693e+00 -5.952864 2.572731e-08 2.441007e-06
## SMC4 13.4599211 3.347087e+01 5.943385 2.690928e-08 2.532889e-06
## MARCO -30.6085637 2.188781e+01 -5.935875 2.788351e-08 2.603925e-06
## ASPM 4.2461861 3.928611e+00 5.933498 2.819889e-08 2.612804e-06
## TTC9 -19.8333990 1.943297e+01 -5.928300 2.890105e-08 2.657104e-06
## CENPF 5.2370880 5.338564e+00 5.920385 3.000337e-08 2.727088e-06
## IL18BP -3.7639221 6.305278e+00 -5.919550 3.012213e-08 2.727088e-06
## SNX21 -3.7994580 7.582398e+00 -5.916542 3.055346e-08 2.745182e-06
## SIPA1 -92.0455008 1.324994e+02 -5.904256 3.237893e-08 2.887324e-06
## PLA2G7 -4.4515156 4.290104e+00 -5.897660 3.340278e-08 2.956396e-06
## HMOX1 -70.9397053 7.744090e+01 -5.895459 3.375145e-08 2.965128e-06
## SNAPC2 -5.5138976 4.923667e+00 -5.889013 3.479327e-08 3.034178e-06
## PARPBP 1.5485638 2.206733e+00 5.887332 3.507003e-08 3.035989e-06
## NDRG2 -4.0156190 4.379704e+00 -5.884146 3.560065e-08 3.040691e-06
## EEF1D -322.0066527 2.657495e+02 -5.883929 3.563711e-08 3.040691e-06
## KNL1 3.2842421 3.506061e+00 5.876508 3.690518e-08 3.105239e-06
## ZRSR2 -10.9413919 2.293016e+01 -5.876438 3.691726e-08 3.105239e-06
## SAT2 -20.3215909 3.396465e+01 -5.866201 3.873992e-08 3.233976e-06
## TOP2A 12.1014712 1.095043e+01 5.864568 3.903880e-08 3.233976e-06
## HELLS 1.4788739 1.789444e+00 5.862457 3.942833e-08 3.233976e-06
## PGLS -40.2469035 4.444768e+01 -5.861086 3.968343e-08 3.233976e-06
## DVL1 -4.5738246 5.111012e+00 -5.859471 3.998606e-08 3.233976e-06
## HDGFL2 -10.5610732 1.668326e+01 -5.858951 4.008385e-08 3.233976e-06
## SUN2 -84.2317918 2.153823e+02 -5.851473 4.151800e-08 3.327050e-06
## PLK4 2.8203420 3.109371e+00 5.837444 4.434557e-08 3.529789e-06
## SELENOI 4.5393114 9.995349e+00 5.827012 4.656994e-08 3.645857e-06
## ABHD17A -14.3589802 1.314446e+01 -5.826478 4.668679e-08 3.645857e-06
## NDC80 3.3366902 5.917033e+00 5.826299 4.672599e-08 3.645857e-06
## COLGALT1 -61.0180912 1.124530e+02 -5.822226 4.762669e-08 3.691847e-06
## PALM2AKAP2 13.9334111 1.760557e+01 5.818477 4.847099e-08 3.732896e-06
## CEBPA -56.3203708 7.814298e+01 -5.809419 5.057171e-08 3.869551e-06
## SPRYD3 -21.9981302 4.861012e+01 -5.806135 5.135500e-08 3.904297e-06
## ZNF775 -1.9003864 2.188327e+00 -5.803801 5.191905e-08 3.922038e-06
## MTRF1 2.4768319 7.471736e+00 5.799997 5.285147e-08 3.967205e-06
## TFAP4 -1.3822830 1.811167e+00 -5.796603 5.369713e-08 4.005333e-06
## SERPINB6 -38.2391956 6.216465e+01 -5.785678 5.651070e-08 4.188856e-06
## AP2A1 -13.6917669 3.873160e+01 -5.775437 5.927879e-08 4.366748e-06
## HIRA 14.2541015 3.862961e+01 5.769945 6.081781e-08 4.434732e-06
## PRPF6 -34.1681626 6.287130e+01 -5.769481 6.094952e-08 4.434732e-06
## FUT8 4.0175020 8.212014e+00 5.767006 6.165722e-08 4.458870e-06
## NCAPG 6.1623512 6.135755e+00 5.763227 6.275347e-08 4.510643e-06
## TRIP13 1.7472186 1.759339e+00 5.755811 6.496048e-08 4.625039e-06
## CCNQ -5.7916846 9.102508e+00 -5.754880 6.524300e-08 4.625039e-06
## CACFD1 -3.1689160 3.413359e+00 -5.753987 6.551488e-08 4.625039e-06
## EFHD2 -226.7241737 4.131762e+02 -5.742260 6.919188e-08 4.855715e-06
## OSGEP -12.3738492 2.499738e+01 -5.729498 7.342314e-08 5.104923e-06
## BUB1B 3.2559073 2.893909e+00 5.728969 7.360386e-08 5.104923e-06
## SLC25A11 -18.6003872 3.749459e+01 -5.727039 7.426718e-08 5.120981e-06
## SHCBP1 5.9000424 6.224003e+00 5.723822 7.538543e-08 5.168042e-06
## RPL19 -592.5056597 7.975828e+02 -5.720989 7.638403e-08 5.206406e-06
## ARF5 -100.0409537 1.345374e+02 -5.719349 7.696825e-08 5.216248e-06
## CD37 -84.8528734 1.999032e+02 -5.716846 7.786814e-08 5.245842e-06
## SRD5A3 -3.6006621 5.860785e+00 -5.715683 7.828954e-08 5.245842e-06
## CIC -20.3189435 3.983140e+01 -5.707492 8.132286e-08 5.418478e-06
## TYMS 13.0593605 1.204017e+01 5.703284 8.292559e-08 5.477880e-06
## NAPRT -30.9297206 2.198267e+01 -5.702732 8.313815e-08 5.477880e-06
## NECAP2 -24.9396035 8.799286e+01 -5.698985 8.459469e-08 5.515280e-06
## LSP1 -356.4741433 6.114417e+02 -5.698581 8.475324e-08 5.515280e-06
## FOLR2 -3.0610628 2.761971e+00 -5.697698 8.510087e-08 5.515280e-06
## FANCI 6.7776511 1.061400e+01 5.692307 8.725337e-08 5.624049e-06
## PDLIM2 -18.3562024 3.011743e+01 -5.690506 8.798447e-08 5.637723e-06
## WDR76 2.7397378 5.510450e+00 5.689449 8.841624e-08 5.637723e-06
## SREBF1 -7.6255028 1.180905e+01 -5.685100 9.021458e-08 5.707961e-06
## BRCA2 2.6755579 3.651334e+00 5.683724 9.079126e-08 5.707961e-06
## RFWD3 6.9963702 1.810170e+01 5.682365 9.136421e-08 5.707961e-06
## ZNF524 -8.2104694 6.226857e+00 -5.681081 9.190856e-08 5.707961e-06
## MAP2K5 -2.0283438 5.856772e+00 -5.681044 9.192416e-08 5.707961e-06
## TBC1D22A -13.0076609 3.013958e+01 -5.679308 9.266559e-08 5.720219e-06
## WDR25 -2.7512020 4.539490e+00 -5.678329 9.308619e-08 5.720219e-06
## SMC2 4.8660445 7.879914e+00 5.675989 9.409949e-08 5.752680e-06
## KIF11 7.0216088 7.513803e+00 5.674635 9.469037e-08 5.759117e-06
## TSPAN4 -3.0645290 2.597940e+00 -5.669686 9.688242e-08 5.803744e-06
## TCF19 6.3917157 8.786556e+00 5.668743 9.730532e-08 5.803744e-06
## TMCO6 -5.3070786 1.591094e+01 -5.668157 9.756920e-08 5.803744e-06
## CD1D -24.0391691 4.675289e+01 -5.667997 9.764151e-08 5.803744e-06
## C19orf38 -122.3582825 1.659232e+02 -5.667489 9.787089e-08 5.803744e-06
## LSM6 -11.4231318 2.195575e+01 -5.661693 1.005273e-07 5.931610e-06
## RNPEPL1 -107.5803333 1.060256e+02 -5.652429 1.049207e-07 6.160195e-06
## ZGPAT -15.9411385 2.003335e+01 -5.647556 1.073063e-07 6.269223e-06
## SPNS1 -9.1746279 1.207527e+01 -5.634116 1.141655e-07 6.637267e-06
## RPS6 -750.8944793 1.194081e+03 -5.631847 1.153649e-07 6.674283e-06
## RPS2 -650.3693061 6.653893e+02 -5.629624 1.165523e-07 6.687795e-06
## CRTC1 -3.3774133 5.402910e+00 -5.629300 1.167263e-07 6.687795e-06
## PHYH -1.6233779 3.697303e+00 -5.624091 1.195591e-07 6.817166e-06
## CDC37 -45.6460959 9.211347e+01 -5.622618 1.203725e-07 6.830709e-06
## UBXN11 -50.0653915 5.223788e+01 -5.615723 1.242524e-07 7.017304e-06
## SLC2A6 -15.7209541 1.438559e+01 -5.613575 1.254858e-07 7.034515e-06
## RNH1 -32.5400568 3.276725e+01 -5.612899 1.258765e-07 7.034515e-06
## FCER2 -14.2666664 8.835297e+00 -5.612105 1.263366e-07 7.034515e-06
## FUT7 -34.6456563 3.223891e+01 -5.602710 1.319106e-07 7.286037e-06
## SLC8B1 -19.5499027 4.169616e+01 -5.602426 1.320825e-07 7.286037e-06
## ABCD4 -8.4170447 1.887275e+01 -5.599159 1.340795e-07 7.344904e-06
## TBCB -24.4863269 4.505945e+01 -5.596780 1.355518e-07 7.344904e-06
## UHRF1 3.6682265 4.605744e+00 5.596721 1.355884e-07 7.344904e-06
## SYTL1 -27.2996861 3.094226e+01 -5.596660 1.356268e-07 7.344904e-06
## UBXN1 -65.3115352 8.588660e+01 -5.591677 1.387643e-07 7.446789e-06
## CASP10 33.0307961 6.485548e+01 5.591119 1.391195e-07 7.446789e-06
## PLA2G15 -11.2011997 1.364228e+01 -5.590693 1.393918e-07 7.446789e-06
## NUDT22 -12.5013291 1.316011e+01 -5.585079 1.430283e-07 7.606798e-06
## SPAG5 5.5070566 6.717902e+00 5.583332 1.441782e-07 7.633720e-06
## TIMELESS 4.9005783 9.411419e+00 5.578490 1.474140e-07 7.770358e-06
## CD74 -904.1187775 1.048920e+03 -5.572926 1.512199e-07 7.888812e-06
## CYBA -194.1998078 2.018822e+02 -5.572691 1.513828e-07 7.888812e-06
## ARFGAP1 -25.6055917 3.094574e+01 -5.572296 1.516568e-07 7.888812e-06
## PPP1R12C -42.4416098 6.496655e+01 -5.571027 1.525408e-07 7.900147e-06
## GAA -40.8974226 5.734432e+01 -5.569415 1.536708e-07 7.924068e-06
## RPS4X -570.6712995 8.255936e+02 -5.566787 1.555310e-07 7.970689e-06
## EIF3G -64.7927996 7.738905e+01 -5.566243 1.559190e-07 7.970689e-06
## RTL8A -3.5890782 6.778449e+00 -5.563799 1.576728e-07 8.025749e-06
## RPL8 -710.0789610 6.032670e+02 -5.561610 1.592601e-07 8.071902e-06
## AP1M1 -18.6405699 4.827055e+01 -5.559393 1.608836e-07 8.103145e-06
## HSD17B1 -0.4992450 6.280013e-01 -5.558905 1.612430e-07 8.103145e-06
## ARL6IP4 -75.3701799 8.013245e+01 -5.547165 1.701325e-07 8.480045e-06
## FRS3 -1.6154114 2.447842e+00 -5.547113 1.701729e-07 8.480045e-06
## RGS12 -2.1992539 2.385566e+00 -5.544251 1.724125e-07 8.555702e-06
## ARRB1 -44.3524445 1.067599e+02 -5.537891 1.774925e-07 8.771090e-06
## MAN2B1 -57.5541673 9.714994e+01 -5.530683 1.834269e-07 9.022644e-06
## NACA -173.4911186 4.856995e+02 -5.529875 1.841045e-07 9.022644e-06
## SASS6 2.1723624 4.424492e+00 5.526221 1.871980e-07 9.136494e-06
## HNRNPLL 14.9667852 3.087377e+01 5.524211 1.889210e-07 9.182802e-06
## NOP53 -123.0216612 9.809079e+01 -5.521350 1.914008e-07 9.265360e-06
## CSNK1G2 -20.0688141 4.134168e+01 -5.519249 1.932419e-07 9.316458e-06
## MDH2 -32.3214695 5.830712e+01 -5.517646 1.946586e-07 9.346765e-06
## RAB40C -5.1929665 8.201873e+00 -5.509838 2.017036e-07 9.645986e-06
## SPDL1 1.9832129 3.972153e+00 5.508613 2.028318e-07 9.660984e-06
## XRCC2 0.8300065 1.202861e+00 5.507239 2.041036e-07 9.671785e-06
## ACTB -4282.1435805 7.242785e+03 -5.505742 2.054988e-07 9.671785e-06
## CEP55 2.7198690 2.924191e+00 5.505736 2.055050e-07 9.671785e-06
## CD48 -185.7081095 4.285098e+02 -5.501082 2.099017e-07 9.827029e-06
## PGAP6 -35.8949536 5.542591e+01 -5.499600 2.113214e-07 9.827029e-06
## UCHL5 4.7261152 1.745539e+01 5.499098 2.118045e-07 9.827029e-06
## LIMD2 -270.0468398 3.674818e+02 -5.498772 2.121180e-07 9.827029e-06
## DSCC1 1.1480965 1.277179e+00 5.497133 2.137051e-07 9.833181e-06
## CROCC -4.1581679 4.274006e+00 -5.496923 2.139090e-07 9.833181e-06
## SGO1 1.0154146 1.233835e+00 5.492881 2.178755e-07 9.976846e-06
## CENPJ 1.6829801 3.495916e+00 5.491047 2.196980e-07 9.981245e-06
## ZBTB7A -9.0258618 2.384968e+01 -5.490982 2.197628e-07 9.981245e-06
## REXO1 -3.8182933 8.139960e+00 -5.490249 2.204963e-07 9.981245e-06
## TMEM250 -17.9421600 3.189680e+01 -5.487766 2.229972e-07 1.005607e-05
## EFNB1 -2.6461332 3.525066e+00 -5.481482 2.294519e-07 1.027585e-05
## TTLL12 -5.0162924 1.099754e+01 -5.480579 2.303939e-07 1.027585e-05
## CEP20 5.0699247 1.786974e+01 5.480506 2.304701e-07 1.027585e-05
## NUCB1 -115.0572792 1.311204e+02 -5.477782 2.333369e-07 1.034262e-05
## RAB11B -11.8919733 1.793012e+01 -5.477108 2.340515e-07 1.034262e-05
## ZWINT 6.5503471 7.083687e+00 5.476261 2.349525e-07 1.034262e-05
## LPCAT1 -31.6278682 1.039814e+02 -5.475790 2.354558e-07 1.034262e-05
## LRRC25 -121.9459490 2.524165e+02 -5.472514 2.389800e-07 1.045868e-05
## TMEM134 -5.2706890 5.038670e+00 -5.471400 2.401908e-07 1.047303e-05
## CCNA2 5.8860342 6.591694e+00 5.466407 2.456889e-07 1.067352e-05
## GNL3L 9.2978272 2.936114e+01 5.464678 2.476216e-07 1.071822e-05
## TOM1L2 -4.1842452 1.523963e+01 -5.462656 2.499011e-07 1.077755e-05
## CIP2A 1.9642488 2.647639e+00 5.457799 2.554590e-07 1.093937e-05
## CDC45 2.9557891 3.003641e+00 5.457605 2.556834e-07 1.093937e-05
## EEF1G -920.1179314 1.192537e+03 -5.456970 2.564203e-07 1.093937e-05
## SKA3 1.4881282 1.473196e+00 5.452153 2.620723e-07 1.114042e-05
## BATF3 -2.7151912 2.223752e+00 -5.447836 2.672425e-07 1.129948e-05
## SGSH -15.2083554 2.312408e+01 -5.447441 2.677195e-07 1.129948e-05
## CDC25A 2.0500545 2.056359e+00 5.444507 2.712957e-07 1.140981e-05
## TRABD -32.4594331 3.744705e+01 -5.441473 2.750437e-07 1.152657e-05
## DCAF10 10.3371453 2.555328e+01 5.439454 2.775646e-07 1.159126e-05
## EIF4E 11.7273164 3.974712e+01 5.435286 2.828420e-07 1.177020e-05
## KIF23 2.1493496 3.069673e+00 5.432745 2.861079e-07 1.186447e-05
## ARRDC1 -14.1067474 2.473697e+01 -5.430691 2.887744e-07 1.193332e-05
## TMEM259 -32.1659381 6.005994e+01 -5.429681 2.900942e-07 1.193831e-05
## MARS1 25.2575269 1.075905e+02 5.429060 2.909083e-07 1.193831e-05
## MYG1 -9.3398049 1.438284e+01 -5.423881 2.977903e-07 1.211995e-05
## SLC12A2 1.9521873 3.596070e+00 5.423482 2.983259e-07 1.211995e-05
## OSGIN1 -2.2550714 2.115793e+00 -5.423194 2.987137e-07 1.211995e-05
## RACK1 -397.5355670 6.840549e+02 -5.422669 2.994220e-07 1.211995e-05
## POLR2E -30.4471869 3.925324e+01 -5.420082 3.029376e-07 1.222054e-05
## HDHD5 -10.5280648 1.875453e+01 -5.418996 3.044254e-07 1.223893e-05
## TRAF7 -13.7441125 3.146933e+01 -5.413227 3.124480e-07 1.251903e-05
## CENPU 4.0182581 5.718738e+00 5.411509 3.148774e-07 1.257389e-05
## KIF15 2.5727173 2.471721e+00 5.410688 3.160439e-07 1.257812e-05
## FAM234A -9.4210054 1.168475e+01 -5.406348 3.222850e-07 1.278361e-05
## NT5C -7.4998941 9.491093e+00 -5.403318 3.267136e-07 1.291608e-05
## TMEM187 -3.4385963 4.428668e+00 -5.401155 3.299109e-07 1.297453e-05
## STMN3 -19.5874953 1.759112e+01 -5.400839 3.303802e-07 1.297453e-05
## SUGP1 -10.5306217 2.453559e+01 -5.398671 3.336202e-07 1.305853e-05
## AKT1S1 -7.3518568 1.139058e+01 -5.396629 3.367009e-07 1.313577e-05
## ZNF865 -8.5051158 1.158684e+01 -5.394511 3.399248e-07 1.318397e-05
## ZNF358 -3.5388112 2.678694e+00 -5.393697 3.411715e-07 1.318397e-05
## NCKAP5L -5.1240948 8.289657e+00 -5.393632 3.412713e-07 1.318397e-05
## ZNF688 -5.4056470 6.496270e+00 -5.391300 3.448699e-07 1.327973e-05
## FTL -4311.1486346 6.897358e+03 -5.390220 3.465486e-07 1.330119e-05
## CYB561A3 -17.8530743 4.109154e+01 -5.389275 3.480256e-07 1.331479e-05
## EGLN2 -129.0696061 1.603529e+02 -5.387789 3.503575e-07 1.336090e-05
## HBA2 -5210.0066201 2.670516e+03 -5.385548 3.539048e-07 1.345292e-05
## EIF3F -67.9245977 1.320393e+02 -5.384641 3.553507e-07 1.346472e-05
## TGFBI -76.1928442 1.059929e+02 -5.382442 3.588804e-07 1.355516e-05
## NDUFB5 -9.7196218 3.728487e+01 -5.380909 3.613604e-07 1.360550e-05
## ENG -7.6315860 7.517699e+00 -5.376866 3.679822e-07 1.374831e-05
## ATP8A1 21.1849583 3.887458e+01 5.376376 3.687931e-07 1.374831e-05
## SGSM3 -14.7781171 2.723509e+01 -5.376042 3.693469e-07 1.374831e-05
## CXCR5 -11.8281171 1.186253e+01 -5.374836 3.713521e-07 1.374831e-05
## TNFRSF14 -65.4074984 8.717731e+01 -5.374768 3.714659e-07 1.374831e-05
## LHPP -6.6437555 8.294695e+00 -5.374383 3.721087e-07 1.374831e-05
## C15orf39 -80.6493718 1.381994e+02 -5.368182 3.826102e-07 1.409241e-05
## ARHGEF12 15.7785164 2.203827e+01 5.364610 3.887896e-07 1.427568e-05
## ID3 -1.8624713 1.593617e+00 -5.361354 3.945090e-07 1.444098e-05
## S100PBP 6.7077917 2.305948e+01 5.357482 4.014167e-07 1.464862e-05
## MCM8 2.5551131 4.723672e+00 5.355632 4.047574e-07 1.472522e-05
## KCNK6 -14.6010759 3.633130e+01 -5.347023 4.206683e-07 1.525726e-05
## KLHL22 -7.1984286 1.148237e+01 -5.342881 4.285404e-07 1.549539e-05
## BUB1 7.7351700 7.294151e+00 5.340799 4.325520e-07 1.557720e-05
## CDCA2 1.8502639 1.762604e+00 5.340346 4.334297e-07 1.557720e-05
## CFP -136.1893776 1.664709e+02 -5.336870 4.402210e-07 1.577348e-05
## CAPN10 -5.4187084 7.217240e+00 -5.330715 4.525022e-07 1.611394e-05
## CORO7 -53.5680040 6.196403e+01 -5.330133 4.536799e-07 1.611394e-05
## PNPLA6 -53.9099030 6.076791e+01 -5.329833 4.542877e-07 1.611394e-05
## ECT2 3.8375172 7.316110e+00 5.329405 4.551578e-07 1.611394e-05
## TPX2 5.4605756 5.671138e+00 5.325607 4.629474e-07 1.634094e-05
## GLI4 -1.5148487 1.514855e+00 -5.322625 4.691532e-07 1.651085e-05
## PSKH1 -6.7601128 1.908057e+01 -5.321823 4.708359e-07 1.652105e-05
## CHMP6 -12.3819160 1.500705e+01 -5.320313 4.740225e-07 1.658380e-05
## PHRF1 -4.7318668 1.260564e+01 -5.318824 4.771828e-07 1.664526e-05
## TMEM129 -9.0755496 1.830864e+01 -5.317837 4.792894e-07 1.666971e-05
## LTB -140.6730366 1.145366e+02 -5.315315 4.847149e-07 1.680912e-05
## PKN1 -100.5908919 1.353741e+02 -5.310100 4.961216e-07 1.715453e-05
## CCDC106 -0.9951748 1.103475e+00 -5.302818 5.124909e-07 1.766902e-05
## USP48 12.1441220 5.022570e+01 5.300987 5.166889e-07 1.771649e-05
## AP4M1 -2.4988284 5.696577e+00 -5.300914 5.168553e-07 1.771649e-05
## RPL6 -472.2321594 8.469566e+02 -5.293985 5.330522e-07 1.821902e-05
## ZFAND4 1.9669273 5.305844e+00 5.289848 5.429594e-07 1.850431e-05
## CSF1R -74.1306790 9.314737e+01 -5.288422 5.464136e-07 1.851617e-05
## APP 39.4036937 8.579951e+01 5.288416 5.464299e-07 1.851617e-05
## DGKQ -9.1717000 1.339824e+01 -5.287035 5.497976e-07 1.857721e-05
## GMEB1 4.7310397 2.241214e+01 5.280804 5.652426e-07 1.904482e-05
## DOK2 -67.4297837 7.500722e+01 -5.280096 5.670243e-07 1.905073e-05
## TBC1D10C -107.6151868 1.237966e+02 -5.279167 5.693706e-07 1.906138e-05
## KLF16 -11.6050006 2.217280e+01 -5.278700 5.705556e-07 1.906138e-05
## IRF2BP1 -2.0519010 3.893644e+00 -5.276325 5.766081e-07 1.920947e-05
## SCRN2 -8.5908196 1.024813e+01 -5.271045 5.902916e-07 1.961025e-05
## SCAP -20.5428129 4.630877e+01 -5.269873 5.933713e-07 1.965750e-05
## CLTB -27.0213234 3.613798e+01 -5.268250 5.976629e-07 1.972470e-05
## DENND1C -27.2897978 6.290853e+01 -5.267849 5.987261e-07 1.972470e-05
## EDEM1 35.6260854 8.903135e+01 5.266955 6.011089e-07 1.974834e-05
## MAP1S -7.2652492 8.371213e+00 -5.263585 6.101658e-07 1.999052e-05
## IFFO1 -10.3321048 2.912753e+01 -5.260156 6.195190e-07 2.024103e-05
## LYPLA2 -33.1820561 4.850174e+01 -5.257005 6.282366e-07 2.046947e-05
## POLM -7.5457161 2.148772e+01 -5.256076 6.308280e-07 2.049759e-05
## CCDC130 -5.8672023 1.241224e+01 -5.254279 6.358748e-07 2.060512e-05
## DHCR24 9.0689088 1.364447e+01 5.253282 6.386898e-07 2.061774e-05
## MORN2 -0.8881395 1.565137e+00 -5.252911 6.397411e-07 2.061774e-05
## KIAA1614 2.8838840 4.105178e+00 5.241683 6.723607e-07 2.161029e-05
## GPBAR1 -8.7579043 8.252092e+00 -5.239994 6.774067e-07 2.163626e-05
## COMT -10.8125394 1.564950e+01 -5.239869 6.777819e-07 2.163626e-05
## EEF2 -156.0200350 3.273209e+02 -5.239582 6.786416e-07 2.163626e-05
## NSD2 6.8311789 1.704069e+01 5.238845 6.808609e-07 2.164882e-05
## KIFC2 -7.5814491 8.742958e+00 -5.235805 6.900799e-07 2.188328e-05
## FCGRT -172.7858804 2.520064e+02 -5.233511 6.971172e-07 2.204749e-05
## TMEM150A -3.3687073 4.694545e+00 -5.229699 7.089655e-07 2.235256e-05
## BLM 3.8907631 7.675997e+00 5.229200 7.105324e-07 2.235256e-05
## SHARPIN -18.4649939 1.932599e+01 -5.227384 7.162572e-07 2.247304e-05
## NET1 5.7643315 8.979555e+00 5.226605 7.187279e-07 2.249106e-05
## GFPT1 5.2844271 1.363996e+01 5.223577 7.284102e-07 2.267839e-05
## PSAT1 2.4866298 4.080667e+00 5.223537 7.285384e-07 2.267839e-05
## FBRSL1 -7.9620685 1.222482e+01 -5.221607 7.347764e-07 2.281269e-05
## CCDC71 -7.6099778 1.504596e+01 -5.220866 7.371848e-07 2.282771e-05
## EIF3M -42.3458817 1.046939e+02 -5.220149 7.395231e-07 2.284048e-05
## SCD 7.2891384 8.327400e+00 5.215905 7.535096e-07 2.314214e-05
## GTSE1 1.5757133 1.650940e+00 5.215494 7.548771e-07 2.314214e-05
## E4F1 -5.5095896 6.734053e+00 -5.215414 7.551440e-07 2.314214e-05
## PPP1R35 -7.4774865 1.035266e+01 -5.214734 7.574126e-07 2.315184e-05
## B3GALT6 -7.5350265 9.230131e+00 -5.209723 7.743471e-07 2.360863e-05
## G6PC3 -11.6727657 1.557827e+01 -5.205652 7.883736e-07 2.397464e-05
## C1orf112 1.3838257 4.741065e+00 5.199823 8.088900e-07 2.441628e-05
## C1orf35 -2.9431277 4.197782e+00 -5.199792 8.090002e-07 2.441628e-05
## AKT1 -35.5838914 1.027137e+02 -5.199294 8.107772e-07 2.441628e-05
## PARVG -49.9248176 1.533990e+02 -5.199195 8.111312e-07 2.441628e-05
## CKAP2 4.5083421 1.082355e+01 5.194698 8.273614e-07 2.484179e-05
## CAPNS1 -130.4426040 2.459115e+02 -5.193653 8.311761e-07 2.489330e-05
## RPL27A -672.5368611 6.994942e+02 -5.189555 8.463050e-07 2.528256e-05
## TNFAIP8L2 -51.3921102 1.078734e+02 -5.188930 8.486373e-07 2.528854e-05
## TAB1 -7.7904541 1.541310e+01 -5.187492 8.540259e-07 2.538533e-05
## RASA4B -10.0412261 1.221461e+01 -5.184349 8.659141e-07 2.545752e-05
## PWWP2B -3.4409308 4.062516e+00 -5.184257 8.662678e-07 2.545752e-05
## IDH3G -19.2757561 3.108879e+01 -5.184252 8.662859e-07 2.545752e-05
## BRCA1 7.0327172 1.275272e+01 5.184225 8.663868e-07 2.545752e-05
## RPS9 -564.1646043 7.184505e+02 -5.184015 8.671870e-07 2.545752e-05
## CATIP -0.5990092 5.528792e-01 -5.182699 8.722230e-07 2.554214e-05
## TMUB1 -7.2976808 6.908028e+00 -5.181874 8.753914e-07 2.557178e-05
## EMC10 -20.9500441 3.324849e+01 -5.181269 8.777230e-07 2.557689e-05
## BCKDHA -17.4010368 3.072037e+01 -5.177561 8.921511e-07 2.593361e-05
## PYCARD -55.7533058 7.104117e+01 -5.176954 8.945345e-07 2.593931e-05
## EPN1 -29.2011726 3.854586e+01 -5.173668 9.075416e-07 2.625230e-05
## DCAF15 -7.6152082 1.807130e+01 -5.166182 9.378736e-07 2.699706e-05
## EIF2AK1 45.7772910 1.240806e+02 5.166162 9.379578e-07 2.699706e-05
## IMPDH1 -123.6648444 2.316221e+02 -5.165638 9.401168e-07 2.699706e-05
## SGO2 2.7011180 4.123897e+00 5.163817 9.476607e-07 2.714796e-05
## SPHK2 -1.6385931 2.405806e+00 -5.162358 9.537460e-07 2.725645e-05
## KIF24 0.6513886 8.539490e-01 5.159369 9.663371e-07 2.754990e-05
## GPR162 -10.5684721 1.056945e+01 -5.155956 9.809068e-07 2.786683e-05
## RAD51 2.5516240 2.763694e+00 5.154884 9.855276e-07 2.786683e-05
## MYO1G -53.9402989 9.704217e+01 -5.154289 9.881022e-07 2.786683e-05
## NSMCE1 -22.4396604 2.904887e+01 -5.154142 9.887413e-07 2.786683e-05
## ERCC1 -12.1614758 2.602666e+01 -5.153646 9.908927e-07 2.786683e-05
## SCAMP4 -4.9286461 1.125526e+01 -5.153494 9.915517e-07 2.786683e-05
## PHB2 -43.6056915 9.922310e+01 -5.147733 1.016903e-06 2.851174e-05
## HJURP 3.6806631 3.574267e+00 5.146006 1.024623e-06 2.866044e-05
## TMEM115 -13.8804366 2.430034e+01 -5.135628 1.072243e-06 2.992189e-05
## HSCB -2.3577480 5.028321e+00 -5.130989 1.094218e-06 3.046345e-05
## CCDC61 -3.7618432 4.173247e+00 -5.128584 1.105785e-06 3.060805e-05
## RPS14 -575.5316618 7.788518e+02 -5.128481 1.106282e-06 3.060805e-05
## ALDOA -431.8174791 6.776759e+02 -5.128301 1.107155e-06 3.060805e-05
## INO80B -3.3830415 8.678664e+00 -5.124285 1.126757e-06 3.101949e-05
## SH3BP1 -30.8546241 5.284604e+01 -5.124181 1.127268e-06 3.101949e-05
## SLC66A2 -29.2935004 3.194441e+01 -5.120868 1.143699e-06 3.137439e-05
## ZSCAN29 7.5539079 1.847486e+01 5.120516 1.145456e-06 3.137439e-05
## NANS -15.9792007 2.880041e+01 -5.117656 1.159852e-06 3.169549e-05
## BTBD2 -7.5499483 1.029058e+01 -5.116988 1.163239e-06 3.171498e-05
## ZNF513 -3.1133261 9.470021e+00 -5.115175 1.172483e-06 3.189368e-05
## PACS2 -6.3123933 1.100868e+01 -5.113691 1.180097e-06 3.202734e-05
## INO80E -9.0540159 1.610606e+01 -5.110317 1.197598e-06 3.234627e-05
## PSMF1 -19.0635904 7.245226e+01 -5.110228 1.198062e-06 3.234627e-05
## ARNTL2 1.6254848 2.754961e+00 5.109852 1.200030e-06 3.234627e-05
## CCDC18 1.9990234 5.339632e+00 5.108334 1.208003e-06 3.243060e-05
## PLCB3 -4.4605625 9.166749e+00 -5.108215 1.208628e-06 3.243060e-05
## RPL3 -885.7122500 1.152295e+03 -5.107460 1.212613e-06 3.246408e-05
## LRRC61 -3.3804188 4.476915e+00 -5.106091 1.219874e-06 3.254655e-05
## CDC14B 8.6462083 1.230706e+01 5.105845 1.221181e-06 3.254655e-05
## MASTL 3.8728386 8.050500e+00 5.104048 1.230785e-06 3.272896e-05
## DHRSX -5.6698927 1.429759e+01 -5.103340 1.234591e-06 3.274735e-05
## PPP2R1A -66.2047464 1.109987e+02 -5.102787 1.237572e-06 3.274735e-05
## TELO2 -6.1848189 5.477321e+00 -5.102381 1.239761e-06 3.274735e-05
## BARD1 1.8264791 3.664282e+00 5.098761 1.259472e-06 3.319120e-05
## CDCA7 2.4237822 3.371571e+00 5.098271 1.262161e-06 3.319120e-05
## SLC25A1 -9.3131070 1.218737e+01 -5.095919 1.275156e-06 3.340227e-05
## SGTA -14.1363196 2.309352e+01 -5.095800 1.275820e-06 3.340227e-05
## BCKDK -23.6525259 3.943819e+01 -5.092377 1.294978e-06 3.382915e-05
## AKT2 -16.5168799 6.823690e+01 -5.090454 1.305858e-06 3.403840e-05
## ATAD5 1.2910512 2.339838e+00 5.089947 1.308743e-06 3.403879e-05
## OCEL1 -6.6403216 8.598829e+00 -5.087289 1.323968e-06 3.435943e-05
## NCOA3 39.8257929 8.477207e+01 5.083767 1.344404e-06 3.481361e-05
## CLNS1A -13.4225396 4.082330e+01 -5.079784 1.367893e-06 3.534468e-05
## C18orf21 -5.3455211 1.751539e+01 -5.077510 1.381478e-06 3.556722e-05
## SPIN1 6.2760431 1.530550e+01 5.077339 1.382503e-06 3.556722e-05
## SEPTIN11 6.1984788 1.473516e+01 5.075454 1.393875e-06 3.578216e-05
## CYTH4 -415.6767952 6.955792e+02 -5.074197 1.401506e-06 3.587214e-05
## ATP2C1 11.5501892 3.465919e+01 5.073553 1.405432e-06 3.587214e-05
## FAAH -5.8650227 5.163740e+00 -5.073149 1.407900e-06 3.587214e-05
## CDK2AP2 -18.0053331 2.138118e+01 -5.072891 1.409479e-06 3.587214e-05
## RPS11 -1080.9031350 1.485880e+03 -5.069799 1.428530e-06 3.624398e-05
## SH3BGRL3 -537.0776614 8.286535e+02 -5.068807 1.434697e-06 3.624398e-05
## CIRBP -99.6828096 2.013316e+02 -5.068711 1.435295e-06 3.624398e-05
## PLA2G6 -6.2219076 1.043224e+01 -5.068548 1.436313e-06 3.624398e-05
## PLEKHM2 -19.9444046 4.673070e+01 -5.066605 1.448478e-06 3.647335e-05
## RHOT2 -32.4787178 4.303786e+01 -5.065672 1.454352e-06 3.654366e-05
## C7orf50 -11.2444011 8.402341e+00 -5.062948 1.471642e-06 3.682510e-05
## GALK2 3.6262736 1.196634e+01 5.062770 1.472781e-06 3.682510e-05
## ARFRP1 -15.2481536 1.691713e+01 -5.062444 1.474867e-06 3.682510e-05
## SARS1 -27.0206670 8.426163e+01 -5.060608 1.486655e-06 3.704144e-05
## POLE2 1.1895080 1.416959e+00 5.059242 1.495489e-06 3.718344e-05
## RPL15 -317.3249630 6.730490e+02 -5.057344 1.507850e-06 3.741235e-05
## RPL22 -181.2003595 2.970501e+02 -5.054217 1.528423e-06 3.784363e-05
## AKR7A2 -8.0162585 1.283851e+01 -5.053302 1.534498e-06 3.791488e-05
## CTSZ -140.3743866 4.423528e+02 -5.051876 1.544008e-06 3.801320e-05
## PPP6R2 -17.3154726 4.765179e+01 -5.051745 1.544887e-06 3.801320e-05
## TMEM161A -2.4470655 2.388716e+00 -5.050864 1.550789e-06 3.807941e-05
## GRHPR -11.3074598 2.369453e+01 -5.045780 1.585317e-06 3.884681e-05
## GPR137 -6.5589136 9.550849e+00 -5.044350 1.595158e-06 3.895955e-05
## TRAM2 13.4723629 1.831649e+01 5.044158 1.596487e-06 3.895955e-05
## CENPB -28.1104739 3.313386e+01 -5.040412 1.622577e-06 3.946073e-05
## CASTOR1 -1.4824259 1.811159e+00 -5.040255 1.623679e-06 3.946073e-05
## RPL12 -439.7965048 5.833387e+02 -5.039601 1.628284e-06 3.949170e-05
## ZNF710 -11.3781035 2.654146e+01 -5.038155 1.638501e-06 3.962977e-05
## SOCS4 7.2892859 1.959322e+01 5.037851 1.640659e-06 3.962977e-05
## SLC16A1 3.5852027 7.814640e+00 5.036436 1.650728e-06 3.975483e-05
## SCAMP2 -29.5873453 9.379822e+01 -5.036182 1.652541e-06 3.975483e-05
## PFKL -28.5384241 3.511668e+01 -5.034761 1.662731e-06 3.991901e-05
## HLA-DPB1 -158.5264801 1.731408e+02 -5.029765 1.699024e-06 4.070792e-05
## REEP3 8.1072557 2.334613e+01 5.027612 1.714906e-06 4.100561e-05
## FAM149B1 5.4770138 1.422734e+01 5.027067 1.718947e-06 4.101203e-05
## POLA1 1.9617574 4.077027e+00 5.026644 1.722090e-06 4.101203e-05
## RPS3 -676.6183589 1.090454e+03 -5.025942 1.727322e-06 4.105420e-05
## REPIN1 -9.5708149 2.288002e+01 -5.021690 1.759332e-06 4.167634e-05
## FBL -63.8944282 7.987545e+01 -5.021102 1.763806e-06 4.167634e-05
## FAM110A -14.6441725 1.801229e+01 -5.021071 1.764041e-06 4.167634e-05
## DOK1 -32.8030160 6.841051e+01 -5.017387 1.792316e-06 4.226018e-05
## FRG1 -15.0719935 4.000742e+01 -5.016021 1.802912e-06 4.238778e-05
## PGAP3 -6.3705984 8.750789e+00 -5.015768 1.804876e-06 4.238778e-05
## RPS18 -585.2507763 1.000275e+03 -5.013334 1.823927e-06 4.275053e-05
## CCDC22 -10.7940431 1.477379e+01 -5.012344 1.831728e-06 4.284871e-05
## SPSB3 -28.6621591 3.523570e+01 -5.009382 1.855273e-06 4.331406e-05
## HADHA -50.1393171 1.995597e+02 -5.008425 1.862946e-06 4.334620e-05
## CCDC88B -99.2244113 1.197151e+02 -5.008299 1.863960e-06 4.334620e-05
## C6orf226 -0.8237205 9.471067e-01 -5.007411 1.871105e-06 4.342720e-05
## PDP2 1.9058762 4.398036e+00 5.006637 1.877359e-06 4.348726e-05
## SURF2 -4.7212152 5.003539e+00 -5.005809 1.884069e-06 4.355762e-05
## YEATS2 7.4108642 2.274426e+01 5.002675 1.909679e-06 4.405196e-05
## LY86 -22.5594157 3.761406e+01 -5.001842 1.916541e-06 4.405196e-05
## TTK 1.9247270 2.108625e+00 5.001766 1.917168e-06 4.405196e-05
## CHMP4A -31.2791003 6.563874e+01 -5.001386 1.920309e-06 4.405196e-05
## MTOR 9.7211725 3.125682e+01 4.999645 1.934763e-06 4.429785e-05
## GSTZ1 -3.7856112 5.734021e+00 -4.998977 1.940333e-06 4.433979e-05
## UBR1 10.6373142 2.268988e+01 4.998287 1.946111e-06 4.438631e-05
## MTHFD1 4.7194476 1.111267e+01 4.995607 1.968688e-06 4.475564e-05
## NACC1 -10.0777212 2.547819e+01 -4.995109 1.972919e-06 4.475564e-05
## HLA-DPA1 -155.4938112 2.059903e+02 -4.995025 1.973625e-06 4.475564e-05
## RNASEK -104.2084457 1.489011e+02 -4.993895 1.983253e-06 4.482501e-05
## ACADM 8.5452563 2.094770e+01 4.992966 1.991189e-06 4.482501e-05
## ARSA -21.9361559 3.680211e+01 -4.992960 1.991248e-06 4.482501e-05
## MVP -184.5295785 3.117979e+02 -4.992821 1.992439e-06 4.482501e-05
## PITPNB 8.2243456 3.265382e+01 4.992454 1.995582e-06 4.482501e-05
## ACSF3 -6.7968428 1.153599e+01 -4.985425 2.056830e-06 4.611343e-05
## HIGD2A -24.6366456 3.950013e+01 -4.983018 2.078217e-06 4.650501e-05
## NDUFS1 10.3595194 3.990601e+01 4.982459 2.083216e-06 4.652908e-05
## TUBA1A -505.9577223 8.119862e+02 -4.981053 2.095837e-06 4.672299e-05
## ABHD11 -4.6131421 8.280971e+00 -4.979241 2.112221e-06 4.699990e-05
## UBE3B 7.9646138 2.854776e+01 4.977015 2.132506e-06 4.736240e-05
## DNAJC4 -19.2503427 2.498282e+01 -4.974986 2.151167e-06 4.765210e-05
## CDC42BPA 1.3143169 1.982018e+00 4.974725 2.153586e-06 4.765210e-05
## TAF5 1.2250324 6.139433e+00 4.972234 2.176731e-06 4.807455e-05
## MAF1 -31.5946125 6.724306e+01 -4.971479 2.183802e-06 4.814107e-05
## TMEM8B -1.5086613 2.113129e+00 -4.970545 2.192568e-06 4.815816e-05
## RPL13A -1399.4925858 1.394651e+03 -4.970531 2.192699e-06 4.815816e-05
## PRXL2B -4.0054997 8.273215e+00 -4.968374 2.213084e-06 4.844198e-05
## RPL26 -424.1340892 6.829367e+02 -4.968300 2.213790e-06 4.844198e-05
## MXD4 -14.5727818 2.061608e+01 -4.966385 2.232046e-06 4.875150e-05
## DPY19L1 5.3598502 1.366785e+01 4.964732 2.247925e-06 4.900807e-05
## CEP152 2.9702467 5.899880e+00 4.963687 2.258027e-06 4.910090e-05
## TNFRSF1B -233.4654711 6.979230e+02 -4.963435 2.260463e-06 4.910090e-05
## ATG4B -14.6225496 3.126570e+01 -4.962933 2.265338e-06 4.911683e-05
## PFDN5 -317.5814835 4.489034e+02 -4.961511 2.279187e-06 4.932694e-05
## PHETA1 -4.2899645 5.213331e+00 -4.960928 2.284891e-06 4.936031e-05
## RPL4 -548.8839612 1.106526e+03 -4.959610 2.297835e-06 4.954967e-05
## MTDH 33.2772968 9.650345e+01 4.958815 2.305672e-06 4.962844e-05
## ZNF414 -1.8673017 1.781093e+00 -4.957421 2.319481e-06 4.983522e-05
## LARP1 28.2967352 7.621258e+01 4.951800 2.376002e-06 5.095517e-05
## RPS23 -478.4674417 7.103642e+02 -4.951348 2.380604e-06 5.095517e-05
## RBM15B -8.6517947 3.841760e+01 -4.950966 2.384496e-06 5.095517e-05
## PSTPIP1 -73.6790364 1.156801e+02 -4.949825 2.396179e-06 5.111274e-05
## HEATR5B 15.6497889 3.040281e+01 4.949162 2.402982e-06 5.116372e-05
## NR4A1 -5.1406595 4.219090e+00 -4.948753 2.407197e-06 5.116372e-05
## FLYWCH2 -3.0014260 2.980148e+00 -4.947728 2.417779e-06 5.126408e-05
## CNPY3 -186.6864063 3.547225e+02 -4.947307 2.422136e-06 5.126408e-05
## KCTD15 -3.0072527 5.033526e+00 -4.947042 2.424886e-06 5.126408e-05
## IKBKG -23.1396650 5.184681e+01 -4.945394 2.442042e-06 5.153492e-05
## ATPAF2 -2.8801499 6.526448e+00 -4.944878 2.447435e-06 5.155697e-05
## ERCC6L 0.9551067 1.118754e+00 4.942663 2.470733e-06 5.195549e-05
## MCM2 7.1091693 9.678482e+00 4.942092 2.476782e-06 5.199050e-05
## ABI3 -23.0430290 2.608378e+01 -4.941110 2.487196e-06 5.211686e-05
## RETSAT 7.0548734 2.434155e+01 4.936898 2.532386e-06 5.297019e-05
## DDRGK1 -7.4773064 1.619401e+01 -4.935064 2.552315e-06 5.329305e-05
## ZNF764 -1.2436444 4.090278e+00 -4.930231 2.605554e-06 5.424370e-05
## RENBP -17.0180455 2.630851e+01 -4.930102 2.606991e-06 5.424370e-05
## TP53I13 -10.1720905 7.957969e+00 -4.929362 2.615238e-06 5.424517e-05
## DHFR 17.2841284 2.806569e+01 4.928970 2.619617e-06 5.424517e-05
## EME1 0.6889573 8.328714e-01 4.928866 2.620783e-06 5.424517e-05
## SLC43A2 -54.9761434 1.304071e+02 -4.927234 2.639100e-06 5.444686e-05
## TXNRD2 -6.8627488 1.009480e+01 -4.926786 2.644159e-06 5.444686e-05
## LRRC37B 7.0532736 1.816606e+01 4.926773 2.644299e-06 5.444686e-05
## JOSD2 -3.1744061 2.372521e+00 -4.924831 2.666307e-06 5.480485e-05
## FAM98A 4.4947911 1.188365e+01 4.923854 2.677453e-06 5.493874e-05
## TTF1 4.8144059 1.657198e+01 4.923226 2.684627e-06 5.499080e-05
## ARSB 8.7603318 2.308291e+01 4.921386 2.705789e-06 5.532871e-05
## CENPE 3.8333141 4.188713e+00 4.920112 2.720535e-06 5.553450e-05
## DLGAP5 4.3913341 4.193011e+00 4.919449 2.728236e-06 5.559601e-05
## JMJD7 -2.7388145 5.397760e+00 -4.916619 2.761352e-06 5.616517e-05
## D2HGDH -3.1428031 2.923586e+00 -4.916240 2.765814e-06 5.616517e-05
## CRKL 35.8929074 9.064875e+01 4.915854 2.770373e-06 5.616517e-05
## CD4 -71.7463709 1.056741e+02 -4.914651 2.784619e-06 5.635765e-05
## MPG -8.4174943 8.838878e+00 -4.913762 2.795190e-06 5.647522e-05
## ELOB -66.8994014 5.956803e+01 -4.912841 2.806179e-06 5.660082e-05
## CCL3 -6.1559310 8.235264e+00 -4.910892 2.829578e-06 5.697587e-05
## KCNQ1 -10.7539258 2.659564e+01 -4.908913 2.853536e-06 5.736090e-05
## DECR2 -1.0385592 1.056399e+00 -4.907116 2.875452e-06 5.767389e-05
## USP6NL 4.6272931 9.523376e+00 4.906727 2.880223e-06 5.767389e-05
## TIGD5 -2.2467777 2.591716e+00 -4.906444 2.883695e-06 5.767389e-05
## SF3B4 -8.1503150 3.606203e+01 -4.906020 2.888907e-06 5.768087e-05
## FAM111A 29.4469263 7.331442e+01 4.905224 2.898713e-06 5.777939e-05
## MPND -7.3314573 8.577298e+00 -4.902971 2.926640e-06 5.823817e-05
## ARHGDIA -55.4380150 7.885851e+01 -4.901829 2.940896e-06 5.842382e-05
## GNB2 -194.8394154 2.760143e+02 -4.899481 2.970433e-06 5.891192e-05
## PKD2 3.0991137 6.841540e+00 4.898287 2.985547e-06 5.911284e-05
## DEF6 -63.5047188 1.396421e+02 -4.897455 2.996134e-06 5.922357e-05
## EML3 -19.3384845 4.758364e+01 -4.893871 3.042139e-06 6.003290e-05
## HVCN1 -18.9053126 4.399802e+01 -4.892701 3.057307e-06 6.023199e-05
## ENDOV -1.2399164 1.723702e+00 -4.890184 3.090190e-06 6.077886e-05
## OXLD1 -10.6456926 1.535605e+01 -4.887524 3.125319e-06 6.135898e-05
## ERP29 -74.0572748 1.449785e+02 -4.887169 3.130032e-06 6.135898e-05
## ZDHHC8 -2.5771994 3.354689e+00 -4.885950 3.146276e-06 6.157564e-05
## EOLA2 -5.3878716 1.464802e+01 -4.884512 3.165549e-06 6.185076e-05
## EIF4EBP3 -8.2489210 1.196776e+01 -4.883916 3.173568e-06 6.190546e-05
## CD300LF -63.8056585 1.197838e+02 -4.880188 3.224199e-06 6.275827e-05
## TNFSF13 -26.7708606 8.516356e+01 -4.879682 3.231130e-06 6.275827e-05
## RYR1 -1.4029964 1.546502e+00 -4.879533 3.233162e-06 6.275827e-05
## NDUFC2 -15.8233698 2.833184e+01 -4.877698 3.258436e-06 6.314551e-05
## NOC2L -10.1541254 1.878158e+01 -4.873990 3.310088e-06 6.404184e-05
## XPOT 10.9362803 3.630472e+01 4.872219 3.335050e-06 6.441969e-05
## MCRIP1 -21.9812682 1.728762e+01 -4.867865 3.397164e-06 6.551280e-05
## FCHO1 -15.9523554 2.976469e+01 -4.865510 3.431238e-06 6.596712e-05
## CCDC12 -24.8443308 3.068563e+01 -4.865468 3.431847e-06 6.596712e-05
## DNAJB2 -24.3100988 3.986088e+01 -4.864334 3.448366e-06 6.610897e-05
## ARHGEF5 2.2851282 3.774047e+00 4.864197 3.450376e-06 6.610897e-05
## ALKBH4 -1.7981591 5.552355e+00 -4.862832 3.470367e-06 6.638477e-05
## MUTYH -3.9275577 6.164116e+00 -4.861371 3.491905e-06 6.666886e-05
## ACY1 -1.6859617 2.749381e+00 -4.860936 3.498354e-06 6.666886e-05
## SORBS3 -5.1976695 4.846766e+00 -4.860684 3.502083e-06 6.666886e-05
## RPL11 -843.0593632 1.135183e+03 -4.858938 3.528056e-06 6.691289e-05
## ZNF511 -6.4537139 1.132002e+01 -4.858643 3.532471e-06 6.691289e-05
## EXOSC5 -3.7856057 3.921173e+00 -4.858465 3.535138e-06 6.691289e-05
## LILRB2 -121.7974756 2.983491e+02 -4.858309 3.537469e-06 6.691289e-05
## DOK4 -2.9225953 4.788552e+00 -4.856593 3.563247e-06 6.729317e-05
## GIMAP1 -16.7544526 3.657418e+01 -4.855808 3.575110e-06 6.740986e-05
## B3GNT8 -19.8128964 2.107599e+01 -4.854972 3.587776e-06 6.747120e-05
## RPUSD1 -7.2767693 6.725533e+00 -4.854842 3.589741e-06 6.747120e-05
## TMEM189 -7.3184646 1.619761e+01 -4.853746 3.606422e-06 6.764207e-05
## ATP6V0D1 -161.9124315 3.232266e+02 -4.853397 3.611757e-06 6.764207e-05
## RPL21 -695.8166341 1.023501e+03 -4.853123 3.615942e-06 6.764207e-05
## BAHD1 -6.8090306 1.815283e+01 -4.851566 3.639833e-06 6.798176e-05
## SUMF1 -10.7829045 2.799574e+01 -4.850253 3.660102e-06 6.825285e-05
## ZSWIM7 -4.7886907 1.089111e+01 -4.849467 3.672280e-06 6.837244e-05
## POLD4 -61.7200610 8.465221e+01 -4.847603 3.701334e-06 6.880537e-05
## CEP128 2.1516037 2.654485e+00 4.843597 3.764519e-06 6.987041e-05
## RPL7A -425.6992461 9.370175e+02 -4.842499 3.782031e-06 7.008577e-05
## PNKP -7.1380435 1.543807e+01 -4.841597 3.796464e-06 7.024347e-05
## NFIC -5.3218996 1.359472e+01 -4.838562 3.845436e-06 7.103873e-05
## GSDMD -47.3307501 5.409087e+01 -4.838086 3.853161e-06 7.107074e-05
## CAMK1 -20.3823172 2.373025e+01 -4.836538 3.878425e-06 7.128343e-05
## NCAPD3 3.9971246 1.025959e+01 4.836380 3.881024e-06 7.128343e-05
## PAOX -1.7761168 2.008571e+00 -4.836209 3.883823e-06 7.128343e-05
## RPS8 -538.6510841 7.798878e+02 -4.835909 3.888734e-06 7.128343e-05
## TPPP3 -8.2433543 4.216053e+00 -4.834519 3.911625e-06 7.159239e-05
## ARHGEF1 -85.0361822 1.995232e+02 -4.833900 3.921851e-06 7.166895e-05
## ZYX -484.4432425 7.049949e+02 -4.832915 3.938180e-06 7.175901e-05
## COMMD5 -9.5210229 1.860388e+01 -4.832542 3.944381e-06 7.175901e-05
## ZNF707 -1.6814185 4.475382e+00 -4.832218 3.949786e-06 7.175901e-05
## TNFAIP8L1 -5.3432316 1.129388e+01 -4.832146 3.950981e-06 7.175901e-05
## MIER2 -2.2648354 4.815209e+00 -4.831150 3.967613e-06 7.195091e-05
## POLRMT -10.1881671 1.124837e+01 -4.830163 3.984158e-06 7.214063e-05
## FKBP14 1.1113615 2.738380e+00 4.827682 4.026066e-06 7.278833e-05
## XRCC1 -7.4133840 2.436230e+01 -4.826309 4.049438e-06 7.309945e-05
## LFNG -60.2098729 6.125100e+01 -4.824856 4.074316e-06 7.343676e-05
## ZNF467 -28.2843928 4.233810e+01 -4.822745 4.110720e-06 7.398048e-05
## PSMB10 -61.2981820 6.302457e+01 -4.821855 4.126172e-06 7.414606e-05
## ANKRD33B 6.4778891 1.126740e+01 4.820982 4.141369e-06 7.420566e-05
## PPP1R14B -9.0415827 1.286853e+01 -4.820638 4.147376e-06 7.420566e-05
## RPL18A -459.3277790 3.745194e+02 -4.820587 4.148259e-06 7.420566e-05
## SIKE1 7.9203616 2.195678e+01 4.819702 4.163759e-06 7.434525e-05
## TRPM4 -0.8252348 7.660720e-01 -4.819108 4.174180e-06 7.434525e-05
## CDC27 11.1601265 3.699892e+01 4.819069 4.174868e-06 7.434525e-05
## EXOC3 -10.9395717 4.017123e+01 -4.818129 4.191438e-06 7.452843e-05
## NCAPG2 4.8462843 6.530449e+00 4.816648 4.217661e-06 7.488242e-05
## RPL24 -223.4323193 3.951215e+02 -4.813641 4.271383e-06 7.572288e-05
## CCAR2 -19.3960709 6.108747e+01 -4.812615 4.289857e-06 7.593688e-05
## RDX 4.2280200 9.716763e+00 4.810004 4.337245e-06 7.655972e-05
## GNB1L -1.0248580 8.240062e-01 -4.809792 4.341124e-06 7.655972e-05
## INTS1 -11.8178338 1.784814e+01 -4.809612 4.344409e-06 7.655972e-05
## POLL -9.2581484 1.538896e+01 -4.808875 4.357900e-06 7.668352e-05
## UBE2C 3.1775371 4.610626e+00 4.808015 4.373694e-06 7.684741e-05
## SART1 -29.4076698 5.642193e+01 -4.807211 4.388498e-06 7.691466e-05
## BRF1 -3.7030580 5.506299e+00 -4.807103 4.390491e-06 7.691466e-05
## ZSCAN18 -3.7269178 5.291161e+00 -4.805589 4.418535e-06 7.729177e-05
## APRT -37.8607512 3.286586e+01 -4.804182 4.444756e-06 7.763594e-05
## ADAP1 -15.4391250 3.430717e+01 -4.803522 4.457087e-06 7.773684e-05
## ARFGAP2 -34.6088385 9.070118e+01 -4.802865 4.469414e-06 7.783738e-05
## EIF3C -48.1289902 1.050756e+02 -4.802466 4.476925e-06 7.783979e-05
## TMEM102 -3.4140443 5.149900e+00 -4.802138 4.483092e-06 7.783979e-05
## VPS51 -25.1956574 2.467671e+01 -4.801812 4.489243e-06 7.783979e-05
## ARHGEF10L -5.1598775 6.468444e+00 -4.801239 4.500071e-06 7.791363e-05
## CYHR1 -10.3341884 1.810429e+01 -4.799997 4.523612e-06 7.819495e-05
## FCSK -5.4487533 1.015727e+01 -4.799591 4.531328e-06 7.819495e-05
## RPL13 -791.5727759 6.604025e+02 -4.799341 4.536098e-06 7.819495e-05
## FAU -287.1531447 3.203537e+02 -4.798128 4.559266e-06 7.848025e-05
## TBC1D5 13.0177813 4.285644e+01 4.796940 4.582084e-06 7.875872e-05
## PKHD1L1 5.0474056 6.406403e+00 4.795369 4.612406e-06 7.916517e-05
## MNT -7.8305066 2.408578e+01 -4.794077 4.637501e-06 7.945279e-05
## GSTP1 -79.3091345 8.592448e+01 -4.793817 4.642562e-06 7.945279e-05
## CNOT6 10.7498860 2.988508e+01 4.793273 4.653171e-06 7.951961e-05
## SNRNP70 -22.8811012 6.214085e+01 -4.792541 4.667483e-06 7.960203e-05
## MAPKAPK3 -54.9373760 1.593994e+02 -4.792341 4.671418e-06 7.960203e-05
## RPL10 -913.8209145 1.452109e+03 -4.791709 4.683814e-06 7.969876e-05
## SPICE1 1.4768232 3.300865e+00 4.790003 4.717480e-06 8.015662e-05
## CDCA5 4.5579223 4.949994e+00 4.789120 4.734983e-06 8.033892e-05
## SSNA1 -21.8657407 2.442246e+01 -4.787798 4.761318e-06 8.041483e-05
## STARD4 6.9945374 1.238112e+01 4.787575 4.765778e-06 8.041483e-05
## AIFM3 -2.5010192 2.507852e+00 -4.787413 4.769010e-06 8.041483e-05
## RPS6KA4 -13.7387733 2.686564e+01 -4.787339 4.770498e-06 8.041483e-05
## RECQL5 -5.2607594 1.335482e+01 -4.787196 4.773359e-06 8.041483e-05
## ADCK2 -4.6615158 8.212438e+00 -4.784588 4.825844e-06 8.112731e-05
## RCN3 -14.8607661 1.853455e+01 -4.784416 4.829332e-06 8.112731e-05
## RIN1 -4.6945618 4.628575e+00 -4.783841 4.840984e-06 8.120801e-05
## ZBTB46 -0.8280123 1.175160e+00 -4.782849 4.861172e-06 8.143123e-05
## TOR2A -7.4331816 1.410818e+01 -4.782513 4.868022e-06 8.143123e-05
## SDF4 -16.9740190 4.612987e+01 -4.781479 4.889161e-06 8.166965e-05
## RIC1 22.6366968 4.648304e+01 4.780860 4.901863e-06 8.176666e-05
## SOS1 15.8720075 3.596716e+01 4.780091 4.917679e-06 8.191528e-05
## INTS7 2.7334185 8.363574e+00 4.778197 4.956877e-06 8.240204e-05
## RPL32 -555.9875177 7.569707e+02 -4.778008 4.960797e-06 8.240204e-05
## RPL23A -392.3991071 5.566685e+02 -4.777622 4.968828e-06 8.242001e-05
## MMP24OS -22.3398171 3.034755e+01 -4.773495 5.055446e-06 8.373964e-05
## NR1H2 -18.3568098 3.380674e+01 -4.771030 5.107907e-06 8.449062e-05
## ACD -5.4588631 8.312843e+00 -4.770695 5.115074e-06 8.449133e-05
## STUB1 -23.4143144 2.941626e+01 -4.767500 5.183917e-06 8.542002e-05
## C19orf25 -8.4261629 9.995925e+00 -4.767418 5.185701e-06 8.542002e-05
## SOWAHD -3.7774837 6.818966e+00 -4.766486 5.205956e-06 8.552846e-05
## RXRA -64.3385848 1.622886e+02 -4.766451 5.206707e-06 8.552846e-05
## SETD2 33.1085475 8.511057e+01 4.765647 5.224262e-06 8.569813e-05
## FAAP20 -5.5841750 6.403650e+00 -4.765165 5.234792e-06 8.575226e-05
## TPT1 -1373.4090646 2.890233e+03 -4.764054 5.259187e-06 8.603305e-05
## BOD1 -4.3610802 9.862066e+00 -4.762800 5.286838e-06 8.636625e-05
## CIT 1.2575276 1.329366e+00 4.762054 5.303349e-06 8.651680e-05
## NELFB -10.7755980 2.089472e+01 -4.759322 5.364258e-06 8.739025e-05
## BRIP1 1.1221354 2.504174e+00 4.758797 5.376040e-06 8.740804e-05
## RPS20 -544.0821064 6.199251e+02 -4.758617 5.380090e-06 8.740804e-05
## LIN9 0.9145640 1.900948e+00 4.757820 5.398036e-06 8.757963e-05
## CAPS -4.0855571 3.179834e+00 -4.756353 5.431223e-06 8.799768e-05
## AIP -23.3228736 4.099780e+01 -4.755236 5.456628e-06 8.828869e-05
## RPS5 -273.5109981 3.041199e+02 -4.753861 5.488058e-06 8.867625e-05
## RNF126 -4.4613399 5.363808e+00 -4.753392 5.498828e-06 8.872938e-05
## CDCA8 2.9859430 4.144365e+00 4.751657 5.538806e-06 8.925304e-05
## EEF1B2 -172.1485514 3.136372e+02 -4.750798 5.558711e-06 8.945226e-05
## NHLRC2 4.0119892 1.106596e+01 4.747080 5.645643e-06 9.072330e-05
## JUNB -151.7851511 1.695710e+02 -4.746768 5.652995e-06 9.072330e-05
## STON1 1.0653603 1.746819e+00 4.746334 5.663239e-06 9.076489e-05
## CACTIN -3.6622758 5.544140e+00 -4.742830 5.746639e-06 9.194986e-05
## MED1 13.3783168 3.488881e+01 4.742358 5.757964e-06 9.194986e-05
## TBC1D10B -30.1346873 6.165357e+01 -4.742255 5.760434e-06 9.194986e-05
## S1PR4 -97.7984226 8.645349e+01 -4.740012 5.814555e-06 9.268901e-05
## FAM98C -5.3455597 9.498352e+00 -4.739082 5.837135e-06 9.292406e-05
## SLC35F2 2.0132321 3.301884e+00 4.737650 5.872095e-06 9.327545e-05
## NUMA1 -21.3970739 6.524004e+01 -4.737533 5.874938e-06 9.327545e-05
## THEM6 -3.2400483 3.528391e+00 -4.735340 5.928877e-06 9.400599e-05
## RPL5 -293.1192456 6.126065e+02 -4.730899 6.039589e-06 9.562201e-05
## HSPA1A -114.9118109 1.697230e+02 -4.730498 6.049678e-06 9.562201e-05
## NELFA -1.7209781 4.133731e+00 -4.730287 6.054986e-06 9.562201e-05
## KLHDC3 -25.0721132 5.692648e+01 -4.729631 6.071548e-06 9.575607e-05
## HAUS7 -5.0194996 6.169819e+00 -4.728617 6.097241e-06 9.585751e-05
## PARP6 13.7960524 4.794632e+01 4.728604 6.097567e-06 9.585751e-05
## BIRC6 35.1878592 7.190745e+01 4.728205 6.107700e-06 9.585751e-05
## PAICS 8.4108392 2.055779e+01 4.728102 6.110310e-06 9.585751e-05
## SF3A2 -9.8703284 1.103003e+01 -4.727101 6.135832e-06 9.613074e-05
## SLC9A3R1 -78.9962637 1.637925e+02 -4.725076 6.187753e-06 9.681630e-05
## CIAO3 -5.5321340 6.969813e+00 -4.724406 6.205037e-06 9.695881e-05
## SERPINH1 -2.2141131 2.296805e+00 -4.723096 6.238936e-06 9.736023e-05
## SDHAF1 -4.4142032 6.307657e+00 -4.722378 6.257606e-06 9.752327e-05
## WBP1 -22.0422117 4.403225e+01 -4.719304 6.338102e-06 9.864815e-05
## RABEP2 -4.7638045 4.150292e+00 -4.718215 6.366880e-06 9.896618e-05
## FAM3A -8.6858486 1.098795e+01 -4.717331 6.390320e-06 9.920051e-05
## PPM1J -0.7200157 8.856314e-01 -4.716672 6.407828e-06 9.934227e-05
## CSNK2B -31.4409280 8.004811e+01 -4.716112 6.422772e-06 9.944397e-05
## DBNL -109.1464212 2.778256e+02 -4.715366 6.442723e-06 9.962281e-05
## LAMTOR2 -25.3999309 3.675093e+01 -4.714643 6.462089e-06 9.966477e-05
## SH2D3A -2.2392742 2.920412e+00 -4.714638 6.462244e-06 9.966477e-05
## CENPL 0.8020634 2.131621e+00 4.713369 6.496384e-06 9.987706e-05
## ZNF428 -4.5859675 5.318681e+00 -4.713097 6.503748e-06 9.987706e-05
## RAB3IP 6.6239673 1.368427e+01 4.712920 6.508512e-06 9.987706e-05
## TSC22D4 -63.3945102 1.116143e+02 -4.712877 6.509694e-06 9.987706e-05
## RANBP3 -9.2317752 2.980396e+01 -4.712360 6.523686e-06 9.996243e-05
## EVI5L -2.7030755 4.592831e+00 -4.710084 6.585655e-06 1.006893e-04
## FKBP8 -323.0413261 3.546305e+02 -4.709802 6.593349e-06 1.006893e-04
## RPLP1 -422.1922069 3.387761e+02 -4.709684 6.596593e-06 1.006893e-04
## MTFR2 0.8303577 1.739175e+00 4.708955 6.616581e-06 1.008646e-04
## TOPBP1 16.8831306 4.816746e+01 4.707593 6.654102e-06 1.013064e-04
## RAB4B -23.0621803 3.842153e+01 -4.707271 6.663005e-06 1.013118e-04
## ZNF444 -5.1755459 5.833269e+00 -4.705506 6.712008e-06 1.018086e-04
## ROCK2 15.9476811 2.984139e+01 4.705476 6.712847e-06 1.018086e-04
## GIMAP1-GIMAP5 -22.5691898 3.764135e+01 -4.704704 6.734392e-06 1.020050e-04
## H2BC11 1.9068829 3.239165e+00 4.702241 6.803550e-06 1.027895e-04
## LTBP4 -3.2054431 3.915807e+00 -4.702099 6.807565e-06 1.027895e-04
## CLEC10A -13.1211997 1.104050e+01 -4.701935 6.812186e-06 1.027895e-04
## CSRP1 -22.0423035 5.188594e+01 -4.701457 6.825708e-06 1.028626e-04
## TLK1 31.8570535 7.687831e+01 4.700689 6.847483e-06 1.030598e-04
## ICAM3 -388.3218054 6.793966e+02 -4.699946 6.868640e-06 1.032472e-04
## COX4I1 -204.9338706 3.397489e+02 -4.699378 6.884821e-06 1.033043e-04
## EPB41L5 2.2887025 4.358731e+00 4.699202 6.889858e-06 1.033043e-04
## KCNAB2 -27.9846112 1.084747e+02 -4.698358 6.913993e-06 1.034345e-04
## PELATON -82.2889512 1.215682e+02 -4.697936 6.926110e-06 1.034345e-04
## INCENP 1.3324592 2.695294e+00 4.697935 6.926153e-06 1.034345e-04
## FOXM1 4.0672258 4.901730e+00 4.697682 6.933422e-06 1.034345e-04
## LYRM9 -2.0469356 4.286510e+00 -4.696676 6.962401e-06 1.037363e-04
## MEGF8 -1.9959098 5.122226e+00 -4.694550 7.024022e-06 1.045231e-04
## SUZ12 19.9548654 5.628733e+01 4.692470 7.084816e-06 1.052128e-04
## RPS25 -260.9000067 4.875764e+02 -4.692358 7.088111e-06 1.052128e-04
## TCF25 -26.9968343 6.821969e+01 -4.691314 7.118830e-06 1.054355e-04
## NSF 14.8104627 4.643718e+01 4.691244 7.120899e-06 1.054355e-04
## KCTD17 -5.8342935 6.639303e+00 -4.690609 7.139654e-06 1.055497e-04
## PNPLA7 -1.1818121 1.013381e+00 -4.690017 7.157179e-06 1.055497e-04
## ANKIB1 9.7818086 2.255026e+01 4.690016 7.157192e-06 1.055497e-04
## GPAA1 -19.7804472 2.123605e+01 -4.689780 7.164206e-06 1.055497e-04
## DHPS -7.3958012 2.445493e+01 -4.689431 7.174573e-06 1.055713e-04
## SCAND1 -5.5191571 4.666259e+00 -4.688494 7.202447e-06 1.058501e-04
## RASA4 -17.6563163 2.263613e+01 -4.688193 7.211426e-06 1.058509e-04
## RPL27 -314.2477773 5.364111e+02 -4.687588 7.229531e-06 1.059855e-04
## KIFC1 3.6279214 3.895032e+00 4.685386 7.295725e-06 1.065764e-04
## XPNPEP3 2.0360481 9.121096e+00 4.685352 7.296748e-06 1.065764e-04
## ZNF784 -4.1903084 6.822751e+00 -4.685290 7.298645e-06 1.065764e-04
## CUEDC2 -15.9257306 3.129498e+01 -4.685053 7.305787e-06 1.065764e-04
## MAP3K11 -50.2955843 8.308636e+01 -4.683979 7.338329e-06 1.069196e-04
## RWDD1 -10.5406829 2.810940e+01 -4.681804 7.404675e-06 1.076925e-04
## SPC25 1.7033845 2.387813e+00 4.681300 7.420154e-06 1.076925e-04
## FOXP4 -2.1077380 3.184719e+00 -4.681211 7.422882e-06 1.076925e-04
## CASP3 15.6138434 5.589537e+01 4.680873 7.433259e-06 1.076925e-04
## GTPBP6 -7.8492847 7.632038e+00 -4.680580 7.442274e-06 1.076925e-04
## TNK2 -25.5454445 4.660747e+01 -4.680367 7.448820e-06 1.076925e-04
## ENTPD4 24.6602974 7.385286e+01 4.679875 7.464013e-06 1.076925e-04
## UBOX5 -5.0410254 1.442422e+01 -4.679875 7.464020e-06 1.076925e-04
## APEH -31.6640744 7.373473e+01 -4.678918 7.493608e-06 1.079881e-04
## RBBP8 4.3769389 1.393609e+01 4.678046 7.520685e-06 1.082468e-04
## IGFLR1 -37.4914783 5.324574e+01 -4.677721 7.530808e-06 1.082611e-04
## SUCNR1 3.7974083 3.860900e+00 4.677341 7.542623e-06 1.082996e-04
## TBC1D20 11.6266499 5.433277e+01 4.675751 7.592387e-06 1.088824e-04
## SMARCD2 -27.3200438 1.008590e+02 -4.674609 7.628319e-06 1.092655e-04
## WDR70 -5.6439681 1.612595e+01 -4.673958 7.648869e-06 1.094277e-04
## LMF2 -23.0537188 2.634210e+01 -4.673203 7.672754e-06 1.095453e-04
## LTBP3 -6.6674070 7.196099e+00 -4.673115 7.675561e-06 1.095453e-04
## INO80D 12.8905801 2.880287e+01 4.672633 7.690858e-06 1.095827e-04
## PRKCSH -41.6444061 9.262552e+01 -4.672450 7.696660e-06 1.095827e-04
## PIP4K2A 25.9200851 1.349147e+02 4.671218 7.735970e-06 1.100103e-04
## RPS27A -503.7829130 8.250003e+02 -4.670302 7.765291e-06 1.102950e-04
## AP5Z1 -12.5169418 2.355558e+01 -4.668598 7.820134e-06 1.109411e-04
## SMC3 15.2364817 4.415372e+01 4.666893 7.875385e-06 1.115915e-04
## EIF3K -90.4269811 1.420417e+02 -4.666369 7.892454e-06 1.116239e-04
## CBX8 -1.5761780 2.949253e+00 -4.666245 7.896495e-06 1.116239e-04
## FLT3LG -12.1752984 1.002819e+01 -4.665805 7.910851e-06 1.116937e-04
## SLC25A28 -21.0266845 4.201629e+01 -4.664904 7.940334e-06 1.118557e-04
## TMEM53 -0.6387837 9.642774e-01 -4.664877 7.941192e-06 1.118557e-04
## CCDC124 -6.4368698 6.240660e+00 -4.663496 7.986589e-06 1.123383e-04
## SEMA4C -3.0626213 4.868428e+00 -4.663260 7.994393e-06 1.123383e-04
## XK 7.5700670 1.068010e+01 4.662723 8.012106e-06 1.124539e-04
## MCRS1 -19.5802257 4.663987e+01 -4.661694 8.046227e-06 1.127993e-04
## SIVA1 -4.7564606 3.976360e+00 -4.659731 8.111643e-06 1.135822e-04
## EDRF1 3.7549348 1.457291e+01 4.659098 8.132848e-06 1.137448e-04
## NPDC1 -3.3781124 2.348900e+00 -4.658619 8.148917e-06 1.138353e-04
## CDH13 -0.7691518 1.223656e+00 -4.658131 8.165360e-06 1.139308e-04
## CRTAP -41.7739013 1.004140e+02 -4.657561 8.184579e-06 1.140648e-04
## PPAN -3.7034527 5.320803e+00 -4.656953 8.205121e-06 1.142168e-04
## CFD -24.3609612 2.060355e+01 -4.655055 8.269559e-06 1.149789e-04
## USF2 -34.5491161 9.784618e+01 -4.650918 8.411792e-06 1.168195e-04
## GSTK1 -84.7234487 2.186417e+02 -4.649964 8.444913e-06 1.171423e-04
## PPP2R3B -3.4055494 4.742568e+00 -4.649480 8.461747e-06 1.172387e-04
## SELENOO -9.8508978 1.127924e+01 -4.648841 8.484077e-06 1.172613e-04
## CDK9 -11.7575369 3.864615e+01 -4.648800 8.485511e-06 1.172613e-04
## RPL35 -254.9375116 2.659602e+02 -4.648358 8.500957e-06 1.172613e-04
## ORC6 1.0066652 1.587685e+00 4.648138 8.508647e-06 1.172613e-04
## RPS17 -370.4010960 5.248163e+02 -4.648020 8.512817e-06 1.172613e-04
## DPP7 -34.3700260 2.498545e+01 -4.647673 8.524968e-06 1.172925e-04
## BCAP31 -72.5531378 1.461989e+02 -4.643994 8.655111e-06 1.189451e-04
## TNIK 6.8363870 1.449295e+01 4.643314 8.679352e-06 1.191402e-04
## PCLAF 7.1772283 8.655233e+00 4.641641 8.739305e-06 1.197407e-04
## STK10 -87.9872917 3.211683e+02 -4.641531 8.743291e-06 1.197407e-04
## RPL10A -220.6049952 3.855645e+02 -4.639880 8.802872e-06 1.204176e-04
## TRMT2A -12.7691159 1.576644e+01 -4.639418 8.819616e-06 1.205077e-04
## SH3TC2 2.5797805 3.758019e+00 4.638647 8.847627e-06 1.206905e-04
## PEAK1 6.1158750 1.193587e+01 4.638490 8.853348e-06 1.206905e-04
## BRD9 -7.0303213 1.974526e+01 -4.637388 8.893573e-06 1.210546e-04
## RPL38 -190.0912517 2.303508e+02 -4.637199 8.900477e-06 1.210546e-04
## DUS3L -2.6235353 3.230816e+00 -4.636641 8.920940e-06 1.211940e-04
## MCFD2 13.4843390 4.247083e+01 4.636322 8.932643e-06 1.212141e-04
## KRI1 -12.7033345 2.320893e+01 -4.635910 8.947782e-06 1.212808e-04
## PRR14L 21.5995217 4.775455e+01 4.635597 8.959299e-06 1.212983e-04
## SERF2 -331.0780346 4.475110e+02 -4.635237 8.972570e-06 1.213394e-04
## FPGS -9.3141411 1.260087e+01 -4.634580 8.996862e-06 1.215294e-04
## FSCN1 -0.8111839 1.136395e+00 -4.633792 9.026048e-06 1.217849e-04
## MED15 -14.6075278 3.682910e+01 -4.632114 9.088509e-06 1.224883e-04
## GET4 -10.0200761 1.780252e+01 -4.628864 9.210691e-06 1.239941e-04
## C11orf49 -1.5188982 3.427721e+00 -4.628564 9.222052e-06 1.240063e-04
## BABAM2 -7.9736103 2.734741e+01 -4.626056 9.317532e-06 1.251246e-04
## TAF2 6.5565364 1.564937e+01 4.625461 9.340327e-06 1.251246e-04
## ASB13 -4.0995632 8.068603e+00 -4.625298 9.346592e-06 1.251246e-04
## BPTF 22.3487548 4.924442e+01 4.625276 9.347417e-06 1.251246e-04
## TMEM141 -17.5621281 2.084994e+01 -4.624676 9.370470e-06 1.252917e-04
## NNT 9.0052643 3.187482e+01 4.623073 9.432357e-06 1.259772e-04
## HSF1 -6.9652142 1.526797e+01 -4.622782 9.443634e-06 1.259859e-04
## CCS -15.0716073 1.625326e+01 -4.619438 9.574127e-06 1.275833e-04
## MAPK9 4.4268273 2.051185e+01 4.617849 9.636716e-06 1.282732e-04
## RABEPK -4.8610138 1.522785e+01 -4.615182 9.742721e-06 1.295389e-04
## MPHOSPH9 3.5670803 7.194862e+00 4.614526 9.768960e-06 1.297423e-04
## RBM42 -18.2786765 2.330363e+01 -4.613629 9.804938e-06 1.300745e-04
## LRP8 2.0593338 5.351551e+00 4.612778 9.839208e-06 1.303832e-04
## MMP14 -2.8214807 3.941682e+00 -4.610713 9.922809e-06 1.313443e-04
## CDIP1 -9.9874881 1.878473e+01 -4.608838 9.999355e-06 1.321009e-04
## DHX15 14.5212282 5.893604e+01 4.608767 1.000224e-05 1.321009e-04
## KCNN4 -9.0771917 1.033067e+01 -4.608130 1.002841e-05 1.322991e-04
## FHOD1 -16.6912386 4.207058e+01 -4.607288 1.006302e-05 1.326083e-04
## DBP -2.3534387 3.415151e+00 -4.606006 1.011602e-05 1.331588e-04
## PES1 -14.6714382 2.375141e+01 -4.605724 1.012771e-05 1.331648e-04
## HGH1 -6.0458363 7.169800e+00 -4.602789 1.025015e-05 1.346254e-04
## NEK2 1.6667928 1.748322e+00 4.602438 1.026489e-05 1.346699e-04
## KIF20B 2.7377613 5.553991e+00 4.599853 1.037407e-05 1.359519e-04
## MAP3K14 -9.5210236 1.994426e+01 -4.599418 1.039254e-05 1.360436e-04
## FBXL15 -2.7019790 2.371857e+00 -4.598688 1.042361e-05 1.362999e-04
## MIB2 -2.8694533 3.460727e+00 -4.598025 1.045192e-05 1.365196e-04
## BBX 16.8266582 3.457360e+01 4.597635 1.046863e-05 1.365874e-04
## ANAPC1 10.4177448 4.388257e+01 4.591650 1.072794e-05 1.398169e-04
## RPL17 -392.0598984 7.536195e+02 -4.590865 1.076243e-05 1.401125e-04
## VEGFB -8.4033441 7.137093e+00 -4.590184 1.079245e-05 1.402730e-04
## PLOD3 -6.3798086 1.374470e+01 -4.590048 1.079842e-05 1.402730e-04
## PATL1 44.8524042 9.050442e+01 4.589555 1.082021e-05 1.402983e-04
## GGA1 -17.7822979 3.310172e+01 -4.589468 1.082403e-05 1.402983e-04
## RPS7 -271.0153366 5.779519e+02 -4.588977 1.084579e-05 1.404269e-04
## NEURL4 -5.0434718 1.358058e+01 -4.588604 1.086231e-05 1.404874e-04
## CBY1 -1.5729893 4.702091e+00 -4.587877 1.089463e-05 1.407519e-04
## CHD1L 5.2337963 1.843546e+01 4.587168 1.092623e-05 1.410066e-04
## PSMG3 -8.7067735 1.167551e+01 -4.586597 1.095173e-05 1.411821e-04
## MYCBP2 32.3358678 6.689463e+01 4.585299 1.100995e-05 1.417785e-04
## PEX13 4.1679459 1.442421e+01 4.584630 1.104006e-05 1.420121e-04
## RPS16 -368.0462643 3.986775e+02 -4.583378 1.109667e-05 1.425856e-04
## CEP295 5.8958257 1.548510e+01 4.580900 1.120948e-05 1.437401e-04
## KIF18B 1.2674917 2.002096e+00 4.580682 1.121945e-05 1.437401e-04
## TPCN1 -9.1895973 1.895048e+01 -4.580607 1.122288e-05 1.437401e-04
## NUBP2 -7.4757917 6.268246e+00 -4.578719 1.130969e-05 1.444730e-04
## ARID1B 9.9061468 2.962887e+01 4.578702 1.131046e-05 1.444730e-04
## SPG11 53.7175338 1.212577e+02 4.578568 1.131664e-05 1.444730e-04
## TEX264 -20.4461891 3.376475e+01 -4.576560 1.140971e-05 1.455045e-04
## MKLN1 34.4640638 8.586137e+01 4.575556 1.145651e-05 1.459444e-04
## CMC4 -1.9100847 4.140022e+00 -4.573077 1.157291e-05 1.471975e-04
## LRRC23 -1.6275718 2.637460e+00 -4.572901 1.158123e-05 1.471975e-04
## CSNK1G1 8.1457735 2.278862e+01 4.572433 1.160334e-05 1.471975e-04
## TMEM179B -7.6016925 2.938063e+01 -4.572187 1.161497e-05 1.471975e-04
## GRK6 -110.0945471 2.211526e+02 -4.572146 1.161694e-05 1.471975e-04
## SRPRA 20.6696754 1.257673e+02 4.569492 1.174328e-05 1.486395e-04
## EPG5 29.0249115 5.076223e+01 4.568740 1.177929e-05 1.489364e-04
## ELOF1 -16.4331664 3.308626e+01 -4.567466 1.184059e-05 1.495521e-04
## LRCH4 -54.3661461 1.139145e+02 -4.566860 1.186988e-05 1.497625e-04
## NSD3 40.1332048 9.646241e+01 4.565152 1.195274e-05 1.506477e-04
## LRRC37A3 3.0263424 6.371172e+00 4.562967 1.205953e-05 1.517164e-04
## KATNAL1 1.3095303 3.879421e+00 4.562887 1.206348e-05 1.517164e-04
## PRUNE1 15.3329034 4.397889e+01 4.562301 1.209229e-05 1.517164e-04
## SLC29A3 -2.4244392 4.857206e+00 -4.562174 1.209853e-05 1.517164e-04
## ACADVL -57.6010434 1.710647e+02 -4.561881 1.211295e-05 1.517164e-04
## ASMTL -7.9628927 1.662093e+01 -4.561854 1.211429e-05 1.517164e-04
## CAPN15 -4.0904819 5.202729e+00 -4.561589 1.212735e-05 1.517198e-04
## RPL7 -576.9465687 1.020900e+03 -4.561095 1.215180e-05 1.518654e-04
## RPLP0 -716.9058242 1.012390e+03 -4.560476 1.218241e-05 1.520878e-04
## DLG1 6.6688541 1.788671e+01 4.559834 1.221429e-05 1.523255e-04
## COASY -22.4691868 4.948381e+01 -4.556977 1.235710e-05 1.539446e-04
## GINS2 3.6124164 4.211891e+00 4.556342 1.238904e-05 1.541805e-04
## LSM8 -9.8854488 3.452969e+01 -4.555838 1.241448e-05 1.541850e-04
## ECHS1 -10.7607711 1.847767e+01 -4.555820 1.241540e-05 1.541850e-04
## SENP2 11.3954806 3.246777e+01 4.555061 1.245376e-05 1.544995e-04
## ALG11 6.2616565 1.672117e+01 4.554210 1.249694e-05 1.545977e-04
## MED9 -2.1457106 6.636698e+00 -4.554155 1.249973e-05 1.545977e-04
## NAGPA -6.9053008 9.030750e+00 -4.554135 1.250077e-05 1.545977e-04
## LRRC47 -6.8886781 2.235072e+01 -4.553275 1.254455e-05 1.549775e-04
## ESPL1 1.5117093 1.738439e+00 4.551888 1.261547e-05 1.556616e-04
## ZNF580 -5.9409028 7.745392e+00 -4.551679 1.262618e-05 1.556616e-04
## JAML -653.4630203 1.197389e+03 -4.551120 1.265491e-05 1.557568e-04
## PLXNB2 -30.2476390 4.299010e+01 -4.551018 1.266017e-05 1.557568e-04
## TBCD -10.9272968 2.108134e+01 -4.550166 1.270407e-05 1.559355e-04
## PSMG4 -2.1048655 4.468802e+00 -4.550114 1.270679e-05 1.559355e-04
## PPP1CA -98.4145335 2.112399e+02 -4.549971 1.271413e-05 1.559355e-04
## NADSYN1 -25.7888481 7.232743e+01 -4.548646 1.278281e-05 1.566158e-04
## THAP7 -4.6565166 4.236115e+00 -4.547701 1.283196e-05 1.569831e-04
## LATS2 9.8352340 1.903370e+01 4.547561 1.283926e-05 1.569831e-04
## RAD51AP1 1.9734394 2.255727e+00 4.545461 1.294924e-05 1.581648e-04
## PUSL1 -3.0704685 3.141627e+00 -4.544671 1.299086e-05 1.585099e-04
## RHOF -17.2736155 3.008967e+01 -4.543909 1.303110e-05 1.585569e-04
## CYBC1 -114.0184741 1.942781e+02 -4.543843 1.303462e-05 1.585569e-04
## TNF -5.6355231 1.049249e+01 -4.543839 1.303482e-05 1.585569e-04
## INTS4 3.9312392 2.197453e+01 4.542666 1.309702e-05 1.591503e-04
## XPO7 19.1074268 4.926980e+01 4.542039 1.313042e-05 1.593928e-04
## ZBTB22 -9.8465377 2.735622e+01 -4.540885 1.319206e-05 1.598265e-04
## ALKBH2 -1.9051349 3.203358e+00 -4.540767 1.319840e-05 1.598265e-04
## SETX 75.8660823 1.878250e+02 4.540614 1.320658e-05 1.598265e-04
## TYROBP -392.2205141 6.529630e+02 -4.540023 1.323828e-05 1.600469e-04
## BORCS6 -12.7910133 1.692804e+01 -4.538437 1.332377e-05 1.609164e-04
## ESRRA -8.2859500 2.287860e+01 -4.537672 1.336518e-05 1.612523e-04
## HLA-DRB1 -315.0801386 3.976591e+02 -4.537112 1.339558e-05 1.614549e-04
## TPI1 -171.9794190 3.607991e+02 -4.536244 1.344282e-05 1.618330e-04
## ARCN1 25.6679981 1.004514e+02 4.536035 1.345424e-05 1.618330e-04
## EDEM3 37.0674847 7.418345e+01 4.535272 1.349595e-05 1.620770e-04
## TYMP -180.7352514 1.938283e+02 -4.535164 1.350186e-05 1.620770e-04
## ATP6V0E2 -7.5708594 8.987266e+00 -4.533207 1.360943e-05 1.632031e-04
## RPL18 -283.4117316 3.225091e+02 -4.532697 1.363758e-05 1.633321e-04
## DHRS4 -10.0928228 1.587576e+01 -4.532513 1.364773e-05 1.633321e-04
## HSF4 -1.4789330 2.233804e+00 -4.531501 1.370387e-05 1.638386e-04
## MAPK11 -3.7470900 3.276328e+00 -4.530974 1.373317e-05 1.640236e-04
## BTF3 -62.6258946 2.373983e+02 -4.529062 1.383996e-05 1.651327e-04
## NFATC1 -4.5842840 1.200746e+01 -4.525880 1.401950e-05 1.671068e-04
## PPP1R37 -2.1697986 3.768274e+00 -4.524992 1.407003e-05 1.674564e-04
## C9orf16 -16.1920319 1.389679e+01 -4.524869 1.407707e-05 1.674564e-04
## YDJC -3.0295896 4.389892e+00 -4.523898 1.413253e-05 1.679477e-04
## RPS10 -443.5006180 5.866406e+02 -4.523536 1.415322e-05 1.680252e-04
## TNKS2 31.1181833 7.444453e+01 4.522138 1.423357e-05 1.688101e-04
## SPG7 -13.0941043 3.092756e+01 -4.521764 1.425511e-05 1.688967e-04
## ARHGAP21 11.8768480 2.269131e+01 4.520602 1.432233e-05 1.695238e-04
## RALGAPB 18.9727676 5.390568e+01 4.519614 1.437968e-05 1.700330e-04
## B3GALT4 -11.3973144 1.684980e+01 -4.518313 1.445560e-05 1.707064e-04
## INTS9 -2.3308106 1.000025e+01 -4.518145 1.446543e-05 1.707064e-04
## PPP1R32 -1.0132520 1.814344e+00 -4.517775 1.448713e-05 1.707925e-04
## CD38 17.9718497 2.185368e+01 4.516910 1.453786e-05 1.712205e-04
## ALDH16A1 -7.3738709 7.824351e+00 -4.516393 1.456829e-05 1.714087e-04
## HLA-DMA -46.2998408 7.506412e+01 -4.514397 1.468637e-05 1.726267e-04
## SMG1 78.3090005 1.639072e+02 4.513846 1.471915e-05 1.728407e-04
## C17orf49 -28.5566972 4.899262e+01 -4.512654 1.479024e-05 1.735037e-04
## PYGB -15.4790889 3.795660e+01 -4.509502 1.497986e-05 1.755545e-04
## SLC25A29 -10.8182590 1.768666e+01 -4.508428 1.504500e-05 1.760992e-04
## UBXN2A 2.5367650 8.049690e+00 4.508225 1.505734e-05 1.760992e-04
## CENPK 2.5890984 3.789117e+00 4.508003 1.507088e-05 1.760992e-04
## TMEM64 3.2534312 1.042728e+01 4.507633 1.509343e-05 1.761890e-04
## CCDC93 16.8752247 4.769011e+01 4.507346 1.511094e-05 1.762200e-04
## SKA1 2.2088568 2.946798e+00 4.506889 1.513884e-05 1.762745e-04
## TRIM28 -31.4980783 5.913307e+01 -4.506783 1.514534e-05 1.762745e-04
## TAPBP -115.6065914 2.464338e+02 -4.505332 1.523433e-05 1.770105e-04
## ARHGAP1 -19.6509164 7.660466e+01 -4.505266 1.523843e-05 1.770105e-04
## KLRB1 -36.2099692 4.120303e+01 -4.504765 1.526926e-05 1.771952e-04
## ATP6V1F -29.4383022 5.748247e+01 -4.504438 1.528944e-05 1.772559e-04
## RBMX2 -7.0576746 1.831858e+01 -4.503463 1.534973e-05 1.776098e-04
## RPL29 -233.9865549 4.046779e+02 -4.503442 1.535103e-05 1.776098e-04
## SIK3 13.4176529 5.527531e+01 4.503219 1.536489e-05 1.776098e-04
## NUDT16L1 -8.9664163 1.700588e+01 -4.502136 1.543219e-05 1.781619e-04
## PEX14 -1.9415267 3.735753e+00 -4.501968 1.544270e-05 1.781619e-04
## ZBTB47 -4.1709279 1.085733e+01 -4.501627 1.546397e-05 1.782338e-04
## ATF6B -14.5640482 7.748992e+01 -4.501117 1.549578e-05 1.784271e-04
## GUK1 -52.0764107 6.148328e+01 -4.500514 1.553357e-05 1.786888e-04
## GATA2 -3.6860089 4.237327e+00 -4.499447 1.560056e-05 1.792788e-04
## CNOT1 39.0683562 1.413727e+02 4.499217 1.561509e-05 1.792788e-04
## UBR7 4.6311940 2.258471e+01 4.498818 1.564021e-05 1.793935e-04
## COPS7A -7.9491846 3.298952e+01 -4.498078 1.568698e-05 1.796325e-04
## C12orf75 11.5622527 1.883601e+01 4.498009 1.569134e-05 1.796325e-04
## CCDC115 -7.7816271 2.770323e+01 -4.497203 1.574244e-05 1.800438e-04
## ERF -9.8559287 1.976245e+01 -4.496664 1.577673e-05 1.801724e-04
## WASF1 2.0847603 3.100667e+00 4.496346 1.579698e-05 1.801724e-04
## CEP76 0.8019232 2.212199e+00 4.496310 1.579927e-05 1.801724e-04
## PCGF5 26.3867706 5.694832e+01 4.495245 1.586730e-05 1.807744e-04
## LANCL3 1.3305343 2.256862e+00 4.490988 1.614194e-05 1.837269e-04
## CIB1 -42.9926618 7.120905e+01 -4.490445 1.617727e-05 1.838490e-04
## RPRD2 8.6016127 2.670022e+01 4.490347 1.618367e-05 1.838490e-04
## MGMT -5.9130224 5.498776e+00 -4.489017 1.627066e-05 1.846603e-04
## SLC25A45 -4.0444652 7.124357e+00 -4.488567 1.630019e-05 1.847340e-04
## WDR13 -20.8996804 3.330578e+01 -4.488443 1.630830e-05 1.847340e-04
## SIRT6 -7.3972266 8.585883e+00 -4.486312 1.644888e-05 1.861486e-04
## VAV2 -3.6942301 8.208061e+00 -4.483556 1.663250e-05 1.878727e-04
## FAF2 7.1442204 3.122031e+01 4.483550 1.663291e-05 1.878727e-04
## EPB41 64.8736682 1.634100e+02 4.483026 1.666803e-05 1.880902e-04
## PHKG2 -20.8244414 3.977870e+01 -4.482360 1.671272e-05 1.884153e-04
## UHRF2 7.6363333 3.005601e+01 4.481835 1.674807e-05 1.884606e-04
## UXT -25.4898498 4.278123e+01 -4.481829 1.674852e-05 1.884606e-04
## LMAN1 21.5240904 2.938228e+01 4.480707 1.682429e-05 1.890146e-04
## RPL9 -787.3063161 1.129985e+03 -4.480628 1.682963e-05 1.890146e-04
## ROGDI -28.6017823 3.294670e+01 -4.479130 1.693140e-05 1.899777e-04
## KRBA1 -1.2501851 2.329323e+00 -4.478120 1.700032e-05 1.904620e-04
## TSPO -138.9515468 1.217790e+02 -4.478027 1.700669e-05 1.904620e-04
## VPS39 19.0441431 9.002657e+01 4.477316 1.705540e-05 1.908274e-04
## AURKA 2.8877287 4.470423e+00 4.476320 1.712389e-05 1.914131e-04
## B3GAT3 -16.0284797 1.835872e+01 -4.475877 1.715443e-05 1.915740e-04
## CCDC96 -0.6405303 1.130881e+00 -4.474516 1.724852e-05 1.924435e-04
## BRICD5 -1.3407739 1.341393e+00 -4.473120 1.734561e-05 1.933449e-04
## CFAP36 -3.2521248 8.554080e+00 -4.470793 1.750864e-05 1.949788e-04
## SMIM29 -12.0123527 1.803404e+01 -4.470241 1.754748e-05 1.952280e-04
## EFR3A 22.9655403 5.636296e+01 4.468941 1.763943e-05 1.960671e-04
## ANO6 25.9731413 5.733702e+01 4.465975 1.785080e-05 1.982308e-04
## FBXO34 13.3865163 2.824598e+01 4.465490 1.788563e-05 1.984123e-04
## CCDC134 2.9862891 8.867526e+00 4.465281 1.790060e-05 1.984123e-04
## SMG9 -7.2708065 1.302365e+01 -4.464730 1.794025e-05 1.984279e-04
## GNA15 -13.3250334 2.381137e+01 -4.464632 1.794732e-05 1.984279e-04
## MFSD12 -7.6903185 9.787782e+00 -4.464564 1.795220e-05 1.984279e-04
## STXBP2 -141.1853621 2.493379e+02 -4.462661 1.808988e-05 1.997635e-04
## FRMD3 10.1130227 1.583204e+01 4.461987 1.813891e-05 2.001186e-04
## RPS6KB1 6.4954304 2.593115e+01 4.460911 1.821741e-05 2.004937e-04
## TCEA2 -2.3108691 2.814431e+00 -4.460897 1.821841e-05 2.004937e-04
## PI16 -2.7679828 2.062281e+00 -4.460826 1.822363e-05 2.004937e-04
## TOMM7 -101.7759837 1.460260e+02 -4.457709 1.845291e-05 2.027279e-04
## TIPIN 0.9851390 2.310445e+00 4.457602 1.846089e-05 2.027279e-04
## ALKBH7 -6.1498900 4.973667e+00 -4.456894 1.851337e-05 2.031161e-04
## RPS3A -1062.3716015 1.531365e+03 -4.455314 1.863104e-05 2.042183e-04
## PLSCR3 -17.3401948 2.927789e+01 -4.453857 1.874020e-05 2.051029e-04
## TARS1 9.5054111 3.090826e+01 4.453775 1.874633e-05 2.051029e-04
## CHMP4B -49.5855867 1.371259e+02 -4.453534 1.876444e-05 2.051118e-04
## SNAPC4 -2.2841174 5.430458e+00 -4.450897 1.896381e-05 2.069159e-04
## ZNF500 -2.2127428 4.895895e+00 -4.450705 1.897843e-05 2.069159e-04
## GINS3 1.0012322 2.159317e+00 4.450660 1.898183e-05 2.069159e-04
## NIBAN2 -14.2622807 2.647380e+01 -4.449949 1.903604e-05 2.071714e-04
## GOLGB1 21.7096649 6.867235e+01 4.449894 1.904020e-05 2.071714e-04
## TRMT61A -3.5021595 3.457566e+00 -4.449402 1.907781e-05 2.073903e-04
## NOSIP -45.7725566 5.621492e+01 -4.447756 1.920395e-05 2.085186e-04
## RAI1 -1.1048329 2.227215e+00 -4.447590 1.921676e-05 2.085186e-04
## TPRN -3.4239863 2.888773e+00 -4.447107 1.925398e-05 2.087315e-04
## PTPN11 17.5796879 4.422719e+01 4.446673 1.928743e-05 2.089031e-04
## C5orf51 8.9727948 2.241249e+01 4.445438 1.938305e-05 2.097473e-04
## CTDSP1 -134.4123085 2.903284e+02 -4.445010 1.941635e-05 2.099161e-04
## FRA10AC1 -2.5002054 7.471636e+00 -4.444728 1.943826e-05 2.099615e-04
## STX8 -11.3792841 2.600792e+01 -4.443265 1.955245e-05 2.110028e-04
## ASPSCR1 -5.2929559 5.321511e+00 -4.442883 1.958236e-05 2.111334e-04
## RPL30 -378.0285472 7.576033e+02 -4.441885 1.966069e-05 2.117854e-04
## EIF2B4 -9.0239364 2.255576e+01 -4.439954 1.981319e-05 2.130676e-04
## CD2BP2 -36.6853103 1.251863e+02 -4.439879 1.981917e-05 2.130676e-04
## BTN3A1 155.5642062 2.566035e+02 4.439697 1.983361e-05 2.130676e-04
## BMP8B 1.2587964 2.344230e+00 4.439264 1.986802e-05 2.132218e-04
## ZC3H11A 112.5854853 2.547754e+02 4.439064 1.988392e-05 2.132218e-04
## TYSND1 -5.6618295 9.054637e+00 -4.438119 1.995918e-05 2.138354e-04
## PEX16 -9.1355911 1.218291e+01 -4.435253 2.018931e-05 2.161058e-04
## PQBP1 -20.7588732 3.757419e+01 -4.434774 2.022797e-05 2.161407e-04
## PRX -0.8863635 1.646852e+00 -4.434735 2.023112e-05 2.161407e-04
## FIZ1 -2.7689267 5.056317e+00 -4.434536 2.024724e-05 2.161407e-04
## EIF4A1 -125.6639008 4.049447e+02 -4.434254 2.027006e-05 2.161896e-04
## SUDS3 17.0071774 4.831490e+01 4.433803 2.030664e-05 2.162122e-04
## SSBP4 -6.5365967 7.062787e+00 -4.433779 2.030863e-05 2.162122e-04
## C2CD3 8.2361437 1.859546e+01 4.433317 2.034615e-05 2.164174e-04
## CLCN7 -15.3674244 2.415015e+01 -4.431923 2.045977e-05 2.174308e-04
## SIDT2 -23.1706802 4.756924e+01 -4.430314 2.059174e-05 2.186374e-04
## CYB5R3 -22.6312859 4.821838e+01 -4.429372 2.066936e-05 2.192653e-04
## NUDT14 -2.5621227 2.040977e+00 -4.428686 2.072614e-05 2.196712e-04
## DHRS4L2 -10.8648211 1.293471e+01 -4.427988 2.078395e-05 2.200872e-04
## NDUFA3 -16.1113526 1.969129e+01 -4.427392 2.083355e-05 2.204156e-04
## TUBGCP2 -10.3682522 3.021933e+01 -4.426651 2.089526e-05 2.208715e-04
## TCF20 18.0029513 4.303633e+01 4.426198 2.093306e-05 2.210739e-04
## RFNG -8.1889311 1.035427e+01 -4.425879 2.095980e-05 2.211595e-04
## MTF2 6.1514786 2.614021e+01 4.425399 2.099996e-05 2.213862e-04
## SMG7 29.7153293 9.100097e+01 4.424374 2.108606e-05 2.220965e-04
## CDKL1 1.8059761 5.002712e+00 4.423815 2.113314e-05 2.223949e-04
## EEF1A1 -2693.2804779 8.071037e+03 -4.421591 2.132161e-05 2.241793e-04
## GRAP -14.2144906 1.639445e+01 -4.421036 2.136889e-05 2.244774e-04
## PRICKLE3 -1.1127143 3.878913e+00 -4.419589 2.149258e-05 2.254878e-04
## CDK17 16.1566176 3.502346e+01 4.419466 2.150309e-05 2.254878e-04
## GMNN 3.3976343 6.201325e+00 4.418759 2.156382e-05 2.258453e-04
## CDPF1 -2.9645431 4.154368e+00 -4.418626 2.157528e-05 2.258453e-04
## SMC6 5.8504017 1.899626e+01 4.417119 2.170538e-05 2.268135e-04
## NCOR1 25.3519198 9.055509e+01 4.417111 2.170601e-05 2.268135e-04
## ACBD4 -3.4856529 6.645627e+00 -4.416000 2.180242e-05 2.276204e-04
## LNPEP 26.9031056 7.994613e+01 4.413861 2.198910e-05 2.293673e-04
## PLEKHO1 -116.4594035 1.823990e+02 -4.411446 2.220171e-05 2.313816e-04
## FRYL 16.9149051 4.537357e+01 4.410679 2.226965e-05 2.318859e-04
## MRTFA -22.0692444 6.588437e+01 -4.409275 2.239457e-05 2.329821e-04
## ATP5MC2 -60.3440685 1.550039e+02 -4.409031 2.241637e-05 2.330045e-04
## MRPL20 -19.5904461 3.487864e+01 -4.408523 2.246173e-05 2.332716e-04
## EIF4EBP1 -13.5381154 1.583013e+01 -4.408170 2.249339e-05 2.333960e-04
## ENO1 -327.9178105 6.216098e+02 -4.407703 2.253519e-05 2.336253e-04
## RHOBTB1 6.8545712 1.013776e+01 4.407165 2.258359e-05 2.339226e-04
## GGH 7.2395270 9.187290e+00 4.406627 2.263198e-05 2.342193e-04
## STK25 -12.0994337 2.402542e+01 -4.406266 2.266452e-05 2.343515e-04
## STON2 5.5557136 9.101118e+00 4.405783 2.270817e-05 2.345983e-04
## CALU 10.9959673 2.990786e+01 4.405537 2.273037e-05 2.346233e-04
## ZC3H6 5.3145279 1.307652e+01 4.404097 2.286108e-05 2.356205e-04
## EMSY 6.0521959 1.685720e+01 4.403844 2.288411e-05 2.356205e-04
## RPAP2 8.1964093 2.077064e+01 4.403717 2.289570e-05 2.356205e-04
## ADRM1 -12.4554628 2.622650e+01 -4.403546 2.291126e-05 2.356205e-04
## CD81 -24.8061291 3.513478e+01 -4.403381 2.292631e-05 2.356205e-04
## PDK2 -3.9596809 7.084785e+00 -4.402911 2.296919e-05 2.357694e-04
## HAPLN3 -6.3508158 5.257257e+00 -4.402787 2.298056e-05 2.357694e-04
## CHMP2A -103.8622469 2.089416e+02 -4.401016 2.314312e-05 2.372319e-04
## FGD3 -121.2006751 2.872203e+02 -4.398098 2.341326e-05 2.397938e-04
## RSU1 29.6487879 7.403378e+01 4.397177 2.349912e-05 2.404655e-04
## FNDC3A 25.5958161 4.673518e+01 4.396925 2.352266e-05 2.404989e-04
## ZNF219 -0.8488113 1.032236e+00 -4.396474 2.356492e-05 2.407235e-04
## MANEA 4.7218259 8.094560e+00 4.395952 2.361385e-05 2.410157e-04
## UBE3C 10.4694938 4.073525e+01 4.394500 2.375053e-05 2.422023e-04
## RIMKLB 1.6106790 3.286410e+00 4.392012 2.398648e-05 2.443983e-04
## IMPA2 -36.9799281 5.859757e+01 -4.391384 2.404640e-05 2.447986e-04
## ZBTB45 -1.6908543 2.702421e+00 -4.391051 2.407822e-05 2.449123e-04
## OGFOD3 -3.8143990 6.277364e+00 -4.389765 2.420157e-05 2.459560e-04
## NRM -8.1533558 1.595552e+01 -4.388359 2.433711e-05 2.468468e-04
## TM2D2 -4.2220253 1.716392e+01 -4.388296 2.434318e-05 2.468468e-04
## PIH1D1 -13.9434307 2.301395e+01 -4.388208 2.435166e-05 2.468468e-04
## ZBTB38 15.3211163 3.039728e+01 4.387499 2.442038e-05 2.472778e-04
## TSSC4 -15.3312855 1.449539e+01 -4.387339 2.443589e-05 2.472778e-04
## FARSA -6.8520757 1.241728e+01 -4.386385 2.452861e-05 2.480046e-04
## ANP32E 15.7886004 4.607049e+01 4.385765 2.458898e-05 2.484032e-04
## PSAP -615.5557585 2.632804e+03 -4.384863 2.467716e-05 2.490819e-04
## EIF4G3 26.3687696 5.492458e+01 4.383189 2.484168e-05 2.505292e-04
## PIP5K1C -6.3067043 1.354032e+01 -4.382883 2.487191e-05 2.506209e-04
## LENG1 -4.6819298 7.684041e+00 -4.382385 2.492102e-05 2.509026e-04
## MLST8 -5.6283090 6.853178e+00 -4.380242 2.513381e-05 2.528304e-04
## HMGCS1 7.1431425 2.155242e+01 4.379535 2.520433e-05 2.531261e-04
## SRGAP2B 11.9712799 2.119827e+01 4.379237 2.523419e-05 2.531261e-04
## ENGASE -8.0948844 1.680177e+01 -4.379123 2.524563e-05 2.531261e-04
## BLOC1S4 -3.5118843 8.199685e+00 -4.379093 2.524858e-05 2.531261e-04
## MCUR1 4.7137539 1.395039e+01 4.378067 2.535147e-05 2.539430e-04
## VPS13A 7.9034239 1.623763e+01 4.375779 2.558249e-05 2.560408e-04
## MBOAT7 -195.5080918 3.280778e+02 -4.375140 2.564733e-05 2.564733e-04
## DARS2 1.8266163 6.751483e+00 4.374712 2.569095e-05 2.566930e-04
## AK1 -6.4830250 7.739893e+00 -4.373553 2.580913e-05 2.573589e-04
## AGPAT2 -18.0376941 2.308495e+01 -4.373451 2.581965e-05 2.573589e-04
## UTP3 -6.7146295 2.509253e+01 -4.373421 2.582269e-05 2.573589e-04
## ZBTB42 -1.7070583 1.962875e+00 -4.372291 2.593854e-05 2.582964e-04
## COA8 -5.8083155 1.241960e+01 -4.369241 2.625374e-05 2.610964e-04
## APEX1 -19.9991168 5.645519e+01 -4.369145 2.626374e-05 2.610964e-04
## GOLGA5 8.0841466 3.120932e+01 4.368412 2.634010e-05 2.616362e-04
## RSF1 9.6465904 2.169969e+01 4.366757 2.651326e-05 2.629665e-04
## UCKL1 -6.3507273 8.424512e+00 -4.366708 2.651837e-05 2.629665e-04
## ELF1 96.6668311 1.895308e+02 4.366217 2.656991e-05 2.631665e-04
## RAB34 -10.3974180 1.661925e+01 -4.366094 2.658293e-05 2.631665e-04
## NFX1 6.2777817 2.472729e+01 4.364404 2.676123e-05 2.647108e-04
## SRF -22.3907857 5.850857e+01 -4.363385 2.686942e-05 2.655594e-04
## ZFPL1 -5.6653135 1.067588e+01 -4.362122 2.700398e-05 2.666671e-04
## RABGAP1 7.1081368 2.488278e+01 4.361691 2.705001e-05 2.668994e-04
## TEX2 14.8929861 1.955946e+01 4.361237 2.709870e-05 2.671576e-04
## ATG101 -12.2840793 1.961917e+01 -4.359762 2.725721e-05 2.684971e-04
## RPS27 -1163.1239738 1.484866e+03 -4.358240 2.742166e-05 2.698137e-04
## SNTB1 10.5229263 3.299569e+01 4.358105 2.743636e-05 2.698137e-04
## ADCK5 -2.2584395 2.614462e+00 -4.356060 2.765894e-05 2.717772e-04
## ADNP 17.3788290 6.282001e+01 4.355634 2.770555e-05 2.720098e-04
## FAM53B -16.6320717 6.358495e+01 -4.355225 2.775037e-05 2.722245e-04
## MED7 -5.8003535 1.627404e+01 -4.353829 2.790385e-05 2.735038e-04
## GART 7.2429175 2.536515e+01 4.351227 2.819213e-05 2.758996e-04
## SPATS2 4.4167599 6.266650e+00 4.351203 2.819480e-05 2.758996e-04
## EHBP1L1 -71.5192637 2.309080e+02 -4.350833 2.823609e-05 2.760418e-04
## RBM10 -12.3495716 3.476605e+01 -4.350655 2.825588e-05 2.760418e-04
## CEP44 2.6816548 9.416458e+00 4.348506 2.849663e-05 2.781646e-04
## BCAT2 -4.2085545 5.510112e+00 -4.347929 2.856168e-05 2.785703e-04
## CLDN12 0.5037501 1.004470e+00 4.347546 2.860481e-05 2.787421e-04
## RPS24 -411.6028989 7.285410e+02 -4.347356 2.862630e-05 2.787421e-04
## NAA10 -15.8872619 2.821516e+01 -4.346972 2.866978e-05 2.789365e-04
## SCUBE1 -0.7103027 1.213141e+00 -4.344643 2.893438e-05 2.812801e-04
## STMN1 20.2527981 3.292449e+01 4.343425 2.907376e-05 2.824036e-04
## BMP6 7.1304611 1.167175e+01 4.343045 2.911738e-05 2.825958e-04
## SENP1 4.8551815 1.516419e+01 4.342645 2.916338e-05 2.828109e-04
## HCFC1R1 -6.4472165 7.651438e+00 -4.342113 2.922456e-05 2.831705e-04
## RO60 14.1538144 3.688943e+01 4.341908 2.924822e-05 2.831705e-04
## ACOT8 -7.1568482 1.303125e+01 -4.341169 2.933366e-05 2.837660e-04
## RRM1 6.1413614 1.716788e+01 4.340498 2.941134e-05 2.842856e-04
## XPA -2.1859868 7.300014e+00 -4.339720 2.950164e-05 2.849263e-04
## DHX33 2.1009941 7.645431e+00 4.339413 2.953736e-05 2.850391e-04
## TMEM101 -7.7419150 2.204445e+01 -4.338791 2.960989e-05 2.855067e-04
## CORO1A -558.2737110 9.710792e+02 -4.337911 2.971276e-05 2.862659e-04
## LIPH 0.9532040 1.626697e+00 4.337255 2.978972e-05 2.865526e-04
## PRPF31 -11.6782094 1.753053e+01 -4.337245 2.979084e-05 2.865526e-04
## IZUMO4 -1.0670252 1.271574e+00 -4.335643 2.997948e-05 2.878558e-04
## SRGAP2C 8.2862052 1.667102e+01 4.335398 3.000846e-05 2.878558e-04
## DPP8 17.0732881 4.744703e+01 4.335251 3.002591e-05 2.878558e-04
## NFKBIE -11.0008834 1.940920e+01 -4.335242 3.002690e-05 2.878558e-04
## SESTD1 13.7856737 2.891688e+01 4.335067 3.004768e-05 2.878558e-04
## RASSF4 -27.4501853 5.750386e+01 -4.334711 3.008983e-05 2.880270e-04
## EDF1 -80.5204799 9.163668e+01 -4.334090 3.016352e-05 2.884995e-04
## SLC16A3 -121.1881710 1.816934e+02 -4.332323 3.037421e-05 2.902805e-04
## COPE -46.8033188 7.238238e+01 -4.330979 3.053530e-05 2.913562e-04
## NUDC -25.4649867 4.170508e+01 -4.330974 3.053590e-05 2.913562e-04
## NFKBIL1 -5.2730029 8.411734e+00 -4.330481 3.059530e-05 2.916883e-04
## RSL1D1 -23.0081013 7.996146e+01 -4.329622 3.069890e-05 2.924410e-04
## ARAF -26.3769139 6.003651e+01 -4.329231 3.074619e-05 2.926564e-04
## PUF60 -21.0427145 4.447099e+01 -4.327658 3.093709e-05 2.942373e-04
## HBS1L 6.2158380 2.258934e+01 4.326731 3.105014e-05 2.948573e-04
## TOP1 28.0798056 7.723353e+01 4.326716 3.105200e-05 2.948573e-04
## THAP11 -7.3941406 2.474974e+01 -4.325216 3.123581e-05 2.963654e-04
## MAD2L1 3.6650121 5.855353e+00 4.324325 3.134548e-05 2.971682e-04
## ALG10 0.6136405 1.896770e+00 4.322744 3.154098e-05 2.987101e-04
## PPDPF -16.6250205 1.495431e+01 -4.322603 3.155849e-05 2.987101e-04
## FLNA -208.6907794 4.771500e+02 -4.321989 3.163471e-05 2.989900e-04
## BIN1 -20.1806622 2.477512e+01 -4.321839 3.165333e-05 2.989900e-04
## CINP -9.6801319 1.988453e+01 -4.321756 3.166369e-05 2.989900e-04
## EDC4 -13.3177459 3.438807e+01 -4.321114 3.174375e-05 2.995075e-04
## GPATCH3 -6.3479050 1.686023e+01 -4.319214 3.198172e-05 3.015129e-04
## ZGRF1 1.2263321 2.908208e+00 4.318337 3.209210e-05 3.023131e-04
## EMP3 -96.7884080 1.863266e+02 -4.318129 3.211837e-05 3.023205e-04
## KLHL24 19.5527890 4.580787e+01 4.317646 3.217943e-05 3.026551e-04
## TRADD -15.8180342 2.889772e+01 -4.317030 3.225738e-05 3.030241e-04
## SPPL2B -3.8106936 5.348899e+00 -4.316932 3.226977e-05 3.030241e-04
## DAGLA -0.6597955 8.452911e-01 -4.316495 3.232528e-05 3.033052e-04
## DMAP1 -8.6000409 1.628393e+01 -4.315371 3.246824e-05 3.044058e-04
## SAMD1 -6.3783041 1.268671e+01 -4.314947 3.252239e-05 3.046727e-04
## UBE2J2 -8.4623531 2.843482e+01 -4.313275 3.273664e-05 3.064377e-04
## FBXW9 -1.5358004 1.491701e+00 -4.312836 3.279315e-05 3.067246e-04
## MZF1 -0.9819095 2.037143e+00 -4.311737 3.293494e-05 3.077817e-04
## WDR74 -8.7292027 1.363374e+01 -4.311558 3.295807e-05 3.077817e-04
## TPM2 -4.8706718 5.117356e+00 -4.311291 3.299267e-05 3.078623e-04
## SIGIRR -21.5994832 2.176615e+01 -4.309504 3.322485e-05 3.097852e-04
## AATF -12.1263169 5.585634e+01 -4.309263 3.325627e-05 3.098345e-04
## VAMP8 -83.8715162 1.398074e+02 -4.307995 3.342217e-05 3.111357e-04
## PRKRIP1 -8.5607458 2.551916e+01 -4.307678 3.346375e-05 3.112784e-04
## MED11 -9.2079782 2.602434e+01 -4.307349 3.350699e-05 3.113707e-04
## CARMIL2 -7.8519923 9.665258e+00 -4.307203 3.352617e-05 3.113707e-04
## IGSF8 -5.0834545 7.130157e+00 -4.306262 3.365018e-05 3.122778e-04
## SOD1 -27.2354245 5.595933e+01 -4.303741 3.398453e-05 3.150529e-04
## PDXDC1 9.2232032 2.722793e+01 4.303607 3.400234e-05 3.150529e-04
## CCDC137 -6.9878569 1.435268e+01 -4.301920 3.422798e-05 3.168961e-04
## EIF4E2 -15.2557425 7.844089e+01 -4.301718 3.425515e-05 3.169002e-04
## HDAC11 -2.1765971 4.338856e+00 -4.300997 3.435212e-05 3.174456e-04
## ABCD1 -4.7404559 1.007647e+01 -4.300808 3.437747e-05 3.174456e-04
## IFT43 -2.0551794 3.631648e+00 -4.300683 3.439440e-05 3.174456e-04
## MYLK 10.2447011 1.493465e+01 4.300263 3.445105e-05 3.175555e-04
## ARL6IP1 32.5384030 1.047719e+02 4.300198 3.445986e-05 3.175555e-04
## FAM50A -26.8920785 5.044365e+01 -4.298918 3.463303e-05 3.186739e-04
## TRAF1 -10.4912776 2.053752e+01 -4.298603 3.467587e-05 3.186739e-04
## SNX8 -4.1453595 6.323892e+00 -4.298577 3.467933e-05 3.186739e-04
## RPL36A -280.4122922 3.750905e+02 -4.298508 3.468870e-05 3.186739e-04
## CDK5 -4.2578330 1.028263e+01 -4.298045 3.475178e-05 3.190063e-04
## ZRANB1 18.0429563 3.288000e+01 4.297493 3.482693e-05 3.190532e-04
## HECTD4 6.3095281 1.841572e+01 4.297470 3.483004e-05 3.190532e-04
## LUC7L -7.5807550 2.263940e+01 -4.297346 3.484700e-05 3.190532e-04
## BRMS1 -27.5558624 5.200969e+01 -4.297218 3.486449e-05 3.190532e-04
## ATXN7 32.3725085 6.438516e+01 4.293602 3.536167e-05 3.231982e-04
## PPP2R1B 2.8769081 1.189528e+01 4.293528 3.537195e-05 3.231982e-04
## TMEM39B -2.6469658 7.144007e+00 -4.292826 3.546936e-05 3.236295e-04
## CLIC4 15.4572192 3.683004e+01 4.292794 3.547372e-05 3.236295e-04
## OLFM2 -1.0998838 1.435571e+00 -4.292595 3.550139e-05 3.236330e-04
## UBXN7 21.4183242 4.947988e+01 4.292299 3.554260e-05 3.237597e-04
## SLC25A25 -4.0573128 1.216950e+01 -4.291222 3.569263e-05 3.248769e-04
## MOSPD3 -7.7391331 7.036004e+00 -4.290884 3.573993e-05 3.250579e-04
## CCDC153 -1.3832520 1.783605e+00 -4.289448 3.594126e-05 3.266386e-04
## C1orf159 -1.4068609 1.311305e+00 -4.287691 3.618924e-05 3.283904e-04
## MMD 28.8211083 5.295268e+01 4.287537 3.621105e-05 3.283904e-04
## CDIPT -25.2680607 6.149917e+01 -4.287494 3.621708e-05 3.283904e-04
## MICOS13 -9.8522802 9.441504e+00 -4.287114 3.627104e-05 3.286284e-04
## NSD1 25.7302609 8.064910e+01 4.285771 3.646191e-05 3.300721e-04
## PIK3R4 5.9256798 1.805780e+01 4.285602 3.648605e-05 3.300721e-04
## TMEM175 -5.8788987 1.329342e+01 -4.284604 3.662878e-05 3.311107e-04
## ARL15 4.6377047 1.407171e+01 4.284393 3.665891e-05 3.311307e-04
## QTRT1 -3.2614878 3.254806e+00 -4.283431 3.679702e-05 3.321253e-04
## EGF 9.2198771 1.065500e+01 4.283168 3.683497e-05 3.322094e-04
## REXO4 -5.8759585 1.197259e+01 -4.282978 3.686235e-05 3.322094e-04
## BANF1 -29.0295552 4.939688e+01 -4.282651 3.690944e-05 3.323811e-04
## WIZ -2.4662222 6.936220e+00 -4.281756 3.703871e-05 3.331290e-04
## COG3 7.4468173 2.536233e+01 4.281688 3.704866e-05 3.331290e-04
## MARCHF9 -5.4845218 7.931730e+00 -4.281312 3.710308e-05 3.333655e-04
## RPL35A -194.2997718 3.597403e+02 -4.280173 3.726862e-05 3.345167e-04
## IL11RA -9.1101706 9.889316e+00 -4.280042 3.728762e-05 3.345167e-04
## F2R 7.3929424 1.494173e+01 4.279728 3.733337e-05 3.345856e-04
## ENTPD6 -12.7980246 2.340023e+01 -4.279603 3.735172e-05 3.345856e-04
## MND1 0.9072326 1.056202e+00 4.279112 3.742341e-05 3.349749e-04
## ZNF263 -6.0053396 2.348134e+01 -4.278403 3.752711e-05 3.356497e-04
## RPL23 -323.6603286 6.485856e+02 -4.277741 3.762426e-05 3.362651e-04
## EIF3H -29.9768597 1.270660e+02 -4.277118 3.771601e-05 3.368312e-04
## RC3H2 17.0483358 5.048998e+01 4.276818 3.776022e-05 3.369723e-04
## SCYL1 -19.1991575 4.785456e+01 -4.276434 3.781686e-05 3.372240e-04
## SCAF1 -5.7184111 1.161429e+01 -4.274964 3.803454e-05 3.389103e-04
## TRMT1 -13.3796163 1.890975e+01 -4.274650 3.808116e-05 3.390710e-04
## SSX2IP 4.3575517 1.099070e+01 4.274243 3.814178e-05 3.393560e-04
## NCK1 9.0300303 2.926003e+01 4.272563 3.839268e-05 3.413322e-04
## BEND7 5.8668316 7.674486e+00 4.272060 3.846808e-05 3.417464e-04
## TUFM -33.6556316 7.979441e+01 -4.271658 3.852852e-05 3.420272e-04
## HMG20B -12.1720434 1.962604e+01 -4.270560 3.869385e-05 3.432379e-04
## LRRC29 -0.8033749 1.152030e+00 -4.269954 3.878538e-05 3.437927e-04
## IRF3 -30.7383542 4.385028e+01 -4.269702 3.882360e-05 3.438744e-04
## RANGRF -8.9225464 1.559046e+01 -4.267358 3.918018e-05 3.466939e-04
## PCYT1B 2.4552536 3.967098e+00 4.267225 3.920038e-05 3.466939e-04
## GTF2F1 -10.8735515 3.457997e+01 -4.265293 3.949680e-05 3.489752e-04
## ZNF598 -3.6825211 7.452848e+00 -4.265161 3.951718e-05 3.489752e-04
## INTS11 -17.5034982 3.166988e+01 -4.263478 3.977731e-05 3.510110e-04
## DGCR6L -14.9662279 1.389479e+01 -4.263259 3.981126e-05 3.510495e-04
## CNPY4 -3.2757233 1.075072e+01 -4.261376 4.010436e-05 3.533713e-04
## C16orf91 -2.4556166 4.667212e+00 -4.260300 4.027282e-05 3.545922e-04
## MRPL24 -11.5248890 1.931318e+01 -4.259460 4.040477e-05 3.553409e-04
## DERPC -19.7247397 3.455066e+01 -4.259377 4.041778e-05 3.553409e-04
## TP53BP1 7.0370174 2.019902e+01 4.259004 4.047664e-05 3.554763e-04
## DNAJC13 42.9814379 8.729956e+01 4.258899 4.049313e-05 3.554763e-04
## TSC2 -10.2975791 2.702053e+01 -4.258446 4.056463e-05 3.558407e-04
## ADAT1 6.7948655 2.084674e+01 4.257963 4.064096e-05 3.562467e-04
## ARFGEF2 9.9653925 2.004439e+01 4.257480 4.071758e-05 3.566547e-04
## LATS1 7.6052783 1.826010e+01 4.256123 4.093321e-05 3.580684e-04
## CCDC107 -12.2341706 1.338205e+01 -4.256084 4.093935e-05 3.580684e-04
## SH3D21 -1.5556451 3.131447e+00 -4.254895 4.112928e-05 3.594644e-04
## ANKS3 -1.5841889 2.066478e+00 -4.252275 4.155079e-05 3.628810e-04
## NCOA6 16.0373917 4.195751e+01 4.251297 4.170917e-05 3.639961e-04
## NDUFB7 -15.8687816 1.281657e+01 -4.250769 4.179492e-05 3.644763e-04
## KIF2C 4.1557011 4.777789e+00 4.249137 4.206098e-05 3.663711e-04
## UBTD1 -6.4406379 9.114590e+00 -4.248905 4.209899e-05 3.663711e-04
## C12orf57 -22.6314922 1.789455e+01 -4.248869 4.210488e-05 3.663711e-04
## CD14 -130.6825725 1.982496e+02 -4.247870 4.226866e-05 3.675266e-04
## AP2A2 -6.4984636 2.404788e+01 -4.246457 4.250142e-05 3.692797e-04
## TBL3 -6.4552772 7.311305e+00 -4.246190 4.254555e-05 3.693481e-04
## CHCHD5 -5.5610792 5.918081e+00 -4.246033 4.257158e-05 3.693481e-04
## LTA -2.0617646 3.263284e+00 -4.245250 4.270140e-05 3.702037e-04
## TTPAL 9.1653662 2.230395e+01 4.244997 4.274326e-05 3.702959e-04
## ZNF664 8.9184905 2.391788e+01 4.244205 4.287513e-05 3.711672e-04
## RPLP2 -382.3911542 2.782993e+02 -4.243940 4.291924e-05 3.712780e-04
## FAM122C 1.0896742 3.209902e+00 4.243372 4.301412e-05 3.718276e-04
## HNMT -8.7292439 1.926410e+01 -4.241893 4.326185e-05 3.735921e-04
## RBBP5 7.8798747 2.772433e+01 4.241778 4.328124e-05 3.735921e-04
## TMEM88 -2.7971213 4.722608e+00 -4.240790 4.344759e-05 3.747552e-04
## POGLUT3 2.1604359 5.595443e+00 4.240429 4.350861e-05 3.750088e-04
## HMOX2 -22.1545184 5.262125e+01 -4.240223 4.354347e-05 3.750367e-04
## PCED1A -17.0951748 2.710439e+01 -4.238706 4.380069e-05 3.769783e-04
## PNPLA2 -22.9047367 4.696022e+01 -4.237108 4.407312e-05 3.790480e-04
## IRF8 -13.8956334 4.913949e+01 -4.236878 4.411257e-05 3.791124e-04
## GNL1 -12.8971807 2.955268e+01 -4.235798 4.429780e-05 3.804286e-04
## TTBK2 5.6786980 1.411520e+01 4.235428 4.436151e-05 3.807001e-04
## SELENOW -32.8258894 4.948854e+01 -4.235056 4.442552e-05 3.809737e-04
## PACS1 -40.4566683 1.243962e+02 -4.233141 4.475672e-05 3.835366e-04
## RABL6 -15.8011258 2.391767e+01 -4.232945 4.479078e-05 3.835514e-04
## CLCN3 10.8076883 2.990211e+01 4.232117 4.493495e-05 3.845083e-04
## MIEF2 -1.4554472 4.339859e+00 -4.231016 4.512718e-05 3.858748e-04
## PIK3C2A 8.6375500 1.992995e+01 4.229418 4.540767e-05 3.879935e-04
## XPNPEP1 10.5309655 3.470850e+01 4.228904 4.549813e-05 3.884866e-04
## PLA2G4B -5.3450328 1.162282e+01 -4.228260 4.561182e-05 3.891772e-04
## PBLD 1.4817514 3.704078e+00 4.226875 4.585729e-05 3.909630e-04
## RPL36 -130.8583234 1.128532e+02 -4.226708 4.588706e-05 3.909630e-04
## METTL26 -9.4352008 7.711972e+00 -4.226085 4.599797e-05 3.916267e-04
## ESS2 -4.6952935 1.197674e+01 -4.225824 4.604449e-05 3.917415e-04
## BAD -5.7787491 7.763530e+00 -4.225552 4.609301e-05 3.918732e-04
## CAPZB -130.1964288 4.180101e+02 -4.224637 4.625665e-05 3.929828e-04
## ATF7IP 29.3299731 7.425007e+01 4.224309 4.631547e-05 3.932008e-04
## TMEM205 -15.7981221 2.900078e+01 -4.221888 4.675182e-05 3.964343e-04
## PHC3 16.5791761 4.706296e+01 4.221825 4.676320e-05 3.964343e-04
## ADAM8 -145.1381598 3.010802e+02 -4.219693 4.715085e-05 3.994351e-04
## AAR2 -5.3501754 2.004174e+01 -4.218403 4.738681e-05 4.008960e-04
## TMEM222 -20.1768704 3.463368e+01 -4.218335 4.739921e-05 4.008960e-04
## TRPM7 11.3621450 3.352956e+01 4.218196 4.742471e-05 4.008960e-04
## BRPF3 11.3028308 2.636480e+01 4.217645 4.752592e-05 4.014654e-04
## CD72 -6.1279376 8.457486e+00 -4.215531 4.791624e-05 4.044745e-04
## GALK1 -10.3197933 1.286662e+01 -4.214829 4.804653e-05 4.050314e-04
## SLC30A6 5.8124508 2.152792e+01 4.214808 4.805052e-05 4.050314e-04
## SH2B2 -6.7638358 1.146082e+01 -4.213993 4.820216e-05 4.060210e-04
## MRPL43 -6.1144218 1.271728e+01 -4.213166 4.835664e-05 4.070331e-04
## DEK 43.7021291 1.299614e+02 4.212228 4.853230e-05 4.082220e-04
## RNF113A -6.8254648 2.277846e+01 -4.211527 4.866389e-05 4.090388e-04
## NBDY -4.3260069 9.286331e+00 -4.210127 4.892803e-05 4.107939e-04
## WDR83 -1.7503642 3.226678e+00 -4.210053 4.894197e-05 4.107939e-04
## DGKZ -30.4770877 7.529135e+01 -4.208598 4.921794e-05 4.128181e-04
## MAL -17.1990541 1.532058e+01 -4.208334 4.926830e-05 4.129484e-04
## CYP51A1 5.3689469 1.331550e+01 4.206574 4.960433e-05 4.154713e-04
## CHAC2 2.2640700 2.937801e+00 4.205421 4.982567e-05 4.170307e-04
## NDUFS7 -6.5187723 4.704812e+00 -4.204902 4.992563e-05 4.175726e-04
## ABHD10 -5.7210365 1.903502e+01 -4.204639 4.997646e-05 4.176075e-04
## APPBP2 10.4268883 3.302521e+01 4.204516 5.000022e-05 4.176075e-04
## ACAA1 -71.5420589 1.934182e+02 -4.204190 5.006324e-05 4.178396e-04
## IDUA -2.5003543 2.836378e+00 -4.202280 5.043371e-05 4.205702e-04
## ADAR 321.0419779 7.163728e+02 4.202138 5.046133e-05 4.205702e-04
## GIPC1 -5.1195447 5.809523e+00 -4.198804 5.111476e-05 4.257170e-04
## RRP8 -3.1894519 1.294658e+01 -4.197996 5.127429e-05 4.264478e-04
## RPL37A -412.3813500 5.893191e+02 -4.197996 5.127441e-05 4.264478e-04
## FUOM -4.8225770 3.384459e+00 -4.197741 5.132479e-05 4.265676e-04
## SPIN4 1.1441982 2.247519e+00 4.196932 5.148520e-05 4.276012e-04
## RPS15A -429.2470887 7.551598e+02 -4.195372 5.179585e-05 4.297886e-04
## CLASP1 13.1480252 3.223553e+01 4.194993 5.187168e-05 4.297886e-04
## PEAR1 5.1730130 8.648463e+00 4.194958 5.187876e-05 4.297886e-04
## ABHD14B -20.9867258 2.785926e+01 -4.194884 5.189354e-05 4.297886e-04
## FOXJ3 11.1915241 3.821496e+01 4.194584 5.195354e-05 4.299853e-04
## INAFM1 -5.2112061 5.178638e+00 -4.192777 5.231670e-05 4.326891e-04
## SH2B1 -8.3102375 2.723072e+01 -4.189433 5.299530e-05 4.379960e-04
## PRMT3 1.4224784 5.450884e+00 4.187513 5.338849e-05 4.404972e-04
## MRPL49 6.1144805 3.850536e+01 4.187439 5.340377e-05 4.404972e-04
## MRAS -2.4626984 3.335592e+00 -4.187412 5.340936e-05 4.404972e-04
## VPS13D 14.6977004 3.948155e+01 4.186271 5.364456e-05 4.421296e-04
## TIAF1 -20.8219293 2.625894e+01 -4.185789 5.374428e-05 4.426438e-04
## DENND1B 8.0531668 2.025507e+01 4.184675 5.397524e-05 4.442376e-04
## BRD2 51.3985272 2.390096e+02 4.183143 5.429440e-05 4.465545e-04
## KIAA0930 -53.1897521 1.297134e+02 -4.182653 5.439686e-05 4.470871e-04
## MBD3 -12.4045275 1.022561e+01 -4.181765 5.458301e-05 4.483065e-04
## SLC22A18 -5.4625535 6.354724e+00 -4.180745 5.479763e-05 4.497371e-04
## MSRB3 7.1600957 1.287583e+01 4.180577 5.483304e-05 4.497371e-04
## RNF25 -6.9550578 1.846544e+01 -4.179589 5.504201e-05 4.511391e-04
## PRC1 5.9418122 7.020148e+00 4.179160 5.513280e-05 4.515712e-04
## ZNF419 -2.0258473 6.193570e+00 -4.177792 5.542373e-05 4.536408e-04
## KLHL17 -1.0681622 1.517939e+00 -4.177451 5.549645e-05 4.539227e-04
## U2AF1L4 -6.8757865 9.493169e+00 -4.176790 5.563748e-05 4.547626e-04
## ECH1 -21.9809017 4.688155e+01 -4.176012 5.580415e-05 4.558107e-04
## MCM9 5.1194717 1.651753e+01 4.175038 5.601348e-05 4.572057e-04
## LEPR 3.1084159 7.060569e+00 4.174224 5.618897e-05 4.583227e-04
## ZDHHC12 -11.7795068 1.645825e+01 -4.173961 5.624588e-05 4.584716e-04
## TOLLIP -17.2986209 4.089486e+01 -4.173646 5.631405e-05 4.587120e-04
## TESK1 -4.2799574 9.805560e+00 -4.173108 5.643048e-05 4.593449e-04
## LDB1 -32.2471832 1.415039e+02 -4.172663 5.652707e-05 4.598155e-04
## CHD2 70.8038769 1.699545e+02 4.172217 5.662408e-05 4.600182e-04
## ARPC1B -165.3934738 3.803105e+02 -4.172044 5.666170e-05 4.600182e-04
## HLA-DMB -35.3254065 7.190885e+01 -4.171922 5.668829e-05 4.600182e-04
## PELP1 -8.5822063 1.144704e+01 -4.171836 5.670713e-05 4.600182e-04
## CKAP5 7.3637452 2.002765e+01 4.171230 5.683910e-05 4.607736e-04
## GMEB2 -4.1639897 1.546603e+01 -4.170807 5.693173e-05 4.611462e-04
## PPCS -11.7438323 4.554313e+01 -4.170664 5.696283e-05 4.611462e-04
## NAT9 -5.5262613 1.533557e+01 -4.170265 5.705016e-05 4.615381e-04
## CTSF -3.3945215 4.320339e+00 -4.169484 5.722164e-05 4.626098e-04
## PCNA 12.9633905 3.390473e+01 4.169136 5.729805e-05 4.629120e-04
## RAB3GAP2 12.4490109 3.235553e+01 4.167623 5.763207e-05 4.651446e-04
## TIA1 18.7118758 7.442085e+01 4.167430 5.767474e-05 4.651446e-04
## RASGRP3 3.2092783 5.629790e+00 4.167352 5.769205e-05 4.651446e-04
## RBBP6 13.9675458 4.084993e+01 4.166158 5.795690e-05 4.669625e-04
## KDM5A 37.8746121 1.203062e+02 4.165090 5.819500e-05 4.685626e-04
## BDP1 8.8968408 2.056879e+01 4.164531 5.832011e-05 4.692513e-04
## POGZ 12.8226305 4.534624e+01 4.163747 5.849574e-05 4.703454e-04
## ZNF671 -3.6208554 1.503733e+01 -4.163113 5.863824e-05 4.710853e-04
## HSPB1 -14.0786073 6.645424e+00 -4.162984 5.866719e-05 4.710853e-04
## ELOVL7 6.0630152 9.774018e+00 4.162698 5.873172e-05 4.712843e-04
## TMEM203 -12.0055648 2.160083e+01 -4.162011 5.888660e-05 4.722076e-04
## CEP131 -0.9881076 1.575724e+00 -4.161575 5.898526e-05 4.726323e-04
## FCN1 -581.2308216 1.185167e+03 -4.161424 5.901926e-05 4.726323e-04
## LIN52 1.6800454 6.449285e+00 4.160788 5.916344e-05 4.734672e-04
## RELT -26.5215384 7.667061e+01 -4.158508 5.968297e-05 4.771804e-04
## PATZ1 -5.4273117 1.413974e+01 -4.158399 5.970790e-05 4.771804e-04
## NAA16 3.4726487 1.149473e+01 4.158221 5.974874e-05 4.771852e-04
## DNPH1 -2.1403359 2.217869e+00 -4.157130 5.999894e-05 4.786689e-04
## FZR1 -10.3614996 2.218043e+01 -4.157060 6.001523e-05 4.786689e-04
## MED13 36.4345790 8.061566e+01 4.156407 6.016559e-05 4.795457e-04
## PEA15 -21.4045180 5.234471e+01 -4.155916 6.027877e-05 4.799391e-04
## STK26 21.7226055 5.509762e+01 4.155842 6.029589e-05 4.799391e-04
## KIAA1958 8.0356024 1.026758e+01 4.155618 6.034774e-05 4.800296e-04
## BEX2 -3.0613200 4.092596e+00 -4.154543 6.059685e-05 4.816881e-04
## GPR180 2.1305003 5.340497e+00 4.154106 6.069826e-05 4.821710e-04
## CBR3 -1.9498406 1.579246e+00 -4.153887 6.074921e-05 4.822527e-04
## SLC49A3 -2.7754908 4.653460e+00 -4.153574 6.082206e-05 4.825081e-04
## JAG1 3.2586827 7.101478e+00 4.153218 6.090500e-05 4.828431e-04
## RALY -57.8465422 1.311957e+02 -4.152856 6.098973e-05 4.831919e-04
## LRRC45 -2.4758203 3.421982e+00 -4.152466 6.108075e-05 4.835578e-04
## SIRT2 -16.1261835 5.563416e+01 -4.152131 6.115927e-05 4.835578e-04
## TAF8 10.8601129 3.178794e+01 4.152117 6.116243e-05 4.835578e-04
## IFI30 -420.9913010 8.837136e+02 -4.151961 6.119901e-05 4.835578e-04
## RING1 -8.0374749 2.217091e+01 -4.151437 6.132198e-05 4.842068e-04
## USP33 19.0612908 6.113851e+01 4.150584 6.152259e-05 4.854677e-04
## SCYL2 26.1505832 6.530541e+01 4.149023 6.189136e-05 4.878698e-04
## TCEA1 11.4782808 6.240201e+01 4.148947 6.190928e-05 4.878698e-04
## ZNF653 -0.8757078 1.136965e+00 -4.147739 6.219623e-05 4.898056e-04
## FAM214A 9.8540737 2.911284e+01 4.145685 6.268695e-05 4.933426e-04
## CHMP1A -37.3073363 8.704788e+01 -4.144934 6.286723e-05 4.944333e-04
## DUS1L -14.5261181 2.322127e+01 -4.144656 6.293415e-05 4.946315e-04
## ILVBL -5.2066199 6.593759e+00 -4.144157 6.305441e-05 4.952486e-04
## HDAC3 -10.2059563 5.945637e+01 -4.143561 6.319840e-05 4.960510e-04
## SLC2A4RG -7.6685546 1.031328e+01 -4.142980 6.333902e-05 4.968259e-04
## HSPA13 10.7078240 2.075128e+01 4.142681 6.341136e-05 4.970646e-04
## BCL2L2 3.0327483 1.026324e+01 4.141892 6.360309e-05 4.982382e-04
## SBNO1 20.1316221 5.723994e+01 4.141111 6.379316e-05 4.993973e-04
## SDR39U1 -7.4291488 1.199168e+01 -4.140801 6.386880e-05 4.996596e-04
## OXA1L -18.7620962 8.050274e+01 -4.140071 6.404741e-05 5.007266e-04
## TCIRG1 -151.1997817 2.462051e+02 -4.139745 6.412713e-05 5.010196e-04
## NUDT4 11.5338987 3.352954e+01 4.139365 6.422041e-05 5.010994e-04
## FBXO31 -4.5166963 8.484113e+00 -4.139359 6.422184e-05 5.010994e-04
## RNASEH1 3.6811246 1.494570e+01 4.138101 6.453127e-05 5.029372e-04
## ACAP3 -8.6122726 1.500451e+01 -4.138057 6.454219e-05 5.029372e-04
## CMTM7 -15.9997973 5.335599e+01 -4.137863 6.459013e-05 5.029803e-04
## NMRAL1 -11.5960733 1.672887e+01 -4.137593 6.465676e-05 5.031688e-04
## IDH3B -20.5118596 5.581112e+01 -4.137088 6.478168e-05 5.038103e-04
## WDR24 -1.6240500 2.938215e+00 -4.136095 6.502776e-05 5.051089e-04
## ITFG1 11.6074655 3.305206e+01 4.136071 6.503384e-05 5.051089e-04
## ADORA2A -17.3637560 2.737159e+01 -4.135481 6.518044e-05 5.059162e-04
## FBXW5 -27.2002445 3.542401e+01 -4.135141 6.526514e-05 5.061787e-04
## BORCS8 -12.9651667 2.273991e+01 -4.135003 6.529961e-05 5.061787e-04
## RNF169 27.8254570 5.189974e+01 4.134740 6.536525e-05 5.062956e-04
## JPT1 -76.5488189 1.543234e+02 -4.134600 6.540007e-05 5.062956e-04
## RNF19A 23.8573703 6.059115e+01 4.133860 6.558516e-05 5.073972e-04
## NAA35 1.9971431 7.548764e+00 4.133471 6.568283e-05 5.078216e-04
## QARS1 -37.0057820 1.124299e+02 -4.131278 6.623498e-05 5.114828e-04
## LEPROT 32.4882411 8.947314e+01 4.131248 6.624262e-05 5.114828e-04
## HSD17B10 -20.0511162 3.583463e+01 -4.130745 6.636978e-05 5.120515e-04
## LSR -2.0907058 2.717078e+00 -4.130615 6.640263e-05 5.120515e-04
## MME 315.4257570 4.623207e+02 4.128796 6.686516e-05 5.151525e-04
## EEFSEC -4.8390002 6.400606e+00 -4.128654 6.690137e-05 5.151525e-04
## SS18L1 1.9950289 9.890588e+00 4.128522 6.693507e-05 5.151525e-04
## FASTK -13.9329587 1.917378e+01 -4.128182 6.702216e-05 5.154882e-04
## NUDT4B 16.0291558 4.657074e+01 4.126298 6.750554e-05 5.188695e-04
## CTNNBIP1 -5.6476223 1.671485e+01 -4.125731 6.765156e-05 5.196033e-04
## ABCF3 -8.6443387 2.887444e+01 -4.125530 6.770355e-05 5.196033e-04
## MIER3 3.7519701 1.024188e+01 4.125418 6.773244e-05 5.196033e-04
## ZNF574 -2.1798261 5.547733e+00 -4.124559 6.795458e-05 5.209705e-04
## PIK3R6 -5.8759061 9.613134e+00 -4.124262 6.803152e-05 5.212234e-04
## REX1BD -4.1498318 3.423726e+00 -4.123455 6.824120e-05 5.224924e-04
## ZNF8 2.7014472 9.043717e+00 4.122737 6.842832e-05 5.235870e-04
## PNMA1 5.8335839 1.804228e+01 4.122516 6.848579e-05 5.236693e-04
## TFEB -56.2032407 9.473989e+01 -4.122357 6.852738e-05 5.236693e-04
## TNNC2 -1.2280706 1.436843e+00 -4.121957 6.863188e-05 5.241301e-04
## MIF -7.0567736 6.159010e+00 -4.121206 6.882879e-05 5.252957e-04
## TAB3 14.4039094 3.729086e+01 4.118944 6.942438e-05 5.294605e-04
## TWSG1 2.5515053 6.287963e+00 4.118795 6.946378e-05 5.294605e-04
## PIK3R2 -2.9373128 7.528999e+00 -4.117080 6.991909e-05 5.324051e-04
## C2orf88 15.7823399 3.627545e+01 4.117002 6.993990e-05 5.324051e-04
## ZNF316 -13.6168723 3.979331e+01 -4.115434 7.035864e-05 5.352492e-04
## DNAJC14 9.4092975 3.068707e+01 4.115227 7.041407e-05 5.353275e-04
## NAALADL1 -4.4881114 5.807295e+00 -4.114844 7.051682e-05 5.357652e-04
## NCLN -25.9906891 4.016096e+01 -4.114560 7.059316e-05 5.360019e-04
## ALDH3B1 -27.3390350 5.200472e+01 -4.113748 7.081157e-05 5.373162e-04
## APBB1 -7.6457085 1.029755e+01 -4.113551 7.086467e-05 5.373753e-04
## TAF10 -41.0064482 1.088662e+02 -4.113282 7.093726e-05 5.375820e-04
## SYNJ2 4.1927469 9.003649e+00 4.112686 7.109854e-05 5.384602e-04
## RPL14 -206.6184452 4.359828e+02 -4.111614 7.138920e-05 5.403165e-04
## CD7 -16.5724414 1.269969e+01 -4.111338 7.146413e-05 5.405386e-04
## TBK1 26.3972455 6.103732e+01 4.110707 7.163583e-05 5.412018e-04
## CDK12 12.7289736 4.035948e+01 4.110680 7.164308e-05 5.412018e-04
## USP31 1.3167318 4.433027e+00 4.110372 7.172725e-05 5.414928e-04
## SPATA7 -0.4992497 1.202327e+00 -4.108288 7.229802e-05 5.450457e-04
## VGLL4 3.1047711 8.831687e+00 4.108197 7.232296e-05 5.450457e-04
## CDYL2 3.5034034 9.220896e+00 4.108053 7.236266e-05 5.450457e-04
## KIAA1109 57.6434968 1.164281e+02 4.107984 7.238171e-05 5.450457e-04
## ZSCAN2 -2.0308129 5.631078e+00 -4.105764 7.299506e-05 5.491654e-04
## TM7SF3 7.2987750 3.271562e+01 4.105669 7.302140e-05 5.491654e-04
## SNTA1 -1.6565328 1.745718e+00 -4.105293 7.312591e-05 5.494391e-04
## MAP3K6 -3.7718455 6.981483e+00 -4.105205 7.315045e-05 5.494391e-04
## EPC2 13.9087832 3.475894e+01 4.105037 7.319705e-05 5.494411e-04
## UBXN6 -24.8485373 3.852493e+01 -4.104672 7.329882e-05 5.498571e-04
## HELB 2.6167706 3.936331e+00 4.104466 7.335614e-05 5.499392e-04
## JCHAIN 789.6469425 6.739732e+02 4.102969 7.377463e-05 5.527272e-04
## SLC38A2 140.7397826 2.550631e+02 4.101927 7.406717e-05 5.545686e-04
## HECTD1 16.2066564 4.431339e+01 4.100832 7.437589e-05 5.565287e-04
## UBA52 -427.1991559 7.891039e+02 -4.100079 7.458907e-05 5.577720e-04
## TRIR -77.6016980 1.294770e+02 -4.099908 7.463751e-05 5.577825e-04
## EHD3 9.7822494 2.032934e+01 4.099322 7.480360e-05 5.586717e-04
## ZNF81 4.1258296 1.015307e+01 4.098238 7.511234e-05 5.606245e-04
## PLD6 1.9880299 4.416462e+00 4.097800 7.523716e-05 5.610474e-04
## MFSD10 -9.4547031 1.274814e+01 -4.097585 7.529858e-05 5.610474e-04
## C19orf53 -21.5292301 3.260124e+01 -4.097355 7.536428e-05 5.610474e-04
## ACADS -3.9799351 4.749622e+00 -4.097277 7.538672e-05 5.610474e-04
## PUS1 -3.5507787 5.357162e+00 -4.097211 7.540552e-05 5.610474e-04
## OGT 74.8556598 2.333961e+02 4.096864 7.550495e-05 5.614350e-04
## ZNF75D 4.4294209 1.705072e+01 4.096567 7.559017e-05 5.617164e-04
## BAZ2A 66.1288895 1.888915e+02 4.096258 7.567890e-05 5.620237e-04
## CREB3L2 7.3109973 1.981567e+01 4.094934 7.606017e-05 5.643324e-04
## PPIL2 -8.3075133 2.895664e+01 -4.094707 7.612557e-05 5.643324e-04
## PIKFYVE 26.2206348 5.550777e+01 4.094683 7.613253e-05 5.643324e-04
## TMEM128 -2.2348685 9.579223e+00 -4.094262 7.625414e-05 5.646715e-04
## NBPF10 70.7319043 1.138213e+02 4.094196 7.627351e-05 5.646715e-04
## YAF2 5.5437716 1.855719e+01 4.093905 7.635771e-05 5.649422e-04
## WDR48 12.7981163 4.323479e+01 4.093691 7.641963e-05 5.650479e-04
## TEN1 -6.6567394 9.883984e+00 -4.092731 7.669855e-05 5.667569e-04
## ZNF581 -9.2436140 1.407894e+01 -4.092266 7.683381e-05 5.674028e-04
## USE1 -4.7294404 6.885723e+00 -4.091747 7.698512e-05 5.680868e-04
## MRPL28 -25.7677371 3.672365e+01 -4.091620 7.702223e-05 5.680868e-04
## ABCC4 9.8794320 1.594838e+01 4.090863 7.724377e-05 5.693668e-04
## LGALS1 -112.8709235 1.560579e+02 -4.090642 7.730842e-05 5.694893e-04
## SNX19 12.1563412 4.080178e+01 4.090459 7.736210e-05 5.695310e-04
## RBM14 -6.7070596 2.020115e+01 -4.089261 7.771429e-05 5.717689e-04
## SLC9A3 -3.0732850 7.545866e+00 -4.088694 7.788150e-05 5.724490e-04
## SIL1 -9.6049338 1.473963e+01 -4.088621 7.790326e-05 5.724490e-04
## MMS22L 1.3520963 3.994012e+00 4.088191 7.803034e-05 5.726886e-04
## CDK14 16.1521861 2.908659e+01 4.088183 7.803244e-05 5.726886e-04
## TCHP 4.1385250 1.758723e+01 4.087512 7.823120e-05 5.737922e-04
## PIDD1 -2.4035073 2.507303e+00 -4.086658 7.848493e-05 5.750593e-04
## YJU2 -5.1329784 8.966040e+00 -4.086604 7.850093e-05 5.750593e-04
## ITGB1 87.3611080 2.508506e+02 4.085590 7.880302e-05 5.768894e-04
## KCNMB1 -1.9443480 4.568279e+00 -4.085440 7.884803e-05 5.768894e-04
## PEX5 -3.5877496 1.715291e+01 -4.084806 7.903763e-05 5.779201e-04
## GPS1 -14.0718633 2.055775e+01 -4.083760 7.935123e-05 5.796833e-04
## SMPD2 -4.7598689 1.086746e+01 -4.083676 7.937653e-05 5.796833e-04
## INPP5E -1.8839671 3.934240e+00 -4.081094 8.015637e-05 5.850182e-04
## ZNF324B -0.6022526 1.494305e+00 -4.080760 8.025780e-05 5.853982e-04
## PI4K2B 6.0776824 1.531449e+01 4.080026 8.048110e-05 5.866661e-04
## PRELID3B 10.5658982 3.881452e+01 4.079485 8.064607e-05 5.875076e-04
## HOMER3 -6.5466275 1.220168e+01 -4.077867 8.114160e-05 5.907328e-04
## DDX28 -4.2263649 1.279964e+01 -4.077680 8.119906e-05 5.907328e-04
## KCNMB4 -0.6431541 1.185359e+00 -4.077552 8.123821e-05 5.907328e-04
## ZNF778 1.5294536 6.761855e+00 4.076916 8.143389e-05 5.917929e-04
## MTRES1 -1.5301975 4.660758e+00 -4.076563 8.154278e-05 5.922213e-04
## DAGLB -8.3012407 2.410453e+01 -4.075814 8.177427e-05 5.935391e-04
## MED16 -9.3391537 1.375212e+01 -4.075284 8.193848e-05 5.943672e-04
## EIF6 -35.8504759 7.179992e+01 -4.074424 8.220540e-05 5.959389e-04
## ZNF691 -2.4871377 7.326318e+00 -4.073897 8.236929e-05 5.967622e-04
## TENT5C 50.1638581 6.198452e+01 4.072788 8.271556e-05 5.989051e-04
## BAG6 -23.7183054 1.182935e+02 -4.071935 8.298245e-05 6.004709e-04
## AKAP8L -13.4820973 5.281197e+01 -4.070537 8.342236e-05 6.029939e-04
## KANSL3 7.0746114 3.350078e+01 4.070504 8.343280e-05 6.029939e-04
## IL6ST 29.3549788 7.018728e+01 4.069844 8.364091e-05 6.039874e-04
## GTF3C5 -15.9820407 3.660590e+01 -4.069746 8.367212e-05 6.039874e-04
## HMGCL -9.2780879 2.599589e+01 -4.069383 8.378694e-05 6.044484e-04
## MYL5 -1.7831986 2.187574e+00 -4.068464 8.407845e-05 6.061826e-04
## SPAG1 4.3620550 7.047075e+00 4.066816 8.460324e-05 6.095956e-04
## H2BC8 1.4903402 2.516798e+00 4.065530 8.501523e-05 6.119512e-04
## TMSB10 -967.9014465 1.540732e+03 -4.065474 8.503336e-05 6.119512e-04
## PURB 15.0083930 4.766740e+01 4.064640 8.530130e-05 6.135072e-04
## B4GALT5 189.1239583 3.283939e+02 4.063352 8.571721e-05 6.161187e-04
## TNPO1 39.5805356 8.426560e+01 4.063194 8.576829e-05 6.161187e-04
## FAAP100 -5.4327530 7.343460e+00 -4.062647 8.594555e-05 6.170183e-04
## NUTM2D -2.9581062 5.869624e+00 -4.062475 8.600150e-05 6.170465e-04
## PFN1 -458.8483651 9.599760e+02 -4.061723 8.624584e-05 6.181055e-04
## SKP1 -57.9497140 1.994948e+02 -4.061613 8.628187e-05 6.181055e-04
## USO1 13.6935478 4.623941e+01 4.061540 8.630546e-05 6.181055e-04
## AP1B1 -19.5673744 5.288828e+01 -4.060068 8.678614e-05 6.211730e-04
## IL21R -5.5679362 9.077452e+00 -4.059893 8.684358e-05 6.212092e-04
## STAMBP 7.1670703 3.094877e+01 4.058762 8.721483e-05 6.234888e-04
## VPS13B 20.6693798 4.326907e+01 4.057828 8.752252e-05 6.249411e-04
## ACP5 -10.4040516 1.561636e+01 -4.057826 8.752338e-05 6.249411e-04
## PRAM1 -39.4222730 6.144100e+01 -4.057608 8.759522e-05 6.250778e-04
## PLK1 1.8408027 2.521290e+00 4.057089 8.776692e-05 6.259265e-04
## TIMM9 -3.7587596 8.627813e+00 -4.056118 8.808871e-05 6.278438e-04
## ZNF48 -2.2759088 3.972516e+00 -4.055346 8.834572e-05 6.292975e-04
## KCNQ5 0.5539898 1.012879e+00 4.054311 8.869109e-05 6.313783e-04
## ICOSLG -2.6450817 4.295330e+00 -4.053473 8.897172e-05 6.329962e-04
## AMDHD2 -6.8053195 9.567544e+00 -4.050901 8.983811e-05 6.387769e-04
## C12orf76 4.0141108 1.295168e+01 4.050636 8.992791e-05 6.390324e-04
## CLPX 8.4022711 3.607939e+01 4.050465 8.998558e-05 6.390593e-04
## TBC1D17 -7.0655043 1.685730e+01 -4.049902 9.017666e-05 6.397887e-04
## STX4 -17.1421534 5.384012e+01 -4.049845 9.019618e-05 6.397887e-04
## ZNF32 -9.6447011 1.629417e+01 -4.049667 9.025675e-05 6.398356e-04
## NDUFV1 -26.3623916 3.372970e+01 -4.049354 9.036296e-05 6.402059e-04
## TOMM6 -25.5094729 5.964225e+01 -4.048291 9.072545e-05 6.423695e-04
## PPM1F -74.7435702 1.712101e+02 -4.048141 9.077667e-05 6.423695e-04
## SYNRG 14.3171749 4.828859e+01 4.047820 9.088641e-05 6.425558e-04
## PTGES2 -7.3569241 9.792072e+00 -4.047654 9.094324e-05 6.425558e-04
## RFC3 1.5948278 3.856438e+00 4.047589 9.096553e-05 6.425558e-04
## SAP25 -17.4412728 1.959619e+01 -4.046434 9.136198e-05 6.449720e-04
## ZNF853 -1.5530426 2.134514e+00 -4.045793 9.158269e-05 6.461456e-04
## DSN1 2.7022743 1.080937e+01 4.044762 9.193870e-05 6.482717e-04
## WDR81 -8.7646949 1.590335e+01 -4.043804 9.227091e-05 6.502276e-04
## EOGT 1.4695446 5.719742e+00 4.043597 9.234283e-05 6.503480e-04
## SMIM12 -11.5944223 4.306449e+01 -4.043249 9.246373e-05 6.508129e-04
## CDK1 7.2095726 6.945888e+00 4.042679 9.266229e-05 6.518237e-04
## SENP5 4.9813477 2.901791e+01 4.041338 9.313092e-05 6.543778e-04
## STING1 -26.6986004 7.368207e+01 -4.041316 9.313878e-05 6.543778e-04
## TUT1 -2.7473080 6.978918e+00 -4.041167 9.319091e-05 6.543778e-04
## KIFAP3 4.9380188 1.393447e+01 4.040831 9.330872e-05 6.548174e-04
## SPTBN1 16.2342799 3.219713e+01 4.039913 9.363139e-05 6.566932e-04
## BTN2A2 14.9664652 3.296008e+01 4.039669 9.371717e-05 6.567846e-04
## CEP162 4.5911019 1.075719e+01 4.039562 9.375517e-05 6.567846e-04
## RASA1 8.6947342 2.479803e+01 4.038765 9.403622e-05 6.583646e-04
## URM1 -14.0695904 3.645555e+01 -4.038417 9.415942e-05 6.588382e-04
## LENG9 -3.0109796 2.339504e+00 -4.037931 9.433168e-05 6.596543e-04
## EOLA1 -3.2177423 1.819797e+01 -4.037341 9.454127e-05 6.607304e-04
## RPH3A 70.4962744 6.782958e+01 4.036854 9.471418e-05 6.615490e-04
## BMPR2 9.4944569 2.047370e+01 4.035887 9.505935e-05 6.633274e-04
## UAP1 9.8570970 1.591913e+01 4.035742 9.511087e-05 6.633274e-04
## ZMIZ2 -8.0976987 2.160966e+01 -4.035661 9.513992e-05 6.633274e-04
## BAX -25.8812514 5.942547e+01 -4.035514 9.519251e-05 6.633274e-04
## ZNF71 -1.2544978 3.016998e+00 -4.035274 9.527825e-05 6.635350e-04
## AMPD2 -81.4403323 1.416329e+02 -4.034398 9.559263e-05 6.652809e-04
## GFER -5.7652272 8.896291e+00 -4.034263 9.564115e-05 6.652809e-04
## SLFN12 5.6333244 1.253977e+01 4.031619 9.659567e-05 6.715267e-04
## ST13 -14.5938125 8.170272e+01 -4.031340 9.669667e-05 6.715676e-04
## SPATA2L -5.0358009 6.162861e+00 -4.031226 9.673811e-05 6.715676e-04
## SELENON -10.6680638 2.696512e+01 -4.031087 9.678873e-05 6.715676e-04
## PPAT 1.5631748 3.558442e+00 4.030726 9.691984e-05 6.715676e-04
## DESI2 5.0108112 2.281496e+01 4.030694 9.693162e-05 6.715676e-04
## FERMT3 -111.4139577 2.103145e+02 -4.030533 9.699011e-05 6.715676e-04
## THAP3 -5.0628235 8.212353e+00 -4.030474 9.701176e-05 6.715676e-04
## SRRT -15.2869499 4.574573e+01 -4.030356 9.705454e-05 6.715676e-04
## EPDR1 0.5936835 1.176926e+00 4.030022 9.717641e-05 6.720188e-04
## MRPL4 -6.2323108 6.632145e+00 -4.029567 9.734256e-05 6.726469e-04
## WAC 89.8748255 2.422765e+02 4.029463 9.738067e-05 6.726469e-04
## PDE5A 6.2715489 1.268432e+01 4.028917 9.758055e-05 6.736352e-04
## CCNB1 4.5097890 5.424136e+00 4.028365 9.778286e-05 6.746391e-04
## RHPN1 -1.8270425 1.631164e+00 -4.028126 9.787051e-05 6.748513e-04
## JMJD8 -11.4761161 1.656877e+01 -4.027463 9.811438e-05 6.760933e-04
## TMEM86B -3.1789055 4.339878e+00 -4.027192 9.821423e-05 6.760933e-04
## XAB2 -11.3852296 2.158461e+01 -4.027172 9.822165e-05 6.760933e-04
## PIN1 -12.3696419 1.756315e+01 -4.025799 9.872896e-05 6.791911e-04
## POP4 -5.9879067 2.253557e+01 -4.025179 9.895877e-05 6.803774e-04
## RMC1 5.8496281 3.124943e+01 4.024868 9.907443e-05 6.807780e-04
## NEDD8 -56.9259595 1.413112e+02 -4.024547 9.919358e-05 6.812020e-04
## ZNFX1 86.4014320 1.987261e+02 4.023463 9.959757e-05 6.835805e-04
## KCTD3 1.7690349 4.933285e+00 4.023184 9.970217e-05 6.839027e-04
## AGO3 7.4392402 2.559811e+01 4.021652 1.002764e-04 6.874071e-04
## ZNF385D -2.6469225 5.222245e+00 -4.021512 1.003290e-04 6.874071e-04
## LSM4 -10.1957086 2.153803e+01 -4.017941 1.016806e-04 6.959422e-04
## TLE5 -140.4174414 1.823832e+02 -4.017810 1.017307e-04 6.959422e-04
## DGAT1 -21.5123478 4.230236e+01 -4.017757 1.017507e-04 6.959422e-04
## POLR1D -15.3558566 6.077475e+01 -4.014526 1.029896e-04 7.040099e-04
## RFC4 2.9130032 8.599739e+00 4.013253 1.034819e-04 7.069676e-04
## SLC35A3 3.0205389 1.108306e+01 4.012967 1.035926e-04 7.073161e-04
## FDXR -2.4748882 3.060171e+00 -4.012790 1.036612e-04 7.073773e-04
## OCRL 2.1949172 5.708875e+00 4.012128 1.039185e-04 7.087256e-04
## LONP1 -8.6236418 1.202611e+01 -4.011055 1.043366e-04 7.111675e-04
## KPNA6 9.4937082 4.246204e+01 4.009828 1.048167e-04 7.137918e-04
## PAXIP1 1.7510690 6.051895e+00 4.009764 1.048419e-04 7.137918e-04
## CYLD 53.0143540 1.725038e+02 4.009529 1.049340e-04 7.140088e-04
## HARBI1 1.1277786 4.396917e+00 4.008922 1.051726e-04 7.152049e-04
## TRAPPC10 19.2861319 7.131962e+01 4.008775 1.052304e-04 7.152049e-04
## SMCO4 -10.9393059 2.082502e+01 -4.008125 1.054866e-04 7.162240e-04
## RPS15 -181.7197801 1.712884e+02 -4.008088 1.055011e-04 7.162240e-04
## UNK -1.8288672 5.764356e+00 -4.007847 1.055965e-04 7.164615e-04
## CTNNAL1 3.7300067 6.573702e+00 4.007505 1.057317e-04 7.169584e-04
## SSR1 26.9099107 1.405781e+02 4.007356 1.057907e-04 7.169584e-04
## PUS7L 4.1281591 1.317004e+01 4.005552 1.065068e-04 7.207595e-04
## RPL31 -261.7572790 5.798508e+02 -4.005510 1.065235e-04 7.207595e-04
## RELL2 -4.0582947 7.260266e+00 -4.005397 1.065684e-04 7.207595e-04
## NANP 0.6758189 2.393846e+00 4.005331 1.065946e-04 7.207595e-04
## C18orf54 0.6131742 1.642474e+00 4.004686 1.068521e-04 7.220890e-04
## WASHC1 -68.8580759 1.276131e+02 -4.004248 1.070272e-04 7.228604e-04
## SNF8 -18.5529674 4.642449e+01 -4.003566 1.073003e-04 7.242923e-04
## PCOLCE -0.8422094 1.317475e+00 -4.003270 1.074191e-04 7.246816e-04
## PCBD1 -1.5956702 4.670637e+00 -4.002926 1.075573e-04 7.249142e-04
## HERC2 17.5827891 3.273910e+01 4.002880 1.075758e-04 7.249142e-04
## ANKRA2 4.0672299 1.404003e+01 4.002082 1.078972e-04 7.266669e-04
## GALNT10 7.8987981 4.787751e+01 4.000414 1.085716e-04 7.301388e-04
## LONRF3 3.1884795 4.007938e+00 4.000303 1.086168e-04 7.301388e-04
## CAV2 1.8680751 2.579547e+00 4.000278 1.086268e-04 7.301388e-04
## EHD1 -72.9077151 1.832896e+02 -4.000199 1.086589e-04 7.301388e-04
## COQ4 -5.9178047 7.047491e+00 -3.998059 1.095307e-04 7.353534e-04
## ZNF512B -2.2877561 4.074057e+00 -3.997990 1.095590e-04 7.353534e-04
## INF2 -6.2918293 9.369260e+00 -3.997391 1.098044e-04 7.365835e-04
## ANO9 -10.9928260 9.193611e+00 -3.996723 1.100786e-04 7.380059e-04
## HBA1 -2333.6950131 1.667291e+03 -3.995972 1.103875e-04 7.395894e-04
## FAM8A1 102.0621196 2.186716e+02 3.995846 1.104395e-04 7.395894e-04
## SBF2 24.9019061 4.786018e+01 3.995205 1.107039e-04 7.407252e-04
## ME3 -0.8828753 1.309368e+00 -3.995132 1.107340e-04 7.407252e-04
## DHRS3 -5.1135306 6.324083e+00 -3.994959 1.108056e-04 7.407858e-04
## KIF5B 49.0711470 1.318361e+02 3.994143 1.111436e-04 7.426272e-04
## FAM199X 11.5083882 3.456611e+01 3.993308 1.114904e-04 7.441629e-04
## BOP1 -6.7303362 6.985680e+00 -3.993288 1.114989e-04 7.441629e-04
## DRG2 -7.3002238 1.504177e+01 -3.992037 1.120205e-04 7.472233e-04
## RPP21 -3.5996711 4.346456e+00 -3.991681 1.121692e-04 7.477948e-04
## TAF4B 1.8012898 3.161009e+00 3.991013 1.124491e-04 7.492398e-04
## STIM1 14.8636643 7.598464e+01 3.990584 1.126292e-04 7.500184e-04
## ARIH1 15.9137394 5.536855e+01 3.989300 1.131697e-04 7.529732e-04
## TTLL5 1.4358101 5.402496e+00 3.989228 1.131999e-04 7.529732e-04
## INTS5 -5.6124554 1.438611e+01 -3.988392 1.135537e-04 7.549027e-04
## IRAK2 7.8975977 1.125861e+01 3.986695 1.142741e-04 7.592663e-04
## MICB 11.5931732 3.013400e+01 3.985839 1.146392e-04 7.608763e-04
## MAN1A2 8.5259927 2.294460e+01 3.985826 1.146447e-04 7.608763e-04
## NFATC2IP 5.7790768 2.723838e+01 3.985482 1.147920e-04 7.614276e-04
## MAP2K2 -25.9735794 5.718113e+01 -3.985078 1.149646e-04 7.620613e-04
## HPS3 7.9782998 3.272897e+01 3.984958 1.150160e-04 7.620613e-04
## CPSF2 14.9178380 5.700730e+01 3.983443 1.156670e-04 7.659470e-04
## FBXW4 -10.0904059 2.167381e+01 -3.982699 1.159884e-04 7.676462e-04
## GCNT1 7.5953305 1.954592e+01 3.982418 1.161098e-04 7.680215e-04
## GIGYF1 -19.3108710 6.456015e+01 -3.982245 1.161846e-04 7.680879e-04
## NLE1 -2.1764823 4.429862e+00 -3.981485 1.165137e-04 7.698343e-04
## RHBDD3 -1.3315914 1.742790e+00 -3.980904 1.167660e-04 7.710717e-04
## SNRPD3 -12.9649613 6.628231e+01 -3.979685 1.172972e-04 7.740685e-04
## NAA38 -18.1307280 2.271306e+01 -3.979471 1.173907e-04 7.740685e-04
## SETD5 20.1850743 5.800582e+01 3.979414 1.174156e-04 7.740685e-04
## PYM1 -8.5228242 1.947500e+01 -3.978804 1.176824e-04 7.753964e-04
## RNF187 -18.3658468 3.671700e+01 -3.977856 1.180986e-04 7.772905e-04
## PRRG4 60.7816009 7.128888e+01 3.977850 1.181010e-04 7.772905e-04
## RABGGTA -5.7734605 1.531104e+01 -3.977217 1.183797e-04 7.786929e-04
## U2SURP 15.0310379 5.825129e+01 3.976458 1.187143e-04 7.802418e-04
## CCNE1 1.2736155 1.938149e+00 3.976385 1.187468e-04 7.802418e-04
## PAXX -12.7040951 1.168513e+01 -3.975745 1.190299e-04 7.816690e-04
## ZNF578 -0.8530589 1.902252e+00 -3.974993 1.193630e-04 7.834228e-04
## TNIP2 -11.7665126 3.592328e+01 -3.974232 1.197017e-04 7.852115e-04
## HERC1 23.6579120 7.746065e+01 3.973822 1.198842e-04 7.859740e-04
## CDK10 -12.0647261 1.716372e+01 -3.973470 1.200414e-04 7.865694e-04
## AAAS -6.7063555 2.098386e+01 -3.972448 1.204981e-04 7.881573e-04
## DNAJC17 -5.8159276 1.218526e+01 -3.972129 1.206414e-04 7.881573e-04
## KCNIP2 -0.6152272 1.316227e+00 -3.972120 1.206454e-04 7.881573e-04
## ZNF446 -3.2391631 5.543368e+00 -3.972078 1.206642e-04 7.881573e-04
## ETFB -21.1581812 2.558850e+01 -3.971992 1.207027e-04 7.881573e-04
## NDUFA13 -62.8843371 7.325513e+01 -3.971927 1.207320e-04 7.881573e-04
## MROH1 -3.7223157 7.455327e+00 -3.971889 1.207489e-04 7.881573e-04
## VANGL1 1.4255729 3.245556e+00 3.970801 1.212385e-04 7.909178e-04
## USP24 14.2465432 4.766086e+01 3.970198 1.215102e-04 7.919858e-04
## PHACTR4 3.8187100 1.447161e+01 3.970142 1.215358e-04 7.919858e-04
## PGP -7.1078839 1.401906e+01 -3.968803 1.221418e-04 7.954977e-04
## RAD54B 0.6056514 1.374293e+00 3.968447 1.223035e-04 7.961141e-04
## ACAP1 -85.0770570 1.814443e+02 -3.967986 1.225130e-04 7.970404e-04
## SNTB2 10.2521412 2.300223e+01 3.967630 1.226756e-04 7.972439e-04
## RPS19 -478.6018826 4.883219e+02 -3.967623 1.226788e-04 7.972439e-04
## GIT1 -10.7643691 2.683896e+01 -3.966652 1.231221e-04 7.995408e-04
## FADS3 -1.6154024 3.447368e+00 -3.966553 1.231670e-04 7.995408e-04
## LTBP1 7.6471519 1.225122e+01 3.965488 1.236552e-04 8.022707e-04
## ECSIT -5.5046005 9.465281e+00 -3.964902 1.239245e-04 8.035779e-04
## CTNNBL1 -10.8836384 3.493474e+01 -3.964237 1.242310e-04 8.051254e-04
## SERGEF -4.4302559 8.533401e+00 -3.963841 1.244139e-04 8.058703e-04
## LARP1B 2.1246121 5.579827e+00 3.962779 1.249051e-04 8.086107e-04
## LARP4 3.7169244 1.249580e+01 3.961982 1.252755e-04 8.104009e-04
## CPTP -3.6367207 5.274636e+00 -3.961890 1.253183e-04 8.104009e-04
## MEIS1 2.7949793 5.378549e+00 3.961613 1.254469e-04 8.107901e-04
## KHDC4 5.8718176 2.524410e+01 3.960967 1.257481e-04 8.122943e-04
## FLJ44635 -1.8929923 3.438260e+00 -3.960600 1.259193e-04 8.127672e-04
## CISD3 -7.7017381 1.071860e+01 -3.960517 1.259584e-04 8.127672e-04
## ACTG1 -533.3473912 1.362670e+03 -3.959638 1.263698e-04 8.149785e-04
## WIPF2 22.6677867 6.652457e+01 3.958978 1.266797e-04 8.165331e-04
## TGFB1 -85.9999151 2.032272e+02 -3.958574 1.268695e-04 8.173127e-04
## MYSM1 14.7739127 3.101399e+01 3.956327 1.279312e-04 8.236387e-04
## LTN1 14.1327013 3.265337e+01 3.956202 1.279904e-04 8.236387e-04
## OVCA2 -8.9610342 1.762639e+01 -3.955100 1.285143e-04 8.261416e-04
## RPS21 -135.0554347 1.582505e+02 -3.955091 1.285187e-04 8.261416e-04
## ABLIM3 15.8433754 2.660013e+01 3.954667 1.287208e-04 8.263959e-04
## CCNB2 4.0383627 4.519676e+00 3.954585 1.287600e-04 8.263959e-04
## ENKD1 -2.8669657 3.950843e+00 -3.954570 1.287672e-04 8.263959e-04
## H4C8 5.4924764 5.878736e+00 3.953586 1.292377e-04 8.289665e-04
## NOL12 -6.7750461 2.286315e+01 -3.953386 1.293335e-04 8.291327e-04
## CHCHD10 -6.9210216 7.115650e+00 -3.953171 1.294367e-04 8.293461e-04
## TIMM13 -8.1527097 9.269463e+00 -3.952319 1.298458e-04 8.315180e-04
## BLOC1S3 -3.1126403 1.518008e+01 -3.951789 1.301012e-04 8.327036e-04
## NR1D1 -1.3508318 1.989791e+00 -3.950160 1.308887e-04 8.372926e-04
## VAMP1 15.6438215 5.703691e+01 3.949129 1.313895e-04 8.400431e-04
## STX5 -23.8781080 5.960294e+01 -3.948928 1.314870e-04 8.402132e-04
## MED12L 2.0950467 2.302674e+00 3.947793 1.320411e-04 8.431606e-04
## ZKSCAN3 1.0044860 4.269976e+00 3.947692 1.320904e-04 8.431606e-04
## RAVER1 -13.4552278 3.064898e+01 -3.946962 1.324476e-04 8.438996e-04
## MCMBP 45.7902604 1.342862e+02 3.946949 1.324541e-04 8.438996e-04
## DTX2 -10.3961694 2.113412e+01 -3.946919 1.324687e-04 8.438996e-04
## RASSF7 -9.7740574 7.936898e+00 -3.946874 1.324908e-04 8.438996e-04
## PLEKHM3 9.1385625 1.785398e+01 3.946627 1.326120e-04 8.442184e-04
## C1QTNF6 -1.8104707 3.743056e+00 -3.945614 1.331103e-04 8.465218e-04
## COQ9 -3.6186896 1.839751e+01 -3.945601 1.331166e-04 8.465218e-04
## ORC2 5.2311874 1.750766e+01 3.944975 1.334255e-04 8.480314e-04
## COMMD9 -10.4237854 3.856956e+01 -3.944708 1.335573e-04 8.484144e-04
## LSM14A 30.5135053 1.306511e+02 3.944127 1.338450e-04 8.497867e-04
## ASGR2 -23.4136084 3.299900e+01 -3.943893 1.339608e-04 8.500672e-04
## NDRG3 9.3808579 4.080456e+01 3.942539 1.346335e-04 8.537857e-04
## DNAJC30 -1.4968267 2.862615e+00 -3.942424 1.346908e-04 8.537857e-04
## NELFE -23.8490976 5.379988e+01 -3.942118 1.348435e-04 8.542971e-04
## C10orf143 -0.8789502 1.522015e+00 -3.941649 1.350774e-04 8.545784e-04
## MIIP -18.6241868 3.057718e+01 -3.941628 1.350879e-04 8.545784e-04
## COQ8A -15.7846387 3.535968e+01 -3.941461 1.351712e-04 8.545784e-04
## USP49 2.9636444 8.151365e+00 3.941451 1.351761e-04 8.545784e-04
## GNAI2 -183.6379170 6.991300e+02 -3.940226 1.357902e-04 8.580032e-04
## NOC4L -1.8676721 2.475631e+00 -3.940070 1.358687e-04 8.580418e-04
## GAMT -1.6348638 1.547255e+00 -3.937539 1.371456e-04 8.656452e-04
## WDR47 7.8354110 1.887631e+01 3.936358 1.377454e-04 8.689681e-04
## ATP5F1D -12.7584990 8.241636e+00 -3.934772 1.385552e-04 8.736120e-04
## NIPA1 2.3254084 5.963572e+00 3.933316 1.393024e-04 8.774746e-04
## NME3 -4.4768418 3.381609e+00 -3.933290 1.393157e-04 8.774746e-04
## THOC6 -8.3574434 1.286914e+01 -3.931370 1.403070e-04 8.832489e-04
## TNFRSF25 -5.7480547 6.405671e+00 -3.930730 1.406386e-04 8.844340e-04
## GON4L 9.7020992 4.522734e+01 3.930719 1.406444e-04 8.844340e-04
## OGFR -28.7964667 5.197173e+01 -3.930402 1.408091e-04 8.850004e-04
## ACBD3 7.9626865 2.900214e+01 3.929942 1.410486e-04 8.860363e-04
## VPS72 -4.7405848 2.672480e+01 -3.929751 1.411482e-04 8.861923e-04
## SPOCK2 -53.0665974 8.982975e+01 -3.928268 1.419224e-04 8.905818e-04
## PAPOLG 12.8004513 3.390322e+01 3.928025 1.420501e-04 8.909121e-04
## ZNF765 2.4047150 7.979432e+00 3.927696 1.422225e-04 8.915057e-04
## ERMP1 3.2867631 1.049954e+01 3.927558 1.422951e-04 8.915057e-04
## MIF4GD -9.3613344 2.396256e+01 -3.926023 1.431032e-04 8.960949e-04
## PTDSS2 -3.1601703 5.440338e+00 -3.925697 1.432753e-04 8.966994e-04
## IMPDH2 -16.7943758 3.910486e+01 -3.924374 1.439760e-04 9.006096e-04
## SLC2A8 -1.2769533 1.523039e+00 -3.921552 1.454815e-04 9.095471e-04
## TSNARE1 -1.9796029 3.936729e+00 -3.921371 1.455790e-04 9.096770e-04
## DIABLO -4.9651373 2.386523e+01 -3.920947 1.458064e-04 9.106180e-04
## AP4E1 4.0586991 1.253658e+01 3.919453 1.466113e-04 9.149853e-04
## AP3B1 14.9976594 4.896297e+01 3.919363 1.466600e-04 9.149853e-04
## GFM2 3.6702329 1.627594e+01 3.918127 1.473291e-04 9.186767e-04
## LMBRD2 5.3367486 1.451010e+01 3.917088 1.478941e-04 9.217154e-04
## MATK -10.3511607 9.315206e+00 -3.915715 1.486437e-04 9.259005e-04
## XRN1 58.3485357 9.117972e+01 3.914894 1.490941e-04 9.280979e-04
## GNE 3.1750329 1.085411e+01 3.914786 1.491530e-04 9.280979e-04
## ARMC5 -2.7696331 4.093646e+00 -3.913372 1.499314e-04 9.321105e-04
## ABCB8 -3.7806518 6.121221e+00 -3.913329 1.499551e-04 9.321105e-04
## PIGN 2.1635817 8.850118e+00 3.912578 1.503703e-04 9.342022e-04
## USF3 16.6603196 3.340978e+01 3.912156 1.506040e-04 9.351644e-04
## RAD17 3.2555371 1.547157e+01 3.911251 1.511062e-04 9.377744e-04
## RPS19BP1 -16.2004599 2.785257e+01 -3.911114 1.511825e-04 9.377744e-04
## SLAIN2 12.3470668 4.312159e+01 3.910698 1.514142e-04 9.387207e-04
## ST14 -11.6146858 2.232159e+01 -3.909710 1.519654e-04 9.416455e-04
## ECI1 -3.4857956 4.541724e+00 -3.909423 1.521259e-04 9.418400e-04
## OTULIN 8.3834095 2.837373e+01 3.909370 1.521556e-04 9.418400e-04
## NR1H3 -1.8901949 3.587953e+00 -3.908287 1.527628e-04 9.447412e-04
## SRSF4 12.4581527 6.388645e+01 3.908250 1.527836e-04 9.447412e-04
## RAB11FIP2 6.6140316 1.849863e+01 3.907576 1.531625e-04 9.465903e-04
## LIMS1 37.2969198 9.863491e+01 3.907184 1.533837e-04 9.466965e-04
## RPL28 -331.5284212 3.684683e+02 -3.907169 1.533919e-04 9.466965e-04
## BAZ1B 10.2387245 3.996364e+01 3.907068 1.534489e-04 9.466965e-04
## ACLY 14.3060729 6.642809e+01 3.906980 1.534989e-04 9.466965e-04
## FBXW11 10.0258361 3.109664e+01 3.906104 1.539936e-04 9.487806e-04
## ZNF668 -1.4853667 1.976076e+00 -3.906099 1.539969e-04 9.487806e-04
## DCUN1D3 3.7002620 9.086661e+00 3.905794 1.541695e-04 9.493509e-04
## RPL39 -451.8136503 6.796865e+02 -3.904517 1.548947e-04 9.533220e-04
## MRPL41 -3.6652249 3.160560e+00 -3.903299 1.555894e-04 9.571005e-04
## VPS52 -4.2802650 2.290242e+01 -3.902971 1.557772e-04 9.576758e-04
## PRIM1 1.6568999 5.484404e+00 3.902853 1.558444e-04 9.576758e-04
## RPS12 -546.5449676 7.046718e+02 -3.900491 1.572026e-04 9.655220e-04
## MYO9B -50.0114203 1.816536e+02 -3.900176 1.573846e-04 9.661394e-04
## SLC35F5 9.6335148 2.968134e+01 3.897835 1.587431e-04 9.739748e-04
## ZNHIT1 -24.2146542 3.595589e+01 -3.896634 1.594445e-04 9.777723e-04
## FANCM 1.0704276 2.828959e+00 3.896023 1.598023e-04 9.794600e-04
## ZMYND15 -2.5021739 3.878085e+00 -3.895709 1.599866e-04 9.800832e-04
## RANGAP1 -16.0398523 2.825330e+01 -3.895382 1.601784e-04 9.807514e-04
## PSMB4 -65.2828648 1.868292e+02 -3.894557 1.606642e-04 9.824133e-04
## BANP -5.8155246 1.627693e+01 -3.894537 1.606758e-04 9.824133e-04
## KAT2B 34.0336418 8.504289e+01 3.894499 1.606983e-04 9.824133e-04
## WDR91 -5.8854712 2.213817e+01 -3.892736 1.617410e-04 9.882784e-04
## SAMD10 -1.8786056 2.040856e+00 -3.892279 1.620121e-04 9.894250e-04
## GGT1 -12.1720707 1.670209e+01 -3.890624 1.629982e-04 9.946889e-04
## GHDC -6.4808832 1.338641e+01 -3.890551 1.630418e-04 9.946889e-04
## CYCS 11.9099799 4.779386e+01 3.890260 1.632160e-04 9.947845e-04
## UHRF1BP1 4.1993564 1.049230e+01 3.890245 1.632252e-04 9.947845e-04
## CENPT -9.9874778 2.019970e+01 -3.890043 1.633459e-04 9.950087e-04
## ANKRD54 -2.5658354 8.073713e+00 -3.888336 1.643707e-04 1.000737e-03
## LPCAT4 -7.8906658 2.093302e+01 -3.887665 1.647754e-04 1.002687e-03
## USP25 29.3944228 6.833131e+01 3.887210 1.650506e-04 1.003846e-03
## VPS4A -20.6190387 7.216327e+01 -3.886907 1.652338e-04 1.004445e-03
## UBR5 35.3757350 1.123865e+02 3.885289 1.662162e-04 1.009900e-03
## APEX2 -4.3621141 1.617381e+01 -3.884810 1.665077e-04 1.011153e-03
## YBX1 -73.3864846 2.855851e+02 -3.883670 1.672043e-04 1.014863e-03
## CCSER2 9.1884776 2.716709e+01 3.883410 1.673640e-04 1.015313e-03
## SCARB1 -1.4288624 3.578753e+00 -3.882915 1.676676e-04 1.016635e-03
## EPC1 15.5757564 5.822345e+01 3.882506 1.679184e-04 1.017635e-03
## PMM1 -8.2255010 1.697339e+01 -3.882354 1.680119e-04 1.017682e-03
## GPD2 12.4857171 2.811369e+01 3.882095 1.681715e-04 1.017808e-03
## TASOR2 7.0381886 1.534560e+01 3.881910 1.682852e-04 1.017808e-03
## GGCX 3.3096166 1.796261e+01 3.881800 1.683533e-04 1.017808e-03
## ELOVL6 1.5550032 3.519954e+00 3.881763 1.683760e-04 1.017808e-03
## PSMD13 -47.9738431 1.625850e+02 -3.881518 1.685273e-04 1.018204e-03
## C18orf25 36.9059106 6.291991e+01 3.881298 1.686625e-04 1.018502e-03
## DBT 2.4079009 8.330932e+00 3.878133 1.706277e-04 1.029387e-03
## SORD -6.0044003 1.739980e+01 -3.878115 1.706386e-04 1.029387e-03
## PLD1 3.8426988 9.232717e+00 3.877267 1.711689e-04 1.031735e-03
## LST1 -250.4907950 3.942650e+02 -3.877214 1.712019e-04 1.031735e-03
## ZMYND8 6.9222178 2.655382e+01 3.876233 1.718172e-04 1.034917e-03
## CHAF1B 1.0359006 3.494046e+00 3.874886 1.726657e-04 1.039500e-03
## PPCDC -25.7516678 4.968927e+01 -3.874184 1.731093e-04 1.041642e-03
## GBF1 6.4385255 3.235765e+01 3.873479 1.735557e-04 1.043799e-03
## TOMM22 -12.8789430 3.776476e+01 -3.872917 1.739126e-04 1.044991e-03
## PARG 3.8868781 1.400629e+01 3.872890 1.739301e-04 1.044991e-03
## PRIM2 1.0721396 5.037376e+00 3.872393 1.742462e-04 1.046359e-03
## ANXA2R -12.7893232 1.930509e+01 -3.872162 1.743936e-04 1.046715e-03
## BTN3A3 35.0794662 7.670434e+01 3.869174 1.763072e-04 1.057665e-03
## TXNL4A -11.1173111 2.897186e+01 -3.868757 1.765760e-04 1.058742e-03
## SEL1L 42.3892526 1.146033e+02 3.868469 1.767618e-04 1.059320e-03
## COMMD6 -31.3067280 6.616956e+01 -3.867479 1.774021e-04 1.062620e-03
## PGM3 2.6963609 9.785178e+00 3.866734 1.778850e-04 1.064975e-03
## FAXDC2 11.9268191 2.348800e+01 3.864997 1.790165e-04 1.071209e-03
## NR2C2AP -2.8834522 6.491272e+00 -3.863794 1.798044e-04 1.075381e-03
## POLR2F -6.0359600 1.787746e+01 -3.863349 1.800967e-04 1.076586e-03
## FMR1 19.1826322 5.758137e+01 3.863008 1.803209e-04 1.077384e-03
## ANKRD36C 0.7774418 1.395668e+00 3.861660 1.812093e-04 1.082146e-03
## ZNF714 1.0977653 3.046234e+00 3.861437 1.813572e-04 1.082485e-03
## NAPB 4.8633026 1.268102e+01 3.860477 1.819933e-04 1.085735e-03
## CHCHD6 -0.8074812 8.816320e-01 -3.859307 1.827713e-04 1.089828e-03
## SMCHD1 346.0659532 7.308843e+02 3.858984 1.829863e-04 1.090329e-03
## C16orf87 2.0023882 6.091570e+00 3.858905 1.830392e-04 1.090329e-03
## GIGYF2 11.1293940 3.991660e+01 3.858695 1.831795e-04 1.090588e-03
## MAD2L2 -12.2743410 2.424771e+01 -3.858565 1.832665e-04 1.090588e-03
## ZDHHC6 5.8435371 3.693531e+01 3.857563 1.839370e-04 1.092818e-03
## PTPRS -1.2348396 1.541531e+00 -3.857554 1.839428e-04 1.092818e-03
## YME1L1 29.8140995 1.133109e+02 3.857528 1.839601e-04 1.092818e-03
## AGPS 8.6150302 2.898108e+01 3.857293 1.841182e-04 1.092818e-03
## COBLL1 2.3741513 3.479418e+00 3.857094 1.842517e-04 1.092818e-03
## FBLN5 -2.0711999 2.666329e+00 -3.857015 1.843047e-04 1.092818e-03
## MON2 11.9047949 3.877696e+01 3.856888 1.843899e-04 1.092818e-03
## UBTF -15.2822827 8.486721e+01 -3.856715 1.845064e-04 1.092818e-03
## TRPV2 -12.3406738 3.707748e+01 -3.856585 1.845938e-04 1.092818e-03
## SURF4 -23.5005324 1.022172e+02 -3.856441 1.846907e-04 1.092818e-03
## FEN1 7.3043304 1.415048e+01 3.856381 1.847306e-04 1.092818e-03
## VPS28 -47.8179759 7.076920e+01 -3.856289 1.847928e-04 1.092818e-03
## SELENOH -12.1090704 1.989418e+01 -3.856220 1.848392e-04 1.092818e-03
## MREG 1.3224258 3.418508e+00 3.855907 1.850502e-04 1.093520e-03
## MRPL52 -8.4321043 1.131877e+01 -3.854895 1.857339e-04 1.097014e-03
## LOXHD1 4.3549117 6.948033e+00 3.854359 1.860971e-04 1.098612e-03
## ZNF226 -2.9895539 1.282068e+01 -3.854018 1.863284e-04 1.099008e-03
## HM13 -26.6939331 8.163811e+01 -3.853941 1.863801e-04 1.099008e-03
## TMEM170A 6.3459809 2.262480e+01 3.853807 1.864714e-04 1.099008e-03
## TRIM5 23.2676438 3.731099e+01 3.853635 1.865884e-04 1.099008e-03
## B4GALT7 -4.8559779 6.365812e+00 -3.853528 1.866614e-04 1.099008e-03
## GAK -9.0573165 4.015485e+01 -3.853441 1.867202e-04 1.099008e-03
## ATE1 5.7857263 1.848914e+01 3.852363 1.874546e-04 1.102784e-03
## C16orf74 -2.4136127 2.209318e+00 -3.852024 1.876860e-04 1.103597e-03
## STK11 -11.3480691 2.416527e+01 -3.851197 1.882522e-04 1.106378e-03
## XYLT2 -3.5446546 8.142774e+00 -3.850726 1.885753e-04 1.107333e-03
## TIMM17B -25.0220271 4.423219e+01 -3.850688 1.886015e-04 1.107333e-03
## PSMB1 -40.0110387 1.283435e+02 -3.850281 1.888812e-04 1.108427e-03
## FIBP -14.6806657 3.238332e+01 -3.849446 1.894560e-04 1.111250e-03
## HDAC7 -51.7745603 1.545089e+02 -3.848814 1.898921e-04 1.113258e-03
## C16orf86 -1.3075843 1.445341e+00 -3.848488 1.901179e-04 1.113609e-03
## AUH 1.9408760 6.933930e+00 3.848456 1.901398e-04 1.113609e-03
## UHMK1 27.3547496 9.391854e+01 3.848286 1.902576e-04 1.113749e-03
## CNTRL 17.4918963 5.283669e+01 3.848046 1.904238e-04 1.114172e-03
## CLEC7A 121.8692509 3.088035e+02 3.847109 1.910739e-04 1.117424e-03
## HCFC2 2.5649317 8.464388e+00 3.846970 1.911706e-04 1.117439e-03
## PCBP4 -4.4133091 5.078516e+00 -3.846617 1.914166e-04 1.118325e-03
## MRPS34 -11.3415230 1.684001e+01 -3.846066 1.918006e-04 1.120017e-03
## COMMD7 -12.1571297 3.257114e+01 -3.845351 1.923000e-04 1.122381e-03
## SLC66A1 -2.3499737 5.241048e+00 -3.844978 1.925611e-04 1.123119e-03
## RAB1B -77.2160245 2.190219e+02 -3.844899 1.926158e-04 1.123119e-03
## RBM27 8.8819166 2.871347e+01 3.844288 1.930447e-04 1.125067e-03
## ERCC6 3.5273230 1.040618e+01 3.843984 1.932581e-04 1.125757e-03
## HINT3 10.5322181 2.993292e+01 3.843149 1.938453e-04 1.128623e-03
## PMVK -11.3017133 1.652029e+01 -3.842790 1.940988e-04 1.129545e-03
## PDZD4 -9.6818061 1.144778e+01 -3.842528 1.942840e-04 1.130061e-03
## LAPTM5 -749.6700966 2.310992e+03 -3.842395 1.943780e-04 1.130061e-03
## SEMA3E -1.1878822 1.539377e+00 -3.842095 1.945900e-04 1.130739e-03
## PRADC1 -6.5958041 9.096291e+00 -3.841030 1.953444e-04 1.134566e-03
## MVD -5.6874473 6.312871e+00 -3.840727 1.955598e-04 1.135261e-03
## PRR14 -17.9228012 4.328289e+01 -3.840525 1.957030e-04 1.135537e-03
## TACC3 -53.1137088 1.445115e+02 -3.840029 1.960563e-04 1.137031e-03
## KIAA2026 10.0784036 2.650521e+01 3.839683 1.963032e-04 1.137906e-03
## MTMR2 1.8912538 7.173805e+00 3.839306 1.965723e-04 1.138910e-03
## CREBRF 102.4575647 1.868625e+02 3.838420 1.972059e-04 1.142023e-03
## FAM193B -21.8352585 7.591747e+01 -3.838282 1.973049e-04 1.142038e-03
## ZHX1 4.6588529 1.298460e+01 3.836787 1.983786e-04 1.147693e-03
## KCTD9 4.8820201 1.433280e+01 3.836594 1.985181e-04 1.147940e-03
## PPFIA1 19.0672584 4.560539e+01 3.836215 1.987913e-04 1.148959e-03
## KATNB1 -4.3059161 1.215088e+01 -3.835550 1.992716e-04 1.151175e-03
## GATA3 -4.2579658 4.840346e+00 -3.834961 1.996988e-04 1.153081e-03
## EIF2AK4 5.1286469 1.596136e+01 3.834356 2.001378e-04 1.155053e-03
## ATXN3 5.8380222 2.255061e+01 3.833901 2.004686e-04 1.156400e-03
## TMF1 23.8575124 6.342939e+01 3.832596 2.014200e-04 1.161323e-03
## DNAJC7 -14.9223486 7.539283e+01 -3.831107 2.025109e-04 1.166123e-03
## CYP4F3 124.6192033 2.319367e+02 3.831011 2.025816e-04 1.166123e-03
## C5 1.8366054 4.165035e+00 3.830927 2.026433e-04 1.166123e-03
## ABHD18 4.1785083 1.646802e+01 3.830924 2.026458e-04 1.166123e-03
## FAM174C -6.8224077 5.313790e+00 -3.830463 2.029850e-04 1.167491e-03
## TALDO1 -349.3695009 7.690418e+02 -3.830333 2.030804e-04 1.167491e-03
## YIF1B -9.8022583 1.808188e+01 -3.829213 2.039068e-04 1.171156e-03
## CHD9 7.2087892 1.898585e+01 3.829202 2.039155e-04 1.171156e-03
## CLASRP -9.6765819 3.717272e+01 -3.827291 2.053332e-04 1.178330e-03
## TLNRD1 -3.5742708 1.627159e+01 -3.827251 2.053632e-04 1.178330e-03
## KMT2E 41.1333294 1.066485e+02 3.825232 2.068715e-04 1.186410e-03
## SWT1 4.1915239 1.053536e+01 3.825078 2.069869e-04 1.186498e-03
## ZBTB48 -11.1735573 2.623453e+01 -3.824181 2.076603e-04 1.189783e-03
## WDR97 -0.4670594 8.739580e-01 -3.823240 2.083698e-04 1.193272e-03
## ARL16 -4.4196130 1.312072e+01 -3.822920 2.086111e-04 1.194077e-03
## USP20 -14.5485242 3.525384e+01 -3.822281 2.090946e-04 1.195958e-03
## ASH1L 18.2033015 4.233724e+01 3.822220 2.091414e-04 1.195958e-03
## PDE6G -1.1014930 1.858678e+00 -3.821954 2.093427e-04 1.196465e-03
## AP2S1 -25.4831754 4.404107e+01 -3.821837 2.094318e-04 1.196465e-03
## HECA 79.1866494 2.105327e+02 3.820025 2.108102e-04 1.203760e-03
## SNX17 -35.7576448 1.125624e+02 -3.819243 2.114081e-04 1.205939e-03
## WDR46 -11.0284379 2.379193e+01 -3.819239 2.114111e-04 1.205939e-03
## SYNE1 62.6392808 1.224060e+02 3.819127 2.114968e-04 1.205939e-03
## GATD1 -6.5267260 1.717060e+01 -3.818892 2.116767e-04 1.206384e-03
## PCNX3 -12.4728828 2.663338e+01 -3.818414 2.120434e-04 1.207894e-03
## RB1 17.6240836 4.613643e+01 3.817424 2.128039e-04 1.211644e-03
## RPS29 -198.3179803 3.203185e+02 -3.817280 2.129151e-04 1.211695e-03
## UBALD1 -3.6277567 4.023117e+00 -3.814904 2.147537e-04 1.220879e-03
## TLK2 13.2895395 4.990203e+01 3.814897 2.147587e-04 1.220879e-03
## MTRNR2L3 -8.6594841 1.428124e+01 -3.814796 2.148377e-04 1.220879e-03
## BCAS4 -3.5138726 3.058864e+00 -3.814323 2.152049e-04 1.222380e-03
## EHBP1 1.4683168 4.589209e+00 3.813549 2.158088e-04 1.225224e-03
## DDX54 -5.9435389 1.102870e+01 -3.811794 2.171826e-04 1.232433e-03
## GPATCH2L 13.5327262 4.436338e+01 3.810824 2.179455e-04 1.236171e-03
## HERC3 38.2248041 7.371338e+01 3.810162 2.184670e-04 1.238537e-03
## PSMB6 -25.1827411 6.851829e+01 -3.809246 2.191915e-04 1.241253e-03
## KIAA1191 5.3786266 2.839742e+01 3.809184 2.192406e-04 1.241253e-03
## SRGAP2 16.4743149 3.942572e+01 3.809160 2.192602e-04 1.241253e-03
## TESC -19.3972846 2.362683e+01 -3.807981 2.201955e-04 1.245887e-03
## R3HCC1 -6.4312023 1.552926e+01 -3.807864 2.202889e-04 1.245887e-03
## TFPT -7.1861981 1.134438e+01 -3.807156 2.208531e-04 1.248483e-03
## CASP8AP2 6.9006225 1.582888e+01 3.806669 2.212421e-04 1.250086e-03
## SCRIB -2.0507384 3.799350e+00 -3.806081 2.217125e-04 1.252134e-03
## RIF1 8.3513798 2.654692e+01 3.805952 2.218157e-04 1.252134e-03
## TRIP11 5.7878032 1.993404e+01 3.804380 2.230781e-04 1.258597e-03
## TDG 5.8079475 2.408861e+01 3.804263 2.231728e-04 1.258597e-03
## ACACA 2.5127323 7.632913e+00 3.803543 2.237532e-04 1.261270e-03
## MINDY3 3.2384292 1.187627e+01 3.803325 2.239296e-04 1.261442e-03
## RASGRP2 -46.1938056 1.684985e+02 -3.803116 2.240984e-04 1.261442e-03
## HELZ 17.5620066 4.709536e+01 3.803101 2.241106e-04 1.261442e-03
## USP16 9.2584047 3.370198e+01 3.802979 2.242091e-04 1.261442e-03
## CYC1 -17.3308321 3.715765e+01 -3.799576 2.269791e-04 1.276421e-03
## CCDC142 -1.3081136 6.586726e+00 -3.799245 2.272504e-04 1.276903e-03
## TCP11L2 19.0273585 3.490892e+01 3.799209 2.272801e-04 1.276903e-03
## CD52 -321.6755567 4.501647e+02 -3.799021 2.274345e-04 1.277165e-03
## TFDP1 18.0058285 5.232525e+01 3.797512 2.286758e-04 1.283358e-03
## DENND5B 3.4591781 4.222445e+00 3.797417 2.287536e-04 1.283358e-03
## INPP4A 14.5411962 5.956502e+01 3.796745 2.293089e-04 1.285864e-03
## UVRAG 7.1182192 2.743571e+01 3.796233 2.297325e-04 1.287631e-03
## PSMB3 -104.5384800 2.138546e+02 -3.796082 2.298580e-04 1.287726e-03
## SPI1 -225.6658857 4.114436e+02 -3.795904 2.300054e-04 1.287943e-03
## NETO2 3.5084972 9.078100e+00 3.795754 2.301295e-04 1.288030e-03
## HSPA4 7.0975267 5.706318e+01 3.795150 2.306310e-04 1.289931e-03
## PRKCI 2.7962676 1.052824e+01 3.795083 2.306866e-04 1.289931e-03
## HMGXB4 3.6961402 1.218550e+01 3.793026 2.324030e-04 1.298916e-03
## LYL1 -14.5264825 1.800618e+01 -3.792806 2.325874e-04 1.299334e-03
## MIB1 12.8528949 3.257249e+01 3.792636 2.327303e-04 1.299520e-03
## HPF1 -3.2196834 1.099528e+01 -3.791032 2.340786e-04 1.306434e-03
## TNFAIP8L2-SCNM1 -6.5469735 1.586966e+01 -3.790170 2.348062e-04 1.309878e-03
## CFAP410 -4.3081814 5.579006e+00 -3.788816 2.359544e-04 1.315665e-03
## TMEM184C 6.0593001 1.841636e+01 3.788305 2.363888e-04 1.316943e-03
## GABARAP -516.1652746 1.144464e+03 -3.788245 2.364399e-04 1.316943e-03
## SLX1A -11.8784681 2.377912e+01 -3.788154 2.365167e-04 1.316943e-03
## FIS1 -32.9837745 5.308226e+01 -3.787982 2.366638e-04 1.317144e-03
## CCDC32 4.0596726 2.227692e+01 3.787560 2.370233e-04 1.318449e-03
## BAG2 0.9142497 3.437048e+00 3.787446 2.371208e-04 1.318449e-03
## LAT -27.2913377 4.094321e+01 -3.786265 2.381309e-04 1.322833e-03
## BBC3 -6.5036440 1.025264e+01 -3.786263 2.381322e-04 1.322833e-03
## TSR2 -6.1356226 2.741597e+01 -3.784683 2.394902e-04 1.329754e-03
## CHD8 15.8634161 7.355215e+01 3.784413 2.397225e-04 1.330421e-03
## CCDC9 -7.9979052 1.475414e+01 -3.784191 2.399145e-04 1.330863e-03
## PTAR1 29.9996671 6.570521e+01 3.783745 2.402993e-04 1.331984e-03
## HMGN3 -8.7699608 2.976979e+01 -3.783697 2.403411e-04 1.331984e-03
## TP53INP1 81.4040007 1.800324e+02 3.783234 2.407418e-04 1.333371e-03
## ACSF2 -5.1496023 8.752576e+00 -3.783148 2.408162e-04 1.333371e-03
## TM9SF1 7.2491691 3.385422e+01 3.781750 2.420295e-04 1.339463e-03
## MFSD14A 26.2056996 7.224146e+01 3.781408 2.423272e-04 1.340486e-03
## VCL 46.6385846 1.254732e+02 3.781244 2.424702e-04 1.340651e-03
## RP9 -3.8219403 7.968395e+00 -3.779792 2.437390e-04 1.346885e-03
## ANAPC15 -19.6563077 3.635041e+01 -3.779695 2.438248e-04 1.346885e-03
## CST3 -222.3102117 2.747407e+02 -3.779286 2.441834e-04 1.347891e-03
## RPS26 -168.7008521 2.203303e+02 -3.779126 2.443239e-04 1.347891e-03
## EPS15 29.7173517 8.613818e+01 3.778963 2.444664e-04 1.347891e-03
## NFAT5 29.8467587 5.619766e+01 3.778881 2.445388e-04 1.347891e-03
## ZNF788P 2.3424057 3.710909e+00 3.778808 2.446026e-04 1.347891e-03
## PDLIM7 -52.2162271 9.641261e+01 -3.778620 2.447683e-04 1.347891e-03
## CDK19 20.8640322 5.172317e+01 3.778581 2.448025e-04 1.347891e-03
## KANSL1L 3.9546453 9.319335e+00 3.778451 2.449166e-04 1.347894e-03
## COQ2 -4.4091762 1.348426e+01 -3.778287 2.450613e-04 1.348064e-03
## LCOR 23.7413228 5.215263e+01 3.777122 2.460895e-04 1.353093e-03
## URGCP -2.6455805 6.727349e+00 -3.775440 2.475807e-04 1.360661e-03
## KLF2 -102.9778793 2.064148e+02 -3.773203 2.495774e-04 1.371000e-03
## LDLR 7.9427218 1.492274e+01 3.772191 2.504857e-04 1.375352e-03
## MAML2 11.1400925 2.263292e+01 3.771787 2.508492e-04 1.376602e-03
## TNK1 -1.1580230 1.346362e+00 -3.771680 2.509454e-04 1.376602e-03
## LEMD2 -7.5988337 4.078282e+01 -3.771536 2.510754e-04 1.376678e-03
## PEX10 -0.8128899 2.277136e+00 -3.770820 2.517216e-04 1.379242e-03
## EID2B -0.5904819 1.626585e+00 -3.770646 2.518785e-04 1.379242e-03
## FNDC3B 48.1641408 9.921672e+01 3.770631 2.518918e-04 1.379242e-03
## PPM1M -101.6201159 2.218853e+02 -3.770083 2.523884e-04 1.381323e-03
## MED12 14.6679440 3.561850e+01 3.769826 2.526205e-04 1.381845e-03
## POLH 2.5173275 1.322299e+01 3.769720 2.527168e-04 1.381845e-03
## SLC4A2 -7.1199174 1.786706e+01 -3.769267 2.531281e-04 1.383456e-03
## NR2C2 23.3728350 5.029766e+01 3.768519 2.538081e-04 1.386533e-03
## ZNF497 -1.8326106 3.232523e+00 -3.768049 2.542361e-04 1.387640e-03
## CD79A -28.7488292 3.696312e+01 -3.768040 2.542446e-04 1.387640e-03
## WDR33 -4.7662089 5.250688e+01 -3.767708 2.545471e-04 1.388652e-03
## SEPSECS 2.1652458 9.833919e+00 3.766039 2.560757e-04 1.396349e-03
## SZRD1 -31.2717315 1.369710e+02 -3.764970 2.570592e-04 1.400635e-03
## KIAA1841 1.9632166 5.410219e+00 3.764928 2.570980e-04 1.400635e-03
## NUP205 7.1915980 1.882619e+01 3.764135 2.578291e-04 1.403973e-03
## TMEM18 -2.5969256 9.872214e+00 -3.763521 2.583978e-04 1.406289e-03
## EFCAB7 1.3627754 3.072523e+00 3.763419 2.584916e-04 1.406289e-03
## SGF29 -5.9224799 1.059404e+01 -3.763155 2.587366e-04 1.406977e-03
## GALT -4.4116351 1.076786e+01 -3.762926 2.589491e-04 1.407487e-03
## POLR2L -12.4273082 1.206856e+01 -3.762034 2.597777e-04 1.410872e-03
## MAMDC4 -0.7521272 8.934200e-01 -3.761801 2.599953e-04 1.410872e-03
## SH3GLB2 -14.2171449 2.797316e+01 -3.761787 2.600083e-04 1.410872e-03
## POLR2G -14.0775743 4.910076e+01 -3.761522 2.602553e-04 1.410872e-03
## ISY1 -15.1046683 5.001492e+01 -3.761428 2.603424e-04 1.410872e-03
## FIGNL1 1.7353844 4.554028e+00 3.761404 2.603653e-04 1.410872e-03
## ANKRD27 4.8765470 2.370359e+01 3.761361 2.604046e-04 1.410872e-03
## WASHC2C 29.0766194 9.573364e+01 3.761137 2.606136e-04 1.411360e-03
## MTHFSD -1.8105265 7.413862e+00 -3.760370 2.613312e-04 1.414408e-03
## USP1 12.5523074 5.052917e+01 3.760280 2.614151e-04 1.414408e-03
## ATG16L2 -121.3015376 3.370351e+02 -3.758331 2.632467e-04 1.423669e-03
## LSM2 -8.1095923 1.747873e+01 -3.756796 2.646970e-04 1.430860e-03
## PHF3 33.8989748 9.405755e+01 3.756128 2.653309e-04 1.433633e-03
## FAM13B 14.4132238 4.654983e+01 3.755738 2.657007e-04 1.434977e-03
## EPSTI1 170.7267761 1.882055e+02 3.754881 2.665170e-04 1.438731e-03
## NDUFC1 -2.6158929 8.786406e+00 -3.753998 2.673606e-04 1.442282e-03
## OSGIN2 38.8685632 7.306707e+01 3.753911 2.674434e-04 1.442282e-03
## TAF1 11.3674894 3.287209e+01 3.753811 2.675396e-04 1.442282e-03
## ADCK1 -1.9185063 3.334364e+00 -3.753306 2.680228e-04 1.444230e-03
## SLC25A3 -51.2163304 1.959651e+02 -3.753045 2.682737e-04 1.444926e-03
## PNKD -11.7832452 3.639197e+01 -3.752589 2.687114e-04 1.446626e-03
## RBM12 9.6461993 5.145961e+01 3.751381 2.698748e-04 1.452230e-03
## PTRHD1 -3.9948378 7.100940e+00 -3.750916 2.703239e-04 1.453987e-03
## PSMD4 -66.6008897 2.292773e+02 -3.750693 2.705392e-04 1.454486e-03
## ZNF622 -9.1071223 3.338130e+01 -3.750372 2.708502e-04 1.454937e-03
## INPP5D 58.5950001 2.307735e+02 3.750353 2.708685e-04 1.454937e-03
## UBQLN4 -5.6847948 1.762492e+01 -3.750144 2.710713e-04 1.455367e-03
## POLR1E -3.0427989 7.351630e+00 -3.750007 2.712040e-04 1.455421e-03
## NBPF14 89.7787826 1.938345e+02 3.748977 2.722046e-04 1.460130e-03
## ZNF236 1.8763794 5.345087e+00 3.748785 2.723916e-04 1.460222e-03
## COX6B1 -108.3177056 2.210346e+02 -3.748610 2.725615e-04 1.460222e-03
## DHX36 7.3318199 2.615112e+01 3.748481 2.726876e-04 1.460222e-03
## HMGN4 30.6131129 1.096389e+02 3.748453 2.727143e-04 1.460222e-03
## SURF1 -18.7149263 5.475207e+01 -3.747975 2.731811e-04 1.460801e-03
## S100A13 -1.6281425 2.825308e+00 -3.747969 2.731864e-04 1.460801e-03
## RPL41 -543.0433236 1.413507e+03 -3.747964 2.731920e-04 1.460801e-03
## MAN2A2 190.3965945 3.448806e+02 3.747627 2.735210e-04 1.461902e-03
## RGPD8 3.3486555 7.697106e+00 3.747226 2.739134e-04 1.463339e-03
## TMEM120A -41.6522906 7.230839e+01 -3.746650 2.744773e-04 1.465691e-03
## ARAP1 -200.3989612 5.173862e+02 -3.746274 2.748463e-04 1.466651e-03
## ZC3H7A 21.2181306 5.200075e+01 3.746215 2.749043e-04 1.466651e-03
## TAZ -20.3380616 4.737609e+01 -3.746015 2.751007e-04 1.466740e-03
## INPP5B -4.2739328 2.233440e+01 -3.745946 2.751684e-04 1.466740e-03
## JMJD4 -5.0443322 6.850376e+00 -3.745058 2.760428e-04 1.470101e-03
## PPP4C -80.7121899 1.614571e+02 -3.745054 2.760467e-04 1.470101e-03
## PSENEN -37.7446174 8.391309e+01 -3.744461 2.766317e-04 1.472555e-03
## APBA3 -2.3765745 5.240749e+00 -3.743097 2.779825e-04 1.479081e-03
## CDK5RAP1 -5.0155379 1.508499e+01 -3.742821 2.782569e-04 1.479878e-03
## PHLDB3 -0.6423469 9.218508e-01 -3.741188 2.798831e-04 1.487859e-03
## LRMDA -2.3715807 4.899770e+00 -3.740932 2.801397e-04 1.488556e-03
## CHPF2 -14.9143922 5.356536e+01 -3.740803 2.802682e-04 1.488572e-03
## AFF4 20.4793176 4.742511e+01 3.740379 2.806930e-04 1.490161e-03
## IGFL4 4.5181364 7.592843e+00 3.740068 2.810047e-04 1.491148e-03
## PCDH12 -0.7359835 1.708182e+00 -3.739514 2.815601e-04 1.493427e-03
## GEMIN6 -2.7506605 1.045493e+01 -3.738418 2.826632e-04 1.498361e-03
## TCOF1 -9.0277391 1.955055e+01 -3.738339 2.827429e-04 1.498361e-03
## MSH6 3.9662266 2.168682e+01 3.737379 2.837132e-04 1.502210e-03
## USP8 18.3888339 6.292121e+01 3.737370 2.837226e-04 1.502210e-03
## NAXE -12.3107810 2.138874e+01 -3.736832 2.842669e-04 1.504420e-03
## CCDC57 -5.8144079 1.573375e+01 -3.736400 2.847055e-04 1.506069e-03
## RPL37 -333.1246854 7.505007e+02 -3.736169 2.849404e-04 1.506640e-03
## E2F1 9.3666879 1.297867e+01 3.735857 2.852577e-04 1.507645e-03
## FBXL20 16.7979109 4.423513e+01 3.735714 2.854030e-04 1.507741e-03
## SLC7A7 -51.2867457 1.638978e+02 -3.735310 2.858143e-04 1.509242e-03
## CORO1B -13.5750429 2.380160e+01 -3.733738 2.874203e-04 1.517047e-03
## IQCE -5.8254935 1.673687e+01 -3.733132 2.880412e-04 1.519648e-03
## UBR2 77.0783087 1.951267e+02 3.732516 2.886747e-04 1.522313e-03
## THAP4 -4.5460715 9.293156e+00 -3.731938 2.892697e-04 1.524773e-03
## COA3 -7.5994503 1.456493e+01 -3.731320 2.899079e-04 1.527410e-03
## STX17 7.7310725 1.881522e+01 3.731204 2.900276e-04 1.527410e-03
## SEMA7A -4.1101657 6.358780e+00 -3.730731 2.905167e-04 1.528858e-03
## NPEPL1 -16.3043535 4.376779e+01 -3.730689 2.905603e-04 1.528858e-03
## DIPK1A 3.0876574 6.401045e+00 3.729926 2.913506e-04 1.532025e-03
## C8orf82 -1.6472834 2.961072e+00 -3.729859 2.914207e-04 1.532025e-03
## ERGIC3 -33.9350661 9.158749e+01 -3.729638 2.916492e-04 1.532548e-03
## FRS2 4.8891209 1.390117e+01 3.729047 2.922638e-04 1.535097e-03
## NIBAN3 -6.9160604 1.009506e+01 -3.728802 2.925198e-04 1.535761e-03
## MAP3K1 62.5956275 1.591445e+02 3.728248 2.930970e-04 1.537383e-03
## LRRC8B 3.8965155 9.636119e+00 3.728208 2.931387e-04 1.537383e-03
## DNPEP -9.4390748 1.850241e+01 -3.728133 2.932175e-04 1.537383e-03
## FEM1B 12.7618736 4.638225e+01 3.726340 2.950949e-04 1.546543e-03
## RAB3A -0.4584160 8.812048e-01 -3.726135 2.953098e-04 1.546671e-03
## UBR4 21.0073865 1.047262e+02 3.726059 2.953897e-04 1.546671e-03
## PABPC1 -137.0139813 6.655593e+02 -3.725892 2.955659e-04 1.546671e-03
## RPSA -555.5450122 9.156639e+02 -3.725820 2.956411e-04 1.546671e-03
## CREG1 33.1618418 1.090574e+02 3.725263 2.962285e-04 1.549061e-03
## MAPK7 -1.9884463 7.408218e+00 -3.724879 2.966334e-04 1.550495e-03
## POLR2I -3.6468759 5.214807e+00 -3.723929 2.976377e-04 1.554453e-03
## PTMA -106.1496341 4.247802e+02 -3.723803 2.977709e-04 1.554453e-03
## ZNF568 -0.8648312 2.682268e+00 -3.723791 2.977839e-04 1.554453e-03
## CCR7 -30.6352084 4.138170e+01 -3.722490 2.991654e-04 1.560977e-03
## UBL7 -16.9077101 4.444979e+01 -3.721007 3.007467e-04 1.568538e-03
## LRSAM1 -4.2877580 1.464646e+01 -3.720517 3.012719e-04 1.570587e-03
## XPR1 5.3681913 1.933676e+01 3.719632 3.022214e-04 1.574844e-03
## TRIM65 -3.7442860 1.137430e+01 -3.719339 3.025364e-04 1.575793e-03
## UBR3 10.2084661 2.758518e+01 3.718975 3.029275e-04 1.577138e-03
## CD99L2 -10.4444603 2.948080e+01 -3.718491 3.034494e-04 1.579162e-03
## EP300 43.6285911 1.004415e+02 3.718066 3.039078e-04 1.580012e-03
## HDAC10 -7.5672338 1.072716e+01 -3.717807 3.041882e-04 1.580012e-03
## USP34 43.1723170 1.223386e+02 3.717793 3.042026e-04 1.580012e-03
## ST6GALNAC6 -14.7988291 3.027056e+01 -3.717756 3.042431e-04 1.580012e-03
## ZCCHC2 48.3189168 6.420986e+01 3.717723 3.042789e-04 1.580012e-03
## TES 30.3601407 8.796754e+01 3.717031 3.050274e-04 1.583206e-03
## GCHFR -4.8898522 5.653780e+00 -3.715856 3.063034e-04 1.588448e-03
## CHKB -24.5970911 8.134594e+01 -3.715848 3.063129e-04 1.588448e-03
## ZBTB37 17.4308053 4.558402e+01 3.715695 3.064792e-04 1.588448e-03
## PEMT -1.1318900 1.908379e+00 -3.715609 3.065731e-04 1.588448e-03
## TMEM109 -9.7133373 2.901525e+01 -3.715072 3.071584e-04 1.590785e-03
## RNPS1 -17.1307496 4.826228e+01 -3.713441 3.089424e-04 1.599326e-03
## DENND4C 8.6443325 2.295997e+01 3.712670 3.097898e-04 1.603014e-03
## NDUFA11 -20.9946816 2.527139e+01 -3.712310 3.101854e-04 1.604361e-03
## CCDC77 -1.2590161 6.643483e+00 -3.712033 3.104902e-04 1.605237e-03
## TRIM33 21.3612913 5.967808e+01 3.711737 3.108174e-04 1.606229e-03
## DCLRE1A 2.6404387 7.064350e+00 3.711512 3.110656e-04 1.606656e-03
## CEP97 16.3085348 1.919710e+01 3.711414 3.111734e-04 1.606656e-03
## ZNF616 1.5535799 5.664482e+00 3.711210 3.113992e-04 1.606656e-03
## ZKSCAN7 3.3443750 5.455537e+00 3.711171 3.114421e-04 1.606656e-03
## ZFP91 18.4491592 5.371768e+01 3.710799 3.118538e-04 1.608081e-03
## CERS6 5.9211618 2.227757e+01 3.710635 3.120357e-04 1.608320e-03
## ANKRD17 13.6597473 3.976812e+01 3.710030 3.127062e-04 1.611075e-03
## GLCCI1 9.5884407 2.352113e+01 3.709526 3.132662e-04 1.613260e-03
## SRI -20.3042167 5.618161e+01 -3.707765 3.152290e-04 1.622663e-03
## ANKRD13D -35.5820021 1.041355e+02 -3.707261 3.157927e-04 1.624860e-03
## ZFYVE19 -6.7469063 1.608515e+01 -3.707065 3.160123e-04 1.625177e-03
## NAAA -23.0293335 5.565332e+01 -3.706962 3.161284e-04 1.625177e-03
## IREB2 14.7261054 5.079464e+01 3.706704 3.164176e-04 1.625510e-03
## CC2D1A -5.0461395 1.088891e+01 -3.706660 3.164674e-04 1.625510e-03
## LRCH3 4.0280003 2.333332e+01 3.704956 3.183845e-04 1.634649e-03
## SMAD2 17.4813208 8.402819e+01 3.704712 3.186601e-04 1.635357e-03
## GRAMD4 -3.5098802 1.295125e+01 -3.704266 3.191646e-04 1.637237e-03
## CNST 8.6192500 3.201148e+01 3.704052 3.194066e-04 1.637770e-03
## MTCP1 0.4016185 1.041086e+00 3.703874 3.196085e-04 1.638097e-03
## SEPTIN1 -24.6814679 3.454141e+01 -3.702025 3.217095e-04 1.648153e-03
## FAM241A 21.6039217 5.828870e+01 3.701179 3.226753e-04 1.652030e-03
## RFC1 5.7195093 2.313335e+01 3.701118 3.227448e-04 1.652030e-03
## LSM7 -11.7388560 1.604372e+01 -3.700731 3.231880e-04 1.653585e-03
## NBEAL1 1.8688954 5.194572e+00 3.700294 3.236884e-04 1.655194e-03
## LIMS2 -1.2349291 1.200250e+00 -3.700051 3.239679e-04 1.655194e-03
## SLC2A13 0.9793826 2.540598e+00 3.700019 3.240042e-04 1.655194e-03
## NAGA -17.2249357 5.467961e+01 -3.699958 3.240740e-04 1.655194e-03
## SLC48A1 -6.5055695 1.747207e+01 -3.699848 3.242003e-04 1.655194e-03
## CCDC189 -0.8042585 1.440579e+00 -3.699275 3.248592e-04 1.657844e-03
## ERC1 2.7875880 9.859469e+00 3.699132 3.250233e-04 1.657969e-03
## ATG2B 11.9835875 3.168065e+01 3.698830 3.253720e-04 1.659033e-03
## CENPA 1.3610480 1.450877e+00 3.697771 3.265939e-04 1.664226e-03
## SLC2A5 10.0923608 9.218800e+00 3.697704 3.266711e-04 1.664226e-03
## TBRG4 -6.8279457 1.722667e+01 -3.697414 3.270068e-04 1.664953e-03
## RNF6 11.8145554 3.834992e+01 3.697338 3.270945e-04 1.664953e-03
## TEPSIN -11.5804079 2.877054e+01 -3.697195 3.272601e-04 1.665081e-03
## RNF167 -59.0843722 1.992480e+02 -3.696785 3.277361e-04 1.666788e-03
## DCAF5 11.5134386 5.725262e+01 3.695984 3.286669e-04 1.670805e-03
## STARD5 0.8435427 2.043127e+00 3.695264 3.295052e-04 1.674349e-03
## LAS1L -6.0474867 1.644443e+01 -3.695005 3.298071e-04 1.675108e-03
## FAM43A -1.8413725 4.893110e+00 -3.694894 3.299370e-04 1.675108e-03
## PLD3 -15.0513637 3.540101e+01 -3.694330 3.305960e-04 1.677680e-03
## KANSL1 15.1621087 5.360751e+01 3.694218 3.307264e-04 1.677680e-03
## MRM1 -1.2278200 2.091572e+00 -3.693191 3.319308e-04 1.683069e-03
## TRIM22 458.7116378 6.802649e+02 3.692025 3.333026e-04 1.689303e-03
## ADAM17 48.8472787 6.728714e+01 3.691423 3.340133e-04 1.692182e-03
## ATAD2B 8.3880840 2.246466e+01 3.691138 3.343494e-04 1.693162e-03
## ATRX 20.6563545 5.216689e+01 3.690643 3.349358e-04 1.695407e-03
## HSPBP1 -4.2284379 4.388639e+00 -3.690378 3.352497e-04 1.696272e-03
## ABL2 6.2760324 1.639332e+01 3.689322 3.365036e-04 1.701890e-03
## NDC1 2.4831382 8.953929e+00 3.689147 3.367116e-04 1.702217e-03
## SCIN 0.4617525 1.002622e+00 3.688987 3.369021e-04 1.702454e-03
## NCOR2 -5.5673777 1.550172e+01 -3.688630 3.373273e-04 1.702995e-03
## UBN1 76.9479277 2.279030e+02 3.688579 3.373884e-04 1.702995e-03
## FAM160B2 -5.5418583 1.334812e+01 -3.688536 3.374400e-04 1.702995e-03
## POLE4 -13.4144502 2.540997e+01 -3.688103 3.379563e-04 1.704317e-03
## PSMD5 5.6039887 1.972056e+01 3.687972 3.381133e-04 1.704317e-03
## DYRK1A 38.7568795 1.169311e+02 3.687955 3.381331e-04 1.704317e-03
## TMEM39A 5.3341381 1.924127e+01 3.687415 3.387796e-04 1.706850e-03
## ZNF629 -1.3272220 3.616183e+00 -3.687194 3.390442e-04 1.707458e-03
## DNAJC8 -17.3214156 8.880909e+01 -3.686804 3.395112e-04 1.708097e-03
## LPIN2 59.6754893 1.283581e+02 3.686761 3.395628e-04 1.708097e-03
## SPAG16 -0.6129452 1.090955e+00 -3.686625 3.397263e-04 1.708097e-03
## BCL7B -16.1260488 4.130552e+01 -3.686607 3.397472e-04 1.708097e-03
## TMEM107 -2.3613726 7.840540e+00 -3.685813 3.407016e-04 1.712170e-03
## OTUD4 8.6403947 2.311827e+01 3.685471 3.411146e-04 1.713519e-03
## KXD1 -13.7474460 5.303491e+01 -3.683214 3.438439e-04 1.726498e-03
## WASHC4 57.6966121 1.371519e+02 3.681252 3.462334e-04 1.736983e-03
## TICAM1 -2.5740704 6.145860e+00 -3.681241 3.462478e-04 1.736983e-03
## TRAPPC6A -6.9206765 6.693045e+00 -3.680995 3.465478e-04 1.736983e-03
## MAP2K1 16.8375097 6.019692e+01 3.680916 3.466445e-04 1.736983e-03
## ANKMY1 -2.9355464 9.051543e+00 -3.680900 3.466643e-04 1.736983e-03
## RSAD1 -6.7223384 1.997019e+01 -3.678044 3.501753e-04 1.753834e-03
## CAPRIN1 12.4976761 9.429874e+01 3.677846 3.504199e-04 1.754318e-03
## FKBP2 -12.6084358 1.840962e+01 -3.677455 3.509037e-04 1.755999e-03
## SP4 4.9070713 1.337871e+01 3.677150 3.512816e-04 1.756642e-03
## TSR3 -8.0614649 1.278686e+01 -3.677101 3.513421e-04 1.756642e-03
## RCBTB1 7.5073988 2.234775e+01 3.676993 3.514765e-04 1.756642e-03
## ESYT2 16.2260887 5.671876e+01 3.676736 3.517951e-04 1.756812e-03
## PBDC1 -5.0503370 1.601970e+01 -3.676726 3.518068e-04 1.756812e-03
## HDHD3 -4.9704380 8.956087e+00 -3.676394 3.522189e-04 1.758130e-03
## MAN2B2 -6.5745411 3.755041e+01 -3.675928 3.527987e-04 1.760283e-03
## SMURF2 7.3673994 2.515510e+01 3.675138 3.537823e-04 1.764448e-03
## PANX1 2.0827706 7.663442e+00 3.674485 3.545980e-04 1.767527e-03
## BRAF 17.1138705 4.499659e+01 3.674405 3.546976e-04 1.767527e-03
## TXN2 -24.2859179 5.223611e+01 -3.673768 3.554953e-04 1.770758e-03
## ACP2 -7.0876697 1.381038e+01 -3.673539 3.557829e-04 1.771446e-03
## TTF2 2.9530586 8.141427e+00 3.673251 3.561434e-04 1.772107e-03
## MTMR4 12.9894432 4.664058e+01 3.673195 3.562143e-04 1.772107e-03
## SMIM19 -2.6965725 1.051331e+01 -3.672907 3.565761e-04 1.773163e-03
## SAC3D1 -1.9968958 2.035092e+00 -3.671955 3.577744e-04 1.778375e-03
## FASTKD5 7.8984158 2.528509e+01 3.671504 3.583431e-04 1.780456e-03
## MAP3K21 0.7641359 1.711377e+00 3.670944 3.590500e-04 1.782413e-03
## ANKMY2 2.0843543 9.701918e+00 3.670943 3.590514e-04 1.782413e-03
## ASIC3 -0.4177986 5.728481e-01 -3.670835 3.591878e-04 1.782413e-03
## ZNF547 -0.6073283 1.212514e+00 -3.670531 3.595738e-04 1.783582e-03
## TTLL1 -0.9595319 2.397822e+00 -3.669222 3.612354e-04 1.791075e-03
## UBAC2 -12.7461718 6.960979e+01 -3.668470 3.621927e-04 1.795071e-03
## FBXL8 -0.8127426 6.848887e-01 -3.667602 3.633011e-04 1.799812e-03
## TYK2 -36.1339569 1.468494e+02 -3.667285 3.637072e-04 1.800073e-03
## GPKOW -5.6243603 2.144052e+01 -3.667005 3.640655e-04 1.800073e-03
## PTK2 3.8896443 8.331115e+00 3.666986 3.640907e-04 1.800073e-03
## RPS13 -118.3126115 3.360920e+02 -3.666957 3.641276e-04 1.800073e-03
## SMIM4 -1.5859546 2.872167e+00 -3.666861 3.642504e-04 1.800073e-03
## FBRS -28.3562996 9.235538e+01 -3.666850 3.642643e-04 1.800073e-03
## IL23A -0.8651663 1.405165e+00 -3.665873 3.655193e-04 1.805367e-03
## HRAS -4.6162745 5.487688e+00 -3.665779 3.656401e-04 1.805367e-03
## UQCC3 -2.0485777 2.492238e+00 -3.665660 3.657933e-04 1.805372e-03
## MAN1B1 -20.7251705 3.860330e+01 -3.664598 3.671627e-04 1.811377e-03
## ABHD17B 3.3304818 1.388921e+01 3.664196 3.676828e-04 1.812238e-03
## DDX17 123.9261993 5.416477e+02 3.664154 3.677368e-04 1.812238e-03
## ZC3H12C 0.6922797 1.611875e+00 3.664109 3.677957e-04 1.812238e-03
## CES2 -3.8661558 2.257962e+01 -3.663810 3.681824e-04 1.813390e-03
## TMC6 -31.3907062 8.870563e+01 -3.663425 3.686812e-04 1.815093e-03
## CALHM5 0.6223775 1.104768e+00 3.663247 3.689122e-04 1.815477e-03
## ARPC4 -193.8743581 5.025762e+02 -3.662837 3.694450e-04 1.817344e-03
## RGS14 -66.7971132 1.545188e+02 -3.662691 3.696344e-04 1.817522e-03
## RUNX2 12.8971358 2.999564e+01 3.662231 3.702327e-04 1.819710e-03
## PPP1R3F -0.5597457 1.999511e+00 -3.661071 3.717460e-04 1.826391e-03
## GNGT2 -3.5548815 6.307515e+00 -3.660855 3.720291e-04 1.827025e-03
## PAPOLA 71.1829255 2.530105e+02 3.660159 3.729410e-04 1.830745e-03
## ZNF852 0.9125667 2.387923e+00 3.659673 3.735778e-04 1.833113e-03
## CGGBP1 29.0106903 1.293696e+02 3.659454 3.738659e-04 1.833767e-03
## COG6 2.8538004 1.039650e+01 3.657928 3.758760e-04 1.842865e-03
## SPATA20 -4.7808948 8.463381e+00 -3.657626 3.762752e-04 1.844059e-03
## UNC13B 0.7533712 1.599115e+00 3.657204 3.768338e-04 1.846034e-03
## SMARCD1 4.6580406 3.854408e+01 3.656844 3.773103e-04 1.846853e-03
## NUDT1 -6.8840333 8.347041e+00 -3.656843 3.773125e-04 1.846853e-03
## REV3L 7.6826041 1.774182e+01 3.655795 3.787038e-04 1.852560e-03
## RANBP9 21.8471524 5.218978e+01 3.655730 3.787908e-04 1.852560e-03
## G3BP2 21.3368997 8.254191e+01 3.655257 3.794200e-04 1.854873e-03
## HMBOX1 1.5339861 4.292516e+00 3.655112 3.796133e-04 1.855053e-03
## USP12 5.1136438 1.805303e+01 3.654735 3.801162e-04 1.856586e-03
## SLC30A7 6.2451010 2.538686e+01 3.654642 3.802401e-04 1.856586e-03
## FIP1L1 4.0780724 2.867529e+01 3.653266 3.820818e-04 1.864069e-03
## HECTD3 -4.9652439 2.772989e+01 -3.653263 3.820869e-04 1.864069e-03
## FRK 2.5998172 5.208222e+00 3.653134 3.822594e-04 1.864143e-03
## SLC25A22 -2.4098254 4.013721e+00 -3.653013 3.824223e-04 1.864171e-03
## MFSD3 -1.3039399 1.270886e+00 -3.652888 3.825898e-04 1.864221e-03
## EIF2AK3 6.2787311 1.166398e+01 3.652442 3.831894e-04 1.865344e-03
## DELE1 -5.8421169 3.296236e+01 -3.652402 3.832436e-04 1.865344e-03
## HSBP1 -31.1892006 1.159853e+02 -3.652354 3.833080e-04 1.865344e-03
## KMT5C -1.3979887 2.773191e+00 -3.652249 3.834493e-04 1.865344e-03
## NDUFAF8 -3.2646972 5.177936e+00 -3.650804 3.853987e-04 1.873433e-03
## DCTN1 -16.6714109 8.389166e+01 -3.650782 3.854280e-04 1.873433e-03
## DNLZ -2.0671083 2.137907e+00 -3.649323 3.874065e-04 1.882278e-03
## PIGQ -5.8629205 6.741879e+00 -3.649065 3.877576e-04 1.883213e-03
## PSMC5 -21.9143671 6.931705e+01 -3.648420 3.886361e-04 1.886706e-03
## ARL5A 7.6354869 3.234736e+01 3.647900 3.893454e-04 1.888999e-03
## TMEM68 1.3131305 7.484016e+00 3.647840 3.894269e-04 1.888999e-03
## COA4 -4.7620494 1.090686e+01 -3.647604 3.897505e-04 1.889796e-03
## RRP36 -6.1067248 2.243288e+01 -3.647189 3.903179e-04 1.891774e-03
## DOP1B 6.0848976 1.931065e+01 3.645773 3.922607e-04 1.900413e-03
## ITSN2 45.7099459 1.178624e+02 3.645480 3.926641e-04 1.901591e-03
## RABEP1 9.7854516 3.869741e+01 3.645131 3.931439e-04 1.902448e-03
## PSMC3 -18.1178712 4.726482e+01 -3.645118 3.931619e-04 1.902448e-03
## TOGARAM1 1.5547149 4.533942e+00 3.644931 3.934204e-04 1.902834e-03
## ANAPC2 -5.9219004 1.141795e+01 -3.644754 3.936640e-04 1.902834e-03
## TTC17 9.5874501 4.557256e+01 3.644711 3.937231e-04 1.902834e-03
## SFI1 -5.4230386 1.551822e+01 -3.643459 3.954553e-04 1.910428e-03
## SAP30BP -14.3816232 6.242850e+01 -3.642919 3.962038e-04 1.911570e-03
## AARSD1 -4.3242756 8.709452e+00 -3.642906 3.962219e-04 1.911570e-03
## LAX1 4.8497463 7.071200e+00 3.642895 3.962377e-04 1.911570e-03
## SBF1 -11.4530324 3.838872e+01 -3.642824 3.963364e-04 1.911570e-03
## ARFGEF1 27.2397694 7.973127e+01 3.642705 3.965016e-04 1.911589e-03
## PDZK1IP1 -8.4352142 9.907581e+00 -3.642244 3.971423e-04 1.913900e-03
## UQCRB -67.0514964 1.766402e+02 -3.641052 3.988040e-04 1.921127e-03
## CD226 13.0611781 3.589041e+01 3.640653 3.993617e-04 1.922278e-03
## KMT2C 36.7965794 8.591296e+01 3.640559 3.994940e-04 1.922278e-03
## WDR83OS -32.3125610 7.107354e+01 -3.640534 3.995291e-04 1.922278e-03
## DOCK8 114.3969582 3.126439e+02 3.639692 4.007080e-04 1.926444e-03
## BLZF1 8.6055762 2.160260e+01 3.639684 4.007198e-04 1.926444e-03
## PPP1R16A -1.0421562 1.630258e+00 -3.638900 4.018212e-04 1.930956e-03
## FEM1A -3.4867138 2.698472e+01 -3.637547 4.037289e-04 1.939338e-03
## ZBTB11 10.4980336 3.351740e+01 3.637321 4.040483e-04 1.940086e-03
## FBXL18 -1.6014990 6.821226e+00 -3.637051 4.044305e-04 1.941135e-03
## GTF2A1 12.3195285 3.817889e+01 3.636753 4.048531e-04 1.942378e-03
## SERPINF2 -0.8184058 1.182672e+00 -3.636289 4.055117e-04 1.944751e-03
## LAMC1 5.9559558 7.348252e+00 3.636067 4.058269e-04 1.945476e-03
## TMX1 11.1598355 4.994364e+01 3.635623 4.064578e-04 1.947713e-03
## SLC52A2 -3.4349763 6.032908e+00 -3.635002 4.073412e-04 1.951158e-03
## BABAM1 -17.3174567 4.057294e+01 -3.633725 4.091654e-04 1.958626e-03
## EXO5 2.4642011 6.732986e+00 3.633679 4.092307e-04 1.958626e-03
## ARL2 -5.8863648 9.062380e+00 -3.632271 4.112514e-04 1.967504e-03
## PIEZO1 -12.8369984 2.345828e+01 -3.631147 4.128711e-04 1.974456e-03
## TMEM38B 1.0455093 3.900253e+00 3.630950 4.131561e-04 1.975023e-03
## ZNF692 -9.8332789 2.986729e+01 -3.630749 4.134455e-04 1.975610e-03
## INTS8 17.2650135 6.157028e+01 3.630025 4.144935e-04 1.979820e-03
## MTRF1L 7.2388809 3.075054e+01 3.629192 4.157021e-04 1.984793e-03
## USP5 -12.3756034 2.845790e+01 -3.628729 4.163752e-04 1.987207e-03
## TMEM97 0.8028092 1.949132e+00 3.627222 4.185736e-04 1.996896e-03
## TMEM204 -3.5255103 4.402109e+00 -3.627027 4.188592e-04 1.997455e-03
## MYL6 -1291.6649850 2.073412e+03 -3.626615 4.194631e-04 1.999531e-03
## RELB -11.5852153 2.527917e+01 -3.625507 4.210898e-04 2.005829e-03
## SWI5 -3.6473828 8.839777e+00 -3.625484 4.211225e-04 2.005829e-03
## NECAB3 -1.2864756 2.165013e+00 -3.624673 4.223172e-04 2.010711e-03
## DUSP7 -6.2432170 2.252231e+01 -3.624162 4.230721e-04 2.013497e-03
## ZNF783 -4.3864397 1.092345e+01 -3.622912 4.249214e-04 2.021487e-03
## CD3E -63.8553694 9.747340e+01 -3.622547 4.254642e-04 2.023258e-03
## DRAP1 -36.8457861 6.098790e+01 -3.621563 4.269271e-04 2.029130e-03
## NDOR1 -8.8569013 1.651867e+01 -3.621487 4.270411e-04 2.029130e-03
## RPS6KB2 -21.5728426 4.355116e+01 -3.621300 4.273199e-04 2.029641e-03
## HEBP1 -5.6453343 1.833452e+01 -3.620987 4.277867e-04 2.031045e-03
## GPX1 -138.8362145 2.005700e+02 -3.620812 4.280471e-04 2.031468e-03
## SH3GL1 -10.0652873 2.443641e+01 -3.619203 4.304579e-04 2.042092e-03
## CDC34 -20.3292489 3.895673e+01 -3.618286 4.318363e-04 2.047457e-03
## DHRS1 -5.4864620 1.472088e+01 -3.618221 4.319341e-04 2.047457e-03
## RRP9 -2.7078435 4.980052e+00 -3.617715 4.326975e-04 2.050257e-03
## MFAP3 13.0731311 3.367424e+01 3.616094 4.351495e-04 2.061051e-03
## RCE1 -2.9255819 7.901381e+00 -3.614632 4.373737e-04 2.069430e-03
## PPP2R5E 4.9871785 2.808026e+01 3.614592 4.374337e-04 2.069430e-03
## DPH5 -3.6158662 1.455070e+01 -3.614537 4.375187e-04 2.069430e-03
## BCL7C -15.6982154 1.304869e+01 -3.614473 4.376163e-04 2.069430e-03
## MEF2B -1.6777632 2.260429e+00 -3.613660 4.388575e-04 2.074472e-03
## TRIM11 -7.2457327 2.216226e+01 -3.613473 4.391428e-04 2.074993e-03
## LHFPL2 18.4154842 3.078348e+01 3.612692 4.403395e-04 2.079820e-03
## RBM33 19.9690741 7.705365e+01 3.612517 4.406091e-04 2.080264e-03
## IDH1 20.2984373 6.050865e+01 3.611938 4.414989e-04 2.083636e-03
## STK4 96.7718794 2.956413e+02 3.611677 4.419004e-04 2.084701e-03
## PLCE1 -0.5731638 1.467656e+00 -3.611357 4.423932e-04 2.086196e-03
## AVL9 18.8536656 6.014709e+01 3.610384 4.438945e-04 2.092444e-03
## DUSP12 -2.5627153 1.244491e+01 -3.610052 4.444080e-04 2.094032e-03
## PSMG2 -5.6526214 2.825350e+01 -3.609796 4.448048e-04 2.095070e-03
## SFXN3 -7.0342216 3.279589e+01 -3.609487 4.452835e-04 2.096491e-03
## SON 54.2048326 2.002074e+02 3.608772 4.463935e-04 2.100884e-03
## AK3 3.3405928 1.842348e+01 3.607527 4.483313e-04 2.109167e-03
## MED13L 76.8162240 1.527720e+02 3.606515 4.499128e-04 2.115768e-03
## TUBB1 58.9929031 9.688470e+01 3.604850 4.525267e-04 2.127216e-03
## WNK1 49.8778910 1.310469e+02 3.603884 4.540513e-04 2.133537e-03
## PTPRCAP -43.3062135 3.035666e+01 -3.602668 4.559745e-04 2.141726e-03
## CDC26 -15.2446944 4.956672e+01 -3.602550 4.561618e-04 2.141757e-03
## MYB 5.6914012 7.418803e+00 3.602009 4.570208e-04 2.144941e-03
## SLC22A15 22.1886337 4.100394e+01 3.601768 4.574038e-04 2.145889e-03
## STX18 -3.1363922 1.523342e+01 -3.601545 4.577583e-04 2.146704e-03
## MCU 11.9438211 3.360175e+01 3.601428 4.579451e-04 2.146731e-03
## CAPG -111.5802181 1.862372e+02 -3.600817 4.589191e-04 2.150447e-03
## CCM2 -43.6396838 1.243615e+02 -3.600043 4.601551e-04 2.155387e-03
## KIZ 2.6483360 1.313133e+01 3.599689 4.607220e-04 2.157190e-03
## LMAN2 -47.7388179 1.254091e+02 -3.599326 4.613025e-04 2.159056e-03
## ZNF383 -1.4139949 7.555948e+00 -3.599034 4.617717e-04 2.160399e-03
## NEK9 18.1400678 7.601523e+01 3.598380 4.628224e-04 2.163978e-03
## NUDT17 -0.7343182 2.127483e+00 -3.598330 4.629015e-04 2.163978e-03
## FAHD1 -1.8061582 5.384156e+00 -3.597459 4.643053e-04 2.168878e-03
## PSME4 8.2692701 5.103910e+01 3.597453 4.643154e-04 2.168878e-03
## ABHD8 -1.9424871 2.969135e+00 -3.596725 4.654909e-04 2.173512e-03
## PIWIL4 5.5381027 9.270949e+00 3.596535 4.657968e-04 2.174085e-03
## CTDNEP1 -38.4793224 1.228679e+02 -3.595622 4.672773e-04 2.180137e-03
## SHISA4 -0.9529709 1.411928e+00 -3.594369 4.693146e-04 2.188056e-03
## ERI3 -5.9435168 1.160699e+01 -3.594351 4.693434e-04 2.188056e-03
## PPP1R15B 49.9602174 1.214792e+02 3.594196 4.695965e-04 2.188375e-03
## UTP18 -4.7220339 2.293167e+01 -3.593869 4.701293e-04 2.189997e-03
## MIA3 21.2659701 6.565482e+01 3.593701 4.704038e-04 2.190416e-03
## RPL36AL -81.8648848 2.487973e+02 -3.593147 4.713094e-04 2.193771e-03
## KLHL20 2.3024608 6.873662e+00 3.592102 4.730219e-04 2.199230e-03
## GTF2H2C 9.0990077 2.918868e+01 3.592098 4.730290e-04 2.199230e-03
## EIF3L -58.8656218 2.008918e+02 -3.592092 4.730385e-04 2.199230e-03
## PARP8 112.1277597 2.770455e+02 3.591852 4.734314e-04 2.200195e-03
## NDUFS3 -10.0735487 3.057298e+01 -3.591668 4.737344e-04 2.200740e-03
## KBTBD3 -1.3941412 4.509391e+00 -3.591292 4.743535e-04 2.202754e-03
## C4orf46 2.1164555 6.413515e+00 3.590137 4.762581e-04 2.210732e-03
## PIGC 3.4229584 2.101348e+01 3.589416 4.774506e-04 2.214724e-03
## CIZ1 -7.8581366 2.720539e+01 -3.589391 4.774914e-04 2.214724e-03
## CASP6 1.2973693 6.602254e+00 3.588837 4.784098e-04 2.218116e-03
## WDR45 -18.0178131 6.259678e+01 -3.588526 4.789265e-04 2.219644e-03
## ELP5 -4.3451817 1.575679e+01 -3.588061 4.796998e-04 2.222359e-03
## MBD1 6.3057824 4.770795e+01 3.587903 4.799623e-04 2.222669e-03
## NIPBL 40.0871632 1.104868e+02 3.587764 4.801936e-04 2.222669e-03
## MANEAL -0.7729493 1.880665e+00 -3.587682 4.803290e-04 2.222669e-03
## HACE1 1.4556671 3.573234e+00 3.587537 4.805713e-04 2.222923e-03
## RER1 -20.0707974 9.603072e+01 -3.586567 4.821908e-04 2.229545e-03
## ABRAXAS2 3.2192892 1.367703e+01 3.586112 4.829517e-04 2.232193e-03
## TGFBRAP1 3.3786098 1.744006e+01 3.585488 4.839971e-04 2.235130e-03
## MDP1 -3.7644380 7.681028e+00 -3.585455 4.840515e-04 2.235130e-03
## RABAC1 -18.3298157 2.794759e+01 -3.585395 4.841524e-04 2.235130e-03
## PPP2CB 9.3452128 2.876596e+01 3.583735 4.869459e-04 2.247151e-03
## SMIM3 22.1975774 4.929895e+01 3.583346 4.876032e-04 2.247943e-03
## SUPT16H 11.6648198 6.353515e+01 3.583310 4.876636e-04 2.247943e-03
## MEPCE -14.5637814 4.292490e+01 -3.583296 4.876862e-04 2.247943e-03
## ATAD3B -3.8200045 5.989959e+00 -3.582331 4.893196e-04 2.254596e-03
## NKD1 2.2854434 3.876576e+00 3.581651 4.904743e-04 2.258195e-03
## ALAS1 12.3941772 5.096235e+01 3.581564 4.906221e-04 2.258195e-03
## KPNA3 6.0048850 2.299328e+01 3.581534 4.906719e-04 2.258195e-03
## A1BG -1.0478519 1.011980e+00 -3.581003 4.915754e-04 2.261476e-03
## HNRNPH3 42.0534176 1.583682e+02 3.580431 4.925496e-04 2.265079e-03
## AZIN2 -0.4557866 9.100170e-01 -3.580261 4.928398e-04 2.265535e-03
## ATF5 -3.3408421 7.087778e+00 -3.579935 4.933962e-04 2.267214e-03
## NUF2 2.8360370 3.343925e+00 3.579742 4.937273e-04 2.267857e-03
## NCOA2 40.2714508 9.099769e+01 3.579225 4.946111e-04 2.271037e-03
## TMOD3 31.3856569 7.800535e+01 3.579038 4.949317e-04 2.271629e-03
## TRMU -4.0788667 9.363853e+00 -3.576757 4.988539e-04 2.288745e-03
## ARPC4-TTLL3 -13.1490025 3.585958e+01 -3.576295 4.996509e-04 2.291516e-03
## LRRK2 390.6613903 7.133897e+02 3.575601 5.008523e-04 2.296138e-03
## MRPL38 -9.9113785 1.417414e+01 -3.575188 5.015682e-04 2.298531e-03
## DIP2A 9.8555264 3.502928e+01 3.573462 5.045706e-04 2.311397e-03
## GLI1 2.4533403 3.458689e+00 3.573197 5.050345e-04 2.312629e-03
## UBE2G1 15.1779144 5.955070e+01 3.572562 5.061435e-04 2.316813e-03
## MTA1 -2.6265305 8.067803e+00 -3.572225 5.067343e-04 2.318622e-03
## RITA1 -2.6082753 6.178398e+00 -3.571736 5.075919e-04 2.321650e-03
## NHP2 -9.0593232 1.478487e+01 -3.571356 5.082582e-04 2.323802e-03
## MZT2B -5.6083095 4.755649e+00 -3.570862 5.091270e-04 2.326078e-03
## TIMP1 -165.4653538 2.282849e+02 -3.570850 5.091483e-04 2.326078e-03
## OSCAR -62.9646292 1.194916e+02 -3.570636 5.095242e-04 2.326899e-03
## RDH10 0.7861105 4.159491e+00 3.570510 5.097462e-04 2.327017e-03
## LAMP1 -28.5732755 1.181997e+02 -3.569701 5.111737e-04 2.332636e-03
## IARS1 7.4603853 2.129363e+01 3.569222 5.120195e-04 2.335597e-03
## CENPN 3.2649852 6.068023e+00 3.569037 5.123477e-04 2.336195e-03
## PATL2 7.5985814 1.928900e+01 3.568262 5.137214e-04 2.341559e-03
## PDHX 2.0354111 7.971595e+00 3.567920 5.143276e-04 2.343421e-03
## LRBA 7.7600562 2.016484e+01 3.567210 5.155906e-04 2.348274e-03
## DDI2 4.4465862 1.775701e+01 3.566819 5.162871e-04 2.350543e-03
## PRMT7 -3.7870270 8.293110e+00 -3.566541 5.167827e-04 2.351897e-03
## KDM5B 15.1413139 4.159757e+01 3.566150 5.174810e-04 2.354171e-03
## SRP54 9.9662343 4.311980e+01 3.565661 5.183558e-04 2.357247e-03
## ANXA9 1.6923129 4.519119e+00 3.564892 5.197337e-04 2.362607e-03
## IGFBP4 -2.7227612 2.835312e+00 -3.564431 5.205621e-04 2.365466e-03
## DGKG 2.1203118 7.272686e+00 3.563541 5.221622e-04 2.371378e-03
## FES -73.5311950 1.466250e+02 -3.563236 5.227120e-04 2.371378e-03
## CABIN1 -21.4413794 4.119331e+01 -3.563166 5.228386e-04 2.371378e-03
## GGT7 -2.6401014 5.028157e+00 -3.563146 5.228759e-04 2.371378e-03
## DDX49 -7.7623875 1.523671e+01 -3.563052 5.230447e-04 2.371378e-03
## DPH7 -8.4369740 1.941031e+01 -3.563042 5.230629e-04 2.371378e-03
## YRDC 2.4972049 9.707811e+00 3.562907 5.233071e-04 2.371496e-03
## RUBCN 18.0205104 4.736894e+01 3.562806 5.234886e-04 2.371496e-03
## TP53I11 -37.7265706 8.715598e+01 -3.562207 5.245713e-04 2.375493e-03
## CEP104 2.6258137 1.183220e+01 3.561643 5.255930e-04 2.379211e-03
## ABHD14A -2.7916122 4.115691e+00 -3.560536 5.276039e-04 2.387403e-03
## FLAD1 -6.0745058 2.095031e+01 -3.560181 5.282502e-04 2.389415e-03
## TKFC -4.6385633 9.708086e+00 -3.558886 5.306153e-04 2.398967e-03
## RICTOR 66.1277106 1.414603e+02 3.558803 5.307665e-04 2.398967e-03
## MRPL11 -11.0635334 1.970341e+01 -3.558624 5.310943e-04 2.399535e-03
## TMED1 -5.6153843 1.255846e+01 -3.557815 5.325776e-04 2.405284e-03
## BAMBI 1.2451410 1.766533e+00 3.557709 5.327723e-04 2.405284e-03
## PTBP2 7.7633880 1.714210e+01 3.557254 5.336083e-04 2.408141e-03
## RRS1 -1.3603144 4.683742e+00 -3.555921 5.360652e-04 2.418309e-03
## NDUFS8 -6.0358168 6.602091e+00 -3.555288 5.372365e-04 2.422671e-03
## ATP13A2 -4.8090845 9.373363e+00 -3.554533 5.386357e-04 2.428057e-03
## UQCR11 -28.9990740 5.132063e+01 -3.554377 5.389249e-04 2.428438e-03
## PLXND1 -10.8837265 2.630384e+01 -3.554081 5.394754e-04 2.429996e-03
## WASHC5 6.5688972 2.981605e+01 3.553380 5.407796e-04 2.434945e-03
## SKA2 3.1105828 1.253413e+01 3.553255 5.410123e-04 2.435069e-03
## WDR62 0.6561152 9.978733e-01 3.553051 5.413911e-04 2.435849e-03
## ZNF133 -2.1405154 7.075448e+00 -3.552891 5.416902e-04 2.436075e-03
## SEC63 9.5114443 4.194978e+01 3.552804 5.418520e-04 2.436075e-03
## STRN3 4.7115384 1.439236e+01 3.552214 5.429538e-04 2.440103e-03
## PRKAR2B 51.3800595 9.233238e+01 3.552095 5.431765e-04 2.440179e-03
## DYRK1B -2.1493389 6.251720e+00 -3.551897 5.435484e-04 2.440925e-03
## STT3A 13.1569193 4.161521e+01 3.550407 5.463424e-04 2.452544e-03
## ARMC6 -4.8874597 9.994980e+00 -3.550204 5.467247e-04 2.453332e-03
## DNAL4 -1.9380348 8.689553e+00 -3.549525 5.480039e-04 2.458142e-03
## WDR18 -2.2677813 3.384955e+00 -3.548446 5.500426e-04 2.465457e-03
## LYRM4 -4.9337813 9.831868e+00 -3.548442 5.500505e-04 2.465457e-03
## AXIN1 -5.9916273 2.901411e+01 -3.547924 5.510315e-04 2.468921e-03
## RGS6 1.8609106 3.861306e+00 3.547101 5.525938e-04 2.474986e-03
## NCR1 1.3873070 2.678526e+00 3.546870 5.530323e-04 2.476015e-03
## AAMDC -1.8838557 4.168536e+00 -3.546449 5.538347e-04 2.478671e-03
## FANCL 0.9387311 2.872283e+00 3.545586 5.554802e-04 2.485098e-03
## SECISBP2 6.8174723 4.681965e+01 3.545384 5.558666e-04 2.485889e-03
## PCNP 18.3139819 8.967242e+01 3.545195 5.562275e-04 2.486566e-03
## VCPIP1 51.7530007 1.132242e+02 3.543527 5.594260e-04 2.499922e-03
## ACTR1A -38.9756192 1.517200e+02 -3.543167 5.601187e-04 2.502074e-03
## P4HTM -2.4896348 5.995981e+00 -3.542584 5.612425e-04 2.506151e-03
## TRAF2 -4.0518020 7.122814e+00 -3.542238 5.619116e-04 2.508194e-03
## MYCL -7.5033296 1.579197e+01 -3.541545 5.632508e-04 2.513226e-03
## GPATCH8 9.4514479 2.878337e+01 3.540461 5.653516e-04 2.521651e-03
## SCP2 13.3005234 5.528480e+01 3.540051 5.661499e-04 2.523648e-03
## RNF38 24.3800719 6.358499e+01 3.540012 5.662248e-04 2.523648e-03
## USP28 5.8855390 1.504889e+01 3.539901 5.664417e-04 2.523666e-03
## SAV1 2.1025306 6.493361e+00 3.539718 5.667967e-04 2.524299e-03
## DHX37 -2.5896223 5.786447e+00 -3.539228 5.677508e-04 2.527599e-03
## ADSS1 -0.2910015 4.803343e-01 -3.538980 5.682360e-04 2.528810e-03
## ATP11C 4.6335821 1.601883e+01 3.537898 5.703513e-04 2.537272e-03
## POLR3H -5.5494986 1.125702e+01 -3.537657 5.708234e-04 2.537982e-03
## CCDC30 1.0720106 2.899017e+00 3.537598 5.709390e-04 2.537982e-03
## PANK3 12.5071760 3.892376e+01 3.537409 5.713088e-04 2.538256e-03
## ASL -9.2594630 2.054356e+01 -3.537348 5.714286e-04 2.538256e-03
## MVB12A -5.1579713 1.016360e+01 -3.536719 5.726632e-04 2.542787e-03
## CXXC1 -8.5953606 2.787513e+01 -3.536569 5.729588e-04 2.543148e-03
## MFSD5 -8.7790936 2.866155e+01 -3.536252 5.735830e-04 2.544966e-03
## CFL1 -325.7415175 9.282552e+02 -3.535996 5.740866e-04 2.546248e-03
## RAB2B 2.4440496 1.148864e+01 3.534806 5.764355e-04 2.555710e-03
## MEGF9 316.7988215 6.226543e+02 3.533367 5.792889e-04 2.567401e-03
## IPPK 1.5332565 6.941924e+00 3.533119 5.797823e-04 2.568628e-03
## PTPRA 10.3631401 6.472976e+01 3.532922 5.801754e-04 2.569054e-03
## CDK20 -0.4374519 7.955739e-01 -3.532853 5.803116e-04 2.569054e-03
## STK19 -4.2777998 1.266014e+01 -3.532485 5.810440e-04 2.571068e-03
## SAMM50 -5.5087602 1.939349e+01 -3.532407 5.812001e-04 2.571068e-03
## MBTD1 7.2864517 2.273434e+01 3.532145 5.817231e-04 2.572422e-03
## RBM11 1.0653610 1.756431e+00 3.531844 5.823228e-04 2.573338e-03
## GPR107 15.0261770 5.775534e+01 3.531824 5.823641e-04 2.573338e-03
## TRAK2 9.6886069 3.640937e+01 3.531148 5.837145e-04 2.578317e-03
## BBS5 -1.9372667 6.521254e+00 -3.531024 5.839630e-04 2.578317e-03
## MEA1 -17.5891459 5.827329e+01 -3.530867 5.842777e-04 2.578317e-03
## PRPS2 4.1667117 1.599031e+01 3.530826 5.843605e-04 2.578317e-03
## LRFN4 -0.7570957 9.580936e-01 -3.529744 5.865313e-04 2.586932e-03
## NDUFB9 -24.4968776 6.045578e+01 -3.529427 5.871689e-04 2.588782e-03
## SARS2 -2.7148913 4.118629e+00 -3.528609 5.888192e-04 2.595093e-03
## B3GNTL1 -5.6668676 1.279576e+01 -3.528341 5.893598e-04 2.595322e-03
## RPS28 -181.2527573 1.339300e+02 -3.528293 5.894558e-04 2.595322e-03
## CDK6 4.5780415 1.585066e+01 3.528258 5.895276e-04 2.595322e-03
## PTK6 -0.6885330 1.471093e+00 -3.527884 5.902831e-04 2.597684e-03
## HIP1R -5.6907462 9.582014e+00 -3.527669 5.907175e-04 2.598631e-03
## HGS -14.2234845 5.154154e+01 -3.527477 5.911060e-04 2.599163e-03
## FUCA1 -7.2705899 2.310023e+01 -3.527393 5.912767e-04 2.599163e-03
## PTPA -27.2536964 6.543058e+01 -3.527134 5.918014e-04 2.600306e-03
## NISCH -11.1136201 4.568418e+01 -3.527049 5.919751e-04 2.600306e-03
## KAT5 -8.3542446 3.823578e+01 -3.524964 5.962170e-04 2.617526e-03
## ARAP2 19.4079631 4.519780e+01 3.524906 5.963368e-04 2.617526e-03
## DOT1L -3.0281331 8.184520e+00 -3.524551 5.970623e-04 2.619741e-03
## GOLGA2 8.4786161 3.262925e+01 3.524437 5.972954e-04 2.619794e-03
## LARP7 10.2692530 4.758516e+01 3.523644 5.989185e-04 2.625942e-03
## WASHC2A 13.4468152 5.737396e+01 3.523108 6.000193e-04 2.629582e-03
## HSPA1B -22.4364667 2.484944e+01 -3.523024 6.001921e-04 2.629582e-03
## ZKSCAN1 9.9860325 3.904944e+01 3.522539 6.011883e-04 2.632039e-03
## SPARC 152.0336466 2.452228e+02 3.522535 6.011967e-04 2.632039e-03
## GATAD1 2.7191931 1.537554e+01 3.521371 6.035979e-04 2.641019e-03
## MAP4K5 3.8174256 1.338117e+01 3.521325 6.036932e-04 2.641019e-03
## P3H1 -5.9761099 2.098750e+01 -3.521001 6.043613e-04 2.642966e-03
## AKAP10 16.6096678 5.595202e+01 3.520350 6.057089e-04 2.647883e-03
## NUBP1 -4.0987354 1.721894e+01 -3.519376 6.077327e-04 2.655314e-03
## SEC23IP 4.8786212 2.513588e+01 3.519316 6.078564e-04 2.655314e-03
## SLC27A5 -1.2892993 1.237225e+00 -3.519185 6.081287e-04 2.655525e-03
## C17orf80 2.6003067 1.375346e+01 3.518337 6.098953e-04 2.661905e-03
## MYBL2 14.7745423 1.552904e+01 3.518268 6.100386e-04 2.661905e-03
## FBF1 -2.2749811 3.855134e+00 -3.517510 6.116227e-04 2.667836e-03
## TNFSF8 14.4408184 4.500588e+01 3.517312 6.120379e-04 2.668665e-03
## GPR137B -3.6996903 8.107503e+00 -3.516521 6.136949e-04 2.674907e-03
## CPEB3 3.7444412 8.221757e+00 3.516237 6.142912e-04 2.676522e-03
## PARP9 202.2821764 3.519181e+02 3.515481 6.158812e-04 2.682465e-03
## RCOR3 9.5644355 3.665050e+01 3.514924 6.170537e-04 2.686585e-03
## IFT122 -1.2603325 5.680293e+00 -3.513100 6.209134e-04 2.702398e-03
## KLHL25 -0.5366128 9.562206e-01 -3.512966 6.211975e-04 2.702642e-03
## ABT1 -4.7292374 2.377140e+01 -3.512478 6.222334e-04 2.706071e-03
## DPM3 -2.9029868 3.044090e+00 -3.512250 6.227192e-04 2.706071e-03
## SNX27 42.8054517 1.223616e+02 3.512208 6.228080e-04 2.706071e-03
## RPP25L -6.0466924 1.265085e+01 -3.512166 6.228983e-04 2.706071e-03
## ITGA1 3.9492729 7.039792e+00 3.511827 6.236198e-04 2.708213e-03
## USP3 39.8418632 1.450562e+02 3.511547 6.242161e-04 2.709811e-03
## ARHGAP6 2.4396188 5.115979e+00 3.510968 6.254513e-04 2.713066e-03
## TOP3B -3.1713875 1.327283e+01 -3.510914 6.255662e-04 2.713066e-03
## TRIM58 23.5404211 4.058413e+01 3.510874 6.256522e-04 2.713066e-03
## DIP2B 33.2437795 8.847932e+01 3.510756 6.259051e-04 2.713171e-03
## ABCC2 3.7742235 7.386530e+00 3.510339 6.267975e-04 2.716046e-03
## SS18 5.8121445 3.520226e+01 3.509166 6.293117e-04 2.725945e-03
## TTYH2 -4.8750701 1.125504e+01 -3.509049 6.295641e-04 2.726042e-03
## NUFIP2 47.5255369 1.414914e+02 3.508859 6.299716e-04 2.726322e-03
## NAA80 -3.2392069 4.282632e+00 -3.508805 6.300885e-04 2.726322e-03
## NCKAP1 3.0026450 6.203910e+00 3.508162 6.314726e-04 2.731315e-03
## DMAC1 -6.5921479 1.317692e+01 -3.506585 6.348813e-04 2.745057e-03
## RAPGEF6 14.6188059 3.986585e+01 3.506394 6.352954e-04 2.745847e-03
## MRPL2 -2.5667659 6.783673e+00 -3.505854 6.364662e-04 2.749393e-03
## OTUB1 -23.7988712 7.650581e+01 -3.505802 6.365796e-04 2.749393e-03
## SLC26A11 -3.1843230 8.702901e+00 -3.504917 6.385051e-04 2.755814e-03
## MRPL42 3.4643887 1.959851e+01 3.504905 6.385309e-04 2.755814e-03
## YOD1 30.6607243 5.202285e+01 3.504665 6.390526e-04 2.757062e-03
## EIF2AK2 100.3583917 1.460407e+02 3.504187 6.400956e-04 2.760558e-03
## LRRC8D 7.4762959 2.933636e+01 3.503507 6.415834e-04 2.765969e-03
## DNAJB4 1.1358726 3.413015e+00 3.503210 6.422316e-04 2.767757e-03
## TG 2.1122858 2.999186e+00 3.503093 6.424883e-04 2.767858e-03
## NKAIN3 2.1622655 5.275168e+00 3.502887 6.429409e-04 2.768801e-03
## BTAF1 21.7539995 5.556688e+01 3.502553 6.436729e-04 2.769361e-03
## CCNT1 11.1932379 3.231011e+01 3.502477 6.438387e-04 2.769361e-03
## RAF1 108.9216834 3.638603e+02 3.502447 6.439051e-04 2.769361e-03
## SERAC1 2.4188217 7.581262e+00 3.502402 6.440050e-04 2.769361e-03
## NEK7 68.2255492 1.417374e+02 3.502165 6.445247e-04 2.770592e-03
## TRIM46 -0.7671252 1.150601e+00 -3.502020 6.448445e-04 2.770825e-03
## IGHG1 1407.0336676 1.138835e+03 3.501928 6.450462e-04 2.770825e-03
## ELL2 25.0448482 3.826902e+01 3.500716 6.477171e-04 2.781291e-03
## HS6ST1 -3.0301646 1.059926e+01 -3.498270 6.531382e-04 2.803554e-03
## SQLE 3.0176551 8.555923e+00 3.497216 6.554865e-04 2.811855e-03
## CA11 -1.3999902 2.080973e+00 -3.497189 6.555463e-04 2.811855e-03
## SLC22A16 2.3478285 3.172906e+00 3.496578 6.569119e-04 2.816694e-03
## MORC3 32.9123830 8.802963e+01 3.496433 6.572366e-04 2.816827e-03
## CPEB2 15.8507576 3.367483e+01 3.496321 6.574873e-04 2.816827e-03
## FAR2 30.7559818 5.885948e+01 3.496190 6.577821e-04 2.816827e-03
## TUBGCP4 1.9256961 5.749259e+00 3.496140 6.578931e-04 2.816827e-03
## PRPF4B 17.8960820 6.849967e+01 3.495785 6.586891e-04 2.818172e-03
## NEK4 4.2413887 1.222143e+01 3.495703 6.588725e-04 2.818172e-03
## PAQR7 -3.0923723 6.692685e+00 -3.495682 6.589199e-04 2.818172e-03
## MDM4 15.7662370 5.477261e+01 3.494081 6.625225e-04 2.832558e-03
## ERI2 0.9782807 3.443466e+00 3.493937 6.628461e-04 2.832921e-03
## CEP350 23.6462067 6.702272e+01 3.493418 6.640181e-04 2.836907e-03
## BCLAF3 5.4477684 1.529940e+01 3.492380 6.663684e-04 2.845923e-03
## CLINT1 23.1027996 5.934045e+01 3.492207 6.667606e-04 2.845963e-03
## PTPN12 81.8628730 2.119369e+02 3.492156 6.668752e-04 2.845963e-03
## LILRB3 -202.3784385 4.729252e+02 -3.492058 6.670976e-04 2.845963e-03
## MTHFD2L 1.4478421 5.595890e+00 3.491825 6.676286e-04 2.847204e-03
## G6PD -45.2795968 1.197778e+02 -3.491489 6.683910e-04 2.849431e-03
## TXNDC5 303.4223140 2.778705e+02 3.490476 6.706973e-04 2.858236e-03
## ZAP70 -42.7585180 5.520149e+01 -3.490319 6.710574e-04 2.858743e-03
## ZNF507 2.9380131 1.056775e+01 3.490148 6.714466e-04 2.859374e-03
## GALNT7 15.9148467 3.724127e+01 3.489654 6.725755e-04 2.863153e-03
## KRBA2 0.9241077 5.176327e+00 3.489225 6.735575e-04 2.866305e-03
## SEPTIN2 30.2205198 1.525657e+02 3.488093 6.761557e-04 2.876330e-03
## MED6 -2.1313192 1.610671e+01 -3.487901 6.765971e-04 2.877175e-03
## FOXN2 37.4118314 8.517708e+01 3.487696 6.770689e-04 2.878149e-03
## EPS8L2 -1.5642661 2.161680e+00 -3.487055 6.785449e-04 2.883390e-03
## DDA1 -5.1302647 2.078446e+01 -3.486904 6.788932e-04 2.883837e-03
## MCAT -1.6400899 3.748407e+00 -3.486741 6.792695e-04 2.884402e-03
## SDE2 7.4913186 2.019426e+01 3.485872 6.812788e-04 2.891899e-03
## EYA3 5.8755838 2.485161e+01 3.485660 6.817702e-04 2.892950e-03
## LONP2 20.8759092 4.934011e+01 3.484991 6.833214e-04 2.897653e-03
## SH2D3C -23.8648786 7.585229e+01 -3.484972 6.833672e-04 2.897653e-03
## KDM7A 49.5917058 1.187623e+02 3.484802 6.837598e-04 2.898282e-03
## ATOX1 -11.8303184 1.878354e+01 -3.484626 6.841688e-04 2.898979e-03
## KIDINS220 36.4201047 8.987570e+01 3.483533 6.867158e-04 2.908732e-03
## BICRAL 18.2563711 4.974306e+01 3.483420 6.869788e-04 2.908807e-03
## PRKAA1 27.9132754 7.547090e+01 3.483129 6.876572e-04 2.910640e-03
## KLHL26 -0.8089283 3.219880e+00 -3.482189 6.898572e-04 2.918911e-03
## H2BC21 36.8647691 9.096919e+01 3.480812 6.930905e-04 2.931545e-03
## RPL34 -268.7559145 4.798503e+02 -3.479884 6.952773e-04 2.939112e-03
## LEMD3 9.9672865 3.364193e+01 3.479790 6.954989e-04 2.939112e-03
## PCNX1 130.3889407 2.675124e+02 3.479737 6.956229e-04 2.939112e-03
## CD68 -87.1373506 2.689111e+02 -3.479125 6.970690e-04 2.944173e-03
## SPIB -3.7921738 6.385561e+00 -3.478737 6.979876e-04 2.947004e-03
## ZFAND2B -23.1626143 5.251443e+01 -3.477841 7.001138e-04 2.954929e-03
## PCGF6 0.8096030 3.656142e+00 3.476892 7.023718e-04 2.963404e-03
## DDX39B -32.8224905 1.821055e+02 -3.476717 7.027887e-04 2.964109e-03
## MRPL54 -13.4282214 2.150218e+01 -3.476507 7.032900e-04 2.964814e-03
## RNA28SN3 -1479.5362707 2.155951e+03 -3.476437 7.034558e-04 2.964814e-03
## KCNA2 0.5518372 8.876496e-01 3.476196 7.040313e-04 2.966185e-03
## DMTF1 12.8729371 4.803148e+01 3.476035 7.044147e-04 2.966746e-03
## CWF19L1 -13.4669138 5.329476e+01 -3.475898 7.047440e-04 2.967080e-03
## IRF4 13.0080140 2.002576e+01 3.475726 7.051544e-04 2.967754e-03
## ITPA -8.8076224 1.822375e+01 -3.475554 7.055659e-04 2.967820e-03
## SNRK 56.7962686 1.634270e+02 3.475360 7.060290e-04 2.967820e-03
## INTS6 18.1888541 5.530760e+01 3.475297 7.061802e-04 2.967820e-03
## EHMT2 -6.2524019 1.617896e+01 -3.475250 7.062946e-04 2.967820e-03
## ITCH 31.9943461 9.900280e+01 3.475197 7.064213e-04 2.967820e-03
## COPA 31.7972267 1.265631e+02 3.474877 7.071871e-04 2.969985e-03
## TRAPPC5 -8.2606398 1.130855e+01 -3.473844 7.096696e-04 2.979356e-03
## POU2AF1 17.4585923 2.255729e+01 3.473038 7.116109e-04 2.986449e-03
## KDM3B 43.7102690 1.335177e+02 3.472655 7.125356e-04 2.989272e-03
## ATP5ME -23.9625616 3.814345e+01 -3.472526 7.128460e-04 2.989517e-03
## SLC39A9 8.0197354 3.976978e+01 3.472054 7.139872e-04 2.993244e-03
## ABCA1 53.1617231 9.167669e+01 3.471676 7.149034e-04 2.996026e-03
## MED19 -1.4024459 5.387049e+00 -3.471327 7.157493e-04 2.997749e-03
## GTF3A -25.9383460 9.971062e+01 -3.471297 7.158200e-04 2.997749e-03
## MBTPS2 1.2020383 3.748538e+00 3.469853 7.193326e-04 3.011396e-03
## OSBP 6.4625232 3.421764e+01 3.469455 7.203014e-04 3.014388e-03
## PRDM4 5.6283633 2.520332e+01 3.469273 7.207462e-04 3.014925e-03
## POLR1H -10.3728661 2.668011e+01 -3.469194 7.209383e-04 3.014925e-03
## SPSB1 0.8811580 2.543345e+00 3.468021 7.238096e-04 3.025465e-03
## H2AJ -9.2496899 1.515995e+01 -3.467878 7.241593e-04 3.025465e-03
## RASAL3 -25.2157687 5.587792e+01 -3.467852 7.242238e-04 3.025465e-03
## KCTD5 -3.8684459 2.158560e+01 -3.467598 7.248450e-04 3.026994e-03
## ZFC3H1 17.8580235 5.988510e+01 3.467426 7.252679e-04 3.027694e-03
## DUSP18 3.6631376 1.203169e+01 3.467245 7.257130e-04 3.027981e-03
## OAZ1 -581.5983370 1.263818e+03 -3.467190 7.258474e-04 3.027981e-03
## HP1BP3 23.8611963 9.159015e+01 3.466092 7.285501e-04 3.038187e-03
## LETM2 6.9988750 1.092490e+01 3.465228 7.306841e-04 3.046015e-03
## MIGA2 -8.8421075 2.307077e+01 -3.465009 7.312261e-04 3.047204e-03
## CCNYL1 2.8633080 1.112069e+01 3.464722 7.319373e-04 3.049096e-03
## CLASP2 4.3290987 1.568982e+01 3.464548 7.323680e-04 3.049819e-03
## RPRD1A 6.3798332 2.419009e+01 3.463859 7.340769e-04 3.055862e-03
## NAGLU -5.6588560 1.127876e+01 -3.463556 7.348309e-04 3.057304e-03
## HCK -282.8025004 7.718585e+02 -3.463512 7.349387e-04 3.057304e-03
## UBE4A 19.5837395 6.951969e+01 3.463003 7.362053e-04 3.061499e-03
## ATP2A2 11.2512780 3.710836e+01 3.462642 7.371063e-04 3.063516e-03
## SLC39A14 1.5556357 3.344150e+00 3.462601 7.372069e-04 3.063516e-03
## RNF213 254.3551288 4.557329e+02 3.462327 7.378913e-04 3.065286e-03
## TEDC1 -1.5602125 1.382271e+00 -3.461024 7.411487e-04 3.075724e-03
## MTFR1 0.6093982 2.852083e+00 3.461021 7.411573e-04 3.075724e-03
## RAB30 3.6652876 7.387232e+00 3.461011 7.411820e-04 3.075724e-03
## SIGLEC9 -22.9184987 6.044614e+01 -3.459504 7.449684e-04 3.090355e-03
## SHISA9 6.5804713 1.863861e+01 3.458435 7.476655e-04 3.100459e-03
## UBA1 -39.1083234 1.873462e+02 -3.458240 7.481582e-04 3.101418e-03
## PIM3 -29.9064383 6.916755e+01 -3.457149 7.509197e-04 3.111777e-03
## TRAF6 6.8309602 2.421382e+01 3.456983 7.513426e-04 3.112442e-03
## PCNX4 8.3582081 2.670849e+01 3.456728 7.519885e-04 3.114030e-03
## AATK -13.2973169 2.784013e+01 -3.456232 7.532517e-04 3.118173e-03
## MPV17L 1.2115832 3.473934e+00 3.455476 7.551766e-04 3.124385e-03
## NDUFV3 -3.4994635 1.748673e+01 -3.455436 7.552791e-04 3.124385e-03
## LZTR1 -7.7391963 2.282526e+01 -3.455221 7.558279e-04 3.125564e-03
## PHF6 3.7658238 1.144247e+01 3.455101 7.561334e-04 3.125738e-03
## HSD17B8 -2.7517435 3.798992e+00 -3.454629 7.573404e-04 3.129637e-03
## SKAP1 -13.5097986 2.524326e+01 -3.454294 7.581976e-04 3.132088e-03
## STRIP1 4.3227622 2.905519e+01 3.454145 7.585795e-04 3.132574e-03
## AGFG2 -4.4644562 7.216096e+00 -3.453687 7.597521e-04 3.135447e-03
## MRM2 -2.6596693 1.210393e+01 -3.453667 7.598040e-04 3.135447e-03
## KLHDC4 -4.8507103 9.421845e+00 -3.453236 7.609099e-04 3.138709e-03
## GPS2 -17.1060456 5.330418e+01 -3.453153 7.611236e-04 3.138709e-03
## YIPF2 -2.8777983 5.261648e+00 -3.452931 7.616954e-04 3.139975e-03
## CTSH -48.7658600 1.260717e+02 -3.452116 7.637927e-04 3.147527e-03
## TNPO3 20.9503860 6.856404e+01 3.451670 7.649436e-04 3.150955e-03
## NSA2 -14.9174874 6.509212e+01 -3.451588 7.651560e-04 3.150955e-03
## IL24 -0.6489467 1.157309e+00 -3.450603 7.677018e-04 3.159827e-03
## E2F6 1.0294014 6.140207e+00 3.450549 7.678434e-04 3.159827e-03
## SLC7A1 2.4598730 7.062949e+00 3.450003 7.692574e-04 3.164548e-03
## TARBP2 -3.3971016 6.617235e+00 -3.449803 7.697785e-04 3.165594e-03
## FAM78A -16.2800079 5.976105e+01 -3.449066 7.716948e-04 3.172374e-03
## EEPD1 -6.9523437 2.263370e+01 -3.447987 7.745080e-04 3.182836e-03
## TRIP12 53.9302891 1.994150e+02 3.447350 7.761726e-04 3.186745e-03
## RIPK3 -10.2114077 3.618256e+01 -3.447229 7.764881e-04 3.186745e-03
## SLC37A2 -7.4409350 2.758971e+01 -3.447200 7.765658e-04 3.186745e-03
## TMEM87A 6.6267955 3.802758e+01 3.447151 7.766944e-04 3.186745e-03
## PTPMT1 -5.3312408 1.691512e+01 -3.447109 7.768027e-04 3.186745e-03
## AMMECR1L 3.3205703 1.874704e+01 3.446342 7.788145e-04 3.193894e-03
## COG8 1.4990891 1.378825e+01 3.445862 7.800750e-04 3.197957e-03
## ZDHHC17 21.3017422 5.333495e+01 3.445706 7.804863e-04 3.198537e-03
## CNN2 -205.4545037 5.810240e+02 -3.445117 7.820366e-04 3.203784e-03
## PTOV1 -21.2209641 3.583851e+01 -3.444680 7.831894e-04 3.207399e-03
## WRAP53 -2.1901442 5.915849e+00 -3.443131 7.872876e-04 3.223069e-03
## MED10 -2.9276329 1.490351e+01 -3.442902 7.878969e-04 3.224450e-03
## TPD52 6.2690591 1.201302e+01 3.442269 7.895789e-04 3.230219e-03
## RHOT1 30.3377943 8.289552e+01 3.442003 7.902850e-04 3.231993e-03
## SLFN11 14.2010846 3.929425e+01 3.441840 7.907190e-04 3.232653e-03
## SOCS5 8.3798530 1.694297e+01 3.441518 7.915791e-04 3.235054e-03
## SEC31A 10.1975539 3.968046e+01 3.441097 7.927013e-04 3.238525e-03
## BTN3A2 72.9600190 2.241474e+02 3.440648 7.938996e-04 3.240446e-03
## DMXL2 55.0934277 1.334923e+02 3.440620 7.939755e-04 3.240446e-03
## PRELID1 -85.1969035 2.591440e+02 -3.440614 7.939912e-04 3.240446e-03
## SCYL3 6.5346081 2.588316e+01 3.440303 7.948245e-04 3.242731e-03
## NEK1 1.3329261 4.852121e+00 3.439849 7.960390e-04 3.246569e-03
## MEI1 -5.8112151 9.547366e+00 -3.439573 7.967790e-04 3.248470e-03
## PLEKHB1 -4.0708841 6.360133e+00 -3.439085 7.980881e-04 3.251757e-03
## PBRM1 8.7586103 3.209826e+01 3.439030 7.982362e-04 3.251757e-03
## EFCAB14 19.2846466 9.661470e+01 3.438966 7.984077e-04 3.251757e-03
## ARID5B 7.4962045 1.937040e+01 3.437730 8.017372e-04 3.264196e-03
## ENTR1 -3.0407444 1.042726e+01 -3.436822 8.041899e-04 3.273058e-03
## ARID2 6.6565926 2.132931e+01 3.436649 8.046601e-04 3.273848e-03
## SRBD1 12.3698308 3.101500e+01 3.436190 8.059020e-04 3.277003e-03
## CACNB1 -0.9741020 2.481048e+00 -3.436158 8.059879e-04 3.277003e-03
## CBX1 12.9296634 4.810889e+01 3.435903 8.066821e-04 3.278701e-03
## AURKAIP1 -17.3422722 2.883187e+01 -3.435773 8.070349e-04 3.279011e-03
## NIPSNAP1 -5.5493724 2.269746e+01 -3.434679 8.100084e-04 3.289966e-03
## ATL1 0.6112356 1.615097e+00 3.433666 8.127720e-04 3.300060e-03
## RFTN1 -7.9082810 2.251808e+01 -3.433203 8.140392e-04 3.304074e-03
## NDUFB2 -18.3441359 3.145912e+01 -3.431691 8.181879e-04 3.319777e-03
## UBAP2L 12.5239343 5.572715e+01 3.431483 8.187591e-04 3.320959e-03
## CLTA -20.7920914 6.304633e+01 -3.431114 8.197766e-04 3.323949e-03
## LIME1 -10.9596068 8.501134e+00 -3.430481 8.215207e-04 3.329882e-03
## MYC -9.8324599 2.615070e+01 -3.429595 8.239697e-04 3.338668e-03
## LRCH1 2.4010952 8.424754e+00 3.429142 8.252253e-04 3.341328e-03
## RUVBL2 -8.3274693 1.285314e+01 -3.429074 8.254134e-04 3.341328e-03
## CD3D -49.3352850 6.773680e+01 -3.429053 8.254714e-04 3.341328e-03
## BCL11A -1.9181980 5.220450e+00 -3.428944 8.257761e-04 3.341421e-03
## ZNF747 -1.6535502 7.011110e+00 -3.428631 8.266423e-04 3.343168e-03
## TMEM234 -3.5746050 9.954188e+00 -3.428585 8.267717e-04 3.343168e-03
## OIP5 0.8096780 1.118985e+00 3.427561 8.296191e-04 3.352739e-03
## EXOC5 9.7254184 3.666966e+01 3.427531 8.297039e-04 3.352739e-03
## SLA2 20.7469646 4.602632e+01 3.425537 8.352773e-04 3.374111e-03
## KCTD11 -2.7187984 1.050792e+01 -3.425413 8.356245e-04 3.374364e-03
## PPP6R1 -17.5749020 7.938191e+01 -3.424755 8.374724e-04 3.380675e-03
## SLC17A5 4.1256227 1.547184e+01 3.423918 8.398296e-04 3.389007e-03
## ZSWIM9 -1.3576888 4.628154e+00 -3.423819 8.401080e-04 3.389007e-03
## RETREG3 -21.2709545 6.969379e+01 -3.423469 8.410959e-04 3.391839e-03
## RRP7A -19.8661145 3.740405e+01 -3.423275 8.416419e-04 3.392887e-03
## CTU2 -1.1228926 2.152264e+00 -3.422204 8.446711e-04 3.403941e-03
## EPHB6 -7.7216718 1.670746e+01 -3.421796 8.458290e-04 3.406635e-03
## SECTM1 -112.3124244 2.043904e+02 -3.421725 8.460300e-04 3.406635e-03
## RAD21 64.6535294 2.241692e+02 3.421569 8.464729e-04 3.406635e-03
## HOOK2 -1.2157851 3.464195e+00 -3.421564 8.464885e-04 3.406635e-03
## MRPL53 -5.9854064 1.228370e+01 -3.420434 8.497020e-04 3.418408e-03
## FBXO28 5.6297459 2.305460e+01 3.417939 8.568396e-04 3.445954e-03
## VAC14 -3.1575486 9.370250e+00 -3.417680 8.575814e-04 3.447768e-03
## GADD45GIP1 -15.0356574 1.349253e+01 -3.417370 8.584742e-04 3.449235e-03
## FN3K -0.3809212 5.278538e-01 -3.417351 8.585281e-04 3.449235e-03
## ZNF280D 4.2856873 1.587320e+01 3.417011 8.595074e-04 3.452001e-03
## PRPF4 1.9648960 1.785673e+01 3.415606 8.635641e-04 3.467119e-03
## EIF3I -21.4741831 8.362708e+01 -3.414561 8.665925e-04 3.477869e-03
## PAK4 -0.7481799 2.334588e+00 -3.414480 8.668281e-04 3.477869e-03
## MANBAL -4.8633856 1.770430e+01 -3.414355 8.671886e-04 3.478139e-03
## SLC35E1 4.5077359 2.980168e+01 3.413433 8.698718e-04 3.487721e-03
## C3orf14 -0.6513454 1.314562e+00 -3.413296 8.702717e-04 3.488145e-03
## ST3GAL1 16.9907098 7.788900e+01 3.412792 8.717396e-04 3.492849e-03
## DAB2 7.0208698 1.773419e+01 3.412518 8.725412e-04 3.494880e-03
## MEFV 72.6214963 2.121622e+02 3.411957 8.741798e-04 3.500261e-03
## LZTS2 -1.8997899 4.465167e+00 -3.411791 8.746682e-04 3.501034e-03
## TUBGCP6 -9.2124169 2.662201e+01 -3.411618 8.751730e-04 3.501873e-03
## TMEM212 1.9182633 5.080624e+00 3.409457 8.815264e-04 3.526106e-03
## LILRA1 -35.4091602 1.003846e+02 -3.409261 8.821031e-04 3.526664e-03
## MRPL55 -3.3675743 3.920676e+00 -3.409208 8.822606e-04 3.526664e-03
## MLLT1 -21.9347727 4.617664e+01 -3.408815 8.834205e-04 3.530110e-03
## KCND1 5.1079957 8.704328e+00 3.408589 8.840896e-04 3.531594e-03
## WASL 1.2021412 5.664260e+00 3.406657 8.898198e-04 3.553287e-03
## PHF20L1 44.7310284 1.218556e+02 3.406196 8.911931e-04 3.557573e-03
## CRTC2 -28.1899468 1.006048e+02 -3.405987 8.918152e-04 3.558196e-03
## NUP160 5.6132877 1.823241e+01 3.405942 8.919490e-04 3.558196e-03
## LMBR1L -10.7407917 3.839617e+01 -3.405828 8.922911e-04 3.558363e-03
## ZBTB17 -4.9266578 1.551052e+01 -3.405512 8.932336e-04 3.560893e-03
## CLPP -5.7716016 1.129989e+01 -3.405377 8.936358e-04 3.560893e-03
## GPX4 -37.7044697 8.001004e+01 -3.405314 8.938262e-04 3.560893e-03
## WNT10B -1.4359826 2.295194e+00 -3.404972 8.948487e-04 3.563770e-03
## ABCC6 1.2853306 3.504481e+00 3.404213 8.971194e-04 3.571613e-03
## MAGI3 0.5950723 1.382790e+00 3.404113 8.974220e-04 3.571619e-03
## CEP63 31.5173360 9.140290e+01 3.403985 8.978049e-04 3.571944e-03
## HCST -28.4075809 4.651372e+01 -3.403475 8.993352e-04 3.576833e-03
## GPSM3 -290.6048303 7.229320e+02 -3.403102 9.004565e-04 3.580092e-03
## ERCC2 -2.9602565 5.580682e+00 -3.402689 9.017025e-04 3.581943e-03
## ETNK1 9.7415710 4.377615e+01 3.402686 9.017114e-04 3.581943e-03
## ARHGAP45 -101.6523503 2.357847e+02 -3.402647 9.018282e-04 3.581943e-03
## DTX3L 89.6988929 1.784870e+02 3.402037 9.036689e-04 3.586141e-03
## SF3B5 -31.9386235 6.150043e+01 -3.402011 9.037454e-04 3.586141e-03
## CELF1 30.8061536 1.141638e+02 3.401996 9.037923e-04 3.586141e-03
## PDS5A 12.4120258 4.995416e+01 3.399554 9.111926e-04 3.614296e-03
## RRAS -10.3160432 1.392990e+01 -3.399288 9.120030e-04 3.616301e-03
## DYNC1LI2 11.0326962 4.561655e+01 3.398234 9.152180e-04 3.627836e-03
## SNIP1 3.8313471 1.656125e+01 3.396942 9.191732e-04 3.642297e-03
## REEP5 -23.6541979 1.299043e+02 -3.396786 9.196520e-04 3.642641e-03
## SMAD5 4.1573561 1.192468e+01 3.396682 9.199691e-04 3.642641e-03
## PHIP 31.7512513 8.980356e+01 3.396585 9.202667e-04 3.642641e-03
## TRAPPC8 25.7236177 6.987621e+01 3.396419 9.207767e-04 3.642641e-03
## FBXL13 5.7431696 8.770962e+00 3.396365 9.209439e-04 3.642641e-03
## AQR 7.6729572 3.045538e+01 3.396313 9.211030e-04 3.642641e-03
## SLC35A4 -12.6401913 5.713100e+01 -3.395610 9.232678e-04 3.649985e-03
## CZIB -4.4202008 2.281314e+01 -3.394772 9.258508e-04 3.658977e-03
## ZFYVE28 -1.2852382 2.388811e+00 -3.393423 9.300263e-04 3.673090e-03
## TRPT1 -1.9175771 5.435570e+00 -3.393418 9.300414e-04 3.673090e-03
## ZFP64 -1.6134231 3.132364e+00 -3.393104 9.310171e-04 3.675720e-03
## TADA3 -48.8329949 1.381441e+02 -3.392427 9.331189e-04 3.682792e-03
## DCAF7 11.9530736 5.670916e+01 3.391635 9.355865e-04 3.691303e-03
## MRPS25 -4.9679898 1.919950e+01 -3.390812 9.381565e-04 3.700212e-03
## MPV17L2 -2.0590213 5.120855e+00 -3.388874 9.442361e-04 3.722952e-03
## ZNF669 1.4871368 6.245737e+00 3.388417 9.456746e-04 3.727385e-03
## HLA-DQB1 -51.1710911 8.499740e+01 -3.388251 9.461991e-04 3.728213e-03
## ANXA4 7.7880119 3.157039e+01 3.387940 9.471780e-04 3.730830e-03
## FBXL6 -3.8462274 6.115787e+00 -3.387718 9.478775e-04 3.732346e-03
## WLS 53.9126644 8.562399e+01 3.387174 9.495975e-04 3.737878e-03
## RFFL 36.8486574 1.079016e+02 3.387007 9.501260e-04 3.738718e-03
## CD164 119.1631308 3.924765e+02 3.385924 9.535597e-04 3.750984e-03
## PLXNA1 -0.8433650 1.748965e+00 -3.385653 9.544192e-04 3.753121e-03
## ASTN2 2.9844848 6.078699e+00 3.384999 9.565002e-04 3.760049e-03
## TMEM186 -2.2388228 8.079584e+00 -3.384895 9.568313e-04 3.760049e-03
## ANKRD36B 1.3702979 3.478468e+00 3.384671 9.575451e-04 3.760049e-03
## GCDH -4.1503229 9.478377e+00 -3.384566 9.578790e-04 3.760049e-03
## ARNTL 15.8768477 4.545895e+01 3.384551 9.579264e-04 3.760049e-03
## HMGCR 24.5921799 8.049557e+01 3.384441 9.582785e-04 3.760049e-03
## CCDC186 19.8596095 4.464278e+01 3.384340 9.585995e-04 3.760049e-03
## SLC38A1 25.2381065 6.328160e+01 3.384303 9.587174e-04 3.760049e-03
## EVL -36.4082805 6.519973e+01 -3.383484 9.613359e-04 3.769072e-03
## NTMT1 -3.3847332 7.979702e+00 -3.382957 9.630224e-04 3.774140e-03
## GCC2 12.7076012 3.305878e+01 3.382882 9.632648e-04 3.774140e-03
## ZFYVE26 8.7939144 2.543646e+01 3.381949 9.662566e-04 3.784611e-03
## PRDM10 3.1882146 1.017151e+01 3.380670 9.703787e-04 3.799502e-03
## STXBP5 56.1483227 1.107839e+02 3.380297 9.715822e-04 3.802959e-03
## MROH6 -6.0415337 8.219432e+00 -3.379418 9.744275e-04 3.812196e-03
## UBE2K 8.1645818 5.215666e+01 3.379369 9.745851e-04 3.812196e-03
## WDFY1 17.9371376 4.960455e+01 3.378518 9.773470e-04 3.821740e-03
## CD40 -2.9275083 7.647977e+00 -3.377879 9.794254e-04 3.828604e-03
## SMIM13 1.0669035 5.972887e+00 3.377380 9.810514e-04 3.833697e-03
## TTC21B 2.1698076 7.534113e+00 3.377036 9.821722e-04 3.836812e-03
## TAOK1 32.6450293 9.036542e+01 3.376206 9.848845e-04 3.846141e-03
## LILRB4 -20.1270112 4.152024e+01 -3.375629 9.867760e-04 3.852259e-03
## KIF2A 17.0609334 7.356831e+01 3.375225 9.881008e-04 3.856162e-03
## UQCRFS1 -21.7961724 6.939107e+01 -3.374592 9.901809e-04 3.863008e-03
## SNRPA -10.1884629 2.112387e+01 -3.374406 9.907916e-04 3.864120e-03
## PAN3 25.4160475 7.822233e+01 3.374294 9.911605e-04 3.864288e-03
## TSC1 6.0816191 2.520761e+01 3.373555 9.935976e-04 3.871588e-03
## POLD2 -6.2422503 1.147778e+01 -3.373528 9.936859e-04 3.871588e-03
## YTHDF2 -5.5969469 5.323008e+01 -3.373363 9.942313e-04 3.872441e-03
## UCK1 -5.7983109 2.329643e+01 -3.372522 9.970103e-04 3.881408e-03
## PIGT -12.4325911 4.189608e+01 -3.372469 9.971879e-04 3.881408e-03
## LYST 129.4633963 3.138105e+02 3.372369 9.975180e-04 3.881418e-03
## MTMR6 31.2255559 8.538179e+01 3.372121 9.983386e-04 3.882517e-03
## RREB1 3.2922099 1.595914e+01 3.372086 9.984550e-04 3.882517e-03
## RELCH 10.6878215 4.382168e+01 3.371270 1.001166e-03 3.891781e-03
## BIN3 -18.3197602 4.934805e+01 -3.370290 1.004428e-03 3.903182e-03
## PGGHG -158.4562527 2.902349e+02 -3.369755 1.006210e-03 3.908827e-03
## MAT2B 33.6188429 1.422819e+02 3.369491 1.007093e-03 3.910977e-03
## TRIM56 25.0271938 9.278373e+01 3.368962 1.008864e-03 3.916571e-03
## VPS25 -11.6478250 4.402055e+01 -3.368536 1.010288e-03 3.920815e-03
## FRMD4A 1.5924681 3.503061e+00 3.367768 1.012868e-03 3.929542e-03
## LCLAT1 2.0500682 7.711663e+00 3.367478 1.013842e-03 3.932036e-03
## BPHL -0.5424615 1.550904e+00 -3.367105 1.015098e-03 3.935556e-03
## AURKB 2.5184477 3.815974e+00 3.367007 1.015427e-03 3.935556e-03
## RBL2 62.7247559 1.712824e+02 3.366912 1.015745e-03 3.935556e-03
## IMP3 -6.5876656 1.711971e+01 -3.366632 1.016691e-03 3.936753e-03
## UBE2D4 -1.6208241 5.316323e+00 -3.366624 1.016718e-03 3.936753e-03
## B4GAT1 -0.7257112 1.598192e+00 -3.366451 1.017299e-03 3.937719e-03
## PIAS3 2.3345307 1.113880e+01 3.365863 1.019286e-03 3.944121e-03
## BRWD1 11.8361762 4.859498e+01 3.364347 1.024423e-03 3.962705e-03
## FASTKD1 2.4823995 1.053862e+01 3.364072 1.025354e-03 3.965016e-03
## TRAPPC9 -3.8563084 1.611589e+01 -3.363935 1.025822e-03 3.965530e-03
## KLF3 66.2164328 1.861907e+02 3.363606 1.026940e-03 3.967453e-03
## CCDC80 0.5494623 8.918237e-01 3.363592 1.026988e-03 3.967453e-03
## FUS -24.7287354 1.326888e+02 -3.362872 1.029440e-03 3.975628e-03
## EMC6 -3.0477424 8.438409e+00 -3.362569 1.030477e-03 3.978337e-03
## CALHM2 -5.1790357 1.316614e+01 -3.362304 1.031379e-03 3.980525e-03
## CDC73 11.7564203 3.898623e+01 3.362062 1.032207e-03 3.982427e-03
## KRTCAP2 -18.7036821 3.171061e+01 -3.361384 1.034529e-03 3.990086e-03
## MYO1D 2.6886874 3.711571e+00 3.360814 1.036485e-03 3.996329e-03
## EEA1 4.5558837 1.316197e+01 3.360100 1.038938e-03 4.004485e-03
## ZNF672 -8.3112635 2.761042e+01 -3.359829 1.039872e-03 4.005620e-03
## SMG6 -3.0750869 1.636467e+01 -3.359818 1.039908e-03 4.005620e-03
## TNFSF4 3.1607579 7.992977e+00 3.359495 1.041020e-03 4.008603e-03
## C21orf58 0.6424350 1.457600e+00 3.359328 1.041597e-03 4.009522e-03
## CHUK 19.2391151 5.250260e+01 3.358624 1.044029e-03 4.017044e-03
## EAF1 15.5461170 3.598020e+01 3.358566 1.044228e-03 4.017044e-03
## TRAPPC1 -46.2626171 1.334744e+02 -3.357490 1.047956e-03 4.030076e-03
## NOD2 30.9441747 7.447489e+01 3.357196 1.048974e-03 4.032684e-03
## CBFA2T3 -6.5100050 1.983658e+01 -3.356964 1.049779e-03 4.034470e-03
## PNMA3 -1.4446394 1.748211e+00 -3.355363 1.055357e-03 4.054594e-03
## NDUFAF2 -1.4311504 4.506628e+00 -3.355097 1.056284e-03 4.056844e-03
## SLC1A4 5.6877201 1.174624e+01 3.354982 1.056688e-03 4.057078e-03
## CPNE3 41.3168290 8.814839e+01 3.354049 1.059953e-03 4.067272e-03
## LYSMD3 10.8458750 3.226299e+01 3.354028 1.060029e-03 4.067272e-03
## MPST -7.1418203 1.031564e+01 -3.353707 1.061152e-03 4.070265e-03
## CEBPB -123.5045516 2.601786e+02 -3.353265 1.062706e-03 4.074723e-03
## RBM18 5.7683178 2.740087e+01 3.353181 1.063001e-03 4.074723e-03
## HDDC2 -4.3322331 1.591801e+01 -3.351865 1.067635e-03 4.091164e-03
## DAZAP1 -8.0976685 2.823407e+01 -3.351613 1.068524e-03 4.092136e-03
## NME4 -5.9911355 1.014303e+01 -3.351598 1.068579e-03 4.092136e-03
## VIRMA 8.2401217 4.041834e+01 3.350985 1.070746e-03 4.099111e-03
## IRAK1 -17.6098605 6.347228e+01 -3.350455 1.072624e-03 4.104857e-03
## APAF1 62.9009448 1.655364e+02 3.350366 1.072939e-03 4.104857e-03
## MYZAP 5.7666649 8.267161e+00 3.350103 1.073874e-03 4.107107e-03
## INPP5K -19.9016405 6.800043e+01 -3.349907 1.074569e-03 4.108441e-03
## METAP1 4.2498437 1.861043e+01 3.349712 1.075261e-03 4.109764e-03
## IMPA1 6.6260553 2.113875e+01 3.349242 1.076930e-03 4.113971e-03
## IQCB1 3.4333234 1.512658e+01 3.349207 1.077056e-03 4.113971e-03
## SIMC1 1.2548068 5.006946e+00 3.349042 1.077642e-03 4.114887e-03
## C2CD5 11.8521951 3.936890e+01 3.348755 1.078666e-03 4.117470e-03
## MRM3 -2.0837616 5.350658e+00 -3.348404 1.079918e-03 4.120924e-03
## BIRC5 5.5144884 6.315856e+00 3.347894 1.081739e-03 4.126078e-03
## VNN3 64.9093125 1.254469e+02 3.347831 1.081965e-03 4.126078e-03
## USP32 93.0467892 2.223904e+02 3.347722 1.082353e-03 4.126231e-03
## PHF12 27.7019262 9.665000e+01 3.346900 1.085296e-03 4.135005e-03
## FAM207A -1.5369570 2.279916e+00 -3.346884 1.085352e-03 4.135005e-03
## SLC27A4 -3.7969691 7.812821e+00 -3.346521 1.086655e-03 4.138641e-03
## RTF1 14.4137382 6.566072e+01 3.346359 1.087236e-03 4.139526e-03
## SLC37A1 2.4739114 1.032149e+01 3.345390 1.090721e-03 4.151460e-03
## ANKRD52 3.5851255 2.173494e+01 3.344577 1.093652e-03 4.161283e-03
## PIN4 -3.2081254 1.310390e+01 -3.343645 1.097023e-03 4.172768e-03
## GOLGA4 10.2451725 3.466121e+01 3.343453 1.097716e-03 4.174065e-03
## KDM6A 18.1385314 5.067786e+01 3.342752 1.100261e-03 4.182402e-03
## UTRN 22.7002321 5.905859e+01 3.342048 1.102816e-03 4.190771e-03
## HIPK2 16.0271471 3.288403e+01 3.341839 1.103580e-03 4.192331e-03
## SETBP1 1.3506565 3.115494e+00 3.341565 1.104575e-03 4.193693e-03
## ZSCAN32 4.2704613 1.941421e+01 3.341546 1.104646e-03 4.193693e-03
## OXR1 11.1387904 3.364684e+01 3.340701 1.107729e-03 4.204052e-03
## MORF4L2 7.3571384 4.127090e+01 3.340415 1.108774e-03 4.205005e-03
## SMYD5 -4.1056640 9.047072e+00 -3.340394 1.108850e-03 4.205005e-03
## SMC5 7.9647937 2.756512e+01 3.340341 1.109043e-03 4.205005e-03
## GOLGA7B -5.1994370 6.787066e+00 -3.339539 1.111982e-03 4.214800e-03
## PRKCB 102.4716503 3.776651e+02 3.339191 1.113257e-03 4.217053e-03
## HS1BP3 -13.1527776 3.926229e+01 -3.339183 1.113288e-03 4.217053e-03
## RPP25 -1.5001772 2.577725e+00 -3.338989 1.113999e-03 4.217395e-03
## CSRNP2 3.6573479 1.500102e+01 3.338965 1.114089e-03 4.217395e-03
## NT5C2 68.4220728 2.124893e+02 3.338754 1.114863e-03 4.218018e-03
## KLF6 221.1899022 5.865033e+02 3.338726 1.114965e-03 4.218018e-03
## YAE1 -0.7625594 2.625677e+00 -3.338398 1.116172e-03 4.221239e-03
## N4BP2 3.0019420 7.302057e+00 3.337411 1.119810e-03 4.233646e-03
## RPF1 -4.0053299 2.606056e+01 -3.336789 1.122108e-03 4.239905e-03
## PUS10 1.8769418 6.077285e+00 3.336769 1.122181e-03 4.239905e-03
## NUP153 26.5410674 6.752663e+01 3.336385 1.123602e-03 4.243924e-03
## TMEM256 -7.5239265 1.264563e+01 -3.336098 1.124666e-03 4.246589e-03
## SLC27A2 1.7923461 1.900271e+00 3.335831 1.125656e-03 4.248975e-03
## ARL3 -6.5068124 1.995138e+01 -3.334922 1.129033e-03 4.260367e-03
## CD82 -71.5025517 1.359257e+02 -3.334501 1.130598e-03 4.263617e-03
## ABCA5 3.5273649 1.266321e+01 3.334497 1.130613e-03 4.263617e-03
## GDPD5 -6.7020744 9.429344e+00 -3.334273 1.131448e-03 4.265249e-03
## PHACTR2 9.2203749 1.961838e+01 3.334181 1.131789e-03 4.265249e-03
## TMPRSS13 -0.7655199 1.618883e+00 -3.334024 1.132377e-03 4.265249e-03
## PWWP2A 5.2553997 2.304911e+01 3.333995 1.132485e-03 4.265249e-03
## SNAPIN -6.0755353 2.264554e+01 -3.333547 1.134157e-03 4.270144e-03
## ZNF28 3.1810662 1.160783e+01 3.333454 1.134505e-03 4.270144e-03
## MED27 -3.0202289 9.809472e+00 -3.333092 1.135856e-03 4.272636e-03
## TBC1D1 20.2924754 8.625291e+01 3.333084 1.135887e-03 4.272636e-03
## SCAPER 2.4600127 8.222480e+00 3.332914 1.136522e-03 4.273669e-03
## DDX41 -10.5358787 3.839261e+01 -3.332237 1.139058e-03 4.279941e-03
## UGGT1 16.0404010 6.859581e+01 3.332187 1.139246e-03 4.279941e-03
## SEC13 -13.0111271 5.413360e+01 -3.332180 1.139273e-03 4.279941e-03
## TCEA3 -1.8456645 2.591549e+00 -3.331541 1.141674e-03 4.286303e-03
## DHX29 3.7664958 1.834194e+01 3.331537 1.141689e-03 4.286303e-03
## GOLIM4 1.4477874 4.754365e+00 3.331110 1.143295e-03 4.290974e-03
## PDE1B -3.9668850 1.109671e+01 -3.330000 1.147476e-03 4.305305e-03
## NSDHL -2.7893203 8.814317e+00 -3.329904 1.147841e-03 4.305313e-03
## NUGGC 2.1340626 3.148243e+00 3.329360 1.149897e-03 4.311660e-03
## HAUS2 2.0808507 1.140757e+01 3.328866 1.151766e-03 4.317304e-03
## SMDT1 -11.9927587 2.230625e+01 -3.328120 1.154596e-03 4.326542e-03
## SPOUT1 -9.3484451 2.331154e+01 -3.327835 1.155678e-03 4.329231e-03
## FADS1 3.9668946 1.026303e+01 3.327635 1.156440e-03 4.330716e-03
## CELF2 120.2717212 3.380498e+02 3.326994 1.158881e-03 4.338487e-03
## SNN 79.1061137 2.542842e+02 3.326497 1.160775e-03 4.344207e-03
## R3HDM2 12.2828386 4.754458e+01 3.326270 1.161642e-03 4.346081e-03
## SNX25 1.9792712 5.475031e+00 3.325229 1.165627e-03 4.359613e-03
## ARNT 13.0320108 5.080378e+01 3.323935 1.170593e-03 4.376807e-03
## ATF1 4.9860511 1.875766e+01 3.323410 1.172616e-03 4.382463e-03
## SFN -1.0653174 1.388447e+00 -3.323351 1.172845e-03 4.382463e-03
## EIF3A 28.2905305 1.238513e+02 3.322857 1.174748e-03 4.388192e-03
## COPS9 -8.3056547 1.397782e+01 -3.322702 1.175348e-03 4.389052e-03
## NEIL3 0.8131819 9.016860e-01 3.322519 1.176053e-03 4.390302e-03
## ALKBH3 -2.7392927 8.083538e+00 -3.321658 1.179384e-03 4.400764e-03
## OPA1 7.3589750 3.245593e+01 3.321603 1.179598e-03 4.400764e-03
## PPARD -2.5174268 1.077193e+01 -3.320811 1.182671e-03 4.410841e-03
## MAPK13 47.2544863 1.071179e+02 3.320524 1.183786e-03 4.413613e-03
## BSG -77.2260703 1.354238e+02 -3.319506 1.187750e-03 4.425801e-03
## EFCAB11 0.4636743 1.920036e+00 3.319493 1.187801e-03 4.425801e-03
## ITGAV 2.9725752 9.370621e+00 3.319271 1.188668e-03 4.427638e-03
## ZNF768 -2.6259042 9.028955e+00 -3.319003 1.189713e-03 4.430139e-03
## NPIPB11 1.5746951 3.952164e+00 3.317424 1.195895e-03 4.451764e-03
## PPP2R2A 10.4008641 4.953540e+01 3.316495 1.199546e-03 4.463953e-03
## EML6 0.5948597 1.241100e+00 3.315091 1.205086e-03 4.483161e-03
## GRB14 0.5053138 1.002550e+00 3.314546 1.207243e-03 4.489778e-03
## NOB1 -3.6334792 1.124976e+01 -3.314365 1.207959e-03 4.491031e-03
## PSMC3IP 0.5001381 1.694968e+00 3.313160 1.212739e-03 4.507393e-03
## INSR 4.5829963 1.121639e+01 3.312875 1.213876e-03 4.510205e-03
## SLC5A3 6.2942656 1.543358e+01 3.311966 1.217499e-03 4.522246e-03
## BCL2L13 6.8883791 3.905025e+01 3.310245 1.224383e-03 4.545670e-03
## MRPS23 -5.2297020 2.095550e+01 -3.310138 1.224815e-03 4.545670e-03
## GLYCTK -5.3377526 1.169280e+01 -3.310103 1.224955e-03 4.545670e-03
## PRPF40A 20.6775635 9.444992e+01 3.309825 1.226070e-03 4.548387e-03
## PRRC2C 30.9175555 1.108168e+02 3.309637 1.226827e-03 4.549252e-03
## CHERP -2.8430898 1.143976e+01 -3.309576 1.227070e-03 4.549252e-03
## CMTM3 -25.3857681 9.704492e+01 -3.309413 1.227726e-03 4.550259e-03
## CRACR2A 1.5766216 3.480265e+00 3.308852 1.229987e-03 4.557216e-03
## TRPM6 12.2635472 2.782517e+01 3.307918 1.233755e-03 4.568986e-03
## COPB2 28.2632624 1.192865e+02 3.307874 1.233934e-03 4.568986e-03
## SYMPK -8.1259089 2.506982e+01 -3.307576 1.235136e-03 4.572009e-03
## ALS2CL -2.8634857 4.226670e+00 -3.306964 1.237614e-03 4.579750e-03
## TMED7 13.4496280 4.681076e+01 3.306061 1.241282e-03 4.591891e-03
## YWHAH 39.1526770 1.134181e+02 3.305703 1.242738e-03 4.595593e-03
## ZBTB44 14.8602497 5.867273e+01 3.305622 1.243066e-03 4.595593e-03
## ANKRD55 3.4817669 6.440418e+00 3.305529 1.243445e-03 4.595593e-03
## CERS5 -11.0262171 4.569431e+01 -3.305123 1.245099e-03 4.600273e-03
## NDUFS6 -10.9738562 1.720792e+01 -3.304774 1.246522e-03 4.604097e-03
## ARL5B 7.6389103 1.800796e+01 3.304146 1.249086e-03 4.612131e-03
## POLR2H -6.9728085 1.661062e+01 -3.301747 1.258927e-03 4.647019e-03
## GLS 13.8622583 6.555293e+01 3.301011 1.261962e-03 4.656773e-03
## CARNMT1 1.9982341 6.683046e+00 3.300795 1.262855e-03 4.658619e-03
## DEAF1 -3.6972910 1.034211e+01 -3.298722 1.271442e-03 4.688838e-03
## EFNA3 -0.4489040 1.096881e+00 -3.298564 1.272099e-03 4.689107e-03
## CD79B -36.5762776 4.278334e+01 -3.298514 1.272306e-03 4.689107e-03
## TBC1D22B 3.3429173 1.272462e+01 3.297889 1.274908e-03 4.697238e-03
## PEX6 -10.6641770 2.642859e+01 -3.297746 1.275504e-03 4.697975e-03
## INVS 1.0049981 4.965375e+00 3.296515 1.280647e-03 4.715451e-03
## NDUFA7 -6.8692071 1.563909e+01 -3.294842 1.287667e-03 4.738785e-03
## MARCKSL1 -12.5516612 3.275804e+01 -3.294814 1.287783e-03 4.738785e-03
## EMD -6.0277210 1.839581e+01 -3.294537 1.288947e-03 4.741597e-03
## CDKN1C -5.0086358 3.971863e+00 -3.294073 1.290904e-03 4.747325e-03
## MAN2A1 10.2262739 4.161320e+01 3.293836 1.291901e-03 4.749518e-03
## GANC 2.8006818 1.304719e+01 3.293408 1.293710e-03 4.754695e-03
## TUFT1 4.4897459 9.264024e+00 3.292719 1.296624e-03 4.763928e-03
## SETD6 -2.8682491 7.474746e+00 -3.292391 1.298012e-03 4.767549e-03
## PHETA2 -1.2275960 4.191451e+00 -3.291285 1.302704e-03 4.783304e-03
## ORAI1 -12.8654803 1.950644e+01 -3.291086 1.303552e-03 4.784937e-03
## KEAP1 -7.7017534 2.661450e+01 -3.290899 1.304347e-03 4.786372e-03
## IDE 3.0206224 1.526620e+01 3.290289 1.306946e-03 4.794428e-03
## CTPS1 2.0084800 8.866075e+00 3.290026 1.308071e-03 4.796740e-03
## ALYREF -6.9569113 1.808976e+01 -3.289916 1.308538e-03 4.796740e-03
## RSBN1L 20.7595249 6.680096e+01 3.289857 1.308790e-03 4.796740e-03
## SCAF11 43.4574164 1.420130e+02 3.289704 1.309443e-03 4.797000e-03
## PFKM 1.3926515 6.160440e+00 3.289651 1.309670e-03 4.797000e-03
## MPI -9.0740827 2.455735e+01 -3.288220 1.315796e-03 4.817952e-03
## UBE2E2 -1.5028827 5.685146e+00 -3.287587 1.318520e-03 4.826433e-03
## COX19 -2.9110646 1.716230e+01 -3.287454 1.319090e-03 4.827032e-03
## TSPAN17 -8.1978269 2.286245e+01 -3.286833 1.321765e-03 4.835330e-03
## NBPF19 75.1888695 1.276146e+02 3.286677 1.322434e-03 4.836284e-03
## TNFSF12 -8.8464007 2.620079e+01 -3.286318 1.323983e-03 4.840456e-03
## PPP1R7 -10.1070475 4.626269e+01 -3.286101 1.324921e-03 4.842394e-03
## UBXN4 34.0055559 1.113414e+02 3.285305 1.328363e-03 4.853263e-03
## ODF3B -6.7431651 6.399269e+00 -3.285224 1.328714e-03 4.853263e-03
## CDK13 9.6250750 3.860281e+01 3.284035 1.333874e-03 4.870612e-03
## NKTR 20.4833433 6.373023e+01 3.283447 1.336433e-03 4.877043e-03
## PLEKHA8 1.9905113 8.093103e+00 3.283441 1.336458e-03 4.877043e-03
## RARS1 -4.3896081 2.727670e+01 -3.282561 1.340293e-03 4.888043e-03
## SLC26A8 19.4512889 3.280014e+01 3.282504 1.340545e-03 4.888043e-03
## GIMAP5 -38.8751632 8.577913e+01 -3.282466 1.340708e-03 4.888043e-03
## MOB3A -173.1024104 4.839249e+02 -3.282304 1.341417e-03 4.889121e-03
## ARID4B 37.2325758 1.045844e+02 3.281922 1.343086e-03 4.893073e-03
## YY1 17.8121885 1.061422e+02 3.281867 1.343326e-03 4.893073e-03
## LRRC58 4.4297012 1.824548e+01 3.281503 1.344923e-03 4.897388e-03
## TTC7B 3.1892621 8.643513e+00 3.281273 1.345927e-03 4.899538e-03
## ANXA11 -177.9310400 5.232896e+02 -3.281060 1.346863e-03 4.899963e-03
## GTF3C4 2.1057898 8.958395e+00 3.281058 1.346870e-03 4.899963e-03
## ZNF341 -1.5149286 6.068680e+00 -3.280094 1.351107e-03 4.913868e-03
## DBF4 2.5239047 6.344090e+00 3.279923 1.351860e-03 4.915103e-03
## PAFAH1B3 -3.4237021 4.704533e+00 -3.278768 1.356951e-03 4.930907e-03
## DNAJB14 15.5979641 4.928187e+01 3.278748 1.357039e-03 4.930907e-03
## SLC33A1 3.1776183 1.850734e+01 3.277969 1.360486e-03 4.941917e-03
## MLF2 -45.6931381 1.443005e+02 -3.277493 1.362595e-03 4.947088e-03
## MTMR3 103.4680955 2.966046e+02 3.277459 1.362743e-03 4.947088e-03
## AFF2 1.9770246 2.363112e+00 3.274563 1.375641e-03 4.992380e-03
## DAAM1 1.5199866 5.636923e+00 3.273976 1.378269e-03 5.000389e-03
## SSBP2 4.5034233 1.985354e+01 3.273254 1.381511e-03 5.010617e-03
## SCARB2 17.6843363 4.767871e+01 3.272262 1.385970e-03 5.025254e-03
## TMEM104 -2.9539517 1.124395e+01 -3.271664 1.388670e-03 5.033505e-03
## PMPCA -3.9182333 1.365694e+01 -3.270774 1.392689e-03 5.046528e-03
## MRFAP1L1 -10.8172180 6.573678e+01 -3.269325 1.399262e-03 5.068799e-03
## PLB1 -35.7717598 5.871048e+01 -3.269088 1.400341e-03 5.070763e-03
## TNRC6B 15.5288005 5.202516e+01 3.269018 1.400659e-03 5.070763e-03
## MUS81 -5.2669699 2.122691e+01 -3.268582 1.402642e-03 5.076390e-03
## COPB1 26.6537790 1.048339e+02 3.268276 1.404039e-03 5.079898e-03
## UQCR10 -16.3756743 4.208845e+01 -3.267925 1.405638e-03 5.084132e-03
## ZNF408 -2.9019346 7.434030e+00 -3.267495 1.407601e-03 5.089680e-03
## ABCB7 -2.1290720 1.423068e+01 -3.266790 1.410828e-03 5.098736e-03
## ZFX 12.8277850 3.738306e+01 3.266760 1.410965e-03 5.098736e-03
## HSP90B1 225.2987715 4.310104e+02 3.265865 1.415070e-03 5.110621e-03
## RESF1 353.1142768 7.096737e+02 3.265855 1.415116e-03 5.110621e-03
## ANKS6 -1.1418169 2.548366e+00 -3.264500 1.421354e-03 5.131584e-03
## SLC25A30 2.5357265 8.382502e+00 3.264284 1.422349e-03 5.133616e-03
## NECAB2 -6.1984091 9.255283e+00 -3.264060 1.423385e-03 5.135792e-03
## LNX2 1.0882394 5.372403e+00 3.263463 1.426144e-03 5.144182e-03
## GSS -5.9990840 1.797060e+01 -3.262972 1.428416e-03 5.150809e-03
## CAVIN2 38.2422009 9.727598e+01 3.262732 1.429532e-03 5.153266e-03
## CHTOP -10.8479039 6.536219e+01 -3.260743 1.438779e-03 5.185027e-03
## THOC1 -2.7951959 1.153976e+01 -3.260486 1.439980e-03 5.187779e-03
## ARHGAP5 3.8734969 1.044044e+01 3.259951 1.442481e-03 5.195208e-03
## MTMR11 -5.1945176 1.378616e+01 -3.259649 1.443891e-03 5.198353e-03
## C5orf22 2.7656107 1.313112e+01 3.259560 1.444310e-03 5.198353e-03
## MPDU1 -14.4559958 4.153855e+01 -3.259257 1.445728e-03 5.198353e-03
## GPER1 -2.1695375 2.359528e+00 -3.259216 1.445918e-03 5.198353e-03
## TTI1 1.7472163 1.076233e+01 3.259121 1.446364e-03 5.198353e-03
## CHST14 -1.0533518 4.590768e+00 -3.259092 1.446499e-03 5.198353e-03
## MED17 5.1215267 2.408551e+01 3.259027 1.446805e-03 5.198353e-03
## TTN 11.0275960 2.737567e+01 3.259015 1.446860e-03 5.198353e-03
## LAPTM4B 3.2450491 6.250814e+00 3.258482 1.449362e-03 5.205763e-03
## SNRNP48 3.9351998 1.562827e+01 3.258290 1.450267e-03 5.207436e-03
## UPF2 14.2274333 5.856242e+01 3.257664 1.453208e-03 5.216420e-03
## PRKD3 6.2522094 2.675089e+01 3.257490 1.454030e-03 5.217790e-03
## APC 22.1338981 5.278771e+01 3.256185 1.460188e-03 5.238302e-03
## RPUSD3 -2.7617310 9.020370e+00 -3.255068 1.465483e-03 5.255709e-03
## FAM91A1 24.5244176 7.974683e+01 3.254572 1.467835e-03 5.262552e-03
## PROCA1 -1.7501562 3.907384e+00 -3.253883 1.471117e-03 5.272725e-03
## BAZ2B 34.2180195 9.035474e+01 3.253475 1.473059e-03 5.278091e-03
## NME2 -41.5936288 8.205699e+01 -3.253247 1.474148e-03 5.279590e-03
## MXD1 482.1604526 1.244850e+03 3.253188 1.474427e-03 5.279590e-03
## FLYWCH1 -3.4564386 6.890713e+00 -3.253057 1.475052e-03 5.279590e-03
## PRDM2 16.3837481 5.794222e+01 3.253014 1.475258e-03 5.279590e-03
## ZNF232 -1.0027342 3.774050e+00 -3.252889 1.475857e-03 5.280084e-03
## NEMP1 2.3700273 7.893184e+00 3.252799 1.476287e-03 5.280084e-03
## HACD2 4.1887150 1.611157e+01 3.252474 1.477842e-03 5.283386e-03
## ATG4D -6.8008143 1.474693e+01 -3.252419 1.478101e-03 5.283386e-03
## ZNF699 3.5625770 8.758494e+00 3.251965 1.480277e-03 5.289569e-03
## FLCN 16.4615464 4.531634e+01 3.251280 1.483562e-03 5.299711e-03
## C6orf136 -1.5407226 6.670025e+00 -3.250619 1.486738e-03 5.309461e-03
## CDC20 5.2254404 5.501718e+00 3.250318 1.488185e-03 5.313028e-03
## TAF1B 1.5883314 5.208159e+00 3.249820 1.490586e-03 5.319997e-03
## ADPGK 15.1173254 1.031675e+02 3.249011 1.494489e-03 5.332322e-03
## NDUFB8 -17.0633676 4.772423e+01 -3.248766 1.495675e-03 5.334950e-03
## HK3 -205.2071980 3.791184e+02 -3.248160 1.498608e-03 5.342774e-03
## ANKRD26 0.9409421 2.666260e+00 3.248127 1.498770e-03 5.342774e-03
## ENO3 -1.5982391 3.130735e+00 -3.247446 1.502072e-03 5.352938e-03
## BNIPL 1.2271881 2.612308e+00 3.247350 1.502539e-03 5.352993e-03
## DALRD3 -4.4686570 1.644585e+01 -3.247249 1.503029e-03 5.353131e-03
## EEF2KMT -2.2526150 5.516544e+00 -3.246632 1.506028e-03 5.360913e-03
## TBP 1.2325355 9.441433e+00 3.246614 1.506118e-03 5.360913e-03
## DDX52 2.7358399 1.568359e+01 3.246396 1.507176e-03 5.363069e-03
## SLC10A7 1.5300349 5.177957e+00 3.245750 1.510326e-03 5.372666e-03
## MRPL23 -10.4053228 1.853853e+01 -3.245285 1.512599e-03 5.379138e-03
## SNRNP35 -8.4917246 2.813585e+01 -3.244805 1.514949e-03 5.383889e-03
## TOX4 19.2492992 9.386951e+01 3.244786 1.515040e-03 5.383889e-03
## AP1S3 0.6564251 2.740719e+00 3.244699 1.515465e-03 5.383889e-03
## FAM122B 3.9670898 2.266170e+01 3.244641 1.515751e-03 5.383889e-03
## RCOR1 29.1707015 9.074520e+01 3.244540 1.516243e-03 5.384025e-03
## IGKC 1616.8945186 1.619772e+03 3.243960 1.519090e-03 5.389799e-03
## C1GALT1 21.7893183 5.852892e+01 3.243947 1.519151e-03 5.389799e-03
## TCF12 5.6297618 2.037587e+01 3.243931 1.519232e-03 5.389799e-03
## PGRMC1 30.3727918 7.516286e+01 3.242600 1.525775e-03 5.411391e-03
## REL 35.1046802 1.015583e+02 3.241877 1.529342e-03 5.421296e-03
## LSM10 -16.3599799 5.713971e+01 -3.241849 1.529482e-03 5.421296e-03
## RGS19 -41.9535572 1.154492e+02 -3.240668 1.535322e-03 5.440369e-03
## ATP2A3 -76.7477806 2.092872e+02 -3.240315 1.537076e-03 5.444958e-03
## ERAP1 19.1550540 6.179211e+01 3.240164 1.537824e-03 5.445982e-03
## MAP6D1 -0.4747725 1.334564e+00 -3.239928 1.538997e-03 5.448511e-03
## ANKZF1 -10.8411826 4.886287e+01 -3.238997 1.543625e-03 5.463264e-03
## APOBEC3A_B 74.4466287 1.202150e+02 3.238744 1.544887e-03 5.466098e-03
## SNAP47 -1.9486765 7.187783e+00 -3.238540 1.545907e-03 5.468074e-03
## RB1CC1 36.3288819 9.750158e+01 3.238413 1.546539e-03 5.468681e-03
## EDC3 -3.8487658 2.121562e+01 -3.237586 1.550668e-03 5.481647e-03
## JADE3 0.4393029 9.399663e-01 3.236746 1.554877e-03 5.494887e-03
## MFN2 66.3771682 1.629244e+02 3.236612 1.555549e-03 5.495429e-03
## ZZEF1 18.1930233 7.937154e+01 3.236531 1.555957e-03 5.495429e-03
## CTBP1 -10.4598719 4.617189e+01 -3.235118 1.563062e-03 5.518879e-03
## NBPF12 5.6702989 1.675312e+01 3.234905 1.564134e-03 5.520703e-03
## STAT1 232.1484541 4.288975e+02 3.234831 1.564509e-03 5.520703e-03
## ITGA9 2.9947241 3.148738e+00 3.234660 1.565373e-03 5.522108e-03
## TSPAN15 -0.4363806 6.990599e-01 -3.234507 1.566142e-03 5.523176e-03
## ATR 4.4707592 1.461578e+01 3.234197 1.567708e-03 5.527055e-03
## INTU 0.4788872 1.435362e+00 3.233943 1.568994e-03 5.529946e-03
## AMIGO2 3.4296281 1.002078e+01 3.233489 1.571293e-03 5.535062e-03
## LCMT1 -3.6964203 1.328296e+01 -3.233472 1.571379e-03 5.535062e-03
## SDHAF4 -1.7216713 5.064403e+00 -3.233292 1.572288e-03 5.536619e-03
## PER2 2.0503025 7.395293e+00 3.233193 1.572793e-03 5.536669e-03
## TMEM219 -30.5007126 7.548929e+01 -3.233105 1.573236e-03 5.536669e-03
## RHOG -241.1251166 5.131822e+02 -3.232849 1.574537e-03 5.539607e-03
## TACC1 30.0298288 1.064991e+02 3.232616 1.575718e-03 5.542115e-03
## AK9 1.4180705 4.325557e+00 3.232173 1.577969e-03 5.547166e-03
## BOD1L1 59.2374480 1.387488e+02 3.232149 1.578089e-03 5.547166e-03
## EWSR1 -14.2558138 1.511758e+02 -3.230710 1.585421e-03 5.570485e-03
## CISD1 -1.9433583 6.009505e+00 -3.230663 1.585663e-03 5.570485e-03
## ACTL6A 3.2068358 1.502742e+01 3.229073 1.593803e-03 5.597425e-03
## PTGIR -4.1533755 7.081861e+00 -3.228776 1.595326e-03 5.601114e-03
## ZMAT5 -7.9749376 1.938715e+01 -3.228511 1.596692e-03 5.603873e-03
## GAPVD1 9.9466119 4.474549e+01 3.228440 1.597057e-03 5.603873e-03
## PPP1R21 12.8257937 5.109023e+01 3.227443 1.602189e-03 5.620218e-03
## ZDHHC5 13.4328819 7.892320e+01 3.227285 1.603002e-03 5.621408e-03
## ZNF518A 9.8726654 3.079097e+01 3.226938 1.604794e-03 5.626029e-03
## MRFAP1 -34.6929625 1.634503e+02 -3.226626 1.606409e-03 5.630026e-03
## PLA2G12A 5.1403452 1.614042e+01 3.226217 1.608523e-03 5.635771e-03
## UNC5A -0.6579601 8.168418e-01 -3.226095 1.609155e-03 5.636321e-03
## NDUFB10 -19.9383668 3.962241e+01 -3.225970 1.609799e-03 5.636912e-03
## CAPN2 39.2508073 1.490575e+02 3.225443 1.612535e-03 5.644824e-03
## GON7 -1.2372434 7.016080e+00 -3.224431 1.617791e-03 5.661553e-03
## DCUN1D1 16.2064338 5.525981e+01 3.223545 1.622409e-03 5.676037e-03
## CPEB4 50.8061985 1.023659e+02 3.223397 1.623181e-03 5.677063e-03
## ATXN10 -6.4001386 3.321966e+01 -3.222497 1.627886e-03 5.691842e-03
## ISG20L2 6.0324676 4.408755e+01 3.221408 1.633595e-03 5.708537e-03
## NUP58 23.0701996 6.098182e+01 3.221403 1.633623e-03 5.708537e-03
## SLC39A1 -16.0275035 6.807186e+01 -3.220809 1.636742e-03 5.717750e-03
## PIAS1 40.8202623 1.315906e+02 3.220210 1.639899e-03 5.727091e-03
## MPP5 1.2911352 4.875689e+00 3.219951 1.641264e-03 5.730172e-03
## WDR26 89.7578311 2.800902e+02 3.219764 1.642246e-03 5.730819e-03
## FOXO4 16.6640646 6.612361e+01 3.219732 1.642416e-03 5.730819e-03
## WRN 1.2506045 5.436949e+00 3.218854 1.647056e-03 5.745318e-03
## FAM76B 10.3028840 3.031518e+01 3.218733 1.647699e-03 5.745871e-03
## CCT4 -13.7540813 6.435595e+01 -3.217897 1.652126e-03 5.759618e-03
## CEP85L 9.1047824 2.792517e+01 3.216743 1.658262e-03 5.779308e-03
## LRRC7 -0.4451606 1.081276e+00 -3.216132 1.661520e-03 5.788961e-03
## STK35 8.6744215 3.225220e+01 3.215735 1.663639e-03 5.794642e-03
## TMEM223 -1.6811414 4.657895e+00 -3.215353 1.665682e-03 5.800055e-03
## PTX3 8.3237432 8.696532e+00 3.215222 1.666379e-03 5.800780e-03
## PCYT2 -5.5294085 1.050559e+01 -3.214920 1.667998e-03 5.804712e-03
## PSMA7 -40.1487729 1.303205e+02 -3.214746 1.668928e-03 5.806244e-03
## CSGALNACT2 166.4989769 2.362771e+02 3.214542 1.670021e-03 5.808344e-03
## SNRPD2 -40.4143766 8.833110e+01 -3.214006 1.672896e-03 5.816638e-03
## FGFRL1 -1.4341556 3.056748e+00 -3.212516 1.680913e-03 5.842800e-03
## HEMK1 -5.3160032 1.651636e+01 -3.212349 1.681813e-03 5.844213e-03
## CNOT9 3.8456830 2.827073e+01 3.211942 1.684014e-03 5.850149e-03
## PDK1 7.7801076 2.856314e+01 3.211485 1.686485e-03 5.857015e-03
## KBTBD6 10.8487372 1.384360e+01 3.211064 1.688760e-03 5.861744e-03
## NAPG 5.0629998 2.510467e+01 3.211050 1.688835e-03 5.861744e-03
## ZNF587 5.7854214 1.715486e+01 3.209530 1.697088e-03 5.888665e-03
## ATAD1 4.4311369 2.214331e+01 3.209327 1.698195e-03 5.890784e-03
## POU2F2 -17.8487091 6.306457e+01 -3.209036 1.699777e-03 5.894547e-03
## NRAS 13.8470324 5.229278e+01 3.208890 1.700577e-03 5.894751e-03
## G2E3 2.8094753 1.160361e+01 3.208747 1.701355e-03 5.894751e-03
## SCCPDH -4.2502773 1.456021e+01 -3.208671 1.701770e-03 5.894751e-03
## LILRA5 -415.6668308 6.052065e+02 -3.208661 1.701824e-03 5.894751e-03
## ZEB1 8.6556885 2.465885e+01 3.208279 1.703907e-03 5.900245e-03
## GLE1 8.1257081 4.926146e+01 3.207375 1.708853e-03 5.914812e-03
## SRP72 11.4621457 5.232833e+01 3.207312 1.709194e-03 5.914812e-03
## GALNT6 -5.4770795 1.291209e+01 -3.207237 1.709610e-03 5.914812e-03
## WDR54 -3.1099729 4.946373e+00 -3.205120 1.721243e-03 5.952645e-03
## CBLL1 6.0407231 2.807184e+01 3.205064 1.721549e-03 5.952645e-03
## CERK -13.7593724 8.355223e+01 -3.203384 1.730838e-03 5.983018e-03
## VPS18 -13.9507543 3.883587e+01 -3.202758 1.734312e-03 5.992807e-03
## HAGH -9.9709135 1.970788e+01 -3.202691 1.734680e-03 5.992807e-03
## ATP11A 26.4550492 7.149303e+01 3.202246 1.737155e-03 5.999610e-03
## GNPTAB 11.8501297 4.090593e+01 3.201571 1.740911e-03 6.010830e-03
## TAB2 56.4116373 1.842722e+02 3.201015 1.744010e-03 6.019777e-03
## GFUS -12.3746643 2.559143e+01 -3.200101 1.749121e-03 6.035665e-03
## ERLEC1 10.4900579 3.817985e+01 3.199801 1.750801e-03 6.039704e-03
## NF1 13.6427561 3.389437e+01 3.199559 1.752157e-03 6.042622e-03
## ST7 1.5723022 6.817270e+00 3.199179 1.754286e-03 6.048207e-03
## GDPGP1 -0.5767308 2.245276e+00 -3.199002 1.755282e-03 6.049883e-03
## DICER1 76.0623976 1.614229e+02 3.197543 1.763492e-03 6.076412e-03
## UBE4B 9.3711740 3.908683e+01 3.196877 1.767246e-03 6.087580e-03
## FAHD2B -1.9570692 3.477513e+00 -3.194916 1.778359e-03 6.124083e-03
## PTPN18 -29.1873172 1.747350e+02 -3.194685 1.779676e-03 6.126838e-03
## DMXL1 7.4965182 2.465946e+01 3.194215 1.782351e-03 6.134266e-03
## POU2F1 4.6507902 1.961298e+01 3.193771 1.784881e-03 6.141192e-03
## SINHCAF 5.5484549 2.571026e+01 3.193558 1.786095e-03 6.143587e-03
## RNF220 -8.2889561 4.907199e+01 -3.193209 1.788083e-03 6.148642e-03
## KCNN3 2.0097121 1.832696e+00 3.193090 1.788767e-03 6.149211e-03
## CHD7 26.2862773 4.486913e+01 3.192304 1.793263e-03 6.162880e-03
## SAP30 24.8680589 3.269407e+01 3.191825 1.796006e-03 6.170520e-03
## PM20D2 3.0573630 1.020218e+01 3.191387 1.798523e-03 6.177377e-03
## RFXANK -19.3267496 4.244945e+01 -3.191188 1.799662e-03 6.179498e-03
## RPS6KC1 4.3195694 1.663964e+01 3.190673 1.802624e-03 6.186585e-03
## LGALS9 -97.5609989 1.996380e+02 -3.190648 1.802769e-03 6.186585e-03
## CSF1 7.0175217 1.604447e+01 3.190479 1.803740e-03 6.188129e-03
## RTRAF -18.1504115 7.284550e+01 -3.190236 1.805144e-03 6.191154e-03
## FAM216A -0.6925671 2.930699e+00 -3.190051 1.806207e-03 6.193007e-03
## UPF3B 1.1179098 8.109281e+00 3.189792 1.807700e-03 6.196337e-03
## REEP4 -3.6608630 1.188265e+01 -3.189174 1.811271e-03 6.206782e-03
## DTX1 -1.3337387 2.220793e+00 -3.188962 1.812499e-03 6.207469e-03
## TATDN2 7.4245671 6.748421e+01 3.188959 1.812518e-03 6.207469e-03
## ASB3 1.7042169 8.578420e+00 3.188776 1.813574e-03 6.209290e-03
## MCC 1.4290123 3.368672e+00 3.188313 1.816259e-03 6.216689e-03
## KHK -1.7674164 2.326318e+00 -3.187584 1.820487e-03 6.229364e-03
## OGFOD2 -3.8151750 9.250384e+00 -3.187302 1.822123e-03 6.233164e-03
## ZNF212 -1.7904646 9.367830e+00 -3.187169 1.822899e-03 6.234022e-03
## MFNG -27.0627725 8.476068e+01 -3.186785 1.825134e-03 6.239863e-03
## SLC25A32 2.1504094 1.008751e+01 3.185468 1.832816e-03 6.264321e-03
## ACVR1 2.9612001 1.197090e+01 3.184976 1.835693e-03 6.272348e-03
## SP1 71.2828729 2.413558e+02 3.184570 1.838070e-03 6.277747e-03
## ST6GAL1 23.3544924 7.503714e+01 3.184525 1.838332e-03 6.277747e-03
## C9orf64 1.8667482 8.613999e+00 3.184108 1.840777e-03 6.284288e-03
## TBC1D23 9.5749585 3.863476e+01 3.183718 1.843069e-03 6.290302e-03
## SENP8 0.3004347 1.238043e+00 3.183562 1.843986e-03 6.291620e-03
## RINL -6.6033321 3.743900e+01 -3.183341 1.845285e-03 6.293177e-03
## THRAP3 32.5973630 1.367113e+02 3.183304 1.845503e-03 6.293177e-03
## CTCF 6.7480726 3.778656e+01 3.182443 1.850575e-03 6.308659e-03
## KAT6B 3.4745277 9.824632e+00 3.181833 1.854178e-03 6.319124e-03
## AFF1 32.9329012 7.991046e+01 3.181479 1.856268e-03 6.324430e-03
## ACBD5 6.5280265 2.471806e+01 3.180245 1.863580e-03 6.344104e-03
## KDM4A 5.4551946 3.218762e+01 3.180240 1.863607e-03 6.344104e-03
## NCBP2AS2 -2.8927562 9.126740e+00 -3.180234 1.863647e-03 6.344104e-03
## AHCTF1 49.5139338 1.191115e+02 3.179297 1.869218e-03 6.359984e-03
## PAXBP1 4.7171554 2.355145e+01 3.179268 1.869385e-03 6.359984e-03
## DDX51 -3.2712935 9.271125e+00 -3.179127 1.870224e-03 6.361015e-03
## ZNF836 -1.5154889 7.651357e+00 -3.178140 1.876115e-03 6.379221e-03
## ATXN1L 18.9824387 4.331353e+01 3.177740 1.878502e-03 6.385507e-03
## SMCR8 22.6198523 7.548509e+01 3.177006 1.882900e-03 6.398554e-03
## TESPA1 -10.7764592 2.351743e+01 -3.176919 1.883419e-03 6.398554e-03
## C5orf24 4.1672385 1.594183e+01 3.176781 1.884247e-03 6.399534e-03
## TTC37 8.1189732 2.561168e+01 3.175957 1.889198e-03 6.414511e-03
## MRE11 4.0533649 1.950657e+01 3.175038 1.894727e-03 6.431445e-03
## PPP2R5C 30.3041056 1.555864e+02 3.174845 1.895889e-03 6.433230e-03
## LCK -46.1383576 7.904417e+01 -3.174771 1.896338e-03 6.433230e-03
## ZFP69B 0.4402285 1.021524e+00 3.173035 1.906837e-03 6.466997e-03
## RBM4 -17.3013107 9.074107e+01 -3.172670 1.909054e-03 6.472666e-03
## CLTCL1 6.0278806 1.053767e+01 3.172124 1.912368e-03 6.480736e-03
## CEACAM6 41.6719104 3.525454e+01 3.172098 1.912527e-03 6.480736e-03
## NT5C3B -3.0488301 5.489423e+00 -3.171766 1.914549e-03 6.485732e-03
## CEP83 0.7302811 2.951110e+00 3.170337 1.923263e-03 6.513179e-03
## ZNF875 -2.6615821 9.775785e+00 -3.170258 1.923749e-03 6.513179e-03
## ACAP2 82.8375398 2.308484e+02 3.169540 1.928139e-03 6.526177e-03
## IFT80 2.5055135 8.677430e+00 3.168624 1.933761e-03 6.543339e-03
## MKS1 -1.0016283 2.925463e+00 -3.168497 1.934542e-03 6.544116e-03
## RMND5B -4.4256205 1.969871e+01 -3.168362 1.935372e-03 6.545056e-03
## VSIR -506.8351107 1.318588e+03 -3.168100 1.936981e-03 6.547770e-03
## TMEM192 1.5054535 1.293951e+01 3.168029 1.937417e-03 6.547770e-03
## ABCA13 13.9919043 1.089245e+01 3.167962 1.937831e-03 6.547770e-03
## TSC22D1 17.8133762 5.140493e+01 3.167759 1.939083e-03 6.550134e-03
## EID1 -10.3854234 6.863975e+01 -3.167602 1.940052e-03 6.551543e-03
## MPHOSPH8 10.0068155 6.376356e+01 3.166653 1.945903e-03 6.568212e-03
## ATG4A 2.4900611 1.336205e+01 3.166622 1.946096e-03 6.568212e-03
## OGA 79.5233933 2.992402e+02 3.166077 1.949469e-03 6.577293e-03
## ETHE1 -9.9660906 2.039038e+01 -3.165987 1.950027e-03 6.577293e-03
## SLC35A1 11.7363207 4.787335e+01 3.165918 1.950450e-03 6.577293e-03
## HLA-DOA -6.4158519 1.321052e+01 -3.165710 1.951743e-03 6.579080e-03
## TPP2 9.7488091 3.408538e+01 3.165654 1.952090e-03 6.579080e-03
## TACO1 -2.4467724 8.590247e+00 -3.165279 1.954412e-03 6.585037e-03
## ANAPC11 -7.4610496 1.364216e+01 -3.164226 1.960958e-03 6.605216e-03
## PRR12 -1.4103344 4.883483e+00 -3.163728 1.964057e-03 6.612372e-03
## TMEM106C 6.7623498 1.945106e+01 3.163678 1.964373e-03 6.612372e-03
## AKR1A1 -14.9102025 4.717125e+01 -3.163616 1.964755e-03 6.612372e-03
## CLUH -2.8016167 5.924444e+00 -3.163254 1.967014e-03 6.618095e-03
## UNC13D -46.0672474 1.432537e+02 -3.163085 1.968072e-03 6.619627e-03
## TRAPPC11 8.1678548 3.241809e+01 3.162971 1.968782e-03 6.619627e-03
## MDM2 66.7871140 1.458468e+02 3.162834 1.969635e-03 6.619627e-03
## NIP7 1.7063325 1.508204e+01 3.162824 1.969702e-03 6.619627e-03
## PSTPIP2 80.9306314 1.418600e+02 3.162548 1.971426e-03 6.623545e-03
## ZNRF1 -1.8468644 4.057024e+00 -3.161927 1.975313e-03 6.634725e-03
## SERPINF1 -1.4835964 3.423952e+00 -3.161554 1.977652e-03 6.640702e-03
## ANXA6 -80.4998317 2.694456e+02 -3.161368 1.978818e-03 6.641729e-03
## ODR4 2.6343544 1.227280e+01 3.161327 1.979078e-03 6.641729e-03
## OBSCN -2.8939380 4.263741e+00 -3.160122 1.986651e-03 6.665258e-03
## SAMD8 20.3098805 5.824889e+01 3.158698 1.995642e-03 6.692552e-03
## BMP1 -0.7958264 1.842075e+00 -3.158655 1.995915e-03 6.692552e-03
## NDUFA8 -4.6303276 1.787617e+01 -3.158140 1.999177e-03 6.701594e-03
## DGUOK -12.4587214 4.071040e+01 -3.157530 2.003048e-03 6.712672e-03
## CENPBD1 -2.0691170 9.399546e+00 -3.156472 2.009771e-03 6.732811e-03
## YBEY -1.9573900 5.374931e+00 -3.156311 2.010799e-03 6.732811e-03
## SEC23B 10.0907030 5.015761e+01 3.156255 2.011156e-03 6.732811e-03
## ZBTB2 4.9556352 2.431637e+01 3.156228 2.011328e-03 6.732811e-03
## AP5M1 9.4714525 4.154590e+01 3.154935 2.019584e-03 6.758539e-03
## SIPA1L2 45.3558136 7.630592e+01 3.154423 2.022855e-03 6.767577e-03
## H2BC4 56.8129242 1.102399e+02 3.154141 2.024667e-03 6.771728e-03
## BICRA -1.5516085 5.170974e+00 -3.153878 2.026351e-03 6.775451e-03
## MED18 -6.7613932 2.443455e+01 -3.153723 2.027346e-03 6.776868e-03
## CCNF 1.4449464 2.866262e+00 3.153310 2.030000e-03 6.783827e-03
## BRD7 17.2703313 9.699937e+01 3.152686 2.034015e-03 6.795329e-03
## WDR44 5.3780395 1.693130e+01 3.152228 2.036966e-03 6.803273e-03
## NPIPA7 -4.3534160 1.139457e+01 -3.151673 2.040546e-03 6.813309e-03
## RAB19 1.8505428 2.951988e+00 3.150362 2.049030e-03 6.839713e-03
## KDM8 -0.7474786 2.048480e+00 -3.149630 2.053780e-03 6.853640e-03
## AKAP13 71.8575732 2.290312e+02 3.148832 2.058971e-03 6.869027e-03
## VTI1A 5.0977723 2.549703e+01 3.148614 2.060390e-03 6.871539e-03
## LSM11 0.8480714 3.490817e+00 3.148539 2.060882e-03 6.871539e-03
## NRDE2 3.0368610 1.985082e+01 3.148401 2.061779e-03 6.872596e-03
## GLYR1 15.8662554 9.631619e+01 3.147387 2.068404e-03 6.892742e-03
## PLEKHJ1 -13.7407246 2.948693e+01 -3.147279 2.069106e-03 6.893145e-03
## BTLA 3.3645731 9.656279e+00 3.147060 2.070541e-03 6.895988e-03
## CCDC9B 1.4876555 3.939992e+00 3.146317 2.075408e-03 6.910258e-03
## PPEF1 0.5079833 8.070089e-01 3.146223 2.076029e-03 6.910387e-03
## ZBTB34 38.2343431 1.014707e+02 3.146130 2.076637e-03 6.910471e-03
## TXNDC11 16.4727100 4.448300e+01 3.145127 2.083228e-03 6.930458e-03
## CRISPLD2 84.1047021 1.922765e+02 3.145032 2.083855e-03 6.930600e-03
## FNBP1L 0.9823582 2.346202e+00 3.144664 2.086279e-03 6.934689e-03
## ZNF66 5.0140381 1.034215e+01 3.144644 2.086412e-03 6.934689e-03
## PEAK3 -6.7620231 1.547851e+01 -3.144568 2.086916e-03 6.934689e-03
## AEBP1 -1.2682711 1.780795e+00 -3.144491 2.087423e-03 6.934689e-03
## C6orf47 -10.6501545 5.058061e+01 -3.144322 2.088535e-03 6.936441e-03
## HYPK -7.5795189 2.001202e+01 -3.143513 2.093879e-03 6.951568e-03
## RMI2 1.5593410 2.761673e+00 3.143455 2.094262e-03 6.951568e-03
## BAG5 5.4632679 3.207113e+01 3.142871 2.098133e-03 6.962466e-03
## ERBIN 60.5329595 1.783405e+02 3.141690 2.105970e-03 6.986520e-03
## ZNF436 1.9545043 7.393578e+00 3.141460 2.107499e-03 6.989635e-03
## ZDHHC2 11.1979136 3.960195e+01 3.141312 2.108484e-03 6.990949e-03
## ZBTB21 2.3030445 8.360560e+00 3.140748 2.112247e-03 7.001469e-03
## GATAD2B 13.1470427 5.197707e+01 3.140520 2.113764e-03 7.004537e-03
## DHTKD1 9.5880699 3.051807e+01 3.139947 2.117595e-03 7.015271e-03
## B4GALT4 11.5922020 2.418808e+01 3.139556 2.120206e-03 7.020965e-03
## NAA60 -9.8915286 3.321897e+01 -3.139513 2.120497e-03 7.020965e-03
## ZNF761 2.0838284 7.829581e+00 3.139298 2.121935e-03 7.023764e-03
## MEN1 -4.0219324 1.135054e+01 -3.138885 2.124702e-03 7.030962e-03
## RSPRY1 5.1776249 2.862161e+01 3.138530 2.127083e-03 7.036877e-03
## CCP110 6.7022147 1.997068e+01 3.137989 2.130721e-03 7.046947e-03
## LILRA3 -54.2385669 8.682558e+01 -3.136088 2.143536e-03 7.087353e-03
## ICAM2 -23.7043268 5.028034e+01 -3.135920 2.144673e-03 7.089136e-03
## PARP2 1.5474263 5.247251e+00 3.135679 2.146300e-03 7.092536e-03
## MCCC2 2.7113729 1.023146e+01 3.135262 2.149124e-03 7.099891e-03
## EIF3B -15.7460607 5.184686e+01 -3.134912 2.151499e-03 7.105758e-03
## PPM1G -9.2761452 5.501452e+01 -3.133849 2.158720e-03 7.127622e-03
## WDR7 2.5119901 1.093938e+01 3.133229 2.162938e-03 7.139563e-03
## LUZP6 57.8901330 1.960422e+02 3.133008 2.164446e-03 7.140565e-03
## MTPN 57.8901330 1.960422e+02 3.133008 2.164446e-03 7.140565e-03
## CYB5R1 -18.2416420 5.285440e+01 -3.132621 2.167093e-03 7.147308e-03
## POLR2J -18.1805805 5.636251e+01 -3.132443 2.168308e-03 7.149326e-03
## CEP192 7.8651278 2.353103e+01 3.132048 2.171008e-03 7.156241e-03
## TRIP6 -1.7424244 4.341131e+00 -3.131592 2.174127e-03 7.164422e-03
## TRAPPC2L -8.1262944 2.156604e+01 -3.131492 2.174812e-03 7.164422e-03
## TMC8 -45.4713916 1.104688e+02 -3.131421 2.175302e-03 7.164422e-03
## FYTTD1 7.8137522 4.199973e+01 3.131272 2.176323e-03 7.165794e-03
## SPCS2 12.1940518 6.406968e+01 3.130184 2.183790e-03 7.188383e-03
## TAF15 -11.0304589 7.300580e+01 -3.129764 2.186684e-03 7.195915e-03
## SLTM 19.1062158 9.324867e+01 3.129546 2.188182e-03 7.198844e-03
## MOB3B 1.0286003 2.925225e+00 3.129318 2.189759e-03 7.202035e-03
## UNC119 -33.1062655 1.044217e+02 -3.128640 2.194437e-03 7.215420e-03
## EXOSC7 -3.1414200 1.010529e+01 -3.126867 2.206715e-03 7.252500e-03
## USP54 0.5361827 1.902972e+00 3.126751 2.207522e-03 7.252500e-03
## ANKRD12 27.5073931 9.082200e+01 3.126747 2.207548e-03 7.252500e-03
## RECQL 9.7176941 4.278681e+01 3.126456 2.209573e-03 7.257141e-03
## COX17 -4.9954081 1.665823e+01 -3.126202 2.211342e-03 7.258925e-03
## B3GALNT2 1.9389182 7.077720e+00 3.126160 2.211634e-03 7.258925e-03
## METTL4 4.1851216 1.514392e+01 3.126114 2.211952e-03 7.258925e-03
## PCYOX1L -2.5299147 1.018455e+01 -3.125799 2.214144e-03 7.264108e-03
## ZMYND19 -1.5627471 3.781144e+00 -3.125262 2.217887e-03 7.274375e-03
## NFAM1 -173.4553562 6.159283e+02 -3.125084 2.219135e-03 7.276454e-03
## EGFL8 -0.4678696 6.893250e-01 -3.124798 2.221131e-03 7.280987e-03
## NUP155 1.9071190 1.010517e+01 3.124391 2.223972e-03 7.288286e-03
## COMTD1 -0.6529463 7.595181e-01 -3.124109 2.225947e-03 7.292745e-03
## PELI2 26.8500518 8.550254e+01 3.123016 2.233612e-03 7.315834e-03
## STK17B 188.1398929 4.969193e+02 3.120887 2.248615e-03 7.362942e-03
## ZBTB16 45.1528389 4.482214e+01 3.120587 2.250734e-03 7.367501e-03
## SEC14L5 1.8339915 3.350264e+00 3.120514 2.251250e-03 7.367501e-03
## GSTO1 -54.8109954 1.312624e+02 -3.120409 2.251993e-03 7.367900e-03
## CEACAM8 76.9947082 6.231524e+01 3.119778 2.256459e-03 7.380474e-03
## PPTC7 24.8078408 7.583239e+01 3.119342 2.259553e-03 7.388557e-03
## PSMD9 -11.9289722 4.157325e+01 -3.119182 2.260693e-03 7.390248e-03
## DCK 8.1961118 4.034795e+01 3.119014 2.261885e-03 7.392107e-03
## NIPA2 8.8369975 4.500456e+01 3.118873 2.262888e-03 7.393347e-03
## DERA 4.0866148 2.078248e+01 3.118200 2.267673e-03 7.406942e-03
## C11orf98 -12.9514851 3.301385e+01 -3.118018 2.268974e-03 7.409148e-03
## SP3 75.7195560 2.218778e+02 3.117475 2.272846e-03 7.419752e-03
## DLGAP4 -4.9123327 2.451897e+01 -3.116849 2.277319e-03 7.430336e-03
## RPRD1B 3.9846965 1.997588e+01 3.116846 2.277341e-03 7.430336e-03
## LILRA2 -124.7840818 4.083333e+02 -3.116612 2.279015e-03 7.433751e-03
## IFT140 -0.4580075 1.216554e+00 -3.115760 2.285120e-03 7.450948e-03
## ATF7 7.3997105 2.988050e+01 3.115701 2.285544e-03 7.450948e-03
## TNFRSF13C -3.6087163 7.707114e+00 -3.115587 2.286358e-03 7.451554e-03
## FAM102A -12.4816731 2.275257e+01 -3.115329 2.288210e-03 7.455542e-03
## SEC24A 9.9606299 2.681140e+01 3.114664 2.292993e-03 7.465717e-03
## MARF1 44.6527425 1.548640e+02 3.114603 2.293430e-03 7.465717e-03
## POMGNT1 -3.9785204 1.280208e+01 -3.114565 2.293705e-03 7.465717e-03
## ZNF493 7.6178138 1.815725e+01 3.114545 2.293851e-03 7.465717e-03
## PRRC1 4.2470994 1.791919e+01 3.113788 2.299305e-03 7.481416e-03
## KMT2D 33.5398876 1.069567e+02 3.113696 2.299968e-03 7.481519e-03
## PARP11 6.4070149 1.214285e+01 3.113112 2.304182e-03 7.493172e-03
## DCTN3 -13.7735379 3.742373e+01 -3.112192 2.310843e-03 7.512772e-03
## ZNF654 7.2953725 2.141354e+01 3.111208 2.317986e-03 7.533930e-03
## CNOT7 9.3334325 6.337168e+01 3.111060 2.319066e-03 7.535377e-03
## GPATCH1 1.2128449 6.017622e+00 3.110668 2.321913e-03 7.542561e-03
## GPLD1 0.3233862 6.561487e-01 3.110421 2.323712e-03 7.546337e-03
## PTPRE 66.1371995 2.166827e+02 3.109960 2.327073e-03 7.553128e-03
## REV1 3.8018926 1.620872e+01 3.109960 2.327077e-03 7.553128e-03
## EPAS1 6.3434293 8.852375e+00 3.109680 2.329116e-03 7.557679e-03
## STX16 36.9512125 1.431381e+02 3.109523 2.330267e-03 7.559347e-03
## CNTLN 1.4442929 4.327969e+00 3.108901 2.334813e-03 7.572021e-03
## UBN2 4.0618105 1.534881e+01 3.108675 2.336470e-03 7.575322e-03
## ATF2 8.6997852 3.727888e+01 3.108199 2.339959e-03 7.584562e-03
## GNAS 142.4831320 6.489505e+02 3.107408 2.345764e-03 7.599478e-03
## SIRT7 -15.0744216 4.780414e+01 -3.107397 2.345842e-03 7.599478e-03
## TXNDC16 1.3981851 4.983668e+00 3.106948 2.349148e-03 7.608109e-03
## FAM126A 4.4938950 1.735030e+01 3.106537 2.352176e-03 7.615837e-03
## FZD3 0.5639723 1.567895e+00 3.106403 2.353159e-03 7.616939e-03
## BAG1 -30.0247781 7.074354e+01 -3.106250 2.354292e-03 7.618527e-03
## PCF11 32.5744514 1.057245e+02 3.105253 2.361654e-03 7.640266e-03
## PRCC -9.3846390 3.817117e+01 -3.105052 2.363135e-03 7.642973e-03
## REST 8.2514553 3.532080e+01 3.104586 2.366586e-03 7.650857e-03
## NAA50 18.0830964 9.630966e+01 3.104498 2.367241e-03 7.650857e-03
## MTCH1 -27.2746579 1.391175e+02 -3.104462 2.367508e-03 7.650857e-03
## TJAP1 -2.5916445 1.175996e+01 -3.104137 2.369919e-03 7.656561e-03
## CLK2 -3.6512104 3.994927e+01 -3.103937 2.371401e-03 7.659262e-03
## LPP 13.5509179 4.009717e+01 3.103084 2.377742e-03 7.677652e-03
## TOR1AIP2 13.7957970 5.590155e+01 3.102265 2.383849e-03 7.695279e-03
## ZNF621 3.0383520 1.099581e+01 3.102116 2.384955e-03 7.696753e-03
## ANKRD39 -1.1252580 2.196243e+00 -3.101788 2.387405e-03 7.702563e-03
## RAB27B 6.1510061 1.530065e+01 3.101113 2.392458e-03 7.716768e-03
## PAWR 0.6384626 2.197997e+00 3.100591 2.396367e-03 7.727272e-03
## ERCC3 3.6252441 2.778887e+01 3.099881 2.401694e-03 7.742347e-03
## KDELR1 -9.0768316 4.302458e+01 -3.099302 2.406050e-03 7.754281e-03
## SCAMP1 6.0984171 2.308457e+01 3.096894 2.424232e-03 7.810755e-03
## CLN3 -22.2067616 5.489069e+01 -3.095644 2.433721e-03 7.836620e-03
## SHROOM4 0.8785188 1.643237e+00 3.095615 2.433936e-03 7.836620e-03
## ATP5PO -28.2237159 1.055607e+02 -3.095429 2.435353e-03 7.836620e-03
## F13A1 100.7075613 2.145782e+02 3.095402 2.435560e-03 7.836620e-03
## UHRF1BP1L 24.4429582 6.272811e+01 3.095401 2.435563e-03 7.836620e-03
## MVK -1.3007335 3.331573e+00 -3.095293 2.436391e-03 7.837158e-03
## CHAMP1 2.0139197 7.345854e+00 3.093355 2.451186e-03 7.882610e-03
## PDIA5 2.3078739 5.246741e+00 3.092575 2.457159e-03 7.899677e-03
## PPM1L 2.2873372 9.154108e+00 3.091456 2.465762e-03 7.923319e-03
## POR -35.4704939 6.314590e+01 -3.091445 2.465849e-03 7.923319e-03
## CCDC117 5.4748906 2.479243e+01 3.090411 2.473816e-03 7.945270e-03
## PCK2 -4.4658237 1.423518e+01 -3.090385 2.474021e-03 7.945270e-03
## LRRC46 -0.3843528 8.210395e-01 -3.089936 2.477489e-03 7.954256e-03
## RAP1GDS1 3.3993524 2.541334e+01 3.089715 2.479194e-03 7.957576e-03
## HDLBP 20.9668896 1.125088e+02 3.089298 2.482424e-03 7.965788e-03
## QKI 72.9165838 2.115372e+02 3.089140 2.483652e-03 7.967570e-03
## APOBR -126.1087391 3.566010e+02 -3.088776 2.486468e-03 7.974449e-03
## PPIH -3.9360520 1.300290e+01 -3.087255 2.498291e-03 8.010200e-03
## ZNF335 -5.8365730 2.504953e+01 -3.086879 2.501225e-03 8.017441e-03
## ING3 7.5511860 2.469458e+01 3.086760 2.502154e-03 8.018250e-03
## SAMD9 104.1196865 1.715035e+02 3.086000 2.508090e-03 8.035103e-03
## VEGFA 7.6697871 1.753790e+01 3.084990 2.516004e-03 8.058278e-03
## AP1G1 22.7949397 7.768832e+01 3.083545 2.527358e-03 8.092459e-03
## ITGB2 -203.9958750 8.217875e+02 -3.083312 2.529188e-03 8.096133e-03
## DOLK -1.1155621 4.295139e+00 -3.082444 2.536042e-03 8.115881e-03
## RNFT1 7.4944618 2.797873e+01 3.081537 2.543217e-03 8.136649e-03
## LTBR -19.7284832 6.887649e+01 -3.081325 2.544899e-03 8.138608e-03
## CKB -1.4557980 1.329976e+00 -3.081286 2.545202e-03 8.138608e-03
## ABHD3 48.0572188 1.245124e+02 3.080944 2.547918e-03 8.145095e-03
## ANXA2 -87.4236620 3.756854e+02 -3.080271 2.553260e-03 8.159976e-03
## ACBD7 1.4374563 2.422620e+00 3.079897 2.556235e-03 8.167280e-03
## PCIF1 -10.2771017 4.536989e+01 -3.079750 2.557407e-03 8.168824e-03
## PARP14 158.0066705 2.498047e+02 3.079544 2.559049e-03 8.171870e-03
## PDE6B -1.0642641 2.813572e+00 -3.078469 2.567623e-03 8.197042e-03
## MTRNR2L6 -30.5429690 4.498673e+01 -3.078116 2.570447e-03 8.203847e-03
## CTU1 -1.0714932 2.318572e+00 -3.077109 2.578513e-03 8.227377e-03
## ADD3 87.2042039 2.493372e+02 3.076178 2.585999e-03 8.249044e-03
## OXSR1 25.1080347 7.923882e+01 3.075950 2.587826e-03 8.252654e-03
## RFX1 -1.5622241 5.288178e+00 -3.075660 2.590163e-03 8.257886e-03
## MRPS2 -4.5780534 8.503008e+00 -3.075270 2.593310e-03 8.264338e-03
## NEIL2 -1.4174528 4.264154e+00 -3.075236 2.593581e-03 8.264338e-03
## GPR141 26.1017208 5.524532e+01 3.075078 2.594860e-03 8.266195e-03
## IMP4 -5.1991873 1.551667e+01 -3.074907 2.596242e-03 8.268375e-03
## PVRIG -3.9869907 7.353762e+00 -3.074349 2.600746e-03 8.280496e-03
## B9D2 -4.5188869 1.082149e+01 -3.074262 2.601449e-03 8.280510e-03
## PARD6G 0.3277366 7.660642e-01 3.073949 2.603982e-03 8.284791e-03
## PDIK1L 1.5318697 6.609427e+00 3.073923 2.604190e-03 8.284791e-03
## RBM43 4.2822697 9.406702e+00 3.073527 2.607405e-03 8.291117e-03
## LMF1 -1.0394503 2.269577e+00 -3.073505 2.607577e-03 8.291117e-03
## PNRC2 22.9757943 1.367760e+02 3.072562 2.615239e-03 8.313249e-03
## HSPA4L 0.5758444 1.974137e+00 3.072365 2.616840e-03 8.316110e-03
## MAP3K2 86.5862427 2.218011e+02 3.071610 2.622984e-03 8.333401e-03
## MAP7D1 -40.0326015 1.373781e+02 -3.071425 2.624492e-03 8.335960e-03
## AKR1B1 -10.9719079 2.668506e+01 -3.071165 2.626617e-03 8.340477e-03
## FZD2 -0.9982225 2.146637e+00 -3.070280 2.633844e-03 8.361186e-03
## NEMF 8.0610926 2.997226e+01 3.069981 2.636293e-03 8.366722e-03
## DAPK3 -4.6685189 1.366495e+01 -3.068659 2.647136e-03 8.398885e-03
## ALDOC -7.0529869 1.501200e+01 -3.068233 2.650642e-03 8.407761e-03
## PRMT1 -13.0216032 2.990035e+01 -3.067671 2.655270e-03 8.420188e-03
## MDM1 7.6278922 2.360747e+01 3.067200 2.659161e-03 8.428484e-03
## SMARCA5 12.7521281 7.238429e+01 3.067182 2.659308e-03 8.428484e-03
## MIER1 37.8945405 1.145982e+02 3.066785 2.662588e-03 8.436625e-03
## MAD1L1 -7.6490513 1.178844e+01 -3.066654 2.663671e-03 8.437805e-03
## GTPBP3 -1.2668065 3.047540e+00 -3.065841 2.670395e-03 8.456845e-03
## SUPT20H 20.1505769 8.254823e+01 3.065207 2.675660e-03 8.471257e-03
## FAM214B -48.6826746 1.511736e+02 -3.065089 2.676640e-03 8.472099e-03
## FCHSD2 16.5037661 6.265653e+01 3.064635 2.680409e-03 8.479888e-03
## MRPL45 -2.6993239 1.451130e+01 -3.064541 2.681191e-03 8.479888e-03
## ZMYM4 4.4399759 1.877902e+01 3.064534 2.681246e-03 8.479888e-03
## SLC38A6 -0.8182804 3.370163e+00 -3.064209 2.683955e-03 8.486095e-03
## CTDSPL2 5.4007414 2.482936e+01 3.064127 2.684640e-03 8.486095e-03
## DGCR2 -22.3132257 9.258023e+01 -3.063369 2.690959e-03 8.503805e-03
## TOPORS 20.3246132 5.086077e+01 3.062510 2.698134e-03 8.524206e-03
## HNRNPA0 -8.7649874 5.231583e+01 -3.062186 2.700851e-03 8.528747e-03
## FLOT2 -441.4814527 9.928826e+02 -3.062167 2.701010e-03 8.528747e-03
## MORN3 -1.0052446 2.673827e+00 -3.062055 2.701945e-03 8.529428e-03
## AP2M1 -44.9324205 2.064488e+02 -3.061693 2.704976e-03 8.536727e-03
## ZGLP1 -1.3021748 2.340164e+00 -3.060933 2.711358e-03 8.553192e-03
## STRADA -6.6166858 3.738181e+01 -3.060900 2.711636e-03 8.553192e-03
## SWSAP1 -1.5450864 3.381582e+00 -3.059754 2.721288e-03 8.581353e-03
## FCMR -26.8558986 6.614753e+01 -3.059245 2.725582e-03 8.592610e-03
## GYPC -55.2668997 8.305970e+01 -3.058051 2.735682e-03 8.622160e-03
## LLGL1 -1.7792009 6.318037e+00 -3.057315 2.741922e-03 8.639530e-03
## SPINT2 -22.1518536 5.487710e+01 -3.056747 2.746752e-03 8.651271e-03
## CLN6 -11.0249106 2.197383e+01 -3.056705 2.747107e-03 8.651271e-03
## FDX2 -1.4507976 2.842168e+00 -3.056611 2.747905e-03 8.651488e-03
## CSGALNACT1 45.6628796 7.920192e+01 3.056354 2.750099e-03 8.654052e-03
## ZNF407 2.4343994 9.356130e+00 3.056344 2.750179e-03 8.654052e-03
## OASL 144.8972393 1.697173e+02 3.055996 2.753150e-03 8.661104e-03
## FER 1.2686591 3.823844e+00 3.055478 2.757570e-03 8.672706e-03
## SMIM7 -4.7779902 2.801361e+01 -3.055339 2.758754e-03 8.674133e-03
## PLK2 0.9236825 2.035528e+00 3.054943 2.762140e-03 8.682477e-03
## SLAIN1 1.4329375 5.090475e+00 3.054824 2.763151e-03 8.683354e-03
## APOL6 130.2099671 1.887671e+02 3.054497 2.765952e-03 8.689853e-03
## AMD1 41.2330716 1.446059e+02 3.054045 2.769825e-03 8.699715e-03
## SEPTIN7 39.9919891 1.790245e+02 3.052607 2.782173e-03 8.736185e-03
## SCAMP3 -6.1439867 1.888963e+01 -3.052334 2.784527e-03 8.741261e-03
## BACH1 111.6666733 3.123030e+02 3.051793 2.789187e-03 8.753574e-03
## CCDC127 -1.5575635 8.400089e+00 -3.051535 2.791414e-03 8.758245e-03
## ORC3 2.3777970 1.192844e+01 3.051385 2.792712e-03 8.759818e-03
## LSMEM1 8.0132266 1.645616e+01 3.051167 2.794598e-03 8.759818e-03
## DENND4A 7.9952124 3.262415e+01 3.051114 2.795056e-03 8.759818e-03
## RHBDD2 -15.2366675 3.706205e+01 -3.051090 2.795264e-03 8.759818e-03
## RORC -1.4579329 2.441038e+00 -3.051050 2.795608e-03 8.759818e-03
## LRRC34 0.5157125 1.853664e+00 3.050577 2.799703e-03 8.770332e-03
## POLR1C -1.9250283 7.249118e+00 -3.050335 2.801798e-03 8.774576e-03
## C19orf47 -1.2288924 5.208254e+00 -3.050201 2.802954e-03 8.775879e-03
## NFYA 16.0726736 5.633768e+01 3.049473 2.809270e-03 8.793334e-03
## NXPE3 12.9132040 5.248253e+01 3.049324 2.810564e-03 8.794379e-03
## DENND4B -12.9785564 1.012668e+02 -3.049264 2.811087e-03 8.794379e-03
## FHIT -2.5572173 3.570145e+00 -3.048931 2.813986e-03 8.799110e-03
## DHX30 -4.0681431 1.784720e+01 -3.048758 2.815490e-03 8.799110e-03
## C5AR2 -37.9334955 1.259894e+02 -3.048727 2.815760e-03 8.799110e-03
## SPTBN5 -0.7431297 1.637391e+00 -3.048715 2.815866e-03 8.799110e-03
## ZNF136 3.7951925 1.346685e+01 3.048664 2.816309e-03 8.799110e-03
## TET3 20.1257161 6.028762e+01 3.048313 2.819362e-03 8.806329e-03
## SEPHS1 3.1594180 1.593709e+01 3.047663 2.825035e-03 8.821726e-03
## MED23 10.2390712 3.481579e+01 3.047517 2.826310e-03 8.823383e-03
## CCDC86 -0.9058401 3.068816e+00 -3.046441 2.835717e-03 8.850423e-03
## MTLN -1.6250066 2.240073e+00 -3.045743 2.841836e-03 8.867187e-03
## SPTY2D1 11.7141561 3.829898e+01 3.045626 2.842868e-03 8.868072e-03
## CPSF1 -9.6251720 2.130243e+01 -3.044509 2.852692e-03 8.895394e-03
## PUM1 8.1682700 4.105636e+01 3.044460 2.853126e-03 8.895394e-03
## MLLT10 4.2895737 2.162956e+01 3.043502 2.861572e-03 8.919381e-03
## MTARC1 56.5523487 1.154470e+02 3.042958 2.866381e-03 8.932024e-03
## ERCC4 1.2247718 4.003893e+00 3.042558 2.869929e-03 8.940730e-03
## DDX56 -8.6502773 2.690079e+01 -3.041762 2.876986e-03 8.959368e-03
## CD5 -11.6218544 2.181892e+01 -3.041713 2.877423e-03 8.959368e-03
## ZDHHC23 0.8290063 2.360267e+00 3.041266 2.881389e-03 8.969362e-03
## PIK3CB 15.0700119 5.083445e+01 3.040482 2.888366e-03 8.988722e-03
## MED21 2.6405298 1.232508e+01 3.040138 2.891436e-03 8.995916e-03
## LIN7C 2.3715357 1.433878e+01 3.039967 2.892964e-03 8.998308e-03
## NINJ1 -99.4213920 2.246074e+02 -3.039725 2.895119e-03 9.002650e-03
## ASB7 7.6455637 3.039819e+01 3.039277 2.899123e-03 9.012739e-03
## SLC35D1 3.3044476 1.060355e+01 3.038406 2.906920e-03 9.034611e-03
## THEMIS2 -87.6019391 3.447426e+02 -3.037213 2.917633e-03 9.065529e-03
## UBA5 3.1431909 1.449998e+01 3.036561 2.923505e-03 9.081396e-03
## POMT1 -2.7222558 8.146058e+00 -3.035412 2.933869e-03 9.109175e-03
## LIG4 7.7974968 2.408274e+01 3.035400 2.933984e-03 9.109175e-03
## DOCK11 47.0351148 1.609723e+02 3.035190 2.935879e-03 9.112672e-03
## YPEL2 11.0386851 3.750076e+01 3.035016 2.937453e-03 9.115173e-03
## NAP1L1 -64.1983220 2.810142e+02 -3.034369 2.943313e-03 9.129232e-03
## TRAM1 24.4211145 1.306377e+02 3.034346 2.943523e-03 9.129232e-03
## HIPK1 71.4529591 1.774878e+02 3.034151 2.945290e-03 9.132323e-03
## ZNF777 -1.0878509 3.357228e+00 -3.033327 2.952779e-03 9.150847e-03
## NCK2 10.9871883 4.530043e+01 3.033177 2.954141e-03 9.150847e-03
## PAG1 74.2125721 1.555030e+02 3.033106 2.954790e-03 9.150847e-03
## POP7 -1.9082684 5.072606e+00 -3.033081 2.955017e-03 9.150847e-03
## NDE1 13.7337777 4.949876e+01 3.033069 2.955122e-03 9.150847e-03
## SERINC1 127.9341282 3.567440e+02 3.032853 2.957088e-03 9.154545e-03
## TP53BP2 10.5970757 3.436596e+01 3.032525 2.960078e-03 9.161410e-03
## THAP9 0.5494343 2.111199e+00 3.032148 2.963518e-03 9.167815e-03
## DNAAF4 -1.4907632 3.362708e+00 -3.032129 2.963693e-03 9.167815e-03
## GOLT1B 3.4006643 2.098623e+01 3.031412 2.970237e-03 9.185661e-03
## PYCR1 2.0378865 2.020009e+00 3.031270 2.971536e-03 9.187282e-03
## GET3 -12.9548390 4.197249e+01 -3.030936 2.974591e-03 9.194332e-03
## CARD19 -7.9858132 1.928393e+01 -3.030511 2.978486e-03 9.203973e-03
## C21orf91 11.4595836 4.130028e+01 3.030109 2.982180e-03 9.212986e-03
## SERINC3 54.2901525 2.027505e+02 3.029744 2.985525e-03 9.218836e-03
## ZNF563 -0.5949664 2.022477e+00 -3.029733 2.985628e-03 9.218836e-03
## IL32 -123.3426637 1.576115e+02 -3.029374 2.988929e-03 9.223265e-03
## GFI1 8.8896313 1.506129e+01 3.029371 2.988958e-03 9.223265e-03
## DHX40 8.9027100 3.718926e+01 3.029290 2.989697e-03 9.223265e-03
## LMNA -7.8136356 1.345381e+01 -3.029239 2.990173e-03 9.223265e-03
## FGFR1OP2 22.2153924 7.865893e+01 3.029132 2.991154e-03 9.223892e-03
## RBMXL1 5.2010888 2.344773e+01 3.029042 2.991987e-03 9.224062e-03
## KLHL8 38.9945445 6.464648e+01 3.028837 2.993874e-03 9.227482e-03
## IKZF4 0.9262413 2.972551e+00 3.028595 2.996103e-03 9.231951e-03
## STAB1 -38.1841846 8.270922e+01 -3.028123 3.000457e-03 9.242967e-03
## VPS37A 4.6542126 2.034202e+01 3.027879 3.002706e-03 9.247491e-03
## MAB21L3 0.9912868 1.583380e+00 3.026424 3.016170e-03 9.286545e-03
## SPIN2B -0.8853609 2.680894e+00 -3.025079 3.028674e-03 9.322624e-03
## PRPF19 -10.8622614 4.128558e+01 -3.023839 3.040232e-03 9.355551e-03
## TBC1D13 -4.9712964 2.688484e+01 -3.023763 3.040948e-03 9.355551e-03
## TSEN54 -5.6201895 1.154290e+01 -3.022917 3.048860e-03 9.377457e-03
## DDX19B -2.9460724 1.611731e+01 -3.022283 3.054805e-03 9.393306e-03
## DNAH1 4.6469064 2.261873e+01 3.021891 3.058481e-03 9.399866e-03
## SIRT1 8.3628783 2.661332e+01 3.021887 3.058523e-03 9.399866e-03
## OAF -3.7044158 1.065974e+01 -3.020930 3.067527e-03 9.424713e-03
## FAM102B 4.1388684 2.062025e+01 3.020859 3.068197e-03 9.424713e-03
## TMED4 4.0833385 4.843742e+01 3.020610 3.070544e-03 9.429480e-03
## ARID1A 24.0873721 9.428265e+01 3.019611 3.079973e-03 9.455986e-03
## TMEM154 154.5584054 4.303347e+02 3.018099 3.094301e-03 9.497518e-03
## ESCO1 6.0639168 2.550469e+01 3.017862 3.096549e-03 9.501959e-03
## ZCWPW1 -2.1446401 6.955573e+00 -3.017683 3.098256e-03 9.504739e-03
## RUFY2 1.0786987 5.046102e+00 3.017328 3.101625e-03 9.512613e-03
## DOCK2 49.3194642 2.546311e+02 3.017079 3.103996e-03 9.517424e-03
## CD2AP 6.6439116 1.629266e+01 3.015240 3.121561e-03 9.567249e-03
## ANAPC13 14.2615825 5.842393e+01 3.015208 3.121859e-03 9.567249e-03
## GABPA 8.5342804 3.536235e+01 3.015086 3.123029e-03 9.567958e-03
## IFI16 210.3725536 5.089642e+02 3.015016 3.123704e-03 9.567958e-03
## GPN2 -3.8175697 2.161797e+01 -3.014797 3.125798e-03 9.571899e-03
## STAM 3.0549434 1.310515e+01 3.014632 3.127384e-03 9.574285e-03
## S100A10 -52.5200839 1.530519e+02 -3.014190 3.131627e-03 9.584799e-03
## FBXL4 5.5464379 1.877315e+01 3.013753 3.135820e-03 9.595156e-03
## MRPS11 -4.5443860 1.483592e+01 -3.013657 3.136742e-03 9.595503e-03
## HIKESHI -4.4044319 1.597694e+01 -3.013349 3.139705e-03 9.602089e-03
## TMEM147 -6.9081457 1.830401e+01 -3.013167 3.141463e-03 9.604989e-03
## DTX3 -2.7661779 5.829146e+00 -3.012648 3.146462e-03 9.615461e-03
## NRIP1 7.9501472 2.160272e+01 3.012643 3.146510e-03 9.615461e-03
## DNAAF5 -0.8298195 3.015104e+00 -3.012220 3.150593e-03 9.625460e-03
## FAM168A 10.6131440 4.525422e+01 3.010689 3.165403e-03 9.667541e-03
## PNPLA1 9.8696513 2.333008e+01 3.010628 3.165997e-03 9.667541e-03
## ABCB10 5.2519052 2.075458e+01 3.010163 3.170509e-03 9.678825e-03
## NCOA1 48.6773393 1.496879e+02 3.009335 3.178564e-03 9.700917e-03
## ZNF615 1.8418366 7.225470e+00 3.009091 3.180933e-03 9.705191e-03
## ZNF451 4.6780690 2.258545e+01 3.009023 3.181600e-03 9.705191e-03
## RCHY1 8.6753200 3.129796e+01 3.008466 3.187029e-03 9.719251e-03
## TBCEL 2.9901430 7.423975e+00 3.008376 3.187908e-03 9.719431e-03
## NARF -58.0125853 1.496072e+02 -3.007769 3.193840e-03 9.735014e-03
## METTL14 3.7090350 1.674182e+01 3.006673 3.204571e-03 9.765214e-03
## ZBTB20 2.1970038 6.400153e+00 3.006165 3.209554e-03 9.777885e-03
## LRP12 0.9148985 2.042920e+00 3.005977 3.211398e-03 9.780990e-03
## KDM1B 14.3220966 4.592843e+01 3.005750 3.213632e-03 9.785282e-03
## NDUFAB1 -6.5493476 1.792403e+01 -3.004503 3.225916e-03 9.820164e-03
## TMEM94 -4.5192191 1.972200e+01 -3.004306 3.227858e-03 9.823555e-03
## SPOPL 55.9307561 1.486251e+02 3.002887 3.241899e-03 9.863756e-03
## HPS5 4.0272340 1.502502e+01 3.002260 3.248119e-03 9.880148e-03
## EXOC7 -15.0799856 1.037912e+02 -3.001609 3.254586e-03 9.896233e-03
## TGS1 2.6184385 1.334297e+01 3.001560 3.255076e-03 9.896233e-03
## DIMT1 2.2950976 8.100835e+00 3.001212 3.258546e-03 9.904243e-03
## ROCK1 80.3556139 2.028554e+02 3.001110 3.259555e-03 9.904771e-03
## LPAR6 -26.5362502 8.193540e+01 -3.001000 3.260652e-03 9.905567e-03
## FHL2 1.5513968 4.269777e+00 3.000636 3.264287e-03 9.914071e-03
## RABL3 1.9555459 1.204163e+01 3.000194 3.268699e-03 9.924928e-03
## TKT -219.2654133 7.439736e+02 -2.999998 3.270652e-03 9.928317e-03
## TIMM44 -2.5900395 7.465000e+00 -2.999845 3.272184e-03 9.930425e-03
## KRR1 4.4957521 2.028162e+01 2.999568 3.274957e-03 9.936298e-03
## LILRB1 -17.9742785 4.010830e+01 -2.999286 3.277781e-03 9.942322e-03
## ADRB2 -4.8026738 1.692708e+01 -2.998959 3.281054e-03 9.949707e-03
## SYTL4 1.4355868 3.325325e+00 2.998851 3.282139e-03 9.950451e-03
## ZDHHC13 3.8985073 1.513708e+01 2.997860 3.292081e-03 9.978042e-03
## NUS1 7.9737269 3.757963e+01 2.997696 3.293737e-03 9.980510e-03
## NIN 100.3448588 2.998832e+02 2.997405 3.296666e-03 9.986836e-03
## PARD6A -1.2577559 2.308288e+00 -2.997214 3.298586e-03 9.990099e-03
## TENT5A 11.8629030 3.525549e+01 2.996998 3.300768e-03 9.994155e-03
## JAK2 56.5187026 1.592936e+02 2.996829 3.302465e-03 9.996742e-03
## RAD18 1.0464443 5.186807e+00 2.996439 3.306405e-03 1.000612e-02
## E2F5 1.2925842 2.769126e+00 2.996210 3.308716e-03 1.001055e-02
## ZNF841 1.6879886 6.951769e+00 2.995723 3.313635e-03 1.002066e-02
## CEMP1 -2.6033010 5.007336e+00 -2.995712 3.313746e-03 1.002066e-02
## PLCD1 -3.6165297 1.155611e+01 -2.995396 3.316945e-03 1.002771e-02
## REXO5 0.5988618 1.370325e+00 2.995315 3.317768e-03 1.002771e-02
## XPO1 27.2233149 1.037991e+02 2.994619 3.324825e-03 1.004648e-02
## UBE2T 2.8319089 3.633067e+00 2.994377 3.327279e-03 1.005133e-02
## CHST7 -1.7197851 4.284618e+00 -2.993010 3.341181e-03 1.009076e-02
## PRPF38B 19.6454596 9.010559e+01 2.992900 3.342304e-03 1.009158e-02
## IGBP1 -12.4011220 9.315010e+01 -2.992739 3.343951e-03 1.009398e-02
## ZNF799 4.2525781 8.736181e+00 2.992113 3.350333e-03 1.011068e-02
## XRCC5 59.7077463 3.186512e+02 2.991944 3.352067e-03 1.011333e-02
## ZNF22 3.7053185 1.954409e+01 2.991638 3.355193e-03 1.012019e-02
## SMC1A 10.4088577 4.665230e+01 2.991469 3.356922e-03 1.012283e-02
## LPAR2 -54.2512062 1.384895e+02 -2.991213 3.359546e-03 1.012817e-02
## CUTA -18.6627074 3.048356e+01 -2.991049 3.361225e-03 1.013066e-02
## MTF1 29.6665183 8.288418e+01 2.990531 3.366535e-03 1.014408e-02
## CTDP1 -8.9732355 2.589872e+01 -2.989796 3.374089e-03 1.016426e-02
## PNN 22.1110474 9.887861e+01 2.989460 3.377550e-03 1.017210e-02
## PRDM1 12.6651830 4.618261e+01 2.989258 3.379632e-03 1.017570e-02
## SP100 84.9222270 2.643511e+02 2.989142 3.380826e-03 1.017570e-02
## PLIN3 -35.9171709 1.068782e+02 -2.989094 3.381320e-03 1.017570e-02
## E2F4 -13.7211670 7.390580e+01 -2.988078 3.391804e-03 1.020467e-02
## CILK1 2.2652015 9.893442e+00 2.987829 3.394375e-03 1.020981e-02
## TMEM170B 33.4967011 1.049071e+02 2.987700 3.395707e-03 1.021123e-02
## CD6 -28.6463732 4.376320e+01 -2.986667 3.406409e-03 1.024081e-02
## SPAG9 37.2652588 1.064268e+02 2.986565 3.407470e-03 1.024141e-02
## SNX16 2.9128066 9.649240e+00 2.986169 3.411580e-03 1.025084e-02
## SELL 1071.8624189 2.868742e+03 2.986096 3.412337e-03 1.025084e-02
## NEDD9 66.1859510 1.483511e+02 2.985688 3.416584e-03 1.026100e-02
## STT3B 19.7837040 1.144594e+02 2.985560 3.417912e-03 1.026239e-02
## HYAL2 -3.4523443 9.461095e+00 -2.985372 3.419875e-03 1.026568e-02
## SPNS3 -5.3797095 3.924589e+00 -2.985197 3.421697e-03 1.026631e-02
## MEOX1 -0.5329208 9.461129e-01 -2.985186 3.421814e-03 1.026631e-02
## CCL24 -0.3135853 5.501559e-01 -2.984899 3.424804e-03 1.027122e-02
## KIAA1586 0.8702076 4.083829e+00 2.984862 3.425184e-03 1.027122e-02
## DCXR -11.7046785 1.824967e+01 -2.984579 3.428136e-03 1.027748e-02
## H2BC15 0.4124769 5.357225e-01 2.984436 3.429629e-03 1.027935e-02
## ZNF684 3.8218379 5.441514e+00 2.984100 3.433145e-03 1.028729e-02
## ASCC1 3.7076489 1.512868e+01 2.983595 3.438420e-03 1.030050e-02
## CAND1 6.9402890 3.886795e+01 2.983196 3.442607e-03 1.031043e-02
## MECR -1.1451517 2.993961e+00 -2.983066 3.443966e-03 1.031190e-02
## NWD1 0.3552688 6.645564e-01 2.982574 3.449128e-03 1.032475e-02
## C2orf69 5.2937395 1.457595e+01 2.981989 3.455267e-03 1.034052e-02
## KRT18 -0.7255477 1.647307e+00 -2.981013 3.465540e-03 1.036650e-02
## GNG7 -5.0834032 1.507455e+01 -2.980998 3.465698e-03 1.036650e-02
## TBCA -11.7155689 4.722366e+01 -2.980640 3.469479e-03 1.037519e-02
## NINJ2 -9.7628910 2.848899e+01 -2.980124 3.474928e-03 1.038887e-02
## DENND1A -6.4809701 2.905876e+01 -2.979947 3.476794e-03 1.039183e-02
## ATAD3A -2.2661655 3.543895e+00 -2.979686 3.479554e-03 1.039746e-02
## VPS53 4.3346045 2.735479e+01 2.979590 3.480571e-03 1.039788e-02
## PPP4R2 65.9631876 1.510288e+02 2.979273 3.483930e-03 1.040529e-02
## TRAPPC2 2.0229021 1.772602e+01 2.977908 3.498414e-03 1.044592e-02
## CNPPD1 -32.0890324 1.013221e+02 -2.976944 3.508686e-03 1.047395e-02
## ZNF333 11.8847119 4.115134e+01 2.976416 3.514314e-03 1.048812e-02
## THYN1 -8.3800276 3.044662e+01 -2.976256 3.516026e-03 1.049058e-02
## BEX5 -0.4211108 8.298340e-01 -2.975496 3.524148e-03 1.051217e-02
## SLC38A10 -13.2578356 4.034945e+01 -2.975024 3.529208e-03 1.052462e-02
## FAM83H -0.4813593 1.219264e+00 -2.974515 3.534672e-03 1.053826e-02
## C7orf26 -3.8773682 2.206129e+01 -2.972397 3.557476e-03 1.060359e-02
## FCRLB -0.3279686 7.086895e-01 -2.972283 3.558704e-03 1.060458e-02
## MRPL14 -6.9484803 1.666765e+01 -2.971553 3.566595e-03 1.062543e-02
## SNRNP200 19.6380518 1.389758e+02 2.970985 3.572756e-03 1.064111e-02
## PNISR 38.7318591 1.664202e+02 2.970376 3.579361e-03 1.065810e-02
## RGS18 213.2311968 4.455505e+02 2.970120 3.582139e-03 1.066370e-02
## ODC1 17.0020829 6.080888e+01 2.969864 3.584925e-03 1.066931e-02
## MTMR9 2.8630989 1.339593e+01 2.968940 3.594985e-03 1.069657e-02
## UBE2M -10.9431608 3.773458e+01 -2.968642 3.598235e-03 1.070355e-02
## PDE7A 19.1192660 8.462636e+01 2.968412 3.600752e-03 1.070705e-02
## FUNDC2 -14.3659170 4.428829e+01 -2.968369 3.601217e-03 1.070705e-02
## ICE1 5.7097801 2.366489e+01 2.968215 3.602903e-03 1.070938e-02
## KAT2A -5.8803086 1.636017e+01 -2.967986 3.605405e-03 1.071413e-02
## KAT6A 46.7092812 1.180539e+02 2.967686 3.608688e-03 1.072120e-02
## SPRTN 2.4873061 9.633731e+00 2.967583 3.609814e-03 1.072186e-02
## DEF8 -35.1839542 1.550802e+02 -2.967235 3.613623e-03 1.073049e-02
## YIPF6 4.5885166 2.201619e+01 2.966626 3.620302e-03 1.074763e-02
## ZNF440 1.4258384 6.699211e+00 2.966446 3.622272e-03 1.075079e-02
## IP6K2 7.8431469 5.072548e+01 2.965144 3.636598e-03 1.079061e-02
## UQCRC1 -31.0675077 1.053646e+02 -2.964596 3.642638e-03 1.080582e-02
## SLC10A3 -4.0914907 1.375667e+01 -2.963747 3.652021e-03 1.083095e-02
## ZNF74 -0.9153282 2.627838e+00 -2.963587 3.653791e-03 1.083349e-02
## ZNF281 28.8010973 6.635523e+01 2.963190 3.658185e-03 1.084381e-02
## SLF1 6.5878713 1.760196e+01 2.963098 3.659208e-03 1.084413e-02
## SMPD3 -3.6790241 4.532284e+00 -2.962547 3.665320e-03 1.085953e-02
## HNRNPK 137.3128197 6.870707e+02 2.962392 3.667037e-03 1.086190e-02
## MRPL46 -3.2534918 9.783554e+00 -2.961400 3.678068e-03 1.089079e-02
## SERTAD1 -5.2315695 1.194549e+01 -2.961333 3.678814e-03 1.089079e-02
## PUM2 38.1847923 1.661177e+02 2.961257 3.679665e-03 1.089079e-02
## WWC3 26.0503616 8.311294e+01 2.961185 3.680462e-03 1.089079e-02
## FBXO44 -8.6430051 1.659027e+01 -2.960876 3.683915e-03 1.089829e-02
## LARS2 1.3943183 6.436108e+00 2.959245 3.702135e-03 1.094946e-02
## RNF168 3.9703418 2.170754e+01 2.958770 3.707464e-03 1.096239e-02
## HSD3B7 -2.7328890 5.049075e+00 -2.958690 3.708357e-03 1.096239e-02
## POLR3G 0.4941515 1.347490e+00 2.957935 3.716845e-03 1.098363e-02
## SUMF2 -11.9474211 4.454928e+01 -2.957886 3.717395e-03 1.098363e-02
## DNAL1 1.0325997 6.766036e+00 2.956873 3.728796e-03 1.101458e-02
## TRIAP1 -2.9271505 1.250365e+01 -2.956545 3.732502e-03 1.102278e-02
## HIBCH 2.6408177 7.869389e+00 2.955850 3.740351e-03 1.104239e-02
## CLCC1 1.7204779 8.700595e+00 2.955792 3.741006e-03 1.104239e-02
## MR1 14.1311085 5.909118e+01 2.955145 3.748336e-03 1.106127e-02
## ZNF791 3.2321062 2.165035e+01 2.955004 3.749929e-03 1.106322e-02
## COA7 1.0159986 5.340126e+00 2.954378 3.757032e-03 1.108142e-02
## PLEKHA3 3.7560980 1.959763e+01 2.952984 3.772896e-03 1.112282e-02
## ERLIN1 38.0361898 7.037644e+01 2.952980 3.772942e-03 1.112282e-02
## P2RX4 -6.4505897 2.019813e+01 -2.952857 3.774338e-03 1.112417e-02
## F12 -0.8806846 1.546974e+00 -2.952175 3.782129e-03 1.114436e-02
## PCDHA4 1.3563155 4.803577e+00 2.951828 3.786094e-03 1.115126e-02
## BPNT2 5.4342667 3.121925e+01 2.951757 3.786906e-03 1.115126e-02
## SNRPB2 -4.9578828 3.409251e+01 -2.951723 3.787292e-03 1.115126e-02
## LRRC14 -3.0441813 8.942702e+00 -2.951620 3.788467e-03 1.115195e-02
## H1-10 -12.1066789 1.852315e+01 -2.949772 3.809667e-03 1.121158e-02
## RBM12B 4.5475520 1.741799e+01 2.949490 3.812911e-03 1.121834e-02
## TRAFD1 64.2093911 1.844486e+02 2.949117 3.817215e-03 1.122822e-02
## E2F3 41.6488729 9.748426e+01 2.947767 3.832799e-03 1.126980e-02
## VWA8 14.8457418 1.930754e+01 2.947727 3.833254e-03 1.126980e-02
## ABRACL -7.8915435 4.455222e+01 -2.947507 3.835804e-03 1.127451e-02
## NUDT2 -3.9300282 1.421060e+01 -2.947255 3.838723e-03 1.128029e-02
## RPSAP58 -24.2052427 4.319015e+01 -2.947036 3.841263e-03 1.128496e-02
## ZNRD2 -1.7124680 2.601572e+00 -2.945982 3.853493e-03 1.131808e-02
## SH3BP5L -24.9095767 9.975082e+01 -2.945546 3.858564e-03 1.132777e-02
## VAMP2 -36.8992234 1.433549e+02 -2.945534 3.858702e-03 1.132777e-02
## UBE2E1 7.1238381 4.265987e+01 2.945398 3.860285e-03 1.132962e-02
## FAM185A 0.5512547 2.421610e+00 2.944475 3.871037e-03 1.135836e-02
## TMED2 20.4524879 1.279011e+02 2.944357 3.872418e-03 1.135960e-02
## RSBN1 18.5589584 4.788845e+01 2.944095 3.875480e-03 1.136577e-02
## RARG -2.6124087 7.731286e+00 -2.943910 3.877640e-03 1.136930e-02
## PLPP3 1.4937005 3.012651e+00 2.943597 3.881299e-03 1.137721e-02
## TRIM25 156.7164457 4.251199e+02 2.943204 3.885904e-03 1.138790e-02
## SLC19A1 -31.6234536 7.846143e+01 -2.943068 3.887495e-03 1.138975e-02
## ADSS2 17.5323582 5.848943e+01 2.942716 3.891622e-03 1.139902e-02
## MYBBP1A -2.3663891 6.380048e+00 -2.942508 3.894067e-03 1.140154e-02
## RAP2C 40.9465293 1.361175e+02 2.942479 3.894405e-03 1.140154e-02
## TUT4 5.2495634 1.829120e+01 2.942184 3.897865e-03 1.140885e-02
## SHLD3 0.8319525 3.902340e+00 2.941657 3.904058e-03 1.142416e-02
## ELF2 21.2246244 6.821774e+01 2.940407 3.918797e-03 1.146446e-02
## ITPRIPL2 3.0280748 1.257233e+01 2.939805 3.925904e-03 1.148242e-02
## EMG1 -9.8484032 3.052906e+01 -2.939245 3.932531e-03 1.149668e-02
## ZNF148 22.1413638 7.321317e+01 2.939199 3.933073e-03 1.149668e-02
## TRIM8 -18.1713583 7.694182e+01 -2.939147 3.933687e-03 1.149668e-02
## STAU2 5.6273628 2.132552e+01 2.939063 3.934688e-03 1.149677e-02
## TMX4 112.7026165 2.581959e+02 2.938474 3.941664e-03 1.151432e-02
## TMEM245 4.6453895 1.805798e+01 2.937962 3.947755e-03 1.152927e-02
## VRK3 -12.3111624 5.842421e+01 -2.937711 3.950734e-03 1.153513e-02
## SNAI3 -5.8380886 1.161980e+01 -2.936775 3.961877e-03 1.156482e-02
## ILKAP -3.7571938 1.502851e+01 -2.936305 3.967488e-03 1.157835e-02
## TM7SF2 -1.3580553 2.276657e+00 -2.935471 3.977450e-03 1.160457e-02
## CCDC84 -1.7520323 7.097132e+00 -2.934419 3.990063e-03 1.163850e-02
## TINF2 -20.4110111 1.076528e+02 -2.933779 3.997755e-03 1.165567e-02
## STRBP 2.5936299 8.940492e+00 2.933765 3.997915e-03 1.165567e-02
## SYNJ1 8.0445377 2.792893e+01 2.932378 4.014632e-03 1.170153e-02
## RAD23B 45.2874418 1.457850e+02 2.931810 4.021487e-03 1.171863e-02
## CBFA2T2 2.1970804 1.133471e+01 2.931538 4.024775e-03 1.172533e-02
## BTN2A1 44.8975839 1.762697e+02 2.931137 4.029626e-03 1.173658e-02
## STX10 -45.9281974 1.517715e+02 -2.930601 4.036126e-03 1.174840e-02
## MRPL17 -3.3308783 1.030868e+01 -2.930592 4.036240e-03 1.174840e-02
## NCOA7 20.0035786 3.206978e+01 2.930557 4.036654e-03 1.174840e-02
## OTUD6B 1.5744009 5.811019e+00 2.930375 4.038867e-03 1.175128e-02
## PIGW 0.5767598 2.418164e+00 2.930250 4.040386e-03 1.175128e-02
## SFXN5 -6.7073236 3.142315e+01 -2.930231 4.040617e-03 1.175128e-02
## RUSF1 -6.7357187 2.130184e+01 -2.929916 4.044437e-03 1.175843e-02
## STARD3 -8.7659642 4.642118e+01 -2.929865 4.045058e-03 1.175843e-02
## WDR12 1.4625713 9.028192e+00 2.929282 4.052155e-03 1.177617e-02
## SLX4IP 1.6941441 6.511272e+00 2.929091 4.054476e-03 1.178003e-02
## MAPK3 -33.7257360 1.167952e+02 -2.928367 4.063309e-03 1.180280e-02
## SEMA6B -2.5663299 1.846020e+00 -2.928241 4.064839e-03 1.180354e-02
## HSPD1 11.8437919 7.123412e+01 2.928183 4.065552e-03 1.180354e-02
## ITPR2 10.9483017 3.673179e+01 2.927428 4.074773e-03 1.182741e-02
## ARPP19 23.5072592 1.074464e+02 2.927051 4.079397e-03 1.183794e-02
## DIS3L 2.6978502 1.067322e+01 2.926880 4.081486e-03 1.184049e-02
## CREB5 118.4475626 2.863596e+02 2.926771 4.082818e-03 1.184049e-02
## IGHMBP2 -2.6374068 1.056043e+01 -2.926734 4.083272e-03 1.184049e-02
## TFAM 4.6187889 2.412904e+01 2.926196 4.089876e-03 1.185674e-02
## BTBD7 3.9552978 1.779174e+01 2.925790 4.094860e-03 1.186829e-02
## BFAR 2.8444406 2.622119e+01 2.925391 4.099777e-03 1.187964e-02
## PEPD -3.9389355 1.507985e+01 -2.924189 4.114584e-03 1.191963e-02
## MYO1F -222.6293763 8.823565e+02 -2.923721 4.120369e-03 1.192885e-02
## SCLY -0.5586644 2.599165e+00 -2.923675 4.120937e-03 1.192885e-02
## DEXI -3.1244218 5.925844e+00 -2.923622 4.121584e-03 1.192885e-02
## BCL2L15 6.0725701 6.069439e+00 2.923551 4.122465e-03 1.192885e-02
## LLGL2 -2.2554136 3.625928e+00 -2.923525 4.122796e-03 1.192885e-02
## MED14 4.4732826 1.837739e+01 2.923182 4.127035e-03 1.193820e-02
## MARCHF2 -30.4181960 7.536482e+01 -2.923085 4.128240e-03 1.193878e-02
## FKBP4 -7.6593509 2.504215e+01 -2.922706 4.132929e-03 1.194942e-02
## RRP1 -3.0770648 6.928780e+00 -2.922419 4.136491e-03 1.195681e-02
## GTF2E1 2.9361136 1.610145e+01 2.921909 4.142825e-03 1.197220e-02
## MAZ -40.7638075 1.201400e+02 -2.920884 4.155566e-03 1.200609e-02
## MON1A -1.3516268 3.209275e+00 -2.920684 4.158059e-03 1.201037e-02
## MAP3K10 -0.7720359 2.064994e+00 -2.920563 4.159577e-03 1.201183e-02
## SAMD9L 167.7276311 2.506602e+02 2.919823 4.168810e-03 1.203556e-02
## IL27RA -10.3895311 4.168119e+01 -2.919635 4.171154e-03 1.203940e-02
## WAS -80.4374839 2.968501e+02 -2.919548 4.172245e-03 1.203954e-02
## M1AP 1.8532108 2.552213e+00 2.919469 4.173233e-03 1.203954e-02
## MZT2A -1.9352195 1.805651e+00 -2.918708 4.182764e-03 1.206410e-02
## MC1R -0.7730272 1.474273e+00 -2.918593 4.184206e-03 1.206532e-02
## RP2 45.2863136 1.112537e+02 2.918393 4.186709e-03 1.206961e-02
## PI4KB -12.5559088 9.368295e+01 -2.917777 4.194445e-03 1.208897e-02
## TMEM69 2.2002109 1.481066e+01 2.916479 4.210784e-03 1.213173e-02
## TAP1 275.2595765 5.968937e+02 2.916436 4.211328e-03 1.213173e-02
## NECAP1 11.8769364 4.173764e+01 2.915266 4.226099e-03 1.217133e-02
## MAML1 15.3216078 6.333276e+01 2.914742 4.232741e-03 1.218750e-02
## ATM 35.2653412 1.240426e+02 2.913338 4.250557e-03 1.223583e-02
## FTH1 -2175.3051279 5.797449e+03 -2.913139 4.253094e-03 1.224016e-02
## LTO1 -1.2538928 9.091057e+00 -2.912787 4.257578e-03 1.224726e-02
## LDLRAD3 2.0524236 4.434473e+00 2.912783 4.257626e-03 1.224726e-02
## CHMP7 -11.3949097 5.313369e+01 -2.912276 4.264083e-03 1.226038e-02
## KHDRBS1 -7.5199737 7.682263e+01 -2.912263 4.264255e-03 1.226038e-02
## ZC3H13 8.4449994 3.932553e+01 2.912132 4.265930e-03 1.226222e-02
## ZNF623 2.0243668 7.597434e+00 2.912049 4.266988e-03 1.226229e-02
## ELK3 6.2359040 3.455622e+01 2.911551 4.273339e-03 1.227757e-02
## CAMTA1 -2.7028388 1.058185e+01 -2.911465 4.274442e-03 1.227776e-02
## AMFR -8.1928571 4.960672e+01 -2.911122 4.278829e-03 1.228739e-02
## LRRC27 -0.8643325 3.470049e+00 -2.911040 4.279882e-03 1.228744e-02
## PTPN22 14.0562524 3.875292e+01 2.910867 4.282090e-03 1.229080e-02
## TTC19 -2.5657594 1.305885e+01 -2.910478 4.287085e-03 1.230216e-02
## ANKRD13A 71.9554637 2.569890e+02 2.910186 4.290826e-03 1.230992e-02
## B4GALT1 48.8762211 1.719942e+02 2.910013 4.293038e-03 1.231328e-02
## UBASH3A -3.3830369 6.634330e+00 -2.908488 4.312657e-03 1.236656e-02
## NCBP3 6.6098926 4.165977e+01 2.908294 4.315166e-03 1.237077e-02
## FKBPL -3.0123436 8.103339e+00 -2.908072 4.318030e-03 1.237599e-02
## ARHGAP18 5.9957541 2.449746e+01 2.907767 4.321968e-03 1.238428e-02
## PRPF40B -0.5603185 1.231315e+00 -2.906969 4.332281e-03 1.241083e-02
## PINX1 -1.5474718 4.533616e+00 -2.906713 4.335594e-03 1.241370e-02
## CHRNE -1.3345504 2.193163e+00 -2.906693 4.335851e-03 1.241370e-02
## QSOX1 -57.1920148 1.285050e+02 -2.906649 4.336421e-03 1.241370e-02
## AUP1 -31.2207055 1.253401e+02 -2.906512 4.338195e-03 1.241578e-02
## NUP43 -2.9278322 1.474970e+01 -2.906328 4.340586e-03 1.241962e-02
## ZCCHC14 2.2346879 8.135402e+00 2.905886 4.346312e-03 1.243164e-02
## LOC100421372 1.6246537 1.044805e+01 2.905843 4.346880e-03 1.243164e-02
## VIM -426.2851562 1.523395e+03 -2.905554 4.350623e-03 1.243747e-02
## BIRC2 22.8695686 1.027338e+02 2.905488 4.351490e-03 1.243747e-02
## TIMMDC1 -3.2971965 3.044333e+01 -2.905367 4.353063e-03 1.243747e-02
## MMAB -2.0908636 4.138288e+00 -2.905211 4.355086e-03 1.243747e-02
## CEP170 12.1927634 3.643879e+01 2.905176 4.355547e-03 1.243747e-02
## MRPL57 -1.5294258 6.744878e+00 -2.905127 4.356179e-03 1.243747e-02
## SNRPC -7.0716440 2.728609e+01 -2.905084 4.356745e-03 1.243747e-02
## BTBD1 7.6615850 4.617942e+01 2.905040 4.357311e-03 1.243747e-02
## HEXD -6.9677990 1.465741e+01 -2.904867 4.359568e-03 1.244092e-02
## TNPO2 -3.7634434 2.371625e+01 -2.904561 4.363548e-03 1.244928e-02
## CBWD2 4.9036182 2.994019e+01 2.904167 4.368687e-03 1.246095e-02
## C1orf198 2.1477097 6.082813e+00 2.903126 4.382280e-03 1.249514e-02
## CORO2A 7.3575297 2.303928e+01 2.903030 4.383544e-03 1.249514e-02
## XRRA1 -9.5827356 1.953467e+01 -2.903007 4.383836e-03 1.249514e-02
## KPNB1 105.4921770 3.424025e+02 2.902671 4.388237e-03 1.250468e-02
## LMLN 0.5352752 1.771806e+00 2.901885 4.398546e-03 1.253105e-02
## ATP13A1 -8.6797599 2.281762e+01 -2.901756 4.400243e-03 1.253256e-02
## SPEN 17.0199267 5.806554e+01 2.901641 4.401744e-03 1.253256e-02
## ZNF526 -1.3687121 5.420247e+00 -2.901603 4.402248e-03 1.253256e-02
## RGS16 0.6642049 1.018245e+00 2.901478 4.403888e-03 1.253422e-02
## LCP2 75.0113536 2.872292e+02 2.900880 4.411756e-03 1.255167e-02
## FBXO8 2.9169288 1.404209e+01 2.900851 4.412135e-03 1.255167e-02
## PIGF 2.8563541 1.674583e+01 2.900287 4.419567e-03 1.256980e-02
## ELMO3 -2.0043686 4.025029e+00 -2.900095 4.422099e-03 1.257399e-02
## PXMP4 -1.4731594 6.311813e+00 -2.899933 4.424236e-03 1.257705e-02
## CASP7 6.3889829 1.821751e+01 2.899792 4.426089e-03 1.257930e-02
## NGRN -4.2220515 2.365247e+01 -2.899629 4.428248e-03 1.258242e-02
## TRAF4 -2.2817052 4.973751e+00 -2.899380 4.431540e-03 1.258876e-02
## ETV3 6.1804590 2.467128e+01 2.898702 4.440502e-03 1.261120e-02
## DYNLL1 -18.5685680 7.980739e+01 -2.898594 4.441932e-03 1.261224e-02
## LDOC1 -0.6466098 1.071736e+00 -2.898279 4.446105e-03 1.262106e-02
## SGMS1 6.4490815 2.585904e+01 2.898103 4.448437e-03 1.262466e-02
## TMEM138 -2.3678890 1.263962e+01 -2.897831 4.452041e-03 1.263044e-02
## ZNF460 0.4660761 1.432244e+00 2.897745 4.453188e-03 1.263044e-02
## MGAT5 7.8000882 4.416082e+01 2.897709 4.453666e-03 1.263044e-02
## R3HDM4 -154.2947501 4.578008e+02 -2.897064 4.462243e-03 1.265173e-02
## SLC25A51 1.4774012 3.039906e+00 2.896358 4.471640e-03 1.267535e-02
## BRD1 -2.2343358 1.482579e+01 -2.895281 4.486010e-03 1.271304e-02
## PCED1B -7.4241968 1.421719e+01 -2.894472 4.496827e-03 1.274065e-02
## ATG13 -16.9210159 1.048043e+02 -2.894141 4.501271e-03 1.275020e-02
## MRPL33 -5.7279407 3.856385e+01 -2.893945 4.503900e-03 1.275460e-02
## TSEN34 -36.1617100 1.151767e+02 -2.893762 4.506343e-03 1.275847e-02
## SC5D 1.9076351 9.730385e+00 2.893579 4.508800e-03 1.276238e-02
## ZDHHC21 1.7909200 5.760158e+00 2.892752 4.519922e-03 1.279081e-02
## ARMC8 8.4167549 4.799737e+01 2.892577 4.522281e-03 1.279443e-02
## HIF1AN 10.8406150 6.708500e+01 2.890697 4.547650e-03 1.286314e-02
## C6orf89 13.7388582 9.686296e+01 2.889529 4.563489e-03 1.290486e-02
## SREK1 6.6482531 3.240577e+01 2.889107 4.569217e-03 1.291798e-02
## C15orf61 -0.4344967 1.005492e+00 -2.889017 4.570438e-03 1.291835e-02
## FGFR1 1.8741320 5.117522e+00 2.888836 4.572897e-03 1.292222e-02
## RGS3 -17.3563313 5.650161e+01 -2.887984 4.584497e-03 1.295191e-02
## DPYSL2 -10.1455406 3.895147e+01 -2.887683 4.588605e-03 1.296043e-02
## PALB2 1.2656960 4.903372e+00 2.887263 4.594342e-03 1.297355e-02
## DHODH -0.8305016 3.417780e+00 -2.887178 4.595500e-03 1.297373e-02
## RC3H1 34.9060499 1.009587e+02 2.886458 4.605345e-03 1.299843e-02
## FOXJ2 6.5141170 3.479118e+01 2.886282 4.607761e-03 1.300215e-02
## SIAE 3.5266164 1.134729e+01 2.886057 4.610840e-03 1.300775e-02
## PGAP1 1.3209627 2.596372e+00 2.885746 4.615103e-03 1.301668e-02
## CPSF3 -3.1211811 2.198405e+01 -2.885193 4.622694e-03 1.303498e-02
## ZNF76 -3.5764532 1.496780e+01 -2.884949 4.626043e-03 1.304133e-02
## KLF5 4.9537601 1.109216e+01 2.884510 4.632091e-03 1.305528e-02
## MYO15B -14.7023186 5.486274e+01 -2.883960 4.639657e-03 1.307349e-02
## PYROXD1 -2.4532480 1.986844e+01 -2.883823 4.641557e-03 1.307532e-02
## TVP23B 6.9461922 3.106555e+01 2.883753 4.642509e-03 1.307532e-02
## ZNF808 2.0592079 6.967464e+00 2.883608 4.644517e-03 1.307787e-02
## MGAT4A 11.9115553 5.895381e+01 2.883141 4.650963e-03 1.309291e-02
## C1orf109 0.8838750 3.256964e+00 2.883037 4.652403e-03 1.309385e-02
## RLF 13.3267865 3.510974e+01 2.882730 4.656643e-03 1.310268e-02
## SLC39A6 4.2429015 2.295276e+01 2.882315 4.662380e-03 1.311437e-02
## ARID5A -34.5810942 6.795398e+01 -2.882270 4.663008e-03 1.311437e-02
## OSBPL7 -3.5532894 7.909496e+00 -2.882108 4.665248e-03 1.311755e-02
## BTBD6 -5.9010034 2.206897e+01 -2.881847 4.668875e-03 1.312464e-02
## NDUFB11 -18.5339140 3.412486e+01 -2.880833 4.682950e-03 1.316109e-02
## GTF2H2 7.7888676 1.818970e+01 2.880226 4.691397e-03 1.318170e-02
## ABHD5 59.4243848 1.507703e+02 2.879746 4.698083e-03 1.319736e-02
## KDM2A 43.5302867 1.963097e+02 2.878491 4.715610e-03 1.324346e-02
## EHD4 -3.6711163 1.952976e+01 -2.877916 4.723658e-03 1.326292e-02
## NRG1 -3.8027370 6.878998e+00 -2.877566 4.728556e-03 1.327171e-02
## NBN 58.9341762 1.330333e+02 2.877533 4.729026e-03 1.327171e-02
## ARMC7 -7.4944216 2.531383e+01 -2.875901 4.751971e-03 1.333010e-02
## ABHD12 -3.6342108 1.046983e+01 -2.875893 4.752079e-03 1.333010e-02
## LAGE3 -2.1322357 3.435749e+00 -2.875115 4.763058e-03 1.335774e-02
## SPSB2 -3.0563259 5.437133e+00 -2.874709 4.768782e-03 1.337063e-02
## IPO9 3.7524435 2.128201e+01 2.874185 4.776201e-03 1.338826e-02
## DHRS13 -34.9518329 7.013825e+01 -2.873568 4.784938e-03 1.340959e-02
## RBBP4 11.3634455 8.173500e+01 2.873467 4.786366e-03 1.341042e-02
## ARHGAP32 0.8699779 2.544693e+00 2.872752 4.796523e-03 1.343570e-02
## DNAJC27 1.2109912 3.945380e+00 2.872496 4.800166e-03 1.344273e-02
## SIT1 -6.6664290 1.382116e+01 -2.871950 4.807931e-03 1.346130e-02
## DAD1 14.4765059 9.216252e+01 2.871362 4.816309e-03 1.348157e-02
## VPS13C 22.9062849 6.096054e+01 2.870746 4.825096e-03 1.350298e-02
## HERC4 16.5715368 6.649899e+01 2.870154 4.833565e-03 1.352003e-02
## PTPN6 -106.8184353 5.268262e+02 -2.870098 4.834370e-03 1.352003e-02
## TK1 4.0583174 5.283466e+00 2.870081 4.834608e-03 1.352003e-02
## TUBB4B -24.2120414 7.236131e+01 -2.869490 4.843080e-03 1.353846e-02
## CLUAP1 -1.6190210 5.147531e+00 -2.869462 4.843480e-03 1.353846e-02
## SCFD2 1.7300420 7.682012e+00 2.869040 4.849531e-03 1.355218e-02
## TRIT1 -1.6439997 7.341735e+00 -2.868818 4.852727e-03 1.355791e-02
## S1PR2 -1.0543651 2.965999e+00 -2.868556 4.856479e-03 1.356520e-02
## STAT5A -36.4380145 1.592304e+02 -2.867942 4.865323e-03 1.358670e-02
## CCNT2 11.6284629 4.794816e+01 2.867396 4.873183e-03 1.360545e-02
## GUCY1A1 3.6089390 6.703931e+00 2.867227 4.875624e-03 1.360723e-02
## POP5 -3.8670706 1.053645e+01 -2.867193 4.876116e-03 1.360723e-02
## THOC2 6.1104426 2.350514e+01 2.866198 4.890478e-03 1.364410e-02
## CIAO2B -10.6849063 2.813526e+01 -2.865294 4.903579e-03 1.367743e-02
## MINDY2 7.3967485 2.203068e+01 2.865177 4.905270e-03 1.367893e-02
## ACSS2 -9.1932777 4.490624e+01 -2.865059 4.906983e-03 1.368049e-02
## FAM86B1 -0.8764505 2.181992e+00 -2.864172 4.919870e-03 1.371320e-02
## KBTBD2 28.2106421 1.072864e+02 2.863853 4.924511e-03 1.372291e-02
## TRIM26 7.9901409 3.837458e+01 2.863167 4.934500e-03 1.374751e-02
## MSH2 2.3386511 9.829185e+00 2.862481 4.944513e-03 1.377218e-02
## UBL5 -43.9246718 1.293483e+02 -2.861162 4.963824e-03 1.382272e-02
## COX7C -45.0618349 1.291261e+02 -2.860912 4.967493e-03 1.382969e-02
## MRPS12 -3.3897373 5.952540e+00 -2.860100 4.979415e-03 1.385963e-02
## H2BC5 11.6539478 1.996329e+01 2.859948 4.981647e-03 1.386258e-02
## ABCE1 6.5635507 2.419615e+01 2.859707 4.985193e-03 1.386920e-02
## CEP135 4.2655527 1.292994e+01 2.859236 4.992138e-03 1.388526e-02
## CFAP251 0.3046600 6.168644e-01 2.858969 4.996079e-03 1.389297e-02
## RCN1 -3.0005126 1.288915e+01 -2.858834 4.998059e-03 1.389521e-02
## TTC33 4.6537239 1.880220e+01 2.858435 5.003953e-03 1.390802e-02
## CFDP1 -4.2085763 2.735743e+01 -2.858252 5.006660e-03 1.390802e-02
## ZNF576 -1.1998947 6.341939e+00 -2.858211 5.007258e-03 1.390802e-02
## RNF24 108.1926966 2.776160e+02 2.858205 5.007356e-03 1.390802e-02
## NPTN 28.5602681 1.041581e+02 2.856169 5.037534e-03 1.398856e-02
## ALPK3 1.6034788 2.586811e+00 2.855689 5.044671e-03 1.400510e-02
## SNRPN -15.9747068 4.635097e+01 -2.854503 5.062344e-03 1.405088e-02
## PXN -137.3390803 5.532081e+02 -2.854399 5.063904e-03 1.405192e-02
## SND1 -12.9798292 6.432781e+01 -2.854010 5.069710e-03 1.406474e-02
## SCRN3 2.3773872 1.065063e+01 2.853472 5.077761e-03 1.408090e-02
## PIK3CG 27.8616196 1.022963e+02 2.853462 5.077909e-03 1.408090e-02
## SUMO3 -8.3029507 4.447507e+01 -2.852904 5.086261e-03 1.410076e-02
## C12orf4 2.9385820 1.173463e+01 2.852515 5.092102e-03 1.411366e-02
## SLC6A16 0.4084253 1.320153e+00 2.852148 5.097607e-03 1.412549e-02
## IWS1 5.8124343 4.263088e+01 2.852072 5.098754e-03 1.412549e-02
## MTA2 -13.0418681 9.407895e+01 -2.851842 5.102217e-03 1.413178e-02
## ZNF582 -0.4114628 1.775558e+00 -2.850624 5.120561e-03 1.417928e-02
## DDX60 78.1052902 9.344242e+01 2.850258 5.126082e-03 1.419125e-02
## MTHFD2 16.0580563 4.943303e+01 2.849381 5.139345e-03 1.422465e-02
## ARHGEF6 26.6290649 1.070178e+02 2.848816 5.147897e-03 1.424500e-02
## UBQLN1 15.2430212 8.366452e+01 2.848666 5.150174e-03 1.424797e-02
## SMU1 6.2640546 6.270923e+01 2.848306 5.155634e-03 1.425975e-02
## GCC1 8.9446089 3.954041e+01 2.847739 5.164244e-03 1.428024e-02
## GPRC5C -0.4312393 7.084544e-01 -2.847220 5.172145e-03 1.429875e-02
## SPATA33 -0.6314186 1.245432e+00 -2.846356 5.185320e-03 1.433183e-02
## UCK2 1.5912703 7.303900e+00 2.846097 5.189274e-03 1.433942e-02
## STAT3 92.6191078 3.502145e+02 2.845658 5.195971e-03 1.435458e-02
## HPS1 -14.4776040 6.547653e+01 -2.845287 5.201658e-03 1.436309e-02
## GTF3C3 3.0741839 1.454921e+01 2.845231 5.202510e-03 1.436309e-02
## WDR82 25.2497492 1.305999e+02 2.845220 5.202684e-03 1.436309e-02
## CHIT1 31.8487345 2.777570e+01 2.844787 5.209306e-03 1.437802e-02
## POU5F1 0.9000512 2.925267e+00 2.844697 5.210695e-03 1.437851e-02
## SATB1 13.0289376 4.867791e+01 2.844352 5.215972e-03 1.438972e-02
## CELF3 0.3289330 7.136636e-01 2.843418 5.230330e-03 1.442598e-02
## DHX9 18.3917228 1.185330e+02 2.843003 5.236707e-03 1.444021e-02
## NMT2 -2.7996137 7.176702e+00 -2.842202 5.249057e-03 1.447090e-02
## ANKRD28 19.2403901 4.109088e+01 2.841917 5.253460e-03 1.447967e-02
## CFLAR 308.7985849 9.755296e+02 2.841046 5.266929e-03 1.451342e-02
## ECHDC2 -2.3014647 5.134585e+00 -2.840920 5.268875e-03 1.451541e-02
## SKIL 13.0392234 3.547515e+01 2.839859 5.285330e-03 1.455737e-02
## TAX1BP3 -7.9348155 2.593053e+01 -2.839748 5.287062e-03 1.455875e-02
## NAA15 3.3914304 1.702195e+01 2.839369 5.292945e-03 1.457157e-02
## HNRNPAB 6.3530497 4.151170e+01 2.838998 5.298716e-03 1.458407e-02
## CAPN7 4.7817137 2.147013e+01 2.838736 5.302802e-03 1.458924e-02
## ZNF292 22.1201287 6.102139e+01 2.838720 5.303054e-03 1.458924e-02
## WIPF1 122.2089136 5.650234e+02 2.837994 5.314363e-03 1.461696e-02
## TRAPPC4 -7.9268810 3.443879e+01 -2.837530 5.321607e-03 1.463332e-02
## VDAC3 8.5535396 8.245638e+01 2.837456 5.322777e-03 1.463332e-02
## ANKFY1 15.8211970 5.898861e+01 2.836879 5.331787e-03 1.465469e-02
## ECHDC1 -8.5482785 5.240248e+01 -2.836759 5.333675e-03 1.465649e-02
## MRPS9 -2.4990391 1.051346e+01 -2.836567 5.336683e-03 1.465852e-02
## TAPT1 4.0818885 2.214571e+01 2.836554 5.336889e-03 1.465852e-02
## TMEM44 0.4043272 1.122166e+00 2.836030 5.345106e-03 1.467769e-02
## MGAT1 -71.9092822 2.801515e+02 -2.835520 5.353108e-03 1.469626e-02
## HSD17B13 0.8155642 1.965186e+00 2.834732 5.365501e-03 1.472381e-02
## AP5B1 79.2502956 2.790455e+02 2.834724 5.365623e-03 1.472381e-02
## CEBPZOS -7.4779553 2.850579e+01 -2.834402 5.370696e-03 1.473432e-02
## ZMYM5 3.8694755 1.542612e+01 2.832492 5.400873e-03 1.481368e-02
## GUCY1B1 4.2187772 1.001657e+01 2.832290 5.404075e-03 1.481904e-02
## CES4A -1.1759052 3.763215e+00 -2.832085 5.407330e-03 1.482453e-02
## PPP1R12B 22.4446924 5.287306e+01 2.831237 5.420785e-03 1.485799e-02
## ATP10D 4.1963785 1.253299e+01 2.830838 5.427137e-03 1.486759e-02
## GGT6 -0.4314880 1.189500e+00 -2.830817 5.427465e-03 1.486759e-02
## GTF2H2C_2 7.4033056 2.246886e+01 2.830767 5.428252e-03 1.486759e-02
## MOB1B 4.4989243 1.889591e+01 2.830701 5.429303e-03 1.486759e-02
## FOXP3 -1.3165171 1.938904e+00 -2.830434 5.433568e-03 1.487584e-02
## TPST1 49.7938552 7.701321e+01 2.829881 5.442375e-03 1.489651e-02
## KTN1 11.9826385 6.916742e+01 2.829166 5.453784e-03 1.492429e-02
## CRIP1 -86.5015201 8.135996e+01 -2.828759 5.460304e-03 1.493869e-02
## CD244 -11.8379403 3.556631e+01 -2.828088 5.471044e-03 1.496462e-02
## INTS2 1.8459172 6.623384e+00 2.827844 5.474949e-03 1.497185e-02
## NEXN 5.6426255 9.894202e+00 2.826786 5.491941e-03 1.501485e-02
## TENT4B 5.3513069 2.079962e+01 2.826580 5.495257e-03 1.502045e-02
## MAP4K1 -12.0917294 2.700362e+01 -2.826424 5.497773e-03 1.502387e-02
## ZBTB33 4.9533017 2.057145e+01 2.826297 5.499820e-03 1.502600e-02
## SLC35E3 5.1584841 2.077680e+01 2.825457 5.513359e-03 1.505952e-02
## THG1L -1.6142887 6.978189e+00 -2.824807 5.523858e-03 1.508472e-02
## JARID2 13.8223269 5.002538e+01 2.824546 5.528076e-03 1.509277e-02
## ZNHIT3 -4.3588127 2.452705e+01 -2.824421 5.530101e-03 1.509482e-02
## SART3 3.6764831 2.322677e+01 2.823694 5.541885e-03 1.512321e-02
## NAXD -2.5169738 1.338206e+01 -2.823588 5.543603e-03 1.512321e-02
## ATP8B4 15.1180570 2.685775e+01 2.823508 5.544900e-03 1.512321e-02
## MYO1A -0.2825746 6.631207e-01 -2.823465 5.545604e-03 1.512321e-02
## SNU13 -15.1916017 5.854534e+01 -2.823117 5.551246e-03 1.513512e-02
## VPS33A 2.7537678 2.945702e+01 2.822950 5.553962e-03 1.513905e-02
## WTIP 0.4080758 2.166025e+00 2.822785 5.556648e-03 1.514289e-02
## CS 8.3138131 6.918905e+01 2.822324 5.564140e-03 1.515982e-02
## ZNF395 -4.5240074 1.756606e+01 -2.821431 5.578688e-03 1.519597e-02
## NAE1 2.3879035 1.552913e+01 2.820385 5.595786e-03 1.523335e-02
## NR6A1 -2.5773479 8.241806e+00 -2.820382 5.595833e-03 1.523335e-02
## CLIP1 27.3222674 7.835296e+01 2.820355 5.596266e-03 1.523335e-02
## PARP4 44.7935499 1.476256e+02 2.820032 5.601553e-03 1.524365e-02
## DERL2 -7.6668540 4.675822e+01 -2.819967 5.602621e-03 1.524365e-02
## DNM3 2.0139131 5.609791e+00 2.819852 5.604502e-03 1.524527e-02
## BID -31.1481592 1.278205e+02 -2.819581 5.608948e-03 1.525073e-02
## PKN2 25.5491440 8.184720e+01 2.819573 5.609078e-03 1.525073e-02
## DSTYK 3.8565432 1.804712e+01 2.818956 5.619198e-03 1.527474e-02
## C20orf27 -14.6483686 2.245078e+01 -2.818463 5.627300e-03 1.529326e-02
## MRPS21 -12.1719328 4.111597e+01 -2.818179 5.631985e-03 1.530248e-02
## SMN1 2.5959867 1.036015e+01 2.817792 5.638353e-03 1.531387e-02
## ZNF197 2.3043630 9.191447e+00 2.817767 5.638757e-03 1.531387e-02
## NFKBIB -4.1633850 1.648650e+01 -2.816862 5.653688e-03 1.535090e-02
## SECISBP2L 9.6190139 3.151118e+01 2.816477 5.660055e-03 1.536467e-02
## PTGS1 49.0432869 1.412529e+02 2.816067 5.666839e-03 1.537881e-02
## ZBED4 2.1028359 1.134551e+01 2.816005 5.667856e-03 1.537881e-02
## VEZF1 14.3544282 7.796185e+01 2.815558 5.675260e-03 1.539538e-02
## CEP120 6.2195948 2.569100e+01 2.815365 5.678459e-03 1.539792e-02
## SEC24B 8.1438191 3.617099e+01 2.815345 5.678793e-03 1.539792e-02
## LSS -3.7217021 1.240258e+01 -2.814755 5.688588e-03 1.541730e-02
## FLII -26.5613187 1.642210e+02 -2.814719 5.689185e-03 1.541730e-02
## FAM71F2 1.0827015 3.086909e+00 2.814679 5.689841e-03 1.541730e-02
## SLC35E4 -0.4583670 9.743732e-01 -2.814482 5.693121e-03 1.542266e-02
## ESF1 1.5006847 5.234544e+00 2.814161 5.698458e-03 1.543360e-02
## CSNK1A1 31.1231891 1.691170e+02 2.814071 5.699955e-03 1.543413e-02
## C11orf68 -15.3323110 4.894142e+01 -2.813985 5.701381e-03 1.543446e-02
## TST -6.7187706 1.558343e+01 -2.813708 5.706000e-03 1.544344e-02
## SLC23A2 4.9227625 1.910793e+01 2.813610 5.707629e-03 1.544384e-02
## TBCK 2.3176350 8.811330e+00 2.813532 5.708925e-03 1.544384e-02
## FANCG 1.8275073 6.806998e+00 2.813465 5.710055e-03 1.544384e-02
## B3GNT2 24.3905251 6.300361e+01 2.812703 5.722760e-03 1.547468e-02
## SHMT1 3.0185374 7.720134e+00 2.812011 5.734326e-03 1.550242e-02
## EIF5A -32.0573965 1.353363e+02 -2.811262 5.746861e-03 1.553276e-02
## CDK16 -8.4051770 2.956962e+01 -2.809054 5.783994e-03 1.562957e-02
## PEF1 -27.2602127 7.664237e+01 -2.808735 5.789370e-03 1.564053e-02
## RNF31 -16.8148778 6.911293e+01 -2.808515 5.793080e-03 1.564699e-02
## MAPRE2 7.1644456 3.949713e+01 2.808351 5.795861e-03 1.565094e-02
## UNC50 4.0696261 2.825608e+01 2.808185 5.798656e-03 1.565492e-02
## MTERF2 -1.1068054 4.866048e+00 -2.807905 5.803396e-03 1.566415e-02
## FAM20B 2.9836352 2.014781e+01 2.807485 5.810503e-03 1.567977e-02
## SREBF2 8.0933681 4.336545e+01 2.806814 5.821877e-03 1.570688e-02
## AP3D1 -5.3065884 3.915788e+01 -2.806188 5.832505e-03 1.573198e-02
## PHPT1 -7.5327753 1.315330e+01 -2.805067 5.851576e-03 1.577983e-02
## NUP107 2.7703277 1.780963e+01 2.804769 5.856660e-03 1.578995e-02
## RTEL1 -1.7477054 5.039526e+00 -2.804686 5.858071e-03 1.579017e-02
## SARNP -22.1323854 6.445111e+01 -2.804202 5.866345e-03 1.580715e-02
## IFITM2 -2264.2050970 5.357986e+03 -2.804146 5.867286e-03 1.580715e-02
## IFIT5 57.0085045 8.400345e+01 2.804052 5.868896e-03 1.580715e-02
## NLRX1 -7.6742349 2.722800e+01 -2.804005 5.869703e-03 1.580715e-02
## SMARCA4 -3.7033280 1.715594e+01 -2.803546 5.877549e-03 1.582468e-02
## PIF1 0.9000870 1.555607e+00 2.803055 5.885952e-03 1.584371e-02
## PIK3R5 47.4990415 2.255393e+02 2.802870 5.889130e-03 1.584867e-02
## SMARCC2 -8.9716112 5.809793e+01 -2.802517 5.895180e-03 1.586135e-02
## ESYT1 -27.9595523 8.448768e+01 -2.802278 5.899288e-03 1.586880e-02
## MTG1 -5.3475751 1.044783e+01 -2.801977 5.904449e-03 1.587521e-02
## TMEM42 -1.9704403 6.129691e+00 -2.801973 5.904531e-03 1.587521e-02
## PHKB 7.9009173 4.623304e+01 2.801905 5.905687e-03 1.587521e-02
## C6orf120 5.7254449 3.054948e+01 2.801668 5.909773e-03 1.588155e-02
## CD24 118.3345614 1.206098e+02 2.801612 5.910721e-03 1.588155e-02
## MAT2A 12.9474971 8.975871e+01 2.800794 5.924808e-03 1.591386e-02
## ABTB1 -243.1781996 5.332241e+02 -2.800758 5.925429e-03 1.591386e-02
## SIRPG -4.7788742 9.555623e+00 -2.800217 5.934767e-03 1.593533e-02
## RAD51D 1.7304084 8.382773e+00 2.800052 5.937608e-03 1.593935e-02
## FNIP1 37.7235093 8.706293e+01 2.799423 5.948483e-03 1.596493e-02
## PARK7 -22.5396908 1.207459e+02 -2.799112 5.953863e-03 1.597575e-02
## HLA-DRA -213.4885152 6.389640e+02 -2.798829 5.958773e-03 1.598353e-02
## UNC93B1 -19.5408913 5.683454e+01 -2.798724 5.960596e-03 1.598353e-02
## SSR2 -54.8504969 3.097936e+02 -2.798691 5.961160e-03 1.598353e-02
## MCM3 7.0477881 3.101750e+01 2.798634 5.962154e-03 1.598353e-02
## NGLY1 6.9040525 4.092783e+01 2.798496 5.964546e-03 1.598633e-02
## TCF4 3.8765627 9.909642e+00 2.798156 5.970450e-03 1.599854e-02
## SRSF9 -21.7788672 1.132605e+02 -2.797906 5.974785e-03 1.600654e-02
## GPRIN1 0.7189047 2.205504e+00 2.796576 5.997929e-03 1.606328e-02
## TUT7 72.9234795 2.176384e+02 2.796533 5.998674e-03 1.606328e-02
## BLVRB -26.8857188 4.367586e+01 -2.796164 6.005105e-03 1.607143e-02
## MLYCD -1.0839081 6.967407e+00 -2.796153 6.005302e-03 1.607143e-02
## OSBPL9 21.8289823 6.144700e+01 2.796126 6.005782e-03 1.607143e-02
## BOLA2B -5.3048279 9.346033e+00 -2.795952 6.008819e-03 1.607344e-02
## ENPP4 6.4280176 1.494631e+01 2.795927 6.009243e-03 1.607344e-02
## DEDD2 -33.2413677 1.291831e+02 -2.795822 6.011084e-03 1.607474e-02
## FAAP24 1.1226792 4.073066e+00 2.795039 6.024762e-03 1.610768e-02
## TRIM3 -0.7605411 3.822182e+00 -2.793959 6.043695e-03 1.615410e-02
## NBPF3 1.8164163 5.432229e+00 2.793894 6.044846e-03 1.615410e-02
## CD46 167.3824228 5.083978e+02 2.793618 6.049692e-03 1.616340e-02
## ZNF416 -0.6675251 2.795505e+00 -2.793539 6.051076e-03 1.616346e-02
## NLGN3 2.2825159 7.157466e+00 2.793311 6.055086e-03 1.617053e-02
## CCDC65 -1.5240830 3.227501e+00 -2.793048 6.059708e-03 1.617923e-02
## NT5DC3 2.3293488 6.803999e+00 2.792731 6.065282e-03 1.619047e-02
## GALNT12 -0.9495583 2.563289e+00 -2.792233 6.074062e-03 1.621026e-02
## IVNS1ABP 83.8233473 2.820156e+02 2.791963 6.078818e-03 1.621930e-02
## MTX1 -24.2151089 6.535539e+01 -2.791003 6.095785e-03 1.626091e-02
## COPZ1 -12.7521620 8.225838e+01 -2.790619 6.102576e-03 1.627537e-02
## PTP4A1 37.3430823 1.037282e+02 2.789722 6.118476e-03 1.631410e-02
## HNRNPM -8.9099089 8.434736e+01 -2.789308 6.125840e-03 1.633006e-02
## CPSF4 -3.9153988 1.513954e+01 -2.789117 6.129230e-03 1.633543e-02
## C1orf162 -84.3282620 2.135242e+02 -2.788956 6.132094e-03 1.633635e-02
## PPM1A 36.9272669 1.457929e+02 2.788943 6.132331e-03 1.633635e-02
## ARV1 1.1003044 7.050759e+00 2.788654 6.137459e-03 1.634634e-02
## DUSP23 -3.7770454 8.907170e+00 -2.788101 6.147321e-03 1.636893e-02
## SOX12 -0.8549579 2.236598e+00 -2.787093 6.165314e-03 1.641316e-02
## PASK -3.5694156 7.467374e+00 -2.786980 6.167338e-03 1.641486e-02
## FHL1 5.8050219 1.411544e+01 2.786770 6.171087e-03 1.641978e-02
## MTURN 23.3609626 8.618507e+01 2.786659 6.173070e-03 1.641978e-02
## DNAJC19 -1.8620803 8.439006e+00 -2.786644 6.173338e-03 1.641978e-02
## ME2 18.9416248 7.556347e+01 2.786524 6.175492e-03 1.642182e-02
## ABHD4 11.4458536 5.751743e+01 2.786077 6.183500e-03 1.643626e-02
## MIEF1 3.4262737 2.204912e+01 2.786066 6.183693e-03 1.643626e-02
## TRDMT1 1.5625966 7.586136e+00 2.785862 6.187344e-03 1.644228e-02
## PRKCE 6.9927664 1.138614e+01 2.785627 6.191562e-03 1.644980e-02
## RAB11A 25.2508289 1.410280e+02 2.784513 6.211572e-03 1.649565e-02
## SNRPB -21.0461704 7.053258e+01 -2.784512 6.211601e-03 1.649565e-02
## CD1C -2.9194374 5.845133e+00 -2.784424 6.213176e-03 1.649614e-02
## NAT14 -0.8636968 1.742984e+00 -2.784260 6.216128e-03 1.650029e-02
## VOPP1 -38.8407557 1.332950e+02 -2.783656 6.227012e-03 1.652548e-02
## CHD1 33.7573471 8.106465e+01 2.782130 6.254606e-03 1.659162e-02
## GPR108 -25.7863552 9.714116e+01 -2.782123 6.254735e-03 1.659162e-02
## PLEKHF1 -2.7173025 4.088781e+00 -2.780408 6.285847e-03 1.666671e-02
## NUDT21 7.0831072 4.767534e+01 2.780385 6.286280e-03 1.666671e-02
## CAMK2G 29.2459863 1.231632e+02 2.780331 6.287255e-03 1.666671e-02
## SLC12A6 95.5547576 2.525683e+02 2.780015 6.293009e-03 1.667823e-02
## INTS13 1.8348958 1.106256e+01 2.779879 6.295476e-03 1.668104e-02
## SCOC 2.2086540 1.593377e+01 2.779442 6.303443e-03 1.669842e-02
## NPLOC4 -11.9204212 7.647469e+01 -2.778680 6.317362e-03 1.673156e-02
## ARID4A 21.0070105 7.010847e+01 2.778525 6.320198e-03 1.673533e-02
## SEC24D 8.7077437 3.715812e+01 2.778216 6.325855e-03 1.674657e-02
## RSKR 0.8112508 3.583314e+00 2.777911 6.331431e-03 1.675759e-02
## PLXNA3 -2.1547391 6.851060e+00 -2.777633 6.336521e-03 1.676732e-02
## POLG2 -0.6590261 4.241741e+00 -2.777486 6.339211e-03 1.677070e-02
## TCEANC2 2.5965306 1.543131e+01 2.777056 6.347100e-03 1.678183e-02
## BRD3OS -1.8164236 7.790026e+00 -2.777042 6.347362e-03 1.678183e-02
## DPH1 -1.7776030 6.084637e+00 -2.776994 6.348240e-03 1.678183e-02
## SLC9A6 3.3940296 1.768685e+01 2.776948 6.349079e-03 1.678183e-02
## STYXL1 -9.8455416 3.175269e+01 -2.776535 6.356672e-03 1.679816e-02
## ITGB3 69.8224756 1.344838e+02 2.776401 6.359142e-03 1.680094e-02
## GNA13 91.2377273 2.550123e+02 2.776193 6.362957e-03 1.680454e-02
## PRDX5 -86.9462249 1.977528e+02 -2.776172 6.363337e-03 1.680454e-02
## MOB2 -12.6138229 3.492555e+01 -2.776032 6.365929e-03 1.680764e-02
## SPTLC1 12.9132995 6.138518e+01 2.775895 6.368446e-03 1.680796e-02
## USP38 10.3058575 3.820104e+01 2.775871 6.368884e-03 1.680796e-02
## CATSPERG -0.2576420 5.568691e-01 -2.775527 6.375213e-03 1.682092e-02
## EPRS1 9.4790097 4.890320e+01 2.775130 6.382548e-03 1.683653e-02
## TLCD4 3.5471462 3.671654e+00 2.774637 6.391639e-03 1.685676e-02
## TOM1 -36.2286045 9.757974e+01 -2.774201 6.399690e-03 1.687424e-02
## ZPR1 -4.5735525 2.470273e+01 -2.774018 6.403083e-03 1.687679e-02
## ABI1 32.4892064 1.304218e+02 2.773974 6.403896e-03 1.687679e-02
## WHAMM 4.6453664 2.010645e+01 2.773918 6.404926e-03 1.687679e-02
## MYH10 0.4693956 1.159752e+00 2.773430 6.413967e-03 1.689551e-02
## C22orf34 -1.9652040 3.797665e+00 -2.773381 6.414879e-03 1.689551e-02
## HAUS6 2.4857776 1.388787e+01 2.773214 6.417964e-03 1.689988e-02
## CD22 -8.2611651 1.799009e+01 -2.772787 6.425895e-03 1.691482e-02
## DLAT 1.8730737 9.339011e+00 2.772755 6.426491e-03 1.691482e-02
## CBX5 4.9248309 2.299816e+01 2.772669 6.428080e-03 1.691525e-02
## PDRG1 -3.6124644 1.468776e+01 -2.772503 6.431163e-03 1.691961e-02
## AFTPH 19.3947702 9.830807e+01 2.772314 6.434681e-03 1.692511e-02
## CCDC82 7.6454063 3.463308e+01 2.772154 6.437660e-03 1.692919e-02
## SHISAL2A -1.1547558 1.921058e+00 -2.771834 6.443602e-03 1.694106e-02
## MIS18BP1 9.1127025 3.257726e+01 2.771262 6.454261e-03 1.696532e-02
## GAN 0.8457862 3.963195e+00 2.771090 6.457465e-03 1.696998e-02
## RAB8B 52.1015912 1.825296e+02 2.770927 6.460507e-03 1.697224e-02
## TDRD7 24.5004964 6.044724e+01 2.770833 6.462261e-03 1.697224e-02
## CSPP1 0.9568632 4.377968e+00 2.770813 6.462618e-03 1.697224e-02
## MEX3C 6.2875092 2.403613e+01 2.770409 6.470160e-03 1.698714e-02
## KPNA5 8.7721274 2.838497e+01 2.770356 6.471155e-03 1.698714e-02
## PFDN6 -4.5477232 1.915355e+01 -2.769608 6.485141e-03 1.702009e-02
## ANKRD40 2.9213143 1.607301e+01 2.768466 6.506543e-03 1.707248e-02
## HEATR1 3.2600257 9.263991e+00 2.768306 6.509557e-03 1.707661e-02
## MICAL1 -60.5098638 2.019733e+02 -2.766922 6.535600e-03 1.714114e-02
## TMEM123 161.8652155 3.200924e+02 2.766761 6.538621e-03 1.714474e-02
## MCTP1 17.7036801 5.051273e+01 2.766695 6.539864e-03 1.714474e-02
## RALGAPA2 49.0204760 1.203591e+02 2.766088 6.551330e-03 1.716920e-02
## HSD17B4 9.5634309 4.753865e+01 2.765949 6.553957e-03 1.716920e-02
## NAV1 1.0892330 2.520998e+00 2.765926 6.554400e-03 1.716920e-02
## DDX6 33.2122331 1.749070e+02 2.765851 6.555808e-03 1.716920e-02
## TMX3 8.3345602 3.815555e+01 2.765818 6.556433e-03 1.716920e-02
## ATRAID -10.9924780 5.035186e+01 -2.765503 6.562382e-03 1.718098e-02
## SCN9A 2.4292678 3.471534e+00 2.764534 6.580740e-03 1.722524e-02
## CPLANE2 -0.3149703 6.914240e-01 -2.764168 6.587695e-03 1.723964e-02
## TMEM241 0.5283211 2.146202e+00 2.763346 6.603316e-03 1.727671e-02
## PPARA 1.6232595 6.965596e+00 2.762830 6.613139e-03 1.729859e-02
## ZDHHC19 -27.1953591 1.671525e+01 -2.762314 6.622975e-03 1.732050e-02
## UGDH 1.3633871 6.331026e+00 2.762181 6.625522e-03 1.732334e-02
## TNKS 3.8153476 1.869459e+01 2.761558 6.637418e-03 1.735062e-02
## PAFAH1B1 24.9441389 1.407413e+02 2.760335 6.660837e-03 1.740800e-02
## NPFF -1.4714101 3.625030e+00 -2.759514 6.676589e-03 1.744533e-02
## CYB5D1 3.6744796 8.488635e+00 2.759300 6.680705e-03 1.745224e-02
## FRY 19.8296239 5.823806e+01 2.759158 6.683434e-03 1.745552e-02
## CRYM 0.9416457 1.360570e+00 2.758563 6.694895e-03 1.748161e-02
## ARMH1 -5.6147234 9.602009e+00 -2.758472 6.696638e-03 1.748231e-02
## PPM1B 21.6172416 8.281630e+01 2.758055 6.704692e-03 1.749948e-02
## LIPT2 -0.3865664 1.254477e+00 -2.757968 6.706364e-03 1.750000e-02
## ZNF223 -0.5354876 1.914829e+00 -2.757870 6.708257e-03 1.750108e-02
## FUT4 7.8771524 1.925956e+01 2.757311 6.719049e-03 1.752538e-02
## BORA 1.1867108 5.074057e+00 2.757004 6.724988e-03 1.753397e-02
## HBP1 44.6422573 1.536565e+02 2.756988 6.725296e-03 1.753397e-02
## MAP3K5 29.7492706 9.358860e+01 2.756519 6.734379e-03 1.755379e-02
## PKP4 5.5891375 1.898969e+01 2.756196 6.740637e-03 1.756624e-02
## AKAP9 8.6018634 3.393378e+01 2.755932 6.745748e-03 1.757570e-02
## GPBP1L1 32.5016307 1.587829e+02 2.755851 6.747320e-03 1.757593e-02
## PLAAT4 -33.9737697 6.513321e+01 -2.755305 6.757931e-03 1.759971e-02
## CDYL 1.5239562 1.183027e+01 2.754770 6.768336e-03 1.762293e-02
## VPS36 7.1381996 3.787610e+01 2.754297 6.777539e-03 1.764302e-02
## KDM4B -17.1264753 6.111368e+01 -2.753935 6.784594e-03 1.765751e-02
## EXOC8 11.8013850 4.223895e+01 2.753833 6.786587e-03 1.765882e-02
## ZSCAN9 0.9910550 4.782326e+00 2.752899 6.804819e-03 1.770238e-02
## TSPYL4 2.3599219 1.031825e+01 2.752755 6.807636e-03 1.770367e-02
## COL18A1 -19.2792072 3.524071e+01 -2.752721 6.808301e-03 1.770367e-02
## TOMM20 -11.0174494 6.520279e+01 -2.751790 6.826548e-03 1.774723e-02
## OSBPL11 24.6630039 8.639420e+01 2.751322 6.835726e-03 1.776719e-02
## TESK2 5.1884187 1.999311e+01 2.750105 6.859658e-03 1.782549e-02
## CALCOCO2 21.0563090 1.120548e+02 2.749903 6.863638e-03 1.783193e-02
## FAM126B 102.6905417 2.257905e+02 2.749220 6.877114e-03 1.785862e-02
## CCNK 7.8602714 4.080686e+01 2.749103 6.879414e-03 1.785862e-02
## STRN 16.5192293 5.637887e+01 2.749045 6.880568e-03 1.785862e-02
## FUZ -2.1258574 6.359326e+00 -2.749044 6.880592e-03 1.785862e-02
## KIAA0319L 27.3562434 1.067191e+02 2.749001 6.881442e-03 1.785862e-02
## BBOF1 0.6550050 1.678686e+00 2.748792 6.885575e-03 1.786544e-02
## RBIS -7.7790536 2.578783e+01 -2.746881 6.923429e-03 1.795973e-02
## ALDH18A1 2.8037833 9.977832e+00 2.746344 6.934097e-03 1.798347e-02
## BUD13 -2.9193032 2.442742e+01 -2.746107 6.938818e-03 1.799178e-02
## CENPX -4.1182102 8.374589e+00 -2.745278 6.955330e-03 1.803065e-02
## TAP2 65.0855411 1.655187e+02 2.744351 6.973860e-03 1.807246e-02
## ATP1A1 -26.4665135 1.653623e+02 -2.744318 6.974508e-03 1.807246e-02
## DDHD1 4.2990468 1.583248e+01 2.744027 6.980342e-03 1.808363e-02
## ERO1B 2.2452120 1.353535e+01 2.743417 6.992554e-03 1.811131e-02
## SLFN14 1.3120382 3.494918e+00 2.742967 7.001576e-03 1.812975e-02
## ENTPD5 1.2329024 5.403470e+00 2.742910 7.002730e-03 1.812975e-02
## CUL2 3.1410838 2.219729e+01 2.742434 7.012275e-03 1.815050e-02
## KCNK5 0.9645530 1.340515e+00 2.741766 7.025721e-03 1.818133e-02
## STK40 -43.2841100 1.975066e+02 -2.741416 7.032760e-03 1.819376e-02
## KAZN 8.6470236 1.601950e+01 2.741375 7.033591e-03 1.819376e-02
## BTBD3 1.3487952 4.210206e+00 2.741018 7.040793e-03 1.820842e-02
## RCL1 1.7577068 4.011113e+00 2.740846 7.044255e-03 1.821340e-02
## SEC23A 9.5665019 3.955392e+01 2.740469 7.051875e-03 1.822913e-02
## CREBBP 30.0573310 1.134018e+02 2.739588 7.069674e-03 1.827116e-02
## ZNF835 -0.2118887 4.630805e-01 -2.739377 7.073963e-03 1.827826e-02
## GRK5 5.0130327 3.155185e+01 2.738685 7.087986e-03 1.831050e-02
## PPP2R5A 69.9584784 2.511935e+02 2.738336 7.095075e-03 1.832334e-02
## NPAT 4.2450893 1.584570e+01 2.738288 7.096046e-03 1.832334e-02
## RBBP9 1.1416031 5.171973e+00 2.737493 7.112217e-03 1.836110e-02
## ARHGEF19 -1.4206476 3.418552e+00 -2.737072 7.120792e-03 1.837924e-02
## MTRNR2L10 -20.1430853 4.819139e+01 -2.736616 7.130093e-03 1.839924e-02
## BPI 86.3239234 8.152870e+01 2.735970 7.143276e-03 1.842877e-02
## KCTD13 -1.8581571 8.575395e+00 -2.735835 7.146029e-03 1.842877e-02
## RHOBTB2 -2.2441986 7.848496e+00 -2.735803 7.146681e-03 1.842877e-02
## SMAD4 8.8410257 5.109182e+01 2.735751 7.147752e-03 1.842877e-02
## RASA2 21.8569257 7.043974e+01 2.735557 7.151725e-03 1.843500e-02
## EXOSC4 -10.0160217 8.740912e+00 -2.735164 7.159769e-03 1.845131e-02
## TIMM50 -5.7503351 1.912518e+01 -2.735044 7.162220e-03 1.845131e-02
## CCDC138 0.2788754 1.137407e+00 2.735020 7.162717e-03 1.845131e-02
## VPS26C 10.4779406 5.577481e+01 2.734544 7.172471e-03 1.847242e-02
## SERTAD3 -9.0425731 3.845581e+01 -2.733980 7.184049e-03 1.849822e-02
## SH3BP2 -39.5689979 2.169452e+02 -2.733647 7.190893e-03 1.851128e-02
## ZNF638 19.2370989 1.025984e+02 2.733581 7.192241e-03 1.851128e-02
## ZC3HAV1 49.3039316 1.424413e+02 2.733395 7.196073e-03 1.851713e-02
## RBM25 20.3297806 9.309987e+01 2.732732 7.209723e-03 1.854823e-02
## OXCT1 3.3712195 1.213257e+01 2.732626 7.211908e-03 1.854982e-02
## AZI2 20.6508903 5.484694e+01 2.732104 7.222671e-03 1.857348e-02
## HLA-DQA1 -17.6147677 3.815829e+01 -2.731929 7.226295e-03 1.857877e-02
## GPANK1 -8.9787081 3.499910e+01 -2.731468 7.235822e-03 1.859923e-02
## IPO7 8.1033287 2.954097e+01 2.731322 7.238837e-03 1.860295e-02
## ZNF850 0.3643555 1.992499e+00 2.730896 7.247646e-03 1.862155e-02
## SLC26A2 2.2718294 9.960958e+00 2.730138 7.263374e-03 1.865792e-02
## C1orf50 -2.4213611 9.110777e+00 -2.730017 7.265877e-03 1.866031e-02
## TAPBPL -12.2144738 3.829578e+01 -2.729361 7.279499e-03 1.869125e-02
## PARD3 1.4292540 3.609685e+00 2.729232 7.282188e-03 1.869410e-02
## OMG 2.4826611 4.402234e+00 2.728845 7.290231e-03 1.871070e-02
## CCDC15 0.3965720 1.057565e+00 2.728049 7.306834e-03 1.874925e-02
## PDAP1 -12.6135750 7.026995e+01 -2.727515 7.317976e-03 1.877378e-02
## CRLF3 31.7388639 1.122039e+02 2.727307 7.322321e-03 1.878087e-02
## ELOVL3 0.6893803 1.462435e+00 2.726760 7.333767e-03 1.880616e-02
## PPIE -7.9753664 2.710814e+01 -2.726392 7.341457e-03 1.882181e-02
## DGKH 23.7038289 2.303035e+01 2.725725 7.355463e-03 1.885364e-02
## NPEPPS 45.2204702 1.485120e+02 2.725320 7.363953e-03 1.887132e-02
## RMND5A 21.5997149 8.317677e+01 2.724338 7.384615e-03 1.892018e-02
## ZNF611 2.6232493 8.239436e+00 2.723873 7.394412e-03 1.894119e-02
## CASR 1.4340281 5.321598e+00 2.723593 7.400329e-03 1.895226e-02
## KCTD20 23.5845113 1.076263e+02 2.723428 7.403796e-03 1.895656e-02
## PPM1H 1.6528340 4.843851e+00 2.723362 7.405206e-03 1.895656e-02
## BAIAP2 -1.4391113 3.930960e+00 -2.723083 7.411100e-03 1.896755e-02
## NEGR1 0.5352625 2.112816e+00 2.722204 7.429691e-03 1.901103e-02
## SLC46A2 -3.6898325 9.503168e+00 -2.722006 7.433875e-03 1.901520e-02
## DGLUCY 19.2997559 9.082943e+01 2.721975 7.434527e-03 1.901520e-02
## LRRCC1 0.8956144 3.115080e+00 2.721882 7.436513e-03 1.901618e-02
## NSMCE3 -2.8144705 1.470593e+01 -2.721730 7.439721e-03 1.902028e-02
## ZMAT3 3.7805861 2.203178e+01 2.721403 7.446671e-03 1.903395e-02
## IFI27L1 2.2879450 4.431149e+00 2.720630 7.463085e-03 1.906881e-02
## TSPAN2 30.0571601 6.673063e+01 2.720609 7.463527e-03 1.906881e-02
## PAPLN 2.3883817 5.702490e+00 2.720398 7.468029e-03 1.907621e-02
## EFCAB12 1.2520659 2.454177e+00 2.719900 7.478631e-03 1.909917e-02
## GEMIN8 -1.2697830 4.973845e+00 -2.719405 7.489191e-03 1.912202e-02
## BICDL1 -2.8960303 6.473885e+00 -2.719108 7.495524e-03 1.913407e-02
## ARRB2 -315.8135645 1.097418e+03 -2.718769 7.502764e-03 1.914382e-02
## CARMIL1 0.6244415 1.526675e+00 2.718639 7.505545e-03 1.914382e-02
## FAM120A 29.7364356 1.535071e+02 2.718619 7.505958e-03 1.914382e-02
## SH2D2A -4.4908124 8.030250e+00 -2.718552 7.507406e-03 1.914382e-02
## AMN1 9.4017693 2.692241e+01 2.718551 7.507413e-03 1.914382e-02
## GAPDH -915.8569617 2.151126e+03 -2.718244 7.513987e-03 1.915647e-02
## PDPK1 19.4544159 6.653772e+01 2.717881 7.521754e-03 1.916792e-02
## ZNF468 3.0135835 1.291771e+01 2.717843 7.522566e-03 1.916792e-02
## VPS54 8.0036315 3.189275e+01 2.717808 7.523328e-03 1.916792e-02
## USP9X 29.7052981 1.098897e+02 2.716895 7.542897e-03 1.921365e-02
## GOPC 4.4669503 2.275215e+01 2.716694 7.547220e-03 1.922053e-02
## STAU1 11.3243616 6.861135e+01 2.716505 7.551286e-03 1.922676e-02
## ASB6 -2.7077710 2.012116e+01 -2.716333 7.554967e-03 1.923200e-02
## GCLC 2.9357107 1.331350e+01 2.716139 7.559145e-03 1.923851e-02
## LRRC75A -29.8563913 5.610602e+01 -2.716017 7.561765e-03 1.923967e-02
## GCSH 0.7956870 2.159640e+00 2.715967 7.562847e-03 1.923967e-02
## MRPL12 -6.4968251 1.237536e+01 -2.715743 7.567681e-03 1.924784e-02
## RABL2A -0.7669937 3.496864e+00 -2.715467 7.573612e-03 1.925880e-02
## AMMECR1 1.2227102 5.085063e+00 2.714714 7.589872e-03 1.929601e-02
## NOP9 -3.6372395 3.665590e+01 -2.713908 7.607285e-03 1.933613e-02
## POLR2C -9.6331458 6.906363e+01 -2.713738 7.610968e-03 1.934135e-02
## ZNF100 3.7254581 1.207066e+01 2.712928 7.628519e-03 1.938180e-02
## GALE -1.5320697 6.604650e+00 -2.712616 7.635293e-03 1.939485e-02
## ARL14EP -2.9226583 1.401954e+01 -2.712296 7.642234e-03 1.940833e-02
## COPS6 -7.6094883 3.888161e+01 -2.711951 7.649738e-03 1.941914e-02
## PIP4P2 32.5726275 1.038930e+02 2.711948 7.649809e-03 1.941914e-02
## VPS45 -3.8606406 1.936041e+01 -2.711874 7.651403e-03 1.941914e-02
## MRPS26 -2.6304738 7.574787e+00 -2.711264 7.664701e-03 1.944873e-02
## ZNF652 19.3095405 8.422580e+01 2.710560 7.680037e-03 1.948347e-02
## ZNF329 -1.3721735 5.920480e+00 -2.710401 7.683512e-03 1.948812e-02
## ENDOD1 7.8842027 2.710927e+01 2.710300 7.685719e-03 1.948955e-02
## ZFAND5 73.3976762 2.388022e+02 2.709917 7.694099e-03 1.950663e-02
## PTTG1 6.0904235 9.821735e+00 2.709822 7.696174e-03 1.950772e-02
## ABCG1 13.8679232 3.368594e+01 2.709661 7.699683e-03 1.951244e-02
## RNF145 36.5246850 1.378634e+02 2.709209 7.709585e-03 1.953336e-02
## RRAGD 15.4018562 5.694162e+01 2.708872 7.716962e-03 1.954413e-02
## SCAF4 2.1583997 1.302500e+01 2.708855 7.717338e-03 1.954413e-02
## NUDT18 -6.1409045 1.225316e+01 -2.708789 7.718777e-03 1.954413e-02
## ZNF213 -1.6354467 6.368852e+00 -2.708591 7.723117e-03 1.955042e-02
## DVL3 4.8984149 3.473005e+01 2.708526 7.724559e-03 1.955042e-02
## SLC15A2 1.9267988 8.377752e+00 2.708224 7.731188e-03 1.956302e-02
## SEL1L3 29.0985351 6.457743e+01 2.707960 7.736975e-03 1.957349e-02
## ZRANB3 0.3174147 1.510941e+00 2.707731 7.742016e-03 1.958207e-02
## FKBP9 3.2136326 8.639116e+00 2.706464 7.769908e-03 1.964842e-02
## ZER1 -11.0787806 4.875429e+01 -2.705921 7.781895e-03 1.967454e-02
## PRRT4 3.7294065 3.160280e+00 2.705792 7.784745e-03 1.967755e-02
## NSUN2 5.1102180 2.688126e+01 2.705608 7.788826e-03 1.968367e-02
## SCAF8 9.2852446 4.052256e+01 2.705333 7.794900e-03 1.969483e-02
## ALPL -380.2717153 7.099232e+02 -2.704835 7.805926e-03 1.971848e-02
## SPC24 1.6253742 2.788181e+00 2.704337 7.816959e-03 1.974215e-02
## PHF2 8.9012524 3.990543e+01 2.703891 7.826863e-03 1.976295e-02
## ZNF280C 0.4264786 1.340856e+00 2.703630 7.832647e-03 1.977335e-02
## BBS7 1.0471419 4.894015e+00 2.703009 7.846455e-03 1.980252e-02
## DPH3P1 0.4643935 1.590977e+00 2.702961 7.847540e-03 1.980252e-02
## SLCO4C1 14.6663336 3.220046e+01 2.702247 7.863442e-03 1.983842e-02
## PWWP3A -1.5084150 7.168334e+00 -2.701973 7.869543e-03 1.984959e-02
## ATP6V0A2 2.1462794 1.695438e+01 2.701263 7.885405e-03 1.988537e-02
## TMEM80 -2.4463297 1.341032e+01 -2.701044 7.890298e-03 1.989348e-02
## MB21D2 -0.6516131 1.437332e+00 -2.700468 7.903192e-03 1.992175e-02
## FBXW8 1.1737295 3.216289e+00 2.699238 7.930787e-03 1.998707e-02
## CYSTM1 -156.8740525 1.942429e+02 -2.699141 7.932976e-03 1.998834e-02
## MBD5 2.0404222 9.170422e+00 2.698737 7.942067e-03 2.000699e-02
## PICK1 -2.9443686 9.753561e+00 -2.698193 7.954295e-03 2.003354e-02
## SLC25A38 -5.1034648 1.705997e+01 -2.697177 7.977230e-03 2.008704e-02
## TRANK1 49.7582519 1.464117e+02 2.696573 7.990894e-03 2.011717e-02
## TMEM120B -1.9290643 7.747859e+00 -2.695434 8.016686e-03 2.017782e-02
## KRTCAP3 -0.2319171 5.837618e-01 -2.695325 8.019171e-03 2.017979e-02
## PRKAB2 2.8594462 1.409569e+01 2.694693 8.033514e-03 2.021160e-02
## LIAS -0.8215452 6.398663e+00 -2.694161 8.045614e-03 2.023775e-02
## DBI -16.7189902 9.614689e+01 -2.693957 8.050268e-03 2.024516e-02
## DDX60L 141.7145148 3.287047e+02 2.693799 8.053875e-03 2.024994e-02
## CD8B -17.6160340 2.716239e+01 -2.692506 8.083391e-03 2.031984e-02
## VPS9D1 -27.1710753 5.384773e+01 -2.691800 8.099535e-03 2.035611e-02
## YLPM1 3.1018234 1.652196e+01 2.691717 8.101443e-03 2.035659e-02
## TRMT112 -13.2330566 5.643521e+01 -2.691625 8.103547e-03 2.035757e-02
## TRAF3IP3 -29.5202200 1.618663e+02 -2.691407 8.108550e-03 2.036582e-02
## STAG2 67.3447600 2.308170e+02 2.690955 8.118903e-03 2.038669e-02
## FAM189B -1.5571781 6.273706e+00 -2.690895 8.120296e-03 2.038669e-02
## ORC4 7.4469015 4.620457e+01 2.690816 8.122102e-03 2.038691e-02
## TACSTD2 4.0133690 4.273694e+00 2.690274 8.134560e-03 2.041318e-02
## MS4A3 55.3475481 5.048592e+01 2.690211 8.136012e-03 2.041318e-02
## DOP1A 2.9201222 9.170055e+00 2.689802 8.145425e-03 2.043248e-02
## PYCR3 -0.9010786 1.437874e+00 -2.689626 8.149466e-03 2.043829e-02
## EPHB1 4.4111177 1.101810e+01 2.689303 8.156915e-03 2.045265e-02
## NBPF1 2.7413591 8.137959e+00 2.688802 8.168460e-03 2.047409e-02
## TCF7 -24.0305866 4.601554e+01 -2.688782 8.168919e-03 2.047409e-02
## PTAFR -125.3009488 5.063361e+02 -2.688601 8.173112e-03 2.048027e-02
## TANK 39.8184319 1.281511e+02 2.688394 8.177898e-03 2.048793e-02
## SEMA4D 69.6814512 3.121918e+02 2.687579 8.196736e-03 2.052429e-02
## IRF5 -14.1752489 5.233745e+01 -2.687549 8.197444e-03 2.052429e-02
## ZDHHC14 -0.5505150 1.524684e+00 -2.687542 8.197602e-03 2.052429e-02
## VSIG10 3.8784137 6.069372e+00 2.686784 8.215173e-03 2.056394e-02
## JDP2 26.7050854 7.230123e+01 2.686604 8.219333e-03 2.056753e-02
## NOP16 -1.5585522 6.223517e+00 -2.686572 8.220076e-03 2.056753e-02
## NOTCH2 90.4075556 2.724189e+02 2.686089 8.231300e-03 2.059127e-02
## KIF27 15.5920593 2.845127e+01 2.685308 8.249473e-03 2.063238e-02
## ECI2 -3.7518527 1.333330e+01 -2.684873 8.259603e-03 2.065336e-02
## CHST2 -10.9117779 2.239104e+01 -2.684685 8.263989e-03 2.065997e-02
## PSPH 1.9179237 4.751889e+00 2.684501 8.268282e-03 2.066456e-02
## RINT1 1.3763621 9.476999e+00 2.684457 8.269308e-03 2.066456e-02
## DUSP13 2.5986828 3.363361e+00 2.683751 8.285802e-03 2.069848e-02
## MIGA1 1.5031425 7.134786e+00 2.683727 8.286373e-03 2.069848e-02
## TAGAP 94.8052597 2.715670e+02 2.683278 8.296863e-03 2.072032e-02
## ISOC1 2.1542475 7.637516e+00 2.682096 8.324569e-03 2.078437e-02
## CHMP5 68.7652708 1.664297e+02 2.682035 8.326015e-03 2.078437e-02
## EXOSC1 -4.0613418 1.979221e+01 -2.681788 8.331805e-03 2.079444e-02
## COA1 5.1806913 2.183920e+01 2.681234 8.344837e-03 2.082259e-02
## FNBP4 8.1175089 3.836534e+01 2.681100 8.348000e-03 2.082610e-02
## MLLT11 0.6324087 2.757407e+00 2.680995 8.350471e-03 2.082788e-02
## SPTLC2 86.6374691 2.368614e+02 2.680826 8.354438e-03 2.083010e-02
## PPM1K 10.1321676 2.537856e+01 2.680808 8.354873e-03 2.083010e-02
## TRMT10A 0.9605307 4.627912e+00 2.680335 8.366018e-03 2.085351e-02
## GOLPH3L 4.3177602 1.486673e+01 2.679813 8.378343e-03 2.087984e-02
## HMGB2 361.6332609 7.559518e+02 2.678415 8.411424e-03 2.095788e-02
## H3C6 2.3273720 4.574164e+00 2.678274 8.414749e-03 2.096176e-02
## TMEM218 -1.4259058 9.703013e+00 -2.678122 8.418356e-03 2.096634e-02
## PRTFDC1 0.5802918 1.277977e+00 2.677818 8.425571e-03 2.097990e-02
## UACA 1.0443212 3.029000e+00 2.677423 8.434952e-03 2.099271e-02
## NT5C3A 57.7716164 1.339374e+02 2.677384 8.435895e-03 2.099271e-02
## OAS1 196.7017568 2.445976e+02 2.677378 8.436025e-03 2.099271e-02
## FAM160B1 29.2664981 9.024988e+01 2.676924 8.446821e-03 2.101517e-02
## NDUFAF7 -2.3088407 1.187214e+01 -2.676624 8.453959e-03 2.102851e-02
## BEND5 -0.3772447 8.350352e-01 -2.676153 8.465187e-03 2.105203e-02
## POLR2J2 2.4696784 8.874426e+00 2.675711 8.475719e-03 2.107380e-02
## WDR77 -3.0003661 1.618780e+01 -2.674985 8.493076e-03 2.111253e-02
## RBMS1 52.8106605 1.663695e+02 2.674567 8.503064e-03 2.113293e-02
## COX18 1.2890663 1.143435e+01 2.674406 8.506914e-03 2.113404e-02
## ZNF397 6.2955284 3.295403e+01 2.674400 8.507077e-03 2.113404e-02
## C8orf58 -1.6225199 6.774849e+00 -2.674283 8.509880e-03 2.113611e-02
## TAF1D 2.9159268 1.788070e+01 2.674216 8.511473e-03 2.113611e-02
## TMEM243 -2.1182077 1.558741e+01 -2.673135 8.537405e-03 2.119607e-02
## LAMTOR1 -71.2579929 2.472719e+02 -2.672561 8.551200e-03 2.122468e-02
## CST7 -295.5998077 4.633194e+02 -2.672507 8.552509e-03 2.122468e-02
## SACM1L 11.4515458 5.677837e+01 2.671754 8.570637e-03 2.126245e-02
## P3H4 -0.6122924 1.667944e+00 -2.671671 8.572639e-03 2.126245e-02
## MITF 0.8982168 3.186825e+00 2.671652 8.573104e-03 2.126245e-02
## JUN 5.3325567 1.295628e+01 2.671550 8.575557e-03 2.126408e-02
## PORCN -1.2433950 4.422878e+00 -2.671430 8.578458e-03 2.126683e-02
## FCHO2 19.2923757 4.642645e+01 2.671028 8.588151e-03 2.128634e-02
## SIRT5 9.9704538 1.964690e+01 2.670955 8.589919e-03 2.128634e-02
## PEX11B -2.9503357 2.087471e+01 -2.670807 8.593505e-03 2.129078e-02
## FLT1 2.2282088 4.549040e+00 2.670366 8.604158e-03 2.131272e-02
## ZNF24 23.9236967 1.078281e+02 2.670187 8.608483e-03 2.131795e-02
## TSPAN33 -18.4304729 4.558144e+01 -2.670130 8.609863e-03 2.131795e-02
## KCTD18 2.7156731 1.629534e+01 2.669554 8.623832e-03 2.134658e-02
## DTNBP1 -6.3233721 2.669733e+01 -2.669504 8.625025e-03 2.134658e-02
## SIPA1L1 18.9907533 7.976661e+01 2.669005 8.637150e-03 2.137213e-02
## MLH1 2.5797254 1.870455e+01 2.668663 8.645438e-03 2.138817e-02
## IFI27L2 -12.8825245 2.122706e+01 -2.668246 8.655584e-03 2.140540e-02
## FN3KRP -2.4092952 9.358461e+00 -2.668228 8.656012e-03 2.140540e-02
## SUGP2 7.5211038 4.621708e+01 2.668129 8.658433e-03 2.140692e-02
## RAB21 19.9315874 8.878515e+01 2.668017 8.661148e-03 2.140917e-02
## PIK3CA 16.0968020 5.873495e+01 2.667521 8.673226e-03 2.143456e-02
## MRPS18A -7.3652681 2.013211e+01 -2.666811 8.690542e-03 2.147288e-02
## SNX1 20.3328185 1.324886e+02 2.666554 8.696828e-03 2.148394e-02
## H2BC12 23.6458659 7.443029e+01 2.664366 8.750415e-03 2.161181e-02
## DRAM2 -8.0919399 5.342142e+01 -2.663579 8.769770e-03 2.165510e-02
## CBX6 -7.5291672 3.779113e+01 -2.663107 8.781414e-03 2.167934e-02
## NUDCD1 1.3169507 7.171650e+00 2.663017 8.783626e-03 2.168029e-02
## RAB39B 1.5660490 6.234750e+00 2.662783 8.789379e-03 2.168998e-02
## CENPQ 1.0218821 3.905702e+00 2.662515 8.796001e-03 2.170180e-02
## CTDSP2 76.9681747 3.324591e+02 2.661902 8.811145e-03 2.173465e-02
## FCGR3A 311.6606455 9.488448e+02 2.660873 8.836621e-03 2.179296e-02
## PXYLP1 12.1412527 2.353962e+01 2.659353 8.874360e-03 2.188148e-02
## GOLGA8N 3.2534663 1.085017e+01 2.659248 8.876957e-03 2.188333e-02
## KIAA0319 4.7380894 1.110885e+01 2.659174 8.878819e-03 2.188337e-02
## ACVR2A -1.1673789 3.539209e+00 -2.658735 8.889731e-03 2.190572e-02
## FAM104B -0.9704899 5.192011e+00 -2.658518 8.895143e-03 2.191450e-02
## CENPC 3.6925378 1.437690e+01 2.657513 8.920239e-03 2.197176e-02
## THAP6 2.6651801 1.172890e+01 2.655914 8.960295e-03 2.206584e-02
## HSD17B7 1.3834606 1.025720e+01 2.654908 8.985553e-03 2.212345e-02
## CABLES2 0.8700597 5.607016e+00 2.654652 8.992009e-03 2.213475e-02
## IFIH1 54.0066292 7.607794e+01 2.654303 9.000785e-03 2.215175e-02
## JAK1 74.6283080 3.273323e+02 2.653859 9.011982e-03 2.217143e-02
## ASB1 -2.7211903 2.034317e+01 -2.653838 9.012518e-03 2.217143e-02
## TREX1 -14.2537116 2.155944e+01 -2.653740 9.014988e-03 2.217291e-02
## PRPSAP1 2.8059943 1.801430e+01 2.653327 9.025418e-03 2.219396e-02
## NUP93 -3.4132830 1.742790e+01 -2.652957 9.034780e-03 2.221237e-02
## PRMT9 1.3372230 6.298467e+00 2.651455 9.072818e-03 2.230127e-02
## THOC5 -20.6881859 8.236836e+01 -2.650992 9.084568e-03 2.232552e-02
## ROMO1 -6.2858859 1.096683e+01 -2.650350 9.100899e-03 2.236102e-02
## CANX 30.9861379 1.956729e+02 2.650056 9.108383e-03 2.237478e-02
## TRIM38 49.7784153 1.433815e+02 2.649961 9.110820e-03 2.237613e-02
## TARDBP 9.2629204 8.104648e+01 2.649022 9.134768e-03 2.243030e-02
## CDKN2AIP 3.7103131 2.376953e+01 2.648776 9.141041e-03 2.244106e-02
## UBFD1 2.4328692 1.061324e+01 2.647945 9.162313e-03 2.248862e-02
## AK4 0.8995088 2.908255e+00 2.647721 9.168046e-03 2.249804e-02
## ABI2 2.1950543 7.786202e+00 2.647368 9.177102e-03 2.251560e-02
## TEF -1.5152454 3.927073e+00 -2.646861 9.190092e-03 2.253902e-02
## CNOT3 -7.0307658 3.386693e+01 -2.646848 9.190448e-03 2.253902e-02
## NUP85 -2.8537000 2.246862e+01 -2.646668 9.195056e-03 2.254566e-02
## NRROS -3.0755068 1.161965e+01 -2.646109 9.209432e-03 2.257624e-02
## ARG2 1.5086781 3.299904e+00 2.645811 9.217101e-03 2.259037e-02
## MANSC1 53.7331213 1.303586e+02 2.644772 9.243870e-03 2.265130e-02
## USP47 7.8303958 4.739430e+01 2.644671 9.246482e-03 2.265302e-02
## GALM 22.4259310 3.332247e+01 2.644465 9.251798e-03 2.266136e-02
## SLC22A1 3.3576044 7.523701e+00 2.644089 9.261528e-03 2.268051e-02
## CTDSPL 7.2511052 2.087581e+01 2.643810 9.268747e-03 2.269350e-02
## RNASE1 11.5087794 1.575656e+01 2.643594 9.274326e-03 2.270248e-02
## NCF4 -178.5097585 5.687098e+02 -2.643261 9.282951e-03 2.271890e-02
## FAM193A 2.9958567 1.891574e+01 2.643106 9.286972e-03 2.272405e-02
## TPP1 37.9112205 2.078114e+02 2.642814 9.294561e-03 2.273793e-02
## MFSD14B 58.0816289 1.377446e+02 2.642329 9.307133e-03 2.276399e-02
## ECPAS 8.3410114 5.179794e+01 2.641811 9.320607e-03 2.278818e-02
## TMED8 30.4983020 6.825837e+01 2.641801 9.320867e-03 2.278818e-02
## TCEAL4 -1.6303660 7.000191e+00 -2.641714 9.323121e-03 2.278900e-02
## MTERF4 -2.2381917 1.346292e+01 -2.641421 9.330751e-03 2.280295e-02
## FBN2 3.3638739 8.114657e+00 2.640703 9.349449e-03 2.284394e-02
## B4GALNT2 2.2122145 5.062191e+00 2.640117 9.364757e-03 2.287663e-02
## FUT10 0.6960986 1.775982e+00 2.639536 9.379930e-03 2.290897e-02
## RAPGEF2 16.8883335 5.571680e+01 2.639403 9.383421e-03 2.291278e-02
## ACTR8 1.3602248 1.325107e+01 2.636776 9.452366e-03 2.307638e-02
## CTSC -64.9385116 1.944628e+02 -2.636626 9.456317e-03 2.308128e-02
## ZNF425 0.4474862 1.260547e+00 2.636549 9.458354e-03 2.308150e-02
## ZSCAN12 0.7023077 1.838900e+00 2.636357 9.463405e-03 2.308907e-02
## COX8A -14.0858823 4.517830e+01 -2.636263 9.465897e-03 2.309040e-02
## MAN1C1 -2.0838782 5.655100e+00 -2.636134 9.469294e-03 2.309394e-02
## ATP5F1E -148.6353472 4.871762e+02 -2.634778 9.505121e-03 2.317655e-02
## SMURF1 4.5310854 1.848964e+01 2.634324 9.517151e-03 2.320111e-02
## ZNF888 0.8686735 2.734716e+00 2.633283 9.544775e-03 2.326149e-02
## TXNIP 2553.2877016 6.352420e+03 2.633243 9.545841e-03 2.326149e-02
## DPM2 -9.5060728 1.847944e+01 -2.632573 9.563667e-03 2.330014e-02
## CDC23 2.3930212 1.199490e+01 2.632365 9.569194e-03 2.330882e-02
## TMEM160 -0.6779372 8.725450e-01 -2.632066 9.577158e-03 2.332270e-02
## YWHAG 11.0629809 6.568807e+01 2.632004 9.578826e-03 2.332270e-02
## FFAR3 -6.3797260 6.900860e+00 -2.631650 9.588249e-03 2.334085e-02
## SLC6A6 185.8544425 5.331331e+02 2.630946 9.607060e-03 2.337963e-02
## TRNT1 2.4362001 1.629360e+01 2.630906 9.608120e-03 2.337963e-02
## LTK -2.1778184 3.393492e+00 -2.630826 9.610277e-03 2.338008e-02
## ACAD9 -2.5869570 1.236727e+01 -2.629909 9.634815e-03 2.343304e-02
## CSNK1G3 4.6860287 2.119050e+01 2.629865 9.635997e-03 2.343304e-02
## COIL 1.4597654 1.150454e+01 2.628943 9.660735e-03 2.348182e-02
## MPP7 20.0882074 4.850902e+01 2.628899 9.661898e-03 2.348182e-02
## GATB -1.2727140 7.725042e+00 -2.628896 9.661995e-03 2.348182e-02
## SRPK2 22.2144414 7.458289e+01 2.628774 9.665256e-03 2.348493e-02
## CRELD1 -2.2554930 9.180591e+00 -2.628601 9.669918e-03 2.349144e-02
## STBD1 7.7571183 1.136897e+01 2.628333 9.677115e-03 2.350411e-02
## MAP2K3 -57.1750004 1.944811e+02 -2.626549 9.725239e-03 2.361144e-02
## MRPS17 -1.9775579 7.608810e+00 -2.626547 9.725284e-03 2.361144e-02
## EZH1 19.8736033 1.204256e+02 2.626365 9.730200e-03 2.361641e-02
## STAG1 11.6729118 4.837270e+01 2.626322 9.731361e-03 2.361641e-02
## RTN2 -2.9264339 7.924557e+00 -2.626250 9.733305e-03 2.361641e-02
## RIOK3 34.3872281 1.113256e+02 2.625919 9.742271e-03 2.363333e-02
## XBP1 66.2413324 1.621142e+02 2.625781 9.746012e-03 2.363757e-02
## ATP6V1A 46.7052794 1.573441e+02 2.625607 9.750720e-03 2.364415e-02
## ZNF619 0.8542336 5.841133e+00 2.625396 9.756418e-03 2.365285e-02
## FCGR3B 2515.1552594 6.069773e+03 2.625327 9.758295e-03 2.365285e-02
## PDE2A 3.0209185 4.228940e+00 2.625213 9.761403e-03 2.365554e-02
## CCDC47 9.5680752 4.736312e+01 2.625076 9.765116e-03 2.365971e-02
## DUS2 -5.5740951 2.216241e+01 -2.623583 9.805677e-03 2.375313e-02
## HEXIM1 8.4585855 4.887549e+01 2.622431 9.837093e-03 2.382437e-02
## SOS2 52.6468792 1.431168e+02 2.622265 9.841617e-03 2.383046e-02
## MSRA -7.7142910 1.989037e+01 -2.622035 9.847904e-03 2.384081e-02
## POLD1 -1.7371908 4.016221e+00 -2.621232 9.869870e-03 2.388911e-02
## LTF 625.6997066 5.693231e+02 2.621013 9.875874e-03 2.389877e-02
## IKZF1 30.1391585 2.170370e+02 2.620536 9.888948e-03 2.392553e-02
## FBXL19 -2.3535440 9.718664e+00 -2.620209 9.897923e-03 2.394236e-02
## NFIL3 103.7189117 2.600225e+02 2.620012 9.903331e-03 2.395055e-02
## KIF13B 3.0387414 1.598210e+01 2.618708 9.939223e-03 2.403245e-02
## IL1R1 37.2821586 6.187158e+01 2.618499 9.944971e-03 2.403551e-02
## NAT1 2.6493864 1.120642e+01 2.618494 9.945109e-03 2.403551e-02
## EBPL -2.6146094 1.060662e+01 -2.618441 9.946568e-03 2.403551e-02
## MRPS28 -1.8883627 8.535328e+00 -2.618254 9.951740e-03 2.404148e-02
## NPC2 -31.5307095 1.421390e+02 -2.618205 9.953093e-03 2.404148e-02
## AASS 0.3760480 1.022028e+00 2.617405 9.975177e-03 2.408992e-02
## BAG3 -0.8854225 2.833685e+00 -2.617137 9.982582e-03 2.410290e-02
## GFOD1 7.1427626 1.356395e+01 2.616809 9.991680e-03 2.411995e-02
## APPL2 8.5656530 3.608201e+01 2.616094 1.001149e-02 2.416286e-02
## HACD3 2.0200432 1.073915e+01 2.615849 1.001828e-02 2.417432e-02
## DCP1A 4.6754053 2.479981e+01 2.615203 1.003625e-02 2.421275e-02
## ERMARD -1.6950464 9.150698e+00 -2.614362 1.005964e-02 2.426425e-02
## CREB3 -4.6244656 1.724143e+01 -2.613808 1.007509e-02 2.429657e-02
## PET117 -0.9534561 4.415426e+00 -2.613693 1.007828e-02 2.429933e-02
## C1QA -16.0064942 1.742241e+01 -2.613561 1.008196e-02 2.430290e-02
## SETD1A -2.3289242 9.069894e+00 -2.613494 1.008386e-02 2.430290e-02
## ZNF620 0.2334506 1.111005e+00 2.612783 1.010372e-02 2.434437e-02
## APPL1 4.3988485 2.426074e+01 2.612731 1.010517e-02 2.434437e-02
## PSRC1 -1.7599342 8.164901e+00 -2.612398 1.011448e-02 2.435463e-02
## ACAA2 -6.4139844 3.788093e+01 -2.612367 1.011536e-02 2.435463e-02
## CLPTM1 -4.4809283 3.432840e+01 -2.612294 1.011739e-02 2.435463e-02
## CWC22 5.6176059 3.133828e+01 2.612285 1.011764e-02 2.435463e-02
## ZFP41 -0.5328495 1.632877e+00 -2.612160 1.012116e-02 2.435814e-02
## RFXAP 0.6498753 3.263114e+00 2.611837 1.013019e-02 2.437494e-02
## TIMM8B -10.3934961 2.565855e+01 -2.611293 1.014547e-02 2.440505e-02
## UGT8 0.3231466 1.101377e+00 2.611230 1.014722e-02 2.440505e-02
## IARS2 6.5938213 3.979436e+01 2.611172 1.014888e-02 2.440505e-02
## COL8A2 -0.8999299 2.827473e+00 -2.610949 1.015512e-02 2.441512e-02
## NFS1 1.0718400 1.025568e+01 2.610392 1.017078e-02 2.444780e-02
## TNKS1BP1 -0.6143263 2.019099e+00 -2.610146 1.017771e-02 2.445951e-02
## DARS1 5.0364716 3.036689e+01 2.609985 1.018226e-02 2.446547e-02
## SLC25A19 -2.1436822 7.353874e+00 -2.609206 1.020422e-02 2.451328e-02
## ZNF445 7.3755535 3.168285e+01 2.608782 1.021618e-02 2.453705e-02
## PHB -14.7602035 4.843347e+01 -2.608688 1.021884e-02 2.453831e-02
## NIFK -2.5508180 1.760604e+01 -2.608617 1.022085e-02 2.453831e-02
## MIDEAS 7.6473862 3.006373e+01 2.608351 1.022835e-02 2.454956e-02
## NEK8 -1.2695246 5.116764e+00 -2.608305 1.022968e-02 2.454956e-02
## KRAS 22.2318014 8.017462e+01 2.607750 1.024538e-02 2.457982e-02
## GABBR1 10.6230777 3.953987e+01 2.607713 1.024643e-02 2.457982e-02
## FBXL3 25.2547228 9.621983e+01 2.607531 1.025159e-02 2.458722e-02
## SLFN5 52.9363449 8.678247e+01 2.607153 1.026229e-02 2.460473e-02
## PEX1 2.4577835 1.211659e+01 2.607127 1.026304e-02 2.460473e-02
## MOGS -8.2422878 3.939152e+01 -2.606736 1.027413e-02 2.462636e-02
## ZNF787 -6.6677815 2.024726e+01 -2.606646 1.027668e-02 2.462749e-02
## MAP4K4 85.3344698 3.230936e+02 2.606477 1.028150e-02 2.463355e-02
## MRPS5 -5.6885053 3.331341e+01 -2.606411 1.028337e-02 2.463355e-02
## TRABD2A -6.0310468 1.071478e+01 -2.605961 1.029616e-02 2.465923e-02
## PSMD11 3.4726202 3.415894e+01 2.605792 1.030097e-02 2.466577e-02
## TAFA2 2.4642651 4.147867e+00 2.605364 1.031315e-02 2.468993e-02
## JMJD1C 65.9690028 1.958046e+02 2.605194 1.031800e-02 2.469657e-02
## KLHDC10 3.3295618 2.108948e+01 2.604829 1.032840e-02 2.471495e-02
## EIF5 34.1979827 1.723897e+02 2.604779 1.032985e-02 2.471495e-02
## INTS10 -4.8902560 4.195062e+01 -2.604647 1.033361e-02 2.471897e-02
## ELK4 6.5977905 2.604580e+01 2.604066 1.035019e-02 2.475363e-02
## HERPUD2 9.7309476 5.929152e+01 2.602969 1.038159e-02 2.482371e-02
## HAUS5 -1.3126882 4.529125e+00 -2.602840 1.038530e-02 2.482759e-02
## MACIR 39.0928781 4.416678e+01 2.602264 1.040183e-02 2.486210e-02
## MSN 232.7821710 1.000436e+03 2.601655 1.041933e-02 2.489890e-02
## PARP15 7.8528711 4.232133e+01 2.601189 1.043274e-02 2.492592e-02
## ELP6 -2.4318822 9.360740e+00 -2.601044 1.043692e-02 2.493088e-02
## EVA1B -1.3931080 1.572618e+00 -2.600739 1.044570e-02 2.494684e-02
## HMG20A 2.4618304 1.444773e+01 2.599693 1.047587e-02 2.501386e-02
## PPP1R8 2.7355006 3.369086e+01 2.599504 1.048135e-02 2.502191e-02
## PLAG1 0.7308257 2.677675e+00 2.598304 1.051608e-02 2.509975e-02
## BCOR 3.1024183 1.210760e+01 2.598168 1.052003e-02 2.510414e-02
## ZNF846 -0.4024553 1.957657e+00 -2.597861 1.052894e-02 2.512035e-02
## LHX4 5.0390290 5.755695e+00 2.597479 1.054002e-02 2.513476e-02
## TIGD3 -5.8072685 1.031599e+01 -2.597459 1.054061e-02 2.513476e-02
## UPK3BL1 -9.3867534 2.331188e+01 -2.597434 1.054134e-02 2.513476e-02
## RALGDS -6.0884129 2.393769e+01 -2.597255 1.054655e-02 2.514213e-02
## KNSTRN 1.8482798 7.894371e+00 2.596703 1.056261e-02 2.517535e-02
## SLC9A8 23.5319935 7.809568e+01 2.595785 1.058934e-02 2.523027e-02
## TOMM40 -3.5945681 1.089243e+01 -2.595766 1.058991e-02 2.523027e-02
## PHTF2 3.6521317 2.344879e+01 2.594976 1.061297e-02 2.528015e-02
## CISH -10.0176400 3.373516e+01 -2.594474 1.062766e-02 2.531004e-02
## AKIRIN1 25.8680817 1.219952e+02 2.593897 1.064458e-02 2.534355e-02
## MAPK1IP1L 7.6995968 4.939786e+01 2.593743 1.064909e-02 2.534355e-02
## MYNN 4.7795190 2.527375e+01 2.593733 1.064939e-02 2.534355e-02
## MMP19 -1.7061443 5.630683e+00 -2.593703 1.065027e-02 2.534355e-02
## GET1 3.5524210 1.590482e+01 2.593422 1.065851e-02 2.535417e-02
## AMIGO3 -0.4982475 1.157669e+00 -2.593404 1.065903e-02 2.535417e-02
## TECR -14.4216559 2.935526e+01 -2.593332 1.066115e-02 2.535417e-02
## ZMPSTE24 14.9662502 5.759936e+01 2.593015 1.067047e-02 2.537124e-02
## KLHL18 3.7767619 2.334186e+01 2.592441 1.068733e-02 2.540623e-02
## TM9SF3 12.3044526 9.688584e+01 2.591979 1.070093e-02 2.543347e-02
## ACTR1B -7.3968942 3.230692e+01 -2.591454 1.071640e-02 2.546513e-02
## AGPAT5 1.9649047 9.237360e+00 2.590976 1.073052e-02 2.549359e-02
## ADCY7 27.4079164 9.889263e+01 2.590592 1.074185e-02 2.551540e-02
## GOLGA6L4 0.9307722 2.826771e+00 2.590439 1.074637e-02 2.552102e-02
## KIF1B 28.9889970 7.758487e+01 2.589958 1.076062e-02 2.554451e-02
## GRAMD2B 0.5486137 1.933442e+00 2.589884 1.076281e-02 2.554451e-02
## STAM2 10.0337567 4.149427e+01 2.589818 1.076475e-02 2.554451e-02
## CA13 0.5157409 2.137345e+00 2.589769 1.076621e-02 2.554451e-02
## SCML2 0.2192448 5.013808e-01 2.589741 1.076703e-02 2.554451e-02
## MRPS6 -5.6716319 2.460458e+01 -2.589184 1.078354e-02 2.557856e-02
## ZEB2 33.5983854 1.107059e+02 2.587435 1.083553e-02 2.569674e-02
## ZSCAN30 1.9866628 6.901201e+00 2.587021 1.084788e-02 2.572088e-02
## RAD23A -9.7161051 2.717567e+01 -2.586887 1.085186e-02 2.572517e-02
## SPCS3 18.5687074 1.342507e+02 2.586197 1.087246e-02 2.576887e-02
## ADAP2 -5.3621548 2.145997e+01 -2.585987 1.087875e-02 2.577862e-02
## DHRS11 -0.3747020 1.046463e+00 -2.585459 1.089454e-02 2.581087e-02
## ITM2C 43.0799481 5.459665e+01 2.585147 1.090387e-02 2.582782e-02
## IKBKE -8.5442607 3.080434e+01 -2.584961 1.090946e-02 2.583590e-02
## AMDHD1 0.3604960 1.205948e+00 2.584597 1.092035e-02 2.585654e-02
## MTM1 6.2226508 2.286117e+01 2.584404 1.092615e-02 2.586510e-02
## RNF144A 2.4979983 1.045950e+01 2.583951 1.093976e-02 2.589215e-02
## FBXO10 0.7151800 2.625028e+00 2.583356 1.095764e-02 2.592929e-02
## KHNYN 18.3352245 1.155606e+02 2.582892 1.097161e-02 2.595717e-02
## TP53RK -2.1559033 1.288815e+01 -2.582796 1.097451e-02 2.595886e-02
## TMIGD2 -2.0568080 3.438034e+00 -2.582635 1.097938e-02 2.596364e-02
## KLHL28 5.5563617 2.259121e+01 2.582584 1.098091e-02 2.596364e-02
## RPUSD2 -1.2413005 4.172351e+00 -2.582111 1.099518e-02 2.599106e-02
## DHFR2 1.3336306 5.450357e+00 2.582054 1.099689e-02 2.599106e-02
## NSUN3 5.0348883 2.123095e+01 2.581676 1.100830e-02 2.600869e-02
## ATG16L1 2.7618808 2.406044e+01 2.581662 1.100874e-02 2.600869e-02
## ZNF770 7.5556805 3.597619e+01 2.581449 1.101518e-02 2.601873e-02
## RAB14 18.0782308 1.060614e+02 2.581140 1.102451e-02 2.603557e-02
## MRPL48 -3.6554510 1.356353e+01 -2.580369 1.104787e-02 2.608556e-02
## CPVL -43.8132540 1.376264e+02 -2.580022 1.105839e-02 2.610520e-02
## MAP1A 3.3448999 7.732170e+00 2.579028 1.108858e-02 2.616894e-02
## SEM1 -8.5672085 3.102854e+01 -2.578988 1.108981e-02 2.616894e-02
## QSER1 2.0285239 6.886135e+00 2.577903 1.112285e-02 2.624169e-02
## SUGT1 -2.9678709 2.263787e+01 -2.576809 1.115625e-02 2.631525e-02
## PDLIM5 6.4327594 3.178956e+01 2.576717 1.115906e-02 2.631666e-02
## TEC 0.9057831 4.397626e+00 2.576101 1.117793e-02 2.635592e-02
## CEMIP2 25.6006682 9.081123e+01 2.575778 1.118781e-02 2.637398e-02
## YTHDF3 23.6305781 8.807644e+01 2.575454 1.119776e-02 2.639219e-02
## PGPEP1 -7.3561954 3.231951e+01 -2.573647 1.125332e-02 2.651786e-02
## KIAA0040 95.2043534 3.340359e+02 2.572405 1.129165e-02 2.660289e-02
## AK5 -1.3112052 2.385579e+00 -2.572148 1.129962e-02 2.661638e-02
## SNUPN -2.2799738 1.352912e+01 -2.571831 1.130941e-02 2.663416e-02
## RBL1 1.4101048 7.491732e+00 2.571378 1.132345e-02 2.666193e-02
## KATNA1 -2.8647187 1.846442e+01 -2.569992 1.136647e-02 2.675791e-02
## NREP 1.5224703 8.542821e+00 2.569425 1.138412e-02 2.679414e-02
## ATP8B3 0.4468643 1.436782e+00 2.568696 1.140685e-02 2.684230e-02
## NSRP1 2.7329375 1.643866e+01 2.568440 1.141483e-02 2.685576e-02
## RUFY1 21.1433592 9.545441e+01 2.568261 1.142042e-02 2.686358e-02
## PLEKHA2 16.9693773 1.049547e+02 2.568025 1.142780e-02 2.687561e-02
## MAD2L1BP 8.4260726 3.398890e+01 2.567293 1.145067e-02 2.692359e-02
## LIPT1 -0.7749360 4.128858e+00 -2.567227 1.145274e-02 2.692359e-02
## TXNL1 -6.1377268 3.942697e+01 -2.566180 1.148556e-02 2.699539e-02
## ZNF224 4.3348523 2.327206e+01 2.565934 1.149330e-02 2.700822e-02
## CREB1 20.1543473 8.403639e+01 2.565788 1.149788e-02 2.701364e-02
## VAMP7 11.1214444 5.519732e+01 2.565369 1.151104e-02 2.703692e-02
## RMI1 5.7646251 1.983818e+01 2.565283 1.151377e-02 2.703692e-02
## ENDOG -1.3609313 1.706903e+00 -2.565255 1.151463e-02 2.703692e-02
## RAB11FIP1 80.6670401 3.021901e+02 2.565046 1.152123e-02 2.704706e-02
## PDE3A 0.5857879 1.338506e+00 2.564455 1.153985e-02 2.708541e-02
## OSTM1 17.0045111 8.230891e+01 2.564280 1.154536e-02 2.709299e-02
## AGAP5 2.0080399 7.263153e+00 2.564198 1.154793e-02 2.709366e-02
## POLK 5.8660814 2.009408e+01 2.563970 1.155513e-02 2.710518e-02
## KLHL11 1.4622779 7.187823e+00 2.563851 1.155888e-02 2.710862e-02
## TOR1B 24.8598480 5.528300e+01 2.563413 1.157273e-02 2.713574e-02
## C9orf72 52.8836767 1.577024e+02 2.563306 1.157612e-02 2.713832e-02
## SRRM1 7.2239561 4.027897e+01 2.562221 1.161044e-02 2.721340e-02
## GPATCH11 2.3384648 9.434440e+00 2.561728 1.162608e-02 2.724467e-02
## FLT3 16.6851248 2.876724e+01 2.561187 1.164326e-02 2.727187e-02
## PDCD2 -3.6179744 3.606219e+01 -2.561146 1.164457e-02 2.727187e-02
## ACTR5 -1.4450139 6.393978e+00 -2.561146 1.164458e-02 2.727187e-02
## PLCL2 15.6265775 8.763922e+01 2.560986 1.164965e-02 2.727836e-02
## MYLIP 27.5724924 8.963508e+01 2.560810 1.165524e-02 2.728606e-02
## NEO1 2.3571987 4.629023e+00 2.560632 1.166091e-02 2.729394e-02
## GEMIN7 -3.8691275 1.344263e+01 -2.560541 1.166382e-02 2.729537e-02
## YPEL1 1.9339231 7.419667e+00 2.560201 1.167464e-02 2.731530e-02
## TRAP1 -3.1597948 1.101433e+01 -2.559394 1.170037e-02 2.737010e-02
## GPX3 -0.9011437 2.657986e+00 -2.559018 1.171238e-02 2.739278e-02
## MSL1 230.2574017 6.883031e+02 2.558610 1.172543e-02 2.741789e-02
## HNRNPR 10.3280327 7.475318e+01 2.558176 1.173930e-02 2.744492e-02
## ASCC3 4.3538858 1.604485e+01 2.557953 1.174644e-02 2.745621e-02
## ANGEL2 2.3582393 1.761940e+01 2.557480 1.176159e-02 2.748620e-02
## LRP6 0.6344041 1.512048e+00 2.557335 1.176624e-02 2.749164e-02
## SLIT1 0.8042291 2.047054e+00 2.556835 1.178230e-02 2.752376e-02
## CMPK2 77.4899923 8.260055e+01 2.556603 1.178974e-02 2.753571e-02
## CEP19 30.1078146 7.496780e+01 2.556093 1.180616e-02 2.756862e-02
## DNAJC18 0.4540267 1.998183e+00 2.555233 1.183386e-02 2.762320e-02
## DCTN4 11.2990243 5.106143e+01 2.555222 1.183419e-02 2.762320e-02
## CLIC1 -373.0861811 1.415129e+03 -2.554286 1.186441e-02 2.768830e-02
## GABRR2 6.8230114 1.063639e+01 2.554152 1.186874e-02 2.769294e-02
## ING5 -3.5142905 1.971061e+01 -2.553327 1.189544e-02 2.774979e-02
## OR1F1 0.2001159 5.898291e-01 2.553017 1.190549e-02 2.776778e-02
## OSBPL8 116.5449812 3.010835e+02 2.552512 1.192189e-02 2.780056e-02
## GID4 1.3751269 1.111266e+01 2.551282 1.196187e-02 2.788830e-02
## JADE1 -12.4091919 5.746459e+01 -2.550878 1.197504e-02 2.791351e-02
## NDUFA2 -11.1877646 3.469396e+01 -2.550726 1.197996e-02 2.791951e-02
## RBM44 0.9882509 2.126454e+00 2.550073 1.200129e-02 2.796371e-02
## RPAIN -2.5779395 1.572142e+01 -2.549825 1.200938e-02 2.797707e-02
## USP15 215.2242828 6.551776e+02 2.549525 1.201917e-02 2.799438e-02
## WWC2 0.7581802 2.016655e+00 2.549131 1.203207e-02 2.801893e-02
## LGALSL 24.8428197 5.275608e+01 2.547622 1.208154e-02 2.812859e-02
## FANCE 0.9125703 4.627691e+00 2.546856 1.210672e-02 2.816823e-02
## MCF2L -0.3480199 7.730811e-01 -2.546846 1.210705e-02 2.816823e-02
## ALG3 -5.2911926 1.254849e+01 -2.546825 1.210776e-02 2.816823e-02
## NCF1 -238.3763376 8.546713e+02 -2.546816 1.210806e-02 2.816823e-02
## VAPB 4.0961138 2.941068e+01 2.546607 1.211494e-02 2.817869e-02
## COX14 -5.7514578 1.856957e+01 -2.546331 1.212404e-02 2.818411e-02
## IL17RC -0.7047105 1.757813e+00 -2.546325 1.212421e-02 2.818411e-02
## TNFRSF10C -124.9649005 4.380031e+02 -2.546320 1.212440e-02 2.818411e-02
## DR1 21.1075004 1.081880e+02 2.545963 1.213616e-02 2.820593e-02
## CHPT1 24.2726006 6.479005e+01 2.545803 1.214145e-02 2.821268e-02
## VDAC2 -6.6812971 5.077176e+01 -2.545694 1.214503e-02 2.821548e-02
## FLI1 45.5740235 2.197847e+02 2.545246 1.215981e-02 2.824430e-02
## LMOD3 -0.4344452 1.628685e+00 -2.544375 1.218864e-02 2.830572e-02
## SNX22 -2.4094513 6.937930e+00 -2.544247 1.219287e-02 2.830998e-02
## PET100 -18.4312188 5.337917e+01 -2.544041 1.219971e-02 2.832033e-02
## PRR5 -4.1107282 6.403167e+00 -2.543645 1.221281e-02 2.834177e-02
## C12orf73 -0.7395657 2.616295e+00 -2.543618 1.221372e-02 2.834177e-02
## PARP3 -1.2814688 3.838518e+00 -2.543009 1.223393e-02 2.838310e-02
## POLR3B 0.5567878 3.886780e+00 2.542552 1.224912e-02 2.841278e-02
## ATP6AP1 -25.7403934 1.256068e+02 -2.542235 1.225969e-02 2.843174e-02
## ZNF143 6.4936580 3.353984e+01 2.541819 1.227354e-02 2.845830e-02
## PHF1 -17.7870777 7.084651e+01 -2.541676 1.227831e-02 2.846378e-02
## GABPB1 2.4129685 1.739452e+01 2.541357 1.228894e-02 2.848286e-02
## HAX1 -9.1108085 6.246693e+01 -2.540902 1.230413e-02 2.850758e-02
## TRIM59 1.2340157 6.174073e+00 2.540893 1.230441e-02 2.850758e-02
## EIF4G2 113.6755652 6.640409e+02 2.540779 1.230821e-02 2.851082e-02
## NEMP2 0.8356125 4.109036e+00 2.540667 1.231197e-02 2.851396e-02
## PBXIP1 -76.2020742 2.398842e+02 -2.540115 1.233041e-02 2.855108e-02
## CACYBP -4.8623124 3.904108e+01 -2.539939 1.233630e-02 2.855915e-02
## GPAM 0.9040831 3.870907e+00 2.539681 1.234495e-02 2.857360e-02
## BAP1 -9.5782344 6.256992e+01 -2.539303 1.235762e-02 2.859734e-02
## DCAF6 6.7919597 3.890570e+01 2.539094 1.236461e-02 2.860794e-02
## TLR10 11.7912563 3.139801e+01 2.538432 1.238683e-02 2.865375e-02
## GSE1 3.4125080 1.562932e+01 2.537263 1.242617e-02 2.873916e-02
## C8orf33 -2.5235760 1.431302e+01 -2.537164 1.242948e-02 2.874121e-02
## DNM1L 3.8028172 2.414621e+01 2.536979 1.243573e-02 2.875005e-02
## TIRAP 2.0545645 9.808354e+00 2.536720 1.244447e-02 2.876466e-02
## AGO1 9.1288800 5.366029e+01 2.536222 1.246126e-02 2.879784e-02
## SSPN 1.2427275 2.199426e+00 2.536103 1.246529e-02 2.880156e-02
## GALNT2 -17.0976555 4.087008e+01 -2.535907 1.247192e-02 2.881125e-02
## TMEM208 -8.7739740 2.840579e+01 -2.535572 1.248323e-02 2.882695e-02
## KDM5C 13.1911229 8.466323e+01 2.535562 1.248357e-02 2.882695e-02
## LILRB5 -2.5191901 5.902708e+00 -2.533841 1.254192e-02 2.895604e-02
## RNASE2 96.4880625 1.704180e+02 2.533596 1.255024e-02 2.896962e-02
## TTC27 -1.5021895 7.394919e+00 -2.532747 1.257914e-02 2.903066e-02
## STAT2 99.3378049 2.076732e+02 2.532063 1.260244e-02 2.907878e-02
## EXOC2 3.5023950 1.759741e+01 2.531958 1.260603e-02 2.908141e-02
## ACVRL1 -0.9963379 2.229447e+00 -2.531762 1.261272e-02 2.909118e-02
## RAD50 3.2701263 1.636742e+01 2.531140 1.263398e-02 2.913456e-02
## TMCC3 42.4976772 1.260470e+02 2.530097 1.266968e-02 2.921120e-02
## RNF114 10.5422034 7.231145e+01 2.529891 1.267672e-02 2.922176e-02
## MUSTN1 -1.6452186 3.420320e+00 -2.529579 1.268743e-02 2.924075e-02
## ARL17B 2.4109838 9.646725e+00 2.528994 1.270753e-02 2.928138e-02
## MST1L -0.5720616 1.230889e+00 -2.528660 1.271901e-02 2.930214e-02
## ADPRS -8.0810433 3.217192e+01 -2.528529 1.272351e-02 2.930683e-02
## SLC25A26 -2.5248056 7.561977e+00 -2.528443 1.272648e-02 2.930797e-02
## VKORC1 -7.7217239 2.440993e+01 -2.526864 1.278092e-02 2.942764e-02
## SNAPC5 -1.6774575 1.206340e+01 -2.526130 1.280632e-02 2.948040e-02
## RALGPS1 1.0496208 5.439197e+00 2.526003 1.281072e-02 2.948479e-02
## FAM3C 3.6764522 1.279755e+01 2.525375 1.283246e-02 2.952909e-02
## CCNB1IP1 -2.1148113 1.117792e+01 -2.524490 1.286319e-02 2.959407e-02
## LIN37 -3.4238680 1.274398e+01 -2.523741 1.288922e-02 2.964821e-02
## SERPINE1 1.0674387 2.163803e+00 2.523656 1.289220e-02 2.964930e-02
## C21orf62 0.4438068 1.612874e+00 2.523329 1.290358e-02 2.966973e-02
## CDKN3 2.1914203 3.118757e+00 2.522393 1.293622e-02 2.973324e-02
## PRR11 2.1372078 1.070429e+01 2.522372 1.293698e-02 2.973324e-02
## NDUFA1 -28.4751446 1.163793e+02 -2.522322 1.293872e-02 2.973324e-02
## SH2D4A 1.0565498 1.055651e+00 2.521966 1.295114e-02 2.975601e-02
## LOC100133315 0.1871264 4.838266e-01 2.520506 1.300229e-02 2.986775e-02
## HINT2 -3.3166049 7.877930e+00 -2.520397 1.300610e-02 2.987070e-02
## SMAP1 -2.5127059 2.645970e+01 -2.520145 1.301497e-02 2.988529e-02
## COX6A1 -18.5637328 8.649238e+01 -2.520045 1.301848e-02 2.988757e-02
## MINK1 -8.5044000 6.387061e+01 -2.518629 1.306831e-02 2.999615e-02
## RIC8A -8.6564527 7.083822e+01 -2.517955 1.309208e-02 3.004377e-02
## SSC4D -0.2213299 4.950435e-01 -2.517897 1.309412e-02 3.004377e-02
## LRRC40 1.7968421 7.298671e+00 2.517316 1.311465e-02 3.008505e-02
## DDX46 7.7145315 4.691826e+01 2.516327 1.314963e-02 3.015948e-02
## TAF1C -3.8018879 1.492922e+01 -2.515783 1.316893e-02 3.019530e-02
## CPNE1 -22.8262782 1.233677e+02 -2.515743 1.317034e-02 3.019530e-02
## TSPAN32 -5.0749841 1.292532e+01 -2.514884 1.320086e-02 3.025747e-02
## ACOT11 1.2184178 6.939236e+00 2.514836 1.320257e-02 3.025747e-02
## XAF1 149.0393271 1.972448e+02 2.514737 1.320608e-02 3.025969e-02
## COX6C -15.2608084 5.867955e+01 -2.514633 1.320981e-02 3.026238e-02
## CAPN1 -20.1469600 1.002344e+02 -2.513810 1.323912e-02 3.032367e-02
## RNF181 -18.0966053 7.283246e+01 -2.513337 1.325600e-02 3.035647e-02
## LRFN1 -4.3348731 1.284972e+01 -2.513197 1.326100e-02 3.035979e-02
## MDN1 5.1674371 1.625109e+01 2.513153 1.326257e-02 3.035979e-02
## CLEC5A 9.2333943 1.976708e+01 2.512472 1.328690e-02 3.040963e-02
## CEP57 3.6611435 2.293802e+01 2.511978 1.330459e-02 3.043728e-02
## OPLAH -6.6456999 8.764658e+00 -2.511933 1.330618e-02 3.043728e-02
## RBM3 -60.1385086 2.169976e+02 -2.511855 1.330898e-02 3.043728e-02
## SMARCAD1 3.2066034 1.120224e+01 2.511848 1.330925e-02 3.043728e-02
## GSTM4 -3.7083063 8.290163e+00 -2.510931 1.334213e-02 3.050658e-02
## C9orf139 -3.5309982 1.419504e+01 -2.510330 1.336373e-02 3.055009e-02
## IFI27 151.1613139 1.304780e+02 2.510224 1.336754e-02 3.055222e-02
## BRAP 4.0717355 2.636844e+01 2.510160 1.336982e-02 3.055222e-02
## PRMT2 -18.0669445 1.297037e+02 -2.510053 1.337367e-02 3.055515e-02
## TAOK3 15.1035393 8.685884e+01 2.507824 1.345409e-02 3.073296e-02
## UFL1 4.4491695 1.805867e+01 2.507500 1.346582e-02 3.075250e-02
## BTG3 1.2874959 3.740489e+00 2.507444 1.346783e-02 3.075250e-02
## RRP12 -22.1304643 7.295115e+01 -2.506563 1.349978e-02 3.081952e-02
## TMEM252 0.9274197 2.137548e+00 2.506378 1.350649e-02 3.082891e-02
## RANBP2 15.8844669 7.534771e+01 2.506026 1.351926e-02 3.084473e-02
## MRPS24 -5.7314696 1.528638e+01 -2.505942 1.352231e-02 3.084473e-02
## TOMM5 -3.8135064 1.603418e+01 -2.505907 1.352361e-02 3.084473e-02
## NPIPB5 4.4881004 1.996691e+01 2.505901 1.352383e-02 3.084473e-02
## PEX19 5.0206846 4.544849e+01 2.504232 1.358458e-02 3.097733e-02
## SASH3 -64.3465102 3.505792e+02 -2.503814 1.359986e-02 3.100622e-02
## CENPO 2.0716943 6.808000e+00 2.503331 1.361751e-02 3.104049e-02
## STK38 -29.7429115 2.130187e+02 -2.502698 1.364067e-02 3.108731e-02
## CENPS 0.3679920 1.065779e+00 2.502447 1.364986e-02 3.110227e-02
## CDCA7L 16.5714814 2.405230e+01 2.502119 1.366188e-02 3.112368e-02
## TRMT13 1.9411253 8.742033e+00 2.501999 1.366628e-02 3.112773e-02
## ZFYVE21 -1.5798169 9.759003e+00 -2.501854 1.367159e-02 3.113384e-02
## FOCAD 2.0453001 1.268748e+01 2.501674 1.367820e-02 3.114292e-02
## KRIT1 2.8720872 1.518428e+01 2.501398 1.368833e-02 3.116000e-02
## PLIN5 -17.6377919 3.173251e+01 -2.500640 1.371620e-02 3.121159e-02
## EXTL2 0.3380914 1.216805e+00 2.500639 1.371626e-02 3.121159e-02
## INO80C -1.2956158 8.325959e+00 -2.500385 1.372559e-02 3.122298e-02
## TRIM68 1.0881035 6.333891e+00 2.500312 1.372830e-02 3.122298e-02
## SLC25A20 -6.4410370 4.535745e+01 -2.500288 1.372916e-02 3.122298e-02
## ESD -4.7381544 4.064251e+01 -2.500047 1.373805e-02 3.123721e-02
## C2orf49 3.1044301 1.875372e+01 2.499833 1.374595e-02 3.124917e-02
## RAB11FIP3 -1.5986037 5.800835e+00 -2.499274 1.376657e-02 3.129005e-02
## SPCS1 -11.2572792 5.789500e+01 -2.499048 1.377492e-02 3.130304e-02
## ZP3 -1.8177086 3.124754e+00 -2.498929 1.377930e-02 3.130700e-02
## MFSD6 2.5862432 1.397862e+01 2.497999 1.381373e-02 3.137921e-02
## FARP1 0.4045316 1.287432e+00 2.497843 1.381949e-02 3.138627e-02
## PSME3 15.6917891 9.448871e+01 2.497011 1.385035e-02 3.144528e-02
## KLHL6 11.8582218 4.830589e+01 2.497000 1.385077e-02 3.144528e-02
## MRTO4 -3.8117594 1.373769e+01 -2.496402 1.387296e-02 3.148574e-02
## SUPT5H -16.4029668 7.357200e+01 -2.496354 1.387478e-02 3.148574e-02
## MRGBP -2.9656185 1.621016e+01 -2.496286 1.387728e-02 3.148574e-02
## ARFIP2 -4.8083372 2.437996e+01 -2.496196 1.388062e-02 3.148574e-02
## ZNF19 -0.2903888 9.221692e-01 -2.496163 1.388187e-02 3.148574e-02
## CRCP 5.0778057 2.918578e+01 2.494844 1.393100e-02 3.158684e-02
## ZFR 8.8610225 5.404329e+01 2.494824 1.393177e-02 3.158684e-02
## GOLPH3 13.3226837 8.692761e+01 2.494029 1.396143e-02 3.164463e-02
## DOCK4 7.5086282 1.922267e+01 2.493998 1.396259e-02 3.164463e-02
## CDS2 40.6880832 1.538449e+02 2.493925 1.396534e-02 3.164480e-02
## EMC8 -2.2039547 1.396832e+01 -2.493212 1.399202e-02 3.169920e-02
## TMEM86A -0.4749845 1.475551e+00 -2.493024 1.399908e-02 3.170915e-02
## RNGTT 3.2640565 1.787533e+01 2.490892 1.407918e-02 3.188449e-02
## FAM120AOS 6.6245741 4.912268e+01 2.490549 1.409210e-02 3.190765e-02
## ATXN2 1.1541679 9.209699e+00 2.490438 1.409629e-02 3.191106e-02
## TMEM35B -2.0502206 1.474854e+01 -2.490087 1.410953e-02 3.193492e-02
## DDX58 76.9789889 1.574548e+02 2.489975 1.411376e-02 3.193842e-02
## GPR27 30.5402671 8.660367e+01 2.489860 1.411810e-02 3.194213e-02
## IRF2 45.3730136 1.772945e+02 2.489733 1.412289e-02 3.194688e-02
## ODF2L 3.6617813 1.886988e+01 2.489522 1.413088e-02 3.195718e-02
## RTN1 -2.3102654 7.194776e+00 -2.489470 1.413283e-02 3.195718e-02
## GPR68 -1.7756428 4.611133e+00 -2.489108 1.414651e-02 3.197633e-02
## RASSF1 -11.8480998 4.895616e+01 -2.489059 1.414837e-02 3.197633e-02
## INO80 3.2132687 2.256520e+01 2.489002 1.415055e-02 3.197633e-02
## MCUB -7.1040591 3.449203e+01 -2.488961 1.415209e-02 3.197633e-02
## MTREX 4.7036616 2.840722e+01 2.488626 1.416479e-02 3.199893e-02
## CHD3 -17.3335008 1.170389e+02 -2.488522 1.416873e-02 3.200174e-02
## CBFB 6.0210136 5.376841e+01 2.488077 1.418559e-02 3.203371e-02
## ISCA2 -2.2361011 1.495407e+01 -2.487859 1.419384e-02 3.204624e-02
## CDK3 -1.7619590 8.252463e+00 -2.487496 1.420765e-02 3.206372e-02
## CYTIP 71.5143147 2.682568e+02 2.487393 1.421154e-02 3.206372e-02
## TCN1 59.8932674 5.782832e+01 2.487371 1.421239e-02 3.206372e-02
## ATP9B -1.3884238 6.902785e+00 -2.487371 1.421239e-02 3.206372e-02
## CLDND1 7.4111982 4.380425e+01 2.486441 1.424775e-02 3.213272e-02
## RAB33B 18.2597667 5.520196e+01 2.486424 1.424840e-02 3.213272e-02
## RPS6KA1 -107.9575901 4.504943e+02 -2.486266 1.425441e-02 3.213643e-02
## STEAP4 142.3076116 4.319857e+02 2.486239 1.425546e-02 3.213643e-02
## ZNF480 -1.7945971 1.053665e+01 -2.485968 1.426577e-02 3.215356e-02
## PRKD2 -24.0960660 8.720458e+01 -2.485800 1.427219e-02 3.216191e-02
## NLRC5 57.3172942 2.352592e+02 2.485718 1.427529e-02 3.216280e-02
## UGCG 55.3692070 1.105831e+02 2.485315 1.429067e-02 3.219134e-02
## RASSF2 277.1827786 9.324978e+02 2.484890 1.430689e-02 3.222175e-02
## VASH1 -8.1049547 2.062135e+01 -2.483457 1.436177e-02 3.233920e-02
## TMEM159 1.6772220 1.023573e+01 2.483310 1.436741e-02 3.234576e-02
## ZBTB39 1.2349372 3.930734e+00 2.482944 1.438146e-02 3.237125e-02
## EFNA4 -1.2119511 5.635971e+00 -2.482417 1.440169e-02 3.241064e-02
## AHSA1 -4.9080729 4.621075e+01 -2.481963 1.441917e-02 3.244381e-02
## NOP14 -2.8985405 1.566237e+01 -2.481712 1.442882e-02 3.245936e-02
## TXLNG 2.2672278 9.740697e+00 2.480839 1.446248e-02 3.252302e-02
## GP9 -5.2774070 7.177245e+00 -2.480836 1.446260e-02 3.252302e-02
## ATXN7L3B 7.2786563 5.556249e+01 2.479944 1.449706e-02 3.259433e-02
## FNIP2 2.7581507 9.233160e+00 2.479468 1.451545e-02 3.262950e-02
## CPD 121.2717362 3.083924e+02 2.479302 1.452190e-02 3.263781e-02
## BTRC 1.3765320 8.399350e+00 2.478896 1.453763e-02 3.266696e-02
## RIPOR2 544.7178925 1.644850e+03 2.478601 1.454904e-02 3.268642e-02
## CAMLG -5.6642093 3.164762e+01 -2.476102 1.464630e-02 3.289869e-02
## TANC2 3.8718352 1.232253e+01 2.475584 1.466652e-02 3.293430e-02
## PYCR2 -5.7644930 3.472539e+01 -2.475553 1.466771e-02 3.293430e-02
## GIT2 34.8662195 1.790233e+02 2.475307 1.467732e-02 3.294966e-02
## MALSU1 -2.3738683 1.167633e+01 -2.474982 1.469003e-02 3.296660e-02
## ADGRL1 -1.7513208 4.228283e+00 -2.474972 1.469043e-02 3.296660e-02
## NCBP1 2.9442789 2.127427e+01 2.474694 1.470132e-02 3.298480e-02
## TNRC18 -6.7340720 3.905694e+01 -2.473667 1.474159e-02 3.306890e-02
## GOLGA8H 1.0883993 3.468855e+00 2.473287 1.475649e-02 3.309607e-02
## RASGRP4 -60.3890502 2.604875e+02 -2.472724 1.477862e-02 3.313943e-02
## BET1L -5.9829197 5.463977e+01 -2.472504 1.478731e-02 3.315264e-02
## FBXO38 20.4646919 7.830115e+01 2.472194 1.479951e-02 3.317373e-02
## UFSP1 -0.2157205 3.418626e-01 -2.472100 1.480319e-02 3.317571e-02
## CHMP1B 36.5477969 1.734707e+02 2.472018 1.480643e-02 3.317669e-02
## PCGF1 -1.1883252 9.006267e+00 -2.471509 1.482651e-02 3.321542e-02
## STXBP3 29.6770946 1.052541e+02 2.471149 1.484072e-02 3.324098e-02
## RBM15 2.3445698 1.072733e+01 2.470417 1.486965e-02 3.329525e-02
## TMPO 14.6503151 8.012343e+01 2.470393 1.487057e-02 3.329525e-02
## LRRN2 0.5763660 1.173983e+00 2.470075 1.488318e-02 3.331721e-02
## TPR 34.6571404 1.473671e+02 2.469878 1.489097e-02 3.332493e-02
## PDS5B 6.6360237 3.839535e+01 2.469846 1.489226e-02 3.332493e-02
## GPD1L 1.6695762 9.288984e+00 2.469589 1.490241e-02 3.334136e-02
## PIGZ -0.2522609 5.999261e-01 -2.469293 1.491415e-02 3.336134e-02
## MAP2K7 -3.0087135 1.644871e+01 -2.469159 1.491949e-02 3.336699e-02
## SLBP 8.0400860 5.114101e+01 2.468881 1.493050e-02 3.338532e-02
## ZSWIM6 9.7339770 3.786293e+01 2.468593 1.494196e-02 3.340463e-02
## INTS12 2.5295901 1.725507e+01 2.467981 1.496628e-02 3.345271e-02
## GRWD1 -3.0441224 8.859273e+00 -2.467909 1.496912e-02 3.345275e-02
## GPR82 -0.8646955 2.380888e+00 -2.467411 1.498896e-02 3.349079e-02
## C7orf31 0.6274296 4.481170e+00 2.467244 1.499560e-02 3.349931e-02
## CRAMP1 2.2613844 1.181142e+01 2.466965 1.500675e-02 3.351790e-02
## OCIAD2 -3.6929081 9.570746e+00 -2.466293 1.503355e-02 3.357144e-02
## IFT27 -1.2709408 4.878075e+00 -2.466222 1.503641e-02 3.357150e-02
## CPNE8 2.4090485 8.536716e+00 2.465727 1.505619e-02 3.360500e-02
## LMTK2 10.4491418 3.392135e+01 2.465704 1.505708e-02 3.360500e-02
## PCYOX1 2.0318156 1.019511e+01 2.465422 1.506838e-02 3.362390e-02
## CSE1L 3.7174086 2.860318e+01 2.465300 1.507326e-02 3.362846e-02
## WDR20 3.0810289 2.009892e+01 2.464607 1.510104e-02 3.368410e-02
## SYCP2 3.7604539 8.955937e+00 2.464493 1.510562e-02 3.368737e-02
## DENR 4.6117780 4.751001e+01 2.464429 1.510819e-02 3.368737e-02
## CUL4A 4.0115813 3.796653e+01 2.463369 1.515074e-02 3.377589e-02
## NDST1 17.0018442 7.399382e+01 2.462951 1.516756e-02 3.380704e-02
## HABP4 -1.6821256 5.216105e+00 -2.462666 1.517905e-02 3.382630e-02
## MGA 3.8561717 1.588797e+01 2.462066 1.520323e-02 3.387382e-02
## RNF111 11.7844197 4.514416e+01 2.461879 1.521079e-02 3.388430e-02
## BCS1L -2.0429801 8.742880e+00 -2.461788 1.521447e-02 3.388613e-02
## MARCHF5 10.4821456 4.221113e+01 2.461578 1.522293e-02 3.389639e-02
## PSMD3 -4.7624326 3.463562e+01 -2.461532 1.522480e-02 3.389639e-02
## EPHX2 -1.9404789 4.417657e+00 -2.461274 1.523523e-02 3.391325e-02
## VRK1 5.1294201 1.578291e+01 2.460465 1.526796e-02 3.397974e-02
## JTB -38.8766683 1.369361e+02 -2.459778 1.529579e-02 3.403528e-02
## TJP2 3.9041188 1.543924e+01 2.459201 1.531923e-02 3.408105e-02
## ETFBKMT 0.5529267 2.903084e+00 2.458236 1.535846e-02 3.416191e-02
## TRUB1 1.2736626 4.664349e+00 2.458031 1.536683e-02 3.417411e-02
## DPYD 39.6647491 1.357611e+02 2.457790 1.537664e-02 3.418829e-02
## WAPL 13.2291635 7.478111e+01 2.457733 1.537897e-02 3.418829e-02
## TMEM209 1.7309682 1.012231e+01 2.457364 1.539397e-02 3.421524e-02
## DENND5A 77.5874187 3.080680e+02 2.457157 1.540243e-02 3.422400e-02
## IFI44 178.8022239 2.112690e+02 2.457126 1.540369e-02 3.422400e-02
## ANKRD6 1.1320768 4.782337e+00 2.456618 1.542447e-02 3.426376e-02
## B3GLCT 0.6292543 3.320756e+00 2.456088 1.544611e-02 3.429982e-02
## B2M 3412.4168490 1.601035e+04 2.456013 1.544921e-02 3.429982e-02
## NIPAL3 2.5388671 1.313330e+01 2.456009 1.544938e-02 3.429982e-02
## FAM124B -0.3215541 1.021604e+00 -2.455836 1.545643e-02 3.430715e-02
## INTS6L 3.7105234 2.228831e+01 2.455750 1.545997e-02 3.430715e-02
## LRP1 -20.6788525 5.487309e+01 -2.455716 1.546136e-02 3.430715e-02
## CCND2 8.6164749 4.193033e+01 2.455361 1.547591e-02 3.433300e-02
## WDR36 2.7018798 1.407454e+01 2.454352 1.551729e-02 3.441837e-02
## STARD7 -15.6480633 9.569628e+01 -2.453408 1.555613e-02 3.449807e-02
## COLEC12 -0.4765017 1.902017e+00 -2.452500 1.559354e-02 3.456823e-02
## SSH2 171.7726373 5.039462e+02 2.452499 1.559360e-02 3.456823e-02
## ARHGEF18 -8.1173105 5.622365e+01 -2.452182 1.560669e-02 3.459080e-02
## PICALM 121.2359213 4.716139e+02 2.451876 1.561935e-02 3.461238e-02
## PUS7 0.4142600 1.676554e+00 2.451628 1.562959e-02 3.462860e-02
## GLIPR1L2 0.9844854 3.583693e+00 2.450961 1.565717e-02 3.468187e-02
## SUCLA2 2.1536578 1.166638e+01 2.450906 1.565948e-02 3.468187e-02
## EFTUD2 -8.4054191 6.116681e+01 -2.450094 1.569313e-02 3.474990e-02
## MIA2 14.0328722 6.510253e+01 2.450007 1.569675e-02 3.475145e-02
## MRPS35 -2.5487258 1.763253e+01 -2.449638 1.571207e-02 3.477886e-02
## SH3BGRL2 13.9595260 3.740755e+01 2.449473 1.571891e-02 3.478751e-02
## SVIL 35.1740659 1.304548e+02 2.449311 1.572564e-02 3.479591e-02
## ALMS1 1.5268987 5.039630e+00 2.448644 1.575341e-02 3.485086e-02
## SLC15A4 50.7557694 1.563869e+02 2.447904 1.578426e-02 3.490997e-02
## TNFRSF10A 1.5309971 6.817997e+00 2.447862 1.578602e-02 3.490997e-02
## NRF1 -2.5306357 2.468651e+01 -2.446936 1.582468e-02 3.498894e-02
## TBPL1 4.2408389 2.635264e+01 2.446806 1.583011e-02 3.499444e-02
## ARMCX3 4.4796286 2.614452e+01 2.446587 1.583929e-02 3.500819e-02
## KCNE1 6.6420460 1.221338e+01 2.445369 1.589033e-02 3.511445e-02
## NRL -0.2653398 8.816544e-01 -2.445244 1.589555e-02 3.511945e-02
## FUT11 0.9390157 3.035451e+00 2.444671 1.591965e-02 3.516614e-02
## HIVEP1 5.2840523 1.866408e+01 2.444296 1.593540e-02 3.519437e-02
## PELI1 128.3063865 2.218051e+02 2.443761 1.595793e-02 3.523492e-02
## IGFBP2 -2.7964541 3.117651e+00 -2.443709 1.596013e-02 3.523492e-02
## RBFA -1.1972189 4.593282e+00 -2.443648 1.596267e-02 3.523492e-02
## IFRD2 -2.1226948 5.925424e+00 -2.443413 1.597259e-02 3.525027e-02
## PLXDC2 35.4009495 1.286897e+02 2.443073 1.598692e-02 3.527533e-02
## HARS1 -3.4660598 2.687007e+01 -2.441930 1.603519e-02 3.537525e-02
## ELAC1 -0.7994816 4.138869e+00 -2.441009 1.607423e-02 3.545479e-02
## WDR6 -13.1465916 6.720226e+01 -2.440508 1.609545e-02 3.549499e-02
## ZFYVE16 18.6088896 6.675315e+01 2.439557 1.613587e-02 3.557750e-02
## CHID1 -4.2663680 1.074409e+01 -2.439296 1.614697e-02 3.558885e-02
## NHSL2 8.3169771 2.347604e+01 2.439295 1.614701e-02 3.558885e-02
## ZNF697 1.1911244 3.507411e+00 2.439017 1.615886e-02 3.560833e-02
## LAMTOR4 -92.2655288 1.927988e+02 -2.438942 1.616207e-02 3.560879e-02
## ABITRAM 3.8404219 1.852229e+01 2.438581 1.617743e-02 3.563550e-02
## TCERG1 3.2005390 1.565597e+01 2.438516 1.618020e-02 3.563550e-02
## CCT3 -16.0401632 8.844045e+01 -2.438139 1.619630e-02 3.566434e-02
## SMARCAL1 -1.8623098 1.124412e+01 -2.437198 1.623653e-02 3.574628e-02
## ZKSCAN8 3.3531486 1.158964e+01 2.437074 1.624181e-02 3.575127e-02
## MRPL19 1.8031791 1.176687e+01 2.436237 1.627767e-02 3.582356e-02
## MOB1A 66.7632899 3.434518e+02 2.436125 1.628245e-02 3.582743e-02
## YIPF3 -25.6676565 1.152890e+02 -2.435809 1.629601e-02 3.585062e-02
## TOP1MT -2.3550993 5.481799e+00 -2.435256 1.631977e-02 3.589624e-02
## MPP6 0.8259467 2.802503e+00 2.435077 1.632747e-02 3.590651e-02
## RNF40 -10.1529186 7.419362e+01 -2.434347 1.635887e-02 3.596890e-02
## ACO1 1.0931377 5.432511e+00 2.432670 1.643122e-02 3.611500e-02
## OAS2 204.1378883 2.480898e+02 2.432666 1.643141e-02 3.611500e-02
## NCR3 -4.5915591 8.292290e+00 -2.432234 1.645007e-02 3.614931e-02
## MIDN -35.7072864 1.448856e+02 -2.431940 1.646282e-02 3.617062e-02
## DTWD2 1.2588483 4.652920e+00 2.431551 1.647967e-02 3.620094e-02
## PIK3AP1 119.4229154 3.334210e+02 2.431186 1.649552e-02 3.622905e-02
## ABHD13 12.3101783 5.196101e+01 2.430422 1.652867e-02 3.629513e-02
## HMGB3 2.9661394 6.394433e+00 2.430165 1.653985e-02 3.631296e-02
## HDHD2 -2.3636933 1.701176e+01 -2.430064 1.654422e-02 3.631583e-02
## CHCHD1 -5.7047600 2.002231e+01 -2.429859 1.655318e-02 3.632877e-02
## SLC30A5 3.3477917 2.559714e+01 2.428388 1.661728e-02 3.646271e-02
## NAA30 1.6380120 1.022050e+01 2.428084 1.663055e-02 3.648508e-02
## ZNF287 -0.6567855 2.184216e+00 -2.427965 1.663577e-02 3.648978e-02
## GBP3 28.8117347 5.272194e+01 2.427688 1.664786e-02 3.650955e-02
## PFN2 -0.4045351 1.050604e+00 -2.427432 1.665906e-02 3.652736e-02
## ZNF106 48.8935157 1.783189e+02 2.427176 1.667029e-02 3.654522e-02
## MSI2 3.4407663 1.646098e+01 2.426938 1.668071e-02 3.656131e-02
## NSG1 -1.8989964 3.531187e+00 -2.426142 1.671560e-02 3.661875e-02
## FKBP3 -4.1853539 2.626388e+01 -2.426136 1.671589e-02 3.661875e-02
## RPN1 -26.2958692 2.078619e+02 -2.426129 1.671618e-02 3.661875e-02
## CC2D2B 1.8910277 5.099503e+00 2.425744 1.673310e-02 3.664841e-02
## GCM1 1.0523495 2.442605e+00 2.425633 1.673797e-02 3.664841e-02
## UROS -2.2973207 9.239829e+00 -2.425610 1.673899e-02 3.664841e-02
## C11orf1 -0.8684922 4.458629e+00 -2.425180 1.675788e-02 3.668298e-02
## CACNA1I -2.8815643 5.741571e+00 -2.424876 1.677129e-02 3.670406e-02
## MPO 48.0947352 4.694274e+01 2.424821 1.677369e-02 3.670406e-02
## IL18R1 156.9373722 2.124126e+02 2.424139 1.680377e-02 3.676309e-02
## PSTK -0.3045136 1.065512e+00 -2.423918 1.681348e-02 3.677531e-02
## ATRIP -1.9388807 8.778928e+00 -2.423871 1.681556e-02 3.677531e-02
## PHF14 -4.4560711 1.882346e+01 -2.423614 1.682690e-02 3.679333e-02
## MMP25 -304.4469354 8.946589e+02 -2.423013 1.685348e-02 3.684466e-02
## IFIT2 478.4894608 6.826143e+02 2.422875 1.685959e-02 3.685122e-02
## ARF4 19.5091071 1.081584e+02 2.422593 1.687207e-02 3.687170e-02
## GTF2H3 1.6442410 8.981806e+00 2.422162 1.689115e-02 3.690661e-02
## VMA21 -2.0604101 1.933178e+01 -2.421361 1.692667e-02 3.697740e-02
## PPP1R12A 45.9601276 1.725085e+02 2.421069 1.693961e-02 3.699743e-02
## THSD1 -0.5091416 1.486633e+00 -2.421014 1.694208e-02 3.699743e-02
## LRRC59 7.3545136 4.510553e+01 2.420497 1.696504e-02 3.704075e-02
## ZNF506 2.3892049 1.059132e+01 2.420266 1.697532e-02 3.705422e-02
## GBP4 44.0998898 7.451168e+01 2.420218 1.697746e-02 3.705422e-02
## SULT1A3 -18.8006554 8.117230e+01 -2.419960 1.698894e-02 3.707247e-02
## IGSF6 -122.2930915 4.148170e+02 -2.419493 1.700977e-02 3.710654e-02
## PLEK 160.4868698 5.939236e+02 2.419469 1.701081e-02 3.710654e-02
## CMC2 2.4881868 1.266003e+01 2.419050 1.702954e-02 3.714055e-02
## COPS7B -2.9194132 1.925988e+01 -2.418811 1.704018e-02 3.715494e-02
## MFSD11 2.6765015 1.768062e+01 2.418762 1.704240e-02 3.715494e-02
## SAMD4B 3.5654134 2.104429e+01 2.418432 1.705713e-02 3.718023e-02
## ZNF211 -2.8515964 1.862264e+01 -2.417854 1.708299e-02 3.722973e-02
## TRNAU1AP -4.2557038 2.255634e+01 -2.417599 1.709437e-02 3.724770e-02
## CUL1 8.8150875 3.484763e+01 2.417426 1.710213e-02 3.725777e-02
## DDB2 -4.3233692 1.917101e+01 -2.417240 1.711048e-02 3.726911e-02
## MSMO1 2.9734887 1.239637e+01 2.417113 1.711616e-02 3.727463e-02
## ATP6V0A1 -8.8404529 5.292454e+01 -2.417041 1.711940e-02 3.727484e-02
## PSD3 0.3223671 9.779205e-01 2.416841 1.712836e-02 3.728751e-02
## ZC3H15 8.2691471 4.990139e+01 2.416610 1.713874e-02 3.730050e-02
## CDR2 2.6416127 1.259112e+01 2.416505 1.714345e-02 3.730050e-02
## GBE1 5.5685261 1.973066e+01 2.416498 1.714376e-02 3.730050e-02
## HDAC5 -23.1935760 8.636239e+01 -2.416289 1.715314e-02 3.731405e-02
## RAB11FIP4 -13.4140734 7.769235e+01 -2.416213 1.715657e-02 3.731468e-02
## ZNF135 -0.2611389 5.798026e-01 -2.415603 1.718398e-02 3.736743e-02
## ARHGAP15 -31.8669310 1.275339e+02 -2.413994 1.725650e-02 3.751825e-02
## PIM2 27.4390534 1.381539e+02 2.413567 1.727577e-02 3.755326e-02
## ZNF200 10.0571576 3.703499e+01 2.413485 1.727950e-02 3.755450e-02
## MAN2C1 -12.9190906 4.115284e+01 -2.413327 1.728663e-02 3.756311e-02
## SMIM8 1.8024843 6.595449e+00 2.412736 1.731339e-02 3.761436e-02
## PBX3 2.1973857 1.315494e+01 2.412501 1.732404e-02 3.763060e-02
## CHSY1 33.4595555 1.093149e+02 2.412272 1.733440e-02 3.764622e-02
## ALS2 1.8674444 1.020565e+01 2.411953 1.734888e-02 3.767077e-02
## NTNG2 9.1831048 2.500437e+01 2.411701 1.736033e-02 3.768872e-02
## SLC24A3 1.7297585 4.343573e+00 2.410730 1.740444e-02 3.777757e-02
## P2RY12 1.5751063 5.732731e+00 2.409501 1.746044e-02 3.789219e-02
## ZNF346 1.4737083 1.263160e+01 2.409334 1.746809e-02 3.790185e-02
## ATG7 -8.0105106 6.132540e+01 -2.408316 1.751457e-02 3.799526e-02
## NPRL3 -2.6690903 8.948226e+00 -2.408251 1.751754e-02 3.799526e-02
## DIS3 4.8980309 3.410501e+01 2.407902 1.753354e-02 3.801606e-02
## NUDT13 -0.3809258 1.432521e+00 -2.407902 1.753355e-02 3.801606e-02
## TMED3 -10.3099152 2.822494e+01 -2.407693 1.754313e-02 3.802453e-02
## KATNIP 4.0017789 2.168983e+01 2.407615 1.754668e-02 3.802453e-02
## CDIN1 0.2737374 9.359835e-01 2.407607 1.754707e-02 3.802453e-02
## MARK3 16.3774158 1.069861e+02 2.407368 1.755800e-02 3.804126e-02
## VASP -192.1420725 8.106965e+02 -2.407119 1.756942e-02 3.805904e-02
## AASDHPPT 2.8270563 1.933586e+01 2.406771 1.758543e-02 3.808677e-02
## TMED5 18.7431828 8.907431e+01 2.406406 1.760219e-02 3.811433e-02
## HENMT1 -5.1644214 2.612720e+01 -2.406321 1.760607e-02 3.811433e-02
## AP3M1 5.2966456 3.754818e+01 2.406284 1.760779e-02 3.811433e-02
## ZNF606 -0.5113691 2.971470e+00 -2.406196 1.761181e-02 3.811607e-02
## FAM151B 0.8827493 2.746729e+00 2.405854 1.762755e-02 3.814318e-02
## RIOX1 -1.0974398 6.543144e+00 -2.404123 1.770737e-02 3.830890e-02
## OTUD3 1.0271345 4.521405e+00 2.403862 1.771946e-02 3.832806e-02
## ZNF45 1.4612146 9.325411e+00 2.403700 1.772694e-02 3.833725e-02
## MBNL1 103.9067876 3.960728e+02 2.402760 1.777045e-02 3.842435e-02
## S100A6 -305.7230427 1.118226e+03 -2.402603 1.777773e-02 3.843307e-02
## LYPLAL1 -2.5342949 1.627181e+01 -2.402463 1.778422e-02 3.844010e-02
## KCNMB3 0.2281283 8.327175e-01 2.401530 1.782752e-02 3.852668e-02
## VRK2 3.4686457 1.473284e+01 2.401415 1.783289e-02 3.852975e-02
## IFIT3 572.2984065 7.003602e+02 2.401360 1.783544e-02 3.852975e-02
## CA8 -0.3540648 7.930698e-01 -2.401163 1.784462e-02 3.853808e-02
## ELOA 2.8439112 2.736178e+01 2.401137 1.784579e-02 3.853808e-02
## ZC3H10 -1.8902471 1.320082e+01 -2.400903 1.785673e-02 3.855467e-02
## ULK3 -4.3855248 2.198114e+01 -2.400026 1.789757e-02 3.863105e-02
## PLEKHG4 -1.2276974 2.916454e+00 -2.400004 1.789862e-02 3.863105e-02
## TGIF2 -4.3709824 2.454050e+01 -2.399878 1.790447e-02 3.863664e-02
## ROM1 -1.4156942 3.040250e+00 -2.399199 1.793620e-02 3.869808e-02
## DDX18 7.2025716 3.476933e+01 2.398714 1.795884e-02 3.873988e-02
## DCLRE1B 1.3090466 7.472998e+00 2.398567 1.796573e-02 3.874770e-02
## C1orf116 0.4265722 9.731384e-01 2.398251 1.798053e-02 3.877256e-02
## KCNA3 1.6547960 4.606723e+00 2.397662 1.800813e-02 3.882099e-02
## NBR1 33.4726692 1.864490e+02 2.397617 1.801026e-02 3.882099e-02
## BRK1 -29.2659294 1.710527e+02 -2.397562 1.801281e-02 3.882099e-02
## SHOC2 36.6748087 1.442953e+02 2.396693 1.805363e-02 3.890190e-02
## C14orf28 -0.7058137 4.319275e+00 -2.396557 1.806001e-02 3.890858e-02
## CDHR1 -0.7775182 1.189851e+00 -2.395249 1.812163e-02 3.903379e-02
## IGF2R 184.2815756 6.692719e+02 2.395175 1.812511e-02 3.903379e-02
## UBTD2 1.3902814 9.102136e+00 2.395113 1.812800e-02 3.903379e-02
## CDC42SE1 252.8039208 1.095522e+03 2.394684 1.814825e-02 3.907029e-02
## DNAJC9 4.1582736 1.594943e+01 2.393976 1.818175e-02 3.913532e-02
## ZNF217 38.5771748 1.417172e+02 2.393843 1.818803e-02 3.914173e-02
## FZD5 0.6113261 1.647727e+00 2.393385 1.820972e-02 3.918129e-02
## MICU1 11.5940984 7.068736e+01 2.393230 1.821705e-02 3.918996e-02
## CD2 -24.3227732 6.064990e+01 -2.393120 1.822228e-02 3.919409e-02
## SNRNP27 3.3200037 2.234867e+01 2.392610 1.824644e-02 3.922296e-02
## LTB4R2 0.3022967 1.058158e+00 2.392589 1.824744e-02 3.922296e-02
## ADAM9 15.5101233 4.478936e+01 2.392533 1.825009e-02 3.922296e-02
## MYORG 0.2863171 1.655845e+00 2.392511 1.825115e-02 3.922296e-02
## ZNF207 14.0875165 8.861035e+01 2.392488 1.825224e-02 3.922296e-02
## USP7 17.8410118 9.981722e+01 2.391462 1.830099e-02 3.932061e-02
## PTBP1 -7.3405102 5.232086e+01 -2.390923 1.832663e-02 3.936856e-02
## FAM114A2 2.6039910 1.559514e+01 2.390708 1.833691e-02 3.938351e-02
## DDT -4.6921484 1.158096e+01 -2.389619 1.838884e-02 3.948789e-02
## UNC5CL -0.4655863 2.499475e+00 -2.389496 1.839472e-02 3.949337e-02
## UEVLD 2.5391617 1.384850e+01 2.388741 1.843082e-02 3.955668e-02
## CDKN2D -86.8704511 2.568970e+02 -2.388740 1.843088e-02 3.955668e-02
## DCAF17 1.8332401 7.498758e+00 2.388619 1.843666e-02 3.956193e-02
## NADK2 1.1653778 7.657185e+00 2.388415 1.844644e-02 3.957576e-02
## PDE6D -2.9484031 2.145613e+01 -2.387397 1.849528e-02 3.967336e-02
## RAB5C -32.0919131 2.103433e+02 -2.387174 1.850600e-02 3.968641e-02
## DHRS7B -2.8225211 1.486559e+01 -2.387079 1.851057e-02 3.968641e-02
## NFE2L2 35.7129751 1.273963e+02 2.387061 1.851140e-02 3.968641e-02
## HLA-DOB -4.3249541 1.228008e+01 -2.386545 1.853623e-02 3.972818e-02
## ANO5 0.5103283 1.203212e+00 2.386517 1.853759e-02 3.972818e-02
## HPSE 30.3102286 8.443525e+01 2.385901 1.856724e-02 3.978455e-02
## SLC35C1 -2.1530691 1.319819e+01 -2.385682 1.857778e-02 3.979995e-02
## MAN1A1 36.9235459 1.117366e+02 2.385194 1.860133e-02 3.984319e-02
## SLC4A7 3.3926820 9.586608e+00 2.384582 1.863087e-02 3.989925e-02
## SUCO 7.0460586 2.565766e+01 2.384130 1.865274e-02 3.993890e-02
## SNX33 -1.2262289 5.135357e+00 -2.383767 1.867031e-02 3.996929e-02
## HDGFL3 2.2551642 9.306207e+00 2.383628 1.867703e-02 3.997647e-02
## ASCL2 -0.9961786 2.773980e+00 -2.383461 1.868515e-02 3.998662e-02
## RNPC3 3.8336673 1.911659e+01 2.383177 1.869888e-02 4.000879e-02
## CNEP1R1 14.2888000 4.973625e+01 2.383095 1.870290e-02 4.001017e-02
## DOCK7 0.8328981 2.774259e+00 2.382853 1.871461e-02 4.002800e-02
## LAMB3 -0.6739565 7.699130e-01 -2.382616 1.872612e-02 4.004541e-02
## SNRPF -3.8757294 1.587034e+01 -2.381361 1.878715e-02 4.016347e-02
## LAMP2 94.1708701 3.942402e+02 2.381301 1.879006e-02 4.016347e-02
## IFNLR1 0.9123519 5.060651e+00 2.381272 1.879149e-02 4.016347e-02
## SLC2A11 -1.0084508 3.019815e+00 -2.380973 1.880602e-02 4.018728e-02
## MRPL16 -4.6259461 2.530340e+01 -2.380654 1.882160e-02 4.021333e-02
## BBS10 2.6969322 1.045328e+01 2.380556 1.882637e-02 4.021627e-02
## PLEKHO2 -83.5726032 3.508440e+02 -2.379932 1.885682e-02 4.027408e-02
## SPATA5L1 2.0537636 1.079640e+01 2.379315 1.888700e-02 4.033125e-02
## VAV3 16.0070028 6.167824e+01 2.378589 1.892255e-02 4.039190e-02
## AGTRAP -72.3375634 1.879971e+02 -2.378538 1.892505e-02 4.039190e-02
## MRPS16 -5.1270663 3.150231e+01 -2.378526 1.892561e-02 4.039190e-02
## ERMAP 3.0955803 1.430786e+01 2.377728 1.896478e-02 4.046820e-02
## CPED1 1.4462123 3.810962e+00 2.377102 1.899551e-02 4.052649e-02
## HILPDA -0.3675137 1.499195e+00 -2.376965 1.900228e-02 4.053365e-02
## PECAM1 -107.1095391 5.697328e+02 -2.376514 1.902448e-02 4.056707e-02
## EFEMP2 -2.3314777 6.392319e+00 -2.376507 1.902479e-02 4.056707e-02
## CCNJ 0.9226963 3.942130e+00 2.376267 1.903664e-02 4.058505e-02
## TRMT1L 7.2903425 3.277542e+01 2.375213 1.908862e-02 4.068855e-02
## COA6 -1.8016002 1.065373e+01 -2.373705 1.916321e-02 4.084019e-02
## COPS2 7.9521122 4.140735e+01 2.373187 1.918890e-02 4.088760e-02
## FKBP5 379.7773083 6.929104e+02 2.373068 1.919482e-02 4.089286e-02
## TFEC 12.1834696 3.921318e+01 2.372837 1.920626e-02 4.090512e-02
## SS18L2 -3.7289897 2.032878e+01 -2.372813 1.920747e-02 4.090512e-02
## DLST 6.8486857 6.467866e+01 2.370986 1.929837e-02 4.109132e-02
## SNRPA1 -2.7059211 1.446240e+01 -2.370870 1.930413e-02 4.109275e-02
## CHRNA10 -0.7116774 2.490098e+00 -2.370833 1.930597e-02 4.109275e-02
## ZFPM1 -0.3957480 8.856199e-01 -2.370762 1.930952e-02 4.109293e-02
## CENPM 1.0720677 1.562284e+00 2.370519 1.932167e-02 4.111141e-02
## AGO2 15.6362888 5.669193e+01 2.370039 1.934564e-02 4.115502e-02
## TLR2 255.3027515 7.191036e+02 2.369647 1.936523e-02 4.118931e-02
## FARS2 -1.8292102 7.004654e+00 -2.369381 1.937854e-02 4.121024e-02
## RCC1L -2.4007991 1.065291e+01 -2.369035 1.939586e-02 4.123968e-02
## DHX8 9.0405117 6.633369e+01 2.368555 1.941993e-02 4.128006e-02
## CORO1C 30.4574852 1.635465e+02 2.368517 1.942182e-02 4.128006e-02
## ELOVL1 -9.9955942 7.439302e+01 -2.368250 1.943522e-02 4.129582e-02
## RAB1A 32.2146225 1.349901e+02 2.368230 1.943619e-02 4.129582e-02
## L3MBTL2 -3.5066990 1.897028e+01 -2.367753 1.946014e-02 4.133929e-02
## COQ8B -9.0508001 2.772529e+01 -2.366663 1.951496e-02 4.144832e-02
## PHLPP1 4.0419971 1.374674e+01 2.366531 1.952164e-02 4.145508e-02
## PROSER3 -0.8586246 6.664087e+00 -2.366438 1.952631e-02 4.145757e-02
## ZNF430 3.4162909 1.709272e+01 2.366051 1.954581e-02 4.149155e-02
## MTHFD1L 0.7853290 2.951414e+00 2.365527 1.957225e-02 4.154024e-02
## GATD3A -7.7486244 8.628400e+00 -2.364584 1.961990e-02 4.162155e-02
## C12orf45 2.3705430 1.306772e+01 2.364562 1.962102e-02 4.162155e-02
## GLT8D1 1.9143812 2.335021e+01 2.364561 1.962109e-02 4.162155e-02
## METTL3 3.1521107 2.451178e+01 2.364460 1.962618e-02 4.162491e-02
## GPBP1 21.9399898 1.477481e+02 2.364153 1.964173e-02 4.165045e-02
## MAP2K4 20.9778195 8.293539e+01 2.364008 1.964906e-02 4.165853e-02
## PLCD3 -0.5233555 2.541970e+00 -2.363866 1.965625e-02 4.166634e-02
## COMMD4 -5.2579009 1.227254e+01 -2.363568 1.967138e-02 4.169096e-02
## UBALD2 -58.3085377 1.670303e+02 -2.363448 1.967749e-02 4.169645e-02
## FAM156A -1.9864417 5.038230e+00 -2.363346 1.968266e-02 4.169996e-02
## COX5B -14.7708131 5.214352e+01 -2.363088 1.969571e-02 4.172015e-02
## NENF -7.4881465 1.850034e+01 -2.362742 1.971329e-02 4.174994e-02
## NAB1 8.8696099 3.853792e+01 2.362472 1.972704e-02 4.177160e-02
## SLC4A5 0.7859708 2.891648e+00 2.361911 1.975559e-02 4.182458e-02
## PRR3 -1.0384553 6.114441e+00 -2.360511 1.982697e-02 4.196820e-02
## CARD6 23.3328949 6.474590e+01 2.359501 1.987861e-02 4.206809e-02
## CTSD -177.4209550 4.440580e+02 -2.359449 1.988125e-02 4.206809e-02
## DDX21 14.5462782 4.772051e+01 2.359093 1.989947e-02 4.209912e-02
## CCDC125 9.8771164 3.400019e+01 2.358911 1.990880e-02 4.211136e-02
## PIGB 6.5483557 2.445336e+01 2.358486 1.993058e-02 4.214991e-02
## SAPCD1 -0.5207388 1.781312e+00 -2.358262 1.994209e-02 4.216672e-02
## RBM41 1.4054974 8.090103e+00 2.357497 1.998141e-02 4.224235e-02
## CD160 -2.5158968 5.254157e+00 -2.356186 2.004889e-02 4.237744e-02
## CMC1 -2.7119711 1.313216e+01 -2.355992 2.005890e-02 4.238304e-02
## HACD4 25.4262151 1.380235e+02 2.355928 2.006224e-02 4.238304e-02
## NTAQ1 -0.6555415 3.126340e+00 -2.355927 2.006226e-02 4.238304e-02
## NOL8 3.4426655 2.246275e+01 2.355420 2.008843e-02 4.243076e-02
## RAB31 118.6590436 4.434606e+02 2.355106 2.010467e-02 4.245750e-02
## TMEM9 -3.7540185 1.312264e+01 -2.354550 2.013343e-02 4.250843e-02
## PRR29 -0.9458319 2.963770e+00 -2.354501 2.013595e-02 4.250843e-02
## GNPAT 3.2715604 3.635112e+01 2.354220 2.015052e-02 4.252772e-02
## TDRD12 -0.2952565 6.505601e-01 -2.354160 2.015362e-02 4.252772e-02
## TAF13 2.2066859 6.980751e+00 2.354117 2.015584e-02 4.252772e-02
## TMOD2 9.4124050 3.218961e+01 2.353503 2.018770e-02 4.258735e-02
## NLRP12 -26.7917261 1.132651e+02 -2.353386 2.019376e-02 4.259257e-02
## SLC66A3 -4.2629809 2.557005e+01 -2.352547 2.023736e-02 4.267693e-02
## EVI2B 447.6325095 1.505786e+03 2.352093 2.026097e-02 4.271912e-02
## CCDC28B -1.3820281 2.897535e+00 -2.351721 2.028034e-02 4.275236e-02
## AFAP1L2 0.5279389 1.847041e+00 2.351513 2.029117e-02 4.276759e-02
## MACROH2A2 -0.5965189 1.740882e+00 -2.350967 2.031965e-02 4.282001e-02
## ZNF132 -0.3363762 1.305671e+00 -2.350527 2.034265e-02 4.286087e-02
## WDFY3 60.0440560 1.682302e+02 2.350412 2.034866e-02 4.286591e-02
## GRAMD1C 3.3116940 8.180348e+00 2.349715 2.038509e-02 4.293233e-02
## YIF1A -2.9197666 7.975858e+00 -2.349648 2.038860e-02 4.293233e-02
## RASGEF1A 9.5041796 2.034468e+01 2.349539 2.039429e-02 4.293233e-02
## TBC1D25 -3.2340188 1.967767e+01 -2.349532 2.039466e-02 4.293233e-02
## FUBP1 10.2441807 4.982512e+01 2.349196 2.041228e-02 4.296177e-02
## CMAS 2.2701554 1.506844e+01 2.348792 2.043343e-02 4.299866e-02
## RIMS3 0.5379521 2.478128e+00 2.348296 2.045946e-02 4.304581e-02
## ZNF384 4.6780086 5.270992e+01 2.348185 2.046530e-02 4.305045e-02
## BRWD3 16.9262035 5.383229e+01 2.347903 2.048012e-02 4.307398e-02
## TIGAR 2.4643825 1.743032e+01 2.347299 2.051189e-02 4.313316e-02
## CLIP4 4.1772863 1.803065e+01 2.347043 2.052534e-02 4.315379e-02
## MMUT 2.3627843 1.345620e+01 2.346155 2.057215e-02 4.324453e-02
## GP1BB -9.5700293 1.421608e+01 -2.345678 2.059733e-02 4.328979e-02
## USP53 1.6964256 5.756835e+00 2.345226 2.062124e-02 4.333237e-02
## DDX3X 166.9789263 6.239814e+02 2.344711 2.064846e-02 4.338188e-02
## CDK11B -8.6215634 5.065261e+01 -2.344255 2.067259e-02 4.342490e-02
## ZNF608 21.5604248 2.966113e+01 2.344075 2.068217e-02 4.343731e-02
## SLC30A1 11.1788036 4.042959e+01 2.343447 2.071547e-02 4.349955e-02
## PSMD8 -12.6108127 7.256145e+01 -2.343162 2.073061e-02 4.352101e-02
## ZBTB6 3.1154958 1.339248e+01 2.343080 2.073496e-02 4.352101e-02
## PAPSS2 1.3558281 4.832155e+00 2.342994 2.073949e-02 4.352101e-02
## PAK2 54.1386512 2.705991e+02 2.342950 2.074183e-02 4.352101e-02
## LSM5 -4.5417725 1.623787e+01 -2.342909 2.074404e-02 4.352101e-02
## UMAD1 2.5936358 1.364854e+01 2.342326 2.077503e-02 4.356322e-02
## ZFP82 -0.6133393 2.896900e+00 -2.342286 2.077719e-02 4.356322e-02
## CDT1 0.9824281 1.408057e+00 2.342203 2.078157e-02 4.356322e-02
## SENP7 10.7325726 4.000166e+01 2.342182 2.078269e-02 4.356322e-02
## CUL5 2.8055594 1.720670e+01 2.342168 2.078343e-02 4.356322e-02
## CLOCK 1.6579399 7.306462e+00 2.342117 2.078619e-02 4.356322e-02
## BLOC1S1 -68.9949182 1.778309e+02 -2.341599 2.081377e-02 4.361331e-02
## VEPH1 1.3970919 2.797088e+00 2.341262 2.083171e-02 4.364319e-02
## TMEM50A 31.9757826 2.020649e+02 2.340820 2.085534e-02 4.368498e-02
## AP1S1 -3.4347646 1.425743e+01 -2.339635 2.091870e-02 4.380995e-02
## TEX22 -0.3406668 8.313437e-01 -2.338863 2.096006e-02 4.388883e-02
## QPRT -0.3609079 1.181394e+00 -2.337198 2.104952e-02 4.406278e-02
## HSD17B12 4.4134454 1.990616e+01 2.337179 2.105057e-02 4.406278e-02
## KCNC4 -0.3083970 8.713637e-01 -2.336518 2.108617e-02 4.412952e-02
## HOOK3 7.0856125 3.843573e+01 2.336130 2.110709e-02 4.416550e-02
## DSTN -3.5858932 2.926313e+01 -2.333844 2.123080e-02 4.441328e-02
## ZBTB26 1.5134803 8.262354e+00 2.333803 2.123299e-02 4.441328e-02
## FBXO9 14.3664064 6.660879e+01 2.333672 2.124010e-02 4.442032e-02
## ZNF596 -0.3356181 1.332930e+00 -2.332399 2.130931e-02 4.455721e-02
## FCGBP -1.9289498 2.585408e+00 -2.331582 2.135381e-02 4.464238e-02
## FAHD2A -2.1199321 6.909538e+00 -2.331173 2.137609e-02 4.468107e-02
## TEX10 0.9108228 6.772992e+00 2.330947 2.138844e-02 4.469901e-02
## CYREN 3.7774203 2.893711e+01 2.330161 2.143140e-02 4.477428e-02
## LMBR1 5.0703889 1.822222e+01 2.330150 2.143201e-02 4.477428e-02
## USP4 28.1918989 1.605139e+02 2.329500 2.146756e-02 4.484065e-02
## SLC29A1 -7.5091724 1.245679e+01 -2.329376 2.147438e-02 4.484701e-02
## SLC6A4 0.5035570 2.218951e+00 2.328675 2.151280e-02 4.491933e-02
## ARMT1 6.3944968 3.302271e+01 2.328349 2.153069e-02 4.494878e-02
## CEP85 2.1967271 1.216090e+01 2.326897 2.161061e-02 4.510470e-02
## PRSS36 -1.3891921 3.097334e+00 -2.326853 2.161299e-02 4.510470e-02
## MMS19 -4.1285196 3.437427e+01 -2.326428 2.163645e-02 4.514573e-02
## TNFAIP6 53.0533353 1.110777e+02 2.325576 2.168349e-02 4.523591e-02
## LIN54 4.4264230 1.761995e+01 2.324077 2.176648e-02 4.540107e-02
## NFKBID -3.7783610 1.767117e+01 -2.323900 2.177627e-02 4.541119e-02
## SMIM5 3.4497458 7.977298e+00 2.323851 2.177899e-02 4.541119e-02
## PERP 1.1341322 2.418782e+00 2.323146 2.181816e-02 4.548486e-02
## NF2 -1.8644975 1.108642e+01 -2.321589 2.190479e-02 4.565743e-02
## R3HDM1 1.5111989 1.206262e+01 2.321342 2.191857e-02 4.567046e-02
## PSMC4 -6.9063145 3.771708e+01 -2.321298 2.192103e-02 4.567046e-02
## RAB6A 18.1507224 1.105454e+02 2.321270 2.192259e-02 4.567046e-02
## GBP1 226.4877789 2.827242e+02 2.321165 2.192845e-02 4.567464e-02
## NBPF11 3.2914199 1.473116e+01 2.320308 2.197635e-02 4.576638e-02
## KLC4 -2.7252973 1.591845e+01 -2.319816 2.200386e-02 4.581378e-02
## RNASE3 39.8174680 3.985542e+01 2.319763 2.200684e-02 4.581378e-02
## ANP32B -19.8724736 1.059486e+02 -2.319605 2.201570e-02 4.582419e-02
## STX1A -1.2303212 2.022411e+00 -2.319382 2.202820e-02 4.584215e-02
## PPA2 -6.4254518 2.498057e+01 -2.319255 2.203530e-02 4.584889e-02
## KLF7 32.4027395 8.493973e+01 2.319025 2.204821e-02 4.585707e-02
## TMIGD3 6.4678487 9.240646e+00 2.319007 2.204918e-02 4.585707e-02
## RFX5 7.3287475 3.812953e+01 2.318978 2.205083e-02 4.585707e-02
## CLCF1 -0.6820605 2.005736e+00 -2.318870 2.205690e-02 4.586165e-02
## MYO9A 2.0893416 8.313552e+00 2.318592 2.207249e-02 4.588602e-02
## PKIG -1.7345673 5.241906e+00 -2.318368 2.208505e-02 4.589669e-02
## XXYLT1 -0.8438795 5.730841e+00 -2.318363 2.208536e-02 4.589669e-02
## CDKL5 4.2459564 1.390341e+01 2.317065 2.215835e-02 4.604029e-02
## AKAP7 -1.2122052 5.447240e+00 -2.316736 2.217692e-02 4.606587e-02
## PPP6C 14.0964599 9.243677e+01 2.316709 2.217842e-02 4.606587e-02
## DVL2 -2.0359048 1.237332e+01 -2.316378 2.219710e-02 4.609658e-02
## CRYGS -0.3722152 1.113857e+00 -2.316035 2.221645e-02 4.612868e-02
## CHORDC1 3.3938819 1.874550e+01 2.315558 2.224340e-02 4.617657e-02
## FANCD2 2.2203892 1.171078e+01 2.314867 2.228247e-02 4.624958e-02
## CES1 -40.4097095 8.420999e+01 -2.314030 2.232989e-02 4.633989e-02
## DEGS1 13.7005198 7.228960e+01 2.313878 2.233851e-02 4.634805e-02
## TMEM60 4.2367635 2.154349e+01 2.313823 2.234164e-02 4.634805e-02
## TRRAP 3.8721681 1.691544e+01 2.313464 2.236200e-02 4.638218e-02
## ARL6IP6 8.0662902 3.080458e+01 2.313309 2.237082e-02 4.639237e-02
## TMEM45A 1.4581496 2.313776e+00 2.312619 2.241002e-02 4.646553e-02
## ZNF33A 24.1968989 9.466988e+01 2.312474 2.241827e-02 4.647451e-02
## TMEM62 2.6599604 1.265611e+01 2.312328 2.242661e-02 4.648368e-02
## EIF5A2 0.6199976 4.360189e+00 2.311899 2.245102e-02 4.652613e-02
## ANKRD16 -0.5028392 2.132169e+00 -2.311426 2.247799e-02 4.657390e-02
## ZNF609 4.4824038 2.070060e+01 2.310789 2.251436e-02 4.664111e-02
## PDZD8 23.1096619 7.019456e+01 2.310399 2.253665e-02 4.667768e-02
## FBXO25 -2.1519797 1.207744e+01 -2.310342 2.253989e-02 4.667768e-02
## RNF11 28.2250358 1.154221e+02 2.310191 2.254853e-02 4.668743e-02
## NHLRC4 -0.6165932 9.591407e-01 -2.310052 2.255652e-02 4.669582e-02
## ZBTB32 1.0283262 1.441802e+00 2.309529 2.258641e-02 4.674954e-02
## ZNF655 10.1551728 7.605659e+01 2.309371 2.259547e-02 4.676013e-02
## DPH2 -1.9416961 9.237798e+00 -2.309126 2.260953e-02 4.677565e-02
## PXK 19.1645649 6.834272e+01 2.309103 2.261086e-02 4.677565e-02
## TBL2 -1.3773226 1.094377e+01 -2.307671 2.269309e-02 4.693758e-02
## ST8SIA6 0.6112655 1.627960e+00 2.307374 2.271019e-02 4.696474e-02
## CXXC5 -4.1689526 1.214782e+01 -2.306437 2.276420e-02 4.706824e-02
## ZNF250 -1.0900420 4.737338e+00 -2.306103 2.278347e-02 4.709986e-02
## TWF1 8.9118358 3.541904e+01 2.304366 2.288391e-02 4.729926e-02
## LMAN2L -1.1881190 9.559004e+00 -2.303877 2.291226e-02 4.734244e-02
## HIF1A 90.9836413 1.863594e+02 2.303868 2.291278e-02 4.734244e-02
## TNFSF14 27.6568898 9.290756e+01 2.302610 2.298588e-02 4.748520e-02
## NPTXR -0.7865234 1.926910e+00 -2.302047 2.301865e-02 4.754462e-02
## PAM 13.8361707 3.321219e+01 2.301019 2.307861e-02 4.766017e-02
## C9orf40 2.3695777 6.742911e+00 2.300846 2.308871e-02 4.767272e-02
## RARA -33.1664430 1.399666e+02 -2.300772 2.309303e-02 4.767335e-02
## DPY19L4 1.0703292 4.967538e+00 2.300117 2.313130e-02 4.772680e-02
## RUSC1 -1.4420377 7.610170e+00 -2.300114 2.313151e-02 4.772680e-02
## TLE4 18.6212526 1.029233e+02 2.300097 2.313249e-02 4.772680e-02
## IQGAP2 45.5274302 1.575463e+02 2.300053 2.313502e-02 4.772680e-02
## POLR2B 14.1865160 8.952935e+01 2.299642 2.315911e-02 4.776818e-02
## SLC35B3 2.5454568 1.728169e+01 2.299281 2.318024e-02 4.779841e-02
## PTBP3 66.4049909 2.794482e+02 2.299254 2.318183e-02 4.779841e-02
## GNL3 5.7478907 3.206503e+01 2.298400 2.323191e-02 4.789336e-02
## IPO13 -2.7566321 1.629793e+01 -2.298169 2.324549e-02 4.791302e-02
## ZNF540 -0.9964626 2.732737e+00 -2.297922 2.326000e-02 4.793459e-02
## GRK2 -53.1244651 3.422874e+02 -2.296702 2.333181e-02 4.806911e-02
## PCMTD1 24.5995090 9.676103e+01 2.296650 2.333491e-02 4.806911e-02
## SACS 3.1083730 8.787320e+00 2.296607 2.333743e-02 4.806911e-02
## ALG12 -1.5395762 9.022112e+00 -2.296111 2.336670e-02 4.812103e-02
## PLSCR1 77.7027270 1.655015e+02 2.295891 2.337970e-02 4.813945e-02
## SLC45A3 -1.1937868 3.100764e+00 -2.295489 2.340341e-02 4.817990e-02
## RHOC -27.5946319 6.498898e+01 -2.295316 2.341364e-02 4.819260e-02
## DHX38 -3.4716154 4.268733e+01 -2.294115 2.348477e-02 4.833061e-02
## CDK7 3.0701486 1.924249e+01 2.293732 2.350750e-02 4.836285e-02
## KIAA0232 29.3386293 1.188543e+02 2.293713 2.350859e-02 4.836285e-02
## COQ10A -0.8405468 3.206566e+00 -2.292308 2.359209e-02 4.851145e-02
## MAPK6 6.5512600 1.946851e+01 2.292308 2.359209e-02 4.851145e-02
## OAS3 202.1953576 2.316988e+02 2.292291 2.359309e-02 4.851145e-02
## SP140 16.3052275 4.515005e+01 2.291664 2.363048e-02 4.857991e-02
## L3MBTL4 0.3075348 1.170795e+00 2.290875 2.367751e-02 4.866815e-02
## PIGBOS1 -2.8175361 1.692936e+01 -2.290729 2.368628e-02 4.867774e-02
## SIGLEC10 -45.5800195 1.200481e+02 -2.289104 2.378348e-02 4.886903e-02
## LRPAP1 -23.3516633 9.556031e+01 -2.288885 2.379663e-02 4.888760e-02
## PLCH2 -0.6569937 1.426267e+00 -2.288007 2.384934e-02 4.898739e-02
## SF3A1 15.9493115 1.035021e+02 2.287614 2.387297e-02 4.902743e-02
## RHD 1.2343716 3.174576e+00 2.287477 2.388119e-02 4.903583e-02
## BBS12 0.3299788 1.604934e+00 2.287284 2.389278e-02 4.905113e-02
## ZNF726 0.2827303 1.187037e+00 2.287059 2.390633e-02 4.907046e-02
## NPHP3 3.3920114 1.494527e+01 2.286600 2.393401e-02 4.911776e-02
## STK24 12.1273883 1.023257e+02 2.286539 2.393766e-02 4.911776e-02
## MARS2 0.7852595 3.196093e+00 2.286366 2.394809e-02 4.912669e-02
## XPO4 2.8643498 1.176345e+01 2.286330 2.395030e-02 4.912669e-02
## PNPT1 7.6429566 1.826990e+01 2.285769 2.398414e-02 4.918353e-02
## GKAP1 1.0113799 4.207569e+00 2.285733 2.398630e-02 4.918353e-02
## IRAK3 155.5710648 3.448661e+02 2.285616 2.399337e-02 4.918953e-02
## CALM1 35.9737076 3.500291e+02 2.285361 2.400878e-02 4.921261e-02
## MTMR10 18.3565753 8.689626e+01 2.285117 2.402353e-02 4.923433e-02
## SLC16A7 3.2537803 1.160564e+01 2.284727 2.404717e-02 4.927426e-02
## FAM32A -15.9803205 1.230006e+02 -2.284244 2.407637e-02 4.932557e-02
## FBXO45 2.0165148 1.239601e+01 2.284046 2.408838e-02 4.934166e-02
## ZNF597 0.8443340 4.708560e+00 2.283868 2.409920e-02 4.935530e-02
## C22orf39 2.0810473 2.507049e+01 2.283797 2.410352e-02 4.935562e-02
## LIG3 1.9344768 1.172082e+01 2.283442 2.412500e-02 4.939108e-02
## AP1G2 -22.1586369 1.103251e+02 -2.283341 2.413116e-02 4.939516e-02
## MFN1 6.8892645 4.363003e+01 2.283201 2.413965e-02 4.940400e-02
## UBC -797.0040414 3.852682e+03 -2.282877 2.415932e-02 4.943574e-02
## NPRL2 -4.1106110 2.244391e+01 -2.282631 2.417432e-02 4.945791e-02
## ZNF131 3.1301728 1.826822e+01 2.282140 2.420419e-02 4.950711e-02
## TIMM23B 0.7502481 3.428654e+00 2.282098 2.420672e-02 4.950711e-02
## IFI44L 200.5738061 2.146960e+02 2.281887 2.421959e-02 4.952350e-02
## ZNF277 -2.0310001 1.797207e+01 -2.281829 2.422309e-02 4.952350e-02
## PDIA6 22.8930271 1.040426e+02 2.281713 2.423016e-02 4.952727e-02
## CABP4 -0.2594789 8.406373e-01 -2.281662 2.423329e-02 4.952727e-02
## HERC5 97.0356310 1.214148e+02 2.281442 2.424671e-02 4.954617e-02
## GMPPA -7.2340227 2.279266e+01 -2.280799 2.428593e-02 4.961776e-02
## CDK5RAP3 -36.3746274 2.413536e+02 -2.280480 2.430541e-02 4.964220e-02
## MAP3K13 0.2446732 1.073659e+00 2.280466 2.430626e-02 4.964220e-02
## SP110 64.4110748 2.454660e+02 2.280259 2.431892e-02 4.964431e-02
## SLF2 3.6041400 1.976486e+01 2.280255 2.431917e-02 4.964431e-02
## ZNF844 4.2102655 1.766881e+01 2.280244 2.431985e-02 4.964431e-02
## LCORL 1.1598071 6.693662e+00 2.280090 2.432928e-02 4.965501e-02
## TRIM24 3.7043071 2.171718e+01 2.278973 2.439765e-02 4.978597e-02
## LOC100996842 -0.4429094 1.310419e+00 -2.278865 2.440424e-02 4.979086e-02
## PPP1R13B -0.6374233 2.445888e+00 -2.277999 2.445742e-02 4.989079e-02
## SSH1 24.0701978 8.185990e+01 2.277246 2.450371e-02 4.996878e-02
## NUCB2 17.3182873 4.434316e+01 2.277240 2.450408e-02 4.996878e-02
## B
## GBGT1 18.391458161
## MCM6 17.423152040
## PELI3 16.576702015
## CDC7 16.403791196
## MAPK8IP3 16.302172421
## SLC15A3 15.956753739
## HAAO 15.595681727
## NAPSA 15.456626410
## METRNL 15.281383677
## RNA18SN2 14.981576656
## RNA18SN3 14.981576656
## RNA18SN4 14.981576656
## PITPNM1 14.830505814
## AIF1 14.708400384
## CLSPN 14.530885385
## SIGLEC7 14.427684856
## RNA28SN4 13.943124423
## COTL1 13.739772737
## HPS6 13.619820009
## SLC44A1 13.609862160
## CARS2 13.507134519
## SIN3B 13.431210930
## SLC12A9 13.346243123
## TNFRSF8 13.199689439
## BRAT1 13.181325646
## FBP1 13.128388059
## SYNGR2 13.026411154
## CDK2 13.022389811
## STK11IP 12.723538741
## KPNA2 12.587697453
## TWF2 12.546343279
## ZNF367 12.264144091
## SLC39A13 12.171585668
## GINS4 12.060754195
## PLD2 11.928968556
## MCM4 11.914718788
## IER5L 11.896299606
## TAGLN 11.811531460
## NOTCH4 11.759619116
## DTL 11.751423716
## AAMP 11.734327258
## NSMF 11.653148207
## PLEC 11.565359774
## RACGAP1 11.400843947
## ZNF362 11.390780472
## ASGR1 11.304333225
## MELK 11.125958450
## SH3TC1 11.110862212
## C1orf54 11.009480944
## SGSM2 10.948610586
## RFC5 10.914127086
## EZH2 10.861678883
## FBH1 10.848814448
## GPR132 10.847033418
## TRAPPC2B 10.815724593
## VENTX 10.628057391
## FKRP 10.595314512
## ADIPOR2 10.567163867
## NCAPD2 10.562437353
## CRYL1 10.536459394
## ATAD2 10.490379444
## FBXO5 10.428690368
## DONSON 10.386041504
## MMP17 10.381340041
## FAM20C 10.338255613
## VPS37C 10.296825709
## MED22 10.274246176
## PARL 10.218242099
## RNA28SN1 10.213496185
## STK32C 10.196678270
## WDHD1 10.196324110
## TECPR1 10.145788885
## CD300C 10.127571652
## STIL 10.126157996
## UCP2 10.099841951
## ZNF385A 10.049108090
## AGAP3 10.042814558
## PPP1R9B 10.037674816
## WEE1 9.974733371
## MKI67 9.941982691
## CDC6 9.918331978
## PITPNC1 9.837522354
## SPAG7 9.805241974
## OXER1 9.776279107
## CEP57L1 9.775984714
## CARD9 9.739829832
## CSK 9.737549501
## GPR35 9.712326265
## FAM89B 9.694499511
## RRM2 9.629211826
## SLFN13 9.611582598
## GNPTG 9.609942599
## PAGR1 9.586198364
## NCAPH 9.584680840
## SLC27A1 9.558395165
## ARHGAP4 9.471323727
## SUV39H2 9.453744445
## TTYH3 9.450183796
## NAGS 9.428808262
## TRAPPC12 9.364247168
## RTL8C 9.353834959
## KNTC1 9.346261399
## TBC1D10A 9.325848066
## DNA2 9.278445997
## EIF3D 9.270599322
## SEPTIN9 9.251042318
## CHEK1 9.229852875
## PIP4K2C 9.223528785
## STRN4 9.198327402
## NUSAP1 9.132153646
## TOR4A 9.068534716
## ARHGAP11A 9.031129750
## FXYD5 9.018281077
## CUEDC1 9.010346473
## MAFK 8.981788722
## RIPOR1 8.949128688
## GEN1 8.885594333
## ZWILCH 8.881442745
## SLC25A6 8.832137191
## TNNI2 8.824615554
## ORC1 8.819504355
## CDC42EP2 8.813195718
## GINS1 8.795242134
## CATSPER1 8.787938380
## DENND6B 8.787709457
## SMC4 8.745713731
## MARCO 8.712464445
## ASPM 8.701949712
## TTC9 8.678956475
## CENPF 8.643963766
## IL18BP 8.640270936
## SNX21 8.626979961
## SIPA1 8.572735207
## PLA2G7 8.543635691
## HMOX1 8.533929420
## SNAPC2 8.505514326
## PARPBP 8.498109071
## NDRG2 8.484073193
## EEF1D 8.483116487
## KNL1 8.450437513
## ZRSR2 8.450131505
## SAT2 8.405092248
## TOP2A 8.397909717
## HELLS 8.388630855
## PGLS 8.382603680
## DVL1 8.375503840
## HDGFL2 8.373221164
## SUN2 8.340369564
## PLK4 8.278801395
## SELENOI 8.233069289
## ABHD17A 8.230727773
## NDC80 8.229943376
## COLGALT1 8.212103702
## PALM2AKAP2 8.195685202
## CEBPA 8.156045029
## SPRYD3 8.141685105
## ZNF775 8.131479590
## MTRF1 8.114850030
## TFAP4 8.100019792
## SERPINB6 8.052309457
## AP2A1 8.007636940
## HIRA 7.983694624
## PRPF6 7.981673948
## FUT8 7.970890415
## NCAPG 7.954428825
## TRIP13 7.922143467
## CCNQ 7.918090100
## CACFD1 7.914205915
## EFHD2 7.863204523
## OSGEP 7.807771262
## BUB1B 7.805475401
## SLC25A11 7.797096989
## SHCBP1 7.783140502
## RPL19 7.770851436
## ARF5 7.763736149
## CD37 7.752881541
## SRD5A3 7.747841557
## CIC 7.712345284
## TYMS 7.694121590
## NAPRT 7.691731241
## NECAP2 7.675514407
## LSP1 7.673766053
## FOLR2 7.669944056
## FANCI 7.646621211
## PDLIM2 7.638830523
## WDR76 7.634259895
## SREBF1 7.615460322
## BRCA2 7.609511150
## RFWD3 7.603637873
## ZNF524 7.598091823
## MAP2K5 7.597933340
## TBC1D22A 7.590433294
## WDR25 7.586205319
## SMC2 7.576097407
## KIF11 7.570253451
## TSPAN4 7.548887892
## TCF19 7.544821796
## TMCO6 7.542293502
## CD1D 7.541601913
## C19orf38 7.539411390
## LSM6 7.514411467
## RNPEPL1 7.474480946
## ZGPAT 7.453495001
## SPNS1 7.395659965
## RPS6 7.385905056
## RPS2 7.376347951
## CRTC1 7.374955896
## PHYH 7.352576055
## CDC37 7.346247532
## UBXN11 7.316640626
## SLC2A6 7.307422391
## RNH1 7.304521720
## FCER2 7.301116894
## FUT7 7.260825778
## SLC8B1 7.259611092
## ABCD4 7.245607539
## TBCB 7.235417011
## UHRF1 7.235164806
## SYTL1 7.234900548
## UBXN1 7.213560391
## CASP10 7.211174762
## PLA2G15 7.209350045
## NUDT22 7.185319594
## SPAG5 7.177848382
## TIMELESS 7.157139177
## CD74 7.133356786
## CYBA 7.132352627
## ARFGAP1 7.130665444
## PPP1R12C 7.125242821
## GAA 7.118356792
## RPS4X 7.107131008
## EIF3G 7.104806240
## RTL8A 7.094371054
## RPL8 7.085026150
## AP1M1 7.075564493
## HSD17B1 7.073482375
## ARL6IP4 7.023419753
## FRS3 7.023198374
## RGS12 7.011001596
## ARRB1 6.983914577
## MAN2B1 6.953238493
## NACA 6.949799069
## SASS6 6.934257245
## HNRNPLL 6.925711432
## NOP53 6.913548988
## CSNK1G2 6.904620453
## MDH2 6.897807725
## RAB40C 6.864651119
## SPDL1 6.859449289
## XRCC2 6.853619993
## ACTB 6.847266798
## CEP55 6.847238454
## CD48 6.827497325
## PGAP6 6.821211188
## UCHL5 6.819081981
## LIMD2 6.817702565
## DSCC1 6.810751439
## CROCC 6.809862030
## SGO1 6.792729067
## CENPJ 6.784961123
## ZBTB7A 6.784686193
## REXO1 6.781579218
## TMEM250 6.771062643
## EFNB1 6.744456334
## TTLL12 6.740636122
## CEP20 6.740327698
## NUCB1 6.728801322
## RAB11B 6.725950300
## ZWINT 6.722367714
## LPCAT1 6.720372503
## LRRC25 6.706520767
## TMEM134 6.701808761
## CCNA2 6.680707845
## GNL3L 6.673402622
## TOM1L2 6.664859432
## CIP2A 6.644352619
## CDC45 6.643533876
## EEF1G 6.640851111
## SKA3 6.620525959
## BATF3 6.602314403
## SGSH 6.600651849
## CDC25A 6.588282251
## TRABD 6.575492442
## DCAF10 6.566987810
## EIF4E 6.549431531
## KIF23 6.538730700
## ARRDC1 6.530084024
## TMEM259 6.525833652
## MARS1 6.523221696
## MYG1 6.501429304
## SLC12A2 6.499754364
## OSGIN1 6.498543646
## RACK1 6.496336060
## POLR2E 6.485456977
## HDHD5 6.480890731
## TRAF7 6.456648467
## CENPU 6.449430042
## KIF15 6.445983886
## FAM234A 6.427760196
## NT5C 6.415042003
## TMEM187 6.405966768
## STMN3 6.404642042
## SUGP1 6.395548002
## AKT1S1 6.386982553
## ZNF865 6.378102662
## ZNF358 6.374691600
## NCKAP5L 6.374419006
## ZNF688 6.364644614
## FTL 6.360120148
## CYB561A3 6.356157112
## EGLN2 6.349934853
## HBA2 6.340548153
## EIF3F 6.336749338
## TGFBI 6.327539860
## NDUFB5 6.321123462
## ENG 6.304204535
## ATP8A1 6.302153813
## SGSM3 6.300755652
## CXCR5 6.295711277
## TNFRSF14 6.295425753
## LHPP 6.293814930
## C15orf39 6.267886166
## ARHGEF12 6.252960060
## ID3 6.239355239
## S100PBP 6.223184902
## MCM8 6.215464407
## KCNK6 6.179548339
## KLHL22 6.162278578
## BUB1 6.153599762
## CDCA2 6.151711615
## CFP 6.137230530
## CAPN10 6.111602829
## CORO7 6.109182031
## PNPLA6 6.107935048
## ECT2 6.106152962
## TPX2 6.090348788
## GLI4 6.077947512
## PSKH1 6.074613117
## CHMP6 6.068331444
## PHRF1 6.062143182
## TMEM129 6.058040951
## LTB 6.047558478
## PKN1 6.025897881
## CCDC106 5.995670118
## USP48 5.988073687
## AP4M1 5.987773899
## RPL6 5.959043155
## ZFAND4 5.941897269
## CSF1R 5.935992853
## APP 5.935965039
## DGKQ 5.930244571
## GMEB1 5.904451132
## DOK2 5.901521274
## TBC1D10C 5.897676877
## KLF16 5.895741308
## IRF2BP1 5.885917638
## SCRN2 5.864083723
## SCAP 5.859239603
## CLTB 5.852531035
## DENND1C 5.850876575
## EDEM1 5.847179083
## MAP1S 5.833258351
## IFFO1 5.819097903
## LYPLA2 5.806091169
## POLM 5.802259740
## CCDC130 5.794842696
## DHCR24 5.790731286
## MORN2 5.789200485
## KIAA1614 5.742914271
## GPBAR1 5.735955697
## COMT 5.735440394
## EEF2 5.734260720
## NSD2 5.731222177
## KIFC2 5.718705673
## FCGRT 5.709263453
## TMEM150A 5.693579751
## BLM 5.691525205
## SHARPIN 5.684057671
## NET1 5.680853171
## GFPT1 5.668401144
## PSAT1 5.668237330
## FBRSL1 5.660303769
## CCDC71 5.657258738
## EIF3M 5.654311963
## SCD 5.636878077
## GTSE1 5.635190881
## E4F1 5.634861933
## PPP1R35 5.632070899
## B3GALT6 5.611496802
## G6PC3 5.594794249
## C1orf112 5.570892406
## C1orf35 5.570765720
## AKT1 5.568724422
## PARVG 5.568318323
## CKAP2 5.549887045
## CAPNS1 5.545607616
## RPL27A 5.528827209
## TNFAIP8L2 5.526267078
## TAB1 5.520378961
## RASA4B 5.507519270
## PWWP2B 5.507139381
## IDH3G 5.507119954
## BRCA1 5.507011605
## RPS9 5.506152829
## CATIP 5.500766508
## TMUB1 5.497393605
## EMC10 5.494919391
## BCKDHA 5.479753380
## PYCARD 5.477271789
## EPN1 5.463844370
## DCAF15 5.433266786
## EIF2AK1 5.433183334
## IMPDH1 5.431044931
## SGO2 5.423611609
## SPHK2 5.417658636
## KIF24 5.405461094
## GPR162 5.391544022
## RAD51 5.387173484
## MYO1G 5.384747237
## NSMCE1 5.384145890
## ERCC1 5.382124606
## SCAMP4 5.381506354
## PHB2 5.358029579
## HJURP 5.350996701
## TMEM115 5.308755551
## HSCB 5.289892440
## CCDC61 5.280116348
## RPS14 5.279698548
## ALDOA 5.278965070
## INO80B 5.262648275
## SH3BP1 5.262226489
## SLC66A2 5.248773318
## ZSCAN29 5.247346268
## NANS 5.235735326
## BTBD2 5.233024254
## ZNF513 5.225666478
## PACS2 5.219648816
## INO80E 5.205963755
## PSMF1 5.205603662
## ARNTL2 5.204077925
## CCDC18 5.197922235
## PLCB3 5.197441759
## RPL3 5.194381894
## LRRC61 5.188832032
## CDC14B 5.187836622
## MASTL 5.180554965
## DHRSX 5.177685101
## PPP2R1A 5.175443750
## TELO2 5.173801201
## BARD1 5.159139348
## CDCA7 5.157156629
## SLC25A1 5.147635808
## SGTA 5.147152110
## BCKDK 5.133299672
## AKT2 5.125523539
## ATAD5 5.123472553
## OCEL1 5.112722933
## NCOA3 5.098487218
## CLNS1A 5.082390870
## C18orf21 5.073207226
## SPIN1 5.072517443
## SEPTIN11 5.064905124
## CYTH4 5.059831532
## ATP2C1 5.057232088
## FAAH 5.055601844
## CDK2AP2 5.054560259
## RPS11 5.042084671
## SH3BGRL3 5.038081633
## CIRBP 5.037694496
## PLA2G6 5.037035503
## PLEKHM2 5.029198680
## RHOT2 5.025438439
## C7orf50 5.014456894
## GALK2 5.013738284
## ARFRP1 5.012423042
## SARS1 5.005026454
## POLE2 4.999521354
## RPL15 4.991873236
## RPL22 4.979282578
## AKR7A2 4.975597498
## CTSZ 4.969856994
## PPP6R2 4.969328244
## TMEM161A 4.965785875
## GRHPR 4.945328396
## GPR137 4.939579479
## TRAM2 4.938805358
## CENPB 4.923747228
## CASTOR1 4.923116221
## RPL12 4.920485645
## ZNF710 4.914674540
## SOCS4 4.913452150
## SLC16A1 4.907768866
## SCAMP2 4.906749135
## PFKL 4.901038687
## HLA-DPB1 4.880982054
## REEP3 4.872339762
## FAM149B1 4.870153739
## POLA1 4.868456662
## RPS3 4.865638958
## REPIN1 4.848584721
## FBL 4.846225983
## FAM110A 4.846102257
## DOK1 4.831333488
## FRG1 4.825859350
## PGAP3 4.824848119
## RPS18 4.815096811
## CCDC22 4.811132903
## SPSB3 4.799271834
## HADHA 4.795439203
## CCDC88B 4.794933924
## C6orf226 4.791381107
## PDP2 4.788282151
## SURF2 4.784969042
## YEATS2 4.772431409
## LY86 4.769100758
## TTK 4.768797051
## CHMP4A 4.767277085
## MTOR 4.760313962
## GSTZ1 4.757644338
## UBR1 4.754883329
## MTHFD1 4.744173208
## NACC1 4.742180002
## HLA-DPA1 4.741847570
## RNASEK 4.737329102
## ACADM 4.733621306
## ARSA 4.733593803
## MVP 4.733038493
## PITPNB 4.731574816
## ACSF3 4.703507348
## HIGD2A 4.693903256
## NDUFS1 4.691672823
## TUBA1A 4.686065192
## ABHD11 4.678835800
## UBE3B 4.669962765
## DNAJC4 4.661874389
## CDC42BPA 4.660831353
## TAF5 4.650907516
## MAF1 4.647896920
## TMEM8B 4.644178254
## RPL13A 4.644122991
## PRXL2B 4.635532759
## RPL26 4.635236500
## MXD4 4.627613273
## DPY19L1 4.621033103
## CEP152 4.616871090
## TNFRSF1B 4.615870200
## ATG4B 4.613870564
## PFDN5 4.608213071
## PHETA1 4.605893174
## RPL4 4.600650008
## MTDH 4.597489643
## ZNF414 4.591947442
## LARP1 4.569601749
## RPS23 4.567806023
## RBM15B 4.566290057
## PSTPIP1 4.561753676
## HEATR5B 4.559122576
## NR4A1 4.557496085
## FLYWCH2 4.553425308
## CNPY3 4.551754493
## KCTD15 4.550701264
## IKBKG 4.544158325
## ATPAF2 4.542111428
## ERCC6L 4.533318840
## MCM2 4.531049781
## ABI3 4.527155975
## RETSAT 4.510446827
## DDRGK1 4.503172934
## ZNF764 4.484016440
## RENBP 4.483505111
## TP53I13 4.480574293
## DHFR 4.479021845
## EME1 4.478609160
## SLC43A2 4.472146591
## TXNRD2 4.470369913
## LRRC37B 4.470320558
## JOSD2 4.462630453
## FAM98A 4.458759870
## TTF1 4.456277186
## ARSB 4.448992384
## CENPE 4.443949640
## DLGAP5 4.441327176
## JMJD7 4.430133514
## D2HGDH 4.428635709
## CRKL 4.427107608
## CD4 4.422349130
## MPG 4.418834021
## ELOB 4.415193977
## CCL3 4.407490678
## KCNQ1 4.399669099
## DECR2 4.392571471
## USP6NL 4.391033479
## TIGD5 4.389916166
## SF3B4 4.388240876
## FAM111A 4.385097497
## MPND 4.376203289
## ARHGDIA 4.371695966
## GNB2 4.362426209
## PKD2 4.357718387
## DEF6 4.354435209
## EML3 4.340301204
## HVCN1 4.335688314
## ENDOV 4.325765850
## OXLD1 4.315282126
## ERP29 4.313884377
## ZDHHC8 4.309083609
## EOLA2 4.303419986
## EIF4EBP3 4.301073585
## CD300LF 4.286394950
## TNFSF13 4.284403395
## RYR1 4.283820331
## NDUFC2 4.276599239
## NOC2L 4.262014727
## XPOT 4.255048199
## MCRIP1 4.237936943
## FCHO1 4.228683210
## CCDC12 4.228518450
## DNAJB2 4.224066071
## ARHGEF5 4.223526034
## ALKBH4 4.218169226
## MUTYH 4.212432792
## ACY1 4.210721986
## SORBS3 4.209734332
## RPL11 4.202883350
## ZNF511 4.201723971
## EXOSC5 4.201024212
## LILRB2 4.200413068
## DOK4 4.193681349
## GIMAP1 4.190600001
## B3GNT8 4.187321017
## RPUSD1 4.186813566
## TMEM189 4.182515276
## ATP6V0D1 4.181145000
## RPL21 4.180071270
## BAHD1 4.173966208
## SUMF1 4.168817883
## ZSWIM7 4.165738472
## POLD4 4.158432901
## CEP128 4.142741811
## RPL7A 4.138439468
## PNKP 4.134908708
## NFIC 4.123028329
## GSDMD 4.121168029
## CAMK1 4.115110389
## NCAPD3 4.114489403
## PAOX 4.113821233
## RPS8 4.112649942
## TPPP3 4.107209742
## ARHGEF1 4.104789825
## ZYX 4.100938518
## COMMD5 4.099480449
## ZNF707 4.098211095
## TNFAIP8L1 4.097930707
## MIER2 4.094037182
## POLRMT 4.090180331
## FKBP14 4.080482266
## XRCC1 4.075117463
## LFNG 4.069441241
## ZNF467 4.061197373
## PSMB10 4.057720133
## ANKRD33B 4.054313245
## PPP1R14B 4.052970006
## RPL18A 4.052772621
## SIKE1 4.049316389
## TRPM4 4.046999850
## CDC27 4.046847112
## EXOC3 4.043176197
## NCAPG2 4.037396638
## RPL24 4.025667699
## CCAR2 4.021668436
## RDX 4.011488479
## GNB1L 4.010660138
## INTS1 4.009959281
## POLL 4.007086337
## UBE2C 4.003734253
## SART1 4.000603059
## BRF1 4.000182398
## ZSCAN18 3.994282859
## APRT 3.988800604
## ADAP1 3.986233512
## ARFGAP2 3.983674471
## EIF3C 3.982118803
## TMEM102 3.980843379
## VPS51 3.979573030
## ARHGEF10L 3.977340971
## CYHR1 3.972506723
## FCSK 3.970927651
## RPL13 3.969952829
## FAU 3.965232925
## TBC1D5 3.960607598
## PKHD1L1 3.954496932
## MNT 3.949469929
## GSTP1 3.948459541
## CNOT6 3.946344851
## SNRNP70 3.943499734
## MAPKAPK3 3.942719096
## RPL10 3.940263934
## SPICE1 3.933628909
## CDCA5 3.930198144
## SSNA1 3.925060218
## STARD4 3.924192862
## AIFM3 3.923564849
## RPS6KA4 3.923275797
## RECQL5 3.922720401
## ADCK2 3.912590332
## RCN3 3.911921090
## RIN1 3.909688853
## ZBTB46 3.905833874
## TOR2A 3.904529469
## SDF4 3.900515678
## RIC1 3.898112391
## SOS1 3.895128376
## INTS7 3.887774459
## RPL32 3.887042225
## RPL23A 3.885543932
## MMP24OS 3.869536778
## NR1H2 3.859974980
## ACD 3.858676396
## STUB1 3.846294428
## C19orf25 3.845975753
## SOWAHD 3.842365411
## RXRA 3.842231704
## SETD2 3.839114387
## FAAP20 3.837249599
## TPT1 3.832943829
## BOD1 3.828087471
## CIT 3.825199827
## NELFB 3.814624528
## BRIP1 3.812592865
## RPS20 3.811895441
## LIN9 3.808811580
## CAPS 3.803135906
## AIP 3.798814434
## RPS5 3.793496060
## RNF126 3.791680710
## CDCA8 3.784972996
## EEF1B2 3.781651255
## NHLRC2 3.767282743
## JUNB 3.766077859
## STON1 3.764401441
## CACTIN 3.750865751
## MED1 3.749042992
## TBC1D10B 3.748645922
## S1PR4 3.739987954
## FAM98C 3.736399571
## SLC35F2 3.730871213
## NUMA1 3.730423206
## THEM6 3.721962054
## RPL5 3.704834720
## HSPA1A 3.703289540
## NELFA 3.702477735
## KLHDC3 3.699949024
## HAUS7 3.696039983
## PARP6 3.695990530
## BIRC6 3.694453579
## PAICS 3.694057979
## SF3A2 3.690199548
## SLC9A3R1 3.682399612
## CIAO3 3.679817713
## SERPINH1 3.674774567
## SDHAF1 3.672008659
## WBP1 3.660177929
## RABEP2 3.655984895
## FAM3A 3.652583630
## PPM1J 3.650051279
## CSNK2B 3.647895158
## DBNL 3.645024648
## LAMTOR2 3.642246837
## SH2D3A 3.642224628
## CENPL 3.637347903
## ZNF428 3.636299336
## RAB3IP 3.635621727
## TSC22D4 3.635453672
## RANBP3 3.633466432
## EVI5L 3.624716673
## FKBP8 3.623636072
## RPLP1 3.623180874
## MTFR2 3.620380898
## TOPBP1 3.615147640
## RAB4B 3.613910291
## ZNF444 3.607128969
## ROCK2 3.607013398
## GIMAP1-GIMAP5 3.604047919
## H2BC11 3.594593125
## LTBP4 3.594047243
## CLEC10A 3.593419321
## CSRP1 3.591584278
## TLK1 3.588636886
## ICAM3 3.585782201
## COX4I1 3.583604801
## EPB41L5 3.582928041
## KCNAB2 3.579692193
## PELATON 3.578071946
## INCENP 3.578066185
## FOXM1 3.577095562
## LYRM9 3.573236138
## MEGF8 3.565082685
## SUZ12 3.557108794
## RPS25 3.556678562
## TCF25 3.552677192
## NSF 3.552408348
## KCTD17 3.549974578
## PNPLA7 3.547706309
## ANKIB1 3.547704690
## GPAA1 3.546798374
## DHPS 3.545460464
## SCAND1 3.541872750
## RASA4 3.540720046
## RPL27 3.538400197
## KIFC1 3.529967498
## XPNPEP3 3.529837843
## ZNF784 3.529597401
## CUEDC2 3.528692419
## MAP3K11 3.524580579
## RWDD1 3.516253864
## SPC25 3.514322018
## FOXP4 3.513981955
## CASP3 3.512689561
## GTPBP6 3.511568224
## TNK2 3.510754806
## ENTPD4 3.508869901
## UBOX5 3.508869021
## APEH 3.505209023
## RBBP8 3.501872270
## IGFLR1 3.500627981
## SUCNR1 3.499177791
## TBC1D20 3.493094451
## SMARCD2 3.488726804
## WDR70 3.486238103
## LMF2 3.483354015
## LTBP3 3.483015606
## INO80D 3.481173964
## PRKCSH 3.480476397
## PIP4K2A 3.475764005
## RPS27A 3.472264561
## AP5Z1 3.465754712
## SMC3 3.459242645
## EIF3K 3.457240060
## CBX8 3.456766530
## FLT3LG 3.455086519
## SLC25A28 3.451645768
## TMEM53 3.451545811
## CCDC124 3.446273457
## SEMA4C 3.445370136
## XK 3.443323090
## MCRS1 3.439392587
## SIVA1 3.431903588
## EDRF1 3.429489100
## NPDC1 3.427663481
## CDH13 3.425799242
## CRTAP 3.423624905
## PPAN 3.421306645
## CFD 3.414072034
## USF2 3.398301213
## GSTK1 3.394667281
## PPP2R3B 3.392825658
## SELENOO 3.390388594
## CDK9 3.390232244
## RPL35 3.388550537
## ORC6 3.387714370
## RPS17 3.387261372
## DPP7 3.385942284
## BCAP31 3.371932421
## TNIK 3.369346231
## PCLAF 3.362981079
## STK10 3.362559514
## RPL10A 3.356279952
## TRMT2A 3.354522906
## SH3TC2 3.351590980
## PEAK1 3.350993332
## BRD9 3.346801863
## RPL38 3.346084484
## DUS3L 3.343961182
## MCFD2 3.342749087
## KRI1 3.341183426
## PRR14L 3.339994141
## SERF2 3.338625567
## FPGS 3.336125844
## FSCN1 3.333131417
## MED15 3.326755581
## GET4 3.314409735
## C11orf49 3.313270063
## BABAM2 3.303747913
## TAF2 3.301488972
## ASB13 3.300869120
## BPTF 3.300787605
## TMEM141 3.298510441
## NNT 3.292425186
## HSF1 3.291320637
## CCS 3.278634809
## MAPK9 3.272611677
## RABEPK 3.262499490
## MPHOSPH9 3.260013484
## RBM42 3.256615579
## LRP8 3.253390674
## MMP14 3.245570610
## CDIP1 3.238468201
## DHX15 3.238201445
## KCNN4 3.235786948
## FHOD1 3.232602008
## DBP 3.227747094
## PES1 3.226680060
## HGH1 3.215574407
## NEK2 3.214246105
## KIF20B 3.204468997
## MAP3K14 3.202824888
## FBXL15 3.200066529
## MIB2 3.197559683
## BBX 3.196083965
## ANAPC1 3.173473404
## RPL17 3.170507475
## VEGFB 3.167934220
## PLOD3 3.167423133
## PATL1 3.165560388
## GGA1 3.165234367
## RPS7 3.163378811
## NEURL4 3.161972430
## CBY1 3.159227560
## CHD1L 3.156551437
## PSMG3 3.154397462
## MYCBP2 3.149498534
## PEX13 3.146975256
## RPS16 3.142249656
## CEP295 3.132904694
## KIF18B 3.132083383
## TPCN1 3.131801048
## NUBP2 3.124682733
## ARID1B 3.124619546
## SPG11 3.124114617
## TEX264 3.116547923
## MKLN1 3.112766596
## CMC4 3.103428448
## LRRC23 3.102764767
## CSNK1G1 3.101002904
## TMEM179B 3.100077361
## GRK6 3.099920524
## SRPRA 3.089928829
## EPG5 3.087100656
## ELOF1 3.082305654
## LRCH4 3.080023585
## NSD3 3.073598350
## LRRC37A3 3.065382492
## KATNAL1 3.065079702
## PRUNE1 3.062876950
## SLC29A3 3.062400505
## ACADVL 3.061299841
## ASMTL 3.061198239
## CAPN15 3.060202797
## RPL7 3.058342933
## RPLP0 3.056018787
## DLG1 3.053604942
## COASY 3.042869252
## GINS2 3.040485006
## LSM8 3.038590544
## ECHS1 3.038522348
## SENP2 3.035673481
## ALG11 3.032476503
## MED9 3.032270289
## NAGPA 3.032193333
## LRRC47 3.028964709
## ESPL1 3.023758783
## ZNF580 3.022975294
## JAML 3.020876041
## PLXNB2 3.020492485
## TBCD 3.017295928
## PSMG4 3.017098264
## PPP1CA 3.016564420
## NADSYN1 3.011590070
## THAP7 3.008046004
## LATS2 3.007520616
## RAD51AP1 2.999644537
## PUSL1 2.996681219
## RHOF 2.993825515
## CYBC1 2.993576110
## TNF 2.993562134
## INTS4 2.989166036
## XPO7 2.986814644
## ZBTB22 2.982489796
## ALKBH2 2.982046645
## SETX 2.981474562
## TYROBP 2.979260538
## BORCS6 2.973317124
## ESRRA 2.970451994
## HLA-DRB1 2.968354159
## TPI1 2.965103679
## ARCN1 2.964319619
## EDEM3 2.961462234
## TYMP 2.961057816
## ATP6V0E2 2.953731367
## RPL18 2.951823579
## DHRS4 2.951136847
## HSF4 2.947346803
## MAPK11 2.945374926
## BTF3 2.938223932
## NFATC1 2.926324986
## PPP1R37 2.923003940
## C9orf16 2.922542115
## YDJC 2.918912679
## RPS10 2.917561917
## TNKS2 2.912336255
## SPG7 2.910940193
## ARHGAP21 2.906597564
## RALGAPB 2.902908784
## B3GALT4 2.898048518
## INTS9 2.897421116
## PPP1R32 2.896037697
## CD38 2.892810917
## ALDH16A1 2.890880613
## HLA-DMA 2.883429818
## SMG1 2.881371830
## C17orf49 2.876924853
## PYGB 2.865167397
## SLC25A29 2.861162679
## UBXN2A 2.860406304
## CENPK 2.859576539
## TMEM64 2.858196943
## CCDC93 2.857127114
## SKA1 2.855424539
## TRIM28 2.855028591
## TAPBP 2.849621443
## ARHGAP1 2.849373481
## KLRB1 2.847507780
## ATP6V1F 2.846289073
## RBMX2 2.842657373
## RPL29 2.842579508
## SIK3 2.841746236
## NUDT16L1 2.837713307
## PEX14 2.837084903
## ZBTB47 2.835815002
## ATF6B 2.833918381
## GUK1 2.831670502
## GATA2 2.827699420
## CNOT1 2.826840424
## UBR7 2.825357536
## COPS7A 2.822601738
## C12orf75 2.822345586
## CCDC115 2.819345182
## ERF 2.817337458
## WASF1 2.816153951
## CEP76 2.816020505
## PCGF5 2.812055611
## LANCL3 2.796221746
## CIB1 2.794204544
## RPRD2 2.793839690
## MGMT 2.788893780
## SLC25A45 2.787220723
## WDR13 2.786761417
## SIRT6 2.778842529
## VAV2 2.768600932
## FAF2 2.768578198
## EPB41 2.766632443
## PHKG2 2.764162053
## UHRF2 2.762212867
## UXT 2.762188086
## LMAN1 2.758023853
## RPL9 2.757731037
## ROGDI 2.752169559
## KRBA1 2.748421931
## TSPO 2.748076597
## VPS39 2.745438160
## AURKA 2.741741165
## B3GAT3 2.740097140
## CCDC96 2.735051744
## BRICD5 2.729873880
## CFAP36 2.721245050
## SMIM29 2.719201263
## EFR3A 2.714380491
## ANO6 2.703394014
## FBXO34 2.701596462
## CCDC134 2.700824450
## SMG9 2.698783902
## GNA15 2.698420503
## MFSD12 2.698169613
## STXBP2 2.691123608
## FRMD3 2.688627160
## RPS6KB1 2.684644843
## TCEA2 2.684594138
## PI16 2.684329969
## TOMM7 2.672799280
## TIPIN 2.672400690
## ALKBH7 2.669782953
## RPS3A 2.663939979
## PLSCR3 2.658552883
## TARS1 2.658251193
## CHMP4B 2.657360810
## SNAPC4 2.647615196
## ZNF500 2.646904443
## GINS3 2.646739360
## NIBAN2 2.644109884
## GOLGB1 2.643908156
## TRMT61A 2.642088917
## NOSIP 2.636012155
## RAI1 2.635397262
## TPRN 2.633613019
## PTPN11 2.632012649
## C5orf51 2.627452858
## CTDSP1 2.625870231
## FRA10AC1 2.624830410
## STX8 2.619429973
## ASPSCR1 2.618020789
## RPL30 2.614340134
## EIF2B4 2.607216299
## CD2BP2 2.606938203
## BTN3A1 2.606266668
## BMP8B 2.604668561
## ZC3H11A 2.603931114
## TYSND1 2.600448422
## PEX16 2.589879750
## PQBP1 2.588116010
## PRX 2.587972564
## FIZ1 2.587238136
## EIF4A1 2.586200027
## SUDS3 2.584537574
## SSBP4 2.584447306
## C2CD3 2.582745823
## CLCN7 2.577612517
## SIDT2 2.571685673
## CYB5R3 2.568217311
## NUDT14 2.565688450
## DHRS4L2 2.563121311
## NDUFA3 2.560924015
## TUBGCP2 2.558197854
## TCF20 2.556532051
## RFNG 2.555355076
## MTF2 2.553590999
## SMG7 2.549819301
## CDKL1 2.547763871
## EEF1A1 2.539580529
## GRAP 2.537538977
## PRICKLE3 2.532219344
## CDK17 2.531768606
## GMNN 2.529169731
## CDPF1 2.528680031
## SMC6 2.523139178
## NCOR1 2.523112273
## ACBD4 2.519027897
## LNPEP 2.511170952
## PLEKHO1 2.502303255
## FRYL 2.499487652
## MRTFA 2.494332820
## ATP5MC2 2.493436503
## MRPL20 2.491573571
## EIF4EBP1 2.490275724
## ENO1 2.488564861
## RHOBTB1 2.486587875
## GGH 2.484615630
## STK25 2.483291797
## STON2 2.481518797
## CALU 2.480618361
## ZC3H6 2.475334735
## EMSY 2.474407075
## RPAP2 2.473940493
## ADRM1 2.473314551
## CD81 2.472709411
## PDK2 2.470987846
## HAPLN3 2.470531726
## CHMP2A 2.464037251
## FGD3 2.453344956
## RSU1 2.449972382
## FNDC3A 2.449049862
## ZNF219 2.447396224
## MANEA 2.445485141
## UBE3C 2.440168049
## RIMKLB 2.431061084
## IMPA2 2.428762404
## ZBTB45 2.427544149
## OGFOD3 2.422836972
## NRM 2.417692442
## TM2D2 2.417462764
## PIH1D1 2.417141767
## ZBTB38 2.414546098
## TSSC4 2.413961104
## FARSA 2.410472256
## ANP32E 2.408207855
## PSAP 2.404910411
## EIF4G3 2.398789891
## PIP5K1C 2.397669833
## LENG1 2.395852863
## MLST8 2.388021362
## HMGCS1 2.385441010
## SRGAP2B 2.384350220
## ENGASE 2.383932976
## BLOC1S4 2.383825294
## MCUR1 2.380079425
## VPS13A 2.371724725
## MBOAT7 2.369393331
## DARS2 2.367828424
## AK1 2.363601332
## AGPAT2 2.363226228
## UTP3 2.363117928
## ZBTB42 2.358995371
## COA8 2.347872038
## APEX1 2.347521206
## GOLGA5 2.344847570
## RSF1 2.338813510
## UCKL1 2.338636043
## ELF1 2.336848340
## RAB34 2.336397198
## NFX1 2.330241324
## SRF 2.326526218
## ZFPL1 2.321926487
## RABGAP1 2.320358405
## TEX2 2.318702263
## ATG101 2.313332169
## RPS27 2.307793896
## SNTB1 2.307300189
## ADCK5 2.299861092
## ADNP 2.298310852
## FAM53B 2.296822580
## MED7 2.291744892
## GART 2.282282323
## SPATS2 2.282194992
## EHBP1L1 2.280847910
## RBM10 2.280202800
## CEP44 2.272392357
## BCAT2 2.270293329
## CLDN12 2.268904287
## RPS24 2.268212785
## NAA10 2.266815622
## SCUBE1 2.258358894
## STMN1 2.253935092
## BMP6 2.252555347
## SENP1 2.251102126
## HCFC1R1 2.249173160
## RO60 2.248428298
## ACOT8 2.245743401
## RRM1 2.243309153
## XPA 2.240487302
## DHX33 2.239373554
## TMEM101 2.237116284
## CORO1A 2.233924070
## LIPH 2.231543093
## PRPF31 2.231508663
## IZUMO4 2.225698862
## SRGAP2C 2.224809633
## DPP8 2.224274397
## NFKBIE 2.224244169
## SESTD1 2.223607478
## RASSF4 2.222317208
## EDF1 2.220065969
## SLC16A3 2.213659996
## COPE 2.208791900
## NUDC 2.208773861
## NFKBIL1 2.206985356
## RSL1D1 2.203874248
## ARAF 2.202457794
## PUF60 2.196761552
## HBS1L 2.193404977
## TOP1 2.193349753
## THAP11 2.187918606
## MAD2L1 2.184693450
## ALG10 2.178972246
## PPDPF 2.178461322
## FLNA 2.176241772
## BIN1 2.175700282
## CINP 2.175399071
## EDC4 2.173075393
## GPATCH3 2.166203393
## ZGRF1 2.163033323
## EMP3 2.162280399
## KLHL24 2.160532723
## TRADD 2.158306574
## SPPL2B 2.157953455
## DAGLA 2.156372055
## DMAP1 2.152311901
## SAMD1 2.150778605
## UBE2J2 2.144737550
## FBXW9 2.143150681
## MZF1 2.139181401
## WDR74 2.138535556
## TPM2 2.137570359
## SIGIRR 2.131118572
## AATF 2.130249133
## VAMP8 2.125671411
## PRKRIP1 2.124527644
## MED11 2.123339487
## CARMIL2 2.122813190
## IGSF8 2.119416841
## SOD1 2.110321577
## PDXDC1 2.109839715
## CCDC137 2.103755568
## EIF4E2 2.103025928
## HDAC11 2.100425460
## ABCD1 2.099747119
## IFT43 2.099294083
## MYLK 2.097780325
## ARL6IP1 2.097545330
## FAM50A 2.092934581
## TRAF1 2.091797421
## SNX8 2.091705554
## RPL36A 2.091457099
## CDK5 2.089786113
## ZRANB1 2.087799232
## HECTD4 2.087716981
## LUC7L 2.087269246
## BRMS1 2.086807693
## ATXN7 2.073784617
## PPP2R1B 2.073517314
## TMEM39B 2.070987952
## CLIC4 2.070874816
## OLFM2 2.070157824
## UBXN7 2.069090937
## SLC25A25 2.065216845
## MOSPD3 2.063999000
## CCDC153 2.058832805
## C1orf159 2.052509433
## MMD 2.051955454
## CDIPT 2.051802245
## MICOS13 2.050433148
## NSD1 2.045606695
## PIK3R4 2.044998103
## TMEM175 2.041407910
## ARL15 2.040651748
## QTRT1 2.037193821
## EGF 2.036246004
## REXO4 2.035562564
## BANF1 2.034388878
## WIZ 2.031173793
## COG3 2.030926854
## MARCHF9 2.029577274
## RPL35A 2.025483856
## IL11RA 2.025015249
## F2R 2.023887563
## ENTPD6 2.023435971
## MND1 2.021672644
## ZNF263 2.019128402
## RPL23 2.016751090
## EIF3H 2.014511706
## RC3H2 2.013434691
## SCYL1 2.012056561
## SCAF1 2.006779257
## TRMT1 2.005653070
## SSX2IP 2.004190517
## NCK1 1.998162608
## BEND7 1.996358752
## TUFM 1.994915358
## HMG20B 1.990978769
## LRRC29 1.988806733
## IRF3 1.987901330
## RANGRF 1.979496254
## PCYT1B 1.979022406
## GTF2F1 1.972097419
## ZNF598 1.971623278
## INTS11 1.965592029
## DGCR6L 1.964807598
## CNPY4 1.958065012
## C16orf91 1.954212049
## MRPL24 1.951205459
## DERPC 1.950909593
## TP53BP1 1.949571961
## DNAJC13 1.949197634
## TSC2 1.947575918
## ADAT1 1.945848040
## ARFGEF2 1.944116852
## LATS1 1.939262376
## CCDC107 1.939124460
## SH3D21 1.934870473
## ANKS3 1.925499415
## NCOA6 1.922003002
## NDUFB7 1.920115458
## KIF2C 1.914283801
## UBTD1 1.913453718
## C12orf57 1.913325103
## CD14 1.909757302
## AP2A2 1.904710784
## TBL3 1.903757117
## CHCHD5 1.903195186
## LTA 1.900397040
## TTPAL 1.899496815
## ZNF664 1.896666058
## RPLP2 1.895721231
## FAM122C 1.893691989
## HNMT 1.888415264
## RBBP5 1.888003366
## TMEM88 1.884478621
## POGLUT3 1.883189004
## HMOX2 1.882453145
## PCED1A 1.877041418
## PNPLA2 1.871344408
## IRF8 1.870522310
## GNL1 1.866672359
## TTBK2 1.865351982
## SELENOW 1.864027170
## PACS1 1.857203226
## RABL6 1.856504331
## CLCN3 1.853552052
## MIEF2 1.849630113
## PIK3C2A 1.843937749
## XPNPEP1 1.842109499
## PLA2G4B 1.839816775
## PBLD 1.834886213
## RPL36 1.834290095
## METTL26 1.832072462
## ESS2 1.831143991
## BAD 1.830176570
## CAPZB 1.826920976
## ATF7IP 1.825753740
## TMEM205 1.817140369
## PHC3 1.816916772
## ADAM8 1.809333890
## AAR2 1.804748940
## TMEM222 1.804508779
## TRPM7 1.804014729
## BRPF3 1.802056701
## CD72 1.794544426
## GALK1 1.792050602
## SLC30A6 1.791974325
## SH2B2 1.789080541
## MRPL43 1.786141996
## DEK 1.782811906
## RNF113A 1.780325223
## NBDY 1.775354063
## WDR83 1.775092329
## DGKZ 1.769928699
## MAL 1.768989640
## CYP51A1 1.762747794
## CHAC2 1.758659464
## NDUFS7 1.756819165
## ABHD10 1.755884746
## APPBP2 1.755448361
## ACAA1 1.754291646
## IDUA 1.747521874
## ADAR 1.747019143
## GIPC1 1.735206046
## RRP8 1.732344900
## RPL37A 1.732342686
## FUOM 1.731441074
## SPIN4 1.728576098
## RPS15A 1.723053247
## CLASP1 1.721710008
## PEAR1 1.721584719
## ABHD14B 1.721323314
## FOXJ3 1.720262347
## INAFM1 1.713867334
## SH2B1 1.702036476
## PRMT3 1.695250845
## MRPL49 1.694988330
## MRAS 1.694892246
## VPS13D 1.690858736
## TIAF1 1.689153999
## DENND1B 1.685217756
## BRD2 1.679806235
## KIAA0930 1.678075855
## MBD3 1.674940084
## SLC22A18 1.671338278
## MSRB3 1.670745437
## RNF25 1.667254163
## PRC1 1.665741551
## ZNF419 1.660911169
## KLHL17 1.659707896
## U2AF1L4 1.657378509
## ECH1 1.654633417
## MCM9 1.651197268
## LEPR 1.648326493
## ZDHHC12 1.647397459
## TOLLIP 1.646285858
## TESK1 1.644390505
## LDB1 1.642821103
## CHD2 1.641247463
## ARPC1B 1.640637949
## HLA-DMB 1.640207456
## PELP1 1.639902469
## CKAP5 1.637769389
## GMEB2 1.636275172
## PPCS 1.635773922
## NAT9 1.634368232
## CTSF 1.631614113
## PCNA 1.630389564
## RAB3GAP2 1.625055921
## TIA1 1.624376700
## RASGRP3 1.624101416
## RBBP6 1.619898581
## KDM5A 1.616136844
## BDP1 1.614166337
## POGZ 1.611407259
## ZNF671 1.609174856
## HSPB1 1.608721908
## ELOVL7 1.607713285
## TMEM203 1.605297015
## CEP131 1.603761044
## FCN1 1.603232281
## LIN52 1.600993694
## RELT 1.592972375
## PATZ1 1.592589265
## NAA16 1.591962015
## DNPH1 1.588128284
## FZR1 1.587879165
## MED13 1.585583607
## PEA15 1.583859439
## STK26 1.583599069
## KIAA1958 1.582810461
## BEX2 1.579031416
## GPR180 1.577497430
## CBR3 1.576727791
## SLC49A3 1.575628270
## JAG1 1.574378155
## RALY 1.573102882
## LRRC45 1.571734850
## SIRT2 1.570556421
## TAF8 1.570509031
## IFI30 1.569960594
## RING1 1.568119246
## USP33 1.565123148
## SCYL2 1.559641330
## TCEA1 1.559375875
## ZNF653 1.555134103
## FAM214A 1.547925632
## CHMP1A 1.545291717
## DUS1L 1.544315954
## ILVBL 1.542564909
## HDAC3 1.540472842
## SLC2A4RG 1.538434426
## HSPA13 1.537387418
## BCL2L2 1.534618585
## SBNO1 1.531881884
## SDR39U1 1.530795160
## OXA1L 1.528234000
## TCIRG1 1.527093153
## NUDT4 1.525760051
## FBXO31 1.525739597
## RNASEH1 1.521331614
## ACAP3 1.521176412
## CMTM7 1.520495483
## NMRAL1 1.519549946
## IDH3B 1.517779873
## WDR24 1.514302941
## ITFG1 1.514217274
## ADORA2A 1.512152378
## FBXW5 1.510961537
## BORCS8 1.510477286
## RNF169 1.509556024
## JPT1 1.509067545
## RNF19A 1.506476056
## NAA35 1.505111492
## QARS1 1.497435232
## LEPROT 1.497329473
## HSD17B10 1.495571014
## LSR 1.495117328
## MME 1.488752630
## EEFSEC 1.488256213
## SS18L1 1.487794382
## FASTK 1.486602226
## NUDT4B 1.480013210
## CTNNBIP1 1.478032056
## ABCF3 1.477327804
## MIER3 1.476936597
## ZNF574 1.473934560
## PIK3R6 1.472897155
## REX1BD 1.470075709
## ZNF8 1.467565283
## PNMA1 1.466795651
## TFEB 1.466239016
## TNNC2 1.464842054
## MIF 1.462215489
## TAB3 1.454316808
## TWSG1 1.453796605
## PIK3R2 1.447807546
## C2orf88 1.447534787
## ZNF316 1.442062841
## DNAJC14 1.441340958
## NAALADL1 1.440004319
## NCLN 1.439012475
## ALDH3B1 1.436180912
## APBB1 1.435493786
## TAF10 1.434555318
## SYNJ2 1.432473603
## RPL14 1.428734127
## CD7 1.427772563
## TBK1 1.425573006
## CDK12 1.425480281
## USP31 1.424404055
## SPATA7 1.417139386
## VGLL4 1.416823234
## CDYL2 1.416320277
## KIAA1109 1.416079126
## ZSCAN2 1.408345457
## TM7SF3 1.408014837
## SNTA1 1.406704078
## MAP3K6 1.406396578
## EPC2 1.405812890
## UBXN6 1.404539524
## HELB 1.403823201
## JCHAIN 1.398609730
## SLC38A2 1.394982997
## HECTD1 1.391171274
## UBA52 1.388548384
## TRIR 1.387953462
## EHD3 1.385916513
## ZNF81 1.382142171
## PLD6 1.380620706
## MFSD10 1.379872912
## C19orf53 1.379073772
## ACADS 1.378800967
## PUS1 1.378572418
## OGT 1.377364929
## ZNF75D 1.376331349
## BAZ2A 1.375256335
## CREB3L2 1.370651650
## PPIL2 1.369864164
## PIKFYVE 1.369780349
## TMEM128 1.368317892
## NBPF10 1.368085205
## YAF2 1.367074284
## WDR48 1.366331478
## TEN1 1.362993404
## ZNF581 1.361379054
## USE1 1.359576472
## MRPL28 1.359134911
## ABCC4 1.356503325
## LGALS1 1.355736821
## SNX19 1.355100835
## RBM14 1.350939383
## SLC9A3 1.348970154
## SIL1 1.348714311
## MMS22L 1.347221042
## CDK14 1.347196346
## TCHP 1.344865747
## PIDD1 1.341899152
## YJU2 1.341712399
## ITGB1 1.338193668
## KCNMB1 1.337670577
## PEX5 1.335470316
## GPS1 1.331842690
## SMPD2 1.331550656
## INPP5E 1.322594742
## ZNF324B 1.321436405
## PI4K2B 1.318891320
## PRELID3B 1.317015532
## HOMER3 1.311404504
## DDX28 1.310756124
## KCNMB4 1.310314637
## ZNF778 1.308110922
## MTRES1 1.306886947
## DAGLB 1.304290434
## MED16 1.302453062
## EIF6 1.299474238
## ZNF691 1.297650048
## TENT5C 1.293807828
## BAG6 1.290857450
## AKAP8L 1.286015170
## KANSL3 1.285900499
## IL6ST 1.283619039
## GTF3C5 1.283277350
## HMGCL 1.282021481
## MYL5 1.278840760
## SPAG1 1.273142572
## H2BC8 1.268693916
## TMSB10 1.268498725
## PURB 1.265617727
## B4GALT5 1.261163753
## TNPO1 1.260618249
## FAAP100 1.258727760
## NUTM2D 1.258131834
## PFN1 1.255534004
## SKP1 1.255151550
## USO1 1.254901270
## AP1B1 1.249815665
## IL21R 1.249209831
## STAMBP 1.245303974
## VPS13B 1.242079481
## ACP5 1.242070506
## PRAM1 1.241319222
## PLK1 1.239526307
## TIMM9 1.236175609
## ZNF48 1.233508238
## KCNQ5 1.229936173
## ICOSLG 1.227043861
## AMDHD2 1.218172233
## C12orf76 1.217257532
## CLPX 1.216670651
## TBC1D17 1.214728872
## STX4 1.214530682
## ZNF32 1.213916205
## NDUFV1 1.212839570
## TOMM6 1.209174714
## PPM1F 1.208658034
## SYNRG 1.207552116
## PTGES2 1.206979914
## RFC3 1.206755539
## SAP25 1.202774772
## ZNF853 1.200566028
## DSN1 1.197014679
## WDR81 1.193713237
## EOGT 1.193000009
## SMIM12 1.191802497
## CDK1 1.189838961
## SENP5 1.185221657
## STING1 1.185144444
## TUT1 1.184632329
## KIFAP3 1.183476001
## SPTBN1 1.180316409
## BTN2A2 1.179478228
## CEP162 1.179107182
## RASA1 1.176367708
## URM1 1.175169466
## LENG9 1.173496676
## EOLA1 1.171465461
## RPH3A 1.169793145
## BMPR2 1.166464013
## UAP1 1.165968152
## ZMIZ2 1.165688632
## BAX 1.165182897
## ZNF71 1.164358956
## AMPD2 1.161344360
## GFER 1.160879980
## SLFN12 1.151792202
## ST13 1.150835874
## SPATA2L 1.150443768
## SELENON 1.149965114
## PPAT 1.148726321
## DESI2 1.148615086
## FERMT3 1.148063157
## THAP3 1.147858867
## SRRT 1.147455460
## EPDR1 1.146307116
## MRPL4 1.144743987
## WAC 1.144385745
## PDE5A 1.142509553
## CCNB1 1.140614428
## RHPN1 1.139794551
## JMJD8 1.137517414
## TMEM86B 1.136586683
## XAB2 1.136517558
## PIN1 1.131803846
## POP4 1.129676508
## RMC1 1.128607751
## NEDD8 1.127508126
## ZNFX1 1.123789372
## KCTD3 1.122828984
## AGO3 1.117575130
## ZNF385D 1.117095113
## LSM4 1.104852875
## TLE5 1.104401475
## DGAT1 1.104221670
## POLR1D 1.093150676
## RFC4 1.088788608
## SLC35A3 1.087810990
## FDXR 1.087205433
## OCRL 1.084937358
## LONP1 1.081265355
## KPNA6 1.077065555
## PAXIP1 1.076845607
## CYLD 1.076042627
## HARBI1 1.073965181
## TRAPPC10 1.073462850
## SMCO4 1.071239124
## RPS15 1.071112804
## UNK 1.070286102
## CTNNAL1 1.069116396
## SSR1 1.068606180
## PUS7L 1.062435997
## RPL31 1.062292151
## RELL2 1.061907249
## NANP 1.061681937
## C18orf54 1.059475285
## WASHC1 1.057977735
## SNF8 1.055647262
## PCOLCE 1.054635499
## PCBD1 1.053459404
## HERC2 1.053302217
## ANKRA2 1.050574274
## GALNT10 1.044875484
## LONRF3 1.044495389
## CAV2 1.044411352
## EHD1 1.044140571
## COQ4 1.036832958
## ZNF512B 1.036597164
## INF2 1.034551434
## ANO9 1.032270320
## HBA1 1.029708181
## FAM8A1 1.029277289
## SBF2 1.027090645
## ME3 1.026842067
## DHRS3 1.026251670
## KIF5B 1.023466317
## FAM199X 1.020617832
## BOP1 1.020547912
## DRG2 1.016280984
## RPP21 1.015067902
## TAF4B 1.012789013
## STIM1 1.011325890
## ARIH1 1.006948919
## TTLL5 1.006704986
## INTS5 1.003852621
## IRAK2 0.998070980
## MICB 0.995154208
## MAN1A2 0.995110806
## NFATC2IP 0.993937230
## MAP2K2 0.992563320
## HPS3 0.992154710
## CPSF2 0.986994782
## FBXW4 0.984458918
## GCNT1 0.983502099
## GIGYF1 0.982913361
## NLE1 0.980327955
## RHBDD3 0.978350800
## SNRPD3 0.974201536
## NAA38 0.973473332
## SETD5 0.973279536
## PYM1 0.971204881
## RNF187 0.967977825
## PRRG4 0.967959756
## RABGGTA 0.965805064
## U2SURP 0.963225101
## CCNE1 0.962975491
## PAXX 0.960799037
## ZNF578 0.958244768
## TNIP2 0.955654705
## HERC1 0.954262222
## CDK10 0.953065043
## AAAS 0.949594459
## DNAJC17 0.948507811
## KCNIP2 0.948477689
## ZNF446 0.948335590
## ETFB 0.948044073
## NDUFA13 0.947822071
## MROH1 0.947694334
## VANGL1 0.943996193
## USP24 0.941950719
## PHACTR4 0.941758092
## PGP 0.937212782
## RAD54B 0.936003268
## ACAP1 0.934439240
## SNTB2 0.933227798
## RPS19 0.933203963
## GIT1 0.929907819
## FADS3 0.929574089
## LTBP1 0.925959462
## ECSIT 0.923972024
## CTNNBL1 0.921714594
## SERGEF 0.920370468
## LARP1B 0.916769597
## LARP4 0.914063888
## CPTP 0.913752033
## MEIS1 0.912815198
## KHDC4 0.910623905
## FLJ44635 0.909380781
## CISD3 0.909097390
## ACTG1 0.906118014
## WIPF2 0.903880099
## TGFB1 0.902511839
## MYSM1 0.894898078
## LTN1 0.894475726
## OVCA2 0.890743703
## RPS21 0.890712920
## ABLIM3 0.889276773
## CCNB2 0.888998967
## ENKD1 0.888947521
## H4C8 0.885615969
## NOL12 0.884938971
## CHCHD10 0.884210178
## TIMM13 0.881327585
## BLOC1S3 0.879532970
## NR1D1 0.874019734
## VAMP1 0.870531479
## STX5 0.869854171
## MED12L 0.866012636
## ZKSCAN3 0.865671851
## RAVER1 0.863205219
## MCMBP 0.863160439
## DTX2 0.863060082
## RASSF7 0.862907273
## PLEKHM3 0.862071935
## C1QTNF6 0.858646312
## COQ9 0.858603184
## ORC2 0.856486213
## COMMD9 0.855584552
## LSM14A 0.853619292
## ASGR2 0.852829044
## NDRG3 0.848254338
## DNAJC30 0.847865783
## NELFE 0.846830888
## C10orf143 0.845248508
## MIIP 0.845177432
## COQ8A 0.844614360
## USP49 0.844580812
## GNAI2 0.840441436
## NOC4L 0.839913992
## GAMT 0.831371040
## WDR47 0.827386498
## ATP5F1D 0.822033834
## NIPA1 0.817122507
## NME3 0.817035041
## THOC6 0.810561287
## TNFRSF25 0.808405736
## GON4L 0.808368185
## OGFR 0.807299612
## ACBD3 0.805747830
## VPS72 0.805103561
## SPOCK2 0.800109113
## PAPOLG 0.799287676
## ZNF765 0.798180867
## ERMP1 0.797714455
## MIF4GD 0.792544559
## PTDSS2 0.791447019
## IMPDH2 0.786992997
## SLC2A8 0.777496916
## TSNARE1 0.776885474
## DIABLO 0.775460867
## AP4E1 0.770435186
## AP3B1 0.770132452
## GFM2 0.765977171
## LMBRD2 0.762483176
## MATK 0.757868641
## XRN1 0.755107255
## GNE 0.754746799
## ARMC5 0.749995679
## ABCB8 0.749851995
## PIGN 0.747328042
## USF3 0.745910533
## RAD17 0.742872707
## RPS19BP1 0.742411683
## SLAIN2 0.741014069
## ST14 0.737698034
## ECI1 0.736734496
## OTULIN 0.736556381
## NR1H3 0.732921518
## SRSF4 0.732797500
## RAB11FIP2 0.730537392
## LIMS1 0.729219945
## RPL28 0.729171251
## BAZ1B 0.728832211
## ACLY 0.728534817
## FBXW11 0.725599070
## ZNF668 0.725579507
## DCUN1D3 0.724557309
## RPL39 0.720274522
## MRPL41 0.716191611
## VPS52 0.715090480
## PRIM1 0.714697210
## RPS12 0.706779431
## MYO9B 0.705723788
## SLC35F5 0.697881975
## ZNHIT1 0.693859804
## FANCM 0.691814778
## ZMYND15 0.690763140
## RANGAP1 0.689670304
## PSMB4 0.686907369
## BANP 0.686841394
## KAT2B 0.686713816
## WDR91 0.680813527
## SAMD10 0.679285880
## GGT1 0.673750260
## GHDC 0.673506526
## CYCS 0.672532208
## UHRF1BP1 0.672480903
## CENPT 0.671806733
## ANKRD54 0.666101724
## LPCAT4 0.663858476
## USP25 0.662336401
## VPS4A 0.661324461
## UBR5 0.655917646
## APEX2 0.654319529
## YBX1 0.650511620
## CCSER2 0.649640739
## SCARB1 0.647987731
## EPC1 0.646624752
## PMM1 0.646117225
## GPD2 0.645250911
## TASOR2 0.644634411
## GGCX 0.644265877
## ELOVL6 0.644142777
## PSMD13 0.643323462
## C18orf25 0.642592010
## DBT 0.632027646
## SORD 0.631969314
## PLD1 0.629139504
## LST1 0.628963677
## ZMYND8 0.625692164
## CHAF1B 0.621200260
## PPCDC 0.618860664
## GBF1 0.616512032
## TOMM22 0.614639209
## PARG 0.614547113
## PRIM2 0.612891817
## ANXA2R 0.612120563
## BTN3A3 0.602170099
## TXNL4A 0.600781484
## SEL1L 0.599822692
## COMMD6 0.596526008
## PGM3 0.594047381
## FAXDC2 0.588267010
## NR2C2AP 0.584263557
## POLR2F 0.582782437
## FMR1 0.581648146
## ANKRD36C 0.577168186
## ZNF714 0.576424326
## NAPB 0.573232958
## CHCHD6 0.569344338
## SMCHD1 0.568272759
## C16orf87 0.568009065
## GIGYF2 0.567310997
## MAD2L2 0.566877897
## ZDHHC6 0.563549519
## PTPRS 0.563520775
## YME1L1 0.563434904
## AGPS 0.562651882
## COBLL1 0.561991427
## FBLN5 0.561729143
## MON2 0.561307807
## UBTF 0.560732278
## TRPV2 0.560300614
## SURF4 0.559822322
## FEN1 0.559625197
## VPS28 0.559318476
## SELENOH 0.559089485
## MREG 0.558049573
## MRPL52 0.554688171
## LOXHD1 0.552907659
## ZNF226 0.551775957
## HM13 0.551522870
## TMEM170A 0.551076398
## TRIM5 0.550505076
## B4GALT7 0.550148614
## GAK 0.549861153
## ATE1 0.546283530
## C16orf74 0.545159487
## STK11 0.542414427
## XYLT2 0.540851530
## TIMM17B 0.540724881
## PSMB1 0.539374223
## FIBP 0.536605260
## HDAC7 0.534509799
## C16orf86 0.533426695
## AUH 0.533321918
## UHMK1 0.532757650
## CNTRL 0.531962039
## CLEC7A 0.528856115
## HCFC2 0.528394957
## PCBP4 0.527223431
## MRPS34 0.525397218
## COMMD7 0.523027663
## SLC66A1 0.521791167
## RAB1B 0.521532191
## RBM27 0.519505419
## ERCC6 0.518498613
## HINT3 0.515734395
## PMVK 0.514543643
## PDZD4 0.513674689
## LAPTM5 0.513233846
## SEMA3E 0.512240755
## PRADC1 0.508715269
## MVD 0.507711233
## PRR14 0.507044075
## TACC3 0.505400913
## KIAA2026 0.504254453
## MTMR2 0.503005989
## CREBRF 0.500074129
## FAM193B 0.499616919
## ZHX1 0.494672610
## KCTD9 0.494032411
## PPFIA1 0.492779437
## KATNB1 0.490580762
## GATA3 0.488630049
## EIF2AK4 0.486629448
## ATXN3 0.485125262
## TMF1 0.480811976
## DNAJC7 0.475891968
## CYP4F3 0.475573833
## C5 0.475296336
## ABHD18 0.475285395
## FAM174C 0.473761954
## TALDO1 0.473333767
## YIF1B 0.469634993
## CHD9 0.469595830
## CLASRP 0.463285564
## TLNRD1 0.463152372
## KMT2E 0.456487163
## SWT1 0.455979513
## ZBTB48 0.453021177
## WDR97 0.449914958
## ARL16 0.448860857
## USP20 0.446752570
## ASH1L 0.446548769
## PDE6G 0.445672844
## AP2S1 0.445285224
## HECA 0.439310953
## SNX17 0.436731797
## WDR46 0.436719133
## SYNE1 0.436349806
## GATD1 0.435575611
## PCNX3 0.433999356
## RB1 0.430739305
## RPS29 0.430263717
## UBALD1 0.422434567
## TLK2 0.422413273
## MTRNR2L3 0.422078527
## BCAS4 0.420523500
## EHBP1 0.417972062
## DDX54 0.412194313
## GPATCH2L 0.409002052
## HERC3 0.406825866
## PSMB6 0.403811637
## KIAA1191 0.403607883
## SRGAP2 0.403526655
## TESC 0.399651374
## R3HCC1 0.399265393
## TFPT 0.396936588
## CASP8AP2 0.395334457
## SCRIB 0.393400955
## RIF1 0.392977594
## TRIP11 0.387811444
## TDG 0.387424852
## ACACA 0.385060765
## MINDY3 0.384343268
## RASGRP2 0.383657483
## HELZ 0.383608050
## USP16 0.383207813
## CYC1 0.372031215
## CCDC142 0.370943974
## TCP11L2 0.370825057
## CD52 0.370207261
## TFDP1 0.365253000
## DENND5B 0.364943411
## INPP4A 0.362736970
## UVRAG 0.361057320
## PSMB3 0.360560247
## SPI1 0.359976818
## NETO2 0.359485955
## HSPA4 0.357504871
## PRKCI 0.357285220
## HMGXB4 0.350539045
## LYL1 0.349817305
## MIB1 0.349258549
## HPF1 0.344001561
## TNFAIP8L2-SCNM1 0.341177635
## CFAP410 0.336738570
## TMEM184C 0.335065125
## GABARAP 0.334868289
## SLX1A 0.334573003
## FIS1 0.334007016
## CCDC32 0.332626001
## BAG2 0.332251752
## LAT 0.328384178
## BBC3 0.328379091
## TSR2 0.323205105
## CHD8 0.322323043
## CCDC9 0.321594531
## PTAR1 0.320136317
## HMGN3 0.319978368
## TP53INP1 0.318462649
## ACSF2 0.318181547
## TM9SF1 0.313609212
## MFSD14A 0.312490797
## VCL 0.311954172
## RP9 0.307205995
## ANAPC15 0.306885806
## CST3 0.305548905
## RPS26 0.305025749
## EPS15 0.304495361
## NFAT5 0.304225750
## ZNF788P 0.303988409
## PDLIM7 0.303372462
## CDK19 0.303245424
## KANSL1L 0.302821482
## COQ2 0.302284321
## LCOR 0.298475393
## URGCP 0.292980049
## KLF2 0.285673746
## LDLR 0.282369452
## MAML2 0.281050534
## TNK1 0.280701679
## LEMD2 0.280230868
## PEX10 0.277893002
## EID2B 0.277326318
## FNDC3B 0.277278036
## PPM1M 0.275486837
## MED12 0.274650919
## POLH 0.274304239
## SLC4A2 0.272825195
## NR2C2 0.270385367
## ZNF497 0.268852986
## CD79A 0.268822422
## WDR33 0.267741037
## SEPSECS 0.262296127
## SZRD1 0.258810168
## KIAA1841 0.258673101
## NUP205 0.256090712
## TMEM18 0.254087319
## EFCAB7 0.253757331
## SGF29 0.252895603
## GALT 0.252149064
## POLR2L 0.249244250
## MAMDC4 0.248482805
## SH3GLB2 0.248437166
## POLR2G 0.247574072
## ISY1 0.247269772
## FIGNL1 0.247189614
## ANKRD27 0.247052315
## WASHC2C 0.246322764
## MTHFSD 0.243822522
## USP1 0.243530901
## ATG16L2 0.237182448
## LSM2 0.232187175
## PHF3 0.230012490
## FAM13B 0.228746174
## EPSTI1 0.225957273
## NDUFC1 0.223084204
## OSGIN2 0.222802843
## TAF1 0.222475788
## ADCK1 0.220835389
## SLC25A3 0.219984661
## PNKD 0.218502530
## RBM12 0.214575298
## PTRHD1 0.213063737
## PSMD4 0.212340010
## ZNF622 0.211295725
## INPP5D 0.211234261
## UBQLN4 0.210553823
## POLR1E 0.210108876
## NBPF14 0.206761459
## ZNF236 0.206137127
## COX6B1 0.205570234
## DHX36 0.205150036
## HMGN4 0.205060812
## SURF1 0.203506283
## S100A13 0.203488851
## RPL41 0.203470014
## MAN2A2 0.202375965
## RGPD8 0.201073045
## TMEM120A 0.199203746
## ARAP1 0.197982615
## ZC3H7A 0.197790858
## TAZ 0.197141787
## INPP5B 0.196917946
## JMJD4 0.194034234
## PPP4C 0.194021500
## PSENEN 0.192097372
## APBA3 0.187670227
## CDK5RAP1 0.186773345
## PHLDB3 0.181477538
## LRMDA 0.180644737
## CHPF2 0.180227782
## AFF4 0.178851443
## IGFL4 0.177842967
## PCDH12 0.176048310
## GEMIN6 0.172495166
## TCOF1 0.172238750
## MSH6 0.169125616
## USP8 0.169095662
## NAXE 0.167353838
## CCDC57 0.165953087
## RPL37 0.165203627
## E2F1 0.164192289
## FBXL20 0.163729636
## SLC7A7 0.162420771
## CORO1B 0.157329525
## IQCE 0.155368667
## UBR2 0.153372710
## THAP4 0.151501608
## COA3 0.149499278
## STX17 0.149124472
## SEMA7A 0.147593501
## NPEPL1 0.147457182
## DIPK1A 0.144989313
## C8orf82 0.144770815
## ERGIC3 0.144058474
## FRS2 0.142146059
## NIBAN3 0.141350607
## MAP3K1 0.139559808
## LRRC8B 0.139430446
## DNPEP 0.139186190
## FEM1B 0.133388021
## RAB3A 0.132726777
## UBR4 0.132480971
## PABPC1 0.131939190
## RPSA 0.131708023
## CREG1 0.129905002
## MAPK7 0.128664175
## POLR2I 0.125593789
## PTMA 0.125187526
## ZNF568 0.125147654
## CCR7 0.120943380
## UBL7 0.116154660
## LRSAM1 0.114569737
## XPR1 0.111711768
## TRIM65 0.110765561
## UBR3 0.109592217
## CD99L2 0.108028542
## EP300 0.106657561
## HDAC10 0.105820070
## USP34 0.105777170
## ST6GALNAC6 0.105656117
## ZCCHC2 0.105549402
## TES 0.103317701
## GCHFR 0.099526539
## CHKB 0.099498294
## ZBTB37 0.099005322
## PEMT 0.098727053
## TMEM109 0.096994944
## RNPS1 0.091735652
## DENND4C 0.089248034
## NDUFA11 0.088089052
## CCDC77 0.087197363
## TRIM33 0.086240718
## DCLRE1A 0.085516032
## CEP97 0.085201193
## ZNF616 0.084542422
## ZKSCAN7 0.084417557
## ZFP91 0.083217751
## CERS6 0.082688235
## ANKRD17 0.080739281
## GLCCI1 0.079114548
## SRI 0.073442951
## ANKRD13D 0.071820644
## ZFYVE19 0.071189563
## NAAA 0.070855904
## IREB2 0.070025673
## CC2D1A 0.069882769
## LRCH3 0.064399258
## SMAD2 0.063613548
## GRAMD4 0.062177397
## CNST 0.061489171
## MTCP1 0.060915663
## SEPTIN1 0.054967077
## FAM241A 0.052245646
## RFC1 0.052050000
## LSM7 0.050804337
## NBEAL1 0.049399783
## LIMS2 0.048616349
## SLC2A13 0.048514387
## NAGA 0.048319008
## SLC48A1 0.047965350
## CCDC189 0.046122113
## ERC1 0.045663580
## ATG2B 0.044690335
## CENPA 0.041287651
## SLC2A5 0.041073235
## TBRG4 0.040140626
## RNF6 0.039897410
## TEPSIN 0.039437947
## RNF167 0.038118448
## DCAF5 0.035544285
## STARD5 0.033231970
## LAS1L 0.032400759
## FAM43A 0.032043236
## PLD3 0.030232268
## KANSL1 0.029874055
## MRM1 0.026574860
## TRIM22 0.022831600
## ADAM17 0.020898306
## ATAD2B 0.019985421
## ATRX 0.018395150
## HSPBP1 0.017544965
## ABL2 0.014156879
## NDC1 0.013595978
## SCIN 0.013082818
## NCOR2 0.011938065
## UBN1 0.011773714
## FAM160B2 0.011635004
## POLE4 0.010247519
## PSMD5 0.009825853
## DYRK1A 0.009772841
## TMEM39A 0.008039474
## ZNF629 0.007330825
## DNAJC8 0.006081868
## LPIN2 0.005943774
## SPAG16 0.005507004
## BCL7B 0.005451263
## TMEM107 0.002905553
## OTUD4 0.001806197
## KXD1 -0.005425245
## WASHC4 -0.011709124
## TICAM1 -0.011746752
## TRAPPC6A -0.012532552
## MAP2K1 -0.012785867
## ANKMY1 -0.012837674
## RSAD1 -0.021980368
## CAPRIN1 -0.022613836
## FKBP2 -0.023865715
## SP4 -0.024842148
## TSR3 -0.024998295
## RCBTB1 -0.025345352
## ESYT2 -0.026167459
## PBDC1 -0.026197652
## HDHD3 -0.027259600
## MAN2B2 -0.028751833
## SMURF2 -0.031277495
## PANX1 -0.033366667
## BRAF -0.033621584
## TXN2 -0.035659317
## ACP2 -0.036392926
## TTF2 -0.037311623
## MTMR4 -0.037492394
## SMIM19 -0.038413308
## SAC3D1 -0.041456407
## FASTKD5 -0.042897272
## MAP3K21 -0.044684998
## ANKMY2 -0.044688551
## ASIC3 -0.045032999
## ZNF547 -0.046007184
## TTLL1 -0.050189058
## UBAC2 -0.052589575
## FBXL8 -0.055360896
## TYK2 -0.056374391
## GPKOW -0.057267288
## PTK2 -0.057330203
## RPS13 -0.057422109
## SMIM4 -0.057727990
## FBRS -0.057762357
## IL23A -0.060881908
## HRAS -0.061181635
## UQCC3 -0.061561383
## MAN1B1 -0.064950421
## ABHD17B -0.066234048
## DDX17 -0.066367453
## ZC3H12C -0.066512597
## CES2 -0.067465622
## TMC6 -0.068693289
## CALHM5 -0.069261468
## ARPC4 -0.070570202
## RGS14 -0.071035031
## RUNX2 -0.072501749
## PPP1R3F -0.076200766
## GNGT2 -0.076891174
## PAPOLA -0.079111194
## ZNF852 -0.080658285
## CGGBP1 -0.081357236
## COG6 -0.086219566
## SPATA20 -0.087182001
## UNC13B -0.088527106
## SMARCD1 -0.089672979
## NUDT1 -0.089678083
## REV3L -0.093015369
## RANBP9 -0.093223669
## G3BP2 -0.094728636
## HMBOX1 -0.095190356
## USP12 -0.096390673
## SLC30A7 -0.096686160
## FIP1L1 -0.101066884
## HECTD3 -0.101079072
## FRK -0.101488316
## SLC25A22 -0.101874607
## MFSD3 -0.102271525
## EIF2AK3 -0.103691336
## DELE1 -0.103819437
## HSBP1 -0.103971906
## KMT5C -0.104305883
## NDUFAF8 -0.108903214
## DCTN1 -0.108972108
## DNLZ -0.113613890
## PIGQ -0.114435050
## PSMC5 -0.116486371
## ARL5A -0.118139516
## TMEM68 -0.118329068
## COA4 -0.119082192
## RRP36 -0.120400722
## DOP1B -0.124901456
## ITSN2 -0.125833065
## RABEP1 -0.126940160
## PSMC3 -0.126981509
## TOGARAM1 -0.127577379
## ANAPC2 -0.128138305
## TTC17 -0.128274423
## SFI1 -0.132253487
## SAP30BP -0.133967266
## AARSD1 -0.134008831
## LAX1 -0.134044973
## SBF1 -0.134270747
## ARFGEF1 -0.134648296
## PDZK1IP1 -0.136111838
## UQCRB -0.139896057
## CD226 -0.141162465
## KMT2C -0.141462759
## WDR83OS -0.141542455
## DOCK8 -0.144212707
## BLZF1 -0.144239331
## PPP1R16A -0.146726954
## FEM1A -0.151019106
## ZBTB11 -0.151735943
## FBXL18 -0.152592619
## GTF2A1 -0.153538994
## SERPINF2 -0.155012021
## LAMC1 -0.155716145
## TMX1 -0.157123731
## SLC52A2 -0.159091074
## BABAM1 -0.163140047
## EXO5 -0.163284656
## ARL2 -0.167747830
## PIEZO1 -0.171309277
## TMEM38B -0.171934649
## ZNF692 -0.172569117
## INTS8 -0.174862809
## MTRF1L -0.177500650
## USP5 -0.178966418
## TMEM97 -0.183737450
## TMEM204 -0.184355250
## MYL6 -0.185660454
## RELB -0.189166987
## SWI5 -0.189237394
## NECAB3 -0.191803601
## DUSP7 -0.193421450
## ZNF783 -0.197372541
## CD3E -0.198528857
## DRAP1 -0.201638166
## NDOR1 -0.201879952
## RPS6KB2 -0.202471117
## HEBP1 -0.203460120
## GPX1 -0.204011278
## SH3GL1 -0.209098202
## CDC34 -0.211994058
## DHRS1 -0.212198986
## RRP9 -0.213798381
## MFAP3 -0.218916191
## RCE1 -0.223533411
## PPP2R5E -0.223657772
## DPH5 -0.223833676
## BCL7C -0.224035706
## MEF2B -0.226600590
## TRIM11 -0.227189135
## LHFPL2 -0.229653695
## RBM33 -0.230207806
## IDH1 -0.232034823
## STK4 -0.232858002
## PLCE1 -0.233867242
## AVL9 -0.236934884
## DUSP12 -0.237981845
## PSMG2 -0.238790091
## SFXN3 -0.239763904
## SON -0.242018430
## AK3 -0.245940452
## MED13L -0.249128697
## TUBB1 -0.254373626
## WNK1 -0.257418612
## PTPRCAP -0.261245216
## CDC26 -0.261616964
## MYB -0.263320209
## SLC22A15 -0.264078472
## STX18 -0.264779872
## MCU -0.265149174
## CAPG -0.267072543
## CCM2 -0.269507472
## KIZ -0.270621933
## LMAN2 -0.271761904
## ZNF383 -0.272682024
## NEK9 -0.274739327
## NUDT17 -0.274894043
## FAHD1 -0.277635031
## PSME4 -0.277654673
## ABHD8 -0.279943303
## PIWIL4 -0.280537963
## CTDNEP1 -0.283410314
## SHISA4 -0.287347876
## ERI3 -0.287403560
## PPP1R15B -0.287891358
## UTP18 -0.288917679
## MIA3 -0.289446050
## RPL36AL -0.291186673
## KLHL20 -0.294469229
## GTF2H2C -0.294482862
## EIF3L -0.294500976
## PARP8 -0.295252428
## NDUFS3 -0.295831461
## KBTBD3 -0.297013414
## C4orf46 -0.300639732
## PIGC -0.302902904
## CIZ1 -0.302980264
## CASP6 -0.304719063
## WDR45 -0.305695884
## ELP5 -0.307155808
## MBD1 -0.307650943
## NIPBL -0.308086979
## MANEAL -0.308341976
## HACE1 -0.308798376
## RER1 -0.311842674
## ABRAXAS2 -0.313269509
## TGFBRAP1 -0.315226037
## MDP1 -0.315327777
## RABAC1 -0.315516340
## PPP2CB -0.320722032
## SMIM3 -0.321942521
## SUPT16H -0.322054679
## MEPCE -0.322096501
## ATAD3B -0.325121856
## NKD1 -0.327254275
## ALAS1 -0.327526920
## KPNA3 -0.327618676
## A1BG -0.329283220
## HNRNPH3 -0.331074377
## AZIN2 -0.331607146
## ATF5 -0.332628127
## NUF2 -0.333234913
## NCOA2 -0.334852982
## TMOD3 -0.335439230
## TRMU -0.342579896
## ARPC4-TTLL3 -0.344024004
## LRRK2 -0.346196549
## MRPL38 -0.347488598
## DIP2A -0.352886957
## GLI1 -0.353718308
## UBE2G1 -0.355702293
## MTA1 -0.356757533
## RITA1 -0.358286824
## NHP2 -0.359473338
## MZT2B -0.361018100
## TIMP1 -0.361055936
## OSCAR -0.361723481
## RDH10 -0.362117455
## LAMP1 -0.364646643
## IARS1 -0.366141868
## CENPN -0.366721524
## PATL2 -0.369143027
## PDHX -0.370209519
## LRBA -0.372427701
## DDI2 -0.373648561
## PRMT7 -0.374516184
## KDM5B -0.375737282
## SRP54 -0.377264789
## ANXA9 -0.379665485
## IGFBP4 -0.381105523
## DGKG -0.383880902
## FES -0.384832396
## CABIN1 -0.385051511
## GGT7 -0.385115892
## DDX49 -0.385407845
## DPH7 -0.385439265
## YRDC -0.385861358
## RUBCN -0.386174961
## TP53I11 -0.388043165
## CEP104 -0.389802483
## ABHD14A -0.393255280
## FLAD1 -0.394362176
## TKFC -0.398401221
## RICTOR -0.398658792
## MRPL11 -0.399217024
## TMED1 -0.401738534
## BAMBI -0.402069079
## PTBP2 -0.403486539
## RRS1 -0.407639631
## NDUFS8 -0.409612682
## ATP13A2 -0.411964102
## UQCR11 -0.412449314
## PLXND1 -0.413372322
## WASHC5 -0.415555003
## SKA2 -0.415943936
## WDR62 -0.416576714
## ZNF133 -0.417075870
## SEC63 -0.417345977
## STRN3 -0.419182127
## PRKAR2B -0.419552769
## DYRK1B -0.420171501
## STT3A -0.424806026
## ARMC6 -0.425438296
## DNAL4 -0.427550669
## WDR18 -0.430906984
## LYRM4 -0.430919959
## AXIN1 -0.432530483
## RGS6 -0.435089362
## NCR1 -0.435806133
## AAMDC -0.437116479
## FANCL -0.439797817
## SECISBP2 -0.440426137
## PCNP -0.441012858
## VCPIP1 -0.446194617
## ACTR1A -0.447312873
## P4HTM -0.449124188
## TRAF2 -0.450200909
## MYCL -0.452352019
## GPATCH8 -0.455715978
## SCP2 -0.456991028
## RNF38 -0.457110645
## USP28 -0.457456679
## SAV1 -0.458022786
## DHX37 -0.459542537
## ADSS1 -0.460314421
## ATP11C -0.463671765
## POLR3H -0.464419352
## CCDC30 -0.464602266
## PANK3 -0.465187281
## ASL -0.465376774
## MVB12A -0.467326666
## CXXC1 -0.467793072
## MFSD5 -0.468776711
## CFL1 -0.469569714
## RAB2B -0.473258725
## MEGF9 -0.477719762
## IPPK -0.478488835
## PTPRA -0.479101241
## CDK20 -0.479313300
## STK19 -0.480452786
## SAMM50 -0.480695357
## MBTD1 -0.481507945
## RBM11 -0.482438821
## GPR107 -0.482502850
## TRAK2 -0.484595091
## BBS5 -0.484979545
## MEA1 -0.485466306
## PRPS2 -0.485594274
## LRFN4 -0.488943770
## NDUFB9 -0.489925304
## SARS2 -0.492460533
## B3GNTL1 -0.493289424
## RPS28 -0.493436519
## CDK6 -0.493546613
## PTK6 -0.494703342
## HIP1R -0.495367827
## HGS -0.495961743
## FUCA1 -0.496222421
## PTPA -0.497023666
## NISCH -0.497288811
## KAT5 -0.503737728
## ARAP2 -0.503919274
## DOT1L -0.505017312
## GOLGA2 -0.505369872
## LARP7 -0.507820837
## WASHC2A -0.509479234
## HSPA1B -0.509739232
## ZKSCAN1 -0.511237033
## SPARC -0.511249588
## GATAD1 -0.514849411
## MAP4K5 -0.514992002
## P3H1 -0.515990888
## AKAP10 -0.518002277
## NUBP1 -0.521014399
## SEC23IP -0.521198252
## SLC27A5 -0.521602754
## C17orf80 -0.524222021
## MYBL2 -0.524434278
## FBF1 -0.526775906
## TNFSF8 -0.527388806
## GPR137B -0.529830059
## CPEB3 -0.530707012
## PARP9 -0.533041065
## RCOR3 -0.534758220
## IFT122 -0.540388227
## KLHL25 -0.540801160
## ABT1 -0.542305470
## DPM3 -0.543010038
## SNX27 -0.543138868
## RPP25L -0.543269709
## ITGA1 -0.544314740
## USP3 -0.545177681
## ARHGAP6 -0.546962331
## TOP3B -0.547128141
## TRIM58 -0.547252197
## DIP2B -0.547617151
## ABCC2 -0.548903308
## SS18 -0.552517209
## TTYH2 -0.552879122
## NUFIP2 -0.553463309
## NAA80 -0.553630718
## NCKAP1 -0.555611600
## DMAC1 -0.560471167
## RAPGEF6 -0.561059659
## MRPL2 -0.562721609
## OTUB1 -0.562882434
## SLC26A11 -0.565608608
## MRPL42 -0.565644966
## YOD1 -0.566382153
## EIF2AK2 -0.567854179
## LRRC8D -0.569949613
## DNAJB4 -0.570860988
## TG -0.571221737
## NKAIN3 -0.571857268
## BTAF1 -0.572884215
## CCNT1 -0.573116647
## RAF1 -0.573209711
## SERAC1 -0.573349730
## NEK7 -0.574077833
## TRIM46 -0.574525508
## IGHG1 -0.574807701
## ELL2 -0.578536942
## HS6ST1 -0.586058612
## SQLE -0.589297397
## CA11 -0.589379697
## SLC22A16 -0.591257527
## MORC3 -0.591703429
## CPEB2 -0.592047518
## FAR2 -0.592452089
## TUBGCP4 -0.592604280
## PRPF4B -0.593695508
## NEK4 -0.593946588
## PAQR7 -0.594011571
## MDM4 -0.598931488
## ERI2 -0.599372121
## CEP350 -0.600965983
## BCLAF3 -0.604154002
## CLINT1 -0.604684809
## PTPN12 -0.604839898
## LILRB3 -0.605140771
## MTHFD2L -0.605858653
## G6PD -0.606888366
## TXNDC5 -0.609996093
## ZAP70 -0.610480345
## ZNF507 -0.611003421
## GALNT7 -0.612518961
## KRBA2 -0.613835239
## SEPTIN2 -0.617308492
## MED6 -0.617897139
## FOXN2 -0.618525965
## EPS8L2 -0.620490458
## DDA1 -0.620953343
## MCAT -0.621453200
## SDE2 -0.624117625
## EYA3 -0.624768139
## LONP2 -0.626818149
## SH2D3C -0.626878592
## KDM7A -0.627396711
## ATOX1 -0.627936116
## KIDINS220 -0.631287796
## BICRAL -0.631633213
## PRKAA1 -0.632523470
## KLHL26 -0.635404518
## H2BC21 -0.639621802
## RPL34 -0.642463019
## LEMD3 -0.642750449
## PCNX1 -0.642911230
## CD68 -0.644784124
## SPIB -0.645971784
## ZFAND2B -0.648714742
## PCGF6 -0.651618632
## DDX39B -0.652153667
## MRPL54 -0.652796723
## RNA28SN3 -0.653009309
## KCNA2 -0.653746806
## DMTF1 -0.654237659
## CWF19L1 -0.654659171
## IRF4 -0.655184089
## ITPA -0.655710212
## SNRK -0.656301886
## INTS6 -0.656495027
## EHMT2 -0.656641086
## ITCH -0.656802795
## COPA -0.657779771
## TRAPPC5 -0.660939696
## POU2AF1 -0.663402856
## KDM3B -0.664573853
## ATP5ME -0.664966452
## SLC39A9 -0.666408803
## ABCA1 -0.667565042
## MED19 -0.668631299
## GTF3A -0.668720417
## MBTPS2 -0.673133807
## OSBP -0.674347296
## PRDM4 -0.674903811
## POLR1H -0.675144064
## SPSB1 -0.678727681
## H2AJ -0.679163137
## RASAL3 -0.679243433
## KCTD5 -0.680016368
## ZFC3H1 -0.680542210
## DUSP18 -0.681095284
## OAZ1 -0.681262158
## HP1BP3 -0.684612665
## LETM2 -0.687249270
## MIGA2 -0.687917801
## CCNYL1 -0.688794032
## CLASP2 -0.689324378
## RPRD1A -0.691425300
## NAGLU -0.692350684
## HCK -0.692482955
## UBE4A -0.694035072
## ATP2A2 -0.695137524
## SLC39A14 -0.695260551
## RNF213 -0.696096977
## TEDC1 -0.700067134
## MTFR1 -0.700077570
## RAB30 -0.700107657
## SIGLEC9 -0.704700384
## SHISA9 -0.707957413
## UBA1 -0.708551203
## PIM3 -0.711871469
## TRAF6 -0.712378864
## PCNX4 -0.713153257
## AATK -0.714665906
## MPV17L -0.716965838
## NDUFV3 -0.717088199
## LZTR1 -0.717742693
## PHF6 -0.718106873
## HSD17B8 -0.719544227
## SKAP1 -0.720563657
## STRIP1 -0.721017420
## AGFG2 -0.722409298
## MRM2 -0.722470776
## KLHDC4 -0.723781461
## GPS2 -0.724034423
## YIPF2 -0.724711191
## CTSH -0.727188808
## TNPO3 -0.728545549
## NSA2 -0.728795736
## IL24 -0.731788601
## E2F6 -0.731954772
## SLC7A1 -0.733612502
## TARBP2 -0.734222635
## FAM78A -0.736462690
## EEPD1 -0.739741223
## TRIP12 -0.741675448
## RIPK3 -0.742041520
## SLC37A2 -0.742131758
## TMEM87A -0.742280837
## PTPMT1 -0.742406449
## AMMECR1L -0.744736696
## COG8 -0.746193536
## ZDHHC17 -0.746668422
## CNN2 -0.748456077
## PTOV1 -0.749783078
## WRAP53 -0.754484517
## MED10 -0.755181375
## TPD52 -0.757102251
## RHOT1 -0.757907500
## SLFN11 -0.758401927
## SOCS5 -0.759381228
## SEC31A -0.760657336
## BTN3A2 -0.762017867
## DMXL2 -0.762103938
## PRELID1 -0.762121722
## SCYL3 -0.763066613
## NEK1 -0.764441851
## MEI1 -0.765278771
## PLEKHB1 -0.766757366
## PBRM1 -0.766924421
## EFCAB14 -0.767117939
## ARID5B -0.770866014
## ENTR1 -0.773617011
## ARID2 -0.774143366
## SRBD1 -0.775532345
## CACNB1 -0.775628299
## CBX1 -0.776403619
## AURKAIP1 -0.776797359
## NIPSNAP1 -0.780109354
## ATL1 -0.783176561
## RFTN1 -0.784579441
## NDUFB2 -0.789157065
## UBAP2L -0.789785441
## CLTA -0.790903690
## LIME1 -0.792817385
## MYC -0.795497552
## LRCH1 -0.796868522
## RUVBL2 -0.797073737
## CD3D -0.797136998
## BCL11A -0.797469304
## ZNF747 -0.798413270
## TMEM234 -0.798554124
## OIP5 -0.801649602
## EXOC5 -0.801741658
## SLA2 -0.807768958
## KCTD11 -0.808143117
## PPP6R1 -0.810131681
## SLC17A5 -0.812662038
## ZSWIM9 -0.812960402
## RETREG3 -0.814018285
## RRP7A -0.814602453
## CTU2 -0.817836531
## EPHB6 -0.819069690
## SECTM1 -0.819283521
## RAD21 -0.819754646
## HOOK2 -0.819771263
## MRPL53 -0.823181919
## FBXO28 -0.830711006
## VAC14 -0.831489859
## GADD45GIP1 -0.832426318
## FN3K -0.832482810
## ZNF280D -0.833508903
## PRPF4 -0.837746669
## EIF3I -0.840897069
## PAK4 -0.841141714
## MANBAL -0.841515908
## SLC35E1 -0.844295992
## C3orf14 -0.844709617
## ST3GAL1 -0.846226244
## DAB2 -0.847053280
## MEFV -0.848741598
## LZTS2 -0.849244166
## TUBGCP6 -0.849763390
## TMEM212 -0.856272028
## LILRA1 -0.856860422
## MRPL55 -0.857021122
## MLLT1 -0.858203195
## KCND1 -0.858884435
## WASL -0.864697043
## PHF20L1 -0.866084539
## CRTC2 -0.866712340
## NUP160 -0.866847315
## LMBR1L -0.867192298
## ZBTB17 -0.868142042
## CLPP -0.868547053
## GPX4 -0.868738661
## WNT10B -0.869767291
## ABCC6 -0.872047196
## MAGI3 -0.872350574
## CEP63 -0.872734276
## HCST -0.874266347
## GPSM3 -0.875387285
## ERCC2 -0.876631206
## ETNK1 -0.876640026
## ARHGAP45 -0.876756608
## DTX3L -0.878590753
## SF3B5 -0.878666858
## CELF1 -0.878713567
## PDS5A -0.886048802
## RRAS -0.886848376
## DYNC1LI2 -0.890013479
## SNIP1 -0.893891987
## REEP5 -0.894360331
## SMAD5 -0.894670383
## PHIP -0.894961270
## TRAPPC8 -0.895459630
## FBXL13 -0.895622892
## AQR -0.895778257
## SLC35A4 -0.897889431
## CZIB -0.900401959
## ZFYVE28 -0.904448602
## TRPT1 -0.904463131
## ZFP64 -0.905406144
## TADA3 -0.907433913
## DCAF7 -0.909808785
## MRPS25 -0.912275413
## MPV17L2 -0.918083500
## ZNF669 -0.919452284
## HLA-DQB1 -0.919950817
## ANXA4 -0.920880450
## FBXL6 -0.921544204
## WLS -0.923174250
## RFFL -0.923674488
## CD164 -0.926917756
## PLXNA1 -0.927727760
## ASTN2 -0.929685845
## TMEM186 -0.929996988
## ANKRD36B -0.930667342
## GCDH -0.930980831
## ARNTL -0.931025303
## HMGCR -0.931355681
## CCDC186 -0.931656710
## SLC38A1 -0.931767321
## EVL -0.934219294
## NTMT1 -0.935794985
## GCC2 -0.936021245
## ZFYVE26 -0.938808838
## PRDM10 -0.942635488
## STXBP5 -0.943749606
## MROH6 -0.946377995
## UBE2K -0.946523395
## WDFY1 -0.949067000
## CD40 -0.950976244
## SMIM13 -0.952467138
## TTC21B -0.953493377
## TAOK1 -0.955971867
## LILRB4 -0.957696229
## KIF2A -0.958901947
## UQCRFS1 -0.960791907
## SNRPA -0.961345995
## PAN3 -0.961680552
## TSC1 -0.963887476
## POLD2 -0.963967298
## YTHDF2 -0.964460380
## UCK1 -0.966968683
## PIGT -0.967128795
## LYST -0.967426152
## MTMR6 -0.968165124
## RREB1 -0.968269842
## RELCH -0.970705966
## BIN3 -0.973629045
## PGGHG -0.975221909
## MAT2B -0.976010342
## TRIM56 -0.977588645
## VPS25 -0.978855867
## FRMD4A -0.981147325
## LCLAT1 -0.982011379
## BPHL -0.983123256
## AURKB -0.983414658
## RBL2 -0.983696298
## IMP3 -0.984532684
## UBE2D4 -0.984556209
## B4GAT1 -0.985069915
## PIAS3 -0.986822538
## BRWD1 -0.991338832
## FASTKD1 -0.992155365
## TRAPPC9 -0.992564670
## KLF3 -0.993543080
## CCDC80 -0.993585654
## FUS -0.995727391
## EMC6 -0.996631763
## CALHM2 -0.997417955
## CDC73 -0.998139325
## KRTCAP2 -1.000157581
## MYO1D -1.001853917
## EEA1 -1.003977130
## ZNF672 -1.004784367
## SMG6 -1.004815426
## TNFSF4 -1.005775683
## C21orf58 -1.006273041
## CHUK -1.008367933
## EAF1 -1.008539364
## TRAPPC1 -1.011739862
## NOD2 -1.012611934
## CBFA2T3 -1.013300645
## PNMA3 -1.018060244
## NDUFAF2 -1.018849326
## SLC1A4 -1.019191991
## CPNE3 -1.021963118
## LYSMD3 -1.022026884
## MPST -1.022977912
## CEBPB -1.024291857
## RBM18 -1.024541677
## HDDC2 -1.028447740
## DAZAP1 -1.029195368
## NME4 -1.029241146
## VIRMA -1.031060270
## IRAK1 -1.032633547
## APAF1 -1.032897562
## MYZAP -1.033679202
## INPP5K -1.034260106
## METAP1 -1.034838662
## IMPA1 -1.036231460
## IQCB1 -1.036335797
## SIMC1 -1.036824935
## C2CD5 -1.037677382
## MRM3 -1.038719120
## BIRC5 -1.040231870
## VNN3 -1.040419007
## USP32 -1.040740962
## PHF12 -1.043178651
## FAM207A -1.043224916
## SLC27A4 -1.044302386
## RTF1 -1.044782663
## SLC37A1 -1.047655205
## ANKRD52 -1.050064863
## PIN4 -1.052827134
## GOLGA4 -1.053393933
## KDM6A -1.055472817
## UTRN -1.057554942
## HIPK2 -1.058176686
## SETBP1 -1.058985366
## ZSCAN32 -1.059043101
## OXR1 -1.061544754
## MORF4L2 -1.062391307
## SMYD5 -1.062452743
## SMC5 -1.062609490
## GOLGA7B -1.064984695
## PRKCB -1.066013232
## HS1BP3 -1.066037963
## RPP25 -1.066610825
## CSRNP2 -1.066683798
## NT5C2 -1.067306657
## KLF6 -1.067389136
## YAE1 -1.068360496
## N4BP2 -1.071280839
## RPF1 -1.073120325
## PUS10 -1.073178630
## NUP153 -1.074314882
## TMEM256 -1.075163934
## SLC27A2 -1.075953802
## ARL3 -1.078642187
## CD82 -1.079885444
## ABCA5 -1.079897330
## GDPD5 -1.080559459
## PHACTR2 -1.080830022
## TMPRSS13 -1.081296054
## PWWP2A -1.081381373
## SNAPIN -1.082705591
## ZNF28 -1.082980496
## MED27 -1.084049006
## TBC1D1 -1.084073291
## SCAPER -1.084574796
## DDX41 -1.086574595
## UGGT1 -1.086722975
## SEC13 -1.086743904
## TCEA3 -1.088633092
## DHX29 -1.088645050
## GOLIM4 -1.089906210
## PDE1B -1.093181875
## NSDHL -1.093467349
## NUGGC -1.095072725
## HAUS2 -1.096530030
## SMDT1 -1.098731458
## SPOUT1 -1.099572314
## FADS1 -1.100163196
## CELF2 -1.102054857
## SNN -1.103520077
## R3HDM2 -1.104189990
## SNX25 -1.107261920
## ARNT -1.111075859
## ATF1 -1.112624981
## SFN -1.112799564
## EIF3A -1.114254034
## COPS9 -1.114712293
## NEIL3 -1.115250111
## ALKBH3 -1.117786838
## OPA1 -1.117949644
## PPARD -1.120283188
## MAPK13 -1.121128794
## BSG -1.124127262
## EFCAB11 -1.124165982
## ITGAV -1.124819793
## ZNF768 -1.125607916
## NPIPB11 -1.130256630
## PPP2R2A -1.132990357
## EML6 -1.137122053
## GRB14 -1.138726044
## NOB1 -1.139257281
## PSMC3IP -1.142799345
## INSR -1.143639597
## SLC5A3 -1.146311182
## BCL2L13 -1.151367095
## MRPS23 -1.151683028
## GLYCTK -1.151785475
## PRPF40A -1.152601590
## PRRC2C -1.153154528
## CHERP -1.153332767
## CMTM3 -1.153811571
## CRACR2A -1.155461431
## TRPM6 -1.158203628
## COPB2 -1.158333857
## SYMPK -1.159206733
## ALS2CL -1.161002975
## TMED7 -1.163656123
## YWHAH -1.164706852
## ZBTB44 -1.164943737
## ANKRD55 -1.165216985
## CERS5 -1.166408754
## NDUFS6 -1.167432824
## ARL5B -1.169274740
## POLR2H -1.176308572
## GLS -1.178466818
## CARNMT1 -1.179100879
## DEAF1 -1.185174554
## EFNA3 -1.185637316
## CD79B -1.185783070
## TBC1D22B -1.187614114
## PEX6 -1.188033115
## INVS -1.191638920
## NDUFA7 -1.196537836
## MARCKSL1 -1.196618508
## EMD -1.197428016
## CDKN1C -1.198787714
## MAN2A1 -1.199479291
## GANC -1.200733133
## TUFT1 -1.202749102
## SETD6 -1.203707462
## PHETA2 -1.206940807
## ORAI1 -1.207523978
## KEAP1 -1.208069953
## IDE -1.209853702
## CTPS1 -1.210624578
## ALYREF -1.210944291
## RSBN1L -1.211116699
## SCAF11 -1.211563569
## PFKM -1.211718834
## MPI -1.215899827
## UBE2E2 -1.217751925
## COX19 -1.218139610
## TSPAN17 -1.219954494
## NBPF19 -1.220407637
## TNFSF12 -1.221456253
## PPP1R7 -1.222090816
## UBXN4 -1.224414600
## ODF3B -1.224651188
## CDK13 -1.228123199
## NKTR -1.229839650
## PLEKHA8 -1.229856508
## RARS1 -1.232423151
## SLC26A8 -1.232591485
## GIMAP5 -1.232700682
## MOB3A -1.233173552
## ARID4B -1.234287728
## YY1 -1.234447557
## LRRC58 -1.235512027
## TTC7B -1.236180161
## ANXA11 -1.236802943
## GTF3C4 -1.236807495
## ZNF341 -1.239620026
## DBF4 -1.240119602
## PAFAH1B3 -1.243485350
## DNAJB14 -1.243543559
## SLC33A1 -1.245815108
## MLF2 -1.247202769
## MTMR3 -1.247300002
## AFF2 -1.255734833
## DAAM1 -1.257444089
## SSBP2 -1.259547438
## SCARB2 -1.262432758
## TMEM104 -1.264175309
## PMPCA -1.266762109
## MRFAP1L1 -1.270977740
## PLB1 -1.271667923
## TNRC6B -1.271871150
## MUS81 -1.273137321
## COPB1 -1.274028865
## UQCR10 -1.275047636
## ZNF408 -1.276296899
## ABCB7 -1.278346781
## ZFX -1.278433738
## HSP90B1 -1.281034090
## RESF1 -1.281063112
## ANKS6 -1.284999601
## SLC25A30 -1.285626365
## NECAB2 -1.286278040
## LNX2 -1.288011166
## GSS -1.289435507
## CAVIN2 -1.290134544
## CHTOP -1.295905303
## THOC1 -1.296652017
## ARHGAP5 -1.298204518
## MTMR11 -1.299079108
## C5orf22 -1.299338646
## MPDU1 -1.300216856
## GPER1 -1.300334625
## TTI1 -1.300610676
## CHST14 -1.300693869
## MED17 -1.300883409
## TTN -1.300917458
## LAPTM4B -1.302463118
## SNRNP48 -1.303021620
## UPF2 -1.304834859
## PRKD3 -1.305340665
## APC -1.309121988
## RPUSD3 -1.312360912
## FAM91A1 -1.313795548
## PROCA1 -1.315793880
## BAZ2B -1.316974229
## NME2 -1.317635493
## MXD1 -1.317804604
## FLYWCH1 -1.318183571
## PRDM2 -1.318308766
## ZNF232 -1.318671893
## NEMP1 -1.318932278
## HACD2 -1.319874321
## ATG4D -1.320031025
## ZNF699 -1.321346886
## FLCN -1.323329995
## C6orf136 -1.325243576
## CDC20 -1.326113700
## TAF1B -1.327555525
## ADPGK -1.329894734
## NDUFB8 -1.330604566
## HK3 -1.332356695
## ANKRD26 -1.332453324
## ENO3 -1.334422085
## BNIPL -1.334699927
## DALRD3 -1.334991655
## EEF2KMT -1.336774251
## TBP -1.336828116
## DDX52 -1.337456114
## SLC10A7 -1.339323506
## MRPL23 -1.340668342
## SNRNP35 -1.342056515
## TOX4 -1.342110458
## AP1S3 -1.342361336
## FAM122B -1.342529991
## RCOR1 -1.342820482
## IGKC -1.344497983
## C1GALT1 -1.344533767
## TCF12 -1.344581927
## PGRMC1 -1.348424945
## REL -1.350513101
## LSM10 -1.350595044
## RGS19 -1.354002837
## ATP2A3 -1.355023940
## ERAP1 -1.355459160
## MAP6D1 -1.356141151
## ANKZF1 -1.358826005
## APOBEC3A_B -1.359556535
## SNAP47 -1.360146425
## RB1CC1 -1.360512301
## EDC3 -1.362896180
## JADE3 -1.365319541
## MFN2 -1.365705811
## ZZEF1 -1.365940456
## CTBP1 -1.370013660
## NBPF12 -1.370626396
## STAT1 -1.370841166
## ITGA9 -1.371334634
## TSPAN15 -1.371773373
## ATR -1.372666862
## INTU -1.373400009
## AMIGO2 -1.374709045
## LCMT1 -1.374757849
## SDHAF4 -1.375274852
## PER2 -1.375561892
## TMEM219 -1.375813515
## RHOG -1.376552935
## TACC1 -1.377222795
## AK9 -1.378499071
## BOD1L1 -1.378567086
## EWSR1 -1.382710643
## CISD1 -1.382846734
## ACTL6A -1.387423800
## PTGIR -1.388277332
## ZMAT5 -1.389042156
## GAPVD1 -1.389246503
## PPP1R21 -1.392113958
## ZDHHC5 -1.392567512
## ZNF518A -1.393566100
## MRFAP1 -1.394464904
## PLA2G12A -1.395640570
## UNC5A -1.395991665
## NDUFB10 -1.396349260
## CAPN2 -1.397866601
## GON7 -1.400774904
## DCUN1D1 -1.403321847
## CPEB4 -1.403746942
## ATXN10 -1.406333535
## ISG20L2 -1.409461685
## NUP58 -1.409477329
## SLC39A1 -1.411181510
## PIAS1 -1.412903220
## MPP5 -1.413646754
## WDR26 -1.414181233
## FOXO4 -1.414273509
## WRN -1.416793924
## FAM76B -1.417142742
## CCT4 -1.419540258
## CEP85L -1.422851782
## LRRC7 -1.424605270
## STK35 -1.425743923
## TMEM223 -1.426840291
## PTX3 -1.427214116
## PCYT2 -1.428081680
## PSMA7 -1.428579514
## CSGALNACT2 -1.429164456
## SNRPD2 -1.430701066
## FGFRL1 -1.434971425
## HEMK1 -1.435449233
## CNOT9 -1.436617732
## PDK1 -1.437926947
## KBTBD6 -1.439131128
## NAPG -1.439170800
## ZNF587 -1.443524607
## ATAD1 -1.444107144
## POU2F2 -1.444938705
## NRAS -1.445358950
## G2E3 -1.445767657
## SCCPDH -1.445985342
## LILRA5 -1.446013512
## ZEB1 -1.447106262
## GLE1 -1.449694835
## SRP72 -1.449873065
## GALNT6 -1.450090204
## WDR54 -1.456145905
## CBLL1 -1.456304666
## CERK -1.461109475
## VPS18 -1.462900081
## HAGH -1.463089506
## ATP11A -1.464362525
## GNPTAB -1.466290574
## TAB2 -1.467878494
## GFUS -1.470491421
## ERLEC1 -1.471348388
## NF1 -1.472039308
## ST7 -1.473123507
## GDPGP1 -1.473630359
## DICER1 -1.477795828
## UBE4B -1.479694160
## FAHD2B -1.485289832
## PTPN18 -1.485950472
## DMXL1 -1.487290932
## POU2F1 -1.488557095
## SINHCAF -1.489163945
## RNF220 -1.490156837
## KCNN3 -1.490498246
## CHD7 -1.492738636
## SAP30 -1.494102933
## PM20D2 -1.495352591
## RFXANK -1.495917427
## RPS6KC1 -1.497384968
## LGALS9 -1.497456898
## CSF1 -1.497937714
## RTRAF -1.498631973
## FAM216A -1.499157114
## UPF3B -1.499894801
## REEP4 -1.501655676
## DTX1 -1.502260611
## TATDN2 -1.502270005
## ASB3 -1.502789393
## MCC -1.504109636
## KHK -1.506184634
## OGFOD2 -1.506986072
## ZNF212 -1.507366246
## MFNG -1.508459234
## SLC25A32 -1.512206800
## ACVR1 -1.513606490
## SP1 -1.514761149
## ST6GAL1 -1.514888060
## C9orf64 -1.516074012
## TBC1D23 -1.517184279
## SENP8 -1.517627861
## RINL -1.518256259
## THRAP3 -1.518361866
## CTCF -1.520810353
## KAT6B -1.522545351
## AFF1 -1.523550393
## ACBD5 -1.527057520
## KDM4A -1.527070330
## NCBP2AS2 -1.527089618
## AHCTF1 -1.529751830
## PAXBP1 -1.529831685
## DDX51 -1.530231998
## ZNF836 -1.533037105
## ATXN1L -1.534171275
## SMCR8 -1.536256884
## TESPA1 -1.536503005
## C5orf24 -1.536895120
## TTC37 -1.539235338
## MRE11 -1.541841990
## PPP2R5C -1.542388471
## LCK -1.542599905
## ZFP69B -1.547523648
## RBM4 -1.548560023
## CLTCL1 -1.550106723
## CEACAM6 -1.550180832
## NT5C3B -1.551122766
## CEP83 -1.555172076
## ZNF875 -1.555397635
## ACAP2 -1.557429824
## IFT80 -1.560025946
## MKS1 -1.560386225
## RMND5B -1.560768468
## VSIR -1.561509465
## TMEM192 -1.561710134
## ABCA13 -1.561900459
## TSC22D1 -1.562476385
## EID1 -1.562921983
## MPHOSPH8 -1.565606898
## ATG4A -1.565695036
## OGA -1.567239080
## ETHE1 -1.567494390
## SLC35A1 -1.567687642
## HLA-DOA -1.568278203
## TPP2 -1.568436635
## TACO1 -1.569496801
## ANAPC11 -1.572477612
## PRR12 -1.573884974
## TMEM106C -1.574028496
## AKR1A1 -1.574202080
## CLUH -1.575226149
## UNC13D -1.575705472
## TRAPPC11 -1.576026961
## MDM2 -1.576413228
## NIP7 -1.576443493
## PSTPIP2 -1.577223507
## ZNRF1 -1.578979183
## SERPINF1 -1.580034240
## ANXA6 -1.580559469
## ODR4 -1.580676633
## OBSCN -1.584080875
## SAMD8 -1.588105359
## BMP1 -1.588227283
## NDUFA8 -1.589682522
## DGUOK -1.591406327
## CENPBD1 -1.594392763
## YBEY -1.594848144
## SEC23B -1.595006652
## ZBTB2 -1.595082643
## AP5M1 -1.598732900
## SIPA1L2 -1.600175133
## H2BC4 -1.600972878
## BICRA -1.601713896
## MED18 -1.602151489
## CCNF -1.603317127
## BRD7 -1.605077605
## WDR44 -1.606369506
## NPIPA7 -1.607933767
## RAB19 -1.611630665
## KDM8 -1.613693654
## AKAP13 -1.615942157
## VTI1A -1.616555988
## LSM11 -1.616768890
## NRDE2 -1.617156436
## GLYR1 -1.620014220
## PLEKHJ1 -1.620316663
## BTLA -1.620934103
## CCDC9B -1.623025688
## PPEF1 -1.623292304
## ZBTB34 -1.623553200
## TXNDC11 -1.626375672
## CRISPLD2 -1.626643760
## FNBP1L -1.627679323
## ZNF66 -1.627735935
## PEAK3 -1.627951297
## AEBP1 -1.628167671
## C6orf47 -1.628642040
## HYPK -1.630917991
## RMI2 -1.631081039
## BAG5 -1.632725533
## ERBIN -1.636046320
## ZNF436 -1.636692466
## ZDHHC2 -1.637108781
## ZBTB21 -1.638696863
## GATAD2B -1.639335940
## DHTKD1 -1.640948432
## B4GALT4 -1.642046111
## NAA60 -1.642168204
## ZNF761 -1.642771768
## MEN1 -1.643932349
## RSPRY1 -1.644929678
## CCP110 -1.646451370
## LILRA3 -1.651790610
## ICAM2 -1.652262759
## PARP2 -1.652937925
## MCCC2 -1.654108744
## EIF3B -1.655092154
## PPM1G -1.658075291
## WDR7 -1.659813445
## LUZP6 -1.660433747
## MTPN -1.660433747
## CYB5R1 -1.661521742
## POLR2J -1.662020609
## CEP192 -1.663128670
## TRIP6 -1.664406545
## TRAPPC2L -1.664687296
## TMC8 -1.664887720
## FYTTD1 -1.665305435
## SPCS2 -1.668354263
## TAF15 -1.669533451
## SLTM -1.670142706
## MOB3B -1.670784013
## UNC119 -1.672683633
## EXOSC7 -1.677649694
## USP54 -1.677975129
## ANKRD12 -1.677985874
## RECQL -1.678801827
## COX17 -1.679513992
## B3GALNT2 -1.679631413
## METTL4 -1.679759615
## PCYOX1L -1.680641159
## ZMYND19 -1.682144266
## NFAM1 -1.682644761
## EGFL8 -1.683444979
## NUP155 -1.684582664
## COMTD1 -1.685372749
## PELI2 -1.688431680
## STK17B -1.694388849
## ZBTB16 -1.695226729
## SEC14L5 -1.695430866
## GSTO1 -1.695724585
## CEACAM8 -1.697487202
## PPTC7 -1.698706348
## PSMD9 -1.699155283
## DCK -1.699624253
## NIPA2 -1.700018717
## DERA -1.701898260
## C11orf98 -1.702408220
## SP3 -1.703925505
## DLGAP4 -1.705674669
## RPRD1B -1.705683265
## LILRA2 -1.706336828
## IFT140 -1.708716792
## ATF7 -1.708881678
## TNFRSF13C -1.709198561
## FAM102A -1.709918883
## SEC24A -1.711776359
## MARF1 -1.711945731
## POMGNT1 -1.712052701
## ZNF493 -1.712109160
## PRRC1 -1.714221847
## KMT2D -1.714478068
## PARP11 -1.716106512
## DCTN3 -1.718673934
## ZNF654 -1.721419073
## CNOT7 -1.721833598
## GPATCH1 -1.722924862
## GPLD1 -1.723613558
## PTPRE -1.724898953
## REV1 -1.724900463
## EPAS1 -1.725679569
## STX16 -1.726119131
## CNTLN -1.727852210
## UBN2 -1.728483023
## ATF2 -1.729810168
## GNAS -1.732013667
## SIRT7 -1.732043329
## TXNDC16 -1.733295601
## FAM126A -1.734441225
## FZD3 -1.734812610
## BAG1 -1.735240623
## PCF11 -1.738016966
## PRCC -1.738574496
## REST -1.739871920
## NAA50 -1.740118229
## MTCH1 -1.740218406
## TJAP1 -1.741123295
## CLK2 -1.741679092
## LPP -1.744053417
## TOR1AIP2 -1.746334390
## ZNF621 -1.746746652
## ANKRD39 -1.747659407
## RAB27B -1.749539340
## PAWR -1.750990379
## ERCC3 -1.752964743
## KDELR1 -1.754575554
## SCAMP1 -1.761267518
## CLN3 -1.764739978
## SHROOM4 -1.764818602
## ATP5PO -1.765335835
## F13A1 -1.765411209
## UHRF1BP1L -1.765412590
## MVK -1.765714704
## CHAMP1 -1.771095320
## PDIA5 -1.773258362
## PPM1L -1.776364463
## POR -1.776395631
## CCDC117 -1.779262078
## PCK2 -1.779335607
## LRRC46 -1.780580581
## RAP1GDS1 -1.781191962
## HDLBP -1.782348917
## QKI -1.782788055
## APOBR -1.783795117
## PPIH -1.788009977
## ZNF335 -1.789052909
## ING3 -1.789382687
## SAMD9 -1.791488145
## VEGFA -1.794286799
## AP1G1 -1.798286940
## ITGB2 -1.798929939
## DOLK -1.801333787
## RNFT1 -1.803843651
## LTBR -1.804430690
## CKB -1.804536537
## ABHD3 -1.805483686
## ANXA2 -1.807344340
## ACBD7 -1.808378402
## PCIF1 -1.808785559
## PARP14 -1.809355830
## PDE6B -1.812326523
## MTRNR2L6 -1.813302624
## CTU1 -1.816085170
## ADD3 -1.818659724
## OXSR1 -1.819287060
## RFX1 -1.820088716
## MRPS2 -1.821167027
## NEIL2 -1.821259532
## GPR141 -1.821697600
## IMP4 -1.822170284
## PVRIG -1.823709451
## B9D2 -1.823949311
## PARD6G -1.824813563
## PDIK1L -1.824884721
## RBM43 -1.825980186
## LMF1 -1.826038794
## PNRC2 -1.828643799
## HSPA4L -1.829187330
## MAP3K2 -1.831269381
## MAP7D1 -1.831779776
## AKR1B1 -1.832498494
## FZD2 -1.834937892
## NEMF -1.835763090
## DAPK3 -1.839406877
## ALDOC -1.840581979
## PRMT1 -1.842130469
## MDM1 -1.843430309
## SMARCA5 -1.843479293
## MIER1 -1.844573482
## MAD1L1 -1.844934762
## GTPBP3 -1.847172512
## SUPT20H -1.848920921
## FAM214B -1.849246042
## FCHSD2 -1.850494708
## MRPL45 -1.850753750
## ZMYM4 -1.850771998
## SLC38A6 -1.851668427
## CTDSPL2 -1.851894763
## DGCR2 -1.853981553
## TOPORS -1.856344682
## HNRNPA0 -1.857237870
## FLOT2 -1.857290089
## MORN3 -1.857597204
## AP2M1 -1.858592460
## ZGLP1 -1.860683637
## STRADA -1.860774705
## SWSAP1 -1.863927652
## FCMR -1.865326862
## GYPC -1.868609044
## LLGL1 -1.870630513
## SPINT2 -1.872192205
## CLN6 -1.872306813
## FDX2 -1.872564641
## CSGALNACT1 -1.873272664
## ZNF407 -1.873298535
## OASL -1.874256607
## FER -1.875679611
## SMIM7 -1.876060770
## PLK2 -1.877149031
## SLAIN1 -1.877473706
## APOL6 -1.878372526
## AMD1 -1.879613801
## SEPTIN7 -1.883559864
## SCAMP3 -1.884310013
## BACH1 -1.885793443
## CCDC127 -1.886501355
## ORC3 -1.886913680
## LSMEM1 -1.887512645
## DENND4A -1.887658000
## RHBDD2 -1.887724050
## RORC -1.887833241
## LRRC34 -1.889131516
## POLR1C -1.889794948
## C19orf47 -1.890160836
## NFYA -1.892157422
## NXPE3 -1.892565792
## DENND4B -1.892730882
## FHIT -1.893644994
## DHX30 -1.894119110
## C5AR2 -1.894204021
## SPTBN5 -1.894237452
## ZNF136 -1.894376869
## TET3 -1.895337945
## SEPHS1 -1.897120748
## MED23 -1.897520868
## CCDC86 -1.900467967
## MTLN -1.902379501
## SPTY2D1 -1.902701322
## CPSF1 -1.905760682
## PUM1 -1.905895656
## MLLT10 -1.908516692
## MTARC1 -1.910005684
## ERCC4 -1.911102438
## DDX56 -1.913279997
## CD5 -1.913414589
## ZDHHC23 -1.914635811
## PIK3CB -1.916780149
## MED21 -1.917722112
## LIN7C -1.918190385
## NINJ1 -1.918850519
## ASB7 -1.920075963
## SLC35D1 -1.922457107
## THEMIS2 -1.925717940
## UBA5 -1.927500351
## POMT1 -1.930637041
## LIG4 -1.930671908
## DOCK11 -1.931244144
## YPEL2 -1.931719315
## NAP1L1 -1.933485671
## TRAM1 -1.933549018
## HIPK1 -1.934080857
## ZNF777 -1.936331702
## NCK2 -1.936740535
## PAG1 -1.936935232
## POP7 -1.937003375
## NDE1 -1.937034693
## SERINC1 -1.937624191
## TP53BP2 -1.938519892
## THAP9 -1.939549355
## DNAAF4 -1.939601683
## GOLT1B -1.941556317
## PYCR1 -1.941943761
## GET3 -1.942854546
## CARD19 -1.944014256
## C21orf91 -1.945112420
## SERINC3 -1.946106036
## ZNF563 -1.946136552
## IL32 -1.947115567
## GFI1 -1.947124426
## DHX40 -1.947343430
## LMNA -1.947484460
## FGFR1OP2 -1.947775167
## RBMXL1 -1.948021886
## KLHL8 -1.948580662
## IKZF4 -1.949239993
## STAB1 -1.950526901
## VPS37A -1.951190633
## MAB21L3 -1.955154763
## SPIN2B -1.958820282
## PRPF19 -1.962194807
## TBC1D13 -1.962403552
## TSEN54 -1.964705243
## DDX19B -1.966430910
## DNAH1 -1.967496449
## SIRT1 -1.967508578
## OAF -1.970112370
## FAM102B -1.970305904
## TMED4 -1.970983208
## ARID1A -1.973698911
## TMEM154 -1.977809814
## ESCO1 -1.978452972
## ZCWPW1 -1.978941175
## RUFY2 -1.979903650
## DOCK2 -1.980580412
## CD2AP -1.985577542
## ANAPC13 -1.985662321
## GABPA -1.985993950
## IFI16 -1.986185535
## GPN2 -1.986778901
## STAM -1.987228151
## S100A10 -1.988428614
## FBXL4 -1.989613469
## MRPS11 -1.989873899
## HIKESHI -1.990709789
## TMEM147 -1.991205529
## DTX3 -1.992613382
## NRIP1 -1.992626811
## DNAAF5 -1.993775186
## FAM168A -1.997927241
## PNPLA1 -1.998093579
## ABCB10 -1.999354286
## NCOA1 -2.001600656
## ZNF615 -2.002260282
## ZNF451 -2.002446074
## RCHY1 -2.003955318
## TBCEL -2.004199364
## NARF -2.005845110
## METTL14 -2.008814443
## ZBTB20 -2.010189709
## LRP12 -2.010698086
## KDM1B -2.011313703
## NDUFAB1 -2.014690541
## TMEM94 -2.015223258
## SPOPL -2.019064942
## HPS5 -2.020761486
## EXOC7 -2.022521654
## TGS1 -2.022654907
## DIMT1 -2.023597783
## ROCK1 -2.023871711
## LPAR6 -2.024169503
## FHL2 -2.025155623
## RABL3 -2.026350784
## TKT -2.026879359
## TIMM44 -2.027293732
## KRR1 -2.028043271
## LILRB1 -2.028805993
## ADRB2 -2.029689277
## SYTL4 -2.029981685
## ZDHHC13 -2.032657970
## NUS1 -2.033102877
## NIN -2.033889550
## PARD6A -2.034404612
## TENT5A -2.034989644
## JAK2 -2.035444492
## RAD18 -2.036499475
## E2F5 -2.037117620
## ZNF841 -2.038431910
## CEMP1 -2.038461543
## PLCD1 -2.039315293
## REXO5 -2.039534743
## XPO1 -2.041414613
## UBE2T -2.042067320
## CHST7 -2.045755778
## PRPF38B -2.046053174
## IGBP1 -2.046488729
## ZNF799 -2.048175587
## XRCC5 -2.048633240
## ZNF22 -2.049457815
## SMC1A -2.049913338
## LPAR2 -2.050604547
## CUTA -2.051046585
## MTF1 -2.052442877
## CTDP1 -2.054425291
## PNN -2.055332052
## PRDM1 -2.055877093
## SP100 -2.056189589
## PLIN3 -2.056318589
## E2F4 -2.059056741
## CILK1 -2.059726891
## TMEM170B -2.060073867
## CD6 -2.062856558
## SPAG9 -2.063132048
## SNX16 -2.064197952
## SELL -2.064394210
## NEDD9 -2.065494243
## STT3B -2.065837766
## HYAL2 -2.066345460
## SPNS3 -2.066816532
## MEOX1 -2.066846838
## CCL24 -2.067619062
## KIAA1586 -2.067717216
## DCXR -2.068478921
## H2BC15 -2.068863974
## ZNF684 -2.069770126
## ASCC1 -2.071127616
## CAND1 -2.072203535
## MECR -2.072552486
## NWD1 -2.073876759
## C2orf69 -2.075449244
## KRT18 -2.078073938
## GNG7 -2.078114246
## TBCA -2.079078098
## NINJ2 -2.080465581
## DENND1A -2.080940281
## ATAD3A -2.081641782
## VPS53 -2.081900056
## PPP4R2 -2.082752852
## TRAPPC2 -2.086420207
## CNPPD1 -2.089011937
## ZNF333 -2.090428654
## THYN1 -2.090858926
## BEX5 -2.092898464
## SLC38A10 -2.094166644
## FAM83H -2.095533871
## C7orf26 -2.101217214
## FCRLB -2.101522269
## MRPL14 -2.103479584
## SNRNP200 -2.105004820
## PNISR -2.106636751
## RGS18 -2.107322422
## ODC1 -2.108009403
## MTMR9 -2.110485387
## UBE2M -2.111283805
## PDE7A -2.111901584
## FUNDC2 -2.112015808
## ICE1 -2.112429339
## KAT2A -2.113042620
## KAT6A -2.113846817
## SPRTN -2.114122564
## DEF8 -2.115054317
## YIPF6 -2.116685765
## ZNF440 -2.117166298
## IP6K2 -2.120653304
## UQCRC1 -2.122119309
## SLC10A3 -2.124391911
## ZNF74 -2.124819993
## ZNF281 -2.125881518
## SLF1 -2.126128615
## SMPD3 -2.127602736
## HNRNPK -2.128016462
## MRPL46 -2.130669386
## SERTAD1 -2.130848513
## PUM2 -2.131052795
## WWC3 -2.131244189
## FBXO44 -2.132072311
## LARS2 -2.136429734
## RNF168 -2.137699991
## HSD3B7 -2.137912655
## POLR3G -2.139931642
## SUMF2 -2.140062504
## DNAL1 -2.142766704
## TRIAP1 -2.143643872
## HIBCH -2.145498679
## CLCC1 -2.145653454
## MR1 -2.147381662
## ZNF791 -2.147756837
## COA7 -2.149427884
## PLEKHA3 -2.153148084
## ERLIN1 -2.153158716
## P2RX4 -2.153485326
## F12 -2.155305798
## PCDHA4 -2.156231012
## BPNT2 -2.156420270
## SNRPB2 -2.156510234
## LRRC14 -2.156784084
## H1-10 -2.161710259
## RBM12B -2.162461532
## TRAFD1 -2.163457491
## E2F3 -2.167053710
## VWA8 -2.167158387
## ABRACL -2.167745384
## NUDT2 -2.168416853
## RPSAP58 -2.169000635
## ZNRD2 -2.171806195
## SH3BP5L -2.172966790
## VAMP2 -2.172998382
## UBE2E1 -2.173360408
## FAM185A -2.175815126
## TMED2 -2.176129774
## RSBN1 -2.176827267
## RARG -2.177318985
## PLPP3 -2.178151299
## TRIM25 -2.179197700
## SLC19A1 -2.179559025
## ADSS2 -2.180495265
## MYBBP1A -2.181049523
## RAP2C -2.181126014
## TUT4 -2.181909727
## SHLD3 -2.183310618
## ELF2 -2.186635334
## ITPRIPL2 -2.188234161
## EMG1 -2.189722103
## ZNF148 -2.189843672
## TRIM8 -2.189981374
## STAU2 -2.190205991
## TMX4 -2.191768745
## TMEM245 -2.193130939
## VRK3 -2.193796332
## SNAI3 -2.196281148
## ILKAP -2.197529526
## TM7SF2 -2.199741780
## CCDC84 -2.202534321
## TINF2 -2.204233175
## STRBP -2.204268457
## SYNJ1 -2.207948774
## RAD23B -2.209453507
## CBFA2T2 -2.210174126
## BTN2A1 -2.211236420
## STX10 -2.212657861
## MRPL17 -2.212682754
## NCOA7 -2.212773360
## OTUD6B -2.213256619
## PIGW -2.213588139
## SFXN5 -2.213638575
## RUSF1 -2.214471944
## STARD3 -2.214607252
## WDR12 -2.216153168
## SLX4IP -2.216657979
## MAPK3 -2.218577088
## SEMA6B -2.218909038
## HSPD1 -2.219063599
## ITPR2 -2.221061205
## ARPP19 -2.222061256
## DIS3L -2.222512707
## CREB5 -2.222800442
## IGHMBP2 -2.222898426
## TFAM -2.224323356
## BTBD7 -2.225397030
## BFAR -2.226455053
## PEPD -2.229633465
## MYO1F -2.230872068
## SCLY -2.230993470
## DEXI -2.231131971
## BCL2L15 -2.231320362
## LLGL2 -2.231391075
## MED14 -2.232297130
## MARCHF2 -2.232554549
## FKBP4 -2.233555100
## RRP1 -2.234314586
## GTF2E1 -2.235663262
## MAZ -2.238369993
## MON1A -2.238898780
## MAP3K10 -2.239220384
## SAMD9L -2.241174680
## IL27RA -2.241670077
## WAS -2.241900646
## M1AP -2.242109330
## MZT2A -2.244119852
## MC1R -2.244423708
## RP2 -2.244950739
## PI4KB -2.246577778
## TMEM69 -2.250004038
## TAP1 -2.250117771
## NECAP1 -2.253203296
## MAML1 -2.254587020
## ATM -2.258288074
## FTH1 -2.258813828
## LTO1 -2.259742109
## LDLRAD3 -2.259752169
## CHMP7 -2.261087187
## KHDRBS1 -2.261122790
## ZC3H13 -2.261468902
## ZNF623 -2.261687300
## ELK3 -2.262997659
## CAMTA1 -2.263225104
## AMFR -2.264128839
## LRRC27 -2.264345598
## PTPN22 -2.264799864
## TTC19 -2.265826950
## ANKRD13A -2.266595384
## B4GALT1 -2.267049412
## UBASH3A -2.271065900
## NCBP3 -2.271578325
## FKBPL -2.272162807
## ARHGAP18 -2.272965700
## PRPF40B -2.275065059
## PINX1 -2.275738414
## CHRNE -2.275790554
## QSOX1 -2.275906316
## AUP1 -2.276266505
## NUP43 -2.276751810
## ZCCHC14 -2.277913031
## LOC100421372 -2.278028036
## VIM -2.278786159
## BIRC2 -2.278961626
## TIMMDC1 -2.279279895
## MMAB -2.279689192
## CEP170 -2.279782443
## MRPL57 -2.279910190
## SNRPC -2.280024628
## BTBD1 -2.280138952
## HEXD -2.280595036
## TNPO2 -2.281398747
## CBWD2 -2.282435454
## C1orf198 -2.285171158
## CORO2A -2.285425266
## XRRA1 -2.285483770
## KPNB1 -2.286367528
## LMLN -2.288433846
## ATP13A1 -2.288773342
## SPEN -2.289073810
## ZNF526 -2.289174583
## RGS16 -2.289502614
## LCP2 -2.291074271
## FBXO8 -2.291149894
## PIGF -2.292631952
## ELMO3 -2.293136214
## PXMP4 -2.293561637
## CASP7 -2.293930286
## NGRN -2.294359691
## TRAF4 -2.295013990
## ETV3 -2.296792769
## DYNLL1 -2.297076301
## LDOC1 -2.297902880
## SGMS1 -2.298364662
## TMEM138 -2.299077610
## ZNF460 -2.299304433
## MGAT5 -2.299398931
## R3HDM4 -2.301092630
## SLC25A51 -2.302944599
## BRD1 -2.305768895
## PCED1B -2.307888905
## ATG13 -2.308758439
## MRPL33 -2.309272342
## TSEN34 -2.309749694
## SC5D -2.310229451
## ZDHHC21 -2.312397879
## ARMC8 -2.312857081
## HIF1AN -2.317780570
## C6orf89 -2.320840294
## SREK1 -2.321944129
## C15orf61 -2.322179293
## FGFR1 -2.322652494
## RGS3 -2.324881871
## DPYSL2 -2.325669949
## PALB2 -2.326769338
## DHODH -2.326991182
## RC3H1 -2.328874199
## FOXJ2 -2.329335583
## SIAE -2.329923372
## PGAP1 -2.330736362
## CPSF3 -2.332182258
## ZNF76 -2.332819484
## KLF5 -2.333968997
## MYO15B -2.335404837
## PYROXD1 -2.335764885
## TVP23B -2.335945395
## ZNF808 -2.336325793
## MGAT4A -2.337545877
## C1orf109 -2.337818264
## RLF -2.338619512
## SLC39A6 -2.339702630
## ARID5A -2.339821190
## OSBPL7 -2.340243606
## BTBD6 -2.340927152
## NDUFB11 -2.343574957
## GTF2H2 -2.345160042
## ABHD5 -2.346412703
## KDM2A -2.349687780
## EHD4 -2.351187507
## NRG1 -2.352098893
## NBN -2.352186404
## ARMC7 -2.356442967
## ABHD12 -2.356462874
## LAGE3 -2.358492188
## SPSB2 -2.359548283
## IPO9 -2.360915063
## DHRS13 -2.362522111
## RBBP4 -2.362784455
## ARHGAP32 -2.364648193
## DNAJC27 -2.365315789
## SIT1 -2.366736843
## DAD1 -2.368267450
## VPS13C -2.369869991
## HERC4 -2.371411648
## PTPN6 -2.371558018
## TK1 -2.371601230
## TUBB4B -2.373140392
## CLUAP1 -2.373213000
## SCFD2 -2.374310520
## TRIT1 -2.374889705
## S1PR2 -2.375569067
## STAT5A -2.377168368
## CCNT2 -2.378587244
## GUCY1A1 -2.379027317
## POP5 -2.379115980
## THOC2 -2.381701044
## CIAO2B -2.384052330
## MINDY2 -2.384355361
## ACSS2 -2.384662161
## FAM86B1 -2.386967254
## KBTBD2 -2.387795865
## TRIM26 -2.389576500
## MSH2 -2.391357911
## UBL5 -2.394782987
## COX7C -2.395432264
## MRPS12 -2.397538473
## H2BC5 -2.397932210
## ABCE1 -2.398557425
## CEP135 -2.399780537
## CFAP251 -2.400473859
## RCN1 -2.400821944
## TTC33 -2.401857249
## CFDP1 -2.402332466
## ZNF576 -2.402437427
## RNF24 -2.402454634
## NPTN -2.407732970
## ALPK3 -2.408976631
## SNRPN -2.412048621
## PXN -2.412319127
## SND1 -2.413325705
## SCRN3 -2.414719440
## PIK3CG -2.414745026
## SUMO3 -2.416188298
## C12orf4 -2.417196396
## SLC6A16 -2.418145236
## IWS1 -2.418342982
## MTA2 -2.418939250
## ZNF582 -2.422090842
## DDX60 -2.423037220
## MTHFD2 -2.425306311
## ARHGEF6 -2.426766327
## UBQLN1 -2.427154511
## SMU1 -2.428084871
## GCC1 -2.429549999
## GPRC5C -2.430892285
## SPATA33 -2.433125921
## UCK2 -2.433795172
## STAT3 -2.434927507
## HPS1 -2.435887930
## GTF3C3 -2.436031718
## WDR82 -2.436060928
## CHIT1 -2.437177661
## POU5F1 -2.437411773
## SATB1 -2.438300307
## CELF3 -2.440713364
## DHX9 -2.441783012
## NMT2 -2.443850752
## ANKRD28 -2.444586702
## CFLAR -2.446834086
## ECHDC2 -2.447158312
## SKIL -2.449895200
## TAX1BP3 -2.450182692
## NAA15 -2.451158688
## HNRNPAB -2.452115084
## CAPN7 -2.452791566
## ZNF292 -2.452833280
## WIPF1 -2.454702792
## TRAPPC4 -2.455898126
## VDAC3 -2.456090924
## ANKFY1 -2.457575173
## ECHDC1 -2.457885883
## MRPS9 -2.458380530
## TAPT1 -2.458414440
## TMEM44 -2.459764379
## MGAT1 -2.461077044
## HSD17B13 -2.463106043
## AP5B1 -2.463125952
## CEBPZOS -2.463955086
## ZMYM5 -2.468870884
## GUCY1B1 -2.469390848
## CES4A -2.469919105
## PPP1R12B -2.472099218
## ATP10D -2.473126558
## GGT6 -2.473179614
## GTF2H2C_2 -2.473306791
## MOB1B -2.473476482
## FOXP3 -2.474165384
## TPST1 -2.475585941
## KTN1 -2.477422887
## CRIP1 -2.478470774
## CD244 -2.480194221
## INTS2 -2.480820134
## NEXN -2.483537852
## TENT4B -2.484067207
## MAP4K1 -2.484468632
## ZBTB33 -2.484795077
## SLC35E3 -2.486951277
## THG1L -2.488619680
## JARID2 -2.489288992
## ZNHIT3 -2.489610156
## SART3 -2.491476598
## NAXD -2.491748468
## ATP8B4 -2.491953635
## MYO1A -2.492064830
## SNU13 -2.492956526
## VPS33A -2.493385449
## WTIP -2.493809375
## CS -2.494990716
## ZNF395 -2.497280249
## NAE1 -2.499963061
## NR6A1 -2.499970460
## CLIP1 -2.500038327
## PARP4 -2.500866154
## DERL2 -2.501033238
## DNM3 -2.501327591
## BID -2.502022797
## PKN2 -2.502043122
## DSTYK -2.503623248
## C20orf27 -2.504886324
## MRPS21 -2.505615780
## SMN1 -2.506606427
## ZNF197 -2.506669267
## NFKBIB -2.508987116
## SECISBP2L -2.509973641
## PTGS1 -2.511023597
## ZBED4 -2.511180983
## VEZF1 -2.512325089
## CEP120 -2.512818973
## SEC24B -2.512870589
## LSS -2.514381028
## FLII -2.514472950
## FAM71F2 -2.514574022
## SLC35E4 -2.515079083
## ESF1 -2.515900292
## CSNK1A1 -2.516130496
## C11orf68 -2.516349748
## TST -2.517059416
## SLC23A2 -2.517309557
## TBCK -2.517508442
## FANCG -2.517681887
## B3GNT2 -2.519629700
## SHMT1 -2.521398879
## EIF5A -2.523312270
## CDK16 -2.528955505
## PEF1 -2.529769430
## RNF31 -2.530330713
## MAPRE2 -2.530751234
## UNC50 -2.531173558
## MTERF2 -2.531889438
## FAM20B -2.532961744
## SREBF2 -2.534674775
## AP3D1 -2.536272499
## PHPT1 -2.539132103
## NUP107 -2.539892765
## RTEL1 -2.540103882
## SARNP -2.541340012
## IFITM2 -2.541480576
## IFIT5 -2.541720826
## NLRX1 -2.541841367
## SMARCA4 -2.543011248
## PIF1 -2.544262529
## PIK3R5 -2.544735332
## SMARCC2 -2.545634603
## ESYT1 -2.546244775
## MTG1 -2.547010615
## TMEM42 -2.547022817
## PHKB -2.547194157
## C6orf120 -2.547799937
## CD24 -2.547940410
## MAT2A -2.550025093
## ABTB1 -2.550116795
## SIRPG -2.551495834
## RAD51D -2.551914947
## FNIP1 -2.553517300
## PARK7 -2.554308890
## HLA-DRA -2.555030634
## UNC93B1 -2.555298542
## SSR2 -2.555381434
## MCM3 -2.555527371
## NGLY1 -2.555878592
## TCF4 -2.556744835
## SRSF9 -2.557380394
## GPRIN1 -2.560765373
## TUT7 -2.560874089
## BLVRB -2.561812191
## MLYCD -2.561840980
## OSBPL9 -2.561910838
## BOLA2B -2.562353553
## ENPP4 -2.562415286
## DEDD2 -2.562683511
## FAAP24 -2.564673314
## TRIM3 -2.567419926
## NBPF3 -2.567586681
## CD46 -2.568288179
## ZNF416 -2.568488374
## NLGN3 -2.569068202
## CCDC65 -2.569736128
## NT5DC3 -2.570540970
## GALNT12 -2.571807160
## IVNS1ABP -2.572492172
## MTX1 -2.574931761
## COPZ1 -2.575906334
## PTP4A1 -2.578183638
## HNRNPM -2.579236249
## CPSF4 -2.579720453
## C1orf162 -2.580129319
## PPM1A -2.580163118
## ARV1 -2.580894643
## DUSP23 -2.582299666
## SOX12 -2.584857202
## PASK -2.585144447
## FHL1 -2.585676110
## MTURN -2.585957300
## DNAJC19 -2.585995325
## ME2 -2.586300567
## ABHD4 -2.587434476
## MIEF1 -2.587461723
## TRDMT1 -2.587978191
## PRKCE -2.588574482
## RAB11A -2.591397569
## SNRPB -2.591401566
## CD1C -2.591623484
## NAT14 -2.592038961
## VOPP1 -2.593569586
## CHD1 -2.597437640
## GPR108 -2.597455595
## PLEKHF1 -2.601795989
## NUDT21 -2.601856210
## CAMK2G -2.601991879
## SLC12A6 -2.602791932
## INTS13 -2.603134746
## SCOC -2.604241027
## NPLOC4 -2.606170223
## ARID4A -2.606562664
## SEC24D -2.607345152
## RSKR -2.608115709
## PLXNA3 -2.608818577
## POLG2 -2.609189765
## TCEANC2 -2.610277427
## BRD3OS -2.610313493
## DPH1 -2.610434452
## SLC9A6 -2.610550013
## STYXL1 -2.611595281
## ITGB3 -2.611935035
## GNA13 -2.612459463
## PRDX5 -2.612511712
## MOB2 -2.612867822
## SPTLC1 -2.613213492
## USP38 -2.613273688
## CATSPERG -2.614142230
## EPRS1 -2.615147701
## TLCD4 -2.616392264
## TOM1 -2.617492962
## ZPR1 -2.617956402
## ABI1 -2.618067464
## WHAMM -2.618208051
## MYH10 -2.619441467
## C22orf34 -2.619565745
## HAUS6 -2.619986149
## CD22 -2.621065949
## DLAT -2.621147028
## CBX5 -2.621363183
## PDRG1 -2.621782374
## AFTPH -2.622260483
## CCDC82 -2.622665089
## SHISAL2A -2.623471739
## MIS18BP1 -2.624916669
## GAN -2.625350547
## RAB8B -2.625762338
## TDRD7 -2.625999622
## CSPP1 -2.626047863
## MEX3C -2.627067551
## KPNA5 -2.627201946
## PFDN6 -2.629089275
## ANKRD40 -2.631969225
## HEATR1 -2.632374060
## MICAL1 -2.635863900
## TMEM123 -2.636267765
## MCTP1 -2.636433866
## RALGAPA2 -2.637964849
## HSD17B4 -2.638315249
## NAV1 -2.638374284
## DDX6 -2.638562044
## TMX3 -2.638645332
## ATRAID -2.639437899
## SCN9A -2.641879309
## CPLANE2 -2.642802351
## TMEM241 -2.644872030
## PPARA -2.646170881
## ZDHHC19 -2.647469485
## UGDH -2.647805514
## TNKS -2.649372860
## PAFAH1B1 -2.652450147
## NPFF -2.654513815
## CYB5D1 -2.655052164
## FRY -2.655409028
## CRYM -2.656905819
## ARMH1 -2.657133117
## PPM1B -2.658183186
## LIPT2 -2.658401029
## ZNF223 -2.658647553
## FUT4 -2.660051713
## BORA -2.660823389
## HBP1 -2.660863432
## MAP3K5 -2.662042342
## PKP4 -2.662853701
## AKAP9 -2.663515657
## GPBP1L1 -2.663719187
## PLAAT4 -2.665091633
## CDYL -2.666435422
## VPS36 -2.667622076
## KDM4B -2.668530700
## EXOC8 -2.668787226
## ZSCAN9 -2.671130184
## TSPYL4 -2.671491712
## COL18A1 -2.671576935
## TOMM20 -2.673914201
## OSBPL11 -2.675087408
## TESK2 -2.678139121
## CALCOCO2 -2.678645497
## FAM126B -2.680358089
## CCNK -2.680650077
## STRN -2.680796491
## FUZ -2.680799524
## KIAA0319L -2.680907367
## BBOF1 -2.681431583
## RBIS -2.686217952
## ALDH18A1 -2.687562015
## BUD13 -2.688156120
## CENPX -2.690230884
## TAP2 -2.692553172
## ATP1A1 -2.692634293
## DDHD1 -2.693364108
## ERO1B -2.694889689
## SLFN14 -2.696015101
## ENTPD5 -2.696158924
## CUL2 -2.697347644
## KCNK5 -2.699019569
## STK40 -2.699893366
## KAZN -2.699996480
## BTBD3 -2.700889625
## RCL1 -2.701318676
## SEC23A -2.702262069
## CREBBP -2.704461762
## ZNF835 -2.704990923
## GRK5 -2.706718926
## PPP2R5A -2.707591184
## NPAT -2.707710612
## RBBP9 -2.709696604
## ARHGEF19 -2.710747913
## MTRNR2L10 -2.711886700
## BPI -2.713498300
## KCTD13 -2.713834397
## RHOBTB2 -2.713914008
## SMAD4 -2.714044792
## RASA2 -2.714529490
## EXOSC4 -2.715510117
## TIMM50 -2.715808737
## CCDC138 -2.715869221
## VPS26C -2.717056366
## SERTAD3 -2.718463334
## SH3BP2 -2.719293893
## ZNF638 -2.719457417
## ZC3HAV1 -2.719922098
## RBM25 -2.721575062
## OXCT1 -2.721839323
## AZI2 -2.723140012
## HLA-DQA1 -2.723577465
## GPANK1 -2.724726589
## IPO7 -2.725089984
## ZNF850 -2.726150567
## SLC26A2 -2.728041090
## C1orf50 -2.728341593
## TAPBPL -2.729975033
## PARD3 -2.730297029
## OMG -2.731259592
## CCDC15 -2.733243281
## PDAP1 -2.734571920
## CRLF3 -2.735089444
## ELOVL3 -2.736451350
## PPIE -2.737365175
## DGKH -2.739026951
## NPEPPS -2.740032628
## RMND5A -2.742475333
## ZNF611 -2.743631111
## CASR -2.744328374
## KCTD20 -2.744736785
## PPM1H -2.744902741
## BAIAP2 -2.745596259
## NEGR1 -2.747780157
## SLC46A2 -2.748270904
## DGLUCY -2.748347391
## LRRCC1 -2.748580206
## NSMCE3 -2.748956140
## ZMAT3 -2.749769983
## IFI27L1 -2.751689045
## TSPAN2 -2.751740663
## PAPLN -2.752266269
## EFCAB12 -2.753502659
## GEMIN8 -2.754732403
## BICDL1 -2.755469052
## ARRB2 -2.756310479
## CARMIL1 -2.756633385
## FAM120A -2.756681429
## SH2D2A -2.756849538
## AMN1 -2.756850316
## GAPDH -2.757613044
## PDPK1 -2.758513421
## ZNF468 -2.758607473
## VPS54 -2.758695751
## USP9X -2.760959355
## GOPC -2.761458620
## STAU1 -2.761927966
## ASB6 -2.762352621
## GCLC -2.762834412
## LRRC75A -2.763136287
## GCSH -2.763260961
## MRPL12 -2.763817721
## RABL2A -2.764500321
## AMMECR1 -2.766368898
## NOP9 -2.768365439
## POLR2C -2.768787117
## ZNF100 -2.770793820
## GALE -2.771567052
## ARL14EP -2.772358599
## COPS6 -2.773213547
## PIP4P2 -2.773221632
## VPS45 -2.773403103
## MRPS26 -2.774915726
## ZNF652 -2.776656895
## ZNF329 -2.777050881
## ENDOD1 -2.777301034
## ZFAND5 -2.778250316
## PTTG1 -2.778485164
## ABCG1 -2.778882176
## RNF145 -2.780001506
## RRAGD -2.780834578
## SCAF4 -2.780876930
## NUDT18 -2.781039356
## ZNF213 -2.781528893
## DVL3 -2.781691563
## SLC15A2 -2.782438569
## SEL1L3 -2.783090273
## ZRANB3 -2.783657521
## FKBP9 -2.786789256
## ZER1 -2.788131696
## PRRT4 -2.788450489
## NSUN2 -2.788906919
## SCAF8 -2.789585658
## ALPL -2.790816417
## SPC24 -2.792046263
## PHF2 -2.793148740
## ZNF280C -2.793791917
## BBS7 -2.795325385
## DPH3P1 -2.795445802
## SLCO4C1 -2.797208149
## PWWP3A -2.797883363
## ATP6V0A2 -2.799636318
## TMEM80 -2.800176336
## MB21D2 -2.801597677
## FBXW8 -2.804631791
## CYSTM1 -2.804871947
## MBD5 -2.805868860
## PICK1 -2.807207965
## SLC25A38 -2.809713847
## TRANK1 -2.811203233
## TMEM120B -2.814007546
## KRTCAP3 -2.814277249
## PRKAB2 -2.815832349
## LIAS -2.817141998
## DBI -2.817645116
## DDX60L -2.818034987
## CD8B -2.821217837
## VPS9D1 -2.822953754
## YLPM1 -2.823158707
## TRMT112 -2.823384634
## TRAF3IP3 -2.823921557
## STAG2 -2.825031696
## FAM189B -2.825180938
## ORC4 -2.825374415
## TACSTD2 -2.826707756
## MS4A3 -2.826862951
## DOP1A -2.827868885
## PYCR3 -2.828300268
## EPHB1 -2.829095076
## NBPF1 -2.830325346
## TCF7 -2.830374257
## PTAFR -2.830820580
## TANK -2.831329864
## SEMA4D -2.833331144
## IRF5 -2.833406301
## ZDHHC14 -2.833423013
## VSIG10 -2.835285341
## JDP2 -2.835725602
## NOP16 -2.835804280
## NOTCH2 -2.836990964
## KIF27 -2.838909006
## ECI2 -2.839976190
## CHST2 -2.840437886
## PSPH -2.840889494
## RINT1 -2.840997466
## DUSP13 -2.842730191
## MIGA1 -2.842790124
## TAGAP -2.843890239
## ISOC1 -2.846789045
## CHMP5 -2.846940005
## EXOSC1 -2.847544411
## COA1 -2.848903292
## FNBP4 -2.849232795
## MLLT11 -2.849490128
## SPTLC2 -2.849903065
## PPM1K -2.849948370
## TRMT10A -2.851107335
## GOLPH3L -2.852387150
## HMGB2 -2.855812847
## H3C6 -2.856156363
## TMEM218 -2.856528846
## PRTFDC1 -2.857273588
## UACA -2.858240866
## NT5C3A -2.858338012
## OAS1 -2.858351386
## FAM160B1 -2.859463036
## NDUFAF7 -2.860197282
## BEND5 -2.861350840
## POLR2J2 -2.862431534
## WDR77 -2.864209500
## RBMS1 -2.865231020
## COX18 -2.865624441
## ZNF397 -2.865641008
## C8orf58 -2.865927370
## TAF1D -2.866090014
## TMEM243 -2.868733657
## LAMTOR1 -2.870136623
## CST7 -2.870269659
## SACM1L -2.872109496
## P3H4 -2.872312468
## MITF -2.872359570
## JUN -2.872608151
## PORCN -2.872902058
## FCHO2 -2.873883249
## SIRT5 -2.874062082
## PEX11B -2.874424699
## FLT1 -2.875501144
## ZNF24 -2.875937746
## TSPAN33 -2.876077075
## KCTD18 -2.877485476
## DTNBP1 -2.877605705
## SIPA1L1 -2.878826168
## MLH1 -2.879659315
## IFI27L2 -2.880678263
## FN3KRP -2.880721195
## SUGP2 -2.880964153
## RAB21 -2.881236481
## PIK3CA -2.882447030
## MRPS18A -2.884179626
## SNX1 -2.884807694
## H2BC12 -2.890143037
## DRAM2 -2.892061837
## CBX6 -2.893214192
## NUDCD1 -2.893432938
## RAB39B -2.894001508
## CENPQ -2.894655476
## CTDSP2 -2.896149334
## FCGR3A -2.898656323
## PXYLP1 -2.902356589
## GOLGA8N -2.902610633
## KIAA0319 -2.902792650
## ACVR2A -2.903859048
## FAM104B -2.904387417
## CENPC -2.906833325
## THAP6 -2.910722624
## HSD17B7 -2.913165879
## CABLES2 -2.913789337
## IFIH1 -2.914635953
## JAK1 -2.915715057
## ASB1 -2.915766589
## TREX1 -2.916004425
## PRPSAP1 -2.917008008
## NUP93 -2.917907770
## PRMT9 -2.921553709
## THOC5 -2.922676827
## ROMO1 -2.924235314
## CANX -2.924948578
## TRIM38 -2.925180731
## TARDBP -2.927458332
## CDKN2AIP -2.928053945
## UBFD1 -2.930070593
## AK4 -2.930613275
## ABI2 -2.931469831
## TEF -2.932696908
## CNOT3 -2.932730490
## NUP85 -2.933165327
## NRROS -2.934520516
## ARG2 -2.935242585
## MANSC1 -2.937758229
## USP47 -2.938003223
## GALM -2.938501746
## SLC22A1 -2.939413513
## CTDSPL -2.940089280
## RNASE1 -2.940611234
## NCF4 -2.941417419
## FAM193A -2.941792984
## TPP1 -2.942501467
## MFSD14B -2.943673772
## ECPAS -2.944928327
## TMED8 -2.944952492
## TCEAL4 -2.945162214
## MTERF4 -2.945871686
## FBN2 -2.947607664
## B4GALNT2 -2.949026286
## FUT10 -2.950430096
## RAPGEF2 -2.950752734
## ACTR8 -2.957099775
## CTSC -2.957462108
## ZNF425 -2.957648858
## ZSCAN12 -2.958111678
## COX8A -2.958339930
## MAN1C1 -2.958650931
## ATP5F1E -2.961924536
## SMURF1 -2.963020849
## ZNF888 -2.965533041
## TXNIP -2.965629823
## DPM2 -2.967246889
## CDC23 -2.967747608
## TMEM160 -2.968468579
## YWHAG -2.968619534
## FFAR3 -2.969471589
## SLC6A6 -2.971170147
## TRNT1 -2.971265814
## LTK -2.971460272
## ACAD9 -2.973670082
## CSNK1G3 -2.973776390
## COIL -2.975998073
## MPP7 -2.976102347
## GATB -2.976111087
## SRPK2 -2.976403507
## CRELD1 -2.976821342
## STBD1 -2.977465916
## MAP2K3 -2.981763872
## MRPS17 -2.981767816
## EZH1 -2.982205699
## STAG1 -2.982309046
## RTN2 -2.982482052
## RIOK3 -2.983279732
## XBP1 -2.983612329
## ATP6V1A -2.984030701
## ZNF619 -2.984536756
## FCGR3B -2.984703434
## PDE2A -2.984979256
## CCDC47 -2.985308701
## DUS2 -2.988899255
## HEXIM1 -2.991669784
## SOS2 -2.992067981
## MSRA -2.992621102
## POLD1 -2.994550692
## LTF -2.995077363
## IKZF1 -2.996223084
## FBXL19 -2.997008697
## NFIL3 -2.997481727
## KIF13B -3.000614333
## IL1R1 -3.001114965
## NAT1 -3.001127003
## EBPL -3.001253951
## MRPS28 -3.001704072
## NPC2 -3.001821793
## AASS -3.003740785
## BAG3 -3.004383306
## GFOD1 -3.005172006
## APPL2 -3.006886840
## HACD3 -3.007473570
## DCP1A -3.009024794
## ERMARD -3.011040302
## CREB3 -3.012368650
## PET117 -3.012642740
## C1QA -3.012958924
## SETD1A -3.013121650
## ZNF620 -3.014824678
## APPL1 -3.014949193
## PSRC1 -3.015746543
## ACAA2 -3.015821141
## CLPTM1 -3.015995119
## CWC22 -3.016016887
## ZFP41 -3.016317444
## RFXAP -3.017089678
## TIMM8B -3.018393818
## UGT8 -3.018543548
## IARS2 -3.018684626
## COL8A2 -3.019217066
## NFS1 -3.020550286
## TNKS1BP1 -3.021139860
## DARS1 -3.021526124
## SLC25A19 -3.023390777
## ZNF445 -3.024404728
## PHB -3.024629688
## NIFK -3.024799486
## MIDEAS -3.025434952
## NEK8 -3.025546641
## KRAS -3.026874164
## GABBR1 -3.026962505
## FBXL3 -3.027397971
## SLFN5 -3.028300934
## PEX1 -3.028363755
## MOGS -3.029298824
## ZNF787 -3.029513415
## MAP4K4 -3.029918539
## MRPS5 -3.030075979
## TRABD2A -3.031151858
## PSMD11 -3.031556018
## TAFA2 -3.032577651
## JMJD1C -3.032984768
## KLHDC10 -3.033856134
## EIF5 -3.033977468
## INTS10 -3.034292825
## ELK4 -3.035679522
## HERPUD2 -3.038299323
## HAUS5 -3.038608903
## MACIR -3.039984514
## MSN -3.041438162
## PARP15 -3.042550499
## ELP6 -3.042896710
## EVA1B -3.043624316
## HMG20A -3.046118546
## PPP1R8 -3.046571024
## PLAG1 -3.049430824
## BCOR -3.049755985
## ZNF846 -3.050488099
## LHX4 -3.051397340
## TIGD3 -3.051445946
## UPK3BL1 -3.051505789
## RALGDS -3.051932890
## KNSTRN -3.053248251
## SLC9A8 -3.055433915
## TOMM40 -3.055479887
## PHTF2 -3.057360786
## CISH -3.058556013
## AKIRIN1 -3.059931797
## MAPK1IP1L -3.060297404
## MYNN -3.060322364
## MMP19 -3.060393725
## GET1 -3.061062145
## AMIGO3 -3.061104465
## TECR -3.061276051
## ZMPSTE24 -3.062031113
## KLHL18 -3.063395685
## TM9SF3 -3.064495133
## ACTR1B -3.065743584
## AGPAT5 -3.066882180
## ADCY7 -3.067794104
## GOLGA6L4 -3.068157514
## KIF1B -3.069302694
## GRAMD2B -3.069478807
## STAM2 -3.069634257
## CA13 -3.069751468
## SCML2 -3.069817613
## MRPS6 -3.071141468
## ZEB2 -3.075297444
## ZSCAN30 -3.076281571
## RAD23A -3.076598463
## SPCS3 -3.078237497
## ADAP2 -3.078736826
## DHRS11 -3.079989591
## ITM2C -3.080729200
## IKBKE -3.081171993
## AMDHD1 -3.082034450
## MTM1 -3.082492810
## RNF144A -3.083568026
## FBXO10 -3.084978776
## KHNYN -3.086079398
## TP53RK -3.086307936
## TMIGD2 -3.086690634
## KLHL28 -3.086811494
## RPUSD2 -3.087932522
## DHFR2 -3.088067251
## NSUN3 -3.088962914
## ATG16L1 -3.088997214
## ZNF770 -3.089502617
## RAB14 -3.090233502
## MRPL48 -3.092062056
## CPVL -3.092884045
## MAP1A -3.095237999
## SEM1 -3.095333703
## QSER1 -3.097902467
## SUGT1 -3.100491203
## PDLIM5 -3.100709398
## TEC -3.102168070
## CEMIP2 -3.102930885
## YTHDF3 -3.103698389
## PGPEP1 -3.107970795
## KIAA0040 -3.110905610
## AK5 -3.111514625
## SNUPN -3.112262268
## RBL1 -3.113333055
## KATNA1 -3.116605672
## NREP -3.117944695
## ATP8B3 -3.119665558
## NSRP1 -3.120269481
## RUFY1 -3.120691904
## PLEKHA2 -3.121249096
## MAD2L1BP -3.122974334
## LIPT1 -3.123130512
## TXNL1 -3.125599256
## ZNF224 -3.126180164
## CREB1 -3.126524212
## VAMP7 -3.127511085
## RMI1 -3.127715654
## ENDOG -3.127779771
## RAB11FIP1 -3.128274219
## PDE3A -3.129667093
## OSTM1 -3.130079319
## AGAP5 -3.130271086
## POLK -3.130808542
## KLHL11 -3.131088779
## TOR1B -3.132121593
## C9orf72 -3.132374400
## SRRM1 -3.134927619
## GPATCH11 -3.136088704
## FLT3 -3.137362668
## PDCD2 -3.137459583
## ACTR5 -3.137460306
## PLCL2 -3.137835903
## MYLIP -3.138249727
## NEO1 -3.138668934
## GEMIN7 -3.138884292
## YPEL1 -3.139683733
## TRAP1 -3.141582221
## GPX3 -3.142466474
## MSL1 -3.143426821
## HNRNPR -3.144446270
## ASCC3 -3.144970946
## ANGEL2 -3.146082216
## LRP6 -3.146422617
## SLIT1 -3.147599270
## CMPK2 -3.148143299
## CEP19 -3.149343035
## DNAJC18 -3.151363435
## DCTN4 -3.151387575
## CLIC1 -3.153586387
## GABRR2 -3.153900427
## ING5 -3.155837575
## OR1F1 -3.156565851
## OSBPL8 -3.157752146
## GID4 -3.160637482
## JADE1 -3.161585540
## NDUFA2 -3.161940130
## RBM44 -3.163472863
## RPAIN -3.164053812
## USP15 -3.164755960
## WWC2 -3.165680451
## LGALSL -3.169215375
## FANCE -3.171009698
## MCF2L -3.171032965
## ALG3 -3.171083300
## NCF1 -3.171105032
## VAPB -3.171594084
## COX14 -3.172240914
## IL17RC -3.172253449
## TNFRSF10C -3.172266437
## DR1 -3.173101899
## CHPT1 -3.173477078
## VDAC2 -3.173731272
## FLI1 -3.174779379
## LMOD3 -3.176819336
## SNX22 -3.177117743
## PET100 -3.177601314
## PRR5 -3.178525913
## C12orf73 -3.178590031
## PARP3 -3.180013720
## POLR3B -3.181082582
## ATP6AP1 -3.181825438
## ZNF143 -3.182797979
## PHF1 -3.183132375
## GABPB1 -3.183877585
## HAX1 -3.184941488
## TRIM59 -3.184961317
## EIF4G2 -3.185227562
## NEMP2 -3.185490603
## PBXIP1 -3.186779104
## CACYBP -3.187190557
## GPAM -3.187794098
## BAP1 -3.188677449
## DCAF6 -3.189164559
## TLR10 -3.190710021
## GSE1 -3.193440613
## C8orf33 -3.193669917
## DNM1L -3.194102635
## TIRAP -3.194707660
## AGO1 -3.195868160
## SSPN -3.196146943
## GALNT2 -3.196604180
## TMEM208 -3.197384556
## KDM5C -3.197408464
## LILRB5 -3.201422297
## RNASE2 -3.201993349
## TTC27 -3.203972785
## STAT2 -3.205565456
## EXOC2 -3.205810727
## ACVRL1 -3.206267192
## RAD50 -3.207716857
## TMCC3 -3.210145180
## RNF114 -3.210623265
## MUSTN1 -3.211349711
## ARL17B -3.212711684
## MST1L -3.213488518
## ADPRS -3.213793329
## SLC25A26 -3.213993871
## VKORC1 -3.217666773
## SNAPC5 -3.219374805
## RALGPS1 -3.219670094
## FAM3C -3.221128366
## CCNB1IP1 -3.223186136
## LIN37 -3.224925036
## SERPINE1 -3.225123465
## C21orf62 -3.225882652
## CDKN3 -3.228055699
## PRR11 -3.228105971
## NDUFA1 -3.228221968
## SH2D4A -3.229046938
## LOC100133315 -3.232436744
## HINT2 -3.232688281
## SMAP1 -3.233274519
## COX6A1 -3.233506778
## MINK1 -3.236791161
## RIC8A -3.238353870
## SSC4D -3.238487597
## LRRC40 -3.239834442
## DDX46 -3.242124960
## TAF1C -3.243385238
## CPNE1 -3.243477725
## TSPAN32 -3.245467021
## ACOT11 -3.245578149
## XAF1 -3.245807197
## COX6C -3.246049739
## CAPN1 -3.247954581
## RNF181 -3.249049749
## LRFN1 -3.249374120
## MDN1 -3.249475664
## CLEC5A -3.251051062
## CEP57 -3.252194477
## OPLAH -3.252296751
## RBM3 -3.252477628
## SMARCAD1 -3.252495406
## GSTM4 -3.254615247
## C9orf139 -3.256005678
## IFI27 -3.256250742
## BRAP -3.256396869
## PRMT2 -3.256644683
## TAOK3 -3.261795635
## UFL1 -3.262544164
## BTG3 -3.262672486
## RRP12 -3.264708014
## TMEM252 -3.265135005
## RANBP2 -3.265946794
## MRPS24 -3.266140560
## TOMM5 -3.266222748
## NPIPB5 -3.266236717
## PEX19 -3.270086309
## SASH3 -3.271052091
## CENPO -3.272165992
## STK38 -3.273625523
## CENPS -3.274203668
## CDCA7L -3.274959579
## TRMT13 -3.275236050
## ZFYVE21 -3.275569548
## FOCAD -3.275984716
## KRIT1 -3.276620491
## PLIN5 -3.278367163
## EXTL2 -3.278370436
## INO80C -3.278954762
## TRIM68 -3.279124011
## SLC25A20 -3.279177943
## ESD -3.279733632
## C2orf49 -3.280226995
## RAB11FIP3 -3.281514057
## SPCS1 -3.282034969
## ZP3 -3.282307948
## MFSD6 -3.284450277
## FARP1 -3.284807962
## PSME3 -3.286722656
## KLHL6 -3.286749019
## MRTO4 -3.288123239
## SUPT5H -3.288235476
## MRGBP -3.288390235
## ARFIP2 -3.288596995
## ZNF19 -3.288674045
## CRCP -3.291706688
## ZFR -3.291753786
## GOLPH3 -3.293579410
## DOCK4 -3.293650619
## CDS2 -3.293819162
## EMC8 -3.295457260
## TMEM86A -3.295890366
## RNGTT -3.300786029
## FAM120AOS -3.301572969
## ATXN2 -3.301828264
## TMEM35B -3.302633523
## DDX58 -3.302891036
## GPR27 -3.303154533
## IRF2 -3.303445588
## ODF2L -3.303930651
## RTN1 -3.304049507
## GPR68 -3.304879449
## RASSF1 -3.304991840
## INO80 -3.305124055
## MCUB -3.305217333
## MTREX -3.305986973
## CHD3 -3.306225772
## CBFB -3.307245552
## ISCA2 -3.307744308
## CDK3 -3.308578710
## CYTIP -3.308813509
## TCN1 -3.308864835
## ATP9B -3.308865084
## CLDND1 -3.310996347
## RAB33B -3.311035202
## RPS6KA1 -3.311396968
## STEAP4 -3.311460400
## ZNF480 -3.312080333
## PRKD2 -3.312466091
## NLRC5 -3.312652893
## UGCG -3.313576432
## RASSF2 -3.314549197
## VASH1 -3.317832225
## TMEM159 -3.318168846
## ZBTB39 -3.319007093
## EFNA4 -3.320212669
## AHSA1 -3.321252341
## NOP14 -3.321825892
## TXLNG -3.323823957
## GP9 -3.323830953
## ATXN7L3B -3.325871345
## FNIP2 -3.326958325
## CPD -3.327339126
## BTRC -3.328266822
## RIPOR2 -3.328939588
## CAMLG -3.334650199
## TANC2 -3.335832568
## PYCR2 -3.335902062
## GIT2 -3.336463707
## MALSU1 -3.337205664
## ADGRL1 -3.337228568
## NCBP1 -3.337863691
## TNRC18 -3.340207832
## GOLGA8H -3.341073728
## RASGRP4 -3.342357597
## BET1L -3.342861137
## FBXO38 -3.343567944
## UFSP1 -3.343780806
## CHMP1B -3.343968178
## PCGF1 -3.345129638
## STXBP3 -3.345950398
## RBM15 -3.347618623
## TMPO -3.347671468
## LRRN2 -3.348397834
## TPR -3.348845668
## PDS5B -3.348919835
## GPD1L -3.349503661
## PIGZ -3.350178270
## MAP2K7 -3.350484783
## SLBP -3.351116955
## ZSWIM6 -3.351773732
## INTS12 -3.353166925
## GRWD1 -3.353329351
## GPR82 -3.354464150
## C7orf31 -3.354843364
## CRAMP1 -3.355479793
## OCIAD2 -3.357008060
## IFT27 -3.357170650
## CPNE8 -3.358296346
## LMTK2 -3.358347260
## PCYOX1 -3.358989788
## CSE1L -3.359267190
## WDR20 -3.360843778
## SYCP2 -3.361103216
## DENR -3.361248924
## CUL4A -3.363656957
## NDST1 -3.364607015
## HABP4 -3.365255497
## MGA -3.366618258
## RNF111 -3.367043824
## BCS1L -3.367250927
## MARCHF5 -3.367726819
## PSMD3 -3.367831628
## EPHX2 -3.368418032
## VRK1 -3.370255272
## JTB -3.371813910
## TJP2 -3.373124742
## ETFBKMT -3.375313435
## TRUB1 -3.375779648
## DPYD -3.376326078
## WAPL -3.376455556
## TMEM209 -3.377290352
## DENND5A -3.377760309
## IFI44 -3.377830054
## ANKRD6 -3.378983991
## B3GLCT -3.380183511
## B2M -3.380355616
## NIPAL3 -3.380364756
## FAM124B -3.380755420
## INTS6L -3.380951037
## LRP1 -3.381027938
## CCND2 -3.381832700
## WDR36 -3.384117475
## STARD7 -3.386256421
## COLEC12 -3.388311616
## SSH2 -3.388314416
## ARHGEF18 -3.389032605
## PICALM -3.389726014
## PUS7 -3.390286637
## GLIPR1L2 -3.391794715
## SUCLA2 -3.391920989
## EFTUD2 -3.393756854
## MIA2 -3.393954508
## MRPS35 -3.394788662
## SH3BGRL2 -3.395161005
## SVIL -3.395526882
## ALMS1 -3.397035951
## SLC15A4 -3.398708895
## TNFRSF10A -3.398804242
## NRF1 -3.400895886
## TBPL1 -3.401189638
## ARMCX3 -3.401684993
## KCNE1 -3.404435712
## NRL -3.404716638
## FUT11 -3.406011722
## HIVEP1 -3.406857095
## PELI1 -3.408065160
## IGFBP2 -3.408182848
## RBFA -3.408318899
## IFRD2 -3.408850211
## PLXDC2 -3.409616960
## HARS1 -3.412193675
## ELAC1 -3.414272404
## WDR6 -3.415399883
## ZFYVE16 -3.417543097
## CHID1 -3.418130996
## NHSL2 -3.418133194
## ZNF697 -3.418759780
## LAMTOR4 -3.418929616
## ABITRAM -3.419741387
## TCERG1 -3.419887605
## CCT3 -3.420737557
## SMARCAL1 -3.422857319
## ZKSCAN8 -3.423135049
## MRPL19 -3.425019384
## MOB1A -3.425270239
## YIPF3 -3.425981645
## TOP1MT -3.427226392
## MPP6 -3.427629201
## RNF40 -3.429270626
## ACO1 -3.433040014
## OAS2 -3.433049933
## NCR3 -3.434019225
## MIDN -3.434680752
## DTWD2 -3.435554554
## PIK3AP1 -3.436375692
## ABHD13 -3.438089985
## HMGB3 -3.438667448
## HDHD2 -3.438893124
## CHCHD1 -3.439355391
## SLC30A5 -3.442655695
## NAA30 -3.443337419
## ZNF287 -3.443605130
## GBP3 -3.444225498
## PFN2 -3.444799733
## ZNF106 -3.445374988
## MSI2 -3.445908555
## NSG1 -3.447691984
## FKBP3 -3.447707113
## RPN1 -3.447721879
## CC2D2B -3.448585211
## GCM1 -3.448833915
## UROS -3.448886021
## C11orf1 -3.449848412
## CACNA1I -3.450531228
## MPO -3.450653668
## IL18R1 -3.452182869
## PSTK -3.452676079
## ATRIP -3.452781388
## PHF14 -3.453356772
## MMP25 -3.454703972
## IFIT2 -3.455013326
## ARF4 -3.455644651
## GTF2H3 -3.456609615
## VMA21 -3.458402145
## PPP1R12A -3.459054197
## THSD1 -3.459178433
## LRRC59 -3.460334058
## ZNF506 -3.460851249
## GBP4 -3.460958508
## SULT1A3 -3.461535631
## IGSF6 -3.462581107
## PLEK -3.462633274
## CMC2 -3.463571777
## COPS7B -3.464105054
## MFSD11 -3.464216016
## SAMD4B -3.464953365
## ZNF211 -3.466245310
## TRNAU1AP -3.466813671
## CUL1 -3.467201002
## DDB2 -3.467617357
## MSMO1 -3.467900313
## ATP6V0A1 -3.468061640
## PSD3 -3.468508241
## ZC3H15 -3.469024961
## CDR2 -3.469259165
## GBE1 -3.469274821
## HDAC5 -3.469741182
## RAB11FIP4 -3.469911956
## ZNF135 -3.471273448
## ARHGAP15 -3.474865189
## PIM2 -3.475816920
## ZNF200 -3.476001374
## MAN2C1 -3.476353128
## SMIM8 -3.477672102
## PBX3 -3.478196415
## CHSY1 -3.478706370
## ALS2 -3.479418368
## NTNG2 -3.479980771
## SLC24A3 -3.482144507
## P2RY12 -3.484883245
## ZNF346 -3.485256619
## ATG7 -3.487522204
## NPRL3 -3.487666746
## DIS3 -3.488444787
## NUDT13 -3.488445012
## TMED3 -3.488910825
## KATNIP -3.489083391
## CDIN1 -3.489102232
## MARK3 -3.489632985
## VASP -3.490187031
## AASDHPPT -3.490963422
## TMED5 -3.491775522
## HENMT1 -3.491963407
## AP3M1 -3.492046687
## ZNF606 -3.492241199
## FAM151B -3.493002694
## RIOX1 -3.496852680
## OTUD3 -3.497434170
## ZNF45 -3.497793926
## MBNL1 -3.499882851
## S100A6 -3.500231564
## LYPLAL1 -3.500542665
## KCNMB3 -3.502614639
## VRK2 -3.502871167
## IFIT3 -3.502993016
## CA8 -3.503431430
## ELOA -3.503487460
## ZC3H10 -3.504009253
## ULK3 -3.505955425
## PLEKHG4 -3.506005307
## TGIF2 -3.506283674
## ROM1 -3.507792106
## DDX18 -3.508866622
## DCLRE1B -3.509193351
## C1orf116 -3.509894685
## KCNA3 -3.511200812
## NBR1 -3.511301494
## BRK1 -3.511422187
## SHOC2 -3.513349984
## C14orf28 -3.513651090
## CDHR1 -3.516551674
## IGF2R -3.516715056
## UBTD2 -3.516851006
## CDC42SE1 -3.517801423
## DNAJC9 -3.519371837
## ZNF217 -3.519665914
## FZD5 -3.520680315
## MICU1 -3.521023238
## CD2 -3.521267230
## SNRNP27 -3.522395546
## LTB4R2 -3.522442014
## ADAM9 -3.522565582
## MYORG -3.522615191
## ZNF207 -3.522665802
## USP7 -3.524936741
## PTBP1 -3.526128394
## FAM114A2 -3.526605689
## DDT -3.529012673
## UNC5CL -3.529284913
## UEVLD -3.530953539
## CDKN2D -3.530956270
## DCAF17 -3.531223208
## NADK2 -3.531674569
## PDE6D -3.533924662
## RAB5C -3.534417587
## DHRS7B -3.534628022
## NFE2L2 -3.534666086
## HLA-DOB -3.535806442
## ANO5 -3.535868844
## HPSE -3.537228932
## SLC35C1 -3.537711914
## MAN1A1 -3.538789510
## SLC4A7 -3.540139393
## SUCO -3.541137796
## SNX33 -3.541938644
## HDGFL3 -3.542244918
## ASCL2 -3.542614251
## RNPC3 -3.543239441
## CNEP1R1 -3.543422046
## DOCK7 -3.543954594
## LAMB3 -3.544477760
## SNRPF -3.547245034
## LAMP2 -3.547376834
## IFNLR1 -3.547441634
## SLC2A11 -3.548099066
## MRPL16 -3.548803323
## BBS10 -3.549018795
## PLEKHO2 -3.550393435
## SPATA5L1 -3.551753068
## VAV3 -3.553352128
## AGTRAP -3.553464579
## MRPS16 -3.553489864
## ERMAP -3.555247586
## CPED1 -3.556624477
## HILPDA -3.556927510
## PECAM1 -3.557920140
## EFEMP2 -3.557933907
## CCNJ -3.558463446
## TRMT1L -3.560781523
## COA6 -3.564096376
## COPS2 -3.565235193
## FKBP5 -3.565497164
## TFEC -3.566003619
## SS18L2 -3.566057228
## DLST -3.570069546
## SNRPA1 -3.570323233
## CHRNA10 -3.570404137
## ZFPM1 -3.570560324
## CENPM -3.571094959
## AGO2 -3.572148242
## TLR2 -3.573008367
## FARS2 -3.573592432
## RCC1L -3.574351400
## DHX8 -3.575405041
## CORO1C -3.575487568
## ELOVL1 -3.576073435
## RAB1A -3.576116224
## L3MBTL2 -3.577162282
## COQ8B -3.579552014
## PHLPP1 -3.579842660
## PROSER3 -3.580045794
## ZNF430 -3.580893656
## MTHFD1L -3.582041809
## GATD3A -3.584107345
## C12orf45 -3.584155624
## GLT8D1 -3.584158633
## METTL3 -3.584379129
## GPBP1 -3.585051896
## MAP2K4 -3.585368413
## PLCD3 -3.585679419
## COMMD4 -3.586332796
## UBALD2 -3.586596531
## FAM156A -3.586819611
## COX5B -3.587382494
## NENF -3.588140145
## NAB1 -3.588732344
## SLC4A5 -3.589960141
## PRR3 -3.593022277
## CARD6 -3.595230753
## CTSD -3.595343498
## DDX21 -3.596120911
## CCDC125 -3.596519075
## PIGB -3.597447223
## SAPCD1 -3.597937167
## RBM41 -3.599609443
## CD160 -3.602470739
## CMC1 -3.602894219
## HACD4 -3.603035594
## NTAQ1 -3.603036577
## NOL8 -3.604142665
## RAB31 -3.604828456
## TMEM9 -3.606041782
## PRR29 -3.606147871
## GNPAT -3.606761613
## TDRD12 -3.606892316
## TAF13 -3.606985838
## TMOD2 -3.608325718
## NLRP12 -3.608580613
## SLC66A3 -3.610410339
## EVI2B -3.611399532
## CCDC28B -3.612210185
## AFAP1L2 -3.612663093
## MACROH2A2 -3.613853117
## ZNF132 -3.614812776
## WDFY3 -3.615063207
## GRAMD1C -3.616580757
## YIF1A -3.616726670
## RASGEF1A -3.616963485
## TBC1D25 -3.616978920
## FUBP1 -3.617711031
## CMAS -3.618589446
## RIMS3 -3.619669499
## ZNF384 -3.619911402
## BRWD3 -3.620525198
## TIGAR -3.621839967
## CLIP4 -3.622395770
## MMUT -3.624327348
## GP1BB -3.625364541
## USP53 -3.626348307
## DDX3X -3.627466860
## CDK11B -3.628457222
## ZNF608 -3.628849778
## SLC30A1 -3.630213783
## PSMD8 -3.630833038
## ZBTB6 -3.631011135
## PAPSS2 -3.631196366
## PAK2 -3.631291921
## LSM5 -3.631382054
## UMAD1 -3.632647430
## ZFP82 -3.632735722
## CDT1 -3.632914317
## SENP7 -3.632959959
## CUL5 -3.632990149
## CLOCK -3.633102948
## BLOC1S1 -3.634226862
## VEPH1 -3.634957041
## TMEM50A -3.635918041
## AP1S1 -3.638488767
## TEX22 -3.640162806
## QPRT -3.643771829
## HSD17B12 -3.643813750
## KCNC4 -3.645245680
## HOOK3 -3.646085532
## DSTN -3.651036228
## ZBTB26 -3.651123834
## FBXO9 -3.651407375
## ZNF596 -3.654162787
## FCGBP -3.655929438
## FAHD2A -3.656812383
## TEX10 -3.657301583
## CYREN -3.659000664
## LMBR1 -3.659024629
## USP4 -3.660428025
## SLC29A1 -3.660697113
## SLC6A4 -3.662210594
## ARMT1 -3.662914455
## CEP85 -3.666050895
## PRSS36 -3.666144059
## MMS19 -3.667062573
## TNFAIP6 -3.668900662
## LIN54 -3.672134046
## NFKBID -3.672514328
## SMIM5 -3.672620190
## PERP -3.674140716
## NF2 -3.677493938
## R3HDM1 -3.678026150
## PSMC4 -3.678120989
## RAB6A -3.678181289
## GBP1 -3.678407255
## NBPF11 -3.680253602
## KLC4 -3.681311911
## RNASE3 -3.681426270
## ANP32B -3.681767106
## STX1A -3.682247052
## PPA2 -3.682519845
## KLF7 -3.683015290
## TMIGD3 -3.683052436
## RFX5 -3.683115827
## CLCF1 -3.683348612
## MYO9A -3.683946289
## PKIG -3.684427592
## XXYLT1 -3.684439444
## CDKL5 -3.687229866
## AKAP7 -3.687938446
## PPP6C -3.687995888
## DVL2 -3.688707661
## CRYGS -3.689444511
## CHORDC1 -3.690469944
## FANCD2 -3.691953980
## CES1 -3.693751450
## DEGS1 -3.694077759
## TMEM60 -3.694196182
## TRRAP -3.694966423
## ARL6IP6 -3.695300106
## TMEM45A -3.696780061
## ZNF33A -3.697091266
## TMEM62 -3.697405834
## EIF5A2 -3.698325292
## ANKRD16 -3.699340411
## ZNF609 -3.700707133
## PDZD8 -3.701543538
## FBXO25 -3.701664979
## RNF11 -3.701989070
## NHLRC4 -3.702288372
## ZBTB32 -3.703407797
## ZNF655 -3.703746694
## DPH2 -3.704272399
## PXK -3.704322052
## TBL2 -3.707390114
## ST8SIA6 -3.708026352
## CXXC5 -3.710033810
## ZNF250 -3.710748535
## TWF1 -3.714465068
## LMAN2L -3.715510968
## HIF1A -3.715530185
## TNFSF14 -3.718220750
## NPTXR -3.719424246
## PAM -3.721621465
## C9orf40 -3.721990775
## RARA -3.722149006
## DPY19L4 -3.723547292
## RUSC1 -3.723554768
## TLE4 -3.723590487
## IQGAP2 -3.723683083
## POLR2B -3.724561812
## SLC35B3 -3.725331991
## PTBP3 -3.725389719
## GNL3 -3.727212186
## IPO13 -3.727705400
## ZNF540 -3.728232137
## GRK2 -3.730834720
## PCMTD1 -3.730946723
## SACS -3.731038093
## ALG12 -3.732096045
## PLSCR1 -3.732565680
## SLC45A3 -3.733421173
## RHOC -3.733790121
## DHX38 -3.736350430
## CDK7 -3.737167024
## KIAA0232 -3.737206070
## COQ10A -3.740198370
## MAPK6 -3.740198539
## OAS3 -3.740234092
## SP140 -3.741570462
## L3MBTL4 -3.743248069
## PIGBOS1 -3.743560479
## SIGLEC10 -3.747015665
## LRPAP1 -3.747482160
## PLCH2 -3.749348512
## SF3A1 -3.750183686
## RHD -3.750474320
## BBS12 -3.750883546
## ZNF726 -3.751361721
## NPHP3 -3.752337682
## STK24 -3.752466293
## MARS2 -3.752833645
## XPO4 -3.752911383
## PNPT1 -3.754102497
## GKAP1 -3.754178325
## IRAK3 -3.754426960
## CALM1 -3.754968367
## MTMR10 -3.755486323
## SLC16A7 -3.756315652
## FAM32A -3.757338884
## FBXO45 -3.757759621
## ZNF597 -3.758138351
## C22orf39 -3.758289355
## LIG3 -3.759040555
## AP1G2 -3.759255767
## MFN1 -3.759552139
## UBC -3.760239109
## NPRL2 -3.760762527
## ZNF131 -3.761803317
## TIMM23B -3.761891741
## IFI44L -3.762339669
## ZNF277 -3.762461543
## PDIA6 -3.762707482
## CABP4 -3.762816293
## HERC5 -3.763283104
## GMPPA -3.764645643
## CDK5RAP3 -3.765321501
## MAP3K13 -3.765351099
## SP110 -3.765789936
## SLF2 -3.765798549
## ZNF844 -3.765822215
## LCORL -3.766148921
## TRIM24 -3.768514155
## LOC100996842 -3.768741906
## PPP1R13B -3.770576557
## SSH1 -3.772169956
## NUCB2 -3.772182797
# ASSIGNMENT 2: calculate if any 2 variables of your choice might have a correlation with COVID status by using the geom_smooth argument in ggplot
pDat %>%
mutate(covid = case_when(
COVID == "yes" ~ 1,
COVID == "no" ~ 0)) %>%
ggplot(aes(x = CRP_mg.l, y = covid)) +
geom_point(alpha = 0.2, colour = "orange") +
geom_smooth(method = "glm", method.args = list(family = "binomial"), colour = "orange") +
theme_minimal() +
labs(title = "Does CRP concentration inform of COVID status?", x = "Lactate (mmol/l)", y = "Probability of COVID-positive status")## `geom_smooth()` using formula 'y ~ x'
Given that we saw that the S100A9 gene showed the highest negative logFC, let’s compare the expression of S100A9 between COVID positive nad negative patients.
S100A9 <- eNorm %>%
rownames_to_column(var = "gene") %>%
filter(gene == "S100A9") %>%
column_to_rownames(var = "gene")
S100A9 <- as.data.frame(t(S100A9))
S100A9 <- S100A9 %>%
rownames_to_column(var = "sample")
pDat <- pDat %>%
rownames_to_column(var = "sample")
covid <- pDat %>%
dplyr::select(sample, COVID)
S100A9 <- S100A9 %>%
left_join(covid, by = "sample")
S100A9 %>%
ggplot(aes(x = COVID, y = log2(S100A9), fill = COVID)) +
geom_boxplot() +
scale_fill_manual(values = c("gray", "orange")) +
theme_minimal() +
theme(legend.position = "bottom") +
labs(x = "COVID Status", y = "log2 (S100A9 RPM)", title = "S100A9: Gene with highest negative logFC change")#The differnece doesn't seem much because S100A9 was pulled out from a very simple model where we only included COVID status as a variable.GBGT1 <- eNorm %>%
rownames_to_column(var = "gene") %>%
filter(gene == "GBGT1") %>%
column_to_rownames(var = "gene")
GBGT1 <- as.data.frame(t(GBGT1))
GBGT1 <- GBGT1 %>%
rownames_to_column(var = "sample")
GBGT1 <- GBGT1 %>%
left_join(covid, by = "sample")
GBGT1 %>%
ggplot(aes(x = COVID, y = log2(GBGT1), fill = COVID)) +
geom_violin() +
scale_fill_manual(values = c("gray", "orange")) +
theme_minimal() +
theme(legend.position = "bottom") +
labs(x = "COVID Status", y = "log2 (GBGT1 RPM)", title = "GBGT1: Gene with lowest adjusted p-value with or without accounting for lactate")#ASSIGNMENT 3: do the same plots for HBA2 but use geom_point to visualise expression and facet_wrap to separate by COVID status
HBA2 <- eNorm %>%
rownames_to_column(var = "gene") %>%
filter(gene == "HBA2") %>%
column_to_rownames(var = "gene")
HBA2 <- as.data.frame(t(HBA2))
HBA2 <- HBA2 %>%
rownames_to_column(var = "sample")
HBA2 <- HBA2 %>%
left_join(covid, by = "sample")
HBA2 %>%
ggplot(aes(x = COVID, y = log2(HBA2), fill = COVID)) +
geom_violin() +
geom_dotplot(binaxis = "y", stackdir = "center", dotsize = 0.7, fill = "black") +
scale_fill_manual(values = c("gray", "orange")) +
theme_minimal() +
theme(legend.position = "bottom") +
labs(x = "COVID Status", y = "log2 (HBA2 RPM)", title = "HBA2: Gene with highest negative logFC change on including lactate concentration in the model")## Bin width defaults to 1/30 of the range of the data. Pick better value with `binwidth`.
HBA2 %>%
ggplot(aes(x = sample, y = log2(HBA2), colour = COVID)) +
geom_point() +
scale_colour_manual(values = c("gray", "orange")) +
theme_minimal() +
theme(legend.position = "bottom") +
labs(x = "COVID Status", y = "log2 (HBA2 RPM)", title = "GBGT1: Gene with lowest adjusted p-value with or without accounting for lactate") +
facet_grid(~COVID)#let's add the measurement of a dummy protein sampled at different time points.
## COPY - PASTE START
set.seed(500)
unicorn_COVID <- pDat %>%
filter(COVID == "yes") %>%
dplyr::select(sample, COVID)
#specifying number of obvs, mean, and sd
unicorn_COVID <- unicorn_COVID %>%
mutate(unicorn_0days = rnorm(n = 100, mean = 1000, sd = 20),
unicorn_7days = rnorm(n = 100, mean = 500, sd = 20),
unicorn_14days = rnorm(n = 100, mean = 100, sd = 20))
unicorn_nonCOVID <- pDat %>%
filter(COVID == "no") %>%
dplyr::select(sample, COVID)
unicorn_nonCOVID <- unicorn_nonCOVID %>%
mutate(unicorn_0days = rnorm(n = 26, mean = 100, sd = 10),
unicorn_7days = rnorm(n = 26, mean = 100, sd = 10),
unicorn_14days = rnorm(n = 26, mean = 100, sd = 10))
pDat_unicorn <- rbind(unicorn_COVID, unicorn_nonCOVID)
pDat_unicorn <- pDat_unicorn %>%
dplyr::select(-COVID)
pDat <- pDat %>%
right_join(pDat_unicorn, by = "sample")
unicorn <- pDat %>%
dplyr::select(sample, COVID, unicorn_0days, unicorn_7days, unicorn_14days)
unicorn <- unicorn %>%
pivot_longer(cols = 3:5, names_to = "days", values_to = "measurment")
# unicorn %>%
# ggplot(aes(x = days, y = measurment, fill = days)) +
# geom_boxplot() +
# scale_fill_manual(values = c("maroon", "hotpink2", "pink")) +
# theme_minimal() +
# theme(legend.position = "bottom") +
# labs(x = "Day at Measurement", y = "Measurement (in units)", title = "Measurement of Unicorn Protein over Days") +
# facet_wrap(~COVID)
unicorn$days <- fct_relevel(unicorn$days, c("unicorn_0days", "unicorn_7days", "unicorn_14days"))
unicorn %>%
ggplot(aes(x = days, y = measurment, fill = days)) +
geom_boxplot() +
scale_fill_manual(values = c("maroon", "hotpink2", "pink")) +
theme_minimal() +
theme(legend.position = "bottom") +
labs(x = "Day at Measurement", y = "Measurement (in units)", title = "Measurement of Unicorn Protein over Days") +
facet_wrap(~COVID)## COPY - PASTE END
mm_unicorn <- model.matrix(~COVID + unicorn_0days + unicorn_7days + unicorn_14days, pDat)
mm_unicorn <- as.data.frame(mm_unicorn)
model2 <- glm(COVIDyes ~ unicorn_0days + unicorn_7days + unicorn_14days, data = mm_unicorn, family = binomial) ## Warning: glm.fit: algorithm did not converge
summary(model2)##
## Call:
## glm(formula = COVIDyes ~ unicorn_0days + unicorn_7days + unicorn_14days,
## family = binomial, data = mm_unicorn)
##
## Deviance Residuals:
## Min 1Q Median 3Q Max
## -4.186e-06 8.033e-07 1.516e-06 2.532e-06 5.680e-06
##
## Coefficients:
## Estimate Std. Error z value Pr(>|z|)
## (Intercept) -3.392e+01 2.253e+05 0 1
## unicorn_0days 5.102e-02 6.831e+02 0 1
## unicorn_7days 2.003e-02 1.529e+03 0 1
## unicorn_14days 1.399e-03 1.958e+03 0 1
##
## (Dispersion parameter for binomial family taken to be 1)
##
## Null deviance: 1.2829e+02 on 125 degrees of freedom
## Residual deviance: 7.7308e-10 on 122 degrees of freedom
## AIC: 8
##
## Number of Fisher Scoring iterations: 25
lmfit_unicorn <- lmFit(eNorm, mm_unicorn)
conmat_unicorns <- makeContrasts(
day14_day7 = unicorn_14days - unicorn_7days,
day7_day0 = unicorn_7days - unicorn_0days,
day14_day0 = unicorn_14days - unicorn_0days,
levels = mm_unicorn
)## Warning in makeContrasts(day14_day7 = unicorn_14days - unicorn_7days, day7_day0
## = unicorn_7days - : Renaming (Intercept) to Intercept
#intercept colname is different
rownames(conmat_unicorns) = colnames(mm_unicorn)
confit_unicorn <- contrasts.fit(lmfit_unicorn, conmat_unicorns) %>%
eBayes()
topTable(confit_unicorn, n = "inf")## day14_day7 day7_day0 day14_day0 AveExpr
## LRRC8A 2.561200e-03 6.294206e-02 6.550326e-02 1.155726e+01
## MYEF2 -1.429488e-02 4.748074e-02 3.318586e-02 2.648323e+00
## USP21 -2.046356e-03 4.261994e-02 4.057359e-02 1.605499e+01
## FAM117A -7.057414e-02 2.268684e-01 1.562943e-01 3.718951e+01
## SCML4 1.263192e-01 -4.232025e-02 8.399891e-02 1.579333e+01
## C1orf115 1.111169e-03 -2.200237e-02 -2.089120e-02 2.879542e+00
## AMACR -7.531544e-02 8.427965e-02 8.964211e-03 8.528380e+00
## ANKRD37 -1.042310e-02 1.682935e-02 6.406252e-03 1.423163e+00
## C22orf23 1.034872e-02 -5.484129e-03 4.864589e-03 1.413294e+00
## SLC35E2A -9.388279e-02 2.859324e-01 1.920496e-01 2.611241e+01
## ACSL6 8.988235e-03 5.555945e-02 6.454768e-02 5.435675e+00
## SIGLEC11 -1.161359e-02 -1.972539e-02 -3.133898e-02 2.228512e+00
## RPH3A -1.405460e+00 5.802098e-01 -8.252507e-01 6.782958e+01
## IFI27 -8.608376e-01 -3.344020e+00 -4.204857e+00 1.304780e+02
## C4BPA -6.732816e-01 7.097498e-01 3.646820e-02 1.720034e+01
## ITM2A 2.076453e-01 4.256519e-02 2.502105e-01 2.561656e+01
## TRAF3IP2 3.467645e-02 -4.645270e-02 -1.177625e-02 9.252502e+00
## TMEM116 1.319787e-02 1.054661e-02 2.374449e-02 3.582632e+00
## MACROH2A2 1.674077e-02 -1.645514e-02 2.856317e-04 1.740882e+00
## ANKH 3.125885e-02 7.075694e-02 1.020158e-01 1.297425e+01
## SLC2A1 -3.462820e-01 7.796228e-01 4.333407e-01 3.236820e+01
## MGAT3 -1.750052e-02 2.640270e-02 8.902176e-03 1.908458e+00
## SLC22A23 2.440959e-03 2.217542e-02 2.461638e-02 2.539297e+00
## ADD2 -5.427283e-03 3.684929e-02 3.142201e-02 2.132262e+00
## PRDM8 -9.788744e-02 1.954621e-02 -7.834123e-02 1.066078e+01
## VOPP1 -1.043153e+00 5.720273e-01 -4.711257e-01 1.332950e+02
## PGBD2 2.001370e-04 2.931757e-02 2.951770e-02 8.726009e+00
## DCAF8 -1.237033e-01 1.925604e-01 6.885706e-02 7.141080e+01
## DUS2 -4.104601e-02 1.417086e-01 1.006626e-01 2.216241e+01
## STARD8 9.033311e-03 -3.291644e-02 -2.388313e-02 5.016222e+00
## CYP1B1 -2.149637e+00 2.512971e-01 -1.898340e+00 1.402045e+02
## EPM2A 1.466478e-03 1.053956e-02 1.200604e-02 2.000106e+00
## BORCS5 -3.047397e-02 2.914607e-02 -1.327905e-03 5.634901e+00
## SNAPC1 -4.935134e-03 3.332192e-02 2.838679e-02 5.313157e+00
## UPF3A 7.693775e-02 2.926056e-02 1.061983e-01 2.265239e+01
## ZNF23 1.539071e-03 4.024689e-02 4.178596e-02 5.794894e+00
## HNRNPDL 4.074763e-01 2.291506e-01 6.366269e-01 1.363887e+02
## ACSM3 1.355840e-03 1.026547e-02 1.162131e-02 1.662432e+00
## NT5DC1 1.659788e-02 4.208073e-02 5.867861e-02 1.393633e+01
## CELF6 1.802920e-02 -2.143519e-02 -3.405992e-03 3.275041e+00
## GMPS 7.491173e-02 -2.354151e-02 5.137022e-02 2.125421e+01
## NOTCH2NLB -8.966211e-02 9.007308e-02 4.109712e-04 1.389789e+01
## GPR15 -5.775642e-02 1.408256e-01 8.306920e-02 5.003479e+00
## IGFBP2 3.778603e-02 -7.616950e-02 -3.838347e-02 3.117651e+00
## ACCS 1.043509e-01 -1.259491e-01 -2.159818e-02 8.763533e+00
## NRIP3 2.019805e-02 -2.538469e-02 -5.186647e-03 9.071721e-01
## SEC14L5 2.031776e-02 -3.858729e-02 -1.826953e-02 3.350264e+00
## ZNF69 7.717374e-03 1.746327e-03 9.463701e-03 1.150490e+00
## MAFB 1.034704e-01 -3.787931e-01 -2.753227e-01 4.745639e+01
## ISOC1 -2.063638e-03 4.702655e-02 4.496291e-02 7.637516e+00
## GGCX -5.775751e-02 4.392093e-02 -1.383658e-02 1.796261e+01
## POLR1G 4.546049e-03 3.555201e-03 8.101250e-03 1.257437e+00
## LHFPL2 1.365691e-01 -3.369060e-01 -2.003369e-01 3.078348e+01
## COQ2 -7.916126e-02 5.753030e-02 -2.163096e-02 1.348426e+01
## HKDC1 1.579668e-02 -8.205308e-04 1.497615e-02 1.403410e+00
## QRICH2 6.210899e-03 5.434418e-03 1.164532e-02 1.353934e+00
## CLIC2 -4.544172e-02 6.389438e-02 1.845266e-02 4.218603e+00
## SIRPD -1.811036e-02 1.269296e-05 -1.809767e-02 3.083270e+00
## QSOX2 -8.648198e-03 4.355834e-02 3.491015e-02 8.813928e+00
## TBCEL -3.000327e-02 6.511628e-02 3.511301e-02 7.423975e+00
## DTX4 -2.209557e-02 6.499019e-02 4.289462e-02 9.303730e+00
## NOD2 -1.379576e-01 -4.561154e-01 -5.940730e-01 7.447489e+01
## CXCL5 -1.362728e-02 1.240338e-01 1.104066e-01 8.159963e+00
## DHCR24 1.576167e-02 -1.045334e-01 -8.877169e-02 1.364447e+01
## BIK -1.567143e-02 2.091338e-02 5.241956e-03 2.029143e+00
## ENO2 9.659064e-02 3.640333e-02 1.329940e-01 1.417578e+01
## HPCAL4 2.570873e-02 8.249871e-03 3.395860e-02 2.429702e+00
## WDR6 1.346088e-01 2.230757e-01 3.576845e-01 6.720226e+01
## SIGLEC16 -1.937688e-02 -3.699231e-02 -5.636919e-02 8.043686e+00
## SEPTIN4 3.138373e-01 -2.792895e-01 3.454785e-02 1.130190e+01
## PDGFRB -1.122874e-02 -2.405893e-02 -3.528767e-02 2.462648e+00
## OFD1 7.913865e-02 3.573951e-02 1.148782e-01 2.678251e+01
## MTUS1 1.664931e-02 8.837424e-03 2.548674e-02 1.074987e+00
## TMCC2 -5.506867e-01 1.302253e+00 7.515663e-01 2.184947e+01
## SMN1 6.052708e-02 -1.161137e-02 4.891571e-02 1.036015e+01
## RCL1 -9.078154e-03 3.945807e-02 3.037992e-02 4.011113e+00
## DOK4 -3.378691e-02 3.421316e-02 4.262488e-04 4.788552e+00
## FAAH2 7.631792e-03 4.346741e-03 1.197853e-02 8.543269e-01
## PRORP 2.825882e-02 1.189905e-01 1.472493e-01 2.824912e+01
## VSIG1 3.134652e-02 4.493942e-03 3.584046e-02 4.473535e+00
## CD200R1 2.781087e-02 3.278697e-02 6.059784e-02 5.739550e+00
## EMP1 3.477024e-02 -6.542652e-02 -3.065628e-02 5.458222e+00
## SEMA7A -2.903848e-02 6.922803e-02 4.018955e-02 6.358780e+00
## SAMD4A -5.883932e-02 -5.549205e-02 -1.143314e-01 4.462450e+00
## LRP12 -1.118392e-02 -8.760055e-03 -1.994398e-02 2.042920e+00
## SNX22 -1.553651e-03 5.470480e-02 5.315115e-02 6.937930e+00
## CD93 -1.930882e+00 8.926594e-01 -1.038223e+00 2.486125e+02
## ICOS 8.311065e-02 -1.407214e-02 6.903851e-02 7.750641e+00
## HPGD -1.903139e+00 1.030831e+00 -8.723081e-01 6.136256e+01
## CERK -6.671132e-02 2.588192e-01 1.921079e-01 8.355223e+01
## TTLL11 6.085129e-03 1.988634e-04 6.283992e-03 1.118714e+00
## TTC26 -5.061970e-02 6.257457e-02 1.195487e-02 5.311844e+00
## KRBOX4 2.768811e-02 1.024117e-02 3.792929e-02 9.296495e+00
## GPRIN1 -1.740618e-02 6.083979e-03 -1.132220e-02 2.205504e+00
## CPOX -1.343533e-02 7.581364e-02 6.237832e-02 1.024229e+01
## SPRYD7 8.183531e-03 -5.469821e-05 8.128833e-03 2.457608e+00
## ZNF197 -2.761744e-02 4.952006e-02 2.190262e-02 9.191447e+00
## RAP1GAP -4.985776e-02 1.240033e-01 7.414550e-02 2.352142e+00
## MTERF4 4.792509e-02 1.055404e-02 5.847913e-02 1.346292e+01
## DLEC1 6.704711e-03 1.809118e-02 2.479589e-02 4.089984e+00
## KLHDC7B 4.104551e-02 -9.426129e-02 -5.321578e-02 6.528516e+00
## DYRK3 -1.407417e-02 3.608772e-02 2.201355e-02 1.294779e+00
## PRDX2 -1.966214e-01 5.849505e-01 3.883291e-01 3.128657e+01
## TDP1 4.055871e-02 1.173266e-02 5.229137e-02 1.090521e+01
## CDCA7 3.115844e-02 -2.331118e-02 7.847256e-03 3.371571e+00
## EPHX2 4.195055e-02 1.174383e-02 5.369437e-02 4.417657e+00
## C11orf1 1.769673e-02 6.183110e-03 2.387984e-02 4.458629e+00
## LTO1 -6.866913e-03 2.586337e-02 1.899646e-02 9.091057e+00
## CDR2 3.102103e-02 4.292019e-02 7.394123e-02 1.259112e+01
## HSPA5 -1.798209e+00 7.030570e-01 -1.095152e+00 2.995567e+02
## FICD -1.719730e-02 7.555642e-03 -9.641660e-03 2.978338e+00
## HMBS -4.494951e-01 9.878428e-01 5.383477e-01 1.689453e+01
## NREP 9.281661e-03 -3.485327e-02 -2.557161e-02 8.542821e+00
## ADK 2.615879e-02 4.592205e-02 7.208085e-02 1.248197e+01
## C7orf31 1.104739e-02 5.038075e-03 1.608546e-02 4.481170e+00
## CA13 -1.270907e-02 3.044710e-03 -9.664363e-03 2.137345e+00
## RFESD -2.777965e-02 7.073232e-02 4.295267e-02 1.627739e+00
## PRPSAP1 1.037142e-02 5.021510e-02 6.058652e-02 1.801430e+01
## C2orf74 -4.559397e-02 4.307134e-02 -2.522639e-03 7.451552e+00
## LDHB 1.062915e+00 8.804847e-02 1.150963e+00 1.711382e+02
## BEX4 5.750062e-02 -4.531947e-02 1.218115e-02 1.117976e+01
## EEF1A1 3.088344e+01 1.048812e+01 4.137156e+01 8.071037e+03
## TIMM10 3.474840e-01 -4.146621e-01 -6.717804e-02 2.930594e+01
## PLXNA2 3.377963e-03 -8.592930e-02 -8.255134e-02 7.857284e+00
## PWP1 6.514867e-02 1.418875e-03 6.656755e-02 2.040208e+01
## KLF1 -7.914026e-02 1.798126e-01 1.006723e-01 2.285237e+00
## UBTF 1.525647e-01 9.974558e-02 2.523103e-01 8.486721e+01
## OSBP2 -9.592501e-02 2.616497e-01 1.657247e-01 1.000244e+01
## ELAPOR1 -6.470722e-01 4.350411e-01 -2.120311e-01 5.491892e+01
## FAM114A1 -1.962264e-02 8.737783e-03 -1.088485e-02 3.743047e+00
## ZNF154 1.445265e-02 1.524641e-02 2.969906e-02 2.840910e+00
## CA1 -1.088724e+00 2.637764e+00 1.549041e+00 3.492475e+01
## SIRPG 1.036144e-01 -8.689645e-06 1.036058e-01 9.555623e+00
## AHSP -1.833663e+00 3.918772e+00 2.085109e+00 3.677380e+01
## AGMAT 1.833973e-02 3.074869e-04 1.864722e-02 2.666311e+00
## EML6 -5.849964e-03 1.091793e-02 5.067962e-03 1.241100e+00
## GIMAP4 -1.006420e+00 -1.033307e+00 -2.039727e+00 3.292727e+02
## ZNF554 3.607040e-03 8.182220e-03 1.178926e-02 2.155957e+00
## ABCB6 -2.458853e-02 8.274791e-02 5.815938e-02 6.425353e+00
## GLRX5 -1.305495e-01 3.415870e-01 2.110375e-01 2.381888e+01
## OVGP1 2.215530e-03 1.295981e-02 1.517534e-02 1.477315e+00
## CEP76 -1.300246e-03 1.017014e-02 8.869895e-03 2.212199e+00
## BTBD3 1.577663e-02 -2.960123e-02 -1.382460e-02 4.210206e+00
## POC5 7.707094e-05 2.459045e-02 2.466752e-02 9.789104e+00
## SYVN1 -8.853388e-02 1.068305e-01 1.829660e-02 2.881845e+01
## HES6 -1.149019e-02 3.387876e-02 2.238857e-02 1.269130e+00
## SDR42E1 3.994579e-03 1.062471e-02 1.461929e-02 1.897883e+00
## MLXIP -5.870491e-01 1.735366e-01 -4.135125e-01 7.149146e+01
## HBD -3.428492e+00 7.756365e+00 4.327872e+00 8.305738e+01
## LY75 -3.975387e-01 2.623554e-01 -1.351833e-01 5.334521e+01
## FOLR3 -2.251745e+00 3.640353e+00 1.388608e+00 1.267205e+02
## GRAMD1C -8.040193e-02 7.234814e-02 -8.053785e-03 8.180348e+00
## KIF9 8.784725e-03 -1.382224e-02 -5.037518e-03 1.051409e+00
## ZNF813 7.427016e-03 1.069101e-02 1.811802e-02 3.531915e+00
## RGS16 -9.482584e-03 1.339603e-02 3.913444e-03 1.018245e+00
## SERPING1 1.307334e+00 -2.056980e+00 -7.496460e-01 9.146501e+01
## ZNF404 6.932897e-03 1.651483e-03 8.584380e-03 9.948465e-01
## PASK 7.375609e-02 4.072568e-03 7.782865e-02 7.467374e+00
## PIAS3 -4.417693e-02 2.901281e-02 -1.516412e-02 1.113880e+01
## YPEL4 -3.913598e-02 9.068340e-02 5.154742e-02 1.757186e+00
## KIAA0895L 4.569937e-02 -3.781121e-02 7.888155e-03 5.749562e+00
## TMEM143 5.941891e-03 3.294308e-03 9.236199e-03 1.878251e+00
## EDC3 -6.148585e-02 6.366997e-02 2.184124e-03 2.121562e+01
## TFR2 -1.414892e-02 3.150859e-02 1.735967e-02 1.066419e+00
## EIF3E 6.802035e-01 9.958763e-02 7.797912e-01 1.827956e+02
## TMEM63C 3.233749e-02 -5.768792e-02 -2.535044e-02 3.878397e+00
## SSTR3 5.687376e-02 -3.951478e-02 1.735898e-02 5.561658e+00
## PILRB 5.733382e-02 1.687415e-01 2.260754e-01 5.228397e+01
## REXO2 -2.992952e-03 5.988706e-02 5.689410e-02 1.047689e+01
## PPP1R3E 5.697065e-02 -6.737808e-03 5.023285e-02 1.000673e+01
## GPR183 2.060133e-01 1.233918e-02 2.183525e-01 2.622302e+01
## AXIN2 1.343376e-02 1.799502e-02 3.142878e-02 2.579976e+00
## STXBP4 -1.693763e-03 8.288501e-03 6.594739e-03 1.327242e+00
## HACL1 1.931237e-02 2.441643e-02 4.372880e-02 1.187124e+01
## SH3D21 1.421155e-02 8.273525e-03 2.248508e-02 3.131447e+00
## ARL14EP 4.456225e-02 2.636638e-02 7.092863e-02 1.401954e+01
## TDRP 3.084470e-03 -2.698889e-02 -2.390442e-02 3.203432e+00
## ADCY4 1.112495e-02 -6.737026e-02 -5.624531e-02 1.084740e+01
## EID3 6.564974e-03 5.621229e-03 1.218620e-02 1.498921e+00
## NDRG2 4.340420e-02 -6.797113e-03 3.660708e-02 4.379704e+00
## KDELR2 -1.890682e-01 9.875753e-02 -9.031063e-02 4.925377e+01
## ALKBH1 -2.171919e-02 9.233249e-03 -1.248594e-02 7.498631e+00
## IL23A 4.237918e-03 1.052162e-02 1.475954e-02 1.405165e+00
## AQP1 -5.080324e-02 1.088174e-01 5.801414e-02 1.770580e+00
## TPGS2 -7.586156e-02 1.027820e-01 2.692042e-02 2.311171e+01
## CD1C 5.436009e-02 9.676853e-03 6.403695e-02 5.845133e+00
## TSPAN5 -2.662053e-02 1.032154e-01 7.659487e-02 8.137724e+00
## FECH -1.538293e-01 3.294477e-01 1.756184e-01 1.367813e+01
## THEM4 8.427823e-02 6.437769e-03 9.071600e-02 1.289504e+01
## H2AC8 -2.327934e-02 -2.599717e-02 -4.927652e-02 3.311046e+00
## RUFY4 -3.869141e-04 -7.294290e-02 -7.332981e-02 4.061802e+00
## TTLL4 -5.096044e-02 1.928615e-01 1.419011e-01 2.992767e+01
## CD5 1.916791e-01 4.316884e-02 2.348480e-01 2.181892e+01
## SQLE -1.987138e-04 -4.331328e-02 -4.351199e-02 8.555923e+00
## ZNF138 1.876896e-02 5.740809e-03 2.450977e-02 4.567760e+00
## ZNF287 1.634555e-02 -9.493344e-04 1.539621e-02 2.184216e+00
## RTL10 -5.531118e-03 2.644411e-02 2.091300e-02 8.887836e+00
## TCEANC -1.417329e-02 2.108168e-02 6.908396e-03 6.378560e+00
## SELENOS -1.531894e-01 1.015129e-01 -5.167644e-02 2.684978e+01
## MICAL3 -1.270779e-03 2.867966e-02 2.740888e-02 4.711286e+00
## RANBP10 -5.906017e-02 1.500140e-01 9.095386e-02 2.226659e+01
## GP1BA -1.822547e-02 -7.388392e-02 -9.210939e-02 9.395233e+00
## ANK1 -5.073646e-02 1.568024e-01 1.060660e-01 8.070450e+00
## FAM102A 1.881527e-01 6.790321e-02 2.560559e-01 2.275257e+01
## ARRDC2 -2.692429e-02 3.871034e-01 3.601791e-01 6.862392e+01
## RIPOR3 -8.692579e-02 1.754690e-01 8.854324e-02 3.092923e+00
## GID4 -2.476372e-03 2.798573e-02 2.550936e-02 1.111266e+01
## GAL3ST4 1.705835e-02 -1.669337e-03 1.538901e-02 2.230958e+00
## FMNL2 -3.116763e-02 -6.737168e-03 -3.790480e-02 3.803023e+00
## CD34 8.230749e-03 -4.573300e-03 3.657448e-03 7.378585e-01
## NELL2 9.530859e-02 9.782167e-02 1.931303e-01 1.204727e+01
## CMTM8 6.125575e-03 2.697938e-03 8.823512e-03 1.086135e+00
## MTARC2 4.228755e-03 -6.429026e-03 -2.200271e-03 6.276746e-01
## CD40LG 4.692261e-02 2.664803e-02 7.357064e-02 6.871282e+00
## HLA-DQA1 2.584374e-01 1.468861e-01 4.053235e-01 3.815829e+01
## GRAMD1B 8.835500e-02 -1.432034e-01 -5.484839e-02 1.396665e+01
## DYNC2I1 1.298965e-02 1.321529e-03 1.431118e-02 2.514289e+00
## TRAF3IP3 6.952847e-01 -2.381755e-01 4.571092e-01 1.618663e+02
## PON2 2.465383e-02 -1.278496e-02 1.186887e-02 4.511674e+00
## TYW1 3.767447e-02 -1.302902e-02 2.464545e-02 8.959913e+00
## CNTLN -5.787188e-04 -2.303484e-02 -2.361356e-02 4.327969e+00
## ZNF485 4.991185e-03 9.086504e-03 1.407769e-02 2.062730e+00
## TCF7 4.592111e-01 1.031201e-01 5.623312e-01 4.601554e+01
## TMEM40 -2.321247e-01 -1.271414e-01 -3.592661e-01 3.050384e+01
## ZSCAN21 2.282258e-03 1.275867e-02 1.504093e-02 3.888261e+00
## LBHD1 7.506539e-03 1.074980e-02 1.825634e-02 3.210217e+00
## LILRA3 -1.250200e-01 9.044074e-01 7.793874e-01 8.682558e+01
## FGF7 1.370448e-03 4.249923e-03 5.620371e-03 6.917789e-01
## MST1 -1.973082e-02 3.250695e-02 1.277613e-02 2.913674e+00
## SERF1A 2.215881e-02 1.832806e-02 4.048686e-02 6.052932e+00
## TRAK2 -5.244404e-02 1.537005e-01 1.012565e-01 3.640937e+01
## UAP1L1 1.004514e-01 -6.675994e-02 3.369143e-02 1.488227e+01
## FSTL1 -1.254885e-02 -7.312156e-02 -8.567041e-02 7.677177e+00
## EPHB2 -5.931200e-03 -7.374437e-02 -7.967557e-02 5.469912e+00
## EXTL2 6.918016e-03 6.882363e-04 7.606253e-03 1.216805e+00
## ZNF135 1.780766e-03 4.535134e-03 6.315900e-03 5.798026e-01
## SLC4A1 -5.795194e-01 1.405114e+00 8.255950e-01 3.449943e+01
## FOXRED2 9.379700e-04 6.743008e-03 7.680978e-03 1.391330e+00
## ZNF548 3.186000e-02 2.096605e-02 5.282604e-02 7.500607e+00
## RIC3 1.849246e-02 4.224166e-04 1.891488e-02 1.942968e+00
## SKP2 1.689464e-02 1.090622e-02 2.780086e-02 9.829129e+00
## SLC26A6 -5.624761e-02 2.740249e-01 2.177773e-01 3.090893e+01
## THRA 6.176994e-02 -1.067601e-02 5.109393e-02 1.753824e+01
## PPOX -2.154222e-02 8.723779e-02 6.569557e-02 7.936987e+00
## KLHL33 2.483109e-02 -1.502002e-02 9.811068e-03 5.122827e+00
## PCGF6 1.437008e-02 -5.050795e-03 9.319287e-03 3.656142e+00
## CXCL8 4.942742e-01 3.683855e+00 4.178129e+00 2.275005e+02
## SPAG16 6.761447e-03 3.830988e-03 1.059244e-02 1.090955e+00
## TMEM131 -1.331781e-01 1.421152e-02 -1.189666e-01 3.226133e+01
## CCR7 4.632833e-01 -6.583433e-03 4.566999e-01 4.138170e+01
## DPH5 4.553071e-02 1.253811e-02 5.806882e-02 1.455070e+01
## HAGH -5.901092e-02 1.675717e-01 1.085608e-01 1.970788e+01
## VIPR1 9.977069e-02 -5.223723e-02 4.753346e-02 1.480701e+01
## TMEM9 9.255431e-02 -6.709304e-02 2.546128e-02 1.312264e+01
## BBS1 -6.886801e-03 2.118199e-02 1.429518e-02 4.054592e+00
## CLHC1 9.347367e-03 -1.500626e-02 -5.658897e-03 1.877493e+00
## SPATA5L1 -3.853999e-02 -1.026293e-02 -4.880292e-02 1.079640e+01
## ZC4H2 1.290391e-02 -3.774048e-04 1.252651e-02 2.167401e+00
## TUBB2A -6.097845e-02 1.474270e-01 8.644859e-02 3.063690e+00
## NQO1 6.912541e-03 5.057619e-03 1.197016e-02 1.972111e+00
## PRPS2 5.014424e-02 -6.445804e-02 -1.431380e-02 1.599031e+01
## PRMT6 2.327392e-02 -8.276318e-04 2.244629e-02 4.903026e+00
## UBASH3A 5.020423e-02 2.077690e-02 7.098113e-02 6.634330e+00
## GNA12 2.252817e-02 4.414335e-02 6.667153e-02 1.555872e+01
## RPSAP58 3.249173e-01 1.536975e-01 4.786147e-01 4.319015e+01
## GIMAP8 -4.181951e-01 1.249689e-01 -2.932262e-01 6.274813e+01
## NPIPA7 6.194943e-02 2.051538e-02 8.246481e-02 1.139457e+01
## ST8SIA1 8.410277e-03 4.757824e-03 1.316810e-02 1.435305e+00
## HYAL2 -6.797847e-02 4.739799e-02 -2.058047e-02 9.461095e+00
## TNFSF8 3.112923e-04 -1.966015e-01 -1.962902e-01 4.500588e+01
## ITPRIPL2 -9.013960e-03 -4.562943e-02 -5.464339e-02 1.257233e+01
## TM9SF1 -1.160846e-01 7.602235e-02 -4.006220e-02 3.385422e+01
## LRATD2 1.500698e-02 1.820476e-02 3.321174e-02 4.055722e+00
## HLA-DOA 7.411975e-02 5.623039e-02 1.303501e-01 1.321052e+01
## UBE2O -1.678605e-02 6.498114e-02 4.819510e-02 1.269462e+01
## RBM6 -2.454188e-01 2.934396e-01 4.802074e-02 8.988101e+01
## NIPAL2 1.849163e-03 -4.378796e-02 -4.193879e-02 8.803697e+00
## UROD -2.931712e-01 6.649657e-01 3.717945e-01 3.922222e+01
## SUSD3 -5.105260e-02 1.940073e-01 1.429547e-01 1.463295e+01
## C8orf44-SGK3 4.574807e-02 -3.045805e-02 1.529003e-02 8.882593e+00
## SLC6A8 -3.670021e-02 1.019076e-01 6.520741e-02 4.950799e+00
## CTLA4 4.926254e-02 -2.154137e-02 2.772117e-02 4.608808e+00
## MLLT3 4.068727e-02 3.570811e-03 4.425808e-02 7.225250e+00
## SPCS2 -2.308144e-01 1.159295e-01 -1.148849e-01 6.406968e+01
## TSEN2 8.562454e-03 1.557234e-04 8.718178e-03 1.966708e+00
## DDX50 1.409145e-02 4.228838e-02 5.637983e-02 2.626792e+01
## IFIT1B -8.284216e-02 1.915591e-01 1.087169e-01 3.849238e+00
## CYP20A1 2.325612e-02 1.579592e-02 3.905204e-02 1.490371e+01
## PROSER2 -3.571455e-03 -6.935942e-03 -1.050740e-02 1.529430e+00
## GNPDA1 3.872174e-02 -8.255653e-02 -4.383479e-02 2.159493e+01
## SCFD1 -1.306956e-01 9.010455e-02 -4.059105e-02 3.539130e+01
## NPM1 7.528191e-01 1.433631e-01 8.961823e-01 1.961977e+02
## NXN -4.048368e-03 1.506824e-02 1.101987e-02 1.592155e+00
## ZFAT -1.283330e-02 -7.044292e-02 -8.327622e-02 7.845543e+00
## NUDT7 -3.096925e-03 -1.693388e-02 -2.003081e-02 2.357718e+00
## TMEM150B 6.303604e-04 -2.762383e-02 -2.699347e-02 3.263382e+00
## HSF2 3.897742e-02 -1.605445e-02 2.292297e-02 6.995046e+00
## PARD6G 6.342382e-03 -2.483422e-03 3.858960e-03 7.660642e-01
## CISD2 -4.938544e-02 1.018588e-01 5.247340e-02 1.780395e+01
## RGMA -7.258188e-03 -1.006700e-02 -1.732518e-02 1.492587e+00
## CLYBL 1.210542e-02 1.913488e-03 1.401891e-02 1.695068e+00
## APP 2.237898e-01 -4.076878e-01 -1.838980e-01 8.579951e+01
## HOOK1 8.032467e-03 1.074611e-02 1.877858e-02 2.101045e+00
## MVB12B -2.892350e-02 -1.983161e-02 -4.875510e-02 7.779019e+00
## ACOT11 7.380719e-03 -2.546604e-02 -1.808532e-02 6.939236e+00
## TUSC2 -1.326747e-01 1.270996e-01 -5.575005e-03 4.391359e+01
## METTL23 1.458818e-02 3.360110e-02 4.818928e-02 1.691902e+01
## FBXW8 -2.472549e-02 1.724634e-02 -7.479150e-03 3.216289e+00
## B4GALT2 -2.582051e-02 1.907545e-02 -6.745055e-03 2.214715e+00
## SLC1A5 -1.267063e-01 2.797743e-01 1.530680e-01 2.595563e+01
## CFAP36 2.647114e-02 1.783118e-02 4.430232e-02 8.554080e+00
## MDK 1.353776e-02 -1.617657e-02 -2.638810e-03 1.201386e+00
## ST6GALNAC4 -6.695612e-02 7.737905e-02 1.042293e-02 5.638401e+00
## DUSP19 3.773064e-03 2.134969e-03 5.908033e-03 9.225363e-01
## ERMAP -4.993902e-02 7.091686e-02 2.097784e-02 1.430786e+01
## DNAAF2 6.060398e-03 9.562728e-03 1.562313e-02 4.059411e+00
## LRPPRC 1.068851e-01 4.756442e-02 1.544495e-01 3.639055e+01
## ZNF846 -6.119760e-03 8.535983e-03 2.416223e-03 1.957657e+00
## RCAN3 1.699695e-01 7.639136e-02 2.463609e-01 2.740835e+01
## HYKK 5.540497e-03 -1.729340e-03 3.811157e-03 5.941154e-01
## ARHGEF40 -1.213723e+00 -4.304038e-01 -1.644127e+00 1.780522e+02
## ZNF480 -2.338522e-03 3.658398e-02 3.424546e-02 1.053665e+01
## RCN2 4.259258e-02 1.786411e-02 6.045669e-02 2.087536e+01
## ENAH 1.396576e-03 3.684023e-03 5.080599e-03 5.356361e-01
## PLD2 -7.407983e-02 4.588020e-02 -2.819963e-02 1.482156e+01
## PLXNA3 2.979577e-02 1.559131e-02 4.538708e-02 6.851060e+00
## EIF2D 6.672179e-02 1.954359e-02 8.626538e-02 2.116192e+01
## CPNE5 -3.416593e-01 3.059407e-02 -3.110652e-01 2.586866e+01
## TRERF1 -9.854462e-02 1.338899e-01 3.534532e-02 2.477115e+01
## FAM210A 1.741082e-02 -3.533644e-03 1.387718e-02 4.477924e+00
## ITGB3BP -1.347817e-02 3.879073e-02 2.531256e-02 6.189128e+00
## CDKN1A 7.794376e-02 -3.300584e-01 -2.521146e-01 4.631738e+01
## POLR1E 3.452308e-02 1.271952e-02 4.724260e-02 7.351630e+00
## RNASE6 -2.587883e-01 -3.042722e-01 -5.630605e-01 7.565639e+01
## SMYD3 1.174595e-02 3.338159e-03 1.508411e-02 3.310561e+00
## ZNF439 1.669462e-02 3.730239e-03 2.042486e-02 4.240235e+00
## MANF -3.362981e-01 1.933018e-01 -1.429963e-01 3.552528e+01
## ULK3 8.366541e-02 1.764761e-02 1.013130e-01 2.198114e+01
## RDH14 1.949089e-02 7.488378e-03 2.697927e-02 6.607448e+00
## H4C14 -1.258719e-04 -8.733895e-03 -8.859766e-03 1.223432e+00
## H4C15 -1.258719e-04 -8.733895e-03 -8.859766e-03 1.223432e+00
## ST14 -8.397470e-02 -9.163253e-02 -1.756072e-01 2.232159e+01
## SLC45A3 6.497686e-03 2.120872e-02 2.770640e-02 3.100764e+00
## COX19 3.231815e-02 1.721937e-02 4.953752e-02 1.716230e+01
## KCNH7 -1.885312e-02 4.288008e-03 -1.456511e-02 1.980641e+00
## SMYD2 4.406855e-02 -1.450158e-02 2.956697e-02 1.240757e+01
## ANAPC10 3.027298e-03 1.990379e-02 2.293108e-02 5.046426e+00
## OXNAD1 1.356340e-01 -1.561066e-03 1.340730e-01 1.901445e+01
## ANXA4 6.561472e-04 -1.075628e-01 -1.069067e-01 3.157039e+01
## TMEM38A -2.561639e-02 7.502639e-02 4.941000e-02 8.326093e+00
## NBPF15 8.928564e-02 3.032371e-02 1.196093e-01 2.231998e+01
## ZNF181 1.288290e-02 2.260361e-02 3.548651e-02 6.614241e+00
## GNG4 1.825165e-03 -6.594909e-03 -4.769744e-03 6.132028e-01
## ZNF563 1.077775e-02 -5.018676e-04 1.027588e-02 2.022477e+00
## PEX11B -2.721737e-02 5.953599e-02 3.231862e-02 2.087471e+01
## BICDL1 4.317687e-02 2.157785e-02 6.475473e-02 6.473885e+00
## ZNF749 6.357355e-03 2.221451e-03 8.578806e-03 1.383118e+00
## UNC119B -4.457705e-03 6.845979e-02 6.400208e-02 2.467999e+01
## RORC 2.348622e-02 3.995051e-03 2.748127e-02 2.441038e+00
## CCT8 2.321861e-01 -2.307463e-01 1.439801e-03 8.958705e+01
## ARL17B 5.049997e-02 -4.092890e-02 9.571066e-03 9.646725e+00
## C15orf48 -8.558891e-03 1.893330e-02 1.037441e-02 9.275403e-01
## PDCD2 2.529874e-02 5.300612e-02 7.830486e-02 3.606219e+01
## CYP51A1 -2.041756e-02 -4.735222e-02 -6.776979e-02 1.331550e+01
## C19orf12 6.250588e-02 -3.060839e-02 3.189749e-02 1.268693e+01
## SPTBN1 -2.050212e-01 3.642277e-03 -2.013789e-01 3.219713e+01
## TCEA3 3.344948e-02 -1.229378e-02 2.115570e-02 2.591549e+00
## ZNF432 -2.225784e-03 1.940895e-02 1.718316e-02 5.739780e+00
## OLA1 7.145631e-02 -3.634697e-02 3.510934e-02 2.154399e+01
## KDSR 4.597250e-02 -3.833062e-02 7.641886e-03 1.261819e+01
## MRPL50 2.746377e-02 2.218443e-02 4.964820e-02 1.465496e+01
## NEXN -3.908563e-02 -6.785772e-02 -1.069433e-01 9.894202e+00
## EXT2 5.127074e-02 -6.137984e-02 -1.010910e-02 2.043653e+01
## KIAA0930 -7.386637e-01 3.708029e-01 -3.678608e-01 1.297134e+02
## LRRC1 3.605633e-03 -5.809187e-03 -2.203554e-03 1.005591e+00
## TMTC4 2.224827e-02 -1.526670e-02 6.981567e-03 4.019370e+00
## GOLGA1 -2.031507e-01 8.174953e-02 -1.214012e-01 2.945163e+01
## CD28 1.157929e-01 4.963568e-02 1.654286e-01 1.668406e+01
## WDR45 -2.268080e-01 2.472196e-01 2.041159e-02 6.259678e+01
## TAMM41 1.441973e-02 -2.730997e-03 1.168874e-02 3.482971e+00
## TCN2 -5.320840e-02 -2.486187e-01 -3.018271e-01 3.507691e+01
## EIF3L 7.276609e-01 1.570163e-01 8.846772e-01 2.008918e+02
## FHIT 3.929479e-02 6.136941e-03 4.543173e-02 3.570145e+00
## MS4A6A -1.581369e+00 -2.315364e-01 -1.812906e+00 3.421292e+02
## MAPK9 -5.292723e-03 4.622521e-02 4.093249e-02 2.051185e+01
## EIF4A2 5.923171e-01 -6.467744e-02 5.276396e-01 2.126971e+02
## XPO7 -1.232856e-01 2.224148e-01 9.912922e-02 4.926980e+01
## LEF1 2.320360e-01 8.795603e-02 3.199920e-01 2.928661e+01
## PRR7 4.834256e-03 -5.805785e-03 -9.715294e-04 1.059918e+00
## LIAS 9.042408e-03 8.103995e-03 1.714640e-02 6.398663e+00
## TRABD2A 1.043296e-01 3.064573e-02 1.349753e-01 1.071478e+01
## SRD5A3 -3.696371e-02 1.437132e-02 -2.259238e-02 5.860785e+00
## CCDC134 -3.586755e-02 2.571734e-02 -1.015021e-02 8.867526e+00
## DNAJC21 3.808244e-02 1.281118e-02 5.089362e-02 1.836215e+01
## ALG14 -2.340477e-02 2.250796e-02 -8.968123e-04 4.788881e+00
## CCNB1IP1 5.006375e-02 -1.270735e-02 3.735641e-02 1.117792e+01
## ITGA10 8.635040e-03 4.451215e-03 1.308626e-02 1.291164e+00
## EIF3D 1.858291e-01 3.411274e-01 5.269565e-01 1.697161e+02
## MYL4 -1.085402e-01 1.497530e-01 4.121283e-02 6.805651e+00
## SELENBP1 -2.281849e-01 5.442553e-01 3.160704e-01 1.236914e+01
## LCMT2 1.244012e-02 6.015201e-03 1.845532e-02 3.838444e+00
## MACO1 -1.842166e-02 4.429461e-02 2.587295e-02 1.399849e+01
## RPS7 6.350443e-01 2.427238e+00 3.062282e+00 5.779519e+02
## NSMCE3 4.978388e-02 5.518532e-03 5.530241e-02 1.470593e+01
## AP3S2 -3.626861e-01 2.288022e-01 -1.338838e-01 6.539476e+01
## TRIM10 -3.316893e-02 6.966060e-02 3.649167e-02 1.647034e+00
## SETDB1 -1.184596e-01 6.065252e-02 -5.780705e-02 4.816119e+01
## CMKLR1 -1.091084e-01 -2.816586e-02 -1.372743e-01 1.472970e+01
## LRIG1 4.247234e-02 2.019534e-02 6.266768e-02 9.338411e+00
## KLHL5 -1.386233e-01 1.466966e-01 8.073246e-03 3.269853e+01
## FGFR1 3.428419e-02 -2.624232e-02 8.041878e-03 5.117522e+00
## EXT1 -1.136589e-01 -7.220543e-02 -1.858644e-01 2.460207e+01
## UBAC1 -6.214310e-02 1.520118e-01 8.986871e-02 2.558317e+01
## PFKM 8.143094e-03 1.443697e-02 2.258006e-02 6.160440e+00
## TNFRSF12A -1.932331e-02 -1.179945e-02 -3.112276e-02 4.858144e+00
## MCEE -1.328043e-02 1.621796e-02 2.937536e-03 3.911678e+00
## SUPT3H 1.637333e-02 1.815994e-03 1.818932e-02 2.765173e+00
## PIP4K2B 5.702245e-02 4.948490e-02 1.065073e-01 4.604365e+01
## GAS6 -6.958421e-02 1.915624e-02 -5.042797e-02 5.741706e+00
## BDH1 3.119447e-02 5.897354e-03 3.709183e-02 5.002158e+00
## ZNF544 2.482688e-02 1.400337e-02 3.883025e-02 9.686626e+00
## ZNF461 9.828354e-03 1.512535e-03 1.134089e-02 2.300359e+00
## CXCL16 -8.791825e-01 1.676568e-01 -7.115256e-01 1.061555e+02
## SLC11A1 -3.114986e+00 -9.717101e-01 -4.086696e+00 4.879473e+02
## MAP3K7CL 5.717823e-01 -1.705952e-01 4.011871e-01 7.224651e+01
## HP -2.100747e+00 3.933334e+00 1.832587e+00 1.844011e+02
## DAP3 9.175772e-02 -6.823752e-03 8.493397e-02 6.120283e+01
## DUSP2 1.340471e-01 -3.815000e-02 9.589705e-02 1.004870e+01
## APH1A -3.096646e-01 3.206250e-01 1.096032e-02 1.457369e+02
## IBA57 -1.043458e-02 2.569210e-02 1.525752e-02 4.150954e+00
## BCL2L1 -5.359471e-01 9.266814e-01 3.907342e-01 8.465846e+01
## ANKMY1 2.527276e-02 1.863012e-02 4.390288e-02 9.051543e+00
## RABIF -6.621294e-02 6.192260e-02 -4.290335e-03 2.161588e+01
## SLC35F6 1.648969e-02 -6.987052e-02 -5.338082e-02 2.468421e+01
## ACTR6 3.422430e-02 1.757938e-02 5.180368e-02 1.592024e+01
## GRAMD2B 1.215393e-02 -4.000103e-03 8.153828e-03 1.933442e+00
## RFXAP 1.311212e-02 -1.306745e-03 1.180538e-02 3.263114e+00
## GRPEL2 2.848030e-02 -1.821590e-03 2.665871e-02 9.412169e+00
## UBA2 1.455902e-01 -3.334334e-02 1.122469e-01 4.649271e+01
## KCNN3 -3.489080e-02 1.457247e-02 -2.031833e-02 1.832696e+00
## NIPSNAP3B 1.795314e-03 4.539342e-03 6.334657e-03 8.963952e-01
## ANK3 8.847215e-03 1.766743e-02 2.651465e-02 2.614949e+00
## CRIP3 8.924360e-03 3.096372e-03 1.202073e-02 1.308368e+00
## WASL 1.967738e-02 -1.012484e-02 9.552541e-03 5.664260e+00
## TRAPPC3L -3.319487e-04 -8.628044e-03 -8.959993e-03 1.410266e+00
## MAPRE3 -3.561380e-02 3.403687e-02 -1.576924e-03 6.421314e+00
## CD1A 6.888950e-03 -6.014881e-03 8.740688e-04 1.120939e+00
## ANKS6 1.839633e-02 2.931644e-04 1.868949e-02 2.548366e+00
## DSE -2.828517e-01 -4.611720e-02 -3.289689e-01 5.431373e+01
## DELE1 3.063510e-02 5.186274e-02 8.249783e-02 3.296236e+01
## ZNF763 3.953192e-02 -5.382666e-02 -1.429475e-02 8.569979e+00
## CXCL6 1.002690e-02 1.813676e-03 1.184057e-02 1.340129e+00
## BTK -2.994931e-01 -8.162757e-02 -3.811207e-01 1.204018e+02
## REEP5 -3.664749e-01 6.953636e-02 -2.969385e-01 1.299043e+02
## MID2 6.346332e-03 7.990969e-03 1.433730e-02 1.427604e+00
## NIF3L1 1.639888e-03 2.932885e-02 3.096873e-02 1.081324e+01
## UBN2 -5.351661e-02 6.370931e-02 1.019270e-02 1.534881e+01
## OXER1 -6.442452e-02 2.589415e-02 -3.853037e-02 9.987774e+00
## RPL4 4.142156e+00 1.993343e+00 6.135500e+00 1.106526e+03
## BCAT1 -2.652805e-01 -6.672746e-02 -3.320080e-01 2.662454e+01
## HBB -2.934592e+02 4.685868e+02 1.751275e+02 2.639316e+04
## B4GALT3 -3.368397e-02 9.307279e-02 5.938882e-02 2.470616e+01
## MCMDC2 5.212034e-03 -2.155865e-03 3.056168e-03 5.001270e-01
## P2RY10 3.728582e-02 1.159618e-01 1.532476e-01 1.978217e+01
## CHAF1B 1.091732e-02 -1.305622e-02 -2.138895e-03 3.494046e+00
## TYW5 -7.524719e-02 5.705337e-02 -1.819382e-02 9.651750e+00
## BEX2 3.706364e-02 1.942536e-03 3.900618e-02 4.092596e+00
## PPARA -2.248939e-02 2.887831e-02 6.388921e-03 6.965596e+00
## OR2W3 -8.962624e-03 1.908149e-02 1.011887e-02 1.065291e+00
## STK11 -5.942174e-02 1.461599e-01 8.673813e-02 2.416527e+01
## C12orf66 1.172742e-02 3.052626e-03 1.478004e-02 2.748948e+00
## TRAT1 9.821894e-02 2.497439e-02 1.231933e-01 1.309096e+01
## GPA33 2.171927e-02 7.305593e-03 2.902486e-02 2.909957e+00
## HYLS1 -2.942117e-04 9.801475e-03 9.507263e-03 3.551171e+00
## EOLA1 -3.717957e-02 3.609628e-02 -1.083284e-03 1.819797e+01
## COL6A3 2.965864e-02 -2.913422e-02 5.244166e-04 2.356127e+00
## GDF11 1.797085e-02 1.030647e-02 2.827732e-02 5.987001e+00
## RALA 2.684481e-02 2.821467e-02 5.505948e-02 2.517573e+01
## MFSD14B 8.465660e-02 -1.014763e+00 -9.301059e-01 1.377446e+02
## ODF2 3.970900e-02 5.848185e-03 4.555718e-02 1.581117e+01
## ZNF540 1.380771e-02 1.014207e-02 2.394978e-02 2.732737e+00
## TCEAL8 4.537260e-02 -3.101173e-02 1.436087e-02 1.454559e+01
## CD200 1.417858e-02 7.303120e-03 2.148170e-02 2.023070e+00
## UXS1 6.955336e-02 -8.901622e-03 6.065174e-02 2.384312e+01
## LIX1L -5.189050e-02 1.065966e-01 5.470614e-02 3.681479e+01
## BZW2 4.210675e-02 1.914771e-03 4.402152e-02 1.492192e+01
## ACTR3C 8.299688e-03 -2.034019e-04 8.096286e-03 1.775567e+00
## APOBEC3A_B -4.441600e-01 -7.674913e-01 -1.211651e+00 1.202150e+02
## TPM1 1.483138e-01 -2.091380e-01 -6.082417e-02 2.988698e+01
## MYC 1.592389e-01 -5.008460e-02 1.091543e-01 2.615070e+01
## EPG5 -2.637350e-01 -6.336144e-02 -3.270965e-01 5.076223e+01
## LIPN -3.465389e-01 -1.631330e-01 -5.096719e-01 3.148378e+01
## SMPDL3A -2.732540e-01 -5.299490e-02 -3.262489e-01 1.384631e+01
## GAPT -4.874679e-01 -4.519315e-02 -5.326611e-01 1.112971e+02
## MYBL2 -2.197689e-01 1.545937e-01 -6.517524e-02 1.552904e+01
## CDKN3 -2.113903e-02 4.362689e-02 2.248786e-02 3.118757e+00
## TMEM231 -1.583691e-03 6.049022e-03 4.465332e-03 1.100380e+00
## FAIM 8.136178e-03 -2.996143e-04 7.836564e-03 1.453521e+00
## SLC12A8 -4.008085e-03 -1.334903e-03 -5.342988e-03 4.933670e-01
## PDHB 5.534416e-04 6.628677e-02 6.684021e-02 3.942640e+01
## KYAT1 2.471162e-03 2.093103e-02 2.340219e-02 6.467955e+00
## HIBADH 2.534334e-02 -1.471951e-03 2.387139e-02 8.024281e+00
## ZNHIT3 -1.242926e-02 7.376018e-02 6.133092e-02 2.452705e+01
## ABRACL 1.435029e-01 -9.055470e-02 5.294821e-02 4.455222e+01
## PLEKHG4 2.406202e-02 1.871446e-03 2.593347e-02 2.916454e+00
## CD99L2 -1.530481e-01 5.817969e-02 -9.486842e-02 2.948080e+01
## GCSAM 2.957910e-02 1.458771e-02 4.416681e-02 5.177729e+00
## AMIGO1 3.257967e-02 1.493333e-02 4.751300e-02 5.177353e+00
## NSA2 2.166269e-01 -1.196262e-02 2.046642e-01 6.509212e+01
## PIK3IP1 4.157583e-01 -1.182538e-01 2.975046e-01 7.762150e+01
## VEPH1 2.657119e-02 -2.687918e-02 -3.079969e-04 2.797088e+00
## CKS2 -6.965451e-02 9.680389e-02 2.714938e-02 9.377288e+00
## TATDN3 -6.646833e-02 4.575393e-02 -2.071440e-02 2.074638e+01
## PRG2 -2.008288e-01 3.106291e-01 1.098003e-01 4.822062e+00
## FMNL3 3.731248e-02 5.485356e-02 9.216605e-02 1.475442e+01
## CNNM3 -1.188565e-03 5.568457e-02 5.449600e-02 1.768510e+01
## TMOD2 -1.518748e-01 -5.211456e-02 -2.039893e-01 3.218961e+01
## RAP1B -6.986717e-01 -5.484787e-01 -1.247150e+00 3.735015e+02
## TSHZ3 -1.065171e-01 -1.694732e-02 -1.234644e-01 1.738055e+01
## SLC25A39 -7.750081e-01 1.404668e+00 6.296597e-01 8.950315e+01
## PAXBP1 8.139468e-02 -3.709862e-02 4.429606e-02 2.355145e+01
## HRK -4.086482e-02 1.121148e-02 -2.965334e-02 1.856534e+00
## C11orf21 3.008773e-01 -2.695367e-01 3.134062e-02 1.029150e+02
## LDLR -7.792690e-02 -3.126317e-02 -1.091901e-01 1.492274e+01
## NDUFAF6 -1.298111e-02 3.663468e-02 2.365356e-02 4.272309e+00
## CDA -1.458777e+00 6.474135e-01 -8.113638e-01 2.184457e+02
## AGPAT4 -3.232903e-02 4.750122e-02 1.517219e-02 1.032637e+01
## C10orf143 1.114511e-02 -5.688070e-04 1.057631e-02 1.522015e+00
## CES1 1.739015e-01 -8.349733e-01 -6.610718e-01 8.420999e+01
## FRMD4A -1.576029e-02 2.341390e-02 7.653613e-03 3.503061e+00
## GPR171 4.080380e-02 2.686891e-02 6.767271e-02 8.988364e+00
## TTC24 9.332672e-03 2.530795e-03 1.186347e-02 1.175677e+00
## F2RL1 -4.775618e-01 -1.223339e-01 -5.998957e-01 6.999203e+01
## MBLAC2 5.368149e-03 8.418188e-03 1.378634e-02 2.153105e+00
## AP3M2 5.236401e-02 -1.436355e-02 3.800046e-02 8.099538e+00
## HOXA10 2.166417e-03 -7.356096e-03 -5.189678e-03 8.036653e-01
## KLHL25 3.347519e-03 4.650321e-03 7.997840e-03 9.562206e-01
## EAF2 -1.506980e-01 1.803962e-01 2.969817e-02 2.354620e+01
## MPZL1 -1.258489e+00 1.086205e+00 -1.722838e-01 1.227578e+02
## SIGLEC10 -9.194186e-01 8.593508e-01 -6.006777e-02 1.200481e+02
## NMT2 5.519932e-02 -1.220883e-02 4.299049e-02 7.176702e+00
## GALC -1.657729e-01 1.902677e-02 -1.467461e-01 4.766091e+01
## IMMP1L -2.233730e-03 1.423000e-02 1.199627e-02 2.156745e+00
## H3C10 -7.547084e-03 -8.919677e-03 -1.646676e-02 1.621394e+00
## PJA1 2.631257e-02 4.889033e-03 3.120161e-02 6.391613e+00
## TRIM27 -7.170666e-01 2.762769e-01 -4.407897e-01 1.150507e+02
## FCMR 3.748803e-01 1.137941e-01 4.886744e-01 6.614753e+01
## COPS3 -1.838079e-01 1.662248e-01 -1.758314e-02 4.600332e+01
## GSTA4 4.885500e-03 1.671161e-03 6.556661e-03 5.315070e-01
## LY9 8.964292e-02 3.826736e-02 1.279103e-01 1.619217e+01
## TMEM216 -7.701431e-02 1.531068e-01 7.609251e-02 2.672941e+01
## DPP4 5.049187e-02 1.400152e-02 6.449339e-02 6.847618e+00
## TMEM158 -1.035193e-02 -1.384871e-02 -2.420064e-02 2.913845e+00
## MAPKAP1 -1.385616e-02 5.416787e-02 4.031171e-02 4.016585e+01
## WNT5B -1.997442e-02 1.393957e-02 -6.034850e-03 1.761394e+00
## CDC20 -6.661533e-02 7.404477e-02 7.429440e-03 5.501718e+00
## PDE5A -3.358405e-02 -4.547032e-02 -7.905437e-02 1.268432e+01
## WNT10B 1.638177e-02 5.486604e-03 2.186837e-02 2.295194e+00
## ZNF83 -1.046531e-02 1.121043e-01 1.016390e-01 2.190070e+01
## SNPH 2.017322e-02 2.371616e-03 2.254483e-02 2.833115e+00
## IMMP2L 8.202938e-03 -4.069257e-03 4.133681e-03 1.137932e+00
## ALDH6A1 1.751027e-02 3.415834e-03 2.092611e-02 8.584034e+00
## TMEM18 1.838279e-02 1.890872e-02 3.729152e-02 9.872214e+00
## BIRC3 4.037256e-02 3.559930e-01 3.963656e-01 6.689781e+01
## AMIGO2 1.898014e-02 -5.130515e-02 -3.232501e-02 1.002078e+01
## SSPN -1.441519e-02 -1.096882e-02 -2.538401e-02 2.199426e+00
## TMEM45A 1.383408e-02 -3.142072e-02 -1.758664e-02 2.313776e+00
## COQ3 2.481236e-03 1.205894e-02 1.454018e-02 3.152333e+00
## GLB1 -1.202312e-01 -3.468220e-02 -1.549134e-01 6.334692e+01
## PREB -1.703047e-01 1.588204e-01 -1.148434e-02 5.203581e+01
## F5 -7.441259e-01 1.269616e-01 -6.171643e-01 1.043161e+02
## PDE9A 8.755829e-03 -3.227061e-02 -2.351478e-02 1.440646e+00
## CNR2 2.653376e-03 3.807817e-02 4.073154e-02 6.138568e+00
## IGLL1 -8.144757e-02 4.142723e-02 -4.002035e-02 6.076279e+00
## MOSPD1 -1.391347e-02 3.821098e-02 2.429751e-02 6.412356e+00
## SPTSSA -8.585978e-02 -5.107176e-02 -1.369315e-01 2.552657e+01
## ETV7 2.760881e-01 -2.571985e-01 1.888959e-02 1.284369e+01
## TRPS1 -1.045393e-01 3.909299e-03 -1.006300e-01 1.676897e+01
## RPS6KC1 -6.210368e-02 1.262325e-03 -6.084135e-02 1.663964e+01
## PPT2 2.946082e-03 9.396202e-03 1.234228e-02 2.500735e+00
## ZNF502 6.221238e-03 3.027430e-03 9.248668e-03 1.306641e+00
## PLCG1 2.047259e-01 8.714499e-02 2.918709e-01 3.504453e+01
## TROAP -2.996301e-02 4.811221e-02 1.814921e-02 2.564406e+00
## CLPTM1L -2.117416e-01 1.214186e-01 -9.032305e-02 4.347027e+01
## LETM2 4.646064e-02 5.707242e-02 1.035331e-01 1.092490e+01
## RETREG2 -4.524716e-01 5.905083e-01 1.380367e-01 1.661854e+02
## LOC100287896 7.046077e-03 6.056217e-04 7.651699e-03 1.477386e+00
## EIF3H 3.450010e-01 -2.995159e-02 3.150494e-01 1.270660e+02
## RWDD2B 1.811226e-02 -1.307045e-02 5.041814e-03 4.272339e+00
## GGPS1 8.774683e-02 -4.878594e-02 3.896089e-02 3.301274e+01
## SUSD1 -3.319890e-02 -8.169704e-02 -1.148959e-01 3.349218e+01
## C12orf29 2.032209e-02 6.392882e-03 2.671498e-02 6.064887e+00
## NKAPL -4.125948e-03 -1.575612e-03 -5.701559e-03 6.901952e-01
## SOX6 -8.487409e-03 1.492670e-02 6.439290e-03 1.002547e+00
## ARGLU1 2.005039e-01 -2.633677e-01 -6.286376e-02 1.113902e+02
## CLEC17A 1.571007e-02 1.774030e-02 3.345037e-02 4.450829e+00
## ZNF888 -1.462857e-02 1.408751e-02 -5.410620e-04 2.734716e+00
## HECTD4 -6.420710e-02 6.582359e-02 1.616489e-03 1.841572e+01
## SLAIN1 2.235580e-02 1.586444e-03 2.394225e-02 5.090475e+00
## HOXA9 3.290346e-03 -1.202153e-02 -8.731185e-03 1.364061e+00
## ARMCX3 -6.808775e-02 -1.998636e-02 -8.807411e-02 2.614452e+01
## MFHAS1 5.443720e-02 2.661707e-02 8.105427e-02 1.227803e+01
## SENP8 -2.546173e-03 4.620366e-03 2.074193e-03 1.238043e+00
## GPR89B -4.577149e-03 3.042882e-02 2.585167e-02 8.572597e+00
## MZB1 -1.768733e+00 8.119141e-01 -9.568191e-01 6.444000e+01
## PLEKHB1 5.785895e-02 -2.801536e-03 5.505741e-02 6.360133e+00
## NLE1 1.812111e-02 1.138158e-02 2.950268e-02 4.429862e+00
## RTCA -4.694265e-02 -5.740900e-03 -5.268355e-02 2.364493e+01
## DBN1 1.097583e-01 -2.686997e-02 8.288837e-02 1.442828e+01
## SLC25A53 1.091340e-02 2.584405e-04 1.117184e-02 1.754547e+00
## SETD9 -2.201267e-02 1.352087e-02 -8.491808e-03 3.621350e+00
## DNAJC27 2.829841e-03 -1.878114e-02 -1.595130e-02 3.945380e+00
## IL24 8.907698e-03 8.074590e-04 9.715157e-03 1.157309e+00
## EEF1E1 4.059303e-03 3.559796e-02 3.965726e-02 9.160501e+00
## P2RY12 -2.657981e-02 -5.388577e-03 -3.196839e-02 5.732731e+00
## ZNF555 1.469994e-02 -5.473032e-03 9.226913e-03 4.016822e+00
## VRK2 -4.410381e-02 -2.802988e-02 -7.213370e-02 1.473284e+01
## ATP6V1G2 5.048287e-03 -1.488807e-03 3.559480e-03 8.408738e-01
## NONO 2.124631e-01 -2.754051e-02 1.849226e-01 1.648914e+02
## ASNS -2.104234e-02 6.239398e-02 4.135164e-02 1.706217e+01
## ARHGAP29 -1.239003e-02 -1.087989e-02 -2.326992e-02 2.055365e+00
## ZNF254 -1.483340e-01 5.507086e-02 -9.326310e-02 1.428192e+01
## LRRC34 8.879442e-03 -3.852307e-03 5.027136e-03 1.853664e+00
## C4orf3 -2.024899e+00 1.752060e-01 -1.849693e+00 3.297927e+02
## CD3G 1.587400e-01 3.627596e-02 1.950160e-01 2.496456e+01
## YBX1 2.224686e-01 6.687503e-01 8.912189e-01 2.855851e+02
## CCR6 4.043102e-02 6.561766e-03 4.699279e-02 6.559613e+00
## ZNF30 7.792940e-03 2.972767e-03 1.076571e-02 1.344567e+00
## SIGLEC1 9.135192e-01 -1.573133e+00 -6.596141e-01 6.497503e+01
## TRAF5 5.461679e-02 3.638465e-02 9.100144e-02 1.215964e+01
## NME7 6.925292e-03 3.373635e-03 1.029893e-02 2.856890e+00
## CCT6B -4.222962e-03 1.486871e-02 1.064574e-02 1.085004e+00
## IL7R 9.443087e-01 5.442126e-01 1.488521e+00 1.670472e+02
## ZNF501 2.164731e-04 5.963747e-03 6.180220e-03 1.173361e+00
## DGKA 2.275294e-01 8.172312e-02 3.092525e-01 7.936256e+01
## MZT1 2.176028e-02 2.374483e-03 2.413476e-02 8.102980e+00
## TNRC6C -5.173544e-02 2.791587e-02 -2.381957e-02 1.376780e+01
## EFCAB2 4.336162e-02 -1.185342e-01 -7.517260e-02 8.819200e+00
## ELOVL3 -4.362456e-03 -7.874180e-03 -1.223664e-02 1.462435e+00
## MYO10 -1.523338e-02 -4.193791e-02 -5.717130e-02 5.122500e+00
## RNF214 1.386559e-02 1.046077e-02 2.432636e-02 8.978706e+00
## POU6F1 2.682689e-02 1.697261e-03 2.852415e-02 4.845707e+00
## PITRM1 2.458305e-02 2.801249e-02 5.259555e-02 1.768162e+01
## TMED10 -1.995217e-01 2.422788e-01 4.275712e-02 1.198959e+02
## UBE2T -2.795688e-02 4.534322e-02 1.738634e-02 3.633067e+00
## CA5B 4.315762e-02 6.920862e-04 4.384970e-02 1.310397e+01
## FBXO34 -1.412317e-01 1.194724e-01 -2.175925e-02 2.824598e+01
## FSTL4 -1.664817e-02 8.931442e-03 -7.716725e-03 9.849963e-01
## SEMA4A -1.311446e+00 9.796465e-01 -3.317993e-01 2.184932e+02
## CCDC80 -3.643474e-04 7.046759e-03 6.682412e-03 8.918237e-01
## SLC35A5 -1.139302e-01 -3.504148e-02 -1.489717e-01 3.205246e+01
## CSNK1A1L -1.158633e-02 1.513381e-02 3.547487e-03 1.494219e+00
## PHF10 4.702968e-02 2.384913e-03 4.941460e-02 1.429444e+01
## FEM1C -2.110643e-01 -9.220301e-02 -3.032673e-01 4.544590e+01
## CCDC69 -7.563681e-01 6.926485e-01 -6.371962e-02 2.648090e+02
## ZNF16 1.032155e-02 -3.257046e-04 9.995850e-03 2.736508e+00
## ZBTB46 7.537259e-03 1.194815e-03 8.732075e-03 1.175160e+00
## ANXA5 -3.927428e-01 -3.405254e-01 -7.332682e-01 1.908267e+02
## ZNF681 5.866697e-03 7.352691e-03 1.321939e-02 2.304424e+00
## INO80B -1.397196e-02 3.147343e-02 1.750147e-02 8.678664e+00
## SLFN12 -7.188115e-02 4.295214e-02 -2.892901e-02 1.253977e+01
## AGA -6.897719e-03 5.027555e-02 4.337783e-02 1.363918e+01
## ACSBG1 6.869781e-03 -8.521635e-03 -1.651853e-03 8.636069e-01
## LIPT2 1.745104e-03 4.934358e-03 6.679462e-03 1.254477e+00
## IL3RA -2.865723e-02 2.127344e-01 1.840772e-01 1.107411e+01
## DLAT 3.570243e-02 -1.764257e-02 1.805986e-02 9.339011e+00
## SAPCD2 2.241157e-02 -1.750795e-02 4.903619e-03 3.116129e+00
## MAGEF1 3.418742e-02 -1.475214e-02 1.943528e-02 6.621465e+00
## BAIAP2 2.553729e-02 -4.648559e-03 2.088873e-02 3.930960e+00
## LILRB2 -1.243224e+00 1.774213e-01 -1.065802e+00 2.983491e+02
## BEX5 3.120622e-03 4.246662e-03 7.367285e-03 8.298340e-01
## WASHC2C -2.807672e-01 -1.037665e-01 -3.845337e-01 9.573364e+01
## ZNF470 5.340562e-03 5.212107e-03 1.055267e-02 1.843385e+00
## SLC25A38 3.071051e-02 6.372006e-02 9.443057e-02 1.705997e+01
## C1orf74 5.106323e-02 -4.472155e-03 4.659108e-02 1.382792e+01
## BOLA3 7.682232e-04 1.280904e-02 1.357726e-02 2.638231e+00
## H2BC5 1.455702e-01 -1.882813e-01 -4.271110e-02 1.996329e+01
## ST13 1.888986e-01 -1.755448e-02 1.713441e-01 8.170272e+01
## ZNF77 8.454161e-03 -1.820015e-03 6.634146e-03 1.775172e+00
## ADM2 -8.752924e-03 2.242295e-04 -8.528695e-03 1.393222e+00
## BTBD11 3.440940e-02 -2.929465e-02 5.114755e-03 5.649632e+00
## ZDHHC20 -1.158731e+00 -2.381648e-01 -1.396896e+00 1.719791e+02
## TTC12 1.950441e-02 -2.346526e-03 1.715788e-02 3.734875e+00
## ENOSF1 1.724788e-02 1.134507e-02 2.859295e-02 4.814372e+00
## CLEC4D -2.387697e+00 1.010784e+00 -1.376913e+00 1.791180e+02
## PSPH -2.468532e-02 3.320626e-02 8.520945e-03 4.751889e+00
## ATF3 5.150259e-02 -5.733625e-02 -5.833660e-03 3.711077e+00
## DRICH1 7.530588e-03 -2.661074e-03 4.869514e-03 8.545042e-01
## ZNF655 -2.190836e-01 1.450102e-01 -7.407340e-02 7.605659e+01
## ZNF785 5.996852e-03 1.651763e-03 7.648615e-03 1.976340e+00
## MBIP 2.247937e-02 -5.208085e-03 1.727129e-02 5.588820e+00
## UBE2G2 1.341141e-01 -2.167038e-02 1.124438e-01 4.120178e+01
## HINT1 9.680388e-02 3.251625e-01 4.219664e-01 8.097961e+01
## ELP1 2.852155e-02 4.246973e-02 7.099128e-02 2.037859e+01
## DPCD -2.164431e-02 3.214777e-02 1.050347e-02 3.232726e+00
## PXDC1 -2.092090e-04 9.256711e-03 9.047502e-03 1.297774e+00
## LRTOMT -1.320476e-02 -5.834810e-03 -1.903957e-02 5.318948e+00
## NAP1L1 9.714352e-01 -2.560101e-02 9.458342e-01 2.810142e+02
## KYAT3 -9.640921e-02 5.426918e-02 -4.214003e-02 2.314126e+01
## S100PBP -5.891413e-02 4.798155e-02 -1.093259e-02 2.305948e+01
## FIS1 -1.909870e-01 4.077055e-01 2.167184e-01 5.308226e+01
## TVP23C 9.752461e-04 -9.297257e-03 -8.322011e-03 1.814501e+00
## SLC51A -1.009571e-01 1.033677e-02 -9.062035e-02 4.219095e+00
## LRRC8B -4.740336e-02 2.669646e-03 -4.473371e-02 9.636119e+00
## ZNF75D -1.447125e-02 4.900182e-02 3.453057e-02 1.705072e+01
## PLXNA1 6.531670e-03 6.567995e-03 1.309967e-02 1.748965e+00
## TFAP4 6.858017e-03 5.595313e-03 1.245333e-02 1.811167e+00
## SIGLEC9 -3.513767e-01 1.366472e-01 -2.147295e-01 6.044614e+01
## EPDR1 -1.913513e-03 -4.922212e-03 -6.835725e-03 1.176926e+00
## NHEJ1 7.333170e-03 2.304847e-02 3.038164e-02 1.214376e+01
## ZNF483 1.466019e-02 -5.536605e-03 9.123590e-03 2.796777e+00
## CLUAP1 1.984710e-02 1.007314e-02 2.992024e-02 5.147531e+00
## CLEC12B -1.377937e-01 8.905488e-03 -1.288882e-01 1.293386e+01
## KIF3A 1.706542e-02 -1.979828e-03 1.508559e-02 3.951729e+00
## RIMS3 -6.930866e-03 1.079271e-02 3.861847e-03 2.478128e+00
## SLC7A11 -6.465666e-03 2.212144e-02 1.565578e-02 3.037073e+00
## SAR1B -1.294750e-01 7.510673e-02 -5.436824e-02 3.607592e+01
## SPTB -3.019669e-02 8.614221e-02 5.594552e-02 5.256692e+00
## NHLRC4 -1.956512e-03 1.167650e-02 9.719986e-03 9.591407e-01
## SERINC2 -2.021263e-02 -2.111179e-02 -4.132442e-02 3.447299e+00
## CLDN15 2.867573e-02 -3.494297e-03 2.518144e-02 8.737549e+00
## LNX2 -4.593529e-03 1.548771e-02 1.089418e-02 5.372403e+00
## VASH1 9.497256e-02 6.683100e-02 1.618036e-01 2.062135e+01
## SPOCK2 6.447748e-01 -3.168525e-02 6.130895e-01 8.982975e+01
## NSUN6 2.249929e-02 -5.835242e-03 1.666405e-02 5.652665e+00
## SCAPER -1.454186e-02 -2.087832e-02 -3.542018e-02 8.222480e+00
## NPIPB11 1.264970e-02 1.078749e-02 2.343719e-02 3.952164e+00
## MMP25 -5.330600e+00 -7.897469e-01 -6.120347e+00 8.946589e+02
## PHYKPL -1.632042e-01 1.228063e-01 -4.039791e-02 5.420775e+01
## NCKAP1L -7.997983e-01 4.075511e-02 -7.590432e-01 2.637425e+02
## POU5F1 -1.407383e-02 -1.637448e-04 -1.423758e-02 2.925267e+00
## HIBCH -4.461952e-02 2.394379e-02 -2.067573e-02 7.869389e+00
## RPN1 -5.449002e-01 3.107730e-01 -2.341273e-01 2.078619e+02
## MAML3 -1.875027e-01 4.569251e-02 -1.418102e-01 2.671977e+01
## ALS2CL 3.980651e-02 9.785483e-04 4.078506e-02 4.226670e+00
## CBWD5 -6.485003e-02 9.464525e-02 2.979522e-02 3.818268e+01
## ADTRP 1.948494e-02 7.464189e-03 2.694913e-02 2.555339e+00
## VPS72 -4.695882e-02 5.323490e-02 6.276083e-03 2.672480e+01
## CHRNA5 -2.974300e-03 4.902862e-03 1.928562e-03 5.431292e-01
## ZNF354C 9.669214e-03 8.390186e-03 1.805940e-02 2.682550e+00
## MSL3 -1.324188e+00 1.535562e-01 -1.170632e+00 2.073546e+02
## MSH5 5.931915e-03 1.140358e-02 1.733550e-02 3.778126e+00
## CMIP -1.884949e-01 1.248298e-03 -1.872466e-01 5.970908e+01
## VPS37B -2.210118e-01 2.106352e-01 -1.037663e-02 5.135728e+01
## PLXDC1 1.922779e-02 1.455386e-02 3.378165e-02 3.345739e+00
## TRIB3 2.265935e-02 4.404951e-02 6.670886e-02 9.108335e+00
## PPIL3 -3.326970e-02 3.422125e-02 9.515487e-04 9.161858e+00
## PDGFC -1.176735e-01 4.762173e-02 -7.005182e-02 8.568671e+00
## PITHD1 -2.427243e-02 1.384774e-01 1.142050e-01 3.342700e+01
## CDYL2 -3.346926e-02 -7.037619e-03 -4.050688e-02 9.220896e+00
## CHI3L2 5.566520e-02 2.607231e-02 8.173751e-02 8.805018e+00
## CLCN2 -1.287896e-05 4.461540e-03 4.448661e-03 7.830373e-01
## TFB1M 3.903900e-03 1.249643e-02 1.640033e-02 6.204165e+00
## JUN 5.802452e-02 -9.149805e-02 -3.347353e-02 1.295628e+01
## SEC13 -1.815401e-01 1.455595e-01 -3.598060e-02 5.413360e+01
## NADK2 2.364697e-02 -1.697510e-02 6.671869e-03 7.657185e+00
## CRYBG2 1.520389e-03 8.291597e-03 9.811985e-03 1.370705e+00
## CALHM5 -2.593406e-03 -5.313909e-03 -7.907315e-03 1.104768e+00
## ZC3H8 1.840908e-02 -4.046429e-03 1.436265e-02 6.266277e+00
## ARFIP1 1.028510e-01 -2.331352e-01 -1.302842e-01 5.110216e+01
## MGST1 7.086953e-02 -1.247252e-01 -5.385569e-02 2.674152e+01
## CD22 5.156594e-02 9.969910e-02 1.512650e-01 1.799009e+01
## ABCB9 -3.033629e-02 1.815300e-02 -1.218328e-02 1.464575e+00
## GLOD4 6.796089e-02 1.093773e-02 7.889862e-02 2.312738e+01
## MYL9 7.024198e-01 -1.002510e+00 -3.000902e-01 8.259736e+01
## PGAP2 -6.980347e-03 -3.772336e-02 -4.470371e-02 1.331604e+01
## SRSF8 7.439180e-02 2.453201e-02 9.892381e-02 2.285961e+01
## EHD4 -1.497929e-02 -4.459404e-02 -5.957332e-02 1.952976e+01
## ZSCAN18 3.939668e-02 -1.262080e-02 2.677587e-02 5.291161e+00
## CBFA2T2 7.000481e-03 2.699948e-02 3.399997e-02 1.133471e+01
## RIN2 -3.632719e-02 -5.405042e-02 -9.037761e-02 1.398784e+01
## MFN2 -9.869833e-01 8.107199e-01 -1.762634e-01 1.629244e+02
## PTPRO -3.016455e-02 -4.242556e-02 -7.259011e-02 9.098954e+00
## LRRC25 -1.000410e+00 6.642410e-02 -9.339863e-01 2.524165e+02
## DUSP10 1.612398e-02 -2.096488e-02 -4.840903e-03 4.998756e+00
## CARMIL2 6.275867e-02 2.805908e-02 9.081775e-02 9.665258e+00
## PDE4DIP 1.637173e-02 6.185154e-02 7.822327e-02 1.750962e+01
## C9orf40 3.925720e-02 8.611036e-03 4.786824e-02 6.742911e+00
## CDK5R1 -2.386444e-02 -1.577837e-01 -1.816482e-01 2.147907e+01
## CASP1 -5.527477e-01 -1.834599e+00 -2.387347e+00 5.169677e+02
## PRPSAP2 1.600873e-02 1.965211e-02 3.566084e-02 1.592003e+01
## SLITRK4 8.067492e-03 -2.673736e-02 -1.866987e-02 4.732474e+00
## PYGO2 3.646295e-02 6.550200e-02 1.019650e-01 3.409640e+01
## U2AF1L5 -3.148600e-02 -1.421960e-01 -1.736820e-01 4.876335e+01
## CHML 2.448278e-02 7.146663e-04 2.519745e-02 5.941630e+00
## PIF1 -9.126839e-03 1.475845e-02 5.631609e-03 1.555607e+00
## LOXHD1 1.499252e-02 -5.235011e-02 -3.735759e-02 6.948033e+00
## TRIM16L 7.484248e-03 -1.376019e-04 7.346646e-03 1.570366e+00
## SAR1A 9.076410e-02 -2.409989e-01 -1.502348e-01 9.043598e+01
## MMS19 3.178813e-02 5.238360e-02 8.417174e-02 3.437427e+01
## UNG 2.451246e-02 5.621368e-04 2.507460e-02 6.127753e+00
## TRMT11 1.458069e-02 1.473446e-02 2.931516e-02 5.286538e+00
## SDC4 3.404898e-02 -6.317731e-02 -2.912833e-02 3.857826e+00
## PRKRA 2.557550e-02 -1.100022e-03 2.447548e-02 9.975779e+00
## SEC11C -4.358190e-01 2.841530e-01 -1.516660e-01 3.590295e+01
## MAP2K7 5.730641e-03 4.504868e-02 5.077932e-02 1.644871e+01
## FAM53B -7.600837e-03 1.580973e-01 1.504965e-01 6.358495e+01
## MAEA -2.310590e-01 1.276573e-01 -1.034017e-01 5.262908e+01
## TMPPE -1.712472e-02 9.732596e-03 -7.392120e-03 2.814092e+00
## HDAC1 7.066204e-02 6.455979e-02 1.352218e-01 9.522666e+01
## ARF3 -4.077675e-01 -3.711573e-02 -4.448832e-01 1.802203e+02
## TRA2A 8.605176e-02 -2.472755e-01 -1.612237e-01 9.558288e+01
## CAMK4 7.219548e-02 5.480575e-02 1.270012e-01 1.341468e+01
## SLC35B1 -7.682296e-02 5.058760e-02 -2.623535e-02 2.410789e+01
## ZNF583 6.473234e-03 2.430398e-03 8.903631e-03 2.539402e+00
## LGALS3BP 5.510941e-02 -3.375778e-01 -2.824684e-01 2.137469e+01
## ANKRD46 4.114071e-03 1.305169e-02 1.716576e-02 5.468006e+00
## ZNF768 -9.751199e-03 3.489321e-02 2.514202e-02 9.028955e+00
## IFI6 1.880367e+00 -3.084898e+00 -1.204530e+00 2.052969e+02
## C2 -8.720875e-03 -9.801246e-02 -1.067333e-01 9.661402e+00
## SLX4IP -7.794712e-03 -1.863034e-02 -2.642505e-02 6.511272e+00
## TINF2 -3.482621e-01 1.662772e-01 -1.819849e-01 1.076528e+02
## ADSL 7.741382e-02 3.194849e-02 1.093623e-01 4.044540e+01
## TTN -1.622704e-01 3.663220e-02 -1.256382e-01 2.737567e+01
## KY 6.224614e-03 1.885596e-02 2.508057e-02 3.496913e+00
## ZNF639 4.358915e-02 -8.824270e-03 3.476488e-02 1.376298e+01
## BACH2 3.377710e-02 2.657548e-02 6.035258e-02 6.851401e+00
## DEDD -1.504289e-01 -4.191901e-02 -1.923479e-01 6.062038e+01
## UACA 1.823034e-02 -1.386761e-02 4.362730e-03 3.029000e+00
## FGF13 -8.451016e-03 -5.318736e-02 -6.163838e-02 5.826294e+00
## GSPT2 1.078297e-02 9.600488e-03 2.038346e-02 3.967580e+00
## FZD6 1.144640e-02 -3.978930e-03 7.467471e-03 1.551125e+00
## PGLYRP1 -1.119031e+00 1.667447e+00 5.484161e-01 8.586081e+01
## AUH -1.592308e-02 2.327215e-02 7.349074e-03 6.933930e+00
## MRPL10 5.318651e-02 -5.010325e-02 3.083253e-03 2.415779e+01
## TMEM106A -4.919284e-03 -3.607958e-02 -4.099887e-02 1.064136e+01
## C17orf100 -9.412015e-04 4.750085e-03 3.808884e-03 1.054964e+00
## PFAS 6.770240e-03 1.036629e-02 1.713653e-02 3.572393e+00
## WDFY1 4.513163e-03 -2.130706e-01 -2.085575e-01 4.960455e+01
## AK5 2.616590e-02 -6.745503e-03 1.942039e-02 2.385579e+00
## GATB 2.164693e-02 -8.625101e-04 2.078442e-02 7.725042e+00
## TCF4 -6.035203e-02 3.158130e-03 -5.719390e-02 9.909642e+00
## FAM104B -6.724506e-03 1.649016e-02 9.765656e-03 5.192011e+00
## DYNLT3 4.427316e-02 -3.087098e-02 1.340218e-02 1.257855e+01
## C1orf109 -3.528950e-03 1.383796e-02 1.030901e-02 3.256964e+00
## PPME1 -3.457594e-02 4.268241e-02 8.106477e-03 1.081150e+01
## TCTEX1D4 -7.033908e-03 6.355712e-03 -6.781958e-04 7.912905e-01
## POLR1D 8.728779e-02 9.052955e-02 1.778173e-01 6.077475e+01
## TNKS1BP1 8.923270e-03 2.151164e-03 1.107443e-02 2.019099e+00
## TPT1 2.346331e+00 1.029775e+01 1.264408e+01 2.890233e+03
## ALDH5A1 1.497779e-02 5.509485e-03 2.048727e-02 3.597204e+00
## TNS1 -6.913458e-02 1.241277e-01 5.499308e-02 9.075871e+00
## LAP3 8.178367e-01 -1.082433e+00 -2.645962e-01 1.032197e+02
## AUTS2 2.026536e-02 -6.984260e-03 1.328110e-02 2.561553e+00
## DKC1 2.914234e-02 2.866227e-02 5.780461e-02 2.408768e+01
## CTSH -4.473608e-01 6.222762e-01 1.749154e-01 1.260717e+02
## C18orf25 -1.696469e-01 -2.743931e-01 -4.440401e-01 6.291991e+01
## MAGEE1 9.082750e-03 1.498829e-03 1.058158e-02 1.387433e+00
## MMP9 -5.820460e+00 1.291845e+00 -4.528615e+00 3.462148e+02
## ZMYND15 -2.959826e-02 2.234199e-02 -7.256279e-03 3.878085e+00
## RMI2 2.350550e-02 -1.510389e-02 8.401610e-03 2.761673e+00
## LCK 5.740543e-01 1.227098e-01 6.967641e-01 7.904417e+01
## GUCY1B1 2.415007e-02 -6.640428e-02 -4.225420e-02 1.001657e+01
## MXD3 -1.055427e-01 -1.191124e-02 -1.174539e-01 2.481105e+01
## NR6A1 -4.058723e-02 3.547368e-02 -5.113550e-03 8.241806e+00
## RPS6 4.262787e+00 2.431651e+00 6.694438e+00 1.194081e+03
## CD6 4.168944e-01 1.684182e-02 4.337362e-01 4.376320e+01
## RASGRF2 1.488469e-02 1.573002e-02 3.061471e-02 3.540063e+00
## AZIN2 2.520621e-03 3.632955e-03 6.153577e-03 9.100170e-01
## CUL1 3.251230e-02 -1.568102e-01 -1.242979e-01 3.484763e+01
## UQCRC2 1.361485e-01 -3.532904e-02 1.008195e-01 9.528149e+01
## TUBA1B -7.293171e-01 1.551046e+00 8.217290e-01 4.102371e+02
## ZNF530 6.753769e-03 2.877660e-03 9.631429e-03 2.179707e+00
## ATIC 7.132651e-02 1.200275e-02 8.332926e-02 1.864659e+01
## BCL11B 1.336836e-01 2.258367e-02 1.562673e-01 1.899272e+01
## PHF23 -1.968946e-01 2.248064e-01 2.791183e-02 6.828668e+01
## MAPKAPK5 2.794283e-02 1.090573e-02 3.884856e-02 2.299897e+01
## FGR -5.712828e+00 1.772825e+00 -3.940003e+00 1.197675e+03
## HSD3B7 -4.671684e-02 1.960709e-02 -2.710976e-02 5.049075e+00
## RPL7L1 5.596202e-02 5.444772e-02 1.104097e-01 6.557327e+01
## DAPK1 -3.733557e-02 -1.180893e-01 -1.554249e-01 3.452947e+01
## COL9A2 -2.475672e-01 -3.474705e-01 -5.950377e-01 3.710161e+01
## GTF3C2 -1.385104e-02 5.648347e-02 4.263243e-02 3.179523e+01
## FOSB -1.815978e-01 4.916489e-01 3.100511e-01 2.775276e+01
## ZNF101 9.142577e-02 -4.455873e-03 8.696990e-02 3.606359e+01
## MCUB 1.427212e-01 -3.255770e-02 1.101635e-01 3.449203e+01
## TP53I3 -1.612407e-01 1.158308e-01 -4.540997e-02 1.855969e+01
## RPL10A 1.783265e+00 5.077955e-01 2.291060e+00 3.855645e+02
## SIRPA -2.495257e+00 1.384153e+00 -1.111105e+00 4.324179e+02
## AGAP9 5.149083e-03 8.544988e-03 1.369407e-02 2.141719e+00
## KRT8 -5.049237e-03 7.571602e-04 -4.292077e-03 1.168255e+00
## ZBTB22 -2.843531e-02 9.458721e-02 6.615190e-02 2.735622e+01
## C17orf75 4.560264e-03 1.343336e-02 1.799363e-02 7.432814e+00
## LY6G5C 1.580635e-02 -1.800384e-02 -2.197486e-03 3.043494e+00
## SLC9B2 7.039036e-03 5.724833e-03 1.276387e-02 2.501486e+00
## XBP1 -1.177558e+00 8.091720e-01 -3.683864e-01 1.621142e+02
## AP3D1 -8.636085e-02 6.630480e-02 -2.005605e-02 3.915788e+01
## RIOK1 2.692513e-02 -1.121469e-02 1.571044e-02 9.048294e+00
## TRIM22 -4.708402e+00 -8.751935e-01 -5.583596e+00 6.802649e+02
## TGIF1 5.501002e-02 -8.916291e-03 4.609373e-02 1.486168e+01
## RBX1 -3.588424e-01 5.534204e-01 1.945780e-01 6.866941e+01
## CHMP7 1.399370e-01 5.278739e-02 1.927243e-01 5.313369e+01
## N6AMT1 9.566833e-03 4.358779e-03 1.392561e-02 2.734483e+00
## ZNF337 4.695526e-02 1.286187e-02 5.981713e-02 1.223004e+01
## PABPC4 1.211314e-01 4.451746e-02 1.656489e-01 4.431551e+01
## TC2N 1.581188e-01 5.297450e-02 2.110933e-01 3.121257e+01
## NDUFB6 -9.128821e-02 9.429015e-02 3.001946e-03 2.725509e+01
## TBC1D4 9.628668e-02 6.037405e-02 1.566607e-01 1.707903e+01
## VMA21 4.322885e-02 -1.291071e-02 3.031814e-02 1.933178e+01
## TNFRSF25 5.455981e-02 1.668797e-02 7.124778e-02 6.405671e+00
## DDO -3.851017e-03 -5.125514e-03 -8.976531e-03 1.137067e+00
## CTPS2 1.050795e-02 -4.483648e-03 6.024297e-03 3.190256e+00
## ZCCHC4 2.617570e-03 7.423394e-03 1.004096e-02 3.306997e+00
## PIK3C2B 1.436877e-02 2.046785e-02 3.483662e-02 6.155341e+00
## CNTNAP3 -8.048970e-01 2.653385e-01 -5.395585e-01 6.906093e+01
## SRD5A1 1.213984e-02 -3.745200e-02 -2.531217e-02 1.287428e+01
## MAN1C1 2.983894e-02 8.456894e-03 3.829583e-02 5.655100e+00
## TNFRSF13C 2.395622e-02 3.280317e-02 5.675939e-02 7.707114e+00
## TESPA1 1.499342e-01 9.529088e-03 1.594633e-01 2.351743e+01
## FAM117B 5.447652e-02 -3.080084e-02 2.367568e-02 1.366077e+01
## RGS3 -2.312843e-01 -4.836253e-02 -2.796468e-01 5.650161e+01
## CLSPN -2.716386e-03 -1.517692e-02 -1.789331e-02 4.133007e+00
## ZNF780B 1.762808e-03 2.480786e-02 2.657067e-02 8.301405e+00
## HNRNPH1 5.554849e-01 -1.682313e-01 3.872536e-01 1.836246e+02
## TLR7 -9.962267e-02 -6.620563e-02 -1.658283e-01 1.545053e+01
## WDR55 -3.964277e-02 2.291137e-02 -1.673140e-02 1.912934e+01
## AK6 -7.030307e-03 2.773923e-02 2.070892e-02 8.535644e+00
## ZNF445 -1.444064e-01 6.842408e-02 -7.598231e-02 3.168285e+01
## ASPRV1 3.785849e-01 -2.363121e-01 1.422728e-01 3.861577e+01
## GFUS -9.495605e-02 1.717427e-01 7.678667e-02 2.559143e+01
## INTS12 -3.453149e-03 -3.828864e-02 -4.174179e-02 1.725507e+01
## TUBG1 -3.057883e-02 4.491798e-02 1.433916e-02 5.940428e+00
## SNCA -2.828210e-01 5.564456e-01 2.736246e-01 3.676063e+01
## GZMK 1.077247e-01 1.430447e-01 2.507694e-01 2.778115e+01
## SH2D4A 2.048365e-02 -1.118253e-02 9.301124e-03 1.055651e+00
## GOT2 6.444237e-02 -1.576253e-02 4.867984e-02 1.695415e+01
## CCDC144A -3.482182e-02 2.330744e-02 -1.151438e-02 3.324414e+00
## SNED1 1.371808e-02 4.725326e-03 1.844341e-02 3.287545e+00
## ZNF366 -2.612515e-02 -1.511810e-02 -4.124326e-02 3.231665e+00
## PECR -1.505146e-01 1.441324e-01 -6.382220e-03 2.002488e+01
## ZNF619 -3.165177e-03 1.383069e-02 1.066551e-02 5.841133e+00
## EEF1B2 7.152490e-01 1.040115e+00 1.755364e+00 3.136372e+02
## MAL 1.777192e-01 2.440212e-03 1.801594e-01 1.532058e+01
## PELATON -8.613041e-01 3.454706e-01 -5.158335e-01 1.215682e+02
## MMP24-AS1-EDEM2 -7.691761e-03 1.096508e-02 3.273320e-03 2.704631e+00
## ZNF566 6.984427e-03 4.329421e-03 1.131385e-02 2.381404e+00
## RCSD1 -4.176618e-01 6.223251e-01 2.046633e-01 2.086673e+02
## MGRN1 -2.204820e-01 2.279926e-01 7.510583e-03 4.520878e+01
## ZKSCAN2 3.950327e-03 3.548459e-03 7.498785e-03 1.997355e+00
## LZIC -1.263421e-02 4.920066e-02 3.656645e-02 3.128674e+01
## CCZ1 -1.176234e-01 7.733469e-02 -4.028875e-02 2.977204e+01
## ZNF682 4.708409e-03 -1.389625e-02 -9.187837e-03 1.631770e+00
## PRKCH 2.075824e-01 3.080235e-02 2.383847e-01 4.895396e+01
## SRBD1 -1.029220e-01 -7.050441e-02 -1.734264e-01 3.101500e+01
## RPA2 -7.653879e-02 1.485736e-01 7.203480e-02 5.804162e+01
## NSUN7 -2.644510e-01 1.600067e-01 -1.044443e-01 2.334205e+01
## COX11 2.952565e-02 2.315459e-03 3.184111e-02 9.616541e+00
## RNF157 5.327701e-02 2.825272e-02 8.152973e-02 1.060806e+01
## CASP2 -1.115421e-01 1.069693e-01 -4.572862e-03 3.853760e+01
## SIT1 7.934724e-02 3.175378e-02 1.111010e-01 1.382116e+01
## TUBA1A -4.018382e+00 4.043263e+00 2.488100e-02 8.119862e+02
## RRBP1 -1.475557e-01 4.501212e-02 -1.025435e-01 3.984431e+01
## PCNT 1.764652e-02 3.006385e-02 4.771037e-02 1.302335e+01
## SULF2 4.177271e-01 -6.039382e-01 -1.862111e-01 1.161943e+02
## POLR3A -2.360035e-02 2.257930e-02 -1.021052e-03 9.810883e+00
## SEC16A -1.446367e-01 7.797201e-02 -6.666470e-02 5.170065e+01
## SCLT1 -1.628391e-01 -1.386566e-02 -1.767048e-01 3.988548e+01
## KCNA3 -2.449411e-02 2.959298e-02 5.098867e-03 4.606723e+00
## TMEM14B -2.688604e-03 1.026079e-01 9.991933e-02 3.182721e+01
## HAVCR2 -8.159337e-03 -9.577938e-02 -1.039387e-01 2.573626e+01
## DALRD3 -4.101933e-04 5.293618e-02 5.252599e-02 1.644585e+01
## RGS17 4.511766e-03 -4.638899e-03 -1.271326e-04 8.739626e-01
## HBA1 -2.361744e+01 2.288643e+01 -7.310131e-01 1.667291e+03
## SMAD1 -1.108952e-02 -8.858135e-03 -1.994766e-02 3.636784e+00
## SIRT3 -6.601991e-03 3.080812e-02 2.420613e-02 8.250311e+00
## RPL5 1.910121e+00 1.113184e+00 3.023305e+00 6.126065e+02
## GALNT2 -2.869157e-01 1.264730e-02 -2.742684e-01 4.087008e+01
## TEF 2.148099e-02 6.525413e-03 2.800640e-02 3.927073e+00
## ZNF891 2.537877e-03 1.471202e-03 4.009078e-03 7.390112e-01
## FNIP2 -1.170029e-02 -3.628112e-02 -4.798141e-02 9.233160e+00
## ALCAM -2.434497e-01 8.963420e-02 -1.538155e-01 2.650211e+01
## CFAP20 1.271311e-02 4.865194e-03 1.757830e-02 9.409614e+00
## LHX4 -6.415547e-02 8.515798e-02 2.100252e-02 5.755695e+00
## ZNF577 1.184169e-02 5.616656e-03 1.745835e-02 4.833831e+00
## CFD -2.571624e-01 7.469730e-02 -1.824651e-01 2.060355e+01
## SMPD2 -3.431555e-02 5.180740e-02 1.749184e-02 1.086746e+01
## GOLGA8B 2.165630e-01 -3.634322e-02 1.802197e-01 3.003878e+01
## BLVRB -2.549131e-01 4.164050e-01 1.614919e-01 4.367586e+01
## NKD1 8.631747e-03 -2.749067e-02 -1.885892e-02 3.876576e+00
## FBLN5 2.097537e-02 3.090969e-03 2.406634e-02 2.666329e+00
## RPA3 -2.299145e-02 6.020038e-02 3.720893e-02 1.321852e+01
## ZNF436 -2.491808e-02 2.422727e-02 -6.908165e-04 7.393578e+00
## TMEM245 3.015433e-02 4.330889e-02 7.346323e-02 1.805798e+01
## SPRY3 -2.731809e-02 7.524777e-05 -2.724284e-02 4.559582e+00
## SIPA1L1 -1.856713e-01 -1.423728e-01 -3.280441e-01 7.976661e+01
## RHOH 1.048824e-01 5.368450e-02 1.585669e-01 3.171536e+01
## TRIM34 -1.364999e-01 1.511045e-02 -1.213895e-01 3.478315e+01
## SMIM27 -6.502519e-02 8.212261e-02 1.709742e-02 1.379036e+01
## SUCNR1 1.525116e-02 -3.590207e-02 -2.065091e-02 3.860900e+00
## ATXN7L1 -2.772490e-02 -7.748771e-03 -3.547368e-02 9.068632e+00
## KCNC4 -4.069717e-03 -2.046882e-03 -6.116599e-03 8.713637e-01
## TIPIN -3.504113e-03 -6.260180e-03 -9.764293e-03 2.310445e+00
## SIAH2 -1.110531e-01 3.378553e-01 2.268022e-01 6.695410e+01
## P2RY1 2.584075e-02 -5.717674e-02 -3.133599e-02 4.459957e+00
## PCSK7 1.272253e-01 5.344138e-02 1.806667e-01 4.505241e+01
## NR1D1 1.460437e-02 4.014573e-04 1.500583e-02 1.989791e+00
## ZMYND10 1.279861e-02 1.530177e-04 1.295163e-02 1.605744e+00
## NANS -1.434872e-01 2.959718e-02 -1.138900e-01 2.880041e+01
## BAHCC1 4.184335e-03 -8.200506e-03 -4.016171e-03 1.478630e+00
## LDAH 2.198934e-02 -5.007749e-03 1.698159e-02 6.194975e+00
## FBXO10 -1.208640e-02 9.842958e-03 -2.243445e-03 2.625028e+00
## ANKS1A -1.664782e-01 -1.424951e-02 -1.807277e-01 2.610817e+01
## IZUMO4 5.561578e-03 5.880560e-03 1.144214e-02 1.271574e+00
## HMGN5 -1.205660e-02 7.011818e-03 -5.044787e-03 2.033373e+00
## AKAP5 1.014934e-02 1.183799e-04 1.026772e-02 1.764332e+00
## OPLAH -1.212200e-01 8.619486e-02 -3.502512e-02 8.764658e+00
## MTSS2 -2.421820e-03 6.418442e-03 3.996622e-03 7.541646e-01
## PSMD11 -9.016560e-03 -4.579513e-02 -5.481169e-02 3.415894e+01
## CACNA1E -5.850597e-02 -6.655620e-02 -1.250622e-01 1.325880e+01
## NECAB1 -6.337025e-02 -6.035287e-03 -6.940553e-02 4.397409e+00
## MRPS6 1.038947e-01 -3.130185e-02 7.259281e-02 2.460458e+01
## NLN -2.012737e-02 3.544756e-02 1.532019e-02 7.936840e+00
## NLRC5 -9.608197e-01 -8.655074e-02 -1.047370e+00 2.352592e+02
## LBH 3.062167e-01 8.903408e-02 3.952508e-01 6.158572e+01
## TFDP2 -2.155966e-02 7.632282e-02 5.476316e-02 1.485058e+01
## RNASE4 8.163602e-03 -6.324429e-02 -5.508069e-02 1.290428e+01
## NPHP4 -4.213385e-03 1.030774e-02 6.094358e-03 3.062974e+00
## ERGIC2 -2.136276e-01 4.433827e-02 -1.692893e-01 5.110766e+01
## PLOD1 -4.539035e-01 3.091995e-01 -1.447039e-01 8.813147e+01
## IGKC -2.358027e+01 1.005962e+01 -1.352065e+01 1.619772e+03
## HPSE -5.857309e-01 1.468492e-01 -4.388817e-01 8.443525e+01
## AP1M2 4.097884e-03 -2.236711e-02 -1.826923e-02 3.628289e+00
## ALPL -6.846906e+00 3.281044e+00 -3.565862e+00 7.099232e+02
## KCTD11 3.385539e-02 -3.017192e-02 3.683469e-03 1.050792e+01
## PTPRM 3.974172e-03 -1.846797e-02 -1.449380e-02 2.456578e+00
## SERPINB8 -5.704556e-02 -5.778347e-02 -1.148290e-01 3.233065e+01
## BTN3A1 2.342978e-01 -1.441297e+00 -1.206999e+00 2.566035e+02
## INPP4B 1.273177e-02 7.273734e-02 8.546911e-02 1.039400e+01
## ZBTB32 -2.021985e-02 1.421994e-02 -5.999911e-03 1.441802e+00
## FAM160A2 -2.779257e-01 1.908692e-01 -8.705653e-02 6.042077e+01
## SPATA33 -2.593872e-03 9.352740e-03 6.758868e-03 1.245432e+00
## CYBRD1 -3.889555e-01 9.340194e-02 -2.955535e-01 4.784594e+01
## RRP12 1.054841e-01 2.814173e-01 3.869014e-01 7.295115e+01
## WASF3 -3.621780e-03 -5.183859e-03 -8.805638e-03 1.166786e+00
## VSTM1 -1.633592e-01 3.533080e-01 1.899488e-01 3.397497e+01
## RPP38 2.964319e-03 1.384812e-02 1.681244e-02 9.443414e+00
## PCCA 1.256967e-02 -3.351385e-03 9.218290e-03 3.123461e+00
## UBASH3B 4.211218e-02 -1.669052e-01 -1.247930e-01 4.584519e+01
## MAPK7 6.312579e-03 -2.278787e-02 -1.647529e-02 7.408218e+00
## OSGEPL1 1.341123e-02 1.027889e-04 1.351402e-02 3.097733e+00
## SLC37A1 -1.456066e-03 -2.774593e-02 -2.920200e-02 1.032149e+01
## SP140 2.647374e-01 -2.908944e-01 -2.615697e-02 4.515005e+01
## MED22 -8.956664e-02 6.871991e-02 -2.084673e-02 3.048407e+01
## FBXO7 -2.555004e-01 8.204050e-01 5.649045e-01 1.271411e+02
## PTPN18 -1.959735e-01 -2.306914e-01 -4.266649e-01 1.747350e+02
## STMN3 1.065078e-01 6.677935e-02 1.732872e-01 1.759112e+01
## IFT57 -3.785859e-02 6.529737e-02 2.743879e-02 1.567402e+01
## RTP4 5.029841e-01 -5.713344e-01 -6.835029e-02 4.000765e+01
## IRAK4 -3.912870e-01 4.006644e-02 -3.512206e-01 1.000632e+02
## KLHDC8B 1.246038e-01 -3.088928e-01 -1.842889e-01 3.884528e+01
## KRT23 -8.318110e-01 -8.805024e-02 -9.198613e-01 1.371529e+02
## IFT88 -1.681652e-02 2.243975e-02 5.623229e-03 7.205561e+00
## NOD1 5.688824e-02 -6.292571e-02 -6.037477e-03 1.377144e+01
## TTLL1 7.409354e-03 4.821742e-03 1.223110e-02 2.397822e+00
## CSNK1G1 -8.142477e-02 2.192270e-02 -5.950207e-02 2.278862e+01
## ING5 3.313964e-02 3.086071e-02 6.400035e-02 1.971061e+01
## ZNF714 -1.270537e-02 1.651109e-03 -1.105426e-02 3.046234e+00
## ZNF93 8.000126e-04 -4.874651e-02 -4.794649e-02 7.385221e+00
## PTMS -4.475750e-02 7.021302e-02 2.545551e-02 9.598917e+00
## SLC33A1 -3.279212e-02 3.950863e-02 6.716506e-03 1.850734e+01
## C2CD5 -1.608846e-01 1.007832e-01 -6.010138e-02 3.936890e+01
## SDF2L1 -9.353952e-02 4.786523e-02 -4.567430e-02 6.901896e+00
## PTAFR -1.760199e+00 1.881830e+00 1.216310e-01 5.063361e+02
## TMEM121B -8.466381e-02 -1.116401e-01 -1.963039e-01 2.678901e+01
## TUBE1 1.351102e-02 7.493948e-03 2.100496e-02 4.227088e+00
## TAL1 -9.883175e-02 1.399325e-01 4.110076e-02 1.647538e+01
## MAPK8 -2.717712e-02 3.684357e-02 9.666456e-03 1.493970e+01
## BMPR2 -2.829234e-02 -7.208377e-02 -1.003761e-01 2.047370e+01
## C1GALT1 -1.285304e-01 -1.706866e-01 -2.992170e-01 5.852892e+01
## RCC1 4.632010e-02 3.953651e-05 4.635963e-02 1.779201e+01
## CD3D 5.792003e-01 5.863026e-02 6.378305e-01 6.773680e+01
## NUDT5 -7.368706e-01 1.250887e-01 -6.117819e-01 8.124598e+01
## TMC4 2.497094e-02 -1.386503e-02 1.110591e-02 3.069237e+00
## CD3E 7.437070e-01 3.062630e-02 7.743333e-01 9.747340e+01
## LRRC7 5.543703e-03 2.510662e-04 5.794770e-03 1.081276e+00
## SFTPB -5.007108e-04 -2.596191e-03 -3.096902e-03 4.215140e-01
## NOL11 6.337217e-02 -8.228563e-03 5.514360e-02 2.049151e+01
## RPL27 6.233418e-01 2.253829e+00 2.877171e+00 5.364111e+02
## NPIPB5 -2.766597e-02 7.786306e-02 5.019709e-02 1.996691e+01
## TENT5A 4.125468e-02 -1.651883e-01 -1.239336e-01 3.525549e+01
## FCGR3A 5.072988e+00 -4.040474e+00 1.032514e+00 9.488448e+02
## LGALS8 -4.870554e-01 1.741842e-01 -3.128712e-01 9.206726e+01
## TRMT61B 1.502830e-02 -7.540138e-03 7.488165e-03 4.130272e+00
## CTC1 -4.255124e-02 1.273218e-01 8.477058e-02 5.187776e+01
## C11orf95 1.433054e-03 8.308009e-03 9.741062e-03 2.255881e+00
## DIMT1 3.010593e-02 4.280379e-03 3.438631e-02 8.100835e+00
## AQP3 1.693860e-03 1.373168e-01 1.390107e-01 2.209972e+01
## SAAL1 1.813024e-02 -6.662403e-03 1.146784e-02 5.465500e+00
## TTC19 4.416618e-02 -1.659381e-02 2.757237e-02 1.305885e+01
## POLR2C -1.293742e-01 1.407066e-01 1.133237e-02 6.906363e+01
## FOXRED1 -2.925008e-02 4.505382e-02 1.580375e-02 1.197308e+01
## NOTCH2NLA -1.692338e-02 1.675920e-02 -1.641793e-04 3.364373e+00
## ZNF792 1.936889e-02 9.207584e-03 2.857647e-02 6.170039e+00
## TRAF1 5.431000e-02 5.789396e-02 1.122040e-01 2.053752e+01
## TOP3A -1.191108e-01 6.479342e-02 -5.431733e-02 4.777727e+01
## MARCHF3 -7.624760e-03 2.296707e-02 1.534231e-02 2.788054e+00
## CHFR -9.481288e-02 7.865777e-02 -1.615511e-02 4.144115e+01
## KPNA4 -4.464484e-01 1.288463e-02 -4.335637e-01 1.026719e+02
## HNRNPA1 1.497138e+00 -2.706271e-02 1.470075e+00 4.931304e+02
## SLC36A1 -3.113119e-01 4.113122e-02 -2.701807e-01 5.264224e+01
## ZC3H12C 1.666394e-03 -7.768958e-03 -6.102564e-03 1.611875e+00
## RAD1 -1.347412e-03 1.727155e-02 1.592414e-02 8.560161e+00
## CHSY1 -3.883319e-01 -2.544054e-01 -6.427372e-01 1.093149e+02
## MAP7D3 1.540641e-02 1.091434e-03 1.649784e-02 5.611339e+00
## SH3BP4 1.947671e-03 -5.375439e-03 -3.427769e-03 8.925677e-01
## SC5D -5.614306e-03 -2.150825e-02 -2.712256e-02 9.730385e+00
## PIGQ -1.678516e-02 6.602437e-02 4.923920e-02 6.741879e+00
## FAM185A 2.729826e-03 5.396278e-03 8.126104e-03 2.421610e+00
## MTMR2 2.170839e-02 -1.656785e-02 5.140547e-03 7.173805e+00
## RBM38 -2.245110e-01 4.540558e-01 2.295448e-01 5.379515e+01
## EMC7 -1.151752e-01 3.115588e-02 -8.401931e-02 4.423388e+01
## ADCY3 -1.411300e-02 -1.938594e-01 -2.079724e-01 1.963144e+01
## IFT81 -6.551420e-03 4.688943e-03 -1.862477e-03 1.196678e+00
## ZNF559 4.092670e-02 1.188451e-02 5.281120e-02 1.360552e+01
## SERBP1 9.996911e-02 5.436555e-02 1.543347e-01 1.195970e+02
## CAMK1D -6.289794e-01 1.134930e-01 -5.154863e-01 8.384252e+01
## BNIP3 1.095022e-02 1.009265e-02 2.104287e-02 5.759189e+00
## UBIAD1 2.358036e-02 1.572844e-02 3.930880e-02 1.096037e+01
## PYCR1 -3.088116e-02 1.838767e-02 -1.249350e-02 2.020009e+00
## METTL2B 2.880810e-02 -4.900784e-03 2.390731e-02 1.321691e+01
## MIS12 1.007210e-02 2.404676e-02 3.411886e-02 1.324704e+01
## RPL17 1.741026e+00 2.193024e+00 3.934050e+00 7.536195e+02
## TCEAL1 1.137321e-02 -2.879612e-03 8.493599e-03 3.022980e+00
## GIMAP2 -3.337624e-01 -9.625652e-02 -4.300189e-01 9.007649e+01
## RAB3IP 7.668154e-03 5.040395e-02 5.807211e-02 1.368427e+01
## NELFCD 5.146506e-02 7.213196e-03 5.867826e-02 2.048409e+01
## LPCAT3 -2.381966e-01 1.157544e-01 -1.224423e-01 4.303278e+01
## CD47 -1.454674e-01 2.137906e-01 6.832317e-02 1.212375e+02
## DONSON 1.554959e-02 -1.709283e-02 -1.543237e-03 6.118128e+00
## RPL7 3.032497e+00 2.801642e+00 5.834139e+00 1.020900e+03
## ZFAND1 4.024955e-02 6.156254e-03 4.640580e-02 1.830822e+01
## TACC3 -4.384568e-01 5.924783e-01 1.540215e-01 1.445115e+02
## FAM118A -1.404514e-01 -2.548252e-02 -1.659339e-01 1.963066e+01
## SLC6A12 -7.256718e-03 -3.276261e-02 -4.001933e-02 6.040245e+00
## PLEKHA1 2.839600e-02 3.751239e-02 6.590839e-02 1.143303e+01
## GOLGA8A -6.086165e-02 1.827111e-01 1.218494e-01 2.618411e+01
## TRIM7 1.081384e-02 -2.397250e-02 -1.315865e-02 4.249167e+00
## KIF5C 1.221433e-02 -2.318278e-03 9.896050e-03 1.590512e+00
## FBXO4 8.694282e-03 6.756852e-03 1.545113e-02 3.891992e+00
## ENC1 8.761935e-02 -1.387253e-01 -5.110594e-02 1.469929e+01
## GNAL 1.355944e-02 3.776079e-02 5.132023e-02 1.422536e+01
## LOC283710 -1.972354e-02 6.570415e-03 -1.315312e-02 1.298925e+00
## ZNF324B 1.225735e-03 5.107382e-03 6.333117e-03 1.494305e+00
## C3orf33 4.276404e-03 2.426400e-03 6.702803e-03 1.398817e+00
## NCSTN -4.068455e-01 -9.054509e-02 -4.973906e-01 1.517819e+02
## TMEM38B 1.268725e-02 -2.063402e-03 1.062385e-02 3.900253e+00
## GSTM2 -2.452626e-02 -1.154436e-01 -1.399699e-01 1.345438e+01
## ANXA2R 1.418025e-01 -1.417729e-02 1.276252e-01 1.930509e+01
## C5orf34 -3.255592e-04 3.678517e-03 3.352958e-03 6.649261e-01
## NRIP1 1.876536e-02 -1.050050e-01 -8.623959e-02 2.160272e+01
## ANAPC1 -9.672892e-03 8.931758e-02 7.964469e-02 4.388257e+01
## DOCK4 -1.332545e-01 9.484463e-02 -3.840985e-02 1.922267e+01
## LCN2 -2.253891e+00 6.240678e+00 3.986787e+00 2.651809e+02
## DCUN1D2 -1.190691e-03 1.543962e-02 1.424893e-02 7.969130e+00
## GMPPB -1.008927e-01 5.097369e-02 -4.991901e-02 1.559144e+01
## SERPINB2 6.718688e-02 -1.098347e-01 -4.264777e-02 6.219727e+00
## MEF2A -7.037060e-01 -1.852519e-02 -7.222312e-01 1.058446e+02
## ATP9A -1.348611e-01 2.861988e-03 -1.319991e-01 1.517431e+01
## RRAS2 2.194197e-02 1.025756e-02 3.219953e-02 6.354285e+00
## CACNA1I 5.103854e-02 -7.767271e-03 4.327127e-02 5.741571e+00
## APBB1 6.538415e-02 1.866921e-02 8.405336e-02 1.029755e+01
## WDCP 6.086870e-03 1.270415e-02 1.879102e-02 4.871683e+00
## DYNLL2 1.826458e-01 -1.208714e-01 6.177433e-02 8.140808e+01
## NUDT16 -9.565157e-01 -1.663652e-02 -9.731522e-01 1.283662e+02
## ADH5 8.342377e-02 1.639071e-02 9.981448e-02 4.561155e+01
## BMP2K -9.221520e-02 5.941357e-02 -3.280164e-02 2.043127e+01
## HMGCS1 -1.624937e-02 -5.054208e-02 -6.679145e-02 2.155242e+01
## URI1 8.743933e-02 -1.176334e-02 7.567599e-02 2.663953e+01
## TBC1D8 -3.075457e-01 -2.070134e-02 -3.282471e-01 4.430625e+01
## DUS4L 4.624604e-03 1.202071e-03 5.826675e-03 1.550421e+00
## ISG15 1.310691e+00 -1.112404e+00 1.982866e-01 5.868693e+01
## CCDC58 1.301177e-02 1.624823e-04 1.317425e-02 3.674881e+00
## ZNF263 3.472716e-02 3.022916e-02 6.495632e-02 2.348134e+01
## HMGN3 1.093454e-01 -3.277346e-02 7.657189e-02 2.976979e+01
## DZIP3 1.232345e-02 1.536235e-02 2.768580e-02 5.791616e+00
## ATP10B 9.428361e-04 -3.285186e-03 -2.342350e-03 4.775334e-01
## AK1 9.146457e-03 5.112338e-02 6.026983e-02 7.739893e+00
## PTPN2 -1.407936e-01 3.054129e-02 -1.102523e-01 5.123991e+01
## ANKRD23 -8.719368e-05 4.501749e-03 4.414555e-03 9.733854e-01
## CCDC65 2.237968e-02 6.965892e-04 2.307627e-02 3.227501e+00
## HNRNPUL2 -2.756613e-02 1.691054e-01 1.415393e-01 1.266879e+02
## GNRH1 6.021333e-03 3.914817e-03 9.936150e-03 2.438895e+00
## MOB3B -9.951988e-03 1.365241e-02 3.700427e-03 2.925225e+00
## NUP88 5.453135e-02 4.052183e-02 9.505317e-02 2.722721e+01
## NOTCH2NLC -1.048290e-01 3.295687e-01 2.247397e-01 6.000343e+01
## SEMA4C -3.738114e-03 2.668853e-02 2.295042e-02 4.868428e+00
## SCN9A -3.132303e-02 -6.386288e-03 -3.770932e-02 3.471534e+00
## GCFC2 2.376193e-02 -2.106170e-03 2.165576e-02 6.179655e+00
## RASGEF1B -3.173334e-02 -3.091474e-02 -6.264808e-02 7.293018e+00
## METAP1D 4.874803e-03 3.723328e-03 8.598131e-03 1.399355e+00
## THAP11 2.125236e-02 5.255398e-02 7.380635e-02 2.474974e+01
## CHPF -2.829003e-02 1.283717e-02 -1.545286e-02 1.696854e+00
## THOC1 2.683153e-02 1.276211e-02 3.959364e-02 1.153976e+01
## DSTN 6.818541e-02 -5.095738e-02 1.722803e-02 2.926313e+01
## UFSP1 -3.931450e-03 2.530565e-03 -1.400885e-03 3.418626e-01
## CSF1 4.316461e-03 7.784378e-02 8.216024e-02 1.604447e+01
## MARK3 -3.205517e-01 1.650058e-01 -1.555459e-01 1.069861e+02
## TRIT1 2.040754e-02 5.323255e-03 2.573079e-02 7.341735e+00
## ITPKB 8.003376e-02 5.583674e-02 1.358705e-01 5.626122e+01
## DPH1 -2.138953e-04 2.432291e-02 2.410902e-02 6.084637e+00
## SRP54 -1.268974e-01 4.115079e-02 -8.574656e-02 4.311980e+01
## ORMDL3 3.569670e-03 1.704104e-01 1.739800e-01 5.727869e+01
## MRPL22 -3.333919e-02 4.203796e-02 8.698771e-03 1.428815e+01
## BORCS8 -1.320195e-01 1.043955e-01 -2.762404e-02 2.273991e+01
## FEZ2 -2.038191e-02 -4.346062e-02 -6.384253e-02 2.410129e+01
## TNFRSF10B -1.879728e-01 2.392856e-01 5.131283e-02 5.635946e+01
## POLDIP3 -2.284315e-03 -1.345869e-01 -1.368712e-01 1.028370e+02
## IPP -1.903967e-02 3.944312e-03 -1.509536e-02 4.143736e+00
## ZKSCAN7 -3.286317e-02 3.513325e-02 2.270074e-03 5.455537e+00
## GNB4 -2.819048e-01 -3.924827e-02 -3.211530e-01 7.228917e+01
## DHRS7 -6.861324e-01 6.241324e-01 -6.200007e-02 1.602777e+02
## ZNF582 -1.644397e-03 6.235977e-03 4.591580e-03 1.775558e+00
## NAE1 3.912266e-02 -4.777082e-03 3.434558e-02 1.552913e+01
## EGFL8 2.056016e-03 4.392876e-03 6.448892e-03 6.893250e-01
## POLR2K -7.300784e-02 1.443434e-01 7.133552e-02 2.804772e+01
## BATF2 2.653610e-01 -4.329928e-01 -1.676319e-01 2.821717e+01
## GGCT 2.242531e-02 -3.594548e-04 2.206586e-02 8.647768e+00
## SPATA20 3.063455e-02 -5.514355e-02 -2.450900e-02 8.463381e+00
## ACACA 1.606832e-02 -2.773594e-02 -1.166762e-02 7.632913e+00
## SCML1 1.612366e-02 -6.247174e-03 9.876482e-03 2.433836e+00
## CEP89 -6.035119e-03 1.012504e-02 4.089921e-03 4.261833e+00
## PKIA 2.407017e-02 1.072853e-03 2.514302e-02 5.153191e+00
## RRP15 2.055392e-02 -3.051355e-03 1.750257e-02 6.005814e+00
## ATXN7L3 -3.935711e-01 3.172183e-01 -7.635278e-02 1.271806e+02
## OPA3 -1.059816e-02 3.403616e-02 2.343800e-02 1.532635e+01
## PHGDH -2.616393e-02 -8.281709e-03 -3.444564e-02 3.421070e+00
## TMEM208 -1.442373e-01 1.192280e-01 -2.500931e-02 2.840579e+01
## TSEN15 3.252125e-02 -2.268819e-03 3.025243e-02 1.341593e+01
## TRPV1 -3.071897e-04 7.790363e-03 7.483174e-03 2.896993e+00
## SH2D1A 7.977061e-02 2.698109e-02 1.067517e-01 1.614978e+01
## PLEK2 -1.827829e-03 9.230666e-03 7.402837e-03 6.719964e-01
## RPF1 5.279283e-02 -4.139815e-02 1.139468e-02 2.606056e+01
## EMILIN2 -6.365710e-01 2.330353e-01 -4.035357e-01 1.220569e+02
## ALKBH5 2.658166e-03 7.230474e-02 7.496291e-02 5.162064e+01
## TFB2M 8.810041e-03 6.432774e-03 1.524281e-02 6.194320e+00
## RBBP7 6.329018e-02 2.601150e-02 8.930168e-02 3.417174e+01
## DTD1 -3.898691e-02 5.299350e-02 1.400659e-02 1.685640e+01
## DISP1 1.495270e-03 3.925467e-03 5.420736e-03 1.060843e+00
## CHRNB1 -1.457774e-02 1.995271e-02 5.374967e-03 6.771261e+00
## PARP4 -7.335798e-01 2.399455e-01 -4.936343e-01 1.476256e+02
## GSTZ1 -2.293364e-02 3.103137e-02 8.097732e-03 5.734021e+00
## PCID2 5.838519e-02 -1.177718e-02 4.660802e-02 1.985586e+01
## HEMK1 4.860627e-02 2.603880e-02 7.464507e-02 1.651636e+01
## PLAGL1 -1.068222e-01 3.429055e-02 -7.253163e-02 2.032901e+01
## RPL6 1.753161e+00 2.219312e+00 3.972472e+00 8.469566e+02
## CLK2 2.052150e-02 3.031791e-02 5.083941e-02 3.994927e+01
## TMEM25 1.197530e-02 -1.130683e-04 1.186223e-02 1.841714e+00
## HINFP -4.148130e-03 2.736888e-02 2.322075e-02 1.508461e+01
## WDR73 1.443865e-02 1.749594e-02 3.193459e-02 2.107707e+01
## PHLPP1 -7.239474e-02 6.198432e-02 -1.041042e-02 1.374674e+01
## C10orf88 9.471948e-03 3.958958e-03 1.343091e-02 4.405838e+00
## TSPAN9 -1.140175e-02 -4.558325e-02 -5.698501e-02 1.036518e+01
## CD33 3.371550e-02 -1.311107e-01 -9.739519e-02 4.053894e+01
## PIGW 1.904423e-03 6.412723e-03 8.317146e-03 2.418164e+00
## RPA1 1.015606e-01 1.107741e-03 1.026683e-01 4.308149e+01
## NT5DC2 -1.005428e-01 4.820693e-02 -5.233590e-02 9.305856e+00
## PTGR2 4.233738e-03 3.120336e-03 7.354074e-03 1.676547e+00
## CENPV 8.093276e-03 7.511458e-03 1.560473e-02 2.027264e+00
## MT1E 5.885607e-03 -1.468921e-02 -8.803600e-03 1.562555e+00
## ZNF607 4.767547e-03 5.423320e-03 1.019087e-02 1.802043e+00
## IVD 4.472515e-02 2.549366e-02 7.021880e-02 1.887996e+01
## GJC1 -1.099330e-03 -2.282566e-03 -3.381895e-03 5.110702e-01
## ACOT9 -3.582681e-02 -1.718938e-01 -2.077206e-01 6.104862e+01
## TTC30A 5.180250e-03 -3.367542e-03 1.812708e-03 1.026077e+00
## NFIX -1.175224e-02 2.336352e-02 1.161128e-02 2.346197e+00
## PTTG1 -6.884273e-02 9.111499e-02 2.227226e-02 9.821735e+00
## TAF15 1.339478e-01 1.744091e-02 1.513887e-01 7.300580e+01
## DISC1 -1.530812e-01 1.024992e-02 -1.428313e-01 2.561438e+01
## BBS7 -1.413806e-02 1.465378e-02 5.157217e-04 4.894015e+00
## PPM1M -1.210237e+00 7.518168e-01 -4.584198e-01 2.218853e+02
## PLPP1 4.938933e-03 1.715822e-03 6.654755e-03 1.066858e+00
## C12orf60 -3.472132e-03 1.686749e-03 -1.785383e-03 5.935402e-01
## RPL15 1.720196e+00 1.092873e+00 2.813069e+00 6.730490e+02
## HAX1 -3.469859e-02 1.429844e-01 1.082858e-01 6.246693e+01
## MRPS10 -3.434683e-02 1.315649e-02 -2.119034e-02 2.141636e+01
## TMEM272 4.855536e-03 -3.808618e-02 -3.323064e-02 7.132943e+00
## SYK -9.586858e-01 7.062199e-03 -9.516236e-01 3.257982e+02
## PGRMC1 -1.229012e-01 -2.650760e-01 -3.879772e-01 7.516286e+01
## SNTA1 1.444050e-02 2.596268e-03 1.703677e-02 1.745718e+00
## PHYHD1 -3.272338e-03 3.648629e-03 3.762913e-04 5.937402e-01
## RGL1 -4.099648e-02 6.533851e-04 -4.034309e-02 5.323786e+00
## RPAIN 2.579513e-02 1.953265e-02 4.532778e-02 1.572142e+01
## CFDP1 5.007953e-02 1.169356e-02 6.177309e-02 2.735743e+01
## SHPK 9.262772e-03 3.385680e-03 1.264845e-02 4.337831e+00
## HMGB3 -4.260006e-02 4.693392e-02 4.333860e-03 6.394433e+00
## SPRYD3 -1.680973e-01 6.031404e-02 -1.077832e-01 4.861012e+01
## C9orf139 -2.415486e-02 -3.898189e-02 -6.313675e-02 1.419504e+01
## CD59 -1.542664e+00 -9.065890e-02 -1.633323e+00 2.074501e+02
## RSAD1 6.427196e-02 1.664424e-02 8.091620e-02 1.997019e+01
## POLR3K -1.649561e-02 4.801746e-02 3.152185e-02 9.975440e+00
## FRMD8 -1.352507e-01 9.399104e-02 -4.125962e-02 4.482045e+01
## RBMS2 -2.839463e-02 -9.026005e-03 -3.742064e-02 9.314132e+00
## TRIM46 3.897028e-03 5.588596e-03 9.485624e-03 1.150601e+00
## TMLHE -1.250847e-01 1.821406e-02 -1.068706e-01 2.338583e+01
## GPR174 3.136623e-02 6.684802e-02 9.821425e-02 1.373661e+01
## FBXW2 -7.145997e-01 3.562196e-01 -3.583800e-01 1.100344e+02
## ABT1 -2.170061e-02 5.522939e-02 3.352877e-02 2.377140e+01
## PI3 1.884640e-01 2.144305e+00 2.332769e+00 1.649914e+02
## MT2A 1.570446e-01 -2.586484e-01 -1.016038e-01 1.855528e+01
## CCL4L1 1.287453e-01 -4.999387e-03 1.237459e-01 1.061475e+01
## TUBB4B -2.314106e-01 3.400159e-01 1.086053e-01 7.236131e+01
## PTPN14 1.869333e-03 -3.583948e-03 -1.714615e-03 6.309605e-01
## CCDC57 -3.636752e-02 6.451957e-02 2.815205e-02 1.573375e+01
## LMLN -9.297240e-04 7.022681e-03 6.092957e-03 1.771806e+00
## ESYT1 2.796622e-01 1.822970e-01 4.619592e-01 8.448768e+01
## TMEM60 2.710520e-02 -7.474325e-02 -4.763806e-02 2.154349e+01
## L3MBTL4 1.475610e-04 -4.916308e-03 -4.768747e-03 1.170795e+00
## TNK1 1.316926e-02 -9.843889e-04 1.218487e-02 1.346362e+00
## GHRL -2.850858e-02 4.000714e-02 1.149856e-02 6.669311e+00
## EPSTI1 8.449748e-02 -1.663117e+00 -1.578620e+00 1.882055e+02
## ORM1 -1.080944e+00 1.374748e+00 2.938040e-01 9.366549e+01
## OCIAD2 6.005566e-02 2.834849e-03 6.289050e-02 9.570746e+00
## ZNHIT6 2.653448e-02 -3.036715e-04 2.623081e-02 6.635123e+00
## HGF -2.102180e-01 1.170114e-01 -9.320661e-02 1.812521e+01
## MARCHF9 2.956090e-02 2.746082e-02 5.702173e-02 7.931730e+00
## ZNF395 3.846331e-02 3.424614e-02 7.270945e-02 1.756606e+01
## RUSC2 1.727087e-02 -1.898800e-02 -1.717136e-03 4.301536e+00
## TRMT13 1.629982e-02 1.798404e-02 3.428386e-02 8.742033e+00
## MYDGF -4.929112e-01 2.746900e-01 -2.182211e-01 4.725338e+01
## FAM133B 2.998674e-02 -9.521650e-03 2.046509e-02 1.203212e+01
## MYO18A -6.581064e-02 -1.156690e-01 -1.814796e-01 5.795079e+01
## KLF8 6.090572e-03 9.615069e-03 1.570564e-02 2.672067e+00
## SKAP1 1.393557e-01 3.041911e-02 1.697748e-01 2.524326e+01
## RPL26L1 -2.843785e-02 3.742983e-02 8.991982e-03 1.111531e+01
## BSDC1 -1.305781e-01 1.587542e-01 2.817603e-02 7.490516e+01
## GOLGA7B 6.052496e-02 4.056116e-03 6.458108e-02 6.787066e+00
## PRUNE2 6.007297e-02 1.715748e-01 2.316478e-01 1.097268e+01
## ORC5 1.207351e-02 8.964589e-03 2.103809e-02 6.680856e+00
## MEOX1 7.753791e-03 -5.736354e-03 2.017437e-03 9.461129e-01
## ZNF852 -9.054361e-03 9.081509e-03 2.714891e-05 2.387923e+00
## STARD4 9.704736e-03 -5.593749e-02 -4.623275e-02 1.238112e+01
## RPL30 2.431037e+00 1.338736e+00 3.769773e+00 7.576033e+02
## RPL22 1.348710e+00 1.789218e-01 1.527631e+00 2.970501e+02
## ZNF74 6.833690e-03 6.945654e-03 1.377934e-02 2.627838e+00
## HSBP1L1 2.990728e-03 -1.299139e-02 -1.000066e-02 2.044551e+00
## ZNF286A 1.139502e-02 7.044145e-03 1.843917e-02 3.918577e+00
## CRY1 5.043753e-02 -2.336899e-02 2.706854e-02 7.842803e+00
## VNN2 -1.575011e+01 7.823894e+00 -7.926220e+00 2.151326e+03
## GP6 -6.795295e-03 -3.401582e-02 -4.081112e-02 6.252950e+00
## PRXL2B 5.969961e-03 2.596452e-02 3.193448e-02 8.273215e+00
## FASTKD3 -1.857824e-02 1.526772e-02 -3.310520e-03 5.940222e+00
## TMEM248 -4.772500e-02 6.412601e-02 1.640101e-02 6.911221e+01
## MGLL 6.938259e-02 -1.120707e-01 -4.268813e-02 1.805126e+01
## THBS3 -9.194003e-02 1.209193e-01 2.897929e-02 3.024606e+01
## BRD3 4.005756e-03 -3.872338e-02 -3.471762e-02 1.795661e+01
## PHF7 -4.665375e-03 8.512872e-03 3.847497e-03 2.184591e+00
## POP7 -2.259951e-02 2.348459e-02 8.850855e-04 5.072606e+00
## ZNF671 3.161659e-02 5.303646e-03 3.692024e-02 1.503733e+01
## KIAA0513 -2.878801e-01 2.544433e-01 -3.343673e-02 1.125265e+02
## MPI 8.550327e-02 3.737499e-02 1.228783e-01 2.455735e+01
## IRAG2 -7.640485e-01 5.204076e-01 -2.436410e-01 1.839197e+02
## POU2AF1 -2.133969e-01 1.525499e-01 -6.084696e-02 2.255729e+01
## LTA 2.116034e-02 -5.126154e-03 1.603418e-02 3.263284e+00
## ISCU -2.222638e-01 1.695375e-01 -5.272625e-02 8.724992e+01
## TRIM8 -2.793998e-01 8.298337e-02 -1.964164e-01 7.694182e+01
## ITSN1 -2.363577e-02 1.069979e-02 -1.293598e-02 4.724702e+00
## MAN1B1 -5.149952e-02 2.203306e-01 1.688311e-01 3.860330e+01
## SPIN2B 1.344833e-02 -6.076544e-03 7.371788e-03 2.680894e+00
## SYNGAP1 3.560783e-02 9.899936e-03 4.550777e-02 7.952012e+00
## FHL1 7.505612e-02 9.269249e-03 8.432537e-02 1.411544e+01
## KCNK13 -8.446645e-03 1.667722e-03 -6.778923e-03 1.192140e+00
## UBE2Z 4.824776e-02 7.326594e-02 1.215137e-01 8.267178e+01
## MCCC1 1.453826e-02 1.205556e-02 2.659382e-02 8.387807e+00
## SERPINB1 -5.707592e+00 8.528127e-01 -4.854780e+00 7.375895e+02
## IDI1 -1.639022e+00 -5.167330e-01 -2.155755e+00 2.122100e+02
## GNPDA2 1.039610e-02 5.873792e-03 1.626989e-02 3.865008e+00
## FAM222B 7.916255e-03 -2.352589e-02 -1.560963e-02 8.514303e+00
## TRAF3 -4.467016e-03 4.814208e-02 4.367506e-02 2.019725e+01
## MACF1 -5.193923e-01 3.195338e-01 -1.998585e-01 1.026313e+02
## HPN 3.986000e-03 -6.772214e-03 -2.786214e-03 6.502361e-01
## CDC37L1 4.827344e-03 1.560055e-02 2.042789e-02 1.043743e+01
## ST3GAL2 -3.127240e-01 1.609779e-01 -1.517460e-01 8.273160e+01
## TXNDC15 -5.825857e-02 5.088908e-02 -7.369485e-03 2.321067e+01
## C1orf116 3.170042e-03 4.338336e-03 7.508377e-03 9.731384e-01
## PTMA 1.262867e+00 -2.440366e-01 1.018831e+00 4.247802e+02
## PRDX4 -1.831130e-01 1.176652e-01 -6.544778e-02 2.067020e+01
## CD96 1.596808e-01 -1.055707e-02 1.491237e-01 2.692223e+01
## VAPB -5.642957e-02 6.175957e-02 5.330000e-03 2.941068e+01
## ASB6 -1.125419e-02 3.948134e-02 2.822714e-02 2.012116e+01
## JADE1 -1.516705e-01 -5.383769e-02 -2.055082e-01 5.746459e+01
## TXNDC17 -1.015342e-01 8.075698e-02 -2.077718e-02 2.526580e+01
## USP36 6.875173e-02 -7.682571e-03 6.106916e-02 1.318498e+01
## B3GALNT1 1.569873e-03 -6.450603e-03 -4.880730e-03 1.047230e+00
## TRIP4 -1.039706e-01 3.715593e-02 -6.681469e-02 3.544267e+01
## SUB1 -8.202844e-01 6.607341e-01 -1.595504e-01 2.179588e+02
## RPS4X 4.233200e+00 -1.065353e-01 4.126665e+00 8.255936e+02
## CTNNAL1 -1.675273e-02 3.781169e-02 2.105897e-02 6.573702e+00
## CEP95 2.527617e-02 1.101895e-02 3.629512e-02 1.298087e+01
## KCND1 6.534604e-02 -4.365044e-02 2.169559e-02 8.704328e+00
## ZFP82 1.201383e-02 -2.678748e-03 9.335080e-03 2.896900e+00
## SEMA4G 2.657754e-04 3.165140e-03 3.430915e-03 7.172486e-01
## SEL1L3 -4.103220e-01 3.455328e-01 -6.478924e-02 6.457743e+01
## NUP85 4.153154e-02 -9.423493e-04 4.058919e-02 2.246862e+01
## RPS27A 2.900145e+00 1.895856e+00 4.796001e+00 8.250003e+02
## FHDC1 -7.049840e-04 5.967221e-02 5.896723e-02 5.291394e+00
## RPL31 1.886074e+00 1.006776e+00 2.892850e+00 5.798508e+02
## PLAG1 5.981370e-03 6.466886e-03 1.244826e-02 2.677675e+00
## ZNF709 5.203285e-03 -5.515205e-03 -3.119193e-04 1.664757e+00
## FAM220A -1.603658e-02 2.030932e-02 4.272736e-03 9.494261e+00
## SAMM50 4.109944e-02 2.681140e-02 6.791085e-02 1.939349e+01
## CDYL -1.977442e-02 2.046048e-02 6.860590e-04 1.183027e+01
## SPATS2L 6.954601e-02 -2.356404e-01 -1.660944e-01 1.667069e+01
## TMEM17 -1.614638e-03 -1.446605e-03 -3.061242e-03 4.327854e-01
## TRPM6 1.684680e-03 1.296806e-01 1.313653e-01 2.782517e+01
## TCEANC2 -3.516969e-02 3.365369e-02 -1.515990e-03 1.543131e+01
## KSR1 -6.178520e-02 1.674765e-01 1.056913e-01 3.698777e+01
## CLN5 -5.663428e-02 1.859159e-02 -3.804269e-02 2.736504e+01
## ZNF777 4.499819e-03 1.025512e-02 1.475494e-02 3.357228e+00
## APOBEC3F 4.668832e-02 -4.237611e-02 4.312211e-03 1.024112e+01
## DUSP14 3.845477e-03 4.168920e-03 8.014398e-03 1.543723e+00
## BMP6 -2.731202e-02 6.699821e-02 3.968619e-02 1.167175e+01
## FANCE 1.249140e-02 1.908312e-03 1.439971e-02 4.627691e+00
## NXPE3 -1.729995e-01 1.331447e-01 -3.985482e-02 5.248253e+01
## ZNF717 9.280145e-03 -1.035319e-03 8.244826e-03 2.506234e+00
## SOCS2 3.395064e-02 1.550066e-03 3.550071e-02 6.318584e+00
## MAF 7.900256e-02 -2.514934e-02 5.385322e-02 1.629927e+01
## RCCD1 9.174546e-06 7.940105e-03 7.949280e-03 2.116400e+00
## ZNF26 4.132100e-03 1.837169e-02 2.250379e-02 1.138435e+01
## CAMKK2 -1.423866e+00 9.049103e-01 -5.189557e-01 2.834387e+02
## DENND2C 1.058773e-02 -1.923378e-02 -8.646054e-03 2.736488e+00
## ZNF10 8.960940e-03 1.412178e-03 1.037312e-02 2.491808e+00
## TMEM223 3.892792e-03 1.664526e-02 2.053805e-02 4.657895e+00
## ZNF584 3.013047e-03 3.720287e-03 6.733334e-03 1.528575e+00
## TBC1D7-LOC100130357 2.019211e-03 -1.149358e-02 -9.474372e-03 1.894809e+00
## C12orf65 2.192310e-02 4.157517e-03 2.608062e-02 8.125628e+00
## BATF3 -1.021104e-03 1.808289e-02 1.706178e-02 2.223752e+00
## ATP8B2 5.809115e-02 1.938467e-01 2.519378e-01 4.664505e+01
## BOLA1 1.830852e-02 -4.131413e-03 1.417710e-02 2.915983e+00
## SH3BP2 -6.296776e-01 1.316698e-01 -4.980078e-01 2.169452e+02
## TBL2 -2.621729e-02 1.453031e-02 -1.168697e-02 1.094377e+01
## SKIL -6.048126e-02 -1.295803e-01 -1.900615e-01 3.547515e+01
## DPM2 -8.553019e-02 1.452963e-01 5.976609e-02 1.847944e+01
## TRPC1 9.723721e-04 3.396614e-03 4.368986e-03 5.337289e-01
## ANPEP -4.169946e-01 1.863058e+00 1.446064e+00 4.023363e+02
## NR2C1 3.247332e-02 -5.929054e-03 2.654427e-02 1.013633e+01
## ZNF256 1.118976e-02 7.186839e-04 1.190845e-02 2.379872e+00
## JAKMIP1 2.071502e-02 -6.481466e-03 1.423356e-02 2.901039e+00
## PLIN5 -2.985656e-01 5.406490e-02 -2.445007e-01 3.173251e+01
## ARHGAP18 -4.707621e-02 -3.854391e-02 -8.562012e-02 2.449746e+01
## ZNF75A 1.368734e-03 2.222076e-02 2.358950e-02 8.975089e+00
## FANCB -3.203268e-03 5.873841e-03 2.670573e-03 1.165884e+00
## HCLS1 -6.435678e+00 1.290320e+00 -5.145358e+00 1.384445e+03
## LOC102724488 -1.398049e-02 5.236130e-03 -8.744356e-03 3.814589e+00
## DUSP16 -8.786187e-02 1.042159e-01 1.635400e-02 2.852706e+01
## PFKFB4 -8.074101e-01 3.691101e-01 -4.383000e-01 1.631911e+02
## ITK 1.820627e-01 1.323555e-01 3.144182e-01 4.405457e+01
## POMT2 2.076669e-03 7.553718e-03 9.630387e-03 3.859528e+00
## SPACA9 6.279006e-03 -2.859930e-03 3.419075e-03 1.337251e+00
## HUS1 -1.533547e-02 -8.639427e-03 -2.397490e-02 1.016339e+01
## TPM2 5.044890e-02 -2.015448e-02 3.029443e-02 5.117356e+00
## SEC24A -1.313970e-01 9.019274e-02 -4.120428e-02 2.681140e+01
## GFOD2 -7.734370e-02 7.200298e-02 -5.340720e-03 2.080344e+01
## PCBD2 1.614277e-03 8.499425e-03 1.011370e-02 4.529021e+00
## EMG1 1.053225e-02 1.130700e-01 1.236022e-01 3.052906e+01
## ZSCAN26 1.596605e-02 1.549673e-02 3.146278e-02 1.102604e+01
## ZBTB3 -1.152016e-02 1.867642e-03 -9.652523e-03 4.459234e+00
## LAPTM4A -2.708646e-01 -1.197374e-01 -3.906020e-01 1.198986e+02
## CARNMT1 1.824778e-02 7.852217e-03 2.610000e-02 6.683046e+00
## PARP16 -2.959918e-02 6.271691e-02 3.311773e-02 1.278643e+01
## CEP57L1 -7.742881e-03 8.319544e-04 -6.910926e-03 3.212878e+00
## COQ10A 1.081638e-02 5.538332e-03 1.635472e-02 3.206566e+00
## GOLM1 -8.664154e-03 -4.328599e-02 -5.195015e-02 1.038084e+01
## RGPD1 6.696471e-02 -1.293602e-01 -6.239554e-02 1.669327e+01
## MUC1 -9.671423e-03 1.626595e-02 6.594526e-03 1.936809e+00
## KLHDC10 -4.511601e-02 4.689766e-02 1.781655e-03 2.108948e+01
## DHX16 -2.043780e-02 5.814237e-02 3.770458e-02 4.375778e+01
## TEP1 -1.554378e-01 -3.168940e-02 -1.871272e-01 5.822780e+01
## OBSCN 3.890094e-02 -4.140336e-03 3.476060e-02 4.263741e+00
## SORT1 -1.433607e+00 -2.067678e-02 -1.454284e+00 1.802263e+02
## EHHADH 1.127007e-03 -5.599720e-03 -4.472713e-03 1.220799e+00
## SAMD9 -1.344881e+00 1.689161e-01 -1.175965e+00 1.715035e+02
## LTV1 3.368284e-02 2.700507e-03 3.638334e-02 1.490973e+01
## ZNF382 5.296063e-03 3.202163e-03 8.498226e-03 2.021138e+00
## ZNF182 -3.909249e-02 2.782494e-02 -1.126755e-02 1.295751e+01
## NKX3-1 -1.708431e-02 5.678426e-02 3.969995e-02 4.236160e+00
## ORAI2 -5.775611e-01 5.079362e-01 -6.962489e-02 1.408884e+02
## CPLANE1 -6.054930e-03 1.256342e-02 6.508488e-03 2.175872e+00
## WBP1L -2.595063e-01 3.556444e-01 9.613812e-02 1.315447e+02
## RGCC 3.484567e-02 1.496923e-01 1.845380e-01 1.743592e+01
## MB21D2 9.485727e-03 -3.983513e-05 9.445892e-03 1.437332e+00
## SERP1 -4.488571e-01 -6.933429e-03 -4.557905e-01 2.066641e+02
## C1RL -5.166903e-01 6.823227e-02 -4.484581e-01 1.131605e+02
## SPTLC2 -1.262007e+00 -2.556998e-02 -1.287577e+00 2.368614e+02
## MYH10 -4.114226e-03 6.795346e-03 2.681120e-03 1.159752e+00
## INTS14 3.372872e-02 -4.190679e-03 2.953804e-02 1.294318e+01
## CXCR5 5.483639e-02 4.368509e-02 9.852148e-02 1.186253e+01
## ZNF316 -1.234246e-01 1.159977e-01 -7.426929e-03 3.979331e+01
## NPFFR1 -5.500424e-04 -2.697580e-03 -3.247622e-03 7.058710e-01
## PI4KB -3.791898e-02 1.638499e-01 1.259309e-01 9.368295e+01
## WDR89 2.819350e-02 6.001806e-03 3.419531e-02 8.639028e+00
## GANAB -8.615909e-02 2.101201e-01 1.239610e-01 1.427960e+02
## CLC -1.806601e+00 3.075301e+00 1.268700e+00 1.880189e+02
## OSCP1 4.204929e-03 -1.971928e-03 2.233002e-03 4.432942e-01
## NUGGC -2.592031e-02 1.995663e-02 -5.963686e-03 3.148243e+00
## FCRL2 1.678717e-02 2.522693e-02 4.201409e-02 6.467080e+00
## C15orf62 3.068465e-03 1.565941e-03 4.634406e-03 1.152430e+00
## CSE1L 4.280186e-02 2.218166e-02 6.498352e-02 2.860318e+01
## SMCO4 -1.410032e-02 -8.893825e-02 -1.030386e-01 2.082502e+01
## RPS10-NUDT3 -1.187608e-01 8.291934e-02 -3.584148e-02 2.626605e+01
## NACA 8.234539e-01 5.057328e-01 1.329187e+00 4.856995e+02
## SCN1B -3.993671e-03 -2.901760e-02 -3.301127e-02 5.433437e+00
## CCT2 4.948510e-02 7.611242e-02 1.255975e-01 4.494309e+01
## SPINT2 -1.814388e-01 2.868289e-01 1.053901e-01 5.487710e+01
## EFL1 2.613145e-02 4.422869e-04 2.657373e-02 1.090224e+01
## ZNF33B 2.577147e-02 2.042456e-02 4.619603e-02 1.183432e+01
## FCRL1 -1.252013e-01 5.802581e-02 -6.717545e-02 1.315467e+01
## CNIH1 3.954571e-02 6.070590e-02 1.002516e-01 3.771054e+01
## ITPR2 -1.574916e-01 4.420182e-02 -1.132898e-01 3.673179e+01
## CA11 1.351724e-02 3.494673e-03 1.701191e-02 2.080973e+00
## ADARB1 5.490520e-02 -1.856417e-02 3.634104e-02 1.014966e+01
## NAP1L4 6.580753e-02 9.586479e-02 1.616723e-01 7.334934e+01
## CNPPD1 -2.329388e-01 4.278894e-01 1.949507e-01 1.013221e+02
## PAK1 -2.844597e-01 -4.456033e-01 -7.300630e-01 2.407138e+02
## WDR59 7.216379e-03 3.219854e-02 3.941492e-02 1.813435e+01
## SPIB 3.589551e-02 1.276740e-02 4.866291e-02 6.385561e+00
## CEP43 -6.523836e-02 3.223453e-02 -3.300384e-02 1.699233e+01
## ASB1 -3.936457e-02 3.460565e-02 -4.758918e-03 2.034317e+01
## NAF1 3.952885e-03 -3.351593e-03 6.012922e-04 9.078471e-01
## MFSD8 -1.527353e-02 3.071010e-02 1.543657e-02 1.137216e+01
## CLEC5A 7.600844e-02 -1.473188e-01 -7.131031e-02 1.976708e+01
## WASHC3 -9.412397e-02 4.897017e-02 -4.515380e-02 2.575760e+01
## NIBAN3 5.223412e-02 3.120654e-02 8.344066e-02 1.009506e+01
## CCL28 1.068933e-02 -1.005526e-03 9.683803e-03 2.309767e+00
## FKBP11 -2.294123e-01 1.066167e-01 -1.227956e-01 2.263391e+01
## BTF3 5.176647e-01 2.282576e-02 5.404904e-01 2.373983e+02
## CDAN1 2.059078e-02 -5.971202e-03 1.461958e-02 7.026035e+00
## AOC3 6.922277e-02 5.852199e-03 7.507497e-02 1.257653e+01
## GPATCH11 1.092903e-02 2.604083e-02 3.696986e-02 9.434440e+00
## MAP3K12 1.883119e-02 4.396117e-03 2.322731e-02 6.692963e+00
## LGALS9 -7.396312e-01 -5.628160e-01 -1.302447e+00 1.996380e+02
## TMEM14C 5.332576e-02 6.521978e-02 1.185455e-01 2.261793e+01
## DCUN1D4 1.823922e-02 8.816648e-03 2.705587e-02 1.058117e+01
## HABP4 2.666072e-02 4.941691e-04 2.715489e-02 5.216105e+00
## TK2 -1.325191e-01 2.664477e-02 -1.058743e-01 4.439783e+01
## TENT5C -4.044067e-01 4.672735e-01 6.286678e-02 6.198452e+01
## TSPAN31 2.892109e-02 -3.506050e-03 2.541504e-02 1.658338e+01
## ZNF419 1.598110e-02 5.737558e-03 2.171866e-02 6.193570e+00
## SCAP -1.288575e-01 1.457577e-01 1.690018e-02 4.630877e+01
## DDX23 -3.719279e-02 -9.499844e-02 -1.321912e-01 8.799132e+01
## RPS13 1.121587e+00 2.358952e-01 1.357482e+00 3.360920e+02
## BTN3A3 2.277061e-01 -3.614083e-01 -1.337022e-01 7.670434e+01
## PHLDA1 3.036554e-02 -3.105238e-02 -6.868401e-04 2.768280e+00
## CLECL1 -3.562799e-03 1.337905e-02 9.816249e-03 1.857850e+00
## ADD1 -2.862808e-01 1.966602e-01 -8.962061e-02 1.611918e+02
## HK2 -4.464063e-01 8.353185e-02 -3.628744e-01 9.190617e+01
## ATP6V0A2 -2.814274e-03 2.923298e-02 2.641871e-02 1.695438e+01
## TUFT1 2.693559e-02 -5.448060e-02 -2.754500e-02 9.264024e+00
## SNX1 -3.030195e-01 8.964537e-03 -2.940550e-01 1.324886e+02
## DDTL -1.207704e-02 1.023897e-02 -1.838063e-03 4.795010e+00
## RPS15A 1.909985e+00 2.404769e+00 4.314754e+00 7.551598e+02
## ZNF248 1.006525e-02 1.221606e-02 2.228130e-02 5.149038e+00
## CHST2 -1.755547e-01 7.957227e-02 -9.598238e-02 2.239104e+01
## UTP4 3.449026e-02 -7.848771e-03 2.664149e-02 1.095557e+01
## ETAA1 1.363313e-02 5.013634e-03 1.864676e-02 6.726288e+00
## CD1D 8.322094e-02 -1.724943e-01 -8.927339e-02 4.675289e+01
## METTL5 1.376986e-02 2.574258e-02 3.951244e-02 1.191592e+01
## ACADSB 3.198142e-03 2.777430e-02 3.097244e-02 1.086665e+01
## OTUD7B -4.959222e-03 9.250303e-03 4.291081e-03 2.623601e+00
## ALDOC 4.161048e-02 5.057115e-02 9.218163e-02 1.501200e+01
## SLC6A4 -4.205804e-03 -4.679607e-03 -8.885411e-03 2.218951e+00
## HAPLN3 5.351148e-02 4.620131e-03 5.813161e-02 5.257257e+00
## HOXB2 1.971918e-02 -3.261564e-03 1.645762e-02 3.166373e+00
## PATJ 1.751492e-02 1.375472e-02 3.126964e-02 4.902431e+00
## SLC35E1 -3.271274e-02 5.226308e-02 1.955035e-02 2.980168e+01
## MSMO1 -2.016833e-02 -2.936914e-02 -4.953748e-02 1.239637e+01
## CEP70 4.984408e-03 2.783181e-03 7.767589e-03 1.410034e+00
## LRRC6 -1.043440e-01 -1.338987e-02 -1.177338e-01 1.654686e+01
## ABHD18 -4.578047e-02 2.858868e-02 -1.719179e-02 1.646802e+01
## SSR3 -3.065502e-01 1.260070e-01 -1.805432e-01 8.583169e+01
## AMDHD1 3.329563e-03 2.529258e-03 5.858821e-03 1.205948e+00
## PAPLN -3.646361e-02 8.670787e-03 -2.779283e-02 5.702490e+00
## ENPP2 -1.264244e-02 9.430914e-04 -1.169935e-02 1.304643e+00
## NMD3 8.698930e-02 -7.445526e-02 1.253404e-02 1.985833e+01
## UTRN -2.604655e-01 1.466701e-02 -2.457985e-01 5.905859e+01
## BPGM -1.399643e-01 2.112007e-01 7.123638e-02 2.605467e+01
## TMEM234 -4.190923e-02 4.837807e-03 -3.707142e-02 9.954188e+00
## VDR -2.957811e-02 -4.774242e-02 -7.732053e-02 2.785196e+01
## ATP6AP1 -3.831313e-01 -7.830114e-03 -3.909614e-01 1.256068e+02
## ANO9 1.036358e-01 2.473291e-03 1.061091e-01 9.193611e+00
## STIMATE -1.621739e-01 -4.579740e-02 -2.079713e-01 3.766028e+01
## MEST 1.641889e-02 -1.012997e-02 6.288922e-03 2.974025e+00
## SARM1 1.149414e-03 2.741378e-02 2.856319e-02 6.324252e+00
## DERL2 -1.181743e-01 5.474024e-02 -6.343409e-02 4.675822e+01
## ALDH9A1 -1.050854e-01 8.579610e-02 -1.928929e-02 4.943326e+01
## NFXL1 -8.406661e-02 1.253803e-01 4.131373e-02 1.497018e+01
## AHI1 4.198308e-03 3.153101e-03 7.351409e-03 1.419891e+00
## ZNF81 -3.764887e-02 4.874889e-04 -3.716138e-02 1.015307e+01
## PDIA4 -4.199612e-01 2.302453e-01 -1.897159e-01 5.593395e+01
## ERICH1 -6.418172e-02 2.268485e-02 -4.149687e-02 2.005654e+01
## NEK3 9.064518e-03 -1.627319e-02 -7.208667e-03 5.018001e+00
## SH3RF1 -1.040919e-02 9.289051e-03 -1.120139e-03 1.851922e+00
## ARL1 -6.699950e-03 3.632399e-02 2.962404e-02 1.658319e+01
## ECPAS -1.327265e-01 5.949228e-02 -7.323421e-02 5.179794e+01
## MON2 -1.320132e-01 6.210136e-02 -6.991187e-02 3.877696e+01
## BCAS2 2.965335e-02 -5.204752e-02 -2.239417e-02 2.102390e+01
## BEND2 3.654486e-02 -3.319315e-02 3.351704e-03 6.376794e+00
## CACNB3 6.649241e-03 3.220378e-03 9.869619e-03 1.571132e+00
## C15orf40 -5.161140e-02 2.542487e-02 -2.618653e-02 2.747028e+01
## E2F2 -9.688779e-02 1.295413e-01 3.265347e-02 1.796750e+01
## ZNF19 -1.545030e-03 4.563219e-03 3.018189e-03 9.221692e-01
## NAIF1 5.667138e-03 -2.411789e-02 -1.845075e-02 1.223958e+01
## HSD17B7 -1.763718e-02 -2.668886e-03 -2.030606e-02 1.025720e+01
## SIL1 -9.782813e-02 2.520295e-02 -7.262518e-02 1.473963e+01
## NUDT13 4.847697e-03 1.685053e-03 6.532750e-03 1.432521e+00
## LIPC 4.363445e-03 1.468056e-03 5.831501e-03 6.990391e-01
## DENND11 3.074266e-02 7.067041e-02 1.014131e-01 1.635461e+01
## ERLEC1 -1.310981e-01 9.352401e-02 -3.757407e-02 3.817985e+01
## NHLRC3 -3.299221e-02 -3.585178e-02 -6.884400e-02 1.618920e+01
## C1QTNF6 1.648563e-02 1.031205e-03 1.751683e-02 3.743056e+00
## CNKSR1 -1.386860e-02 9.883260e-03 -3.985345e-03 1.129744e+00
## STX2 3.021009e-02 2.437617e-03 3.264771e-02 1.068066e+01
## MFSD1 -5.778414e-01 6.441861e-02 -5.134228e-01 1.507744e+02
## PFDN4 -5.077677e-03 6.049394e-02 5.541626e-02 1.020399e+01
## NCKAP5L -3.238074e-02 -6.618950e-03 -3.899969e-02 8.289657e+00
## RASGRP4 -9.618515e-01 6.275236e-02 -8.990991e-01 2.604875e+02
## RNF112 6.267286e-03 -7.347220e-03 -1.079934e-03 1.555181e+00
## GALNT12 1.542365e-02 -4.946306e-03 1.047735e-02 2.563289e+00
## GSDMB 5.195296e-02 -1.678917e-02 3.516379e-02 9.583869e+00
## YIPF6 -6.690447e-02 3.692787e-02 -2.997659e-02 2.201619e+01
## CD177 -1.571713e+01 5.068323e+00 -1.064880e+01 6.149175e+02
## NAIP -3.497242e+00 7.765988e-01 -2.720643e+00 4.487359e+02
## TSGA10 3.379704e-03 9.159222e-04 4.295626e-03 7.847845e-01
## ATG14 1.215164e-02 3.264601e-02 4.479764e-02 1.118250e+01
## BTLA 8.627946e-03 3.377613e-02 4.240407e-02 9.656279e+00
## ST7L -2.597129e-02 3.649480e-02 1.052351e-02 5.758694e+00
## XRN2 -7.093473e-01 3.551352e-01 -3.542121e-01 1.560806e+02
## SBF2 -2.536124e-01 5.363535e-02 -1.999770e-01 4.786018e+01
## TBC1D17 -1.274890e-02 6.385784e-02 5.110894e-02 1.685730e+01
## ACY1 1.197048e-02 1.682406e-03 1.365289e-02 2.749381e+00
## NOCT 1.789269e-02 -2.250894e-02 -4.616248e-03 2.349473e+00
## NLK -4.380933e-02 1.340888e-02 -3.040045e-02 1.542553e+01
## MORC4 1.101469e-02 1.203189e-04 1.113501e-02 2.059562e+00
## FBH1 -2.476964e-02 7.984286e-02 5.507322e-02 5.344644e+01
## MKNK1 -9.621307e-01 4.048629e-01 -5.572678e-01 1.394989e+02
## SSH1 -4.438818e-01 3.219292e-01 -1.219526e-01 8.185990e+01
## SHC1 -6.176783e-02 7.157961e-02 9.811778e-03 5.135638e+01
## EIF1AX 1.198415e-01 -8.091803e-02 3.892343e-02 3.719842e+01
## ATF7IP2 1.329642e-02 3.528191e-03 1.682461e-02 3.396140e+00
## VSIG10 -4.072706e-02 5.552473e-02 1.479767e-02 6.069372e+00
## TET2 -1.040367e+00 3.944876e-01 -6.458796e-01 1.744740e+02
## UBXN6 -1.482334e-01 2.306425e-01 8.240913e-02 3.852493e+01
## QPRT 6.723095e-04 5.049256e-03 5.721565e-03 1.181394e+00
## SNAPIN -3.556165e-02 -3.896672e-02 -7.452837e-02 2.264554e+01
## BSG -4.625918e-01 8.979957e-01 4.354039e-01 1.354238e+02
## C2orf50 -3.843854e-03 3.290265e-03 -5.535890e-04 9.619452e-01
## CSAD 1.608459e-02 -1.509230e-01 -1.348384e-01 4.312718e+01
## LRRC59 -1.156415e-01 7.202411e-03 -1.084391e-01 4.510553e+01
## TARS3 1.227758e-02 9.729882e-03 2.200747e-02 6.292601e+00
## ACP3 -1.011168e-01 -1.202403e-02 -1.131409e-01 2.229219e+01
## RPS18 3.908606e+00 1.058995e+00 4.967601e+00 1.000275e+03
## ZNF761 1.688879e-02 1.080032e-02 2.768911e-02 7.829581e+00
## TAF5 -4.213220e-03 9.616320e-03 5.403099e-03 6.139433e+00
## MAPRE1 -3.098179e-01 -1.685658e-01 -4.783837e-01 1.328237e+02
## LRRC46 -5.142155e-03 3.411224e-03 -1.730931e-03 8.210395e-01
## EEF2 8.817345e-01 3.442478e-01 1.225982e+00 3.273209e+02
## BICRAL -2.226180e-01 1.286178e-01 -9.400016e-02 4.974306e+01
## SSC4D -1.637329e-03 -2.064708e-03 -3.702037e-03 4.950435e-01
## FZD1 -9.580876e-03 -1.520986e-02 -2.479074e-02 4.867012e+00
## ALX3 -2.881415e-03 4.859670e-03 1.978255e-03 1.140444e+00
## FAN1 8.908580e-03 2.150630e-02 3.041488e-02 6.930412e+00
## SDHAF4 6.384390e-03 1.415013e-02 2.053452e-02 5.064403e+00
## POMT1 1.138662e-02 2.445484e-02 3.584147e-02 8.146058e+00
## DMAC2 -9.736311e-03 3.739776e-02 2.766145e-02 1.613986e+01
## MYH3 8.238688e-03 3.420168e-03 1.165886e-02 2.923022e+00
## S100A8 -1.675467e+02 1.947200e+02 2.717327e+01 1.901603e+04
## PTRH2 -2.520723e-02 4.113654e-02 1.592931e-02 1.580553e+01
## ZNF827 -2.451037e-04 9.574368e-03 9.329265e-03 1.713107e+00
## SPECC1L -3.468581e-02 5.101102e-02 1.632521e-02 2.273100e+01
## HEMGN -7.254943e-02 1.274176e-01 5.486822e-02 7.810916e+00
## TMEM42 2.090453e-02 8.416651e-03 2.932118e-02 6.129691e+00
## FAM122A -4.072737e-02 3.382473e-02 -6.902641e-03 2.077333e+01
## STPG1 5.666186e-03 -2.440922e-03 3.225264e-03 1.486864e+00
## CETN3 7.222174e-03 1.430764e-02 2.152982e-02 6.565368e+00
## UFD1 -1.096657e-01 1.296493e-01 1.998356e-02 5.049479e+01
## KIF22 2.282981e-02 7.064087e-02 9.347068e-02 1.728124e+01
## CASP5 -1.334032e-01 -1.760819e-01 -3.094851e-01 2.996600e+01
## PLAAT1 -2.591304e-03 -5.507631e-03 -8.098936e-03 9.454461e-01
## ARL3 -8.292268e-02 4.498909e-02 -3.793360e-02 1.995138e+01
## CIC -1.300345e-01 1.199687e-01 -1.006579e-02 3.983140e+01
## PIK3AP1 -1.541535e+00 -4.088033e-01 -1.950338e+00 3.334210e+02
## ZC3H12D 1.728435e-02 9.433826e-03 2.671817e-02 5.767324e+00
## ATP6V1E2 -1.529539e-03 8.705393e-03 7.175854e-03 3.690036e+00
## MYO1D -3.299847e-02 2.103809e-02 -1.196037e-02 3.711571e+00
## EIF4ENIF1 -1.305301e-02 2.904293e-02 1.598992e-02 1.720290e+01
## FGGY -9.227157e-03 -9.102625e-03 -1.832978e-02 4.419082e+00
## RSL24D1 2.615198e-02 2.512743e-01 2.774263e-01 8.579217e+01
## IL11RA 7.785450e-02 5.921889e-03 8.377639e-02 9.889316e+00
## BCL3 -9.246659e-02 -2.431353e-01 -3.356019e-01 6.741211e+01
## HK3 -2.603926e+00 5.064311e-01 -2.097495e+00 3.791184e+02
## SLC38A5 -7.896092e-02 3.971488e-02 -3.924604e-02 1.026462e+01
## AMPD3 -2.196969e-01 1.979823e-01 -2.171461e-02 5.114246e+01
## RPL26 1.365715e+00 2.133802e+00 3.499517e+00 6.829367e+02
## FOSL1 -5.973245e-03 -6.127895e-03 -1.210114e-02 8.668427e-01
## CAMP -5.356909e-01 2.019295e+00 1.483604e+00 1.275937e+02
## RAD23A -5.943022e-02 1.433915e-01 8.396133e-02 2.717567e+01
## ZNF764 4.164943e-03 6.197011e-03 1.036195e-02 4.090278e+00
## MRI1 4.016510e-02 -1.095916e-02 2.920594e-02 1.366873e+01
## TRIB2 1.552784e-01 1.095349e-03 1.563737e-01 3.024377e+01
## ZNF302 2.075703e-02 2.839581e-02 4.915284e-02 1.465583e+01
## SLC9A9 -2.217120e-02 -1.956368e-02 -4.173488e-02 1.209057e+01
## HERPUD1 -2.177051e-01 7.994333e-02 -1.377618e-01 8.883859e+01
## ZNF266 -7.190800e-02 1.744847e-01 1.025767e-01 5.990971e+01
## MCF2L 2.915196e-03 2.971291e-03 5.886487e-03 7.730811e-01
## ZNF653 2.052324e-03 5.969665e-03 8.021989e-03 1.136965e+00
## GAS7 -1.869257e+00 4.713799e-01 -1.397877e+00 2.904831e+02
## RABGGTB 5.573877e-02 -1.974673e-02 3.599204e-02 2.299724e+01
## DGKE 1.228009e-02 1.631743e-02 2.859752e-02 6.343596e+00
## TMEM268 4.383858e-02 -7.762668e-02 -3.378810e-02 1.466840e+01
## IGHM -1.194972e+01 3.746262e+00 -8.203457e+00 4.480712e+02
## KLHDC2 -4.744405e-03 8.417229e-02 7.942788e-02 3.875503e+01
## IL5RA -5.873171e-02 1.038340e-01 4.510226e-02 8.044089e+00
## ZNF551 5.575303e-03 1.265441e-02 1.822971e-02 3.585734e+00
## RPS8 2.434578e+00 2.224415e+00 4.658993e+00 7.798878e+02
## KLHL36 7.578233e-03 5.756094e-02 6.513918e-02 2.906308e+01
## ATF6 -6.468757e-01 2.413885e-01 -4.054873e-01 1.209463e+02
## COLGALT1 -4.145051e-01 5.553093e-02 -3.589741e-01 1.124530e+02
## NECAB3 -3.767776e-03 1.340023e-02 9.632454e-03 2.165013e+00
## MRPL40 -2.871413e-02 6.307722e-02 3.436309e-02 1.416011e+01
## SLC12A2 1.102276e-02 3.609048e-03 1.463181e-02 3.596070e+00
## SCAI -3.513762e-02 1.141137e-02 -2.372625e-02 6.333661e+00
## PPIB -1.784339e+00 1.022581e+00 -7.617588e-01 2.791492e+02
## RPS3A 6.036085e+00 3.936017e+00 9.972102e+00 1.531365e+03
## ZNF420 1.062567e-02 5.435004e-03 1.606067e-02 4.299580e+00
## SLC17A9 -3.292167e-02 1.762308e-02 -1.529860e-02 4.627370e+00
## PSTPIP2 -8.351072e-01 -1.728281e-01 -1.007935e+00 1.418600e+02
## GPR157 2.421877e-03 2.012339e-02 2.254527e-02 4.948715e+00
## ALG13 2.651520e-02 1.009562e-02 3.661082e-02 1.854092e+01
## MCFD2 -1.165000e-01 2.692470e-02 -8.957534e-02 4.247083e+01
## ARMH2 -1.002935e-02 6.425938e-03 -3.603410e-03 1.409541e+00
## COMMD3-BMI1 3.550774e-02 2.190314e-02 5.741087e-02 1.957333e+01
## ARHGAP15 -5.596847e-01 1.637284e-01 -3.959563e-01 1.275339e+02
## CHCHD4 3.637257e-03 9.994910e-03 1.363217e-02 7.207783e+00
## COX20 1.288347e-02 2.497750e-02 3.786096e-02 1.984225e+01
## CNOT6 -4.605230e-02 8.686157e-02 4.080927e-02 2.988508e+01
## RIMKLB -1.317343e-02 1.263751e-02 -5.359253e-04 3.286410e+00
## NAP1L5 4.861463e-03 -3.863093e-03 9.983701e-04 1.092955e+00
## JCHAIN -7.934366e+00 4.450324e+00 -3.484042e+00 6.739732e+02
## ENTR1 6.880491e-03 2.671611e-02 3.359661e-02 1.042726e+01
## SFXN3 -3.296330e-02 -4.555083e-02 -7.851413e-02 3.279589e+01
## JHY -1.892165e-04 6.387391e-03 6.198174e-03 1.569849e+00
## EHMT1 -3.376061e-02 3.255475e-02 -1.205861e-03 2.094538e+01
## RHOU -6.174499e-02 -8.849258e-02 -1.502376e-01 2.496251e+01
## CHCHD3 2.894740e-02 -5.071050e-03 2.387635e-02 1.502995e+01
## MED31 -2.585559e-02 2.603659e-02 1.809976e-04 1.004830e+01
## CRYBB2 2.104510e-03 2.122674e-02 2.333125e-02 1.639368e+00
## NEMP2 1.187111e-02 7.891182e-04 1.266023e-02 4.109036e+00
## ZNF629 1.482692e-02 -5.107412e-03 9.719510e-03 3.616183e+00
## C7orf25 -9.819277e-02 1.549226e-01 5.672979e-02 2.181481e+01
## GLRX2 -3.915003e-03 1.053844e-02 6.623439e-03 3.813200e+00
## CIDEB -2.094718e-01 1.251552e-01 -8.431652e-02 5.746499e+01
## RBM17 2.843648e-02 3.725753e-02 6.569401e-02 4.541480e+01
## HIP1R 3.882064e-02 2.875145e-02 6.757209e-02 9.582014e+00
## TMC6 3.344782e-02 2.751073e-01 3.085551e-01 8.870563e+01
## SDHC -2.257722e-01 1.300886e-01 -9.568357e-02 7.909462e+01
## IL17RD -1.623187e-03 -1.837011e-03 -3.460198e-03 7.388573e-01
## SLIT1 1.032381e-02 -1.165273e-02 -1.328921e-03 2.047054e+00
## AP3B1 -1.352043e-01 -7.901689e-03 -1.431060e-01 4.896297e+01
## FAM216A -1.031258e-03 7.713920e-03 6.682662e-03 2.930699e+00
## CYSTM1 -2.310626e+00 4.576661e-01 -1.852960e+00 1.942429e+02
## TAF4B 1.127262e-02 7.505154e-03 1.877777e-02 3.161009e+00
## LANCL1 3.177119e-02 2.267937e-02 5.445056e-02 1.324769e+01
## APOL1 4.150328e-01 -5.837851e-01 -1.687523e-01 7.323187e+01
## PPIL6 2.867075e-03 -4.072632e-03 -1.205557e-03 5.913859e-01
## SPRY2 4.670744e-02 -7.026412e-02 -2.355667e-02 2.448597e+00
## USP53 -4.871119e-03 2.595542e-02 2.108430e-02 5.756835e+00
## UFC1 8.387269e-02 6.634992e-02 1.502226e-01 6.107680e+01
## SPCS3 -2.952080e-01 1.112240e-01 -1.839840e-01 1.342507e+02
## PALLD 1.039736e-02 9.990433e-03 2.038779e-02 3.419101e+00
## C3orf18 2.228064e-02 -3.937007e-03 1.834364e-02 3.847679e+00
## HNRNPH3 4.702297e-01 -3.442708e-01 1.259589e-01 1.583682e+02
## TMEM229B 4.697477e-02 -1.123821e-01 -6.540733e-02 1.822800e+01
## TCTN2 -1.202622e-03 5.666642e-03 4.464019e-03 9.614549e-01
## RAB43 -4.866794e-01 3.417031e-01 -1.449763e-01 6.569360e+01
## CAT -1.147700e+00 1.008757e+00 -1.389425e-01 2.294727e+02
## DNASE1L1 -1.046185e-01 -3.139541e-02 -1.360139e-01 3.569779e+01
## ANKRD17 -1.519706e-01 7.954389e-02 -7.242666e-02 3.976812e+01
## PIGG -2.264807e-02 -8.519043e-04 -2.349997e-02 1.951554e+01
## PRDM5 -1.085690e-01 -4.107402e-02 -1.496430e-01 1.497782e+01
## NUF2 -1.635544e-02 3.043560e-02 1.408016e-02 3.343925e+00
## GAB1 -7.808714e-02 5.310315e-02 -2.498399e-02 1.646316e+01
## EPB41L3 -8.364118e-02 -3.456143e-03 -8.709733e-02 1.604940e+01
## PGM2L1 -3.119300e-02 2.619667e-02 -4.996331e-03 7.883946e+00
## LAMC1 -6.058920e-02 3.369384e-03 -5.721982e-02 7.348252e+00
## MLH3 5.884696e-02 -5.087760e-02 7.969354e-03 1.713903e+01
## TFAP2E 6.015573e-03 -2.114413e-03 3.901160e-03 1.566907e+00
## PLCL1 -4.170292e-02 -3.509792e-02 -7.680084e-02 8.729650e+00
## C7orf26 -3.770078e-02 4.859325e-02 1.089247e-02 2.206129e+01
## CENPA -1.045030e-02 1.367780e-02 3.227503e-03 1.450877e+00
## TXN2 -9.062344e-02 2.482525e-01 1.576291e-01 5.223611e+01
## ETS1 7.408951e-01 3.097000e-01 1.050595e+00 1.794656e+02
## MOB1B -4.328118e-02 5.985261e-02 1.657142e-02 1.889591e+01
## DBF4 3.110752e-02 -2.086281e-02 1.024470e-02 6.344090e+00
## SCD 2.486647e-02 -5.374390e-02 -2.887743e-02 8.327400e+00
## SHFL 2.026738e-01 -2.598129e-01 -5.713905e-02 5.245567e+01
## ADPRH 6.625718e-04 -6.354060e-02 -6.287803e-02 1.510197e+01
## PPHLN1 3.458648e-02 2.921367e-02 6.380015e-02 3.600282e+01
## PML 4.472738e-01 -3.933259e-01 5.394787e-02 4.892408e+01
## AFF3 3.218758e-03 1.438278e-02 1.760153e-02 2.889273e+00
## LRRC3 -2.482513e-03 -3.317169e-03 -5.799682e-03 1.221760e+00
## CDIN1 4.193599e-03 6.156989e-05 4.255169e-03 9.359835e-01
## STX7 -5.323987e-01 -1.687230e-03 -5.340859e-01 1.564422e+02
## DDHD2 2.384935e-02 2.672498e-02 5.057433e-02 1.173952e+01
## CMSS1 4.919172e-03 9.661339e-03 1.458051e-02 3.974582e+00
## RIPK3 -7.870397e-02 -4.277118e-02 -1.214752e-01 3.618256e+01
## MSH2 3.495948e-02 -6.455279e-03 2.850420e-02 9.829185e+00
## SDC3 -2.394593e-02 8.530450e-03 -1.541548e-02 2.604896e+00
## TIGAR -3.646989e-02 -2.129977e-03 -3.859987e-02 1.743032e+01
## BAZ1A -1.455174e+00 4.221630e-01 -1.033011e+00 2.922316e+02
## DEPP1 -2.783541e-02 1.297858e-02 -1.485684e-02 2.127389e+00
## PIM1 -7.389855e-01 2.948061e-01 -4.441795e-01 1.926616e+02
## ANKAR 1.090602e-03 3.147094e-03 4.237696e-03 1.141665e+00
## RPE 2.643436e-02 -3.833583e-02 -1.190147e-02 1.534480e+01
## UFSP2 7.283991e-03 1.727378e-02 2.455777e-02 8.907485e+00
## ZNF441 4.849989e-02 -3.372791e-02 1.477198e-02 8.332394e+00
## CSTF3 1.156600e-02 1.283733e-02 2.440333e-02 1.193950e+01
## NKRF 7.234666e-03 1.012777e-02 1.736244e-02 5.841123e+00
## PRKACB 1.383979e-01 4.524681e-02 1.836447e-01 4.126568e+01
## GADD45A -4.432518e-01 1.942283e-01 -2.490235e-01 4.265448e+01
## EVL 3.710258e-01 5.734698e-02 4.283727e-01 6.519973e+01
## ZNF519 2.332092e-03 1.670677e-03 4.002769e-03 6.343873e-01
## PLPP5 -3.822618e-02 5.695512e-02 1.872895e-02 1.459479e+01
## SOAT1 -1.591049e-01 -4.592277e-02 -2.050277e-01 5.912705e+01
## LIPT1 1.213336e-02 -1.337829e-03 1.079553e-02 4.128858e+00
## SSR2 -5.631343e-01 7.176596e-01 1.545254e-01 3.097936e+02
## FAM131A -2.829405e-02 6.890359e-03 -2.140369e-02 9.824006e+00
## IDNK -8.222840e-02 7.071157e-02 -1.151683e-02 9.396289e+00
## MLLT1 -2.656369e-01 6.305712e-02 -2.025798e-01 4.617664e+01
## GBP3 3.812900e-01 -4.201346e-01 -3.884455e-02 5.272194e+01
## ULK4 -9.940547e-05 8.672735e-03 8.573329e-03 2.990142e+00
## ICOSLG 2.703883e-02 -6.638173e-03 2.040066e-02 4.295330e+00
## GPRASP1 3.358361e-02 1.268310e-02 4.626671e-02 5.646207e+00
## SLC9A3 2.767305e-02 -1.312281e-03 2.636077e-02 7.545866e+00
## RPS17 1.656088e+00 1.611616e+00 3.267704e+00 5.248163e+02
## ACSL4 -1.329659e+00 1.006836e-01 -1.228975e+00 2.115098e+02
## BPNT1 9.605015e-04 2.845489e-02 2.941539e-02 1.435271e+01
## CMPK1 1.689090e-01 3.661633e-03 1.725707e-01 8.717656e+01
## RAD17 -1.701666e-03 2.847884e-02 2.677717e-02 1.547157e+01
## DSC2 -7.173873e-01 2.440328e-01 -4.733545e-01 7.494031e+01
## SYCP2 -4.421965e-02 -1.755235e-02 -6.177200e-02 8.955937e+00
## SNRPG -1.095571e-01 1.681480e-01 5.859088e-02 4.177045e+01
## GRB10 -6.001117e-01 1.257976e-02 -5.875320e-01 6.532700e+01
## COMMD2 -1.672298e-02 -3.510911e-02 -5.183209e-02 2.339801e+01
## TCF7L2 -5.490726e-02 -5.889858e-03 -6.079712e-02 1.831087e+01
## TRMT12 2.654177e-02 4.411873e-03 3.095365e-02 1.115162e+01
## FPGT -2.501423e-02 -4.533771e-02 -7.035194e-02 2.099347e+01
## GSPT1 4.930597e-02 1.079051e-01 1.572110e-01 5.348861e+01
## CKS1B -1.971946e-02 6.798866e-02 4.826920e-02 1.020823e+01
## CR1 -2.698258e+00 1.283224e+00 -1.415033e+00 3.918362e+02
## HSPB11 -2.458072e-02 5.474515e-02 3.016443e-02 1.618369e+01
## IQCN 1.259602e-02 -1.641207e-02 -3.816044e-03 2.566699e+00
## FOXK2 -2.049983e-02 3.859399e-02 1.809417e-02 2.009070e+01
## ANAPC16 2.240201e-01 8.969782e-03 2.329899e-01 1.192904e+02
## CRNKL1 -6.770984e-02 -5.232878e-02 -1.200386e-01 4.819478e+01
## ARL13B -9.135517e-03 1.131643e-02 2.180915e-03 3.116575e+00
## SGPL1 -8.520250e-02 2.131436e-02 -6.388814e-02 3.520017e+01
## NECAP2 1.553041e-02 1.403288e-01 1.558592e-01 8.799286e+01
## RNF13 -9.295888e-01 -1.273172e-01 -1.056906e+00 2.513651e+02
## ZNF14 2.568745e-02 -3.268271e-03 2.241918e-02 9.039287e+00
## H2BC18 5.850796e-03 -1.338973e-02 -7.538931e-03 1.879175e+00
## TFEC -2.888432e-02 -1.555434e-01 -1.844278e-01 3.921318e+01
## ZNF670 -5.217692e-03 1.744596e-03 -3.473095e-03 1.529215e+00
## ABCD2 9.474296e-03 1.799677e-02 2.747106e-02 4.009118e+00
## ENSA -3.866264e-01 4.413084e-01 5.468201e-02 1.450281e+02
## UST 5.632880e-03 4.564407e-03 1.019729e-02 1.912965e+00
## PORCN 3.312012e-03 1.365606e-02 1.696808e-02 4.422878e+00
## MFSD13A -5.370498e-02 1.087835e-02 -4.282663e-02 9.321614e+00
## HSPA9 2.177421e-01 -9.983173e-02 1.179104e-01 6.777344e+01
## CMTM2 -1.040460e+00 1.120068e+00 7.960813e-02 1.941764e+02
## CUTC -1.083741e-01 1.436354e-01 3.526131e-02 3.680348e+01
## DDB1 2.030666e-02 1.389420e-01 1.592487e-01 7.925502e+01
## USP45 3.827522e-03 1.097260e-02 1.480013e-02 3.448391e+00
## CYB5B 6.259426e-02 -1.546277e-02 4.713150e-02 3.194892e+01
## RPS23 2.239430e+00 1.752576e+00 3.992006e+00 7.103642e+02
## ENOPH1 3.657884e-02 -1.962856e-02 1.695028e-02 1.221730e+01
## CLEC4A -4.752836e-01 4.656117e-01 -9.671902e-03 1.179187e+02
## ABHD2 -1.110302e+00 1.016207e+00 -9.409524e-02 2.610945e+02
## ZFP69B -5.432428e-03 3.859402e-03 -1.573025e-03 1.021524e+00
## SGSM1 5.432774e-03 -8.103190e-04 4.622455e-03 1.310544e+00
## IL21R 3.469061e-02 2.287386e-02 5.756447e-02 9.077452e+00
## TJP2 -4.469788e-02 -1.759643e-02 -6.229431e-02 1.543924e+01
## KIAA0319L 1.071111e-01 -3.833560e-01 -2.762449e-01 1.067191e+02
## ST6GALNAC3 -9.719068e-02 -1.605108e-02 -1.132418e-01 1.248999e+01
## PRKCQ 6.006964e-02 3.203136e-03 6.327277e-02 1.363960e+01
## ZNF460 -6.573253e-03 2.378900e-03 -4.194353e-03 1.432244e+00
## NIPSNAP1 -2.213935e-02 5.982397e-02 3.768462e-02 2.269746e+01
## ANKRD34A -3.608933e-04 3.718975e-03 3.358082e-03 8.006204e-01
## NUDT19 2.052467e-02 -1.755044e-02 2.974235e-03 9.173926e+00
## ENO3 1.389851e-02 5.745882e-03 1.964440e-02 3.130735e+00
## DDR1 1.167042e-02 -9.758697e-03 1.911725e-03 1.852545e+00
## PRDX5 -8.134942e-01 1.157056e+00 3.435615e-01 1.977528e+02
## OXCT1 3.941321e-02 1.022809e-02 4.964130e-02 1.213257e+01
## GEMIN2 3.003043e-03 1.268173e-02 1.568478e-02 4.739101e+00
## WDR5B 2.465384e-03 1.983565e-02 2.230103e-02 9.909606e+00
## TSSK3 -7.354121e-03 6.705588e-03 -6.485333e-04 2.937058e+00
## GPR155 -1.527368e-01 6.517502e-02 -8.756181e-02 3.381303e+01
## EEF1AKMT3 -3.447576e-03 5.276190e-03 1.828615e-03 1.464210e+00
## DTX3 3.504580e-02 -2.537519e-03 3.250829e-02 5.829146e+00
## CD9 2.845473e-02 -2.155464e-01 -1.870916e-01 3.520582e+01
## SEPTIN1 1.583210e-01 1.159891e-01 2.743100e-01 3.454141e+01
## SLC25A24 -1.979469e-01 -2.205284e-02 -2.199998e-01 3.989440e+01
## ARMCX5 1.693157e-02 -4.446383e-03 1.248518e-02 5.603310e+00
## ZNF781 2.636951e-03 2.261128e-03 4.898079e-03 6.597617e-01
## GTF2H5 -9.906274e-03 3.960534e-02 2.969906e-02 1.238075e+01
## LTBP3 3.521384e-02 2.317903e-02 5.839287e-02 7.196099e+00
## ZFYVE26 -8.659447e-03 -8.022691e-02 -8.888636e-02 2.543646e+01
## SLC39A1 -2.179315e-01 9.294529e-02 -1.249862e-01 6.807186e+01
## PANK4 -7.005145e-03 2.144561e-02 1.444047e-02 1.065488e+01
## ACTR1B 5.602994e-02 5.549614e-02 1.115261e-01 3.230692e+01
## NCL 3.399491e-01 6.312314e-02 4.030722e-01 1.665412e+02
## TMEM165 -3.200525e-01 -3.144357e-02 -3.514961e-01 8.361873e+01
## DOK6 6.546453e-03 -7.653711e-03 -1.107258e-03 8.742078e-01
## SCMH1 8.293695e-03 1.043623e-02 1.872993e-02 5.731456e+00
## HEATR6 2.487234e-02 -6.011760e-03 1.886058e-02 8.194016e+00
## DNAJB11 -1.647629e-01 7.610451e-02 -8.865843e-02 4.121289e+01
## CSKMT 4.901055e-03 -2.583573e-03 2.317483e-03 1.005281e+00
## SCLY 3.186138e-03 4.314394e-03 7.500532e-03 2.599165e+00
## DYRK2 3.401840e-02 1.027255e-01 1.367439e-01 2.596157e+01
## ZNF773 9.779893e-03 1.823670e-03 1.160356e-02 3.721935e+00
## P2RX1 -5.119200e-01 6.498778e-02 -4.469322e-01 1.034275e+02
## IMMT 7.128590e-02 -3.712501e-02 3.416089e-02 3.729803e+01
## CCDC170 -2.054772e-02 2.031428e-02 -2.334448e-04 4.687869e+00
## PAPSS1 -3.726054e-01 2.710492e-01 -1.015562e-01 5.763037e+01
## STK16 -1.893326e-01 1.516436e-01 -3.768895e-02 4.399251e+01
## ST3GAL3 1.781987e-02 -3.024103e-02 -1.242116e-02 6.033265e+00
## H2AX -2.325000e-02 3.314062e-02 9.890617e-03 4.486409e+00
## C11orf24 -3.254256e-02 1.166729e-02 -2.087527e-02 6.298595e+00
## SLC25A5 1.740070e-01 6.723266e-02 2.412397e-01 1.014426e+02
## CFAP298 3.111181e-02 -5.224099e-03 2.588771e-02 1.303745e+01
## UHRF1 1.643757e-02 -2.463007e-02 -8.192503e-03 4.605744e+00
## MGST2 -5.601993e-02 6.791976e-03 -4.922795e-02 1.876945e+01
## PATZ1 3.374387e-02 2.056876e-02 5.431263e-02 1.413974e+01
## KIAA1143 9.532413e-03 5.068118e-02 6.021359e-02 2.655395e+01
## BTN2A2 5.478541e-02 -1.364645e-01 -8.167911e-02 3.296008e+01
## SPRING1 -3.419747e-02 5.214251e-02 1.794504e-02 2.273755e+01
## SHROOM4 -1.137590e-02 2.518197e-03 -8.857698e-03 1.643237e+00
## GIMAP5 4.185045e-01 2.057755e-02 4.390821e-01 8.577913e+01
## ZFP30 6.574523e-03 3.042205e-03 9.616728e-03 1.969295e+00
## OXSM -2.113222e-03 1.093317e-02 8.819949e-03 5.181345e+00
## RFT1 -3.265971e-02 3.326921e-02 6.094973e-04 1.914725e+01
## BTBD9 -2.274049e-02 3.514367e-03 -1.922612e-02 1.080641e+01
## ATP11B -1.673448e+00 3.555631e-01 -1.317885e+00 2.343231e+02
## KANK2 -9.786291e-04 1.083765e-02 9.859025e-03 1.231908e+00
## NEPRO 1.456243e-02 3.051489e-02 4.507732e-02 2.532166e+01
## RHNO1 1.249715e-02 1.376844e-02 2.626559e-02 1.059921e+01
## OARD1 -9.231229e-03 3.552455e-02 2.629332e-02 1.819484e+01
## PPM1N -4.689226e-02 4.551034e-02 -1.381919e-03 3.794789e+00
## NABP1 -8.897794e-01 2.174748e-01 -6.723046e-01 1.669840e+02
## SH3RF3 -1.043517e-02 -2.079416e-02 -3.122933e-02 5.643949e+00
## RGS9 -1.273424e-02 -2.258137e-03 -1.499237e-02 2.419944e+00
## RNF185 1.630333e-02 -1.191256e-01 -1.028223e-01 6.056053e+01
## ADGRL1 2.895562e-02 -9.199722e-03 1.975589e-02 4.228283e+00
## GAN 1.082023e-03 9.528939e-03 1.061096e-02 3.963195e+00
## APBB2 -1.093702e-02 4.679500e-03 -6.257517e-03 1.487571e+00
## CKAP4 -1.670412e+00 9.563509e-01 -7.140608e-01 2.607559e+02
## TRIM52 1.775298e-02 3.338395e-02 5.113693e-02 2.784915e+01
## TIMM8B -1.355890e-01 1.291009e-01 -6.488048e-03 2.565855e+01
## ATG16L1 2.501380e-02 1.696410e-02 4.197789e-02 2.406044e+01
## ZNF207 -3.070328e-02 -1.745697e-01 -2.052730e-01 8.861035e+01
## GBA2 -9.418771e-02 1.364881e-01 4.230038e-02 8.151130e+01
## LRRC2 -2.914765e-03 4.031352e-03 1.116587e-03 5.485035e-01
## NUDT3 -2.013943e-01 1.952053e-01 -6.188933e-03 8.314990e+01
## SMIM10L1 1.615368e-02 9.633109e-03 2.578679e-02 1.131740e+01
## MARS1 -1.749854e-01 1.472767e-01 -2.770864e-02 1.075905e+02
## DOLPP1 -9.427489e-03 1.453754e-02 5.110050e-03 5.173492e+00
## ZNF48 1.173734e-02 1.091774e-02 2.265508e-02 3.972516e+00
## PDK1 -9.805904e-02 4.613843e-02 -5.192061e-02 2.856314e+01
## ALOX12 5.531850e-02 -8.992685e-02 -3.460835e-02 1.398795e+01
## ARGFX 3.286896e-03 -7.646114e-04 2.522285e-03 6.724578e-01
## PPP2R5A -4.034060e-01 -5.949900e-01 -9.983959e-01 2.511935e+02
## GMEB1 3.561929e-02 -2.287948e-02 1.273981e-02 2.241214e+01
## RNF144B -9.473367e-01 3.475493e-01 -5.997874e-01 1.427903e+02
## E2F5 9.262061e-04 1.378278e-02 1.470898e-02 2.769126e+00
## SRF -2.054765e-01 1.003985e-01 -1.050780e-01 5.850857e+01
## RNF170 -1.564125e-02 2.246973e-02 6.828480e-03 1.155255e+01
## POLA1 1.358746e-02 1.198938e-03 1.478640e-02 4.077027e+00
## TMEM14A 9.416764e-03 -2.123228e-03 7.293536e-03 2.211961e+00
## FCGR1A -8.267822e-01 -1.903100e+00 -2.729882e+00 3.087244e+02
## FBXO8 -3.793732e-02 4.983949e-03 -3.295337e-02 1.404209e+01
## GABPB2 -2.512713e-03 2.708855e-02 2.457584e-02 1.467883e+01
## FAM86B1 1.814847e-03 9.123984e-03 1.093883e-02 2.181992e+00
## FIG4 -6.891475e-02 -5.703174e-02 -1.259465e-01 3.539686e+01
## ACSL3 -4.028051e-02 -1.256734e-01 -1.659539e-01 4.009698e+01
## ARL10 1.456134e-03 1.138858e-02 1.284471e-02 3.190915e+00
## ADAT2 1.700401e-02 5.453993e-03 2.245800e-02 4.729261e+00
## DTD2 8.605071e-03 4.335198e-03 1.294027e-02 4.284956e+00
## ATG2B -1.118542e-01 1.063288e-01 -5.525351e-03 3.168065e+01
## NDUFA10 5.548491e-02 5.434027e-03 6.091894e-02 3.108749e+01
## RBBP9 -1.315043e-03 1.433141e-02 1.301636e-02 5.171973e+00
## LAIR1 -6.692025e-01 2.040486e-01 -4.651539e-01 8.783275e+01
## MED11 -7.917889e-02 6.368444e-02 -1.549444e-02 2.602434e+01
## PPCS -1.023268e-01 8.572171e-02 -1.660513e-02 4.554313e+01
## PATL1 -2.157619e-01 -1.650624e-01 -3.808243e-01 9.050442e+01
## H2AC6 -4.191296e-02 -5.126026e-02 -9.317322e-02 1.832841e+01
## CTNNB1 1.438724e-01 -4.901533e-01 -3.462809e-01 1.822138e+02
## SLC14A1 5.897500e-03 2.027790e-02 2.617540e-02 3.454581e+00
## LTA4H -1.597525e+00 1.057804e+00 -5.397202e-01 3.336152e+02
## HMBOX1 -1.676384e-02 8.757200e-03 -8.006645e-03 4.292516e+00
## STX12 -9.476244e-02 8.965354e-03 -8.579709e-02 3.839712e+01
## HACD3 2.396919e-02 7.794097e-03 3.176329e-02 1.073915e+01
## AEBP1 1.507157e-02 -1.188926e-03 1.388264e-02 1.780795e+00
## PLB1 -4.017558e-01 3.519499e-01 -4.980587e-02 5.871048e+01
## NLRC4 -7.548129e-01 1.581143e-01 -5.966987e-01 1.122880e+02
## PAIP2B 1.053157e-02 1.191394e-03 1.172296e-02 2.735695e+00
## ALG5 -4.676525e-02 5.810562e-02 1.134037e-02 1.543650e+01
## GDF7 8.549701e-03 2.426572e-03 1.097627e-02 9.902044e-01
## MEAF6 4.394729e-02 9.911561e-03 5.385885e-02 2.744052e+01
## MRPL44 -1.031724e-02 -8.472254e-02 -9.503978e-02 3.977958e+01
## F2RL3 -1.980279e-03 -8.766680e-03 -1.074696e-02 2.029270e+00
## CDKL1 4.126609e-04 1.282186e-02 1.323452e-02 5.002712e+00
## TSTD1 -4.278995e-02 8.362115e-02 4.083120e-02 1.855985e+01
## LPIN1 7.385243e-03 5.499188e-02 6.237712e-02 1.509843e+01
## POLR2J2 5.140550e-03 2.737598e-02 3.251653e-02 8.874426e+00
## CYB561A3 1.652334e-02 1.006156e-01 1.171390e-01 4.109154e+01
## ZNF17 4.599751e-03 8.508991e-03 1.310874e-02 4.405496e+00
## AOC2 5.332427e-02 2.054278e-02 7.386705e-02 1.308649e+01
## ASF1B 1.667526e-02 6.596933e-02 8.264458e-02 1.960830e+01
## SLC35E3 -7.423009e-02 2.999053e-02 -4.423956e-02 2.077680e+01
## DMAC2L 1.991476e-04 1.650847e-02 1.670762e-02 7.464993e+00
## HTR7 2.824324e-03 -3.717164e-03 -8.928400e-04 6.601182e-01
## TM7SF3 -3.649587e-02 -3.186132e-02 -6.835719e-02 3.271562e+01
## ALAS2 -6.012551e-01 1.295474e+00 6.942185e-01 9.184898e+01
## SNTB2 -9.093551e-02 -4.576208e-03 -9.551171e-02 2.300223e+01
## GRTP1 2.827698e-03 -3.697112e-03 -8.694142e-04 8.250838e-01
## SGMS2 -5.633469e-02 -7.486351e-02 -1.311982e-01 2.072795e+01
## TMEM185A 1.173836e-02 -3.342501e-02 -2.168664e-02 1.671710e+01
## MYCT1 -5.605189e-03 -9.800291e-03 -1.540548e-02 2.770226e+00
## NPC1 -3.698816e-02 3.184006e-02 -5.148100e-03 1.515921e+01
## ECM1 1.906710e-03 -5.546448e-03 -3.639738e-03 9.066670e-01
## TNFSF13 -1.948917e-01 -5.975622e-03 -2.008673e-01 8.516356e+01
## ZNF569 6.813715e-03 3.649792e-03 1.046351e-02 2.779954e+00
## NME6 -4.438725e-02 2.462689e-02 -1.976036e-02 1.795240e+01
## PAIP1 -5.795858e-03 3.861474e-02 3.281888e-02 2.643041e+01
## FCRL3 2.759250e-02 7.411895e-02 1.017114e-01 1.661544e+01
## TNS3 -2.866529e-02 -4.391213e-02 -7.257742e-02 1.424343e+01
## GLCE -1.634896e-02 -1.139105e-02 -2.774001e-02 8.668149e+00
## CASD1 2.351078e-02 9.081539e-03 3.259232e-02 8.515218e+00
## PTER -1.010633e-02 2.151380e-02 1.140747e-02 6.386741e+00
## STAB1 -1.994415e-01 -2.888976e-01 -4.883390e-01 8.270922e+01
## KIAA2013 -3.567449e-01 2.227859e-01 -1.339590e-01 8.915603e+01
## CCR2 -1.175922e-01 -6.228427e-01 -7.404350e-01 1.805584e+02
## LMAN2L 2.725016e-03 1.530680e-02 1.803182e-02 9.559004e+00
## HDLBP -2.658006e-01 1.755618e-01 -9.023889e-02 1.125088e+02
## AGAP6 1.585918e-02 1.808491e-02 3.394409e-02 1.088379e+01
## RGL4 -1.014043e+00 8.855853e-01 -1.284575e-01 1.091921e+02
## ERLIN1 -4.180535e-01 -8.512487e-02 -5.031783e-01 7.037644e+01
## RNF123 -4.006969e-02 5.650305e-02 1.643336e-02 2.111708e+01
## RETREG1 5.559746e-02 -1.402286e-02 4.157460e-02 1.000963e+01
## ATL3 -1.114903e-01 -4.107355e-03 -1.155977e-01 4.719755e+01
## ADI1 -6.382930e-02 1.198440e-01 5.601471e-02 4.780779e+01
## U2AF2 1.828454e-02 1.032142e-01 1.214988e-01 7.896847e+01
## KAT2A 6.636636e-02 5.348016e-03 7.171438e-02 1.636017e+01
## PCYT1A -4.064405e-01 3.822462e-02 -3.682159e-01 1.040584e+02
## STK24 -9.219002e-03 -1.647019e-01 -1.739209e-01 1.023257e+02
## ZBTB14 3.780869e-02 2.306378e-04 3.803933e-02 1.672740e+01
## MAX -3.238677e-01 -5.440141e-02 -3.782691e-01 1.879157e+02
## SMIM7 -3.605735e-02 5.807403e-02 2.201667e-02 2.801361e+01
## FDXACB1 5.007028e-03 2.886896e-03 7.893923e-03 2.511248e+00
## PFKFB2 -1.060555e+00 -5.566414e-01 -1.617196e+00 1.265003e+02
## GPR65 -2.580732e-01 -9.989315e-02 -3.579664e-01 9.196611e+01
## EXOC6 -3.897545e-01 7.323616e-02 -3.165183e-01 6.806161e+01
## CCDC92 3.762440e-02 -1.452409e-02 2.310031e-02 9.921921e+00
## TMIGD2 3.033685e-02 -5.695483e-03 2.464137e-02 3.438034e+00
## ERN1 -2.624156e-01 3.829345e-01 1.205189e-01 6.606629e+01
## HSPA1A -9.429940e-01 2.363411e-01 -7.066529e-01 1.697230e+02
## GCA -8.952564e+00 1.422173e+00 -7.530391e+00 1.384778e+03
## ASF1A 3.485453e-03 3.177323e-02 3.525868e-02 1.284688e+01
## ALAD -1.919750e-02 6.258015e-02 4.338265e-02 2.673805e+01
## LILRA5 -5.168022e+00 2.607849e+00 -2.560174e+00 6.052065e+02
## STAC3 3.536064e-02 -1.014897e-01 -6.612905e-02 2.025690e+01
## GUCY2C -3.315535e-03 2.708867e-04 -3.044648e-03 4.886263e-01
## LILRB4 -1.926915e-01 -2.727767e-02 -2.199692e-01 4.152024e+01
## TP53I11 -3.199671e-01 -9.935235e-02 -4.193194e-01 8.715598e+01
## ZMYND11 7.205947e-03 5.452478e-02 6.173073e-02 1.594254e+01
## KLC2 6.750217e-03 6.742833e-03 1.349305e-02 2.865275e+00
## RSPH3 -1.174130e-02 -1.285945e-02 -2.460075e-02 8.294532e+00
## ANKLE1 -5.876017e-03 1.309320e-02 7.217180e-03 2.766464e+00
## RWDD3 -1.522402e-03 2.235480e-02 2.083240e-02 1.100620e+01
## APOO -1.136325e-02 9.119383e-03 -2.243870e-03 2.966525e+00
## HSDL2 -5.818096e-01 2.353602e-01 -3.464494e-01 1.134516e+02
## NOTCH4 -9.972253e-03 7.089434e-03 -2.882819e-03 1.992060e+00
## FAM162A 1.455868e-02 2.139004e-02 3.594872e-02 1.066619e+01
## BCAS3 -3.156973e-02 5.587973e-03 -2.598176e-02 1.545785e+01
## MOV10 4.073111e-01 -4.107291e-01 -3.418014e-03 4.653855e+01
## USP12 3.192739e-03 4.330945e-02 4.650218e-02 1.805303e+01
## DPYD -5.561833e-01 -3.923525e-02 -5.954186e-01 1.357611e+02
## OLFM2 9.186458e-03 2.683348e-04 9.454793e-03 1.435571e+00
## RPS3 2.915493e+00 2.451320e+00 5.366813e+00 1.090454e+03
## DYNC1LI2 -1.123428e-01 -6.398051e-04 -1.129826e-01 4.561655e+01
## CDK5RAP2 -7.794603e-01 9.237292e-01 1.442689e-01 1.120669e+02
## CDC123 -5.402254e-01 1.190327e-01 -4.211927e-01 8.473879e+01
## DRAM1 -2.331533e-01 -4.366426e-02 -2.768176e-01 5.697642e+01
## VTI1A -5.635274e-02 -2.594255e-05 -5.637868e-02 2.549703e+01
## ROGDI -1.597888e-01 2.289055e-01 6.911678e-02 3.294670e+01
## ZRANB2 1.381275e-01 -4.439254e-02 9.373497e-02 5.792912e+01
## ZDHHC19 -2.979277e-01 -6.366010e-02 -3.615878e-01 1.671525e+01
## GPN3 -5.415121e-03 3.599911e-02 3.058399e-02 1.210825e+01
## F8 -5.936217e-02 1.838420e-02 -4.097797e-02 8.619010e+00
## LAT 2.430748e-01 2.549635e-02 2.685712e-01 4.094321e+01
## TADA2B -1.397493e-01 1.185958e-01 -2.115355e-02 5.657254e+01
## BMP8B -1.072773e-02 7.808406e-03 -2.919328e-03 2.344230e+00
## PPP2R3B -1.191638e-02 2.652111e-02 1.460473e-02 4.742568e+00
## ADAMTS1 1.406337e-02 -7.318974e-03 6.744393e-03 1.755699e+00
## MRPS27 3.915066e-02 2.017078e-02 5.932143e-02 2.142748e+01
## NPRL2 -5.347194e-03 5.966707e-02 5.431987e-02 2.244391e+01
## ACER3 -1.265256e-01 -8.991751e-02 -2.164431e-01 3.703059e+01
## ABCC1 -1.553364e-03 4.932744e-02 4.777407e-02 2.794705e+01
## LYAR 3.234569e-02 -2.116227e-02 1.118342e-02 1.347282e+01
## EIF4B 6.601226e-01 1.962934e-01 8.564160e-01 3.015340e+02
## VBP1 -9.972498e-02 1.324126e-01 3.268767e-02 4.718068e+01
## ATAD2B -8.715915e-02 4.645747e-02 -4.070168e-02 2.246466e+01
## MTPAP 2.042895e-02 -9.564942e-03 1.086401e-02 6.890148e+00
## GCNT2 -2.567128e-02 8.291467e-03 -1.737982e-02 5.877127e+00
## JPT2 1.862853e-02 1.797133e-02 3.659987e-02 1.377383e+01
## RASA3 1.389842e-01 3.410504e-02 1.730892e-01 6.426093e+01
## CTDSP2 -9.795028e-01 9.638903e-01 -1.561254e-02 3.324591e+02
## PIAS2 -4.617278e-02 -9.734839e-02 -1.435212e-01 1.775091e+01
## BDH2 1.692418e-02 9.740310e-03 2.666449e-02 7.591735e+00
## SAE1 6.872556e-02 2.558642e-02 9.431198e-02 3.897898e+01
## TCEAL4 2.350788e-02 -1.694585e-02 6.562030e-03 7.000191e+00
## TXNDC5 -3.363056e+00 2.080162e+00 -1.282894e+00 2.778705e+02
## PHF8 -9.310705e-02 5.698658e-02 -3.612047e-02 2.877252e+01
## POM121 6.927634e-02 4.521711e-02 1.144935e-01 4.651626e+01
## ST6GALNAC6 9.714576e-02 5.827867e-02 1.554244e-01 3.027056e+01
## COA6 1.715005e-02 -2.808227e-02 -1.093222e-02 1.065373e+01
## METAP2 6.154784e-02 1.762074e-03 6.330992e-02 3.248210e+01
## NMRK1 1.056015e-01 -9.901452e-02 6.587004e-03 3.234949e+01
## INAFM2 -6.652753e-02 -4.091715e-02 -1.074447e-01 4.482321e+01
## CHURC1-FNTB -4.010506e-02 -2.584662e-02 -6.595169e-02 1.561508e+01
## TRRAP -5.047947e-02 5.879704e-02 8.317571e-03 1.691544e+01
## RPS25 1.747925e+00 3.919613e-01 2.139886e+00 4.875764e+02
## NUDCD2 1.599695e-02 4.223965e-03 2.022091e-02 1.053305e+01
## TBX19 -1.056920e-02 1.273794e-03 -9.295410e-03 3.392818e+00
## STAT1 -1.205241e+00 -1.490337e+00 -2.695578e+00 4.288975e+02
## FAHD1 1.006409e-02 9.319304e-03 1.938340e-02 5.384156e+00
## EIF2A 1.188043e-01 -6.664874e-02 5.215560e-02 5.551544e+01
## METRNL -9.050672e-02 1.276550e-02 -7.774122e-02 1.563471e+01
## PHLPP2 1.342446e-03 1.278895e-02 1.413140e-02 3.143928e+00
## AIMP2 -1.133111e-02 4.486207e-03 -6.844905e-03 3.830284e+00
## EFCAB12 1.659315e-02 9.332853e-04 1.752643e-02 2.454177e+00
## DPY19L3 -2.102552e-01 1.790087e-02 -1.923543e-01 3.649208e+01
## SARNP -2.121460e-01 2.786294e-01 6.648337e-02 6.445111e+01
## GK -1.241977e+00 1.664088e-01 -1.075568e+00 1.883572e+02
## MAP3K8 -1.142629e-01 -1.580712e-01 -2.723342e-01 5.632001e+01
## SACS -9.896854e-03 4.753548e-02 3.763863e-02 8.787320e+00
## ZNF333 -1.588629e-01 9.434796e-02 -6.451491e-02 4.115134e+01
## NSD3 1.027276e-01 2.183055e-01 3.210331e-01 9.646241e+01
## AMIGO3 -6.575052e-03 6.022787e-03 -5.522651e-04 1.157669e+00
## TDRD12 3.536485e-03 1.218378e-03 4.754863e-03 6.505601e-01
## PARP9 -1.414670e+00 -7.699235e-01 -2.184593e+00 3.519181e+02
## JAZF1 -1.780543e-01 1.367645e-01 -4.128980e-02 5.051893e+01
## WDPCP 1.304011e-03 4.517240e-03 5.821251e-03 1.793699e+00
## KIFAP3 9.403228e-03 -4.074293e-02 -3.133971e-02 1.393447e+01
## H2BC4 4.118182e-01 -6.577492e-01 -2.459311e-01 1.102399e+02
## PPARD 9.815209e-03 1.862401e-02 2.843921e-02 1.077193e+01
## ZNF844 5.666541e-02 -6.262605e-02 -5.960636e-03 1.766881e+01
## MRPL30 8.743049e-03 2.580582e-02 3.454887e-02 2.225579e+01
## GPR141 -3.502210e-01 1.350405e-01 -2.151805e-01 5.524532e+01
## PER2 -2.507104e-02 1.211757e-02 -1.295347e-02 7.395293e+00
## CYP27A1 -3.010184e-01 3.418637e-01 4.084526e-02 6.759784e+01
## CASP6 9.940229e-03 3.957950e-03 1.389818e-02 6.602254e+00
## ZNF500 1.081413e-02 8.480991e-03 1.929512e-02 4.895895e+00
## MSRA -1.134850e-01 7.956163e-02 -3.392335e-02 1.989037e+01
## TTI2 -2.024452e-02 -1.671735e-03 -2.191625e-02 1.190787e+01
## RBM8A -9.675910e-02 1.671527e-01 7.039359e-02 9.758925e+01
## GNL3L -6.639773e-02 4.069806e-02 -2.569967e-02 2.936114e+01
## NT5DC3 3.142591e-02 -7.441230e-03 2.398468e-02 6.803999e+00
## BRIX1 2.170645e-02 3.465338e-03 2.517179e-02 9.708871e+00
## E2F4 -5.925237e-02 1.616699e-01 1.024176e-01 7.390580e+01
## COX7C 4.458096e-02 4.773786e-01 5.219596e-01 1.291261e+02
## ADPRM 2.152412e-02 -1.538599e-02 6.138125e-03 9.497784e+00
## RPL9 3.937896e+00 2.940897e+00 6.878792e+00 1.129985e+03
## PLAAT3 3.996238e-03 -3.223030e-02 -2.823407e-02 7.024710e+00
## CBR3 1.680798e-02 -2.268078e-04 1.658117e-02 1.579246e+00
## FCGR3B 3.432753e+01 -2.840766e+01 5.919876e+00 6.069773e+03
## ARL15 -2.446285e-02 -1.615394e-02 -4.061679e-02 1.407171e+01
## CAAP1 1.801543e-02 -7.328360e-03 1.068707e-02 6.649252e+00
## CTPS1 2.257924e-02 -2.497805e-03 2.008143e-02 8.866075e+00
## ZSCAN12 -3.257129e-03 9.568647e-03 6.311518e-03 1.838900e+00
## RPL10 3.084705e+00 4.246937e+00 7.331642e+00 1.452109e+03
## PGGT1B -4.937942e-02 -5.147240e-02 -1.008518e-01 3.533695e+01
## PDZK1IP1 -4.331106e-02 8.406100e-02 4.074994e-02 9.907581e+00
## MBOAT2 -4.394998e-01 8.952818e-02 -3.499716e-01 8.172720e+01
## NSMCE4A 1.857500e-02 2.818058e-02 4.675557e-02 1.559018e+01
## BARD1 -1.288383e-02 1.900571e-03 -1.098326e-02 3.664282e+00
## ATXN10 7.530148e-02 -8.497935e-03 6.680355e-02 3.321966e+01
## SPIN3 9.309134e-03 1.049013e-02 1.979927e-02 3.307735e+00
## TRIM36 -5.225739e-03 2.780498e-03 -2.445241e-03 1.064731e+00
## C2orf42 1.452067e-02 -1.069870e-03 1.345080e-02 8.084941e+00
## MILR1 -1.299221e-01 -4.599933e-02 -1.759215e-01 3.110910e+01
## PJVK 2.023212e-04 2.543842e-03 2.746163e-03 5.483105e-01
## TOM1L2 -1.481278e-02 2.768150e-02 1.286872e-02 1.523963e+01
## EXOC1 -8.135143e-02 -5.699046e-02 -1.383419e-01 5.217175e+01
## MIA2 -2.291629e-01 1.323110e-01 -9.685187e-02 6.510253e+01
## C1orf162 -1.015928e+00 -6.062321e-02 -1.076551e+00 2.135242e+02
## NLRP12 -4.674031e-01 2.065504e-01 -2.608527e-01 1.132651e+02
## TSC22D1 -2.132228e-01 6.420808e-02 -1.490147e-01 5.140493e+01
## CYSLTR2 -9.760990e-03 3.195416e-02 2.219317e-02 4.572526e+00
## ING2 -1.565685e-02 3.019516e-02 1.453831e-02 9.387856e+00
## PDE6D -4.246973e-02 3.791855e-02 -4.551188e-03 2.145613e+01
## MGAT2 -4.091097e-02 5.496276e-02 1.405179e-02 3.118414e+01
## GDPD3 7.620482e-02 -9.268975e-02 -1.648493e-02 2.080530e+01
## SMIM10 -1.224010e-03 -3.682389e-03 -4.906399e-03 7.300447e-01
## MFSD2A -3.933941e-03 -7.441654e-03 -1.137559e-02 2.649270e+00
## ZNF790 3.662400e-03 2.169863e-03 5.832263e-03 1.685847e+00
## ITGB1BP2 -1.053262e-03 2.854651e-03 1.801389e-03 4.594025e-01
## TPRKB -1.865243e-02 3.279546e-02 1.414303e-02 1.272323e+01
## SLC25A20 -6.954093e-02 -3.002730e-02 -9.956823e-02 4.535745e+01
## DYNC2I2 -2.119987e-02 3.599066e-02 1.479079e-02 3.624960e+00
## SAMD9L -1.588739e+00 -5.203568e-01 -2.109096e+00 2.506602e+02
## SPG21 -2.110773e-01 2.987483e-01 8.767100e-02 1.242699e+02
## TTC39C 6.419304e-02 2.177156e-02 8.596460e-02 2.167799e+01
## B3GNT2 -3.473836e-01 1.739186e-01 -1.734650e-01 6.300361e+01
## AKT1S1 -2.216684e-02 4.854251e-02 2.637567e-02 1.139058e+01
## TCFL5 -3.093025e-02 3.782425e-02 6.894008e-03 1.181077e+01
## MTA3 1.689586e-02 -2.721087e-03 1.417477e-02 4.236973e+00
## YEATS4 1.435775e-02 1.482558e-02 2.918334e-02 9.487128e+00
## DNAJC9 2.177993e-02 4.256338e-02 6.434330e-02 1.594943e+01
## VSIG2 -3.462734e-03 -5.512361e-03 -8.975095e-03 1.657345e+00
## BASP1 -3.431184e+00 6.132533e-01 -2.817931e+00 6.182103e+02
## P3H4 8.009738e-03 -3.763216e-04 7.633416e-03 1.667944e+00
## TSNARE1 1.655996e-02 1.486511e-03 1.804647e-02 3.936729e+00
## SEC61B -2.009025e-01 1.180651e-01 -8.283738e-02 4.549327e+01
## DHX32 8.171860e-03 1.103782e-02 1.920968e-02 6.889511e+00
## CREB3L2 -5.624983e-02 -7.264429e-03 -6.351426e-02 1.981567e+01
## ITIH4 -1.019080e-01 -4.272988e-02 -1.446379e-01 1.999925e+01
## EEPD1 -2.852801e-02 7.092606e-02 4.239805e-02 2.263370e+01
## OSBPL9 -3.088369e-01 9.632022e-02 -2.125167e-01 6.144700e+01
## ZNF853 1.026755e-02 4.501641e-03 1.476919e-02 2.134514e+00
## ZMAT2 -2.272322e-01 5.094122e-01 2.821799e-01 1.793624e+02
## HYOU1 -1.763561e-01 1.187157e-01 -5.764034e-02 4.559301e+01
## ATP6V0E2 5.481973e-02 6.461726e-03 6.128146e-02 8.987266e+00
## SMARCE1 5.575698e-02 -7.918073e-02 -2.342375e-02 6.359921e+01
## TATDN1 1.584802e-02 7.075313e-03 2.292333e-02 8.076839e+00
## VPS8 -3.894923e-01 2.213221e-01 -1.681701e-01 9.445788e+01
## SRSF5 7.224649e-01 -4.149212e-01 3.075438e-01 2.540320e+02
## NDUFA2 -1.053561e-01 1.544901e-01 4.913405e-02 3.469396e+01
## SPOP -9.709652e-02 -4.376593e-02 -1.408624e-01 7.210551e+01
## MTMR1 -1.305764e-01 1.904992e-02 -1.115265e-01 2.914113e+01
## TDRD9 -2.881032e-01 7.232284e-02 -2.157803e-01 3.177470e+01
## CENPP -8.622770e-03 7.179591e-03 -1.443179e-03 2.306867e+00
## B3GNT5 -5.675103e-02 -4.133607e-01 -4.701118e-01 5.661468e+01
## NEK6 -1.044137e-01 8.228642e-02 -2.212731e-02 2.746447e+01
## ZNF121 2.368585e-02 2.340321e-02 4.708906e-02 1.473759e+01
## SGCB 4.321569e-03 3.509409e-03 7.830978e-03 2.374304e+00
## ID3 8.872212e-03 4.824858e-03 1.369707e-02 1.593617e+00
## TXN -6.808639e-01 9.977366e-01 3.168727e-01 1.918257e+02
## HARS2 -5.584555e-02 5.136182e-02 -4.483738e-03 3.781726e+01
## MPIG6B 2.049004e-02 -3.014421e-01 -2.809521e-01 5.766406e+01
## S100Z -1.395787e-02 -7.410767e-04 -1.469895e-02 5.178524e+00
## SMARCD3 -2.404014e-02 -4.102805e-01 -4.343206e-01 8.049888e+01
## RNF146 -3.337602e-01 -7.265457e-03 -3.410256e-01 6.922114e+01
## ZNF512B 1.832758e-02 3.694188e-03 2.202177e-02 4.074057e+00
## PELO -1.975276e-02 9.187874e-02 7.212598e-02 2.621158e+01
## OPTN 1.636981e-01 -3.993379e-03 1.597047e-01 4.312494e+01
## RASGRP1 5.185649e-02 7.702857e-02 1.288851e-01 2.285327e+01
## ZNF766 5.027356e-02 -2.496643e-02 2.530712e-02 2.112970e+01
## CCDC152 4.434116e-03 6.532298e-04 5.087346e-03 9.291141e-01
## GSDMA 2.747656e-03 1.423917e-03 4.171573e-03 6.700395e-01
## BCORL1 -5.939852e-02 4.176517e-02 -1.763336e-02 1.536225e+01
## SURF4 -2.153031e-01 1.801862e-01 -3.511684e-02 1.022172e+02
## TMEM63B -2.517292e-02 4.357597e-02 1.840305e-02 1.509417e+01
## CEBPD -4.051874e-01 -1.070491e-01 -5.122365e-01 8.835448e+01
## AOAH -4.996009e-01 1.091505e-02 -4.886858e-01 1.955472e+02
## SYNM -2.017010e-03 -1.400184e-02 -1.601885e-02 3.136887e+00
## DSEL 7.307732e-03 5.984310e-04 7.906163e-03 1.243566e+00
## MSH6 -3.422450e-02 3.480644e-02 5.819425e-04 2.168682e+01
## PDHX -3.902345e-03 -1.563915e-02 -1.954150e-02 7.971595e+00
## ZNF609 -7.188630e-02 5.255815e-02 -1.932816e-02 2.070060e+01
## TMEM120A -4.304049e-01 2.359194e-01 -1.944855e-01 7.230839e+01
## PLD1 1.107180e-02 -3.524883e-02 -2.417703e-02 9.232717e+00
## CDCP1 4.955526e-03 -6.008872e-03 -1.053347e-03 1.044439e+00
## POLB 8.079991e-02 -1.264960e-01 -4.569605e-02 3.359767e+01
## CNOT11 3.542927e-02 -4.823019e-03 3.060625e-02 2.983028e+01
## TMCO4 2.252084e-02 -1.820140e-02 4.319434e-03 6.381996e+00
## FCGBP 2.895500e-02 1.387926e-03 3.034293e-02 2.585408e+00
## CASTOR2 -1.799816e-02 3.083399e-02 1.283583e-02 9.187714e+00
## TCF3 -1.463601e-02 6.546955e-02 5.083354e-02 1.421426e+01
## SCARB2 -2.333934e-02 -1.570906e-01 -1.804299e-01 4.767871e+01
## CCDC120 4.921101e-03 1.568217e-03 6.489318e-03 1.997498e+00
## CCNK 1.927481e-02 -9.667713e-02 -7.740233e-02 4.080686e+01
## REPS1 2.016614e-02 8.893148e-03 2.905929e-02 1.424452e+01
## ZNF331 7.407678e-02 -5.892142e-02 1.515536e-02 6.493554e+00
## TMEM164 -7.453746e-01 2.149284e-01 -5.304462e-01 1.670020e+02
## UBE2G1 -8.254099e-02 1.531377e-01 7.059670e-02 5.955070e+01
## NPR2 4.993240e-03 1.214301e-03 6.207541e-03 1.151563e+00
## RABEPK -3.415715e-02 3.345329e-02 -7.038611e-04 1.522785e+01
## SLFN5 -2.247744e-01 -5.022786e-01 -7.270530e-01 8.678247e+01
## STK38 -4.570095e-01 1.335457e-01 -3.234639e-01 2.130187e+02
## IRF2BP1 -8.523350e-03 1.395329e-02 5.429940e-03 3.893644e+00
## MAN1A1 -5.681143e-01 4.303583e-01 -1.377560e-01 1.117366e+02
## FADS1 9.503938e-04 -3.726565e-02 -3.631526e-02 1.026303e+01
## SLIRP -3.329415e-02 6.026137e-02 2.696722e-02 1.489779e+01
## GTPBP4 5.316145e-02 -2.494489e-02 2.821656e-02 2.394762e+01
## SH3PXD2A 1.353598e-02 7.504820e-03 2.104080e-02 5.490907e+00
## LYPLAL1 -3.965701e-02 2.153469e-02 -1.812232e-02 1.627181e+01
## HNRNPR 1.578969e-01 -4.472881e-02 1.131681e-01 7.475318e+01
## ZNF34 9.072381e-03 -2.055310e-03 7.017071e-03 3.492612e+00
## SH3YL1 2.290811e-02 7.221550e-03 3.012966e-02 6.364571e+00
## EIPR1 2.087893e-02 1.036641e-02 3.124534e-02 1.218920e+01
## PTDSS1 9.362952e-02 -2.905739e-02 6.457212e-02 4.952074e+01
## TRPT1 -8.630514e-03 1.994976e-02 1.131925e-02 5.435570e+00
## GALM 2.944065e-01 -2.487747e-01 4.563180e-02 3.332247e+01
## IQSEC1 -2.650310e-01 -3.822813e-01 -6.473123e-01 2.255221e+02
## FAM151B -6.359343e-03 -7.402250e-03 -1.376159e-02 2.746729e+00
## PDIA6 -3.780513e-01 1.170645e-01 -2.609868e-01 1.040426e+02
## HNRNPM 1.069550e-01 -1.012831e-01 5.671949e-03 8.434736e+01
## INPP4A -1.451779e-01 5.662384e-02 -8.855402e-02 5.956502e+01
## OPN3 1.631217e-02 1.547444e-02 3.178661e-02 1.078439e+01
## RPS27 6.502640e+00 3.730745e+00 1.023338e+01 1.484866e+03
## STARD5 -8.761741e-03 4.430285e-03 -4.331456e-03 2.043127e+00
## ZFP1 6.989857e-03 5.183510e-03 1.217337e-02 3.471857e+00
## FRRS1 -9.388633e-03 -5.852480e-03 -1.524111e-02 4.509762e+00
## APH1B -1.969063e-01 1.081648e-01 -8.874158e-02 4.160724e+01
## MAIP1 -1.577619e-02 4.988623e-03 -1.078757e-02 5.894379e+00
## THNSL1 6.190195e-03 2.551106e-03 8.741301e-03 1.747080e+00
## TRIB1 -1.082732e+00 4.346543e-01 -6.480780e-01 1.571265e+02
## TCEAL9 -3.935822e-03 -7.492990e-03 -1.142881e-02 2.050219e+00
## AREL1 -3.620498e-01 1.864582e-01 -1.755917e-01 9.790630e+01
## CACNG8 -6.574124e-03 7.515552e-03 9.414279e-04 1.019751e+00
## NUB1 1.661854e-01 -2.951207e-01 -1.289352e-01 7.598083e+01
## SOCS1 1.982380e-02 -1.564662e-02 4.177180e-03 2.097062e+00
## MAST4 -3.015179e-02 4.916522e-04 -2.966014e-02 5.877948e+00
## CDKN2C -5.159833e-02 2.940947e-02 -2.218886e-02 8.088194e+00
## ARHGEF2 -4.092458e-01 2.574083e-01 -1.518374e-01 1.785842e+02
## RNF168 9.270609e-03 -4.498215e-02 -3.571154e-02 2.170754e+01
## XRCC6 2.487419e-01 -1.404928e-02 2.346926e-01 1.377320e+02
## SLC24A4 -1.120304e-01 1.639213e-01 5.189086e-02 4.155545e+01
## SIPA1L2 -5.255464e-01 7.758837e-02 -4.479580e-01 7.630592e+01
## LAPTM4B -5.167193e-03 3.298157e-02 2.781438e-02 6.250814e+00
## TMC8 4.827354e-01 1.934981e-02 5.020852e-01 1.104688e+02
## CCDC6 3.966743e-02 -4.182975e-02 -2.162319e-03 1.785300e+01
## SEC31B 4.113328e-02 -2.133124e-04 4.091997e-02 1.660274e+01
## RSL1D1 1.957735e-01 -2.625459e-02 1.695189e-01 7.996146e+01
## AGO2 -2.086659e-01 2.159062e-01 7.240322e-03 5.669193e+01
## DENND10 -4.588497e-01 3.733592e-02 -4.215138e-01 1.200017e+02
## ZNF780A -5.260924e-02 4.844591e-02 -4.163332e-03 2.001198e+01
## NBPF10 -6.540418e-01 3.860829e-01 -2.679589e-01 1.138213e+02
## YWHAH -1.085720e-01 -3.064135e-01 -4.149855e-01 1.134181e+02
## TMEM204 3.542813e-02 -3.054092e-03 3.237404e-02 4.402109e+00
## AGFG2 3.503273e-02 1.340879e-02 4.844151e-02 7.216096e+00
## SLC2A9 -6.434078e-03 -3.915702e-03 -1.034978e-02 3.026610e+00
## KCTD3 8.637425e-03 -1.552853e-02 -6.891108e-03 4.933285e+00
## ZNF613 -1.670341e-02 1.748490e-02 7.814901e-04 7.102063e+00
## R3HDM4 -2.056412e+00 1.193661e+00 -8.627513e-01 4.578008e+02
## WRAP73 -4.725033e-02 4.764544e-02 3.951077e-04 1.962540e+01
## PLBD1 -2.036582e+00 -9.726466e-01 -3.009228e+00 6.510553e+02
## DDX59 -1.462599e-01 6.169853e-02 -8.456141e-02 3.642245e+01
## DHTKD1 -1.193368e-01 5.713582e-02 -6.220095e-02 3.051807e+01
## TOMM34 1.346043e-02 1.352474e-02 2.698516e-02 1.019654e+01
## TBCA -7.807961e-02 1.388979e-01 6.081830e-02 4.722366e+01
## MAPKBP1 6.080554e-03 1.210125e-02 1.818180e-02 8.893205e+00
## BOD1 2.275268e-02 1.245790e-02 3.521058e-02 9.862066e+00
## MST1L 3.796439e-03 4.609065e-03 8.405504e-03 1.230889e+00
## TUBGCP3 -7.896765e-02 5.432553e-02 -2.464212e-02 2.958399e+01
## LMF1 9.439221e-03 2.773584e-03 1.221281e-02 2.269577e+00
## CENPW -2.099831e-02 3.209803e-02 1.109972e-02 4.184869e+00
## CSPP1 2.096462e-03 9.629111e-03 1.172557e-02 4.377968e+00
## G3BP1 5.291127e-02 6.800321e-02 1.209145e-01 5.644260e+01
## PLD6 1.730296e-02 -2.710378e-03 1.459259e-02 4.416462e+00
## LRPAP1 -3.435404e-01 3.359397e-01 -7.600703e-03 9.556031e+01
## MIS18A 9.358413e-03 -1.295019e-03 8.063394e-03 2.599393e+00
## ITM2C -6.320060e-01 3.424176e-01 -2.895884e-01 5.459665e+01
## MCUR1 -3.465764e-02 3.429120e-02 -3.664477e-04 1.395039e+01
## SERTAD3 -1.222312e-01 7.885183e-02 -4.337937e-02 3.845581e+01
## SLPI -1.658138e+00 4.328780e-01 -1.225260e+00 1.937266e+02
## TBCCD1 -1.088283e-02 6.655388e-03 -4.227444e-03 6.795251e+00
## PPA2 -1.034256e-01 7.053231e-02 -3.289330e-02 2.498057e+01
## TMEM267 1.434794e-02 -2.258800e-03 1.208914e-02 4.568723e+00
## POLR3E 2.769373e-02 -5.598104e-03 2.209563e-02 8.940642e+00
## ARL8B -4.848011e-02 -1.347686e-01 -1.832487e-01 7.690862e+01
## ZEB2 -4.728333e-01 1.062794e-01 -3.665539e-01 1.107059e+02
## VSIR -6.242360e+00 1.682531e+00 -4.559829e+00 1.318588e+03
## GPATCH4 3.094392e-02 5.510161e-03 3.645408e-02 1.154281e+01
## RPL7A 2.056044e+00 1.313037e+00 3.369081e+00 9.370175e+02
## CMTM4 -1.676190e-02 -1.615626e-02 -3.291815e-02 6.920218e+00
## TMEM11 -5.829551e-02 5.474248e-02 -3.553030e-03 2.044951e+01
## XPNPEP1 3.723418e-02 -8.659964e-02 -4.936545e-02 3.470850e+01
## DNAJC24 1.003420e-02 8.412677e-03 1.844688e-02 5.527615e+00
## AKAP8L -2.263860e-02 1.084283e-01 8.578969e-02 5.281197e+01
## PSMD9 -1.218569e-01 1.224683e-01 6.114614e-04 4.157325e+01
## TAF11 -3.861532e-02 2.934860e-02 -9.266718e-03 2.708582e+01
## SMG6 6.303539e-03 2.461658e-02 3.092012e-02 1.636467e+01
## WDR43 5.636287e-02 -1.992342e-02 3.643944e-02 1.520267e+01
## TESC -1.463046e-01 1.691482e-01 2.284360e-02 2.362683e+01
## HS2ST1 -1.426695e-01 7.620016e-02 -6.646937e-02 2.736007e+01
## HYAL1 -2.967654e-03 2.524387e-03 -4.432672e-04 4.478891e-01
## AGAP5 -9.823050e-03 2.711763e-02 1.729458e-02 7.263153e+00
## CDC42SE2 3.819126e-02 3.989439e-01 4.371352e-01 2.138384e+02
## TMEM220 2.901999e-03 5.322330e-03 8.224329e-03 1.745034e+00
## CD302 -6.937457e-01 2.906986e-01 -4.030471e-01 1.508133e+02
## CD38 -1.499993e-01 5.203939e-02 -9.795989e-02 2.185368e+01
## GNG10 -4.186292e+00 8.565419e-01 -3.329750e+00 6.655452e+02
## ARHGEF10 -7.110543e-04 -7.000187e-03 -7.711241e-03 9.515049e-01
## EXTL3 -3.314329e-01 2.355301e-01 -9.590278e-02 8.822035e+01
## OGA 3.153138e-01 -8.739553e-01 -5.586415e-01 2.992402e+02
## THBS1 2.343534e+00 -2.428384e+00 -8.485078e-02 7.925212e+01
## PLXDC2 -2.091350e-01 -3.211184e-01 -5.302534e-01 1.286897e+02
## ARSD -1.053275e-02 -4.939948e-02 -5.993222e-02 2.527619e+01
## ARHGAP35 -4.628426e-06 3.760887e-02 3.760424e-02 1.656613e+01
## SIGLEC7 -1.171654e-01 3.944770e-02 -7.771770e-02 2.992479e+01
## TAF9B 1.512706e-02 1.523618e-03 1.665068e-02 6.854033e+00
## FBF1 1.054545e-02 1.323749e-02 2.378295e-02 3.855134e+00
## CHMP3 -4.632296e-01 7.804917e-02 -3.851805e-01 1.504469e+02
## TMEM237 -1.065487e-04 4.526994e-03 4.420446e-03 1.457384e+00
## HENMT1 -8.025106e-02 5.074332e-02 -2.950774e-02 2.612720e+01
## RPL3 3.993476e+00 2.617132e+00 6.610609e+00 1.152295e+03
## TMEM177 4.553861e-03 1.120164e-03 5.674026e-03 1.196389e+00
## COX6B2 -9.485913e-03 4.470022e-03 -5.015891e-03 1.548042e+00
## SUMF1 -7.914019e-02 4.117213e-03 -7.502297e-02 2.799574e+01
## SLC25A4 -2.398351e-02 1.648788e-02 -7.495631e-03 3.499340e+00
## TRMT2B 2.150275e-02 5.307648e-03 2.681040e-02 1.302774e+01
## RAD54L2 -2.425564e-02 2.011700e-03 -2.224394e-02 1.226087e+01
## ANKRD42 -7.466520e-03 1.286302e-02 5.396500e-03 4.875473e+00
## ATG5 -6.139000e-02 5.012377e-02 -1.126622e-02 3.292929e+01
## NPIPA1 3.129297e-02 -1.248653e-03 3.004431e-02 7.434466e+00
## KLF12 4.323926e-03 8.464169e-02 8.896561e-02 1.570859e+01
## KDM4A -6.435015e-02 3.794256e-02 -2.640760e-02 3.218762e+01
## LILRB5 1.211266e-02 -3.410490e-02 -2.199223e-02 5.902708e+00
## RAP2A -6.602914e-02 9.009525e-03 -5.701961e-02 2.219980e+01
## IL2RA 1.018638e-02 1.744147e-02 2.762786e-02 4.535466e+00
## ZNF862 -1.389427e-02 3.937363e-02 2.547936e-02 2.334796e+01
## SLC41A3 2.755436e-02 1.466674e-02 4.222110e-02 1.181567e+01
## ARHGAP24 -6.333031e-02 -7.140119e-02 -1.347315e-01 2.124918e+01
## ANTXR2 -2.587050e-01 -1.894411e-01 -4.481461e-01 1.184272e+02
## OCIAD1 2.984618e-03 5.812252e-02 6.110714e-02 5.746480e+01
## TNFAIP8L1 2.999135e-02 1.171544e-02 4.170680e-02 1.129388e+01
## GYG1 -2.171603e+00 2.473185e-01 -1.924284e+00 2.536320e+02
## IL32 1.259691e+00 1.863736e-01 1.446065e+00 1.576115e+02
## LIMS2 1.251937e-02 -3.389675e-03 9.129691e-03 1.200250e+00
## ZCCHC2 -3.281170e-01 -1.415336e-01 -4.696506e-01 6.420986e+01
## NUP50 -4.289042e-01 1.745454e-01 -2.543588e-01 1.605412e+02
## P2RX5 -4.552205e-02 8.565997e-02 4.013792e-02 1.733107e+01
## EML4 3.849111e-02 1.447989e-01 1.832901e-01 6.267923e+01
## SCOC 2.990943e-02 -9.181436e-03 2.072800e-02 1.593377e+01
## GATA1 -6.216961e-02 7.389331e-02 1.172370e-02 8.563723e+00
## TGFBRAP1 3.259558e-02 -2.617248e-03 2.997833e-02 1.744006e+01
## SLC50A1 -5.923008e-02 4.799836e-02 -1.123172e-02 2.462061e+01
## SLC20A1 -9.058388e-02 -5.750651e-02 -1.480904e-01 5.678863e+01
## ANXA2 4.537402e-01 -1.034239e+00 -5.804991e-01 3.756854e+02
## DEPTOR 2.095960e-03 -2.576816e-03 -4.808557e-04 4.372611e-01
## LARS1 6.426329e-02 2.781761e-02 9.208090e-02 3.225317e+01
## ADAMTSL4 -1.093137e-01 -2.412468e-02 -1.334384e-01 4.431734e+01
## COPS4 2.011328e-02 3.399469e-02 5.410796e-02 2.257312e+01
## F8A1 7.467027e-03 1.296365e-01 1.371035e-01 3.697837e+01
## SESN3 -4.246570e-03 1.436968e-01 1.394502e-01 5.548581e+01
## MORN3 1.073647e-02 3.508165e-04 1.108728e-02 2.673827e+00
## PABPC1 1.268086e+00 -7.750197e-02 1.190584e+00 6.655593e+02
## COG8 -9.882882e-03 1.526417e-02 5.381292e-03 1.378825e+01
## PDE4A -1.271734e-02 -2.260777e-02 -3.532511e-02 8.284059e+00
## ZNF696 -4.134337e-03 8.305476e-03 4.171139e-03 3.010241e+00
## MRPL45 1.709793e-02 1.566263e-02 3.276056e-02 1.451130e+01
## C22orf34 -2.670831e-02 1.461533e-02 -1.209298e-02 3.797665e+00
## MBD2 -4.132273e-01 -5.332373e-02 -4.665510e-01 1.781148e+02
## ZNF174 -1.844578e-02 1.741070e-02 -1.035083e-03 1.027928e+01
## ZNF550 6.716036e-03 1.772075e-02 2.443679e-02 5.467134e+00
## PMS1 2.086080e-02 2.925832e-03 2.378663e-02 8.230318e+00
## EGLN3 3.630499e-03 4.937884e-03 8.568383e-03 1.656774e+00
## PFN2 3.074721e-03 3.171974e-03 6.246695e-03 1.050604e+00
## GRAP 9.264172e-02 2.595348e-02 1.185952e-01 1.639445e+01
## NFYA -1.192239e-01 -7.385434e-02 -1.930783e-01 5.633768e+01
## GM2A -1.627591e-01 -3.209229e-01 -4.836821e-01 8.760912e+01
## TNRC6A -6.503853e-02 4.414155e-02 -2.089698e-02 2.137933e+01
## HTATSF1 4.491397e-02 2.419904e-02 6.911300e-02 3.089722e+01
## CGAS -8.744036e-02 9.963961e-03 -7.747640e-02 2.057648e+01
## LAX1 -4.124082e-02 4.194933e-02 7.085114e-04 7.071200e+00
## PNOC -2.801825e-02 1.765353e-02 -1.036472e-02 3.074566e+00
## SLFN14 -1.702375e-02 1.335009e-02 -3.673665e-03 3.494918e+00
## BACE1 -1.391778e-02 5.388624e-03 -8.529152e-03 3.563477e+00
## SPATS2 -3.822238e-02 1.597656e-02 -2.224582e-02 6.266650e+00
## OMG -3.378038e-02 2.246679e-02 -1.131359e-02 4.402234e+00
## EXOSC2 7.123223e-03 2.287855e-02 3.000177e-02 1.181720e+01
## RIOX2 3.332595e-02 -8.120679e-03 2.520527e-02 1.032229e+01
## RNLS 8.593231e-04 2.630472e-03 3.489795e-03 1.077341e+00
## RRN3 6.625549e-02 -2.427854e-03 6.382763e-02 1.923512e+01
## COPZ1 -8.041517e-02 1.621366e-01 8.172146e-02 8.225838e+01
## METTL18 1.776531e-02 -1.582908e-02 1.936229e-03 7.968594e+00
## MAP11 -7.599310e-02 1.524353e-01 7.644224e-02 5.133325e+01
## CHD1L 4.431767e-02 -1.601461e-02 2.830306e-02 1.843546e+01
## RPL37 2.259310e+00 1.021437e+00 3.280747e+00 7.505007e+02
## METTL14 -2.129557e-02 -2.282839e-02 -4.412396e-02 1.674182e+01
## PTPN1 -1.273353e-01 -1.115874e-01 -2.389227e-01 7.205184e+01
## NIT2 3.957520e-02 5.144632e-04 4.008966e-02 1.190950e+01
## DMAC1 2.430886e-02 4.307504e-02 6.738390e-02 1.317692e+01
## NFKBIZ -6.356280e-01 1.102773e-01 -5.253506e-01 1.377522e+02
## MORC2 4.566406e-02 1.181624e-03 4.684569e-02 1.433251e+01
## THUMPD2 1.411426e-02 -9.941002e-03 4.173259e-03 4.594171e+00
## MSL2 -2.836884e-01 1.310911e-01 -1.525973e-01 9.199757e+01
## HSP90B1 -2.583033e+00 1.393579e+00 -1.189454e+00 4.310104e+02
## TSPYL1 7.502748e-02 -7.300176e-02 2.025720e-03 4.684029e+01
## SASH1 -1.879852e-02 7.603025e-03 -1.119549e-02 2.445559e+00
## ABCA13 1.579801e-01 -1.167393e-01 4.124078e-02 1.089245e+01
## BRCA2 -2.180414e-03 -1.300024e-02 -1.518065e-02 3.651334e+00
## CLPX -5.909634e-02 6.931842e-02 1.022208e-02 3.607939e+01
## DENND2D 1.496378e-01 -1.149994e-03 1.484878e-01 5.647336e+01
## AIDA 8.703784e-02 -4.685779e-02 4.018004e-02 5.059493e+01
## GRINA -1.404416e+00 1.092200e+00 -3.122151e-01 2.191972e+02
## TMEM185B -2.036238e-01 8.467138e-02 -1.189524e-01 4.727555e+01
## PPID -6.581256e-02 -1.984655e-02 -8.565911e-02 3.593896e+01
## SLC37A4 2.855629e-03 1.765184e-02 2.050747e-02 6.555049e+00
## BCKDHB 1.132577e-02 -1.628194e-03 9.697578e-03 3.164767e+00
## CCDC91 2.125268e-02 1.413804e-03 2.266649e-02 8.519031e+00
## ARHGAP1 -1.150393e-01 1.469670e-01 3.192768e-02 7.660466e+01
## PNKP -3.940751e-02 4.972603e-02 1.031852e-02 1.543807e+01
## CYB561D1 -1.357818e-02 6.891811e-02 5.533993e-02 4.050137e+01
## FNDC3A -2.173938e-01 9.008714e-02 -1.273067e-01 4.673518e+01
## SYP -1.083766e-02 1.621944e-04 -1.067546e-02 2.085667e+00
## LAMP3 7.756010e-03 -2.797669e-02 -2.022068e-02 2.684670e+00
## ZBTB7B -5.820724e-01 3.764574e-01 -2.056150e-01 1.765145e+02
## HS3ST3B1 -1.341587e-01 1.325795e-01 -1.579149e-03 1.869417e+01
## DNAAF5 7.772005e-03 2.365369e-03 1.013737e-02 3.015104e+00
## ITGA6 7.912852e-02 9.257435e-03 8.838595e-02 2.257255e+01
## ZNF32 8.112519e-02 -2.019837e-03 7.910535e-02 1.629417e+01
## PCYOX1L 3.079658e-02 -9.462968e-03 2.133362e-02 1.018455e+01
## ELP4 4.519878e-03 9.911518e-03 1.443140e-02 6.188586e+00
## TIPARP -1.134772e-01 -9.729841e-02 -2.107756e-01 3.697880e+01
## PDE6G -5.062888e-03 9.958440e-03 4.895552e-03 1.858678e+00
## ALOX5 -2.096978e+00 1.918499e-01 -1.905128e+00 5.187100e+02
## IDH1 -1.538680e-01 -5.443160e-02 -2.082996e-01 6.050865e+01
## PMF1 -1.311288e-01 1.620563e-01 3.092746e-02 4.435071e+01
## RPS6KA3 -1.010146e+00 2.212133e-01 -7.889324e-01 1.786441e+02
## SOCS7 3.745082e-03 1.878928e-02 2.253436e-02 6.979578e+00
## FOCAD -3.040491e-02 1.600207e-02 -1.440284e-02 1.268748e+01
## ADA2 -3.044117e-01 -2.811779e-01 -5.855896e-01 1.227149e+02
## ZNF786 1.031075e-02 -4.897722e-03 5.413028e-03 3.132540e+00
## DCAF4 6.185134e-03 7.501186e-03 1.368632e-02 3.397520e+00
## TIPRL -8.019496e-02 1.564062e-02 -6.455434e-02 4.046034e+01
## UBE2H -8.531326e-01 7.330208e-02 -7.798305e-01 1.477413e+02
## SUPT20H -2.021013e-01 -4.763882e-02 -2.497401e-01 8.254823e+01
## CYRIA -4.570519e-01 1.612161e-01 -2.958358e-01 1.320457e+02
## RHOQ -4.303967e-01 2.756151e-01 -1.547816e-01 1.239508e+02
## SHISA4 -1.011431e-02 4.925723e-03 -5.188589e-03 1.411928e+00
## ZNF418 4.197892e-03 1.857047e-03 6.054940e-03 9.990753e-01
## GP5 -2.864367e-03 -3.157997e-03 -6.022364e-03 1.174030e+00
## FXYD6 2.799629e-03 -4.302942e-02 -4.022979e-02 9.544134e+00
## GTDC1 -1.941885e-01 6.884824e-02 -1.253403e-01 3.683661e+01
## CNN2 -2.176762e+00 4.531452e-01 -1.723617e+00 5.810240e+02
## SLC9A4 3.699973e-03 6.493214e-03 1.019319e-02 1.693874e+00
## CRELD2 -7.640832e-02 3.475190e-02 -4.165642e-02 1.232621e+01
## C3 2.998250e-03 1.962723e-02 2.262548e-02 2.419006e+00
## KLHL26 6.010259e-03 -7.850344e-03 -1.840085e-03 3.219880e+00
## LRRC23 1.321480e-02 -3.293437e-03 9.921358e-03 2.637460e+00
## CATIP -3.566469e-03 3.633688e-03 6.721832e-05 5.528792e-01
## SRSF7 1.511710e-01 -3.485584e-02 1.163152e-01 7.632672e+01
## DDX10 1.548833e-02 3.735154e-03 1.922348e-02 6.347327e+00
## AGPAT5 1.290379e-02 1.614233e-02 2.904611e-02 9.237360e+00
## SHLD1 -1.531131e-02 1.598807e-02 6.767508e-04 6.188777e+00
## ALG2 -2.227312e-02 2.414164e-02 1.868524e-03 1.489982e+01
## ACP6 -2.146596e-02 3.722698e-02 1.576102e-02 8.469108e+00
## RER1 -1.973863e-01 1.446615e-01 -5.272479e-02 9.603072e+01
## DDIT3 5.272481e-01 -5.060646e-01 2.118355e-02 9.947331e+01
## DNAJC13 -2.601627e-01 -9.704093e-02 -3.572037e-01 8.729956e+01
## SRCAP -8.293222e-02 1.281452e-01 4.521299e-02 7.158512e+01
## SIK3 -9.130431e-02 9.422738e-02 2.923067e-03 5.527531e+01
## DAPK2 -2.379651e-01 2.270133e-01 -1.095176e-02 6.223233e+01
## CCNG1 4.990980e-02 3.643039e-02 8.634019e-02 4.713106e+01
## MAP7 -6.626112e-06 -2.015247e-02 -2.015910e-02 2.881280e+00
## FAM76A 1.507106e-02 -2.210539e-03 1.286052e-02 8.978685e+00
## CZIB 4.620199e-02 -6.094697e-03 4.010729e-02 2.281314e+01
## HNRNPA0 1.088788e-01 -5.016697e-02 5.871187e-02 5.231583e+01
## POLR1F 2.090705e-02 -3.418440e-03 1.748861e-02 6.903773e+00
## TCP11L2 -1.682339e-01 1.473866e-01 -2.084728e-02 3.490892e+01
## CDK1 -1.460744e-02 5.859226e-02 4.398482e-02 6.945888e+00
## MTRNR2L1 -1.851331e-01 8.397239e-01 6.545908e-01 1.809905e+02
## TSC1 -3.976466e-02 6.190678e-02 2.214213e-02 2.520761e+01
## MFSD14C -1.413697e-02 2.131154e-02 7.174572e-03 4.025779e+00
## PDE12 2.759605e-02 -2.113794e-02 6.458103e-03 1.440423e+01
## C1GALT1C1 -1.178753e-01 5.537344e-02 -6.250190e-02 3.601903e+01
## SMIM19 -3.600852e-03 2.380269e-02 2.020184e-02 1.051331e+01
## FAM174B 2.162521e-03 8.306720e-03 1.046924e-02 2.067325e+00
## FTSJ3 4.910693e-02 1.305471e-02 6.216163e-02 3.268276e+01
## MRPS28 -1.129716e-02 2.514855e-02 1.385139e-02 8.535328e+00
## KCNMB4 6.000124e-03 -2.913385e-03 3.086739e-03 1.185359e+00
## SNX6 -4.242177e-01 1.218344e-01 -3.023833e-01 1.364920e+02
## BAG2 4.328450e-03 4.693956e-03 9.022406e-03 3.437048e+00
## SDHB -1.875548e-01 5.827131e-02 -1.292835e-01 7.812510e+01
## CDKN2B 2.291705e-02 -1.205906e-02 1.085799e-02 4.490768e+00
## TMEM140 1.080361e+00 -1.344468e+00 -2.641065e-01 2.062174e+02
## NT5M -5.285959e-04 -3.667265e-02 -3.720125e-02 6.726178e+00
## DHDDS -1.443323e-02 2.477117e-02 1.033794e-02 1.676363e+01
## ATP13A3 -2.879297e-01 1.521033e-01 -1.358265e-01 4.649602e+01
## COPS7B 2.522449e-02 1.946308e-02 4.468757e-02 1.925988e+01
## SSRP1 1.143552e-01 -1.270451e-02 1.016507e-01 4.342864e+01
## FOXN2 -3.874545e-01 9.282509e-02 -2.946295e-01 8.517708e+01
## ZNF467 -2.189396e-01 8.074003e-02 -1.381996e-01 4.233810e+01
## HDAC6 -1.980265e-02 4.366198e-02 2.385934e-02 2.626168e+01
## ABI1 -3.775768e-01 -7.484789e-03 -3.850616e-01 1.304218e+02
## ATF7 -9.035006e-02 4.064078e-02 -4.970928e-02 2.988050e+01
## SLC46A2 3.990815e-02 6.839758e-03 4.674791e-02 9.503168e+00
## LPIN2 -2.902666e-01 5.616386e-01 2.713721e-01 1.283581e+02
## ZNF674 -2.429193e-02 8.041625e-03 -1.625030e-02 6.501793e+00
## HDGF -3.318159e-01 5.873114e-01 2.554955e-01 2.010833e+02
## SNX3 -1.311057e+00 3.295496e-01 -9.815073e-01 2.275106e+02
## TRAK1 -6.206960e-02 4.127354e-02 -2.079607e-02 3.068008e+01
## RBMX 1.704488e-01 1.719102e-02 1.876398e-01 9.826027e+01
## PRPF38A 4.542717e-02 -6.046911e-02 -1.504194e-02 4.514444e+01
## TMEM263 1.205227e-02 2.484391e-02 3.689617e-02 9.363230e+00
## CPPED1 -1.555651e+00 9.942194e-01 -5.614316e-01 4.131311e+02
## ROPN1L -9.429640e-02 6.906957e-02 -2.522683e-02 1.709394e+01
## HSD17B8 6.515405e-03 2.075152e-02 2.726692e-02 3.798992e+00
## RASAL3 1.254444e-01 1.351124e-01 2.605568e-01 5.587792e+01
## SETDB2 5.150524e-03 2.406653e-02 2.921706e-02 1.293624e+01
## TAMALIN 4.109470e-02 -4.300334e-02 -1.908642e-03 2.368907e+00
## CENPO 2.121782e-04 -2.474321e-02 -2.453103e-02 6.808000e+00
## RPAP3 -4.416324e-02 6.179872e-02 1.763548e-02 3.092745e+01
## ZNF84 3.413400e-03 2.781463e-02 3.122803e-02 1.021019e+01
## FUZ -9.592507e-03 2.605814e-02 1.646563e-02 6.359326e+00
## SCO2 3.562454e-01 -4.279271e-01 -7.168165e-02 4.180433e+01
## CA8 -1.255631e-03 4.892133e-03 3.636502e-03 7.930698e-01
## NATD1 -4.359948e-01 4.583409e-01 2.234608e-02 1.077497e+02
## TEC -1.227580e-02 9.333453e-03 -2.942350e-03 4.397626e+00
## FBXO38 -2.773706e-01 2.656213e-03 -2.747144e-01 7.830115e+01
## METTL22 -1.350904e-02 2.412308e-02 1.061404e-02 1.051021e+01
## WDR75 2.672645e-02 1.312814e-02 3.985459e-02 1.672566e+01
## DCAF11 -2.166876e-01 2.635792e-01 4.689164e-02 1.152399e+02
## ARRDC4 -2.508014e-01 2.372181e-01 -1.358329e-02 3.959305e+01
## RAP1GDS1 3.783063e-02 -1.071384e-02 2.711679e-02 2.541334e+01
## HADHB -1.882088e-01 -1.735096e-02 -2.055598e-01 9.455113e+01
## FAM200B -9.589711e-02 -4.859719e-02 -1.444943e-01 4.426267e+01
## HEATR5A -1.134737e-01 7.433885e-02 -3.913482e-02 2.266959e+01
## TLR4 -3.578662e+00 2.529400e+00 -1.049261e+00 5.824253e+02
## TXNDC12 -2.306010e-01 1.287839e-01 -1.018171e-01 1.009715e+02
## OAZ2 -1.064849e+00 7.770596e-01 -2.877891e-01 2.962501e+02
## CHRM3 -3.254880e-03 5.093842e-04 -2.745496e-03 7.267042e-01
## IQCE -5.753202e-02 1.641612e-02 -4.111590e-02 1.673687e+01
## TOR3A -1.094279e-01 6.634877e-02 -4.307916e-02 4.005753e+01
## CDC6 -2.867530e-02 1.561700e-02 -1.305829e-02 4.799886e+00
## TMEM230 1.954505e-02 4.834011e-02 6.788517e-02 5.588022e+01
## LY6E 3.246235e+00 -4.137597e+00 -8.913624e-01 3.487435e+02
## IL16 -4.193634e-01 7.825085e-01 3.631451e-01 3.609735e+02
## CDC25B 1.668949e-01 1.153319e-01 2.822268e-01 4.762693e+01
## SMIM14 -1.336694e-01 -5.206455e-02 -1.857340e-01 5.649921e+01
## NUCKS1 8.244451e-02 5.218134e-02 1.346259e-01 5.256008e+01
## GNAI2 -1.735780e+00 8.920943e-01 -8.436861e-01 6.991300e+02
## LETMD1 5.506426e-02 -1.291645e-02 4.214781e-02 2.591880e+01
## VTI1B -8.320450e-02 6.402589e-02 -1.917861e-02 5.719228e+01
## DERL1 -6.615662e-02 3.479947e-02 -3.135714e-02 4.569917e+01
## FFAR3 -7.947205e-02 3.421561e-03 -7.605049e-02 6.900860e+00
## A1BG 1.070550e-02 -3.523174e-03 7.182327e-03 1.011980e+00
## C8orf33 3.460590e-02 -2.675503e-03 3.193040e-02 1.431302e+01
## DVL3 -6.858182e-02 2.379378e-02 -4.478804e-02 3.473005e+01
## IL18RAP -4.081590e+00 8.183591e-01 -3.263231e+00 5.330403e+02
## TLR8 -1.748144e+00 2.365735e-01 -1.511571e+00 3.223802e+02
## WHAMM 3.825974e-02 -5.646190e-02 -1.820216e-02 2.010645e+01
## CDC16 6.971828e-02 -4.048721e-03 6.566956e-02 3.331520e+01
## CD82 -7.924200e-01 4.614162e-01 -3.310037e-01 1.359257e+02
## UBR4 -2.067347e-01 1.264565e-01 -8.027823e-02 1.047262e+02
## CATSPERG -2.935427e-03 2.780007e-03 -1.554192e-04 5.568691e-01
## TMEM86B -1.472071e-02 2.674020e-02 1.201950e-02 4.339878e+00
## ISOC2 -3.255698e-02 2.716951e-02 -5.387464e-03 4.174709e+00
## NDUFB1 -2.006803e-01 2.053464e-01 4.666050e-03 5.623636e+01
## TMEM156 -2.451975e-03 2.118913e-02 1.873716e-02 5.648778e+00
## RNF149 -2.137516e+00 -1.606159e+00 -3.743675e+00 8.189538e+02
## H2BC15 -8.230048e-04 -3.643166e-03 -4.466170e-03 5.357225e-01
## CNTRL -1.092411e-01 -4.974376e-02 -1.589848e-01 5.283669e+01
## TIAL1 3.671943e-02 4.492877e-02 8.164820e-02 6.658008e+01
## COL18A1 -2.028777e-01 -3.282268e-02 -2.357004e-01 3.524071e+01
## MTRNR2L8 -5.600496e-01 2.112480e+00 1.552431e+00 4.521681e+02
## HLA-DQB1 4.123328e-01 1.192072e-01 5.315400e-01 8.499740e+01
## CUL7 -2.692770e-02 1.514301e-02 -1.178469e-02 1.021546e+01
## PSTK 3.749095e-03 4.887261e-04 4.237821e-03 1.065512e+00
## MAP3K1 -5.903653e-01 1.395529e-01 -4.508124e-01 1.591445e+02
## PCBP3 -1.111244e-02 1.243898e-02 1.326539e-03 1.923354e+00
## IFI27L1 -2.929507e-02 5.742771e-03 -2.355229e-02 4.431149e+00
## CCT6A 9.341519e-02 -2.221619e-02 7.119900e-02 5.980962e+01
## RPL34 1.490678e+00 1.327460e+00 2.818138e+00 4.798503e+02
## TOMM20 1.483589e-01 -3.849225e-02 1.098666e-01 6.520279e+01
## CASP3 -1.214329e-01 4.404077e-02 -7.739211e-02 5.589537e+01
## CCNF -9.679732e-03 1.548669e-02 5.806956e-03 2.866262e+00
## URGCP 2.295483e-02 1.054420e-04 2.306027e-02 6.727349e+00
## SINHCAF 3.055710e-02 3.200673e-02 6.256383e-02 2.571026e+01
## YAE1 6.025028e-03 2.285927e-03 8.310955e-03 2.625677e+00
## DTWD1 -1.639304e-03 -1.073549e-02 -1.237479e-02 6.586643e+00
## GAPVD1 -1.020122e-01 9.087367e-02 -1.113855e-02 4.474549e+01
## ADORA2B -4.403908e-03 -5.318763e-03 -9.722671e-03 2.263068e+00
## EIF3C 3.700492e-01 -1.449679e-01 2.250813e-01 1.050756e+02
## MGAM -4.733406e+00 3.873490e+00 -8.599158e-01 7.211170e+02
## CASP4 3.180388e-01 -2.182065e+00 -1.864026e+00 5.435746e+02
## TANGO6 1.922420e-02 -8.226053e-04 1.840159e-02 7.809626e+00
## TAF6 1.642395e-02 1.506538e-02 3.148933e-02 1.266056e+01
## YIPF1 -2.707292e-01 -6.081450e-03 -2.768107e-01 7.443973e+01
## CBX7 -3.209089e-02 1.831341e-01 1.510432e-01 8.334104e+01
## SH3BP5 -3.199872e-01 -2.386931e-02 -3.438565e-01 8.052120e+01
## ZNF788P 2.152159e-02 -4.729194e-03 1.679240e-02 3.710909e+00
## FAM110B -1.602918e-02 -3.840653e-03 -1.986983e-02 3.239817e+00
## DCTN6 9.707779e-03 -2.826850e-02 -1.856072e-02 1.252657e+01
## APOL6 -2.975935e-01 -1.087781e+00 -1.385374e+00 1.887671e+02
## ANG -1.182835e-02 -2.002991e-02 -3.185826e-02 6.423022e+00
## AKR1B15 5.162046e-03 -7.411236e-03 -2.249191e-03 3.008251e+00
## SPG11 -3.816151e-01 1.696258e-02 -3.646525e-01 1.212577e+02
## TMED2 -2.508564e-01 1.556945e-01 -9.516190e-02 1.279011e+02
## C5 8.498709e-03 -1.633689e-02 -7.838184e-03 4.165035e+00
## ZBTB25 2.650055e-02 1.815378e-02 4.465433e-02 1.150985e+01
## ZNF570 7.018490e-03 3.372369e-03 1.039086e-02 3.511591e+00
## MX2 3.343822e-01 -1.501177e+00 -1.166794e+00 2.862615e+02
## C9orf78 3.351894e-02 1.015570e-01 1.350759e-01 6.409763e+01
## PCGF3 -1.420809e-01 -1.928368e-02 -1.613645e-01 5.163082e+01
## ZNF558 2.445398e-02 1.312521e-02 3.757920e-02 1.215200e+01
## RCBTB1 -7.457617e-02 3.458202e-02 -3.999415e-02 2.234775e+01
## ZNF443 -4.404877e-02 4.909042e-03 -3.913973e-02 5.660886e+00
## GNPNAT1 1.712396e-02 -1.416492e-03 1.570747e-02 6.601890e+00
## FGD2 -9.665271e-02 -7.004310e-02 -1.666958e-01 4.228479e+01
## IL17RA -2.068601e+00 6.894165e-01 -1.379184e+00 5.646810e+02
## SLC25A51 1.537677e-02 -1.563830e-02 -2.615340e-04 3.039906e+00
## C3orf38 -1.417621e-02 -5.179155e-02 -6.596776e-02 2.073576e+01
## TOGARAM2 4.975850e-03 -9.042994e-03 -4.067144e-03 1.757035e+00
## FAH 1.141862e-02 -5.897027e-02 -4.755166e-02 1.261481e+01
## NSFL1C -4.590245e-01 3.831629e-01 -7.586158e-02 1.486649e+02
## PHB2 -3.303222e-03 2.504193e-01 2.471161e-01 9.922310e+01
## TULP3 6.134699e-04 5.390500e-03 6.003970e-03 2.055632e+00
## ACP5 4.064887e-02 4.972446e-02 9.037332e-02 1.561636e+01
## DNAJC3 -6.187184e-01 3.033925e-01 -3.153258e-01 1.443543e+02
## DLG3 1.813472e-02 6.217339e-03 2.435206e-02 5.072830e+00
## TMEM159 4.502342e-03 -2.161391e-02 -1.711157e-02 1.023573e+01
## RARG 3.052821e-02 -2.947053e-03 2.758116e-02 7.731286e+00
## LHPP -1.522715e-02 4.118588e-02 2.595873e-02 8.294695e+00
## KREMEN1 -7.767131e-01 5.555328e-01 -2.211803e-01 1.198290e+02
## BANK1 4.583486e-02 2.319094e-02 6.902580e-02 1.301899e+01
## CTSB -1.534146e+00 1.709420e+00 1.752735e-01 5.858071e+02
## BAG6 -4.250056e-02 1.840738e-01 1.415732e-01 1.182935e+02
## UBR7 -2.367670e-02 3.418664e-02 1.050994e-02 2.258471e+01
## DNAJC5 -3.438825e-01 2.511536e-01 -9.272886e-02 1.258177e+02
## GJB6 6.548042e-02 -7.845539e-02 -1.297497e-02 2.148184e+00
## ITGA3 -5.136909e-03 9.036654e-03 3.899744e-03 1.481351e+00
## TSR2 6.170388e-02 -3.281020e-02 2.889368e-02 2.741597e+01
## LRRK1 -9.820669e-02 -4.611890e-02 -1.443256e-01 5.199058e+01
## FKBP15 -3.023076e-01 -1.272555e-01 -4.295631e-01 1.436142e+02
## ATP6V0C -2.046648e-01 3.901172e-03 -2.007636e-01 5.574234e+01
## PPP1CB -1.129926e+00 1.678243e-02 -1.113144e+00 2.973901e+02
## ZNF22 3.545934e-02 9.273607e-03 4.473295e-02 1.954409e+01
## UBL5 -4.444836e-01 4.686151e-01 2.413149e-02 1.293483e+02
## HNRNPA1L2 1.795170e-02 5.273714e-03 2.322542e-02 6.033430e+00
## GBP5 1.997401e+00 -6.203649e+00 -4.206249e+00 4.263443e+02
## ZNF547 5.150232e-03 1.793177e-04 5.329550e-03 1.212514e+00
## MT1F 1.719940e-02 -1.951340e-02 -2.313994e-03 3.508375e+00
## CDC27 -7.527628e-02 6.374143e-02 -1.153485e-02 3.699892e+01
## EMC2 -1.090223e-01 6.017106e-02 -4.885123e-02 2.791828e+01
## TRPM2 -1.182470e-01 -3.659249e-02 -1.548395e-01 2.399374e+01
## RPL21 3.458336e+00 1.731546e+00 5.189882e+00 1.023501e+03
## THADA 3.826634e-02 -2.134390e-02 1.692244e-02 2.283070e+01
## AURKA -1.107276e-02 2.167364e-02 1.060088e-02 4.470423e+00
## USP20 8.730954e-02 4.636050e-02 1.336700e-01 3.525384e+01
## BRD8 -9.980097e-02 1.129752e-01 1.317427e-02 5.228359e+01
## FMC1 -3.199047e-03 1.082677e-02 7.627727e-03 2.914843e+00
## TMEM144 -1.450612e-02 -1.100830e-02 -2.551442e-02 5.153187e+00
## AURKB -2.198783e-02 2.271856e-02 7.307299e-04 3.815974e+00
## MTIF2 2.371696e-02 -2.117168e-02 2.545273e-03 1.704702e+01
## AGRN 1.393611e-02 -2.632928e-02 -1.239317e-02 2.526403e+00
## SLC43A1 1.366502e-02 1.613092e-02 2.979595e-02 5.564568e+00
## ACAT1 5.476709e-03 4.070061e-02 4.617731e-02 1.934036e+01
## GBGT1 -5.725343e-02 1.942729e-03 -5.531070e-02 1.311994e+01
## GBF1 -6.083968e-02 3.146313e-02 -2.937655e-02 3.235765e+01
## C12orf73 9.838198e-03 -1.000484e-03 8.837714e-03 2.616295e+00
## LARP1B -8.369263e-03 1.833901e-02 9.969746e-03 5.579827e+00
## ZNF736 -3.328809e-02 1.706802e-02 -1.622007e-02 7.458165e+00
## MDM1 -5.522154e-02 -3.031149e-02 -8.553303e-02 2.360747e+01
## MARCHF2 -3.097957e-01 -2.714025e-02 -3.369359e-01 7.536482e+01
## GTF2IRD2 7.324207e-03 8.268854e-03 1.559306e-02 5.587655e+00
## TFG -3.627156e-02 -2.951884e-02 -6.579040e-02 2.731120e+01
## COL8A2 9.461271e-04 -1.059204e-02 -9.645910e-03 2.827473e+00
## TTC3 4.366237e-02 8.103719e-02 1.246996e-01 3.658373e+01
## PAFAH1B1 -3.343337e-01 1.595843e-01 -1.747494e-01 1.407413e+02
## NFU1 4.408780e-03 2.222716e-02 2.663594e-02 1.288523e+01
## FKBP7 -3.407724e-03 1.698693e-03 -1.709031e-03 5.757148e-01
## GPR162 3.575004e-03 5.862931e-02 6.220432e-02 1.056945e+01
## METTL16 4.538049e-02 -2.218311e-02 2.319738e-02 1.381474e+01
## OTUD1 -4.939972e-02 -1.066161e-01 -1.560158e-01 4.422877e+01
## HLA-G 2.208592e-02 1.235926e-02 3.444518e-02 4.728903e+00
## C18orf32 -3.490542e-02 5.095672e-02 1.605130e-02 1.865914e+01
## HELB -2.052449e-02 1.754725e-02 -2.977244e-03 3.936331e+00
## ARSG -8.577654e-02 -1.061620e-02 -9.639274e-02 3.058121e+01
## SGK1 4.869726e-03 6.085963e-01 6.134661e-01 1.254197e+02
## NTAN1 -4.882890e-02 8.487112e-02 3.604223e-02 2.779873e+01
## PMAIP1 1.299782e-01 -3.402938e-02 9.594879e-02 2.363473e+01
## COX15 -6.696197e-02 1.443238e-02 -5.252960e-02 3.664512e+01
## PDCD7 2.748492e-02 -3.919319e-03 2.356560e-02 1.147317e+01
## CCR4 1.373827e-02 3.164260e-02 4.538087e-02 8.008341e+00
## HBA2 -3.380768e+01 2.367247e+01 -1.013521e+01 2.670516e+03
## IKZF4 1.033813e-02 -8.312140e-03 2.025987e-03 2.972551e+00
## PPP2R2B 1.874379e-02 -4.901378e-03 1.384241e-02 3.189075e+00
## CRYGS 2.758027e-03 2.856648e-03 5.614675e-03 1.113857e+00
## CXCR4 3.489890e+00 -2.846480e+00 6.434099e-01 6.788769e+02
## CREG1 2.217577e-01 -3.069150e-01 -8.515724e-02 1.090574e+02
## TUT1 7.314086e-03 1.559953e-02 2.291361e-02 6.978918e+00
## INPP5E 1.013684e-02 6.568288e-03 1.670513e-02 3.934240e+00
## SLC9A1 -1.413132e-01 5.717300e-02 -8.414020e-02 4.071363e+01
## TBC1D2 3.644241e-02 -6.609815e-02 -2.965574e-02 2.210001e+01
## NOP2 5.794857e-02 -1.445676e-02 4.349181e-02 2.257960e+01
## CEP85L -7.605568e-02 8.969373e-02 1.363804e-02 2.792517e+01
## SFXN2 4.177772e-03 5.509734e-03 9.687506e-03 2.662736e+00
## PCIF1 -9.795017e-02 1.051623e-01 7.212093e-03 4.536989e+01
## BLVRA 4.315648e-02 -2.334413e-01 -1.902848e-01 5.732398e+01
## MOSMO -5.070618e-03 1.435497e-02 9.284355e-03 4.881234e+00
## ANKEF1 5.548558e-03 1.240060e-03 6.788619e-03 1.493059e+00
## FAM156A 2.242676e-02 -2.685476e-02 -4.428002e-03 5.038230e+00
## PCNX4 -8.057521e-02 6.068681e-02 -1.988840e-02 2.670849e+01
## NCOA6 -1.377949e-01 5.677441e-02 -8.102053e-02 4.195751e+01
## CELF1 -3.168164e-01 2.175207e-01 -9.929571e-02 1.141638e+02
## RNF213 -1.558840e+00 -9.966610e-01 -2.555501e+00 4.557329e+02
## CNIH2 2.415744e-03 -3.109362e-03 -6.936182e-04 4.814178e-01
## TBC1D25 -3.909806e-02 4.276452e-02 3.666461e-03 1.967767e+01
## NDUFAF7 -2.886092e-02 9.027160e-04 -2.795820e-02 1.187214e+01
## RGS19 -4.674139e-01 1.611858e-01 -3.062281e-01 1.154492e+02
## SMAP2 -1.026579e+01 2.385624e+00 -7.880163e+00 1.722208e+03
## FLT3LG 7.316228e-02 1.915438e-02 9.231666e-02 1.002819e+01
## TXNL1 -5.397416e-02 7.919008e-02 2.521591e-02 3.942697e+01
## IL4R -1.822293e+00 5.407072e-01 -1.281586e+00 4.042782e+02
## PHACTR4 -1.620501e-02 -1.709768e-02 -3.330269e-02 1.447161e+01
## DNAAF4 -1.316411e-02 -3.183149e-03 -1.634726e-02 3.362708e+00
## LPAR1 -2.602684e-02 8.680157e-03 -1.734669e-02 5.098513e+00
## ALMS1 -3.022290e-03 1.980252e-02 1.678023e-02 5.039630e+00
## VPS39 -1.269257e-01 -1.581538e-02 -1.427411e-01 9.002657e+01
## SLAMF1 2.567232e-02 2.542416e-02 5.109647e-02 1.118754e+01
## FUCA2 -7.484272e-03 -5.413314e-02 -6.161742e-02 2.882232e+01
## LILRB3 -1.782256e+00 -1.418489e-01 -1.924105e+00 4.729252e+02
## GLB1L 1.526445e-03 -1.110824e-02 -9.581798e-03 3.243883e+00
## MATR3 4.417103e-01 -2.593468e-01 1.823635e-01 1.800878e+02
## TXNL4B -4.751000e-02 -2.602566e-03 -5.011257e-02 2.084544e+01
## DNASE2 -8.139139e-02 -4.275489e-02 -1.241463e-01 3.839769e+01
## RUBCN -2.227102e-02 -1.345013e-01 -1.567723e-01 4.736894e+01
## RAB40B 2.494781e-04 3.773364e-03 4.022842e-03 1.338854e+00
## MED10 1.473750e-02 1.544651e-02 3.018401e-02 1.490351e+01
## TRIM72 -2.325684e-04 -4.171312e-03 -4.403881e-03 1.544772e+00
## DEAF1 2.708978e-02 1.142468e-02 3.851446e-02 1.034211e+01
## FN3KRP 2.210583e-02 1.003563e-02 3.214146e-02 9.358461e+00
## C9orf72 -6.620984e-01 2.696064e-02 -6.351378e-01 1.577024e+02
## FCHO1 7.455013e-03 9.045681e-02 9.791182e-02 2.976469e+01
## YRDC -1.752719e-02 2.235400e-02 4.826819e-03 9.707811e+00
## SPINT1 3.334067e-02 -1.177695e-01 -8.442885e-02 2.231509e+01
## SALL2 3.851627e-03 8.112572e-04 4.662884e-03 7.423831e-01
## CCP110 -7.497835e-02 2.118326e-02 -5.379508e-02 1.997068e+01
## CEBPZ 8.805989e-02 -8.966869e-02 -1.608800e-03 3.208532e+01
## TWNK 8.144783e-03 1.067957e-02 1.882435e-02 5.265173e+00
## ZNF605 -1.376693e-02 -8.276517e-03 -2.204345e-02 8.494348e+00
## ZNRF3 9.891914e-04 1.643511e-03 2.632703e-03 5.633344e-01
## TSPYL2 1.149433e-01 -5.996194e-02 5.498139e-02 1.693224e+01
## NEDD8 -5.091581e-01 2.266369e-01 -2.825212e-01 1.413112e+02
## THBD -3.640238e-01 1.219131e-01 -2.421107e-01 5.953650e+01
## SEC24D -1.112538e-01 2.842325e-02 -8.283052e-02 3.715812e+01
## AGO1 -6.771582e-02 1.202975e-01 5.258167e-02 5.366029e+01
## FLACC1 1.602494e-03 1.591063e-03 3.193557e-03 7.100214e-01
## PDCD1LG2 2.191453e-02 -2.545241e-02 -3.537886e-03 2.380371e+00
## TAF1C 4.495226e-02 4.047714e-03 4.899997e-02 1.492922e+01
## NT5C 8.630501e-04 3.978169e-02 4.064474e-02 9.491093e+00
## RAB24 4.112232e-01 -1.422253e+00 -1.011030e+00 3.311642e+02
## SLC25A44 -5.437855e-01 4.824679e-01 -6.131765e-02 1.388818e+02
## ELK1 -3.129692e-03 2.154248e-02 1.841279e-02 1.568916e+01
## RBMS1 -6.891427e-01 1.326527e-01 -5.564900e-01 1.663695e+02
## RNF2 -6.149786e-02 -5.434277e-03 -6.693214e-02 2.251160e+01
## ABCG1 -3.055934e-02 -1.310477e-01 -1.616070e-01 3.368594e+01
## MBOAT1 -8.582724e-02 -3.906417e-02 -1.248914e-01 4.914535e+01
## MPHOSPH10 2.221883e-02 1.082297e-02 3.304180e-02 1.517360e+01
## HMOX1 -2.062924e-01 -2.123908e-01 -4.186832e-01 7.744090e+01
## COX7B -3.678490e-01 4.815299e-01 1.136809e-01 1.114624e+02
## WDR31 1.665573e-04 3.806081e-03 3.972638e-03 1.517340e+00
## AKAP7 1.927174e-02 -1.033849e-02 8.933248e-03 5.447240e+00
## TPST2 -4.533170e-01 2.951836e-01 -1.581334e-01 1.207024e+02
## APOL2 4.426282e-01 -6.720173e-01 -2.293891e-01 1.472067e+02
## RAPGEF6 -5.874471e-02 1.370110e-01 7.826633e-02 3.986585e+01
## ICE2 3.266483e-02 1.135732e-02 4.402215e-02 1.632698e+01
## GTPBP1 -1.210225e-01 -1.297564e-01 -2.507789e-01 7.079861e+01
## NEK2 -1.115710e-02 1.060820e-02 -5.488942e-04 1.748322e+00
## SLC9A6 -3.632811e-02 -1.841060e-03 -3.816917e-02 1.768685e+01
## SLC15A2 -2.014870e-02 -3.724790e-03 -2.387349e-02 8.377752e+00
## SLC26A11 1.747967e-02 1.488573e-02 3.236539e-02 8.702901e+00
## PPP1R16A -3.450840e-03 9.349034e-03 5.898194e-03 1.630258e+00
## ESD 6.110469e-02 -5.202737e-02 9.077321e-03 4.064251e+01
## RPL23 1.700896e+00 9.821625e-01 2.683058e+00 6.485856e+02
## EFHC1 1.656801e-02 -7.667565e-03 8.900445e-03 4.815304e+00
## CDS2 -5.757280e-01 3.710524e-01 -2.046756e-01 1.538449e+02
## FAM172A -7.681861e-02 1.489539e-02 -6.192321e-02 1.907834e+01
## GORASP2 -3.080692e-03 4.662280e-02 4.354210e-02 3.007691e+01
## LOXL3 -1.571357e-02 -2.399573e-02 -3.970930e-02 1.266836e+01
## PHKA2 -1.914550e-01 1.035382e-01 -8.791687e-02 6.302891e+01
## ERCC6L2 -3.744325e-02 2.824358e-02 -9.199671e-03 1.563860e+01
## PLCXD1 2.681986e-02 -1.044380e-02 1.637606e-02 8.069924e+00
## H2BC8 2.569259e-04 -1.061730e-02 -1.036037e-02 2.516798e+00
## BLOC1S5 8.020304e-03 1.546906e-02 2.348936e-02 1.211442e+01
## AKAP13 -4.536554e-01 -3.440269e-01 -7.976823e-01 2.290312e+02
## H2AZ1 -6.073856e-01 5.837658e-01 -2.361980e-02 2.112880e+02
## FRMD4B -6.794722e-02 -1.241015e-03 -6.918823e-02 1.572943e+01
## TASP1 6.469873e-03 3.019577e-03 9.489449e-03 2.867253e+00
## CTNNA1 -1.439777e-01 -1.218213e-01 -2.657991e-01 9.588550e+01
## SELL -1.169280e+01 5.568629e-01 -1.113594e+01 2.868742e+03
## NLRC3 6.851492e-02 3.312305e-02 1.016380e-01 2.140882e+01
## GRIN3A -2.397358e-03 -6.717779e-03 -9.115137e-03 1.472547e+00
## ZXDA 2.473707e-03 4.049734e-03 6.523441e-03 1.483331e+00
## ZNF510 1.362538e-02 9.670636e-03 2.329601e-02 7.945826e+00
## ACOX3 -9.902076e-03 1.159068e-02 1.688607e-03 4.700589e+00
## TPK1 -1.856876e-01 5.357900e-02 -1.321086e-01 2.335505e+01
## GIN1 -1.331538e-02 2.233214e-02 9.016761e-03 9.359325e+00
## ZNF92 3.201121e-02 -2.522480e-03 2.948873e-02 1.077854e+01
## RGS1 6.842792e-02 -4.598901e-02 2.243891e-02 4.526348e+00
## NUP37 -4.013400e-03 2.772857e-02 2.371517e-02 1.211658e+01
## KIAA1109 -4.345592e-01 6.241518e-04 -4.339351e-01 1.164281e+02
## SMAD5 -5.217764e-03 3.710021e-02 3.188245e-02 1.192468e+01
## MUS81 -4.102445e-02 5.143158e-02 1.040713e-02 2.122691e+01
## ANKRD6 -1.579089e-02 3.148474e-03 -1.264241e-02 4.782337e+00
## DLGAP4 -2.863708e-02 -2.637813e-02 -5.501521e-02 2.451897e+01
## PA2G4 8.979814e-02 5.183604e-02 1.416342e-01 6.120778e+01
## RABAC1 -1.780188e-01 1.137100e-01 -6.430881e-02 2.794759e+01
## VPS45 5.037148e-02 -3.365297e-02 1.671852e-02 1.936041e+01
## TRIM32 8.908561e-03 5.546891e-03 1.445545e-02 3.445607e+00
## DMXL2 -3.844159e-01 -1.617691e-01 -5.461849e-01 1.334923e+02
## ZNF587B 3.385318e-02 -1.494087e-02 1.891231e-02 9.835702e+00
## DUT 5.768681e-02 4.948498e-02 1.071718e-01 3.015796e+01
## NR3C1 -4.658042e-01 2.235538e-01 -2.422504e-01 1.222275e+02
## PPP1R13B 1.086655e-04 8.354570e-03 8.463236e-03 2.445888e+00
## NDST2 -2.567080e-01 8.182025e-02 -1.748878e-01 6.188928e+01
## CKAP2 1.772353e-02 1.315691e-02 3.088044e-02 1.082355e+01
## DPY30 -4.540858e-02 3.549477e-02 -9.913819e-03 2.314845e+01
## AKAP1 1.553657e-02 9.934446e-03 2.547102e-02 8.107265e+00
## ZNF225 -1.927721e-03 9.314611e-03 7.386890e-03 3.313422e+00
## XIAP -1.485474e-01 6.240687e-02 -8.614049e-02 4.953014e+01
## USF3 -1.424548e-01 1.080052e-01 -3.444954e-02 3.340978e+01
## ENTPD5 -2.804918e-03 1.420319e-02 1.139827e-02 5.403470e+00
## KLHDC1 3.270907e-03 1.316156e-03 4.587063e-03 9.734022e-01
## GYPC -2.590462e-01 5.809702e-01 3.219241e-01 8.305970e+01
## MFAP3L -6.421842e-03 -3.678026e-02 -4.320210e-02 1.266869e+01
## DERPC -1.606554e-01 1.090929e-01 -5.156251e-02 3.455066e+01
## DHODH 6.725993e-03 3.504257e-03 1.023025e-02 3.417780e+00
## MRPL49 -1.124386e-02 4.616701e-02 3.492314e-02 3.850536e+01
## ZNF329 1.655597e-02 2.902404e-04 1.684621e-02 5.920480e+00
## SFPQ 1.001258e-01 -1.603495e-01 -6.022373e-02 9.064223e+01
## GATA3 3.376405e-02 3.024473e-03 3.678852e-02 4.840346e+00
## H4C8 -1.396810e-02 -3.083090e-02 -4.479900e-02 5.878736e+00
## PRXL2C 8.527345e-03 -1.568182e-02 -7.154474e-03 8.786096e+00
## KLHL12 -1.351968e-01 2.910786e-02 -1.060890e-01 4.964438e+01
## ZNF398 -2.336563e-02 4.307602e-02 1.971039e-02 1.831617e+01
## SLC6A20 -4.137313e-03 4.084920e-03 -5.239261e-05 1.047611e+00
## MREG -2.442489e-03 1.077686e-02 8.334368e-03 3.418508e+00
## TTC4 4.325437e-03 1.854544e-02 2.287088e-02 1.186334e+01
## DARS1 5.560465e-02 9.824928e-03 6.542958e-02 3.036689e+01
## ANKRD12 -2.779453e-01 2.453439e-01 -3.260141e-02 9.082200e+01
## SPATA13 -1.583364e-01 -3.015667e-01 -4.599031e-01 1.262806e+02
## PSMA2 -1.347672e-01 2.575142e-01 1.227471e-01 1.093508e+02
## GPD2 -1.640689e-02 -8.320473e-02 -9.961161e-02 2.811369e+01
## S100A13 -2.001013e-03 1.321791e-02 1.121690e-02 2.825308e+00
## PMPCB 3.366921e-02 2.059747e-02 5.426668e-02 4.126316e+01
## TMPO 2.131336e-01 -1.132841e-01 9.984948e-02 8.012343e+01
## ZBED1 -1.220715e-01 7.401272e-02 -4.805878e-02 4.760855e+01
## PHF1 2.460696e-01 -1.398538e-01 1.062158e-01 7.084651e+01
## MTRNR2L10 -7.204568e-02 2.261732e-01 1.541275e-01 4.819139e+01
## H2BC11 -6.631485e-03 -7.146810e-03 -1.377830e-02 3.239165e+00
## TGM2 -1.865739e-02 2.125867e-02 2.601276e-03 2.615757e+00
## UPP1 -9.989028e-01 5.942509e-01 -4.046518e-01 1.413915e+02
## CALM2 -2.463680e+00 3.216245e-01 -2.142055e+00 7.318268e+02
## ANKRD13A -7.892654e-01 6.936374e-01 -9.562796e-02 2.569890e+02
## SFI1 2.096176e-02 3.051764e-02 5.147940e-02 1.551822e+01
## YIPF5 -2.993424e-02 -2.104215e-02 -5.097639e-02 2.512000e+01
## MCOLN2 1.283657e-02 2.861363e-03 1.569793e-02 3.037486e+00
## TSPO -1.037191e+00 7.625335e-01 -2.746571e-01 1.217790e+02
## JAK2 -4.805096e-01 -1.763856e-01 -6.568952e-01 1.592936e+02
## P4HB -7.860600e-01 5.110448e-01 -2.750152e-01 2.217928e+02
## CYFIP2 -2.074799e-01 3.274739e-01 1.199940e-01 1.618604e+02
## LILRA1 -3.647367e-01 1.482005e-01 -2.165362e-01 1.003846e+02
## OSTC -8.214731e-02 8.341761e-02 1.270301e-03 3.739191e+01
## GOSR1 -4.926142e-02 8.614200e-04 -4.840000e-02 3.619465e+01
## PGBD3 7.510848e-03 4.607010e-04 7.971549e-03 2.730460e+00
## ZNF277 2.938940e-02 -3.670695e-03 2.571870e-02 1.797207e+01
## MYOM1 -1.155009e-02 -5.532900e-03 -1.708299e-02 4.378416e+00
## RABL2B 2.043723e-02 6.956846e-04 2.113291e-02 9.235887e+00
## MYL6B -3.027423e-02 1.292104e-02 -1.735319e-02 4.971490e+00
## TRIM41 -2.443976e-02 4.103054e-02 1.659078e-02 2.913072e+01
## SAYSD1 1.316048e-02 6.361931e-03 1.952241e-02 1.175983e+01
## DDA1 -1.344329e-02 4.619052e-02 3.274723e-02 2.078446e+01
## CLEC10A 9.135062e-02 -8.614965e-03 8.273566e-02 1.104050e+01
## FGFRL1 1.611542e-02 -5.347084e-03 1.076834e-02 3.056748e+00
## ADAM22 -3.349723e-03 4.849673e-03 1.499950e-03 1.234094e+00
## H3C4 8.884494e-03 -2.055399e-02 -1.166950e-02 3.452720e+00
## NOTCH2 -1.176226e+00 7.074237e-01 -4.688018e-01 2.724189e+02
## CCRL2 4.623419e-02 -6.766691e-02 -2.143272e-02 9.159405e+00
## NTAQ1 1.020073e-02 -4.730065e-03 5.470665e-03 3.126340e+00
## PEG10 -1.236890e-03 4.008522e-03 2.771632e-03 5.621880e-01
## INSR 1.202822e-02 -4.662129e-02 -3.459308e-02 1.121639e+01
## CREB3L4 8.295404e-03 1.153340e-03 9.448744e-03 3.442782e+00
## SLC20A2 2.705256e-03 6.770848e-03 9.476104e-03 3.883663e+00
## CHN1 -1.472797e-03 4.195924e-03 2.723127e-03 7.210824e-01
## MKS1 8.272207e-03 2.862196e-03 1.113440e-02 2.925463e+00
## ZNF649 -3.129426e-03 8.725917e-03 5.596491e-03 2.644699e+00
## RAB27B -3.262608e-02 -3.433459e-02 -6.696067e-02 1.530065e+01
## USP46 9.275029e-03 4.892228e-03 1.416726e-02 3.630908e+00
## CD69 2.001291e-01 -1.131434e-01 8.698564e-02 2.907740e+01
## ACBD4 8.887564e-03 1.742592e-02 2.631348e-02 6.645627e+00
## DDI2 -2.746347e-02 4.104397e-02 1.358051e-02 1.775701e+01
## CD83 7.975108e-02 -7.731802e-02 2.433060e-03 7.547170e+00
## TARBP1 3.616226e-02 -1.311157e-02 2.305069e-02 8.703321e+00
## NIFK 2.636034e-02 8.692406e-03 3.505275e-02 1.760604e+01
## CADM4 2.332769e-02 -2.200969e-02 1.318003e-03 4.858876e+00
## ILKAP 1.306963e-02 2.898714e-02 4.205677e-02 1.502851e+01
## QTRT2 -3.174482e-02 4.949784e-03 -2.679503e-02 1.344456e+01
## LPCAT1 -2.051812e-01 9.863529e-02 -1.065459e-01 1.039814e+02
## TRIM59 9.485620e-03 8.424885e-03 1.791050e-02 6.174073e+00
## ELMO3 3.054291e-03 1.784020e-02 2.089449e-02 4.025029e+00
## GNL3 4.602304e-03 7.121504e-02 7.581734e-02 3.206503e+01
## KDM2A -5.263082e-01 1.212866e-01 -4.050216e-01 1.963097e+02
## GLT1D1 -1.371852e+00 4.874789e-01 -8.843735e-01 3.220927e+02
## NID1 -2.713219e-02 -8.584706e-03 -3.571689e-02 6.489432e+00
## WDR27 3.456941e-03 2.071494e-03 5.528435e-03 1.352484e+00
## DCTPP1 -2.285692e-02 4.248537e-02 1.962845e-02 1.112981e+01
## CLPTM1 -3.118596e-02 5.802995e-02 2.684399e-02 3.432840e+01
## CCNJL -2.453204e-01 -1.693828e-01 -4.147031e-01 7.560899e+01
## FGD4 -2.558705e-01 -1.142178e-01 -3.700882e-01 6.727787e+01
## ZNF799 -4.935554e-02 1.373509e-02 -3.562045e-02 8.736181e+00
## C21orf91 -8.816064e-02 1.186103e-01 3.044964e-02 4.130028e+01
## AREG 2.651402e-01 -2.754736e-01 -1.033338e-02 5.966321e+00
## CHD8 -1.391687e-01 1.655746e-02 -1.226112e-01 7.355215e+01
## WASHC5 -8.077360e-03 -4.749994e-02 -5.557730e-02 2.981605e+01
## FKBP5 -5.278415e+00 3.561126e-01 -4.922302e+00 6.929104e+02
## ATP1B1 -6.067937e-03 4.284239e-03 -1.783699e-03 1.329845e+00
## FLRT2 2.704133e-03 -2.204149e-03 4.999843e-04 4.444864e-01
## C21orf62 -5.836269e-03 9.496302e-04 -4.886639e-03 1.612874e+00
## GIGYF2 -8.535729e-02 8.672833e-02 1.371039e-03 3.991660e+01
## MRPS16 -3.811257e-02 7.113054e-02 3.301798e-02 3.150231e+01
## SETD5 -1.793425e-01 9.966016e-02 -7.968238e-02 5.800582e+01
## WSB1 -8.086079e-01 -5.994164e-03 -8.146020e-01 2.210269e+02
## REM2 1.017445e-01 -1.242763e-01 -2.253178e-02 2.463673e+01
## CEP126 3.450894e-03 6.664227e-04 4.117317e-03 8.510790e-01
## DUSP18 -3.581033e-02 8.516575e-03 -2.729375e-02 1.203169e+01
## TMEM53 1.771188e-04 3.789874e-03 3.966993e-03 9.642774e-01
## CCDC127 -2.456123e-03 1.588566e-02 1.342953e-02 8.400089e+00
## RBM15B 1.097630e-02 4.438001e-02 5.535631e-02 3.841760e+01
## OR1F1 1.167207e-03 -2.566800e-03 -1.399593e-03 5.898291e-01
## EBPL -3.435551e-02 2.193508e-02 -1.242043e-02 1.060662e+01
## RAB32 -5.559831e-01 1.584897e-01 -3.974934e-01 1.101107e+02
## TRAPPC6A 1.452704e-02 4.538666e-02 5.991370e-02 6.693045e+00
## PI16 1.732807e-02 3.346845e-03 2.067491e-02 2.062281e+00
## LY86 5.962856e-02 -1.490040e-01 -8.937545e-02 3.761406e+01
## BTG2 -3.223995e+00 4.008716e+00 7.847208e-01 7.292616e+02
## ARPC3 -2.780770e+00 1.739830e+00 -1.040939e+00 8.826408e+02
## PKP4 -6.110385e-02 6.040465e-02 -6.992027e-04 1.898969e+01
## PFDN1 4.996877e-02 -1.340997e-02 3.655880e-02 2.204421e+01
## CTSF 2.509602e-02 3.852756e-04 2.548130e-02 4.320339e+00
## RIC1 -1.636681e-01 4.683889e-02 -1.168293e-01 4.648304e+01
## ATP23 -8.831846e-03 1.901932e-02 1.018747e-02 5.426808e+00
## TADA2A 1.345378e-02 4.440303e-03 1.789408e-02 8.399289e+00
## NAA30 2.406221e-02 -1.095648e-02 1.310573e-02 1.022050e+01
## ABLIM3 8.013477e-02 -1.314403e-01 -5.130552e-02 2.660013e+01
## CTDSP1 -7.854587e-01 9.480858e-01 1.626271e-01 2.903284e+02
## SLC41A1 9.253135e-03 1.444974e-02 2.370288e-02 5.776389e+00
## TRANK1 -1.521510e-01 -4.361099e-01 -5.882610e-01 1.464117e+02
## INTS6L -6.881558e-03 4.567944e-02 3.879788e-02 2.228831e+01
## SRRD -5.164226e-03 2.624913e-02 2.108490e-02 1.114812e+01
## ACTA2 2.598584e-02 -4.372318e-02 -1.773734e-02 8.655194e+00
## EIF4E3 -6.072207e-01 -3.301143e-01 -9.373349e-01 2.296969e+02
## SCIN 4.103480e-03 -5.291712e-04 3.574308e-03 1.002622e+00
## CFL2 7.530119e-03 3.609622e-03 1.113974e-02 3.170361e+00
## MED20 -2.476058e-02 7.962614e-03 -1.679797e-02 1.116383e+01
## LZTFL1 -6.936448e-03 1.670095e-02 9.764498e-03 6.559705e+00
## HAT1 -1.809058e-01 1.591307e-01 -2.177510e-02 5.354805e+01
## SV2A 8.346044e-03 -3.078281e-03 5.267764e-03 1.370782e+00
## IMPDH1 -8.674004e-01 4.811183e-01 -3.862821e-01 2.316221e+02
## TMEM258 -1.384857e-01 7.078147e-02 -6.770422e-02 4.682546e+01
## MPDU1 -7.946399e-02 1.450409e-01 6.557694e-02 4.153855e+01
## CDK20 2.402456e-03 2.022042e-03 4.424497e-03 7.955739e-01
## TMEM167A -3.410827e-01 -8.647278e-02 -4.275555e-01 1.501113e+02
## ELOVL6 7.538652e-03 -1.290889e-02 -5.370238e-03 3.519954e+00
## RPL22L1 -4.917473e-02 8.183087e-02 3.265614e-02 1.891164e+01
## SYNGR1 1.440088e-02 -3.107406e-02 -1.667318e-02 4.851144e+00
## ZMYND19 1.570361e-02 -5.345006e-04 1.516911e-02 3.781144e+00
## SCD5 6.295554e-03 -5.502222e-03 7.933314e-04 1.500861e+00
## MPC1 -3.611927e-02 5.669266e-03 -3.045000e-02 2.180451e+01
## NDUFS2 -8.521016e-02 1.036922e-01 1.848208e-02 8.514262e+01
## CYTH3 -1.383207e-02 8.468619e-03 -5.363448e-03 5.902210e+00
## TREX1 1.873585e-01 -1.034221e-01 8.393636e-02 2.155944e+01
## CD86 -6.225149e-02 -1.246585e-01 -1.869100e-01 5.197944e+01
## CD300E -1.869025e-01 -8.007409e-01 -9.876434e-01 1.846412e+02
## DDX27 7.121877e-02 -2.716238e-02 4.405639e-02 2.935386e+01
## PLEKHG1 -2.156647e-02 -1.730149e-02 -3.886796e-02 2.950260e+00
## OLFML2A 3.088517e-03 -5.929629e-03 -2.841112e-03 1.349720e+00
## GALT 2.590931e-02 1.492716e-02 4.083648e-02 1.076786e+01
## ZZEF1 -1.965651e-01 1.156188e-01 -8.094630e-02 7.937154e+01
## FCGR2B 1.966735e-01 1.039185e-03 1.977127e-01 4.563210e+01
## RAB12 -1.188960e-02 -1.802597e-02 -2.991557e-02 1.407829e+01
## ATF1 8.322589e-03 3.679146e-02 4.511405e-02 1.875766e+01
## UBE2Q2 4.981665e-02 -1.854549e-02 3.127116e-02 1.905254e+01
## CEP83 8.039095e-03 -5.539256e-03 2.499839e-03 2.951110e+00
## C2orf15 2.681219e-03 -3.192809e-04 2.361938e-03 5.310743e-01
## ATP5MPL -3.694722e-01 4.044532e-01 3.498105e-02 1.122232e+02
## PPP1R9B -1.898377e-01 2.330531e-01 4.321539e-02 1.324204e+02
## LPCAT2 -6.854131e-01 -1.100878e-01 -7.955009e-01 1.504712e+02
## FABP5 -2.191126e-02 -2.940067e-02 -5.131193e-02 1.060223e+01
## RNF220 2.900585e-02 5.649705e-02 8.550291e-02 4.907199e+01
## ACVR1B -8.940548e-02 -6.722762e-02 -1.566331e-01 3.685360e+01
## PRKCI -2.186986e-02 2.048856e-02 -1.381293e-03 1.052824e+01
## PIGU 4.369615e-03 2.139421e-02 2.576383e-02 7.510042e+00
## ELAC1 1.112406e-02 -1.644009e-03 9.480051e-03 4.138869e+00
## SIN3B 1.639865e-02 2.961392e-02 4.601257e-02 2.379947e+01
## MED1 -5.291564e-02 9.068595e-02 3.777031e-02 3.488881e+01
## TNFRSF8 -2.879790e-02 5.344142e-02 2.464352e-02 1.208855e+01
## STAT4 8.143638e-02 2.283791e-02 1.042743e-01 2.800139e+01
## TMOD3 -2.805738e-01 3.478519e-02 -2.457886e-01 7.800535e+01
## SRPRA -1.623658e-01 7.046574e-02 -9.190007e-02 1.257673e+02
## PRKACA -3.052999e-01 1.599816e-01 -1.453183e-01 1.254982e+02
## GBA -3.569176e-01 5.884604e-01 2.315428e-01 1.245683e+02
## COX7A2 -2.942400e-01 3.811656e-01 8.692564e-02 1.025134e+02
## RBAK -1.446852e-02 3.317289e-02 1.870438e-02 1.133658e+01
## EGR1 -6.309152e-01 1.135736e+00 5.048213e-01 9.272496e+01
## EPHA4 -6.037982e-04 1.618082e-02 1.557702e-02 2.520677e+00
## CLEC2D 1.940144e-01 -1.272462e-02 1.812898e-01 5.965721e+01
## ACKR3 3.090390e-02 -2.585018e-02 5.053723e-03 1.844229e+00
## SLC39A6 -3.770861e-02 4.459557e-02 6.886961e-03 2.295276e+01
## ITGAX -3.216494e+00 2.587483e+00 -6.290117e-01 9.246257e+02
## CEP128 -1.355931e-02 1.215258e-02 -1.406726e-03 2.654485e+00
## PHTF1 -2.153928e-01 1.034731e-01 -1.119196e-01 3.680019e+01
## CAMKMT 7.015472e-04 3.357898e-03 4.059445e-03 1.536533e+00
## DYRK4 -1.476386e-02 4.264481e-02 2.788096e-02 8.338656e+00
## RPL14 1.488545e+00 1.420279e-01 1.630573e+00 4.359828e+02
## DENND3 -8.717439e-01 -1.242456e-01 -9.959894e-01 3.117212e+02
## ZNF211 2.322961e-02 1.773491e-02 4.096452e-02 1.862264e+01
## DNAJC2 3.051372e-02 -2.871767e-03 2.764196e-02 1.328250e+01
## EP400 3.772841e-04 2.957674e-02 2.995403e-02 1.594860e+01
## RNF144A -3.105637e-03 2.869236e-02 2.558673e-02 1.045950e+01
## ZC3H4 -3.798784e-02 3.528899e-02 -2.698849e-03 2.108514e+01
## C17orf58 -2.586341e-03 -2.894183e-03 -5.480524e-03 1.886336e+00
## ARL11 -1.766960e-01 -2.322195e-02 -1.999180e-01 5.528771e+01
## RNF130 -1.077863e+00 2.241971e-01 -8.536658e-01 3.920802e+02
## VAV1 -4.782643e-01 1.235910e-01 -3.546733e-01 1.905019e+02
## ABR -2.626437e-01 1.495163e-01 -1.131274e-01 1.145204e+02
## ZNF529 3.450108e-03 1.085551e-02 1.430562e-02 4.268802e+00
## CCNE1 -7.300564e-03 1.018469e-02 2.884128e-03 1.938149e+00
## PCBD1 9.672679e-03 -1.270381e-02 -3.031136e-03 4.670637e+00
## PLA2G6 7.263181e-03 3.032969e-02 3.759287e-02 1.043224e+01
## LIPE 2.998328e-03 3.346813e-03 6.345141e-03 9.465842e-01
## ENTPD7 -9.755190e-02 -3.490501e-02 -1.324569e-01 1.239571e+01
## UBLCP1 -1.250163e-01 -5.051017e-02 -1.755265e-01 6.230386e+01
## FTSJ1 -1.442715e-02 3.314605e-02 1.871890e-02 1.317983e+01
## TTC7B 2.754158e-03 -2.838516e-02 -2.563100e-02 8.643513e+00
## C19orf38 -7.559676e-01 3.286683e-01 -4.272993e-01 1.659232e+02
## HS6ST1 -2.195089e-02 2.717269e-02 5.221801e-03 1.059926e+01
## NSUN3 -5.841917e-02 5.643169e-02 -1.987480e-03 2.123095e+01
## ANKRD27 -4.462279e-02 2.038344e-02 -2.423936e-02 2.370359e+01
## SNRPN 1.280691e-01 6.349212e-02 1.915613e-01 4.635097e+01
## RIPK2 4.625184e-02 -8.896423e-02 -4.271239e-02 2.180852e+01
## CYB5R4 -8.010787e-01 2.822484e-01 -5.188303e-01 1.869104e+02
## CEP63 -2.079657e-01 2.932293e-01 8.526359e-02 9.140290e+01
## ANKRD50 -3.994055e-02 1.520436e-02 -2.473619e-02 9.072649e+00
## DHRS12 2.380681e-02 -9.177597e-02 -6.796916e-02 2.423196e+01
## ITPR3 2.023802e-02 4.838259e-02 6.862062e-02 1.489804e+01
## FAM13B -1.082059e-01 -1.375083e-02 -1.219567e-01 4.654983e+01
## ATAD2 4.562692e-02 -3.027573e-02 1.535118e-02 1.211435e+01
## RMI1 -4.932711e-02 -2.764345e-02 -7.697056e-02 1.983818e+01
## CLNS1A 8.173055e-02 1.912302e-03 8.364285e-02 4.082330e+01
## LRRFIP2 -1.735654e-01 3.268429e-02 -1.408811e-01 4.518565e+01
## VPS26C -7.071006e-02 -5.649697e-02 -1.272070e-01 5.577481e+01
## BNIP2 -5.811669e-01 -1.192856e-01 -7.004525e-01 2.018787e+02
## SLC25A42 -1.335135e-02 3.075902e-02 1.740767e-02 7.530925e+00
## GATA2 1.219401e-03 2.303496e-02 2.425436e-02 4.237327e+00
## PPM1F -5.361251e-01 5.311535e-01 -4.971573e-03 1.712101e+02
## OIP5 -5.972212e-03 7.253808e-03 1.281597e-03 1.118985e+00
## PTGS2 -1.445188e+00 2.844414e+00 1.399227e+00 2.345047e+02
## MICB -4.660803e-02 -5.084185e-02 -9.744988e-02 3.013400e+01
## MED25 -2.037986e-02 1.741123e-01 1.537324e-01 5.794286e+01
## PRPF39 3.087728e-02 1.148036e-02 4.235764e-02 1.742905e+01
## MYO1C 1.994298e-02 8.413125e-03 2.835611e-02 8.918971e+00
## ZFP28 3.120469e-03 4.330996e-03 7.451465e-03 1.769454e+00
## SYNE1 -5.579847e-01 1.980704e-01 -3.599143e-01 1.224060e+02
## RNF41 -1.051742e-01 5.163708e-02 -5.353717e-02 5.595675e+01
## UBXN10 7.988272e-03 7.043124e-04 8.692584e-03 1.353955e+00
## KIAA0040 -8.079375e-01 -5.094081e-01 -1.317346e+00 3.340359e+02
## ZNF784 -3.035351e-02 9.144013e-03 -2.120950e-02 6.822751e+00
## PANX1 -4.185511e-03 -1.345470e-02 -1.764021e-02 7.663442e+00
## SHLD2 3.119971e-02 1.021598e-02 4.141569e-02 2.035907e+01
## CATSPER2 2.820549e-03 -8.539806e-04 1.966568e-03 5.032278e-01
## VPS25 -1.086732e-01 8.938832e-02 -1.928486e-02 4.402055e+01
## SLC25A45 -1.949494e-03 2.634765e-02 2.439816e-02 7.124357e+00
## TAF9 -7.544112e-03 6.345425e-02 5.591013e-02 3.076792e+01
## ATP6V1C1 -6.171851e-01 -2.040899e-01 -8.212750e-01 1.306447e+02
## EPS15 -2.409271e-01 5.760320e-03 -2.351668e-01 8.613818e+01
## PLEKHA5 -3.073006e-03 -4.392641e-03 -7.465647e-03 2.092805e+00
## UBE2J2 -4.691428e-02 6.121676e-02 1.430248e-02 2.843482e+01
## MAK16 1.979033e-02 -4.483816e-03 1.530651e-02 7.496000e+00
## ATM -8.539770e-02 3.712362e-01 2.858385e-01 1.240426e+02
## POR -4.121327e-01 1.829325e-01 -2.292003e-01 6.314590e+01
## TIGIT -6.908027e-03 6.130592e-02 5.439789e-02 1.226930e+01
## CDKN1C 2.673928e-02 2.447395e-02 5.121323e-02 3.971863e+00
## ISCA2 -3.089717e-02 1.929756e-02 -1.159961e-02 1.495407e+01
## C3orf14 -3.649737e-03 -2.725978e-03 -6.375715e-03 1.314562e+00
## PRMT2 -1.890323e-01 2.279681e-01 3.893575e-02 1.297037e+02
## SLC25A36 8.802219e-02 -5.610484e-02 3.191735e-02 2.079235e+01
## GDF9 1.535257e-03 -2.165701e-03 -6.304443e-04 3.691241e-01
## GNAI3 -5.584664e-01 -1.239692e-02 -5.708634e-01 1.906477e+02
## FAM214B -5.464260e-01 3.078474e-01 -2.385785e-01 1.511736e+02
## SET 2.068718e-01 1.335007e-02 2.202218e-01 1.590795e+02
## POPDC2 4.583077e-04 -6.570912e-03 -6.112604e-03 2.200454e+00
## LRIF1 -7.877734e-02 1.586648e-02 -6.291086e-02 2.049776e+01
## CDK7 -4.365955e-02 6.764375e-03 -3.689518e-02 1.924249e+01
## PECAM1 -1.325367e+00 1.241497e+00 -8.386921e-02 5.697328e+02
## TERF1 2.872746e-02 -1.130048e-02 1.742698e-02 1.566183e+01
## NAV1 9.473990e-03 -1.223577e-02 -2.761781e-03 2.520998e+00
## IRF7 6.778142e-01 -6.195480e-01 5.826620e-02 6.463024e+01
## TENT2 -1.087437e-01 -8.213197e-02 -1.908756e-01 7.549126e+01
## NFIA 8.651359e-03 -7.672293e-03 9.790665e-04 2.425189e+00
## LRRC49 7.593685e-04 -2.184233e-03 -1.424864e-03 3.904852e-01
## GOLGA4 -7.262050e-02 9.437522e-02 2.175473e-02 3.466121e+01
## CDC34 -1.466580e-01 1.690369e-01 2.237885e-02 3.895673e+01
## ABHD15 2.363211e-02 2.120126e-03 2.575223e-02 9.254811e+00
## TTC39B 3.912484e-02 -8.304797e-03 3.082004e-02 1.134687e+01
## TXLNG 3.246040e-02 -1.725655e-02 1.520386e-02 9.740697e+00
## ZIK1 1.677807e-03 8.138860e-03 9.816667e-03 2.513029e+00
## ANAPC13 -4.407573e-02 1.447053e-01 1.006296e-01 5.842393e+01
## VSIG10L -1.944327e-03 -5.555035e-03 -7.499363e-03 1.199625e+00
## RPL24 1.109166e+00 4.674549e-01 1.576621e+00 3.951215e+02
## SUOX -2.201722e-02 1.422622e-02 -7.790998e-03 9.970390e+00
## SLC22A15 -3.448221e-02 -1.560561e-01 -1.905383e-01 4.100394e+01
## PSD4 -4.755464e-01 4.686268e-01 -6.919554e-03 2.345328e+02
## ELP3 3.965645e-02 -5.965534e-03 3.369092e-02 1.662449e+01
## ZSCAN25 1.237959e-02 7.128937e-03 1.950852e-02 1.331000e+01
## VPS13B -1.721878e-01 5.381243e-02 -1.183753e-01 4.326907e+01
## DPH6 4.890381e-03 2.797040e-03 7.687421e-03 2.389708e+00
## AS3MT 2.983626e-03 4.817342e-03 7.800968e-03 1.879645e+00
## KLHL2 -1.248284e+00 2.592930e-01 -9.889907e-01 1.999170e+02
## COG4 -1.032837e-02 7.068637e-02 6.035799e-02 4.026960e+01
## ZSWIM6 -1.389403e-01 6.282593e-02 -7.611440e-02 3.786293e+01
## SH2D3A 1.098127e-02 5.684290e-03 1.666556e-02 2.920412e+00
## LRP6 -8.136490e-03 6.034652e-03 -2.101838e-03 1.512048e+00
## NRG1 -2.196091e-02 -2.215701e-02 -4.411792e-02 6.878998e+00
## C22orf39 2.375746e-02 5.605905e-03 2.936337e-02 2.507049e+01
## PUM3 1.158756e-02 1.476046e-02 2.634802e-02 1.171546e+01
## FITM2 1.956716e-03 5.557334e-03 7.514050e-03 3.691931e+00
## YIF1A -3.330192e-02 3.709007e-02 3.788145e-03 7.975858e+00
## DDX28 1.655933e-02 1.845429e-02 3.501362e-02 1.279964e+01
## FAM111A 3.797902e-02 -1.802659e-01 -1.422869e-01 7.331442e+01
## SKIV2L -3.953121e-02 8.140303e-02 4.187182e-02 4.727971e+01
## S100A12 -2.419239e+01 1.934602e+01 -4.846368e+00 1.944949e+03
## INPP5F 1.150907e-02 7.291174e-03 1.880024e-02 5.796184e+00
## ZNF251 8.308019e-03 8.297901e-03 1.660592e-02 5.028370e+00
## TBCC -7.675342e-02 -3.615573e-03 -8.036900e-02 3.799948e+01
## KIAA1191 2.896114e-03 3.801100e-02 4.090712e-02 2.839742e+01
## PHF14 6.127884e-02 -1.110969e-02 5.016914e-02 1.882346e+01
## ZNF804A -3.955444e-03 2.889435e-03 -1.066009e-03 8.672048e-01
## LINS1 3.049024e-02 1.550157e-03 3.204040e-02 1.623412e+01
## CAB39 -1.541981e+00 3.478694e-01 -1.194112e+00 3.459640e+02
## HSPA4L -5.537609e-04 -4.943004e-03 -5.496765e-03 1.974137e+00
## LIPA 2.691564e-02 -2.235689e-01 -1.966533e-01 6.983864e+01
## TAOK1 -3.327573e-01 1.469814e-01 -1.857759e-01 9.036542e+01
## KLLN -1.704082e-02 4.385090e-04 -1.660231e-02 3.387971e+00
## AKT3 6.746191e-03 2.628403e-02 3.303022e-02 9.796585e+00
## IL20RB -1.674041e-03 3.090075e-03 1.416034e-03 8.231929e-01
## AKAP10 -1.405086e-01 -4.698145e-03 -1.452068e-01 5.595202e+01
## KLF4 5.837759e-02 -1.442727e-01 -8.589511e-02 3.846010e+01
## KRI1 5.190687e-02 4.039923e-02 9.230610e-02 2.320893e+01
## RBL1 1.941552e-02 -1.139315e-02 8.022368e-03 7.491732e+00
## NGLY1 -7.386710e-02 6.965170e-02 -4.215400e-03 4.092783e+01
## EXOSC6 4.143136e-02 -1.848077e-02 2.295059e-02 1.351353e+01
## PLIN3 -4.081642e-01 9.317987e-02 -3.149843e-01 1.068782e+02
## PIPOX -6.471814e-03 4.149224e-03 -2.322590e-03 1.238246e+00
## PDCD6 -1.138310e-01 8.870061e-02 -2.513040e-02 6.810144e+01
## MR1 -8.362037e-02 -7.508509e-02 -1.587055e-01 5.909118e+01
## LDLRAP1 1.349676e-01 5.139855e-02 1.863661e-01 4.447638e+01
## GPHN 6.799310e-03 -2.487516e-03 4.311794e-03 1.960915e+00
## HOMER2 3.915323e-03 1.179359e-02 1.570891e-02 2.868663e+00
## VPS26A -5.689658e-02 -2.162991e-02 -7.852648e-02 4.305224e+01
## CEP41 8.116187e-03 -7.901561e-03 2.146260e-04 4.058036e+00
## ENY2 -2.584231e-01 2.154357e-01 -4.298742e-02 5.700953e+01
## SEPTIN2 -2.728715e-01 2.158255e-01 -5.704605e-02 1.525657e+02
## AP4S1 7.400485e-03 2.480030e-03 9.880515e-03 6.623165e+00
## RNF34 -6.680793e-02 5.827608e-02 -8.531850e-03 3.932841e+01
## FBXO32 2.373107e-02 1.675930e-03 2.540700e-02 6.277020e+00
## ZNF599 2.123941e-04 1.974133e-03 2.186527e-03 3.719271e-01
## TMSB15B 1.425494e-03 1.669912e-03 3.095406e-03 6.866336e-01
## SYN2 -8.661975e-03 -1.607383e-02 -2.473581e-02 3.475432e+00
## DGKD -3.886502e-01 2.284735e-01 -1.601767e-01 1.062618e+02
## PDE3A -1.192868e-03 -5.651965e-03 -6.844833e-03 1.338506e+00
## TUBGCP5 4.146694e-03 9.562733e-03 1.370943e-02 4.055136e+00
## SRR 8.837087e-03 -2.135847e-03 6.701240e-03 2.803299e+00
## PROS1 -3.562732e-02 -4.498701e-02 -8.061433e-02 1.080900e+01
## EPS15L1 -4.440404e-02 1.270861e-01 8.268208e-02 5.610558e+01
## FURIN -6.669559e-01 2.592043e-01 -4.077516e-01 1.621816e+02
## ZNF517 -1.816984e-04 3.170426e-03 2.988728e-03 9.961297e-01
## EFHD2 -1.341871e+00 4.806154e-01 -8.612554e-01 4.131762e+02
## RAB36 -5.475799e-02 2.866760e-02 -2.609039e-02 7.732574e+00
## IPCEF1 1.986993e-02 -1.015651e-01 -8.169514e-02 3.942531e+01
## ERI1 -7.545658e-02 -2.052582e-02 -9.598240e-02 1.915294e+01
## FAM83F -2.442561e-03 2.761366e-03 3.188047e-04 4.062162e-01
## DICER1 -8.266417e-01 3.905379e-01 -4.361038e-01 1.614229e+02
## SLC12A7 9.652254e-02 -6.822854e-02 2.829400e-02 1.943611e+01
## BET1L 3.694873e-02 4.152068e-02 7.846942e-02 5.463977e+01
## PDCD10 -3.282333e-01 1.481546e-01 -1.800787e-01 8.370712e+01
## TTC21A 1.330667e-02 -1.843771e-02 -5.131044e-03 3.358218e+00
## CAMSAP1 1.920999e-03 1.566953e-02 1.759053e-02 9.618436e+00
## SH3BGRL2 5.004595e-02 -1.737377e-01 -1.236917e-01 3.740755e+01
## COPA -2.772624e-01 7.955667e-03 -2.693067e-01 1.265631e+02
## CAV2 1.507366e-02 -2.753680e-03 1.231998e-02 2.579547e+00
## CRYM 1.956154e-03 8.285900e-03 1.024205e-02 1.360570e+00
## CREBL2 -3.710972e-03 5.921534e-02 5.550437e-02 2.857957e+01
## DPH2 -6.345496e-03 2.616588e-02 1.982039e-02 9.237798e+00
## ADSS1 2.538034e-03 -1.438893e-04 2.394145e-03 4.803343e-01
## PPIH 2.570082e-02 1.866480e-02 4.436562e-02 1.300290e+01
## DAB2 -3.524263e-02 -3.180920e-02 -6.705184e-02 1.773419e+01
## RNF111 -1.491816e-01 8.137194e-03 -1.410444e-01 4.514416e+01
## PLEK -1.182838e+00 -1.025102e+00 -2.207940e+00 5.939236e+02
## ETFDH -2.608046e-02 1.514167e-03 -2.456629e-02 1.221409e+01
## INO80C -1.676795e-02 3.317731e-03 -1.345022e-02 8.325959e+00
## ABLIM1 8.522724e-02 7.296953e-02 1.581968e-01 3.125736e+01
## TLCD2 -1.408481e-03 -3.826609e-03 -5.235090e-03 1.695708e+00
## CNOT4 -1.879651e-02 -6.215259e-03 -2.501177e-02 1.094961e+01
## MYO1E 8.593303e-03 -1.271844e-02 -4.125141e-03 3.686554e+00
## MAU2 -1.171735e-01 1.372993e-01 2.012583e-02 7.114079e+01
## PLEC -2.491034e-01 6.369520e-02 -1.854082e-01 6.690541e+01
## SYAP1 1.200852e-01 -1.809975e-01 -6.091230e-02 3.287986e+01
## LSM6 -6.615624e-02 4.554922e-02 -2.060702e-02 2.195575e+01
## CLDN7 -4.960306e-03 4.080936e-04 -4.552213e-03 8.494015e-01
## PUS7L -2.518016e-02 3.049670e-02 5.316540e-03 1.317004e+01
## FYTTD1 5.402024e-02 -7.581770e-02 -2.179745e-02 4.199973e+01
## ZNF44 2.654795e-02 -3.617570e-02 -9.627757e-03 1.494684e+01
## ZKSCAN1 -8.048269e-02 8.019185e-02 -2.908403e-04 3.904944e+01
## MAPK1IP1L 2.316281e-02 -8.994922e-02 -6.678642e-02 4.939786e+01
## ARFGAP3 -1.871382e-01 1.053764e-01 -8.176181e-02 6.328933e+01
## CHD4 1.630436e-01 -2.938443e-01 -1.308007e-01 1.418585e+02
## EIF2AK1 -8.937443e-02 2.738608e-01 1.844863e-01 1.240806e+02
## GATD3A 5.746157e-02 5.249784e-02 1.099594e-01 8.628400e+00
## CD2 2.886132e-01 3.060759e-02 3.192208e-01 6.064990e+01
## HPS1 -9.741792e-02 1.584207e-01 6.100277e-02 6.547653e+01
## ETS2 -9.592329e-01 2.671375e-01 -6.920953e-01 1.591216e+02
## ARHGEF17 -3.163444e-03 1.446739e-02 1.130395e-02 2.461908e+00
## RUVBL1 2.834745e-02 4.587830e-03 3.293528e-02 1.176565e+01
## SLC2A3 -4.540482e+00 3.714102e-01 -4.169072e+00 9.743402e+02
## TMEM120B 1.490996e-02 9.422949e-03 2.433291e-02 7.747859e+00
## CNEP1R1 -1.809595e-01 -5.687741e-03 -1.866473e-01 4.973625e+01
## ZBP1 1.765920e-01 -4.569416e-01 -2.803496e-01 6.584778e+01
## TPPP3 3.058633e-02 2.634921e-02 5.693554e-02 4.216053e+00
## RASGEF1A -1.431441e-01 5.916104e-02 -8.398303e-02 2.034468e+01
## TLNRD1 -7.638463e-03 -2.177028e-02 -2.940874e-02 1.627159e+01
## ANKRD36 4.200056e-03 1.052208e-02 1.472214e-02 3.356111e+00
## CD55 -1.738543e+00 -6.566559e-01 -2.395199e+00 4.601361e+02
## ITGAE -3.050191e-02 3.198617e-02 1.484260e-03 1.034646e+01
## AQP10 9.840053e-03 -7.919193e-02 -6.935188e-02 9.046874e+00
## CD27 2.629058e-02 1.414547e-01 1.677452e-01 2.464680e+01
## ARSB -2.074596e-02 -3.563947e-02 -5.638544e-02 2.308291e+01
## ZNF24 -2.872286e-01 5.483394e-02 -2.323946e-01 1.078281e+02
## ARL16 2.060635e-02 1.766422e-02 3.827057e-02 1.312072e+01
## SLC35G1 2.799901e-03 -1.056649e-03 1.743252e-03 5.646184e-01
## MOSPD3 -4.773765e-02 -8.705377e-03 -5.644303e-02 7.036004e+00
## YKT6 -1.153841e-01 8.729313e-02 -2.809095e-02 8.339764e+01
## THUMPD3 2.874233e-02 -1.897331e-02 9.769029e-03 1.289320e+01
## TMCO6 -3.089528e-02 2.413083e-02 -6.764450e-03 1.591094e+01
## IRF2BP2 3.119434e-01 -2.622704e-01 4.967298e-02 7.997397e+01
## NMT1 -8.720813e-02 8.692686e-02 -2.812739e-04 7.140025e+01
## PEBP1 5.817259e-02 9.688735e-02 1.550599e-01 3.721712e+01
## USP11 1.755015e-03 2.183761e-02 2.359263e-02 9.360879e+00
## SUN2 3.077357e-02 3.817371e-01 4.125107e-01 2.153823e+02
## NSL1 -4.671526e-02 -1.496819e-03 -4.821208e-02 3.197310e+01
## ADAR -1.710899e+00 -7.887059e-01 -2.499605e+00 7.163728e+02
## VILL 2.306317e-02 3.020693e-02 5.327010e-02 1.166877e+01
## LIG1 2.277751e-02 1.516717e-02 3.794467e-02 9.991071e+00
## SIK2 6.780824e-03 1.185501e-02 1.863584e-02 8.054013e+00
## BTN3A2 -2.838934e-03 -5.772808e-01 -5.801197e-01 2.241474e+02
## LTF 1.135568e+00 5.813760e+00 6.949328e+00 5.693231e+02
## DUSP12 1.809357e-02 5.012606e-03 2.310617e-02 1.244491e+01
## RPL32 3.496700e+00 5.773657e-02 3.554437e+00 7.569707e+02
## MRPL51 -1.224325e-01 1.900814e-01 6.764887e-02 5.084693e+01
## VSIG4 1.849658e-01 -4.971134e-01 -3.121476e-01 4.871583e+01
## CAPRIN2 -5.562052e-03 2.291378e-02 1.735172e-02 1.000087e+01
## TNFSF4 -2.375490e-02 -6.143184e-03 -2.989808e-02 7.992977e+00
## DTX1 -9.635510e-04 1.246914e-02 1.150559e-02 2.220793e+00
## PTP4A3 -9.030157e-02 -3.775490e-02 -1.280565e-01 2.358141e+01
## ADO 1.996064e-02 -1.983043e-02 1.302016e-04 1.182793e+01
## RAB5A -2.298203e-01 8.976281e-04 -2.289227e-01 7.146516e+01
## PARP12 4.327894e-01 -5.712961e-01 -1.385067e-01 8.196886e+01
## ZBTB24 1.371587e-02 1.064525e-02 2.436112e-02 1.119125e+01
## SPPL2A -2.783862e-01 1.400037e-01 -1.383824e-01 8.851371e+01
## ABCB11 7.545886e-04 2.369576e-03 3.124165e-03 7.769760e-01
## NOL9 1.986653e-02 2.781919e-03 2.264845e-02 1.045178e+01
## ZNF662 3.398850e-03 5.066474e-04 3.905498e-03 6.017449e-01
## MUTYH 1.022081e-02 1.612598e-02 2.634679e-02 6.164116e+00
## ASXL2 -1.255467e-01 7.422237e-02 -5.132431e-02 3.774574e+01
## TSPAN14 -1.890301e-01 -2.283844e-01 -4.174145e-01 1.698632e+02
## ATP8B3 -5.373337e-03 6.071531e-04 -4.766184e-03 1.436782e+00
## BSCL2 -5.580929e-02 9.906981e-02 4.326051e-02 2.566638e+01
## PTGES -1.487325e-03 2.461339e-02 2.312606e-02 2.712548e+00
## BRD7 1.740100e-01 -1.291167e-01 4.489326e-02 9.699937e+01
## CAMTA2 -8.013842e-02 1.003971e-01 2.025871e-02 4.590435e+01
## SP100 -5.089757e-01 -4.293940e-01 -9.383697e-01 2.643511e+02
## MAGEH1 5.765262e-03 2.153647e-02 2.730173e-02 7.358178e+00
## XPO1 2.092575e-01 -2.745980e-01 -6.534053e-02 1.037991e+02
## HBEGF 1.430989e-01 -1.730719e-01 -2.997305e-02 4.952510e+00
## CDC42EP4 -5.883645e-04 -2.125489e-02 -2.184325e-02 1.018529e+01
## PTPRA -2.820561e-02 -6.088483e-02 -8.909044e-02 6.472976e+01
## RPL41 1.738560e+00 3.013422e+00 4.751982e+00 1.413507e+03
## ERMARD 8.510493e-03 1.281336e-02 2.132385e-02 9.150698e+00
## TPD52 -2.921254e-02 5.834536e-02 2.913283e-02 1.201302e+01
## TMEM131L -1.263150e-01 5.417656e-02 -7.213846e-02 6.142418e+01
## REV3L -5.847483e-02 5.889546e-02 4.206272e-04 1.774182e+01
## ZNF829 5.390842e-03 -1.772721e-03 3.618121e-03 1.669228e+00
## ATXN2 -1.563735e-02 1.016998e-02 -5.467368e-03 9.209699e+00
## PLAU 3.950748e-02 -2.262073e-02 1.688675e-02 4.076520e+00
## GP9 -3.478553e-02 -3.377004e-02 -6.855557e-02 7.177245e+00
## NSD1 -1.947817e-01 1.373859e-01 -5.739580e-02 8.064910e+01
## CR2 1.081930e-02 2.539123e-03 1.335842e-02 2.054244e+00
## FBXL13 -3.435242e-02 5.221317e-02 1.786075e-02 8.770962e+00
## LYRM7 1.467437e-02 8.309860e-03 2.298423e-02 9.533439e+00
## ECE1 -7.457817e-01 -2.668446e-01 -1.012626e+00 3.023087e+02
## PSMD10 -5.874897e-02 2.931888e-02 -2.943009e-02 2.550280e+01
## SMARCD1 -9.611270e-03 3.960922e-02 2.999795e-02 3.854408e+01
## GEN1 -1.050182e-02 1.291569e-02 2.413866e-03 5.313267e+00
## CRIM1 9.388590e-03 -3.822210e-03 5.566380e-03 1.994895e+00
## SYTL4 -7.152008e-03 -8.293582e-03 -1.544559e-02 3.325325e+00
## STAT5B -1.999718e+00 1.003315e+00 -9.964033e-01 5.248774e+02
## DOP1B 1.760071e-02 -5.126969e-02 -3.366897e-02 1.931065e+01
## CD320 -6.039458e-02 5.784692e-02 -2.547659e-03 7.502027e+00
## UGGT2 -2.604970e-03 -2.922032e-03 -5.527002e-03 1.774600e+00
## ERAP1 -1.878548e-01 1.500496e-01 -3.780515e-02 6.179211e+01
## SLC5A3 6.138819e-02 -1.350742e-02 4.788076e-02 1.543358e+01
## VLDLR -1.749253e-02 1.986431e-03 -1.550610e-02 2.520172e+00
## ZNRF2 -5.400782e-02 2.524908e-02 -2.875874e-02 2.146949e+01
## MTRNR2L2 -2.047967e-01 2.231812e+00 2.027016e+00 6.022134e+02
## ZSCAN2 6.550869e-04 1.341847e-02 1.407356e-02 5.631078e+00
## HGD 1.165503e-02 -1.280550e-02 -1.150474e-03 2.868684e+00
## LUC7L 3.969098e-02 1.967856e-02 5.936954e-02 2.263940e+01
## EPS8L1 4.454450e-03 -4.082250e-04 4.046225e-03 6.485640e-01
## RPS27L -1.004762e-01 1.010366e-01 5.603919e-04 3.985472e+01
## PPIE 5.658394e-02 4.011909e-02 9.670303e-02 2.710814e+01
## HRH2 -1.543063e+00 -2.136746e-02 -1.564431e+00 3.395867e+02
## KIAA1614 1.691451e-02 -1.469098e-02 2.223535e-03 4.105178e+00
## IFIT3 4.673851e+00 -7.368233e+00 -2.694381e+00 7.003602e+02
## NEIL2 5.155254e-03 9.800711e-03 1.495596e-02 4.264154e+00
## NBPF11 4.553225e-02 -6.609990e-03 3.892226e-02 1.473116e+01
## CBR4 -1.034500e-02 2.205287e-02 1.170787e-02 1.292734e+01
## SLC25A37 -4.299792e+00 2.117666e+00 -2.182126e+00 9.280696e+02
## USP18 1.086513e-03 -2.304433e-01 -2.293568e-01 1.791235e+01
## BIN1 1.221951e-01 2.958666e-02 1.517818e-01 2.477512e+01
## YWHAE -1.014714e-01 -1.034241e-01 -2.048955e-01 1.415481e+02
## ZBED4 -7.488063e-03 2.273254e-02 1.524448e-02 1.134551e+01
## SESTD1 -1.368899e-02 -7.853032e-02 -9.221932e-02 2.891688e+01
## ANO6 9.547238e-03 -1.613915e-01 -1.518443e-01 5.733702e+01
## SGPP2 -1.839692e-03 1.015309e-02 8.313394e-03 2.810390e+00
## RBM7 5.684118e-02 -1.054095e-01 -4.856833e-02 3.291225e+01
## TNKS -4.227248e-02 3.538870e-02 -6.883780e-03 1.869459e+01
## UQCRB -1.255088e-01 5.466473e-01 4.211384e-01 1.766402e+02
## TPCN2 -5.007530e-02 3.117289e-02 -1.890241e-02 2.339045e+01
## TMCO1 -9.818746e-02 9.164695e-02 -6.540509e-03 6.871845e+01
## STT3A -1.137814e-01 9.264557e-02 -2.113583e-02 4.161521e+01
## SLC25A25 2.270560e-02 7.418346e-03 3.012394e-02 1.216950e+01
## RNF5 1.033342e-02 4.672874e-02 5.706216e-02 3.146471e+01
## ESRRA -5.540439e-02 4.677002e-02 -8.634373e-03 2.287860e+01
## SLC25A29 -1.430302e-02 7.033954e-02 5.603653e-02 1.768666e+01
## HNRNPU 1.571712e-01 -3.615752e-01 -2.044040e-01 2.591398e+02
## NAB2 1.410930e-02 3.988480e-03 1.809778e-02 4.937987e+00
## ZNF345 8.511598e-03 2.224789e-03 1.073639e-02 2.942626e+00
## UBTD2 -1.923645e-02 1.128658e-02 -7.949874e-03 9.102136e+00
## ESYT2 6.124574e-02 8.087764e-02 1.421234e-01 5.671876e+01
## BAHD1 4.132194e-02 2.258691e-03 4.358063e-02 1.815283e+01
## DENND4B -1.389128e-01 3.222456e-02 -1.066883e-01 1.012668e+02
## FMO4 4.244585e-03 -5.331212e-03 -1.086627e-03 1.694777e+00
## SMARCB1 -7.788840e-02 9.239155e-02 1.450315e-02 2.769400e+01
## IFRD2 -2.015715e-03 2.460694e-02 2.259123e-02 5.925424e+00
## CNOT1 -2.843260e-01 7.472803e-02 -2.095980e-01 1.413727e+02
## TSPYL5 3.290137e-03 2.046671e-03 5.336807e-03 1.166819e+00
## TMEM88 -1.768362e-02 -2.586447e-03 -2.027007e-02 4.722608e+00
## ID2 8.237080e-02 -1.667452e-01 -8.437441e-02 8.255624e+01
## LZTS2 1.085913e-02 7.235716e-03 1.809485e-02 4.465167e+00
## METTL6 -1.074521e-02 9.364863e-03 -1.380348e-03 8.967833e+00
## EWSR1 -1.380189e-01 1.516077e-02 -1.228581e-01 1.511758e+02
## POLK -7.192000e-02 1.415611e-02 -5.776389e-02 2.009408e+01
## SMIM26 -9.359645e-02 7.469657e-02 -1.889988e-02 3.768755e+01
## C12orf43 1.910825e-02 -3.297982e-03 1.581027e-02 8.260660e+00
## ZNF260 1.603186e-02 1.327502e-04 1.616461e-02 5.940006e+00
## ZNF136 2.911572e-02 -3.770420e-02 -8.588480e-03 1.346685e+01
## IL18 5.000455e-03 -3.925682e-02 -3.425637e-02 1.293074e+01
## ANKRD22 -1.074361e-01 -3.886833e-01 -4.961194e-01 4.649371e+01
## SCML2 2.859058e-03 -1.437071e-03 1.421987e-03 5.013808e-01
## GNB1 -6.629339e-01 4.431337e-01 -2.198001e-01 3.838275e+02
## PLA2G4A -2.595894e-02 -5.601357e-03 -3.156029e-02 9.582204e+00
## TBXAS1 -7.829875e-01 4.254991e-01 -3.574884e-01 2.171022e+02
## NGDN 2.794697e-02 6.140722e-03 3.408770e-02 1.893817e+01
## ZNF416 6.883700e-03 7.225382e-04 7.606238e-03 2.795505e+00
## ACOT2 4.712162e-03 -1.271043e-02 -7.998268e-03 3.841580e+00
## ZMPSTE24 -1.866342e-01 2.797917e-02 -1.586550e-01 5.759936e+01
## PCCB -1.477881e-02 2.143209e-02 6.653276e-03 1.142493e+01
## BMP1 7.269667e-03 1.806263e-04 7.450293e-03 1.842075e+00
## PF4 8.520817e-02 -5.466917e-01 -4.614835e-01 8.837133e+01
## SKA2 -1.042386e-03 2.459779e-02 2.355541e-02 1.253413e+01
## CDH26 -6.553427e-04 -9.331283e-03 -9.986625e-03 3.032956e+00
## LRRN1 -8.072728e-02 1.445578e-03 -7.928170e-02 1.176293e+01
## CDK6 8.420585e-03 3.218379e-02 4.060438e-02 1.585066e+01
## LRSAM1 -3.853198e-02 1.387854e-02 -2.465344e-02 1.464646e+01
## TRMT5 9.007941e-03 -3.634192e-04 8.644522e-03 4.171954e+00
## HCCS -2.205474e-02 1.432301e-02 -7.731728e-03 1.445416e+01
## PTX3 5.565625e-02 2.636439e-02 8.202065e-02 8.696532e+00
## EOGT 8.101361e-03 3.523807e-03 1.162517e-02 5.719742e+00
## DNLZ -1.160360e-02 1.748703e-02 5.883428e-03 2.137907e+00
## THOC5 -2.651477e-01 1.606873e-01 -1.044604e-01 8.236836e+01
## PRDM1 -1.123302e-01 -2.116046e-02 -1.334907e-01 4.618261e+01
## SAFB2 7.140155e-04 4.157660e-02 4.229062e-02 3.097009e+01
## GMPR2 -3.467804e-01 1.138507e-01 -2.329297e-01 1.202559e+02
## SLC46A1 -8.390847e-03 1.736990e-02 8.979051e-03 4.569777e+00
## MFNG 3.521540e-02 2.075757e-01 2.427911e-01 8.476068e+01
## GPR107 -1.417927e-01 9.886099e-02 -4.293168e-02 5.775534e+01
## MS4A14 2.245718e-02 -3.301293e-02 -1.055575e-02 7.240769e+00
## GPR180 -1.674710e-02 9.322028e-03 -7.425076e-03 5.340497e+00
## DOCK6 5.605665e-03 2.609178e-03 8.214843e-03 8.002483e-01
## JRK -1.291143e-02 2.662376e-02 1.371233e-02 1.052539e+01
## RMND5B -3.845529e-02 3.922068e-02 7.653905e-04 1.969871e+01
## SRRM2 -4.893425e-01 7.295349e-01 2.401923e-01 2.880979e+02
## ZNF486 -1.577244e-03 -8.583864e-02 -8.741588e-02 1.704526e+01
## TECPR2 -4.879264e-01 2.634391e-01 -2.244874e-01 1.240807e+02
## IFT140 2.656603e-03 2.242401e-03 4.899004e-03 1.216554e+00
## ASXL1 3.709231e-02 4.079215e-02 7.788446e-02 3.957847e+01
## INTS5 -1.398050e-02 4.266028e-02 2.867978e-02 1.438611e+01
## SPSB2 2.039598e-02 1.348311e-02 3.387909e-02 5.437133e+00
## B4GALT4 -7.689637e-02 -4.340020e-02 -1.202966e-01 2.418808e+01
## C5orf63 1.895536e-03 4.094469e-03 5.990006e-03 1.387425e+00
## CASP9 -4.238782e-02 1.587149e-02 -2.651633e-02 1.979514e+01
## CBX6 9.352694e-02 -3.750349e-02 5.602345e-02 3.779113e+01
## PLCD1 3.057132e-02 6.666289e-03 3.723761e-02 1.155611e+01
## TMEM214 -7.478145e-02 6.522296e-02 -9.558490e-03 3.033947e+01
## NTNG2 -8.451639e-04 -1.019916e-01 -1.028368e-01 2.500437e+01
## LIN7A -4.378820e-01 -2.103398e-02 -4.589160e-01 1.127228e+02
## CISH 4.941876e-02 7.612608e-02 1.255448e-01 3.373516e+01
## COA5 7.139307e-03 1.166841e-02 1.880772e-02 1.725113e+01
## POLE2 -6.300515e-03 6.643183e-03 3.426680e-04 1.416959e+00
## GANC -2.467122e-02 4.577044e-05 -2.462545e-02 1.304719e+01
## PELI3 2.518056e-04 1.379880e-02 1.405060e-02 4.537970e+00
## SLC9A8 -3.223606e-01 1.382612e-01 -1.840994e-01 7.809568e+01
## CETN2 -3.862658e-02 -1.545749e-03 -4.017233e-02 1.573557e+01
## SSH2 -2.356589e+00 1.416185e+00 -9.404036e-01 5.039462e+02
## CFAP58 -5.637711e-03 -1.057237e-02 -1.621008e-02 3.351875e+00
## SLC31A2 -6.613423e-01 -4.347515e-02 -7.048175e-01 1.204894e+02
## ASTN2 -2.439388e-02 2.406931e-02 -3.245667e-04 6.078699e+00
## AGAP4 3.816080e-02 3.640340e-02 7.456420e-02 2.009121e+01
## SRGAP2 -1.268303e-01 1.648091e-03 -1.251823e-01 3.942572e+01
## SLC14A2 2.752246e-03 -7.460051e-04 2.006241e-03 5.968384e-01
## HAUS1 -1.125886e-02 3.926395e-02 2.800509e-02 1.416143e+01
## LDOC1 3.761159e-03 3.472991e-03 7.234150e-03 1.071736e+00
## ERV3-1-ZNF117 1.492652e-01 5.033629e-03 1.542988e-01 2.735959e+01
## ARG1 -2.516128e+00 1.886995e+00 -6.291328e-01 2.552737e+02
## VMP1 -3.804734e+00 1.303264e+00 -2.501470e+00 9.758864e+02
## ASCC2 5.924032e-03 8.023415e-02 8.615818e-02 3.517404e+01
## CAD -1.040572e-02 2.956110e-02 1.915538e-02 1.200541e+01
## ALOX5AP -1.075709e+00 -3.351437e+00 -4.427146e+00 8.978821e+02
## RCHY1 -9.551883e-02 4.763383e-02 -4.788500e-02 3.129796e+01
## SEC61A1 -3.575648e-01 1.425068e-01 -2.150580e-01 1.429345e+02
## FZD5 -4.261478e-03 -3.988949e-03 -8.250427e-03 1.647727e+00
## PPP2R5B -2.557564e-02 3.200394e-02 6.428307e-03 1.469353e+01
## KIF3C -6.074016e-02 3.923658e-03 -5.681651e-02 1.443555e+01
## KDM2B 3.705511e-02 2.930348e-04 3.734815e-02 1.712390e+01
## PPP4R2 -7.438966e-01 4.432388e-01 -3.006578e-01 1.510288e+02
## ZNF567 7.459894e-03 3.693549e-03 1.115344e-02 3.255721e+00
## PKD2 1.237269e-02 -1.912737e-02 -6.754678e-03 6.841540e+00
## ACP1 2.598224e-02 3.768350e-02 6.366574e-02 3.509216e+01
## PIGP 8.959368e-03 -3.596751e-03 5.362617e-03 3.617579e+00
## ZFYVE28 1.179462e-02 -1.496346e-03 1.029827e-02 2.388811e+00
## FAM32A -1.727794e-01 2.034757e-01 3.069633e-02 1.230006e+02
## KAT5 -4.338871e-02 7.228354e-02 2.889483e-02 3.823578e+01
## DENND5B -2.777901e-02 2.325452e-02 -4.524485e-03 4.222445e+00
## ANAPC15 -9.145518e-02 1.579614e-01 6.650626e-02 3.635041e+01
## PHACTR1 2.604591e-02 -4.939526e-02 -2.334935e-02 3.951869e+00
## ZNF354A -2.234904e-01 1.827083e-01 -4.078205e-02 4.082183e+01
## BIRC5 -3.872894e-02 4.821575e-02 9.486811e-03 6.315856e+00
## PSME3IP1 7.835494e-02 -2.770502e-01 -1.986953e-01 1.269330e+02
## RIDA 5.840804e-03 3.877619e-03 9.718423e-03 4.993942e+00
## ZAP70 2.806321e-01 1.189493e-01 3.995814e-01 5.520149e+01
## CDK11A 8.204013e-02 -6.386899e-03 7.565323e-02 3.797667e+01
## CYB5D2 -2.594059e-02 1.821534e-02 -7.725257e-03 8.321056e+00
## NDUFV2 -9.374451e-02 9.735168e-02 3.607174e-03 5.611109e+01
## IL18R1 -1.874372e+00 -2.040169e-02 -1.894773e+00 2.124126e+02
## ZDHHC7 -1.891861e-01 1.438530e-01 -4.533313e-02 9.485015e+01
## CREB3 -5.023022e-02 -1.744610e-03 -5.197483e-02 1.724143e+01
## EFNA1 -2.181874e-02 -2.913406e-03 -2.473214e-02 2.307567e+00
## SMCR8 -1.635483e-01 -6.427134e-02 -2.278196e-01 7.548509e+01
## EID1 1.107962e-01 -7.140110e-02 3.939507e-02 6.863975e+01
## ROM1 -1.956511e-02 1.198443e-02 -7.580681e-03 3.040250e+00
## PIP4K2A -1.570281e-01 1.477941e-01 -9.234012e-03 1.349147e+02
## FAM217B -1.207750e-01 -8.486304e-03 -1.292613e-01 3.744320e+01
## TMEM260 -8.817638e-02 -5.934767e-02 -1.475240e-01 3.780507e+01
## TOR4A -7.689750e-02 6.341917e-03 -7.055559e-02 2.554924e+01
## ACAD11 1.539738e-02 8.382326e-03 2.377970e-02 7.709358e+00
## ZNF546 3.431588e-03 3.174777e-03 6.606365e-03 2.399008e+00
## GDAP2 -5.036439e-02 1.262015e-02 -3.774424e-02 2.100165e+01
## PYCR3 -1.486147e-03 9.552910e-03 8.066763e-03 1.437874e+00
## PPM1G 5.180380e-02 4.340344e-02 9.520724e-02 5.501452e+01
## BEND5 2.109193e-03 2.617817e-03 4.727010e-03 8.350352e-01
## PMM2 8.820130e-02 -3.655740e-02 5.164390e-02 2.337524e+01
## VASP -2.503481e+00 3.986405e-01 -2.104841e+00 8.106965e+02
## STX11 -4.818226e-01 -1.570751e-01 -6.388977e-01 1.576517e+02
## NPIPB12 2.057451e-03 5.368483e-02 5.574228e-02 1.971645e+01
## CYB561 5.237588e-02 -4.858942e-02 3.786458e-03 1.255152e+01
## RILP -1.540829e-02 4.536113e-02 2.995284e-02 1.160804e+01
## TP73 -4.547068e-03 3.193854e-03 -1.353214e-03 6.492724e-01
## DLG4 2.687664e-02 -4.084868e-03 2.279177e-02 9.621782e+00
## BUB3 6.765584e-02 1.652457e-02 8.418040e-02 5.218840e+01
## ZNF383 4.345346e-03 8.348653e-03 1.269400e-02 7.555948e+00
## NFATC3 7.490734e-02 9.188431e-02 1.667917e-01 9.439203e+01
## ZNF141 2.026282e-02 5.913172e-03 2.617599e-02 1.303954e+01
## FAM53C -9.786624e-01 6.740804e-01 -3.045819e-01 2.419707e+02
## ABCB10 -1.072062e-02 5.067149e-02 3.995088e-02 2.075458e+01
## TOMM7 5.582596e-01 1.694459e-01 7.277055e-01 1.460260e+02
## THSD1 7.024642e-03 -2.863696e-03 4.160946e-03 1.486633e+00
## CAPN2 1.062676e-01 -3.609506e-01 -2.546830e-01 1.490575e+02
## KRAS -2.580622e-01 2.293115e-02 -2.351311e-01 8.017462e+01
## DTNBP1 1.611424e-02 -6.921868e-02 -5.310444e-02 2.669733e+01
## GET1 -9.000693e-03 -3.175500e-02 -4.075570e-02 1.590482e+01
## TLR1 -1.023700e+00 3.910654e-01 -6.326343e-01 2.236310e+02
## WBP11 7.724532e-02 -4.742308e-02 2.982224e-02 3.381039e+01
## SRSF6 1.956054e-01 -1.209623e-02 1.835092e-01 1.176520e+02
## LAMTOR5 -4.029962e-01 9.968059e-02 -3.033156e-01 9.674124e+01
## PINX1 1.055319e-02 6.672511e-03 1.722570e-02 4.533616e+00
## SSR4 -4.468714e-01 3.049705e-01 -1.419009e-01 6.891079e+01
## PCDH12 4.933694e-03 1.115489e-03 6.049182e-03 1.708182e+00
## SAMD10 1.313449e-02 1.747101e-03 1.488160e-02 2.040856e+00
## DYRK1B -7.684677e-04 1.627398e-02 1.550551e-02 6.251720e+00
## TCAIM -3.629759e-02 9.392238e-03 -2.690535e-02 1.592842e+01
## COPS8 1.230768e-02 -3.297567e-02 -2.066799e-02 1.914506e+01
## FKBP1B 2.155732e-03 1.187747e-02 1.403321e-02 3.461131e+00
## ZBTB41 4.713572e-03 1.412722e-02 1.884079e-02 6.390101e+00
## UTP14A 2.507035e-02 -1.389772e-02 1.117263e-02 1.178613e+01
## ZNF438 -1.987508e-01 -1.252242e-01 -3.239750e-01 6.703109e+01
## ZNF304 6.290292e-03 8.708575e-03 1.499887e-02 3.789967e+00
## MARCKS 1.776102e-01 -1.136963e+00 -9.593523e-01 3.240850e+02
## MON1B -7.870947e-02 -2.470912e-02 -1.034186e-01 6.298808e+01
## REEP2 -1.203012e-03 3.590547e-03 2.387536e-03 4.894239e-01
## ST6GAL1 -7.214002e-02 2.295337e-01 1.573936e-01 7.503714e+01
## DGAT2 -2.069138e+00 8.475540e-01 -1.221584e+00 4.032274e+02
## TMEM63A 1.072010e-01 4.777250e-02 1.549735e-01 5.938477e+01
## MRTFB 6.357698e-03 4.338590e-03 1.069629e-02 2.691212e+00
## LRRC70 -1.309709e-01 4.227797e-02 -8.869295e-02 1.602547e+01
## RGS10 1.006425e-01 -1.613857e-01 -6.074323e-02 6.329345e+01
## ZNF66 -5.131909e-02 3.161623e-02 -1.970286e-02 1.034215e+01
## QSOX1 -6.525439e-01 2.663297e-01 -3.862141e-01 1.285050e+02
## CYB5R1 -1.817721e-01 1.382800e-01 -4.349210e-02 5.285440e+01
## HCFC2 -7.209163e-04 1.784806e-02 1.712714e-02 8.464388e+00
## UBE2W -2.980491e-01 7.217196e-04 -2.973273e-01 9.016506e+01
## DDX1 2.599844e-03 4.547316e-02 4.807301e-02 3.468710e+01
## AFG3L2 2.654427e-02 9.699181e-03 3.624345e-02 1.893867e+01
## ZBTB20 -2.293120e-02 1.608418e-02 -6.847011e-03 6.400153e+00
## HEBP2 -4.852170e-01 1.314248e-01 -3.537921e-01 1.541473e+02
## ZNF285 4.013589e-03 -9.325542e-04 3.081035e-03 7.882758e-01
## SNAP47 7.483352e-04 1.564615e-02 1.639448e-02 7.187783e+00
## MINPP1 -2.548375e-03 3.078202e-02 2.823364e-02 5.956998e+00
## LSM1 -4.061702e-02 6.314626e-03 -3.430240e-02 2.637897e+01
## GNAO1 1.015761e-03 -5.249493e-03 -4.233733e-03 1.256642e+00
## SPATA6 -4.711180e-02 -1.781623e-02 -6.492803e-02 8.335812e+00
## MFN1 -9.575447e-02 1.952742e-02 -7.622705e-02 4.363003e+01
## PPP1R3D -1.876799e-01 -6.981117e-02 -2.574910e-01 5.690041e+01
## STX6 -6.762180e-02 -4.443451e-02 -1.120563e-01 5.397261e+01
## RAD54B 4.940263e-03 -3.664888e-03 1.275375e-03 1.374293e+00
## UBE3B -5.333717e-02 2.296415e-02 -3.037302e-02 2.854776e+01
## DYNC1LI1 -2.349511e-01 8.902278e-02 -1.459283e-01 9.279973e+01
## CABP4 1.279251e-03 2.232869e-03 3.512120e-03 8.406373e-01
## GNS -6.973083e-01 -6.660928e-02 -7.639176e-01 2.696636e+02
## ERO1A -4.219950e-01 2.272310e-01 -1.947639e-01 1.202929e+02
## DYNLT1 1.955593e-01 -5.436878e-01 -3.481285e-01 1.472581e+02
## RRM1 4.694131e-02 -1.659921e-02 3.034211e-02 1.716788e+01
## MTMR11 4.995528e-02 -3.597200e-02 1.398328e-02 1.378616e+01
## UMPS 1.219545e-02 1.066098e-02 2.285642e-02 1.027913e+01
## OTUD3 4.767113e-03 8.784149e-03 1.355126e-02 4.521405e+00
## PGM3 -1.934090e-02 1.879512e-02 -5.457755e-04 9.785178e+00
## GCH1 -1.657666e-02 -2.479629e-01 -2.645395e-01 5.575928e+01
## SLC39A8 -1.240208e-01 6.117407e-02 -6.284669e-02 1.978218e+01
## BNIP3L -4.082896e-01 6.088007e-01 2.005111e-01 1.992015e+02
## FLII -3.183274e-01 1.892825e-01 -1.290448e-01 1.642210e+02
## ZNF630 6.242625e-03 9.821239e-03 1.606386e-02 3.193837e+00
## NFE2L3 1.639124e-02 1.898936e-03 1.829018e-02 7.010518e+00
## CLK4 -2.991655e-01 1.199489e-01 -1.792166e-01 7.306674e+01
## RPS6KA1 -1.470853e+00 5.066444e-01 -9.642085e-01 4.504943e+02
## SLC25A28 -5.887446e-02 -8.089930e-02 -1.397738e-01 4.201629e+01
## REL -3.164112e-01 1.567624e-02 -3.007349e-01 1.015583e+02
## ADGRE1 -5.969248e-01 2.483515e-01 -3.485733e-01 8.087104e+01
## JUP -4.841482e-02 -1.497663e-01 -1.981811e-01 2.121444e+01
## IDUA 1.918111e-02 -5.911431e-03 1.326968e-02 2.836378e+00
## BCL2 5.488471e-02 7.171600e-02 1.266007e-01 2.442213e+01
## CCDC14 3.562305e-02 1.481753e-03 3.710480e-02 1.230481e+01
## HSP90AA1 -3.727786e-01 -4.481360e-01 -8.209146e-01 4.139445e+02
## TBC1D31 1.202638e-02 2.521568e-03 1.454795e-02 4.638972e+00
## LIN7C 2.220285e-02 -1.997780e-02 2.225050e-03 1.433878e+01
## CEP72 3.446291e-03 -1.652019e-03 1.794273e-03 6.849279e-01
## MCPH1 2.833499e-02 -1.480213e-02 1.353286e-02 1.161281e+01
## PTGER4 -1.050725e-01 4.963467e-02 -5.543784e-02 3.559041e+01
## LACTB -1.734290e-01 -2.049705e-02 -1.939260e-01 5.334347e+01
## IL15 -8.202011e-03 -2.952922e-02 -3.773123e-02 9.951542e+00
## C3orf35 1.745873e-03 6.384656e-04 2.384339e-03 3.814935e-01
## HACD4 -1.752232e-01 -1.682641e-01 -3.434874e-01 1.380235e+02
## MXD4 2.263880e-02 6.526703e-02 8.790583e-02 2.061608e+01
## WIPI1 -1.640700e-01 1.171939e-01 -4.687609e-02 3.608706e+01
## BAMBI -7.668840e-03 -3.000656e-03 -1.066950e-02 1.766533e+00
## ANKRD36B 1.341566e-02 -3.004225e-03 1.041144e-02 3.478468e+00
## ATP6V0A1 7.311882e-02 -1.093423e-01 -3.622353e-02 5.292454e+01
## STAT2 -6.326461e-02 -9.946748e-01 -1.057939e+00 2.076732e+02
## CA2 -8.528467e-02 2.084846e-01 1.231999e-01 2.670615e+01
## MPC2 -6.821513e-02 9.668102e-02 2.846589e-02 2.697742e+01
## DZIP1L -1.002288e-02 3.793886e-02 2.791598e-02 2.544132e+00
## CD70 -6.693743e-03 1.012572e-03 -5.681170e-03 2.189937e+00
## SETD1B -3.033803e-02 7.295133e-02 4.261330e-02 3.740503e+01
## SPATA5 6.129829e-03 -1.893785e-03 4.236044e-03 2.402000e+00
## SH3GLB2 1.849007e-02 8.899883e-02 1.074889e-01 2.797316e+01
## SPPL2B 1.016006e-02 1.706024e-02 2.722030e-02 5.348899e+00
## NOMO1 -8.241623e-02 4.756330e-02 -3.485293e-02 2.912764e+01
## PLPP3 1.713400e-02 -6.412706e-03 1.072129e-02 3.012651e+00
## SEC23B -8.763461e-02 8.681547e-02 -8.191419e-04 5.015761e+01
## MYD88 -1.603781e+00 3.705325e-01 -1.233249e+00 5.076538e+02
## ABHD11 -2.977902e-02 1.644791e-02 -1.333111e-02 8.280971e+00
## SSR1 -1.775634e-01 -1.674367e-02 -1.943071e-01 1.405781e+02
## GLIPR2 -1.013641e+00 -1.659408e-01 -1.179582e+00 4.800365e+02
## SYS1 5.857520e-02 -4.593906e-02 1.263615e-02 3.373080e+01
## FAM221A 3.125993e-03 -1.007262e-03 2.118730e-03 1.028464e+00
## NDST1 -1.988173e-01 -2.420366e-03 -2.012377e-01 7.399382e+01
## TMEM97 -3.844125e-03 6.810957e-03 2.966832e-03 1.949132e+00
## IGFBP4 1.715514e-02 7.344133e-03 2.449928e-02 2.835312e+00
## PLPP6 1.822449e-02 -1.240409e-02 5.820405e-03 7.500052e+00
## IGFBP7 -2.472908e-03 -5.213750e-02 -5.461041e-02 1.684834e+01
## ARHGAP31 -3.321953e-02 2.414816e-03 -3.080471e-02 1.066686e+01
## TUBG2 6.970200e-03 -7.951765e-03 -9.815651e-04 1.934798e+00
## RAB4A 1.250944e-02 2.337182e-02 3.588125e-02 2.103755e+01
## PTEN -1.407407e+00 -1.268176e+00 -2.675583e+00 6.940968e+02
## SLC19A2 3.000331e-02 -2.804551e-02 1.957805e-03 5.114380e+00
## SLC3A2 4.173870e-01 -2.037423e-01 2.136447e-01 6.262653e+01
## LMAN2 -4.309077e-01 2.485584e-01 -1.823492e-01 1.254091e+02
## DCAF12 -2.663659e-01 2.346159e-01 -3.175003e-02 8.944181e+01
## HARS1 2.179079e-02 2.315601e-02 4.494681e-02 2.687007e+01
## MYL5 -2.160816e-03 1.225342e-02 1.009260e-02 2.187574e+00
## TBC1D14 -6.925343e-01 5.832564e-01 -1.092779e-01 1.942912e+02
## RPL39 2.296483e+00 1.411318e+00 3.707802e+00 6.796865e+02
## MTIF3 -9.808634e-02 8.179784e-02 -1.628850e-02 4.236750e+01
## CCDC66 2.074056e-02 8.619063e-03 2.935962e-02 9.714091e+00
## KCNIP2 4.521111e-03 5.738573e-04 5.094969e-03 1.316227e+00
## SHCBP1 -3.201588e-02 2.287637e-02 -9.139509e-03 6.224003e+00
## SELENON 5.538713e-02 -7.947150e-02 -2.408438e-02 2.696512e+01
## TPM3 -1.248051e+00 -9.899862e-02 -1.347049e+00 6.903275e+02
## DDX47 3.691661e-02 2.806994e-04 3.719731e-02 1.975491e+01
## TRAPPC4 1.479646e-02 6.507398e-02 7.987045e-02 3.443879e+01
## TMBIM6 -1.868965e+00 1.419433e+00 -4.495329e-01 9.061787e+02
## PAGR1 -4.326071e-02 5.190567e-02 8.644959e-03 2.312246e+01
## PGAP1 -3.624587e-03 -9.849073e-03 -1.347366e-02 2.596372e+00
## MYOF -5.474056e-02 -4.109337e-02 -9.583394e-02 1.557608e+01
## MAP3K14 3.155670e-02 3.337309e-02 6.492979e-02 1.994426e+01
## C17orf80 -6.234850e-03 2.074057e-02 1.450572e-02 1.375346e+01
## MAP2K6 -4.938309e-01 1.408271e-01 -3.530038e-01 8.143665e+01
## CRACR2A -1.521433e-02 6.347905e-03 -8.866424e-03 3.480265e+00
## FKBP3 3.816375e-02 1.697808e-02 5.514183e-02 2.626388e+01
## ZNF514 -1.024204e-02 1.855801e-02 8.315977e-03 5.306766e+00
## IGHG1 -1.260783e+01 3.276629e+00 -9.331203e+00 1.138835e+03
## AGO4 -1.114752e+00 4.616780e-01 -6.530740e-01 2.680179e+02
## TAGLN2 -6.419253e+00 4.220159e+00 -2.199094e+00 1.800620e+03
## TTLL5 1.332073e-03 -9.931544e-03 -8.599472e-03 5.402496e+00
## TMEM183B -5.726183e-02 4.732993e-02 -9.931900e-03 1.959930e+01
## NHSL2 -9.618942e-02 8.823221e-02 -7.957207e-03 2.347604e+01
## GLG1 -1.047613e-01 1.136886e-01 8.927299e-03 9.594669e+01
## IL27RA 1.162819e-01 -6.468104e-02 5.160084e-02 4.168119e+01
## THAP9 4.742572e-03 6.712678e-04 5.413840e-03 2.111199e+00
## TRUB1 8.783339e-03 7.709926e-03 1.649327e-02 4.664349e+00
## TM7SF2 4.522710e-03 9.414736e-03 1.393745e-02 2.276657e+00
## ANKRD54 -5.375762e-03 1.922081e-02 1.384504e-02 8.073713e+00
## CARD11 4.180840e-02 3.468730e-02 7.649570e-02 1.707182e+01
## MSANTD2 -8.326328e-04 1.005554e-02 9.222904e-03 3.371084e+00
## FAM20B 2.413072e-02 9.109715e-03 3.324044e-02 2.014781e+01
## PPP3CC 4.775789e-02 -4.654343e-03 4.310355e-02 1.723384e+01
## FBXL4 -5.572590e-02 1.328552e-02 -4.244038e-02 1.877315e+01
## MIIP -1.174031e-01 1.350822e-01 1.767906e-02 3.057718e+01
## FCGR2C 1.175844e-01 5.494497e-02 1.725294e-01 3.158860e+01
## ARF6 -1.579129e-02 -8.258358e-02 -9.837487e-02 1.170238e+02
## RNF175 -6.215286e-02 2.077725e-03 -6.007513e-02 1.368163e+01
## SUPT7L 2.758761e-02 1.911870e-02 4.670632e-02 2.676678e+01
## DNAJC19 8.408834e-03 1.284478e-02 2.125362e-02 8.439006e+00
## COX6C -3.323713e-02 1.724204e-01 1.391832e-01 5.867955e+01
## GALK2 -2.246725e-02 7.039022e-03 -1.542823e-02 1.196634e+01
## NCOR1 -1.814383e-01 1.123024e-01 -6.913589e-02 9.055509e+01
## VPS35 -1.848091e-01 -4.635767e-02 -2.311667e-01 8.808202e+01
## RALGPS1 -1.140122e-02 1.104461e-02 -3.566135e-04 5.439197e+00
## C16orf70 -2.543432e-02 5.283828e-02 2.740396e-02 2.730077e+01
## MOSPD2 -3.354115e-01 3.217375e-01 -1.367396e-02 9.981749e+01
## USP15 -2.835687e+00 1.408869e+00 -1.426818e+00 6.551776e+02
## THUMPD1 -8.505940e-03 6.021865e-02 5.171271e-02 3.065725e+01
## CYP4F12 1.467443e-02 -2.269353e-03 1.240508e-02 1.958653e+00
## RPL35A 1.042546e+00 4.063533e-01 1.448900e+00 3.597403e+02
## KCNA2 -4.870308e-03 3.576317e-03 -1.293991e-03 8.876496e-01
## TWF2 -3.284435e-01 3.288111e-01 3.675597e-04 1.005644e+02
## GTF2F2 -5.485030e-02 1.379071e-02 -4.105958e-02 1.956746e+01
## MS4A4E -8.282092e-04 -4.538992e-03 -5.367201e-03 1.432424e+00
## GRB2 -1.309693e+00 5.674759e-01 -7.422175e-01 5.379725e+02
## PDE6A -2.567638e-03 -1.931194e-03 -4.498833e-03 1.423343e+00
## RAB8A 9.267232e-03 -2.448822e-01 -2.356150e-01 1.255894e+02
## AMER1 -6.722544e-03 9.725065e-03 3.002521e-03 2.580349e+00
## PYGL -3.647724e+00 2.777755e+00 -8.699684e-01 8.122474e+02
## SNX9 3.617801e-02 -2.486979e-02 1.130822e-02 9.558587e+00
## RPF2 3.307845e-03 1.251833e-02 1.582617e-02 7.896101e+00
## ZCCHC3 -3.099883e-02 2.211013e-02 -8.888698e-03 2.174847e+01
## AGK 1.765601e-02 1.986396e-02 3.751997e-02 1.185189e+01
## ARFIP2 -4.577281e-02 5.489749e-02 9.124680e-03 2.437996e+01
## GIPR -1.234469e-02 7.483394e-03 -4.861299e-03 2.088557e+00
## RCBTB2 -2.607132e-01 1.726232e-01 -8.808996e-02 8.554465e+01
## MED8 -4.166128e-02 -1.593742e-02 -5.759870e-02 3.927789e+01
## ZNF320 1.563820e-02 -7.579919e-04 1.488021e-02 6.145770e+00
## NOB1 3.308282e-02 -4.177773e-03 2.890505e-02 1.124976e+01
## SEPTIN6 2.129887e-01 -7.164663e-02 1.413421e-01 9.149430e+01
## CEP350 -2.175532e-01 8.351018e-02 -1.340431e-01 6.702272e+01
## NDUFAF4 1.506500e-03 1.450131e-02 1.600781e-02 5.986745e+00
## RIN3 -4.255140e-01 -4.528215e-02 -4.707962e-01 1.458163e+02
## C6orf89 -1.453233e-01 1.892774e-02 -1.263955e-01 9.686296e+01
## ZNF429 -1.991161e-01 2.448235e-02 -1.746337e-01 3.613557e+01
## SYNRG -5.780720e-02 1.065802e-01 4.877297e-02 4.828859e+01
## POMGNT1 3.625072e-02 1.077043e-03 3.732777e-02 1.280208e+01
## EXPH5 3.520112e-03 -1.170849e-03 2.349263e-03 1.090908e+00
## GMIP -4.583335e-01 1.494373e-01 -3.088962e-01 1.849122e+02
## ASPH -7.601475e-01 -1.107307e-02 -7.712205e-01 1.125139e+02
## TMEM64 -1.342225e-02 2.122960e-02 7.807350e-03 1.042728e+01
## ITFG1 -7.889346e-02 3.071059e-03 -7.582240e-02 3.305206e+01
## HNRNPH2 -4.291891e-01 -2.244551e-01 -6.536442e-01 1.436268e+02
## CCNB2 -1.975118e-02 2.997068e-02 1.021949e-02 4.519676e+00
## ZXDB 1.152358e-02 3.705677e-03 1.522925e-02 3.949178e+00
## NDUFS4 -2.226764e-02 5.076762e-02 2.849999e-02 1.747436e+01
## NME1 -7.520332e-02 8.453312e-02 9.329792e-03 1.864886e+01
## KMT2D -3.488771e-01 1.964602e-01 -1.524170e-01 1.069567e+02
## IFRD1 3.763143e-01 -6.710529e-01 -2.947386e-01 1.916442e+02
## RPL19 2.329953e+00 9.154555e-01 3.245409e+00 7.975828e+02
## TIGD1 9.545652e-03 -3.004065e-03 6.541587e-03 4.810620e+00
## CAPZA2 -1.280218e+00 1.909918e-01 -1.089226e+00 3.873369e+02
## MS4A4A 2.204892e-02 -2.803460e-01 -2.582970e-01 2.717041e+01
## DPP8 -1.262908e-01 4.987922e-02 -7.641156e-02 4.744703e+01
## LIMA1 1.962189e-02 -2.762674e-03 1.685922e-02 5.545627e+00
## ITPRID2 -4.456020e-01 -1.137422e-01 -5.593442e-01 1.381463e+02
## GRK3 -9.449451e-02 8.548172e-02 -9.012794e-03 4.328277e+01
## LTK 5.212931e-03 1.962130e-02 2.483423e-02 3.393492e+00
## USPL1 8.052920e-02 -1.091118e-01 -2.858259e-02 2.121964e+01
## MRPS9 2.142030e-02 5.971165e-03 2.739146e-02 1.051346e+01
## DHX8 -3.247859e-02 -8.281061e-02 -1.152892e-01 6.633369e+01
## TMEM70 -6.045921e-02 6.115804e-02 6.988285e-04 2.562620e+01
## PLSCR3 1.087184e-01 1.360039e-03 1.100784e-01 2.927789e+01
## ABCF2 3.298855e-02 -6.540555e-03 2.644799e-02 1.561245e+01
## UEVLD -3.021804e-02 2.046172e-03 -2.817187e-02 1.384850e+01
## CCL4L2 3.489375e-02 7.091364e-02 1.058074e-01 8.486609e+00
## MYLK3 -9.254052e-04 -4.558261e-03 -5.483666e-03 1.032193e+00
## DUSP22 -8.302255e-02 -6.682723e-02 -1.498498e-01 8.623116e+01
## SEC61G -1.010046e-01 5.566492e-02 -4.533968e-02 2.654934e+01
## MTHFS -3.081831e-01 2.044940e-01 -1.036891e-01 7.350149e+01
## S100A6 -3.877419e+00 2.867210e+00 -1.010209e+00 1.118226e+03
## ACVRL1 -3.653878e-03 -8.301239e-03 -1.195512e-02 2.229447e+00
## NET1 -1.597714e-02 -1.742547e-02 -3.340261e-02 8.979555e+00
## HLCS 1.325182e-02 -9.984609e-04 1.225336e-02 4.323501e+00
## ECHDC3 -8.585181e-02 -9.088432e-02 -1.767361e-01 1.930725e+01
## TCTA -8.894136e-02 4.286851e-02 -4.607284e-02 4.359497e+01
## SLC4A7 2.741250e-02 1.675021e-02 4.416271e-02 9.586608e+00
## FKBP2 -1.043638e-01 7.778084e-02 -2.658298e-02 1.840962e+01
## TDRD3 1.399074e-02 3.516463e-05 1.402590e-02 6.933228e+00
## CEP104 -1.844869e-02 2.022541e-02 1.776723e-03 1.183220e+01
## SGMS1 -5.300637e-02 -1.539203e-02 -6.839840e-02 2.585904e+01
## STAM2 -1.025494e-01 -9.721463e-03 -1.122708e-01 4.149427e+01
## LCORL -1.440001e-02 9.326163e-04 -1.346739e-02 6.693662e+00
## TMEM50B 3.215562e-02 1.439127e-02 4.654689e-02 2.417034e+01
## DNASE1 8.750859e-03 -9.915986e-03 -1.165127e-03 4.287798e+00
## RNF7 -7.429656e-02 1.591530e-02 -5.838126e-02 4.031531e+01
## TM9SF4 1.085382e-02 -1.147205e-01 -1.038667e-01 6.246641e+01
## MRPS18C -4.742434e-02 7.394404e-02 2.651970e-02 2.917642e+01
## BMS1 3.372208e-02 1.323043e-02 4.695251e-02 2.169871e+01
## MGAT5 4.303463e-02 4.138410e-02 8.441872e-02 4.416082e+01
## BRD1 5.300361e-04 1.949681e-02 2.002685e-02 1.482579e+01
## KLRB1 1.611348e-01 9.608221e-02 2.572170e-01 4.120303e+01
## HTRA2 -1.004703e-01 1.676776e-02 -8.370253e-02 4.131093e+01
## KDM1B -1.139244e-01 -2.821181e-02 -1.421362e-01 4.592843e+01
## PPT1 -2.015693e+00 4.910447e-01 -1.524649e+00 5.965717e+02
## NR1H3 -1.306717e-04 1.244032e-02 1.230965e-02 3.587953e+00
## FLOT2 -4.403472e+00 3.708483e-01 -4.032623e+00 9.928826e+02
## ZNF275 7.060015e-04 1.731817e-02 1.802418e-02 6.549024e+00
## UBE4A -1.802584e-01 1.014123e-01 -7.884610e-02 6.951969e+01
## SERINC1 -1.326418e+00 3.029576e-01 -1.023461e+00 3.567440e+02
## FGF11 -2.306313e-03 -5.580016e-03 -7.886330e-03 2.107552e+00
## TNIK 7.902446e-04 -3.844871e-02 -3.765846e-02 1.449295e+01
## ZNF274 6.891122e-02 -3.667344e-02 3.223778e-02 2.829523e+01
## ATG2A 1.460803e-01 -1.524614e-01 -6.381162e-03 2.679970e+01
## XRCC4 -6.962560e-02 -5.603480e-03 -7.522908e-02 2.243211e+01
## ZNF836 1.026047e-02 4.195057e-03 1.445553e-02 7.651357e+00
## ACYP1 4.882093e-03 5.487632e-03 1.036972e-02 2.947416e+00
## SNAPC3 -3.599802e-02 2.006131e-02 -1.593671e-02 1.709855e+01
## JAK3 -1.416296e+00 3.064308e-01 -1.109865e+00 3.681517e+02
## TMED9 -3.820562e-01 2.685551e-01 -1.135011e-01 1.210215e+02
## CEP68 -2.053944e-02 2.320273e-02 2.663289e-03 1.136972e+01
## ELF1 -5.263519e-01 -1.423591e-01 -6.687109e-01 1.895308e+02
## WDTC1 -2.697525e-01 1.378770e-01 -1.318754e-01 1.135092e+02
## GPT2 -6.571045e-03 -2.249879e-03 -8.820924e-03 1.883708e+00
## SMS 1.409767e-02 -7.481433e-02 -6.071665e-02 4.362716e+01
## HMGN4 -2.175718e-01 -1.285512e-02 -2.304269e-01 1.096389e+02
## RPS20 3.072080e+00 2.781086e-01 3.350189e+00 6.199251e+02
## ZNF25 -2.647850e-02 1.928197e-03 -2.455030e-02 1.137070e+01
## TRAPPC2 9.203392e-03 -2.015503e-02 -1.095164e-02 1.772602e+01
## WDR12 7.167382e-03 8.118928e-03 1.528631e-02 9.028192e+00
## STYX 2.898655e-02 7.606244e-03 3.659279e-02 2.483338e+01
## RAPGEF2 -1.901587e-01 2.569633e-02 -1.644624e-01 5.571680e+01
## CFAP97 2.409141e-02 1.444017e-02 3.853158e-02 9.725363e+00
## LARP1 -1.186007e-01 1.661167e-01 4.751600e-02 7.621258e+01
## MTAP 1.305554e-02 2.927243e-03 1.598278e-02 6.889706e+00
## AEBP2 2.045738e-02 6.947895e-03 2.740528e-02 1.282738e+01
## CIAO2A -8.221174e-02 5.568908e-02 -2.652266e-02 4.588903e+01
## ANAPC7 2.418192e-02 -2.465980e-02 -4.778796e-04 2.897211e+01
## PLCB1 5.348263e-03 1.090714e-02 1.625541e-02 3.225866e+00
## PFKFB3 -9.363184e-01 -2.254321e-01 -1.161750e+00 1.718171e+02
## NDFIP2 2.730993e-03 4.460899e-03 7.191893e-03 1.610832e+00
## EEF1AKMT2 8.143981e-03 7.399795e-03 1.554378e-02 6.558639e+00
## COBLL1 -1.041169e-02 1.849939e-02 8.087704e-03 3.479418e+00
## ILF3 2.218859e-01 8.062584e-03 2.299485e-01 9.140860e+01
## TIMM9 2.922279e-02 -7.166525e-03 2.205627e-02 8.627813e+00
## MAGOHB 8.398517e-03 3.905036e-03 1.230355e-02 4.712720e+00
## AMFR -4.570501e-02 8.317994e-02 3.747493e-02 4.960672e+01
## CASP7 2.182599e-02 -6.323549e-02 -4.140950e-02 1.821751e+01
## PSAP -3.276489e+00 -1.009217e+00 -4.285705e+00 2.632804e+03
## LY6G5B 2.314714e-02 -1.743802e-02 5.709125e-03 6.080596e+00
## RAI1 6.387491e-03 9.194537e-04 7.306945e-03 2.227215e+00
## ALG6 -3.005258e-02 1.333287e-02 -1.671971e-02 1.816620e+01
## PCED1B 7.735847e-02 -6.770215e-03 7.058826e-02 1.421719e+01
## KCNJ2 -4.102658e-01 -3.370081e-01 -7.472739e-01 1.333881e+02
## H2BC21 3.909607e-02 -2.886211e-01 -2.495250e-01 9.096919e+01
## UQCC1 1.876757e-03 1.669003e-02 1.856679e-02 9.129753e+00
## CD300C -6.825305e-03 -5.663080e-02 -6.345610e-02 1.878104e+01
## TMEM209 2.286941e-02 -9.452695e-03 1.341671e-02 1.012231e+01
## TNFSF10 1.079107e+00 -2.597472e+00 -1.518365e+00 6.578251e+02
## PHACTR2 -6.705074e-02 -1.180247e-02 -7.885321e-02 1.961838e+01
## CLMN -2.372440e-01 9.388264e-02 -1.433614e-01 5.208299e+01
## B4GALNT2 -2.660248e-02 1.040356e-02 -1.619892e-02 5.062191e+00
## METTL17 4.633676e-02 2.712977e-03 4.904974e-02 2.443647e+01
## UBXN2B -6.779392e-01 7.632700e-02 -6.016122e-01 1.709518e+02
## WEE1 1.455168e-02 -5.168422e-03 9.383256e-03 4.494965e+00
## STARD10 8.756643e-02 2.389196e-02 1.114584e-01 2.520727e+01
## RPS10 2.234161e+00 7.822375e-01 3.016398e+00 5.866406e+02
## ZNF658 -3.014792e-02 -7.455011e-03 -3.760293e-02 6.207233e+00
## ZNF230 -2.572072e-02 -9.570755e-02 -1.214283e-01 3.512313e+01
## TBCE 1.092479e-02 1.380040e-03 1.230483e-02 9.791228e+00
## GORASP1 -4.424495e-02 -1.257218e-02 -5.681713e-02 3.539305e+01
## ELMO2 -2.814574e-01 -8.069423e-02 -3.621517e-01 9.259675e+01
## CCPG1 -1.393090e+00 4.716420e-01 -9.214481e-01 3.182178e+02
## UTS2R -2.182119e-01 5.912270e-02 -1.590892e-01 6.441711e+01
## OAS1 1.356335e+00 -2.151164e+00 -7.948299e-01 2.445976e+02
## MAP3K3 -5.293351e-01 1.642157e-01 -3.651194e-01 1.808802e+02
## ZNF511 -5.887279e-03 3.618135e-02 3.029407e-02 1.132002e+01
## UBA5 -8.648042e-04 2.749381e-02 2.662900e-02 1.449998e+01
## C11orf54 -1.090723e-01 2.660432e-02 -8.246795e-02 3.977502e+01
## ARSK 2.050953e-03 3.125652e-03 5.176605e-03 1.587801e+00
## GALNT1 -1.843572e-01 2.026729e-02 -1.640899e-01 6.696632e+01
## GCC1 -2.921194e-02 -6.292189e-02 -9.213383e-02 3.954041e+01
## POP1 -1.972029e-03 6.756816e-03 4.784787e-03 3.042486e+00
## RRP7A 1.854006e-01 -8.462234e-02 1.007782e-01 3.740405e+01
## PRIM1 6.671364e-03 6.834139e-03 1.350550e-02 5.484404e+00
## NPC2 2.644462e-01 -3.395255e-01 -7.507931e-02 1.421390e+02
## P2RY8 1.300013e-01 4.806190e-02 1.780632e-01 9.022024e+01
## UBR1 -2.395164e-02 -3.875602e-02 -6.270766e-02 2.268988e+01
## TRIM58 -9.359718e-02 1.975091e-01 1.039119e-01 4.058413e+01
## ZNF765 -4.511566e-03 1.709345e-02 1.258188e-02 7.979432e+00
## KANSL2 2.078298e-02 8.553375e-03 2.933636e-02 2.261096e+01
## BRWD3 -2.194928e-01 1.629688e-01 -5.652400e-02 5.383229e+01
## DNAJB4 3.813711e-03 5.845482e-03 9.659193e-03 3.413015e+00
## FSD1L -3.376349e-03 -1.197556e-02 -1.535190e-02 3.137706e+00
## KLHL3 7.704826e-04 8.749053e-03 9.519535e-03 1.855390e+00
## SLC7A14 -1.016303e-03 -1.373223e-03 -2.389527e-03 5.161818e-01
## ZNF57 3.412594e-03 1.761962e-03 5.174557e-03 1.639564e+00
## MYRF 4.691751e-06 -5.775081e-03 -5.770389e-03 9.787937e-01
## NAT10 1.852027e-02 2.067065e-02 3.919091e-02 1.481816e+01
## CCND3 -1.212681e+00 1.295521e-01 -1.083129e+00 3.849351e+02
## EML3 -9.899107e-02 1.053203e-01 6.329263e-03 4.758364e+01
## CARD6 -3.160884e-01 1.959410e-01 -1.201475e-01 6.474590e+01
## R3HCC1L -3.120719e-02 -1.938635e-02 -5.059353e-02 2.610355e+01
## TPM4 -3.141431e-01 -4.146614e-01 -7.288045e-01 2.699018e+02
## ZNF180 1.406062e-03 1.347167e-02 1.487773e-02 1.021060e+01
## HUWE1 -1.175568e-01 8.415264e-02 -3.340420e-02 5.667889e+01
## SIRT2 -9.410010e-02 1.060475e-01 1.194736e-02 5.563416e+01
## HERC2 -1.255108e-01 1.061136e-01 -1.939724e-02 3.273910e+01
## ZFP62 6.929972e-03 1.678867e-02 2.371864e-02 9.907784e+00
## RRP1B 2.746338e-02 5.545903e-03 3.300929e-02 1.196299e+01
## KDM1A 3.145712e-02 2.182372e-02 5.328084e-02 2.491792e+01
## KLF5 2.217676e-02 -5.158506e-02 -2.940830e-02 1.109216e+01
## ARL17A -2.380274e-02 3.911799e-02 1.531524e-02 1.243049e+01
## CCNB1 -2.197310e-02 3.241673e-02 1.044363e-02 5.424136e+00
## ARRB2 -3.751044e+00 2.090057e+00 -1.660987e+00 1.097418e+03
## ZBTB4 4.165897e-02 4.263935e-02 8.429832e-02 2.867774e+01
## LEPROT -2.189678e-01 -3.314603e-03 -2.222824e-01 8.947314e+01
## SLF2 -4.758830e-02 3.068091e-02 -1.690739e-02 1.976486e+01
## UPF3B 1.118953e-02 -5.031208e-03 6.158318e-03 8.109281e+00
## RNF141 -4.920523e-01 3.527875e-01 -1.392648e-01 1.392636e+02
## ZC3H14 1.239698e-02 1.474475e-02 2.714172e-02 1.627318e+01
## CLCN6 -2.278545e-02 7.224378e-03 -1.556107e-02 9.039564e+00
## GEMIN4 1.926325e-02 1.630437e-03 2.089368e-02 7.835657e+00
## DNAH17 -1.547347e-02 -2.203022e-02 -3.750369e-02 7.585298e+00
## CHKA -9.469523e-03 -5.478257e-02 -6.425209e-02 2.321166e+01
## GTPBP3 1.030282e-02 2.074896e-03 1.237772e-02 3.047540e+00
## NOP53 4.820889e-01 2.043739e-01 6.864628e-01 9.809079e+01
## ZNF611 -3.012645e-02 1.757686e-02 -1.254959e-02 8.239436e+00
## MRPS33 7.108035e-03 3.002762e-02 3.713566e-02 1.408219e+01
## ZNF549 2.781398e-03 9.097929e-03 1.187933e-02 3.240901e+00
## PDIA5 -2.278626e-02 6.040623e-03 -1.674564e-02 5.246741e+00
## GOLPH3 -1.597255e-01 3.246895e-02 -1.272565e-01 8.692761e+01
## MRPL9 5.211457e-02 2.214232e-03 5.432880e-02 2.018978e+01
## PARP14 -2.303888e-01 -1.171930e+00 -1.402319e+00 2.498047e+02
## ZNF839 -3.945390e-02 3.668263e-02 -2.771273e-03 2.064810e+01
## STX3 -9.382403e-01 -2.718938e-01 -1.210134e+00 3.613931e+02
## RPSA 2.538043e+00 2.131491e+00 4.669533e+00 9.156639e+02
## PITPNM2 1.586527e-02 -2.128161e-02 -5.416344e-03 6.915494e+00
## RBKS -2.764757e-03 4.483885e-03 1.719128e-03 1.556984e+00
## CYTH2 4.979158e-02 2.158489e-02 7.137647e-02 3.838294e+01
## SCUBE1 -4.671356e-03 3.928535e-03 -7.428212e-04 1.213141e+00
## STRN4 -1.108737e-01 1.040809e-01 -6.792859e-03 5.213295e+01
## BMX -1.642823e-01 8.108738e-03 -1.561735e-01 2.796757e+01
## GJD3 -7.394178e-05 -2.952525e-03 -3.026467e-03 7.555370e-01
## NDC1 9.550371e-03 1.186961e-02 2.141998e-02 8.953929e+00
## RPS24 6.490219e-01 2.075244e+00 2.724266e+00 7.285410e+02
## SLC30A6 -2.679493e-02 3.952220e-02 1.272726e-02 2.152792e+01
## GOLGA5 -5.443310e-02 3.991020e-02 -1.452290e-02 3.120932e+01
## BRF2 1.546377e-02 -4.934222e-03 1.052954e-02 9.628747e+00
## SF3B2 1.707138e-01 4.465174e-02 2.153656e-01 1.709291e+02
## FBXO42 -2.843771e-02 -4.113472e-04 -2.884906e-02 2.827213e+01
## SLC8A1 -3.885060e-01 -6.470836e-02 -4.532144e-01 7.073064e+01
## EEF1G 2.562515e+00 2.671568e+00 5.234083e+00 1.192537e+03
## BTBD10 -1.532390e-01 3.769123e-02 -1.155477e-01 5.121699e+01
## AGTPBP1 -7.772883e-01 1.458627e-01 -6.314256e-01 1.642535e+02
## RNFT2 -3.277067e-03 4.164304e-03 8.872370e-04 1.574002e+00
## KATNIP -5.344632e-02 2.516799e-02 -2.827833e-02 2.168983e+01
## CLEC7A -9.884376e-01 3.718406e-01 -6.165971e-01 3.088035e+02
## APEX1 1.123980e-01 2.597064e-02 1.383686e-01 5.645519e+01
## CEP164 -1.779035e-02 2.279170e-02 5.001349e-03 1.559656e+01
## ALDH3B1 -2.078167e-01 9.064829e-02 -1.171684e-01 5.200472e+01
## APMAP -1.582500e+00 1.293916e+00 -2.885835e-01 4.137473e+02
## EI24 -3.175398e-03 2.787919e-02 2.470380e-02 1.684233e+01
## ANKHD1-EIF4EBP3 -9.633486e-02 3.892303e-02 -5.741183e-02 3.956204e+01
## CD8B 1.104099e-01 9.828085e-02 2.086907e-01 2.716239e+01
## SP110 -4.002691e-01 -4.526564e-01 -8.529254e-01 2.454660e+02
## BLMH 4.018229e-02 -1.210495e-02 2.807734e-02 1.658112e+01
## ZNF496 1.425065e-02 -5.376943e-02 -3.951878e-02 1.127894e+01
## STRBP 5.122293e-03 2.178492e-02 2.690721e-02 8.940492e+00
## NRDE2 -3.934600e-03 2.674075e-02 2.280615e-02 1.985082e+01
## DNAJA3 1.200180e-02 1.977740e-02 3.177920e-02 1.267878e+01
## ZNF678 6.928529e-03 2.941147e-03 9.869676e-03 2.936598e+00
## LUZP6 -2.357128e-01 -3.244381e-01 -5.601509e-01 1.960422e+02
## MTPN -2.357128e-01 -3.244381e-01 -5.601509e-01 1.960422e+02
## C8orf58 1.869856e-02 -6.319221e-03 1.237934e-02 6.774849e+00
## PAM16 -1.781990e-02 1.667964e-02 -1.140260e-03 4.294036e+00
## MYL12B -1.588066e+00 8.932479e-01 -6.948177e-01 5.420822e+02
## ZFP3 3.173283e-03 1.206408e-02 1.523737e-02 4.193025e+00
## IRF4 -1.152345e-01 7.282197e-02 -4.241255e-02 2.002576e+01
## HSBP1 -1.793807e-01 -7.828544e-02 -2.576661e-01 1.159853e+02
## NCOA7 -1.060197e-01 -9.914559e-02 -2.051653e-01 3.206978e+01
## SPACA6 -6.642859e-03 3.157964e-03 -3.484895e-03 9.788893e-01
## PRADC1 -3.328667e-02 4.928982e-02 1.600314e-02 9.096291e+00
## LRMDA -1.075440e-02 -8.336218e-03 -1.909062e-02 4.899770e+00
## ARID3B -1.847798e-02 -6.569635e-02 -8.417432e-02 3.848899e+01
## N4BP1 -5.539130e-01 3.587911e-01 -1.951219e-01 1.660646e+02
## UPK3BL1 8.217183e-02 2.443602e-02 1.066078e-01 2.331188e+01
## MTX1 -2.652436e-01 1.732239e-01 -9.201970e-02 6.535539e+01
## PARD6B -1.470056e-03 5.689187e-03 4.219132e-03 1.643308e+00
## PTTG1IP -3.870301e-01 1.377056e-02 -3.732595e-01 1.997098e+02
## ZNF85 8.215792e-03 -4.169868e-03 4.045925e-03 2.886455e+00
## RAP2B -2.631227e-02 -5.341844e-02 -7.973071e-02 5.810756e+01
## NPIPA5 2.224400e-02 1.042952e-02 3.267352e-02 1.070770e+01
## CXorf21 -6.202618e-02 -5.716203e-02 -1.191882e-01 3.742755e+01
## ZNF718 4.712675e-04 8.496721e-03 8.967989e-03 3.812324e+00
## RPAP1 1.124948e-02 3.931650e-03 1.518113e-02 5.266095e+00
## XRN1 -2.731686e-01 -1.766783e-01 -4.498469e-01 9.117972e+01
## MYLK4 1.502810e-04 2.417959e-03 2.568240e-03 5.849979e-01
## UPF1 -2.807136e-01 1.146256e-01 -1.660880e-01 8.500603e+01
## SDR39U1 5.418164e-02 -9.619777e-03 4.456186e-02 1.199168e+01
## RPLP0 9.214719e-01 3.528443e+00 4.449915e+00 1.012390e+03
## OAZ1 -5.099112e+00 3.187426e+00 -1.911686e+00 1.263818e+03
## CSNK1D -4.632464e-01 2.403322e-01 -2.229142e-01 1.767639e+02
## TMA16 7.291612e-03 4.764642e-03 1.205625e-02 5.523657e+00
## BLCAP 4.442896e-02 2.186929e-02 6.629825e-02 4.710364e+01
## FBXO31 2.276975e-02 1.081990e-02 3.358965e-02 8.484113e+00
## SIRPB2 -4.631560e-01 7.459741e-02 -3.885586e-01 1.267342e+02
## LRRC57 -3.960776e-02 -7.568407e-03 -4.717617e-02 2.030794e+01
## C11orf80 -4.686888e-03 1.434266e-02 9.655768e-03 3.206454e+00
## GABARAPL2 -5.011987e-01 3.546500e-01 -1.465487e-01 1.575296e+02
## KIFC2 2.428259e-02 1.987400e-02 4.415658e-02 8.742958e+00
## MTR -1.428261e-03 3.251931e-02 3.109105e-02 1.084333e+01
## DCP1B 1.466203e-02 -8.971187e-05 1.457232e-02 5.508274e+00
## SLC22A5 -8.619336e-04 -5.298859e-03 -6.160793e-03 2.835661e+00
## LRRC61 -2.046286e-02 6.449445e-03 -1.401341e-02 4.476915e+00
## SRSF3 3.080118e-01 -2.646640e-01 4.334776e-02 2.022442e+02
## AMOT 1.064556e-03 2.950439e-03 4.014995e-03 8.611316e-01
## FAM177A1 -5.629096e-02 2.266620e-02 -3.362476e-02 1.958502e+01
## MAZ 2.005387e-01 2.164182e-01 4.169569e-01 1.201400e+02
## RAB11FIP4 1.240842e-02 1.306305e-01 1.430390e-01 7.769235e+01
## DUSP5 -7.673306e-02 -1.888599e-02 -9.561905e-02 1.418035e+01
## NAPB 2.448358e-02 -3.531110e-02 -1.082752e-02 1.268102e+01
## ECHDC2 2.556802e-02 -7.521590e-03 1.804643e-02 5.134585e+00
## MYCBP -1.984539e-02 8.385177e-02 6.400638e-02 4.804354e+01
## B9D2 -3.697062e-02 3.928061e-02 2.309996e-03 1.082149e+01
## ERLIN2 -7.231684e-02 1.208741e-02 -6.022943e-02 2.542148e+01
## TAF13 5.526867e-03 -2.549385e-02 -1.996699e-02 6.980751e+00
## YWHAB -5.276797e-01 3.834554e-02 -4.893341e-01 3.456032e+02
## ARMCX2 3.932758e-03 2.111476e-03 6.044234e-03 1.407752e+00
## RPL36A 1.052275e+00 9.609367e-01 2.013212e+00 3.750905e+02
## CLU 4.709333e-02 -9.832044e-01 -9.361111e-01 2.076136e+02
## ADD3 -8.653561e-01 3.510436e-01 -5.143125e-01 2.493372e+02
## HLA-DOB 1.364614e-02 4.067381e-02 5.431995e-02 1.228008e+01
## XPC -7.088729e-02 1.160153e-01 4.512800e-02 6.548323e+01
## ADAT1 -4.130466e-02 4.278168e-02 1.477022e-03 2.084674e+01
## RAB30 -4.561125e-03 2.913491e-02 2.457379e-02 7.387232e+00
## RAB33B -1.017565e-01 -1.238342e-01 -2.255907e-01 5.520196e+01
## TOMM70 3.007058e-02 1.533722e-02 4.540781e-02 2.236810e+01
## CLIP2 2.465789e-02 -3.202527e-02 -7.367383e-03 1.048297e+01
## SHQ1 1.201929e-02 1.309333e-03 1.332862e-02 6.114227e+00
## PTCD2 2.439366e-03 7.016584e-03 9.455949e-03 3.773746e+00
## NDUFA5 4.977156e-02 -1.821563e-02 3.155593e-02 2.896655e+01
## ELK3 4.013745e-02 -6.087082e-02 -2.073337e-02 3.455622e+01
## SYT11 -3.404571e-02 -1.842684e-02 -5.247255e-02 2.764642e+01
## GSK3A -1.197263e-01 1.249393e-01 5.212993e-03 8.044631e+01
## ZNF875 1.778942e-02 8.900863e-03 2.669028e-02 9.775785e+00
## EIF2AK2 -5.383296e-01 -3.202937e-01 -8.586233e-01 1.460407e+02
## PLP2 -1.365637e+00 9.845750e-01 -3.810622e-01 3.173592e+02
## PSMC6 -1.720658e-01 1.346256e-01 -3.744024e-02 8.184646e+01
## ZDBF2 3.444474e-03 6.781689e-03 1.022616e-02 1.674645e+00
## FGL2 -1.353966e+00 -3.600097e-01 -1.713975e+00 5.618015e+02
## DTX3L -2.775614e-01 -4.900661e-01 -7.676275e-01 1.784870e+02
## TBC1D3L -9.654715e-03 -1.220259e-01 -1.316806e-01 3.200985e+01
## RFX7 2.828553e-02 2.891659e-03 3.117719e-02 1.105955e+01
## RBFA 4.149138e-03 1.008052e-02 1.422966e-02 4.593282e+00
## MCCC2 5.491053e-04 2.234747e-02 2.289658e-02 1.023146e+01
## ZNF169 -4.011830e-03 -2.521038e-03 -6.532868e-03 2.557507e+00
## RNPC3 -4.654577e-02 3.671777e-02 -9.828005e-03 1.911659e+01
## DBP 8.260603e-03 7.604247e-03 1.586485e-02 3.415151e+00
## CXorf65 9.319310e-03 -1.568023e-02 -6.360922e-03 4.223799e+00
## UBE2E1 2.378172e-02 -6.695414e-02 -4.317241e-02 4.265987e+01
## ARG2 -2.801959e-04 1.429164e-02 1.401144e-02 3.299904e+00
## C12orf75 2.741809e-02 4.710356e-02 7.452165e-02 1.883601e+01
## NUP42 1.981744e-02 -1.167520e-02 8.142236e-03 1.327616e+01
## ATP11A -1.849224e-01 -6.580069e-02 -2.507231e-01 7.149303e+01
## ZNF789 -1.295088e-04 8.169274e-03 8.039765e-03 3.766330e+00
## EID2B 2.253320e-03 2.637503e-03 4.890823e-03 1.626585e+00
## PERP -1.480343e-02 4.888495e-03 -9.914938e-03 2.418782e+00
## SLC46A3 -9.366815e-02 1.967149e-02 -7.399666e-02 3.214613e+01
## ARIH2 1.090080e-02 4.533687e-02 5.623767e-02 6.893537e+01
## IFI44L -1.600990e-01 -2.104942e+00 -2.265041e+00 2.146960e+02
## MON1A -1.040901e-02 1.279880e-02 2.389791e-03 3.209275e+00
## MED19 -1.837950e-03 1.090548e-02 9.067527e-03 5.387049e+00
## RPS14 2.572178e+00 8.239560e-01 3.396134e+00 7.788518e+02
## VAPA -9.973133e-01 4.314475e-01 -5.658658e-01 2.471066e+02
## TUT7 -4.122372e-01 -3.881951e-01 -8.004323e-01 2.176384e+02
## TRIM65 1.785506e-02 1.327017e-02 3.112524e-02 1.137430e+01
## POLG -1.985062e-02 5.716867e-02 3.731804e-02 4.833512e+01
## GPALPP1 6.016545e-03 7.423517e-03 1.344006e-02 7.384099e+00
## MC1R 2.695299e-03 4.953976e-03 7.649275e-03 1.474273e+00
## NUDCD3 8.044755e-03 3.833385e-02 4.637861e-02 2.956775e+01
## ZNF621 -2.213716e-02 2.669073e-02 4.553568e-03 1.099581e+01
## ZNF534 8.591349e-04 -2.133731e-03 -1.274597e-03 5.781474e-01
## GLTP -1.261008e-01 1.296488e-01 3.548050e-03 7.303722e+01
## RALBP1 -3.045642e-01 5.330673e-02 -2.512575e-01 1.225238e+02
## CTTN 1.792352e-02 -7.914561e-02 -6.122209e-02 1.920583e+01
## CS 1.312442e-02 6.597389e-02 7.909831e-02 6.918905e+01
## PGS1 -5.948368e-01 3.264051e-02 -5.621963e-01 1.310338e+02
## TRIM9 -1.739767e-02 3.251005e-03 -1.414667e-02 2.359807e+00
## FAAP24 -1.127096e-02 9.471302e-03 -1.799661e-03 4.073066e+00
## SLC16A6 -1.806594e-02 -9.199640e-02 -1.100623e-01 3.285752e+01
## PDE4D -1.367438e-02 -9.187043e-02 -1.055448e-01 1.881038e+01
## CXCR3 1.032351e-02 1.055681e-02 2.088032e-02 2.922327e+00
## ERCC8 1.021067e-02 -6.771169e-03 3.439500e-03 5.337944e+00
## CEP97 -4.513462e-02 1.239349e-01 7.880024e-02 1.919710e+01
## SNX18 -3.229582e-01 2.159676e-01 -1.069906e-01 9.899260e+01
## FNBP1L -9.399195e-03 6.179958e-03 -3.219238e-03 2.346202e+00
## PNP -4.973403e-02 2.296216e-01 1.798876e-01 6.744769e+01
## ZMYM4 -6.748790e-03 -3.222691e-02 -3.897570e-02 1.877902e+01
## PXMP4 1.343523e-02 8.259856e-04 1.426122e-02 6.311813e+00
## CPNE8 7.620074e-03 -2.723035e-02 -1.961027e-02 8.536716e+00
## ANKRD33B -3.662452e-02 9.668905e-04 -3.565763e-02 1.126740e+01
## QARS1 1.487314e-01 1.193041e-01 2.680355e-01 1.124299e+02
## KLF2 -3.945410e-01 7.602282e-01 3.656872e-01 2.064148e+02
## TAX1BP3 -8.550878e-02 3.080202e-02 -5.470677e-02 2.593053e+01
## TPRA1 -6.645317e-03 5.215952e-02 4.551420e-02 1.663343e+01
## SLC49A4 -9.693095e-02 7.651256e-02 -2.041839e-02 2.374652e+01
## CARF 6.252652e-03 9.674592e-03 1.592724e-02 4.976952e+00
## ZNF117 2.302140e-01 -6.967339e-02 1.605406e-01 3.811076e+01
## DNAJC18 2.564355e-03 2.790814e-03 5.355168e-03 1.998183e+00
## TIMM17B -1.491531e-01 1.745785e-01 2.542544e-02 4.423219e+01
## RTN3 -2.311750e+00 8.422379e-01 -1.469512e+00 6.579180e+02
## SLAMF6 3.659550e-02 7.096616e-02 1.075617e-01 3.157433e+01
## FAAH 3.058325e-02 -2.854149e-02 2.041765e-03 5.163740e+00
## CLEC4E -3.052505e+00 1.015210e+00 -2.037295e+00 5.353171e+02
## SIRT1 -6.797558e-02 7.268234e-02 4.706768e-03 2.661332e+01
## MGST3 2.163329e-02 6.344052e-02 8.507381e-02 2.678739e+01
## U2AF1 -1.038415e-01 8.491633e-02 -1.892516e-02 3.912364e+01
## SURF6 -3.302854e-02 4.643461e-02 1.340607e-02 2.768920e+01
## TOR1A -1.118972e-01 -4.280235e-03 -1.161774e-01 5.864667e+01
## ATP10D -4.559602e-02 2.042472e-02 -2.517130e-02 1.253299e+01
## NELFA 4.452283e-03 6.273548e-03 1.072583e-02 4.133731e+00
## KLHL18 -4.152077e-02 4.000359e-03 -3.752041e-02 2.334186e+01
## CTSL -9.624259e-02 -8.460070e-02 -1.808433e-01 2.547694e+01
## GLMN 2.811132e-03 3.386477e-03 6.197609e-03 2.871021e+00
## SRSF10 9.247246e-02 -6.106772e-02 3.140474e-02 5.712247e+01
## ARMCX4 1.820875e-03 1.893797e-03 3.714672e-03 8.115030e-01
## DDIT4 3.991105e-01 -5.281155e-01 -1.290051e-01 5.475565e+01
## LIN52 -2.595749e-03 1.099834e-02 8.402594e-03 6.449285e+00
## GGT7 2.200333e-02 -3.197038e-03 1.880629e-02 5.028157e+00
## C11orf49 3.256756e-03 6.360152e-03 9.616908e-03 3.427721e+00
## QRSL1 1.590535e-02 6.556543e-03 2.246190e-02 9.624723e+00
## VPS29 -1.742221e-01 1.334198e-01 -4.080235e-02 8.712329e+01
## NKAIN3 -1.745940e-02 1.741158e-03 -1.571825e-02 5.275168e+00
## GRK6 -6.130415e-01 6.099841e-01 -3.057382e-03 2.211526e+02
## TK1 -4.216092e-02 2.728203e-02 -1.487889e-02 5.283466e+00
## GTF2IRD2B -9.225162e-03 2.127734e-02 1.205218e-02 1.310291e+01
## ELP6 -2.229351e-03 2.434468e-02 2.211533e-02 9.360740e+00
## C19orf44 -1.095926e-03 4.108609e-03 3.012682e-03 1.103102e+00
## MRPL1 1.820261e-02 1.962071e-03 2.016468e-02 8.656897e+00
## RPS29 9.421729e-01 6.539456e-01 1.596118e+00 3.203185e+02
## UBE2J1 -1.416700e+00 5.110621e-01 -9.056384e-01 3.448792e+02
## SRGAP2C 2.685795e-02 -5.484844e-02 -2.799049e-02 1.667102e+01
## XXYLT1 1.122014e-02 -5.142545e-03 6.077593e-03 5.730841e+00
## ZNF224 1.735218e-02 -4.726696e-02 -2.991477e-02 2.327206e+01
## KCNK5 5.126867e-03 5.285631e-03 1.041250e-02 1.340515e+00
## NPTN -1.952178e-01 -1.062813e-01 -3.014991e-01 1.041581e+02
## ARL6IP6 -1.095487e-01 3.831553e-02 -7.123316e-02 3.080458e+01
## LRP11 2.467277e-03 -1.882939e-03 5.843375e-04 6.659204e-01
## CRYBG1 -1.914792e-01 -9.175991e-02 -2.832391e-01 9.761471e+01
## PRKCA 2.403428e-02 2.098046e-02 4.501474e-02 1.463182e+01
## ARHGEF11 -2.606530e-01 -1.957133e-03 -2.626101e-01 1.019906e+02
## PNMA2 -2.212507e-03 2.758214e-03 5.457069e-04 5.718820e-01
## RNF26 1.917625e-03 3.130375e-02 3.322137e-02 1.103196e+01
## ARPP19 -1.332734e-01 -1.058058e-01 -2.390792e-01 1.074464e+02
## TPI1 -8.244850e-01 1.025833e+00 2.013485e-01 3.607991e+02
## LGMN 1.158905e-02 -7.249683e-03 4.339365e-03 3.548687e+00
## MAGED1 -5.849998e-02 3.446032e-02 -2.403966e-02 1.036369e+01
## B9D1 -1.488292e-02 9.054630e-03 -5.828293e-03 1.695470e+00
## DENND1B -2.057299e-02 -3.446483e-02 -5.503782e-02 2.025507e+01
## IPO9 2.369601e-02 1.592053e-02 3.961654e-02 2.128201e+01
## ATL1 1.138757e-03 -4.780603e-03 -3.641846e-03 1.615097e+00
## TAF4 1.619649e-02 4.538855e-03 2.073534e-02 9.899395e+00
## SHOC2 -3.740133e-01 -6.922840e-02 -4.432417e-01 1.442953e+02
## AXIN1 -1.256413e-02 4.584832e-02 3.328419e-02 2.901411e+01
## B3GNT7 5.155312e-03 -2.535682e-03 2.619630e-03 9.583876e-01
## ADCY7 -2.885509e-01 1.782449e-02 -2.707264e-01 9.889263e+01
## DOCK8 -7.381320e-01 -1.623520e-01 -9.004840e-01 3.126439e+02
## ARL6 3.682938e-03 -1.719464e-03 1.963475e-03 9.081689e-01
## EPB41L5 8.154731e-03 -1.395345e-02 -5.798715e-03 4.358731e+00
## SPART 6.883007e-02 -1.076562e-01 -3.882608e-02 3.689974e+01
## ADIPOR1 -1.041091e+00 7.569056e-01 -2.841854e-01 3.036678e+02
## PRMT7 1.975542e-02 1.261648e-02 3.237191e-02 8.293110e+00
## SCO1 6.111888e-04 1.490293e-02 1.551412e-02 1.588251e+01
## LRRN2 4.085550e-04 5.684043e-03 6.092598e-03 1.173983e+00
## SNAP29 -8.745177e-02 5.116803e-02 -3.628374e-02 5.651758e+01
## UBE2L6 6.919065e-01 -1.228614e+00 -5.367078e-01 2.170124e+02
## AZI2 -2.305932e-01 1.165698e-01 -1.140233e-01 5.484694e+01
## EXOC6B 8.572157e-03 -5.657194e-03 2.914963e-03 2.800482e+00
## MLLT6 4.693399e-01 -1.545432e-01 3.147968e-01 1.646606e+02
## ZNF597 -8.653708e-03 9.685128e-03 1.031419e-03 4.708560e+00
## LMAN1 -1.343923e-01 1.110996e-01 -2.329268e-02 2.938228e+01
## APOL4 2.989798e-02 -2.752582e-02 2.372160e-03 6.171251e+00
## CPQ -3.051329e-01 1.654933e-01 -1.396396e-01 8.647804e+01
## ACTL6A 2.271982e-02 6.871038e-03 2.959086e-02 1.502742e+01
## DNM3 -4.066775e-03 -1.533597e-02 -1.940275e-02 5.609791e+00
## FZD3 -5.571827e-03 3.519273e-03 -2.052554e-03 1.567895e+00
## CERT1 -2.751424e-01 -6.656616e-03 -2.817991e-01 9.576920e+01
## UBA3 -2.635938e-01 6.523660e-03 -2.570701e-01 1.118558e+02
## RNF122 -5.817306e-02 8.983999e-03 -4.918906e-02 2.079280e+01
## CCNL1 -1.222707e-02 -6.182702e-01 -6.304972e-01 2.335210e+02
## APBA2 2.516679e-02 -1.272175e-03 2.389462e-02 5.757027e+00
## SPIN4 7.539371e-03 -5.173564e-04 7.022014e-03 2.247519e+00
## NFKBIL1 -3.424290e-02 2.733951e-02 -6.903390e-03 8.411734e+00
## BAK1 1.843077e-01 -2.412113e-01 -5.690355e-02 6.594419e+01
## CCDC121 -6.082510e-03 -3.789019e-03 -9.871529e-03 2.974345e+00
## HERC6 5.400983e-02 -2.271605e-01 -1.731507e-01 2.820221e+01
## NDUFA4 -1.700212e-01 3.133271e-01 1.433060e-01 8.527364e+01
## NR1D2 7.462817e-02 -3.624784e-02 3.838034e-02 1.427117e+01
## SARS1 7.211045e-03 1.269789e-01 1.341900e-01 8.426163e+01
## EHBP1L1 -4.580431e-01 3.909831e-01 -6.705996e-02 2.309080e+02
## SMAD7 2.196204e-02 -1.906385e-02 2.898189e-03 9.469017e+00
## SLC25A17 7.533717e-03 5.485211e-03 1.301893e-02 7.619363e+00
## OAS3 -9.894351e-01 -1.550995e+00 -2.540430e+00 2.316988e+02
## TTL 1.070401e-02 1.796329e-02 2.866730e-02 1.797326e+01
## RMDN1 -4.322395e-02 2.153372e-02 -2.169023e-02 2.202445e+01
## TEX22 3.469938e-03 6.676280e-04 4.137566e-03 8.313437e-01
## S100A11 -7.814541e+00 2.578516e+00 -5.236025e+00 1.988458e+03
## ZNF35 3.409816e-03 2.089553e-03 5.499369e-03 2.503592e+00
## ZNF623 -1.552023e-02 1.845986e-02 2.939627e-03 7.597434e+00
## PEX6 5.562431e-02 4.049082e-02 9.611512e-02 2.642859e+01
## CANX -3.007266e-01 2.922141e-01 -8.512461e-03 1.956729e+02
## ABITRAM -4.723910e-02 3.104909e-02 -1.619001e-02 1.852229e+01
## KARS1 1.355994e-01 -6.348018e-02 7.211922e-02 7.927952e+01
## DDX19B 2.950942e-02 -1.772546e-02 1.178396e-02 1.611731e+01
## LSR 2.554470e-03 1.139760e-02 1.395207e-02 2.717078e+00
## GIT1 3.676139e-02 4.306438e-02 7.982576e-02 2.683896e+01
## PIGB -4.467621e-02 7.807834e-02 3.340213e-02 2.445336e+01
## HELZ -1.160653e-01 -1.003449e-02 -1.260998e-01 4.709536e+01
## MAPK6 2.900482e-02 -7.806486e-02 -4.906003e-02 1.946851e+01
## CHERP 1.244342e-02 1.232458e-02 2.476800e-02 1.143976e+01
## SPN 1.784341e-01 6.422824e-02 2.426623e-01 7.784588e+01
## HSPA1L -4.229636e-02 1.988878e-02 -2.240759e-02 1.310939e+01
## GFPT1 -2.748204e-02 2.421737e-02 -3.264670e-03 1.363996e+01
## TLR2 -3.120922e+00 2.690893e-01 -2.851832e+00 7.191036e+02
## ATP13A4 3.045280e-03 -2.478335e-03 5.669451e-04 6.354282e-01
## P2RY13 -1.527857e+00 -3.932716e-02 -1.567184e+00 4.206229e+02
## KMT2A -5.807423e-02 9.155937e-02 3.348514e-02 2.829603e+01
## RALGDS 6.942217e-02 -1.138442e-02 5.803775e-02 2.393769e+01
## NIN -9.070790e-01 2.121286e-02 -8.858662e-01 2.998832e+02
## TMEM107 -1.811007e-02 1.413844e-02 -3.971628e-03 7.840540e+00
## FAM122B 3.105847e-02 3.698354e-03 3.475683e-02 2.266170e+01
## LYPLA1 -2.138625e-01 -6.318401e-02 -2.770465e-01 7.875498e+01
## RETN -4.843558e-01 7.901164e-01 3.057607e-01 5.314358e+01
## PSMG4 7.798436e-03 6.312687e-03 1.411112e-02 4.468802e+00
## MOCS2 1.485535e-02 -5.123036e-04 1.434304e-02 9.137600e+00
## SPTAN1 5.843543e-02 7.379710e-02 1.322325e-01 6.480910e+01
## TMEM8B 9.171394e-03 -1.839872e-03 7.331522e-03 2.113129e+00
## TOR1AIP1 -2.880249e-01 -6.385980e-02 -3.518847e-01 1.276222e+02
## SRP14 -3.336502e-01 2.057051e-01 -1.279450e-01 1.787086e+02
## AGFG1 -9.034255e-01 -1.254643e-01 -1.028890e+00 2.001440e+02
## CCDC191 2.785016e-03 7.976142e-03 1.076116e-02 3.688970e+00
## SREBF1 -1.287754e-02 3.680233e-02 2.392480e-02 1.180905e+01
## TAS2R20 2.578418e-03 -8.135920e-04 1.764826e-03 5.174390e-01
## DDX11 4.346226e-02 2.882828e-03 4.634509e-02 1.467677e+01
## C1orf56 3.265643e-03 1.144824e-02 1.471388e-02 4.526052e+00
## CENPN -1.407848e-02 2.564071e-02 1.156223e-02 6.068023e+00
## NDE1 4.215939e-02 8.635161e-02 1.285110e-01 4.949876e+01
## NDUFS5 -1.112687e-01 2.544374e-01 1.431686e-01 7.447065e+01
## HSPA1B -1.515117e-01 -2.621355e-02 -1.777253e-01 2.484944e+01
## SLC7A1 -5.053802e-03 1.976308e-02 1.470927e-02 7.062949e+00
## SDAD1 2.240145e-02 2.500948e-02 4.741093e-02 1.944707e+01
## NOL3 -4.151504e-03 -2.975445e-03 -7.126949e-03 2.315396e+00
## THEM6 1.766467e-02 1.146474e-03 1.881114e-02 3.528391e+00
## MARK4 1.946914e-02 3.111368e-02 5.058282e-02 1.803935e+01
## CLP1 -3.106017e-02 -3.326892e-02 -6.432909e-02 2.448971e+01
## MPRIP 7.035866e-02 4.788377e-02 1.182424e-01 4.158722e+01
## TMEM218 1.487354e-02 -1.291391e-02 1.959637e-03 9.703013e+00
## ZNF568 4.452015e-03 2.747759e-03 7.199774e-03 2.682268e+00
## AIF1 -1.369409e+00 6.221092e-01 -7.473000e-01 4.725196e+02
## MTRNR2L3 -4.988526e-02 5.907143e-02 9.186172e-03 1.428124e+01
## NCBP2 3.293293e-02 1.073236e-02 4.366529e-02 2.296054e+01
## PEX11A 2.223698e-03 -3.309331e-03 -1.085633e-03 1.342863e+00
## ZNF468 6.183418e-03 2.328731e-02 2.947073e-02 1.291771e+01
## SOS1 -9.980529e-02 5.188583e-02 -4.791946e-02 3.596716e+01
## FBXO46 9.433126e-03 4.708069e-03 1.414120e-02 8.151616e+00
## CST7 -3.362342e+00 1.298351e+00 -2.063991e+00 4.633194e+02
## BTBD8 -1.170332e-02 -2.013796e-03 -1.371712e-02 3.132139e+00
## CEMIP2 -3.061294e-01 1.092136e-01 -1.969158e-01 9.081123e+01
## LRRC14 1.237237e-02 1.760413e-02 2.997650e-02 8.942702e+00
## RAPH1 7.874782e-03 -6.595752e-03 1.279030e-03 1.423605e+00
## MEI1 -5.025564e-02 3.439889e-02 -1.585675e-02 9.547366e+00
## ATP6V1A -4.889075e-01 4.246807e-01 -6.422677e-02 1.573441e+02
## RMDN3 9.954864e-03 1.186302e-02 2.181789e-02 8.866935e+00
## BRD2 -3.518513e-01 2.786424e-01 -7.320888e-02 2.390096e+02
## KCNN4 -1.463942e-02 5.329536e-02 3.865594e-02 1.033067e+01
## ATL2 -4.243813e-02 3.754536e-02 -4.892775e-03 1.838402e+01
## RTTN 1.654661e-03 8.707708e-03 1.036237e-02 3.618170e+00
## PGAP6 -1.937481e-01 1.190447e-01 -7.470333e-02 5.542591e+01
## RABGAP1 -4.822597e-02 2.997296e-02 -1.825302e-02 2.488278e+01
## SH3BGRL -4.464600e-01 -4.276669e-01 -8.741269e-01 2.209603e+02
## AK3 1.512899e-02 1.199943e-02 2.712841e-02 1.842348e+01
## CEPT1 -1.434154e-02 -3.330927e-02 -4.765081e-02 2.810059e+01
## NDUFB3 -1.651131e-01 1.071612e-01 -5.795195e-02 5.693778e+01
## AATK -1.029120e-01 9.482411e-02 -8.087906e-03 2.784013e+01
## NPDC1 1.148309e-02 1.007739e-02 2.156049e-02 2.348900e+00
## LMO2 -9.205194e-02 -1.913858e-01 -2.834377e-01 1.302179e+02
## IQCG -8.163970e-03 4.584029e-03 -3.579941e-03 3.507021e+00
## FAR1 -5.034958e-01 1.029770e-01 -4.005187e-01 1.642756e+02
## SLC12A9 -3.749273e-01 1.237752e-01 -2.511521e-01 1.006486e+02
## PEX5 3.960741e-03 1.916151e-02 2.312225e-02 1.715291e+01
## SETBP1 -5.721731e-03 -6.294402e-03 -1.201613e-02 3.115494e+00
## C21orf58 -4.204368e-04 -4.428220e-03 -4.848656e-03 1.457600e+00
## LILRA2 -1.244359e+00 7.712851e-01 -4.730741e-01 4.083333e+02
## HAUS5 1.080355e-02 4.234814e-03 1.503836e-02 4.529125e+00
## ATPAF1 -2.296766e-02 1.326687e-02 -9.700788e-03 1.812850e+01
## SZT2 -5.902995e-02 3.104270e-02 -2.798725e-02 3.904701e+01
## PABPC1L -2.270856e-03 1.181276e-02 9.541899e-03 5.250969e+00
## EPC1 -1.041690e-01 -3.625592e-03 -1.077946e-01 5.822345e+01
## PER3 7.365904e-03 9.158983e-04 8.281803e-03 2.307641e+00
## PGRMC2 1.983531e-02 6.117111e-03 2.595242e-02 2.066249e+01
## BRCA1 2.319669e-02 -3.838159e-02 -1.518490e-02 1.275272e+01
## COX6A1 -2.213369e-01 1.017121e-01 -1.196248e-01 8.649238e+01
## ARL4C 2.902541e-01 -5.967957e-02 2.305745e-01 7.479195e+01
## EPB41L4A 8.162974e-03 -1.932152e-03 6.230822e-03 2.453722e+00
## RPL12 1.897209e+00 6.570975e-01 2.554306e+00 5.833387e+02
## ZNF600 -3.946550e-03 4.361978e-02 3.967323e-02 1.375527e+01
## ATP5PB -2.217252e-01 2.664636e-01 4.473844e-02 1.443309e+02
## NEDD4L 3.450457e-03 5.475310e-03 8.925766e-03 2.270617e+00
## FBXO21 1.340520e-02 1.070082e-02 2.410602e-02 8.232648e+00
## EPAS1 -4.506243e-02 5.549212e-02 1.042969e-02 8.852375e+00
## THEMIS2 -8.940848e-01 2.552003e-01 -6.388845e-01 3.447426e+02
## TRMT10B 1.065259e-02 -2.114199e-03 8.538387e-03 5.860305e+00
## BPTF -1.382998e-01 1.017425e-01 -3.655727e-02 4.924442e+01
## RHOC 1.953559e-01 1.588254e-01 3.541813e-01 6.498898e+01
## SLC37A3 -3.201902e-01 1.287988e-01 -1.913914e-01 6.159147e+01
## CDC42SE1 -2.802841e+00 -5.061908e-02 -2.853460e+00 1.095522e+03
## BTBD7 -3.471537e-02 3.301969e-02 -1.695686e-03 1.779174e+01
## KBTBD7 -2.856595e-01 3.733702e-01 8.771067e-02 5.448483e+01
## GBP4 2.872495e-01 -5.124909e-01 -2.252415e-01 7.451168e+01
## MIPEP 4.548462e-03 1.373220e-03 5.921682e-03 2.268847e+00
## ZNF835 2.320092e-03 -1.559543e-03 7.605489e-04 4.630805e-01
## COG2 2.215669e-02 8.145492e-03 3.030218e-02 1.609079e+01
## DDX55 1.131400e-02 5.989252e-03 1.730325e-02 8.583832e+00
## LONP2 -1.685075e-01 1.660961e-02 -1.518978e-01 4.934011e+01
## ACTB -2.343521e+01 8.252559e+00 -1.518265e+01 7.242785e+03
## PACRGL 7.588331e-03 -2.524665e-03 5.063666e-03 2.894725e+00
## TNPO2 -2.596797e-02 3.549166e-02 9.523689e-03 2.371625e+01
## CPED1 6.350876e-03 1.081023e-02 1.716110e-02 3.810962e+00
## IRF2 -5.102134e-01 4.308568e-02 -4.671277e-01 1.772945e+02
## PRR3 1.196260e-02 -5.089856e-05 1.191170e-02 6.114441e+00
## MRPL47 -2.631803e-02 4.851870e-02 2.220067e-02 1.964833e+01
## SHB 7.272354e-03 -1.058556e-02 -3.313209e-03 8.395800e-01
## STAMBPL1 5.785890e-03 8.704037e-03 1.448993e-02 5.675234e+00
## CPT1B 1.541926e-01 -1.951443e-01 -4.095169e-02 6.383463e+01
## GAB3 -6.780485e-02 6.322655e-02 -4.578301e-03 4.478420e+01
## PSEN1 -3.018583e-01 -7.172784e-02 -3.735861e-01 1.682538e+02
## FUNDC1 1.827455e-03 -9.672006e-03 -7.844550e-03 6.446288e+00
## NRSN2 -3.068961e-03 4.421435e-03 1.352475e-03 7.842421e-01
## PLEKHA8 -6.245032e-03 1.660235e-02 1.035732e-02 8.093103e+00
## HPCAL1 -1.110494e-01 2.499351e-02 -8.605593e-02 3.853351e+01
## SAMD1 1.187261e-02 3.003617e-02 4.190877e-02 1.268671e+01
## SLC2A4RG 3.345738e-02 2.098989e-02 5.444727e-02 1.031328e+01
## GTPBP10 -1.236872e-02 2.059422e-02 8.225501e-03 1.402532e+01
## PAICS 2.582805e-02 2.786781e-02 5.369586e-02 2.055779e+01
## KDM6A -1.725443e-02 -1.237799e-01 -1.410343e-01 5.067786e+01
## ZNF675 -4.293789e-03 1.237778e-02 8.083990e-03 4.432537e+00
## TMEM169 -1.801972e-02 -1.812175e-03 -1.983189e-02 4.208475e+00
## ABCD4 3.400584e-02 9.506830e-03 4.351267e-02 1.887275e+01
## MEN1 3.558725e-02 -3.429332e-03 3.215792e-02 1.135054e+01
## LUC7L3 2.568490e-01 1.107944e-02 2.679285e-01 1.695693e+02
## ARF5 -4.944686e-01 3.672235e-01 -1.272450e-01 1.345374e+02
## WDR19 -1.291982e-02 1.408141e-02 1.161589e-03 6.445123e+00
## TADA1 1.339624e-02 -5.842897e-03 7.553347e-03 6.346924e+00
## SSB 7.706653e-02 -9.283448e-02 -1.576795e-02 4.612113e+01
## TSPAN32 6.020735e-02 -3.531284e-02 2.489451e-02 1.292532e+01
## DAGLB 2.516474e-02 3.353338e-02 5.869812e-02 2.410453e+01
## MT1X -1.032195e-03 -2.057782e-02 -2.161002e-02 4.868083e+00
## CALR -8.087929e-01 3.669490e-01 -4.418439e-01 2.375524e+02
## GGA3 -3.980915e-02 -3.220584e-02 -7.201499e-02 6.413841e+01
## BCL2L2 1.164654e-02 -2.024042e-02 -8.593884e-03 1.026324e+01
## ATG4A -2.142145e-02 1.729105e-02 -4.130401e-03 1.336205e+01
## ANP32A -7.961453e-01 -3.910342e-01 -1.187180e+00 4.827591e+02
## TIAM2 -3.848545e-02 6.271367e-02 2.422822e-02 7.356959e+00
## METTL8 1.558853e-02 -2.111701e-03 1.347683e-02 5.222829e+00
## RAD18 7.666126e-03 2.646149e-03 1.031227e-02 5.186807e+00
## M6PR 1.512442e-01 4.306650e-02 1.943107e-01 1.332286e+02
## MAML1 -1.584562e-01 9.698511e-02 -6.147113e-02 6.333276e+01
## PALM2AKAP2 -7.135370e-02 2.671010e-02 -4.464360e-02 1.760557e+01
## DHRS7B -3.151462e-02 1.739629e-04 -3.134066e-02 1.486559e+01
## TNPO1 -2.484768e-01 2.376715e-01 -1.080523e-02 8.426560e+01
## ATCAY -3.597157e-03 1.204157e-03 -2.393000e-03 1.035197e+00
## ARPC5L -5.270114e-02 2.436284e-02 -2.833829e-02 2.124422e+01
## RAC1 -6.812057e-01 4.335922e-01 -2.476135e-01 3.019677e+02
## NR4A1 1.159276e-02 1.867491e-02 3.026768e-02 4.219090e+00
## ZFP36L2 6.271111e-01 -9.724471e-01 -3.453361e-01 3.180416e+02
## AHNAK -5.645206e-01 1.317021e+00 7.525005e-01 3.254884e+02
## ZNF823 1.745315e-03 3.316021e-03 5.061336e-03 1.761592e+00
## ABCC4 -7.315556e-02 3.862489e-02 -3.453066e-02 1.594838e+01
## PET117 7.484834e-03 3.267046e-03 1.075188e-02 4.415426e+00
## CNOT9 3.534916e-02 -5.557730e-03 2.979143e-02 2.827073e+01
## GFI1B -6.404898e-02 4.162316e-02 -2.242582e-02 1.463501e+01
## PAFAH2 -4.091300e-03 2.460602e-02 2.051472e-02 1.397273e+01
## TCEA1 7.955093e-02 -1.115581e-02 6.839512e-02 6.240201e+01
## ZYG11A -2.109645e-03 -1.000181e-04 -2.209663e-03 4.719396e-01
## TPMT 1.164242e-02 -5.066287e-02 -3.902045e-02 2.270739e+01
## NFATC1 2.431493e-02 4.557831e-03 2.887276e-02 1.200746e+01
## H3-2 3.137172e-02 -3.123120e-02 1.405162e-04 1.029473e+01
## POM121C -1.745453e-02 5.148122e-02 3.402669e-02 2.972891e+01
## TIMM17A -3.959499e-02 -2.630757e-03 -4.222575e-02 2.894081e+01
## GLRX3 1.235527e-02 2.123316e-02 3.358844e-02 2.045328e+01
## MRPL35 1.539041e-02 1.222626e-02 2.761667e-02 1.649109e+01
## SGSM3 2.253055e-02 5.396612e-02 7.649667e-02 2.723509e+01
## SAT1 -4.140510e+00 -1.845145e+00 -5.985654e+00 1.618243e+03
## ZNF396 -2.993483e-02 9.279512e-03 -2.065532e-02 6.177583e+00
## S100P -1.503402e+00 2.745273e+00 1.241871e+00 4.020522e+02
## CCNDBP1 -7.286921e-01 3.965312e-01 -3.321609e-01 2.342592e+02
## NDUFA1 -2.846207e-01 2.739480e-01 -1.067266e-02 1.163793e+02
## CHID1 -3.679965e-02 4.680794e-02 1.000829e-02 1.074409e+01
## ABHD17B 8.719535e-03 1.671726e-02 2.543680e-02 1.388921e+01
## PDLIM5 -6.123012e-02 -5.741925e-03 -6.697205e-02 3.178956e+01
## RRS1 1.109755e-02 -1.869083e-03 9.228463e-03 4.683742e+00
## PICALM -1.504578e+00 7.570611e-01 -7.475172e-01 4.716139e+02
## UQCR11 -1.682197e-01 2.172412e-01 4.902155e-02 5.132063e+01
## ZADH2 -4.629568e-02 1.865474e-03 -4.443020e-02 2.709480e+01
## OLIG1 -3.750518e-02 5.523443e-03 -3.198173e-02 7.606766e+00
## SH3GLB1 -1.940336e+00 8.110793e-01 -1.129256e+00 4.123005e+02
## TRMT44 5.485981e-03 -4.393370e-04 5.046644e-03 2.894960e+00
## ZNF606 -1.565746e-03 5.913254e-03 4.347508e-03 2.971470e+00
## ARID5A -2.569111e-01 -9.175653e-02 -3.486676e-01 6.795398e+01
## SGTB -1.135640e-01 -4.826656e-02 -1.618305e-01 4.475529e+01
## ZNF217 -4.192443e-01 3.933762e-01 -2.586813e-02 1.417172e+02
## FBXL14 4.934109e-03 -1.452532e-03 3.481577e-03 1.908680e+00
## CSNK2A2 -8.456244e-03 9.917727e-03 1.461484e-03 8.966703e+00
## UBE2D3 -9.449150e-01 -7.297561e-01 -1.674671e+00 6.757402e+02
## SPPL3 -4.098226e-02 5.244139e-02 1.145913e-02 3.709478e+01
## ZNF195 1.339564e-02 3.710331e-03 1.710597e-02 9.969340e+00
## STAG3 1.622686e-02 1.263531e-03 1.749039e-02 6.670020e+00
## MAPK14 -2.809608e+00 1.161094e+00 -1.648515e+00 5.893701e+02
## RACK1 1.238249e+00 8.979938e-01 2.136243e+00 6.840549e+02
## TNFAIP3 1.754692e-01 -9.666381e-01 -7.911689e-01 1.119108e+02
## PSME4 -8.184069e-03 5.877214e-02 5.058807e-02 5.103910e+01
## PPP3R1 -4.412259e-01 2.133358e-01 -2.278901e-01 1.396288e+02
## IFFO2 3.755049e-02 6.141300e-03 4.369179e-02 1.348389e+01
## GCSH -7.510932e-03 7.292679e-03 -2.182533e-04 2.159640e+00
## PEX19 9.176879e-04 4.723426e-02 4.815195e-02 4.544849e+01
## TRAM2 -7.753998e-02 4.998143e-02 -2.755855e-02 1.831649e+01
## CBFB 6.333128e-02 -5.552867e-02 7.802606e-03 5.376841e+01
## ABHD10 4.060967e-02 -1.018325e-02 3.042642e-02 1.903502e+01
## HIF1AN -9.801467e-02 9.350915e-02 -4.505526e-03 6.708500e+01
## PCNX1 -1.137810e+00 7.137817e-01 -4.240281e-01 2.675124e+02
## COTL1 -3.264850e+00 1.906021e+00 -1.358830e+00 1.129329e+03
## TSEN34 -3.724565e-01 1.004790e-01 -2.719774e-01 1.151767e+02
## FDFT1 1.043161e-03 -8.645829e-02 -8.541513e-02 7.956175e+01
## PSKH1 -2.146931e-02 3.450695e-02 1.303763e-02 1.908057e+01
## LAMB3 2.376518e-03 -7.573054e-03 -5.196536e-03 7.699130e-01
## PLAAT4 3.621056e-01 -2.410703e-01 1.210353e-01 6.513321e+01
## C4orf33 -2.423968e-02 -1.908674e-02 -4.332641e-02 1.505182e+01
## SGSM2 1.512841e-02 4.320717e-02 5.833558e-02 2.487688e+01
## CCDC7 1.291858e-03 1.482134e-03 2.773992e-03 7.844147e-01
## SMYD5 1.908267e-02 1.811393e-02 3.719659e-02 9.047072e+00
## GCNT1 -7.771034e-03 -4.239730e-02 -5.016833e-02 1.954592e+01
## RUBCNL -1.314514e-01 1.271410e-01 -4.310456e-03 4.688556e+01
## MTFMT -3.765996e-02 3.292462e-02 -4.735339e-03 1.633654e+01
## MANEA -2.544812e-03 2.654515e-02 2.400034e-02 8.094560e+00
## TPRG1L -2.371043e-02 2.823815e-01 2.586710e-01 1.210911e+02
## TNRC18 -5.247697e-02 -2.657358e-02 -7.905055e-02 3.905694e+01
## ENTPD1 -6.287679e-01 -7.320301e-02 -7.019709e-01 2.323041e+02
## HGSNAT -5.561929e-02 2.599163e-02 -2.962766e-02 2.727658e+01
## TGFBR2 -8.427000e-01 6.555911e-01 -1.871088e-01 2.893311e+02
## RABL3 1.232236e-02 6.825468e-03 1.914783e-02 1.204163e+01
## MX1 1.429300e+00 -2.464585e+00 -1.035285e+00 2.609680e+02
## XK -2.606529e-02 4.456438e-02 1.849909e-02 1.068010e+01
## ATRX -1.576370e-01 1.126176e-01 -4.501937e-02 5.216689e+01
## ZNF324 -5.510711e-03 1.029293e-02 4.782219e-03 8.047725e+00
## ABCE1 5.505403e-02 1.030142e-02 6.535544e-02 2.419615e+01
## NCOA4 -3.604215e-02 1.925569e+00 1.889526e+00 7.194169e+02
## CLIP4 3.228229e-02 -4.816421e-02 -1.588192e-02 1.803065e+01
## STK39 3.162592e-02 -3.965675e-03 2.766025e-02 1.322061e+01
## CALCOCO2 -4.716411e-02 -1.582596e-01 -2.054237e-01 1.120548e+02
## KIAA0586 -2.701910e-02 2.001827e-02 -7.000828e-03 1.176112e+01
## POLD3 -2.560763e-02 -3.992765e-02 -6.553528e-02 2.332787e+01
## BMT2 -1.113867e-01 7.451151e-02 -3.687523e-02 3.492539e+01
## GRSF1 5.433034e-02 -1.653877e-02 3.779157e-02 4.494072e+01
## SNW1 5.343412e-02 -1.036498e-01 -5.021571e-02 7.616587e+01
## FAM13A -5.901701e-02 -5.027753e-02 -1.092945e-01 4.393031e+01
## ZNF664 5.920389e-02 -8.826984e-03 5.037690e-02 2.391788e+01
## PIK3CB -1.468729e-01 9.101506e-02 -5.585788e-02 5.083445e+01
## USP39 3.826298e-02 5.882029e-03 4.414501e-02 4.384130e+01
## VIPAS39 -3.231469e-02 4.685205e-03 -2.762948e-02 2.215763e+01
## MAGT1 -8.662798e-02 4.264145e-02 -4.398653e-02 5.773482e+01
## SPIDR -1.172661e-01 -7.240013e-02 -1.896662e-01 6.693904e+01
## C1orf52 1.519705e-02 -2.890048e-02 -1.370342e-02 1.886957e+01
## ARHGAP26 -8.490642e-01 1.716562e-01 -6.774080e-01 2.507187e+02
## MEF2C -1.004691e-01 3.374256e-02 -6.672651e-02 3.559694e+01
## MNAT1 7.040448e-04 7.818721e-03 8.522766e-03 3.857901e+00
## RAB11FIP5 2.845340e-02 -1.984650e-02 8.606896e-03 6.286490e+00
## PLCH2 3.177909e-03 4.953987e-03 8.131896e-03 1.426267e+00
## CENPC 3.079302e-02 -3.643262e-02 -5.639602e-03 1.437690e+01
## BID -2.265960e-01 2.895033e-01 6.290728e-02 1.278205e+02
## ATP5PF -1.186866e-01 1.179800e-01 -7.066794e-04 5.988244e+01
## CLIC1 -4.317423e+00 1.310541e+00 -3.006882e+00 1.415129e+03
## ARRDC3 5.541358e-01 -8.899594e-01 -3.358236e-01 2.450188e+02
## TM9SF2 -5.963398e-01 1.017748e-01 -4.945651e-01 2.606292e+02
## MARCHF8 -1.568458e-01 2.722399e-01 1.153941e-01 1.044733e+02
## KIF16B 4.025207e-03 -1.277610e-02 -8.750890e-03 4.099268e+00
## ATP1A1 2.861329e-01 -8.489923e-02 2.012337e-01 1.653623e+02
## CNOT10 -2.946793e-02 1.566252e-02 -1.380541e-02 2.285406e+01
## PSMD5 -4.326031e-02 2.076953e-02 -2.249078e-02 1.972056e+01
## TPP1 5.925759e-02 -3.687848e-01 -3.095272e-01 2.078114e+02
## EIF2AK4 3.467579e-02 -3.154913e-02 3.126658e-03 1.596136e+01
## PDE6B 7.592301e-03 2.459240e-03 1.005154e-02 2.813572e+00
## GGH -4.001457e-02 4.132997e-02 1.315403e-03 9.187290e+00
## STX1A -4.405473e-03 -1.011604e-02 -1.452152e-02 2.022411e+00
## NBR1 -4.166933e-01 1.177489e-01 -2.989444e-01 1.864490e+02
## TOPBP1 -5.288847e-02 -5.092022e-02 -1.038087e-01 4.816746e+01
## IKBKB -5.359863e-02 4.184374e-02 -1.175488e-02 5.838402e+01
## OASL 1.174824e+00 -1.168038e+00 6.786244e-03 1.697173e+02
## PPP2R2D -1.952518e-02 3.464976e-02 1.512458e-02 2.671073e+01
## PAQR8 2.681172e-02 8.032038e-03 3.484376e-02 1.408185e+01
## CARS1 -9.895646e-02 1.300137e-03 -9.765632e-02 6.239311e+01
## GPSM3 -2.432135e+00 1.839346e+00 -5.927892e-01 7.229320e+02
## XPA 1.339292e-02 7.010765e-04 1.409400e-02 7.300014e+00
## PDIK1L 1.069183e-02 3.524824e-03 1.421666e-02 6.609427e+00
## YY1 4.488491e-02 1.033072e-01 1.481921e-01 1.061422e+02
## S100A10 4.949923e-01 -3.789036e-01 1.160887e-01 1.530519e+02
## MED12 -8.512917e-02 1.049206e-01 1.979142e-02 3.561850e+01
## TBC1D19 2.436926e-03 7.824868e-04 3.219413e-03 8.518202e-01
## DNM1 2.357084e-03 -5.455272e-03 -3.098188e-03 1.105496e+00
## RSRC1 8.371981e-03 -1.204899e-02 -3.677013e-03 9.438392e+00
## EBAG9 8.185101e-03 8.095189e-03 1.628029e-02 9.674041e+00
## EIF2S2 -1.044793e-01 9.862270e-02 -5.856558e-03 8.237589e+01
## SLC29A1 -7.282979e-02 8.473723e-02 1.190744e-02 1.245679e+01
## LIN9 4.872512e-03 2.770631e-04 5.149575e-03 1.900948e+00
## UCP2 4.767368e-02 5.593954e-01 6.070691e-01 1.718684e+02
## APEH -3.915981e-02 1.751664e-01 1.360066e-01 7.373473e+01
## SEH1L 1.481602e-02 3.972990e-03 1.878901e-02 1.152119e+01
## MFF -1.236190e-01 -9.786333e-03 -1.334053e-01 5.614621e+01
## ANKRD11 -6.041316e-02 5.489467e-02 -5.518489e-03 2.938689e+01
## MTMR6 -1.305689e-01 -1.367449e-01 -2.673137e-01 8.538179e+01
## NUDT4B -4.181566e-02 1.051019e-01 6.328628e-02 4.657074e+01
## ARMC1 2.263424e-02 -4.444750e-04 2.218976e-02 1.237289e+01
## FLT3 1.282598e-01 -1.808733e-01 -5.261345e-02 2.876724e+01
## CAPZB -8.978433e-01 5.543796e-01 -3.434637e-01 4.180101e+02
## KBTBD12 -2.376360e-03 1.357824e-04 -2.240578e-03 7.005416e-01
## LRRC37A2 -7.640789e-02 5.528233e-02 -2.112556e-02 1.994807e+01
## FAM24B 5.003992e-03 1.149603e-03 6.153595e-03 1.323815e+00
## ARNT -1.174524e-01 6.310537e-02 -5.434705e-02 5.080378e+01
## RAB31 -1.514736e+00 6.008443e-01 -9.138916e-01 4.434606e+02
## NQO2 -3.879223e-01 4.372656e-01 4.934333e-02 1.127941e+02
## NPTXR 1.049197e-02 -4.667154e-03 5.824813e-03 1.926910e+00
## BCDIN3D -1.189674e-02 7.463291e-03 -4.433452e-03 7.572589e+00
## PIK3CG -2.570966e-01 5.266207e-03 -2.518304e-01 1.022963e+02
## ALPK3 1.683063e-02 -6.986455e-03 9.844178e-03 2.586811e+00
## ZNF235 2.325328e-04 6.595861e-03 6.828394e-03 2.830500e+00
## SLC25A15 4.502599e-03 4.955362e-03 9.457960e-03 4.782599e+00
## FAM204A -6.016345e-02 5.329746e-02 -6.865989e-03 3.519883e+01
## MAD2L1 -4.960770e-03 2.216961e-02 1.720884e-02 5.855353e+00
## HEG1 -3.152848e-02 -6.033999e-03 -3.756248e-02 7.144559e+00
## NOL6 2.072095e-02 1.325911e-02 3.398006e-02 1.347230e+01
## IFT74 4.005713e-03 3.599771e-03 7.605484e-03 3.128460e+00
## MAP4 -5.038631e-02 -1.389974e-03 -5.177628e-02 2.614075e+01
## MYL6 -9.269999e+00 8.075952e+00 -1.194047e+00 2.073412e+03
## RPL13A 5.754205e+00 2.315680e+00 8.069886e+00 1.394651e+03
## GAA -1.235144e-01 2.005110e-01 7.699661e-02 5.734432e+01
## ZC3H13 -7.781240e-02 6.411704e-02 -1.369535e-02 3.932553e+01
## WDFY3 -5.651963e-01 -1.634252e-01 -7.286215e-01 1.682302e+02
## IMPDH2 8.263297e-02 4.079617e-02 1.234291e-01 3.910486e+01
## IL6ST -1.766396e-01 -1.037027e-02 -1.870099e-01 7.018728e+01
## TYSND1 2.673450e-02 9.665809e-03 3.640030e-02 9.054637e+00
## MCTP2 -7.030703e-01 5.594526e-02 -6.471250e-01 1.752196e+02
## PLEKHA2 -1.738845e-01 7.467137e-03 -1.664174e-01 1.049547e+02
## CCDC73 3.118868e-03 -2.195406e-03 9.234618e-04 7.304740e-01
## TLK2 -6.437768e-02 -3.566309e-02 -1.000408e-01 4.990203e+01
## SLC30A1 -1.811693e-02 -1.033719e-01 -1.214889e-01 4.042959e+01
## LSM4 5.191901e-02 2.030885e-02 7.222786e-02 2.153803e+01
## OSBPL1A -1.393892e-01 8.054487e-02 -5.884436e-02 1.740877e+01
## PTCRA -3.312736e-03 -2.507280e-02 -2.838553e-02 5.659121e+00
## TRIM3 3.960132e-03 -7.639110e-03 -3.678978e-03 3.822182e+00
## CFH 8.823329e-03 -2.175410e-02 -1.293077e-02 3.732047e+00
## MSRB3 -3.872261e-02 -8.517746e-03 -4.724035e-02 1.287583e+01
## TSG101 -1.458723e-01 1.147940e-01 -3.107827e-02 7.139237e+01
## IGSF6 -1.203466e+00 -1.554216e-01 -1.358888e+00 4.148170e+02
## PSMB4 -3.279865e-01 4.436709e-01 1.156844e-01 1.868292e+02
## FLVCR1 1.099098e-02 1.507965e-02 2.607063e-02 8.733407e+00
## MARCHF1 -1.495172e-01 -7.769115e-02 -2.272084e-01 6.637082e+01
## KCTD12 -1.776311e-01 -2.455040e-01 -4.231351e-01 1.711084e+02
## PSMB5 -2.519990e-02 4.664397e-02 2.144407e-02 2.749116e+01
## UBE2S -3.779934e-02 6.598404e-02 2.818470e-02 1.172744e+01
## RPL35 6.020777e-01 9.414195e-01 1.543497e+00 2.659602e+02
## MED16 -3.760845e-02 6.188710e-02 2.427866e-02 1.375212e+01
## MDM2 -6.320595e-01 3.100519e-01 -3.220076e-01 1.458468e+02
## UBE2D1 -7.697479e-01 6.309023e-02 -7.066577e-01 2.007128e+02
## H3-5 3.467512e-03 -3.341461e-03 1.260507e-04 1.055441e+00
## MUSTN1 -1.554503e-02 -1.631407e-03 -1.717644e-02 3.420320e+00
## NACC1 -2.797128e-02 5.477569e-02 2.680440e-02 2.547819e+01
## RASA4 9.984306e-02 -2.661287e-03 9.718177e-02 2.263613e+01
## TAF12 -1.029498e-01 1.425397e-02 -8.869584e-02 4.557888e+01
## SLC26A8 -1.773029e-01 9.623937e-02 -8.106358e-02 3.280014e+01
## LSS 9.845964e-03 2.587002e-02 3.571598e-02 1.240258e+01
## CEBPB -1.055540e+00 2.370884e-01 -8.184521e-01 2.601786e+02
## PDE1B -2.590801e-02 -7.477440e-03 -3.338545e-02 1.109671e+01
## NAA15 3.216088e-02 -1.573206e-03 3.058767e-02 1.702195e+01
## NLRX1 -7.938469e-02 4.901365e-02 -3.037105e-02 2.722800e+01
## NSMF 2.783656e-02 1.548619e-02 4.332275e-02 1.117961e+01
## RALGAPA2 -5.409368e-01 1.897033e-01 -3.512335e-01 1.203591e+02
## ERGIC1 -1.433209e+00 -3.458088e-01 -1.779018e+00 4.417975e+02
## DYSF -2.206919e+00 2.990785e-01 -1.907840e+00 5.954399e+02
## ARMC8 -6.412024e-02 -1.753770e-02 -8.165794e-02 4.799737e+01
## ZNF518A -8.944078e-02 3.548348e-02 -5.395730e-02 3.079097e+01
## ZBTB40 -1.368121e-03 5.115905e-02 4.979093e-02 2.014307e+01
## DGCR8 1.227912e-02 1.976615e-02 3.204527e-02 1.380512e+01
## LMNB2 4.190270e-03 1.412406e-02 1.831433e-02 7.061056e+00
## CNOT7 3.138025e-02 5.166535e-02 8.304560e-02 6.337168e+01
## MTHFD2L 1.212650e-02 -6.532711e-03 5.593784e-03 5.595890e+00
## SMG7 -1.792591e-01 2.719121e-03 -1.765399e-01 9.100097e+01
## MRPS35 2.675567e-02 1.511723e-03 2.826739e-02 1.763253e+01
## ZBTB10 1.465740e-02 -1.980955e-03 1.267645e-02 3.453734e+00
## ZNF319 -9.296575e-02 1.124379e-02 -8.172197e-02 3.434698e+01
## AZIN1 -9.825992e-02 -2.766887e-01 -3.749486e-01 1.233670e+02
## ZNF507 -6.176323e-03 2.218580e-02 1.600947e-02 1.056775e+01
## HSPA6 1.620858e+00 -5.178963e-01 1.102962e+00 4.356609e+02
## PARP11 1.055874e-03 -4.815895e-02 -4.710308e-02 1.214285e+01
## TFRC -7.603208e-02 1.264266e-01 5.039449e-02 2.410539e+01
## NAA35 -7.414784e-03 1.321955e-02 5.804769e-03 7.548764e+00
## ASTE1 1.099377e-02 7.035664e-03 1.802944e-02 1.076920e+01
## CCDC47 -1.062670e-01 6.691229e-02 -3.935470e-02 4.736312e+01
## AKNA -2.612727e-01 -2.234705e-01 -4.847432e-01 2.827824e+02
## UBA6 -7.665532e-02 1.633374e-02 -6.032158e-02 3.674265e+01
## EME1 -3.771100e-03 3.017616e-03 -7.534835e-04 8.328714e-01
## TICAM1 -2.035918e-02 6.957014e-03 -1.340217e-02 6.145860e+00
## USP30 1.136990e-02 -1.405304e-02 -2.683136e-03 6.638637e+00
## ANXA3 -2.262494e+00 8.238169e-01 -1.438678e+00 3.691590e+02
## DNAJB12 -6.068171e-02 6.804190e-02 7.360189e-03 4.418852e+01
## ZDHHC21 1.491082e-02 1.920038e-03 1.683085e-02 5.760158e+00
## BRAF -1.285933e-01 9.857206e-02 -3.002125e-02 4.499659e+01
## G0S2 -1.506377e-02 6.826405e-01 6.675767e-01 5.966629e+01
## RNF125 6.215838e-02 -6.328376e-03 5.583001e-02 1.959192e+01
## ZNF561 -2.256817e-02 2.811691e-02 5.548741e-03 1.776645e+01
## PTCD3 4.353506e-02 1.558129e-02 5.911635e-02 2.926265e+01
## RXRA -3.306575e-01 3.368967e-01 6.239156e-03 1.622886e+02
## UVRAG -1.515012e-02 -3.512462e-02 -5.027474e-02 2.743571e+01
## STK26 1.532224e-01 -7.691162e-02 7.631081e-02 5.509762e+01
## ZNF326 2.968279e-02 -3.074120e-02 -1.058411e-03 1.020628e+01
## IPO5 4.709883e-02 1.859383e-02 6.569266e-02 3.162216e+01
## IFT22 -1.844365e-03 4.997731e-03 3.153366e-03 2.551056e+00
## RAB5B -5.122683e-01 2.284121e-01 -2.838562e-01 2.084221e+02
## EXD2 3.708762e-03 3.693390e-03 7.402152e-03 3.007315e+00
## MAGI3 -2.732123e-03 4.805834e-03 2.073712e-03 1.382790e+00
## ZDHHC3 -2.754411e-01 1.075612e-01 -1.678799e-01 9.470606e+01
## UQCRC1 -2.231866e-01 2.706079e-01 4.742137e-02 1.053646e+02
## ADGRE2 -7.688573e-01 -3.720722e-01 -1.140929e+00 2.879717e+02
## RNF216 -3.092281e-02 6.002577e-02 2.910296e-02 4.148618e+01
## RXRB -8.555281e-02 9.158972e-02 6.036911e-03 7.544514e+01
## VWA7 -6.298212e-03 6.317396e-03 1.918412e-05 1.576206e+00
## TAF1D 1.756281e-02 1.318077e-02 3.074358e-02 1.788070e+01
## AGPAT2 -1.182228e-01 7.263722e-02 -4.558557e-02 2.308495e+01
## CHIC1 6.085079e-03 8.353358e-03 1.443844e-02 3.770503e+00
## TLE5 8.960002e-01 1.640427e-02 9.124045e-01 1.823832e+02
## CDH13 -9.912860e-04 -3.345277e-03 -4.336563e-03 1.223656e+00
## ATP6V1C2 -1.638276e-03 -1.955971e-03 -3.594246e-03 1.150193e+00
## TRIM45 2.172706e-03 -3.611132e-04 1.811592e-03 5.921216e-01
## TEX10 2.429464e-03 8.410824e-03 1.084029e-02 6.772992e+00
## MRPL36 -1.366612e-02 2.188020e-02 8.214079e-03 7.410391e+00
## DMWD 1.026207e-03 7.584613e-03 8.610820e-03 3.073776e+00
## ALKBH4 8.467288e-03 1.433073e-03 9.900361e-03 5.552355e+00
## DENND4A -6.721396e-02 5.951183e-02 -7.702131e-03 3.262415e+01
## PPP1R32 -1.971078e-04 5.323490e-03 5.126382e-03 1.814344e+00
## GASK1B -1.565724e-01 -7.142750e-02 -2.279999e-01 6.410414e+01
## MDFIC 6.099826e-02 3.420610e-02 9.520436e-02 2.995412e+01
## SDHAF3 -7.103583e-02 -5.254804e-03 -7.629064e-02 1.710311e+01
## ARL4A -3.206528e-02 1.988031e-01 1.667378e-01 2.641880e+01
## ASMTL -2.887222e-02 4.595356e-02 1.708134e-02 1.662093e+01
## CGRRF1 -6.908541e-03 3.078656e-02 2.387801e-02 1.518254e+01
## CTRC -6.388845e-03 1.263827e-03 -5.125018e-03 1.410472e+00
## FKBP1A -7.220853e-01 8.060818e-03 -7.140244e-01 3.553127e+02
## TRIM13 1.452195e-02 1.776893e-02 3.229087e-02 2.231341e+01
## KLRK1 2.378959e-01 3.127036e-02 2.691663e-01 5.867996e+01
## BICD2 -2.375383e-01 1.700494e-01 -6.748888e-02 9.351679e+01
## ST7 1.373588e-02 -9.763760e-03 3.972118e-03 6.817270e+00
## USB1 -4.619503e-01 -1.006889e-01 -5.626392e-01 1.800077e+02
## LSM3 -2.146821e-02 6.813671e-02 4.666850e-02 3.305508e+01
## RAD51B -1.167012e-02 2.983430e-03 -8.686694e-03 3.979839e+00
## NEIL1 9.352114e-03 -1.914512e-02 -9.793010e-03 4.627217e+00
## TBL1X -2.931580e-01 2.440343e-01 -4.912369e-02 1.142195e+02
## ABCA10 3.059072e-03 -3.451410e-04 2.713931e-03 9.879803e-01
## USP6NL -2.469995e-02 1.657542e-03 -2.304240e-02 9.523376e+00
## FOSL2 -4.151696e-01 -5.036416e-01 -9.188112e-01 2.477300e+02
## TRIM5 -1.502727e-02 -1.333626e-01 -1.483898e-01 3.731099e+01
## MINK1 -6.692821e-02 8.828179e-02 2.135358e-02 6.387061e+01
## VGLL4 2.038530e-02 -1.628036e-02 4.104931e-03 8.831687e+00
## ZNF831 9.231486e-03 2.313698e-02 3.236846e-02 8.340936e+00
## ZNF184 2.287096e-03 1.009082e-02 1.237792e-02 6.234763e+00
## ARMCX1 3.252037e-03 -1.336840e-03 1.915197e-03 8.779261e-01
## SLC27A2 1.376912e-02 -5.965038e-04 1.317261e-02 1.900271e+00
## JRKL -6.761891e-03 2.163440e-02 1.487251e-02 8.698328e+00
## FOXP3 1.289802e-02 -2.405892e-03 1.049213e-02 1.938904e+00
## AHCYL1 -6.384178e-02 6.383022e-02 -1.156546e-05 6.135505e+01
## EZR 2.025591e-01 -1.026916e-01 9.986751e-02 1.031035e+02
## HSF4 8.172318e-03 6.750352e-05 8.239822e-03 2.233804e+00
## WDR54 1.894009e-02 8.687314e-03 2.762740e-02 4.946373e+00
## PLCG2 -4.195297e-01 1.569696e-01 -2.625601e-01 1.786917e+02
## SERPINI1 -1.236290e-02 6.135055e-03 -6.227845e-03 3.234833e+00
## SIKE1 -4.451269e-02 3.120033e-02 -1.331236e-02 2.195678e+01
## IFI44 6.859992e-01 -1.915023e+00 -1.229024e+00 2.112690e+02
## SF3B6 -1.686435e-01 1.272889e-01 -4.135459e-02 7.006267e+01
## IQCB1 1.441515e-02 1.472907e-02 2.914422e-02 1.512658e+01
## CA4 -4.356620e-01 -5.276817e-02 -4.884301e-01 8.189053e+01
## SMPDL3B 8.057312e-03 -4.257321e-03 3.799991e-03 1.661997e+00
## ST3GAL1 -1.194856e-01 1.209011e-01 1.415513e-03 7.788900e+01
## SYPL1 5.976144e-02 -2.721240e-02 3.254904e-02 3.694223e+01
## DGKG 5.429490e-03 -1.544961e-02 -1.002012e-02 7.272686e+00
## RHOF 5.483554e-02 5.513517e-02 1.099707e-01 3.008967e+01
## NIBAN2 2.338035e-02 -8.507726e-02 -6.169691e-02 2.647380e+01
## NPLOC4 -8.593057e-02 1.119555e-01 2.602490e-02 7.647469e+01
## SNRNP27 -2.365714e-02 -1.584810e-02 -3.950524e-02 2.234867e+01
## CYP2D7 5.073871e-03 4.322487e-03 9.396358e-03 2.242797e+00
## PHC1 3.173170e-02 8.036696e-03 3.976840e-02 1.038068e+01
## WASF2 -3.653667e-01 3.864483e-01 2.108165e-02 1.898628e+02
## UAP1 -7.016195e-02 3.419023e-02 -3.597172e-02 1.591913e+01
## PRRT4 2.420708e-02 -3.705399e-02 -1.284691e-02 3.160280e+00
## GART 2.779223e-02 -4.489207e-02 -1.709984e-02 2.536515e+01
## PCSK6 5.316386e-02 -7.472606e-02 -2.156220e-02 1.377966e+01
## MAFF 3.618938e-02 -9.390210e-02 -5.771272e-02 1.082519e+01
## PVRIG 2.876326e-02 7.064581e-03 3.582784e-02 7.353762e+00
## SMAD9 1.295434e-03 1.208268e-03 2.503702e-03 6.085009e-01
## ERVW-1 1.258731e-03 -2.003560e-03 -7.448294e-04 7.535986e-01
## RBPJ -5.136669e-01 -6.079986e-03 -5.197469e-01 2.021146e+02
## EEF2K 6.613537e-03 1.017882e-02 1.679236e-02 6.392789e+00
## PCMT1 -3.811021e-01 2.212734e-01 -1.598287e-01 1.193037e+02
## ENTPD4 -1.473045e-01 1.024190e-01 -4.488548e-02 7.385286e+01
## ZNF280C 4.437216e-03 -1.070963e-03 3.366254e-03 1.340856e+00
## TRA2B 1.512546e-01 -1.178764e-01 3.337822e-02 8.579271e+01
## SUCLA2 2.524699e-02 -1.262677e-02 1.262022e-02 1.166638e+01
## FUNDC2 -3.186442e-02 1.241079e-01 9.224350e-02 4.428829e+01
## TAS2R40 -2.319880e-02 -6.806266e-03 -3.000507e-02 3.421208e+00
## SLK -2.549607e-01 -9.215837e-02 -3.471190e-01 1.020743e+02
## BRAP 1.516061e-02 -4.330256e-02 -2.814196e-02 2.636844e+01
## OAF 2.501076e-04 -2.888685e-02 -2.863674e-02 1.065974e+01
## WAPL -1.560970e-01 5.423753e-02 -1.018595e-01 7.478111e+01
## RPL29 1.038442e+00 4.193410e-01 1.457783e+00 4.046779e+02
## L3MBTL1 6.613430e-03 -2.273798e-03 4.339632e-03 3.145873e+00
## RALB -1.637680e+00 4.689282e-01 -1.168751e+00 4.480193e+02
## MTERF3 5.134197e-03 8.298669e-03 1.343287e-02 6.848636e+00
## NCOA3 -2.221453e-01 1.215967e-01 -1.005486e-01 8.477207e+01
## IRF5 7.576099e-02 -1.427013e-01 -6.694028e-02 5.233745e+01
## MAP3K5 -2.140191e-01 -8.847568e-02 -3.024948e-01 9.358860e+01
## BST2 4.070129e-01 -5.583935e-01 -1.513806e-01 1.017421e+02
## DCAF1 1.434915e-02 1.570408e-02 3.005323e-02 1.141610e+01
## DCTN4 -4.524624e-02 -7.961102e-02 -1.248573e-01 5.106143e+01
## WDFY2 -4.157481e-02 -5.296357e-02 -9.453838e-02 4.830733e+01
## FPGS 2.158222e-02 3.417244e-02 5.575466e-02 1.260087e+01
## DDOST -2.245092e-01 1.292969e-01 -9.521227e-02 1.107109e+02
## FAM120A 1.853680e-01 -2.931652e-01 -1.077971e-01 1.535071e+02
## SELENOF -3.370483e-01 1.082266e-01 -2.288216e-01 1.690182e+02
## EIF4G3 -1.054645e-01 -6.570016e-02 -1.711647e-01 5.492458e+01
## WASHC4 -4.173002e-01 5.317486e-02 -3.641253e-01 1.371519e+02
## HELZ2 1.812677e-01 -3.314981e-01 -1.502304e-01 6.268090e+01
## RBM45 2.151181e-03 6.130054e-03 8.281234e-03 5.431043e+00
## RASGRP3 5.597582e-04 1.772545e-02 1.828521e-02 5.629790e+00
## TAFA2 -2.733149e-02 1.473815e-02 -1.259335e-02 4.147867e+00
## CD4 3.260337e-01 8.926997e-02 4.153036e-01 1.056741e+02
## RDH11 -6.743473e-03 -4.503083e-02 -5.177430e-02 3.625642e+01
## FBXO30 -1.035809e-01 4.383969e-02 -5.974122e-02 2.694311e+01
## ZNF787 -6.977654e-02 5.295742e-02 -1.681912e-02 2.024726e+01
## TBL1XR1 -1.790035e-01 1.552130e-01 -2.379051e-02 9.219307e+01
## SNRPD3 1.185787e-02 7.133807e-02 8.319594e-02 6.628231e+01
## CFL1 -2.649030e+00 1.412599e+00 -1.236432e+00 9.282552e+02
## TLE3 -4.016054e-02 -4.476100e-01 -4.877705e-01 1.980045e+02
## PRRC2B -1.594222e-02 8.328996e-02 6.734774e-02 6.279664e+01
## RRAGA -7.567462e-02 1.863420e-02 -5.704042e-02 4.553846e+01
## BRIP1 2.356922e-03 -6.266504e-03 -3.909582e-03 2.504174e+00
## MTMR12 -4.759447e-02 2.801670e-02 -1.957777e-02 2.617007e+01
## POLR2M 4.602230e-02 -2.659057e-02 1.943173e-02 1.955286e+01
## EIF2B5 2.848946e-02 2.065317e-02 4.914263e-02 3.024790e+01
## LARP4B -1.301409e-01 5.098777e-02 -7.915312e-02 5.929567e+01
## PPM1L -5.179856e-04 -1.658635e-02 -1.710434e-02 9.154108e+00
## C12orf57 9.375728e-02 5.768368e-02 1.514410e-01 1.789455e+01
## SCRN3 -2.180605e-02 2.237063e-03 -1.956899e-02 1.065063e+01
## FAM126B -1.113381e+00 6.079965e-01 -5.053848e-01 2.257905e+02
## RSRP1 -2.397548e-01 -1.289488e-01 -3.687036e-01 1.457294e+02
## ANO10 -1.008543e-01 9.123368e-02 -9.620587e-03 3.054735e+01
## BUB1 -4.015690e-02 2.778055e-02 -1.237634e-02 7.294151e+00
## CD40 2.513664e-02 -1.603103e-02 9.105607e-03 7.647977e+00
## MMACHC -1.326327e-03 -3.784592e-03 -5.110919e-03 1.995317e+00
## ARF1 -4.181291e-01 -1.353530e-01 -5.534820e-01 3.146706e+02
## TRIP10 9.893596e-04 -4.682432e-03 -3.693072e-03 1.798087e+00
## MICAL1 -6.541808e-01 3.042824e-01 -3.498983e-01 2.019733e+02
## DCAF17 1.773790e-02 3.029879e-03 2.076778e-02 7.498758e+00
## PGP -3.890676e-03 4.283011e-02 3.893944e-02 1.401906e+01
## C1orf112 2.539175e-03 4.619089e-03 7.158264e-03 4.741065e+00
## FARS2 2.131615e-02 -2.988597e-03 1.832756e-02 7.004654e+00
## SLC24A1 2.990654e-03 2.627532e-03 5.618185e-03 2.435534e+00
## CLCC1 -1.155589e-02 1.546689e-02 3.911001e-03 8.700595e+00
## RP2 -3.533598e-01 -6.824388e-02 -4.216037e-01 1.112537e+02
## DCTD 4.201674e-02 -6.707415e-03 3.530933e-02 2.067305e+01
## ANKRD52 -9.993475e-03 2.819083e-02 1.819735e-02 2.173494e+01
## SLC19A3 -9.052712e-04 -1.025353e-03 -1.930624e-03 3.363713e-01
## SLC25A33 9.883395e-03 -5.984065e-03 3.899331e-03 4.794238e+00
## KCNK6 -3.834938e-02 7.327301e-02 3.492363e-02 3.633130e+01
## CISD1 1.755066e-02 -8.745535e-03 8.805126e-03 6.009505e+00
## NEURL4 -2.363114e-03 2.672885e-02 2.436573e-02 1.358058e+01
## C1orf159 2.422690e-03 6.217272e-03 8.639963e-03 1.311305e+00
## SSBP1 2.996083e-02 1.429673e-02 4.425756e-02 2.958228e+01
## SHTN1 5.751777e-02 -5.739027e-02 1.275067e-04 2.005978e+01
## ETV6 -7.054789e-02 -1.268088e-01 -1.973567e-01 8.193528e+01
## GGT1 -4.204765e-02 8.273221e-02 4.068456e-02 1.670209e+01
## TIRAP -2.393642e-02 1.366863e-02 -1.026779e-02 9.808354e+00
## FAM210B -3.581929e-02 1.142064e-01 7.838712e-02 3.510323e+01
## PPP1R10 -1.560706e-01 7.473093e-02 -8.133972e-02 6.993938e+01
## COPS5 -7.404137e-02 1.409826e-03 -7.263154e-02 6.141610e+01
## LRRK2 -2.407651e+00 -5.245710e-01 -2.932222e+00 7.133897e+02
## ZNF626 -1.045231e-02 9.791942e-03 -6.603656e-04 3.949292e+00
## EEF1AKNMT 3.408252e-02 -1.103702e-02 2.304550e-02 2.280202e+01
## SLC7A6OS 2.865991e-02 9.180080e-03 3.783999e-02 2.928399e+01
## RWDD2A 1.467452e-04 6.680773e-03 6.827518e-03 2.837339e+00
## APLP2 -8.655188e-01 -2.779669e-01 -1.143486e+00 5.637653e+02
## CRADD -3.846729e-02 1.620821e-02 -2.225908e-02 1.304779e+01
## CLSTN3 -8.040722e-02 -3.609147e-03 -8.401636e-02 3.450509e+01
## TXNDC9 -5.175358e-02 2.468833e-02 -2.706524e-02 2.859592e+01
## MSH3 -1.998304e-02 1.705416e-02 -2.928875e-03 9.293651e+00
## NASP 2.854151e-02 -1.445661e-01 -1.160246e-01 7.158241e+01
## CAMK2G -2.164179e-01 2.754808e-01 5.906294e-02 1.231632e+02
## GAMT 8.827973e-03 2.791475e-03 1.161945e-02 1.547255e+00
## MRPS31 1.900540e-03 1.379486e-02 1.569540e-02 1.314650e+01
## PAK2 -5.734843e-01 -7.999450e-03 -5.814837e-01 2.705991e+02
## SPDL1 6.036441e-03 4.093039e-03 1.012948e-02 3.972153e+00
## RAB39B -8.555293e-03 1.531404e-02 6.758743e-03 6.234750e+00
## SYTL3 -4.663634e-02 -5.878990e-02 -1.054262e-01 4.117625e+01
## CARMIL1 -2.534732e-03 5.994772e-03 3.460040e-03 1.526675e+00
## MSTO1 3.690768e-03 2.957502e-02 3.326578e-02 1.373613e+01
## TIMM44 -1.128296e-02 2.274781e-02 1.146485e-02 7.465000e+00
## CXCR6 2.857240e-02 -7.691580e-04 2.780325e-02 5.596761e+00
## MTM1 -6.919690e-02 3.747623e-02 -3.172067e-02 2.286117e+01
## CCT7 9.834308e-02 3.496354e-02 1.333066e-01 9.343295e+01
## SLFN13 -2.938258e-02 -7.066648e-03 -3.644923e-02 1.754261e+01
## TSN 4.324446e-02 -1.006701e-02 3.317745e-02 3.828124e+01
## IMPA2 -2.377098e-01 1.502726e-01 -8.743717e-02 5.859757e+01
## KIAA1586 -6.041728e-03 7.631836e-03 1.590109e-03 4.083829e+00
## RFK 2.274834e-02 -1.299539e-02 9.752950e-03 1.325006e+01
## AMZ2 -4.137692e-02 6.569161e-02 2.431468e-02 5.441483e+01
## ARID1A -2.178640e-01 1.637353e-01 -5.412872e-02 9.428265e+01
## RYK 1.594834e-02 1.223483e-02 2.818317e-02 1.976626e+01
## PTPRS 2.809526e-03 -8.272608e-03 -5.463082e-03 1.541531e+00
## UGGT1 -1.246488e-01 1.061928e-01 -1.845602e-02 6.859581e+01
## ARHGEF9 1.285382e-03 1.342686e-02 1.471224e-02 5.623920e+00
## KCTD2 -1.393965e-01 1.106953e-01 -2.870123e-02 7.947674e+01
## STX17 -6.073076e-03 -4.484991e-02 -5.092299e-02 1.881522e+01
## NDUFA12 1.994627e-02 -4.874434e-02 -2.879806e-02 2.583655e+01
## MROH6 -5.130606e-02 2.340457e-02 -2.790149e-02 8.219432e+00
## CCNT1 2.419822e-02 -8.150339e-02 -5.730517e-02 3.231011e+01
## BCL2A1 -3.215177e+00 1.051536e+00 -2.163641e+00 6.626831e+02
## ADRB2 -1.437475e-02 -2.827951e-02 -4.265426e-02 1.692708e+01
## HCK -2.415111e+00 1.149615e+00 -1.265495e+00 7.718585e+02
## FAM161B -6.382102e-04 -3.648926e-03 -4.287136e-03 1.805740e+00
## SREBF2 -4.470379e-02 -3.489541e-02 -7.959920e-02 4.336545e+01
## CATSPER1 -2.444420e-02 8.734725e-03 -1.570947e-02 5.990464e+00
## DGCR2 -1.405395e-01 1.939867e-01 5.344718e-02 9.258023e+01
## ABHD3 -1.315925e-01 -2.860857e-01 -4.176782e-01 1.245124e+02
## CELA1 2.788523e-03 5.102473e-04 3.298770e-03 7.517942e-01
## IL1RAP -3.376143e-01 -9.699657e-02 -4.346108e-01 7.357417e+01
## PALB2 1.034996e-02 1.277027e-03 1.162699e-02 4.903372e+00
## ANKRD16 -4.476051e-03 5.672577e-03 1.196526e-03 2.132169e+00
## BAG1 -1.545356e-01 2.501450e-01 9.560935e-02 7.074354e+01
## ZNF354B 7.404078e-03 3.704920e-03 1.110900e-02 3.504459e+00
## RILPL2 -3.975342e-01 -7.135815e-02 -4.688923e-01 1.660401e+02
## ATP5F1C -1.303191e-01 1.486368e-01 1.831765e-02 8.908569e+01
## OAS2 5.150888e-01 -2.104527e+00 -1.589438e+00 2.480898e+02
## PRELID1 -7.072537e-01 3.535808e-01 -3.536729e-01 2.591440e+02
## DEF6 -3.642458e-01 1.097544e-01 -2.544914e-01 1.396421e+02
## ZNF543 2.794436e-03 2.152383e-03 4.946819e-03 2.365031e+00
## H6PD -9.426459e-02 -9.417915e-02 -1.884437e-01 7.491019e+01
## TBC1D15 -1.142309e-01 -4.997873e-02 -1.642096e-01 6.722682e+01
## ZNF442 5.005144e-03 -8.529530e-03 -3.524385e-03 1.684580e+00
## DBI -1.709998e-01 1.226885e-01 -4.831123e-02 9.614689e+01
## MTERF2 -4.695471e-03 1.054744e-02 5.851967e-03 4.866048e+00
## GLIPR1L2 1.109146e-02 -7.874990e-03 3.216466e-03 3.583693e+00
## COQ8A 8.634730e-03 8.647980e-02 9.511453e-02 3.535968e+01
## RHBDD1 -1.492870e-02 1.743305e-02 2.504345e-03 1.197727e+01
## DYNC2LI1 -6.764994e-03 8.222951e-03 1.457957e-03 2.159046e+00
## ZNF689 9.102074e-03 -8.976194e-03 1.258800e-04 6.033468e+00
## SS18 -4.493855e-02 2.698440e-02 -1.795415e-02 3.520226e+01
## RIF1 -5.359903e-02 5.042733e-02 -3.171700e-03 2.654692e+01
## MNT -4.162220e-02 -4.376329e-06 -4.162658e-02 2.408578e+01
## ZNF106 -5.857603e-01 3.272501e-01 -2.585101e-01 1.783189e+02
## LYRM4 3.461750e-02 1.620819e-03 3.623832e-02 9.831868e+00
## INMT -3.087600e-03 2.070248e-03 -1.017352e-03 8.303052e-01
## ZNF107 -5.599069e-02 1.171735e-01 6.118278e-02 2.145570e+01
## TUBD1 9.212893e-03 -2.015192e-03 7.197701e-03 5.654593e+00
## ANKS3 6.267508e-03 4.188825e-03 1.045633e-02 2.066478e+00
## CHD3 1.418894e-01 4.978427e-02 1.916737e-01 1.170389e+02
## FYCO1 -3.350922e-02 1.952654e-02 -1.398268e-02 1.209850e+01
## MIER2 1.130759e-02 -1.118274e-02 1.248520e-04 4.815209e+00
## LSM8 -1.173828e-02 5.492177e-02 4.318348e-02 3.452969e+01
## KANK1 -5.579075e-03 9.339229e-03 3.760154e-03 2.070511e+00
## FBL 2.763717e-01 7.714378e-02 3.535155e-01 7.987545e+01
## DOT1L -2.287007e-02 1.731564e-02 -5.554437e-03 8.184520e+00
## FHOD1 -9.288660e-02 8.253012e-02 -1.035648e-02 4.207058e+01
## TMEM179B -3.794141e-02 4.042318e-02 2.481769e-03 2.938063e+01
## TXLNB -2.807573e-03 -3.508984e-03 -6.316558e-03 1.520963e+00
## COCH 1.712317e-02 3.822869e-03 2.094604e-02 2.617697e+00
## WDR44 -4.558698e-02 9.786100e-03 -3.580088e-02 1.693130e+01
## ING4 -4.109545e-02 9.283870e-02 5.174325e-02 6.131172e+01
## WWP1 3.144102e-02 2.963775e-02 6.107877e-02 2.278139e+01
## HIF1A 2.697785e-01 -1.003883e+00 -7.341042e-01 1.863594e+02
## PDP2 5.383826e-03 4.933903e-03 1.031773e-02 4.398036e+00
## USP5 6.549499e-02 2.855222e-02 9.404721e-02 2.845790e+01
## DNTTIP1 -2.566073e-01 1.975441e-01 -5.906318e-02 9.929863e+01
## FNBP1 -1.812353e-01 2.025975e-01 2.136225e-02 1.328199e+02
## PRPF4 1.594226e-02 -4.641579e-03 1.130068e-02 1.785673e+01
## SLC35F5 -5.749555e-02 5.887111e-02 1.375554e-03 2.968134e+01
## PPA1 8.948714e-02 -7.743500e-02 1.205215e-02 4.188936e+01
## ZNF556 3.083985e-03 -5.128557e-03 -2.044572e-03 2.034055e+00
## TMEM101 -1.052468e-02 4.464618e-02 3.412150e-02 2.204445e+01
## ZSWIM1 9.764489e-03 -1.574986e-04 9.606990e-03 7.615563e+00
## SYNE3 -8.104047e-02 3.033316e-02 -5.070731e-02 3.786733e+01
## IQGAP2 -4.768645e-01 -2.811055e-02 -5.049750e-01 1.575463e+02
## CDC40 -9.593083e-02 -9.421618e-03 -1.053524e-01 4.925982e+01
## PRMT5 -3.338966e-02 -1.239287e-01 -1.573183e-01 5.266366e+01
## ICAM4 3.974897e-03 5.478472e-03 9.453369e-03 1.913649e+00
## LCMT1 2.603059e-02 3.540157e-03 2.957075e-02 1.328296e+01
## TBCB -8.795339e-02 1.114386e-01 2.348520e-02 4.505945e+01
## KMT5C 3.361721e-03 6.691190e-03 1.005291e-02 2.773191e+00
## POLDIP2 -7.817457e-02 5.950963e-02 -1.866494e-02 5.467295e+01
## SGSH -7.882316e-02 2.133816e-02 -5.748500e-02 2.312408e+01
## PPP1R16B 4.397854e-02 3.878256e-02 8.276110e-02 2.489865e+01
## TMEM250 -6.094760e-02 8.379534e-02 2.284774e-02 3.189680e+01
## ZNF783 3.126695e-02 -1.357854e-03 2.990909e-02 1.092345e+01
## PCED1A 8.051602e-02 2.851366e-02 1.090297e-01 2.710439e+01
## LMNA -3.596433e-02 -3.388959e-02 -6.985392e-02 1.345381e+01
## HMGN1 1.590891e-01 -1.400058e-01 1.908324e-02 8.939024e+01
## MRPL48 1.773706e-02 2.124247e-02 3.897953e-02 1.356353e+01
## ADNP -6.354507e-02 1.058340e-01 4.228890e-02 6.282001e+01
## TKT -1.762904e+00 1.830222e+00 6.731871e-02 7.439736e+02
## SEPHS1 -3.538686e-03 2.543203e-02 2.189334e-02 1.593709e+01
## YBEY -8.834369e-03 1.615772e-02 7.323351e-03 5.374931e+00
## TCF7L1 -4.968960e-04 -3.031044e-03 -3.527940e-03 1.225529e+00
## KRT18 5.754549e-03 -5.805101e-03 -5.055161e-05 1.647307e+00
## WSB2 -2.296500e-01 1.665285e-01 -6.312148e-02 7.690823e+01
## VPS26B -5.922135e-03 6.784510e-02 6.192296e-02 6.621201e+01
## FBXO22 -7.617460e-03 1.174199e-02 4.124532e-03 1.132537e+01
## NUFIP2 -2.994428e-01 -6.210060e-02 -3.615434e-01 1.414914e+02
## RPL13 3.782588e+00 5.714824e-01 4.354070e+00 6.604025e+02
## PLAUR 2.587697e-01 -3.846765e-01 -1.259068e-01 1.135696e+02
## ACADVL -3.652510e-01 1.850088e-01 -1.802422e-01 1.710647e+02
## EIF4G1 -8.257285e-02 -2.081134e-02 -1.033842e-01 7.173805e+01
## RPIA 1.323578e-02 4.852396e-02 6.175974e-02 2.336381e+01
## CCDC28A -9.122487e-02 -2.890783e-02 -1.201327e-01 5.357829e+01
## FCAR -6.786565e-01 -2.458830e-01 -9.245395e-01 1.922674e+02
## EEF1AKMT4 -1.097860e-02 6.235951e-03 -4.742652e-03 2.324986e+00
## KCNMB3 -6.620537e-04 2.395126e-03 1.733072e-03 8.327175e-01
## KIF21A -5.099186e-03 1.304125e-02 7.942068e-03 2.907779e+00
## CUX1 -8.164919e-02 1.289053e-01 4.725606e-02 6.459601e+01
## FAM120AOS -7.615327e-02 3.257440e-02 -4.357887e-02 4.912268e+01
## CHUK -1.521020e-01 1.787389e-02 -1.342281e-01 5.250260e+01
## EMB -1.210218e+00 7.333971e-01 -4.768210e-01 3.046368e+02
## PEX1 -2.723886e-03 2.252648e-02 1.980259e-02 1.211659e+01
## SMG8 -2.742973e-02 4.298069e-03 -2.313166e-02 1.581192e+01
## CCDC59 3.923525e-02 -5.397966e-02 -1.474441e-02 1.911247e+01
## C14orf119 -9.225563e-02 8.303195e-02 -9.223674e-03 5.973198e+01
## TIMP2 -5.000723e-01 1.577679e-03 -4.984946e-01 2.218156e+02
## FBXO11 -2.016550e-01 -4.898336e-04 -2.021448e-01 9.060033e+01
## ENDOV -2.577746e-03 6.516123e-03 3.938376e-03 1.723702e+00
## TTC9C -2.685814e-02 1.690938e-02 -9.948756e-03 1.471378e+01
## ZNF589 3.835219e-02 -1.064784e-02 2.770436e-02 1.498147e+01
## SEPTIN11 9.317885e-03 2.272801e-02 3.204590e-02 1.473516e+01
## SMARCC1 -5.275692e-02 6.910605e-02 1.634913e-02 4.893877e+01
## SLX4 -8.349813e-03 3.219120e-03 -5.130693e-03 4.563487e+00
## SENP1 -2.514966e-02 -2.499389e-03 -2.764905e-02 1.516419e+01
## ACSS1 1.749811e-02 8.741612e-02 1.049142e-01 4.322780e+01
## MRPS5 5.832225e-02 -9.812777e-03 4.850947e-02 3.331341e+01
## MAPK1 -1.117101e+00 6.045011e-01 -5.126000e-01 3.393134e+02
## BTG1 1.043653e+00 -1.230373e+00 -1.867203e-01 5.154294e+02
## BLOC1S3 -2.061695e-02 3.746498e-03 -1.687045e-02 1.518008e+01
## RHEBL1 -9.601099e-04 5.096230e-03 4.136121e-03 1.580365e+00
## SLC25A30 -1.227491e-02 2.005559e-02 7.780675e-03 8.382502e+00
## FGF5 1.573204e-03 -2.702345e-03 -1.129141e-03 7.318120e-01
## SLC36A4 -4.732842e-02 -2.283278e-02 -7.016120e-02 2.164185e+01
## CYREN -9.536668e-03 -3.143444e-02 -4.097111e-02 2.893711e+01
## REC8 -1.901970e-02 -3.822171e-02 -5.724141e-02 1.908573e+01
## HHEX -2.159715e-01 4.890032e-02 -1.670712e-01 7.004587e+01
## CCDC189 7.659915e-04 4.486030e-03 5.252022e-03 1.440579e+00
## RRNAD1 7.552963e-03 1.533109e-02 2.288406e-02 1.148474e+01
## COL7A1 7.448499e-03 1.101980e-02 1.846830e-02 4.085517e+00
## MAK -9.503970e-02 -5.700610e-02 -1.520458e-01 2.787657e+01
## RHOT1 -1.798264e-01 -6.072070e-02 -2.405471e-01 8.289552e+01
## CST3 1.076302e+00 -1.518157e+00 -4.418553e-01 2.747407e+02
## SGPP1 2.049169e-02 -2.964959e-02 -9.157892e-03 1.346877e+01
## BRF1 1.496419e-02 5.845073e-03 2.080926e-02 5.506299e+00
## PIGBOS1 -3.320978e-02 2.367833e-02 -9.531443e-03 1.692936e+01
## TMEM181 4.258556e-04 2.794133e-02 2.836719e-02 1.954557e+01
## CXCL1 4.339654e-02 1.542973e-01 1.976939e-01 3.454451e+01
## NRBF2 -8.278645e-01 2.346455e-01 -5.932190e-01 2.125853e+02
## S100A9 -1.122125e+02 9.261693e+01 -1.959561e+01 2.237284e+04
## USE1 1.953075e-02 1.196712e-02 3.149787e-02 6.885723e+00
## TET3 -1.831039e-01 4.993682e-02 -1.331671e-01 6.028762e+01
## NUMBL 3.591300e-04 1.118818e-02 1.154731e-02 3.963068e+00
## TUBGCP6 3.746629e-04 6.096948e-02 6.134415e-02 2.662201e+01
## DPYSL2 2.927264e-02 -9.100442e-02 -6.173179e-02 3.895147e+01
## PEX3 8.139395e-03 2.257233e-03 1.039663e-02 4.776405e+00
## MERTK -3.792458e-02 -1.578997e-02 -5.371455e-02 7.715857e+00
## ZSCAN22 -2.809902e-03 4.664495e-03 1.854593e-03 3.138334e+00
## HCAR2 4.469015e-01 -6.854778e-01 -2.385763e-01 1.700514e+02
## CCDC103 -1.317782e-03 -1.691623e-03 -3.009404e-03 6.951312e-01
## PSMA7 -2.196892e-01 3.187451e-01 9.905594e-02 1.303205e+02
## IGFL4 -3.016980e-02 2.617913e-02 -3.990672e-03 7.592843e+00
## GCDH 1.091832e-02 2.135481e-02 3.227313e-02 9.478377e+00
## RAVER2 -2.900053e-03 -2.004667e-02 -2.294672e-02 2.646560e+00
## ZNF564 4.273471e-02 -3.727425e-02 5.460464e-03 2.169378e+01
## FXR2 -4.262785e-03 3.784186e-02 3.357907e-02 3.413960e+01
## CHST10 5.314315e-03 -2.872437e-03 2.441878e-03 1.399187e+00
## PRDM15 -1.139641e-02 1.344576e-02 2.049350e-03 5.140959e+00
## ACVR2A 1.048400e-02 5.735007e-04 1.105750e-02 3.539209e+00
## DUSP13 -2.986906e-03 2.303740e-02 2.005049e-02 3.363361e+00
## RUSF1 1.172391e-02 4.601273e-02 5.773664e-02 2.130184e+01
## APCDD1 6.202725e-05 -5.189179e-03 -5.127152e-03 1.398181e+00
## AARS2 6.902782e-03 8.937274e-03 1.584006e-02 5.916466e+00
## FUT11 -1.048374e-02 6.136700e-03 -4.347045e-03 3.035451e+00
## URB2 1.549002e-03 5.158391e-03 6.707393e-03 2.695909e+00
## GNAI1 2.161657e-03 -1.632321e-03 5.293359e-04 6.216153e-01
## PDGFA -2.374432e-03 -4.515418e-03 -6.889850e-03 1.549436e+00
## PROSER1 -3.993015e-02 5.345778e-03 -3.458437e-02 1.777570e+01
## WDR77 3.070347e-02 -4.099617e-03 2.660385e-02 1.618780e+01
## SAP30L -6.713802e-02 1.170330e-01 4.989501e-02 5.221876e+01
## BTD -1.665585e-02 5.930324e-03 -1.072552e-02 1.482130e+01
## KIF3B -2.779766e-02 3.337575e-02 5.578089e-03 2.297306e+01
## EHMT2 3.660423e-02 1.152885e-02 4.813308e-02 1.617896e+01
## DDX51 1.452429e-02 1.398846e-02 2.851274e-02 9.271125e+00
## DPEP2 -4.910952e-01 6.173014e-01 1.262062e-01 2.067073e+02
## PRKCE -6.592561e-02 9.744662e-03 -5.618095e-02 1.138614e+01
## ARID4A -2.006853e-01 2.888750e-02 -1.717978e-01 7.010847e+01
## CLASP1 -8.856032e-02 5.769947e-02 -3.086084e-02 3.223553e+01
## C15orf65 -3.740286e-03 1.870864e-03 -1.869422e-03 6.997892e-01
## BCKDK -1.211572e-01 9.344225e-02 -2.771493e-02 3.943819e+01
## MPP1 -4.515880e-01 4.718491e-01 2.026110e-02 1.783064e+02
## MPP7 -2.162333e-01 8.720323e-02 -1.290301e-01 4.850902e+01
## PARP2 -5.798444e-03 1.292771e-02 7.129262e-03 5.247251e+00
## CCDC174 -2.092367e-02 -1.655863e-02 -3.748230e-02 2.590804e+01
## NEK11 4.957471e-03 -2.520278e-03 2.437194e-03 1.383815e+00
## SCPEP1 -4.359375e-01 1.879378e-01 -2.479997e-01 1.518379e+02
## DCAF7 -8.737978e-02 7.641543e-02 -1.096436e-02 5.670916e+01
## EARS2 -1.287103e-03 1.015759e-02 8.870484e-03 4.734827e+00
## FANCG -7.918954e-03 1.670600e-02 8.787047e-03 6.806998e+00
## PITPNC1 2.030630e-02 4.695950e-02 6.726579e-02 3.865031e+01
## STK25 5.605872e-02 1.691366e-02 7.297239e-02 2.402542e+01
## GK5 -1.689257e-02 -2.037444e-02 -3.726702e-02 1.328367e+01
## EIF2S3 1.489190e-01 -1.748387e-01 -2.591965e-02 1.613336e+02
## GLO1 3.037186e-02 5.577979e-03 3.594984e-02 2.510294e+01
## ACBD5 -5.440374e-02 1.214596e-02 -4.225778e-02 2.471806e+01
## LRRFIP1 -7.152335e-01 -3.290319e-01 -1.044265e+00 3.617374e+02
## DAZAP1 6.376795e-02 -8.812572e-03 5.495538e-02 2.823407e+01
## SH3BP5L -2.396084e-01 1.194396e-01 -1.201688e-01 9.975082e+01
## MOCOS -4.093607e-04 -1.350831e-03 -1.760192e-03 4.271451e-01
## EIF3F 2.285325e-01 1.166047e-01 3.451372e-01 1.320393e+02
## KIF2C -1.581099e-02 2.519750e-02 9.386514e-03 4.777789e+00
## COMMD3 -3.105606e-02 6.953631e-02 3.848025e-02 3.070907e+01
## RAPGEF1 -1.147221e-01 1.111760e-01 -3.546146e-03 7.936141e+01
## CDK9 -3.511893e-02 6.480562e-02 2.968670e-02 3.864615e+01
## TMEM141 -3.571760e-02 9.607282e-02 6.035522e-02 2.084994e+01
## AKAP11 -3.548120e-03 4.655451e-02 4.300639e-02 1.744752e+01
## JKAMP -1.310406e-01 6.998938e-02 -6.105126e-02 5.577756e+01
## C1QBP 4.394867e-02 2.500137e-02 6.895004e-02 3.306797e+01
## RAPGEF3 6.105457e-03 -2.036891e-03 4.068565e-03 1.549326e+00
## VTA1 -4.707941e-02 -3.202612e-02 -7.910553e-02 4.318209e+01
## NKIRAS2 -1.390147e-02 -4.518290e-02 -5.908437e-02 4.461011e+01
## ZDHHC23 -4.921131e-03 7.111260e-03 2.190129e-03 2.360267e+00
## SERGEF 2.865997e-02 -2.630036e-03 2.602994e-02 8.533401e+00
## TCAF2 -9.949702e-02 1.925638e-02 -8.024064e-02 2.656047e+01
## SOD1 1.300547e-01 4.232004e-02 1.723747e-01 5.595933e+01
## SNRPD2 1.687470e-01 1.754850e-01 3.442321e-01 8.833110e+01
## MAN2B2 -3.072417e-02 -1.769317e-02 -4.841734e-02 3.755041e+01
## SLC39A10 5.381812e-03 1.369560e-02 1.907741e-02 6.681266e+00
## APLF 7.264724e-04 3.155268e-03 3.881741e-03 1.866259e+00
## CUL4A -9.943480e-03 3.993433e-02 2.999085e-02 3.796653e+01
## GTPBP6 -4.679744e-04 3.788614e-02 3.741817e-02 7.632038e+00
## TOR2A -2.097924e-02 3.978576e-02 1.880651e-02 1.410818e+01
## RPL11 2.937695e+00 1.811316e+00 4.749011e+00 1.135183e+03
## TNFAIP1 -1.236183e-02 -3.650245e-04 -1.272685e-02 1.269672e+01
## GSTO1 -4.847572e-01 1.617055e-01 -3.230517e-01 1.312624e+02
## PGK1 -2.480530e+00 7.742679e-01 -1.706262e+00 7.811096e+02
## CSGALNACT1 -4.012347e-01 6.421451e-02 -3.370202e-01 7.920192e+01
## LYRM2 1.912504e-02 9.615469e-04 2.008658e-02 1.971103e+01
## ZNF695 -6.790086e-04 -1.188671e-03 -1.867680e-03 3.530827e-01
## IFNGR2 -4.026228e-01 -7.987546e-01 -1.201377e+00 4.803249e+02
## PPTC7 -1.262839e-01 2.030951e-01 7.681127e-02 7.583239e+01
## ANKZF1 -3.219080e-02 8.508124e-02 5.289045e-02 4.886287e+01
## LYN -2.611419e+00 5.306847e-01 -2.080735e+00 8.823854e+02
## EPOR -2.203640e-02 2.791185e-02 5.875454e-03 1.253851e+01
## MAP2K1 2.859548e-03 -1.055486e-01 -1.026891e-01 6.019692e+01
## BLNK -1.289843e-02 2.127756e-02 8.379135e-03 6.007002e+00
## DHRS13 -2.846111e-01 -2.136482e-02 -3.059759e-01 7.013825e+01
## PMEPA1 1.033685e-03 3.646358e-03 4.680043e-03 1.146733e+00
## TMEM150A 9.863142e-03 7.599898e-03 1.746304e-02 4.694545e+00
## LEPROTL1 8.644205e-02 -4.456721e-02 4.187484e-02 6.965362e+01
## STARD7 1.657421e-01 -1.727996e-02 1.484621e-01 9.569628e+01
## CENPM -1.113168e-02 9.670976e-03 -1.460700e-03 1.562284e+00
## SMPD1 6.666691e-02 -1.089256e-02 5.577436e-02 2.351892e+01
## PRKAR1A -1.248214e+00 2.011282e-01 -1.047085e+00 3.971073e+02
## COPE -2.811750e-01 2.079505e-01 -7.322448e-02 7.238238e+01
## LSM14B -3.120917e-02 3.153128e-02 3.221096e-04 2.292891e+01
## INKA1 -7.820488e-03 -4.873314e-03 -1.269380e-02 2.117202e+00
## CAPN7 1.143780e-02 3.105555e-02 4.249335e-02 2.147013e+01
## CDC14C 1.110876e-03 7.985651e-04 1.909441e-03 5.022775e-01
## VCAN -1.044869e+00 -9.897426e-01 -2.034612e+00 4.646399e+02
## TXK 1.391914e-02 1.732655e-02 3.124569e-02 7.489825e+00
## STK32C -3.057208e-03 2.350267e-02 2.044546e-02 6.029002e+00
## ZSWIM9 1.023235e-02 -1.562758e-03 8.669590e-03 4.628154e+00
## TRIP12 -4.204707e-01 7.253892e-02 -3.479318e-01 1.994150e+02
## ITGB2 -1.657181e+00 7.386534e-02 -1.583315e+00 8.217875e+02
## MEGF8 6.673085e-03 4.796736e-03 1.146982e-02 5.122226e+00
## AK4 -5.698793e-03 -3.452174e-03 -9.150967e-03 2.908255e+00
## PPAN 2.198299e-02 -6.835304e-03 1.514769e-02 5.320803e+00
## TSPOAP1 3.793216e-02 -1.480380e-02 2.312836e-02 1.075033e+01
## CREBZF 4.092748e-02 4.536261e-02 8.629010e-02 4.700764e+01
## FBXL12 1.104325e-02 -1.622353e-02 -5.180277e-03 7.876426e+00
## TMEM251 -1.540801e-02 2.262600e-02 7.217982e-03 1.509416e+01
## ATAD1 -2.875564e-02 -6.124395e-03 -3.488004e-02 2.214331e+01
## ERF -4.013503e-02 5.481120e-02 1.467617e-02 1.976245e+01
## ANXA11 -1.498822e+00 4.683076e-01 -1.030514e+00 5.232896e+02
## MICAL2 -1.653305e-01 2.317790e-01 6.644844e-02 6.789941e+01
## TFAM -2.009420e-02 4.051618e-02 2.042198e-02 2.412904e+01
## VPS18 4.183281e-02 -1.110296e-01 -6.919674e-02 3.883587e+01
## MYO5A -1.596142e-01 3.667705e-03 -1.559465e-01 6.304867e+01
## NPAP1 4.707074e-04 1.461320e-03 1.932028e-03 5.473161e-01
## PRICKLE1 -4.337157e-03 -1.902084e-03 -6.239241e-03 1.809213e+00
## MARS2 4.028153e-03 5.386214e-03 9.414367e-03 3.196093e+00
## TMEM119 -1.888035e-02 1.155368e-01 9.665642e-02 1.086407e+01
## CPSF7 -1.849120e-01 3.085382e-01 1.236262e-01 1.215978e+02
## ARID3A -1.136505e-01 4.018997e-02 -7.346058e-02 4.474835e+01
## DAG1 -1.282629e-02 6.964303e-03 -5.861988e-03 8.247110e+00
## USO1 -8.058188e-02 7.227885e-02 -8.303027e-03 4.623941e+01
## SWSAP1 -1.291880e-02 9.986291e-03 -2.932505e-03 3.381582e+00
## SMG1 -4.752818e-01 2.615424e-01 -2.137394e-01 1.639072e+02
## PEX26 2.460453e-02 -3.871836e-03 2.073270e-02 1.998112e+01
## LTB 5.752650e-01 1.231389e-01 6.984039e-01 1.145366e+02
## NUDT22 -5.266894e-02 5.034149e-02 -2.327452e-03 1.316011e+01
## ABRAXAS1 1.982078e-03 1.162688e-02 1.360895e-02 7.843159e+00
## CCDC117 -3.887218e-02 -5.117743e-03 -4.398992e-02 2.479243e+01
## SH2B2 -3.721021e-02 -2.671675e-03 -3.988188e-02 1.146082e+01
## BST1 -5.178654e-01 2.930312e-02 -4.885623e-01 1.800107e+02
## GZMA 3.147266e-01 -1.514104e-01 1.633162e-01 7.183677e+01
## CTCF -1.306764e-02 5.172533e-02 3.865769e-02 3.778656e+01
## SLC15A3 -2.112501e-01 5.668751e-02 -1.545626e-01 6.881456e+01
## UBE2R2 -7.171094e-01 3.444284e-01 -3.726809e-01 2.479568e+02
## HMOX2 1.606231e-02 1.078572e-01 1.239195e-01 5.262125e+01
## PFN1 -2.489806e+00 2.612455e+00 1.226487e-01 9.599760e+02
## SUN1 4.317233e-02 5.634163e-03 4.880649e-02 2.087206e+01
## WTAP -3.119827e-01 1.291956e-01 -1.827871e-01 1.610635e+02
## RFX2 -1.113085e-01 8.734526e-02 -2.396325e-02 2.818168e+01
## PSENEN -2.224754e-01 2.324550e-01 9.979584e-03 8.391309e+01
## DVL2 1.583137e-02 7.546988e-03 2.337836e-02 1.237332e+01
## XAF1 -2.473601e-01 -1.174169e+00 -1.421529e+00 1.972448e+02
## C6orf62 5.243051e-01 -2.987917e-01 2.255134e-01 2.739068e+02
## DBNL -6.330186e-01 2.864350e-01 -3.465836e-01 2.778256e+02
## RNF32 9.847252e-04 1.108798e-03 2.093523e-03 6.333576e-01
## TCHP 4.704758e-03 1.981953e-02 2.452428e-02 1.758723e+01
## SNX25 -2.845181e-05 1.368329e-02 1.365484e-02 5.475031e+00
## TFIP11 1.009920e-01 -8.738188e-02 1.361009e-02 5.307094e+01
## NUAK2 -2.722436e-01 1.209086e-01 -1.513350e-01 9.862626e+01
## SPTLC1 -1.037761e-01 -1.744579e-02 -1.212219e-01 6.138518e+01
## EIF1AD -2.650601e-02 4.001896e-03 -2.250411e-02 2.091733e+01
## SNX8 -1.072562e-02 2.432439e-02 1.359877e-02 6.323892e+00
## POLG2 2.683057e-03 3.535672e-03 6.218729e-03 4.241741e+00
## LOC728392 -2.064359e-02 -2.409426e-02 -4.473786e-02 1.788959e+01
## ADAM9 -1.105539e-01 -6.433779e-02 -1.748916e-01 4.478936e+01
## RB1 -1.249699e-01 4.496557e-02 -8.000437e-02 4.613643e+01
## CD52 9.106092e-01 1.339759e+00 2.250369e+00 4.501647e+02
## RAB18 -3.458905e-01 2.693607e-01 -7.652979e-02 1.290470e+02
## PRMT1 -3.098754e-02 1.052139e-01 7.422640e-02 2.990035e+01
## ZNF527 5.479538e-03 6.149697e-04 6.094508e-03 2.639029e+00
## RPUSD2 4.461831e-03 8.258489e-03 1.272032e-02 4.172351e+00
## IFIH1 2.227546e-01 -5.127371e-01 -2.899826e-01 7.607794e+01
## CIITA -2.630955e-02 1.045034e-01 7.819381e-02 3.527696e+01
## IK 1.309018e-01 -1.499277e-01 -1.902592e-02 1.371095e+02
## TIMM22 1.623197e-02 -1.381823e-03 1.485015e-02 8.439289e+00
## PHRF1 -8.102659e-03 2.210607e-02 1.400342e-02 1.260564e+01
## DIAPH1 -3.063434e-01 -2.453982e-02 -3.308832e-01 2.661705e+02
## ALG1 -9.421099e-05 2.671790e-02 2.662369e-02 1.172019e+01
## ABHD14B 1.333849e-01 -2.905228e-02 1.043326e-01 2.785926e+01
## MEFV -4.475874e-01 -1.214691e-01 -5.690565e-01 2.121622e+02
## GGNBP2 -1.181213e-01 -4.822942e-02 -1.663508e-01 7.605120e+01
## DACH1 -5.087051e-02 3.206322e-02 -1.880728e-02 9.962515e+00
## NCF4 -1.818041e+00 1.373908e+00 -4.441331e-01 5.687098e+02
## HERC3 -2.771320e-01 1.165940e-01 -1.605380e-01 7.371338e+01
## NOMO2 2.108661e-03 1.254343e-01 1.275429e-01 6.249074e+01
## GNB2 -1.085133e+00 3.825376e-01 -7.025955e-01 2.760143e+02
## SHKBP1 -1.213291e+00 8.620539e-01 -3.512368e-01 3.166935e+02
## CEP135 -3.928852e-02 9.104329e-03 -3.018419e-02 1.292994e+01
## NIPAL3 2.430377e-02 3.260614e-03 2.756438e-02 1.313330e+01
## GPR161 -1.627508e-03 1.780269e-03 1.527610e-04 4.367234e-01
## TNFRSF14 -5.954549e-02 2.911115e-01 2.315660e-01 8.717731e+01
## ZSWIM3 -1.387074e-02 4.130371e-03 -9.740368e-03 7.042015e+00
## CCT4 1.091793e-01 -5.876019e-03 1.033032e-01 6.435595e+01
## RAB38 -3.294426e-03 5.544679e-03 2.250253e-03 1.024755e+00
## TLR3 3.729456e-03 -4.496438e-03 -7.669823e-04 1.008746e+00
## ADGRE3 -2.109615e-01 3.045026e-01 9.354109e-02 8.823533e+01
## SF3A3 7.310455e-02 -4.942084e-02 2.368371e-02 4.904146e+01
## MAP10 5.860194e-03 -4.578054e-03 1.282140e-03 2.238872e+00
## GUCA1B 5.632599e-03 -4.191949e-03 1.440650e-03 2.454713e+00
## POLR3F 8.875649e-03 -4.308832e-03 4.566817e-03 6.972436e+00
## NT5C2 -3.421887e-01 -2.182722e-01 -5.604609e-01 2.124893e+02
## SFT2D2 -6.667368e-02 -4.502063e-02 -1.116943e-01 5.927827e+01
## SERPINA1 -5.987188e+00 -2.270336e-01 -6.214222e+00 2.286524e+03
## SRGAP3 -1.844631e-03 3.342816e-03 1.498185e-03 7.055535e-01
## TECPR1 -7.001485e-02 5.422535e-02 -1.578950e-02 3.910663e+01
## SLC43A3 2.994473e-02 -5.674816e-02 -2.680343e-02 3.035518e+01
## NARF -4.139014e-01 4.472162e-01 3.331481e-02 1.496072e+02
## RAB29 -1.277276e-01 2.228133e-02 -1.054463e-01 4.951920e+01
## H3-3A -6.821178e+00 1.227093e+00 -5.594086e+00 2.624400e+03
## LPGAT1 -6.788717e-01 2.480322e-01 -4.308395e-01 2.280364e+02
## SHLD3 2.629007e-03 -7.041718e-03 -4.412711e-03 3.902340e+00
## NR2C2AP 1.072112e-02 9.626770e-03 2.034789e-02 6.491272e+00
## PLAGL2 1.555472e-02 -6.706737e-02 -5.151264e-02 3.557795e+01
## INKA2 -7.757411e-01 8.032050e-01 2.746388e-02 2.624121e+02
## NRBP2 9.276753e-03 -1.729922e-02 -8.022467e-03 7.254234e+00
## ELF4 -2.050415e-02 -2.191729e-01 -2.396771e-01 1.407475e+02
## KLF11 6.129002e-03 -4.260303e-02 -3.647403e-02 1.651999e+01
## ECT2 1.645096e-02 -1.659606e-02 -1.450972e-04 7.316110e+00
## STXBP2 -8.519993e-01 2.346648e-01 -6.173345e-01 2.493379e+02
## PDXP -5.051170e-03 1.426595e-02 9.214778e-03 6.304052e+00
## SUPT4H1 -4.182549e-01 2.602337e-01 -1.580212e-01 2.042125e+02
## KLF9 5.488959e-02 -3.418921e-01 -2.870025e-01 4.992651e+01
## CD58 -2.312015e-01 1.401776e-01 -9.102391e-02 7.496589e+01
## C6orf226 -3.802611e-03 3.741579e-03 -6.103171e-05 9.471067e-01
## TUBA8 2.794367e-03 -7.125191e-02 -6.845755e-02 2.242949e+01
## SLC5A6 1.476323e-02 3.580808e-03 1.834404e-02 8.686615e+00
## HNRNPLL 6.487485e-02 -5.816486e-02 6.709989e-03 3.087377e+01
## POLR2H 3.143401e-03 4.538521e-02 4.852861e-02 1.661062e+01
## ELOVL1 -7.229295e-02 1.086065e-01 3.631350e-02 7.439302e+01
## CASK -7.770378e-03 1.473367e-02 6.963295e-03 7.032421e+00
## ERGIC3 3.706651e-02 1.809614e-01 2.180279e-01 9.158749e+01
## SVBP -4.720418e-02 2.074781e-02 -2.645637e-02 2.033161e+01
## CHRNA10 -7.629668e-03 6.021335e-03 -1.608332e-03 2.490098e+00
## TMED5 -2.071179e-01 4.926152e-02 -1.578564e-01 8.907431e+01
## TFEB -3.365179e-01 2.421163e-02 -3.123063e-01 9.473989e+01
## RHOBTB2 4.908933e-03 1.572649e-02 2.063543e-02 7.848496e+00
## SOCS3 -4.892495e-01 -7.765660e-01 -1.265815e+00 2.589499e+02
## KIF1B -2.923998e-01 3.564526e-02 -2.567545e-01 7.758487e+01
## NUDCD1 6.379210e-03 7.143405e-03 1.352262e-02 7.171650e+00
## SMIM15 -1.148252e-02 -1.646269e-02 -2.794521e-02 1.737368e+01
## TBCD 4.041334e-02 2.331938e-02 6.373272e-02 2.108134e+01
## DIPK1A -4.887166e-03 2.015517e-02 1.526801e-02 6.401045e+00
## MFSD11 -3.006284e-02 1.474062e-02 -1.532222e-02 1.768062e+01
## BEND7 -2.340614e-02 -1.327661e-02 -3.668275e-02 7.674486e+00
## NT5C3A -3.987798e-01 -1.608736e-01 -5.596534e-01 1.339374e+02
## GCNA -2.316570e-02 2.783019e-02 4.664489e-03 9.027832e+00
## VEGFA 5.638644e-02 -5.442512e-02 1.961320e-03 1.753790e+01
## ZNF808 -7.859159e-03 1.782873e-02 9.969569e-03 6.967464e+00
## POLR3B 2.864006e-03 2.927324e-03 5.791330e-03 3.886780e+00
## DYNC1H1 -1.208357e-01 8.959697e-02 -3.123876e-02 7.001483e+01
## PCYOX1 1.513939e-03 1.714537e-02 1.865931e-02 1.019511e+01
## KDM4B -1.621505e-01 1.307243e-01 -3.142620e-02 6.111368e+01
## PPP2R5C -2.562490e-01 1.478001e-01 -1.084488e-01 1.555864e+02
## MMP24OS -1.088275e-01 1.036771e-01 -5.150438e-03 3.034755e+01
## DLC1 1.449466e-02 -2.328665e-02 -8.791993e-03 1.367635e+00
## PSMF1 -8.617503e-02 8.015345e-02 -6.021579e-03 7.245226e+01
## DMTN -3.203732e-02 1.957251e-01 1.636878e-01 4.586430e+01
## MACROH2A1 -5.366330e-01 -3.244192e-02 -5.690749e-01 2.687584e+02
## NEK9 -1.255338e-01 9.719118e-02 -2.834261e-02 7.601523e+01
## MANSC1 -4.256625e-01 5.188581e-01 9.319558e-02 1.303586e+02
## STRN3 -3.566444e-02 9.350878e-03 -2.631356e-02 1.439236e+01
## CDC42BPA 2.539790e-05 -5.735111e-03 -5.709714e-03 1.982018e+00
## CDK11B 9.336755e-02 -7.416682e-02 1.920073e-02 5.065261e+01
## NPHP3 -3.551794e-02 3.149033e-02 -4.027611e-03 1.494527e+01
## BCR 5.669724e-02 3.529098e-02 9.198822e-02 4.424240e+01
## BAZ2B -2.670308e-01 3.885571e-02 -2.281751e-01 9.035474e+01
## PSIP1 2.937990e-02 7.502698e-02 1.044069e-01 6.168356e+01
## MOB1A -5.386792e-01 -1.731126e-01 -7.117918e-01 3.434518e+02
## BAIAP3 -4.269898e-02 4.645877e-02 3.759797e-03 8.500841e+00
## CDC73 -8.871107e-02 1.238353e-02 -7.632754e-02 3.898623e+01
## PCMTD2 -3.721673e-02 8.170730e-02 4.449058e-02 4.200951e+01
## NIBAN1 -2.401743e+00 1.181773e+00 -1.219970e+00 5.641638e+02
## STX18 -1.023431e-02 2.196373e-02 1.172942e-02 1.523342e+01
## CYTH4 -2.035237e+00 2.230610e-01 -1.812176e+00 6.955792e+02
## PAWR 3.431754e-03 2.450398e-03 5.882153e-03 2.197997e+00
## THEMIS 2.651500e-02 1.876358e-02 4.527858e-02 1.009296e+01
## ETFBKMT -6.009111e-03 1.634847e-03 -4.374264e-03 2.903084e+00
## LONRF1 1.739993e-03 -5.046044e-02 -4.872045e-02 2.195225e+01
## ZBTB43 3.644771e-02 -7.433246e-02 -3.788475e-02 1.283325e+01
## BCKDHA -3.928174e-02 8.470578e-02 4.542404e-02 3.072037e+01
## MCM7 6.329733e-02 7.869394e-02 1.419913e-01 5.780209e+01
## PDCD4 1.802609e-01 -3.402838e-02 1.462325e-01 1.061300e+02
## GNAQ -7.130738e-01 1.296827e-01 -5.833911e-01 2.239958e+02
## CD274 -7.558706e-02 -3.297047e-01 -4.052918e-01 4.670818e+01
## FCER1G -3.146180e+00 -1.253239e+00 -4.399419e+00 9.797395e+02
## METTL15 6.393169e-03 2.171067e-04 6.610276e-03 4.584110e+00
## CREB1 -2.055534e-01 1.402516e-01 -6.530177e-02 8.403639e+01
## PRR13 -9.937323e-01 -3.121752e-01 -1.305908e+00 5.289671e+02
## LPCAT4 -6.568015e-03 4.714682e-02 4.057881e-02 2.093302e+01
## SLC30A7 -6.216278e-03 -3.279263e-02 -3.900891e-02 2.538686e+01
## ANP32B 1.322887e-01 9.074177e-02 2.230305e-01 1.059486e+02
## ESF1 5.331571e-03 8.360658e-03 1.369223e-02 5.234544e+00
## FKRP -8.460026e-03 4.148207e-03 -4.311819e-03 5.317226e+00
## LRP5L 4.566136e-03 3.184512e-03 7.750648e-03 3.009505e+00
## MEF2B -7.287183e-03 1.151474e-02 4.227561e-03 2.260429e+00
## SAMHD1 6.539988e-01 -8.784852e-01 -2.244864e-01 3.303422e+02
## CALU -6.716137e-02 2.985414e-02 -3.730722e-02 2.990786e+01
## ATXN1 -1.689215e-01 1.757717e-01 6.850197e-03 6.175078e+01
## TRIM28 9.528623e-02 8.726836e-02 1.825546e-01 5.913307e+01
## PRKDC -2.677588e-01 6.025847e-01 3.348259e-01 1.049805e+02
## MAN2A1 -3.645077e-02 7.710026e-02 4.064949e-02 4.161320e+01
## TM2D3 1.408981e-02 -5.971787e-02 -4.562807e-02 3.832920e+01
## CENPH 4.576308e-03 3.636323e-03 8.212631e-03 2.510984e+00
## HSPBAP1 -1.048080e-01 9.232812e-02 -1.247985e-02 3.934357e+01
## CHP1 -1.939755e-01 3.160355e-02 -1.623719e-01 9.275407e+01
## SNX5 5.652146e-02 -5.206319e-03 5.131514e-02 3.968624e+01
## CPSF2 -1.008234e-01 4.225375e-02 -5.856969e-02 5.700730e+01
## C9orf85 6.584062e-03 -4.983421e-03 1.600641e-03 6.375764e+00
## TBC1D10B -1.433407e-01 1.438109e-01 4.702476e-04 6.165357e+01
## ZNF684 -8.950761e-04 -2.725751e-02 -2.815258e-02 5.441514e+00
## OXLD1 -1.095422e-03 4.780781e-02 4.671239e-02 1.535605e+01
## PGD -3.480326e+00 2.740353e+00 -7.399733e-01 9.229757e+02
## KPNA1 -1.153899e-01 1.329689e-01 1.757906e-02 6.640734e+01
## TACSTD2 -2.776389e-03 3.342955e-02 3.065316e-02 4.273694e+00
## HMCES 5.066492e-02 -9.656946e-04 4.969923e-02 3.285933e+01
## SESN2 6.991391e-02 -1.805960e-01 -1.106821e-01 2.333043e+01
## RPS5 4.884462e-01 9.891959e-01 1.477642e+00 3.041199e+02
## TRABD -1.589992e-01 9.138452e-02 -6.761472e-02 3.744705e+01
## CUL4B -2.271852e-01 9.523383e-02 -1.319514e-01 9.472532e+01
## POLD1 -3.570932e-03 1.564926e-02 1.207833e-02 4.016221e+00
## CHCHD6 3.167278e-03 2.434347e-03 5.601626e-03 8.816320e-01
## NSF -2.019407e-02 -5.704191e-02 -7.723598e-02 4.643718e+01
## C8orf37 2.368617e-03 -9.910527e-05 2.269511e-03 7.481516e-01
## UXT 7.358963e-02 7.550344e-02 1.490931e-01 4.278123e+01
## ATRAID -3.058381e-02 9.692054e-02 6.633673e-02 5.035186e+01
## IL27 -1.115720e-03 -3.788862e-03 -4.904582e-03 9.752835e-01
## RPS21 5.439022e-01 3.663387e-01 9.102409e-01 1.582505e+02
## NOA1 1.348866e-02 -2.979464e-03 1.050920e-02 1.240786e+01
## ZC3H12A -2.424818e-02 -4.652625e-02 -7.077443e-02 2.016417e+01
## PDE3B -1.340251e-01 1.258473e-01 -8.177823e-03 4.524500e+01
## BCAP31 -4.129890e-01 2.704561e-01 -1.425328e-01 1.461989e+02
## LNPEP -1.612411e-01 5.433144e-02 -1.069096e-01 7.994613e+01
## ERI3 3.569134e-02 5.669919e-03 4.136126e-02 1.160699e+01
## REEP3 -1.914291e-02 -2.218115e-02 -4.132406e-02 2.334613e+01
## CD79B 1.505071e-02 2.373119e-01 2.523626e-01 4.278334e+01
## TANGO2 -9.183492e-02 1.308929e-01 3.905794e-02 7.150100e+01
## ZFAND6 -1.871967e-01 9.450731e-02 -9.268941e-02 9.167984e+01
## BORCS8-MEF2B -1.502486e-02 5.527571e-03 -9.497286e-03 4.134303e+00
## ZBTB18 -2.510216e-01 -4.236911e-02 -2.933907e-01 1.076611e+02
## ZNF281 -2.296537e-01 -5.533464e-03 -2.351871e-01 6.635523e+01
## CARNS1 1.307559e-02 -1.229447e-03 1.184614e-02 2.355237e+00
## VCPIP1 -2.963807e-01 -7.762241e-02 -3.740031e-01 1.132242e+02
## HIGD1A -1.773723e-01 6.105452e-02 -1.163177e-01 6.899804e+01
## DHX58 1.195570e-01 -1.974396e-01 -7.788265e-02 2.767934e+01
## PCBP4 2.534114e-02 3.305284e-03 2.864643e-02 5.078516e+00
## AFF1 -2.346414e-01 -2.014241e-02 -2.547838e-01 7.991046e+01
## SMG5 1.299316e-01 -3.079180e-01 -1.779864e-01 1.284409e+02
## SAMD14 2.502220e-02 -3.573620e-02 -1.071400e-02 4.912586e+00
## RNF167 -3.282438e-01 3.916494e-01 6.340552e-02 1.992480e+02
## USP35 -7.076123e-04 1.218414e-02 1.147653e-02 7.815482e+00
## IGBP1 1.112542e-01 -5.489801e-02 5.635622e-02 9.315010e+01
## FAM98B 1.943654e-02 -1.148476e-02 7.951771e-03 1.022400e+01
## PARVB 3.371336e-02 -1.279917e-01 -9.427838e-02 3.488768e+01
## COLEC12 -5.059589e-03 1.306581e-03 -3.753008e-03 1.902017e+00
## SBDS 9.310853e-02 -4.809186e-02 4.501667e-02 2.520392e+01
## HMGB2 -3.547941e+00 2.602113e+00 -9.458284e-01 7.559518e+02
## CCL4 7.413494e-02 -1.229269e-02 6.184225e-02 1.959588e+01
## RPUSD4 1.848757e-02 2.760487e-04 1.876362e-02 1.212774e+01
## MRRF 5.758747e-03 1.230377e-02 1.806252e-02 1.183830e+01
## HIVEP2 -1.054880e-01 9.108347e-02 -1.440455e-02 3.705909e+01
## TIGD5 7.428096e-03 4.631088e-03 1.205918e-02 2.591716e+00
## AP5M1 -6.214159e-02 -1.219823e-02 -7.433982e-02 4.154590e+01
## ERO1B -1.640665e-02 1.938914e-02 2.982489e-03 1.353535e+01
## CFAP97D1 8.700269e-04 -2.372879e-03 -1.502852e-03 6.577462e-01
## MEX3D -1.339673e-03 1.955771e-03 6.160974e-04 5.512329e-01
## SMIM12 -7.591079e-02 4.596822e-02 -2.994256e-02 4.306449e+01
## IGF2BP2 2.640510e-03 1.748405e-02 2.012456e-02 7.527496e+00
## DFFA 1.816236e-02 8.200718e-04 1.898244e-02 1.516127e+01
## TMCO3 -1.846329e-01 5.186312e-04 -1.841142e-01 5.406928e+01
## NFAT5 -2.047953e-01 1.450297e-01 -5.976567e-02 5.619766e+01
## RYBP -3.070714e-01 2.474008e-02 -2.823313e-01 1.100830e+02
## DHRS3 2.856546e-02 2.944048e-03 3.150950e-02 6.324083e+00
## USP3 -5.330141e-02 -2.241899e-01 -2.774914e-01 1.450562e+02
## ZNF223 3.798838e-03 1.195038e-03 4.993876e-03 1.914829e+00
## SLC30A4 3.426346e-03 2.148579e-03 5.574926e-03 1.976855e+00
## FAM3C 5.054594e-03 2.929362e-02 3.434822e-02 1.279755e+01
## ESCO1 -3.432967e-02 -1.669086e-02 -5.102053e-02 2.550469e+01
## THAP5 -9.815029e-02 3.350138e-02 -6.464890e-02 3.709599e+01
## TRIM38 1.696482e-01 -4.592613e-01 -2.896131e-01 1.433815e+02
## CRTC3 -4.068976e-02 4.111642e-02 4.266576e-04 2.597412e+01
## PINK1 -3.383719e-01 1.717084e-01 -1.666635e-01 1.197200e+02
## METTL1 -6.637267e-03 8.317164e-03 1.679897e-03 2.407906e+00
## BLOC1S2 -1.599652e-01 1.524327e-01 -7.532500e-03 8.203623e+01
## AP5B1 -7.763629e-01 1.854761e-01 -5.908867e-01 2.790455e+02
## NBDY 2.882515e-02 -1.264942e-02 1.617573e-02 9.286331e+00
## ASNSD1 -7.892630e-02 1.200632e-01 4.113686e-02 4.572057e+01
## TERF2IP -8.025304e-02 1.303390e-01 5.008591e-02 8.949125e+01
## TSPAN15 3.806204e-03 -2.065877e-03 1.740327e-03 6.990599e-01
## RGPD8 -3.692677e-03 -1.737259e-02 -2.106527e-02 7.697106e+00
## EFCAB14 -1.460723e-01 9.279691e-02 -5.327541e-02 9.661470e+01
## AMMECR1 -4.747362e-03 1.101183e-02 6.264470e-03 5.085063e+00
## PREPL 9.130170e-03 2.266875e-02 3.179892e-02 1.356166e+01
## ADAP2 -1.717704e-02 -3.530794e-02 -5.248498e-02 2.145997e+01
## LRFN4 5.737832e-03 -2.723121e-03 3.014712e-03 9.580936e-01
## SNX19 -7.743921e-02 2.394374e-02 -5.349546e-02 4.080178e+01
## LMO7 3.628968e-03 4.446430e-03 8.075398e-03 1.848399e+00
## UCKL1 2.087177e-02 1.721768e-02 3.808944e-02 8.424512e+00
## RAPGEFL1 -2.039208e-02 -1.203906e-02 -3.243114e-02 1.147541e+01
## PPP1R21 -1.033879e-01 2.292709e-02 -8.046077e-02 5.109023e+01
## ZBTB34 -3.322926e-01 1.547258e-01 -1.775669e-01 1.014707e+02
## SLCO3A1 -2.102254e-01 3.442570e-02 -1.757997e-01 9.632986e+01
## RAB8B -4.236689e-01 -3.041496e-02 -4.540839e-01 1.825296e+02
## C2CD2L -4.000610e-02 1.164125e-02 -2.836486e-02 2.350989e+01
## CPT1A -9.813705e-03 -7.189512e-02 -8.170882e-02 4.979158e+01
## TMEM252 9.953720e-03 -3.027948e-03 6.925772e-03 2.137548e+00
## TTI1 -7.989864e-03 -5.977236e-03 -1.396710e-02 1.076233e+01
## IMPG2 1.809186e-03 -3.456728e-03 -1.647542e-03 9.312329e-01
## MBD5 -1.292961e-02 -6.422132e-03 -1.935174e-02 9.170422e+00
## HM13 -1.836197e-01 8.259139e-02 -1.010283e-01 8.163811e+01
## PNMA1 -1.173464e-02 3.400385e-02 2.226921e-02 1.804228e+01
## DAXX 1.279668e-02 7.789655e-02 9.069323e-02 7.323292e+01
## CASP10 -1.062425e-01 -4.882556e-02 -1.550681e-01 6.485548e+01
## PRKAA1 -2.179582e-01 9.815843e-02 -1.197998e-01 7.547090e+01
## SLC16A10 3.318657e-03 6.090130e-04 3.927670e-03 9.334296e-01
## TOLLIP -1.099817e-01 3.584926e-02 -7.413244e-02 4.089486e+01
## MPZL2 -2.501603e-02 7.007447e-03 -1.800859e-02 6.502244e+00
## SEC62 -3.697932e-01 2.182001e-01 -1.515931e-01 1.546366e+02
## COPB2 -2.210458e-01 4.881392e-02 -1.722319e-01 1.192865e+02
## MTO1 2.717744e-02 -1.669813e-03 2.550763e-02 2.393211e+01
## SBF1 -2.227815e-02 7.499742e-02 5.271927e-02 3.838872e+01
## ATP1B3 1.590301e-02 -6.036999e-02 -4.446698e-02 4.137509e+01
## IRAK3 -1.654644e+00 1.021232e-02 -1.644432e+00 3.448661e+02
## RASSF2 -3.039723e+00 1.836918e+00 -1.202805e+00 9.324978e+02
## C1orf131 -7.405829e-04 1.030575e-02 9.565165e-03 1.079578e+01
## CIZ1 5.265663e-02 -3.157609e-03 4.949902e-02 2.720539e+01
## GPR68 1.229360e-02 6.318771e-03 1.861238e-02 4.611133e+00
## SLU7 3.944012e-02 -1.870451e-01 -1.476050e-01 1.116908e+02
## ZBTB38 -4.500515e-02 8.407042e-02 3.906528e-02 3.039728e+01
## ZFYVE16 -2.041541e-01 7.083108e-02 -1.333231e-01 6.675315e+01
## MDP1 -1.454153e-02 2.605479e-02 1.151326e-02 7.681028e+00
## RASL11A -6.601636e-03 2.009673e-02 1.349510e-02 4.787338e+00
## NTPCR 5.028917e-03 1.193622e-02 1.696514e-02 9.340670e+00
## SLC9A7 5.748549e-03 1.292873e-02 1.867728e-02 7.866539e+00
## RAB7A -1.227143e+00 -1.056282e-02 -1.237706e+00 5.171798e+02
## ECD 1.519249e-02 -3.414595e-02 -1.895347e-02 1.743425e+01
## ARHGDIB -5.602734e+00 2.997787e+00 -2.604948e+00 2.203179e+03
## B4GALT6 3.769744e-03 8.810842e-04 4.650828e-03 1.903546e+00
## RBM43 -2.637039e-02 -8.202217e-03 -3.457261e-02 9.406702e+00
## SENP5 -2.931048e-02 1.053623e-03 -2.825686e-02 2.901791e+01
## KCNJ15 7.671103e-01 -1.836974e+00 -1.069863e+00 5.058456e+02
## SOX13 3.329918e-04 -8.388576e-03 -8.055584e-03 2.212577e+00
## KPTN 2.346351e-02 -1.370486e-02 9.758654e-03 5.597484e+00
## VPS54 -6.031717e-02 -1.166706e-02 -7.198423e-02 3.189275e+01
## ASL -6.905370e-02 4.013803e-02 -2.891567e-02 2.054356e+01
## ITFG2 1.270308e-02 6.460504e-03 1.916358e-02 9.063110e+00
## NAA80 1.605491e-02 7.681030e-03 2.373594e-02 4.282632e+00
## HSP90AB1 3.037440e-01 -7.829292e-02 2.254511e-01 1.543092e+02
## TMOD1 1.288390e-02 8.973947e-03 2.185785e-02 4.962204e+00
## GNA11 3.467704e-03 -1.482613e-03 1.985091e-03 9.709083e-01
## VPS41 -2.080693e-02 -4.035786e-02 -6.116479e-02 3.850716e+01
## RPL23A 1.719383e+00 3.898479e-01 2.109231e+00 5.566685e+02
## PSPC1 -6.516089e-02 3.520739e-02 -2.995350e-02 4.771433e+01
## C12orf76 1.348093e-02 -2.428940e-02 -1.080847e-02 1.295168e+01
## CEP162 -1.213613e-02 -1.671458e-02 -2.885071e-02 1.075719e+01
## BIRC6 -1.945928e-01 1.144871e-01 -8.010567e-02 7.190745e+01
## IFI16 -1.128258e+00 -7.318090e-01 -1.860067e+00 5.089642e+02
## BCAS4 2.043578e-02 2.316363e-03 2.275214e-02 3.058864e+00
## KDM6B -2.568895e-01 -8.851746e-02 -3.454070e-01 1.238089e+02
## TMEM30A -3.431187e-01 3.346375e-02 -3.096549e-01 1.729425e+02
## ZFC3H1 -1.353977e-01 5.277946e-02 -8.261824e-02 5.988510e+01
## G2E3 -6.844667e-03 2.085917e-02 1.401450e-02 1.160361e+01
## WBP4 -3.808812e-02 2.341560e-02 -1.467252e-02 1.779820e+01
## CLTCL1 4.696626e-02 -3.705181e-02 9.914450e-03 1.053767e+01
## RFLNB -1.243068e-01 5.291049e-01 4.047981e-01 1.560850e+02
## NAA40 2.467526e-02 -8.150742e-03 1.652452e-02 1.248785e+01
## KIAA1522 -6.007956e-03 -2.748417e-03 -8.756373e-03 2.311966e+00
## TOMM5 -9.813079e-03 3.683273e-02 2.701965e-02 1.603418e+01
## SCAF11 -3.525604e-01 1.780050e-01 -1.745554e-01 1.420130e+02
## ACVR2B -1.282599e-06 6.058003e-03 6.056721e-03 1.730689e+00
## COQ8B -1.033071e-01 6.215102e-02 -4.115605e-02 2.772529e+01
## STXBP3 -3.249141e-01 1.436519e-01 -1.812622e-01 1.052541e+02
## CPEB2 -8.812637e-02 -2.732717e-02 -1.154535e-01 3.367483e+01
## ZNF677 2.431023e-03 -1.361037e-03 1.069986e-03 7.496540e-01
## EHD1 -4.759196e-01 3.139782e-01 -1.619413e-01 1.832896e+02
## PTBP2 1.149574e-02 -5.285138e-02 -4.135563e-02 1.714210e+01
## SPRTN 1.733577e-03 -1.871767e-02 -1.698409e-02 9.633731e+00
## ELMO1 -1.045938e-01 -1.050508e-02 -1.150989e-01 6.380034e+01
## CTR9 -8.762055e-02 5.427471e-02 -3.334584e-02 4.923411e+01
## PTK2B -3.127437e-01 -3.206400e-01 -6.333837e-01 3.317115e+02
## LMBRD1 -2.062648e-01 1.034234e-01 -1.028414e-01 8.372535e+01
## ORC2 -2.732491e-02 -5.341784e-03 -3.266669e-02 1.750766e+01
## MAP4K5 2.236269e-03 2.218366e-02 2.441993e-02 1.338117e+01
## HK1 -1.663745e-01 1.450326e-01 -2.134184e-02 1.131243e+02
## PPP1R15A -4.108141e-01 6.526320e-01 2.418179e-01 1.961940e+02
## TOPORS -1.243167e-01 1.584019e-01 3.408522e-02 5.086077e+01
## PIGY 1.756200e-03 2.757180e-02 2.932800e-02 2.171154e+01
## PYURF 1.756200e-03 2.757180e-02 2.932800e-02 2.171154e+01
## UBE2F -2.052693e-01 3.114594e-02 -1.741234e-01 7.851969e+01
## UBE2E3 -5.236337e-02 1.135970e-02 -4.100367e-02 3.581557e+01
## NGRN 1.232701e-02 2.345916e-02 3.578617e-02 2.365247e+01
## CRTAM -4.185344e-03 1.647799e-02 1.229265e-02 4.923836e+00
## SERTAD2 1.065346e-01 -6.724012e-02 3.929448e-02 2.952310e+01
## TENM1 -5.448254e-02 6.880713e-02 1.432459e-02 9.628416e+00
## SLA2 1.604405e-01 -7.235177e-02 8.808874e-02 4.602632e+01
## HEXIM1 -6.202170e-02 7.641610e-02 1.439440e-02 4.887549e+01
## PSMD13 -1.659840e-01 3.010870e-01 1.351030e-01 1.625850e+02
## APPBP2 -5.926144e-02 3.493976e-03 -5.576746e-02 3.302521e+01
## BACE2 8.076120e-05 1.528195e-02 1.536271e-02 3.636762e+00
## CENPS -1.947855e-03 3.594362e-03 1.646507e-03 1.065779e+00
## IKBKG -1.243862e-01 6.249248e-02 -6.189377e-02 5.184681e+01
## DIABLO -7.795380e-03 3.012142e-02 2.232604e-02 2.386523e+01
## CDKN2D -7.465792e-01 -1.550039e-01 -9.015831e-01 2.568970e+02
## THAP12 3.325807e-02 3.872232e-02 7.198040e-02 5.390794e+01
## NAA50 -1.290351e-01 1.289511e-01 -8.401377e-05 9.630966e+01
## GDE1 -2.968509e-01 2.312087e-01 -6.564228e-02 1.232517e+02
## MPV17L2 -1.304598e-02 1.362250e-02 5.765246e-04 5.120855e+00
## NUMB -1.107344e+00 4.776704e-02 -1.059577e+00 3.992997e+02
## DNAJC10 6.425213e-03 8.257557e-02 8.900078e-02 4.753952e+01
## PCP2 2.542126e-03 -3.997807e-03 -1.455681e-03 9.494752e-01
## GPBAR1 3.635298e-03 -3.705723e-02 -3.342193e-02 8.252092e+00
## TXNDC16 -5.540846e-03 1.109880e-02 5.557955e-03 4.983668e+00
## WDR25 -1.277383e-02 6.917108e-03 -5.856726e-03 4.539490e+00
## FASTKD2 1.421053e-02 9.473076e-03 2.368360e-02 1.274664e+01
## SLC22A4 -2.443837e-01 6.559829e-02 -1.787854e-01 6.145590e+01
## CD247 2.545580e-01 -4.259241e-02 2.119656e-01 6.237658e+01
## ZMYND8 -4.587533e-02 1.277259e-02 -3.310274e-02 2.655382e+01
## PRCP -4.167988e-01 3.903778e-02 -3.777611e-01 1.830558e+02
## CBX5 4.447434e-02 6.522336e-04 4.512657e-02 2.299816e+01
## RGS18 -1.871903e+00 4.757276e-01 -1.396175e+00 4.455505e+02
## ANKRD44 -3.724623e-01 2.061064e-02 -3.518516e-01 1.740422e+02
## KLF16 -5.862930e-02 2.732694e-02 -3.130235e-02 2.217280e+01
## SNRPA1 2.913944e-02 -4.955548e-03 2.418389e-02 1.446240e+01
## FAM89A -2.681343e-02 -1.199613e-02 -3.880956e-02 5.789286e+00
## SLC6A6 -1.877622e+00 5.737353e-01 -1.303886e+00 5.331331e+02
## PHOSPHO1 -3.529256e-01 4.894020e-01 1.364763e-01 1.150728e+02
## PXMP2 -6.379258e-03 1.011444e-02 3.735179e-03 2.337847e+00
## ZFP36 -2.116099e+00 2.606768e-01 -1.855422e+00 5.599694e+02
## ACAA1 -4.498207e-01 2.888243e-01 -1.609965e-01 1.934182e+02
## ZNF3 4.748622e-03 1.421480e-02 1.896342e-02 1.695451e+01
## SRRM1 6.877040e-02 -5.456870e-02 1.420169e-02 4.027897e+01
## C16orf54 -1.734543e-01 4.705287e-01 2.970744e-01 2.125385e+02
## AFF2 1.598820e-02 -7.930500e-03 8.057704e-03 2.363112e+00
## IL13RA1 -1.177175e+00 5.606452e-01 -6.165300e-01 2.983597e+02
## FDXR -1.155793e-02 -3.927966e-03 -1.548590e-02 3.060171e+00
## RSBN1 -1.694698e-01 4.652517e-02 -1.229446e-01 4.788845e+01
## HLA-A 7.121433e+00 -9.995973e+00 -2.874540e+00 3.955025e+03
## SFXN5 -6.673231e-02 3.150725e-02 -3.522506e-02 3.142315e+01
## ZNF841 -3.084089e-03 1.303226e-02 9.948175e-03 6.951769e+00
## CD84 -5.384899e-02 7.342931e-02 1.958032e-02 2.716576e+01
## GOLIM4 -9.576630e-03 -4.460787e-04 -1.002271e-02 4.754365e+00
## SLC25A10 -4.980124e-03 5.611735e-03 6.316108e-04 9.686431e-01
## JMJD6 3.750188e-02 -1.872163e-01 -1.497144e-01 4.637788e+01
## SPAST -1.079671e-01 1.731713e-02 -9.065002e-02 5.106239e+01
## VNN1 -1.728488e+00 1.582661e+00 -1.458273e-01 2.672039e+02
## MRPS23 1.060551e-02 2.827417e-02 3.887968e-02 2.095550e+01
## MAF1 -5.579833e-02 1.502094e-01 9.441102e-02 6.724306e+01
## INTU -3.927792e-03 1.891806e-03 -2.035986e-03 1.435362e+00
## PER1 3.485376e-01 -4.946555e-01 -1.461180e-01 4.320875e+01
## CBLN3 -3.707593e-03 2.821596e-03 -8.859978e-04 9.436535e-01
## TSPAN17 6.308902e-02 -1.278323e-02 5.030579e-02 2.286245e+01
## OSM -2.334904e-01 1.372631e-01 -9.622727e-02 3.946931e+01
## RORA 2.360080e-02 6.141707e-02 8.501788e-02 1.838443e+01
## GRAMD1A -1.153425e-01 -1.375080e-01 -2.528505e-01 8.308025e+01
## SLAMF8 -1.451585e-02 4.805482e-03 -9.710371e-03 4.148683e+00
## NUFIP1 2.896083e-03 1.648502e-03 4.544585e-03 2.157558e+00
## ATF2 -5.806039e-02 -8.603383e-03 -6.666378e-02 3.727888e+01
## LLGL1 1.529595e-02 -4.523355e-03 1.077259e-02 6.318037e+00
## JOSD1 1.001144e-01 -1.498811e-01 -4.976678e-02 5.043487e+01
## DOLK -5.208243e-03 8.794917e-03 3.586673e-03 4.295139e+00
## NSG1 2.201014e-02 -7.190472e-03 1.481967e-02 3.531187e+00
## ZBTB5 2.053963e-02 -6.325847e-03 1.421379e-02 7.546483e+00
## FAM8A1 -1.240782e-01 -4.764222e-01 -6.005004e-01 2.186716e+02
## CCDC126 -6.245960e-02 2.618922e-02 -3.627038e-02 1.901178e+01
## C16orf72 -6.027196e-01 1.280356e-01 -4.746840e-01 1.895832e+02
## GTSE1 -2.444325e-03 7.152901e-03 4.708576e-03 1.650940e+00
## ELK4 -1.621904e-02 6.138895e-02 4.516991e-02 2.604580e+01
## SCYL3 -5.015322e-02 2.652953e-02 -2.362368e-02 2.588316e+01
## MYG1 1.991686e-02 2.365757e-02 4.357443e-02 1.438284e+01
## ACTR1A -2.909760e-01 1.624565e-01 -1.285195e-01 1.517200e+02
## ATP6AP2 -3.580988e-02 -1.275833e-01 -1.633932e-01 1.315359e+02
## PPP1R37 5.370455e-03 6.714277e-03 1.208473e-02 3.768274e+00
## SNX4 -2.832284e-03 2.907345e-02 2.624117e-02 1.854900e+01
## LRG1 -1.395005e+00 9.946421e-02 -1.295540e+00 2.910852e+02
## FBXW4 5.539427e-02 5.060216e-03 6.045448e-02 2.167381e+01
## LOC100996842 -5.008248e-03 3.148594e-03 -1.859655e-03 1.310419e+00
## RWDD1 2.057384e-02 3.591796e-02 5.649181e-02 2.810940e+01
## SNRNP48 -3.179248e-02 1.834776e-02 -1.344471e-02 1.562827e+01
## HIPK3 -9.503235e-01 3.560108e-01 -5.943126e-01 2.476827e+02
## TARBP2 1.564192e-02 9.613268e-03 2.525518e-02 6.617235e+00
## LTB4R2 -3.043951e-03 3.528142e-04 -2.691137e-03 1.058158e+00
## C5AR2 -2.191607e-01 -9.850983e-02 -3.176706e-01 1.259894e+02
## OCLN -2.764660e-02 5.923829e-02 3.159169e-02 5.554115e+00
## TGDS -1.253566e-03 1.161331e-02 1.035974e-02 8.779144e+00
## SMURF2 -4.677952e-02 4.207264e-02 -4.706882e-03 2.515510e+01
## RAE1 -6.852438e-02 2.989481e-02 -3.862957e-02 3.551888e+01
## VCL -1.814044e-01 -1.318307e-01 -3.132351e-01 1.254732e+02
## TTC17 -4.858918e-02 6.128923e-02 1.270005e-02 4.557256e+01
## TMEM41B -3.145673e-02 1.006071e-02 -2.139602e-02 2.038555e+01
## KRR1 1.380286e-02 2.371595e-02 3.751880e-02 2.028162e+01
## EFTUD2 2.671290e-02 5.709248e-02 8.380538e-02 6.116681e+01
## C2orf69 -4.620638e-02 1.373644e-02 -3.246994e-02 1.457595e+01
## SLC52A2 -1.532520e-02 2.271593e-02 7.390732e-03 6.032908e+00
## MCM3 6.794074e-02 -3.696953e-02 3.097122e-02 3.101750e+01
## SERF2 -1.475753e+00 1.593539e+00 1.177862e-01 4.475110e+02
## PSMD8 -6.941420e-02 1.298118e-01 6.039762e-02 7.256145e+01
## TRIP11 -1.224484e-02 -2.441125e-02 -3.665609e-02 1.993404e+01
## FSD2 3.271402e-04 -3.142624e-03 -2.815483e-03 1.552283e+00
## CHMP2B -7.702027e-02 -8.923827e-02 -1.662585e-01 5.940750e+01
## RAB1B -5.209648e-01 2.094559e-01 -3.115089e-01 2.190219e+02
## DLGAP5 -9.687581e-03 2.159252e-02 1.190494e-02 4.193011e+00
## CLCN5 -1.212628e-02 9.171118e-04 -1.120917e-02 5.219570e+00
## LSG1 -3.014231e-03 2.680625e-02 2.379202e-02 1.706616e+01
## TRIM66 9.583705e-03 1.176395e-02 2.134766e-02 1.017748e+01
## PRSS36 -1.577855e-02 5.466722e-03 -1.031183e-02 3.097334e+00
## MTSS1 4.889237e-02 -5.400470e-02 -5.112339e-03 2.470081e+01
## DNAJB14 -1.012852e-01 -1.023509e-02 -1.115203e-01 4.928187e+01
## MFSD12 8.956863e-03 3.128615e-02 4.024301e-02 9.787782e+00
## CWF19L2 1.819996e-02 -2.050451e-02 -2.304553e-03 1.266183e+01
## MTX2 8.914748e-03 3.138728e-03 1.205348e-02 6.392991e+00
## F11R -3.517522e-01 2.381329e-02 -3.279389e-01 1.738189e+02
## TTC7A 1.714655e-02 -9.648221e-02 -7.933566e-02 5.933024e+01
## KIAA0825 -3.554367e-02 -8.799278e-03 -4.434295e-02 1.015961e+01
## ZNF492 1.515848e-03 3.106168e-04 1.826465e-03 5.412753e-01
## KAT6B -1.237821e-02 2.624051e-02 1.386229e-02 9.824632e+00
## B4GAT1 3.162699e-03 2.580613e-03 5.743311e-03 1.598192e+00
## POLE3 3.452303e-02 1.839420e-02 5.291723e-02 3.869023e+01
## OPA1 -2.064395e-02 5.247177e-02 3.182782e-02 3.245593e+01
## PPEF1 1.548978e-03 2.497374e-03 4.046351e-03 8.070089e-01
## TBC1D24 9.881933e-03 -9.525648e-03 3.562847e-04 4.823517e+00
## MTRR -3.102685e-02 5.685728e-02 2.583043e-02 2.171164e+01
## TMBIM4 -3.581911e-01 2.069500e-01 -1.512411e-01 1.524438e+02
## PAQR3 -6.230990e-02 1.558719e-02 -4.672271e-02 2.713991e+01
## CORO2A -6.216745e-02 8.751536e-03 -5.341591e-02 2.303928e+01
## TCN1 2.462815e-02 4.877374e-01 5.123655e-01 5.782832e+01
## EIF5A2 6.975788e-03 -2.211533e-03 4.764254e-03 4.360189e+00
## OTULIN -2.843916e-03 -4.336918e-02 -4.621309e-02 2.837373e+01
## CBWD6 2.126292e-02 -1.378521e-03 1.988440e-02 9.548906e+00
## TBPL1 -3.298693e-02 -9.240045e-03 -4.222697e-02 2.635264e+01
## CUL5 -1.434184e-02 -1.525040e-02 -2.959224e-02 1.720670e+01
## CTBS -4.967664e-01 1.610283e-01 -3.357381e-01 1.353494e+02
## EXOG 4.302510e-03 -6.459055e-03 -2.156545e-03 3.052165e+00
## CENPBD1 -1.293805e-02 -3.089851e-03 -1.602790e-02 9.399546e+00
## ZNF880 -1.282255e-04 6.589847e-03 6.461622e-03 2.370748e+00
## DIP2A -3.489631e-02 6.768056e-02 3.278425e-02 3.502928e+01
## ACAP1 -5.551577e-01 1.979630e-01 -3.571946e-01 1.814443e+02
## LRCH3 -2.323079e-02 -1.881398e-03 -2.511218e-02 2.333332e+01
## HPS3 2.060456e-02 -4.750774e-02 -2.690318e-02 3.272897e+01
## TOGARAM1 -2.821350e-03 9.887703e-03 7.066353e-03 4.533942e+00
## PHC3 -8.266586e-02 -9.211129e-03 -9.187699e-02 4.706296e+01
## ST6GALNAC2 -1.196632e-01 -4.626202e-02 -1.659252e-01 5.638787e+01
## ORMDL1 5.317871e-02 -2.070721e-02 3.247149e-02 5.379659e+01
## GZF1 4.272763e-02 -6.562389e-02 -2.289626e-02 1.363477e+01
## GBP1 1.381953e+00 -2.329991e+00 -9.480377e-01 2.827242e+02
## DDX56 4.306688e-02 2.876681e-02 7.183369e-02 2.690079e+01
## ZNF528 2.708680e-03 4.180927e-03 6.889608e-03 2.504938e+00
## MDN1 -9.000099e-03 4.787858e-02 3.887848e-02 1.625109e+01
## CSK -5.402573e-01 4.554083e-01 -8.484903e-02 2.366198e+02
## TBC1D1 -1.566306e-01 3.740283e-02 -1.192278e-01 8.625291e+01
## STAP1 3.899231e-03 -2.588309e-02 -2.198386e-02 6.999513e+00
## PTS 3.650630e-03 5.911615e-03 9.562245e-03 3.343710e+00
## ZNF513 7.694384e-05 1.253423e-02 1.261118e-02 9.470021e+00
## CLIP1 -2.438890e-01 1.741459e-01 -6.974307e-02 7.835296e+01
## TRIM25 -1.453199e+00 7.173618e-01 -7.358367e-01 4.251199e+02
## ZNF133 1.420165e-02 -1.184095e-03 1.301755e-02 7.075448e+00
## PKD1 1.742590e-02 1.746769e-02 3.489358e-02 9.990277e+00
## CCDC85C 1.398973e-02 -3.301728e-02 -1.902755e-02 5.704758e+00
## ZMYM3 1.033329e-02 1.281488e-02 2.314817e-02 9.173660e+00
## SSTR2 3.889166e-03 -3.659614e-03 2.295519e-04 1.387071e+00
## AARS1 -4.056508e-02 5.864588e-02 1.808080e-02 2.431357e+01
## PLPBP -2.395032e-02 -4.234517e-02 -6.629549e-02 3.900656e+01
## MAPKAPK2 -6.951932e-01 1.019373e-01 -5.932558e-01 2.334777e+02
## ZNF490 -2.526213e-04 -6.904588e-03 -7.157209e-03 8.237102e+00
## YWHAZ -1.321973e+00 -6.567022e-01 -1.978675e+00 9.401818e+02
## MAPK3 -2.732930e-01 2.437274e-02 -2.489203e-01 1.167952e+02
## TTC27 1.052988e-02 5.762227e-03 1.629211e-02 7.394919e+00
## ATP10A 1.252236e-02 -3.592399e-02 -2.340163e-02 9.004451e+00
## PNPLA7 5.277106e-03 1.041584e-03 6.318690e-03 1.013381e+00
## GPR137B -2.406850e-02 8.823197e-05 -2.398026e-02 8.107503e+00
## COQ9 -1.334324e-02 2.169100e-02 8.347763e-03 1.839751e+01
## ELMOD2 -6.000143e-02 3.971388e-02 -2.028756e-02 3.321796e+01
## PITPNA 4.322445e-02 -1.954967e-01 -1.522723e-01 1.210846e+02
## JAK1 -4.828731e-01 6.656602e-01 1.827871e-01 3.273323e+02
## USP14 2.467462e-02 5.598572e-03 3.027319e-02 1.817708e+01
## C1QA -9.904972e-02 1.447770e-01 4.572732e-02 1.742241e+01
## ZBTB8OS -5.235293e-02 6.593591e-02 1.358298e-02 3.329658e+01
## SFMBT2 -3.316934e-02 1.374976e-02 -1.941957e-02 1.008937e+01
## CENPU 8.434077e-03 9.913860e-03 1.834794e-02 5.718738e+00
## RFTN1 4.183774e-02 1.719685e-02 5.903459e-02 2.251808e+01
## STK11IP -1.495752e-02 4.305705e-02 2.809953e-02 2.060218e+01
## KIF1C -4.136567e-02 1.601230e-02 -2.535336e-02 3.143918e+01
## HERPUD2 -2.274259e-02 -6.575356e-02 -8.849616e-02 5.929152e+01
## IQGAP1 -2.669568e+00 9.070622e-01 -1.762506e+00 8.546858e+02
## C19orf47 -9.424589e-03 7.803977e-03 -1.620612e-03 5.208254e+00
## GMFG -4.049642e+00 2.109059e+00 -1.940583e+00 1.161094e+03
## CLBA1 -2.434356e-03 3.082420e-03 6.480643e-04 9.412639e-01
## MYO15B 7.560911e-02 -1.210467e-01 -4.543764e-02 5.486274e+01
## CLEC9A 3.414430e-03 3.308836e-03 6.723266e-03 1.598584e+00
## AP1M1 -7.873283e-02 6.403635e-02 -1.469647e-02 4.827055e+01
## TGM1 -3.215243e-03 -8.367295e-04 -4.051972e-03 1.358849e+00
## IQSEC2 -1.673640e-02 3.999637e-03 -1.273676e-02 5.625353e+00
## SPAG7 -2.884500e-02 7.431972e-02 4.547472e-02 2.973020e+01
## PLEKHO2 -6.671724e-01 -2.146563e-01 -8.818287e-01 3.508440e+02
## SQOR -3.364743e-01 -3.773674e-01 -7.138416e-01 2.620535e+02
## BAG3 8.729518e-03 -1.949252e-03 6.780266e-03 2.833685e+00
## MBNL2 -4.019454e-03 1.953921e-02 1.551976e-02 1.007370e+01
## XYLB 1.480728e-03 -1.990321e-03 -5.095930e-04 6.266737e-01
## TMEM134 7.704644e-03 1.583747e-02 2.354211e-02 5.038670e+00
## C1QB -8.927728e-02 1.092096e-01 1.993236e-02 1.271109e+01
## TBXA2R 1.158482e-02 -7.645545e-03 3.939274e-03 3.105908e+00
## KLHL22 6.780264e-03 2.450672e-02 3.128699e-02 1.148237e+01
## LATS2 -4.696001e-02 -3.916135e-03 -5.087614e-02 1.903370e+01
## ARHGEF19 1.308952e-02 -8.715961e-03 4.373559e-03 3.418552e+00
## SMIM5 -1.306310e-02 3.459071e-02 2.152760e-02 7.977298e+00
## MRPL32 -4.459619e-03 2.023440e-02 1.577478e-02 1.547262e+01
## PRPF3 4.062703e-02 -1.352292e-02 2.710411e-02 4.153927e+01
## KATNA1 -1.038080e-02 -1.664248e-02 -2.702328e-02 1.846442e+01
## PPP4R3B -1.468761e-01 5.209185e-02 -9.478428e-02 9.234409e+01
## TMEM43 -2.299096e-01 2.935162e-01 6.360663e-02 1.353121e+02
## TMED8 -2.479947e-01 -3.839558e-02 -2.863903e-01 6.825837e+01
## ANAPC5 -6.912656e-02 9.251480e-02 2.338823e-02 8.565345e+01
## IFI35 4.670449e-01 -5.054792e-01 -3.843435e-02 8.902467e+01
## RAB3GAP1 -6.061138e-02 2.324878e-02 -3.736260e-02 3.104504e+01
## NOP58 4.487940e-02 1.800954e-03 4.668036e-02 2.627963e+01
## DTYMK -1.582616e-02 2.384473e-02 8.018572e-03 5.222054e+00
## TASOR -1.265919e-01 2.303471e-02 -1.035572e-01 6.687783e+01
## KIF23 5.231979e-03 -9.375236e-03 -4.143258e-03 3.069673e+00
## ARPC2 -2.071529e+00 1.435532e+00 -6.359967e-01 1.035823e+03
## PTOV1 3.964910e-02 1.042856e-01 1.439347e-01 3.583851e+01
## APC -1.766211e-01 8.618065e-02 -9.044047e-02 5.278771e+01
## SLF1 -5.199682e-02 9.554784e-05 -5.190127e-02 1.760196e+01
## CEP20 3.495075e-03 1.744598e-02 2.094105e-02 1.786974e+01
## TAF1 -6.569202e-02 6.344129e-02 -2.250727e-03 3.287209e+01
## MICU1 -1.192071e-01 1.990603e-02 -9.930104e-02 7.068736e+01
## CHMP4B -2.717312e-01 1.927705e-01 -7.896076e-02 1.371259e+02
## SLC25A32 1.741928e-02 -4.996616e-03 1.242266e-02 1.008751e+01
## PPP1R12A -4.891415e-01 1.323669e-01 -3.567746e-01 1.725085e+02
## TNFSF13B -6.821791e-01 -1.628046e-01 -8.449836e-01 2.011213e+02
## CCDC167 -2.669937e-02 6.385349e-02 3.715412e-02 1.350071e+01
## IL1R2 -7.130886e+00 1.025661e-01 -7.028320e+00 1.067747e+03
## LRP1 -1.703148e-01 -2.766686e-02 -1.979817e-01 5.487309e+01
## GIPC3 5.849047e-03 3.895430e-03 9.744477e-03 2.211743e+00
## DDIAS -2.708874e-02 -2.446753e-03 -2.953549e-02 7.132031e+00
## FCHSD2 -1.361127e-01 9.092732e-02 -4.518543e-02 6.265653e+01
## STK36 -8.151048e-03 1.034550e-02 2.194454e-03 6.193991e+00
## FAM228B -2.545538e-02 1.602683e-02 -9.428552e-03 7.620070e+00
## MYBPC3 1.812738e-02 8.045119e-02 9.857857e-02 2.521287e+01
## RHOA -1.771410e+00 2.186394e-01 -1.552771e+00 8.853278e+02
## TOP2A 4.539258e-02 -4.351277e-02 1.879805e-03 1.095043e+01
## LATS1 -4.397350e-02 1.109304e-02 -3.288047e-02 1.826010e+01
## CD36 -5.630713e-01 4.519093e-02 -5.178804e-01 1.818747e+02
## GBP2 -3.373966e-02 -1.890552e+00 -1.924291e+00 7.348963e+02
## PLEKHM1 -1.399534e-01 -2.926340e-02 -1.692168e-01 9.781783e+01
## MRPS36 -1.436417e-02 2.035732e-02 5.993146e-03 1.500124e+01
## ZRSR2 4.812218e-02 -1.884985e-02 2.927233e-02 2.293016e+01
## MTRNR2L9 -1.948778e-01 3.818892e-01 1.870114e-01 9.260786e+01
## KLF7 -3.415399e-01 6.021503e-02 -2.813249e-01 8.493973e+01
## SHROOM1 1.215960e-03 -1.071862e-02 -9.502656e-03 3.643970e+00
## CDK19 -1.243433e-01 1.126455e-01 -1.169780e-02 5.172317e+01
## SUV39H2 -1.865442e-03 -2.881901e-03 -4.747342e-03 2.070052e+00
## C12orf45 -2.515622e-02 1.532213e-02 -9.834088e-03 1.306772e+01
## ZNF282 -2.943811e-02 1.360474e-02 -1.583337e-02 1.095556e+01
## MMAA 9.067076e-03 -4.940885e-03 4.126190e-03 4.134259e+00
## SELPLG -2.871466e+00 1.915687e+00 -9.557787e-01 9.494910e+02
## IFITM1 -1.635747e-01 -6.257791e+00 -6.421365e+00 1.571816e+03
## C3orf86 -2.240653e-01 1.683208e-02 -2.072332e-01 4.870458e+01
## UBE2I -4.907709e-02 4.706430e-02 -2.012792e-03 5.944930e+01
## CTF1 -1.988433e-03 2.276533e-03 2.881003e-04 4.698251e-01
## E2F6 7.080553e-03 -8.923569e-04 6.188196e-03 6.140207e+00
## SORL1 -5.627186e+00 2.600700e+00 -3.026485e+00 1.403865e+03
## RMND5A -1.249806e-01 1.871690e-01 6.218844e-02 8.317677e+01
## MTX3 1.145686e-02 7.565023e-03 1.902189e-02 6.242047e+00
## UBAP2L -3.239254e-02 -5.501387e-02 -8.740641e-02 5.572715e+01
## FRMD3 -5.349513e-02 7.278894e-03 -4.621624e-02 1.583204e+01
## PPP1R18 -1.124153e+00 3.238621e-01 -8.002911e-01 5.532528e+02
## DNAJC25 -1.281121e-02 -1.707322e-03 -1.451853e-02 5.496913e+00
## C1orf122 -4.796200e-02 3.848811e-02 -9.473882e-03 1.210519e+01
## MAP3K21 -4.433638e-03 -3.227030e-04 -4.756341e-03 1.711377e+00
## PDLIM1 -8.547500e-02 -5.615020e-02 -1.416252e-01 4.135270e+01
## NUP160 -3.329664e-02 3.683950e-02 3.542864e-03 1.823241e+01
## ZNF236 -1.249291e-02 4.525511e-03 -7.967402e-03 5.345087e+00
## FYN 1.969473e-01 -5.630948e-02 1.406378e-01 8.030468e+01
## FOXK1 1.834053e-02 3.443848e-03 2.178438e-02 1.416828e+01
## EBNA1BP2 -1.822462e-02 3.255476e-02 1.433014e-02 1.666020e+01
## RASSF3 -1.231216e+00 5.126434e-01 -7.185730e-01 4.288979e+02
## KCTD7 5.389686e-03 2.415350e-02 2.954319e-02 1.173371e+01
## UBR5 -2.297809e-01 5.554376e-02 -1.742371e-01 1.123865e+02
## SIGMAR1 2.224235e-02 2.858080e-03 2.510043e-02 1.513629e+01
## USP6 -2.068925e-02 -3.766277e-03 -2.445553e-02 9.732875e+00
## CDC42 -5.874056e-01 -6.898235e-01 -1.277229e+00 6.717454e+02
## PIH1D1 5.280867e-02 2.626719e-02 7.907585e-02 2.301395e+01
## PIP4P2 -1.883841e-01 -1.165052e-01 -3.048893e-01 1.038930e+02
## SUSD6 -5.698524e-01 1.547360e-01 -4.151164e-01 2.125962e+02
## IRF8 8.039565e-02 -5.779735e-02 2.259830e-02 4.913949e+01
## ZSCAN20 -2.232025e-03 -1.417813e-03 -3.649838e-03 1.374111e+00
## CRELD1 1.905806e-02 -5.301948e-05 1.900504e-02 9.180591e+00
## SOX12 3.244258e-03 4.281997e-03 7.526255e-03 2.236598e+00
## MRPS30 1.111104e-02 -2.840630e-04 1.082698e-02 7.756916e+00
## CAPNS2 -1.809968e-03 5.921260e-04 -1.217842e-03 3.548508e-01
## NECAB2 -3.749170e-02 -7.274478e-03 -4.476618e-02 9.255283e+00
## ABCA2 5.323704e-02 -1.616030e-01 -1.083659e-01 4.961811e+01
## MINDY3 -1.104426e-02 -1.012230e-02 -2.116656e-02 1.187627e+01
## MRPL39 6.491938e-03 8.233125e-03 1.472506e-02 7.650764e+00
## STK40 -2.416085e-01 3.728171e-01 1.312087e-01 1.975066e+02
## MED28 -4.626065e-02 -5.247617e-02 -9.873683e-02 8.056921e+01
## AFMID 5.380823e-03 -1.131221e-02 -5.931391e-03 4.888847e+00
## CHEK2 2.771845e-03 5.212530e-03 7.984374e-03 3.881924e+00
## NOL8 5.088638e-03 2.753866e-02 3.262729e-02 2.246275e+01
## KLHL15 4.317318e-04 -4.752950e-02 -4.709777e-02 1.222535e+01
## TMED1 -3.495240e-02 3.205793e-02 -2.894468e-03 1.255846e+01
## TBC1D2B -1.146149e-01 8.541904e-02 -2.919584e-02 6.426483e+01
## NCAM1 1.286651e-02 -1.590238e-02 -3.035870e-03 4.264229e+00
## THOP1 -5.255802e-03 1.623777e-02 1.098196e-02 4.885823e+00
## GALNT14 -1.226823e-01 8.096572e-02 -4.171656e-02 2.651831e+01
## AAAS 2.925965e-03 3.296293e-02 3.588890e-02 2.098386e+01
## MAP2K2 -1.285664e-01 1.408276e-01 1.226120e-02 5.718113e+01
## TTC5 -1.045591e-03 1.255403e-02 1.150844e-02 8.924178e+00
## PLEKHG3 -1.484976e-01 2.381492e-01 8.965155e-02 1.151949e+02
## GOLGB1 -1.216158e-01 3.542093e-02 -8.619492e-02 6.867235e+01
## C1orf174 -1.317516e-02 -6.002262e-03 -1.917742e-02 1.632923e+01
## ENGASE 3.033482e-02 1.577701e-02 4.611183e-02 1.680177e+01
## FAR2 -1.653325e-01 -4.757516e-02 -2.129076e-01 5.885948e+01
## EXOC3 -4.908227e-02 -2.645056e-03 -5.172733e-02 4.017123e+01
## GPR108 -1.924848e-01 2.002220e-01 7.737127e-03 9.714116e+01
## CCT3 1.173715e-01 4.605868e-02 1.634302e-01 8.844045e+01
## ELF2 -1.664209e-01 4.195999e-03 -1.622249e-01 6.821774e+01
## RIOK2 2.753177e-03 1.527662e-02 1.802980e-02 1.194457e+01
## GLA -5.016187e-02 6.258101e-02 1.241914e-02 3.767988e+01
## ANKRD9 -9.074343e-03 2.216314e-02 1.308880e-02 5.552937e+00
## PCYT1B -1.073655e-02 1.299741e-02 2.260863e-03 3.967098e+00
## PIK3CA -1.475375e-01 3.294997e-02 -1.145875e-01 5.873495e+01
## RPL18 1.229096e+00 2.812741e-01 1.510370e+00 3.225091e+02
## SUMF2 7.278091e-02 2.736463e-02 1.001455e-01 4.454928e+01
## VPS13D -7.774827e-02 7.063872e-02 -7.109542e-03 3.948155e+01
## ZNF454 2.989342e-03 -4.625623e-03 -1.636281e-03 1.637333e+00
## ERP27 -9.259592e-03 1.394768e-02 4.688085e-03 5.661152e+00
## BLZF1 -1.649764e-02 -3.808358e-02 -5.458122e-02 2.160260e+01
## ZNF202 7.310567e-03 7.180017e-03 1.449058e-02 6.358487e+00
## GCLC 6.642350e-03 1.838405e-02 2.502640e-02 1.331350e+01
## CRIP1 3.634402e-01 3.872415e-01 7.506817e-01 8.135996e+01
## IQCC 2.907671e-03 -1.338318e-03 1.569352e-03 1.261847e+00
## VAMP3 -2.025386e-01 -1.097921e-01 -3.123307e-01 1.391106e+02
## ADNP2 3.408030e-02 -3.316215e-02 9.181504e-04 1.241305e+01
## SSBP3 4.444387e-02 -1.846874e-02 2.597512e-02 1.830156e+01
## NOP9 -3.074571e-02 2.663878e-02 -4.106929e-03 3.665590e+01
## SS18L2 4.706219e-03 2.992575e-02 3.463197e-02 2.032878e+01
## NAT8B 5.032169e-03 -2.073776e-02 -1.570559e-02 4.950120e+00
## SLC35B3 -2.782642e-02 1.165255e-02 -1.617387e-02 1.728169e+01
## HDHD2 2.446490e-02 -1.467021e-02 9.794687e-03 1.701176e+01
## SOCS6 -4.369169e-03 -4.329407e-03 -8.698576e-03 3.220634e+00
## CCAR2 5.511074e-02 4.479553e-02 9.990627e-02 6.108747e+01
## SULT1B1 -1.408018e+00 6.629166e-01 -7.451012e-01 2.865982e+02
## RPL17-C18orf32 -2.381110e-01 1.763859e-01 -6.172516e-02 9.885410e+01
## GTF2H2C 6.396731e-02 -1.762778e-02 4.633953e-02 2.918868e+01
## SEPTIN14 -3.148700e-02 2.237634e-02 -9.110660e-03 6.456864e+00
## CCDC122 2.851361e-03 -2.613204e-03 2.381570e-04 7.964719e-01
## P4HA2 -9.350729e-03 6.737367e-03 -2.613362e-03 1.244995e+00
## SPRYD4 1.464158e-02 -6.230715e-03 8.410866e-03 6.836029e+00
## CDC14A 1.311974e-02 2.317726e-02 3.629701e-02 1.655400e+01
## PI4K2A 6.177317e-02 -4.615011e-02 1.562306e-02 1.543773e+01
## GTF3C1 -4.940303e-03 2.948510e-02 2.454480e-02 2.497351e+01
## COPRS 1.832902e-02 -8.808128e-03 9.520888e-03 5.246959e+00
## RNF169 -1.462678e-01 -1.309923e-03 -1.475777e-01 5.189974e+01
## H1-0 -2.194080e-02 -1.138444e-01 -1.357852e-01 3.993226e+01
## PLBD2 -2.542826e-02 -4.474810e-03 -2.990307e-02 1.496980e+01
## SUCO 4.702381e-02 -6.833916e-02 -2.131535e-02 2.565766e+01
## AGO3 -2.913384e-02 4.278839e-02 1.365455e-02 2.559811e+01
## TMUB2 -1.568104e-01 2.131249e-02 -1.354979e-01 9.386506e+01
## TMEM187 -7.197513e-03 1.490224e-02 7.704728e-03 4.428668e+00
## PRELID2 -1.242893e-03 2.194533e-03 9.516397e-04 7.625350e-01
## MCL1 -7.697423e+00 2.412343e+00 -5.285080e+00 2.819817e+03
## MALT1 6.674539e-02 -1.607393e-02 5.067146e-02 3.556325e+01
## LRWD1 5.608081e-02 -2.411072e-02 3.197009e-02 1.838916e+01
## NBEAL1 -1.247677e-02 7.469367e-03 -5.007399e-03 5.194572e+00
## CEACAM21 9.460507e-02 2.575761e-03 9.718083e-02 2.412862e+01
## TMEM256 -2.338958e-02 5.262537e-02 2.923579e-02 1.264563e+01
## DNPH1 1.346285e-03 9.938287e-03 1.128457e-02 2.217869e+00
## NCEH1 -7.878040e-03 1.640364e-02 8.525603e-03 6.792656e+00
## MAP4K3 8.998540e-03 -7.785290e-03 1.213250e-03 3.646618e+00
## DDX19A 2.462725e-02 -5.629398e-03 1.899785e-02 1.509240e+01
## SUV39H1 -1.022045e-02 1.901435e-02 8.793901e-03 7.730099e+00
## PARP3 1.245223e-02 -3.064851e-03 9.387384e-03 3.838518e+00
## FNDC3B -2.597360e-01 -4.337297e-02 -3.031089e-01 9.921672e+01
## NRAS -7.504931e-02 -2.464444e-02 -9.969374e-02 5.229278e+01
## OXA1L 9.098048e-02 1.203392e-02 1.030144e-01 8.050274e+01
## SMIM8 -3.502823e-04 1.509945e-02 1.474916e-02 6.595449e+00
## TRAPPC1 -3.479126e-01 1.529993e-01 -1.949133e-01 1.334744e+02
## SYNE2 -1.936052e-01 2.061847e-02 -1.729867e-01 5.919555e+01
## GPN1 2.366746e-02 8.057551e-06 2.367552e-02 2.129260e+01
## NSMCE2 -1.892049e-02 3.953698e-02 2.061648e-02 1.739049e+01
## PLK1 -9.845546e-03 9.104267e-03 -7.412798e-04 2.521290e+00
## RETREG3 -3.102048e-02 1.382156e-01 1.071952e-01 6.969379e+01
## RCAN1 -9.440120e-04 -1.425649e-02 -1.520050e-02 1.365938e+01
## GTF3A 5.734179e-02 1.183603e-01 1.757021e-01 9.971062e+01
## SLC25A34 6.374653e-03 -2.840891e-03 3.533762e-03 1.971041e+00
## TSPAN3 -6.634891e-05 3.429297e-02 3.422662e-02 2.453010e+01
## STT3B 2.775683e-02 1.183068e-01 1.460636e-01 1.144594e+02
## SRPK1 -8.160487e-01 3.226032e-01 -4.934455e-01 2.089582e+02
## WTIP -3.398410e-03 2.703138e-03 -6.952720e-04 2.166025e+00
## UBE3A 6.679172e-03 3.725987e-02 4.393904e-02 2.781758e+01
## FUT7 -1.331395e-01 -4.921912e-03 -1.380614e-01 3.223891e+01
## EFCAB7 6.081403e-04 7.018559e-03 7.626699e-03 3.072523e+00
## EIF3M 2.066230e-01 -1.075836e-01 9.903935e-02 1.046939e+02
## DDX60L -3.092342e-02 -1.049897e+00 -1.080820e+00 3.287047e+02
## PPP5C 2.559701e-02 7.141474e-04 2.631115e-02 1.247842e+01
## DDX60 -2.450423e-01 -3.975391e-01 -6.425814e-01 9.344242e+01
## ZNF394 9.956304e-02 -1.369187e-01 -3.735564e-02 4.329568e+01
## CALML4 -2.346040e-02 -2.263113e-02 -4.609152e-02 3.067975e+01
## LOC730098 -6.157701e-05 1.832619e-03 1.771042e-03 4.041089e-01
## CMC4 4.873842e-03 5.354456e-03 1.022830e-02 4.140022e+00
## RPS6KB2 -8.900312e-02 1.372734e-01 4.827030e-02 4.355116e+01
## FSTL3 8.806764e-03 5.203881e-02 6.084557e-02 1.122859e+01
## RNF24 -9.189699e-01 7.007994e-01 -2.181704e-01 2.776160e+02
## RNF135 -1.695721e-01 3.227043e-02 -1.373017e-01 6.670614e+01
## TOP3B -1.694548e-02 2.016576e-02 3.220274e-03 1.327283e+01
## EMC3 -1.186121e-01 1.674850e-01 4.887292e-02 8.688051e+01
## ETF1 1.123051e-01 -2.737501e-01 -1.614450e-01 9.366684e+01
## MRPL2 -1.024291e-02 1.726259e-02 7.019680e-03 6.783673e+00
## MED23 -8.529752e-02 3.406060e-02 -5.123692e-02 3.481579e+01
## RUFY1 -7.803674e-02 1.930747e-01 1.150379e-01 9.545441e+01
## MYBBP1A 1.117359e-02 8.921092e-03 2.009468e-02 6.380048e+00
## GINS4 4.198535e-03 -5.663148e-03 -1.464613e-03 2.236294e+00
## GPR89A 8.595462e-03 5.573460e-03 1.416892e-02 7.483005e+00
## MED12L 1.845529e-03 -1.146419e-02 -9.618658e-03 2.302674e+00
## PUS3 2.165333e-04 -1.355753e-02 -1.334100e-02 7.225133e+00
## KLHL42 1.523896e-02 -1.205288e-02 3.186087e-03 7.737602e+00
## SCP2 5.119778e-02 -8.678181e-02 -3.558403e-02 5.528480e+01
## NKTR -8.563678e-02 1.450677e-01 5.943090e-02 6.373023e+01
## ALPK1 -2.545200e-01 -2.056158e-01 -4.601358e-01 1.372160e+02
## ABTB1 -1.991290e+00 1.674043e+00 -3.172479e-01 5.332241e+02
## NUDT2 -3.330674e-02 1.862194e-02 -1.468480e-02 1.421060e+01
## DNAJC8 1.184088e-01 -3.993227e-02 7.847648e-02 8.880909e+01
## JPT1 -4.706710e-01 1.989493e-01 -2.717217e-01 1.543234e+02
## SUMO1 -1.212546e-01 -5.240590e-02 -1.736605e-01 1.111267e+02
## CMTR1 1.444104e-01 -2.391925e-01 -9.478211e-02 6.785118e+01
## GPR137 -1.646029e-02 3.030414e-02 1.384385e-02 9.550849e+00
## RALGAPB -1.048394e-01 5.376991e-02 -5.106945e-02 5.390568e+01
## SORBS3 2.528470e-02 -2.578640e-03 2.270606e-02 4.846766e+00
## ASPHD2 2.471944e-02 -1.985675e-02 4.862696e-03 8.207951e+00
## PIGX -1.208501e-01 1.020100e-01 -1.884007e-02 5.018418e+01
## RHPN1 1.020235e-02 -5.948298e-04 9.607521e-03 1.631164e+00
## CREM 3.141855e-02 -4.316979e-02 -1.175124e-02 1.299398e+01
## DVL1 5.734233e-03 1.252507e-02 1.825931e-02 5.111012e+00
## RCC1L -4.666596e-03 2.235856e-02 1.769196e-02 1.065291e+01
## IL1R1 -3.531285e-01 7.950153e-02 -2.736269e-01 6.187158e+01
## RSF1 -5.531635e-02 2.508531e-02 -3.023104e-02 2.169969e+01
## SH2D1B 5.405709e-02 -1.101337e-02 4.304372e-02 1.228797e+01
## GTF3C3 2.234479e-02 1.672935e-03 2.401772e-02 1.454921e+01
## KLF6 -1.655548e+00 1.055320e+00 -6.002280e-01 5.865033e+02
## CIDEC -4.326719e-04 -7.009404e-03 -7.442076e-03 2.903852e+00
## MCU -8.451271e-02 3.804787e-02 -4.646485e-02 3.360175e+01
## PRELP -3.552045e-03 -9.361805e-04 -4.488225e-03 1.491045e+00
## DECR1 6.342614e-02 -1.292300e-01 -6.580382e-02 8.695033e+01
## AGGF1 -4.833644e-02 4.641118e-03 -4.369532e-02 3.083472e+01
## IP6K2 6.767372e-02 -3.766588e-02 3.000784e-02 5.072548e+01
## RBIS -3.245703e-02 6.627313e-02 3.381610e-02 2.578783e+01
## SLC66A2 -1.425541e-01 6.078487e-02 -8.176927e-02 3.194441e+01
## UCHL3 -6.398397e-03 1.999622e-02 1.359782e-02 1.034692e+01
## KIDINS220 -2.472189e-01 3.823534e-02 -2.089836e-01 8.987570e+01
## PARP1 2.908164e-02 7.873403e-02 1.078157e-01 5.787176e+01
## RASSF5 -4.196314e-01 -5.907895e-02 -4.787103e-01 2.964915e+02
## HECTD3 -1.897594e-02 3.156440e-02 1.258846e-02 2.772989e+01
## C9orf64 -1.525757e-02 7.494975e-03 -7.762591e-03 8.613999e+00
## LSM12 -3.350505e-02 1.044105e-02 -2.306400e-02 3.737211e+01
## SLC4A5 -7.720498e-03 1.210476e-03 -6.510022e-03 2.891648e+00
## RINT1 2.750602e-03 9.053088e-03 1.180369e-02 9.476999e+00
## XRCC2 -1.637642e-03 -1.975880e-03 -3.613522e-03 1.202861e+00
## GOLGA8O -2.703156e-02 -3.170384e-03 -3.020194e-02 9.260147e+00
## MTCP1 1.970341e-03 -2.409327e-03 -4.389862e-04 1.041086e+00
## R3HCC1 -1.015850e-02 3.741356e-02 2.725507e-02 1.552926e+01
## RASA4B 4.346640e-02 1.291413e-03 4.475781e-02 1.221461e+01
## UBE2A -1.027394e-01 6.541669e-02 -3.732275e-02 6.447654e+01
## AP1S2 1.744989e-01 -2.191156e-01 -4.461671e-02 1.217435e+02
## RHBDD2 -1.222742e-01 3.502829e-02 -8.724590e-02 3.706205e+01
## SLC22A1 -2.616201e-02 -3.282328e-03 -2.944434e-02 7.523701e+00
## MATK -1.742373e-03 5.444674e-02 5.270437e-02 9.315206e+00
## APTX -1.051592e-02 1.765490e-02 7.138980e-03 1.459927e+01
## MPPE1 -1.158984e-03 1.575741e-01 1.564151e-01 8.415200e+01
## BAZ2A -3.959835e-01 8.874245e-02 -3.072410e-01 1.888915e+02
## PRKAR2A -9.640990e-02 5.959864e-02 -3.681126e-02 4.006031e+01
## IFITM3 2.164394e+00 -5.538371e+00 -3.373977e+00 1.104583e+03
## NFKBIA -1.149300e+00 -6.198687e-01 -1.769169e+00 3.723539e+02
## MMAB 1.540341e-02 6.989350e-04 1.610234e-02 4.138288e+00
## B2M -2.745844e+01 -4.846893e+00 -3.230534e+01 1.601035e+04
## PRKAB2 -1.048547e-02 2.432665e-02 1.384118e-02 1.409569e+01
## ANKRD28 -1.531989e-01 1.509116e-02 -1.381077e-01 4.109088e+01
## EIF4G2 -1.016498e+00 7.604373e-02 -9.404545e-01 6.640409e+02
## STN1 -8.119655e-02 6.696383e-02 -1.423272e-02 3.435744e+01
## ZFP90 2.339956e-02 4.990066e-03 2.838963e-02 1.331324e+01
## USP8 -9.325561e-02 -2.255911e-02 -1.158147e-01 6.292121e+01
## GNE -1.058056e-02 -8.719368e-03 -1.929993e-02 1.085411e+01
## TMEM44 9.279431e-04 2.338435e-03 3.266379e-03 1.122166e+00
## MICALCL -2.074752e-02 3.448280e-02 1.373528e-02 1.022124e+01
## CACTIN 2.969439e-03 1.384274e-02 1.681218e-02 5.544140e+00
## BIRC2 -1.593780e-01 -2.049828e-02 -1.798763e-01 1.027338e+02
## FAM120C 3.779624e-03 4.586942e-04 4.238318e-03 1.680066e+00
## KAT6A -3.709236e-01 4.757539e-02 -3.233482e-01 1.180539e+02
## NUDT4 -3.043833e-02 6.415694e-02 3.371860e-02 3.352954e+01
## CSNK1G2 -7.299105e-02 7.559517e-02 2.604125e-03 4.134168e+01
## DNM1L 3.277489e-02 -7.017243e-04 3.207316e-02 2.414621e+01
## SERPINB9 -9.318028e-02 1.494804e-02 -7.823224e-02 4.362464e+01
## HEBP1 3.468447e-02 -1.870717e-03 3.281375e-02 1.833452e+01
## SERPINF2 5.600907e-03 -2.255333e-03 3.345574e-03 1.182672e+00
## NHLRC1 1.715716e-03 -1.618563e-03 9.715264e-05 6.043003e-01
## KIN -1.504582e-02 -1.745419e-02 -3.250001e-02 2.225443e+01
## TBRG4 2.536595e-02 1.925202e-02 4.461798e-02 1.722667e+01
## MLKL -2.641167e-01 1.064178e-03 -2.630525e-01 1.140256e+02
## CMC2 2.244315e-02 -8.806034e-04 2.156254e-02 1.266003e+01
## PPP3CB -6.623408e-02 5.167000e-02 -1.456408e-02 5.063575e+01
## CMTM7 -9.534857e-02 5.622399e-02 -3.912457e-02 5.335599e+01
## MTA2 1.782015e-02 8.327549e-02 1.010956e-01 9.407895e+01
## CLIC4 -8.758911e-02 3.766390e-02 -4.992521e-02 3.683004e+01
## NDUFB8 -7.112333e-02 1.208606e-01 4.973726e-02 4.772423e+01
## CYP4F3 3.600056e-01 4.056520e-01 7.656575e-01 2.319367e+02
## HEXB 6.066483e-02 -1.933941e-01 -1.327293e-01 1.341602e+02
## RNF10 -1.626540e+00 8.221100e-01 -8.044303e-01 4.380705e+02
## GIMAP1 7.232460e-02 6.285741e-03 7.861035e-02 3.657418e+01
## STAU2 -3.420816e-02 -1.091544e-02 -4.512360e-02 2.132552e+01
## CDC26 -8.874939e-02 -3.395948e-03 -9.214534e-02 4.956672e+01
## IL12RB2 1.649710e-03 -7.012920e-03 -5.363210e-03 1.931912e+00
## CERS4 -2.102560e-02 5.899319e-02 3.796759e-02 1.961053e+01
## LSM5 1.811835e-02 2.841737e-02 4.653573e-02 1.623787e+01
## IMPACT 8.547209e-03 6.778534e-03 1.532574e-02 9.927913e+00
## ATP5MG -1.567854e-01 3.729595e-01 2.161741e-01 1.955552e+02
## C7orf61 4.816791e-03 -5.814549e-03 -9.977583e-04 1.361951e+00
## CHPT1 -1.100713e-01 2.268399e-01 1.167685e-01 6.479005e+01
## LGALS3 -4.284720e-02 2.170061e-01 1.741589e-01 7.338260e+01
## DOP1A -2.467084e-02 1.990294e-02 -4.767900e-03 9.170055e+00
## HAUS4 -4.311504e-01 -6.236062e-02 -4.935110e-01 1.361062e+02
## KIAA2026 -6.298417e-02 4.208404e-02 -2.090013e-02 2.650521e+01
## AKT2 -5.024007e-02 7.265729e-02 2.241721e-02 6.823690e+01
## IL17RB -3.421527e-03 2.382544e-03 -1.038983e-03 7.796736e-01
## SLC7A7 -2.564632e-01 -6.543663e-02 -3.218998e-01 1.638978e+02
## MYORG -2.820026e-03 2.041878e-03 -7.781480e-04 1.655845e+00
## GDPD1 -1.707631e-04 -2.719892e-03 -2.890655e-03 2.070043e+00
## TRIM16 6.441445e-03 2.122829e-04 6.653728e-03 3.334496e+00
## NUDT18 -2.418169e-02 5.181785e-02 2.763617e-02 1.225316e+01
## DCAF6 -6.614416e-02 2.121077e-02 -4.493339e-02 3.890570e+01
## MCM3AP 1.325206e-02 3.010905e-02 4.336110e-02 4.929049e+01
## TRAIP -4.055772e-03 5.451055e-03 1.395282e-03 1.589568e+00
## PBX1 -8.384778e-03 7.905112e-03 -4.796658e-04 3.087616e+00
## ETFA -9.095477e-02 8.874319e-02 -2.211581e-03 6.085675e+01
## PFKP 3.015597e-02 -2.654543e-02 3.610538e-03 1.384189e+01
## ZNF146 4.228082e-03 5.129944e-02 5.552752e-02 2.879880e+01
## PPP3CA -1.911356e-01 1.374773e-02 -1.773879e-01 8.536297e+01
## INHBB -6.095968e-03 -1.562137e-02 -2.171734e-02 3.660105e+00
## TESK1 1.592036e-03 1.973723e-02 2.132927e-02 9.805560e+00
## ACIN1 -1.131441e-01 -5.481448e-02 -1.679586e-01 1.708047e+02
## UBR3 -3.951254e-02 6.258610e-02 2.307356e-02 2.758518e+01
## TM9SF3 -7.388967e-02 1.067393e-01 3.284964e-02 9.688584e+01
## KNSTRN -1.716438e-02 1.227330e-02 -4.891079e-03 7.894371e+00
## DRAM2 5.258897e-02 -6.691753e-02 -1.432855e-02 5.342142e+01
## DTL 7.146203e-03 -1.201369e-02 -4.867482e-03 3.235270e+00
## CCL5 8.845465e-01 1.507579e-01 1.035304e+00 2.620635e+02
## MED18 -3.501886e-02 -1.619870e-02 -5.121756e-02 2.443455e+01
## ZNF491 1.901799e-03 -1.848862e-05 1.883311e-03 6.041797e-01
## FBXW7 -2.533249e-02 4.579454e-02 2.046205e-02 3.121851e+01
## IKZF2 -1.245602e-02 3.094025e-02 1.848423e-02 6.499419e+00
## GEMIN8 1.140600e-02 -2.560858e-03 8.845138e-03 4.973845e+00
## LIN54 -4.714216e-02 2.811195e-02 -1.903021e-02 1.761995e+01
## UQCRQ -9.311399e-02 9.568930e-02 2.575306e-03 3.161463e+01
## RLIM -1.396503e-01 2.156504e-02 -1.180852e-01 5.616369e+01
## TGFA -2.608382e-01 1.444415e-01 -1.163968e-01 6.485987e+01
## PLSCR1 -5.160840e-01 -2.927604e-01 -8.088444e-01 1.655015e+02
## RPGRIP1 -2.889902e-02 7.024990e-03 -2.187403e-02 6.768395e+00
## SLC24A3 -2.095879e-03 -1.348992e-02 -1.558580e-02 4.343573e+00
## COX17 -2.486310e-02 3.550636e-02 1.064326e-02 1.665823e+01
## SFXN1 -4.185880e-02 -9.666446e-02 -1.385233e-01 2.610807e+01
## INPPL1 -1.414625e-01 4.174301e-02 -9.971953e-02 9.942634e+01
## SPEF2 -1.583281e-03 4.571704e-03 2.988424e-03 1.322463e+00
## BCL2L11 -1.518556e-01 7.546464e-02 -7.639099e-02 6.230889e+01
## CAND1 3.691458e-02 1.944756e-02 5.636214e-02 3.886795e+01
## CNPY4 1.683866e-02 1.035596e-03 1.787425e-02 1.075072e+01
## PRPF19 7.007125e-02 1.378158e-02 8.385282e-02 4.128558e+01
## SETD6 1.929892e-02 -4.369032e-04 1.886202e-02 7.474746e+00
## MRPL12 -5.376593e-02 4.486734e-02 -8.898581e-03 1.237536e+01
## BOD1L1 -4.549430e-01 2.095172e-01 -2.454258e-01 1.387488e+02
## EPB41 -2.553680e-02 3.013870e-01 2.758502e-01 1.634100e+02
## SBK1 1.312007e-02 1.342976e-02 2.654983e-02 5.939589e+00
## NEDD4 -4.072457e-02 -4.635845e-03 -4.536042e-02 8.434414e+00
## PDCL -8.818435e-03 8.649654e-03 -1.687814e-04 1.126053e+01
## DHRS4L2 4.369040e-02 -5.454280e-02 -1.085240e-02 1.293471e+01
## DHRSX -2.591169e-02 4.280281e-03 -2.163141e-02 1.429759e+01
## ATP5F1E -1.015052e+00 1.209593e+00 1.945417e-01 4.871762e+02
## SENP6 -1.837372e-01 4.350491e-02 -1.402323e-01 8.452342e+01
## SLC23A3 1.186053e-03 1.571033e-03 2.757086e-03 8.083075e-01
## TADA3 -3.562343e-01 2.103574e-01 -1.458769e-01 1.381441e+02
## STIM1 -6.598176e-02 8.670097e-02 2.071921e-02 7.598464e+01
## USP54 -2.339938e-03 3.933368e-03 1.593430e-03 1.902972e+00
## RHOG -1.744859e+00 3.071772e-01 -1.437682e+00 5.131822e+02
## LMNB1 -5.889062e-01 -3.537647e-01 -9.426709e-01 2.663100e+02
## MCAT -3.988608e-03 1.056133e-02 6.572720e-03 3.748407e+00
## RPS2 1.508513e+00 1.286860e+00 2.795373e+00 6.653893e+02
## ATP6V0D1 -6.808016e-01 -6.866054e-02 -7.494622e-01 3.232266e+02
## FAM102B -3.243879e-02 8.679378e-03 -2.375941e-02 2.062025e+01
## SYN3 -1.495628e-01 8.026631e-02 -6.929653e-02 2.351379e+01
## SRSF9 -1.753376e-01 1.980342e-02 -1.555341e-01 1.132605e+02
## USP25 -1.004758e-01 -7.716601e-02 -1.776418e-01 6.833131e+01
## PDCL3 8.476469e-03 1.145506e-02 1.993153e-02 1.179264e+01
## IFNGR1 -1.239179e+00 -7.007852e-01 -1.939964e+00 6.125680e+02
## PDSS1 -1.116666e-02 -3.113244e-02 -4.229910e-02 7.429003e+00
## LENG8 4.973716e-02 9.274216e-02 1.424793e-01 8.159507e+01
## TRAP1 2.013729e-02 9.958311e-03 3.009561e-02 1.101433e+01
## TLR10 -2.166271e-02 1.017983e-01 8.013560e-02 3.139801e+01
## CSNK1E 1.727754e-02 6.374641e-03 2.365219e-02 9.882994e+00
## EFEMP2 -2.152714e-02 1.941997e-02 -2.107172e-03 6.392319e+00
## DCAF13 1.615651e-02 3.421184e-03 1.957770e-02 1.557360e+01
## DERA -2.738132e-02 -1.513316e-03 -2.889464e-02 2.078248e+01
## PCDHA4 -1.132205e-02 4.988424e-03 -6.333621e-03 4.803577e+00
## SF3B3 5.264412e-02 2.219769e-02 7.484181e-02 4.721282e+01
## USP34 -2.709813e-01 2.008618e-01 -7.011953e-02 1.223386e+02
## PXYLP1 -1.133342e-01 1.856431e-02 -9.476986e-02 2.353962e+01
## AVEN 1.699249e-04 7.495531e-03 7.665456e-03 3.901431e+00
## NEDD1 4.455177e-02 -2.700978e-02 1.754198e-02 1.509813e+01
## ABHD13 -1.122703e-01 4.285300e-03 -1.079850e-01 5.196101e+01
## ENDOD1 9.814308e-03 -6.099444e-02 -5.118013e-02 2.710927e+01
## TRMT1 6.731772e-02 -2.443242e-04 6.707340e-02 1.890975e+01
## LRRC41 2.945553e-02 3.799208e-03 3.325474e-02 2.120218e+01
## HARBI1 -4.442055e-03 -2.146247e-03 -6.588302e-03 4.396917e+00
## LEPR 1.133010e-02 6.279389e-03 1.760949e-02 7.060569e+00
## KBTBD4 -2.130520e-02 2.258308e-02 1.277873e-03 1.798054e+01
## COMMD1 -3.306904e-02 1.570007e-02 -1.736897e-02 1.368396e+01
## KCTD10 -5.883222e-03 2.273412e-02 1.685090e-02 2.765802e+01
## POLD2 1.695202e-02 2.663487e-02 4.358688e-02 1.147778e+01
## MBD6 -3.514535e-01 1.123537e-01 -2.390998e-01 1.288315e+02
## ARPC1B -9.696271e-01 5.406574e-01 -4.289697e-01 3.803105e+02
## GATAD2B -8.475998e-02 8.785610e-02 3.096120e-03 5.197707e+01
## FLYWCH1 2.576559e-02 -7.240295e-03 1.852529e-02 6.890713e+00
## RBM23 -2.437982e-01 -6.482426e-02 -3.086224e-01 1.839784e+02
## PTRHD1 -6.281785e-03 2.339391e-02 1.711213e-02 7.100940e+00
## SQSTM1 2.341046e-01 8.895337e-02 3.230580e-01 1.658516e+02
## CAPG -7.167860e-01 1.234197e-01 -5.933663e-01 1.862372e+02
## KIAA1958 -2.595466e-02 -1.971570e-02 -4.567036e-02 1.026758e+01
## AIMP1 3.606766e-02 -1.630290e-02 1.976476e-02 2.767105e+01
## PHF21A -4.332125e-01 -1.855508e-02 -4.517676e-01 1.776919e+02
## GADD45G -1.861079e-03 -2.662120e-03 -4.523199e-03 7.713165e-01
## ABHD6 9.523459e-03 -7.142172e-03 2.381286e-03 4.660103e+00
## GTF2H3 1.460928e-02 5.319508e-04 1.514123e-02 8.981806e+00
## PPP1R26 8.197498e-03 -4.555356e-03 3.642142e-03 2.459953e+00
## NBPF14 -5.025826e-01 -7.976495e-03 -5.105591e-01 1.938345e+02
## PKNOX1 -3.652570e-02 -8.762692e-03 -4.528840e-02 2.207036e+01
## SLC35A2 -1.749171e-02 3.155587e-03 -1.433613e-02 1.390741e+01
## ZNF76 4.949741e-03 2.221610e-02 2.716585e-02 1.496780e+01
## KIAA0100 -1.068341e-01 8.451944e-02 -2.231464e-02 1.188641e+02
## MZF1 2.890404e-03 2.488315e-03 5.378720e-03 2.037143e+00
## HAUS2 1.427780e-02 -2.077852e-03 1.219995e-02 1.140757e+01
## NAPRT -1.107356e-01 1.092507e-01 -1.484876e-03 2.198267e+01
## XKR9 -1.724269e-03 -3.472426e-03 -5.196694e-03 2.264540e+00
## CDADC1 -3.364042e-02 -1.634286e-02 -4.998328e-02 1.092186e+01
## COMMD6 8.158052e-02 1.086938e-01 1.902743e-01 6.616956e+01
## PAG1 -5.443598e-01 4.819131e-02 -4.961685e-01 1.555030e+02
## PBDC1 2.987666e-02 7.126254e-04 3.058929e-02 1.601970e+01
## HSPA14 1.316031e-02 1.027748e-03 1.418805e-02 1.350498e+01
## JMY 3.443426e-02 -1.490894e-02 1.952532e-02 7.772953e+00
## MARCHF7 -6.295225e-01 2.482040e-01 -3.813184e-01 2.362617e+02
## JARID2 -1.493015e-02 -8.772399e-02 -1.026541e-01 5.002538e+01
## TUBB1 -4.036834e-01 2.189461e-01 -1.847374e-01 9.688470e+01
## ZBTB44 -9.414606e-02 8.921169e-02 -4.934369e-03 5.867273e+01
## ZKSCAN8 -1.503803e-02 3.132832e-02 1.629029e-02 1.158964e+01
## MEF2D 7.610056e-02 -1.177165e-01 -4.161590e-02 5.683288e+01
## CMTR2 2.625995e-02 9.903907e-03 3.616386e-02 1.762112e+01
## SLC25A40 -8.039259e-02 -2.168511e-02 -1.020777e-01 3.169609e+01
## ZMAT1 -1.190409e-04 1.849897e-02 1.837993e-02 8.011292e+00
## OSBPL11 -2.017928e-01 1.879208e-02 -1.830007e-01 8.639420e+01
## S1PR1 -1.963824e-01 8.933695e-02 -1.070455e-01 4.775146e+01
## ATG13 -1.315858e-01 1.670112e-02 -1.148846e-01 1.048043e+02
## DHX35 1.074308e-02 -9.444140e-04 9.798665e-03 6.716209e+00
## CHST7 -1.394753e-02 8.007830e-03 -5.939700e-03 4.284618e+00
## RAMAC -2.260445e-02 -4.091366e-02 -6.351811e-02 4.327286e+01
## VAT1 -3.801149e-02 1.367673e-01 9.875577e-02 3.960791e+01
## FLI1 -4.001830e-01 9.692866e-03 -3.904902e-01 2.197847e+02
## DDX31 4.190922e-03 4.535380e-03 8.726303e-03 3.842587e+00
## HMGCR -1.319354e-01 1.603556e-01 2.842021e-02 8.049557e+01
## B4GALT5 -1.171875e+00 3.754699e-01 -7.964051e-01 3.283939e+02
## APBB3 -2.593144e-02 -9.318007e-03 -3.524944e-02 2.086143e+01
## BLOC1S4 1.427964e-02 4.638238e-03 1.891788e-02 8.199685e+00
## MRPS25 3.102369e-02 1.017734e-03 3.204143e-02 1.919950e+01
## EDC4 3.853171e-02 3.411793e-02 7.264964e-02 3.438807e+01
## NCAPH2 1.481162e-01 -1.452457e-01 2.870471e-03 4.450008e+01
## ZNF700 -4.073910e-02 3.193354e-02 -8.805556e-03 2.607761e+01
## TCTN3 5.297077e-03 1.346106e-02 1.875814e-02 9.342023e+00
## SLC31A1 -5.473777e-02 4.071722e-02 -1.402055e-02 2.911739e+01
## FEN1 -4.467341e-02 2.984220e-02 -1.483121e-02 1.415048e+01
## ZNF425 -1.383793e-03 3.878543e-03 2.494751e-03 1.260547e+00
## CD53 -1.280477e+00 -1.765052e+00 -3.045529e+00 1.270422e+03
## SLC35C1 -1.540712e-02 1.978810e-02 4.380983e-03 1.319819e+01
## NCOA2 -2.671176e-01 6.305562e-02 -2.040620e-01 9.099769e+01
## SRPK2 -2.058173e-01 7.460209e-02 -1.312152e-01 7.458289e+01
## SYNJ1 -3.566564e-02 -3.008454e-02 -6.575018e-02 2.792893e+01
## KLHDC3 1.642705e-02 9.535154e-02 1.117786e-01 5.692648e+01
## ARHGAP27 -5.587602e-01 2.130364e-01 -3.457238e-01 2.879656e+02
## BIN2 -8.793631e-01 -5.347901e-01 -1.414153e+00 6.404826e+02
## VDAC2 5.813839e-02 -4.805500e-02 1.008339e-02 5.077176e+01
## TYROBP -2.100395e+00 1.089616e+00 -1.010779e+00 6.529630e+02
## KANSL1 -9.955312e-02 5.965439e-02 -3.989874e-02 5.360751e+01
## SLC8B1 -8.824216e-02 5.036811e-02 -3.787405e-02 4.169616e+01
## ATG9A -7.759463e-02 9.621804e-02 1.862340e-02 4.951351e+01
## YWHAG -8.160699e-02 -1.330333e-02 -9.491032e-02 6.568807e+01
## EFCAB11 1.464147e-03 1.810956e-03 3.275103e-03 1.920036e+00
## GFM1 2.495644e-02 -5.851176e-03 1.910526e-02 1.494705e+01
## RASSF7 3.937554e-02 1.890585e-02 5.828139e-02 7.936898e+00
## EPRS1 3.174997e-02 4.974422e-02 8.149418e-02 4.890320e+01
## TSPAN16 -6.981290e-04 1.734378e-03 1.036249e-03 3.492073e-01
## PLCE1 3.740554e-03 -5.165116e-04 3.224042e-03 1.467656e+00
## TVP23B -5.831044e-02 2.555538e-02 -3.275506e-02 3.106555e+01
## COMMD9 3.281469e-02 -5.987192e-02 -2.705723e-02 3.856956e+01
## ASH1L -9.965198e-02 9.433008e-02 -5.321908e-03 4.233724e+01
## DOK3 -8.088041e-01 -8.505547e-03 -8.173096e-01 3.341956e+02
## HJURP -7.283921e-03 1.608338e-02 8.799462e-03 3.574267e+00
## MRPL13 -1.154802e-02 3.152642e-02 1.997841e-02 1.609511e+01
## POGZ 1.852531e-02 -6.743708e-02 -4.891177e-02 4.534624e+01
## PARP10 3.924974e-01 -2.725598e-01 1.199376e-01 7.031879e+01
## SEL1L -2.655697e-01 9.222950e-02 -1.733402e-01 1.146033e+02
## EZH2 1.308394e-02 -1.527143e-02 -2.187490e-03 9.072242e+00
## STK3 -3.212143e-02 -1.299918e-02 -4.512061e-02 1.445056e+01
## ARHGAP6 -5.059825e-03 -1.048185e-02 -1.554168e-02 5.115979e+00
## CCDC96 -1.200837e-03 3.153526e-03 1.952689e-03 1.130881e+00
## B3GNT8 -9.820104e-02 5.676113e-02 -4.143990e-02 2.107599e+01
## LILRA6 -4.621265e-01 1.024569e-01 -3.596696e-01 1.278784e+02
## RNPEP -1.356916e-01 1.450218e-02 -1.211894e-01 7.660925e+01
## MEGF6 5.266063e-02 -3.830231e-02 1.435832e-02 1.931750e+01
## ZBTB39 -1.095290e-02 9.657749e-03 -1.295151e-03 3.930734e+00
## SRPRB -7.292063e-02 5.034390e-02 -2.257673e-02 2.343629e+01
## CACNA2D4 -9.847774e-03 2.155152e-02 1.170374e-02 7.927264e+00
## EXOSC4 -8.906154e-02 4.247940e-02 -4.658214e-02 8.740912e+00
## MIEF2 2.046964e-03 5.555512e-03 7.602476e-03 4.339859e+00
## GMNN -1.467629e-02 1.588962e-02 1.213330e-03 6.201325e+00
## SLC39A14 -4.028202e-03 1.007848e-02 6.050277e-03 3.344150e+00
## PTGER2 -8.204221e-02 4.548508e-02 -3.655713e-02 3.408497e+01
## ZSCAN32 -3.002617e-02 1.926708e-02 -1.075908e-02 1.941421e+01
## CFLAR -2.540176e+00 3.033242e-01 -2.236852e+00 9.755296e+02
## CNST -4.749468e-02 -3.463850e-03 -5.095853e-02 3.201148e+01
## ALKBH8 2.300202e-03 7.644647e-03 9.944849e-03 4.285017e+00
## FBXL8 3.551501e-03 1.645836e-03 5.197338e-03 6.848887e-01
## TAP2 3.126011e-01 -5.288157e-01 -2.162146e-01 1.655187e+02
## FRY -1.719606e-01 6.171743e-02 -1.102432e-01 5.823806e+01
## LRRC28 3.610178e-03 1.227964e-02 1.588982e-02 1.120015e+01
## ARID5B -4.458094e-02 4.147813e-02 -3.102814e-03 1.937040e+01
## WRN -2.755803e-03 8.658091e-03 5.902288e-03 5.436949e+00
## CD14 1.912337e-01 -6.679969e-01 -4.767632e-01 1.982496e+02
## ATP6V0E1 -1.278489e+00 6.268435e-01 -6.516460e-01 4.759779e+02
## TCEA2 2.593777e-03 8.829214e-03 1.142299e-02 2.814431e+00
## TREML2 -4.885375e-01 4.078319e-01 -8.070559e-02 1.693914e+02
## HDAC3 -5.472856e-02 4.406253e-02 -1.066603e-02 5.945637e+01
## SPIN1 2.951035e-02 -1.827181e-02 1.123853e-02 1.530550e+01
## SRRT 5.978430e-02 2.912244e-02 8.890674e-02 4.574573e+01
## PRKAR1B 1.571947e-02 -1.847436e-02 -2.754884e-03 4.436485e+00
## RAB11B -4.314665e-02 4.337664e-02 2.299902e-04 1.793012e+01
## CAMK2D 3.561913e-02 -8.832898e-03 2.678624e-02 1.313609e+01
## LAS1L 3.768293e-02 -5.068655e-03 3.261427e-02 1.644443e+01
## AVL9 -1.259214e-01 3.662121e-02 -8.930019e-02 6.014709e+01
## XPO4 1.302369e-02 1.695969e-02 2.998337e-02 1.176345e+01
## FES -5.062390e-01 1.412702e-01 -3.649688e-01 1.466250e+02
## COPG2 -1.652168e-02 -1.318716e-02 -2.970885e-02 1.245515e+01
## LPAR6 2.251609e-01 -1.032407e-01 1.219202e-01 8.193540e+01
## CASZ1 -4.719234e-04 -5.354459e-03 -5.826382e-03 3.400234e+00
## MRPL42 2.408077e-02 -1.362700e-02 1.045377e-02 1.959851e+01
## IKZF5 5.023393e-02 -7.732905e-02 -2.709512e-02 2.332658e+01
## NOSIP 1.664371e-01 7.236124e-02 2.387983e-01 5.621492e+01
## ATG3 -3.779185e-01 8.517095e-02 -2.927475e-01 1.795148e+02
## ACTR10 -9.044586e-02 6.757964e-02 -2.286622e-02 5.529011e+01
## PTGS1 9.757935e-02 -3.729040e-01 -2.753246e-01 1.412529e+02
## CRBN -1.072164e-01 5.729861e-02 -4.991784e-02 6.156984e+01
## MED26 1.058521e-02 -1.270468e-02 -2.119463e-03 7.783929e+00
## PIGZ 2.352635e-03 -4.355994e-04 1.917035e-03 5.999261e-01
## SLC25A12 -2.487684e-02 2.552582e-02 6.489733e-04 1.465478e+01
## USP33 -1.103505e-01 4.626816e-02 -6.408237e-02 6.113851e+01
## RIPOR2 -4.732654e+00 -7.744637e-03 -4.740399e+00 1.644850e+03
## CD63 -1.935470e+00 5.647498e-01 -1.370720e+00 4.947737e+02
## FBP1 -2.314329e-02 7.976831e-02 5.662502e-02 2.618608e+01
## PPIA 2.050774e-02 8.599110e-01 8.804188e-01 5.386355e+02
## SLAMF7 -1.504022e-01 1.828316e-01 3.242941e-02 5.802571e+01
## COA8 5.288795e-03 2.299829e-02 2.828709e-02 1.241960e+01
## C19orf54 -1.406560e-02 7.417657e-03 -6.647944e-03 8.100686e+00
## ALG11 -1.291901e-02 3.086732e-02 1.794831e-02 1.672117e+01
## TTF2 1.507321e-02 2.708138e-03 1.778135e-02 8.141427e+00
## GCSAML -7.496787e-03 5.970945e-03 -1.525842e-03 2.034196e+00
## PEX7 2.336736e-03 1.282055e-03 3.618791e-03 1.986724e+00
## SASS6 8.157417e-03 2.185774e-04 8.375994e-03 4.424492e+00
## NAPG -3.748954e-02 1.989749e-02 -1.759204e-02 2.510467e+01
## HCN3 -1.168647e-03 -9.672203e-04 -2.135867e-03 7.213483e-01
## DPH7 3.759214e-02 1.796890e-02 5.556103e-02 1.941031e+01
## TNIP2 -7.165633e-02 3.969297e-02 -3.196337e-02 3.592328e+01
## CLK1 -1.713527e-01 -3.820524e-01 -5.534051e-01 2.712850e+02
## DPP9 -1.976376e-02 1.879044e-02 -9.733258e-04 1.981554e+01
## SOD2 -7.777280e+00 2.789506e+00 -4.987773e+00 2.642645e+03
## IGFLR1 -1.748776e-02 -1.471840e-01 -1.646718e-01 5.324574e+01
## ZMAT3 4.390959e-03 2.444889e-02 2.883985e-02 2.203178e+01
## FUCA1 -4.367444e-02 3.940493e-02 -4.269506e-03 2.310023e+01
## LSP1 -1.309463e+00 1.190804e+00 -1.186588e-01 6.114417e+02
## CBX3 -2.790185e-01 1.511967e-01 -1.278219e-01 1.771593e+02
## TIMM29 2.675126e-03 4.247132e-03 6.922257e-03 4.297673e+00
## TRIO -2.089102e-02 2.518250e-02 4.291480e-03 9.871065e+00
## PHF5A -4.250570e-02 5.173858e-02 9.232876e-03 3.694681e+01
## TCEAL3 7.809658e-03 -3.179961e-03 4.629696e-03 2.886054e+00
## NECTIN2 -1.348244e-01 6.898331e-02 -6.584111e-02 1.719638e+01
## PPP1R2 1.545757e-01 -1.456743e-01 8.901400e-03 7.364049e+01
## RINL -5.086598e-02 2.129113e-02 -2.957484e-02 3.743900e+01
## ZBTB8A -1.833869e-03 -2.303207e-03 -4.137076e-03 2.285720e+00
## STYXL1 5.917328e-02 -7.773611e-02 -1.856283e-02 3.175269e+01
## SUPV3L1 2.074723e-02 -1.657541e-02 4.171820e-03 9.525414e+00
## DSN1 -1.301624e-02 1.378221e-02 7.659712e-04 1.080937e+01
## CARD16 -7.225493e-01 -1.608466e-01 -8.833959e-01 3.134478e+02
## SPICE1 -5.836651e-04 6.292666e-03 5.709001e-03 3.300865e+00
## BPHL 3.759708e-03 -5.759386e-04 3.183769e-03 1.550904e+00
## CYBA -8.007283e-01 5.704706e-01 -2.302577e-01 2.018822e+02
## GPR84 -1.319992e-01 -3.868073e-02 -1.706799e-01 1.532210e+01
## PDE4B 1.215346e-01 -2.780961e-01 -1.565615e-01 7.827493e+01
## GGACT -7.937625e-04 -3.255396e-03 -4.049158e-03 1.482323e+00
## C1QTNF3 2.300290e-03 8.508084e-04 3.151098e-03 1.089866e+00
## CCDC9B 6.266260e-03 -1.060689e-02 -4.340633e-03 3.939992e+00
## COP1 -3.182685e-01 1.148688e-01 -2.033997e-01 1.567579e+02
## APOM -3.188853e-03 4.970528e-03 1.781674e-03 1.574328e+00
## CASP8 -5.346894e-01 -2.762272e-03 -5.374517e-01 2.389324e+02
## IDH3A 2.849063e-02 -2.520134e-02 3.289288e-03 1.986565e+01
## MBOAT7 -8.425994e-01 -1.317198e-01 -9.743192e-01 3.280778e+02
## PSMB1 -1.658578e-01 2.266547e-01 6.079687e-02 1.283435e+02
## CNPY2 -5.374865e-02 6.053885e-02 6.790198e-03 2.957836e+01
## KMO 4.672526e-03 -1.811454e-02 -1.344201e-02 6.511346e+00
## CYC1 -8.322034e-02 9.531122e-02 1.209088e-02 3.715765e+01
## IFT27 -1.194111e-02 2.804553e-03 -9.136553e-03 4.878075e+00
## CAPZA1 -1.351925e+00 4.730464e-01 -8.788782e-01 5.837539e+02
## DMXL1 -5.586708e-02 2.672191e-02 -2.914517e-02 2.465946e+01
## ARHGAP12 -7.645327e-03 2.491013e-02 1.726480e-02 1.316146e+01
## OSTF1 -6.057699e-01 2.342527e-01 -3.715171e-01 2.556977e+02
## ADA 9.932172e-03 3.443985e-02 4.437202e-02 1.351685e+01
## STX8 6.175461e-02 -3.288673e-02 2.886788e-02 2.600792e+01
## SND1 -5.203029e-02 1.014806e-01 4.945028e-02 6.432781e+01
## NCBP2AS2 5.408147e-03 1.438899e-02 1.979714e-02 9.126740e+00
## ACOT7 8.305086e-03 -8.372176e-03 -6.708917e-05 2.722955e+00
## C2CD3 -7.708862e-03 -3.157234e-02 -3.928120e-02 1.859546e+01
## VPS16 -7.141000e-02 -3.070545e-02 -1.021155e-01 6.272973e+01
## RELL2 1.754268e-02 5.313512e-03 2.285619e-02 7.260266e+00
## SNAPC5 1.302365e-02 1.643484e-03 1.466714e-02 1.206340e+01
## RDH13 -2.643044e-03 4.797871e-03 2.154828e-03 1.337863e+00
## ABCF1 5.421218e-02 1.001817e-02 6.423034e-02 3.507890e+01
## SNX12 -1.550673e-02 -1.896294e-02 -3.446967e-02 2.577432e+01
## EPM2AIP1 -4.855113e-02 3.277188e-02 -1.577925e-02 2.387009e+01
## TRAPPC2B 5.888638e-03 3.877601e-03 9.766239e-03 3.184848e+00
## ZNF614 3.748896e-03 4.615053e-03 8.363949e-03 4.125117e+00
## ALG12 2.972232e-03 1.121094e-02 1.418317e-02 9.022112e+00
## TRIM56 -8.554823e-03 -1.387696e-01 -1.473244e-01 9.278373e+01
## C1QC -2.626865e-02 2.001138e-02 -6.257265e-03 3.321568e+00
## CELF2 -6.854617e-01 -1.442984e-01 -8.297601e-01 3.380498e+02
## DMPK 5.318581e-03 6.598750e-03 1.191733e-02 3.493305e+00
## PJA2 -5.987500e-01 -5.647631e-02 -6.552263e-01 2.322757e+02
## TGOLN2 -5.361009e-01 2.515009e-01 -2.846000e-01 2.828762e+02
## SPOUT1 4.257498e-02 2.291354e-02 6.548852e-02 2.331154e+01
## USP32 -6.481230e-01 1.426113e-01 -5.055117e-01 2.223904e+02
## PDHA1 -8.668106e-03 5.955472e-02 5.088661e-02 3.260015e+01
## FRA10AC1 8.355884e-03 4.885946e-03 1.324183e-02 7.471636e+00
## RAB27A -7.097920e-01 -9.879492e-02 -8.085869e-01 2.979359e+02
## PLEKHG2 -1.802044e-02 1.882694e-02 8.065014e-04 1.068369e+01
## PSME3 -2.591041e-02 1.290471e-01 1.031367e-01 9.448871e+01
## ACTR2 -1.454863e+00 3.127059e-01 -1.142157e+00 6.148354e+02
## NCAPG -1.290506e-02 2.379801e-02 1.089295e-02 6.135755e+00
## C1orf54 5.233694e-03 -6.233598e-03 -9.999033e-04 1.723211e+00
## SLC44A1 -1.296400e-02 -5.159388e-02 -6.455788e-02 4.453388e+01
## GFOD1 4.568953e-02 -5.892049e-02 -1.323097e-02 1.356395e+01
## SHE -3.639509e-03 1.220642e-03 -2.418867e-03 1.182494e+00
## CRLS1 -4.630659e-02 3.265739e-02 -1.364920e-02 2.145471e+01
## GIT2 -3.392408e-01 2.332399e-01 -1.060009e-01 1.790233e+02
## PLGRKT -2.884402e-02 9.772100e-03 -1.907192e-02 1.389410e+01
## SYNGR2 -2.226681e-01 1.159526e-01 -1.067155e-01 8.737147e+01
## SUFU -1.307731e-02 -4.448800e-03 -1.752611e-02 1.385718e+01
## TMEM184C -3.410762e-02 2.569817e-03 -3.153780e-02 1.841636e+01
## ATMIN -2.052822e-02 3.516061e-02 1.463239e-02 3.150146e+01
## DHRS11 2.483671e-03 8.887626e-04 3.372433e-03 1.046463e+00
## KHDRBS1 3.803950e-02 2.208149e-02 6.012099e-02 7.682263e+01
## OSGEP 1.546911e-02 3.339417e-02 4.886329e-02 2.499738e+01
## RSPRY1 -3.167575e-02 -4.217974e-03 -3.589372e-02 2.862161e+01
## PHETA2 3.933601e-03 4.648065e-03 8.581666e-03 4.191451e+00
## MRNIP 1.555014e-03 3.755542e-03 5.310556e-03 1.488675e+00
## ATG12 -3.437678e-02 -3.899872e-02 -7.337550e-02 5.143204e+01
## PPFIA4 1.428592e-02 -7.033842e-03 7.252081e-03 2.449049e+00
## PRRC2A -1.748395e-01 1.316410e-01 -4.319852e-02 1.292844e+02
## STOML2 -4.954225e-02 7.929034e-02 2.974809e-02 3.254593e+01
## PTPRC -5.913118e+00 7.557128e-01 -5.157405e+00 2.003399e+03
## SHOX -1.205311e-03 -7.880554e-04 -1.993367e-03 5.862938e-01
## SLC39A7 -9.951306e-02 3.950940e-02 -6.000367e-02 6.894714e+01
## PDE2A 1.606800e-02 1.107469e-02 2.714269e-02 4.228940e+00
## USP42 4.709229e-03 -1.508260e-02 -1.037337e-02 9.081743e+00
## GTF2E1 -1.946148e-02 -1.794819e-03 -2.125629e-02 1.610145e+01
## WNK1 -3.222238e-01 2.135504e-01 -1.086734e-01 1.310469e+02
## FAM219B -5.726039e-02 1.606088e-02 -4.119951e-02 3.857640e+01
## SMU1 -3.040841e-02 -2.054189e-02 -5.095029e-02 6.270923e+01
## HBG2 1.223560e+00 7.550965e-02 1.299070e+00 1.085359e+02
## SELP 2.729528e-02 -8.773303e-02 -6.043775e-02 2.427753e+01
## PPARGC1B -1.082995e-02 3.494937e-03 -7.335015e-03 3.519889e+00
## CKB 9.126370e-03 1.210454e-03 1.033682e-02 1.329976e+00
## BOLA2B -2.932329e-02 4.109511e-02 1.177182e-02 9.346033e+00
## ERMN -2.315476e-02 1.999375e-02 -3.161004e-03 5.055471e+00
## EPHB4 -6.991370e-02 5.416584e-02 -1.574786e-02 1.796142e+01
## OS9 -7.876588e-01 1.895723e-01 -5.980865e-01 4.900790e+02
## SLC25A11 -6.275604e-02 6.564971e-02 2.893674e-03 3.749459e+01
## OSBPL7 2.689006e-02 -1.749474e-03 2.514058e-02 7.909496e+00
## PREX1 -2.072458e+00 7.446597e-01 -1.327798e+00 7.080052e+02
## CDCA4 3.382527e-03 9.600760e-03 1.298329e-02 5.540469e+00
## LDHA -1.639800e+00 -4.777796e-02 -1.687578e+00 4.242449e+02
## NR4A2 4.334358e-02 -2.909857e-02 1.424501e-02 4.004129e+00
## RAB11A -1.990813e-01 2.367477e-02 -1.754066e-01 1.410280e+02
## TP53 3.297225e-02 -4.422113e-03 2.855013e-02 1.648091e+01
## MCTS1 -4.103250e-02 1.693323e-02 -2.409928e-02 3.878085e+01
## RAN 3.116730e-02 1.304169e-01 1.615842e-01 1.238714e+02
## KDM5C -7.040390e-02 -5.299259e-02 -1.233965e-01 8.466323e+01
## CD79A -5.837196e-02 1.703258e-01 1.119539e-01 3.696312e+01
## FBXO24 -1.665189e-03 1.074333e-03 -5.908553e-04 3.731252e-01
## PTPN6 -9.193561e-01 4.323823e-01 -4.869738e-01 5.268262e+02
## MESD -3.855262e-02 2.303890e-02 -1.551371e-02 2.517054e+01
## PIGS -5.687431e-04 4.126989e-02 4.070115e-02 5.215947e+01
## UTP20 -7.788566e-04 1.135375e-02 1.057490e-02 4.647699e+00
## MPP6 5.692189e-03 2.224269e-03 7.916458e-03 2.802503e+00
## TBC1D22B -8.408081e-03 2.163901e-02 1.323092e-02 1.272462e+01
## PGAM4 -8.376744e-03 -2.843611e-03 -1.122036e-02 1.459103e+00
## CPEB3 -2.254156e-02 5.647673e-04 -2.197679e-02 8.221757e+00
## ZNF79 -5.480318e-03 3.746045e-04 -5.105713e-03 4.099975e+00
## SWI5 -1.457577e-02 -8.657457e-03 -2.323322e-02 8.839777e+00
## ADAM8 -6.585273e-01 -9.230324e-02 -7.508305e-01 3.010802e+02
## CFAP44 4.915039e-03 4.276588e-03 9.191627e-03 3.472316e+00
## RNF187 -3.365465e-03 8.949056e-02 8.612510e-02 3.671700e+01
## CCDC90B -1.737920e-02 3.125198e-02 1.387278e-02 2.429588e+01
## ECI1 -9.124631e-04 1.736456e-02 1.645210e-02 4.541724e+00
## HERC1 -1.336281e-01 1.030462e-01 -3.058192e-02 7.746065e+01
## ATN1 9.083678e-03 5.551701e-03 1.463538e-02 5.907565e+00
## BMPR1A 2.522253e-03 3.096451e-03 5.618704e-03 2.202362e+00
## MRPL57 2.357183e-04 1.014074e-02 1.037646e-02 6.744878e+00
## VMAC -3.412644e-03 5.933768e-03 2.521123e-03 3.802720e+00
## NUP54 2.084234e-02 -6.676301e-03 1.416603e-02 1.690417e+01
## CNIH4 -2.046284e-01 -5.185581e-02 -2.564842e-01 8.729443e+01
## SEC24C -1.005667e-01 5.264353e-02 -4.792317e-02 1.212002e+02
## ISG20L2 -4.332075e-02 8.737974e-03 -3.458278e-02 4.408755e+01
## ZNF726 1.068321e-03 1.741300e-03 2.809621e-03 1.187037e+00
## RAVER1 5.011156e-02 2.821507e-02 7.832664e-02 3.064898e+01
## TACC1 -1.509069e-01 -5.888863e-02 -2.097956e-01 1.064991e+02
## ZNF407 -1.901820e-02 6.283997e-03 -1.273420e-02 9.356130e+00
## CCDC153 -2.271115e-03 6.873558e-03 4.602443e-03 1.783605e+00
## METTL9 -9.798701e-01 1.040188e+00 6.031821e-02 3.382393e+02
## FNIP1 -3.223957e-01 1.116676e-01 -2.107282e-01 8.706293e+01
## BCS1L 7.517229e-03 1.127864e-02 1.879587e-02 8.742880e+00
## TSEN54 3.777172e-02 3.290907e-03 4.106262e-02 1.154290e+01
## MAP2K3 -5.022617e-01 3.672331e-01 -1.350286e-01 1.944811e+02
## HDGFL2 -3.359276e-02 3.651203e-02 2.919272e-03 1.668326e+01
## ZNF800 4.930061e-02 -4.336521e-02 5.935395e-03 2.008022e+01
## DND1 6.168012e-04 7.687688e-03 8.304489e-03 4.221114e+00
## DGLUCY 1.491137e-01 -8.345164e-03 1.407685e-01 9.082943e+01
## OTULINL -2.078603e-01 4.996385e-02 -1.578964e-01 7.823913e+01
## TTLL12 -1.482691e-02 1.961795e-02 4.791041e-03 1.099754e+01
## TMEM129 -3.192716e-03 3.379603e-02 3.060332e-02 1.830864e+01
## PIKFYVE -1.019048e-01 1.361425e-01 3.423769e-02 5.550777e+01
## PYHIN1 4.367126e-02 -1.317050e-02 3.050075e-02 1.270611e+01
## SAMD3 5.995165e-02 -1.493363e-02 4.501802e-02 1.696795e+01
## FH 2.556677e-02 -1.330671e-02 1.226006e-02 1.605875e+01
## MBNL1 -8.586717e-01 -8.440546e-02 -9.430772e-01 3.960728e+02
## SCAF8 -7.178163e-02 6.409308e-02 -7.688546e-03 4.052256e+01
## PRNP 6.853854e-02 -6.541767e-02 3.120871e-03 5.164204e+01
## MED13 -1.979030e-01 3.908179e-02 -1.588212e-01 8.061566e+01
## BCL7A -5.482271e-03 7.944967e-03 2.462696e-03 2.200921e+00
## C4orf46 3.650976e-03 -1.252500e-02 -8.874025e-03 6.413515e+00
## PAFAH1B2 -1.106520e-01 9.764636e-03 -1.008873e-01 7.227956e+01
## G6PD -2.954875e-01 5.481278e-02 -2.406747e-01 1.197778e+02
## THOC2 -3.859379e-02 4.272773e-02 4.133935e-03 2.350514e+01
## CRTAP 2.080066e-01 -6.016665e-02 1.478399e-01 1.004140e+02
## PIGL 1.587536e-03 2.280719e-03 3.868255e-03 1.395810e+00
## RAB10 -3.568009e-01 1.622225e-01 -1.945784e-01 1.645257e+02
## CEBPA -2.338087e-01 1.237372e-01 -1.100715e-01 7.814298e+01
## NRGN 3.196813e-01 -7.260998e-01 -4.064185e-01 1.542474e+02
## HACE1 8.973390e-03 -6.720823e-03 2.252567e-03 3.573234e+00
## CD300LB 7.249818e-02 -1.408877e-01 -6.838949e-02 5.692476e+01
## USP10 -7.880943e-01 1.450312e-01 -6.430631e-01 2.336257e+02
## KIF13A -1.899200e-01 4.833075e-02 -1.415893e-01 8.259064e+01
## MARVELD1 7.239602e-03 -4.103816e-02 -3.379856e-02 1.630725e+01
## EIF2B3 -1.074036e-02 1.885793e-02 8.117569e-03 8.848599e+00
## LMOD3 2.225729e-03 -3.763659e-03 -1.537930e-03 1.628685e+00
## FBXL6 -1.439741e-02 2.489692e-02 1.049951e-02 6.115787e+00
## FRK -1.673671e-02 8.799688e-03 -7.937024e-03 5.208222e+00
## ANKRD65 2.474729e-03 -2.512605e-03 -3.787628e-05 7.646531e-01
## SMPD3 2.743756e-03 2.278238e-02 2.552614e-02 4.532284e+00
## RAP1A -6.292207e-01 2.888650e-01 -3.403558e-01 2.521391e+02
## RPAP2 -3.684911e-02 3.597698e-02 -8.721307e-04 2.077064e+01
## SRA1 -1.671074e-01 8.315985e-02 -8.394755e-02 6.892502e+01
## PSRC1 2.137738e-03 -1.341541e-02 -1.127767e-02 8.164901e+00
## ZNF497 9.409858e-03 1.145966e-03 1.055582e-02 3.232523e+00
## HSD17B11 -5.455061e-01 -2.920705e-01 -8.375766e-01 3.439789e+02
## UIMC1 -1.836851e-01 2.149208e-01 3.123572e-02 1.086381e+02
## EMC9 -7.991151e-03 1.387728e-02 5.886134e-03 4.239597e+00
## ANKFY1 -4.019659e-02 -8.167747e-02 -1.218741e-01 5.898861e+01
## PHC2 -2.612362e+00 -3.474417e-01 -2.959804e+00 8.770583e+02
## ZNF565 4.167085e-04 2.028760e-03 2.445468e-03 1.973300e+00
## ATP2B4 -3.494727e-01 1.795784e-01 -1.698944e-01 1.180497e+02
## TAP1 6.315015e-01 -2.006920e+00 -1.375418e+00 5.968937e+02
## ZDHHC9 3.796271e-03 -2.255127e-03 1.541144e-03 2.201777e+00
## RAB11FIP3 1.494625e-02 -8.979694e-03 5.966557e-03 5.800835e+00
## PSD3 -5.725864e-04 -2.246011e-03 -2.818597e-03 9.779205e-01
## ZNF701 -3.450892e-02 3.445251e-02 -5.641066e-05 2.115197e+01
## SERAC1 -1.573203e-02 9.877960e-03 -5.854070e-03 7.581262e+00
## APOBEC3H 4.717744e-05 -7.014512e-03 -6.967335e-03 2.303793e+00
## ACYP2 1.962014e-03 2.742226e-03 4.704241e-03 2.833076e+00
## STRADB -2.328697e-02 8.877138e-02 6.548441e-02 2.335772e+01
## PTTG2 -3.154489e-03 3.529520e-03 3.750304e-04 9.525847e-01
## FAM168B 1.538677e-02 6.211713e-02 7.750390e-02 5.275474e+01
## PAFAH1B3 5.151428e-03 1.690812e-02 2.205955e-02 4.704533e+00
## ZFP41 4.081768e-03 2.963635e-04 4.378131e-03 1.632877e+00
## RGP1 -4.960398e-02 3.756374e-02 -1.204024e-02 3.384331e+01
## SLC44A2 -7.713428e-01 8.011088e-01 2.976605e-02 4.998173e+02
## ZNF576 -8.203187e-03 -7.269297e-04 -8.930117e-03 6.341939e+00
## NXT1 2.264480e-02 -2.579139e-02 -3.146586e-03 8.152178e+00
## MYCBP2 -1.220752e-01 -3.431067e-02 -1.563858e-01 6.689463e+01
## SLC7A6 6.505704e-03 5.771770e-02 6.422341e-02 2.834367e+01
## FAM83H 2.238098e-03 -3.522983e-03 -1.284885e-03 1.219264e+00
## DLEU7 4.093454e-03 -4.571484e-03 -4.780295e-04 1.836922e+00
## SPIRE1 -2.552425e-03 -1.939732e-03 -4.492157e-03 1.846236e+00
## MS4A10 8.207721e-04 -2.144979e-03 -1.324207e-03 7.151719e-01
## AASS -3.089396e-03 2.566821e-03 -5.225757e-04 1.022028e+00
## PPP1R12C -1.736409e-01 1.099020e-01 -6.373893e-02 6.496655e+01
## RCN1 1.177301e-02 -2.358104e-02 -1.180802e-02 1.288915e+01
## PLA2G4B 2.616682e-02 -9.708840e-04 2.519593e-02 1.162282e+01
## PGAP3 2.353843e-02 4.758269e-03 2.829670e-02 8.750789e+00
## SELENOT -4.726052e-01 3.257340e-01 -1.468712e-01 1.957569e+02
## DUS4L-BCAP29 5.797354e-03 -4.280903e-03 1.516450e-03 2.919908e+00
## VAMP1 -6.222941e-02 8.473228e-02 2.250287e-02 5.703691e+01
## TP53BP2 -1.350052e-02 -5.988327e-02 -7.338379e-02 3.436596e+01
## DIS3L 1.971208e-02 -2.572727e-04 1.945480e-02 1.067322e+01
## ZNF850 -7.713474e-04 -2.147227e-03 -2.918574e-03 1.992499e+00
## SPAG1 -2.194058e-02 2.048970e-02 -1.450883e-03 7.047075e+00
## BTRC 1.167763e-03 1.021811e-02 1.138587e-02 8.399350e+00
## MAN1A2 -3.100723e-02 4.547201e-02 1.446478e-02 2.294460e+01
## MCM9 -2.352531e-02 -2.485064e-03 -2.601038e-02 1.651753e+01
## DCK 6.211434e-02 -2.025031e-02 4.186403e-02 4.034795e+01
## RBM19 1.585479e-02 4.643003e-03 2.049779e-02 1.060284e+01
## TLE1 -1.351324e-02 -9.958239e-03 -2.347147e-02 5.492346e+00
## C3AR1 -6.913526e-01 -2.208151e-01 -9.121677e-01 1.967366e+02
## MPHOSPH6 1.300563e-02 -8.965034e-03 4.040592e-03 8.385771e+00
## ZNF721 -3.361582e-02 2.709061e-02 -6.525212e-03 2.010023e+01
## CTSS -3.607370e+00 2.791576e-01 -3.328213e+00 2.240201e+03
## ABHD8 -1.050498e-02 1.049590e-02 -9.075651e-06 2.969135e+00
## GTPBP2 -3.276948e-01 1.775320e-01 -1.501628e-01 1.118705e+02
## KATNAL1 -2.045623e-03 -4.233620e-03 -6.279244e-03 3.879421e+00
## PIK3R2 3.939222e-03 1.151224e-02 1.545147e-02 7.528999e+00
## PSMG1 1.225235e-02 2.831434e-03 1.508378e-02 8.169873e+00
## PPIP5K1 7.731793e-03 6.253880e-03 1.398567e-02 5.739614e+00
## DUS3L 8.875510e-03 3.871462e-03 1.274697e-02 3.230816e+00
## ANXA9 1.366102e-03 8.356986e-03 9.723089e-03 4.519119e+00
## ACBD6 2.889412e-03 1.138338e-02 1.427279e-02 7.213891e+00
## EIF2B1 3.528662e-02 -1.831228e-02 1.697433e-02 3.127203e+01
## TMEM212 -1.101572e-02 1.089108e-02 -1.246444e-04 5.080624e+00
## SNRNP200 3.940388e-02 1.027974e-01 1.422013e-01 1.389758e+02
## POLR1A 1.118037e-03 1.209559e-02 1.321363e-02 7.371879e+00
## HIVEP1 -4.894856e-02 1.056160e-02 -3.838696e-02 1.866408e+01
## ZNF592 -1.309782e-01 6.238939e-02 -6.858883e-02 8.823752e+01
## UNC13B -4.736145e-03 2.946963e-03 -1.789181e-03 1.599115e+00
## FRS3 -5.684449e-03 5.654578e-03 -2.987114e-05 2.447842e+00
## ALKBH2 1.644010e-04 8.086048e-03 8.250449e-03 3.203358e+00
## PHTF2 -3.250883e-02 1.965994e-02 -1.284889e-02 2.344879e+01
## C11orf71 -7.940758e-03 -3.124444e-03 -1.106520e-02 8.395453e+00
## ZNF175 -1.121545e-02 7.409703e-03 -3.805743e-03 5.446901e+00
## FKBP14 -4.128562e-03 4.608336e-03 4.797737e-04 2.738380e+00
## THAP1 -2.435932e-02 6.773796e-04 -2.368194e-02 1.682218e+01
## TTC13 -2.283617e-02 -2.461969e-03 -2.529814e-02 2.396914e+01
## HOXB4 1.795661e-03 -3.816295e-03 -2.020634e-03 1.225232e+00
## DCP1A -3.343554e-03 -3.169452e-02 -3.503807e-02 2.479981e+01
## RELT -1.484287e-01 6.370374e-02 -8.472497e-02 7.667061e+01
## POLL 1.028507e-02 3.045533e-02 4.074040e-02 1.538896e+01
## ZNF506 4.664747e-03 -2.037159e-02 -1.570685e-02 1.059132e+01
## ILRUN 1.562027e-01 -6.192032e-02 9.428233e-02 1.275364e+02
## RAB1A -2.005003e-01 -1.142000e-01 -3.147003e-01 1.349901e+02
## UBL3 -1.698960e-01 7.537101e-02 -9.452499e-02 7.216498e+01
## NEK7 -4.524484e-01 2.784107e-01 -1.740377e-01 1.417374e+02
## FAM122C -4.917254e-04 -4.583404e-03 -5.075129e-03 3.209902e+00
## KATNB1 -2.234283e-02 -6.036138e-04 -2.294645e-02 1.215088e+01
## UTP25 7.647706e-03 1.004179e-02 1.768950e-02 7.722567e+00
## FAM20A -5.221396e-03 -4.483892e-02 -5.006031e-02 9.781241e+00
## MCTP1 -4.955736e-02 -9.222942e-02 -1.417868e-01 5.051273e+01
## PPP1R3F 3.609431e-03 -1.712819e-03 1.896612e-03 1.999511e+00
## ARID4B -2.331234e-01 7.099149e-04 -2.324134e-01 1.045844e+02
## POLR3G -3.909751e-03 1.807904e-03 -2.101847e-03 1.347490e+00
## SLC5A9 -2.938014e-02 -4.100292e-02 -7.038306e-02 1.051514e+01
## ITPKC -2.174304e-01 1.319431e-01 -8.548731e-02 3.613362e+01
## CYB5R3 -1.164886e-01 3.309799e-02 -8.339056e-02 4.821838e+01
## GPRIN3 2.624832e-02 3.920809e-02 6.545642e-02 2.072171e+01
## VAMP2 2.901891e-01 -1.167449e-01 1.734442e-01 1.433549e+02
## THOC7 4.924209e-02 -4.359200e-02 5.650095e-03 3.849064e+01
## ZWINT -1.916949e-02 2.515316e-02 5.983671e-03 7.083687e+00
## PRPF40B 3.388131e-03 1.073897e-03 4.462029e-03 1.231315e+00
## ERBIN -3.514240e-01 -6.266848e-02 -4.140925e-01 1.783405e+02
## DIPK1B 5.373375e-03 6.629371e-03 1.200275e-02 3.056240e+00
## CMTM6 -1.614900e+00 2.517357e-01 -1.363164e+00 6.033236e+02
## UHRF1BP1L -1.347906e-01 -3.965990e-02 -1.744506e-01 6.272811e+01
## LILRB1 -1.119482e-01 -1.687387e-02 -1.288221e-01 4.010830e+01
## ZNF782 2.010297e-03 2.119210e-03 4.129507e-03 1.980254e+00
## ADM -2.418142e-01 -4.728703e-02 -2.891012e-01 8.828604e+01
## IPO7 4.726065e-02 1.853410e-02 6.579474e-02 2.954097e+01
## WDR13 -9.409947e-02 8.767562e-02 -6.423844e-03 3.330578e+01
## GPN2 2.961695e-02 -1.273601e-02 1.688094e-02 2.161797e+01
## FYB1 -1.048508e+00 -4.886233e-01 -1.537131e+00 5.775479e+02
## PIP4K2C 1.219173e-02 -4.634174e-02 -3.415000e-02 3.374976e+01
## NRL 1.239055e-03 1.214043e-03 2.453097e-03 8.816544e-01
## HADH 1.371868e-02 6.944883e-04 1.441317e-02 8.836618e+00
## ANAPC2 -1.488599e-02 3.463308e-02 1.974709e-02 1.141795e+01
## ZNF638 -1.668576e-01 6.021205e-02 -1.066456e-01 1.025984e+02
## KATNAL2 1.628650e-03 -1.108491e-03 5.201587e-04 4.466723e-01
## ITPR1 -4.352345e-02 1.830128e-02 -2.522218e-02 1.809554e+01
## TSPAN2 -2.560798e-01 1.508644e-01 -1.052154e-01 6.673063e+01
## PLIN2 8.729616e-02 -1.709422e-01 -8.364601e-02 5.128562e+01
## EHD3 3.532479e-02 -5.177522e-02 -1.645043e-02 2.032934e+01
## ENPP4 4.431210e-02 -4.408342e-02 2.286834e-04 1.494631e+01
## RNGTT -2.464904e-02 -2.567473e-03 -2.721651e-02 1.787533e+01
## ACAA2 5.671328e-02 -3.586401e-02 2.084927e-02 3.788093e+01
## GLYCTK -1.386072e-02 3.417057e-02 2.030985e-02 1.169280e+01
## LYZ 2.824689e+00 9.390189e+00 1.221488e+01 4.277616e+03
## PSMA6 -3.505566e-01 1.655482e-01 -1.850084e-01 1.387060e+02
## EPS8L2 7.949520e-03 1.909592e-03 9.859112e-03 2.161680e+00
## CBWD3 -1.937894e-02 2.701115e-02 7.632213e-03 1.793012e+01
## APOBR -3.857303e-01 -5.350440e-01 -9.207742e-01 3.566010e+02
## LSM10 -7.928473e-02 1.057860e-01 2.650127e-02 5.713971e+01
## BZW1 3.119991e-02 -2.342083e-01 -2.030084e-01 1.809803e+02
## FUT2 2.112642e-03 -8.857419e-04 1.226900e-03 5.166355e-01
## ORMDL2 -6.268526e-02 7.070971e-02 8.024446e-03 4.021199e+01
## ATG4B -2.847605e-02 6.269566e-02 3.421961e-02 3.126570e+01
## INTS11 -1.831796e-03 7.702361e-02 7.519182e-02 3.166988e+01
## AP4M1 -4.855564e-03 1.023067e-02 5.375102e-03 5.696577e+00
## ETFRF1 -1.149586e-03 -1.849633e-02 -1.964591e-02 1.126786e+01
## GOLGA8N -2.813188e-02 8.111336e-03 -2.002055e-02 1.085017e+01
## CHD1 -3.468104e-02 -2.084591e-01 -2.431402e-01 8.106465e+01
## BABAM1 -2.141399e-02 9.705712e-02 7.564314e-02 4.057294e+01
## HNRNPK -7.682596e-01 -2.914562e-01 -1.059716e+00 6.870707e+02
## DDX42 -7.773325e-02 5.157423e-02 -2.615902e-02 6.960902e+01
## NUP58 -1.644749e-01 4.119805e-02 -1.232768e-01 6.098182e+01
## TAF6L 3.210484e-03 4.370260e-03 7.580745e-03 3.163659e+00
## PARP15 6.854884e-02 -1.857969e-02 4.996915e-02 4.232133e+01
## SNAPC4 -2.863106e-03 1.056638e-02 7.703270e-03 5.430458e+00
## PPIL1 1.261427e-02 -3.703420e-03 8.910852e-03 7.340508e+00
## P4HTM 1.526942e-02 -2.103495e-03 1.316593e-02 5.995981e+00
## GOLM2 -2.933524e-01 1.424215e-01 -1.509309e-01 1.114263e+02
## VWA5A 3.318291e-02 -5.382850e-02 -2.064558e-02 1.241924e+01
## SRM -3.814645e-02 3.226247e-02 -5.883988e-03 1.083727e+01
## EAF1 3.891768e-02 -9.799795e-02 -5.908027e-02 3.598020e+01
## SAMSN1 -3.949102e-01 -8.234811e-01 -1.218391e+00 2.248778e+02
## ZFAND2B -7.199160e-02 1.417724e-01 6.978084e-02 5.251443e+01
## RAC2 -1.323641e+00 5.980476e-01 -7.255933e-01 6.394770e+02
## BCL6 -1.137693e+00 -1.690239e+00 -2.827932e+00 8.461435e+02
## DET1 -3.662796e-03 2.633309e-03 -1.029487e-03 2.034955e+00
## CTTNBP2NL 1.992320e-03 -5.143663e-03 -3.151343e-03 1.839554e+00
## GOSR2 -3.729067e-02 4.100756e-03 -3.318992e-02 2.775645e+01
## FANCA 3.845178e-03 -2.895058e-02 -2.510540e-02 1.179748e+01
## RECK 4.310546e-03 6.501214e-03 1.081176e-02 4.844021e+00
## GLRX -6.000836e-01 -1.373751e-01 -7.374586e-01 3.014773e+02
## ACLY -5.953266e-02 -1.962782e-02 -7.916047e-02 6.642809e+01
## RPN2 -2.478266e-01 8.241711e-02 -1.654095e-01 1.441178e+02
## GTF2I -4.301310e-01 6.511711e-01 2.210401e-01 3.014208e+02
## SPC25 -6.961366e-03 6.921929e-03 -3.943668e-05 2.387813e+00
## SESN1 4.100633e-02 1.713594e-02 5.814227e-02 2.380687e+01
## IPO11 -5.616334e-02 1.579159e-02 -4.037175e-02 1.624756e+01
## SNX20 -2.675277e-01 -2.774048e-03 -2.703018e-01 1.776276e+02
## EPS8 9.968968e-03 3.642371e-03 1.361134e-02 2.505918e+00
## ERCC5 -8.605062e-04 5.088479e-02 5.002428e-02 6.085305e+01
## SH2B1 2.323463e-02 2.117638e-02 4.441101e-02 2.723072e+01
## NDUFA7 -3.616435e-02 4.202368e-02 5.859331e-03 1.563909e+01
## CLPP -9.946621e-03 3.500849e-02 2.506187e-02 1.129989e+01
## MIDN -3.059050e-01 2.307930e-02 -2.828257e-01 1.448856e+02
## PRR14L -1.073085e-01 4.956807e-02 -5.774039e-02 4.775455e+01
## SNX13 -1.306253e-01 4.356652e-02 -8.705880e-02 5.044095e+01
## DNAJC4 -8.469180e-02 6.071872e-02 -2.397308e-02 2.498282e+01
## SIRT5 -8.192501e-02 6.899559e-02 -1.292942e-02 1.964690e+01
## TRMT10A 4.887115e-03 2.898619e-03 7.785734e-03 4.627912e+00
## APBA3 1.195445e-03 1.114952e-02 1.234497e-02 5.240749e+00
## TCF23 1.829106e-03 -1.797895e-03 3.121131e-05 5.171722e-01
## KMT2E -1.562250e-01 -8.340424e-02 -2.396292e-01 1.066485e+02
## TSNAX -1.035532e-01 -2.733703e-02 -1.308903e-01 6.999816e+01
## MMP14 -1.033638e-02 1.310112e-02 2.764735e-03 3.941682e+00
## MRPS17 5.038084e-03 1.126814e-02 1.630622e-02 7.608810e+00
## AEN -2.611030e-02 1.333292e-02 -1.277738e-02 1.186011e+01
## NCBP3 -5.240374e-02 1.432650e-02 -3.807724e-02 4.165977e+01
## FAM43A 1.312080e-03 8.618709e-03 9.930789e-03 4.893110e+00
## PISD -5.029842e-01 5.546396e-01 5.165540e-02 2.547841e+02
## ABCC3 5.087267e-02 -6.402607e-02 -1.315340e-02 2.209864e+01
## GMPPA -6.881516e-02 5.235461e-02 -1.646056e-02 2.279266e+01
## SEPTIN9 3.173239e-01 1.592644e-01 4.765883e-01 1.770292e+02
## SLC27A3 1.242560e-01 -8.681529e-02 3.744071e-02 3.836655e+01
## CAPN1 -1.930290e-01 7.548816e-02 -1.175409e-01 1.002344e+02
## IL15RA 2.800880e-02 -2.093448e-02 7.074318e-03 8.611292e+00
## KYNU -3.915421e-02 -8.801316e-02 -1.271674e-01 3.524773e+01
## SAP130 -1.506429e-02 2.996852e-02 1.490423e-02 1.944744e+01
## NIPA1 -3.004378e-03 1.202938e-02 9.024998e-03 5.963572e+00
## ZCWPW1 -6.415318e-03 1.504441e-02 8.629097e-03 6.955573e+00
## RAB28 -5.851943e-03 1.545634e-02 9.604402e-03 1.313196e+01
## TRIM24 2.367313e-02 -3.391471e-02 -1.024159e-02 2.171718e+01
## LTBP1 -3.113799e-02 -1.135237e-02 -4.249036e-02 1.225122e+01
## BAD -2.114850e-02 2.845948e-02 7.310976e-03 7.763530e+00
## GPRC5C 3.379968e-03 -2.293401e-03 1.086568e-03 7.084544e-01
## RTCB -6.940478e-03 -6.185885e-02 -6.879932e-02 4.789311e+01
## YPEL2 -1.118499e-02 -6.139056e-02 -7.257555e-02 3.750076e+01
## ADGRG3 -1.604844e+00 -1.755037e-01 -1.780348e+00 4.771069e+02
## PARL -8.340110e-02 4.467429e-02 -3.872681e-02 3.934935e+01
## SPTBN5 5.247380e-03 -4.162682e-03 1.084697e-03 1.637391e+00
## RBM47 -4.734456e-01 4.680432e-02 -4.266412e-01 1.765810e+02
## DHRS9 -6.170841e-01 3.803008e-01 -2.367834e-01 1.238939e+02
## GMPR -7.760595e-02 1.039660e-01 2.636005e-02 2.658427e+01
## CEACAM4 -2.416351e-01 -2.819179e-01 -5.235530e-01 1.205341e+02
## CRYZL1 1.316680e-02 -8.064624e-03 5.102175e-03 1.029931e+01
## RNF145 -2.995281e-01 5.652491e-02 -2.430031e-01 1.378634e+02
## KCNAB2 -7.716106e-02 1.281002e-01 5.093914e-02 1.084747e+02
## MRPL34 2.395644e-03 1.652471e-02 1.892036e-02 9.583883e+00
## HPS5 -2.735749e-02 2.361478e-02 -3.742706e-03 1.502502e+01
## NCF2 -3.247882e+00 -5.231586e-01 -3.771040e+00 1.816379e+03
## GTSF1 -5.744253e-03 -4.912843e-04 -6.235537e-03 2.103095e+00
## CANT1 -2.113708e-01 1.164528e-01 -9.491797e-02 1.007905e+02
## BCL9 -3.878056e-03 1.034411e-02 6.466055e-03 5.566678e+00
## ACAP2 -6.016333e-01 1.926699e-01 -4.089634e-01 2.308484e+02
## MMP8 2.383186e+00 -3.473970e+00 -1.090784e+00 2.778317e+02
## TBC1D23 -3.216038e-02 -3.457741e-02 -6.673779e-02 3.863476e+01
## OPRD1 1.182509e-05 2.207204e-03 2.219029e-03 8.674794e-01
## AAMP -4.135584e-03 5.783546e-02 5.369988e-02 4.330290e+01
## PCYT2 3.189905e-02 4.120603e-03 3.601965e-02 1.050559e+01
## SETD1A 2.007904e-02 -5.025649e-03 1.505339e-02 9.069894e+00
## MAST2 8.433117e-04 -1.591795e-02 -1.507464e-02 8.848489e+00
## SMCHD1 -1.926014e+00 3.062560e-01 -1.619758e+00 7.308843e+02
## MIER1 -1.427670e-01 -1.384093e-01 -2.811763e-01 1.145982e+02
## ABCF2-H2BE1 1.489152e-02 -3.940924e-03 1.095060e-02 7.940235e+00
## KBTBD8 5.063280e-03 7.307935e-03 1.237122e-02 6.323856e+00
## TCTEX1D2 3.971307e-03 9.003156e-04 4.871623e-03 1.606765e+00
## SEPHS2 -1.276189e-01 -1.174833e-01 -2.451022e-01 1.105052e+02
## SLMAP -1.317920e-01 -6.324379e-03 -1.381164e-01 6.258947e+01
## DNAJC7 5.194088e-02 -8.423370e-02 -3.229281e-02 7.539283e+01
## PAN2 2.911541e-02 1.682794e-02 4.594335e-02 2.713810e+01
## CMPK2 -1.645890e-01 -4.626948e-01 -6.272838e-01 8.260055e+01
## KCNE3 -2.202877e-01 -1.544200e-01 -3.747077e-01 1.633939e+02
## TRPC4AP -1.538925e-01 8.000234e-02 -7.389017e-02 1.223720e+02
## NEGR1 -3.410688e-03 -7.731504e-04 -4.183839e-03 2.112816e+00
## KDM3B -2.972139e-01 1.398621e-01 -1.573518e-01 1.335177e+02
## SF3B4 -3.589945e-02 2.380185e-02 -1.209759e-02 3.606203e+01
## CDK10 3.971925e-02 2.819820e-02 6.791745e-02 1.716372e+01
## ZNF697 -6.296446e-03 1.039896e-02 4.102512e-03 3.507411e+00
## ROCK1 -4.619348e-01 -1.251680e-01 -5.871028e-01 2.028554e+02
## SMAGP 1.011244e-02 -2.181855e-03 7.930585e-03 3.638636e+00
## TACO1 9.048362e-03 8.204286e-03 1.725265e-02 8.590247e+00
## SPTY2D1 1.735735e-02 -7.738657e-02 -6.002921e-02 3.829898e+01
## ABCA1 7.357525e-03 -2.821670e-01 -2.748095e-01 9.167669e+01
## PUS7 3.068750e-03 6.320985e-04 3.700849e-03 1.676554e+00
## TXNRD1 -2.969136e-01 2.940454e-01 -2.868256e-03 1.298454e+02
## KCTD9 2.406457e-02 -2.377753e-02 2.870356e-04 1.433280e+01
## CHAC2 -7.149954e-03 1.131022e-02 4.160262e-03 2.937801e+00
## CFP -4.843534e-01 4.765610e-01 -7.792375e-03 1.664709e+02
## ARHGEF18 6.207036e-02 5.386396e-03 6.745675e-02 5.622365e+01
## HOGA1 1.002184e-03 -1.551700e-03 -5.495159e-04 4.151689e-01
## C7orf50 4.967539e-02 -3.333138e-02 1.634401e-02 8.402341e+00
## VPS4A -9.045574e-03 1.010992e-01 9.205361e-02 7.216327e+01
## SVIP 2.346660e-02 4.853395e-02 7.200055e-02 2.497583e+01
## SOS2 -4.662018e-01 1.593637e-01 -3.068380e-01 1.431168e+02
## ZNF155 -4.034424e-03 -1.091656e-02 -1.495098e-02 8.849139e+00
## GAB2 -3.137904e-01 -3.907481e-01 -7.045384e-01 2.564718e+02
## RANGRF 1.634038e-02 2.934870e-02 4.568908e-02 1.559046e+01
## MGA -2.841287e-02 3.155948e-02 3.146610e-03 1.588797e+01
## OAT -1.428099e-01 5.932496e-05 -1.427506e-01 5.120298e+01
## MIB1 -6.393243e-02 6.496491e-02 1.032481e-03 3.257249e+01
## LCP1 -4.685215e+00 -3.201827e+00 -7.887042e+00 3.624608e+03
## RO60 -2.993837e-02 -4.128862e-02 -7.122699e-02 3.688943e+01
## ACTR8 -7.911018e-03 1.067899e-02 2.767972e-03 1.325107e+01
## ATAD3B -5.046727e-03 2.162736e-02 1.658063e-02 5.989959e+00
## OMA1 1.255138e-02 1.494672e-02 2.749810e-02 1.944461e+01
## MAVS -6.811082e-02 6.065834e-02 -7.452477e-03 6.964235e+01
## SNUPN 1.786723e-02 -2.516139e-05 1.784207e-02 1.352912e+01
## NSUN4 3.475645e-03 -1.044100e-02 -6.965358e-03 9.328532e+00
## PBX3 -6.246781e-04 1.737501e-02 1.675033e-02 1.315494e+01
## TP53BP1 -3.790889e-02 1.676010e-02 -2.114879e-02 2.019902e+01
## ATP5PO -2.452393e-03 1.684760e-01 1.660236e-01 1.055607e+02
## SLC7A8 -4.045766e-03 3.442172e-04 -3.701549e-03 1.291668e+00
## WDR7 -1.685844e-02 1.410971e-02 -2.748725e-03 1.093938e+01
## GIPC1 2.445890e-02 4.719011e-04 2.493080e-02 5.809523e+00
## KIF21B -3.703330e-02 1.504339e-01 1.134006e-01 1.013288e+02
## MPL 2.665150e-03 -5.768315e-03 -3.103165e-03 1.604954e+00
## WDR35 -5.375558e-03 -6.256408e-03 -1.163197e-02 5.352350e+00
## SPI1 -1.239762e+00 9.596415e-02 -1.143798e+00 4.114436e+02
## NFAM1 -1.100924e+00 -9.414123e-02 -1.195065e+00 6.159283e+02
## IKZF3 3.204234e-02 1.037960e-01 1.358384e-01 5.037666e+01
## RAB37 -1.673931e-01 -1.596218e-01 -3.270148e-01 1.983031e+02
## NUP188 1.422797e-02 1.450113e-02 2.872910e-02 1.401832e+01
## CCDC115 5.520342e-05 3.222525e-02 3.228046e-02 2.770323e+01
## STARD9 -1.163523e-03 7.364641e-03 6.201119e-03 2.811593e+00
## CNKSR3 3.883775e-03 -1.021044e-03 2.862731e-03 1.756200e+00
## SP1 -5.147226e-01 1.427590e-01 -3.719635e-01 2.413558e+02
## FRYL -8.741208e-02 3.999579e-02 -4.741629e-02 4.537357e+01
## TMEM59 -4.571940e-01 2.329168e-01 -2.242773e-01 2.686303e+02
## CDIPT -1.202479e-01 1.003465e-01 -1.990140e-02 6.149917e+01
## COX7A2L -3.794201e-02 1.871272e-01 1.491852e-01 9.313929e+01
## MSRB1 -2.401851e+00 1.434952e+00 -9.668989e-01 7.424339e+02
## IFT80 8.453192e-03 9.448077e-03 1.790127e-02 8.677430e+00
## ATXN7L2 -1.534815e-03 5.303990e-03 3.769175e-03 2.454851e+00
## MAP3K13 -2.441878e-03 1.008256e-03 -1.433622e-03 1.073659e+00
## AKAP9 -6.836478e-02 1.914646e-02 -4.921832e-02 3.393378e+01
## NEMF -5.417945e-02 5.765732e-03 -4.841372e-02 2.997226e+01
## TFCP2 -1.494297e-02 -1.628193e-02 -3.122491e-02 2.978022e+01
## CBLB 1.177808e-02 1.689873e-02 2.867681e-02 1.166636e+01
## RTN1 -6.710408e-03 1.908370e-02 1.237329e-02 7.194776e+00
## CLTC -3.108855e-01 1.331345e-01 -1.777510e-01 1.755261e+02
## ABCC5 -7.446297e-02 5.123503e-02 -2.322795e-02 3.446714e+01
## KCNMB1 2.899281e-03 -9.744348e-03 -6.845067e-03 4.568279e+00
## ATF7IP -1.511374e-01 3.413783e-02 -1.169996e-01 7.425007e+01
## FUS 1.521031e-01 -1.328988e-02 1.388132e-01 1.326888e+02
## CIT 5.443084e-03 -4.657545e-03 7.855389e-04 1.329366e+00
## WRAP53 -6.457692e-03 1.330553e-02 6.847841e-03 5.915849e+00
## PPP1R3B -7.419698e-01 1.825132e-01 -5.594566e-01 2.376058e+02
## ASB8 -8.490192e-02 1.330094e-02 -7.160098e-02 5.579705e+01
## PIGA 1.359663e-02 -2.230725e-02 -8.710628e-03 8.803514e+00
## C5orf15 -1.453407e-02 -2.529884e-02 -3.983291e-02 3.593474e+01
## RNF121 -1.318364e-02 1.238912e-02 -7.945123e-04 1.071536e+01
## PYROXD2 8.795888e-03 -1.767426e-03 7.028463e-03 2.876844e+00
## CCDC71L -2.376691e-01 4.134132e-03 -2.335349e-01 7.053503e+01
## CCNG2 -4.067066e-01 1.646825e-01 -2.420241e-01 1.347056e+02
## RBMXL1 -2.352550e-02 -1.400880e-02 -3.753430e-02 2.344773e+01
## CDK2 3.245555e-03 -1.469121e-02 -1.144565e-02 1.049011e+01
## MKLN1 -1.457955e-01 -5.893606e-03 -1.516891e-01 8.586137e+01
## NCBP1 2.503865e-02 -1.995242e-02 5.086233e-03 2.127427e+01
## ATP6V0B -8.344232e-01 7.227259e-01 -1.116973e-01 3.709345e+02
## C1D 3.336478e-02 -5.263635e-02 -1.927156e-02 3.022150e+01
## IFNLR1 -6.928113e-03 7.701351e-03 7.732381e-04 5.060651e+00
## AP1G2 2.170437e-01 -6.986448e-02 1.471792e-01 1.103251e+02
## LSM11 -5.034229e-03 5.070759e-03 3.653006e-05 3.490817e+00
## NIPSNAP3A 1.333606e-02 -2.875179e-02 -1.541572e-02 1.693264e+01
## BANP -2.846600e-02 2.709934e-02 -1.366667e-03 1.627693e+01
## PLTP -1.113839e-02 1.204238e-02 9.039877e-04 2.027126e+00
## NSUN2 1.527268e-03 3.344124e-02 3.496851e-02 2.688126e+01
## PUS10 1.899528e-04 -1.064120e-02 -1.045125e-02 6.077285e+00
## CSF3R -9.887127e+00 4.748056e+00 -5.139071e+00 3.345071e+03
## MSANTD3 6.462207e-03 7.344513e-03 1.380672e-02 7.145721e+00
## RNF44 -1.424185e-01 5.178835e-02 -9.063014e-02 7.061882e+01
## ZNF160 -1.325817e-02 3.301344e-02 1.975527e-02 2.106891e+01
## SMARCAD1 4.781259e-03 2.095523e-02 2.573649e-02 1.120224e+01
## SUCLG1 -4.251144e-02 8.917085e-02 4.665941e-02 5.835953e+01
## TSPAN18 2.178992e-02 -1.541005e-02 6.379868e-03 7.834442e+00
## ATP13A2 1.710735e-02 1.230839e-02 2.941574e-02 9.373363e+00
## OSCAR -4.015042e-01 1.623518e-01 -2.391524e-01 1.194916e+02
## PMM1 -1.144071e-02 4.256598e-02 3.112527e-02 1.697339e+01
## TCTN1 2.218007e-03 5.982439e-03 8.200446e-03 4.630016e+00
## ZNF618 -3.276792e-03 1.443500e-03 -1.833292e-03 9.074405e-01
## BECN1 -8.487787e-02 -1.760111e-02 -1.024790e-01 8.036449e+01
## MYLK 5.445534e-02 -2.612519e-02 2.833015e-02 1.493465e+01
## SPCS1 -1.018359e-01 3.896870e-02 -6.286723e-02 5.789500e+01
## GADD45B 2.587997e-01 -3.447114e-01 -8.591169e-02 7.344543e+01
## SRGN -1.435898e+01 6.745848e+00 -7.613136e+00 4.509184e+03
## INTS6 -1.165584e-01 2.992014e-02 -8.663825e-02 5.530760e+01
## GMCL1 -8.036376e-02 8.461504e-02 4.251283e-03 4.723369e+01
## MECP2 -5.505816e-02 3.103513e-02 -2.402303e-02 5.249582e+01
## GLS 1.511084e-02 6.861169e-02 8.372253e-02 6.555293e+01
## ADPGK -9.702490e-02 6.887068e-03 -9.013783e-02 1.031675e+02
## ZUP1 7.867164e-03 6.197486e-03 1.406465e-02 8.176144e+00
## CASP8AP2 -1.580881e-02 3.727588e-02 2.146708e-02 1.582888e+01
## AMT 1.821722e-02 -8.308430e-03 9.908786e-03 8.794868e+00
## NPEPL1 -9.539225e-02 2.146002e-02 -7.393223e-02 4.376779e+01
## MCEMP1 -2.229037e+00 -5.540589e-02 -2.284443e+00 4.061669e+02
## SNRNP25 5.518977e-04 2.933833e-02 2.989023e-02 1.201958e+01
## GNL2 2.020767e-02 -2.844018e-02 -8.232508e-03 2.553483e+01
## PRKAG1 -9.297509e-02 2.747195e-02 -6.550315e-02 6.236971e+01
## MLH1 1.378995e-02 7.306715e-03 2.109667e-02 1.870455e+01
## XKR8 -9.595893e-02 1.446781e-01 4.871922e-02 8.095189e+01
## FANCD2 2.186229e-02 -8.112103e-03 1.375019e-02 1.171078e+01
## RPL38 8.595281e-01 -9.293183e-02 7.665963e-01 2.303508e+02
## FAM98C -2.325938e-02 1.885626e-02 -4.403123e-03 9.498352e+00
## HIC2 3.070873e-03 1.901713e-03 4.972587e-03 2.936338e+00
## SNRPF 3.096676e-02 2.229681e-03 3.319644e-02 1.587034e+01
## BNIPL 8.109633e-03 -1.324830e-03 6.784803e-03 2.612308e+00
## SKI -1.332700e-02 6.129731e-02 4.797031e-02 2.883985e+01
## PLD3 5.674371e-02 -8.426327e-02 -2.751957e-02 3.540101e+01
## KCNE1 -5.503050e-02 8.586011e-04 -5.417190e-02 1.221338e+01
## FEM1A -1.802120e-02 1.707424e-02 -9.469589e-04 2.698472e+01
## CYRIB -7.593280e-01 -3.758139e-01 -1.135142e+00 4.787988e+02
## NARS2 -1.108309e-03 5.735715e-03 4.627406e-03 3.683055e+00
## GTF3C6 9.938626e-03 1.800970e-02 2.794833e-02 1.936652e+01
## RUNX1 2.904279e-02 -1.168755e-01 -8.783275e-02 5.076905e+01
## PEX12 -5.542487e-03 3.333059e-03 -2.209428e-03 3.399743e+00
## C6orf136 2.793828e-04 8.384867e-03 8.664250e-03 6.670025e+00
## RPL27A 1.888234e+00 9.697222e-01 2.857956e+00 6.994942e+02
## LDLRAD3 2.127127e-03 -1.371156e-02 -1.158443e-02 4.434473e+00
## TCERG1 2.787114e-02 -2.841072e-03 2.503007e-02 1.565597e+01
## AGBL3 1.498002e-03 -1.116599e-03 3.814038e-04 4.558624e-01
## EDARADD 3.784367e-03 2.465459e-03 6.249826e-03 1.541990e+00
## CAP1 -3.702294e+00 1.007685e+00 -2.694609e+00 1.427961e+03
## CELF3 1.692030e-03 8.834643e-04 2.575495e-03 7.136636e-01
## L3MBTL2 1.015950e-02 2.146850e-02 3.162801e-02 1.897028e+01
## TF -4.670876e-02 -1.428634e-02 -6.099510e-02 2.921346e+01
## SERPINE1 5.088207e-04 -7.783665e-03 -7.274844e-03 2.163803e+00
## ROMO1 -4.268878e-02 4.501514e-02 2.326364e-03 1.096683e+01
## CNOT8 -2.300918e-01 8.896385e-02 -1.411279e-01 1.555339e+02
## PLCL2 -9.051590e-02 1.238184e-01 3.330253e-02 8.763922e+01
## CDC25A -7.471378e-03 2.659227e-04 -7.205456e-03 2.056359e+00
## CSTB -1.566220e-01 1.454991e-01 -1.112285e-02 8.641552e+01
## STRAP 5.122436e-02 -2.527303e-02 2.595133e-02 4.089759e+01
## PPWD1 2.343208e-02 1.500765e-02 3.843974e-02 3.097552e+01
## ELOC -5.912496e-02 4.689593e-02 -1.222903e-02 3.858472e+01
## COPS6 2.475581e-02 3.519656e-02 5.995237e-02 3.888161e+01
## UTP11 8.513564e-03 -1.335664e-02 -4.843071e-03 1.494096e+01
## TRMT1L -4.943124e-02 -1.590699e-02 -6.533824e-02 3.277542e+01
## NPAT 1.110450e-02 2.174129e-02 3.284579e-02 1.584570e+01
## NME4 1.757576e-02 2.042944e-02 3.800520e-02 1.014303e+01
## GDAP1 6.101384e-03 -3.518195e-03 2.583188e-03 2.788809e+00
## TM6SF1 -1.114510e-01 4.873640e-02 -6.271456e-02 4.431484e+01
## GOLGA3 -1.160487e-02 2.615668e-02 1.455181e-02 2.604738e+01
## NMRAL1 5.353577e-02 2.098174e-03 5.563395e-02 1.672887e+01
## PRKCD -6.896290e-01 2.333806e-02 -6.662909e-01 3.751111e+02
## GNG5 -2.944874e-01 1.166805e-01 -1.778069e-01 1.102240e+02
## GPLD1 -1.334353e-03 2.152359e-03 8.180053e-04 6.561487e-01
## GSTM3 -9.978004e-03 -1.410076e-02 -2.407876e-02 4.608946e+00
## PTPN12 -4.358597e-01 -5.015576e-02 -4.860154e-01 2.119369e+02
## CAST -4.024946e-01 1.165504e-01 -2.859442e-01 1.939955e+02
## RYR1 5.899005e-03 -4.672947e-04 5.431710e-03 1.546502e+00
## GOPC 1.833244e-02 1.711745e-02 3.544988e-02 2.275215e+01
## AATF -8.736480e-03 -4.634484e-02 -5.508132e-02 5.585634e+01
## E4F1 -9.466577e-03 2.169873e-02 1.223215e-02 6.734053e+00
## ZHX3 -6.725256e-04 6.102718e-03 5.430193e-03 4.107323e+00
## MYL12A -1.449663e+00 -9.929045e-01 -2.442568e+00 1.007959e+03
## SDCBP -4.225887e+00 7.453965e-01 -3.480490e+00 1.532123e+03
## ODR4 -1.864917e-02 6.184120e-03 -1.246505e-02 1.227280e+01
## SLC16A13 1.060001e-03 1.359344e-03 2.419345e-03 1.174704e+00
## ACSL5 -2.827339e-02 7.761214e-02 4.933875e-02 4.532363e+01
## ADGRG5 -2.763571e-02 3.000285e-02 2.367139e-03 8.734932e+00
## TTC31 1.140207e-02 1.160262e-02 2.300469e-02 1.950286e+01
## EIF2S1 -3.417010e-02 2.719062e-02 -6.979478e-03 3.251727e+01
## CAB39L -9.089795e-03 4.417689e-04 -8.648026e-03 5.916793e+00
## VPS13A 2.177091e-03 3.140271e-02 3.357980e-02 1.623763e+01
## ARHGAP9 -1.209754e+00 4.924780e-01 -7.172762e-01 5.432972e+02
## MTMR3 -7.325721e-01 2.172282e-01 -5.153439e-01 2.966046e+02
## PIP5K1C 1.267992e-02 1.762179e-02 3.030170e-02 1.354032e+01
## LAPTM5 -7.486036e-01 -3.152757e+00 -3.901361e+00 2.310992e+03
## USP4 -1.940280e-01 -6.791149e-02 -2.619395e-01 1.605139e+02
## POLRMT 3.276961e-02 1.264897e-02 4.541858e-02 1.124837e+01
## RHEB -5.718481e-02 4.332155e-02 -1.386326e-02 4.137510e+01
## POLR1H -2.029121e-02 6.023663e-02 3.994542e-02 2.668011e+01
## MRPL21 -2.279802e-02 2.868321e-02 5.885197e-03 1.273809e+01
## ZFYVE9 3.412363e-03 -2.866038e-03 5.463248e-04 1.636658e+00
## ZNF512 1.400652e-02 1.777750e-02 3.178403e-02 2.102624e+01
## DCUN1D3 -1.328819e-02 -7.168082e-03 -2.045628e-02 9.086661e+00
## RC3H2 -8.718989e-02 2.515558e-02 -6.203432e-02 5.048998e+01
## WDR97 9.391081e-04 1.622060e-03 2.561168e-03 8.739580e-01
## NAT14 3.780805e-03 2.927999e-03 6.708805e-03 1.742984e+00
## SNRNP40 2.677925e-02 5.380981e-03 3.216023e-02 2.268216e+01
## NRF1 -2.288388e-03 1.981339e-02 1.752501e-02 2.468651e+01
## XCL2 -9.574230e-03 1.277855e-02 3.204318e-03 3.225370e+00
## CCDC163 -4.467344e-03 4.286801e-03 -1.805435e-04 1.592307e+00
## ACP2 -3.982694e-02 3.229595e-02 -7.530986e-03 1.381038e+01
## FEZ1 6.522715e-03 -3.347434e-03 3.175281e-03 1.929321e+00
## NDRG1 2.041462e-02 -1.798814e-01 -1.594668e-01 1.111595e+02
## FOLR2 2.984212e-03 8.034842e-03 1.101905e-02 2.761971e+00
## SOX4 8.800244e-03 -1.545803e-02 -6.657782e-03 7.066125e+00
## DCTN5 5.111279e-02 -6.250674e-03 4.486212e-02 4.784804e+01
## ADCK2 8.610758e-03 1.203502e-02 2.064577e-02 8.212438e+00
## KHNYN -1.368262e-01 1.309756e-01 -5.850617e-03 1.155606e+02
## PGAM5 5.732445e-03 8.653462e-03 1.438591e-02 1.003413e+01
## JMJD8 2.877146e-03 4.978224e-02 5.265939e-02 1.656877e+01
## JAML -2.912940e+00 3.597362e-01 -2.553204e+00 1.197389e+03
## TRMT6 1.980151e-02 -4.115275e-02 -2.135123e-02 1.487300e+01
## HDDC2 2.937481e-02 -1.061614e-02 1.875868e-02 1.591801e+01
## POC1A -1.131035e-02 1.533907e-02 4.028711e-03 4.844227e+00
## IRAG1 -3.663240e-01 6.566531e-02 -3.006587e-01 1.145352e+02
## MBTD1 -3.367484e-02 4.037472e-02 6.699879e-03 2.273434e+01
## CACNG5 3.020902e-04 -1.770853e-03 -1.468763e-03 6.718039e-01
## ZBTB48 -3.454509e-02 6.014766e-02 2.560257e-02 2.623453e+01
## NINJ2 -5.989474e-02 6.421310e-02 4.318360e-03 2.848899e+01
## RSU1 -1.415197e-02 1.250825e-01 1.109305e-01 7.403378e+01
## MAMDC4 4.405057e-03 -2.623094e-03 1.781964e-03 8.934200e-01
## PRKX 5.838822e-02 2.295836e-03 6.068405e-02 2.917473e+01
## SDF4 -7.934529e-02 4.000558e-02 -3.933971e-02 4.612987e+01
## PITPNM1 -1.031447e-02 4.591255e-02 3.559808e-02 2.469994e+01
## SIN3A -9.406109e-03 5.445580e-02 4.504969e-02 4.372684e+01
## C1orf43 -1.273481e-01 1.446073e-01 1.725917e-02 1.361134e+02
## FAM76B -4.007203e-02 -2.927016e-02 -6.934219e-02 3.031518e+01
## ADIPOR2 -6.845522e-02 4.724770e-02 -2.120752e-02 6.453421e+01
## TOMM22 7.533302e-02 -4.102364e-02 3.430938e-02 3.776476e+01
## TP63 2.034565e-03 2.760064e-03 4.794629e-03 1.855110e+00
## FTL -1.099732e+01 -6.169139e+00 -1.716646e+01 6.897358e+03
## GRK5 -2.044564e-02 -1.849026e-02 -3.893590e-02 3.155185e+01
## VHL 5.692362e-02 -1.546555e-02 4.145807e-02 7.566969e+01
## CIAO1 -1.131927e-02 3.619581e-02 2.487654e-02 6.020786e+01
## WDR3 1.531183e-02 5.109085e-03 2.042091e-02 1.062552e+01
## FUT8 -3.169603e-03 1.396662e-02 1.079702e-02 8.212014e+00
## PXN -1.074071e+00 3.053720e-01 -7.686990e-01 5.532081e+02
## DDAH2 -2.482535e-01 1.150866e-01 -1.331669e-01 4.651856e+01
## ITGA7 -1.020605e-01 1.628682e-01 6.080772e-02 1.698011e+01
## BUD23 -5.248416e-03 3.919704e-02 3.394863e-02 1.819997e+01
## CCDC15 -2.204890e-03 -8.845314e-04 -3.089422e-03 1.057565e+00
## STK38L -1.609241e-01 1.165430e-01 -4.438111e-02 6.968990e+01
## TRMT112 -2.670386e-02 9.593400e-02 6.923014e-02 5.643521e+01
## TSR1 1.954666e-02 -2.130990e-03 1.741567e-02 1.252175e+01
## FRG1 3.152203e-02 3.255954e-02 6.408157e-02 4.000742e+01
## TIMM23B 4.496998e-03 2.706500e-03 7.203498e-03 3.428654e+00
## ZZZ3 1.096008e-03 1.914585e-02 2.024185e-02 1.250822e+01
## FBXL5 -1.013312e+00 -6.848682e-01 -1.698180e+00 7.176815e+02
## MTMR9 -1.784515e-02 -7.868015e-04 -1.863195e-02 1.339593e+01
## MDH1 2.112530e-02 4.706808e-02 6.819339e-02 5.655451e+01
## STK4 -4.896638e-01 -4.829073e-02 -5.379545e-01 2.956413e+02
## MME -1.428677e+00 1.396643e+00 -3.203359e-02 4.623207e+02
## DENND5A -7.048988e-01 3.003220e-01 -4.045768e-01 3.080680e+02
## RPL18A 1.336171e+00 7.239148e-01 2.060086e+00 3.745194e+02
## TCF25 -6.638904e-02 1.164243e-01 5.003530e-02 6.821969e+01
## TMEM45B -2.327678e-02 4.459344e-02 2.131666e-02 1.246221e+01
## INTS4 8.649131e-03 -1.746723e-02 -8.818096e-03 2.197453e+01
## EHBP1 5.730534e-04 6.608771e-03 7.181825e-03 4.589209e+00
## GGA2 8.521168e-02 -2.668692e-03 8.254299e-02 5.287585e+01
## SLC27A5 4.551172e-03 3.331883e-03 7.883055e-03 1.237225e+00
## BTBD6 4.279472e-02 -8.484167e-03 3.431055e-02 2.206897e+01
## WDR82 -1.256156e-01 1.807780e-01 5.516241e-02 1.305999e+02
## SEC22C 2.896239e-03 2.847875e-02 3.137499e-02 2.527330e+01
## KAT8 -1.157681e-01 3.758873e-02 -7.817935e-02 5.428584e+01
## NANP 3.638329e-03 -1.130322e-03 2.508007e-03 2.393846e+00
## HLA-DRA -8.751587e-02 1.449729e+00 1.362213e+00 6.389640e+02
## SARAF 6.216945e-01 -4.681851e-01 1.535094e-01 4.853286e+02
## SUDS3 -7.264033e-02 -3.610592e-03 -7.625092e-02 4.831490e+01
## ACTR3B -3.725055e-03 4.751746e-03 1.026692e-03 3.887152e+00
## BCO2 -4.098056e-04 -1.253782e-03 -1.663588e-03 5.902851e-01
## DNAJB6 -1.228739e-01 -1.107569e-01 -2.336308e-01 1.212070e+02
## VPS52 1.226789e-02 1.125144e-02 2.351933e-02 2.290242e+01
## CCDC138 -1.434800e-03 2.223431e-03 7.886305e-04 1.137407e+00
## GNAZ -2.073855e-03 -2.381758e-02 -2.589143e-02 1.077613e+01
## GCM1 -5.388766e-03 -3.826431e-03 -9.215196e-03 2.442605e+00
## CTNS 1.157691e-04 1.674137e-02 1.685714e-02 1.315512e+01
## TBC1D30 -8.480683e-03 -4.881234e-03 -1.336192e-02 4.722714e+00
## DAGLA 3.411650e-03 -1.062129e-03 2.349521e-03 8.452911e-01
## MLF2 -2.319100e-01 2.651051e-01 3.319514e-02 1.443005e+02
## GAK -5.212567e-02 2.167634e-02 -3.044933e-02 4.015485e+01
## PET100 -1.557903e-01 4.691636e-02 -1.088740e-01 5.337917e+01
## TMEM241 -3.284542e-03 3.646973e-03 3.624317e-04 2.146202e+00
## PRDM2 -1.129993e-01 4.840422e-02 -6.459513e-02 5.794222e+01
## BCL9L 3.776398e-02 -2.324132e-02 1.452266e-02 9.989571e+00
## MANBAL 8.797896e-03 -2.790551e-02 -1.910762e-02 1.770430e+01
## LRRC45 1.099022e-02 8.282671e-04 1.181849e-02 3.421982e+00
## TALDO1 -1.535335e+00 1.753961e+00 2.186260e-01 7.690418e+02
## RBCK1 2.085653e-01 -2.142475e-01 -5.682194e-03 9.698062e+01
## CETP -5.866647e-03 -1.080864e-02 -1.667529e-02 2.816224e+00
## TOMM40 -3.729979e-03 2.597411e-02 2.224413e-02 1.089243e+01
## HACD1 -6.381466e-04 1.554927e-03 9.167801e-04 4.456768e-01
## GLCCI1 -3.686570e-02 5.324942e-02 1.638371e-02 2.352113e+01
## FCER2 4.224437e-02 1.294212e-02 5.518649e-02 8.835297e+00
## NFKB1 -1.588124e-01 6.214520e-02 -9.666719e-02 8.215374e+01
## IRF3 8.958579e-02 6.412782e-02 1.537136e-01 4.385028e+01
## SNX24 1.966327e-03 -2.822584e-03 -8.562573e-04 1.671806e+00
## G3BP2 6.932102e-02 -1.186495e-01 -4.932843e-02 8.254191e+01
## TAF10 -2.189953e-01 1.004461e-01 -1.185492e-01 1.088662e+02
## ARNTL -7.430232e-02 -2.825024e-02 -1.025526e-01 4.545895e+01
## ZMYND12 1.185187e-03 -1.863872e-03 -6.786852e-04 5.855640e-01
## BYSL 1.946829e-03 6.220742e-03 8.167571e-03 3.532874e+00
## RICTOR -3.969911e-01 2.674037e-01 -1.295873e-01 1.414603e+02
## ZYX -2.246125e+00 9.263887e-01 -1.319736e+00 7.049949e+02
## ASAP3 1.360968e-03 1.090791e-03 2.451759e-03 6.026270e-01
## DHPS 3.138210e-02 -2.016485e-03 2.936561e-02 2.445493e+01
## INPP5K -4.451187e-02 1.179734e-01 7.346148e-02 6.800043e+01
## AGBL5 -5.477983e-03 1.200773e-02 6.529749e-03 8.836082e+00
## PPP1R35 -2.200004e-02 2.820852e-02 6.208478e-03 1.035266e+01
## TMEM184B 4.575306e-02 -8.360968e-03 3.739209e-02 2.813085e+01
## NCKIPSD 1.356369e-02 -1.985824e-02 -6.294551e-03 7.480685e+00
## GRB14 -2.271279e-03 3.046063e-03 7.747841e-04 1.002550e+00
## RSKR -6.723189e-04 5.396848e-03 4.724529e-03 3.583314e+00
## VPS4B -1.607012e-01 6.839316e-04 -1.600173e-01 9.837045e+01
## ADAM17 -2.698754e-01 2.191363e-01 -5.073910e-02 6.728714e+01
## COQ4 1.711799e-02 1.458452e-02 3.170251e-02 7.047491e+00
## OXSR1 -1.819777e-01 9.120962e-02 -9.076807e-02 7.923882e+01
## TAF8 -4.567871e-02 5.137821e-02 5.699500e-03 3.178794e+01
## MAP1LC3B -3.112291e-01 -3.555869e-01 -6.668160e-01 2.383830e+02
## EPHB1 -3.234214e-02 2.763296e-02 -4.709178e-03 1.101810e+01
## MED6 7.988521e-03 -1.231483e-02 -4.326305e-03 1.610671e+01
## TRAM1 -1.403322e-01 1.445823e-01 4.250114e-03 1.306377e+02
## ACOX1 -4.233628e-01 2.050462e-01 -2.183166e-01 1.645294e+02
## ANKRA2 -1.680006e-02 1.953122e-02 2.731159e-03 1.404003e+01
## MOGS -2.400464e-02 6.295532e-02 3.895068e-02 3.939152e+01
## DIAPH2 4.624878e-03 -2.668578e-02 -2.206090e-02 1.739817e+01
## ACSL1 -4.364466e+00 -2.311981e+00 -6.676447e+00 1.933663e+03
## HNRNPF 9.894042e-02 -1.161306e-01 -1.719018e-02 1.541972e+02
## AFAP1 6.376938e-03 9.095419e-03 1.547236e-02 4.676465e+00
## ARFGAP2 -2.421701e-02 1.361951e-01 1.119781e-01 9.070118e+01
## WDR24 -7.279769e-03 6.983959e-03 -2.958098e-04 2.938215e+00
## LTB4R -3.271316e-01 -8.780715e-02 -4.149387e-01 1.653934e+02
## UQCC2 -1.114771e-02 2.634024e-02 1.519253e-02 8.564593e+00
## KNTC1 1.687906e-02 8.110838e-04 1.769014e-02 1.035805e+01
## DDX46 -4.631923e-02 5.973266e-02 1.341343e-02 4.691826e+01
## ZNF33A -1.898609e-01 -2.238691e-02 -2.122479e-01 9.466988e+01
## TRAF6 -3.072699e-02 -1.036053e-02 -4.108752e-02 2.421382e+01
## MPZL3 -2.657924e-01 6.504855e-02 -2.007438e-01 1.156945e+02
## GALNS -1.153874e-02 3.198095e-02 2.044222e-02 2.234408e+01
## TCOF1 2.020842e-02 3.014661e-02 5.035502e-02 1.955055e+01
## CERS6 -1.511446e-02 -1.811842e-02 -3.323288e-02 2.227757e+01
## DOCK2 -2.855354e-01 -5.215065e-02 -3.376861e-01 2.546311e+02
## WASHC2A 8.337174e-02 -3.886859e-02 4.450314e-02 5.737396e+01
## MYO9A -1.064743e-02 1.813065e-02 7.483222e-03 8.313552e+00
## DCXR 1.754754e-02 5.910852e-02 7.665606e-02 1.824967e+01
## PRPF31 3.206215e-02 2.523125e-02 5.729340e-02 1.753053e+01
## CBY1 5.439697e-04 5.921867e-03 6.465837e-03 4.702091e+00
## RPS19 2.077567e+00 3.875145e-01 2.465081e+00 4.883219e+02
## SCCPDH -1.288729e-02 -1.516569e-02 -2.805298e-02 1.456021e+01
## ACTN4 -9.103504e-02 -4.941614e-02 -1.404512e-01 1.095409e+02
## YLPM1 -2.366285e-02 1.845310e-02 -5.209753e-03 1.652196e+01
## NKAPD1 1.028019e-02 6.500049e-03 1.678024e-02 2.074763e+01
## INPP5B 1.752761e-02 7.942732e-03 2.547035e-02 2.233440e+01
## COMMD5 -4.287088e-02 2.364197e-02 -1.922891e-02 1.860388e+01
## THAP7 1.816306e-02 2.500755e-03 2.066381e-02 4.236115e+00
## RABL2A 5.056657e-03 1.008188e-03 6.064845e-03 3.496864e+00
## MEIS1 -9.227522e-03 -5.809473e-03 -1.503700e-02 5.378549e+00
## TMPRSS13 3.903541e-03 7.723510e-04 4.675892e-03 1.618883e+00
## NFATC2IP 3.003907e-03 2.440754e-02 2.741145e-02 2.723838e+01
## CPSF4 -1.254711e-03 2.532630e-02 2.407158e-02 1.513954e+01
## SDHD -7.521365e-02 -4.298801e-02 -1.182017e-01 8.899410e+01
## ZNF622 -4.181282e-02 -6.637707e-03 -4.845052e-02 3.338130e+01
## TPH1 1.466369e-03 4.844439e-04 1.950813e-03 6.945819e-01
## ADHFE1 1.473201e-03 7.027627e-03 8.500827e-03 3.598349e+00
## VPS51 5.275513e-02 5.778495e-02 1.105401e-01 2.467671e+01
## ZNF300 -4.239618e-03 2.646018e-03 -1.593600e-03 1.705615e+00
## RELA 9.887266e-02 -2.755417e-02 7.131849e-02 5.918476e+01
## ZNF212 8.998608e-03 -1.088216e-02 -1.883552e-03 9.367830e+00
## KLF10 -1.172227e-01 -4.867580e-02 -1.658985e-01 4.213075e+01
## ZNF747 -7.813088e-03 9.237541e-03 1.424453e-03 7.011110e+00
## ERP29 3.094674e-01 -4.038058e-02 2.690868e-01 1.449785e+02
## TMEM161A 2.847425e-03 6.950618e-03 9.798043e-03 2.388716e+00
## IL17RE 1.902063e-03 -3.139978e-04 1.588065e-03 3.558693e-01
## MAD2L2 -6.927614e-02 2.632811e-02 -4.294803e-02 2.424771e+01
## TLR5 -3.826681e-01 2.579652e-04 -3.824101e-01 1.128943e+02
## KRBA2 -4.224788e-03 5.173263e-03 9.484750e-04 5.176327e+00
## NAT9 2.216711e-03 2.222005e-02 2.443676e-02 1.533557e+01
## MEX3C 1.576172e-02 3.038447e-02 4.614619e-02 2.403613e+01
## ACSS2 -2.441731e-02 -4.122142e-02 -6.563872e-02 4.490624e+01
## ACTR5 9.635352e-03 2.231405e-03 1.186676e-02 6.393978e+00
## ZFHX3 -8.039706e-03 -2.432831e-03 -1.047254e-02 3.937475e+00
## POLR2B -9.675279e-02 1.194897e-01 2.273696e-02 8.952935e+01
## ESAM -7.043027e-02 6.768976e-03 -6.366130e-02 1.991957e+01
## LST1 -7.373015e-01 1.288427e+00 5.511251e-01 3.942650e+02
## ANGEL1 2.027881e-03 1.378803e-02 1.581591e-02 9.062494e+00
## DYNC1I2 6.248459e-02 -5.287348e-02 9.611109e-03 4.463529e+01
## NAGK 1.592258e-01 -4.434216e-01 -2.841958e-01 2.038187e+02
## ELF3 -3.659157e-03 1.923408e-03 -1.735748e-03 1.058473e+00
## WDR83 -1.667685e-03 7.886620e-03 6.218935e-03 3.226678e+00
## RABL6 -1.570038e-02 7.099094e-02 5.529056e-02 2.391767e+01
## RPTOR 6.139617e-03 7.120395e-03 1.326001e-02 4.583612e+00
## STRADA -4.803103e-02 1.751678e-02 -3.051425e-02 3.738181e+01
## TRIQK -4.339693e-02 -5.933891e-02 -1.027358e-01 3.390676e+01
## ZC3HAV1 -3.159688e-01 3.331706e-01 1.720190e-02 1.424413e+02
## MUL1 -2.782249e-02 5.891953e-03 -2.193054e-02 2.268529e+01
## VPS37A -3.375372e-02 1.554690e-02 -1.820682e-02 2.034202e+01
## DHCR7 -7.243635e-03 -1.290551e-02 -2.014915e-02 5.353338e+00
## MXI1 2.920573e-03 1.058995e-01 1.088200e-01 3.739420e+01
## ZMYM5 -2.904534e-02 8.363767e-03 -2.068158e-02 1.542612e+01
## PDK4 -1.675501e-01 1.011986e-01 -6.635151e-02 4.284063e+01
## FSCN1 3.656781e-03 -8.233772e-04 2.833404e-03 1.136395e+00
## SLC25A19 -1.661594e-02 1.304498e-02 -3.570966e-03 7.353874e+00
## CD44 -1.257448e+00 8.380013e-02 -1.173647e+00 5.128918e+02
## ARHGEF12 8.344854e-04 5.128147e-02 5.211595e-02 2.203827e+01
## TRPM4 -2.993846e-03 -4.449753e-04 -3.438822e-03 7.660720e-01
## NAMPT -1.707362e+01 3.099618e+00 -1.397400e+01 5.597267e+03
## PAOX 2.176154e-03 5.269598e-03 7.445753e-03 2.008571e+00
## ZNF484 -1.028070e-02 3.598319e-03 -6.682378e-03 4.508776e+00
## MAP3K4 4.514542e-03 1.564696e-02 2.016151e-02 1.265372e+01
## LOC112694756 1.965863e-02 -1.654326e-02 3.115368e-03 1.337259e+01
## OSBPL8 -8.638724e-01 8.023665e-01 -6.150587e-02 3.010835e+02
## GNA15 -9.195752e-03 -4.740347e-02 -5.659922e-02 2.381137e+01
## TTC33 -3.449016e-02 1.979578e-02 -1.469438e-02 1.880220e+01
## RBL2 -2.794811e-01 3.602576e-01 8.077656e-02 1.712824e+02
## PTGES2 1.335169e-02 2.366717e-02 3.701887e-02 9.792072e+00
## PHKB 1.901953e-02 -5.462210e-02 -3.560257e-02 4.623304e+01
## ATE1 -2.791830e-02 2.406281e-03 -2.551202e-02 1.848914e+01
## KMT2C -2.119830e-01 1.437440e-01 -6.823898e-02 8.591296e+01
## IFT172 1.324897e-03 3.768075e-03 5.092971e-03 2.660476e+00
## GRK2 -5.142493e-01 2.539771e-01 -2.602722e-01 3.422874e+02
## RPP40 1.601353e-03 1.116849e-03 2.718202e-03 1.237182e+00
## WNT11 -3.090460e-03 4.067373e-06 -3.086393e-03 6.834494e-01
## OGFRL1 -5.487073e-01 8.572079e-01 3.085007e-01 3.498741e+02
## LRRCC1 -7.162581e-03 2.473916e-03 -4.688665e-03 3.115080e+00
## BRI3 -1.098532e-01 -3.565716e-01 -4.664248e-01 2.100659e+02
## SWT1 -1.993740e-02 -1.093703e-03 -2.103110e-02 1.053536e+01
## REXO4 1.100145e-02 1.757452e-02 2.857597e-02 1.197259e+01
## TIMM10B 1.441682e-02 3.712282e-03 1.812910e-02 1.354813e+01
## SLX1A -5.894694e-02 5.448861e-02 -4.458328e-03 2.377912e+01
## RNASE2 -7.321132e-01 3.832656e-02 -6.937867e-01 1.704180e+02
## GPAA1 -6.787142e-02 8.005373e-02 1.218231e-02 2.123605e+01
## CHD7 -1.620558e-01 1.405087e-01 -2.154704e-02 4.486913e+01
## USP24 -7.572357e-02 4.958793e-02 -2.613564e-02 4.766086e+01
## TMC5 -2.376388e-04 -4.280861e-03 -4.518500e-03 1.110645e+00
## RAB4B -8.946193e-02 8.617642e-02 -3.285506e-03 3.842153e+01
## RC3H1 -2.545636e-01 5.775143e-02 -1.968122e-01 1.009587e+02
## KLHDC4 -9.308586e-03 2.776095e-02 1.845237e-02 9.421845e+00
## PQBP1 1.901628e-02 7.064700e-02 8.966328e-02 3.757419e+01
## BDP1 -2.055381e-02 4.161228e-02 2.105848e-02 2.056879e+01
## RBM25 -1.526731e-01 1.128027e-01 -3.987047e-02 9.309987e+01
## NDUFB4 -1.409743e-02 2.821061e-02 1.411318e-02 2.906392e+01
## IGSF8 1.217468e-02 1.302725e-02 2.520193e-02 7.130157e+00
## ITPK1 -1.177156e-01 -2.433286e-01 -3.610443e-01 1.828352e+02
## TRAPPC6B -5.324283e-02 2.688974e-02 -2.635309e-02 3.690230e+01
## TMEM50A -2.657767e-01 1.668045e-02 -2.490963e-01 2.020649e+02
## RB1CC1 -2.392308e-01 6.042479e-02 -1.788060e-01 9.750158e+01
## SENP3 3.943622e-02 -1.360514e-02 2.583108e-02 3.281378e+01
## IL1B -2.787894e-01 -1.654699e-01 -4.442594e-01 1.220984e+02
## SCNN1A -2.580498e-03 3.205358e-03 6.248600e-04 1.007964e+00
## CYLD -1.156168e-01 2.620441e-01 1.464273e-01 1.725038e+02
## SNX2 -8.103804e-02 -6.318125e-02 -1.442193e-01 1.077101e+02
## KDM5A -1.815441e-01 2.040772e-02 -1.611364e-01 1.203062e+02
## C1orf198 1.556247e-02 -9.660440e-03 5.902035e-03 6.082813e+00
## TMEM102 -1.092867e-03 1.274235e-02 1.164948e-02 5.149900e+00
## RELB -4.469552e-02 6.332629e-02 1.863077e-02 2.527917e+01
## ZNF793 1.970629e-03 2.218532e-03 4.189160e-03 2.565520e+00
## PTPN4 1.970364e-02 4.285399e-02 6.255763e-02 2.510400e+01
## CKLF -5.722446e-01 1.960504e-01 -3.761942e-01 2.302862e+02
## TRMT61A 1.093119e-02 5.490451e-03 1.642164e-02 3.457566e+00
## PARD3 -3.621898e-03 -6.855640e-03 -1.047754e-02 3.609685e+00
## SCYL2 -1.146324e-01 -5.002909e-03 -1.196353e-01 6.530541e+01
## TBC1D7 -1.542697e-02 -6.474739e-03 -2.190171e-02 8.583196e+00
## GSKIP -6.543911e-02 3.589913e-03 -6.184920e-02 3.186982e+01
## NBPF8 -5.293647e-02 6.288269e-02 9.946226e-03 2.121012e+01
## ORAI1 -2.560562e-02 7.605280e-02 5.044718e-02 1.950644e+01
## USP9X -2.283595e-01 4.477622e-02 -1.835833e-01 1.098897e+02
## GAPDH -7.140226e+00 4.204895e+00 -2.935331e+00 2.151126e+03
## MLST8 -1.992315e-03 2.301748e-02 2.102516e-02 6.853178e+00
## WIZ 5.531529e-03 6.282917e-03 1.181445e-02 6.936220e+00
## PTP4A1 1.149398e-01 -2.635129e-01 -1.485731e-01 1.037282e+02
## KCNRG 1.257167e-03 1.563389e-04 1.413506e-03 4.302046e-01
## KATNBL1 -2.072902e-01 1.861131e-01 -2.117703e-02 6.429785e+01
## RPS12 2.518456e+00 2.596733e-01 2.778130e+00 7.046718e+02
## FAF1 1.843241e-02 -6.427900e-03 1.200451e-02 1.614842e+01
## DHFR2 9.504292e-03 -3.128545e-04 9.191438e-03 5.450357e+00
## CCDC17 1.376232e-03 -2.155983e-02 -2.018360e-02 7.876723e+00
## TPST1 -3.777871e-01 8.648678e-02 -2.913003e-01 7.701321e+01
## CHST15 -6.643956e-01 2.518966e-01 -4.124990e-01 2.932638e+02
## AHDC1 4.054219e-03 -1.711669e-03 2.342550e-03 1.492941e+00
## COQ7 -3.077788e-02 1.095887e-02 -1.981900e-02 1.212732e+01
## SECISBP2 -4.212806e-02 2.206936e-02 -2.005870e-02 4.681965e+01
## PMS2 -1.611647e-02 1.440574e-02 -1.710733e-03 3.125375e+01
## GSTO2 2.721365e-03 -8.146281e-03 -5.424916e-03 2.164190e+00
## CTRL 1.826629e-02 -2.587903e-02 -7.612739e-03 9.441887e+00
## MCRS1 -3.866223e-02 8.266137e-02 4.399914e-02 4.663987e+01
## SVIL -2.372304e-01 -6.382336e-02 -3.010538e-01 1.304548e+02
## PGM5 -4.402129e-02 3.430496e-02 -9.716332e-03 7.387209e+00
## HSDL1 -8.241428e-04 -1.782863e-02 -1.865278e-02 2.259893e+01
## RAB2A -1.848895e-01 1.176882e-01 -6.720138e-02 1.097312e+02
## NAPEPLD -8.685736e-03 6.091729e-03 -2.594007e-03 5.160140e+00
## SIAE 2.408428e-02 -1.954809e-02 4.536190e-03 1.134729e+01
## TMBIM1 -4.288787e-01 7.046321e-02 -3.584154e-01 2.691703e+02
## EIF3B 3.698759e-02 6.487333e-02 1.018609e-01 5.184686e+01
## CIPC 1.683366e-02 -3.162670e-02 -1.479303e-02 1.273094e+01
## INO80D -5.653116e-02 4.080968e-02 -1.572148e-02 2.880287e+01
## C18orf54 -3.112733e-03 6.423726e-04 -2.470360e-03 1.642474e+00
## RGS14 -3.757823e-01 5.953598e-02 -3.162463e-01 1.545188e+02
## NAALADL1 1.238990e-02 1.025255e-02 2.264245e-02 5.807295e+00
## EXOC5 -5.975436e-02 2.665655e-02 -3.309781e-02 3.666966e+01
## PIK3C3 -5.843729e-02 3.676543e-02 -2.167186e-02 4.410018e+01
## PARN -1.745185e-02 -3.402223e-03 -2.085407e-02 2.980015e+01
## NCALD 1.072805e-02 1.069254e-02 2.142059e-02 6.619015e+00
## STAG1 -9.263269e-02 2.191387e-02 -7.071883e-02 4.837270e+01
## LXN -7.986409e-03 2.421930e-02 1.623290e-02 1.173390e+01
## AQP9 -4.278924e+00 -9.172991e-01 -5.196223e+00 1.937645e+03
## APOL3 2.665691e-02 -1.249889e-01 -9.833199e-02 5.005443e+01
## ZCCHC7 8.499896e-03 9.599843e-03 1.809974e-02 1.767110e+01
## RDH16 -1.700696e-03 1.513533e-03 -1.871628e-04 6.754906e-01
## TSC22D3 -5.922005e+00 -1.376673e-01 -6.059672e+00 2.009725e+03
## MPO 2.591320e-01 -3.852129e-01 -1.260809e-01 4.694274e+01
## TUBB 9.580375e-02 1.840066e-01 2.798103e-01 1.736344e+02
## AKIRIN1 -6.374032e-02 -1.375276e-01 -2.012679e-01 1.219952e+02
## NDUFAF2 5.556855e-03 3.442955e-03 8.999810e-03 4.506628e+00
## MRPL53 -3.519092e-02 2.645595e-02 -8.734966e-03 1.228370e+01
## ZNF20 -1.722261e-02 -1.043040e-02 -2.765301e-02 1.426530e+01
## PIN4 2.052185e-02 -1.220170e-02 8.320151e-03 1.310390e+01
## ECI2 2.920576e-02 -5.442203e-03 2.376356e-02 1.333330e+01
## S1PR3 2.868229e-02 -2.160506e-02 7.077221e-03 1.022066e+01
## TRIM4 4.882040e-03 2.257211e-02 2.745415e-02 2.314785e+01
## CSF2RA -4.050097e-01 1.185030e-01 -2.865066e-01 1.571687e+02
## PIP5K1A -2.339020e-02 6.829732e-02 4.490712e-02 4.345264e+01
## RNA28SN4 7.324680e+00 -2.178367e+00 5.146313e+00 1.437686e+03
## DIPK2A -2.428444e-02 -6.001960e-03 -3.028640e-02 2.161432e+01
## SPEN -1.251040e-01 5.631584e-02 -6.878815e-02 5.806554e+01
## PRDM10 -2.031756e-02 5.944335e-03 -1.437322e-02 1.017151e+01
## PNRC2 3.648860e-02 -1.384646e-01 -1.019760e-01 1.367760e+02
## REPS2 -2.919527e-01 5.669632e-02 -2.352564e-01 9.723091e+01
## ACTG1 -2.716383e+00 1.995465e+00 -7.209177e-01 1.362670e+03
## DNAJA2 -1.055513e-01 1.202133e-02 -9.352994e-02 7.105318e+01
## TAPBPL -6.101179e-02 -3.041848e-02 -9.143028e-02 3.829578e+01
## BTG3 8.080644e-03 2.230820e-03 1.031146e-02 3.740489e+00
## SERTAD1 -2.017294e-02 -1.611334e-02 -3.628628e-02 1.194549e+01
## WWP2 -1.084593e-01 1.624656e-02 -9.221275e-02 9.005559e+01
## RCE1 9.372718e-03 7.342997e-03 1.671572e-02 7.901381e+00
## MICA 4.244156e-03 -2.266093e-02 -1.841677e-02 1.539044e+01
## FUOM 2.103787e-02 5.932047e-04 2.163107e-02 3.384459e+00
## ALG9 -6.302291e-03 6.596523e-03 2.942314e-04 4.203317e+00
## INCENP -5.673144e-03 4.323597e-03 -1.349548e-03 2.695294e+00
## SCRN2 3.072321e-02 -3.506314e-04 3.037258e-02 1.024813e+01
## KCNAB3 9.461131e-05 -7.371231e-03 -7.276619e-03 3.630472e+00
## SNRK -7.281158e-02 -2.429514e-01 -3.157630e-01 1.634270e+02
## DHX9 1.286629e-01 -2.042363e-02 1.082393e-01 1.185330e+02
## GPR160 4.913500e-02 -2.087436e-01 -1.596086e-01 7.038669e+01
## OBI1 1.908110e-02 -4.144894e-03 1.493621e-02 1.199382e+01
## LAT2 -2.968432e-01 -5.598523e-01 -8.566955e-01 4.298213e+02
## TBC1D9B 3.927712e-02 -5.144785e-02 -1.217073e-02 3.710926e+01
## ARHGAP10 6.069358e-03 3.135108e-03 9.204466e-03 3.601153e+00
## PRH1-TAS2R14 1.750083e-03 -1.150883e-03 5.992000e-04 5.444118e-01
## DCP2 -4.121999e-01 9.598344e-02 -3.162165e-01 1.898528e+02
## PPIG -5.311502e-02 8.849032e-02 3.537530e-02 6.760839e+01
## BCLAF3 -2.918641e-02 3.046804e-04 -2.888173e-02 1.529940e+01
## PTBP3 -6.242482e-01 2.073781e-01 -4.168701e-01 2.794482e+02
## DGCR6L 4.387089e-02 2.898304e-02 7.285393e-02 1.389479e+01
## EIF5A -6.744913e-02 2.198585e-01 1.524093e-01 1.353363e+02
## DYM 9.584702e-03 1.726451e-02 2.684921e-02 3.008620e+01
## BLOC1S1 -6.217738e-01 3.557852e-01 -2.659887e-01 1.778309e+02
## CMTM5 2.124184e-02 -1.045429e-01 -8.330110e-02 2.393577e+01
## ZC3H11A -5.443222e-01 2.702544e-01 -2.740678e-01 2.547754e+02
## DPY19L4 4.219444e-03 5.510933e-03 9.730377e-03 4.967538e+00
## AMPD2 -3.333017e-02 3.533281e-01 3.199980e-01 1.416329e+02
## C8orf76 -2.210580e-02 1.087101e-02 -1.123479e-02 1.460435e+01
## PCGF5 3.843746e-02 -1.121421e-01 -7.370460e-02 5.694832e+01
## GPX7 1.468443e-02 6.159680e-04 1.530039e-02 6.375481e+00
## ABHD16A -1.199912e-01 6.280104e-02 -5.719013e-02 7.182551e+01
## SLC25A13 -8.972745e-03 6.518802e-03 -2.453943e-03 7.199619e+00
## PEMT -4.651949e-03 5.723785e-03 1.071836e-03 1.908379e+00
## PAQR6 4.396336e-02 -4.597161e-02 -2.008249e-03 1.398481e+01
## GPR132 -5.480996e-02 4.285783e-03 -5.052418e-02 2.743879e+01
## SARS2 9.589193e-04 1.271272e-02 1.367163e-02 4.118629e+00
## CLOCK -9.275219e-03 1.382166e-02 4.546441e-03 7.306462e+00
## PEX2 -6.931933e-02 8.409442e-03 -6.090989e-02 4.303306e+01
## ZER1 -4.069645e-02 7.983604e-02 3.913959e-02 4.875429e+01
## SLC25A35 6.468808e-03 -3.234585e-03 3.234223e-03 3.353946e+00
## SLC10A3 -2.739355e-02 4.830860e-03 -2.256269e-02 1.375667e+01
## VARS1 -1.400865e-02 3.671777e-02 2.270912e-02 1.584526e+01
## TOR1AIP2 -1.927392e-02 -6.653481e-02 -8.580873e-02 5.590155e+01
## BUD31 9.022723e-02 -1.431019e-01 -5.287467e-02 6.767245e+01
## ZNF431 -9.526149e-03 1.771859e-02 8.192445e-03 1.337439e+01
## MBP -6.828128e-01 2.871795e-01 -3.956333e-01 3.054615e+02
## MIGA1 8.894017e-04 9.001412e-03 9.890814e-03 7.134786e+00
## ZBTB16 -9.489354e-02 -1.964967e-01 -2.913903e-01 4.482214e+01
## ADORA3 -3.115730e-02 1.516302e-02 -1.599429e-02 7.926977e+00
## CPSF3 2.278862e-02 -1.320210e-02 9.586523e-03 2.198405e+01
## INVS 9.160286e-04 -5.579067e-03 -4.663038e-03 4.965375e+00
## TRIM14 -1.050206e-01 1.125486e-02 -9.376578e-02 4.405572e+01
## NR2C2 -1.224581e-01 9.936822e-02 -2.308987e-02 5.029766e+01
## ATXN2L 1.413961e-02 3.565029e-02 4.978990e-02 3.458328e+01
## RBM28 7.780408e-03 5.295559e-03 1.307597e-02 1.693785e+01
## ASB13 1.467044e-02 2.726507e-03 1.739695e-02 8.068603e+00
## LRR1 -1.157372e-02 9.704030e-03 -1.869687e-03 7.638296e+00
## BLOC1S6 -4.622575e-02 -3.604211e-02 -8.226786e-02 5.360910e+01
## C1orf21 -2.167329e-03 -1.961641e-02 -2.178374e-02 8.303042e+00
## PUS1 1.072897e-02 7.129134e-03 1.785811e-02 5.357162e+00
## COQ10B -1.193571e-03 -9.151267e-02 -9.270624e-02 5.058062e+01
## LOC100289561 3.852791e-03 -2.102726e-03 1.750066e-03 2.177166e+00
## CD46 -1.230423e+00 2.887972e-01 -9.416257e-01 5.083978e+02
## MTHFSD 1.006505e-02 -3.815261e-03 6.249786e-03 7.413862e+00
## UBE2K -5.051988e-02 1.879750e-02 -3.172238e-02 5.215666e+01
## QPCTL -1.422747e-02 7.683625e-03 -6.543842e-03 3.655889e+00
## EIF3I 1.229920e-01 -1.256163e-02 1.104303e-01 8.362708e+01
## CCDC61 5.254870e-03 9.221141e-03 1.447601e-02 4.173247e+00
## FCGR2A -4.198282e+00 1.522725e+00 -2.675557e+00 1.588980e+03
## BTNL8 -6.823164e-02 -1.183106e-01 -1.865422e-01 5.973969e+01
## ARMC12 -1.725914e-02 -6.418455e-04 -1.790099e-02 3.119896e+00
## STAT3 -4.684535e-01 -2.229236e-01 -6.913771e-01 3.502145e+02
## NRROS 1.014475e-02 -2.270778e-02 -1.256303e-02 1.161965e+01
## KCMF1 -1.008288e-01 5.149009e-02 -4.933868e-02 6.586902e+01
## ISY1-RAB43 -2.135425e-01 1.174609e-01 -9.608166e-02 1.161670e+02
## B3GALT6 -2.716980e-03 2.599726e-02 2.328028e-02 9.230131e+00
## TDRD7 -3.146854e-02 -1.324729e-01 -1.639415e-01 6.044724e+01
## PHYH 4.848308e-03 9.809719e-04 5.829280e-03 3.697303e+00
## CCDC9 2.059138e-02 -4.087903e-02 -2.028766e-02 1.475414e+01
## ICAM1 2.868417e-01 -1.976447e-01 8.919695e-02 7.834034e+01
## CRY2 2.332585e-02 1.696893e-04 2.349554e-02 1.773923e+01
## SLC38A9 -5.021386e-03 -4.251464e-03 -9.272850e-03 6.479949e+00
## ABCC2 -2.338320e-02 1.059053e-02 -1.279267e-02 7.386530e+00
## PBLD -2.621808e-03 -4.401879e-03 -7.023687e-03 3.704078e+00
## ZNF41 1.383885e-04 9.947770e-03 1.008616e-02 6.331706e+00
## GNG11 3.820553e-02 -2.016224e-01 -1.634169e-01 6.889674e+01
## ARPC1A -4.428478e-02 -1.296137e-02 -5.724615e-02 5.268960e+01
## PRPF6 3.675993e-02 7.848370e-02 1.152436e-01 6.287130e+01
## MMGT1 -4.895577e-02 -9.620512e-03 -5.857629e-02 3.989824e+01
## DYRK1A -4.855044e-02 -1.529305e-01 -2.014809e-01 1.169311e+02
## CES3 3.819950e-03 -6.938187e-03 -3.118237e-03 4.031601e+00
## ZNF189 -1.972163e-02 7.505854e-05 -1.964657e-02 1.380511e+01
## TTC38 3.186060e-02 -4.098345e-02 -9.122842e-03 2.171514e+01
## ECHDC1 5.141573e-02 -5.322458e-02 -1.808850e-03 5.240248e+01
## ZNF699 -2.096477e-02 2.812385e-03 -1.815238e-02 8.758494e+00
## BRD4 -2.491126e-02 5.380989e-02 2.889864e-02 4.502881e+01
## ZNRD2 -7.380107e-03 1.120332e-02 3.823212e-03 2.601572e+00
## ANKIB1 -4.133560e-02 2.932355e-02 -1.201205e-02 2.255026e+01
## DIP2B -1.913907e-01 3.472099e-02 -1.566697e-01 8.847932e+01
## SAP30BP -4.490649e-02 -3.457184e-02 -7.947833e-02 6.242850e+01
## CUEDC1 -3.061642e-02 9.427248e-03 -2.118917e-02 1.455608e+01
## ARL6IP5 -3.801586e-01 1.779885e-01 -2.021701e-01 2.661244e+02
## ZBED6CL -1.074742e-02 1.828588e-02 7.538460e-03 1.119043e+01
## MRFAP1 1.841216e-02 -1.886895e-01 -1.702773e-01 1.634503e+02
## KPNA5 -4.558865e-02 5.956991e-02 1.398126e-02 2.838497e+01
## NAXD 1.677672e-02 7.289625e-05 1.684961e-02 1.338206e+01
## ZNF865 -3.308751e-02 1.533929e-02 -1.774822e-02 1.158684e+01
## IGF1R -1.546713e-01 2.103589e-01 5.568766e-02 6.980847e+01
## MOG -4.316358e-04 -1.126740e-03 -1.558376e-03 5.263466e-01
## PNPLA6 -1.976529e-01 1.577996e-01 -3.985333e-02 6.076791e+01
## CYSLTR1 -6.907760e-02 -1.932755e-02 -8.840515e-02 3.478829e+01
## ZNF367 6.000199e-03 -5.878033e-03 1.221663e-04 3.446861e+00
## FOXN3 -7.288662e-02 1.524180e-01 7.953135e-02 9.772244e+01
## ALDOA -1.487638e+00 1.439847e+00 -4.779064e-02 6.776759e+02
## DNA2 6.269566e-03 -7.956418e-04 5.473924e-03 3.229567e+00
## ARSA -9.040796e-02 5.503424e-02 -3.537372e-02 3.680211e+01
## HACD2 1.907438e-02 6.879667e-03 2.595405e-02 1.611157e+01
## SNRPB2 -4.994081e-03 -2.579452e-02 -3.078860e-02 3.409251e+01
## COX18 5.492956e-04 7.903020e-03 8.452316e-03 1.143435e+01
## TRAF4 1.123823e-02 4.986431e-03 1.622467e-02 4.973751e+00
## PRR12 4.741803e-03 4.399805e-03 9.141607e-03 4.883483e+00
## CD101 1.606644e-02 -4.944974e-02 -3.338330e-02 1.674681e+01
## GUCY1A1 -1.034241e-02 -1.451927e-02 -2.486168e-02 6.703931e+00
## FANCI 2.511454e-02 -1.025563e-02 1.485891e-02 1.061400e+01
## TTLL3 1.749054e-03 3.046270e-02 3.221176e-02 1.839037e+01
## PEX16 1.414694e-02 2.607083e-02 4.021777e-02 1.218291e+01
## CHCHD1 -3.500217e-02 4.362388e-02 8.621710e-03 2.002231e+01
## SPHK2 -3.756683e-03 6.075223e-03 2.318540e-03 2.405806e+00
## TMEM9B 2.843069e-02 -1.154354e-04 2.831526e-02 4.354827e+01
## ZNF713 -1.848580e-03 4.888177e-04 -1.359763e-03 1.108137e+00
## PPIF 1.875479e-01 -1.505926e-01 3.695523e-02 9.635477e+01
## MARK2 -1.454101e-01 -5.549623e-03 -1.509597e-01 1.054070e+02
## ENKUR -1.488452e-02 2.974570e-03 -1.190995e-02 5.028245e+00
## EGFL7 -1.301059e-02 3.511431e-03 -9.499159e-03 2.335889e+00
## MTOR -3.881969e-02 2.883295e-02 -9.986734e-03 3.125682e+01
## TFPI -1.443662e-04 -7.721923e-03 -7.866289e-03 2.611542e+00
## CEACAM3 1.840781e-01 2.807884e-01 4.648665e-01 1.101819e+02
## SLC35C2 -3.686865e-03 7.001389e-02 6.632703e-02 4.094905e+01
## AGTRAP -5.912638e-01 4.960656e-01 -9.519816e-02 1.879971e+02
## SETD7 -4.564773e-02 2.869692e-02 -1.695082e-02 1.984589e+01
## POFUT2 3.770290e-02 -2.538359e-02 1.231931e-02 1.489540e+01
## CERCAM 3.805256e-03 -5.876754e-03 -2.071497e-03 1.391509e+00
## HLA-DPB1 3.624399e-01 2.909790e-01 6.534189e-01 1.731408e+02
## TSFM 6.277128e-03 6.799408e-03 1.307654e-02 9.755867e+00
## FARP2 -2.354841e-04 2.368912e-03 2.133428e-03 1.343508e+00
## TUBB6 -6.277987e-03 2.458900e-02 1.831101e-02 6.988294e+00
## TMEM199 9.021695e-03 -2.652105e-02 -1.749936e-02 2.870814e+01
## CCSER2 -8.235376e-03 4.229872e-02 3.406335e-02 2.716709e+01
## PTGDR 1.299587e-02 -1.078657e-02 2.209296e-03 4.535341e+00
## POLR3H 4.033800e-03 2.448326e-02 2.851706e-02 1.125702e+01
## PCMTD1 -2.282335e-01 1.039103e-01 -1.243232e-01 9.676103e+01
## PUM1 -4.341501e-02 -7.748939e-03 -5.116395e-02 4.105636e+01
## GZMB -8.821855e-02 -1.293816e-01 -2.176002e-01 6.071946e+01
## EPHB6 2.154663e-02 -4.346670e-02 -2.192007e-02 1.670746e+01
## IPMK -2.003893e-01 4.978028e-02 -1.506090e-01 6.842404e+01
## C16orf91 -8.263738e-03 1.088102e-02 2.617285e-03 4.667212e+00
## QTRT1 6.531548e-03 8.775178e-03 1.530673e-02 3.254806e+00
## RBP7 -8.792723e-02 -5.157755e-02 -1.395048e-01 5.929419e+01
## ADAM10 -3.515206e-01 4.931173e-02 -3.022089e-01 1.940935e+02
## PIGM 1.248049e-02 -6.138136e-03 6.342359e-03 7.522658e+00
## COX8A -1.105736e-01 5.282134e-02 -5.775224e-02 4.517830e+01
## HDAC2 1.730843e-03 3.323575e-02 3.496659e-02 4.163663e+01
## SIMC1 6.529472e-03 -6.395103e-03 1.343686e-04 5.006946e+00
## MPEG1 -6.428797e-01 -3.028039e-01 -9.456836e-01 3.814742e+02
## ZNF471 -2.750852e-03 1.283079e-03 -1.467773e-03 9.145706e-01
## S100A4 -1.738981e-02 3.472902e+00 3.455512e+00 1.588665e+03
## GCLM -7.695975e-02 4.678821e-02 -3.017154e-02 2.352697e+01
## GARS1 -1.972259e-02 -1.649660e-02 -3.621919e-02 4.002217e+01
## IFITM2 -1.031157e+01 -6.348651e+00 -1.666022e+01 5.357986e+03
## CEP55 5.629021e-03 -9.429590e-03 -3.800569e-03 2.924191e+00
## INO80E 9.105489e-03 2.453152e-02 3.363701e-02 1.610606e+01
## ERG28 2.674486e-03 1.281201e-02 1.548650e-02 1.030293e+01
## SNX11 -1.979539e-01 7.844084e-02 -1.195131e-01 1.156237e+02
## CCNY -2.170775e-01 1.295238e-01 -8.755378e-02 1.369076e+02
## CAPNS1 -5.045263e-01 3.426748e-01 -1.618515e-01 2.459115e+02
## DUS1L 8.913298e-03 5.426749e-02 6.318079e-02 2.322127e+01
## ASAP1 -3.090976e-01 6.858238e-03 -3.022393e-01 1.434777e+02
## RPS19BP1 -7.929491e-02 6.321883e-02 -1.607608e-02 2.785257e+01
## DDX24 9.029638e-02 -4.534774e-02 4.494863e-02 5.913885e+01
## GET3 -2.300641e-02 7.859616e-02 5.558975e-02 4.197249e+01
## SORD -2.007540e-02 2.984365e-02 9.768257e-03 1.739980e+01
## ERCC2 1.405990e-03 1.383749e-02 1.524348e-02 5.580682e+00
## DUSP1 -7.503716e+00 2.250175e+00 -5.253541e+00 1.985674e+03
## FGFR1OP2 -1.211851e-01 1.295493e-01 8.364256e-03 7.865893e+01
## LEO1 1.079083e-02 2.734162e-03 1.352499e-02 1.006256e+01
## ERBB2 1.007652e-02 -1.923684e-02 -9.160325e-03 5.396447e+00
## INSIG2 -3.835554e-02 -1.477827e-02 -5.313381e-02 2.719043e+01
## CITED2 2.666297e-02 -3.926880e-02 -1.260583e-02 3.330188e+01
## ABCC6 5.263656e-03 -7.353282e-03 -2.089626e-03 3.504481e+00
## DNAJC30 -3.293971e-04 6.616476e-03 6.287079e-03 2.862615e+00
## JMJD4 1.834206e-04 2.245883e-02 2.264225e-02 6.850376e+00
## TIMM50 -2.324998e-02 4.024978e-02 1.699980e-02 1.912518e+01
## CDK4 1.554734e-02 2.537915e-02 4.092648e-02 2.259647e+01
## HTD2 1.034805e-02 -4.399439e-03 5.948613e-03 5.558128e+00
## MTRNR2L6 -2.033508e-01 8.705847e-02 -1.162924e-01 4.498673e+01
## OXR1 -6.859845e-02 3.735372e-02 -3.124473e-02 3.364684e+01
## MOAP1 4.304063e-02 -3.678604e-02 6.254593e-03 2.400113e+01
## TGFBI 2.752831e-01 -3.741081e-02 2.378723e-01 1.059929e+02
## SAMD8 -6.799560e-02 -6.286305e-02 -1.308586e-01 5.824889e+01
## ISYNA1 1.651011e-02 -1.138072e-02 5.129396e-03 4.402380e+00
## MAP3K20 -8.208406e-02 2.077666e-02 -6.130739e-02 2.505263e+01
## TAOK3 -1.063077e-01 -4.809651e-03 -1.111173e-01 8.685884e+01
## AMN1 -4.546102e-02 -2.560479e-02 -7.106581e-02 2.692241e+01
## DOCK3 1.175266e-03 1.150520e-03 2.325785e-03 7.020944e-01
## ANO5 -4.422596e-03 1.809063e-03 -2.613533e-03 1.203212e+00
## FRAT1 -2.860071e-01 7.300754e-02 -2.129996e-01 1.281200e+02
## MITF -2.497677e-04 -5.302957e-03 -5.552725e-03 3.186825e+00
## MAPK11 1.051052e-02 6.412045e-03 1.692257e-02 3.276328e+00
## CUZD1 1.740606e-03 6.840684e-04 2.424675e-03 8.073395e-01
## MKI67 2.432998e-02 -4.095215e-02 -1.662217e-02 1.319601e+01
## BRD9 2.842399e-02 -1.000228e-03 2.742376e-02 1.974526e+01
## KMT5B -9.967985e-02 5.050191e-02 -4.917794e-02 6.566038e+01
## ARMC2 -5.586875e-03 2.475870e-03 -3.111005e-03 2.884481e+00
## MRPS14 -1.063864e-02 1.461276e-02 3.974124e-03 1.610259e+01
## STEAP3 -2.490365e-03 1.596239e-02 1.347202e-02 4.964498e+00
## LRP8 1.734133e-03 -7.935504e-03 -6.201371e-03 5.351551e+00
## TRMU 1.067539e-02 1.200270e-02 2.267809e-02 9.363853e+00
## TXNIP -2.054015e+01 8.630349e+00 -1.190980e+01 6.352420e+03
## PREP 2.244429e-02 -1.108799e-02 1.135630e-02 1.756418e+01
## CSNK2B -1.114195e-01 1.163688e-01 4.949339e-03 8.004811e+01
## SKA1 -9.624341e-03 2.008784e-03 -7.615557e-03 2.946798e+00
## KDELR1 -5.473169e-02 4.686777e-02 -7.863925e-03 4.302458e+01
## EP300 -2.401025e-01 6.858219e-02 -1.715203e-01 1.004415e+02
## ATP2A2 -6.668166e-02 3.404558e-02 -3.263608e-02 3.710836e+01
## PSMA1 -1.296622e-02 -5.292183e-02 -6.588805e-02 7.268784e+01
## MINDY1 -1.828243e-01 5.619632e-03 -1.772047e-01 1.078474e+02
## PRIM2 3.216767e-03 -5.485753e-03 -2.268986e-03 5.037376e+00
## PELI1 2.708671e-01 -9.717936e-01 -7.009265e-01 2.218051e+02
## CRYZ 1.835143e-02 -3.090785e-03 1.526065e-02 7.434375e+00
## MLLT11 4.585122e-04 3.780357e-03 4.238869e-03 2.757407e+00
## UNC45A 6.920694e-03 6.142813e-02 6.834883e-02 3.778154e+01
## GEMIN5 9.084904e-03 4.900001e-04 9.574905e-03 6.379240e+00
## BIVM 7.239604e-03 -1.252376e-03 5.987228e-03 3.791649e+00
## CD244 -7.611323e-03 7.367704e-02 6.606571e-02 3.556631e+01
## PPP6R3 -9.614074e-02 3.391603e-02 -6.222471e-02 9.202798e+01
## SEC14L2 7.431218e-04 -1.537429e-02 -1.463117e-02 2.756724e+00
## STK17B -1.073994e+00 -3.119064e-02 -1.105185e+00 4.969193e+02
## PPM1B -1.331842e-01 -1.795961e-02 -1.511438e-01 8.281630e+01
## DCTN1 -8.395382e-02 3.329789e-03 -8.062403e-02 8.389166e+01
## TRAPPC11 -4.781790e-02 3.932243e-03 -4.388566e-02 3.241809e+01
## EIF3G 1.322248e-01 1.005871e-01 2.328119e-01 7.738905e+01
## AIFM2 -4.292443e-03 6.450486e-03 2.158043e-03 2.992873e+00
## CRAMP1 2.767380e-03 1.376648e-02 1.653386e-02 1.181142e+01
## GNL1 2.912837e-02 3.214870e-02 6.127707e-02 2.955268e+01
## DNPEP 4.407120e-02 4.136562e-03 4.820776e-02 1.850241e+01
## PACS2 2.568261e-02 -1.240166e-02 1.328096e-02 1.100868e+01
## CCNA2 1.423277e-02 7.048922e-03 2.128169e-02 6.591694e+00
## C6orf120 -1.163048e-02 -2.638058e-02 -3.801105e-02 3.054948e+01
## SLC27A1 2.524708e-02 6.544465e-03 3.179154e-02 9.182019e+00
## TMEM35B -5.653219e-03 -1.021190e-02 -1.586512e-02 1.474854e+01
## FNTA 7.184927e-03 2.391849e-02 3.110342e-02 4.620483e+01
## MTHFD2 -7.954756e-02 -2.907534e-02 -1.086229e-01 4.943303e+01
## DARS2 -4.670216e-03 7.886766e-03 3.216550e-03 6.751483e+00
## HECTD1 -7.609923e-02 5.721116e-02 -1.888807e-02 4.431339e+01
## ASCC1 -1.766485e-02 -6.947677e-03 -2.461253e-02 1.512868e+01
## IFTAP -4.491831e-03 7.879073e-03 3.387243e-03 2.646517e+00
## ZNF493 -4.957446e-02 1.365022e-02 -3.592424e-02 1.815725e+01
## PARP6 4.020329e-02 1.927028e-02 5.947357e-02 4.794632e+01
## TNKS2 -1.067066e-01 -2.455603e-02 -1.312626e-01 7.444453e+01
## CEP170 -6.546900e-02 -1.508360e-02 -8.055260e-02 3.643879e+01
## COA1 6.782745e-03 2.813224e-02 3.491499e-02 2.183920e+01
## TMEM161B 5.455616e-03 7.562496e-03 1.301811e-02 9.116585e+00
## NUP133 6.148054e-03 1.504511e-02 2.119316e-02 2.043984e+01
## ARPC5 -6.571498e-01 -9.428569e-01 -1.600007e+00 8.170247e+02
## ZBTB33 1.287164e-02 -3.278320e-02 -1.991156e-02 2.057145e+01
## TGFBR1 -3.033710e-01 -1.773890e-02 -3.211099e-01 1.555212e+02
## SAP18 -2.223731e-02 -4.923030e-02 -7.146761e-02 9.547966e+01
## PIAS1 -1.805164e-01 -7.425087e-02 -2.547673e-01 1.315906e+02
## ULK1 -1.068568e-01 1.009600e-01 -5.896770e-03 5.273353e+01
## NAA38 -8.231520e-02 7.233712e-02 -9.978076e-03 2.271306e+01
## LRP10 -1.250257e+00 4.817832e-01 -7.684734e-01 5.563017e+02
## CACYBP -3.967687e-02 2.525965e-02 -1.441722e-02 3.904108e+01
## TLCD4 2.520880e-02 -5.419262e-03 1.978954e-02 3.671654e+00
## TWF1 -5.521220e-02 -2.075744e-02 -7.596964e-02 3.541904e+01
## UBXN4 -1.928646e-01 1.670958e-02 -1.761550e-01 1.113414e+02
## EID2 7.651165e-03 -1.279895e-03 6.371270e-03 6.539579e+00
## DUSP3 1.838905e-02 -8.964161e-02 -7.125257e-02 5.526151e+01
## CCDC106 6.820498e-04 2.765452e-03 3.447502e-03 1.103475e+00
## TARS2 9.706768e-03 5.210701e-03 1.491747e-02 1.250535e+01
## CASTOR1 4.154177e-03 1.602783e-03 5.756960e-03 1.811159e+00
## DHX38 -2.274906e-02 2.777891e-02 5.029854e-03 4.268733e+01
## SNX10 -2.989879e-01 -2.037501e-01 -5.027380e-01 2.091250e+02
## ITCH -1.875747e-01 6.000676e-02 -1.275679e-01 9.900280e+01
## FADS3 -1.284590e-03 7.412805e-03 6.128216e-03 3.447368e+00
## CCR3 -7.403418e-02 7.524764e-02 1.213465e-03 1.870589e+01
## MFSD4B 1.677673e-03 2.538441e-03 4.216115e-03 3.108766e+00
## MAB21L3 3.827345e-04 -5.549450e-03 -5.166715e-03 1.583380e+00
## CTSC -3.420393e-01 4.575308e-01 1.154915e-01 1.944628e+02
## CSTF2T -1.210183e-02 -2.304248e-02 -3.514431e-02 2.998179e+01
## RASGRP2 -2.556956e-02 2.092440e-01 1.836744e-01 1.684985e+02
## SLC38A1 4.280191e-02 1.024354e-01 1.452373e-01 6.328160e+01
## CPTP -1.102044e-02 1.725508e-02 6.234647e-03 5.274636e+00
## PEAK1 -2.689442e-02 1.014131e-02 -1.675311e-02 1.193587e+01
## MED27 -1.433192e-02 1.648918e-02 2.157258e-03 9.809472e+00
## M1AP 1.074924e-02 -1.084423e-02 -9.498978e-05 2.552213e+00
## TMEM71 -3.256010e-01 -1.761377e-01 -5.017387e-01 2.433627e+02
## IGIP 7.314204e-03 -2.293232e-05 7.291272e-03 3.794675e+00
## SLBP 2.237946e-02 3.945208e-02 6.183154e-02 5.114101e+01
## TUBA4A -8.484994e-01 4.962371e-01 -3.522623e-01 3.384970e+02
## ZBTB2 -1.924547e-02 2.946152e-02 1.021605e-02 2.431637e+01
## UCHL5 2.682578e-03 1.239305e-02 1.507563e-02 1.745539e+01
## CLEC1B -1.218366e-03 -7.206547e-02 -7.328383e-02 1.726417e+01
## PRXL2A 3.595880e-03 -4.065370e-03 -4.694905e-04 2.183406e+00
## WDR92 3.382232e-03 1.315336e-03 4.697567e-03 3.705863e+00
## ZNF665 3.051228e-03 -8.060935e-04 2.245134e-03 1.920710e+00
## PIK3R3 -4.692088e-03 4.151398e-03 -5.406901e-04 2.134135e+00
## LOC643802 -1.338955e-01 -9.737274e-02 -2.312682e-01 9.699185e+01
## ATXN1L -3.624392e-02 -7.659563e-02 -1.128396e-01 4.331353e+01
## OSBPL2 -1.477571e-01 1.142150e-02 -1.363356e-01 9.886200e+01
## TNNI2 -2.664539e-02 2.021327e-02 -6.432122e-03 6.999728e+00
## POC1B -5.603771e-02 3.824985e-02 -1.778787e-02 2.822028e+01
## DEK -7.521167e-02 -1.247000e-01 -1.999117e-01 1.299614e+02
## TMED4 1.112710e-03 2.162469e-02 2.273740e-02 4.843742e+01
## RNF6 1.636223e-02 -5.768798e-02 -4.132575e-02 3.834992e+01
## FUT4 2.247035e-03 -4.729972e-02 -4.505268e-02 1.925956e+01
## NUP153 -1.389880e-01 1.365304e-01 -2.457650e-03 6.752663e+01
## TBC1D13 2.157065e-03 2.573939e-02 2.789645e-02 2.688484e+01
## UBQLN2 -1.376083e-02 -9.288110e-02 -1.066419e-01 5.627711e+01
## PCNX2 -2.395977e-03 9.467506e-03 7.071529e-03 3.402527e+00
## ZNF91 -4.760563e-03 1.642757e-02 1.166701e-02 8.611892e+00
## PELI2 -7.461889e-02 -9.544268e-02 -1.700616e-01 8.550254e+01
## UBA7 1.870613e-01 -2.304925e-01 -4.343119e-02 1.202725e+02
## ICAM3 -1.197149e+00 1.495047e+00 2.978979e-01 6.793966e+02
## CASS4 -9.970756e-02 8.557220e-02 -1.413536e-02 3.235470e+01
## UPF2 -8.935043e-02 3.332480e-02 -5.602563e-02 5.856242e+01
## PIGV -1.488144e-02 -3.880930e-03 -1.876237e-02 1.452375e+01
## CLEC16A 2.113044e-03 8.986522e-03 1.109957e-02 1.305059e+01
## TTYH3 -2.728649e-02 -1.330527e-02 -4.059176e-02 2.129215e+01
## RNASEH2B 2.477624e-02 1.235681e-03 2.601192e-02 1.851719e+01
## CHRNA2 -1.970814e-03 -3.561431e-03 -5.532245e-03 1.061217e+00
## NDUFA6 1.045153e-03 6.214486e-02 6.319001e-02 4.192655e+01
## NAA25 1.698975e-04 1.203063e-02 1.220053e-02 7.751185e+00
## RNPS1 5.837189e-02 3.229971e-02 9.067160e-02 4.826228e+01
## NADSYN1 -1.956142e-02 9.953474e-02 7.997331e-02 7.232743e+01
## TRIM26 1.719097e-02 -5.127567e-02 -3.408470e-02 3.837458e+01
## FPR1 -6.634059e+00 6.448489e-01 -5.989210e+00 2.841799e+03
## LTBP4 1.150429e-02 1.229666e-03 1.273396e-02 3.915807e+00
## DNAJB2 3.837061e-02 5.776812e-02 9.613873e-02 3.986088e+01
## KIAA0232 -2.648074e-01 1.075043e-01 -1.573031e-01 1.188543e+02
## SEMA3B 1.074437e-03 -3.767013e-03 -2.692575e-03 1.104805e+00
## NFKB2 -3.781635e-02 1.189537e-01 8.113739e-02 6.860399e+01
## VPS9D1 -1.792941e-01 -4.561504e-03 -1.838556e-01 5.384773e+01
## SHMT1 -1.466199e-02 -6.507548e-03 -2.116954e-02 7.720134e+00
## TOX2 -2.199023e-03 3.780254e-04 -1.820998e-03 9.062504e-01
## LRRC4 -1.993157e-01 1.030159e-01 -9.629972e-02 8.056781e+01
## TMEM79 9.004963e-03 -1.267988e-02 -3.674914e-03 8.155048e+00
## ZDHHC5 -5.762154e-02 -2.513470e-02 -8.275624e-02 7.892320e+01
## TRAPPC13 -1.547953e-02 1.279397e-02 -2.685553e-03 1.468754e+01
## LITAF -7.817334e-01 -2.716995e+00 -3.498728e+00 1.695519e+03
## PDZD11 -8.884591e-03 8.114184e-03 -7.704070e-04 9.860751e+00
## ZPR1 3.070828e-02 -1.773511e-03 2.893477e-02 2.470273e+01
## TTC22 7.190424e-03 -6.052071e-03 1.138353e-03 4.172426e+00
## IBTK 5.550960e-03 3.016965e-02 3.572061e-02 2.250158e+01
## AP2A1 -3.406999e-02 4.363859e-02 9.568592e-03 3.873160e+01
## ATXN7 -1.005164e-01 -4.862103e-02 -1.491374e-01 6.438516e+01
## UNKL -1.136002e-02 7.557046e-04 -1.060431e-02 8.681954e+00
## SIGIRR 7.167465e-02 2.643122e-02 9.810587e-02 2.176615e+01
## ATG10 -1.673388e-03 -4.383303e-03 -6.056691e-03 4.341280e+00
## IDS -6.449841e-01 8.096993e-01 1.647152e-01 4.013470e+02
## TSTD3 -7.746173e-04 -7.845380e-04 -1.559155e-03 6.119442e-01
## DNAJB1 -1.825850e-01 2.173330e-01 3.474797e-02 9.392962e+01
## BBOF1 8.461758e-04 3.424044e-03 4.270220e-03 1.678686e+00
## RHOBTB3 2.776372e-03 1.826394e-03 4.602765e-03 1.656373e+00
## MIF -2.610011e-02 3.077513e-02 4.675019e-03 6.159010e+00
## EIF5B 5.534381e-02 8.291552e-03 6.363536e-02 4.470605e+01
## AKIP1 6.224345e-03 -5.704090e-03 5.202549e-04 4.802577e+00
## MAP2K4 -1.782912e-01 5.217413e-02 -1.261171e-01 8.293539e+01
## MED14 -2.226710e-02 -6.965352e-03 -2.923246e-02 1.837739e+01
## POLR2A -1.945011e-01 3.277975e-02 -1.617213e-01 1.230827e+02
## FBXO44 5.934773e-02 -3.492011e-02 2.442762e-02 1.659027e+01
## PTAR1 -1.621524e-01 6.930057e-02 -9.285184e-02 6.570521e+01
## TBC1D20 -5.030748e-02 1.650033e-02 -3.380715e-02 5.433277e+01
## TMEM87A -1.797246e-02 -1.950559e-02 -3.747805e-02 3.802758e+01
## MEA1 -8.803880e-02 8.062864e-02 -7.410155e-03 5.827329e+01
## ZFP36L1 -8.921169e-01 1.484363e-01 -7.436806e-01 4.082654e+02
## NTSR1 -2.473650e-02 3.009066e-03 -2.172743e-02 4.333586e+00
## BCL10 -4.489583e-02 -1.713273e-02 -6.202856e-02 3.426160e+01
## FDPS -8.835629e-02 5.435121e-02 -3.400508e-02 6.731940e+01
## METTL3 2.603725e-03 2.100386e-02 2.360759e-02 2.451178e+01
## NUTM2D -4.989807e-03 -8.890767e-03 -1.388057e-02 5.869624e+00
## ZNF362 9.652787e-04 -9.019317e-03 -8.054038e-03 9.425953e+00
## KBTBD3 5.415376e-03 2.143851e-03 7.559227e-03 4.509391e+00
## DRG1 2.336118e-02 -2.409961e-02 -7.384303e-04 2.854782e+01
## B3GALNT2 -1.012492e-02 1.055537e-02 4.304443e-04 7.077720e+00
## PHAX 3.666059e-04 1.236683e-02 1.273343e-02 1.709944e+01
## NAPA 2.836074e-01 -3.341757e-01 -5.056830e-02 1.261364e+02
## NF1 -8.820513e-02 3.686019e-02 -5.134494e-02 3.389437e+01
## HDAC9 2.311189e-02 -1.035083e-02 1.276106e-02 9.619631e+00
## PIGF -1.949726e-02 5.666954e-03 -1.383031e-02 1.674583e+01
## CTSZ -4.275963e-01 -1.256775e-01 -5.532738e-01 4.423528e+02
## TMEM236 3.471459e-03 -3.600689e-03 -1.292305e-04 8.419835e-01
## ATP5MC3 -5.847781e-02 8.982288e-02 3.134508e-02 6.714933e+01
## PARD6A -5.058780e-03 7.787514e-03 2.728735e-03 2.308288e+00
## CCNH 2.465957e-02 -5.640800e-02 -3.174843e-02 2.874522e+01
## MPG -2.057857e-02 3.178415e-02 1.120557e-02 8.838878e+00
## CAPN10 -1.501245e-02 1.850590e-02 3.493452e-03 7.217240e+00
## FRRS1L -1.289846e-03 3.984706e-04 -8.913757e-04 2.764008e-01
## ZNF343 3.788234e-03 1.948771e-03 5.737005e-03 4.262057e+00
## FANCF 5.105046e-03 5.848229e-03 1.095327e-02 7.238344e+00
## SNRPE 1.851943e-02 3.042010e-02 4.893954e-02 2.954301e+01
## RFC4 7.418350e-03 6.843604e-03 1.426195e-02 8.599739e+00
## ITGAD -5.579454e-03 8.898706e-03 3.319251e-03 2.666630e+00
## ABTB2 -8.115691e-03 7.460858e-03 -6.548333e-04 3.083900e+00
## ATP5PD -2.914541e-02 6.543454e-02 3.628913e-02 6.881434e+01
## WAS -4.353952e-01 -1.008812e-01 -5.362764e-01 2.968501e+02
## CFAP45 -5.989603e-02 6.190409e-02 2.008065e-03 1.736183e+01
## MROH1 1.275687e-02 5.360738e-03 1.811761e-02 7.455327e+00
## SPATA7 2.526253e-03 -1.035159e-03 1.491095e-03 1.202327e+00
## CCDC102A -5.928889e-04 3.833466e-03 3.240577e-03 1.194456e+00
## DOK1 -6.167207e-02 -6.710162e-02 -1.287737e-01 6.841051e+01
## SLC38A7 4.806953e-03 -1.066997e-02 -5.863013e-03 6.234375e+00
## TMEM167B -1.190766e-01 -1.018383e-01 -2.209149e-01 1.216441e+02
## FAM214A -4.754363e-02 3.040339e-02 -1.714024e-02 2.911284e+01
## EDEM2 -9.532202e-02 -3.409062e-02 -1.294126e-01 7.598796e+01
## TTC23 -1.172339e-03 -3.742366e-04 -1.546576e-03 5.371399e-01
## PSMB2 4.558489e-02 -5.926389e-02 -1.367900e-02 4.999287e+01
## GNB5 1.689400e-02 -1.971909e-02 -2.825089e-03 1.279605e+01
## SLC43A2 -2.246749e-01 8.923706e-02 -1.354379e-01 1.304071e+02
## RSBN1L -1.303331e-01 5.283127e-02 -7.750185e-02 6.680096e+01
## SMIM24 -4.791061e-03 1.413541e-02 9.344344e-03 1.777275e+00
## CEACAM6 2.118609e-01 -2.255442e-01 -1.368326e-02 3.525454e+01
## ACAT2 1.750413e-03 1.613177e-02 1.788218e-02 1.642755e+01
## WDR48 -3.059161e-02 -2.990066e-02 -6.049228e-02 4.323479e+01
## SLC40A1 -5.954815e-01 2.935630e-01 -3.019184e-01 2.271099e+02
## ARCN1 -1.104316e-01 2.256697e-02 -8.786463e-02 1.004514e+02
## GIMAP6 -1.175891e-01 -7.722382e-02 -1.948129e-01 1.066428e+02
## CD2BP2 -1.645631e-01 5.106611e-02 -1.134970e-01 1.251863e+02
## ST3GAL4 -2.103530e-01 7.938446e-02 -1.309685e-01 6.369103e+01
## DCPS -2.483018e-02 2.165636e-02 -3.173823e-03 1.695675e+01
## RCC2 7.263926e-03 -6.126429e-02 -5.400037e-02 5.066327e+01
## CIAPIN1 1.403618e-02 1.607155e-02 3.010774e-02 2.379081e+01
## RPL8 1.592661e+00 9.216375e-01 2.514299e+00 6.032670e+02
## HIRA -2.659492e-02 4.591154e-02 1.931662e-02 3.862961e+01
## POLR2J3 -1.494365e-02 -2.784416e-02 -4.278781e-02 2.327798e+01
## GRPEL1 1.455228e-02 -6.361719e-02 -4.906492e-02 2.410922e+01
## CC2D1B -2.603731e-02 2.411848e-02 -1.918839e-03 3.215723e+01
## VRK1 -1.918953e-02 3.905718e-02 1.986765e-02 1.578291e+01
## FAM193A -2.306888e-02 1.066608e-02 -1.240280e-02 1.891574e+01
## DNAJA1 -3.097944e-01 -2.167765e-02 -3.314720e-01 2.089064e+02
## CSNK1G3 -1.701573e-02 -1.734186e-02 -3.435758e-02 2.119050e+01
## CD163 -5.928473e-01 -1.633968e+00 -2.226815e+00 3.727568e+02
## PDPK1 -8.120177e-02 1.347178e-01 5.351608e-02 6.653772e+01
## CYP4V2 -2.053111e-02 1.153787e-02 -8.993239e-03 1.068171e+01
## B3GAT1 -5.929920e-03 -7.162135e-03 -1.309206e-02 2.946784e+00
## IRAK1 -6.483167e-02 9.658327e-02 3.175160e-02 6.347228e+01
## RRM2B -1.230271e-01 -3.477833e-02 -1.578054e-01 7.339568e+01
## DOCK5 -4.553735e-01 7.611599e-02 -3.792575e-01 2.047135e+02
## PDCD2L 2.596611e-03 1.323610e-03 3.920221e-03 1.594141e+00
## VNN3 2.338452e-01 1.430730e-01 3.769183e-01 1.254469e+02
## TSC22D2 8.618482e-03 -2.306673e-02 -1.444824e-02 1.692904e+01
## BABAM2 -3.294775e-02 5.502307e-03 -2.744544e-02 2.734741e+01
## CSF1R -5.352788e-02 2.487940e-01 1.952661e-01 9.314737e+01
## UTP15 1.780752e-03 5.652543e-03 7.433295e-03 5.357855e+00
## H1-2 -8.858490e-02 1.487261e-01 6.014124e-02 4.962739e+01
## FAS -1.503140e-01 -2.009335e-01 -3.512475e-01 1.243531e+02
## TMEM203 3.389678e-02 2.276500e-02 5.666177e-02 2.160083e+01
## ZNF440 8.272009e-03 -7.871852e-03 4.001566e-04 6.699211e+00
## CYTH1 -7.003989e-02 2.321537e-01 1.621138e-01 2.413041e+02
## ZC3H10 -6.533279e-03 -8.944581e-03 -1.547786e-02 1.320082e+01
## UHRF2 3.407224e-02 -1.302899e-02 2.104325e-02 3.005601e+01
## PLXNC1 -1.895265e+00 7.176581e-01 -1.177606e+00 6.459465e+02
## GNA13 -3.207288e-01 -3.210103e-01 -6.417391e-01 2.550123e+02
## DHX30 1.518589e-02 1.092211e-02 2.610800e-02 1.784720e+01
## ST8SIA4 -3.155558e-01 -3.975507e-02 -3.553109e-01 1.781359e+02
## SH3PXD2B -2.488495e-02 9.254145e-03 -1.563081e-02 4.133943e+00
## VIL1 5.300297e-03 -1.186677e-02 -6.566470e-03 6.600959e+00
## HSD17B4 6.376473e-02 -5.044882e-02 1.331591e-02 4.753865e+01
## ZNF814 1.757836e-02 -1.289284e-02 4.685522e-03 9.194697e+00
## PIK3C2A -3.962144e-02 2.535246e-02 -1.426898e-02 1.992995e+01
## TPR -2.189565e-01 2.468597e-01 2.790319e-02 1.473671e+02
## DHRS1 -3.033071e-02 1.587163e-02 -1.445908e-02 1.472088e+01
## UBE2D4 7.945849e-03 9.562071e-04 8.902056e-03 5.316323e+00
## ALKBH3 1.393123e-02 1.177717e-03 1.510895e-02 8.083538e+00
## CD7 -9.889037e-04 6.588342e-02 6.489452e-02 1.269969e+01
## KLRF1 6.775320e-02 -4.093178e-02 2.682142e-02 1.979901e+01
## CCNL2 4.182885e-02 4.399797e-02 8.582681e-02 8.396148e+01
## SSBP4 1.477124e-02 1.401007e-02 2.878131e-02 7.062787e+00
## FBXO33 -8.461711e-02 2.085587e-03 -8.253152e-02 4.876654e+01
## LOC100133315 -3.772679e-05 1.207348e-03 1.169621e-03 4.838266e-01
## ZFP14 4.964826e-03 3.699441e-03 8.664267e-03 5.473264e+00
## RPL37A 1.557319e+00 3.006988e-01 1.858018e+00 5.893191e+02
## FGFBP2 1.478900e-01 -9.450211e-02 5.338793e-02 3.826615e+01
## ZW10 9.273410e-03 -4.652845e-03 4.620565e-03 7.974917e+00
## LPP -8.798008e-02 3.868022e-02 -4.929986e-02 4.009717e+01
## MGME1 -6.307875e-04 -2.512995e-02 -2.576074e-02 2.410888e+01
## DNM2 -1.653735e-01 4.923555e-03 -1.604500e-01 1.414486e+02
## KRBA1 5.394007e-03 -3.901038e-03 1.492969e-03 2.329323e+00
## SOWAHC -2.468357e-03 -9.810264e-04 -3.449383e-03 1.537381e+00
## PROK2 -1.075512e+00 -2.739712e-01 -1.349483e+00 4.089069e+02
## TMTC3 4.264202e-03 1.429904e-03 5.694106e-03 4.083801e+00
## RSAD2 1.143160e+00 -2.211762e+00 -1.068602e+00 2.769457e+02
## CDK8 5.714053e-03 1.018508e-03 6.732561e-03 6.953365e+00
## SRP19 -5.274505e-02 2.781693e-02 -2.492812e-02 4.302677e+01
## ZNF276 4.026511e-02 3.847717e-02 7.874228e-02 7.823383e+01
## FBXO17 1.421352e-04 1.094718e-03 1.236853e-03 3.288224e-01
## LMO4 -3.315472e-02 -5.433110e-03 -3.858783e-02 3.369269e+01
## VPS13C -1.543214e-01 1.024094e-01 -5.191202e-02 6.096054e+01
## PRPF8 6.784688e-02 6.092784e-02 1.287747e-01 1.183053e+02
## PSMB3 -5.192974e-01 3.895506e-01 -1.297468e-01 2.138546e+02
## TNNC2 5.383031e-03 -4.646252e-04 4.918405e-03 1.436843e+00
## CD300A 5.859597e-01 -7.995650e-01 -2.136053e-01 4.234353e+02
## ZNF821 -6.463212e-03 7.308089e-03 8.448769e-04 4.338647e+00
## SLC25A6 2.426162e-01 2.087798e-01 4.513960e-01 1.450113e+02
## NUP107 1.140466e-02 8.400205e-03 1.980487e-02 1.780963e+01
## ZKSCAN4 -7.815949e-03 1.351318e-02 5.697235e-03 1.089252e+01
## CYB561D2 -4.688228e-03 3.616669e-02 3.147847e-02 2.151660e+01
## PCBP1 -2.104095e-01 5.033835e-01 2.929740e-01 3.850608e+02
## ZSCAN5A -2.365991e-03 2.207254e-03 -1.587364e-04 1.498843e+00
## ZNF816 5.139334e-03 4.941995e-03 1.008133e-02 7.459531e+00
## FAM78A 3.280460e-02 5.563287e-02 8.843747e-02 5.976105e+01
## TAF3 5.479670e-03 2.692293e-03 8.171964e-03 5.535202e+00
## NME3 1.808171e-02 2.823907e-03 2.090562e-02 3.381609e+00
## ARHGAP11A 1.098675e-02 -8.134350e-03 2.852404e-03 5.148749e+00
## RAB35 -9.435735e-02 2.249864e-02 -7.185870e-02 8.195036e+01
## TCP1 -5.872157e-02 1.214994e-02 -4.657163e-02 6.652187e+01
## TOE1 8.522839e-03 -6.967096e-04 7.826130e-03 7.266111e+00
## UQCRHL -1.649203e-03 -1.901682e-03 -3.550885e-03 1.142749e+00
## DRC7 -2.897307e-03 -1.696548e-03 -4.593855e-03 9.422397e-01
## DHX34 -4.226956e-02 1.327341e-01 9.046457e-02 6.989371e+01
## KLHL8 -2.595805e-01 1.001301e-01 -1.594504e-01 6.464648e+01
## EOMES -1.412549e-02 3.434620e-02 2.022071e-02 1.069377e+01
## CABLES2 -5.786199e-03 5.402572e-04 -5.245942e-03 5.607016e+00
## R3HDM2 -7.347810e-02 2.385217e-02 -4.962593e-02 4.754458e+01
## TXNL4A -4.840602e-02 4.741431e-02 -9.917132e-04 2.897186e+01
## FAHD2B 6.287366e-04 9.590136e-03 1.021887e-02 3.477513e+00
## JUNB -6.119666e-01 3.898895e-01 -2.220771e-01 1.695710e+02
## ARL2BP 2.424125e-02 -8.151689e-04 2.342608e-02 3.204221e+01
## CSTA -2.325872e-01 -5.582505e-02 -2.884122e-01 1.441500e+02
## GPBP1L1 -5.659729e-02 -1.604308e-01 -2.170281e-01 1.587829e+02
## MTHFR -2.845241e-02 3.193501e-02 3.482602e-03 2.651220e+01
## MSI2 1.554029e-02 1.300003e-02 2.854032e-02 1.646098e+01
## ZDHHC14 4.123532e-03 -1.182430e-03 2.941102e-03 1.524684e+00
## SEMA6B -7.947060e-03 -8.753967e-03 -1.670103e-02 1.846020e+00
## RDH10 3.783956e-03 -3.506720e-03 2.772354e-04 4.159491e+00
## BORA 3.350683e-04 6.753075e-03 7.088144e-03 5.074057e+00
## PHIP -1.583399e-01 -6.153753e-03 -1.644936e-01 8.980356e+01
## ARHGAP30 -8.595652e-01 1.790062e-01 -6.805591e-01 8.068845e+02
## E2F3 -2.891768e-01 1.109025e-01 -1.782743e-01 9.748426e+01
## RBM41 1.154435e-02 -3.119198e-03 8.425151e-03 8.090103e+00
## SHISA5 7.292786e-01 -1.404904e+00 -6.756258e-01 4.912686e+02
## RRAGD -6.749549e-02 -4.184204e-02 -1.093375e-01 5.694162e+01
## TMEM132D -5.988828e-03 5.256745e-03 -7.320825e-04 1.772086e+00
## GALE -9.131489e-03 9.430931e-03 2.994425e-04 6.604650e+00
## REEP4 -1.551743e-02 -6.254653e-03 -2.177208e-02 1.188265e+01
## FXR1 3.251242e-02 -5.860398e-02 -2.609156e-02 5.952922e+01
## FANCM -2.554349e-04 4.586500e-03 4.331065e-03 2.828959e+00
## ELAVL1 1.702316e-03 1.228089e-02 1.398320e-02 2.192804e+01
## LOXL2 2.593337e-03 -1.804400e-04 2.412897e-03 1.294974e+00
## CDK2AP2 -6.467818e-02 5.324522e-02 -1.143297e-02 2.138118e+01
## YIF1B -3.658649e-02 4.488987e-02 8.303382e-03 1.808188e+01
## RAB3B 7.324841e-04 -1.434725e-03 -7.022413e-04 4.472200e-01
## ODC1 4.286936e-02 -1.044839e-01 -6.161453e-02 6.080888e+01
## SNF8 -9.022001e-02 5.616045e-02 -3.405956e-02 4.642449e+01
## PRPF38B -1.285945e-01 2.891595e-02 -9.967858e-02 9.010559e+01
## TMEM126A 1.995260e-03 1.021014e-02 1.220540e-02 8.949768e+00
## AP3S1 -1.346067e-01 4.876318e-02 -8.584349e-02 6.643531e+01
## PADI2 -5.574778e-01 9.107915e-01 3.533137e-01 3.469958e+02
## NOC3L 3.501062e-03 7.951960e-03 1.145302e-02 6.903923e+00
## DOCK11 -2.954768e-01 6.183369e-02 -2.336431e-01 1.609723e+02
## LIME1 4.102913e-02 2.011502e-02 6.114416e-02 8.501134e+00
## ZNF574 -6.624149e-03 9.443658e-03 2.819509e-03 5.547733e+00
## OGDH -5.427698e-02 5.095770e-02 -3.319281e-03 6.783078e+01
## SUMO3 5.693673e-02 -4.012002e-02 1.681671e-02 4.447507e+01
## XPO6 -2.402655e+00 1.614120e+00 -7.885350e-01 1.055944e+03
## TBRG1 -7.154769e-03 -1.937445e-02 -2.652922e-02 4.208099e+01
## PLK3 -1.970855e-02 -1.041626e-01 -1.238711e-01 3.016670e+01
## MAP4K1 6.008288e-02 2.162392e-02 8.170681e-02 2.700362e+01
## NOL7 -4.362582e-02 2.522378e-02 -1.840204e-02 2.716856e+01
## FAM227A -1.191643e-03 1.251509e-03 5.986555e-05 4.804303e-01
## FNBP4 4.344884e-03 4.677501e-02 5.111989e-02 3.836534e+01
## KAT14 6.303109e-03 6.854089e-03 1.315720e-02 7.940206e+00
## SYNJ2 1.779580e-02 -1.569786e-02 2.097947e-03 9.003649e+00
## TBK1 -9.073325e-02 -3.074175e-02 -1.214750e-01 6.103732e+01
## ASCL2 -8.369182e-03 3.814993e-03 -4.554188e-03 2.773980e+00
## TMED7 -5.231135e-02 -2.464353e-02 -7.695488e-02 4.681076e+01
## CD99 2.628081e-01 -1.238960e-01 1.389121e-01 1.341505e+02
## ZBED3 2.113032e-03 1.579014e-03 3.692046e-03 1.655143e+00
## ALS2 -1.372564e-02 1.153479e-03 -1.257216e-02 1.020565e+01
## VDAC3 -3.314478e-02 5.520480e-02 2.206002e-02 8.245638e+01
## MOB3C -1.094002e-01 -1.353823e-04 -1.095356e-01 4.871675e+01
## SIDT1 1.544104e-02 4.749629e-03 2.019066e-02 8.330734e+00
## TEX264 -1.705843e-03 7.184117e-02 7.013532e-02 3.376475e+01
## CDH23 -3.465993e-02 3.180011e-02 -2.859814e-03 1.957193e+01
## CRACDL 2.911280e-03 -5.015638e-03 -2.104358e-03 2.261697e+00
## RHOB -3.784646e-01 1.146985e-01 -2.637661e-01 1.425112e+02
## SLC25A22 6.004805e-03 6.534132e-03 1.253894e-02 4.013721e+00
## MRPL11 5.956200e-03 4.643055e-02 5.238675e-02 1.970341e+01
## FMNL1 -2.915114e-01 -2.511949e-01 -5.427063e-01 3.659029e+02
## CPSF6 3.120301e-02 3.209901e-03 3.441291e-02 3.467494e+01
## TRIM68 8.466387e-03 -5.626381e-03 2.840006e-03 6.333891e+00
## CD300LF -2.421542e-01 4.218505e-02 -1.999691e-01 1.197838e+02
## SRSF1 -6.310362e-02 -5.835718e-02 -1.214608e-01 1.505187e+02
## TNFAIP6 1.519799e-01 -4.088221e-01 -2.568421e-01 1.110777e+02
## ARHGEF3 1.248446e-02 -7.159485e-02 -5.911038e-02 5.501331e+01
## MTRNR2L4 2.300852e-04 2.389114e-03 2.619199e-03 6.599022e-01
## IL1RL1 -4.284389e-02 3.734975e-02 -5.494142e-03 6.955492e+00
## GPD1L 1.345037e-02 -8.209410e-03 5.240956e-03 9.288984e+00
## CSGALNACT2 -7.323220e-01 -2.399086e-01 -9.722306e-01 2.362771e+02
## NSRP1 -1.638570e-02 -2.574272e-03 -1.895998e-02 1.643866e+01
## TBC1D9 2.445712e-02 1.256305e-02 3.702018e-02 1.515154e+01
## YME1L1 -1.448678e-01 3.020545e-02 -1.146624e-01 1.133109e+02
## TMX2 3.004928e-02 -2.693719e-02 3.112090e-03 3.007795e+01
## GIMAP7 2.579744e-01 -3.760840e-02 2.203660e-01 1.234793e+02
## RNMT 3.361392e-02 -1.715184e-02 1.646208e-02 1.917648e+01
## NMI -6.993824e-02 -3.365711e-01 -4.065094e-01 1.902595e+02
## ZBTB37 -8.364689e-02 5.349600e-03 -7.829729e-02 4.558402e+01
## TGFB3 2.144054e-03 6.109635e-04 2.755017e-03 1.043311e+00
## HSCB -6.890406e-03 -1.747615e-03 -8.638021e-03 5.028321e+00
## SLC11A2 5.811680e-04 1.516782e-02 1.574899e-02 1.377493e+01
## GLMP 3.859881e-02 -5.881480e-02 -2.021599e-02 2.797791e+01
## AMDHD2 2.313935e-02 7.991745e-03 3.113110e-02 9.567544e+00
## SPTBN2 -6.805233e-04 1.301450e-03 6.209269e-04 3.681301e-01
## DDX58 -1.741387e-01 -3.832101e-01 -5.573488e-01 1.574548e+02
## PTP4A2 -1.172377e-01 3.515869e-01 2.343493e-01 3.796546e+02
## RPS28 9.719138e-01 -2.045381e-01 7.673757e-01 1.339300e+02
## ZNF219 -3.768082e-03 1.431328e-03 -2.336754e-03 1.032236e+00
## AHCYL2 2.015147e-03 1.296164e-02 1.497679e-02 9.396776e+00
## RREB1 -1.478726e-02 -3.188448e-03 -1.797571e-02 1.595914e+01
## EXOC8 -4.728597e-03 -6.583876e-02 -7.056736e-02 4.223895e+01
## SMIM41 -2.747074e-03 1.889295e-03 -8.577785e-04 9.840149e-01
## RIC8A -5.383991e-02 5.781018e-02 3.970276e-03 7.083822e+01
## NPL -3.155223e-01 1.025958e-01 -2.129264e-01 1.532824e+02
## ATP5F1B -1.742979e-01 2.535889e-01 7.929097e-02 3.449643e+02
## POLR1B 1.148139e-02 5.212999e-03 1.669439e-02 9.759477e+00
## ZNF208 -5.816436e-03 9.064576e-03 3.248140e-03 1.361525e+00
## VAV3 -3.657636e-02 -8.872906e-02 -1.253054e-01 6.167824e+01
## NCOA1 -3.032330e-01 5.382426e-02 -2.494087e-01 1.496879e+02
## UBR2 -4.101818e-01 1.981294e-01 -2.120524e-01 1.951267e+02
## UBXN8 3.905421e-03 -4.517026e-03 -6.116045e-04 4.302231e+00
## CTSG -8.623705e-02 3.208637e-01 2.346266e-01 2.995572e+01
## POLR2I -1.577988e-03 1.614036e-02 1.456237e-02 5.214807e+00
## UPK3B 5.602986e-03 7.603281e-05 5.679019e-03 1.509142e+00
## CENPX -1.002781e-02 2.673361e-02 1.670580e-02 8.374589e+00
## TNFRSF1B -6.393632e-01 -2.329880e-01 -8.723512e-01 6.979230e+02
## PDK3 -1.575252e-01 8.813238e-02 -6.939285e-02 8.550619e+01
## MASTL -5.930820e-03 -8.169117e-03 -1.409994e-02 8.050500e+00
## GUK1 -1.620341e-01 1.997986e-01 3.776446e-02 6.148328e+01
## SGTA -2.582009e-02 4.995474e-02 2.413465e-02 2.309352e+01
## DENND1A -3.704952e-02 -1.287656e-04 -3.717828e-02 2.905876e+01
## PTPRCAP 1.816983e-01 3.884438e-02 2.205427e-01 3.035666e+01
## ARMC10 7.704911e-03 1.265956e-02 2.036447e-02 2.182102e+01
## TREM1 -1.064751e+00 -6.907831e-02 -1.133829e+00 4.594047e+02
## LCOR -1.055967e-01 1.035237e-01 -2.072922e-03 5.215263e+01
## PRSS23 8.914641e-03 -2.828406e-02 -1.936942e-02 7.261891e+00
## KCNS1 9.653866e-03 -7.548334e-03 2.105532e-03 3.826200e+00
## PIK3R1 1.134638e-01 -6.876269e-02 4.470108e-02 5.594826e+01
## FAM219A -2.857545e-02 1.436213e-02 -1.421332e-02 2.051927e+01
## CENPT 2.873504e-02 1.962370e-02 4.835874e-02 2.019970e+01
## CLPB -1.619858e-03 -1.235520e-02 -1.397506e-02 1.230943e+01
## ZNF114 5.698338e-04 -1.207743e-03 -6.379089e-04 3.183387e-01
## ZNF397 -4.909949e-05 -3.706551e-02 -3.711461e-02 3.295403e+01
## CEP290 7.736780e-03 5.273792e-03 1.301057e-02 5.667141e+00
## ABCD1 -1.403173e-02 -6.545266e-03 -2.057700e-02 1.007647e+01
## MAP4K2 6.683476e-02 -3.215548e-02 3.467927e-02 5.222388e+01
## HLA-DPA1 -4.377894e-02 5.227643e-01 4.789854e-01 2.059903e+02
## GUCD1 -8.321736e-02 6.268342e-02 -2.053394e-02 8.827553e+01
## ABI2 1.880271e-03 1.216853e-02 1.404880e-02 7.786202e+00
## SLC66A3 3.567870e-02 -2.022913e-02 1.544958e-02 2.557005e+01
## IARS1 -1.017528e-02 3.760689e-02 2.743160e-02 2.129363e+01
## MECR 1.983696e-03 4.960243e-03 6.943939e-03 2.993961e+00
## NHLH1 -2.305127e-04 -2.501478e-03 -2.731991e-03 1.064295e+00
## TIAM1 3.374472e-02 -2.265437e-02 1.109035e-02 1.157198e+01
## PPP4R1 -4.811513e-01 -4.272533e-02 -5.238766e-01 2.570254e+02
## PIM3 -1.591516e-01 1.203319e-01 -3.881966e-02 6.916755e+01
## YARS2 1.664302e-03 3.708312e-03 5.372615e-03 4.839785e+00
## NOP14 1.919745e-02 2.395632e-03 2.159308e-02 1.566237e+01
## USP38 -7.259525e-02 4.485832e-02 -2.773693e-02 3.820104e+01
## RTL8A -3.102400e-03 -8.414492e-03 -1.151689e-02 6.778449e+00
## ADRM1 -3.565900e-02 4.983904e-02 1.418003e-02 2.622650e+01
## PACC1 8.642684e-03 -1.749932e-03 6.892752e-03 7.145384e+00
## AKT1 -1.162783e-01 6.448749e-03 -1.098295e-01 1.027137e+02
## RAB5C -2.412164e-01 1.256766e-02 -2.286488e-01 2.103433e+02
## SDF2 -1.025641e-01 1.503634e-02 -8.752780e-02 7.227918e+01
## STAT6 -8.273882e-01 5.724143e-01 -2.549739e-01 5.979224e+02
## RNF19B 2.061578e-01 -3.039822e-01 -9.782443e-02 1.847815e+02
## PSMG3 -7.818951e-03 3.288639e-02 2.506744e-02 1.167551e+01
## ZNRF1 1.274709e-03 8.452760e-03 9.727469e-03 4.057024e+00
## DCAF15 -2.759354e-02 6.979554e-03 -2.061399e-02 1.807130e+01
## FKBPL -1.818332e-02 1.564121e-02 -2.542112e-03 8.103339e+00
## SFSWAP 7.694888e-03 6.422629e-03 1.411752e-02 1.995523e+01
## SLC39A13 -1.035234e-04 1.895081e-02 1.884729e-02 9.362732e+00
## POU2F1 -2.376181e-02 -1.448603e-03 -2.521041e-02 1.961298e+01
## CALCOCO1 -1.601312e-01 1.401745e-02 -1.461138e-01 1.449966e+02
## EXO5 -1.160280e-02 1.726345e-04 -1.143016e-02 6.732986e+00
## EXOSC1 -6.475370e-03 2.626331e-02 1.978794e-02 1.979221e+01
## SSX2IP -1.895475e-02 1.340304e-02 -5.551715e-03 1.099070e+01
## WDR37 -4.602383e-02 3.056457e-02 -1.545926e-02 3.847688e+01
## H2BC12 1.678008e-01 -1.194937e-01 4.830709e-02 7.443029e+01
## FZD2 2.975536e-03 -5.864918e-03 -2.889382e-03 2.146637e+00
## ZBTB7A -1.958463e-02 2.940256e-02 9.817932e-03 2.384968e+01
## GDI2 -4.381758e-02 -1.769806e-01 -2.207982e-01 2.477765e+02
## SIAH1 -1.947764e-02 -1.403199e-02 -3.350963e-02 1.767899e+01
## DENND6A -6.831807e-03 -4.747829e-02 -5.431010e-02 3.160664e+01
## C17orf113 -4.489074e-03 2.289969e-03 -2.199106e-03 2.703697e+00
## SNTB1 4.962618e-03 -3.945548e-02 -3.449286e-02 3.299569e+01
## CIR1 8.258907e-02 -2.257256e-01 -1.431366e-01 1.384031e+02
## FKBP9 -2.373049e-02 3.818109e-03 -1.991238e-02 8.639116e+00
## PSMD4 -3.387990e-01 9.570197e-02 -2.430970e-01 2.292773e+02
## SETD4 6.817604e-03 -3.320605e-03 3.496999e-03 6.990733e+00
## WDR83OS -1.116592e-01 1.568369e-01 4.517773e-02 7.107354e+01
## SRGAP2B -2.251720e-02 -2.844049e-02 -5.095769e-02 2.119827e+01
## PAPOLA -3.800299e-01 1.388881e-01 -2.411418e-01 2.530105e+02
## RFWD3 -1.588863e-02 -7.142138e-03 -2.303076e-02 1.810170e+01
## MAP4K4 -4.815688e-01 -1.352838e-01 -6.168526e-01 3.230936e+02
## PPIL2 2.646462e-02 1.112460e-02 3.758923e-02 2.895664e+01
## TIMP1 -8.745272e-01 2.436917e-01 -6.308354e-01 2.282849e+02
## RAP1GAP2 -1.531127e-01 1.439092e-01 -9.203509e-03 1.065264e+02
## BLM -5.826691e-03 -7.850104e-03 -1.367680e-02 7.675997e+00
## FOXO1 2.869958e-03 3.996912e-02 4.283908e-02 3.243043e+01
## TP53I13 2.097469e-02 1.814682e-02 3.912150e-02 7.957969e+00
## APAF1 -2.027655e-01 -1.523016e-01 -3.550671e-01 1.655364e+02
## CLCN3 -4.865902e-02 1.602516e-02 -3.263385e-02 2.990211e+01
## RPGR -3.843482e-02 1.443831e-02 -2.399651e-02 1.538687e+01
## ACO1 -6.905428e-03 7.496467e-03 5.910392e-04 5.432511e+00
## SLC25A26 9.608670e-03 9.377388e-03 1.898606e-02 7.561977e+00
## DPM1 -3.316002e-02 4.483440e-02 1.167438e-02 3.753938e+01
## TMEM65 -3.777414e-02 1.916365e-03 -3.585778e-02 1.859515e+01
## ATG101 -4.623038e-02 4.513268e-02 -1.097705e-03 1.961917e+01
## LOXL1 -2.197368e-03 3.951995e-03 1.754627e-03 8.805841e-01
## TIGD2 2.365232e-03 1.441071e-03 3.806303e-03 2.304889e+00
## SPHK1 -7.491365e-03 1.600900e-02 8.517635e-03 5.162260e+00
## TTF1 -6.545388e-03 1.723179e-02 1.068640e-02 1.657198e+01
## TMEM265 1.109026e-02 1.262905e-02 2.371931e-02 8.506548e+00
## GOLT1B -1.987912e-02 2.418633e-03 -1.746048e-02 2.098623e+01
## ZNF253 4.007048e-03 -8.815370e-03 -4.808321e-03 4.492856e+00
## PPP2R1B 8.589827e-03 -1.197581e-02 -3.385983e-03 1.189528e+01
## ARMT1 -2.809345e-02 -2.248917e-02 -5.058262e-02 3.302271e+01
## TMEM163 -1.453235e-03 1.318627e-03 -1.346076e-04 5.054556e-01
## CLDND1 4.570739e-02 6.878321e-03 5.258571e-02 4.380425e+01
## SLC2A13 4.527489e-04 3.826065e-03 4.278814e-03 2.540598e+00
## RRP36 9.547886e-03 2.045456e-02 3.000245e-02 2.243288e+01
## PLAA 2.799642e-03 -3.371443e-02 -3.091479e-02 2.363088e+01
## ACTR3 -9.239060e-01 -5.391026e-03 -9.292970e-01 5.917248e+02
## SURF1 -9.596437e-02 3.840028e-02 -5.756409e-02 5.475207e+01
## CYFIP1 1.261388e-02 -4.688211e-02 -3.426823e-02 2.809789e+01
## KXD1 -3.172177e-02 6.607343e-02 3.435166e-02 5.303491e+01
## CLEC1A 4.977798e-04 1.397616e-02 1.447394e-02 4.007417e+00
## UBTD1 -2.843878e-02 6.983417e-03 -2.145537e-02 9.114590e+00
## FBXO5 7.552030e-03 -8.912319e-03 -1.360288e-03 5.296409e+00
## BRPF1 5.430605e-03 1.222927e-02 1.765988e-02 2.163493e+01
## FBXO25 1.008554e-02 8.003891e-03 1.808943e-02 1.207744e+01
## E2F1 3.767222e-03 3.739244e-02 4.115966e-02 1.297867e+01
## EYA3 -2.502575e-04 -2.595246e-02 -2.620272e-02 2.485161e+01
## RBM48 3.554005e-03 -1.320067e-02 -9.646667e-03 1.574412e+01
## ATP5MF -1.351462e-01 1.854327e-01 5.028644e-02 9.381085e+01
## ARL8A -7.944341e-02 -4.373061e-02 -1.231740e-01 5.778384e+01
## COG3 -3.247304e-02 2.068935e-02 -1.178369e-02 2.536233e+01
## ZNF131 8.259861e-03 1.581670e-02 2.407656e-02 1.826822e+01
## AGPAT1 4.795344e-02 -9.989656e-02 -5.194312e-02 8.068519e+01
## SLC19A1 -1.780691e-01 1.657798e-01 -1.228922e-02 7.846143e+01
## CPEB4 -2.750297e-01 1.513179e-02 -2.598979e-01 1.023659e+02
## ANXA7 -6.659087e-02 1.152874e-01 4.869654e-02 9.637694e+01
## YTHDC2 -3.218724e-02 2.665047e-02 -5.536770e-03 2.043212e+01
## FUBP3 4.613294e-03 1.411728e-02 1.873057e-02 1.415145e+01
## COMMD8 -2.052614e-02 3.705318e-02 1.652704e-02 2.919657e+01
## DXO 1.126001e-02 -1.494436e-03 9.765574e-03 8.266596e+00
## CD151 1.203206e-01 -1.753754e-01 -5.505482e-02 4.992075e+01
## QRICH1 1.416996e-02 2.226884e-02 3.643880e-02 3.800201e+01
## PAN3 -1.420576e-01 3.501181e-02 -1.070457e-01 7.822233e+01
## ORC4 -3.942476e-02 4.673845e-02 7.313689e-03 4.620457e+01
## RNF38 -1.120293e-01 -6.358615e-03 -1.183879e-01 6.358499e+01
## ITPRIP 1.083035e-01 -3.572908e-01 -2.489873e-01 1.708074e+02
## ATAD3A -1.401418e-02 9.733170e-03 -4.281015e-03 3.543895e+00
## NBEAL2 -3.766816e-01 -5.168329e-01 -8.935146e-01 4.667544e+02
## CHMP6 -2.014615e-02 4.147557e-02 2.132942e-02 1.500705e+01
## SETMAR 3.485576e-03 1.659186e-03 5.144763e-03 4.083200e+00
## APPL2 -3.002813e-02 -3.085074e-02 -6.087887e-02 3.608201e+01
## TYK2 -1.932647e-01 1.022093e-01 -9.105540e-02 1.468494e+02
## DCUN1D5 -5.590906e-03 1.559719e-02 1.000628e-02 1.281920e+01
## RGMB 1.020499e-02 -2.860938e-03 7.344050e-03 2.693890e+00
## TAF5L 1.491448e-02 -1.311380e-02 1.800679e-03 1.582283e+01
## BBS9 1.220899e-03 4.248063e-03 5.468963e-03 4.398347e+00
## ARHGAP5 8.505476e-03 1.310572e-02 2.161120e-02 1.044044e+01
## BET1 -1.176802e-02 2.330369e-03 -9.437652e-03 1.061972e+01
## ISCA1 1.751465e-02 4.030444e-02 5.781909e-02 2.983716e+01
## HINT3 -2.810487e-02 -2.278149e-02 -5.088636e-02 2.993292e+01
## VEZT 7.163741e-03 1.284762e-02 2.001136e-02 1.268307e+01
## AGAP2 -7.419807e-02 1.079722e-02 -6.340085e-02 5.163394e+01
## ABHD5 -3.490262e-01 3.323646e-01 -1.666165e-02 1.507703e+02
## MARVELD2 1.186153e-03 -1.359806e-03 -1.736527e-04 5.622137e-01
## ESPL1 -5.002942e-03 5.439109e-03 4.361675e-04 1.738439e+00
## RPRD1A -3.198557e-02 2.755963e-02 -4.425945e-03 2.419009e+01
## WNT2B 1.114418e-03 5.247555e-04 1.639174e-03 8.187923e-01
## VWA8 -9.396311e-02 1.865844e-02 -7.530467e-02 1.930754e+01
## P2RY14 3.448489e-02 -2.745380e-01 -2.400531e-01 2.074579e+01
## MPLKIP 1.333935e-02 -6.648196e-03 6.691157e-03 1.387267e+01
## NVL 5.140480e-03 7.990192e-03 1.313067e-02 1.044397e+01
## TKFC 4.245004e-03 1.763650e-02 2.188150e-02 9.708086e+00
## SHISAL2A 6.844748e-03 1.844080e-04 7.029156e-03 1.921058e+00
## EPC2 -4.949319e-02 -1.130990e-02 -6.080310e-02 3.475894e+01
## DDX21 7.117687e-02 -1.077712e-01 -3.659430e-02 4.772051e+01
## NPM3 1.150387e-02 9.477692e-04 1.245164e-02 5.241558e+00
## EMD 1.878017e-02 -3.243119e-02 -1.365102e-02 1.839581e+01
## ZNF70 -4.453718e-04 2.698880e-03 2.253508e-03 2.399539e+00
## RBM18 -1.560468e-02 -1.619116e-02 -3.179584e-02 2.740087e+01
## SLC1A4 -3.213464e-02 1.737019e-02 -1.476445e-02 1.174624e+01
## APBB1IP -5.245125e-01 3.356389e-02 -4.909486e-01 2.635335e+02
## ZNF776 -4.806398e-02 2.045276e-02 -2.761122e-02 2.187386e+01
## TMEM170A -3.382922e-03 2.649344e-02 2.311052e-02 2.262480e+01
## SBNO2 -2.094371e-01 -4.969105e-02 -2.591281e-01 1.072384e+02
## COL11A2 1.274934e-03 1.977079e-03 3.252013e-03 1.298047e+00
## GABARAPL1 2.358776e-01 -3.938448e-01 -1.579672e-01 1.220122e+02
## TRAPPC9 9.025580e-03 -1.994897e-02 -1.092339e-02 1.611589e+01
## MTMR10 -1.527297e-01 4.792393e-02 -1.048058e-01 8.689626e+01
## NOP16 2.314705e-03 7.628596e-03 9.943300e-03 6.223517e+00
## PRKAR2B 1.743281e-01 -2.532231e-01 -7.889502e-02 9.233238e+01
## TXLNA -1.684892e-02 2.860883e-02 1.175991e-02 3.390087e+01
## DGKZ 7.593561e-02 5.640124e-02 1.323369e-01 7.529135e+01
## MTG1 -2.766024e-02 3.190153e-02 4.241293e-03 1.044783e+01
## GSR -1.562869e-01 2.187003e-01 6.241340e-02 1.215799e+02
## NUDT14 8.336151e-03 2.010903e-03 1.034705e-02 2.040977e+00
## THAP8 4.085575e-04 2.849992e-03 3.258550e-03 1.864800e+00
## GFI1 3.079188e-02 -5.166196e-02 -2.087008e-02 1.506129e+01
## RAB14 -1.323972e-01 3.314074e-02 -9.925647e-02 1.060614e+02
## WARS2 1.522657e-03 2.284670e-03 3.807327e-03 2.794885e+00
## PRKD3 7.560518e-03 -3.198754e-02 -2.442702e-02 2.675089e+01
## FBXO6 7.364791e-02 -1.540325e-01 -8.038460e-02 3.665284e+01
## SLC35D1 1.665598e-02 -1.755963e-02 -9.036530e-04 1.060355e+01
## CHPF2 -7.554029e-02 2.183948e-02 -5.370081e-02 5.356536e+01
## MICOS10 -1.966576e-02 4.131954e-02 2.165378e-02 3.016611e+01
## HBP1 -2.315879e-01 -6.762185e-02 -2.992097e-01 1.536565e+02
## SERPINF1 -7.786613e-03 -2.205640e-04 -8.007177e-03 3.423952e+00
## PPM1D -4.971949e-02 3.923423e-02 -1.048526e-02 3.088890e+01
## PNO1 3.780555e-03 4.050276e-03 7.830831e-03 6.914155e+00
## EFR3A -6.380701e-02 -2.863582e-02 -9.244283e-02 5.636296e+01
## FARSB 1.455018e-02 -4.420465e-05 1.450598e-02 1.211100e+01
## LIMS1 -1.124075e-01 -5.733671e-02 -1.697442e-01 9.863491e+01
## CROT 3.676711e-05 5.001077e-03 5.037844e-03 3.882714e+00
## NECAP1 -6.948521e-02 1.670324e-03 -6.781489e-02 4.173764e+01
## RMC1 -2.173330e-02 2.390396e-02 2.170657e-03 3.124943e+01
## GUF1 1.165422e-02 -6.097273e-03 5.556951e-03 9.956144e+00
## FAM149B1 -1.486920e-02 -4.434871e-03 -1.930407e-02 1.422734e+01
## R3HDM1 1.197463e-02 -2.042446e-03 9.932183e-03 1.206262e+01
## CCDC149 -9.932251e-03 -6.970249e-03 -1.690250e-02 8.917177e+00
## GLE1 -4.909057e-02 2.088320e-02 -2.820737e-02 4.926146e+01
## IFITM10 -4.495096e-03 -1.387599e-03 -5.882695e-03 1.711587e+00
## MKKS -2.427921e-02 3.718573e-02 1.290652e-02 3.512355e+01
## CDCA2 -1.377022e-04 5.379554e-03 5.241852e-03 1.762604e+00
## WBP2 -1.588558e-01 -1.097658e-01 -2.686217e-01 1.803700e+02
## NRDC -5.012354e-01 -3.606298e-02 -5.372984e-01 3.445000e+02
## ZDHHC16 -7.191888e-03 1.648134e-02 9.289453e-03 1.220671e+01
## PROCA1 9.398592e-03 -7.637499e-03 1.761093e-03 3.907384e+00
## AFDN 2.499739e-02 -3.133203e-02 -6.334634e-03 1.013096e+01
## PURA 1.440330e-03 1.302021e-02 1.446054e-02 9.817666e+00
## LCP2 2.781043e-01 -4.618719e-01 -1.837676e-01 2.872292e+02
## RUVBL2 -2.415989e-02 4.247986e-02 1.831998e-02 1.285314e+01
## FAM135A 8.954107e-04 6.180403e-03 7.075814e-03 3.206152e+00
## IWS1 2.697782e-02 1.051613e-02 3.749395e-02 4.263088e+01
## WDR61 2.288606e-02 8.891014e-03 3.177708e-02 2.383165e+01
## IER5L -2.866544e-03 1.425325e-03 -1.441219e-03 9.050714e-01
## TMEM109 5.196689e-02 -2.221956e-02 2.974734e-02 2.901525e+01
## F2R -1.398825e-04 2.556979e-02 2.542991e-02 1.494173e+01
## C2orf68 -6.418019e-02 3.079678e-02 -3.338341e-02 6.225324e+01
## MAP3K7 -4.166450e-02 2.909122e-02 -1.257328e-02 4.022067e+01
## GSS 2.893653e-02 2.931445e-03 3.186798e-02 1.797060e+01
## MRPL43 -2.524400e-03 2.342800e-02 2.090360e-02 1.271728e+01
## PKN2 -1.435356e-01 -1.070097e-02 -1.542366e-01 8.184720e+01
## WDR41 -2.675087e-02 9.607839e-04 -2.579008e-02 2.335891e+01
## KBTBD2 -1.664688e-01 -1.098681e-03 -1.675675e-01 1.072864e+02
## NAGLU -1.035729e-02 2.821507e-02 1.785779e-02 1.127876e+01
## SMC2 1.199578e-02 3.668535e-03 1.566432e-02 7.879914e+00
## GPBP1 -9.193711e-03 -1.387438e-01 -1.479375e-01 1.477481e+02
## PRPF18 -3.143186e-02 3.649295e-02 5.061096e-03 2.728095e+01
## CD164 -3.748826e-01 -2.854357e-01 -6.603182e-01 3.924765e+02
## FAM89B -1.188364e-01 9.162680e-02 -2.720961e-02 5.020861e+01
## RUNX3 1.431717e-01 -6.800348e-02 7.516821e-02 5.787798e+01
## ZNF772 2.402991e-03 2.847443e-03 5.250435e-03 2.710900e+00
## ACOT8 -1.017923e-02 2.836288e-02 1.818365e-02 1.303125e+01
## CDK16 5.175326e-02 -4.111454e-02 1.063872e-02 2.956962e+01
## FBXL3 -1.528472e-01 -1.482758e-02 -1.676748e-01 9.621983e+01
## FOXJ2 -4.130630e-02 2.981821e-02 -1.148809e-02 3.479118e+01
## ITSN2 -2.012765e-01 -1.281775e-02 -2.140943e-01 1.178624e+02
## PROB1 -2.726575e-03 3.379265e-04 -2.388648e-03 9.388863e-01
## UMAD1 -1.969527e-02 1.387136e-02 -5.823911e-03 1.364854e+01
## NUDT16L1 1.768214e-02 1.848650e-02 3.616865e-02 1.700588e+01
## RNASEH1 2.446850e-03 1.231929e-02 1.476613e-02 1.494570e+01
## SYCP3 -5.542466e-04 1.239330e-03 6.850830e-04 3.344190e-01
## ZNF7 9.112603e-03 -2.897688e-04 8.822835e-03 1.441950e+01
## PLEKHF2 -2.940361e-02 -8.971118e-02 -1.191148e-01 7.498065e+01
## PTPRJ -7.157424e-01 7.078930e-02 -6.449531e-01 3.916251e+02
## PHF20 -7.177981e-02 4.393049e-02 -2.784932e-02 5.418540e+01
## ZBTB9 6.819743e-03 -2.851397e-03 3.968346e-03 4.041625e+00
## F12 -2.201349e-03 -3.111561e-03 -5.312910e-03 1.546974e+00
## GLT8D1 -2.374457e-03 1.299845e-02 1.062399e-02 2.335021e+01
## NDC80 2.324735e-03 -9.676564e-03 -7.351829e-03 5.917033e+00
## MKRN2 -2.455400e-02 2.025019e-02 -4.303806e-03 2.405384e+01
## ZNF778 6.702740e-04 5.409520e-03 6.079794e-03 6.761855e+00
## DDX17 -5.743986e-01 3.148461e-02 -5.429140e-01 5.416477e+02
## CASR -1.298762e-03 -7.247868e-03 -8.546630e-03 5.321598e+00
## POLR3C 5.643695e-03 8.387041e-03 1.403074e-02 1.684155e+01
## JAG1 6.437809e-03 -1.378519e-02 -7.347380e-03 7.101478e+00
## DDX39B -1.212465e-01 -4.537300e-02 -1.666195e-01 1.821055e+02
## PSMC3IP -1.727983e-03 2.627264e-03 8.992813e-04 1.694968e+00
## MAD1L1 4.439870e-02 -8.202109e-03 3.619659e-02 1.178844e+01
## MSN -1.654889e+00 4.453162e-01 -1.209572e+00 1.000436e+03
## PIGO -1.450419e-03 8.805686e-03 7.355267e-03 7.983027e+00
## IL1RN -3.460931e-01 -2.878436e-01 -6.339368e-01 2.274761e+02
## NUDT1 -1.758393e-02 3.269215e-02 1.510822e-02 8.347041e+00
## RTF2 -2.921016e-01 1.908919e-02 -2.730124e-01 2.200160e+02
## PHLDB3 1.475192e-03 1.661680e-03 3.136872e-03 9.218508e-01
## FAM91A1 -2.745860e-02 -1.002715e-01 -1.277301e-01 7.974683e+01
## ZNF710 -4.237536e-02 1.766937e-02 -2.470599e-02 2.654146e+01
## DEF8 -2.183137e-01 1.217781e-01 -9.653567e-02 1.550802e+02
## ARHGAP25 -5.295821e-01 5.007230e-01 -2.885907e-02 4.015403e+02
## ZNF410 2.473842e-02 -5.639636e-02 -3.165794e-02 5.436317e+01
## GALNT3 -2.712550e-02 -7.517309e-02 -1.022986e-01 3.986127e+01
## LONRF3 1.404917e-02 -1.619718e-03 1.242945e-02 4.007938e+00
## C1orf216 6.447542e-03 -1.469073e-02 -8.243189e-03 9.579304e+00
## TASOR2 -3.432105e-02 1.724669e-02 -1.707436e-02 1.534560e+01
## CEBPZOS -2.368843e-02 -2.436183e-02 -4.805026e-02 2.850579e+01
## PPP2R3A 2.137916e-03 -1.624010e-03 5.139060e-04 1.251869e+00
## PLOD3 -1.921188e-02 2.306157e-02 3.849698e-03 1.374470e+01
## DRAXIN -3.548062e-03 -2.156860e-03 -5.704921e-03 2.493305e+00
## S100A5 -3.875702e-05 1.473538e-03 1.434781e-03 4.755360e-01
## TEX261 1.314635e-02 1.575078e-02 2.889713e-02 4.866782e+01
## PLA2G4C -6.470319e-04 -6.903283e-03 -7.550315e-03 2.163923e+00
## TBC1D22A -5.380088e-03 3.592835e-02 3.054826e-02 3.013958e+01
## YTHDF3 -8.054154e-02 -8.770279e-02 -1.682443e-01 8.807644e+01
## HEXA 1.990497e-02 -6.027671e-02 -4.037174e-02 5.928171e+01
## VIM -2.793505e+00 1.728235e+00 -1.065270e+00 1.523395e+03
## ETV3 -2.084456e-02 -1.764518e-02 -3.848974e-02 2.467128e+01
## METAP1 1.265490e-02 1.068159e-02 2.333650e-02 1.861043e+01
## CCDC43 7.535420e-03 -7.202866e-03 3.325541e-04 9.351530e+00
## TRIM35 1.030143e-02 -7.129138e-04 9.588518e-03 1.155157e+01
## ARAF -1.005116e-01 8.801524e-02 -1.249637e-02 6.003651e+01
## NUCB2 -5.987339e-02 1.307135e-01 7.084008e-02 4.434316e+01
## SLC29A3 3.649463e-03 5.925828e-03 9.575292e-03 4.857206e+00
## ZNF708 -1.707699e-02 1.769983e-02 6.228404e-04 1.094667e+01
## UBAP1 -3.393625e-01 -2.168564e-02 -3.610482e-01 1.877573e+02
## EIF3J -5.510635e-03 1.919058e-02 1.367994e-02 2.587466e+01
## KHK 9.926552e-03 -1.984370e-03 7.942181e-03 2.326318e+00
## RBM22 -4.229851e-02 -3.825068e-02 -8.054919e-02 7.558868e+01
## ATP7A -4.009919e-02 2.038740e-02 -1.971179e-02 1.975407e+01
## RAB44 2.808525e-02 -4.164057e-02 -1.355531e-02 1.274761e+01
## TNFRSF9 -1.329165e-02 2.438435e-02 1.109270e-02 7.481335e+00
## PCSK5 1.132087e-02 -1.321891e-02 -1.898048e-03 7.404481e+00
## RNF31 -7.739270e-02 1.006578e-01 2.326511e-02 6.911293e+01
## TANK -2.246841e-01 -3.352978e-02 -2.582139e-01 1.281511e+02
## SCIMP -6.024631e-02 -1.111587e-02 -7.136218e-02 3.650381e+01
## TGIF2 3.290310e-02 -4.706185e-03 2.819691e-02 2.454050e+01
## RAB3D -4.949509e-01 1.237248e-01 -3.712261e-01 2.521261e+02
## NELFE -1.439514e-02 9.631954e-02 8.192441e-02 5.379988e+01
## JOSD2 -9.600805e-03 1.024206e-02 6.412514e-04 2.372521e+00
## UBALD1 -1.351499e-02 1.530843e-02 1.793446e-03 4.023117e+00
## SPNS1 2.689884e-02 -1.240993e-03 2.565785e-02 1.207527e+01
## ARFRP1 2.794800e-02 2.647955e-02 5.442755e-02 1.691713e+01
## SUMO2 -1.184147e-01 9.316476e-02 -2.524992e-02 1.467833e+02
## FAXDC2 3.173448e-02 -5.327851e-02 -2.154403e-02 2.348800e+01
## RAB6A -1.303971e-01 9.405573e-03 -1.209915e-01 1.105454e+02
## EXOC7 -4.880359e-03 -7.392906e-02 -7.880942e-02 1.037912e+02
## CNBP -7.274784e-01 3.818552e-01 -3.456233e-01 5.664232e+02
## DCTN2 -1.576463e-01 8.342042e-02 -7.422590e-02 9.824498e+01
## KLRG1 -3.369059e-03 3.611616e-02 3.274710e-02 1.246725e+01
## IREB2 -6.519404e-02 5.666475e-02 -8.529284e-03 5.079464e+01
## RCN3 -5.096297e-02 1.500987e-03 -4.946198e-02 1.853455e+01
## ATP6V1H 2.191449e-02 -1.492608e-02 6.988410e-03 2.186522e+01
## ZSCAN29 -2.146090e-02 2.318023e-02 1.719329e-03 1.847486e+01
## RNF4 -1.928990e-02 3.893649e-02 1.964659e-02 6.117406e+01
## SART1 -9.215773e-02 9.658439e-02 4.426657e-03 5.642193e+01
## PTK7 1.404182e-03 1.616482e-03 3.020663e-03 9.662173e-01
## GLUD1 6.479940e-02 -5.373226e-02 1.106715e-02 7.525120e+01
## PACSIN2 -3.030096e-01 1.186416e-01 -1.843680e-01 1.621906e+02
## ICE1 -3.259690e-02 2.646846e-02 -6.128442e-03 2.366489e+01
## KIFC3 -1.756371e-02 3.403166e-04 -1.722339e-02 6.317225e+00
## AKR1B1 3.474825e-02 3.073399e-02 6.548224e-02 2.668506e+01
## TRAPPC5 -2.285225e-03 3.631037e-02 3.402514e-02 1.130855e+01
## MOCS3 -3.935695e-03 -6.885366e-04 -4.624232e-03 5.218685e+00
## ITGAL -2.535166e-01 2.925117e-01 3.899507e-02 3.233040e+02
## ZNF267 -1.769773e-01 -4.768942e-02 -2.246667e-01 1.036443e+02
## PRR29 -2.604382e-03 -4.503720e-03 -7.108102e-03 2.963770e+00
## TNFRSF10C -8.676654e-01 1.071399e-01 -7.605255e-01 4.380031e+02
## CYB5A 6.645755e-03 -1.203287e-04 6.525427e-03 5.172840e+00
## ZYG11B -4.817088e-02 1.203060e-02 -3.614029e-02 3.140990e+01
## RAD23B -2.120930e-01 -6.856933e-02 -2.806623e-01 1.457850e+02
## DOCK9 -3.579882e-03 2.310867e-02 1.952879e-02 8.983423e+00
## CDPF1 3.272151e-03 8.239861e-03 1.151201e-02 4.154368e+00
## GRIPAP1 -2.373847e-03 -7.580720e-02 -7.818105e-02 7.936484e+01
## ADPRS 1.581039e-02 3.823399e-02 5.404438e-02 3.217192e+01
## MFAP3 -4.552837e-02 -1.824309e-02 -6.377146e-02 3.367424e+01
## SELENOK -8.775937e-02 8.081332e-02 -6.946043e-03 5.667079e+01
## CEP131 3.669247e-03 2.491840e-04 3.918431e-03 1.575724e+00
## ITGAV -1.503401e-02 1.230047e-02 -2.733544e-03 9.370621e+00
## FLT4 -2.203277e-03 3.804861e-03 1.601583e-03 1.871907e+00
## TG 9.224494e-03 1.157292e-03 1.038179e-02 2.999186e+00
## MS4A7 3.672380e-02 -1.013637e-01 -6.463994e-02 4.484757e+01
## SURF2 -2.611255e-03 1.521954e-02 1.260828e-02 5.003539e+00
## CDC14B 3.600082e-03 2.339703e-02 2.699711e-02 1.230706e+01
## FMR1 7.917764e-03 -7.690637e-02 -6.898861e-02 5.758137e+01
## NUP98 -1.888786e-01 3.055447e-02 -1.583241e-01 1.254780e+02
## IL6R -7.860150e-01 6.336384e-01 -1.523767e-01 4.085279e+02
## SIRT6 -1.896749e-02 2.773314e-02 8.765650e-03 8.585883e+00
## RANBP9 1.380841e-02 -9.547469e-02 -8.166628e-02 5.218978e+01
## ELP2 2.598729e-02 3.191699e-03 2.917899e-02 2.454826e+01
## NUDT21 -7.683548e-03 4.178876e-02 3.410521e-02 4.767534e+01
## PSMB6 -1.217712e-01 7.336730e-02 -4.840385e-02 6.851829e+01
## HOOK2 -2.714900e-03 6.042060e-03 3.327160e-03 3.464195e+00
## SNX29 8.909186e-03 1.388405e-02 2.279324e-02 2.002689e+01
## NDUFS1 -3.127636e-02 3.196141e-02 6.850560e-04 3.990601e+01
## CIP2A -3.811132e-03 6.257984e-03 2.446852e-03 2.647639e+00
## KCTD5 -2.011525e-02 1.406279e-02 -6.052463e-03 2.158560e+01
## HAUS8 -8.223683e-04 7.345318e-03 6.522950e-03 5.389528e+00
## KCTD15 1.151210e-02 -6.352191e-03 5.159907e-03 5.033526e+00
## RAB3GAP2 -4.186902e-02 -8.687605e-03 -5.055663e-02 3.235553e+01
## ARFGEF1 -1.320175e-01 2.364037e-02 -1.083771e-01 7.973127e+01
## OSGIN2 -1.780537e-01 1.395612e-01 -3.849257e-02 7.306707e+01
## TEDC1 -1.378305e-04 6.744391e-03 6.606560e-03 1.382271e+00
## SEMA3E 2.011215e-04 -4.644314e-03 -4.443192e-03 1.539377e+00
## TMCC3 -5.086718e-02 -2.281350e-01 -2.790022e-01 1.260470e+02
## LONP1 -1.474597e-02 3.634352e-02 2.159755e-02 1.202611e+01
## METTL25 -4.934261e-03 6.738510e-03 1.804248e-03 6.185829e+00
## FBXW5 -4.196235e-02 1.097861e-01 6.782378e-02 3.542401e+01
## AMD1 -1.958203e-01 2.129601e-01 1.713981e-02 1.446059e+02
## PRRT3 1.562658e-03 1.009860e-03 2.572518e-03 1.239344e+00
## DECR2 -2.057230e-03 3.629574e-03 1.572345e-03 1.056399e+00
## TBC1D10C -1.723176e-01 3.465309e-01 1.742132e-01 1.237966e+02
## GDI1 -1.545120e-01 -1.547092e-02 -1.699830e-01 1.579324e+02
## TNFAIP8L2-SCNM1 -1.660918e-02 2.900210e-02 1.239292e-02 1.586966e+01
## RPL36 4.593569e-01 6.787226e-02 5.272291e-01 1.128532e+02
## CX3CR1 -3.565807e-01 8.362133e-02 -2.729593e-01 1.118914e+02
## SMAD2 -7.038213e-02 -9.032884e-03 -7.941502e-02 8.402819e+01
## DIDO1 3.467362e-02 -1.905792e-03 3.276783e-02 4.687346e+01
## DESI2 2.260720e-02 -8.218602e-03 1.438860e-02 2.281496e+01
## CSF2RB -1.134578e+00 -1.849464e-01 -1.319524e+00 6.886865e+02
## NCAPG2 9.364348e-03 -1.720356e-02 -7.839209e-03 6.530449e+00
## DTWD2 -2.289877e-03 8.433887e-03 6.144010e-03 4.652920e+00
## P4HA1 -2.198492e-02 3.741269e-02 1.542777e-02 2.796265e+01
## PGBD4 -1.935139e-03 3.921286e-03 1.986147e-03 3.693583e+00
## NEMP1 -2.711529e-03 1.231985e-02 9.608323e-03 7.893184e+00
## CCS 1.833305e-02 3.739243e-02 5.572548e-02 1.625326e+01
## ATPAF2 1.031190e-02 -7.122011e-03 3.189885e-03 6.526448e+00
## CSRNP1 -3.850154e-01 1.161776e-01 -2.688378e-01 1.189362e+02
## RIOX1 5.990502e-03 2.131064e-03 8.121567e-03 6.543144e+00
## VKORC1 -4.932495e-02 4.416204e-02 -5.162909e-03 2.440993e+01
## MRPS18B 3.890441e-02 2.296065e-03 4.120048e-02 2.979921e+01
## CIAO3 2.472992e-03 1.601076e-02 1.848375e-02 6.969813e+00
## MSR1 -6.750405e-03 -1.745940e-02 -2.420980e-02 7.068427e+00
## CLASRP -2.979000e-02 4.299227e-02 1.320227e-02 3.717272e+01
## USP31 4.995313e-03 1.862402e-04 5.181553e-03 4.433027e+00
## SNX14 -6.284577e-02 5.003702e-02 -1.280875e-02 5.346317e+01
## OST4 -2.837987e-02 -2.069894e-01 -2.353692e-01 1.588739e+02
## TRMT10C -1.820527e-03 1.004832e-02 8.227791e-03 1.256954e+01
## IFIT2 4.914467e-01 -3.089831e+00 -2.598385e+00 6.826143e+02
## KCTD6 -7.169451e-03 1.591043e-03 -5.578409e-03 4.915510e+00
## OPRL1 1.172021e-02 -4.560281e-02 -3.388260e-02 2.409983e+01
## ZNF28 -1.112176e-02 1.567310e-02 4.551341e-03 1.160783e+01
## UVSSA -2.094722e-02 2.749476e-02 6.547531e-03 1.402168e+01
## FIGNL1 7.000437e-03 8.887185e-04 7.889156e-03 4.554028e+00
## RPS11 2.888009e+00 8.357836e-01 3.723793e+00 1.485880e+03
## RNF14 -1.349524e-02 1.885922e-02 5.363985e-03 2.416212e+01
## ORC3 -5.754903e-03 1.311405e-02 7.359149e-03 1.192844e+01
## PDZD4 4.508479e-02 -1.263881e-02 3.244598e-02 1.144778e+01
## PGM1 -4.710938e-02 9.456288e-02 4.745350e-02 5.064660e+01
## GEMIN7 -2.740489e-02 8.863899e-03 -1.854099e-02 1.344263e+01
## CRK -1.020781e-01 -4.751997e-03 -1.068301e-01 7.124043e+01
## FAM200A 4.293238e-03 -2.510492e-04 4.042189e-03 4.245969e+00
## DPH3P1 -2.971141e-03 2.113675e-03 -8.574655e-04 1.590977e+00
## SCAMP1 6.542715e-04 -2.957404e-02 -2.891977e-02 2.308457e+01
## C2orf49 2.203207e-02 -1.456007e-02 7.471996e-03 1.875372e+01
## PIP4P1 5.422937e-02 -2.668605e-02 2.754332e-02 4.513150e+01
## RAB5IF -6.009587e-01 1.939830e-01 -4.069757e-01 2.923821e+02
## NPEPPS -2.107274e-01 2.821269e-01 7.139949e-02 1.485120e+02
## MEAK7 5.245932e-03 -4.995229e-03 2.507032e-04 6.095704e+00
## CEACAM8 4.503389e-01 -1.700616e-01 2.802773e-01 6.231524e+01
## CC2D1A -2.274940e-02 1.878195e-02 -3.967442e-03 1.088891e+01
## NOP10 -6.679491e-01 3.982570e-01 -2.696920e-01 2.887154e+02
## MRPL3 1.678193e-02 7.805599e-03 2.458753e-02 2.052296e+01
## BTBD2 1.693554e-02 8.946530e-03 2.588207e-02 1.029058e+01
## B3GALT4 -3.635551e-02 3.958974e-02 3.234231e-03 1.684980e+01
## NEK5 -6.784995e-04 -1.988244e-03 -2.666743e-03 1.361553e+00
## ZNF516 -1.851262e-01 1.391221e-01 -4.600410e-02 1.023439e+02
## CPT2 -8.178852e-03 -7.596436e-03 -1.577529e-02 1.809385e+01
## FFAR2 8.731870e-01 -1.283221e+00 -4.100338e-01 4.951221e+02
## FAM241A -9.865993e-02 1.212843e-02 -8.653150e-02 5.828870e+01
## MRPL15 -4.032113e-03 1.744411e-02 1.341200e-02 1.483019e+01
## TMEM222 -8.606667e-02 5.034389e-02 -3.572279e-02 3.463368e+01
## MLX -1.393293e-01 1.381882e-02 -1.255105e-01 1.119406e+02
## WDR62 -2.297472e-03 3.023106e-03 7.256340e-04 9.978733e-01
## GP1BB -2.960153e-02 -4.089613e-02 -7.049766e-02 1.421608e+01
## HAUS3 2.152797e-02 -7.521615e-03 1.400635e-02 1.589537e+01
## FBXO40 -9.413632e-04 -1.226222e-03 -2.167585e-03 6.954779e-01
## LIG4 -3.084112e-02 -1.411262e-02 -4.495375e-02 2.408274e+01
## TOR1B -8.362678e-02 -8.671302e-02 -1.703398e-01 5.528300e+01
## VCP -1.690465e-01 1.350465e-01 -3.399997e-02 2.033286e+02
## NETO2 -5.717746e-03 -1.015365e-02 -1.587140e-02 9.078100e+00
## GOLGA2 -4.048326e-02 3.869533e-03 -3.661373e-02 3.262925e+01
## CLDND2 -1.748654e-03 1.764853e-03 1.619911e-05 5.440065e-01
## PGAM1 -5.040490e-01 1.140890e-01 -3.899600e-01 3.496243e+02
## FLJ44635 6.367458e-03 1.760659e-03 8.128118e-03 3.438260e+00
## MANBA -9.265620e-02 -2.209442e-02 -1.147506e-01 9.064701e+01
## NDFIP1 -5.404071e-02 -4.278115e-03 -5.831883e-02 8.519400e+01
## ATXN7L3B 4.681919e-02 1.658667e-03 4.847786e-02 5.556249e+01
## FCGRT -5.949943e-01 2.396818e-01 -3.553125e-01 2.520064e+02
## KIAA0319 -3.190608e-02 9.188070e-03 -2.271801e-02 1.110885e+01
## FBXL20 -2.445962e-02 7.490233e-02 5.044271e-02 4.423513e+01
## RAB15 -3.390521e-03 -5.378201e-03 -8.768722e-03 3.209592e+00
## GTF2E2 -2.018151e-02 1.030579e-02 -9.875716e-03 2.349490e+01
## PAK3 -2.709376e-04 -8.312615e-04 -1.102199e-03 3.534628e-01
## LMBRD2 -1.843745e-02 2.103215e-02 2.594697e-03 1.451010e+01
## YOD1 -1.568369e-01 2.364359e-02 -1.331933e-01 5.202285e+01
## INTS3 -4.522743e-02 9.199066e-02 4.676322e-02 8.217747e+01
## INSL3 -3.548350e-03 -1.305179e-02 -1.660014e-02 5.278667e+00
## GALNT7 -7.959228e-02 5.822172e-02 -2.137055e-02 3.724127e+01
## RAB2B -6.902699e-04 1.035310e-02 9.662830e-03 1.148864e+01
## PHB 5.467230e-02 4.484046e-02 9.951277e-02 4.843347e+01
## COA7 -5.775565e-03 7.847793e-04 -4.990786e-03 5.340126e+00
## EVI2A 6.356563e-01 -6.404809e-01 -4.824607e-03 4.033560e+02
## OVCA2 1.631279e-04 3.312793e-02 3.329106e-02 1.762639e+01
## PLA2G7 3.109584e-03 9.611587e-03 1.272117e-02 4.290104e+00
## EXOSC10 2.806310e-02 -1.375326e-02 1.430985e-02 2.273017e+01
## LAMB2 3.042404e-03 -6.850091e-03 -3.807687e-03 2.060742e+00
## ZMIZ1 -9.176051e-02 3.200267e-02 -5.975783e-02 6.088780e+01
## BMP8A 4.896379e-04 2.189753e-03 2.679391e-03 1.404541e+00
## SMTN 6.878174e-04 3.680080e-03 4.367898e-03 1.531353e+00
## DCST2 1.445979e-03 6.667254e-04 2.112704e-03 7.533612e-01
## DPM3 -6.094444e-03 1.377273e-02 7.678288e-03 3.044090e+00
## TAF1A -2.010581e-03 2.491650e-03 4.810689e-04 1.782619e+00
## FASTK -2.863803e-03 5.050649e-02 4.764269e-02 1.917378e+01
## TRNAU1AP -3.184083e-02 1.488620e-02 -1.695463e-02 2.255634e+01
## MPHOSPH9 6.363958e-03 7.227922e-03 1.359188e-02 7.194862e+00
## NLRP6 -4.197212e-02 1.405414e-02 -2.791799e-02 1.113708e+01
## ZGLP1 6.584681e-03 2.470123e-04 6.831694e-03 2.340164e+00
## TSKU -1.170553e-04 -1.500065e-03 -1.617120e-03 1.276632e+00
## PRIMPOL 6.733187e-03 -6.748127e-03 -1.494048e-05 7.038778e+00
## VANGL1 1.692192e-03 -5.872754e-03 -4.180562e-03 3.245556e+00
## TMEM128 -4.270177e-03 9.381469e-03 5.111292e-03 9.579223e+00
## ZC3HC1 5.497507e-03 -9.174858e-03 -3.677351e-03 7.635131e+00
## RDH5 9.433617e-04 -6.089071e-03 -5.145710e-03 2.076691e+00
## GSN -4.159145e-01 1.684805e-01 -2.474340e-01 1.754722e+02
## LACTB2 4.116956e-03 8.669886e-04 4.983945e-03 4.561710e+00
## ABCD3 8.712756e-03 -1.979635e-02 -1.108360e-02 1.741365e+01
## CCNQ 3.666653e-03 1.271985e-02 1.638650e-02 9.102508e+00
## TBC1D16 -2.423652e-03 6.328535e-03 3.904883e-03 1.878025e+00
## DUSP7 3.146875e-02 -1.181938e-02 1.964937e-02 2.252231e+01
## KLF13 -4.290136e-01 1.893049e-01 -2.397088e-01 2.911561e+02
## ZNF292 -1.237604e-01 1.137287e-01 -1.003174e-02 6.102139e+01
## PDCD5 -4.706175e-03 1.675142e-02 1.204525e-02 1.131868e+01
## RELL1 -1.033825e-01 -1.514637e-02 -1.185289e-01 4.483843e+01
## NLRP3 -2.050782e-01 9.508383e-02 -1.099944e-01 5.638000e+01
## L3MBTL3 -5.728602e-03 -1.128394e-02 -1.701255e-02 1.175031e+01
## FN3K -2.287822e-04 1.715128e-03 1.486346e-03 5.278538e-01
## TREML1 -1.276983e-01 2.692605e-01 1.415622e-01 7.517321e+01
## RNF8 9.266194e-03 -1.286913e-05 9.253325e-03 8.267978e+00
## LPAR5 5.157110e-03 -7.538592e-03 -2.381482e-03 5.082809e+00
## TTC21B -2.557492e-03 1.057262e-02 8.015131e-03 7.534113e+00
## CDC7 -1.547810e-03 -5.896649e-03 -7.444459e-03 5.656738e+00
## ITGAM -8.885016e-01 2.644289e-01 -6.240728e-01 4.521990e+02
## ATP6AP1L -6.576125e-04 1.593086e-03 9.354739e-04 7.373060e-01
## NNT 1.661798e-02 -3.231051e-02 -1.569252e-02 3.187482e+01
## PRRC1 -1.576262e-02 2.214762e-02 6.384999e-03 1.791919e+01
## GALNT11 2.645729e-03 1.344884e-02 1.609457e-02 1.779485e+01
## MYH9 -7.659996e-01 -3.932878e-03 -7.699325e-01 6.332131e+02
## ZNF124 3.585737e-03 -5.406266e-03 -1.820529e-03 4.585759e+00
## NBPF20 4.300445e-02 -2.527314e-02 1.773132e-02 7.111792e+00
## SF3A1 9.361767e-02 -1.145935e-01 -2.097581e-02 1.035021e+02
## ZNF100 -1.390555e-02 -1.008263e-02 -2.398818e-02 1.207066e+01
## JADE3 -2.422968e-03 1.400663e-03 -1.022306e-03 9.399663e-01
## SGF29 6.608866e-03 1.905846e-02 2.566732e-02 1.059404e+01
## HDGFL3 -1.648905e-02 1.048602e-02 -6.003023e-03 9.306207e+00
## ATP5MD -3.323360e-02 6.816141e-02 3.492780e-02 4.382575e+01
## INTS9 -5.481531e-03 -3.613213e-03 -9.094743e-03 1.000025e+01
## AIP 1.323446e-02 6.407692e-02 7.731138e-02 4.099780e+01
## NAB1 -4.646146e-02 -1.938461e-02 -6.584607e-02 3.853792e+01
## RNF115 1.691075e-02 -1.158069e-02 5.330062e-03 2.648858e+01
## KIFC1 -4.858271e-03 1.266459e-02 7.806321e-03 3.895032e+00
## DEXI -8.652669e-04 1.585336e-02 1.498810e-02 5.925844e+00
## ZNF746 -4.966829e-02 1.098468e-01 6.017853e-02 6.068490e+01
## PLK2 -3.661863e-03 -1.548508e-03 -5.210371e-03 2.035528e+00
## SATB1 -1.541162e-02 7.334803e-02 5.793641e-02 4.867791e+01
## ANP32E 5.711410e-02 -3.096658e-03 5.401745e-02 4.607049e+01
## SART3 -7.495578e-03 2.123145e-02 1.373587e-02 2.322677e+01
## BCAP29 7.145172e-03 -1.671990e-02 -9.574725e-03 1.452512e+01
## SERPINE2 5.088178e-03 -7.965315e-04 4.291646e-03 1.763713e+00
## RUNDC1 -2.537124e-02 2.273737e-02 -2.633868e-03 2.786041e+01
## PGM2 -1.582774e-01 9.722192e-02 -6.105553e-02 7.455040e+01
## DCAF4L1 -6.412007e-03 8.747777e-04 -5.537229e-03 2.049391e+00
## UBXN7 -8.779304e-02 5.927321e-02 -2.851982e-02 4.947988e+01
## FDX1 9.703083e-03 6.366103e-03 1.606919e-02 1.246187e+01
## CCDC50 2.506551e-03 2.138874e-02 2.389529e-02 1.511566e+01
## SLC38A10 -7.899420e-02 2.368999e-02 -5.530421e-02 4.034945e+01
## BNIP1 9.339550e-03 -4.725769e-03 4.613781e-03 4.623950e+00
## ANKHD1 -7.928936e-02 8.672605e-02 7.436685e-03 8.507231e+01
## RNA28SN1 -5.286929e+00 8.492366e+00 3.205437e+00 2.785014e+03
## SLC30A5 -2.459316e-02 1.070560e-02 -1.388757e-02 2.559714e+01
## PDCD6IP -4.696868e-02 -8.054954e-02 -1.275182e-01 1.097342e+02
## PRKCSH -2.046763e-02 1.359274e-01 1.154598e-01 9.262552e+01
## ARHGAP21 -3.168980e-02 -1.319021e-02 -4.488001e-02 2.269131e+01
## DAP 6.296425e-02 1.466875e-02 7.763299e-02 7.168061e+01
## THYN1 2.380442e-02 2.496147e-02 4.876589e-02 3.044662e+01
## TLR6 -2.392597e-01 -2.102979e-02 -2.602894e-01 1.167936e+02
## CEP57 9.352739e-03 1.529337e-02 2.464611e-02 2.293802e+01
## PHF6 4.170281e-04 1.529767e-02 1.571470e-02 1.144247e+01
## RPLP2 1.376375e+00 8.150431e-02 1.457880e+00 2.782993e+02
## ZSCAN9 3.478144e-04 -5.314073e-03 -4.966258e-03 4.782326e+00
## ZNF660 3.210042e-05 1.305841e-03 1.337941e-03 7.837884e-01
## GTF3C4 -1.073704e-02 8.896835e-03 -1.840210e-03 8.958395e+00
## SLC22A18 -1.512609e-02 -7.303903e-03 -2.243000e-02 6.354724e+00
## PLRG1 2.334951e-02 -3.670241e-03 1.967927e-02 3.101166e+01
## APOBEC3G 6.997418e-02 -9.969653e-02 -2.972235e-02 6.719840e+01
## REPIN1 1.626569e-02 1.683345e-02 3.309914e-02 2.288002e+01
## PLAC8 -7.315230e-01 -8.358142e-02 -8.151044e-01 1.852966e+02
## GRAP2 1.011382e-02 -1.209335e-01 -1.108197e-01 8.536200e+01
## GINM1 -1.749376e-02 3.008016e-02 1.258640e-02 2.743971e+01
## UBB -2.583436e-01 9.297467e-01 6.714032e-01 5.065006e+02
## ACRBP -2.723414e-02 -3.723675e-02 -6.447089e-02 2.982564e+01
## NUP43 8.892563e-03 8.555184e-03 1.744775e-02 1.474970e+01
## CD72 5.914261e-03 1.848923e-02 2.440349e-02 8.457486e+00
## MAN2C1 8.373569e-02 -4.369165e-03 7.936652e-02 4.115284e+01
## UBE2L3 -7.747036e-02 -3.073975e-02 -1.082101e-01 1.075619e+02
## CD2AP 2.803106e-03 -3.260649e-02 -2.980339e-02 1.629266e+01
## ICA1L -3.594894e-04 2.056675e-03 1.697185e-03 1.680940e+00
## FPR2 -1.097724e+00 6.865855e-01 -4.111383e-01 4.514702e+02
## TRAF7 -2.657339e-02 4.131812e-02 1.474474e-02 3.146933e+01
## DCTN3 -6.577950e-02 6.433551e-02 -1.443988e-03 3.742373e+01
## AARSD1 1.632634e-02 3.770255e-03 2.009659e-02 8.709452e+00
## GNG7 7.283579e-03 2.040887e-02 2.769245e-02 1.507455e+01
## CCDC125 -4.479992e-02 7.048465e-02 2.568473e-02 3.400019e+01
## GLUL -1.886404e+00 1.460852e-02 -1.871795e+00 1.049545e+03
## ZFAND5 4.385217e-01 -3.839206e-01 5.460106e-02 2.388022e+02
## SMPD4 2.979300e-02 1.195439e-04 2.991254e-02 2.376356e+01
## C6orf47 -9.908193e-03 -4.427503e-02 -5.418322e-02 5.058061e+01
## LIPH -3.906235e-03 1.415178e-03 -2.491057e-03 1.626697e+00
## CWC25 -7.902887e-03 -7.948510e-02 -8.738798e-02 6.754859e+01
## SH3BGRL3 -1.854940e+00 5.805722e-01 -1.274368e+00 8.286535e+02
## SLC16A3 -4.328634e-01 -7.449983e-03 -4.403134e-01 1.816934e+02
## XPOT 2.216906e-02 1.554039e-02 3.770945e-02 3.630472e+01
## STAU1 -7.611333e-02 2.211829e-02 -5.399505e-02 6.861135e+01
## KLRC2 1.414008e-02 -1.154451e-02 2.595577e-03 3.342465e+00
## NDUFV3 1.433346e-02 1.896815e-03 1.623028e-02 1.748673e+01
## LIMK2 -7.599356e-01 -9.604255e-02 -8.559782e-01 3.877339e+02
## KIAA0753 -8.248126e-03 1.541007e-02 7.161940e-03 1.279925e+01
## TMEM81 4.104757e-03 5.152759e-03 9.257517e-03 5.381554e+00
## AKR7A2 1.582034e-02 1.176697e-02 2.758731e-02 1.283851e+01
## BRCC3 -5.513472e-03 1.207661e-02 6.563137e-03 1.274504e+01
## NFATC2 2.470677e-02 1.803692e-02 4.274369e-02 1.691210e+01
## SUPT5H 1.102073e-01 -8.122173e-02 2.898553e-02 7.357200e+01
## METTL2A -3.732301e-03 6.741571e-03 3.009270e-03 6.985882e+00
## TSR3 -1.597143e-02 3.590232e-02 1.993088e-02 1.278686e+01
## FBXO9 -1.103435e-01 6.621821e-02 -4.412525e-02 6.660879e+01
## MMADHC -2.510573e-01 8.475011e-02 -1.663072e-01 1.246712e+02
## SYNJ2BP 8.075759e-03 6.671395e-03 1.474715e-02 8.220650e+00
## ELAC2 -2.182582e-04 2.289078e-02 2.267252e-02 2.116015e+01
## ATAT1 -3.127419e-03 1.415884e-03 -1.711535e-03 1.862190e+00
## CRLF3 -2.051889e-01 1.254573e-01 -7.973164e-02 1.122039e+02
## RNF20 -5.089306e-02 1.674303e-02 -3.415003e-02 4.640481e+01
## TNFRSF10A 6.334902e-03 4.331453e-03 1.066635e-02 6.817997e+00
## ZRANB3 5.141920e-04 1.386458e-03 1.900650e-03 1.510941e+00
## STOML1 3.629551e-03 1.316359e-02 1.679314e-02 5.194213e+00
## HDAC7 -2.348541e-01 1.358463e-01 -9.900773e-02 1.545089e+02
## ZNF350 -3.507799e-03 -3.638859e-02 -3.989639e-02 3.079408e+01
## SKP1 -1.152790e-01 2.316944e-01 1.164154e-01 1.994948e+02
## PRRG4 -3.415563e-02 -2.012621e-01 -2.354177e-01 7.128888e+01
## CDCA8 -2.973708e-03 9.902675e-03 6.928966e-03 4.144365e+00
## ZDHHC4 4.367026e-03 1.205317e-02 1.642019e-02 1.292518e+01
## IFT122 -6.142553e-03 4.441619e-03 -1.700934e-03 5.680293e+00
## RNASEH2A -1.444512e-02 9.288362e-03 -5.156757e-03 5.784174e+00
## GKAP1 -5.783627e-03 6.967940e-03 1.184313e-03 4.207569e+00
## PODXL2 -1.067683e-03 2.829484e-03 1.761801e-03 9.590814e-01
## MSS51 -3.914752e-03 1.806191e-03 -2.108561e-03 3.117344e+00
## NDEL1 -1.191072e-01 -1.256838e-01 -2.447910e-01 1.360806e+02
## LCAT -7.679512e-03 7.966119e-03 2.866070e-04 4.195648e+00
## FOS -3.243002e+00 4.669091e+00 1.426090e+00 1.240893e+03
## WDR46 1.047462e-02 3.562720e-02 4.610182e-02 2.379193e+01
## ZNF596 -4.851251e-06 2.065212e-03 2.060361e-03 1.332930e+00
## HBG1 6.277838e-01 1.332496e-01 7.610334e-01 5.641323e+01
## DNTTIP2 9.507119e-02 -1.580715e-02 7.926404e-02 5.775232e+01
## RBM34 1.700369e-02 -1.684137e-02 1.623183e-04 2.475350e+01
## DCUN1D1 -8.673181e-02 1.530310e-02 -7.142871e-02 5.525981e+01
## SMAD3 2.839373e-02 8.748802e-03 3.714253e-02 2.079189e+01
## CSRNP2 -1.771186e-02 1.419919e-02 -3.512668e-03 1.500102e+01
## AP2B1 -9.553404e-02 1.785581e-02 -7.767823e-02 1.272108e+02
## ERP44 -3.291994e-02 -8.945334e-02 -1.223733e-01 1.100363e+02
## TTBK2 -1.601242e-02 -6.715304e-03 -2.272772e-02 1.411520e+01
## PHF11 1.928092e-01 -1.657583e-01 2.705087e-02 7.197631e+01
## PLIN4 -1.389573e-01 6.714156e-02 -7.181573e-02 3.790886e+01
## BRMS1L 4.655706e-04 1.940157e-03 2.405728e-03 1.666158e+00
## HDDC3 3.486293e-03 1.625014e-02 1.973643e-02 1.242417e+01
## GTF2H2C_2 -4.783429e-02 3.053585e-02 -1.729845e-02 2.246886e+01
## CCNA1 -1.014901e-01 9.540461e-02 -6.085530e-03 1.004975e+01
## NKAP -2.337571e-02 1.776180e-02 -5.613909e-03 2.439284e+01
## ZDHHC17 -1.040436e-01 1.977912e-02 -8.426453e-02 5.333495e+01
## EIF4A1 3.621167e-01 -4.491226e-01 -8.700593e-02 4.049447e+02
## CCDC97 -1.461997e-02 -3.298285e-02 -4.760282e-02 4.675083e+01
## HMGB1 7.887251e-02 3.908207e-01 4.696932e-01 4.466712e+02
## MFSD9 -3.567224e-02 2.629880e-02 -9.373442e-03 1.612400e+01
## PIP5K1B -1.757511e-02 2.190378e-03 -1.538474e-02 9.413528e+00
## KCTD21 -4.379325e-02 5.580738e-03 -3.821251e-02 2.656310e+01
## GLIPR1 1.218255e-01 -4.144133e-01 -2.925878e-01 2.635109e+02
## ADAM28 8.078706e-03 1.009468e-02 1.817339e-02 8.662680e+00
## TMEM255B -2.798340e-03 9.282700e-04 -1.870070e-03 9.808294e-01
## ATRIP 1.402758e-02 -5.841322e-03 8.186260e-03 8.778928e+00
## RPLP1 1.093546e+00 4.285573e-01 1.522103e+00 3.387761e+02
## TIGD7 -1.696456e-04 9.029463e-03 8.859817e-03 9.061468e+00
## CHORDC1 -9.953198e-03 -1.403354e-02 -2.398674e-02 1.874550e+01
## RHBDD3 -5.631815e-03 3.948413e-03 -1.683401e-03 1.742790e+00
## IGF2R -1.114866e+00 -1.331801e-01 -1.248046e+00 6.692719e+02
## MCM6 2.462900e-02 2.508969e-03 2.713797e-02 2.082129e+01
## LY96 -1.591557e-01 -2.721484e-01 -4.313041e-01 1.737333e+02
## SP3 -4.343303e-01 2.042012e-01 -2.301291e-01 2.218778e+02
## NMNAT1 -1.893966e-02 1.957752e-02 6.378567e-04 1.862133e+01
## PIDD1 5.500668e-03 4.518496e-03 1.001916e-02 2.507303e+00
## MIER3 1.563768e-02 -8.347527e-03 7.290148e-03 1.024188e+01
## AP1G1 2.949901e-03 -1.065268e-01 -1.035769e-01 7.768832e+01
## NPIPB15 7.176215e-03 -2.071688e-03 5.104528e-03 2.924251e+00
## TST -2.913804e-02 3.750405e-02 8.366010e-03 1.558343e+01
## KIF15 8.458897e-03 -3.875050e-03 4.583847e-03 2.471721e+00
## CPVL 8.948405e-02 1.862436e-01 2.757277e-01 1.376264e+02
## NARS1 3.016161e-02 3.708283e-02 6.724445e-02 6.712518e+01
## FERMT3 -4.847761e-01 1.813607e-01 -3.034154e-01 2.103145e+02
## DNAJC17 8.342539e-04 2.028367e-02 2.111792e-02 1.218526e+01
## PWWP2A -2.216470e-02 2.381603e-02 1.651331e-03 2.304911e+01
## TMEM80 1.208993e-02 2.850785e-03 1.494072e-02 1.341032e+01
## PTPN7 6.679522e-02 7.539138e-03 7.433436e-02 4.807064e+01
## TIMM21 6.476466e-03 -4.433232e-03 2.043234e-03 5.163345e+00
## TMX4 -6.278630e-01 6.836542e-02 -5.594976e-01 2.581959e+02
## PPP6R1 5.835240e-03 6.982491e-02 7.566015e-02 7.938191e+01
## FIZ1 4.170570e-03 6.284235e-03 1.045480e-02 5.056317e+00
## CDKN1B -2.356571e-01 1.015589e-01 -1.340982e-01 1.424541e+02
## TAF7 -3.449036e-01 9.275956e-02 -2.521441e-01 2.309299e+02
## CHMP1A -1.411931e-01 1.196761e-01 -2.151697e-02 8.704788e+01
## HCAR3 3.976143e-01 -5.753778e-01 -1.777635e-01 2.279652e+02
## CCDC84 3.867324e-03 5.931704e-03 9.799028e-03 7.097132e+00
## NBN -3.080902e-01 2.750724e-01 -3.301785e-02 1.330333e+02
## ATP9B -7.065470e-03 8.842189e-03 1.776719e-03 6.902785e+00
## SMIM30 1.233416e-02 -5.245460e-03 7.088695e-03 1.025456e+01
## DPH3 -5.048818e-02 -1.861572e-02 -6.910390e-02 4.944974e+01
## CREB5 -7.208903e-01 3.007924e-01 -4.200979e-01 2.863596e+02
## GTF2H1 -4.254983e-04 1.356970e-02 1.314420e-02 2.305593e+01
## GLI4 2.159988e-03 2.607892e-03 4.767880e-03 1.514855e+00
## SDCCAG8 -4.342028e-03 -8.520473e-03 -1.286250e-02 1.330912e+01
## MRPS26 1.408555e-02 1.219564e-03 1.530512e-02 7.574787e+00
## RAB9A -1.138913e-02 -3.749597e-03 -1.513873e-02 1.980506e+01
## CORO1A -2.118747e+00 1.517959e+00 -6.007874e-01 9.710792e+02
## C17orf49 -5.706515e-02 1.031584e-01 4.609324e-02 4.899262e+01
## PSMB10 -2.066481e-03 1.790168e-01 1.769504e-01 6.302457e+01
## SCYL1 -7.877049e-02 2.845466e-02 -5.031583e-02 4.785456e+01
## CORO1C -2.046239e-01 1.784652e-01 -2.615871e-02 1.635465e+02
## TENT4A 1.296761e-02 -1.134203e-03 1.183340e-02 1.040017e+01
## CC2D2B -4.080623e-03 -8.741970e-03 -1.282259e-02 5.099503e+00
## PXK 5.244019e-03 -1.257999e-01 -1.205559e-01 6.834272e+01
## ZFP69 1.072525e-03 2.795389e-03 3.867915e-03 3.746610e+00
## MFSD14A -5.108297e-02 -6.558078e-02 -1.166637e-01 7.224146e+01
## TATDN2 -2.263188e-02 3.719888e-02 1.456701e-02 6.748421e+01
## PTPN22 7.569096e-02 -5.491065e-02 2.078031e-02 3.875292e+01
## DAPP1 -2.679392e-01 2.104627e-02 -2.468930e-01 1.448762e+02
## CCAR1 -2.333451e-02 2.872044e-02 5.385927e-03 3.225730e+01
## ATPSCKMT 1.492112e-03 -6.541476e-03 -5.049364e-03 5.572371e+00
## ZDHHC12 -4.893051e-02 2.461441e-02 -2.431610e-02 1.645825e+01
## TARS1 -1.987640e-02 3.358401e-02 1.370761e-02 3.090826e+01
## TRAPPC8 -1.328806e-01 6.390078e-02 -6.897983e-02 6.987621e+01
## STXBP5 -2.008696e-01 2.669280e-01 6.605833e-02 1.107839e+02
## PTPDC1 7.938034e-04 1.321608e-03 2.115411e-03 1.023734e+00
## ANAPC11 -3.095818e-02 3.561689e-02 4.658716e-03 1.364216e+01
## EVI5 -1.956452e-02 1.106776e-02 -8.496759e-03 1.319743e+01
## ODF2L -2.455797e-02 5.411079e-03 -1.914689e-02 1.886988e+01
## SAP30 -1.064098e-01 -2.355565e-02 -1.299654e-01 3.269407e+01
## PRUNE1 -1.309898e-02 -4.013398e-02 -5.323296e-02 4.397889e+01
## TMEM87B -8.691503e-03 2.768401e-02 1.899251e-02 2.440127e+01
## RTRAF 3.796221e-02 5.551888e-02 9.348109e-02 7.284550e+01
## CHMP2A -3.820743e-01 5.393262e-02 -3.281416e-01 2.089416e+02
## ARMC7 -4.310011e-02 3.337210e-02 -9.728009e-03 2.531383e+01
## SF3B5 -9.616340e-02 1.498607e-01 5.369734e-02 6.150043e+01
## SAPCD1 -3.541162e-03 2.853849e-03 -6.873129e-04 1.781312e+00
## AHCTF1 -2.694030e-01 1.564986e-01 -1.129044e-01 1.191115e+02
## SPG7 1.325811e-02 3.258520e-02 4.584331e-02 3.092756e+01
## GNLY 7.360551e-01 -7.489789e-01 -1.292378e-02 1.852976e+02
## ZNF446 5.375767e-03 8.025682e-03 1.340145e-02 5.543368e+00
## BTF3L4 -3.178808e-02 1.480044e-02 -1.698763e-02 4.188897e+01
## CDV3 -1.665022e-01 -6.198516e-03 -1.727007e-01 1.982540e+02
## UNC93B1 -5.259864e-02 -6.454055e-02 -1.171392e-01 5.683454e+01
## DSCC1 6.950508e-05 -2.933321e-03 -2.863816e-03 1.277179e+00
## ZNF177 -3.429226e-04 -2.246147e-03 -2.589070e-03 1.370208e+00
## NUP155 7.703486e-03 2.653461e-03 1.035695e-02 1.010517e+01
## MPZ -1.900779e-02 2.108709e-02 2.079303e-03 1.056260e+01
## NDUFAF1 -2.246542e-02 2.032339e-03 -2.043308e-02 1.763660e+01
## MRPL54 1.205870e-02 4.747901e-02 5.953770e-02 2.150218e+01
## WDR11 1.424217e-02 3.495212e-02 4.919429e-02 3.121352e+01
## DAZAP2 -1.135860e+00 2.655520e-01 -8.703084e-01 8.944180e+02
## OSBPL5 4.495204e-03 -2.073715e-02 -1.624195e-02 8.902178e+00
## TFE3 -1.817160e-01 -6.015826e-02 -2.418743e-01 1.739549e+02
## BRAT1 -3.551691e-02 3.088685e-02 -4.630058e-03 1.303038e+01
## SREK1 3.091756e-02 -3.433733e-02 -3.419771e-03 3.240577e+01
## PFDN5 7.750622e-02 8.550977e-01 9.326039e-01 4.489034e+02
## PPAT 2.576153e-03 4.065761e-03 6.641914e-03 3.558442e+00
## INTS7 -6.052584e-03 -3.468745e-03 -9.521330e-03 8.363574e+00
## MAPK13 1.367186e-01 1.012262e-01 2.379448e-01 1.071179e+02
## SERPINB10 -7.099645e-02 9.142617e-02 2.042972e-02 1.376653e+01
## VEZF1 -7.345453e-02 -7.138525e-03 -8.059306e-02 7.796185e+01
## CYBC1 -3.927204e-01 2.431707e-02 -3.684034e-01 1.942781e+02
## HBS1L -1.386357e-02 2.260939e-02 8.745821e-03 2.258934e+01
## RBM3 5.540638e-02 3.035300e-01 3.589364e-01 2.169976e+02
## PTPN23 -9.248247e-03 1.555549e-02 6.307242e-03 1.169440e+01
## TOMM6 1.254159e-02 8.241899e-02 9.496057e-02 5.964225e+01
## ROCK2 -5.574334e-02 1.216065e-02 -4.358269e-02 2.984139e+01
## RNF215 3.161186e-03 2.140771e-03 5.301957e-03 3.557923e+00
## GTF2A1 -3.481563e-02 5.379388e-02 1.897824e-02 3.817889e+01
## CASC3 -2.033720e-01 2.970681e-01 9.369605e-02 1.925145e+02
## SLC35B2 1.804841e-02 1.218704e-02 3.023545e-02 2.146726e+01
## MRPL37 -2.745245e-02 3.397617e-02 6.523715e-03 1.999752e+01
## SLTM -1.028936e-01 6.217241e-02 -4.072122e-02 9.324867e+01
## CHKB -8.022219e-02 1.026281e-01 2.240593e-02 8.134594e+01
## C16orf86 3.292884e-03 2.350825e-03 5.643709e-03 1.445341e+00
## RAB22A -4.916125e-02 1.296325e-02 -3.619800e-02 4.643127e+01
## FBXO48 -5.985744e-03 3.866784e-03 -2.118960e-03 5.315102e+00
## FTH1 -1.228902e+01 8.594249e+00 -3.694775e+00 5.797449e+03
## CHD2 -2.453428e-01 -1.687397e-02 -2.622168e-01 1.699545e+02
## FTO -7.290298e-03 1.029416e-02 3.003860e-03 6.696907e+00
## VCPKMT -6.589904e-02 3.580942e-02 -3.008961e-02 3.288134e+01
## UBE3C -6.541353e-03 3.511391e-02 2.857256e-02 4.073525e+01
## UQCC3 3.834342e-03 5.288966e-03 9.123308e-03 2.492238e+00
## SNAP23 -3.851343e-01 1.250733e-01 -2.600609e-01 2.186491e+02
## KPNB1 -4.721093e-01 -1.396413e-01 -6.117506e-01 3.424025e+02
## RUSC1 1.071470e-02 -6.736074e-03 3.978629e-03 7.610170e+00
## KLC1 -1.157715e-02 -3.208394e-02 -4.366109e-02 5.548037e+01
## PDS5B -3.008056e-02 -1.518926e-02 -4.526982e-02 3.839535e+01
## CFAP410 1.677596e-02 6.269543e-04 1.740292e-02 5.579006e+00
## MYO1A 5.326564e-04 -1.550329e-03 -1.017673e-03 6.631207e-01
## CMBL -9.557376e-04 -6.570464e-04 -1.612784e-03 7.165235e-01
## ADCY9 -2.955635e-03 -4.827814e-03 -7.783449e-03 3.694763e+00
## ACSF3 5.249037e-04 1.865840e-02 1.918331e-02 1.153599e+01
## CTDP1 -4.786763e-02 4.473587e-03 -4.339404e-02 2.589872e+01
## PRICKLE3 -3.737852e-03 -2.037127e-04 -3.941565e-03 3.878913e+00
## CARD19 -4.487974e-02 2.284033e-02 -2.203941e-02 1.928393e+01
## CCDC130 9.041346e-03 9.285000e-03 1.832635e-02 1.241224e+01
## ITPA 1.249403e-02 2.799892e-02 4.049295e-02 1.822375e+01
## MED24 1.743986e-02 -1.727298e-02 1.668773e-04 1.405282e+01
## CBX1 -3.495936e-02 6.013195e-02 2.517259e-02 4.810889e+01
## PAM 7.203416e-02 -9.339111e-02 -2.135695e-02 3.321219e+01
## MIA3 -2.106669e-03 -8.047207e-02 -8.257874e-02 6.565482e+01
## MGMT 1.737480e-02 3.927366e-03 2.130216e-02 5.498776e+00
## TAX1BP1 -2.433383e-01 1.681454e-01 -7.519289e-02 1.480015e+02
## GTF2H4 9.238441e-03 -2.420503e-03 6.817938e-03 6.100800e+00
## DNAJC14 -3.862596e-02 2.370454e-02 -1.492142e-02 3.068707e+01
## SLC12A6 -5.857147e-01 1.564471e-01 -4.292676e-01 2.525683e+02
## RPS9 -8.564039e-01 1.731162e+00 8.747576e-01 7.184505e+02
## NUDT9 5.801882e-03 -6.513739e-03 -7.118571e-04 5.581794e+00
## TEX30 3.415560e-04 5.177202e-03 5.518758e-03 4.392912e+00
## VAV2 -3.362782e-03 1.271023e-02 9.347452e-03 8.208061e+00
## SPOPL -2.093223e-01 -1.038966e-01 -3.132188e-01 1.486251e+02
## TMEM123 -8.132977e-01 -7.242458e-02 -8.857223e-01 3.200924e+02
## TNNT3 -4.346641e-03 -1.636130e-02 -2.070795e-02 6.990103e+00
## MRM3 2.649973e-03 7.178411e-03 9.828384e-03 5.350658e+00
## TIAF1 -3.876472e-02 -4.353424e-02 -8.229896e-02 2.625894e+01
## ABCB7 7.722435e-03 3.385053e-03 1.110749e-02 1.423068e+01
## VEGFB 2.839862e-02 -1.320390e-03 2.707823e-02 7.137093e+00
## PIN1 -3.169062e-02 4.838128e-02 1.669065e-02 1.756315e+01
## CNP -4.600156e-03 -5.508617e-02 -5.968633e-02 3.570076e+01
## CCDC28B 6.328996e-03 3.503226e-03 9.832222e-03 2.897535e+00
## DNAJC11 1.171981e-02 1.141544e-03 1.286135e-02 1.071124e+01
## SRC 1.490264e-02 -2.975363e-02 -1.485099e-02 1.480675e+01
## TMED3 -5.462557e-02 6.462696e-02 1.000139e-02 2.822494e+01
## GXYLT1 -1.568265e-02 -1.406736e-03 -1.708938e-02 1.563106e+01
## LAMTOR2 -7.460458e-02 7.825882e-02 3.654241e-03 3.675093e+01
## TRPV2 -2.862534e-02 5.142861e-02 2.280327e-02 3.707748e+01
## IFNAR2 -1.577837e-01 5.371468e-02 -1.040690e-01 1.200024e+02
## ASH2L -2.792101e-02 -1.872155e-02 -4.664256e-02 4.545206e+01
## TBP -6.122183e-03 4.616454e-03 -1.505728e-03 9.441433e+00
## CHAF1A -3.431012e-03 -4.298206e-03 -7.729218e-03 6.383250e+00
## DDX52 1.327488e-02 -1.781573e-03 1.149331e-02 1.568359e+01
## RNF139 -3.666834e-02 -2.080425e-02 -5.747259e-02 4.692450e+01
## NPHP1 6.799679e-04 -1.055046e-03 -3.750782e-04 3.792401e-01
## ZNF707 -1.974333e-03 -3.592392e-03 -5.566725e-03 4.475382e+00
## ZNF430 -2.456060e-02 1.041070e-02 -1.414991e-02 1.709272e+01
## ALDH4A1 -1.468422e-02 5.183803e-03 -9.500412e-03 5.170455e+00
## HLA-C 4.416462e+00 4.806805e+00 9.223267e+00 4.621714e+03
## SEMA4B -9.680978e-02 3.454295e-02 -6.226683e-02 6.337355e+01
## GEMIN6 5.691673e-03 6.584392e-03 1.227606e-02 1.045493e+01
## TIMM23 -1.504755e-02 1.935773e-02 4.310176e-03 1.865090e+01
## ATP6V1E1 -2.621972e-01 2.213365e-01 -4.086067e-02 2.073322e+02
## NKIRAS1 6.168010e-03 -2.992548e-03 3.175462e-03 5.272457e+00
## ATXN3 -2.502538e-02 5.969493e-03 -1.905589e-02 2.255061e+01
## GOLGA6L4 5.893755e-03 -2.161623e-03 3.732132e-03 2.826771e+00
## MLEC -7.553622e-02 7.109345e-02 -4.442770e-03 7.421431e+01
## EIF3K 2.009198e-01 1.195995e-01 3.205193e-01 1.420417e+02
## CNOT3 -4.642769e-02 2.544089e-02 -2.098680e-02 3.386693e+01
## DIS3L2 5.468475e-03 3.938761e-03 9.407236e-03 6.166156e+00
## GLYR1 -8.294371e-02 1.490418e-02 -6.803952e-02 9.631619e+01
## TBC1D12 7.380460e-03 -6.551553e-04 6.725305e-03 3.568231e+00
## PURB -6.116351e-02 1.587846e-02 -4.528505e-02 4.766740e+01
## PBXIP1 4.390169e-01 6.861698e-03 4.458786e-01 2.398842e+02
## PBRM1 -3.993288e-02 3.082506e-02 -9.107814e-03 3.209826e+01
## HCFC1R1 -2.480518e-02 6.259145e-03 -1.854603e-02 7.651438e+00
## MED21 -5.394888e-03 -8.535487e-03 -1.393037e-02 1.232508e+01
## GPAT4 1.008803e-02 -1.196894e-01 -1.096014e-01 6.591700e+01
## CCDC146 7.772064e-03 -1.417047e-02 -6.398404e-03 8.725564e+00
## GNB1L 2.131794e-03 1.387672e-03 3.519466e-03 8.240062e-01
## TRUB2 -6.183508e-03 1.063151e-02 4.448002e-03 1.008794e+01
## AMMECR1L -4.824733e-03 1.475087e-02 9.926139e-03 1.874704e+01
## NXT2 -7.471909e-03 -1.552197e-02 -2.299388e-02 1.392759e+01
## PPP2CA -1.071734e-01 -4.890033e-02 -1.560737e-01 1.466263e+02
## COG6 -4.401086e-03 -7.853660e-03 -1.225475e-02 1.039650e+01
## NPRL3 1.855222e-02 -7.602058e-03 1.095016e-02 8.948226e+00
## NEDD9 -2.474539e-01 -1.281862e-01 -3.756401e-01 1.483511e+02
## CD68 -1.979791e-02 -3.428505e-01 -3.626484e-01 2.689111e+02
## INTS8 -3.243210e-02 7.573986e-02 4.330776e-02 6.157028e+01
## HSPH1 -2.141354e-02 -1.907286e-02 -4.048640e-02 2.334316e+01
## CCDC77 -2.663184e-03 5.302067e-03 2.638883e-03 6.643483e+00
## TMEM269 2.953667e-04 -1.089820e-03 -7.944530e-04 3.627007e-01
## ASRGL1 1.328048e-02 3.467713e-03 1.674820e-02 8.124131e+00
## TARP 5.394935e-02 1.918086e-02 7.313022e-02 2.546848e+01
## CTU2 -2.860443e-04 4.611244e-03 4.325200e-03 2.152264e+00
## PHKG2 -3.131638e-03 6.477770e-02 6.164606e-02 3.977870e+01
## SIGLEC5 -2.722763e-01 -8.802798e-02 -3.603043e-01 1.660941e+02
## FARP1 2.274951e-03 -2.299730e-03 -2.477916e-05 1.287432e+00
## CLEC2B 3.594137e-01 -7.097660e-01 -3.503523e-01 3.258965e+02
## FAM104A 1.161887e-02 2.159708e-02 3.321595e-02 4.566419e+01
## CTNND1 -2.767134e-02 1.754463e-02 -1.012670e-02 1.251728e+01
## VSTM4 5.184335e-04 1.139609e-03 1.658043e-03 7.502331e-01
## NSUN5 -1.208845e-02 6.002087e-02 4.793242e-02 3.017948e+01
## STARD3 -4.938082e-02 1.347985e-02 -3.590097e-02 4.642118e+01
## LIMK1 -4.370453e-02 1.903872e-03 -4.180066e-02 2.748445e+01
## MED17 -2.151705e-02 2.324207e-02 1.725021e-03 2.408551e+01
## GCC2 -4.323901e-02 -1.740940e-02 -6.064841e-02 3.305878e+01
## GATD1 2.509336e-02 3.255568e-04 2.541892e-02 1.717060e+01
## HMG20A 2.070064e-03 1.228753e-02 1.435759e-02 1.444773e+01
## SEMA3C -2.889447e-03 -7.620250e-03 -1.050970e-02 4.917944e+00
## GON7 -4.692558e-03 5.733540e-03 1.040982e-03 7.016080e+00
## LSMEM1 3.744049e-02 3.975796e-03 4.141629e-02 1.645616e+01
## SECISBP2L -5.641679e-02 2.120536e-02 -3.521143e-02 3.151118e+01
## TMEM86A -8.710573e-04 -2.144250e-03 -3.015308e-03 1.475551e+00
## NABP2 -2.472069e-03 1.292783e-02 1.045576e-02 8.853575e+00
## MYCL -2.486749e-02 -9.960594e-03 -3.482808e-02 1.579197e+01
## DBF4B 3.433833e-04 -2.125960e-03 -1.782577e-03 1.444283e+00
## C2orf88 -4.518199e-02 5.782293e-02 1.264093e-02 3.627545e+01
## CSNK1A1 -2.145714e-02 -1.400177e-01 -1.614748e-01 1.691170e+02
## BCL2L12 -6.854376e-03 1.066701e-02 3.812636e-03 7.632731e+00
## RAB40C -1.447186e-02 1.183304e-02 -2.638817e-03 8.201873e+00
## MRTO4 1.870682e-02 6.348426e-03 2.505525e-02 1.373769e+01
## HIPK2 -6.520891e-02 6.827258e-02 3.063669e-03 3.288403e+01
## RTL5 -1.602538e-03 6.342460e-03 4.739921e-03 2.460198e+00
## AKAP17A -5.973675e-02 1.178447e-02 -4.795228e-02 6.629057e+01
## KANSL3 2.842417e-02 -1.950751e-02 8.916663e-03 3.350078e+01
## NUDT6 -8.433467e-04 1.534310e-03 6.909635e-04 6.747733e-01
## SAV1 -5.562312e-04 -7.974662e-03 -8.530893e-03 6.493361e+00
## NAGPA 2.496115e-02 -6.892784e-03 1.806837e-02 9.030750e+00
## TMEM138 6.410495e-03 7.061060e-03 1.347155e-02 1.263962e+01
## TANC2 -2.152471e-02 -2.576497e-03 -2.410120e-02 1.232253e+01
## EPB41L2 -2.844953e-03 7.859812e-03 5.014858e-03 3.493209e+00
## FAM3A -1.225454e-02 2.839460e-02 1.614006e-02 1.098795e+01
## POLR3D -3.736679e-03 1.024848e-02 6.511799e-03 8.207102e+00
## UGP2 -4.716410e-02 -8.783886e-02 -1.350030e-01 1.229204e+02
## TMSB10 4.044550e+00 -2.229007e+00 1.815544e+00 1.540732e+03
## GINS1 -5.190543e-03 1.360819e-03 -3.829724e-03 1.987370e+00
## OPHN1 -3.836987e-03 -1.428857e-02 -1.812555e-02 1.397813e+01
## VAMP5 5.518865e-02 -1.495424e-01 -9.435373e-02 4.978188e+01
## SELENOO -2.374466e-02 3.220581e-02 8.461147e-03 1.127924e+01
## MTG2 -1.297396e-02 -5.209378e-03 -1.818333e-02 1.532331e+01
## ZNF140 1.181629e-02 -6.692432e-03 5.123856e-03 1.319130e+01
## COX4I1 3.861016e-01 3.218495e-01 7.079511e-01 3.397489e+02
## WDR45B -3.094832e-02 1.248944e-02 -1.845888e-02 3.532182e+01
## WNT4 1.060520e-03 9.994913e-05 1.160469e-03 5.327730e-01
## AVIL -3.711844e-02 -1.367514e-02 -5.079358e-02 1.752020e+01
## GNAS 1.095662e-01 5.712172e-01 6.807834e-01 6.489505e+02
## RFX1 -7.485394e-03 6.790318e-03 -6.950759e-04 5.288178e+00
## PNRC1 -7.164077e-01 -1.448672e-02 -7.308945e-01 4.070225e+02
## SYF2 4.104773e-02 -1.541501e-01 -1.131023e-01 1.314455e+02
## IL10RA 2.097894e-01 -8.379341e-02 1.259960e-01 1.749021e+02
## LIMD2 -4.852899e-01 7.544182e-01 2.691283e-01 3.674818e+02
## BRD3OS 1.109349e-02 -3.664473e-03 7.429020e-03 7.790026e+00
## NUTF2 -6.767213e-03 4.075020e-02 3.398298e-02 3.542285e+01
## DLST 4.722218e-02 -1.344238e-02 3.377979e-02 6.467866e+01
## REXO5 2.753686e-04 2.541321e-03 2.816689e-03 1.370325e+00
## SMAP1 1.392895e-02 -1.366523e-02 2.637188e-04 2.645970e+01
## PNN 1.198130e-01 -2.636554e-02 9.344745e-02 9.887861e+01
## IFNAR1 -3.314907e-01 1.591827e-02 -3.155724e-01 1.941759e+02
## SULT1A1 -8.895200e-02 2.291265e-01 1.401745e-01 1.135744e+02
## PUSL1 6.891529e-03 4.016995e-03 1.090852e-02 3.141627e+00
## MED14OS -3.327610e-03 2.519881e-03 -8.077296e-04 1.280510e+00
## TMEM39A -1.081998e-02 -1.294243e-02 -2.376241e-02 1.924127e+01
## BBS12 -2.377801e-03 7.808156e-04 -1.596986e-03 1.604934e+00
## ADGRA2 4.466581e-03 -3.790639e-03 6.759418e-04 1.806269e+00
## CBWD2 -2.266527e-02 -2.571208e-03 -2.523648e-02 2.994019e+01
## CDCA5 -1.388179e-02 1.250510e-02 -1.376697e-03 4.949994e+00
## ZNFX1 -2.533187e-01 -8.833994e-02 -3.416586e-01 1.987261e+02
## BRWD1 -3.164431e-02 5.421056e-02 2.256625e-02 4.859498e+01
## CBFA2T3 2.324118e-02 -2.860611e-02 -5.364925e-03 1.983658e+01
## NOC2L 3.062497e-02 -5.352952e-05 3.057144e-02 1.878158e+01
## FAM83G 1.186090e-03 5.269750e-03 6.455840e-03 2.690582e+00
## TAB2 -2.800355e-01 4.439366e-02 -2.356418e-01 1.842722e+02
## TMEM219 1.016256e-01 -1.445951e-01 -4.296949e-02 7.548929e+01
## HEATR1 -8.712913e-03 1.841457e-02 9.701657e-03 9.263991e+00
## GIMAP1-GIMAP5 7.290054e-02 -6.243858e-03 6.665668e-02 3.764135e+01
## HAPLN4 -2.745560e-03 8.912388e-04 -1.854321e-03 1.092929e+00
## ZNF525 4.493938e-03 2.810802e-03 7.304740e-03 4.009270e+00
## SUCLG2 1.023572e-02 1.142753e-02 2.166325e-02 1.956281e+01
## GPC2 -3.569661e-04 1.765493e-03 1.408527e-03 8.825993e-01
## ZNF148 -1.192259e-01 1.877490e-02 -1.004510e-01 7.321317e+01
## PSMC2 -3.987085e-02 4.528384e-02 5.412986e-03 5.054249e+01
## UNC5A -3.391811e-03 9.942412e-04 -2.397569e-03 8.168418e-01
## ATP6V1G1 1.376203e-01 -6.417945e-02 7.344082e-02 1.352140e+02
## CREBBP -1.002855e-01 -7.894049e-02 -1.792260e-01 1.134018e+02
## NR1H2 -6.307540e-02 2.481387e-02 -3.826152e-02 3.380674e+01
## PARK7 -7.065043e-02 1.229643e-01 5.231384e-02 1.207459e+02
## MTFP1 -1.829663e-02 2.237665e-02 4.080016e-03 7.201046e+00
## KRT10 2.066372e-03 -8.803318e-03 -6.736946e-03 6.006526e+00
## WDR1 -3.489651e-01 3.148402e-01 -3.412482e-02 3.990696e+02
## NFE2 -1.242665e+00 4.956659e-01 -7.469993e-01 5.156431e+02
## PAK1IP1 4.472548e-03 2.845693e-03 7.318242e-03 7.219973e+00
## PHF2 -5.429211e-02 1.688171e-02 -3.741040e-02 3.990543e+01
## ARRDC5 7.475005e-04 1.260939e-03 2.008440e-03 9.159617e-01
## MCM8 4.269079e-03 -7.352648e-03 -3.083569e-03 4.723672e+00
## SHARPIN -3.448267e-02 5.385218e-02 1.936951e-02 1.932599e+01
## AP4E1 -4.583706e-03 -1.104426e-02 -1.562796e-02 1.253658e+01
## CTSK -1.286236e-02 6.533258e-03 -6.329105e-03 8.058107e+00
## ZFAND3 -9.478039e-02 -2.368046e-02 -1.184609e-01 9.103823e+01
## CCDC13 1.932885e-03 1.903817e-03 3.836702e-03 1.952256e+00
## C6orf163 2.770045e-03 -1.185294e-03 1.584751e-03 1.098261e+00
## WRNIP1 7.235438e-03 1.227245e-02 1.950789e-02 2.989079e+01
## ECHS1 5.180877e-03 2.921392e-02 3.439480e-02 1.847767e+01
## MAFG 7.961535e-02 -9.853227e-02 -1.891692e-02 4.899454e+01
## CHIT1 8.322765e-02 -1.751875e-01 -9.195986e-02 2.777570e+01
## KLHL7 -1.239638e-02 4.813424e-04 -1.191504e-02 1.368324e+01
## TECR 2.854391e-02 5.711282e-02 8.565673e-02 2.935526e+01
## ATP5ME -7.563593e-02 1.038695e-01 2.823360e-02 3.814345e+01
## RACGAP1 1.189043e-02 -1.125482e-02 6.356089e-04 9.414088e+00
## FLYWCH2 -9.036995e-03 7.724891e-03 -1.312103e-03 2.980148e+00
## SNIP1 1.429946e-02 -1.633436e-02 -2.034905e-03 1.656125e+01
## IPO4 -1.555319e-03 1.375885e-02 1.220353e-02 1.081180e+01
## TEN1 -1.983202e-02 2.369071e-02 3.858683e-03 9.883984e+00
## COIL 9.153588e-03 -2.909852e-03 6.243735e-03 1.150454e+01
## ELP5 2.046809e-02 -7.747678e-03 1.272041e-02 1.575679e+01
## CBL -3.305853e-01 1.691597e-01 -1.614256e-01 1.408536e+02
## RPUSD1 -1.688172e-02 2.237334e-02 5.491616e-03 6.725533e+00
## SMIM13 5.275199e-03 -3.042072e-03 2.233127e-03 5.972887e+00
## LRRC27 5.011856e-03 -2.294052e-03 2.717804e-03 3.470049e+00
## SLC35E4 -2.079765e-03 -5.144279e-04 -2.594193e-03 9.743732e-01
## SDHAF1 -4.169685e-03 1.396966e-02 9.799975e-03 6.307657e+00
## CEBPG -2.926744e-03 -1.867483e-02 -2.160157e-02 3.309665e+01
## NDUFAF8 4.290796e-04 1.180497e-02 1.223405e-02 5.177936e+00
## ARL5B -1.663313e-02 -1.980445e-02 -3.643757e-02 1.800796e+01
## ZNF594 -2.678821e-03 4.577315e-03 1.898494e-03 2.272726e+00
## NBPF19 3.778716e-01 -1.731617e-01 2.047099e-01 1.276146e+02
## ADGRE5 -1.422547e+00 7.268572e-01 -6.956896e-01 7.254363e+02
## NIPSNAP2 2.913268e-02 -1.101928e-02 1.811340e-02 3.222612e+01
## HPS6 -2.397615e-02 2.061101e-03 -2.191505e-02 1.705239e+01
## TRDMT1 -2.907265e-03 -5.736176e-03 -8.643441e-03 7.586136e+00
## TBL3 5.640021e-03 1.703282e-02 2.267284e-02 7.311305e+00
## RAP2C -1.009630e-01 -1.224579e-01 -2.234209e-01 1.361175e+02
## MKRN1 -2.792780e-01 2.447966e-02 -2.547983e-01 2.536822e+02
## PRF1 -6.015273e-03 -3.972113e-01 -4.032265e-01 1.403671e+02
## PLXNB1 -1.413124e-04 -1.923688e-03 -2.065000e-03 1.087957e+00
## SMDT1 2.434592e-02 3.278068e-02 5.712660e-02 2.230625e+01
## PUF60 1.839547e-02 5.433686e-02 7.273233e-02 4.447099e+01
## XPR1 -2.031598e-02 -5.729262e-04 -2.088890e-02 1.933676e+01
## P2RX7 -4.216996e-02 5.168488e-03 -3.700148e-02 1.834614e+01
## TMA7 -1.486582e-01 2.808614e-01 1.322032e-01 2.017519e+02
## SGO2 1.597048e-03 6.560094e-03 8.157142e-03 4.123897e+00
## MRPL52 -2.591124e-02 3.243595e-02 6.524713e-03 1.131877e+01
## ARMCX6 1.845429e-02 6.189527e-03 2.464382e-02 1.751051e+01
## ITGA2B 1.323276e-01 -6.269525e-01 -4.946249e-01 1.657373e+02
## DUSP11 -2.032603e-02 1.356092e-02 -6.765111e-03 2.165854e+01
## POLE 3.253989e-02 -3.049810e-02 2.041783e-03 1.773988e+01
## UBALD2 4.382125e-02 -3.473088e-01 -3.034876e-01 1.670303e+02
## FADD -7.503223e-02 9.857995e-02 2.354772e-02 5.581026e+01
## PRKRIP1 3.100052e-02 -2.290891e-02 8.091618e-03 2.551916e+01
## PEF1 -1.571013e-01 9.213632e-02 -6.496501e-02 7.664237e+01
## HTRA4 3.105667e-03 -3.032945e-03 7.272200e-05 1.725504e+00
## GABBR1 5.739401e-02 -5.328138e-02 4.112630e-03 3.953987e+01
## IFFO1 -3.261791e-02 1.385576e-02 -1.876215e-02 2.912753e+01
## FANCC 2.560880e-03 -2.560806e-04 2.304800e-03 2.008549e+00
## FAM160B1 -1.237196e-01 -5.264280e-02 -1.763624e-01 9.024988e+01
## EMC6 -1.087688e-02 1.323370e-02 2.356815e-03 8.438409e+00
## ZBTB47 -9.926084e-03 -5.130341e-03 -1.505642e-02 1.085733e+01
## MTHFD1 1.547431e-02 -1.098097e-02 4.493342e-03 1.111267e+01
## FAM50A 7.651052e-02 2.068723e-02 9.719775e-02 5.044365e+01
## NWD1 1.159726e-03 7.398664e-04 1.899592e-03 6.645564e-01
## VPS53 -2.103123e-02 1.362872e-03 -1.966835e-02 2.735479e+01
## NFE2L2 -1.675868e-01 -7.142046e-02 -2.390072e-01 1.273963e+02
## CD180 2.193222e-02 2.438072e-02 4.631294e-02 2.432695e+01
## PHF19 1.732248e-02 1.679785e-02 3.412033e-02 2.429334e+01
## TOX4 -9.606130e-02 2.087299e-02 -7.518831e-02 9.386951e+01
## LRRC20 -5.432664e-03 2.484058e-03 -2.948606e-03 2.350938e+00
## LYSMD1 6.747224e-03 3.433470e-03 1.018069e-02 5.145209e+00
## DPP7 1.000496e-01 1.005222e-02 1.101018e-01 2.498545e+01
## RNASEL -1.281137e-01 1.850738e-02 -1.096063e-01 7.443882e+01
## RANBP2 -1.031850e-01 3.630111e-02 -6.688393e-02 7.534771e+01
## PLPPR2 -1.648732e-01 1.013851e-01 -6.348813e-02 9.493517e+01
## MTREX 1.417348e-02 1.571807e-02 2.989155e-02 2.840722e+01
## RIPK1 -6.746852e-02 1.799742e-02 -4.947110e-02 6.492587e+01
## MARF1 -2.375183e-01 1.251480e-01 -1.123703e-01 1.548640e+02
## OSBPL3 1.326319e-02 5.467009e-03 1.873020e-02 1.017479e+01
## MRPL20 -4.132392e-02 6.790929e-02 2.658537e-02 3.487864e+01
## HEATR5B -5.136621e-02 2.065958e-02 -3.070663e-02 3.040281e+01
## RHD -6.547341e-03 7.673626e-03 1.126285e-03 3.174576e+00
## MAST3 -1.865001e-01 2.088431e-01 2.234296e-02 1.388694e+02
## OSER1 1.183300e-01 -2.032756e-01 -8.494564e-02 1.328264e+02
## PES1 1.604088e-02 3.291438e-02 4.895526e-02 2.375141e+01
## LEMD2 -2.295725e-02 -8.528105e-03 -3.148536e-02 4.078282e+01
## RP9 1.514616e-02 -1.001154e-03 1.414501e-02 7.968395e+00
## APOBEC3D 1.557552e-02 1.119228e-03 1.669475e-02 1.035655e+01
## ZFPM1 -1.987663e-03 -6.437010e-04 -2.631364e-03 8.856199e-01
## CPSF1 -2.832476e-02 4.808832e-02 1.976356e-02 2.130243e+01
## EXOSC5 5.329054e-03 6.880072e-03 1.220913e-02 3.921173e+00
## VENTX 8.742011e-04 -1.453138e-02 -1.365718e-02 8.677281e+00
## LAMP2 -5.505702e-01 -5.140882e-02 -6.019790e-01 3.942402e+02
## NFIC 1.357117e-03 1.371171e-02 1.506882e-02 1.359472e+01
## PIGK -2.823517e-02 1.830316e-02 -9.932010e-03 2.126640e+01
## ATP2C1 -3.151682e-02 -1.036491e-03 -3.255331e-02 3.465919e+01
## DR1 -1.218343e-01 8.367569e-03 -1.134668e-01 1.081880e+02
## NUP214 -2.582761e-01 3.014765e-01 4.320034e-02 1.911196e+02
## CLEC12A -1.072752e+00 2.242306e-01 -8.485217e-01 3.170706e+02
## PKHD1L1 -1.231517e-02 -3.875354e-03 -1.619053e-02 6.406403e+00
## ATP1A3 3.153968e-03 3.213407e-04 3.475309e-03 1.207690e+00
## TM2D2 -1.211440e-02 -3.027936e-03 -1.514234e-02 1.716392e+01
## NFYB -1.970442e-02 1.004011e-02 -9.664310e-03 2.009117e+01
## BOLA2-SMG1P6 -4.378703e-03 -2.147870e-02 -2.585740e-02 2.756536e+01
## NUPR1 -7.947587e-04 -6.795770e-04 -1.474336e-03 7.320806e-01
## ATP5IF1 1.347603e-03 3.586013e-02 3.720773e-02 3.062931e+01
## DNAJA4 6.907389e-03 6.107967e-03 1.301536e-02 7.150480e+00
## DMTF1 -5.797342e-02 1.382259e-02 -4.415083e-02 4.803148e+01
## C11orf58 2.516758e-02 -6.067529e-02 -3.550772e-02 1.029291e+02
## HSPB1 -1.824719e-02 -3.436352e-02 -5.261071e-02 6.645424e+00
## FGD6 -7.402517e-03 1.403399e-03 -5.999118e-03 3.307366e+00
## KAT2B -1.447077e-01 6.988515e-02 -7.482255e-02 8.504289e+01
## MXRA7 -8.409565e-02 1.414451e-01 5.734947e-02 3.405797e+01
## VPS50 5.394230e-03 1.026929e-02 1.566352e-02 1.311001e+01
## LARS2 6.284734e-03 -6.564399e-03 -2.796658e-04 6.436108e+00
## BCL7C 6.054076e-02 2.589893e-03 6.313065e-02 1.304869e+01
## KDM8 -1.021286e-03 3.535600e-03 2.514314e-03 2.048480e+00
## ALDH16A1 1.834633e-02 7.268319e-03 2.561464e-02 7.824351e+00
## RARS2 -1.214698e-02 1.586122e-02 3.714236e-03 2.408986e+01
## WDR91 -8.052463e-03 2.219348e-02 1.414102e-02 2.213817e+01
## IKBKE 5.383544e-02 -1.850657e-02 3.532886e-02 3.080434e+01
## PHF20L1 -2.185763e-01 1.026013e-01 -1.159750e-01 1.218556e+02
## KMT5A -2.858107e-02 -1.301636e-02 -4.159742e-02 3.228744e+01
## ITGB3 2.480146e-01 -3.765940e-01 -1.285794e-01 1.344838e+02
## FAM160B2 1.644670e-02 7.186644e-03 2.363335e-02 1.334812e+01
## LASP1 -6.580733e-01 5.077841e-01 -1.502892e-01 5.316475e+02
## MRTFA -7.429608e-02 6.755724e-03 -6.754035e-02 6.588437e+01
## DNAH1 -1.835701e-02 2.259905e-02 4.242042e-03 2.261873e+01
## RABGEF1 -1.445271e-01 5.507492e-02 -8.945217e-02 5.866762e+01
## CCDC24 -3.547671e-03 3.514892e-03 -3.277923e-05 1.405821e+00
## NCK2 -1.931596e-02 5.536265e-02 3.604669e-02 4.530043e+01
## ENPEP 1.122930e-03 -1.557804e-03 -4.348737e-04 8.813622e-01
## SLC35F2 2.970175e-03 3.795873e-03 6.766048e-03 3.301884e+00
## CRAT -1.056109e-02 -6.165811e-03 -1.672690e-02 1.006443e+01
## CYBB -2.760970e-01 -6.704768e-01 -9.465738e-01 5.214245e+02
## TRIM21 -1.125946e-01 -2.227271e-01 -3.353217e-01 1.732620e+02
## HPRT1 1.972049e-02 -2.047058e-02 -7.500955e-04 1.550059e+01
## PPP1R12B 1.031993e-01 1.206621e-02 1.152655e-01 5.287306e+01
## EIF4E2 -5.816747e-02 2.884842e-02 -2.931905e-02 7.844089e+01
## LCLAT1 -6.860087e-03 -2.550457e-03 -9.410544e-03 7.711663e+00
## HERC5 5.398194e-01 -5.888527e-01 -4.903333e-02 1.214148e+02
## ACAP3 2.661355e-02 4.466039e-03 3.107959e-02 1.500451e+01
## SLC35A3 1.077217e-02 -2.890150e-04 1.048316e-02 1.108306e+01
## PARPBP -2.912724e-03 3.860268e-03 9.475444e-04 2.206733e+00
## EIF1B -7.833614e-02 -5.349119e-02 -1.318273e-01 8.046320e+01
## KLRC3 1.033687e-02 -9.218998e-03 1.117875e-03 3.243462e+00
## SIPA1 -2.226410e-01 1.986594e-01 -2.398161e-02 1.324994e+02
## CD81 4.446259e-02 4.536043e-02 8.982303e-02 3.513478e+01
## ALAS1 -5.512462e-02 3.845910e-02 -1.666551e-02 5.096235e+01
## IMP3 2.094115e-02 1.021690e-02 3.115805e-02 1.711971e+01
## RRAGB 8.995263e-05 5.287844e-03 5.377797e-03 6.641109e+00
## CENPE -1.658667e-03 1.087498e-02 9.216309e-03 4.188713e+00
## ZNF608 1.622855e-02 -1.267125e-01 -1.104839e-01 2.966113e+01
## ZNF143 -4.240088e-02 1.543119e-02 -2.696968e-02 3.353984e+01
## POP5 1.980255e-02 -8.278118e-04 1.897474e-02 1.053645e+01
## PPP1CA -1.888885e-01 3.210783e-01 1.321899e-01 2.112399e+02
## ARHGAP19 -9.634290e-02 1.663891e-03 -9.467901e-02 6.101031e+01
## DNAL4 3.691387e-03 -8.096597e-03 -4.405210e-03 8.689553e+00
## TELO2 9.880712e-03 9.118106e-03 1.899882e-02 5.477321e+00
## BCL2L15 1.597833e-02 1.607371e-02 3.205204e-02 6.069439e+00
## SNX30 -5.037523e-02 3.431957e-02 -1.605566e-02 2.901250e+01
## PCDH9 5.774589e-03 4.903160e-04 6.264905e-03 2.634861e+00
## PNPLA8 -1.560335e-02 -7.262158e-02 -8.822492e-02 4.644812e+01
## PWWP3A 4.650273e-04 7.309435e-03 7.774462e-03 7.168334e+00
## ZNF585B 1.546050e-03 5.551804e-03 7.097853e-03 5.093023e+00
## STEAP4 -1.044350e-01 -6.961870e-01 -8.006221e-01 4.319857e+02
## CDKAL1 5.655926e-03 -5.488397e-03 1.675285e-04 5.706382e+00
## CCNT2 -5.141905e-02 -9.009555e-03 -6.042860e-02 4.794816e+01
## DAPK3 -2.180476e-02 1.917814e-02 -2.626617e-03 1.366495e+01
## CCDC180 -3.922309e-03 2.338491e-03 -1.583818e-03 2.046076e+00
## CENPF 1.451514e-02 -5.692212e-03 8.822928e-03 5.338564e+00
## TMEM170B -6.902903e-02 -1.057619e-01 -1.747909e-01 1.049071e+02
## DDX54 9.447993e-03 1.443025e-02 2.387825e-02 1.102870e+01
## COMMD7 4.308835e-02 -4.340154e-02 -3.131861e-04 3.257114e+01
## ZNF341 1.586865e-03 -6.627394e-03 -5.040529e-03 6.068680e+00
## H1-10 3.341937e-02 3.016268e-02 6.358204e-02 1.852315e+01
## MICU2 -3.459790e-02 2.389894e-02 -1.069896e-02 4.201028e+01
## PRTFDC1 3.342989e-03 -7.721085e-04 2.570880e-03 1.277977e+00
## ME2 -8.330887e-02 9.620439e-02 1.289552e-02 7.556347e+01
## DCAF16 8.380235e-03 5.026462e-03 1.340670e-02 9.872483e+00
## IFI30 -1.211460e+00 -3.534233e-01 -1.564883e+00 8.837136e+02
## SCNM1 -4.832882e-03 -4.028378e-02 -4.511667e-02 3.303268e+01
## EXD1 -1.141827e-03 1.387796e-03 2.459694e-04 6.438555e-01
## MAFK 1.117109e-02 -9.995458e-04 1.017155e-02 9.546257e+00
## ZFX -1.123562e-02 -4.495047e-02 -5.618609e-02 3.738306e+01
## CXorf56 1.105681e-02 -8.403867e-03 2.652946e-03 1.567408e+01
## RBM26 5.305729e-03 1.309267e-02 1.839839e-02 2.578140e+01
## ARMH1 1.799768e-03 2.504097e-02 2.684073e-02 9.602009e+00
## RFXANK -9.508374e-02 5.937770e-02 -3.570603e-02 4.244945e+01
## ARNTL2 3.951714e-03 7.502870e-04 4.702001e-03 2.754961e+00
## PPP2CB 3.824218e-02 -3.127853e-02 6.963655e-03 2.876596e+01
## SNU13 6.653466e-02 1.547233e-02 8.200699e-02 5.854534e+01
## KIAA1328 -4.403200e-04 2.148173e-03 1.707853e-03 1.719200e+00
## ABL2 -2.400718e-02 9.506746e-04 -2.305651e-02 1.639332e+01
## PFKL 5.053865e-02 3.738545e-02 8.792410e-02 3.511668e+01
## GPCPD1 -5.058702e-01 3.042106e-01 -2.016596e-01 2.554879e+02
## TSC2 -1.082697e-02 3.465919e-02 2.383222e-02 2.702053e+01
## MRPL58 2.535742e-03 9.857951e-03 1.239369e-02 9.742241e+00
## ATF6B -5.247056e-02 3.010181e-02 -2.236875e-02 7.748992e+01
## CCDC25 5.323183e-03 8.898598e-03 1.422178e-02 1.529402e+01
## AK9 -6.794906e-03 2.669141e-03 -4.125765e-03 4.325557e+00
## RBMX2 2.199218e-02 2.724365e-04 2.226462e-02 1.831858e+01
## DRG2 1.413958e-02 1.432616e-02 2.846574e-02 1.504177e+01
## LYSMD3 -4.895480e-02 9.407890e-03 -3.954691e-02 3.226299e+01
## STIL -3.134409e-04 -3.721210e-03 -4.034651e-03 2.017819e+00
## SMC6 -1.350346e-03 1.764778e-02 1.629743e-02 1.899626e+01
## APOLD1 -1.707661e-03 1.961956e-04 -1.511466e-03 1.010862e+00
## ELL2 6.163581e-04 -9.242913e-02 -9.181277e-02 3.826902e+01
## RUFY2 -4.558266e-03 4.817520e-03 2.592542e-04 5.046102e+00
## ABAT -5.069558e-02 2.299848e-02 -2.769711e-02 2.460604e+01
## HEATR3 -1.504348e-02 -7.288953e-03 -2.233243e-02 2.130910e+01
## INTS2 9.535018e-03 -1.431301e-03 8.103718e-03 6.623384e+00
## AKTIP 4.885394e-02 8.397602e-03 5.725154e-02 4.429116e+01
## TAB3 -4.748622e-02 -2.149126e-03 -4.963535e-02 3.729086e+01
## SAC3D1 2.152816e-03 5.802298e-03 7.955114e-03 2.035092e+00
## ACAD10 -9.932736e-03 4.076529e-03 -5.856207e-03 1.429299e+01
## UBE2B -4.620225e-01 2.692854e-02 -4.350939e-01 2.540083e+02
## FAM168A -5.681444e-02 2.978374e-02 -2.703070e-02 4.525422e+01
## TMEM154 -6.519547e-01 7.029190e-01 5.096432e-02 4.303347e+02
## GAS8 -1.471510e-03 4.957535e-03 3.486025e-03 2.783143e+00
## CCDC22 -1.119593e-02 3.138089e-02 2.018496e-02 1.477379e+01
## AGAP1 4.281939e-03 4.049671e-04 4.686906e-03 1.553659e+00
## BBS5 -7.823219e-03 7.351818e-03 -4.714016e-04 6.521254e+00
## CROCC 1.039973e-02 6.433044e-04 1.104304e-02 4.274006e+00
## FAU 2.166503e-01 6.492931e-01 8.659434e-01 3.203537e+02
## FOXJ3 -4.044049e-02 7.631955e-03 -3.280853e-02 3.821496e+01
## PAIP2 -2.596213e-01 1.489223e-01 -1.106991e-01 2.179912e+02
## COMTD1 3.127878e-04 2.532183e-03 2.844971e-03 7.595181e-01
## GOLGA7 -1.326223e-01 1.426440e-01 1.002172e-02 1.057662e+02
## CCZ1B -8.287612e-03 6.922098e-02 6.093336e-02 6.099896e+01
## TBC1D10A 6.138796e-03 1.655798e-02 2.269678e-02 1.535882e+01
## CLUH -3.558407e-03 1.264383e-02 9.085424e-03 5.924444e+00
## FBXL17 -6.341220e-03 8.362495e-03 2.021275e-03 9.429964e+00
## HELQ 8.979338e-03 -1.489051e-03 7.490286e-03 1.302700e+01
## FKTN -1.176729e-03 5.797528e-03 4.620800e-03 3.347342e+00
## PSMA3 -2.484713e-02 4.180932e-02 1.696218e-02 4.979735e+01
## FASTKD5 -1.528515e-03 -2.676808e-02 -2.829659e-02 2.528509e+01
## SLC9A3R1 -2.416658e-01 2.000906e-01 -4.157515e-02 1.637925e+02
## TES -9.495536e-02 -2.655411e-02 -1.215095e-01 8.796754e+01
## FZR1 -4.736044e-03 3.335421e-02 2.861817e-02 2.218043e+01
## LMBR1 -1.703011e-02 -1.578060e-02 -3.281071e-02 1.822222e+01
## MID1IP1 -5.431605e-02 1.280261e-02 -4.151344e-02 3.900228e+01
## KDM7A -2.194904e-01 4.625239e-02 -1.732380e-01 1.187623e+02
## CDCA7L 9.759183e-02 -7.859455e-02 1.899729e-02 2.405230e+01
## TLN1 -5.855844e-01 -1.229478e-01 -7.085322e-01 5.884259e+02
## ERMP1 7.774163e-03 -1.257235e-02 -4.798191e-03 1.049954e+01
## LRRC42 -1.692286e-02 1.283034e-02 -4.092520e-03 1.005620e+01
## FUBP1 6.927187e-02 -2.348135e-02 4.579052e-02 4.982512e+01
## ANKRD55 -4.204510e-04 1.405563e-02 1.363518e-02 6.440418e+00
## URM1 -5.903921e-04 4.496222e-02 4.437183e-02 3.645555e+01
## GNG2 1.331242e-01 -2.542134e-01 -1.210892e-01 1.943958e+02
## SPAG9 -1.977988e-01 1.186179e-01 -7.918098e-02 1.064268e+02
## MAPKAPK3 -6.460147e-02 1.644963e-01 9.989482e-02 1.593994e+02
## RPS16 1.027409e+00 1.725100e-01 1.199919e+00 3.986775e+02
## CNNM4 2.895397e-04 6.232219e-03 6.521758e-03 7.496151e+00
## SMIM3 -4.697012e-02 -5.014662e-02 -9.711674e-02 4.929895e+01
## TUBGCP2 2.797153e-02 6.684787e-03 3.465631e-02 3.021933e+01
## EIF2AK3 2.701849e-02 -8.413781e-03 1.860471e-02 1.166398e+01
## TAPT1 2.125355e-02 -1.717745e-02 4.076096e-03 2.214571e+01
## FHL3 -7.592801e-02 7.531009e-02 -6.179162e-04 3.885743e+01
## HSH2D 3.006360e-01 -1.963610e-01 1.042750e-01 1.389435e+02
## PHETA1 1.266076e-02 -1.085038e-03 1.157572e-02 5.213331e+00
## ALDH3A2 1.383092e-02 -1.708951e-02 -3.258589e-03 2.116191e+01
## EEF1D 4.307682e-01 4.143457e-01 8.451140e-01 2.657495e+02
## LAMTOR1 -4.224798e-01 2.110865e-01 -2.113932e-01 2.472719e+02
## BORCS7 1.581029e-02 1.620735e-03 1.743102e-02 1.987429e+01
## CCDC86 2.577144e-03 1.974768e-03 4.551912e-03 3.068816e+00
## ARIH1 -2.282604e-03 -5.010939e-02 -5.239199e-02 5.536855e+01
## CEP250 2.177875e-02 1.602107e-02 3.779982e-02 3.223181e+01
## NDUFB5 2.074546e-02 -2.588345e-02 -5.137984e-03 3.728487e+01
## XRCC5 -2.202754e-01 2.922826e-01 7.200712e-02 3.186512e+02
## MFSD6 1.236881e-02 -1.434070e-02 -1.971888e-03 1.397862e+01
## ITM2B -3.136702e+00 -4.102274e-01 -3.546929e+00 2.082782e+03
## PLXNA4 6.813027e-04 1.692361e-03 2.373664e-03 8.236988e-01
## MRPS21 4.554406e-02 2.075546e-02 6.629952e-02 4.111597e+01
## MVK 4.227925e-03 2.209358e-03 6.437284e-03 3.331573e+00
## TOB1 -3.446869e-02 -1.887717e-01 -2.232403e-01 6.481410e+01
## MRFAP1L1 4.180796e-03 4.013272e-02 4.431352e-02 6.573678e+01
## RAB11FIP1 -4.999067e-01 1.828497e-01 -3.170570e-01 3.021901e+02
## ZNF37A -6.730094e-03 1.239335e-02 5.663258e-03 1.151861e+01
## CSNK2A1 -1.026616e-02 2.780999e-02 1.754383e-02 4.350942e+01
## P2RX4 2.301832e-02 1.088683e-02 3.390515e-02 2.019813e+01
## CALHM6 1.804109e-03 3.848041e-02 4.028452e-02 2.158844e+01
## ZNF680 6.371436e-03 -1.384558e-03 4.986878e-03 4.596874e+00
## NT5C3B 6.944930e-03 -1.417774e-02 -7.232814e-03 5.489423e+00
## TAPBP -4.039185e-01 2.135959e-01 -1.903226e-01 2.464338e+02
## EGLN1 -5.608728e-01 2.686343e-01 -2.922386e-01 2.612870e+02
## ZCCHC10 -1.304385e-02 -2.071352e-03 -1.511520e-02 1.679867e+01
## SF3B1 -1.045261e+00 5.660648e-01 -4.791959e-01 6.832709e+02
## ELOB -1.864378e-01 1.725848e-01 -1.385304e-02 5.956803e+01
## TP53INP1 -3.382092e-01 2.106528e-01 -1.275565e-01 1.800324e+02
## MBD3 7.321883e-03 3.393148e-02 4.125336e-02 1.022561e+01
## KLHL28 -3.331651e-02 9.883113e-03 -2.343340e-02 2.259121e+01
## RBSN 1.709915e-02 -5.963410e-03 1.113574e-02 1.969911e+01
## SYNCRIP 5.317914e-02 -1.506290e-03 5.167285e-02 5.656288e+01
## IKZF1 -1.876629e-01 7.874950e-02 -1.089134e-01 2.170370e+02
## FKBP8 -8.185774e-01 9.378006e-01 1.192232e-01 3.546305e+02
## EXOSC8 1.533769e-02 1.794805e-03 1.713249e-02 1.331666e+01
## CENPL 2.295359e-03 -2.220691e-03 7.466817e-05 2.131621e+00
## MGAT4B 2.921484e-02 -6.784556e-02 -3.863073e-02 5.166669e+01
## FLVCR2 -1.759318e-02 -3.544004e-02 -5.303321e-02 1.906070e+01
## COX16 -5.178291e-04 2.212988e-02 2.161206e-02 1.917424e+01
## ATP6V1B2 -1.010249e+00 2.794688e-01 -7.307797e-01 6.228194e+02
## RNF126 -1.890752e-03 1.273446e-02 1.084371e-02 5.363808e+00
## LMBR1L 4.131604e-02 -4.089511e-02 4.209296e-04 3.839617e+01
## CHAMP1 -9.008111e-03 8.154992e-03 -8.531186e-04 7.345854e+00
## UBXN2A -3.740923e-05 -7.034341e-03 -7.071750e-03 8.049690e+00
## MIS18BP1 -3.508881e-02 -1.422671e-02 -4.931552e-02 3.257726e+01
## RTL6 7.340151e-03 8.038765e-03 1.537892e-02 8.013222e+00
## EIF4A3 -2.179441e-02 2.604827e-02 4.253860e-03 4.669288e+01
## TAOK2 -1.634345e-02 2.022414e-02 3.880692e-03 2.917548e+01
## ZNF688 -1.592373e-02 6.929455e-03 -8.994274e-03 6.496270e+00
## CXXC5 -1.803465e-02 2.651683e-02 8.482181e-03 1.214782e+01
## RABEP2 -3.712666e-03 1.419586e-02 1.048320e-02 4.150292e+00
## FAHD2A 5.062371e-03 8.489895e-03 1.355227e-02 6.909538e+00
## JMJD7 3.512938e-03 4.857950e-03 8.370889e-03 5.397760e+00
## COPG1 4.711047e-04 -8.036256e-02 -7.989146e-02 9.795993e+01
## NFS1 3.974321e-03 -5.883114e-03 -1.908793e-03 1.025568e+01
## TULP4 4.179965e-03 -8.831754e-03 -4.651789e-03 6.435582e+00
## PELP1 1.505689e-02 1.656280e-02 3.161968e-02 1.144704e+01
## SPA17 -2.472046e-03 2.461338e-03 -1.070862e-05 1.577090e+00
## HIVEP3 9.166046e-03 -5.794617e-03 3.371430e-03 3.443695e+00
## MFGE8 1.943476e-02 1.849299e-02 3.792775e-02 8.347554e+00
## COPB1 -3.713425e-02 -8.143733e-02 -1.185716e-01 1.048339e+02
## TMEM273 3.593330e-02 -8.655436e-02 -5.062106e-02 4.359425e+01
## TNFSF14 -1.023345e-01 -8.643787e-02 -1.887724e-01 9.290756e+01
## HGH1 1.221111e-02 7.953346e-03 2.016446e-02 7.169800e+00
## NFKBID 1.600262e-02 -2.314668e-02 -7.144053e-03 1.767117e+01
## ZSCAN30 -3.908418e-03 -7.077038e-03 -1.098546e-02 6.901201e+00
## PPM1J -1.827842e-03 -5.490326e-04 -2.376875e-03 8.856314e-01
## PANK2 -1.172150e-01 4.431575e-02 -7.289927e-02 1.050859e+02
## CALD1 1.055233e-02 -5.451889e-03 5.100445e-03 3.323065e+00
## YPEL5 -3.641369e-01 -1.437301e-01 -5.078670e-01 3.033695e+02
## NADK -1.507586e-01 -5.082245e-01 -6.589831e-01 5.231189e+02
## DAD1 -6.314831e-02 -8.478250e-03 -7.162656e-02 9.216252e+01
## ZNF845 9.286373e-03 -1.570760e-02 -6.421229e-03 1.773343e+01
## SEC22A 3.097674e-03 3.275276e-03 6.372951e-03 8.632096e+00
## COASY -5.560780e-02 6.871327e-02 1.310547e-02 4.948381e+01
## SNRPB -7.125838e-02 1.080825e-01 3.682411e-02 7.053258e+01
## MRPL38 -5.427548e-03 3.718491e-02 3.175736e-02 1.417414e+01
## BBS10 -1.579745e-02 1.376196e-02 -2.035495e-03 1.045328e+01
## TNRC6B -7.432945e-02 2.337462e-02 -5.095484e-02 5.202516e+01
## PABPN1 1.205648e-01 -1.045957e-01 1.596914e-02 1.468204e+02
## MUC20 -4.209430e-03 3.509507e-03 -6.999236e-04 1.557584e+00
## TRIM23 -2.243871e-02 -1.087314e-02 -3.331185e-02 1.884932e+01
## STRN -8.343577e-02 1.588528e-03 -8.184724e-02 5.637887e+01
## NFRKB 1.722322e-02 3.119811e-04 1.753520e-02 2.628609e+01
## RBM4B 3.782712e-03 4.197910e-03 7.980622e-03 9.604762e+00
## EDEM1 -1.062933e-01 4.507952e-02 -6.121379e-02 8.903135e+01
## PTPMT1 1.129341e-02 1.230725e-02 2.360066e-02 1.691512e+01
## COPS2 3.992435e-02 -4.531310e-02 -5.388753e-03 4.140735e+01
## USF1 1.352401e-01 -2.549556e-01 -1.197154e-01 2.209009e+02
## NAGA -2.603927e-02 -4.287898e-02 -6.891824e-02 5.467961e+01
## UROS 4.692039e-03 9.361591e-03 1.405363e-02 9.239829e+00
## RPRD2 -2.274178e-02 2.618867e-02 3.446894e-03 2.670022e+01
## CFAP251 1.046473e-03 -1.561150e-03 -5.146771e-04 6.168644e-01
## CNTD1 3.853542e-05 -3.297634e-03 -3.259099e-03 2.158606e+00
## BPI 2.341059e-01 2.351458e-01 4.692517e-01 8.152870e+01
## SAFB 3.727055e-02 5.547257e-03 4.281781e-02 5.962587e+01
## HPS4 7.841935e-03 4.310691e-03 1.215263e-02 1.267684e+01
## N4BP2L2 -8.113931e-02 -3.626176e-02 -1.174011e-01 1.219247e+02
## TTK 2.501843e-04 -4.944796e-03 -4.694611e-03 2.108625e+00
## ASIC3 2.774951e-04 -1.543879e-03 -1.266384e-03 5.728481e-01
## TRPC6 -7.897925e-04 -1.343742e-03 -2.133534e-03 9.027659e-01
## PRDX3 -6.372693e-02 -4.479488e-02 -1.085218e-01 9.673691e+01
## PATL2 1.236717e-02 -3.036353e-02 -1.799636e-02 1.928900e+01
## ZNF335 1.120664e-02 1.661963e-02 2.782627e-02 2.504953e+01
## NCR3 -9.962901e-04 2.469698e-02 2.370069e-02 8.292290e+00
## THAP3 -3.416214e-03 1.705102e-02 1.363481e-02 8.212353e+00
## THOC3 2.283037e-02 -1.822220e-02 4.608170e-03 1.843815e+01
## ARL6IP4 -4.463569e-02 1.863004e-01 1.416647e-01 8.013245e+01
## PAXX 2.403961e-02 2.417743e-02 4.821704e-02 1.168513e+01
## WIPF2 -7.553239e-02 -5.165538e-03 -8.069793e-02 6.652457e+01
## ILVBL 4.604536e-03 1.325704e-02 1.786157e-02 6.593759e+00
## PYROXD1 1.310282e-02 -7.722193e-03 5.380626e-03 1.986844e+01
## MZT2B -1.052343e-02 2.257959e-02 1.205616e-02 4.755649e+00
## DMAP1 3.956899e-04 2.480656e-02 2.520225e-02 1.628393e+01
## UPRT 3.584235e-03 2.252851e-03 5.837086e-03 5.487119e+00
## ATF4 -2.873093e-01 3.393445e-01 5.203526e-02 3.097797e+02
## FLOT1 -1.394192e+00 7.784703e-01 -6.157217e-01 5.915143e+02
## HEXIM2 -2.962766e-03 -8.693671e-03 -1.165644e-02 6.755582e+00
## ALDH2 -1.088714e-01 -9.748332e-02 -2.063548e-01 1.105892e+02
## CYB5RL 7.235955e-04 2.196178e-03 2.919773e-03 2.463225e+00
## RBM44 -5.618254e-03 8.475140e-04 -4.770740e-03 2.126454e+00
## SH2D3C -1.081792e-01 4.290004e-02 -6.527920e-02 7.585229e+01
## WIPI2 -2.192791e-02 4.572911e-02 2.380120e-02 6.782077e+01
## RECQL -4.732126e-02 2.428713e-02 -2.303413e-02 4.278681e+01
## PPP1CC -6.712292e-02 7.156822e-02 4.445300e-03 1.250622e+02
## TKTL1 1.192740e-02 -9.244854e-03 2.682543e-03 3.865033e+00
## CCDC88C -1.486485e-02 3.545862e-02 2.059377e-02 2.590926e+01
## ZNF557 5.165462e-03 -2.027244e-03 3.138219e-03 7.929076e+00
## ING3 2.654926e-02 -3.427393e-02 -7.724666e-03 2.469458e+01
## NCDN 8.810584e-03 -5.406253e-03 3.404332e-03 5.940299e+00
## MMP19 7.987441e-03 1.416931e-03 9.404372e-03 5.630683e+00
## PHF12 -7.519736e-02 -5.191958e-02 -1.271169e-01 9.665000e+01
## ZHX2 -2.096678e-02 2.345506e-02 2.488283e-03 2.910459e+01
## PFDN6 -1.686644e-02 2.324008e-02 6.373645e-03 1.915355e+01
## LPXN 5.202247e-02 4.164096e-03 5.618657e-02 5.638436e+01
## SLA -8.577194e-01 -4.610372e-01 -1.318757e+00 5.884798e+02
## SHMT2 -1.704604e-03 3.718114e-02 3.547653e-02 2.958276e+01
## GVQW3 2.194251e-03 1.271220e-03 3.465471e-03 2.716259e+00
## RNASEK -2.732205e-01 2.622075e-01 -1.101301e-02 1.489011e+02
## CHTOP -4.360591e-02 -2.223938e-03 -4.582985e-02 6.536219e+01
## CWC27 8.778872e-03 -1.188568e-03 7.590304e-03 1.149836e+01
## ADCK5 2.866693e-03 4.682011e-03 7.548704e-03 2.614462e+00
## CCDC137 6.700307e-03 1.639939e-02 2.309969e-02 1.435268e+01
## CDC42EP2 -5.864504e-02 2.766500e-03 -5.587854e-02 2.776886e+01
## SPRED1 2.942075e-03 4.673402e-03 7.615477e-03 4.125298e+00
## POFUT1 1.856640e-02 -1.370045e-02 4.865943e-03 1.748956e+01
## NDUFB10 -6.405508e-02 8.660919e-02 2.255411e-02 3.962241e+01
## POLR1C 9.043464e-03 -5.621283e-04 8.481336e-03 7.249118e+00
## MMP17 -2.814480e-03 4.668601e-03 1.854121e-03 1.189793e+00
## RHOT2 -1.719563e-03 8.002923e-02 7.830966e-02 4.303786e+01
## CDK12 -4.224201e-02 1.617046e-03 -4.062496e-02 4.035948e+01
## CDK2AP1 1.982689e-02 -3.393865e-02 -1.411176e-02 2.549642e+01
## UTP6 -1.089136e-02 2.820627e-02 1.731491e-02 4.280546e+01
## RPL36AL 1.620640e-02 2.728804e-01 2.890868e-01 2.487973e+02
## ARID2 -2.655048e-02 2.322554e-02 -3.324936e-03 2.132931e+01
## SRSF11 9.320031e-02 -3.056076e-02 6.263956e-02 9.621162e+01
## PYCARD -1.651390e-01 9.298604e-02 -7.215291e-02 7.104117e+01
## KCNQ5 6.048906e-04 1.418263e-03 2.023153e-03 1.012879e+00
## QDPR 9.077739e-03 -1.052485e-03 8.025254e-03 6.126482e+00
## HNRNPD 5.628830e-02 -1.226831e-02 4.401998e-02 9.604126e+01
## ENO1 -1.129478e+00 3.636143e-01 -7.658642e-01 6.216098e+02
## MADD 1.498268e-02 2.339514e-02 3.837782e-02 4.503319e+01
## KHSRP 8.461288e-03 1.013979e-02 1.860108e-02 2.683555e+01
## ITGA9 1.264021e-02 -1.130622e-02 1.333994e-03 3.148738e+00
## SLC18B1 2.518690e-03 9.132030e-03 1.165072e-02 7.824572e+00
## CEACAM1 -2.985353e-02 -2.458562e-01 -2.757097e-01 8.967625e+01
## RTF1 -3.619256e-02 6.119773e-02 2.500517e-02 6.566072e+01
## TLK1 4.009081e-02 5.807408e-02 9.816489e-02 7.687831e+01
## SASH3 -1.119288e-01 -2.589533e-01 -3.708822e-01 3.505792e+02
## STARD3NL -3.590206e-02 -8.659724e-03 -4.456178e-02 4.144465e+01
## APIP -1.071516e-02 -6.562645e-04 -1.137142e-02 1.274167e+01
## ZNF365 -1.436665e-03 2.797225e-03 1.360560e-03 8.525105e-01
## ZNF587 -2.742678e-02 1.573610e-02 -1.169068e-02 1.715486e+01
## SRI -8.268622e-02 2.486280e-02 -5.782342e-02 5.618161e+01
## ZNF250 6.229944e-03 8.686922e-05 6.316813e-03 4.737338e+00
## CTNNBIP1 7.054536e-03 1.252654e-02 1.958108e-02 1.671485e+01
## ANKRD36C -2.998096e-03 2.126500e-03 -8.715957e-04 1.395668e+00
## PRR5 5.421389e-03 1.709302e-02 2.251441e-02 6.403167e+00
## CDK5RAP3 2.156255e-01 -1.904296e-01 2.519589e-02 2.413536e+02
## VPS33B 1.169142e-02 -5.641817e-03 6.049601e-03 1.438227e+01
## POLE4 3.082623e-02 2.322675e-02 5.405298e-02 2.540997e+01
## MAN2A2 -8.133965e-01 4.553900e-01 -3.580065e-01 3.448806e+02
## USP1 -8.768433e-03 -3.628835e-02 -4.505679e-02 5.052917e+01
## POLH 2.580219e-03 6.971538e-03 9.551757e-03 1.322299e+01
## CORO7 -1.100448e-01 1.354943e-01 2.544944e-02 6.196403e+01
## LIG3 1.144978e-02 -5.412332e-04 1.090854e-02 1.172082e+01
## STAT5A 1.101362e-01 -1.828362e-01 -7.269995e-02 1.592304e+02
## TSPAN33 -1.551774e-02 -7.635829e-02 -9.187603e-02 4.558144e+01
## STX5 -9.207926e-02 4.865946e-02 -4.341981e-02 5.960294e+01
## SRXN1 -2.502054e-01 2.575488e-01 7.343358e-03 1.502021e+02
## LDB1 4.242777e-02 6.706265e-02 1.094904e-01 1.415039e+02
## NAA16 3.521372e-03 8.212474e-03 1.173385e-02 1.149473e+01
## NT5DC4 3.111021e-04 -3.575401e-03 -3.264299e-03 1.457519e+00
## ARF4 -1.239292e-01 4.382905e-02 -8.010011e-02 1.081584e+02
## DYNLL1 -8.920125e-02 8.459910e-03 -8.074134e-02 7.980739e+01
## PRKD2 1.433078e-01 -9.110908e-02 5.219872e-02 8.720458e+01
## HIKESHI 1.110411e-03 1.738847e-02 1.849888e-02 1.597694e+01
## PSMC1 -5.848736e-02 8.886772e-02 3.038036e-02 1.106812e+02
## TMIGD3 -2.758610e-02 4.009761e-02 1.251151e-02 9.240646e+00
## FLNA 7.200710e-01 -4.532784e-01 2.667926e-01 4.771500e+02
## IL12RB1 -1.211972e-02 -2.793193e-02 -4.005165e-02 2.629426e+01
## AAR2 1.295305e-02 5.789202e-03 1.874225e-02 2.004174e+01
## LYST -5.256157e-01 3.601359e-02 -4.896021e-01 3.138105e+02
## RXYLT1 2.824702e-03 6.256828e-04 3.450385e-03 4.627199e+00
## XRRA1 2.819850e-02 -4.634388e-02 -1.814537e-02 1.953467e+01
## RPP21 1.297548e-03 1.039491e-02 1.169246e-02 4.346456e+00
## PAPSS2 -7.334936e-04 7.569092e-03 6.835599e-03 4.832155e+00
## NOP56 4.714681e-02 1.660773e-02 6.375454e-02 4.630855e+01
## IFIT1 1.806937e+00 -2.657940e+00 -8.510035e-01 4.701501e+02
## RBPMS 1.184999e-03 -9.447456e-04 2.402535e-04 6.335134e-01
## AP1S3 3.081845e-03 -1.615422e-03 1.466423e-03 2.740719e+00
## SLC16A5 -2.742810e-02 2.786876e-02 4.406629e-04 2.373207e+01
## CRKL -8.855485e-02 9.742774e-02 8.872883e-03 9.064875e+01
## GHDC -1.832142e-02 2.241711e-02 4.095689e-03 1.338641e+01
## EIF2B4 1.772630e-02 1.268461e-02 3.041091e-02 2.255576e+01
## MDC1 -2.260992e-03 1.267317e-02 1.041218e-02 9.390545e+00
## NUBPL -1.474590e-03 2.156582e-03 6.819919e-04 1.658736e+00
## FXN 3.353134e-03 2.133667e-03 5.486800e-03 5.340082e+00
## SH3TC2 -5.723819e-03 -2.357334e-03 -8.081153e-03 3.758019e+00
## KIF5B -6.571327e-02 -1.133476e-01 -1.790609e-01 1.318361e+02
## ALKBH7 1.040471e-02 9.919311e-03 2.032402e-02 4.973667e+00
## STIM2 -2.162120e-02 2.769177e-03 -1.885203e-02 2.465606e+01
## ZMYM2 -7.760452e-02 3.304009e-02 -4.456443e-02 5.903389e+01
## ALDH1A1 3.535777e-02 -1.193515e-02 2.342262e-02 1.611714e+01
## ELOVL5 -2.978957e-01 8.827404e-02 -2.096217e-01 2.308356e+02
## KNOP1 4.012684e-03 1.824499e-03 5.837182e-03 4.813557e+00
## CHMP5 1.106880e-01 -3.529950e-01 -2.423070e-01 1.664297e+02
## UBQLN4 1.154999e-02 1.149563e-02 2.304562e-02 1.762492e+01
## GSAP 3.167246e-02 4.407118e-03 3.607958e-02 3.233894e+01
## IRS2 -3.705226e-02 -3.770769e-01 -4.141291e-01 1.378911e+02
## PGPEP1 4.357874e-02 -1.778718e-02 2.579156e-02 3.231951e+01
## PTDSS2 8.905083e-03 2.594055e-03 1.149914e-02 5.440338e+00
## HIPK1 -3.475974e-01 6.794846e-02 -2.796489e-01 1.774878e+02
## CLTB -7.357534e-02 5.407851e-02 -1.949683e-02 3.613798e+01
## TOP1 6.736418e-02 -9.155574e-02 -2.419157e-02 7.723353e+01
## MORF4L2 -8.348067e-03 -2.211602e-02 -3.046409e-02 4.127090e+01
## PSMD7 4.112699e-03 -5.156828e-02 -4.745558e-02 6.501870e+01
## RAD51AP1 9.367062e-04 -5.658116e-03 -4.721409e-03 2.255727e+00
## PROSER3 -1.232310e-03 4.837276e-03 3.604967e-03 6.664087e+00
## RNF138 2.077651e-03 -6.657154e-02 -6.449389e-02 4.760169e+01
## NMUR1 9.833752e-03 1.004033e-03 1.083779e-02 4.270996e+00
## PIBF1 2.593338e-03 4.233921e-03 6.827259e-03 7.323171e+00
## NOC4L -2.461056e-03 6.570068e-03 4.109011e-03 2.475631e+00
## TNPO3 -6.259979e-02 -3.124829e-02 -9.384809e-02 6.856404e+01
## SLC25A46 -1.141184e-02 2.407046e-02 1.265862e-02 2.780229e+01
## JTB -2.349914e-01 1.471152e-01 -8.787619e-02 1.369361e+02
## TNK2 3.636514e-03 6.386623e-02 6.750274e-02 4.660747e+01
## TYW3 1.116140e-03 7.694071e-03 8.810211e-03 9.485180e+00
## ATP6V1F -8.055195e-02 8.246409e-02 1.912142e-03 5.748247e+01
## MTARC1 -1.232685e-01 -1.587534e-01 -2.820218e-01 1.154470e+02
## TPP2 1.761091e-02 2.673505e-02 4.434596e-02 3.408538e+01
## GYS1 -9.866350e-03 4.119469e-02 3.132834e-02 2.470819e+01
## ISY1 -5.652500e-02 7.751722e-03 -4.877328e-02 5.001492e+01
## CCDC186 -6.724036e-02 -1.640784e-02 -8.364820e-02 4.464278e+01
## RBM39 1.874519e-01 -3.466458e-01 -1.591939e-01 3.293654e+02
## CYCS -1.065300e-02 -3.135847e-02 -4.201147e-02 4.779386e+01
## PTBP1 2.608306e-02 1.894240e-02 4.502546e-02 5.232086e+01
## CLDN9 2.467816e-04 -1.062250e-02 -1.037572e-02 4.605290e+00
## MARCHF5 -6.642491e-02 3.218339e-02 -3.424152e-02 4.221113e+01
## PSMG2 1.989792e-02 -1.994090e-02 -4.298398e-05 2.825350e+01
## CCDC30 -3.824485e-03 -1.928260e-04 -4.017311e-03 2.899017e+00
## RNASET2 -3.964050e-01 5.949822e-01 1.985772e-01 3.181039e+02
## TAGLN 2.784445e-02 3.302802e-02 6.087246e-02 2.005573e+01
## TTC8 -4.528705e-03 -7.713015e-05 -4.605835e-03 2.430907e+00
## GATC 4.186814e-03 7.570291e-03 1.175711e-02 2.359744e+01
## KRIT1 -6.848209e-03 1.565363e-02 8.805423e-03 1.518428e+01
## HAAO -4.766263e-03 -2.990297e-03 -7.756561e-03 3.365732e+00
## C16orf74 -7.353484e-04 7.996154e-03 7.260805e-03 2.209318e+00
## LAMTOR3 -9.971075e-02 2.203460e-02 -7.767615e-02 7.008081e+01
## PEPD 1.927435e-02 -1.457616e-02 4.698192e-03 1.507985e+01
## NDUFB7 -1.407150e-02 5.026786e-02 3.619636e-02 1.281657e+01
## CENPK 9.186972e-03 -3.771743e-03 5.415228e-03 3.789117e+00
## ITPRIPL1 2.561050e-03 4.577093e-03 7.138143e-03 4.051453e+00
## TNFAIP8 8.071181e-02 1.020466e-03 8.173227e-02 1.172024e+02
## CBWD1 1.533744e-02 -2.047554e-02 -5.138097e-03 2.240173e+01
## CEP295 -4.371665e-03 1.717265e-02 1.280099e-02 1.548510e+01
## PPIAL4H 1.055052e-03 -9.265673e-04 1.284846e-04 3.782189e-01
## N4BP2L1 1.899345e-02 -8.190040e-03 1.080341e-02 2.350617e+01
## TMF1 -9.447216e-02 4.923668e-02 -4.523548e-02 6.342939e+01
## CABP5 6.566651e-03 -1.085204e-02 -4.285393e-03 4.746881e+00
## RUFY3 1.253670e-02 2.735502e-03 1.527220e-02 1.200727e+01
## TRAPPC12 -1.011533e-02 2.235254e-02 1.223721e-02 1.905027e+01
## THG1L 8.584534e-03 -2.502798e-03 6.081736e-03 6.978189e+00
## DDX39A 1.440471e-02 3.922587e-02 5.363058e-02 3.080959e+01
## ADORA2A -6.234171e-02 3.771624e-02 -2.462547e-02 2.737159e+01
## XRCC1 -1.169791e-02 2.138838e-02 9.690465e-03 2.436230e+01
## ZNF200 3.386825e-02 -5.832198e-02 -2.445373e-02 3.703499e+01
## CIAO2B -4.777813e-02 4.593168e-02 -1.846451e-03 2.813526e+01
## ZNF318 -3.628842e-02 4.516114e-04 -3.583681e-02 2.568627e+01
## EVI2B -2.434323e+00 -2.182696e-01 -2.652593e+00 1.505786e+03
## RASSF1 1.771071e-02 4.801457e-02 6.572528e-02 4.895616e+01
## PSMC5 6.658396e-02 1.922783e-02 8.581180e-02 6.931705e+01
## STRIP2 2.461034e-03 -1.908061e-03 5.529734e-04 1.460505e+00
## THAP2 -3.973661e-04 3.714724e-03 3.317358e-03 3.164721e+00
## MTFR1 -2.407971e-03 3.081386e-04 -2.099832e-03 2.852083e+00
## NDUFS3 -2.985796e-02 3.807756e-02 8.219602e-03 3.057298e+01
## SIRPB1 2.397391e-02 -4.803232e-01 -4.563493e-01 3.343299e+02
## CRIPT 4.720476e-03 -2.410194e-02 -1.938146e-02 2.523833e+01
## MYO9B -1.647195e-01 1.581619e-01 -6.557592e-03 1.816536e+02
## NPIPA8 -2.733925e-03 -6.584704e-04 -3.392395e-03 1.905008e+00
## SLC22A16 2.910161e-03 6.405586e-03 9.315747e-03 3.172906e+00
## ZDHHC18 -9.309122e-01 3.200783e-01 -6.108339e-01 6.392110e+02
## IP6K1 -7.297181e-02 9.517507e-02 2.220326e-02 8.654911e+01
## IFT52 1.942692e-04 8.130564e-03 8.324833e-03 1.248803e+01
## ATG7 -3.553721e-02 -1.424564e-02 -4.978285e-02 6.132540e+01
## SLC37A2 1.116913e-02 -2.934784e-02 -1.817870e-02 2.758971e+01
## TRIM37 -1.274948e-02 4.655952e-03 -8.093530e-03 1.130368e+01
## ZNF226 3.764872e-03 7.267534e-03 1.103241e-02 1.282068e+01
## UBE2Q1 -6.127549e-02 1.670835e-02 -4.456715e-02 9.703675e+01
## ATP6V1D -5.711270e-02 4.712847e-02 -9.984223e-03 5.204687e+01
## GAR1 8.878558e-03 -7.628693e-03 1.249865e-03 6.477035e+00
## CCDC124 -8.688434e-03 1.900525e-02 1.031681e-02 6.240660e+00
## MYBL1 -5.888674e-03 2.653019e-02 2.064152e-02 1.066900e+01
## CLSTN1 -1.354197e-03 3.830482e-02 3.695062e-02 3.321277e+01
## PLEKHA3 9.478531e-03 -1.780853e-02 -8.329996e-03 1.959763e+01
## CORO6 -1.144648e-03 2.496153e-03 1.351505e-03 1.170059e+00
## INPP5A -3.187209e-02 3.761555e-02 5.743464e-03 3.238232e+01
## OTUD4 -2.559932e-02 3.129666e-02 5.697340e-03 2.311827e+01
## FBXO28 4.884901e-03 -2.131990e-02 -1.643500e-02 2.305460e+01
## UHRF1BP1 -1.461800e-02 1.187610e-02 -2.741901e-03 1.049230e+01
## SMARCA4 1.822215e-02 -2.010036e-03 1.621212e-02 1.715594e+01
## TEPSIN -3.326855e-02 4.138163e-02 8.113079e-03 2.877054e+01
## PPP4C -3.054018e-01 2.193638e-01 -8.603801e-02 1.614571e+02
## RPUSD3 9.684579e-03 2.141792e-03 1.182637e-02 9.020370e+00
## RFC1 1.118991e-02 -2.130983e-02 -1.011992e-02 2.313335e+01
## CACFD1 -7.043947e-03 6.799767e-03 -2.441799e-04 3.413359e+00
## TMEM201 7.966470e-04 1.150174e-03 1.946821e-03 9.227555e-01
## NEU3 1.156357e-02 -2.536744e-04 1.130989e-02 1.031704e+01
## UBE2N 3.525532e-02 -1.500292e-02 2.025240e-02 5.420352e+01
## FCRL6 4.974414e-02 -2.603438e-02 2.370976e-02 1.524064e+01
## NDUFB9 -8.056343e-02 9.036882e-02 9.805398e-03 6.045578e+01
## CDK14 -5.562935e-02 4.132647e-02 -1.430288e-02 2.908659e+01
## SMOX -5.598169e-02 3.080573e-02 -2.517596e-02 2.291670e+01
## SMYD4 -2.437620e-03 6.352774e-03 3.915155e-03 6.982925e+00
## SUPT6H -5.519032e-02 5.290781e-02 -2.282516e-03 7.612244e+01
## MGAT4C -1.341514e-03 -1.432489e-05 -1.355839e-03 8.499662e-01
## MIDEAS -4.386715e-02 2.056568e-02 -2.330147e-02 3.006373e+01
## ZNF317 -1.400624e-02 1.139853e-02 -2.607714e-03 2.112877e+01
## VARS2 2.832592e-03 1.318268e-02 1.601527e-02 9.750784e+00
## SCRIB 1.698214e-03 5.483679e-03 7.181893e-03 3.799350e+00
## RNF19A -6.926558e-02 -9.772104e-03 -7.903769e-02 6.059115e+01
## NEO1 8.489286e-03 -1.336759e-02 -4.878302e-03 4.629023e+00
## CEP192 -3.281316e-02 1.267868e-03 -3.154529e-02 2.353103e+01
## AOPEP -3.346370e-04 -1.259644e-03 -1.594281e-03 1.935059e+00
## SLC35B4 -4.851451e-03 7.326105e-03 2.474654e-03 7.843377e+00
## NDUFV1 4.378844e-02 4.932601e-02 9.311445e-02 3.372970e+01
## EIF4E 1.882797e-02 1.160217e-02 3.043014e-02 3.974712e+01
## SLC35A4 -5.555798e-02 2.155767e-02 -3.400031e-02 5.713100e+01
## GSK3B -1.109874e-01 -7.369291e-03 -1.183567e-01 8.741664e+01
## MAP7D1 -1.438024e-01 1.693391e-01 2.553661e-02 1.373781e+02
## SMUG1 -1.113968e-02 1.402326e-02 2.883580e-03 1.639757e+01
## HNRNPA3 9.773122e-02 -9.748123e-04 9.675640e-02 1.806920e+02
## NIPBL -1.433466e-01 -4.525326e-03 -1.478719e-01 1.104868e+02
## MORC3 -7.660969e-02 -5.708475e-02 -1.336944e-01 8.802963e+01
## IL17RC -1.860115e-03 3.726416e-03 1.866301e-03 1.757813e+00
## PDRG1 -4.520195e-03 1.710874e-02 1.258855e-02 1.468776e+01
## POP4 -1.881118e-02 1.811490e-02 -6.962739e-04 2.253557e+01
## PRICKLE4 8.370864e-04 1.651035e-03 2.488121e-03 1.693199e+00
## IDH3G -1.452121e-02 4.909578e-02 3.457457e-02 3.108879e+01
## DDX49 -1.926189e-02 2.947304e-02 1.021115e-02 1.523671e+01
## B3GLCT 3.192837e-03 2.829610e-04 3.475798e-03 3.320756e+00
## MRPL46 1.852289e-03 1.230555e-02 1.415784e-02 9.783554e+00
## IAH1 -5.517551e-02 8.198666e-03 -4.697685e-02 4.932098e+01
## GNPTAB -3.424401e-02 -1.754496e-02 -5.178896e-02 4.090593e+01
## ZMAT5 -2.892411e-02 3.110204e-02 2.177931e-03 1.938715e+01
## UBE2M -3.163616e-02 4.946549e-02 1.782933e-02 3.773458e+01
## GGTA1P 4.480102e-02 -5.106612e-03 3.969441e-02 1.560440e+01
## INTS10 -5.285948e-03 2.404424e-02 1.875830e-02 4.195062e+01
## SP140L 1.217290e-02 8.681534e-03 2.085444e-02 2.009968e+01
## KCTD13 -5.513364e-03 9.249984e-03 3.736620e-03 8.575395e+00
## KIF20B 8.283809e-03 -1.121805e-03 7.162003e-03 5.553991e+00
## GLB1L2 -3.843766e-03 3.815222e-03 -2.854446e-05 1.468883e+00
## MRPS24 -1.323162e-02 3.109647e-02 1.786484e-02 1.528638e+01
## MTMR4 -4.654485e-02 1.759886e-03 -4.478496e-02 4.664058e+01
## RAD51C -9.464673e-04 7.104306e-03 6.157838e-03 5.697188e+00
## LSM7 -5.676349e-03 3.996613e-02 3.428978e-02 1.604372e+01
## MRPS34 -2.933469e-03 3.622635e-02 3.329288e-02 1.684001e+01
## SELENOW 1.108442e-01 -2.202733e-02 8.881688e-02 4.948854e+01
## METTL4 -1.967127e-02 9.148444e-03 -1.052283e-02 1.514392e+01
## MTRF1L 1.772744e-02 -2.739424e-02 -9.666807e-03 3.075054e+01
## C11orf68 -7.120922e-02 2.197890e-03 -6.901133e-02 4.894142e+01
## SPSB3 -6.730114e-03 7.001055e-02 6.328044e-02 3.523570e+01
## ACACB 3.183998e-03 8.191142e-03 1.137514e-02 6.336704e+00
## PRKCZ -2.518849e-02 -3.058867e-03 -2.824736e-02 1.557799e+01
## UBL7 -4.397983e-02 5.997595e-02 1.599611e-02 4.444979e+01
## PDXK 6.215378e-05 8.155025e-02 8.161241e-02 7.424408e+01
## PARVG 5.325436e-02 -1.293077e-01 -7.605332e-02 1.533990e+02
## MAT2A -3.389246e-02 -3.183125e-02 -6.572372e-02 8.975871e+01
## ZNF8 9.767728e-03 -4.793188e-03 4.974540e-03 9.043717e+00
## TTPAL -3.268269e-02 1.491578e-02 -1.776691e-02 2.230395e+01
## KIF27 -8.206243e-02 9.830336e-03 -7.223209e-02 2.845127e+01
## MRPL23 -3.306217e-02 4.197129e-02 8.909118e-03 1.853853e+01
## BRK1 4.951228e-02 1.119535e-01 1.614658e-01 1.710527e+02
## UNC119 -5.504067e-02 1.383050e-01 8.326430e-02 1.044217e+02
## RAB21 -2.483607e-02 -7.654116e-02 -1.013772e-01 8.878515e+01
## CCDC34 -5.186608e-03 2.546436e-03 -2.640172e-03 1.497746e+00
## MTFR1L 1.684115e-02 -2.090136e-02 -4.060210e-03 3.524581e+01
## ORC6 -3.007774e-03 6.292120e-04 -2.378562e-03 1.587685e+00
## MED13L -3.073315e-01 9.367154e-02 -2.136600e-01 1.527720e+02
## YDJC 3.579287e-03 5.698033e-03 9.277320e-03 4.389892e+00
## ZNF347 3.233202e-03 2.904374e-04 3.523639e-03 3.484357e+00
## PCNP -2.933422e-02 -4.127852e-02 -7.061274e-02 8.967242e+01
## GPR153 -2.096588e-03 3.806921e-03 1.710333e-03 1.292897e+00
## ZC2HC1A 3.698799e-03 -9.492678e-04 2.749531e-03 2.268624e+00
## FITM1 -6.409942e-04 1.629523e-03 9.885286e-04 5.677182e-01
## ANGPT1 -3.384187e-03 9.796307e-03 6.412121e-03 2.883354e+00
## KLHL9 -3.349255e-02 8.145242e-03 -2.534731e-02 3.093428e+01
## GAS2L1 3.616679e-03 -2.272476e-02 -1.910808e-02 9.030753e+00
## PPFIBP2 1.510389e-02 -1.987769e-02 -4.773799e-03 1.302615e+01
## CHM -1.395404e-02 4.442373e-03 -9.511670e-03 1.083378e+01
## RABEP1 -1.521087e-02 3.586265e-02 2.065178e-02 3.869741e+01
## B4GALT7 -1.282374e-02 1.652771e-02 3.703973e-03 6.365812e+00
## GORAB -6.499322e-03 4.303784e-03 -2.195538e-03 5.116256e+00
## ZNF816-ZNF321P 1.041164e-03 1.758464e-03 2.799628e-03 3.001207e+00
## PPFIBP1 -5.452357e-05 1.278879e-03 1.224356e-03 8.944623e-01
## L3HYPDH 7.296445e-03 5.101704e-03 1.239815e-02 8.360298e+00
## SIDT2 -6.810961e-02 5.884879e-02 -9.260822e-03 4.756924e+01
## DDX18 3.204165e-02 1.023788e-02 4.227953e-02 3.476933e+01
## WDR36 -2.063180e-05 1.303099e-02 1.301036e-02 1.407454e+01
## PRPS1 2.033479e-03 1.633076e-02 1.836424e-02 2.240772e+01
## FAM120B -2.055707e-02 -4.367531e-03 -2.492460e-02 3.174735e+01
## EGLN2 -3.318889e-01 2.364783e-01 -9.541063e-02 1.603529e+02
## TENT4B 1.181972e-02 -2.541046e-02 -1.359073e-02 2.079962e+01
## DLD -3.979598e-03 -4.459914e-02 -4.857873e-02 5.868020e+01
## CCDC18 -1.036673e-03 5.024533e-03 3.987860e-03 5.339632e+00
## MYADM 7.732403e-02 4.138912e-01 4.912152e-01 3.363049e+02
## PPRC1 5.919687e-03 5.388527e-03 1.130821e-02 8.759243e+00
## PPP6C -8.954841e-02 4.004581e-02 -4.950260e-02 9.243677e+01
## CERS2 -1.355075e-01 1.061399e-01 -2.936753e-02 1.678766e+02
## CCDC32 -5.820156e-03 1.423824e-02 8.418088e-03 2.227692e+01
## OCRL 5.584930e-03 -7.102935e-03 -1.518004e-03 5.708875e+00
## UBXN1 1.226083e-01 3.812489e-02 1.607332e-01 8.588660e+01
## TMEM104 -1.181935e-02 1.009630e-02 -1.723049e-03 1.124395e+01
## TNFSF12 -2.889102e-02 -7.693939e-03 -3.658496e-02 2.620079e+01
## ZMYM6 -1.453957e-02 1.673806e-02 2.198485e-03 2.096655e+01
## CAPRIN1 4.852890e-02 -3.035820e-02 1.817070e-02 9.429874e+01
## ERAP2 -6.592803e-02 -7.873170e-02 -1.446597e-01 5.678213e+01
## LANCL3 -3.404554e-03 3.574521e-03 1.699665e-04 2.256862e+00
## URB1 5.386125e-03 1.513668e-03 6.899793e-03 4.668169e+00
## SLC25A43 3.327999e-03 -5.773123e-03 -2.445124e-03 4.763368e+00
## BRICD5 4.062427e-03 -6.689872e-04 3.393440e-03 1.341393e+00
## GCN1 5.222316e-03 2.596033e-02 3.118264e-02 2.813029e+01
## UNC50 -2.030777e-02 1.407187e-02 -6.235897e-03 2.825608e+01
## OGFOD1 3.915051e-03 6.692877e-03 1.060793e-02 1.351192e+01
## IFI27L2 -4.435276e-02 -2.313146e-02 -6.748422e-02 2.122706e+01
## CIB1 -8.989510e-03 1.151753e-01 1.061858e-01 7.120905e+01
## CELSR3 3.634608e-03 -2.647952e-03 9.866556e-04 1.806300e+00
## HFE -2.031801e-03 8.435769e-03 6.403969e-03 5.814367e+00
## SENP2 -1.879642e-02 -1.680578e-02 -3.560220e-02 3.246777e+01
## MDM4 -1.871996e-02 -4.128361e-02 -6.000357e-02 5.477261e+01
## RALGPS2 -3.360669e-02 4.658867e-02 1.298198e-02 3.471418e+01
## MRM1 4.540661e-03 -6.882056e-04 3.852455e-03 2.091572e+00
## RAD51 6.176664e-03 -5.697286e-03 4.793779e-04 2.763694e+00
## TCIRG1 -5.204823e-01 3.171779e-01 -2.033043e-01 2.462051e+02
## UQCRH -1.098938e-01 1.082523e-01 -1.641526e-03 9.903735e+01
## SNRPD1 3.080248e-02 3.126891e-03 3.392937e-02 2.682620e+01
## FDX2 5.416847e-03 9.284918e-04 6.345339e-03 2.842168e+00
## LAMP1 -6.147182e-02 -5.194797e-02 -1.134198e-01 1.181997e+02
## DST -2.641777e-04 4.496658e-03 4.232480e-03 1.921493e+00
## SLC38A2 -5.133055e-01 2.756366e-01 -2.376689e-01 2.550631e+02
## ZNF615 -6.913630e-03 7.536444e-03 6.228133e-04 7.225470e+00
## SMC4 3.055694e-02 -2.511741e-02 5.439526e-03 3.347087e+01
## COLGALT2 6.715739e-04 -2.448145e-03 -1.776571e-03 8.992777e-01
## KCNQ1 -1.787587e-02 -1.221220e-02 -3.008807e-02 2.659564e+01
## CHDH -6.808379e-04 -1.799878e-03 -2.480716e-03 8.264067e-01
## SPR -1.383126e-03 -1.699990e-03 -3.083116e-03 1.592757e+00
## CRISPLD2 -3.948245e-01 1.300500e-01 -2.647746e-01 1.922765e+02
## TTYH2 -2.394766e-03 1.728609e-02 1.489133e-02 1.125504e+01
## BBIP1 -3.265217e-02 -2.119785e-03 -3.477195e-02 3.109106e+01
## SLC6A16 1.964817e-03 -1.430492e-03 5.343245e-04 1.320153e+00
## HP1BP3 3.552049e-02 5.799726e-02 9.351775e-02 9.159015e+01
## WDR74 2.363284e-02 3.477693e-03 2.711053e-02 1.363374e+01
## FRAT2 -9.022108e-01 7.315443e-01 -1.706665e-01 6.425345e+02
## BCAT2 1.511090e-03 1.054556e-02 1.205665e-02 5.510112e+00
## NKG7 -4.453127e-01 6.568351e-01 2.115223e-01 2.135591e+02
## RERE -1.335223e-01 1.292018e-02 -1.206021e-01 1.148237e+02
## FOXO4 -4.186652e-02 -3.396569e-02 -7.583220e-02 6.612361e+01
## UPB1 -1.726336e-02 1.546670e-02 -1.796657e-03 7.490591e+00
## CYP2U1 -1.896244e-03 4.159138e-03 2.262893e-03 2.500522e+00
## DAND5 6.429133e-04 -9.756543e-04 -3.327410e-04 4.482290e-01
## MND1 1.472697e-03 1.459028e-03 2.931725e-03 1.056202e+00
## HIRIP3 1.500326e-02 -2.147569e-03 1.285569e-02 9.951108e+00
## ZSWIM8 -8.915069e-02 3.630161e-02 -5.284908e-02 9.057359e+01
## DDT -1.003321e-02 2.563591e-02 1.560270e-02 1.158096e+01
## SVOP 2.418828e-04 -1.077140e-03 -8.352567e-04 6.575319e-01
## TNFAIP8L2 -1.307817e-01 1.476071e-02 -1.160210e-01 1.078734e+02
## PCK2 -2.310966e-03 1.772985e-02 1.541888e-02 1.423518e+01
## ABCA7 1.085002e-01 -2.176334e-01 -1.091331e-01 1.344990e+02
## C16orf87 -3.973450e-04 -5.727999e-03 -6.125345e-03 6.091570e+00
## FAAP20 -3.840821e-03 1.495839e-02 1.111757e-02 6.403650e+00
## ARRB1 -1.257173e-02 9.924278e-02 8.667105e-02 1.067599e+02
## MEGF9 -1.025033e+00 -1.938905e-01 -1.218923e+00 6.226543e+02
## TIMMDC1 -1.010046e-02 1.506542e-02 4.964953e-03 3.044333e+01
## PAPOLG -4.218786e-02 3.124837e-03 -3.906302e-02 3.390322e+01
## ZCCHC8 -1.825194e-02 1.514867e-02 -3.103271e-03 2.155074e+01
## PDSS2 8.087710e-04 2.985043e-03 3.793814e-03 6.071353e+00
## ZNF524 -1.288206e-02 1.891818e-02 6.036119e-03 6.226857e+00
## FAM118B 1.492333e-02 -8.410233e-03 6.513094e-03 1.303980e+01
## CYP2D6 -1.539996e-04 2.498595e-03 2.344595e-03 1.190535e+00
## SSNA1 5.148541e-03 4.971134e-02 5.485988e-02 2.442246e+01
## AFTPH -7.895335e-02 -1.418254e-02 -9.313590e-02 9.830807e+01
## PPP1R8 1.782047e-03 1.134855e-02 1.313060e-02 3.369086e+01
## IPPK -4.924590e-03 5.270637e-03 3.460471e-04 6.941924e+00
## CARS2 -3.671443e-02 1.934334e-02 -1.737109e-02 3.037522e+01
## DBR1 1.280005e-03 -7.014552e-03 -5.734547e-03 1.083707e+01
## GPR18 8.173042e-03 -7.515826e-04 7.421460e-03 4.618965e+00
## PHF3 -1.121947e-01 -2.388932e-03 -1.145836e-01 9.405755e+01
## SAT2 2.652494e-02 -4.680200e-02 -2.027706e-02 3.396465e+01
## POGLUT1 1.092437e-02 -4.345519e-03 6.578853e-03 1.170563e+01
## ZFYVE19 2.566147e-02 -7.630754e-03 1.803072e-02 1.608515e+01
## TOP2B 4.014006e-02 3.856665e-02 7.870671e-02 9.843627e+01
## SFN -3.408730e-03 4.021506e-03 6.127755e-04 1.388447e+00
## FUT10 -3.811254e-03 2.341005e-03 -1.470249e-03 1.775982e+00
## AFF4 -4.377839e-02 -3.111902e-02 -7.489740e-02 4.742511e+01
## BEX3 3.132053e-02 -3.138834e-02 -6.780419e-05 1.787713e+01
## FBRSL1 1.007910e-02 1.097131e-02 2.105041e-02 1.222482e+01
## CCNJ -2.545439e-03 5.069163e-03 2.523724e-03 3.942130e+00
## ZNF346 -8.683297e-03 3.711981e-03 -4.971316e-03 1.263160e+01
## MYO19 3.226344e-03 4.146881e-03 7.373226e-03 8.323326e+00
## EMC8 -1.035221e-02 1.032380e-02 -2.841437e-05 1.396832e+01
## RABGAP1L -1.296736e-03 5.497653e-02 5.367980e-02 6.721007e+01
## UBN1 -2.963017e-01 1.707609e-01 -1.255408e-01 2.279030e+02
## MANEAL -2.665370e-03 1.742189e-05 -2.647948e-03 1.880665e+00
## SEC61A2 -9.041767e-03 -1.294289e-02 -2.198466e-02 8.772408e+00
## CDC45 -2.368043e-03 -4.754177e-03 -7.122220e-03 3.003641e+00
## MAP1A 1.714339e-02 -2.389446e-03 1.475395e-02 7.732170e+00
## NIPA2 -2.650731e-02 3.697064e-02 1.046333e-02 4.500456e+01
## PRX 2.866830e-03 -1.457233e-03 1.409597e-03 1.646852e+00
## PMPCA 9.374541e-03 7.182125e-03 1.655667e-02 1.365694e+01
## COPS7A -2.447263e-02 1.614925e-02 -8.323384e-03 3.298952e+01
## EAPP -5.987042e-02 -1.783025e-02 -7.770067e-02 6.375447e+01
## PPP2R3C -1.329481e-01 7.899003e-02 -5.395811e-02 9.261359e+01
## POLR2E -4.735325e-02 7.263529e-02 2.528203e-02 3.925324e+01
## ZBTB1 5.742220e-02 -3.974972e-02 1.767248e-02 4.360665e+01
## ZNF593 -1.178400e-02 9.062063e-03 -2.721937e-03 3.063434e+00
## PSTPIP1 -2.101494e-01 1.242378e-01 -8.591161e-02 1.156801e+02
## GLI1 1.293648e-03 7.156067e-03 8.449715e-03 3.458689e+00
## PINLYP -1.758399e-03 1.607168e-03 -1.512312e-04 7.056571e-01
## RABGGTA -1.876432e-02 1.548729e-02 -3.277029e-03 1.531104e+01
## ATAD5 3.562573e-03 -1.060684e-03 2.501889e-03 2.339838e+00
## TRMO 9.441576e-03 6.170218e-03 1.561179e-02 1.808934e+01
## PWWP2B -8.766730e-03 6.768174e-03 -1.998556e-03 4.062516e+00
## ZNF142 -9.325459e-03 2.047176e-03 -7.278283e-03 1.428404e+01
## TTC32 -3.028874e-03 1.275406e-02 9.725181e-03 1.072028e+01
## UTP3 2.238768e-02 -1.075700e-02 1.163068e-02 2.509253e+01
## CEP152 8.372334e-03 -4.204662e-03 4.167672e-03 5.899880e+00
## SREK1IP1 -8.705353e-03 1.442952e-02 5.724172e-03 2.270624e+01
## SZRD1 -4.115088e-02 -6.730626e-02 -1.084571e-01 1.369710e+02
## RAD9B 1.210154e-03 -2.447735e-04 9.653806e-04 8.244508e-01
## SNX27 -1.183917e-01 -5.199618e-02 -1.703879e-01 1.223616e+02
## LRRC75A 1.519783e-01 -4.184538e-02 1.101329e-01 5.610602e+01
## ABL1 -6.558696e-03 8.986911e-03 2.428215e-03 9.404383e+00
## C19orf53 -2.268936e-02 6.721700e-02 4.452763e-02 3.260124e+01
## ATF5 -3.956444e-03 -8.459290e-03 -1.241573e-02 7.087778e+00
## LRRC37B -1.264412e-02 -6.963306e-03 -1.960743e-02 1.816606e+01
## DPY19L1 5.913396e-03 -1.385682e-02 -7.943427e-03 1.366785e+01
## APOOL 6.128801e-03 -2.620734e-03 3.508067e-03 5.427433e+00
## DPP3 -8.722194e-03 1.526451e-02 6.542321e-03 1.418794e+01
## CTIF -1.057049e-03 -4.582927e-03 -5.639976e-03 6.187217e+00
## EMSY -1.841928e-02 1.346040e-02 -4.958875e-03 1.685720e+01
## SNRNP70 4.069745e-02 2.422677e-02 6.492422e-02 6.214085e+01
## ATRN -4.021686e-03 1.440944e-02 1.038775e-02 1.451247e+01
## ATP8A1 -1.626632e-02 5.036587e-02 3.409954e-02 3.887458e+01
## TXNDC11 -4.474138e-02 -2.597295e-02 -7.071433e-02 4.448300e+01
## GALNT10 -2.654453e-02 1.859803e-02 -7.946507e-03 4.787751e+01
## TYRO3 -2.101956e-03 1.014412e-03 -1.087544e-03 1.180734e+00
## SMARCA2 -6.721080e-02 3.608726e-02 -3.112355e-02 6.863248e+01
## UBC -4.643206e-01 -3.763881e+00 -4.228202e+00 3.852682e+03
## BATF -8.336326e-02 4.867826e-02 -3.468500e-02 2.789707e+01
## ANKDD1A 1.190416e-02 -9.225942e-03 2.678219e-03 4.258692e+00
## RTN4 -2.395219e-01 6.153162e-03 -2.333688e-01 2.023583e+02
## CBX8 4.093626e-03 -3.759532e-03 3.340938e-04 2.949253e+00
## RGS2 -7.014985e+00 5.825818e+00 -1.189167e+00 3.863006e+03
## BCCIP 1.915839e-02 -7.410620e-03 1.174777e-02 2.581299e+01
## ENTPD6 4.068937e-02 -2.956611e-02 1.112326e-02 2.340023e+01
## IRF2BPL -1.522649e-01 -3.345914e-02 -1.857240e-01 7.478880e+01
## ARL6IP1 -9.502997e-02 8.122801e-02 -1.380196e-02 1.047719e+02
## CCDC107 3.373083e-02 3.151204e-03 3.688204e-02 1.338205e+01
## YES1 1.417148e-03 -4.460232e-03 -3.043084e-03 2.958889e+00
## RAD51D 8.702106e-03 -3.356813e-03 5.345293e-03 8.382773e+00
## WDR4 1.146555e-04 4.242781e-03 4.357436e-03 2.821336e+00
## IRAK2 8.305720e-03 1.747974e-02 2.578546e-02 1.125861e+01
## TMOD4 9.409206e-04 3.191146e-04 1.260035e-03 7.959789e-01
## MLYCD 5.400005e-03 -2.833099e-03 2.566905e-03 6.967407e+00
## SPNS2 4.146323e-03 2.345240e-03 6.491563e-03 2.265150e+00
## CALM1 1.016833e-01 1.090227e-01 2.107060e-01 3.500291e+02
## ABHD17A -3.004904e-02 2.788769e-02 -2.161351e-03 1.314446e+01
## BRI3BP 3.191935e-03 1.813861e-02 2.133054e-02 2.223806e+01
## SHISA9 -1.655968e-02 -9.004946e-03 -2.556462e-02 1.863861e+01
## POU2F2 4.767186e-02 2.785514e-02 7.552700e-02 6.306457e+01
## WIPF1 -4.076691e-01 -1.805327e-01 -5.882017e-01 5.650234e+02
## TAF2 -1.937880e-02 7.883517e-03 -1.149528e-02 1.564937e+01
## CHCHD7 -1.873329e-02 -2.111370e-02 -3.984698e-02 3.252429e+01
## RPRD1B 1.665798e-02 -1.294608e-02 3.711903e-03 1.997588e+01
## CUL2 -3.723986e-03 1.393802e-02 1.021404e-02 2.219729e+01
## TLCD5 -5.410806e-04 9.298998e-04 3.888192e-04 4.633605e-01
## C17orf107 -1.815326e-03 -7.383000e-04 -2.553626e-03 6.922835e-01
## TGS1 7.563673e-03 -1.135892e-02 -3.795248e-03 1.334297e+01
## SLC49A3 -9.331804e-03 3.312828e-03 -6.018976e-03 4.653460e+00
## WDR81 8.204044e-03 1.950527e-02 2.770931e-02 1.590335e+01
## MRPL14 -8.629533e-03 2.946048e-02 2.083094e-02 1.666765e+01
## GHITM -1.374294e-01 1.148063e-01 -2.262301e-02 1.907105e+02
## CENPJ 2.457228e-03 1.739368e-03 4.196596e-03 3.495916e+00
## SPAG5 -4.443426e-03 1.249273e-02 8.049305e-03 6.717902e+00
## SACM1L -5.714832e-02 1.325002e-02 -4.389830e-02 5.677837e+01
## PRAM1 -8.282856e-02 1.245953e-01 4.176670e-02 6.144100e+01
## COX5B -8.675717e-02 4.413496e-02 -4.262221e-02 5.214352e+01
## NUCB1 -2.911122e-01 1.278358e-01 -1.632764e-01 1.311204e+02
## YIPF2 -9.461301e-03 9.700363e-03 2.390629e-04 5.261648e+00
## PDK2 9.316078e-03 2.680576e-03 1.199665e-02 7.084785e+00
## RNF181 -9.177701e-02 7.487055e-02 -1.690646e-02 7.283246e+01
## CRTC2 5.877483e-02 5.141935e-02 1.101942e-01 1.006048e+02
## PSMD12 -4.432908e-04 -2.096724e-02 -2.141053e-02 3.117717e+01
## OTUD6B 6.641917e-03 -5.603346e-03 1.038571e-03 5.811019e+00
## ZNF428 8.175723e-03 5.158597e-03 1.333432e-02 5.318681e+00
## THAP4 2.998628e-03 1.191943e-02 1.491806e-02 9.293156e+00
## KTI12 -5.019467e-03 4.349602e-03 -6.698654e-04 5.873845e+00
## SELENOH -7.815752e-04 3.569960e-02 3.491803e-02 1.989418e+01
## ZNF234 5.440929e-03 -2.334518e-03 3.106411e-03 3.680756e+00
## MSRB2 -8.414255e-02 3.095774e-02 -5.318481e-02 4.388680e+01
## NUP210 -1.298497e-02 6.919770e-02 5.621273e-02 5.178056e+01
## TGFB1 -2.409942e-01 -3.270188e-02 -2.736961e-01 2.032272e+02
## UFM1 -3.704567e-02 3.247308e-02 -4.572585e-03 4.554481e+01
## MICOS13 2.162324e-02 8.980395e-03 3.060363e-02 9.441504e+00
## IMP4 -2.349554e-02 1.311287e-02 -1.038266e-02 1.551667e+01
## AP2M1 -7.477745e-02 1.851199e-01 1.103425e-01 2.064488e+02
## SEC24B -2.184506e-02 -1.719390e-02 -3.903897e-02 3.617099e+01
## GPATCH8 -3.628702e-02 2.240132e-02 -1.388570e-02 2.878337e+01
## SFT2D1 -2.990558e-02 -3.725996e-02 -6.716553e-02 5.635925e+01
## POLI -3.956595e-04 1.349706e-02 1.310140e-02 1.511171e+01
## TPCN1 2.273037e-02 2.964871e-03 2.569524e-02 1.895048e+01
## ADAM15 -9.982671e-02 1.032640e-01 3.437311e-03 4.986510e+01
## UBA52 6.215192e-01 7.523747e-01 1.373894e+00 7.891039e+02
## RAB3A -1.803289e-04 1.456006e-03 1.275677e-03 8.812048e-01
## RARA -1.655371e-01 -1.745843e-02 -1.829956e-01 1.399666e+02
## RRP8 9.956836e-03 -1.940534e-03 8.016302e-03 1.294658e+01
## ARPC4 -7.264824e-01 3.341649e-01 -3.923175e-01 5.025762e+02
## ARHGAP17 -5.747109e-04 -1.521662e-02 -1.579133e-02 2.234500e+01
## MYLIP -9.370748e-02 -5.147657e-02 -1.451840e-01 8.963508e+01
## ITGB1 2.869715e-01 -9.460204e-02 1.923694e-01 2.508506e+02
## TMSB4X 5.427420e+00 -5.164067e+00 2.633531e-01 6.133995e+03
## AGPAT3 3.524629e-02 -2.954450e-02 5.701792e-03 3.431162e+01
## C5AR1 -3.367833e-01 7.711921e-01 4.344088e-01 6.416325e+02
## SKA3 -2.686210e-03 3.346672e-03 6.604624e-04 1.473196e+00
## HINT2 1.806732e-03 1.378169e-02 1.558842e-02 7.877930e+00
## JMJD1C -3.517076e-01 1.609144e-01 -1.907932e-01 1.958046e+02
## RESF1 -1.508270e+00 5.251601e-01 -9.831097e-01 7.096737e+02
## RNF217 -7.607733e-03 4.330678e-03 -3.277055e-03 4.574101e+00
## TBKBP1 -8.718224e-02 9.286131e-03 -7.789611e-02 4.645333e+01
## SERINC5 -5.061145e-03 2.719639e-02 2.213524e-02 2.426804e+01
## TJAP1 8.693635e-03 2.260466e-03 1.095410e-02 1.175996e+01
## CHD6 -1.700677e-02 2.117406e-02 4.167287e-03 1.290575e+01
## LNPK 6.894158e-03 -6.422099e-02 -5.732683e-02 2.646520e+01
## ATAD3C 1.595352e-03 -1.126859e-03 4.684932e-04 7.720487e-01
## DHX57 7.602871e-03 -1.349313e-02 -5.890256e-03 1.253785e+01
## DEDD2 -1.648342e-01 7.583791e-02 -8.899630e-02 1.291831e+02
## LRP3 3.922656e-03 -7.843508e-03 -3.920852e-03 2.415816e+00
## DNAJC16 -5.033459e-03 7.190232e-03 2.156774e-03 9.052106e+00
## PNKD -4.242199e-02 2.794460e-02 -1.447739e-02 3.639197e+01
## PTCH1 6.536435e-03 1.301708e-03 7.838142e-03 3.415056e+00
## CD48 3.851416e-01 -3.856983e-01 -5.566830e-04 4.285098e+02
## U2SURP 5.093257e-02 -1.735066e-02 3.358191e-02 5.825129e+01
## RPGRIP1L 7.610397e-04 5.497055e-04 1.310745e-03 7.113638e-01
## NACC2 -5.185164e-02 4.366773e-02 -8.183912e-03 5.099029e+01
## ZNF552 -3.732726e-02 9.440973e-03 -2.788629e-02 2.012513e+01
## DNAJB9 2.470752e-03 -5.475513e-02 -5.228438e-02 2.019151e+01
## KRCC1 -7.273922e-02 1.364956e-02 -5.908967e-02 5.470858e+01
## NRM -2.308867e-02 1.917222e-02 -3.916453e-03 1.595552e+01
## RPS26 -5.868271e-01 4.395645e-01 -1.472626e-01 2.203303e+02
## JDP2 -1.030316e-02 -1.103715e-01 -1.206747e-01 7.230123e+01
## ZNF12 -2.924174e-02 1.597765e-02 -1.326409e-02 2.983030e+01
## METTL26 2.207367e-02 7.055336e-03 2.912901e-02 7.711972e+00
## SLC2A8 -3.523539e-05 3.629059e-03 3.593824e-03 1.523039e+00
## CAMSAP2 2.610128e-03 1.388571e-03 3.998699e-03 1.998886e+00
## SLC12A4 -1.101510e-02 4.343651e-03 -6.671447e-03 1.296350e+01
## PTPN9 2.194719e-02 -1.256439e-02 9.382801e-03 2.903322e+01
## ELOVL7 -9.163553e-03 -9.923170e-03 -1.908672e-02 9.774018e+00
## ZCCHC14 -8.455219e-03 8.939710e-03 4.844908e-04 8.135402e+00
## CHST14 4.374198e-03 -2.558680e-03 1.815518e-03 4.590768e+00
## COPS9 -1.251916e-02 3.134868e-02 1.882952e-02 1.397782e+01
## TMTC2 -5.140079e-03 -1.993977e-03 -7.134056e-03 5.286488e+00
## PPP1R11 -6.734431e-02 2.008390e-02 -4.726042e-02 9.437228e+01
## YPEL3 -3.084311e-01 -2.012654e-02 -3.285577e-01 2.145503e+02
## MRO -6.313327e-04 9.534822e-04 3.221495e-04 4.603678e-01
## RBM5 -3.486615e-02 -1.243038e-01 -1.591699e-01 2.300329e+02
## H2AJ -3.505411e-02 2.419781e-02 -1.085630e-02 1.515995e+01
## MRS2 8.918714e-03 -6.518857e-03 2.399857e-03 1.265212e+01
## GRAMD4 7.548033e-03 -1.193032e-02 -4.382292e-03 1.295125e+01
## TIMELESS 4.944521e-03 -1.111189e-02 -6.167371e-03 9.411419e+00
## SLC16A1 4.671897e-03 4.561004e-03 9.232901e-03 7.814640e+00
## C14orf93 1.535926e-02 -1.532539e-02 3.387115e-05 1.555135e+01
## ERCC4 1.781180e-05 4.397030e-03 4.414842e-03 4.003893e+00
## SMIM4 -1.956897e-03 5.371662e-03 3.414765e-03 2.872167e+00
## EPHA6 -1.071047e-03 4.960956e-04 -5.749512e-04 5.813125e-01
## IDH3B 5.643301e-02 4.323522e-03 6.075653e-02 5.581112e+01
## UBE2C -8.354529e-03 6.433056e-03 -1.921473e-03 4.610626e+00
## NAA60 -4.073869e-02 2.960243e-02 -1.113625e-02 3.321897e+01
## WBP1 -5.830583e-02 4.653183e-02 -1.177401e-02 4.403225e+01
## LMF2 1.889653e-02 4.286681e-02 6.176334e-02 2.634210e+01
## SMURF1 -2.316243e-02 7.349718e-03 -1.581271e-02 1.848964e+01
## TLE4 -8.271554e-02 -2.513744e-02 -1.078530e-01 1.029233e+02
## TRIAP1 7.265455e-04 -1.135689e-02 -1.063035e-02 1.250365e+01
## PADI4 -3.909230e-01 4.531881e-01 6.226518e-02 2.678612e+02
## SLC15A4 -2.848713e-01 1.262278e-01 -1.586435e-01 1.563869e+02
## PRC1 6.200485e-03 1.175999e-02 1.796047e-02 7.020148e+00
## EGR2 -2.106028e-02 3.664462e-02 1.558434e-02 7.903924e+00
## ADSS2 7.049091e-02 -1.265681e-03 6.922522e-02 5.848943e+01
## SLC23A2 -8.769860e-03 2.193443e-02 1.316457e-02 1.910793e+01
## MNDA -3.505094e+00 1.908775e+00 -1.596319e+00 2.680663e+03
## NDUFC1 -6.888696e-03 8.376163e-03 1.487467e-03 8.786406e+00
## PDGFD -2.001465e-03 -4.612793e-03 -6.614258e-03 3.274272e+00
## CBR1 2.281787e-02 -1.654414e-02 6.273730e-03 1.667833e+01
## SPATA2 -9.852761e-04 -7.985998e-03 -8.971274e-03 1.148184e+01
## COG7 5.468406e-03 -2.486898e-03 2.981508e-03 6.669467e+00
## RANBP1 -7.374742e-03 1.919316e-02 1.181841e-02 1.438915e+01
## ADAL -2.621612e-03 1.709551e-03 -9.120606e-04 2.104415e+00
## SLC35D2 1.153821e-02 -1.268042e-02 -1.142206e-03 1.862275e+01
## LOC107984974 2.612616e-03 -2.823657e-04 2.330251e-03 3.523996e+00
## LYVE1 -7.701064e-03 3.427331e-03 -4.273733e-03 3.027583e+00
## PDAP1 -4.954372e-02 5.308410e-02 3.540375e-03 7.026995e+01
## EEFSEC 1.234306e-02 2.404296e-03 1.474735e-02 6.400606e+00
## DDX6 -2.887309e-02 -1.157870e-01 -1.446601e-01 1.749070e+02
## KHDC4 -6.633681e-03 1.832916e-02 1.169547e-02 2.524410e+01
## EXOC4 -6.415687e-03 1.978609e-02 1.337041e-02 3.364244e+01
## SLC39A9 -1.306169e-02 -1.647708e-02 -2.953877e-02 3.976978e+01
## DSTYK -1.819914e-02 5.748400e-03 -1.245074e-02 1.804712e+01
## ZNF706 -2.408971e-02 1.187730e-02 -1.221242e-02 2.859164e+01
## MTCH2 -1.026142e-02 -4.626606e-03 -1.488802e-02 2.093786e+01
## TMEM33 -8.461189e-02 -2.642822e-02 -1.110401e-01 8.234093e+01
## HDHD5 2.415595e-02 -3.024545e-03 2.113141e-02 1.875453e+01
## LRCH1 -8.348767e-03 1.381943e-04 -8.210572e-03 8.424754e+00
## ELMOD3 7.282450e-03 -1.896445e-02 -1.168200e-02 2.435712e+01
## PIK3R4 1.838857e-02 -1.128826e-02 7.100313e-03 1.805780e+01
## LIN37 1.832875e-04 -1.491051e-02 -1.472723e-02 1.274398e+01
## WARS1 -1.698668e-01 3.509366e-01 1.810697e-01 2.018228e+02
## UBXN11 7.691231e-02 3.870455e-02 1.156169e-01 5.223788e+01
## BMERB1 2.365498e-03 -3.376745e-03 -1.011247e-03 2.148346e+00
## SKAP2 -3.113259e-01 3.065873e-01 -4.738567e-03 2.035421e+02
## KCNH3 -1.851982e-02 1.368637e-02 -4.833453e-03 5.687760e+00
## ZC3H3 -3.428218e-02 1.570532e-02 -1.857686e-02 1.505171e+01
## PUM2 -1.570839e-01 1.367241e-01 -2.035973e-02 1.661177e+02
## CDK5RAP1 1.303679e-02 4.256460e-03 1.729325e-02 1.508499e+01
## YIPF3 -1.312704e-01 1.032976e-01 -2.797279e-02 1.152890e+02
## TRIM11 2.692258e-02 -1.278395e-02 1.413863e-02 2.216226e+01
## CALHM2 8.995309e-03 1.097982e-02 1.997513e-02 1.316614e+01
## THAP6 -1.221447e-02 1.011613e-02 -2.098342e-03 1.172890e+01
## LEMD3 -2.942666e-02 -6.940639e-03 -3.636730e-02 3.364193e+01
## TPTEP2-CSNK1E -2.980445e-03 -2.546764e-03 -5.527209e-03 3.588225e+00
## RFX5 -1.712410e-03 3.589036e-02 3.417795e-02 3.812953e+01
## MDH2 -2.785958e-02 7.213908e-02 4.427950e-02 5.830712e+01
## ZNF641 -1.316859e-01 1.108560e-01 -2.082988e-02 9.037185e+01
## MKNK2 -2.034890e-01 1.370394e-01 -6.644969e-02 1.762444e+02
## GDPD5 2.516581e-02 -3.048882e-03 2.211693e-02 9.429344e+00
## PRR5L -2.787167e-02 1.116490e-02 -1.670676e-02 1.514150e+01
## STX4 -5.677879e-02 2.484056e-02 -3.193823e-02 5.384012e+01
## ZNF770 2.808443e-02 8.853291e-03 3.693772e-02 3.597619e+01
## IPO8 -3.039874e-02 1.676209e-04 -3.023112e-02 3.531896e+01
## USP16 2.667270e-02 2.634592e-03 2.930729e-02 3.370198e+01
## RRP1 8.167570e-04 1.091724e-02 1.173400e-02 6.928780e+00
## PARG -5.503751e-03 1.210261e-02 6.598863e-03 1.400629e+01
## CHST12 -2.168843e-02 1.427962e-02 -7.408810e-03 1.257171e+01
## RAD9A 5.477219e-03 8.905031e-03 1.438225e-02 1.299548e+01
## LYPLA2 -6.840031e-02 7.087576e-02 2.475448e-03 4.850174e+01
## PLEKHB2 -7.826960e-02 -1.777703e-02 -9.604664e-02 1.364460e+02
## ZSWIM7 1.288547e-02 -8.975758e-03 3.909711e-03 1.089111e+01
## INSIG1 -4.240789e-02 1.050348e-02 -3.190441e-02 4.577264e+01
## RAD50 1.510372e-02 1.864871e-04 1.529021e-02 1.636742e+01
## ZDHHC11 1.142957e-03 -2.149079e-04 9.280494e-04 6.469428e-01
## STAG2 -3.288336e-01 8.165904e-02 -2.471745e-01 2.308170e+02
## C5orf51 -2.653952e-02 1.145624e-02 -1.508328e-02 2.241249e+01
## MPV17 -4.805526e-04 -8.443148e-03 -8.923701e-03 1.545278e+01
## WWOX 2.369729e-03 -1.092993e-03 1.276736e-03 1.847650e+00
## PSMD1 -1.628422e-02 -1.959799e-02 -3.588220e-02 4.429797e+01
## BCL2L13 -1.946427e-02 -6.897857e-03 -2.636213e-02 3.905025e+01
## FCSK 1.252678e-02 -1.296697e-02 -4.401896e-04 1.015727e+01
## VIRMA -3.166346e-02 7.808716e-03 -2.385475e-02 4.041834e+01
## TRNT1 -9.863507e-03 1.025231e-02 3.888010e-04 1.629360e+01
## KLHL20 -8.442799e-03 3.571755e-03 -4.871044e-03 6.873662e+00
## EPN1 -7.495429e-02 4.057366e-02 -3.438063e-02 3.854586e+01
## TFPT -7.967241e-03 2.277344e-02 1.480620e-02 1.134438e+01
## CTDNEP1 -1.198520e-01 1.157412e-01 -4.110768e-03 1.228679e+02
## ACSF2 9.462377e-03 8.171482e-03 1.763386e-02 8.752576e+00
## PCLAF -1.988639e-02 1.325282e-02 -6.633575e-03 8.655233e+00
## ZNF134 6.719938e-03 4.357380e-03 1.107732e-02 1.159246e+01
## CITED4 -6.063959e-03 1.858328e-02 1.251932e-02 4.646462e+00
## GSG1 7.463565e-04 -9.269166e-04 -1.805602e-04 4.906776e-01
## FOXM1 -7.984907e-03 1.023002e-02 2.245115e-03 4.901730e+00
## ZDHHC13 -1.725322e-02 6.287712e-03 -1.096551e-02 1.513708e+01
## RING1 2.250776e-02 6.288506e-04 2.313661e-02 2.217091e+01
## PKIG 5.490526e-03 -9.195592e-03 -3.705066e-03 5.241906e+00
## LMTK2 -1.613779e-02 -3.645432e-02 -5.259211e-02 3.392135e+01
## TRIM33 -7.628553e-02 4.346617e-02 -3.281936e-02 5.967808e+01
## ZBTB8B -1.324514e-03 1.553263e-03 2.287491e-04 1.333320e+00
## GFER 8.478976e-03 9.853351e-03 1.833233e-02 8.896291e+00
## TTC30B 1.335119e-03 -4.055427e-03 -2.720308e-03 3.405914e+00
## FBN2 -1.539928e-02 1.318962e-02 -2.209654e-03 8.114657e+00
## RNF11 -1.250782e-02 -1.255480e-01 -1.380558e-01 1.154221e+02
## ZNF449 -2.824017e-03 4.943203e-03 2.119186e-03 4.590441e+00
## SDE2 -1.362180e-02 2.631756e-02 1.269575e-02 2.019426e+01
## NOM1 3.517444e-03 3.506020e-03 7.023464e-03 7.310789e+00
## C8orf82 -3.897453e-03 5.372944e-03 1.475491e-03 2.961072e+00
## TUBGCP4 1.276242e-04 5.842554e-03 5.970178e-03 5.749259e+00
## TSPAN4 -4.800788e-03 6.536271e-03 1.735483e-03 2.597940e+00
## SRP9 6.455374e-03 8.776453e-02 9.421990e-02 1.459392e+02
## MPND -1.627094e-02 1.656485e-02 2.939088e-04 8.577298e+00
## SEPTIN8 5.680859e-03 -2.028186e-03 3.652673e-03 3.344161e+00
## SMG9 5.768581e-03 1.402744e-02 1.979602e-02 1.302365e+01
## MCMBP -5.633335e-02 -9.260708e-02 -1.489404e-01 1.342862e+02
## HNRNPAB 2.914164e-02 -9.862707e-03 1.927894e-02 4.151170e+01
## C1orf35 1.618388e-03 5.184146e-03 6.802534e-03 4.197782e+00
## TRIM39 -2.453676e-02 2.003246e-02 -4.504298e-03 3.460387e+01
## KDM4C -9.302542e-03 2.055100e-02 1.124845e-02 2.293489e+01
## TMEM242 3.987683e-03 1.405134e-03 5.392817e-03 8.077745e+00
## MTF1 -1.265989e-01 2.597748e-02 -1.006215e-01 8.288418e+01
## ZFR -4.662164e-02 2.090014e-02 -2.572151e-02 5.404329e+01
## ZMYM1 5.443075e-03 -6.759475e-04 4.767128e-03 4.970731e+00
## P2RY2 -7.803815e-03 1.469714e-02 6.893322e-03 9.608139e+00
## LRRC29 4.444397e-04 -2.178226e-03 -1.733787e-03 1.152030e+00
## CD24 4.327805e-01 8.240827e-02 5.151888e-01 1.206098e+02
## SLFN11 -5.157801e-02 9.930917e-03 -4.164709e-02 3.929425e+01
## CSRP1 -2.159301e-02 -3.751403e-02 -5.910703e-02 5.188594e+01
## SGO1 2.449690e-03 -8.916751e-04 1.558015e-03 1.233835e+00
## ZNF43 -1.757451e-03 6.356623e-03 4.599172e-03 6.916375e+00
## PRR14 -3.628956e-02 5.671357e-02 2.042401e-02 4.328289e+01
## TMEM69 5.342765e-03 -9.192365e-03 -3.849600e-03 1.481066e+01
## GON4L -2.536011e-02 -4.793365e-03 -3.015348e-02 4.522734e+01
## CLINT1 -2.028188e-02 -5.632540e-02 -7.660728e-02 5.934045e+01
## CLCF1 3.272101e-03 2.612394e-04 3.533340e-03 2.005736e+00
## ZNF518B -1.654335e-02 5.788551e-03 -1.075480e-02 1.440457e+01
## PIGC 9.652648e-03 -1.084936e-02 -1.196714e-03 2.101348e+01
## UBQLN1 -5.189970e-02 -1.403365e-02 -6.593335e-02 8.366452e+01
## ATP11C -9.007782e-03 1.589662e-02 6.888835e-03 1.601883e+01
## NDUFC2 -4.314737e-02 1.932979e-02 -2.381758e-02 2.833184e+01
## RNF222 8.368658e-04 2.219292e-04 1.058795e-03 4.734091e-01
## COLQ 6.624504e-03 -3.360768e-03 3.263736e-03 3.232565e+00
## YBX3 7.716926e-02 -1.256815e-03 7.591245e-02 5.657805e+01
## IFT20 -2.650685e-02 -1.989763e-03 -2.849661e-02 2.209767e+01
## HERC4 -4.925849e-02 -2.505414e-02 -7.431262e-02 6.649899e+01
## EED -8.113309e-03 -3.980675e-04 -8.511376e-03 1.501943e+01
## SNRNP35 -3.311347e-02 2.412528e-02 -8.988189e-03 2.813585e+01
## SLC16A7 3.143188e-03 1.314991e-02 1.629310e-02 1.160564e+01
## CEP44 1.697952e-03 -7.092133e-03 -5.394181e-03 9.416458e+00
## PDLIM7 -1.780894e-01 9.969187e-02 -7.839758e-02 9.641261e+01
## THOC6 1.343399e-02 1.344576e-02 2.687976e-02 1.286914e+01
## ZNF687 -4.102512e-02 -3.499038e-03 -4.452416e-02 4.233340e+01
## HLA-DRB1 9.305565e-01 -3.604281e-01 5.701284e-01 3.976591e+02
## MYB 1.292631e-02 -1.882425e-02 -5.897945e-03 7.418803e+00
## NDUFS8 -2.773629e-03 1.906089e-02 1.628726e-02 6.602091e+00
## TRADD 1.650382e-02 2.901164e-02 4.551547e-02 2.889772e+01
## HELLS 4.931264e-04 -2.876894e-03 -2.383767e-03 1.789444e+00
## GGA1 -4.107850e-02 4.290465e-02 1.826149e-03 3.310172e+01
## TMEM91 -3.152784e-02 -5.898414e-02 -9.051198e-02 5.322042e+01
## POLR2J -6.867425e-02 5.779872e-02 -1.087553e-02 5.636251e+01
## POLA2 -1.081446e-03 1.017168e-02 9.090237e-03 1.168967e+01
## MGAT4A -4.903657e-02 3.934414e-02 -9.692429e-03 5.895381e+01
## LYRM1 3.550860e-02 -8.605732e-02 -5.054872e-02 5.538136e+01
## KIF24 1.422990e-03 1.990564e-05 1.442895e-03 8.539490e-01
## TRIP13 5.562974e-04 -3.411335e-03 -2.855037e-03 1.759339e+00
## ZNF805 4.852063e-03 2.552732e-03 7.404795e-03 8.588368e+00
## MOB4 -2.966277e-02 -2.214445e-02 -5.180722e-02 5.410586e+01
## FAM234A -4.194685e-03 1.980848e-02 1.561380e-02 1.168475e+01
## AACS 2.554780e-03 2.450256e-03 5.005036e-03 5.468780e+00
## CAPS 8.346422e-03 2.230285e-03 1.057671e-02 3.179834e+00
## RSRC2 -1.195855e-02 -4.366696e-02 -5.562551e-02 6.840530e+01
## CWC15 2.501542e-02 -2.468266e-02 3.327603e-04 4.753225e+01
## HDAC11 1.557143e-03 -5.911750e-03 -4.354607e-03 4.338856e+00
## MAP1S -1.779417e-02 9.709538e-03 -8.084636e-03 8.371213e+00
## ATP5MC1 -4.352431e-02 4.066045e-02 -2.863860e-03 2.710169e+01
## MARCO -5.323262e-02 5.935490e-02 6.122283e-03 2.188781e+01
## GTF2H2 -2.122954e-02 3.361211e-02 1.238257e-02 1.818970e+01
## FUT6 -7.583727e-04 9.167072e-04 1.583344e-04 5.609563e-01
## MIOS 9.346583e-04 9.357891e-03 1.029255e-02 2.059521e+01
## PARP8 -3.416649e-01 -3.393237e-02 -3.755973e-01 2.770455e+02
## ANKRD10 6.815679e-03 1.932965e-02 2.614533e-02 5.011612e+01
## SMNDC1 -5.122129e-03 -3.838859e-02 -4.351072e-02 4.881324e+01
## FMO5 6.190851e-04 -5.045563e-03 -4.426478e-03 4.866939e+00
## RBM33 -7.175211e-02 4.169531e-02 -3.005680e-02 7.705365e+01
## DAAM1 5.783662e-03 -1.084147e-03 4.699515e-03 5.636923e+00
## RFC2 -1.685011e-02 -5.909870e-03 -2.275998e-02 2.617831e+01
## ABCB1 3.573348e-03 6.397604e-03 9.970951e-03 4.714665e+00
## EFCAB8 -1.028909e-03 2.119297e-03 1.090388e-03 1.110723e+00
## CXCR2 -2.715915e+00 8.271321e-01 -1.888783e+00 1.534318e+03
## YPEL1 1.751419e-03 -8.470395e-03 -6.718976e-03 7.419667e+00
## TCF20 -3.310831e-02 4.829603e-02 1.518772e-02 4.303633e+01
## MCRIP1 -1.645334e-02 5.290195e-02 3.644860e-02 1.728762e+01
## GUSB -5.596729e-02 -1.152684e-02 -6.749413e-02 5.819661e+01
## CHIC2 -6.557278e-02 2.604383e-02 -3.952895e-02 4.002723e+01
## PM20D2 -3.735786e-03 1.123470e-02 7.498913e-03 1.020218e+01
## TMUB1 -5.747555e-03 1.660529e-02 1.085773e-02 6.908028e+00
## RHOBTB1 -7.674364e-03 1.851090e-02 1.083654e-02 1.013776e+01
## ZNF222 -6.050213e-03 -7.500636e-03 -1.355085e-02 8.224666e+00
## NISCH 2.148809e-02 -3.782571e-02 -1.633762e-02 4.568418e+01
## MRPL28 -7.458982e-02 6.100504e-02 -1.358478e-02 3.672365e+01
## ODF3B 2.340920e-02 -2.091335e-02 2.495854e-03 6.399269e+00
## F13A1 2.044516e-01 -3.893034e-01 -1.848518e-01 2.145782e+02
## PRRC2C -1.207992e-01 5.743240e-02 -6.336678e-02 1.108168e+02
## NOLC1 -2.347961e-03 2.317114e-02 2.082318e-02 2.680148e+01
## PEX10 6.060368e-04 1.909700e-03 2.515737e-03 2.277136e+00
## BTAF1 -4.161317e-02 7.399086e-02 3.237769e-02 5.556688e+01
## CLEC2L -1.681007e-03 -2.324353e-03 -4.005360e-03 1.346965e+00
## ZNF692 2.573034e-02 -3.085074e-02 -5.120395e-03 2.986729e+01
## MSL1 -1.183403e+00 7.131536e-01 -4.702490e-01 6.883031e+02
## CUEDC2 -2.812009e-02 4.029813e-02 1.217804e-02 3.129498e+01
## NAT1 -1.177094e-02 1.042713e-02 -1.343813e-03 1.120642e+01
## LGALSL -8.135245e-02 1.164581e-01 3.510563e-02 5.275608e+01
## LENG9 -9.603660e-03 3.322721e-03 -6.280939e-03 2.339504e+00
## LYSMD4 3.416892e-03 2.137021e-04 3.630594e-03 3.084242e+00
## PDE7A 5.414198e-02 2.606491e-02 8.020689e-02 8.462636e+01
## SLC4A1AP -1.869863e-02 2.121995e-03 -1.657664e-02 2.485660e+01
## DENND1C -2.122814e-02 -4.102409e-02 -6.225223e-02 6.290853e+01
## SLC45A4 -5.067715e-02 8.454856e-02 3.387141e-02 6.877659e+01
## ZDHHC8 6.269165e-03 -6.510382e-04 5.618127e-03 3.354689e+00
## TPX2 -7.707879e-03 1.219408e-02 4.486199e-03 5.671138e+00
## LAMP5 -5.572167e-03 2.049840e-03 -3.522327e-03 2.360832e+00
## CD8A 9.888742e-02 1.496426e-02 1.138517e-01 4.954255e+01
## ALG10 -1.783610e-03 4.964268e-04 -1.287183e-03 1.896770e+00
## TCF19 -1.532757e-04 1.177549e-02 1.162222e-02 8.786556e+00
## CPNE1 -6.889397e-02 1.089001e-01 4.000610e-02 1.233677e+02
## HSPA8 3.433367e-01 -4.239026e-01 -8.056593e-02 5.556097e+02
## RBBP4 4.284658e-02 2.277145e-03 4.512372e-02 8.173500e+01
## IFT43 4.295594e-03 1.758676e-03 6.054270e-03 3.631648e+00
## POT1 1.244715e-02 -4.100483e-03 8.346667e-03 1.399560e+01
## ENOX2 6.358780e-03 -4.170962e-03 2.187818e-03 7.739353e+00
## MARCHF6 -1.040136e-01 7.034662e-02 -3.366697e-02 1.123160e+02
## GET4 -1.552016e-02 2.560221e-02 1.008205e-02 1.780252e+01
## KLHL17 2.493834e-03 6.405185e-04 3.134353e-03 1.517939e+00
## CRCP -2.604829e-02 8.012573e-03 -1.803571e-02 2.918578e+01
## MPST -2.531268e-02 2.008774e-02 -5.224947e-03 1.031564e+01
## TIGD6 -1.044618e-03 -8.501066e-04 -1.894725e-03 1.564326e+00
## RELCH -2.978481e-02 -8.533855e-03 -3.831866e-02 4.382168e+01
## MCC 1.692093e-03 3.727810e-03 5.419904e-03 3.368672e+00
## LYRM9 5.519447e-03 -3.692245e-03 1.827202e-03 4.286510e+00
## MRPS11 -1.292479e-02 1.744917e-02 4.524379e-03 1.483592e+01
## S1PR4 -2.593118e-01 7.948572e-02 -1.798261e-01 8.645349e+01
## NINJ1 4.064602e-01 -9.970625e-02 3.067540e-01 2.246074e+02
## NDRG3 -2.955970e-02 2.094963e-02 -8.610068e-03 4.080456e+01
## SCFD2 -2.057731e-03 6.960765e-03 4.903034e-03 7.682012e+00
## CAMKK1 -6.210525e-02 4.068161e-02 -2.142364e-02 3.829130e+01
## CENPB 4.150161e-02 2.788303e-02 6.938463e-02 3.313386e+01
## YIPF4 -8.100740e-02 5.928256e-02 -2.172484e-02 7.343388e+01
## KTN1 3.504902e-02 1.608610e-02 5.113512e-02 6.916742e+01
## RECQL4 -5.110994e-03 5.427988e-03 3.169938e-04 2.071894e+00
## SPINDOC 1.429684e-03 2.995737e-03 4.425421e-03 2.752202e+00
## ABHD14A 3.357194e-03 6.163262e-03 9.520455e-03 4.115691e+00
## ARHGAP4 -1.662848e-01 2.373959e-01 7.111108e-02 1.336422e+02
## FXYD5 4.219046e-01 -1.386863e-01 2.832183e-01 1.842737e+02
## PGLS -3.623085e-02 8.053178e-02 4.430093e-02 4.444768e+01
## RAD52 3.766548e-03 -2.107865e-03 1.658683e-03 3.749775e+00
## ZNF257 1.711849e-03 -1.012974e-03 6.988751e-04 9.942495e-01
## HPF1 -4.273355e-03 -6.148751e-03 -1.042211e-02 1.099528e+01
## ZC3H7B 2.162104e-02 -6.858345e-03 1.476269e-02 2.044775e+01
## ANKLE2 -1.696764e-02 1.186895e-02 -5.098690e-03 4.270358e+01
## HDHD3 1.225486e-02 4.274042e-03 1.652891e-02 8.956087e+00
## RPH3AL -5.688855e-03 1.966580e-03 -3.722274e-03 2.837813e+00
## B3GAT3 -1.968701e-02 4.229937e-02 2.261236e-02 1.835872e+01
## RNASEH2C 7.267041e-03 2.669103e-02 3.395807e-02 2.259073e+01
## LRIG2 -7.054151e-03 6.044992e-03 -1.009159e-03 9.407140e+00
## DENR -8.329259e-03 2.149732e-02 1.316806e-02 4.751001e+01
## PPP2R2A -3.729146e-02 3.287824e-02 -4.413223e-03 4.953540e+01
## FLAD1 7.464643e-03 1.303809e-02 2.050273e-02 2.095031e+01
## MYO7B -3.307910e-02 2.989273e-03 -3.008983e-02 1.468504e+01
## COX6B1 -3.329712e-01 2.759076e-01 -5.706362e-02 2.210346e+02
## RAF1 -3.985319e-01 1.201430e-01 -2.783890e-01 3.638603e+02
## MCM4 1.421301e-02 -1.563507e-02 -1.422056e-03 1.195038e+01
## TMEM183A -4.153520e-02 3.619778e-02 -5.337421e-03 6.312724e+01
## PIK3R5 -1.650766e-01 -4.132961e-02 -2.064062e-01 2.255393e+02
## USP13 3.446513e-03 -1.883762e-03 1.562750e-03 2.366351e+00
## MEMO1 7.988139e-03 -2.694851e-02 -1.896037e-02 4.044868e+01
## GALK1 -2.949948e-02 2.256013e-02 -6.939347e-03 1.286662e+01
## IARS2 -2.777783e-03 2.592472e-02 2.314694e-02 3.979436e+01
## NFIL3 -5.005261e-01 1.269623e-01 -3.735638e-01 2.600225e+02
## PNPT1 -2.394784e-02 -1.688737e-02 -4.083521e-02 1.826990e+01
## RASSF4 2.565824e-02 -7.412498e-02 -4.846674e-02 5.750386e+01
## STMN1 3.787970e-02 1.970603e-02 5.758574e-02 3.292449e+01
## RBM15 -8.670833e-03 -2.584346e-03 -1.125518e-02 1.072733e+01
## VKORC1L1 1.086005e-02 -3.081448e-02 -1.995444e-02 1.815543e+01
## PTPRE -1.765184e-01 -9.019762e-02 -2.667161e-01 2.166827e+02
## C5orf24 1.501045e-02 -1.742554e-03 1.326790e-02 1.594183e+01
## ZFPL1 7.597954e-03 8.119198e-03 1.571715e-02 1.067588e+01
## COX5A -3.208844e-02 4.121635e-02 9.127910e-03 3.889058e+01
## AP3M1 1.290851e-02 1.366155e-02 2.657006e-02 3.754818e+01
## ZNF185 -1.420471e-01 9.426161e-02 -4.778547e-02 9.586781e+01
## NDUFA11 -2.223341e-02 6.468875e-02 4.245533e-02 2.527139e+01
## CSTF1 8.402555e-03 4.035235e-05 8.442908e-03 2.205000e+01
## GID8 -1.114774e-02 2.325882e-02 1.211108e-02 5.071817e+01
## HVCN1 1.251107e-02 3.315076e-02 4.566183e-02 4.399802e+01
## AHRR 2.036824e-04 8.771377e-04 1.080820e-03 5.956991e-01
## FBXO3 3.901312e-03 -2.284667e-02 -1.894536e-02 3.069354e+01
## RANGAP1 3.739585e-02 1.188613e-02 4.928198e-02 2.825330e+01
## ZWILCH 3.605822e-03 1.896122e-03 5.501944e-03 4.909032e+00
## PCTP 5.507229e-03 -5.161775e-02 -4.611052e-02 4.473555e+01
## SH3BP1 -7.538522e-02 2.721187e-02 -4.817335e-02 5.284604e+01
## FBXL19 -8.552284e-03 1.009519e-02 1.542909e-03 9.718664e+00
## ARHGEF6 -1.150920e-01 3.924035e-02 -7.585163e-02 1.070178e+02
## PIEZO1 -2.217306e-03 3.710932e-02 3.489201e-02 2.345828e+01
## GAS2L3 1.061935e-03 -2.727479e-04 7.891873e-04 6.504864e-01
## IRGQ 1.755756e-04 -1.270795e-02 -1.253237e-02 1.265984e+01
## PEAK3 -2.391106e-02 -1.531258e-03 -2.544232e-02 1.547851e+01
## ZNF669 -5.475385e-03 3.028533e-03 -2.446851e-03 6.245737e+00
## IER3IP1 6.802444e-03 6.128551e-03 1.293099e-02 1.774850e+01
## GADD45GIP1 2.412133e-03 4.340715e-02 4.581928e-02 1.349253e+01
## HS1BP3 -4.090887e-03 -3.823023e-02 -4.232112e-02 3.926229e+01
## CLASP2 -1.215307e-02 1.344647e-02 1.293404e-03 1.568982e+01
## TMEM243 2.809721e-03 6.573644e-03 9.383364e-03 1.558741e+01
## PPM1A -1.647234e-01 3.439834e-02 -1.303251e-01 1.457929e+02
## RIN1 8.458211e-03 3.388084e-03 1.184629e-02 4.628575e+00
## GMFB -7.300397e-02 2.342204e-02 -4.958193e-02 5.596881e+01
## CISD3 1.094870e-02 1.279875e-02 2.374745e-02 1.071860e+01
## DYNLRB1 -2.338269e-02 -6.355051e-02 -8.693320e-02 7.747927e+01
## LIMD1 -1.437051e-02 2.044738e-02 6.076861e-03 2.442958e+01
## HLA-DMB 3.529068e-02 6.724939e-02 1.025401e-01 7.190885e+01
## CCL24 -1.320175e-03 5.468059e-04 -7.733690e-04 5.501559e-01
## TEFM -4.366215e-03 3.855720e-03 -5.104949e-04 6.110908e+00
## MTCH1 -9.783529e-02 8.323543e-02 -1.459986e-02 1.391175e+02
## MAGED2 3.448372e-02 -3.930251e-03 3.055347e-02 4.120051e+01
## MLC1 -4.192324e-03 -1.440768e-02 -1.860000e-02 9.082658e+00
## SNX33 -6.344992e-03 4.080687e-03 -2.264306e-03 5.135357e+00
## BAP1 -2.942970e-02 4.278598e-02 1.335627e-02 6.256992e+01
## FCHO2 -2.937909e-02 -5.609229e-02 -8.547138e-02 4.642645e+01
## TFDP1 -3.324772e-02 5.577060e-02 2.252289e-02 5.232525e+01
## ATP2A1 -8.094605e-04 -1.197868e-03 -2.007328e-03 1.260309e+00
## WWC2 3.648181e-03 -1.096850e-03 2.551331e-03 2.016655e+00
## H3-3B -1.207682e+00 -1.074443e+00 -2.282125e+00 1.751828e+03
## EIF5 -1.621700e-01 5.302420e-02 -1.091458e-01 1.723897e+02
## NELFB -2.328375e-03 2.369913e-02 2.137075e-02 2.089472e+01
## AHCY -4.267053e-03 3.428786e-02 3.002081e-02 3.090176e+01
## PKN3 2.259526e-03 3.658293e-04 2.625356e-03 1.135225e+00
## PANK3 -4.276688e-02 2.546701e-02 -1.729987e-02 3.892376e+01
## EEA1 -1.014475e-02 1.524181e-02 5.097063e-03 1.316197e+01
## CCR1 -2.040035e-01 -2.949114e-01 -4.989149e-01 2.361618e+02
## MXD1 1.788380e-02 -1.539021e+00 -1.521137e+00 1.244850e+03
## NCR1 -4.739048e-03 2.005264e-03 -2.733785e-03 2.678526e+00
## NME2 -4.614321e-02 1.447299e-01 9.858672e-02 8.205699e+01
## ZNF45 -3.369075e-03 -3.813998e-03 -7.183072e-03 9.325411e+00
## EEF2KMT 2.040565e-03 5.903175e-03 7.943741e-03 5.516544e+00
## HMGA1 4.371856e-02 2.223958e-02 6.595813e-02 4.170519e+01
## ATP5MC2 1.600048e-01 -2.264202e-02 1.373628e-01 1.550039e+02
## CXorf38 -3.501635e-02 -4.320855e-03 -3.933720e-02 6.633793e+01
## UHMK1 -7.426992e-02 -6.656117e-04 -7.493554e-02 9.391854e+01
## NHP2 -1.552603e-04 2.564728e-02 2.549202e-02 1.478487e+01
## FRS2 -1.577679e-02 4.309494e-03 -1.146730e-02 1.390117e+01
## PDIA3 -6.135175e-02 -3.348782e-02 -9.483958e-02 1.539469e+02
## POLR2D -3.916324e-04 9.056404e-03 8.664772e-03 1.825804e+01
## PDCD11 1.184215e-02 2.758304e-03 1.460046e-02 1.488065e+01
## LRBA 3.788522e-03 2.021292e-02 2.400144e-02 2.016484e+01
## RPL36A-HNRNPH2 1.012556e-01 -1.348387e-01 -3.358302e-02 8.863567e+01
## CFAP70 8.628057e-04 1.633244e-03 2.496050e-03 2.108057e+00
## PIWIL4 -1.665109e-03 1.603308e-02 1.436797e-02 9.270949e+00
## FHL2 -2.480692e-03 5.847650e-03 3.366958e-03 4.269777e+00
## UBA1 -1.321939e-01 1.054615e-01 -2.673234e-02 1.873462e+02
## FER -5.004480e-03 3.287525e-03 -1.716955e-03 3.823844e+00
## PPP1R15B -8.007333e-02 -8.632674e-02 -1.664001e-01 1.214792e+02
## CAVIN1 1.008018e-03 -1.738454e-03 -7.304364e-04 5.660716e-01
## GOT1 -5.310287e-03 5.855196e-03 5.449090e-04 6.205814e+00
## RWDD4 -6.216337e-05 8.865478e-03 8.803315e-03 1.734596e+01
## CIRBP 2.217200e-01 -2.141367e-02 2.003063e-01 2.013316e+02
## GPX1 -1.665043e-01 -2.799572e-01 -4.464615e-01 2.005700e+02
## PCF11 -1.310055e-01 5.279098e-02 -7.821453e-02 1.057245e+02
## NDUFB11 -7.844510e-03 6.742900e-02 5.958449e-02 3.412486e+01
## JUND 1.699045e-01 1.630374e-02 1.862083e-01 9.055837e+01
## HIGD2A 4.528783e-02 1.251592e-02 5.780375e-02 3.950013e+01
## RASA2 -6.231708e-02 -3.468583e-02 -9.700290e-02 7.043974e+01
## TAZ -5.514104e-02 5.516388e-02 2.284270e-05 4.737609e+01
## PIK3CD -3.195139e-01 -4.329747e-03 -3.238436e-01 3.892234e+02
## UNC13D -3.488514e-02 -1.290810e-01 -1.639661e-01 1.432537e+02
## DNAJC1 -1.018290e-02 -8.433322e-03 -1.861622e-02 2.074729e+01
## C19orf48 -1.283797e-02 2.491961e-02 1.208163e-02 9.285244e+00
## BRPF3 -3.170482e-02 2.188154e-02 -9.823275e-03 2.636480e+01
## MORN2 1.718966e-03 -1.782813e-03 -6.384682e-05 1.565137e+00
## LOC100421372 -4.485144e-03 -2.088682e-03 -6.573825e-03 1.044805e+01
## ZNF268 6.062523e-03 -5.515094e-03 5.474297e-04 9.693178e+00
## EFNB1 -6.324451e-04 -4.563231e-03 -5.195676e-03 3.525066e+00
## C9orf16 -2.519432e-02 4.063042e-02 1.543610e-02 1.389679e+01
## STX16 -1.365770e-01 1.115237e-01 -2.505330e-02 1.431381e+02
## KCTD18 -8.100889e-03 -3.933899e-03 -1.203479e-02 1.629534e+01
## CRTC1 7.310507e-03 -4.484412e-03 2.826095e-03 5.402910e+00
## AKAP8 1.056869e-02 -1.719534e-02 -6.626644e-03 2.323871e+01
## CXXC1 6.425896e-03 2.041569e-02 2.684159e-02 2.787513e+01
## ORAI3 4.297085e-03 -3.208900e-02 -2.779192e-02 3.573389e+01
## HMGXB3 1.426186e-02 -1.103124e-02 3.230621e-03 1.916784e+01
## PDS5A 2.277957e-02 2.066927e-02 4.344885e-02 4.995416e+01
## SERINC3 -2.209591e-01 4.752748e-02 -1.734316e-01 2.027505e+02
## SON -1.440951e-01 -2.639315e-02 -1.704883e-01 2.002074e+02
## ZBTB49 -3.052525e-03 -2.360444e-03 -5.412969e-03 9.622937e+00
## HNMT -2.533888e-02 7.335086e-03 -1.800380e-02 1.926410e+01
## MAP6D1 -1.587523e-03 3.681076e-05 -1.550712e-03 1.334564e+00
## CPLANE2 2.821159e-04 9.787045e-04 1.260820e-03 6.914240e-01
## ZNF213 -4.897677e-03 -2.132613e-03 -7.030290e-03 6.368852e+00
## CES2 -9.162692e-03 1.171491e-02 2.552220e-03 2.257962e+01
## TYW1B -3.382073e-03 1.988902e-03 -1.393170e-03 2.262828e+00
## ZNF740 2.053293e-02 1.004111e-03 2.153704e-02 3.996589e+01
## RITA1 -3.173976e-03 8.239990e-03 5.066014e-03 6.178398e+00
## NCK1 6.226436e-03 1.738652e-02 2.361296e-02 2.926003e+01
## CUL3 -1.008399e-01 6.284522e-02 -3.799470e-02 1.035429e+02
## MRPS22 -4.106380e-03 9.228426e-03 5.122046e-03 1.483825e+01
## VAMP4 1.539654e-02 -6.427511e-03 8.969031e-03 2.447515e+01
## CREBRF -2.717758e-01 -3.140890e-02 -3.031847e-01 1.868625e+02
## SPC24 -4.882288e-03 6.570914e-03 1.688626e-03 2.788181e+00
## CACUL1 -1.040262e-01 3.285452e-02 -7.117169e-02 9.529087e+01
## LSM14A -8.326478e-03 -7.285617e-02 -8.118265e-02 1.306511e+02
## DHX36 -3.858717e-03 -1.660360e-02 -2.046231e-02 2.615112e+01
## DNAJB5 -5.211021e-03 -2.599405e-03 -7.810426e-03 4.049611e+00
## RPP30 6.986411e-03 -4.222937e-04 6.564117e-03 9.978404e+00
## CDC5L -1.047688e-02 -2.612178e-02 -3.659866e-02 4.517755e+01
## CYB5D1 1.991340e-03 1.206275e-02 1.405409e-02 8.488635e+00
## PSMD6 -4.442301e-02 1.044818e-02 -3.397483e-02 5.731821e+01
## IRF9 -2.015825e-01 -6.575766e-02 -2.673401e-01 1.949433e+02
## CACNA1A 1.545953e-03 8.796727e-04 2.425625e-03 8.556798e-01
## NF2 6.743813e-03 2.709087e-03 9.452900e-03 1.108642e+01
## RNA18SN2 -6.351855e-01 2.861390e+00 2.226205e+00 1.965368e+03
## RNA18SN3 -6.351855e-01 2.861390e+00 2.226205e+00 1.965368e+03
## RNA18SN4 -6.351855e-01 2.861390e+00 2.226205e+00 1.965368e+03
## MTRES1 -3.773524e-03 -3.862020e-04 -4.159726e-03 4.660758e+00
## ATP8B4 3.869477e-02 -5.997408e-02 -2.127931e-02 2.685775e+01
## GMEB2 -9.123163e-03 1.037489e-02 1.251730e-03 1.546603e+01
## TSPYL4 -9.373554e-03 8.007318e-03 -1.366236e-03 1.031825e+01
## WDR5 1.046560e-02 6.750195e-04 1.114062e-02 1.590007e+01
## GPER1 -7.254343e-03 6.413273e-03 -8.410701e-04 2.359528e+00
## AURKAIP1 -5.427010e-02 4.801201e-02 -6.258094e-03 2.883187e+01
## BROX -5.329653e-02 -2.643478e-02 -7.973131e-02 7.824939e+01
## CLIP3 9.173195e-04 -6.824633e-05 8.490732e-04 5.320787e-01
## ANKRD49 2.299177e-02 -1.045319e-02 1.253858e-02 3.053576e+01
## STON2 -1.519265e-02 8.480028e-03 -6.712623e-03 9.101118e+00
## C10orf105 1.658869e-02 -5.742211e-02 -4.083342e-02 3.352751e+01
## GSTP1 1.937411e-01 -4.503544e-02 1.487057e-01 8.592448e+01
## KIF13B -1.027475e-03 -1.074315e-02 -1.177063e-02 1.598210e+01
## EOLA2 -4.161561e-04 1.106748e-02 1.065132e-02 1.464802e+01
## PLEKHF1 2.914925e-03 7.925687e-03 1.084061e-02 4.088781e+00
## ZNF451 -1.125829e-02 1.732039e-02 6.062100e-03 2.258545e+01
## SCARB1 3.365164e-03 8.738858e-04 4.239050e-03 3.578753e+00
## S1PR2 2.718783e-04 -3.788177e-03 -3.516298e-03 2.965999e+00
## NRIP2 5.996516e-04 7.814969e-04 1.381148e-03 8.371659e-01
## PRKAB1 5.583153e-03 -1.885408e-02 -1.327092e-02 2.686965e+01
## STAMBP -1.189947e-02 -9.236158e-03 -2.113563e-02 3.094877e+01
## DNMBP 9.979698e-03 -1.310037e-02 -3.120669e-03 7.924774e+00
## EEF1AKMT1 1.752027e-03 -4.771488e-04 1.274878e-03 1.415072e+00
## VPS35L -7.808032e-03 1.141942e-02 3.611385e-03 1.877352e+01
## ASGR1 6.082307e-03 -1.261901e-02 -6.536701e-03 5.879841e+00
## ETHE1 -4.122824e-03 3.182874e-02 2.770591e-02 2.039038e+01
## LRRC8D 1.653683e-02 -2.363060e-02 -7.093777e-03 2.933636e+01
## RPL28 1.024820e+00 -3.904515e-01 6.343683e-01 3.684683e+02
## GZMH 1.230689e-01 -1.849528e-01 -6.188395e-02 6.627593e+01
## KPNA6 -9.707755e-03 2.605060e-02 1.634284e-02 4.246204e+01
## NUBP1 1.104896e-02 1.647243e-03 1.269620e-02 1.721894e+01
## GINS2 -9.464515e-03 3.623385e-03 -5.841130e-03 4.211891e+00
## STAR 7.300329e-04 -8.522896e-05 6.448040e-04 3.208885e-01
## ST3GAL6 -9.327556e-03 -3.090632e-02 -4.023387e-02 3.509472e+01
## PLEKHM3 -2.692254e-02 1.876732e-02 -8.155228e-03 1.785398e+01
## OSTM1 5.470050e-02 -7.279932e-02 -1.809882e-02 8.230891e+01
## FAM209B 1.337914e-03 -3.948154e-03 -2.610240e-03 2.597847e+00
## RARS1 4.420028e-03 1.074961e-02 1.516964e-02 2.727670e+01
## RNF103 -1.003206e-02 -2.966499e-02 -3.969705e-02 2.995871e+01
## YTHDC1 2.486906e-02 -7.432879e-02 -4.945972e-02 8.662038e+01
## GFM2 -8.385764e-03 -2.112178e-03 -1.049794e-02 1.627594e+01
## DDB2 -2.142596e-02 1.225614e-02 -9.169812e-03 1.917101e+01
## RNASE1 -3.165202e-02 -2.078784e-02 -5.243986e-02 1.575656e+01
## EVA1B 4.774315e-03 1.266991e-03 6.041306e-03 1.572618e+00
## NCLN -3.707747e-02 -3.597993e-02 -7.305740e-02 4.016096e+01
## STOM -8.392474e-01 1.250262e-01 -7.142212e-01 3.314305e+02
## MSANTD4 6.106945e-03 -2.479559e-04 5.858989e-03 8.349946e+00
## SEPSECS -3.851971e-03 6.353561e-03 2.501590e-03 9.833919e+00
## MIEN1 -4.712166e-02 1.019010e-02 -3.693156e-02 4.660618e+01
## GPANK1 -1.734783e-02 3.616842e-02 1.882059e-02 3.499910e+01
## ZEB1 -3.008799e-02 4.468218e-03 -2.561977e-02 2.465885e+01
## EIF6 -5.533070e-02 9.711628e-02 4.178558e-02 7.179992e+01
## TMEM192 5.654309e-03 -2.450384e-03 3.203925e-03 1.293951e+01
## FASLG -8.299591e-03 -7.715346e-04 -9.071126e-03 4.907743e+00
## MAN2B1 -1.126155e-01 9.294901e-02 -1.966646e-02 9.714994e+01
## FAF2 1.901892e-02 -1.106083e-02 7.958097e-03 3.122031e+01
## SLC17A5 -4.904002e-03 -8.646767e-03 -1.355077e-02 1.547184e+01
## AIG1 6.700839e-03 -1.808198e-02 -1.138114e-02 1.633630e+01
## NFYC -4.279299e-02 1.048620e-02 -3.230678e-02 5.698961e+01
## NCF1 -4.109226e-01 1.032417e+00 6.214948e-01 8.546713e+02
## C18orf21 2.784385e-04 -1.014857e-02 -9.870130e-03 1.751539e+01
## HCFC1 1.407076e-02 -1.430401e-02 -2.332515e-04 1.701992e+01
## ERCC3 1.212536e-02 -9.128962e-05 1.203407e-02 2.778887e+01
## AASDHPPT -5.088023e-03 1.263384e-02 7.545815e-03 1.933586e+01
## GIGYF1 4.405442e-02 -4.953913e-02 -5.484708e-03 6.456015e+01
## NIP7 4.164227e-03 -5.841068e-03 -1.676841e-03 1.508204e+01
## TUFM -4.415471e-02 8.670067e-02 4.254596e-02 7.979441e+01
## RPS6KA4 2.669892e-02 5.149543e-03 3.184846e-02 2.686564e+01
## AK2 -1.733944e-02 4.357564e-02 2.623619e-02 8.181394e+01
## REV1 6.417702e-03 7.661466e-03 1.407917e-02 1.620872e+01
## MIF4GD -2.782225e-02 1.612377e-02 -1.169848e-02 2.396256e+01
## ABHD4 6.779265e-03 -4.502996e-02 -3.825069e-02 5.751743e+01
## IER2 -2.398425e-01 4.231382e-01 1.832957e-01 2.523718e+02
## HSD17B12 -2.186034e-02 1.295994e-02 -8.900393e-03 1.990616e+01
## METTL21A -2.762071e-02 -1.839268e-02 -4.601339e-02 4.556828e+01
## ZHX1-C8orf76 5.786467e-04 -2.493924e-03 -1.915277e-03 2.325276e+00
## AP4B1 1.312732e-02 -1.021658e-02 2.910731e-03 2.423763e+01
## AGBL2 1.037274e-03 1.892024e-04 1.226476e-03 8.138100e-01
## TNFRSF1A -4.111805e-01 1.403986e-01 -2.707819e-01 3.181100e+02
## KDM3A -4.502910e-03 8.456325e-02 8.006034e-02 9.075670e+01
## IL2RG 1.658555e-01 2.925568e-01 4.584122e-01 5.174687e+02
## LAMTOR4 4.421967e-01 -1.542550e-01 2.879417e-01 1.927988e+02
## RHBDF2 -6.047936e-02 1.393072e-02 -4.654864e-02 4.129738e+01
## TRMT2A 1.153139e-02 1.915271e-02 3.068411e-02 1.576644e+01
## ZNF18 -1.803805e-02 -5.056272e-04 -1.854367e-02 2.350558e+01
## VAC14 1.062456e-02 -6.937914e-03 3.686648e-03 9.370250e+00
## PRPF40A -7.352733e-02 2.291255e-02 -5.061478e-02 9.444992e+01
## PPM1K -2.802744e-02 -1.475724e-02 -4.278468e-02 2.537856e+01
## SH3KBP1 -7.046992e-02 -3.898958e-02 -1.094595e-01 1.663579e+02
## NOL12 1.027903e-02 -1.877149e-02 -8.492468e-03 2.286315e+01
## CPD -2.202255e-01 -3.634319e-01 -5.836574e-01 3.083924e+02
## PF4V1 -1.193394e-02 4.509423e-04 -1.148300e-02 5.487283e+00
## DESI1 9.522225e-03 -1.601328e-02 -6.491050e-03 3.271415e+01
## B4GALT1 -2.056834e-01 9.168144e-02 -1.140020e-01 1.719942e+02
## NUSAP1 1.496388e-02 -1.244711e-02 2.516766e-03 9.537710e+00
## DDX20 9.095629e-03 -4.406456e-03 4.689173e-03 1.431760e+01
## SPARC 4.726100e-01 -3.769514e-01 9.565858e-02 2.452228e+02
## LAG3 -1.334436e-02 -2.256614e-03 -1.560097e-02 4.947340e+00
## C2orf76 -7.510987e-03 2.428056e-03 -5.082931e-03 8.021449e+00
## VWF -1.677974e-02 1.005422e-02 -6.725522e-03 7.507868e+00
## DDX41 1.318244e-02 2.147337e-02 3.465581e-02 3.839261e+01
## ADAP1 -3.730460e-02 1.964692e-02 -1.765768e-02 3.430717e+01
## MITD1 -1.061433e-02 2.397298e-02 1.335865e-02 2.980196e+01
## TMX3 2.106380e-02 -3.208658e-02 -1.102278e-02 3.815555e+01
## METTL7A 2.217927e-03 -5.394633e-02 -5.172840e-02 6.861658e+01
## MED4 -2.669960e-02 3.773217e-03 -2.292638e-02 4.812727e+01
## NXF1 -5.221798e-02 -1.093735e-02 -6.315533e-02 1.121479e+02
## USP48 -1.073836e-02 2.500220e-02 1.426384e-02 5.022570e+01
## LLGL2 6.938108e-03 1.536037e-03 8.474145e-03 3.625928e+00
## GPAM 2.024312e-04 3.319675e-03 3.522106e-03 3.870907e+00
## INPP1 -8.047731e-03 -6.925072e-04 -8.740238e-03 1.146184e+01
## ABCA5 9.228849e-03 2.674028e-03 1.190288e-02 1.266321e+01
## PPCDC 5.936917e-02 -6.788489e-02 -8.515728e-03 4.968927e+01
## MAS1 -6.985592e-04 -4.756887e-04 -1.174248e-03 8.575247e-01
## ZXDC 2.836611e-02 -6.807293e-03 2.155881e-02 3.767376e+01
## MTLN 3.184406e-03 2.799356e-03 5.983762e-03 2.240073e+00
## HECA -1.380310e-01 -9.959192e-02 -2.376229e-01 2.105327e+02
## SYTL2 1.449952e-03 -1.276817e-02 -1.131821e-02 7.117862e+00
## STK10 -2.125331e-01 5.273047e-02 -1.598026e-01 3.211683e+02
## NAAA -7.218613e-02 2.367449e-02 -4.851163e-02 5.565332e+01
## NAXE 2.739667e-02 9.628600e-03 3.702527e-02 2.138874e+01
## ASPSCR1 9.994697e-03 3.268769e-03 1.326347e-02 5.321511e+00
## RLF 1.532703e-02 -4.886497e-02 -3.353794e-02 3.510974e+01
## RNF40 -3.796200e-02 -6.917937e-03 -4.487994e-02 7.419362e+01
## NPFF -1.459695e-03 -4.193583e-03 -5.653278e-03 3.625030e+00
## TNIP1 -4.658840e-01 1.367959e-01 -3.290881e-01 3.931147e+02
## MYO1G -1.206972e-01 4.139999e-02 -7.929726e-02 9.704217e+01
## PDP1 4.011973e-03 -1.752433e-02 -1.351236e-02 2.334763e+01
## SHPRH 1.898940e-03 6.512447e-03 8.411387e-03 7.974053e+00
## RRP9 6.801224e-03 1.331867e-03 8.133091e-03 4.980052e+00
## PLCB3 4.654879e-03 -9.380586e-03 -4.725706e-03 9.166749e+00
## NCAPD3 9.831415e-03 -3.564789e-03 6.266625e-03 1.025959e+01
## ZNF330 -4.249660e-03 -9.056700e-03 -1.330636e-02 2.169143e+01
## TAB1 6.731583e-03 9.861255e-03 1.659284e-02 1.541310e+01
## SRFBP1 3.213792e-03 -5.023853e-05 3.163554e-03 3.240072e+00
## ILK 5.611039e-02 -1.854857e-01 -1.293753e-01 2.121647e+02
## TPD52L2 -2.421731e-01 6.315084e-02 -1.790223e-01 2.488865e+02
## SLC10A7 -5.338003e-03 2.274852e-03 -3.063152e-03 5.177957e+00
## SMC1A -3.639193e-04 -3.174282e-02 -3.210673e-02 4.665230e+01
## CNPY3 -1.327769e-01 3.949558e-01 2.621789e-01 3.547225e+02
## GRN -6.253151e-01 -2.001543e-01 -8.254694e-01 5.313598e+02
## MICALL1 -6.277412e-03 -7.141402e-03 -1.341881e-02 1.372466e+01
## MPV17L -1.412315e-03 3.729644e-03 2.317329e-03 3.473934e+00
## BACH1 -3.673238e-01 -1.447274e-03 -3.687710e-01 3.123030e+02
## SCARF1 4.141164e-02 1.971374e-03 4.338301e-02 2.389140e+01
## HSD17B10 -3.432945e-02 5.164823e-02 1.731879e-02 3.583463e+01
## WAC -2.019458e-01 -3.856129e-02 -2.405071e-01 2.422765e+02
## NUBP2 -6.678847e-03 1.722080e-02 1.054195e-02 6.268246e+00
## RASA1 -2.250091e-02 1.571677e-03 -2.092924e-02 2.479803e+01
## HEXD -2.901796e-03 2.322375e-02 2.032196e-02 1.465741e+01
## FANCL -1.700869e-03 -1.254093e-03 -2.954963e-03 2.872283e+00
## CDKN2AIP -1.158386e-02 1.441521e-02 2.831353e-03 2.376953e+01
## KIF18B -3.128254e-03 1.048165e-03 -2.080089e-03 2.002096e+00
## TMEM126B 1.910485e-02 -3.202718e-03 1.590214e-02 2.470395e+01
## QKI -1.121862e-01 -1.482377e-01 -2.604239e-01 2.115372e+02
## ST3GAL5 1.707796e-03 -1.919200e-02 -1.748420e-02 1.559733e+01
## CCDC88A -1.097276e-02 -2.286085e-02 -3.383361e-02 2.832166e+01
## SOGA1 -6.729182e-03 3.344447e-03 -3.384735e-03 4.940313e+00
## TOX -1.377777e-03 4.966992e-03 3.589215e-03 4.183430e+00
## DGKQ -1.780484e-02 1.502660e-02 -2.778242e-03 1.339824e+01
## ABCC10 -9.895451e-03 4.612824e-03 -5.282627e-03 1.134532e+01
## TMEM41A 4.852303e-03 -3.130784e-03 1.721519e-03 6.961229e+00
## TOP1MT 4.699897e-03 6.174247e-03 1.087414e-02 5.481799e+00
## TBC1D5 -1.865714e-02 -1.172808e-02 -3.038522e-02 4.285644e+01
## ZNF284 2.279750e-03 -2.359682e-03 -7.993222e-05 2.528653e+00
## CDC23 9.153156e-03 1.652078e-04 9.318364e-03 1.199490e+01
## ZNF273 -2.264833e-04 4.906253e-03 4.679770e-03 5.360874e+00
## CCR5 2.527996e-02 -2.787861e-02 -2.598648e-03 1.836269e+01
## MGAT1 -2.959255e-01 1.265144e-01 -1.694111e-01 2.801515e+02
## DAB1 7.851553e-04 -9.109574e-04 -1.258021e-04 7.362824e-01
## PPP2R5D 8.062241e-03 -1.239462e-02 -4.332376e-03 2.289918e+01
## FAM107B -1.936496e-01 3.269579e-02 -1.609538e-01 2.221859e+02
## ACO2 -7.788704e-03 2.623151e-02 1.844280e-02 3.593926e+01
## SOCS4 -1.461339e-02 1.220774e-02 -2.405642e-03 1.959322e+01
## WDHD1 3.509369e-03 -2.793351e-03 7.160177e-04 2.838481e+00
## ZC3H6 -1.304327e-02 3.032786e-03 -1.001048e-02 1.307652e+01
## RAB33A -8.558028e-03 5.736929e-03 -2.821099e-03 4.700206e+00
## C2CD2 -3.302987e-03 1.642434e-03 -1.660553e-03 2.789081e+00
## BBX -2.953366e-02 -9.582023e-03 -3.911568e-02 3.457360e+01
## ERCC6 6.878524e-03 3.191364e-03 1.006989e-02 1.040618e+01
## ME3 9.894843e-04 -2.357405e-03 -1.367920e-03 1.309368e+00
## SLC25A14 -3.049548e-03 2.324526e-04 -2.817095e-03 5.137183e+00
## SLC38A6 2.467473e-03 3.392102e-04 2.806683e-03 3.370163e+00
## OLAH -1.811802e-01 2.484488e-01 6.726856e-02 6.153099e+01
## HSPE1 1.134664e-02 1.256511e-02 2.391175e-02 2.392808e+01
## SS18L1 -4.323413e-03 4.661342e-03 3.379286e-04 9.890588e+00
## PTGES3L -1.209267e-03 3.602828e-04 -8.489843e-04 7.599896e-01
## PPP4R3A -8.010558e-03 -3.863519e-02 -4.664575e-02 9.120799e+01
## SEC23A -3.770793e-02 9.865587e-03 -2.784235e-02 3.955392e+01
## SPOCD1 -2.042720e-02 1.170475e-02 -8.722448e-03 5.160649e+00
## MTMR7 1.216105e-03 -1.883739e-04 1.027731e-03 1.417075e+00
## RFX3 -1.451976e-02 -1.319650e-02 -2.771626e-02 1.572048e+01
## SRSF4 -1.014384e-02 -2.475872e-02 -3.490256e-02 6.388645e+01
## CSDE1 1.602170e-01 5.578961e-02 2.160067e-01 3.558219e+02
## PEX14 4.428129e-03 -3.883190e-04 4.039810e-03 3.735753e+00
## TMEM19 2.076604e-03 8.417255e-03 1.049386e-02 1.476983e+01
## MAD2L1BP -4.314581e-03 -2.762855e-02 -3.194313e-02 3.398890e+01
## NMNAT3 2.075748e-03 -1.129627e-03 9.461214e-04 1.399575e+00
## SLC7A5 -1.452661e-02 2.758597e-02 1.305937e-02 8.458597e+00
## TXNRD2 5.450201e-04 1.244915e-02 1.299417e-02 1.009480e+01
## SPSB1 -2.199876e-03 -4.422769e-04 -2.642153e-03 2.543345e+00
## AIFM1 2.857056e-03 -9.420899e-03 -6.563843e-03 1.798370e+01
## DCBLD2 -1.447365e-03 2.229370e-03 7.820048e-04 1.876374e+00
## SH2B3 -4.786413e-02 -3.154492e-02 -7.940905e-02 9.800252e+01
## TRPM7 4.457019e-03 2.163728e-02 2.609430e-02 3.352956e+01
## TMEM106C -1.728448e-02 -5.100929e-03 -2.238541e-02 1.945106e+01
## SLC2A5 2.781922e-02 -2.337216e-02 4.447063e-03 9.218800e+00
## GATAD1 8.582444e-03 -3.311524e-03 5.270920e-03 1.537554e+01
## CRACR2B -6.514724e-03 5.929639e-03 -5.850851e-04 2.803917e+00
## FAM20C 1.924156e-03 7.611882e-03 9.536038e-03 5.563845e+00
## SERPINB6 6.654386e-03 -6.308440e-02 -5.643001e-02 6.216465e+01
## APOBEC3A 2.141194e-01 -4.800508e-01 -2.659314e-01 2.989611e+02
## XYLT2 1.032983e-02 -4.467358e-03 5.862472e-03 8.142774e+00
## BAZ1B 5.961872e-03 2.060488e-02 2.656675e-02 3.996364e+01
## SNX17 -3.226968e-02 9.488555e-02 6.261587e-02 1.125624e+02
## TRAF2 2.526003e-03 8.905093e-03 1.143110e-02 7.122814e+00
## SETD2 -4.742284e-02 -2.811583e-02 -7.553868e-02 8.511057e+01
## CHURC1 9.174518e-02 3.611275e-02 1.278579e-01 1.320907e+02
## ZNF624 -4.127148e-03 1.194036e-03 -2.933112e-03 3.672081e+00
## SLC22A14 9.398555e-04 4.150288e-04 1.354884e-03 5.592679e-01
## DBT -6.726059e-03 4.361498e-03 -2.364560e-03 8.330932e+00
## NFX1 1.392984e-02 4.551266e-04 1.438497e-02 2.472729e+01
## AP1AR -3.882475e-03 8.834656e-03 4.952181e-03 1.011715e+01
## RNPEPL1 -1.659330e-01 1.832299e-01 1.729695e-02 1.060256e+02
## CTNNBL1 2.670194e-02 -2.532164e-02 1.380303e-03 3.493474e+01
## POLR3GL -3.501675e-02 -3.700019e-03 -3.871677e-02 5.003321e+01
## PHF13 -1.086046e-02 7.917046e-03 -2.943413e-03 1.117449e+01
## CCDC12 -7.265562e-04 4.629248e-02 4.556592e-02 3.068563e+01
## PDE8A 6.309493e-03 1.017496e-03 7.326989e-03 7.130053e+00
## RBM12B -1.426587e-02 1.404159e-02 -2.242834e-04 1.741799e+01
## ACAD8 -1.117423e-02 -1.353846e-02 -2.471269e-02 2.021881e+01
## AAK1 -3.338608e-03 1.831573e-02 1.497713e-02 3.080988e+01
## C16orf46 -4.899608e-04 -1.681596e-04 -6.581205e-04 2.532894e-01
## MRPS7 -2.438772e-02 1.984713e-02 -4.540591e-03 2.450176e+01
## KRTCAP2 -3.887028e-02 5.710431e-02 1.823402e-02 3.171061e+01
## RPS6KA2 -2.056877e-03 9.291918e-03 7.235041e-03 5.082785e+00
## PNPLA2 -5.841898e-02 1.692264e-02 -4.149634e-02 4.696022e+01
## COX14 6.489962e-03 1.651844e-02 2.300840e-02 1.856957e+01
## ATG4C -3.526147e-03 5.824237e-03 2.298090e-03 1.004101e+01
## ACBD7 2.100983e-03 2.945768e-03 5.046751e-03 2.422620e+00
## NUDT15 4.668991e-04 2.398191e-03 2.865090e-03 4.824173e+00
## RPS6KA5 -2.880132e-02 -3.162159e-03 -3.196348e-02 2.537143e+01
## PANX2 -6.060558e-03 1.454587e-02 8.485313e-03 1.012995e+01
## ZNF879 2.248881e-03 -1.802966e-03 4.459151e-04 2.263294e+00
## HSF1 -7.456805e-03 1.535130e-02 7.894494e-03 1.526797e+01
## SMARCD2 -3.698035e-02 -2.611694e-02 -6.309729e-02 1.008590e+02
## CDC42EP3 -4.474540e-01 3.006939e-02 -4.173846e-01 3.742454e+02
## CCHCR1 1.349110e-03 8.480348e-03 9.829458e-03 7.608749e+00
## LSM2 -2.159364e-02 1.868026e-02 -2.913384e-03 1.747873e+01
## GOLGA6L9 2.211139e-03 -2.161345e-03 4.979437e-05 1.838198e+00
## WDR53 -1.426600e-03 5.365643e-03 3.939043e-03 1.146513e+01
## SNX16 1.758467e-03 7.884978e-03 9.643445e-03 9.649240e+00
## DBNDD2 7.004292e-03 -8.332401e-03 -1.328109e-03 8.744538e+00
## HSPBP1 -5.646620e-03 1.172618e-02 6.079555e-03 4.388639e+00
## REX1BD 8.930770e-03 1.373159e-03 1.030393e-02 3.423726e+00
## CTSD -5.267835e-01 -2.855094e-01 -8.122929e-01 4.440580e+02
## REXO1 2.760867e-03 4.414500e-03 7.175366e-03 8.139960e+00
## TOMM40L 1.553038e-02 -1.641006e-02 -8.796707e-04 2.044604e+01
## KCTD17 1.223603e-02 -2.729279e-04 1.196310e-02 6.639303e+00
## MOB2 -2.729593e-02 4.605589e-02 1.875995e-02 3.492555e+01
## HNRNPA2B1 1.731399e-01 -2.038573e-01 -3.071735e-02 4.819489e+02
## MYSM1 -4.066218e-02 1.658202e-02 -2.408017e-02 3.101399e+01
## HAL -2.626983e-01 1.143815e-01 -1.483168e-01 1.585408e+02
## RNF25 -5.404488e-03 1.649028e-02 1.108579e-02 1.846544e+01
## TDRKH -8.263578e-04 2.461762e-03 1.635404e-03 2.357464e+00
## MINDY2 -2.781615e-02 1.769831e-02 -1.011783e-02 2.203068e+01
## MBD1 -1.297654e-02 1.777151e-02 4.794970e-03 4.770795e+01
## IRAK1BP1 1.100526e-03 -2.449354e-04 8.555906e-04 7.059959e-01
## STAM 5.083963e-03 5.902513e-03 1.098648e-02 1.310515e+01
## MRGBP 7.518872e-03 5.071276e-03 1.259015e-02 1.621016e+01
## TNF 1.432623e-02 -4.116274e-03 1.020996e-02 1.049249e+01
## ZNF283 -2.594255e-04 -1.453673e-03 -1.713099e-03 2.680922e+00
## CUL9 -1.464035e-02 1.453230e-02 -1.080495e-04 2.280756e+01
## CTBP1 3.191381e-02 -2.691394e-02 4.999865e-03 4.617189e+01
## ADAM19 -1.807641e-01 5.443912e-02 -1.263249e-01 1.385081e+02
## CCDC51 -3.586957e-03 2.369490e-03 -1.217467e-03 5.042861e+00
## ARRDC1 -2.502754e-02 8.599451e-04 -2.416760e-02 2.473697e+01
## TCAF1 8.660166e-04 4.479992e-03 5.346009e-03 4.870792e+00
## ZNF586 -4.518038e-03 -2.825968e-02 -3.277771e-02 3.245494e+01
## MRPS15 -8.644024e-04 1.972836e-02 1.886396e-02 2.130148e+01
## HLA-E -6.987266e-01 -4.012187e+00 -4.710914e+00 5.438502e+03
## PRKAG2 -4.132108e-02 1.060067e-02 -3.072041e-02 4.281959e+01
## PLEKHA6 7.903605e-04 2.532568e-04 1.043617e-03 5.127138e-01
## GPX3 -1.423801e-03 3.501531e-03 2.077730e-03 2.657986e+00
## C14orf28 3.090862e-03 -6.392918e-04 2.451571e-03 4.319275e+00
## TESK2 -1.909673e-02 1.519696e-02 -3.899770e-03 1.999311e+01
## VDAC1 4.020031e-03 -1.753198e-02 -1.351195e-02 3.800787e+01
## ASPM 1.453419e-03 5.523950e-03 6.977369e-03 3.928611e+00
## RPS15 4.230784e-01 1.577901e-02 4.388574e-01 1.712884e+02
## SWAP70 1.822337e-02 -2.122417e-02 -3.000805e-03 2.913973e+01
## USF2 -7.878644e-02 5.176330e-02 -2.702314e-02 9.784618e+01
## PRR11 -8.764213e-03 1.877580e-03 -6.886632e-03 1.070429e+01
## ALDH18A1 -3.014070e-03 1.026576e-02 7.251693e-03 9.977832e+00
## ENKD1 -4.013475e-03 7.256690e-03 3.243215e-03 3.950843e+00
## BCL11A 1.875390e-03 3.998238e-03 5.873628e-03 5.220450e+00
## CCM2 2.290771e-02 9.415508e-02 1.170628e-01 1.243615e+02
## EXOSC9 3.581839e-03 9.492454e-03 1.307429e-02 1.742042e+01
## TRIOBP -3.482665e-02 4.437318e-02 9.546530e-03 6.285057e+01
## PI4KA 2.121401e-03 2.629302e-02 2.841442e-02 5.606252e+01
## SNAPC2 -4.155388e-03 9.360133e-03 5.204745e-03 4.923667e+00
## MYZAP 8.588020e-03 -1.705499e-02 -8.466968e-03 8.267161e+00
## CNNM2 -8.992635e-03 -1.446109e-03 -1.043874e-02 8.767681e+00
## CYTIP -3.027338e-01 2.210571e-01 -8.167665e-02 2.682568e+02
## MTRF1 1.371319e-03 2.909995e-03 4.281313e-03 7.471736e+00
## MAGOH 4.795564e-03 -1.467394e-02 -9.878373e-03 2.842480e+01
## EIF4EBP1 -2.685788e-02 2.798268e-02 1.124799e-03 1.583013e+01
## INTS1 -1.935605e-02 2.327209e-02 3.916040e-03 1.784814e+01
## STON1 9.497863e-04 1.335798e-03 2.285584e-03 1.746819e+00
## CBX4 -1.842933e-02 7.974171e-03 -1.045516e-02 1.845243e+01
## NHLRC2 6.855631e-03 1.548137e-03 8.403769e-03 1.106596e+01
## PCNA 3.317602e-02 -1.753475e-02 1.564127e-02 3.390473e+01
## PGGHG -4.931846e-01 1.101828e-01 -3.830018e-01 2.902349e+02
## EIF4H 7.861975e-03 -7.427835e-02 -6.641637e-02 1.825765e+02
## PDE4C 3.285223e-04 -1.086517e-03 -7.579952e-04 1.121915e+00
## VPS28 -5.114363e-03 1.086516e-01 1.035372e-01 7.076920e+01
## AASDH -2.498724e-03 -4.189993e-03 -6.688717e-03 9.457697e+00
## FEM1B -3.464219e-02 7.583834e-03 -2.705836e-02 4.638225e+01
## FBRS -3.932277e-02 -4.003474e-02 -7.935751e-02 9.235538e+01
## MFAP1 1.115063e-02 -1.390505e-02 -2.754415e-03 2.645452e+01
## ZNF2 -2.226233e-03 1.817603e-03 -4.086306e-04 4.052489e+00
## ICMT -1.223104e-02 1.267450e-03 -1.096359e-02 1.931146e+01
## AP1S1 1.578028e-02 -5.630832e-03 1.014945e-02 1.425743e+01
## G6PC3 -4.091469e-04 1.947075e-02 1.906160e-02 1.557827e+01
## SUGP1 -2.044805e-02 1.211979e-02 -8.328256e-03 2.453559e+01
## ARHGEF1 -1.155024e-01 1.711231e-01 5.562071e-02 1.995232e+02
## UNC5CL 1.344761e-03 6.511060e-04 1.995867e-03 2.499475e+00
## DNMT3A -7.075567e-03 -9.687213e-03 -1.676278e-02 2.972161e+01
## ATOX1 -3.068381e-02 2.995035e-02 -7.334636e-04 1.878354e+01
## MRPS18A -2.794043e-02 2.052910e-02 -7.411323e-03 2.013211e+01
## AP1B1 -3.577767e-02 4.613931e-02 1.036163e-02 5.288828e+01
## TMEM259 2.307689e-03 4.935511e-02 5.166280e-02 6.005994e+01
## FMN1 1.162937e-02 -1.021731e-02 1.412069e-03 6.260226e+00
## ZNF562 3.794258e-03 4.119746e-03 7.914004e-03 1.549997e+01
## SCAF4 4.134220e-03 -7.899095e-03 -3.764874e-03 1.302500e+01
## ZNF652 -6.394655e-02 6.311129e-02 -8.352584e-04 8.422580e+01
## GTF2F1 2.537074e-02 -1.915588e-02 6.214862e-03 3.457997e+01
## CAMK1 -4.391783e-02 9.535350e-03 -3.438248e-02 2.373025e+01
## LARP7 2.780146e-02 -1.912569e-03 2.588890e-02 4.758516e+01
## GPAT3 -7.433896e-02 -2.424032e-02 -9.857927e-02 8.083976e+01
## PSMB9 3.160187e-01 -1.121665e-01 2.038523e-01 2.282936e+02
## SLC29A4 -1.527312e-03 -7.882772e-04 -2.315589e-03 2.228772e+00
## INTS13 -6.094745e-05 5.550021e-03 5.489074e-03 1.106256e+01
## IDH2 -2.049167e-02 3.533165e-02 1.483998e-02 3.986275e+01
## BAG4 6.568328e-04 -1.140625e-02 -1.074941e-02 1.862611e+01
## ETFB -5.382501e-02 3.902921e-02 -1.479580e-02 2.558850e+01
## KIZ 1.147626e-03 5.732411e-03 6.880037e-03 1.313133e+01
## TMEM115 -2.316124e-02 2.415127e-02 9.900266e-04 2.430034e+01
## NSMCE1 2.413282e-02 2.112684e-02 4.525966e-02 2.904887e+01
## TDG -9.190823e-03 -6.188038e-03 -1.537886e-02 2.408861e+01
## RBBP6 2.108011e-02 -3.265277e-02 -1.157266e-02 4.084993e+01
## DDHD1 8.895731e-04 1.300796e-02 1.389753e-02 1.583248e+01
## HTATIP2 3.826065e-02 8.399437e-02 1.222550e-01 1.136572e+02
## ADGRG1 -6.735155e-03 -5.105550e-02 -5.779066e-02 2.992093e+01
## FAM174A -1.166503e-02 1.144951e-02 -2.155202e-04 1.132802e+01
## GPS1 -4.201173e-03 3.095288e-02 2.675171e-02 2.055775e+01
## FAM136A 6.605348e-03 5.686182e-03 1.229153e-02 1.833310e+01
## MBD4 1.693225e-02 3.311107e-02 5.004331e-02 6.329575e+01
## APRT 5.041667e-02 3.072038e-02 8.113705e-02 3.286586e+01
## CDC42BPB 2.255536e-03 -6.444235e-03 -4.188698e-03 6.656439e+00
## RTEL1 -4.258298e-03 6.000023e-03 1.741725e-03 5.039526e+00
## PLEKHO1 2.727539e-01 -6.628994e-02 2.064640e-01 1.823990e+02
## DDX5 7.117709e-01 -2.327389e-01 4.790319e-01 8.877574e+02
## ANKRD39 1.338060e-03 2.267716e-03 3.605776e-03 2.196243e+00
## AIM2 2.473461e-03 -1.137867e-01 -1.113133e-01 5.170226e+01
## RAB19 -2.678992e-03 5.776295e-03 3.097302e-03 2.951988e+00
## AKIRIN2 -2.805277e-02 -8.679085e-02 -1.148436e-01 1.131573e+02
## SETX -1.751683e-01 9.064243e-02 -8.452583e-02 1.878250e+02
## MRPL27 -3.053830e-02 1.249929e-02 -1.803901e-02 2.147464e+01
## SYTL1 -5.078250e-02 2.026847e-02 -3.051403e-02 3.094226e+01
## YARS1 3.183536e-03 1.859033e-02 2.177387e-02 3.669277e+01
## ACD -9.824838e-03 1.002321e-02 1.983758e-04 8.312843e+00
## TWSG1 6.236434e-03 -3.832704e-03 2.403730e-03 6.287963e+00
## PPP2R1A 1.075395e-02 1.041995e-01 1.149534e-01 1.109987e+02
## GTF2B -3.743950e-02 -1.664590e-02 -5.408539e-02 7.485118e+01
## FBXO45 8.994342e-03 -2.491142e-03 6.503200e-03 1.239601e+01
## UBL4A -3.660044e-02 3.277137e-02 -3.829071e-03 4.210821e+01
## MAP3K6 7.293060e-03 -8.606097e-03 -1.313037e-03 6.981483e+00
## ZNF654 -2.437076e-02 9.522639e-03 -1.484812e-02 2.141354e+01
## ASAH1 -6.216558e-01 -4.216381e-02 -6.638196e-01 5.286853e+02
## RBM14 5.344475e-03 1.065305e-02 1.599752e-02 2.020115e+01
## PCBP2 -1.967424e-02 2.539474e-01 2.342732e-01 4.539405e+02
## ZNF414 2.997456e-03 6.906904e-04 3.688146e-03 1.781093e+00
## MAPRE2 1.969233e-02 -2.335045e-02 -3.658117e-03 3.949713e+01
## SNN -2.263764e-01 2.984852e-02 -1.965279e-01 2.542842e+02
## LY6G6F -1.109484e-02 -1.553502e-02 -2.662986e-02 1.181488e+01
## LLCFC1 7.376025e-03 -3.063571e-03 4.312454e-03 2.400047e+00
## LRCH4 -1.185261e-01 8.165507e-02 -3.687108e-02 1.139145e+02
## DHX29 9.298584e-04 -9.643721e-03 -8.713863e-03 1.834194e+01
## CAPN15 -3.545922e-03 8.588695e-03 5.042773e-03 5.202729e+00
## COQ6 9.934171e-04 2.560970e-03 3.554387e-03 4.943269e+00
## MRPS2 -2.980378e-03 1.355124e-02 1.057086e-02 8.503008e+00
## MIGA2 6.721150e-03 1.728068e-02 2.400183e-02 2.307077e+01
## SLC2A6 -9.938102e-03 2.678983e-02 1.685173e-02 1.438559e+01
## TCF12 -1.470756e-02 -1.325054e-03 -1.603261e-02 2.037587e+01
## GBE1 -1.820943e-02 -5.183527e-03 -2.339296e-02 1.973066e+01
## BORCS6 -1.614273e-02 2.693981e-02 1.079707e-02 1.692804e+01
## CPM 1.655633e-02 -1.244779e-02 4.108538e-03 1.018421e+01
## EFCAB13 4.108082e-04 9.119695e-04 1.322778e-03 8.336947e-01
## TRIP6 4.599207e-05 -4.602504e-03 -4.556512e-03 4.341131e+00
## GPR27 -1.125050e-01 -1.727069e-03 -1.142320e-01 8.660367e+01
## EDRF1 -2.659011e-03 7.455356e-03 4.796345e-03 1.457291e+01
## WDR70 5.649797e-03 6.645354e-03 1.229515e-02 1.612595e+01
## NCAPH 4.603714e-05 -3.636341e-03 -3.590303e-03 2.934950e+00
## KEAP1 -1.644236e-02 2.183082e-02 5.388466e-03 2.661450e+01
## ZRANB1 3.191542e-02 9.370501e-03 4.128592e-02 3.288000e+01
## RRM2 -3.220348e-02 -7.273340e-03 -3.947682e-02 2.452927e+01
## LACC1 -2.931200e-03 -2.244756e-03 -5.175956e-03 4.667023e+00
## CTDSPL 1.740181e-02 -2.558324e-02 -8.181433e-03 2.087581e+01
## FASN 4.016439e-03 -3.718537e-03 2.979019e-04 2.988702e+00
## NUDT17 1.563342e-03 3.934374e-04 1.956779e-03 2.127483e+00
## CEP78 1.498663e-02 -4.199854e-04 1.456665e-02 1.365220e+01
## KCNK7 3.369472e-03 -3.000921e-03 3.685513e-04 1.553332e+00
## CD226 4.979505e-03 -3.128535e-02 -2.630585e-02 3.589041e+01
## RAB6B 9.676667e-03 -1.446320e-02 -4.786530e-03 6.615071e+00
## SSH3 -2.407975e-02 2.287132e-03 -2.179261e-02 2.604403e+01
## ZNHIT1 -4.580056e-02 5.651093e-02 1.071037e-02 3.595589e+01
## AMBRA1 -3.588438e-03 -5.355383e-03 -8.943821e-03 1.661804e+01
## PSMD14 1.279304e-02 5.126338e-04 1.330567e-02 1.941822e+01
## PKM -3.993479e-01 9.837952e-01 5.844473e-01 7.812280e+02
## IST1 -1.236135e-01 6.115641e-02 -6.245713e-02 2.148139e+02
## SLC39A11 -8.678171e-03 9.481625e-03 8.034540e-04 1.463294e+01
## ABCF3 1.146626e-02 9.270855e-03 2.073712e-02 2.887444e+01
## RPS6KB1 -1.167032e-02 -1.898975e-03 -1.356929e-02 2.593115e+01
## RAB13 2.500888e-02 -2.527972e-02 -2.708454e-04 1.610937e+01
## ADPRHL1 -5.895979e-04 -1.441478e-04 -7.337457e-04 4.411206e-01
## KLF3 -2.008357e-01 1.091413e-01 -9.169443e-02 1.861907e+02
## HAUS6 -3.640401e-03 -4.937758e-03 -8.578159e-03 1.388787e+01
## EXOSC7 6.381458e-03 3.608515e-03 9.989974e-03 1.010529e+01
## USP7 -4.846878e-02 6.898092e-02 2.051214e-02 9.981722e+01
## TMEM147 -2.094344e-02 1.823232e-02 -2.711124e-03 1.830401e+01
## UGDH -4.930225e-03 1.942913e-03 -2.987312e-03 6.331026e+00
## SNX15 -1.467762e-03 7.129251e-03 5.661490e-03 1.226683e+01
## ACADS 3.139459e-03 5.997872e-03 9.137331e-03 4.749622e+00
## CRYL1 9.453291e-03 -7.467599e-03 1.985691e-03 1.266628e+01
## PPP6R2 -3.264910e-02 2.415157e-02 -8.497528e-03 4.765179e+01
## ICA1 -8.671125e-03 4.963060e-04 -8.174819e-03 5.636532e+00
## NSD2 -1.025213e-02 1.173948e-02 1.487353e-03 1.704069e+01
## CLCN4 2.153387e-03 -7.322253e-03 -5.168866e-03 6.135065e+00
## CCDC93 -2.335466e-02 -1.343314e-02 -3.678780e-02 4.769011e+01
## PDXDC1 -2.026110e-02 1.546466e-02 -4.796432e-03 2.722793e+01
## C15orf39 -1.014574e-01 -4.265141e-02 -1.441089e-01 1.381994e+02
## PPDPF 2.429948e-02 -3.544258e-02 -1.114310e-02 1.495431e+01
## MLLT10 -1.190147e-02 1.155913e-02 -3.423440e-04 2.162956e+01
## LTN1 -2.637578e-02 -7.080180e-03 -3.345596e-02 3.265337e+01
## ZNF646 -9.299919e-03 2.205104e-02 1.275112e-02 3.297213e+01
## USP22 -4.482021e-02 2.426613e-02 -2.055408e-02 7.529718e+01
## DHX40 -2.705531e-02 3.255084e-03 -2.380023e-02 3.718926e+01
## ZNF227 2.254307e-03 4.110735e-03 6.365042e-03 1.174729e+01
## NDUFAB1 -1.255339e-02 2.045342e-02 7.900030e-03 1.792403e+01
## KMT2B -7.690423e-03 2.651392e-02 1.882349e-02 4.166166e+01
## RBBP5 -1.852626e-02 6.792599e-03 -1.173366e-02 2.772433e+01
## SLC4A8 -2.244053e-03 2.419862e-03 1.758090e-04 3.003979e+00
## ENDOG 2.022297e-03 3.034962e-03 5.057259e-03 1.706903e+00
## CORO1B 3.654535e-02 -1.738280e-02 1.916255e-02 2.380160e+01
## MTA1 6.999697e-03 -1.041156e-03 5.958541e-03 8.067803e+00
## RANBP6 -1.847355e-02 3.160594e-03 -1.531295e-02 2.486290e+01
## NFKBIE 1.897405e-02 -2.300883e-02 -4.034777e-03 1.940920e+01
## TMX1 -3.068199e-02 1.438048e-02 -1.630151e-02 4.994364e+01
## CEL 1.448881e-03 -1.480303e-03 -3.142159e-05 8.572939e-01
## SLC66A1 -2.139464e-03 -3.615011e-03 -5.754474e-03 5.241048e+00
## ARHGAP33 3.575174e-03 1.305380e-04 3.705712e-03 2.606859e+00
## ALKBH6 2.522835e-03 1.492558e-03 4.015392e-03 4.899506e+00
## TMEM186 6.427366e-03 -1.754938e-03 4.672429e-03 8.079584e+00
## ERH -3.250807e-02 -3.346351e-03 -3.585442e-02 6.198267e+01
## RAB34 2.298313e-02 -1.643662e-02 6.546509e-03 1.661925e+01
## PPM1H -6.250753e-03 2.363014e-03 -3.887739e-03 4.843851e+00
## PIK3R6 -1.307035e-02 1.080016e-02 -2.270190e-03 9.613134e+00
## ATP2B1 6.615308e-02 -5.172009e-03 6.098107e-02 7.503797e+01
## CCT5 -4.823663e-02 2.156122e-03 -4.608051e-02 1.303536e+02
## DHRS4 2.226323e-02 -9.496339e-03 1.276689e-02 1.587576e+01
## D2HGDH 3.004922e-03 3.140025e-03 6.144947e-03 2.923586e+00
## NDUFA13 -2.219344e-02 1.353360e-01 1.131425e-01 7.325513e+01
## UBE2V2 -6.013041e-03 9.487693e-03 3.474653e-03 2.624793e+01
## ZFYVE27 9.454214e-03 -2.030285e-02 -1.084864e-02 4.565459e+01
## ASB3 -1.611502e-03 -3.290464e-03 -4.901966e-03 8.578420e+00
## KLHL21 -2.005943e-02 6.860313e-02 4.854371e-02 7.602072e+01
## WDR18 1.537042e-03 4.217541e-03 5.754583e-03 3.384955e+00
## IL18BP -3.281553e-03 6.200225e-03 2.918672e-03 6.305278e+00
## ZBED5 2.150728e-02 -1.073034e-02 1.077693e-02 4.673356e+01
## MRPL17 -5.616569e-03 1.042690e-02 4.810331e-03 1.030868e+01
## TMEM127 -1.444486e-01 6.311219e-02 -8.133643e-02 2.204641e+02
## WDR20 -1.256095e-02 4.305288e-03 -8.255659e-03 2.009892e+01
## CHCHD2 -1.159228e-01 1.033516e-01 -1.257112e-02 1.198986e+02
## RNASE3 -1.580433e-01 1.192516e-01 -3.879179e-02 3.985542e+01
## RBBP8 -2.778383e-03 -5.789770e-03 -8.568152e-03 1.393609e+01
## RTN2 -5.748704e-03 1.025363e-02 4.504928e-03 7.924557e+00
## SIVA1 -1.226700e-03 8.591755e-03 7.365055e-03 3.976360e+00
## SEC22B -5.832627e-02 -2.672532e-02 -8.505159e-02 1.051971e+02
## RPL39L 1.434485e-03 1.495027e-03 2.929512e-03 1.567284e+00
## IFT46 -1.880925e-03 2.417360e-03 5.364352e-04 4.401294e+00
## ZNF668 -8.687044e-04 3.328431e-03 2.459727e-03 1.976076e+00
## ZDHHC2 -3.144601e-02 2.404595e-03 -2.904141e-02 3.960195e+01
## TMEM160 -2.423775e-03 1.741402e-03 -6.823728e-04 8.725450e-01
## ST8SIA6 -2.430886e-03 4.292062e-04 -2.001680e-03 1.627960e+00
## KLHL6 -2.478781e-02 -2.022111e-02 -4.500892e-02 4.830589e+01
## NCAPD2 -2.597569e-03 2.058081e-02 1.798324e-02 3.616550e+01
## NUP93 7.855606e-03 -1.203562e-02 -4.180015e-03 1.742790e+01
## MRPL55 -7.768188e-04 8.121190e-03 7.344371e-03 3.920676e+00
## ZKSCAN5 -6.331719e-03 4.172452e-03 -2.159267e-03 1.396077e+01
## MYO1F -7.219950e-01 1.228400e-01 -5.991550e-01 8.823565e+02
## PCGF1 -3.692125e-04 -3.578939e-03 -3.948151e-03 9.006267e+00
## YWHAQ -4.251724e-02 3.872402e-03 -3.864483e-02 1.029340e+02
## ATG16L2 -3.068915e-01 7.819917e-02 -2.286923e-01 3.370351e+02
## ZC3H15 2.308107e-02 -2.968055e-02 -6.599474e-03 4.990139e+01
## MFSD10 -2.214103e-02 1.278532e-02 -9.355710e-03 1.274814e+01
## ZBTB6 -1.118182e-02 1.034904e-02 -8.327883e-04 1.339248e+01
## NLGN3 7.233672e-03 -4.094042e-04 6.824268e-03 7.157466e+00
## PNPO 4.840345e-03 -6.643288e-03 -1.802943e-03 1.057526e+01
## CTSA 6.977513e-02 -2.131328e-01 -1.433577e-01 2.473258e+02
## OSGIN1 -1.029904e-03 3.640863e-03 2.610959e-03 2.115793e+00
## SUPT16H 1.625313e-02 1.506146e-02 3.131459e-02 6.353515e+01
## STRIP1 -2.581022e-03 -8.345653e-03 -1.092667e-02 2.905519e+01
## ARHGEF7 4.662981e-04 6.014462e-03 6.480760e-03 2.177185e+01
## DGUOK -3.635363e-02 2.686854e-02 -9.485083e-03 4.071040e+01
## MTF2 5.730652e-03 -1.255555e-02 -6.824895e-03 2.614021e+01
## GPS2 -5.921162e-03 4.088722e-02 3.496606e-02 5.330418e+01
## RFNG -9.051864e-03 1.668786e-02 7.635996e-03 1.035427e+01
## ZNF598 1.273463e-03 6.059894e-03 7.333357e-03 7.452848e+00
## ERV3-1 3.358215e-02 2.414599e-03 3.599675e-02 1.848142e+01
## FBXO41 7.394084e-03 2.252754e-03 9.646838e-03 1.123362e+01
## TSSC4 -9.713238e-04 2.767482e-02 2.670349e-02 1.449539e+01
## EIF2B2 -5.981016e-03 7.566118e-03 1.585102e-03 1.578475e+01
## POLR2F -8.902719e-03 1.390828e-02 5.005565e-03 1.787746e+01
## SLC2A11 4.082431e-03 -1.176216e-03 2.906216e-03 3.019815e+00
## ZNF581 1.453442e-02 6.520911e-03 2.105533e-02 1.407894e+01
## API5 2.074042e-02 4.798914e-03 2.553933e-02 5.342000e+01
## BICRA 2.386179e-03 -4.423564e-03 -2.037385e-03 5.170974e+00
## B4GALNT3 -7.732650e-03 5.039984e-03 -2.692667e-03 3.018627e+00
## SRP72 -8.467679e-03 3.101839e-02 2.255071e-02 5.232833e+01
## CRHBP -7.090579e-04 6.694610e-04 -3.959689e-05 4.678069e-01
## TMEM94 7.274272e-04 -1.197573e-02 -1.124830e-02 1.972200e+01
## BTBD1 -8.901031e-03 2.243051e-02 1.352948e-02 4.617942e+01
## SBNO1 -4.720148e-02 1.568778e-02 -3.151370e-02 5.723994e+01
## C15orf61 9.911872e-04 4.286997e-04 1.419887e-03 1.005492e+00
## QSER1 -7.235299e-03 1.502521e-03 -5.732778e-03 6.886135e+00
## RCOR3 -7.494041e-03 -1.661944e-02 -2.411348e-02 3.665050e+01
## MVP -2.813290e-01 -4.806851e-02 -3.293975e-01 3.117979e+02
## NBAS 2.339643e-03 7.011774e-03 9.351417e-03 1.544472e+01
## CES4A 3.655907e-03 -2.892814e-04 3.366626e-03 3.763215e+00
## OGG1 1.513065e-04 6.141903e-03 6.293209e-03 1.012264e+01
## CDC37 -7.834989e-02 3.876012e-02 -3.958977e-02 9.211347e+01
## ZNF71 2.828556e-03 -3.453955e-04 2.483161e-03 3.016998e+00
## C5orf22 -7.941932e-03 2.877197e-03 -5.064735e-03 1.313112e+01
## AHR 5.675040e-03 -3.606775e-02 -3.039271e-02 3.450527e+01
## NBPF12 -1.705303e-03 1.408679e-02 1.238149e-02 1.675312e+01
## ACTN1 -2.791741e-01 1.675255e-01 -1.116486e-01 3.106195e+02
## CDT1 -3.547137e-03 3.157817e-03 -3.893198e-04 1.408057e+00
## PSEN2 -2.713013e-03 1.976484e-03 -7.365285e-04 3.209320e+00
## UPK3BL2 1.783131e-02 -1.094632e-02 6.884998e-03 1.481516e+01
## MAP3K11 -8.952916e-02 1.212753e-03 -8.831641e-02 8.308636e+01
## ZDHHC24 -4.585677e-03 6.386335e-03 1.800658e-03 9.010670e+00
## HOOK3 -2.545127e-02 9.774728e-04 -2.447380e-02 3.843573e+01
## SMC5 -1.907040e-03 -1.727698e-02 -1.918402e-02 2.756512e+01
## LPAR2 4.870128e-02 -1.573960e-01 -1.086948e-01 1.384895e+02
## ARMC6 2.666849e-04 1.043624e-02 1.070293e-02 9.994980e+00
## RETSAT -1.286774e-02 1.011423e-02 -2.753512e-03 2.434155e+01
## ZNF444 2.781108e-03 6.975831e-03 9.756938e-03 5.833269e+00
## SFXN4 -7.453681e-03 3.952670e-03 -3.501011e-03 8.709493e+00
## JAGN1 6.973150e-03 -9.731729e-03 -2.758579e-03 1.845714e+01
## PPFIA1 2.420011e-03 3.738461e-02 3.980462e-02 4.560539e+01
## APEX2 -7.168527e-03 9.773283e-03 2.604756e-03 1.617381e+01
## MARCKSL1 -1.133800e-02 -2.381783e-02 -3.515583e-02 3.275804e+01
## DNHD1 4.047967e-03 2.797629e-03 6.845596e-03 7.142234e+00
## PLXNB2 6.189416e-02 -3.994548e-02 2.194868e-02 4.299010e+01
## OSBP -2.284100e-03 -1.299960e-02 -1.528370e-02 3.421764e+01
## BEST1 -2.891809e-01 1.217852e-01 -1.673957e-01 2.113064e+02
## INIP -6.644143e-03 9.013561e-03 2.369418e-03 2.588803e+01
## TM2D1 -3.755257e-03 6.171185e-03 2.415928e-03 1.166093e+01
## ERCC1 8.793072e-03 1.265359e-02 2.144667e-02 2.602666e+01
## BOP1 -3.906728e-03 1.432163e-02 1.041490e-02 6.985680e+00
## ZMIZ2 8.313627e-03 9.970270e-03 1.828390e-02 2.160966e+01
## TNFAIP2 5.239212e-02 -4.222757e-01 -3.698836e-01 5.753412e+02
## CDK3 -5.969835e-03 5.226965e-03 -7.428701e-04 8.252463e+00
## SEC14L1 -3.986179e-01 1.400399e-01 -2.585780e-01 4.231682e+02
## ZNF417 4.052991e-03 4.641045e-03 8.694036e-03 9.501448e+00
## IER3 6.168769e-02 -1.519110e-02 4.649659e-02 4.345288e+01
## CDK17 -2.791786e-02 2.909556e-02 1.177704e-03 3.502346e+01
## MAPK8IP3 -2.166930e-02 2.296024e-03 -1.937328e-02 2.939884e+01
## TRIM69 5.771959e-03 1.228704e-03 7.000663e-03 2.902278e+00
## SLC35A1 -3.099031e-02 1.977514e-04 -3.079256e-02 4.787335e+01
## SLC27A4 -5.992880e-03 9.963565e-03 3.970685e-03 7.812821e+00
## EXOSC3 -4.264725e-03 1.002938e-02 5.764660e-03 1.664466e+01
## OGFOD3 3.346868e-03 4.556458e-03 7.903326e-03 6.277364e+00
## VAMP7 -2.472953e-02 -1.452384e-02 -3.925338e-02 5.519732e+01
## PSMB7 -7.069903e-02 5.067514e-02 -2.002389e-02 7.900470e+01
## MAP1LC3B2 -3.943650e-03 6.168168e-03 2.224518e-03 4.404071e+00
## CHD9 -1.763649e-02 7.519294e-03 -1.011720e-02 1.898585e+01
## FAM174C 7.429693e-03 8.700285e-03 1.612998e-02 5.313790e+00
## AAMDC -7.022280e-04 -3.639070e-03 -4.341298e-03 4.168536e+00
## RALY -1.286845e-01 3.994832e-02 -8.873613e-02 1.311957e+02
## KBTBD6 3.033929e-02 -2.393849e-02 6.400792e-03 1.384360e+01
## PCNX3 -2.783293e-02 2.525385e-03 -2.530754e-02 2.663338e+01
## COQ5 -2.940913e-03 -4.352538e-03 -7.293450e-03 1.529829e+01
## PDPR 2.763697e-02 -8.009984e-03 1.962699e-02 3.659483e+01
## FAM50B -7.475879e-04 1.969968e-03 1.222380e-03 1.591356e+00
## FCN1 1.312866e+00 -7.356132e-01 5.772533e-01 1.185167e+03
## NDUFAF5 3.815860e-04 3.073018e-03 3.454604e-03 5.161637e+00
## SLC30A9 -1.341540e-02 6.398479e-03 -7.016922e-03 2.488083e+01
## MAP3K2 -2.657405e-01 1.473441e-01 -1.183965e-01 2.218011e+02
## LYL1 -2.490082e-02 3.215390e-02 7.253075e-03 1.800618e+01
## SPATA24 4.883121e-04 -9.948711e-04 -5.065590e-04 8.768070e-01
## LTBR -5.501389e-02 -1.618158e-03 -5.663204e-02 6.887649e+01
## ARMC5 -4.967868e-04 5.518855e-03 5.022068e-03 4.093646e+00
## SLX1B -9.618287e-03 3.813761e-03 -5.804526e-03 7.220210e+00
## RNH1 -3.355985e-03 4.453719e-02 4.118121e-02 3.276725e+01
## NLRP1 -2.065413e-01 2.898007e-02 -1.775612e-01 2.363255e+02
## GDPGP1 1.509844e-03 -1.053558e-04 1.404489e-03 2.245276e+00
## TMEM117 1.731266e-04 6.460269e-04 8.191535e-04 6.268953e-01
## OPRM1 -6.854027e-05 -6.578673e-04 -7.264075e-04 7.842726e-01
## AP2A2 -1.145875e-02 1.195820e-02 4.994506e-04 2.404788e+01
## ESS2 7.136809e-03 2.697125e-03 9.833934e-03 1.197674e+01
## CCNYL1 -5.007154e-03 6.919823e-03 1.912669e-03 1.112069e+01
## IVNS1ABP -2.812550e-01 1.744689e-01 -1.067860e-01 2.820156e+02
## LENG1 -6.041805e-03 9.053884e-03 3.012079e-03 7.684041e+00
## DDRGK1 -1.090657e-02 1.232968e-02 1.423107e-03 1.619401e+01
## STIP1 2.876228e-04 -1.287973e-02 -1.259211e-02 3.521896e+01
## AGAP3 1.581398e-02 -1.971387e-03 1.384260e-02 1.427110e+01
## H2AZ2 2.102243e-03 3.277651e-02 3.487875e-02 8.318123e+01
## NICN1 -4.680223e-03 4.762487e-03 8.226425e-05 1.102280e+01
## ING1 -1.621990e-03 -1.483498e-02 -1.645697e-02 2.822170e+01
## N4BP2 8.024219e-03 -2.178640e-03 5.845579e-03 7.302057e+00
## SPNS3 1.666911e-02 -6.822706e-03 9.846403e-03 3.924589e+00
## HYAL3 3.722064e-03 4.137389e-03 7.859453e-03 2.994714e+00
## GSE1 8.860665e-04 9.847298e-03 1.073336e-02 1.562932e+01
## SUGT1 9.288151e-03 4.516119e-04 9.739763e-03 2.263787e+01
## CDIP1 2.949783e-03 1.490754e-02 1.785732e-02 1.878473e+01
## ZFP64 -4.409387e-03 1.459159e-03 -2.950228e-03 3.132364e+00
## PYM1 -1.008809e-02 1.838663e-02 8.298544e-03 1.947500e+01
## ZSCAN16 -3.740726e-03 -3.934745e-03 -7.675472e-03 1.205402e+01
## ABCC9 3.469651e-05 -6.717046e-03 -6.682349e-03 1.071664e+01
## MRPL19 6.622387e-03 -1.491879e-03 5.130508e-03 1.176687e+01
## MIEF1 -2.646606e-03 1.006170e-02 7.415095e-03 2.204912e+01
## HAUS7 -5.219751e-03 8.997524e-03 3.777773e-03 6.169819e+00
## SIPA1L3 3.752168e-03 -1.688799e-03 2.063369e-03 4.670449e+00
## EFNA3 1.255057e-03 -5.410945e-04 7.139626e-04 1.096881e+00
## GSTK1 -4.878474e-03 1.364659e-01 1.315874e-01 2.186417e+02
## MMS22L 2.779531e-03 -2.384404e-03 3.951267e-04 3.994012e+00
## DPEP3 -1.206998e-02 1.234826e-02 2.782828e-04 1.056262e+01
## PEAR1 -1.330424e-03 9.681212e-03 8.350787e-03 8.648463e+00
## ZCCHC24 3.439581e-03 -2.506422e-04 3.188939e-03 4.360635e+00
## C17orf67 9.426099e-04 -1.882515e-04 7.543584e-04 6.141522e-01
## QPCT 1.965316e-01 -4.301185e-01 -2.335869e-01 3.461637e+02
## ATP13A1 -2.348698e-02 2.185054e-02 -1.636439e-03 2.281762e+01
## MBNL3 -8.209168e-04 1.532291e-02 1.450200e-02 1.990885e+01
## TMEM254 2.286549e-03 -5.504667e-03 -3.218118e-03 8.854227e+00
## ZCWPW2 -6.346388e-04 1.162098e-05 -6.230179e-04 4.867185e-01
## EMC1 -3.362175e-03 8.269022e-03 4.906847e-03 1.259096e+01
## ZCRB1 -7.849353e-03 4.623589e-03 -3.225765e-03 1.375668e+01
## GPX4 7.388198e-02 2.031588e-02 9.419785e-02 8.001004e+01
## RIT1 -2.778219e-02 -1.004838e-01 -1.282660e-01 1.259513e+02
## FBXW9 3.001658e-03 -3.753896e-04 2.626269e-03 1.491701e+00
## LAGE3 1.238850e-03 4.738417e-03 5.977267e-03 3.435749e+00
## C3orf62 -5.823811e-02 5.967364e-03 -5.227075e-02 6.535469e+01
## CDKL5 -1.556537e-02 1.687964e-03 -1.387740e-02 1.390341e+01
## TRAF3IP1 1.943614e-03 -1.274681e-03 6.689332e-04 2.780169e+00
## UTP18 2.263445e-03 8.404938e-03 1.066838e-02 2.293167e+01
## MICALL2 -1.089433e-03 1.613884e-03 5.244506e-04 7.008930e-01
## ARHGEF5 2.946481e-03 -3.884174e-03 -9.376928e-04 3.774047e+00
## L2HGDH 3.131344e-03 -3.138987e-03 -7.643091e-06 6.273878e+00
## LLPH -1.898936e-02 3.623213e-03 -1.536615e-02 4.519701e+01
## PSMA5 -1.815931e-02 3.324998e-02 1.509067e-02 7.014158e+01
## TUBA1C 6.212504e-03 3.616236e-02 4.237487e-02 5.637084e+01
## PPP1R14B -1.912090e-03 1.461494e-02 1.270285e-02 1.286853e+01
## DIS3 -1.491240e-02 -1.492111e-03 -1.640451e-02 3.410501e+01
## UBOX5 -9.243580e-03 1.801027e-03 -7.442553e-03 1.442422e+01
## NPIPB3 1.781579e-02 -1.217953e-02 5.636267e-03 1.820449e+01
## ABI3 -3.634612e-02 3.462741e-02 -1.718703e-03 2.608378e+01
## B3GNTL1 -1.051217e-02 -3.966665e-03 -1.447883e-02 1.279576e+01
## MORF4L1 -1.197371e-01 -3.148885e-03 -1.228859e-01 2.713453e+02
## KIFBP 1.647458e-03 -2.176198e-03 -5.287404e-04 4.319111e+00
## DUSP28 9.268713e-04 2.770731e-03 3.697602e-03 7.134974e+00
## CNDP2 3.977784e-02 -4.115969e-02 -1.381842e-03 6.414366e+01
## PBX2 -2.539454e-01 1.859961e-01 -6.794927e-02 3.620373e+02
## RRAS 4.857083e-03 1.945272e-02 2.430980e-02 1.392990e+01
## DNAL1 -2.445434e-04 2.576544e-03 2.332001e-03 6.766036e+00
## IMPA1 -7.656470e-03 -9.305103e-03 -1.696157e-02 2.113875e+01
## NTHL1 -1.425523e-03 5.992210e-03 4.566687e-03 2.767116e+00
## ARAP1 -1.257906e-01 4.305208e-01 3.047302e-01 5.173862e+02
## IRF1 5.500168e-01 -7.484672e-01 -1.984504e-01 6.204659e+02
## ZNF526 1.563406e-03 2.492690e-03 4.056096e-03 5.420247e+00
## TTC9 -9.311373e-03 2.923414e-02 1.992277e-02 1.943297e+01
## RBM42 -3.380057e-02 2.455786e-02 -9.242711e-03 2.330363e+01
## ATP5F1D 2.512791e-02 3.642706e-04 2.549218e-02 8.241636e+00
## SRSF2 -1.127533e-02 -3.853897e-02 -4.981430e-02 1.262075e+02
## PCOLCE 5.117675e-04 1.211228e-03 1.722995e-03 1.317475e+00
## KIAA1841 -4.487518e-03 3.163922e-03 -1.323597e-03 5.410219e+00
## YTHDF2 -3.835303e-03 -9.671417e-03 -1.350672e-02 5.323008e+01
## ENG 1.296065e-03 9.685743e-03 1.098181e-02 7.517699e+00
## FBXO2 2.087588e-04 -1.972447e-03 -1.763689e-03 1.054595e+00
## UBAC2 8.399009e-03 1.995054e-02 2.834955e-02 6.960979e+01
## SEM1 -1.091831e-02 2.725872e-02 1.634040e-02 3.102854e+01
## LZTR1 9.017940e-03 1.020163e-02 1.921957e-02 2.282526e+01
## CEBPE -7.982851e-03 2.540997e-02 1.742712e-02 7.448894e+00
## SMIM20 7.579917e-03 4.015493e-04 7.981466e-03 1.174450e+01
## MMUT 1.372500e-03 -7.607784e-03 -6.235285e-03 1.345620e+01
## CLN6 -3.033211e-02 2.209124e-02 -8.240873e-03 2.197383e+01
## TBCK 5.540046e-03 -6.248765e-03 -7.087189e-04 8.811330e+00
## MAP3K10 1.612924e-04 1.807476e-03 1.968768e-03 2.064994e+00
## BIN3 -3.559192e-03 -3.664890e-02 -4.020809e-02 4.934805e+01
## HMGN2 4.499755e-01 2.374228e-02 4.737178e-01 4.813844e+02
## PPIP5K2 -5.530003e-02 2.437720e-02 -3.092283e-02 6.179736e+01
## MRAS 2.128155e-03 2.943419e-03 5.071574e-03 3.335592e+00
## DLG1 5.301840e-03 7.031568e-03 1.233341e-02 1.788671e+01
## CHRAC1 -9.172712e-03 7.573285e-03 -1.599427e-03 2.074125e+01
## ITGA1 -3.729250e-05 -7.965058e-03 -8.002351e-03 7.039792e+00
## SLCO4C1 -2.352129e-02 -2.311600e-02 -4.663728e-02 3.220046e+01
## ARHGDIA -9.608386e-02 2.396991e-02 -7.211396e-02 7.885851e+01
## GPATCH1 -3.478197e-03 1.182459e-03 -2.295738e-03 6.017622e+00
## DEPDC5 -4.167387e-03 4.428378e-03 2.609907e-04 1.032321e+01
## C20orf194 -4.188344e-03 3.488235e-03 -7.001095e-04 4.932093e+00
## IKBIP -6.782876e-02 2.621601e-02 -4.161275e-02 6.067214e+01
## CARD9 6.775649e-03 -6.620678e-03 1.549708e-04 4.883578e+00
## HSPD1 2.181540e-02 -3.440505e-02 -1.258966e-02 7.123412e+01
## DUSP23 5.037879e-03 6.285157e-03 1.132304e-02 8.907170e+00
## CCDC88B -8.192616e-02 1.608781e-01 7.895198e-02 1.197151e+02
## ANKRD40 -2.726821e-03 8.473273e-03 5.746452e-03 1.607301e+01
## COG1 4.800976e-03 -7.820618e-04 4.018914e-03 1.120632e+01
## SF1 2.103543e-02 -6.882768e-02 -4.779225e-02 1.350951e+02
## STMP1 -3.291249e-02 -9.071298e-03 -4.198379e-02 7.136727e+01
## SCAMP3 7.050286e-03 9.785388e-03 1.683567e-02 1.888963e+01
## LYSMD2 2.161178e-03 -4.037152e-02 -3.821034e-02 4.621109e+01
## CPNE3 7.849827e-02 2.463489e-02 1.031332e-01 8.814839e+01
## DRAP1 -6.677771e-03 7.457047e-02 6.789270e-02 6.098790e+01
## SLC25A1 1.524883e-02 -2.516920e-03 1.273191e-02 1.218737e+01
## USP19 -2.632421e-02 3.488712e-03 -2.283550e-02 5.872975e+01
## LYG1 -1.274224e-03 1.898033e-03 6.238090e-04 2.196846e+00
## EIF3A 6.694065e-02 -6.236548e-03 6.070410e-02 1.238513e+02
## GPKOW -4.123427e-03 1.208137e-02 7.957941e-03 2.144052e+01
## NRBP1 -6.730479e-02 2.738804e-02 -3.991674e-02 1.331079e+02
## MYOM2 5.200547e-03 -3.679187e-02 -3.159132e-02 1.333698e+01
## CKAP5 3.034382e-03 1.074786e-02 1.378225e-02 2.002765e+01
## KIF2A -1.000726e-02 3.912805e-02 2.912079e-02 7.356831e+01
## CHMP1B -8.282979e-02 1.187687e-01 3.593893e-02 1.734707e+02
## MVB12A 1.269441e-02 -6.385160e-03 6.309252e-03 1.016360e+01
## DDX3X -6.108648e-01 3.866468e-01 -2.242180e-01 6.239814e+02
## COA4 5.829380e-07 9.144874e-03 9.145457e-03 1.090686e+01
## UCP3 -3.499992e-04 1.098274e-03 7.482746e-04 1.911975e+00
## FASTKD1 6.467837e-03 -2.985540e-03 3.482297e-03 1.053862e+01
## CDK5 -7.464075e-03 -2.482077e-04 -7.712283e-03 1.028263e+01
## GABARAP -1.172080e+00 5.381090e-01 -6.339712e-01 1.144464e+03
## CHCHD5 8.225009e-04 8.657304e-03 9.479805e-03 5.918081e+00
## PRELID3B 1.884175e-02 9.035475e-04 1.974530e-02 3.881452e+01
## MALSU1 -3.088063e-03 -4.724054e-03 -7.812117e-03 1.167633e+01
## MFSD3 -2.762960e-03 2.413549e-03 -3.494112e-04 1.270886e+00
## ZNF264 -1.174107e-02 4.651176e-03 -7.089893e-03 1.808413e+01
## NUMA1 -1.208095e-02 3.527099e-02 2.319004e-02 6.524004e+01
## NCOR2 -7.704552e-03 -4.795576e-03 -1.250013e-02 1.550172e+01
## DCAF5 -2.583588e-02 6.349084e-03 -1.948679e-02 5.725262e+01
## UGT8 1.057441e-03 -3.349580e-04 7.224834e-04 1.101377e+00
## CFAP161 6.258479e-04 1.158770e-03 1.784618e-03 1.362438e+00
## ITGB1BP1 -1.310536e-02 1.204923e-02 -1.056131e-03 3.291323e+01
## HSD17B13 2.539385e-03 -1.237014e-03 1.302372e-03 1.965186e+00
## S1PR5 2.462710e-02 -2.449541e-02 1.316863e-04 1.655268e+01
## CABIN1 -2.384176e-02 4.736341e-02 2.352166e-02 4.119331e+01
## TRAPPC10 2.364598e-03 -3.382375e-02 -3.145915e-02 7.131962e+01
## ABHD12 3.853721e-04 8.570093e-03 8.955466e-03 1.046983e+01
## NAPSA 2.325547e-02 9.480363e-03 3.273583e-02 2.401286e+01
## TNFRSF10D 7.336498e-03 -3.654964e-03 3.681534e-03 9.075361e+00
## KLC4 7.552372e-03 1.736736e-03 9.289108e-03 1.591845e+01
## ALG8 5.269185e-04 4.374353e-03 4.901272e-03 9.727654e+00
## HHLA2 5.969971e-05 2.865132e-03 2.924831e-03 2.976595e+00
## TIMM8A 3.858577e-04 1.144834e-03 1.530692e-03 2.385369e+00
## SOCS5 3.953787e-03 -1.832608e-02 -1.437229e-02 1.694297e+01
## PNMA3 2.123463e-03 -3.453129e-03 -1.329665e-03 1.748211e+00
## CILK1 -4.570827e-03 5.758091e-03 1.187264e-03 9.893442e+00
## CRX -1.059381e-03 -1.399004e-04 -1.199282e-03 1.127600e+00
## TMEM176A 3.368366e-02 2.982153e-02 6.350519e-02 2.100052e+01
## OCEL1 5.705040e-03 -1.029197e-02 -4.586930e-03 8.598829e+00
## ZFAND2A 1.906877e-02 -1.536426e-02 3.704510e-03 1.974543e+01
## SRGAP1 2.441376e-03 -1.212913e-03 1.228463e-03 1.283904e+00
## RALGAPA1 -2.870871e-03 8.349627e-03 5.478755e-03 9.593842e+00
## NFE2L1 -2.744199e-02 2.198268e-02 -5.459307e-03 7.286074e+01
## PKN1 -1.684344e-02 1.360465e-01 1.192030e-01 1.353741e+02
## PLA2G12A -8.261551e-03 -4.691300e-03 -1.295285e-02 1.614042e+01
## MAP2K5 -3.060956e-03 1.657830e-03 -1.403126e-03 5.856772e+00
## TP53INP2 -1.345879e-02 1.951306e-02 6.054264e-03 1.428151e+01
## LRFN1 6.767773e-03 7.296462e-03 1.406424e-02 1.284972e+01
## DISP2 3.782123e-04 7.033097e-04 1.081522e-03 1.339867e+00
## ICAM2 6.077218e-02 -4.622584e-02 1.454633e-02 5.028034e+01
## FOXO3 -3.254123e-03 -1.194705e-01 -1.227246e-01 1.057993e+02
## PSME1 2.260394e-01 -6.286681e-02 1.631726e-01 3.037903e+02
## PVR 2.443316e-03 4.348804e-03 6.792120e-03 8.609482e+00
## GPR34 7.000759e-03 -5.837822e-03 1.162937e-03 5.068378e+00
## NAA10 7.336274e-03 2.065992e-02 2.799620e-02 2.821516e+01
## ZNF487 -1.321198e-02 3.007524e-03 -1.020445e-02 1.384848e+01
## ARL2 1.290798e-02 -9.607728e-03 3.300250e-03 9.062380e+00
## FBXW11 -2.134912e-02 7.284676e-03 -1.406444e-02 3.109664e+01
## CINP -1.549992e-02 -1.463760e-03 -1.696368e-02 1.988453e+01
## ERCC6L 1.135422e-03 -1.454212e-03 -3.187894e-04 1.118754e+00
## MRPL41 5.267454e-03 2.308950e-03 7.576404e-03 3.160560e+00
## DOK2 3.718882e-02 -9.854532e-02 -6.135649e-02 7.500722e+01
## GNGT2 -8.263402e-03 3.239713e-03 -5.023689e-03 6.307515e+00
## ACAD9 7.615220e-03 -1.038965e-03 6.576255e-03 1.236727e+01
## C20orf27 -3.651637e-02 3.541086e-02 -1.105514e-03 2.245078e+01
## VRK3 -3.272151e-02 4.574889e-03 -2.814662e-02 5.842421e+01
## TTC1 -2.499027e-02 -8.536609e-04 -2.584393e-02 5.690973e+01
## SEC11A -1.877733e-02 4.491056e-02 2.613323e-02 1.105663e+02
## NFKBIB 2.100537e-03 -1.070232e-02 -8.601786e-03 1.648650e+01
## H3C6 6.412053e-03 -6.448417e-03 -3.636422e-05 4.574164e+00
## NEK8 3.863417e-03 -6.406249e-04 3.222792e-03 5.116764e+00
## ZBTB11 -2.300311e-02 4.776841e-03 -1.822627e-02 3.351740e+01
## PSME2 1.140402e-01 -1.587615e-01 -4.472130e-02 1.606863e+02
## CD160 3.207627e-03 5.576819e-03 8.784445e-03 5.254157e+00
## EDF1 -1.932688e-02 1.320955e-01 1.127686e-01 9.163668e+01
## CFAP92 -9.773521e-03 3.327571e-03 -6.445950e-03 8.891949e+00
## SULT1A2 -4.882472e-03 1.919258e-03 -2.963214e-03 3.955372e+00
## CWC22 -1.482734e-02 1.533081e-02 5.034705e-04 3.133828e+01
## EMC4 -1.514363e-03 7.541381e-03 6.027018e-03 2.131025e+01
## ZDHHC6 -1.208569e-03 1.055780e-02 9.349235e-03 3.693531e+01
## LBR -1.725513e-01 -1.172545e-01 -2.898057e-01 3.485132e+02
## ANAPC4 5.011941e-03 3.571574e-03 8.583516e-03 2.882360e+01
## RPP25 2.020175e-03 1.588660e-03 3.608835e-03 2.577725e+00
## STK35 -1.460519e-02 2.107093e-02 6.465738e-03 3.225220e+01
## KNL1 1.067067e-03 3.113340e-03 4.180407e-03 3.506061e+00
## ZNF720 2.515419e-03 -1.158069e-03 1.357350e-03 4.263660e+00
## NTMT1 8.237290e-03 -3.511684e-03 4.725606e-03 7.979702e+00
## MFSD5 -1.916033e-02 2.144953e-03 -1.701537e-02 2.866155e+01
## CMTM3 2.233375e-03 -5.164993e-02 -4.941656e-02 9.704492e+01
## FKBP4 -2.032318e-02 1.586280e-02 -4.460383e-03 2.504215e+01
## NUP35 1.388192e-03 3.272444e-04 1.715437e-03 2.818962e+00
## NOL4L -1.770977e-02 1.407999e-03 -1.630177e-02 2.777195e+01
## RFC3 -2.274591e-03 -8.351515e-04 -3.109742e-03 3.856438e+00
## TSPAN13 -2.396231e-03 5.211792e-03 2.815562e-03 5.199338e+00
## CHMP4A -4.792992e-02 5.478971e-03 -4.245095e-02 6.563874e+01
## DCAKD 2.218787e-03 -2.975876e-03 -7.570888e-04 5.989788e+00
## TSHZ1 3.730159e-03 3.081814e-03 6.811974e-03 7.626203e+00
## RIPOR1 -1.614513e-02 1.569676e-02 -4.483715e-04 3.157259e+01
## MZT2A 3.896334e-03 1.260599e-03 5.156932e-03 1.805651e+00
## TDP2 -1.566083e-01 2.118960e-01 5.528772e-02 2.341006e+02
## WASF1 3.809224e-03 -1.795439e-03 2.013785e-03 3.100667e+00
## ZBTB45 -2.948149e-03 4.954624e-04 -2.452686e-03 2.702421e+00
## YJU2 8.505290e-03 7.099009e-04 9.215191e-03 8.966040e+00
## ZNF232 6.190538e-04 1.813888e-03 2.432942e-03 3.774050e+00
## SF3A2 1.005317e-03 1.319369e-02 1.419901e-02 1.103003e+01
## LRRC47 1.148661e-04 9.890406e-03 1.000527e-02 2.235072e+01
## ARAP2 4.256530e-02 -3.137590e-02 1.118941e-02 4.519780e+01
## ZNF280D -2.504452e-03 9.341517e-03 6.837065e-03 1.587320e+01
## FIBP -3.057983e-02 1.988053e-02 -1.069930e-02 3.238332e+01
## PSMC3 -3.091051e-02 3.554940e-02 4.638894e-03 4.726482e+01
## UCK2 3.313787e-03 -4.022754e-03 -7.089667e-04 7.303900e+00
## RAB20 2.274846e-02 -3.833836e-02 -1.558990e-02 2.282927e+01
## WLS -1.051961e-01 1.083100e-01 3.113893e-03 8.562399e+01
## DFFB -2.953653e-03 2.547349e-03 -4.063044e-04 8.437645e+00
## NDUFS6 -2.454181e-02 2.049811e-02 -4.043696e-03 1.720792e+01
## RNF227 1.533427e-03 -9.712068e-04 5.622206e-04 2.617655e+00
## ANKRD26 1.599894e-03 6.706218e-04 2.270516e-03 2.666260e+00
## ABHD17C -9.948660e-04 -3.226843e-03 -4.221709e-03 3.657780e+00
## SENP7 -2.300148e-02 -1.306677e-02 -3.606825e-02 4.000166e+01
## HMGCL -1.739307e-02 1.312007e-02 -4.273002e-03 2.599589e+01
## CACNA2D2 2.512958e-03 6.666463e-04 3.179605e-03 2.373906e+00
## PYCR2 -4.778037e-03 1.683150e-02 1.205346e-02 3.472539e+01
## PHPT1 8.407300e-03 1.218970e-02 2.059700e-02 1.315330e+01
## CAMTA1 2.939118e-05 -6.139857e-03 -6.110466e-03 1.058185e+01
## MFSD2B 2.834227e-03 2.165184e-03 4.999411e-03 3.370364e+00
## DENND4C -1.762672e-02 1.309050e-02 -4.536225e-03 2.295997e+01
## EMC10 -2.664893e-02 2.783498e-02 1.186055e-03 3.324849e+01
## RTN4IP1 1.521414e-03 1.434204e-03 2.955618e-03 3.505065e+00
## P3H1 -9.185951e-03 1.247481e-02 3.288856e-03 2.098750e+01
## ZGRF1 8.602461e-04 -2.162909e-03 -1.302663e-03 2.908208e+00
## CTDSPL2 -6.568336e-03 -7.065014e-03 -1.363335e-02 2.482936e+01
## NSMAF 6.883077e-02 -9.910193e-02 -3.027116e-02 1.062217e+02
## POLR2L -2.269062e-02 2.176434e-02 -9.262768e-04 1.206856e+01
## INF2 1.232894e-02 -8.096567e-03 4.232375e-03 9.369260e+00
## PRMT3 -6.407578e-05 -2.191229e-03 -2.255305e-03 5.450884e+00
## ZFYVE1 8.579087e-03 -9.893776e-03 -1.314689e-03 2.361222e+01
## TARDBP 5.484633e-03 1.909789e-02 2.458252e-02 8.104648e+01
## ELL -3.269410e-02 1.513930e-03 -3.118017e-02 4.057338e+01
## LANCL2 1.045795e-03 1.739908e-03 2.785703e-03 5.362776e+00
## TIMM13 6.584082e-03 9.140641e-03 1.572472e-02 9.269463e+00
## MAT2B -3.071305e-02 -4.501895e-02 -7.573200e-02 1.422819e+02
## ARHGEF10L 6.441839e-03 -7.725396e-03 -1.283557e-03 6.468444e+00
## ARFGAP1 -1.735288e-02 3.383644e-02 1.648356e-02 3.094574e+01
## SCAND1 -5.782564e-03 8.592695e-03 2.810131e-03 4.666259e+00
## STX10 -8.258446e-02 1.148730e-01 3.228859e-02 1.517715e+02
## ZNF627 4.713471e-03 -3.675944e-03 1.037527e-03 7.615037e+00
## SP4 7.393736e-03 -9.482907e-03 -2.089171e-03 1.337871e+01
## BCOR -7.385759e-03 8.288019e-03 9.022603e-04 1.210760e+01
## BPNT2 4.743629e-03 -1.313190e-02 -8.388276e-03 3.121925e+01
## CARHSP1 3.920117e-02 -1.054952e-02 2.865165e-02 4.646130e+01
## MPHOSPH8 1.008693e-02 1.414565e-02 2.423258e-02 6.376356e+01
## ZNF426 3.920774e-03 -9.028979e-04 3.017876e-03 1.098150e+01
## FBXO27 -1.771075e-04 -3.643393e-04 -5.414468e-04 5.142415e-01
## ZC3H7A 4.483465e-02 -2.400859e-02 2.082606e-02 5.200075e+01
## TRAFD1 -6.265131e-03 -1.355922e-01 -1.418574e-01 1.844486e+02
## RDX -5.951832e-03 5.447696e-03 -5.041360e-04 9.716763e+00
## RILPL1 -1.672591e-03 4.642340e-03 2.969749e-03 5.834776e+00
## KPNA2 -4.438958e-03 -8.084122e-03 -1.252308e-02 3.099392e+01
## NLRP2 6.091316e-03 -4.361908e-03 1.729408e-03 4.527700e+00
## NDUFS7 -3.477210e-05 9.837198e-03 9.802426e-03 4.704812e+00
## NMB 1.220484e-03 -1.870718e-04 1.033412e-03 8.054323e-01
## FAM126A -9.908298e-03 8.932209e-03 -9.760881e-04 1.735030e+01
## PPBP 8.838878e-01 -6.261574e-01 2.577305e-01 5.377202e+02
## MRPL24 -9.144654e-03 1.998842e-02 1.084377e-02 1.931318e+01
## USP47 2.016586e-02 -8.003857e-04 1.936548e-02 4.739430e+01
## TMEM176B -1.459619e-01 1.030162e-01 -4.294569e-02 5.630964e+01
## COA3 7.337519e-03 8.177970e-03 1.551549e-02 1.456493e+01
## ANKRD13C 4.351627e-03 7.303091e-05 4.424658e-03 9.398923e+00
## POLD4 -1.816760e-02 8.734364e-02 6.917604e-02 8.465221e+01
## ADAMTS4 6.923708e-04 -1.846735e-05 6.739034e-04 8.571665e-01
## THRAP3 -7.335812e-02 6.466806e-02 -8.690061e-03 1.367113e+02
## PTK6 -1.135833e-03 -3.148175e-04 -1.450650e-03 1.471093e+00
## SMC3 2.320911e-02 -2.227835e-03 2.098127e-02 4.415372e+01
## DROSHA 4.584007e-03 1.330259e-03 5.914266e-03 1.040870e+01
## ZNF322 1.747958e-03 6.795387e-03 8.543345e-03 1.872779e+01
## OR7E24 9.783455e-04 -7.369057e-04 2.414397e-04 7.699261e-01
## CARM1 6.582508e-03 -3.383529e-03 3.198979e-03 1.011287e+01
## LOC400499 5.178951e-02 6.957599e-02 1.213655e-01 9.947310e+01
## MS4A3 4.499263e-02 1.005143e-01 1.455069e-01 5.048592e+01
## IFIT5 -1.402708e-02 -1.178757e-01 -1.319028e-01 8.400345e+01
## XRCC3 3.432318e-03 -2.379154e-03 1.053164e-03 3.790747e+00
## FAM209A -2.004075e-03 -2.403046e-05 -2.028105e-03 1.880030e+00
## RPP25L 1.180610e-02 -5.188586e-04 1.128724e-02 1.265085e+01
## SEPTIN7 -1.007833e-01 4.878921e-02 -5.199413e-02 1.790245e+02
## DPF2 -2.396811e-02 8.616293e-03 -1.535181e-02 6.640731e+01
## TONSL 1.718306e-03 -9.092946e-04 8.090117e-04 1.375574e+00
## NECTIN1 -7.592576e-03 7.386040e-03 -2.065363e-04 9.194156e+00
## ZNF80 -8.147302e-04 2.488033e-03 1.673303e-03 3.077392e+00
## EGR3 -3.642930e-02 4.183613e-02 5.406828e-03 1.010101e+01
## PLA2G15 -8.138244e-03 -7.029131e-03 -1.516737e-02 1.364228e+01
## CBLL1 -1.361497e-02 1.020838e-02 -3.406590e-03 2.807184e+01
## HTT -1.891023e-02 8.611530e-03 -1.029870e-02 3.407739e+01
## RNF166 8.646611e-03 5.067764e-02 5.932425e-02 8.482392e+01
## ZBTB26 -4.760331e-03 3.175616e-03 -1.584715e-03 8.262354e+00
## MACIR -9.574219e-02 -9.548530e-03 -1.052907e-01 4.416678e+01
## RNF113A -8.217616e-03 1.121922e-02 3.001603e-03 2.277846e+01
## EPHX1 3.773269e-03 -6.462232e-04 3.127046e-03 3.819308e+00
## GALNT6 -1.031270e-02 -2.089951e-03 -1.240265e-02 1.291209e+01
## HILPDA -1.315083e-04 1.006184e-03 8.746760e-04 1.499195e+00
## C1R -3.383498e-03 -1.037143e-04 -3.487212e-03 4.930299e+00
## MRPL4 4.053555e-04 9.273497e-03 9.678853e-03 6.632145e+00
## ARL5A 9.912387e-03 -1.455195e-02 -4.639559e-03 3.234736e+01
## IL10RB -1.192362e-02 -1.239560e-01 -1.358797e-01 2.100092e+02
## KDM5B -1.090725e-02 -1.987156e-02 -3.077881e-02 4.159757e+01
## PLCB2 1.996034e-02 -1.197431e-01 -9.978279e-02 2.934669e+02
## C20orf96 1.338747e-03 -9.491535e-04 3.895934e-04 1.429923e+00
## SFMBT1 5.820197e-04 2.467676e-03 3.049695e-03 4.559511e+00
## HSD17B1 2.560437e-04 -6.279044e-04 -3.718607e-04 6.280013e-01
## ARHGAP32 -2.251746e-03 1.430438e-03 -8.213073e-04 2.544693e+00
## COX10 2.923845e-03 -1.095188e-03 1.828657e-03 5.420455e+00
## TMCC1 -3.068583e-02 5.021595e-04 -3.018367e-02 3.548036e+01
## TMEM205 -2.062948e-02 2.511010e-02 4.480618e-03 2.900078e+01
## HOMER3 -1.177251e-02 8.595293e-03 -3.177217e-03 1.220168e+01
## HLA-F -6.285867e-02 2.045823e-01 1.417236e-01 2.890514e+02
## DNAJC15 1.309904e-03 -1.054719e-02 -9.237287e-03 2.523826e+01
## INO80 -5.914426e-03 8.930002e-03 3.015576e-03 2.256520e+01
## HNRNPUL1 -3.099454e-02 3.105437e-02 5.983225e-05 1.181631e+02
## CCDC71 1.058760e-02 -2.809332e-03 7.778267e-03 1.504596e+01
## ELMOD1 6.042816e-04 -3.141440e-04 2.901376e-04 4.837410e-01
## TEX2 -1.571745e-04 2.091143e-02 2.075426e-02 1.955946e+01
## SLC35E2B -5.385302e-02 1.430878e-02 -3.954424e-02 9.086888e+01
## POMGNT2 -2.216233e-03 1.593510e-03 -6.227231e-04 2.797732e+00
## SFR1 -2.596827e-03 8.249284e-04 -1.771899e-03 6.022667e+00
## RIOK3 4.523748e-02 -9.133197e-02 -4.609449e-02 1.113256e+02
## NAGS 1.303134e-04 6.985766e-04 8.288900e-04 9.556516e-01
## CCDC82 -7.879833e-03 1.881427e-02 1.093444e-02 3.463308e+01
## IDE 3.849693e-03 2.705913e-03 6.555606e-03 1.526620e+01
## PLK4 3.499030e-03 -2.389581e-03 1.109449e-03 3.109371e+00
## FGD3 -9.407713e-02 1.926685e-01 9.859142e-02 2.872203e+02
## FLCN 3.056571e-02 -3.226048e-02 -1.694777e-03 4.531634e+01
## LRRC37A3 -3.172427e-03 4.370994e-03 1.198567e-03 6.371172e+00
## CENPQ -2.839114e-03 9.443765e-04 -1.894738e-03 3.905702e+00
## ALG3 -1.337284e-02 1.237612e-02 -9.967229e-04 1.254849e+01
## CNOT6L -2.822141e-02 3.001078e-02 1.789370e-03 6.748450e+01
## PMVK -2.072245e-02 1.543797e-02 -5.284475e-03 1.652029e+01
## TMEM68 -8.102285e-04 2.417581e-03 1.607353e-03 7.484016e+00
## BANF1 1.167191e-02 3.425587e-02 4.592778e-02 4.939688e+01
## FCRLB -7.929039e-04 5.283114e-04 -2.645925e-04 7.086895e-01
## PSMB8 -1.795172e-01 1.639315e-01 -1.558569e-02 3.266311e+02
## VAMP8 2.873293e-02 1.000893e-01 1.288222e-01 1.398074e+02
## HRAS 3.947983e-03 4.950713e-03 8.898696e-03 5.487688e+00
## EFNA4 -3.323849e-03 4.114072e-04 -2.912441e-03 5.635971e+00
## CCNI -1.982563e-01 1.212339e-01 -7.702240e-02 3.655615e+02
## ZP3 7.074725e-04 -4.573026e-03 -3.865554e-03 3.124754e+00
## RNF114 -8.045321e-03 -1.993921e-02 -2.798453e-02 7.231145e+01
## PRCC -2.192918e-02 1.283377e-02 -9.095412e-03 3.817117e+01
## GOLPH3L -1.156064e-02 3.607863e-03 -7.952777e-03 1.486673e+01
## IL2RB 4.326928e-02 -9.402450e-03 3.386683e-02 3.629686e+01
## GPATCH3 7.490875e-03 -9.741928e-03 -2.251053e-03 1.686023e+01
## BFAR 3.702866e-03 3.101735e-03 6.804601e-03 2.622119e+01
## ACVR1 -2.175867e-03 6.124531e-03 3.948664e-03 1.197090e+01
## RGL2 -8.619670e-02 1.242384e-01 3.804171e-02 2.274544e+02
## ZFAND4 -2.157170e-03 -3.409862e-04 -2.498157e-03 5.305844e+00
## EBP -6.059384e-03 1.751851e-02 1.145912e-02 1.926629e+01
## UBE2D2 -3.675250e-02 1.571344e-02 -2.103907e-02 9.746976e+01
## DGKH -6.048391e-02 1.145057e-02 -4.903334e-02 2.303035e+01
## SAMD4B -1.025671e-02 2.046927e-03 -8.209779e-03 2.104429e+01
## CALM3 -7.252062e-02 -5.136215e-02 -1.238828e-01 2.943110e+02
## CEP85 6.427695e-03 -4.883837e-03 1.543858e-03 1.216090e+01
## ZNF578 1.121463e-04 -1.303654e-03 -1.191508e-03 1.902252e+00
## TERF2 -9.723774e-04 3.020658e-03 2.048281e-03 1.511700e+01
## AMY2B 1.820998e-02 -5.053876e-03 1.315611e-02 2.936114e+01
## MRPS12 -5.101422e-03 7.919128e-03 2.817706e-03 5.952540e+00
## CAMLG -4.170678e-03 1.474193e-02 1.057125e-02 3.164762e+01
## SEC23IP -9.939246e-03 4.184164e-03 -5.755081e-03 2.513588e+01
## ARPC4-TTLL3 -4.805068e-03 2.338268e-02 1.857761e-02 3.585958e+01
## SLAIN2 -6.039522e-04 -1.795062e-02 -1.855458e-02 4.312159e+01
## NDUFB2 3.645419e-03 2.933600e-02 3.298142e-02 3.145912e+01
## HGS -2.938803e-02 1.597790e-02 -1.341012e-02 5.154154e+01
## BBS4 2.875262e-03 -2.126206e-03 7.490557e-04 6.209166e+00
## OLFM4 3.044918e-01 2.505375e-01 5.550293e-01 1.521250e+02
## ARMH3 -7.526610e-03 3.487850e-03 -4.038760e-03 2.443647e+01
## CERS5 -1.544197e-02 -7.635322e-03 -2.307729e-02 4.569431e+01
## EIF1 4.108018e-01 -2.532797e-01 1.575220e-01 5.289279e+02
## HDAC4 -4.751935e-02 1.609524e-02 -3.142411e-02 5.521214e+01
## ZNF473 -1.218076e-03 -8.444743e-04 -2.062550e-03 5.464621e+00
## FOXP1 -2.762221e-02 1.212755e-02 -1.549466e-02 4.715329e+01
## MED30 -2.137931e-03 -4.014763e-03 -6.152694e-03 1.270048e+01
## MVD -4.221589e-03 9.784208e-03 5.562619e-03 6.312871e+00
## NDUFA9 2.830963e-02 -5.421009e-03 2.288862e-02 5.354425e+01
## TESMIN -3.806787e-03 2.668686e-03 -1.138101e-03 4.744979e+00
## PIGH 4.994444e-04 2.718730e-03 3.218174e-03 1.057640e+01
## AKR1C1 -3.296078e-03 9.447216e-03 6.151139e-03 3.506761e+00
## CDKN2AIPNL 1.748513e-03 2.181904e-03 3.930417e-03 6.873732e+00
## ALG10B 3.306785e-03 1.144689e-04 3.421254e-03 6.473076e+00
## CYP2R1 2.657761e-03 -7.264923e-05 2.585112e-03 7.539299e+00
## WDR47 -1.416189e-02 7.313288e-03 -6.848602e-03 1.887631e+01
## CMC1 -7.950126e-03 2.176929e-03 -5.773197e-03 1.313216e+01
## GABRR2 -1.619536e-02 1.582306e-02 -3.722961e-04 1.063639e+01
## FAAP100 7.798536e-04 7.212433e-03 7.992287e-03 7.343460e+00
## GOLGA8H 3.117376e-03 -1.251652e-03 1.865724e-03 3.468855e+00
## NUP62 -2.244292e-03 1.153011e-02 9.285821e-03 2.639749e+01
## KIF11 7.435896e-03 3.871882e-04 7.823084e-03 7.513803e+00
## TRAPPC2L -3.930861e-03 1.622101e-02 1.229015e-02 2.156604e+01
## INAFM1 6.277750e-03 -7.806466e-03 -1.528716e-03 5.178638e+00
## KPNA3 -1.160070e-02 5.208056e-03 -6.392640e-03 2.299328e+01
## BUD13 -7.088840e-03 5.236568e-03 -1.852272e-03 2.442742e+01
## DCBLD1 -1.686337e-03 2.823066e-04 -1.404030e-03 2.315239e+00
## TYMP 1.550333e-01 -2.605660e-01 -1.055327e-01 1.938283e+02
## GSTM4 9.341293e-03 -8.374954e-03 9.663391e-04 8.290163e+00
## DHFR -1.733186e-03 -1.924802e-02 -2.098120e-02 2.806569e+01
## CLDN12 -7.390309e-04 6.227400e-04 -1.162909e-04 1.004470e+00
## MTFR2 -4.201305e-04 1.123909e-03 7.037784e-04 1.739175e+00
## ZKSCAN3 9.146544e-04 7.876931e-04 1.702347e-03 4.269976e+00
## ABCA9 -6.772472e-04 6.001822e-04 -7.706498e-05 8.466110e-01
## HNRNPL 3.066524e-02 2.955210e-02 6.021734e-02 1.401070e+02
## DTNB -4.498534e-03 1.651897e-03 -2.846638e-03 9.719501e+00
## OGFR -2.887973e-02 4.698940e-02 1.810968e-02 5.197173e+01
## CCDC142 2.296156e-03 -1.734275e-03 5.618805e-04 6.586726e+00
## SLC48A1 -6.513780e-03 -5.154356e-03 -1.166814e-02 1.747207e+01
## POGK 6.873231e-03 3.560928e-03 1.043416e-02 2.561519e+01
## MOB3A -3.659210e-01 2.137792e-01 -1.521419e-01 4.839249e+02
## ZNF385A 5.675871e-03 -3.414870e-02 -2.847283e-02 3.754878e+01
## ARID1B 1.094340e-02 -1.345437e-02 -2.510972e-03 2.962887e+01
## RRAGC -2.118072e-02 -6.601516e-03 -2.778224e-02 5.451928e+01
## MRPL18 -1.038773e-03 -4.655999e-03 -5.694772e-03 1.755938e+01
## HOPX 1.027350e-02 1.062972e-02 2.090322e-02 1.933175e+01
## ABRAXAS2 3.894162e-03 -5.579473e-03 -1.685312e-03 1.367703e+01
## CHST11 -5.764526e-02 -2.245552e-02 -8.010078e-02 1.389054e+02
## EGF -1.363886e-02 1.543064e-03 -1.209579e-02 1.065500e+01
## CACNA1F -3.534865e-04 7.136772e-04 3.601907e-04 6.591841e-01
## MYNN -1.129595e-02 2.115372e-04 -1.108441e-02 2.527375e+01
## ZHX1 -2.847482e-03 -4.925009e-03 -7.772492e-03 1.298460e+01
## EDEM3 -2.452057e-02 5.210804e-02 2.758746e-02 7.418345e+01
## GNPAT 3.137470e-03 -8.724240e-03 -5.586770e-03 3.635112e+01
## ZNF830 6.809048e-03 -3.046881e-03 3.762167e-03 1.931550e+01
## ZBED8 -7.094589e-04 3.328485e-04 -3.766104e-04 8.567661e-01
## AKR1C3 -3.670402e-03 9.347917e-03 5.677515e-03 9.398518e+00
## OTUD5 4.101452e-02 -5.396269e-02 -1.294818e-02 1.085814e+02
## CCDC159 4.227113e-03 -1.360585e-02 -9.378737e-03 1.870558e+01
## HORMAD1 -2.979459e-03 8.781311e-04 -2.101328e-03 1.923364e+00
## PAQR4 -7.168253e-03 5.877689e-03 -1.290564e-03 8.598230e+00
## ZBTB42 5.749779e-04 1.873369e-03 2.448346e-03 1.962875e+00
## UBFD1 6.328007e-03 -3.787077e-03 2.540930e-03 1.061324e+01
## MBTPS2 8.777803e-04 -2.166960e-03 -1.289179e-03 3.748538e+00
## DPAGT1 1.262924e-03 3.645066e-03 4.907990e-03 1.061017e+01
## CCNC -7.514088e-05 9.602672e-03 9.527531e-03 2.736120e+01
## SEMA4F 2.248696e-03 -5.467633e-04 1.701933e-03 3.027495e+00
## CACNB1 1.368805e-03 4.563050e-04 1.825110e-03 2.481048e+00
## HECW2 2.658300e-02 -1.281331e-02 1.376969e-02 1.821424e+01
## BTN2A1 -1.071469e-02 -8.094708e-02 -9.166177e-02 1.762697e+02
## CTBP2 -4.931935e-02 1.965628e-02 -2.966307e-02 9.315554e+01
## SULT1A3 5.052906e-02 -8.218247e-03 4.231081e-02 8.117230e+01
## RFC5 -7.774796e-04 -1.920773e-03 -2.698253e-03 6.068064e+00
## HLX -2.163558e-02 7.530813e-04 -2.088250e-02 2.205994e+01
## RBM10 1.335387e-02 4.650472e-03 1.800434e-02 3.476605e+01
## CLN8 -5.986888e-04 3.885388e-03 3.286699e-03 8.679156e+00
## FAM189B -2.502300e-03 3.494917e-03 9.926161e-04 6.273706e+00
## LGALS1 -1.729484e-01 2.279358e-02 -1.501548e-01 1.560579e+02
## YY1AP1 -3.165964e-02 4.198786e-02 1.032822e-02 1.179949e+02
## CCDC112 -5.886776e-03 1.496389e-03 -4.390387e-03 1.030443e+01
## PDLIM2 -1.289170e-02 -7.669057e-03 -2.056076e-02 3.011743e+01
## MAP1LC3A 8.504459e-04 6.339056e-03 7.189502e-03 5.653739e+00
## APOBEC3C 2.887772e-02 -2.530907e-02 3.568646e-03 6.347523e+01
## CLK3 6.324071e-03 2.474408e-02 3.106815e-02 7.178408e+01
## CCL3 2.672333e-03 5.385645e-03 8.057978e-03 8.235264e+00
## IPO13 -4.967733e-03 7.288038e-03 2.320305e-03 1.629793e+01
## GABPB1 4.233161e-03 -5.639977e-03 -1.406816e-03 1.739452e+01
## ECH1 3.256132e-02 -4.766963e-03 2.779435e-02 4.688155e+01
## LRRC58 -4.518034e-03 8.146347e-03 3.628313e-03 1.824548e+01
## LTBP2 2.402600e-03 -3.239547e-03 -8.369466e-04 4.483447e+00
## ANKDD1B 2.389541e-04 -4.670786e-04 -2.281244e-04 3.821491e-01
## ACADM 3.858455e-03 6.562206e-03 1.042066e-02 2.094770e+01
## SEC31A -1.060603e-02 -8.295671e-03 -1.890170e-02 3.968046e+01
## ZNF691 2.459190e-03 -3.703191e-03 -1.244001e-03 7.326318e+00
## SELENOI 1.182846e-03 3.501316e-03 4.684162e-03 9.995349e+00
## DHX15 -1.437738e-02 1.847043e-02 4.093048e-03 5.893604e+01
## PLEKHD1 -1.983776e-04 4.241355e-04 2.257579e-04 2.822105e-01
## U2AF1L4 5.102549e-03 -1.005259e-02 -4.950043e-03 9.493169e+00
## GRWD1 5.868242e-04 6.283906e-03 6.870730e-03 8.859273e+00
## CXCR1 -6.840867e-01 -7.514027e-01 -1.435489e+00 1.693025e+03
## C19orf25 -2.126886e-03 1.014422e-02 8.017333e-03 9.995925e+00
## PLXND1 -4.636414e-03 -1.366519e-02 -1.830161e-02 2.630384e+01
## ZNF358 4.332604e-03 -1.711663e-03 2.620941e-03 2.678694e+00
## RMND1 -1.984267e-03 5.843126e-05 -1.925835e-03 6.460617e+00
## GTPBP8 1.213852e-03 4.999302e-04 1.713782e-03 4.154738e+00
## SNX21 -3.756164e-03 3.500973e-03 -2.551913e-04 7.582398e+00
## LDLRAD4 3.678378e-03 -5.196200e-03 -1.517823e-03 1.131135e+01
## AP5S1 -2.208122e-03 -1.825851e-04 -2.390707e-03 5.325280e+00
## PRDM4 1.049655e-02 -4.662623e-03 5.833931e-03 2.520332e+01
## ZNF408 -7.447019e-04 -4.291244e-03 -5.035946e-03 7.434030e+00
## SCAMP4 5.705297e-03 -4.769573e-03 9.357237e-04 1.125526e+01
## ZFYVE21 -3.951675e-03 2.593320e-03 -1.358354e-03 9.759003e+00
## AGPS 1.357272e-02 -1.047154e-02 3.101179e-03 2.898108e+01
## SH2D2A 9.324425e-03 3.633530e-04 9.687778e-03 8.030250e+00
## ZNF738 -1.271620e-03 3.293867e-03 2.022246e-03 7.798971e+00
## SECTM1 -2.137813e-01 1.185569e-01 -9.522436e-02 2.043904e+02
## NEK1 -8.405616e-04 2.305802e-03 1.465240e-03 4.852121e+00
## GTF3C5 6.961067e-03 1.641592e-02 2.337699e-02 3.660590e+01
## EFHC2 -7.107296e-03 8.544995e-04 -6.252796e-03 5.946219e+00
## POMP -4.005694e-02 1.164512e-02 -2.841182e-02 7.402257e+01
## SYMPK -6.068544e-03 1.448942e-02 8.420873e-03 2.506982e+01
## LGALS12 -1.500416e-02 5.592355e-03 -9.411806e-03 1.551317e+01
## ACOT13 -9.741082e-03 6.302432e-03 -3.438650e-03 2.325858e+01
## ORC1 -5.938340e-04 2.325086e-03 1.731252e-03 2.570500e+00
## TBX21 9.798760e-05 -2.335704e-02 -2.325905e-02 2.493433e+01
## FLT1 4.396556e-03 -4.459497e-03 -6.294042e-05 4.549040e+00
## RAB11FIP2 -1.020490e-02 7.709219e-03 -2.495684e-03 1.849863e+01
## POLM -2.399296e-03 8.115451e-03 5.716155e-03 2.148772e+01
## CLDN5 2.633641e-03 -3.228433e-03 -5.947924e-04 2.191016e+00
## AP5Z1 5.135176e-03 1.072352e-02 1.585870e-02 2.355558e+01
## FBXL18 -1.229249e-03 -1.443078e-03 -2.672327e-03 6.821226e+00
## BCLAF1 3.514126e-02 -7.346715e-02 -3.832588e-02 1.259083e+02
## DEGS1 -9.139874e-03 -2.557589e-02 -3.471577e-02 7.228960e+01
## TMEM106B 1.233918e-02 -7.845641e-03 4.493544e-03 2.309842e+01
## GNPTG 1.425345e-02 1.249103e-03 1.550256e-02 3.084933e+01
## TGFB1I1 4.306730e-04 1.233515e-03 1.664188e-03 1.245095e+00
## STBD1 -1.049614e-02 -7.586870e-03 -1.808301e-02 1.136897e+01
## NEK4 1.713759e-04 -6.163338e-03 -5.991962e-03 1.222143e+01
## ITGA4 -5.420501e-02 -4.742266e-02 -1.016277e-01 1.355601e+02
## GTF2A2 -3.430190e-04 -8.089914e-03 -8.432933e-03 2.875338e+01
## TRIM62 -2.997053e-03 4.002807e-04 -2.596772e-03 8.903772e+00
## HCST -5.341575e-02 2.603912e-02 -2.737663e-02 4.651372e+01
## SCAMP5 -4.098967e-03 1.726463e-03 -2.372504e-03 3.072035e+00
## SMARCA5 2.610157e-02 -1.202630e-02 1.407527e-02 7.238429e+01
## ZC3H18 3.395974e-03 3.688699e-03 7.084673e-03 1.844594e+01
## PPP2R5E -3.681286e-03 -4.498648e-03 -8.179934e-03 2.808026e+01
## ZNF737 2.839074e-03 3.764167e-03 6.603240e-03 9.462297e+00
## GPSM2 -6.542501e-03 -9.382493e-04 -7.480751e-03 9.474631e+00
## UNK 9.789313e-04 1.733114e-03 2.712045e-03 5.764356e+00
## ZBTB17 -7.768287e-04 7.542143e-03 6.765315e-03 1.551052e+01
## ARHGAP45 1.855244e-01 -7.711839e-02 1.084060e-01 2.357847e+02
## EML2 4.791839e-04 4.358394e-03 4.837578e-03 1.638413e+01
## POGLUT3 -3.199387e-03 1.069061e-03 -2.130326e-03 5.595443e+00
## LAIR2 -4.813643e-03 -1.102124e-03 -5.915767e-03 3.117122e+00
## CUTA 3.615214e-02 -4.420672e-03 3.173147e-02 3.048356e+01
## UGCG -1.352761e-01 2.220720e-02 -1.130689e-01 1.105831e+02
## PTGIR -4.053778e-03 -3.701656e-03 -7.755433e-03 7.081861e+00
## SEPTIN5 -2.465098e-02 3.568536e-03 -2.108244e-02 2.771332e+01
## ANKMY2 -2.572080e-03 3.181103e-03 6.090236e-04 9.701918e+00
## PYGB -1.109393e-02 1.986510e-02 8.771172e-03 3.795660e+01
## GRHL1 -1.085162e-03 -2.058582e-04 -1.291020e-03 1.439287e+00
## SMARCC2 1.229996e-02 6.866852e-03 1.916681e-02 5.809793e+01
## TCP11L1 2.220157e-03 -5.720003e-05 2.162957e-03 5.238676e+00
## PSMA4 1.065323e-02 6.438584e-02 7.503907e-02 1.478076e+02
## NPFFR2 -2.001851e-04 3.825603e-04 1.823752e-04 3.496079e-01
## HNRNPC 1.602765e-01 -2.380658e-01 -7.778929e-02 6.635047e+02
## CLCN7 1.024151e-02 1.014677e-02 2.038828e-02 2.415015e+01
## FAM98A -4.130790e-03 -1.091166e-03 -5.221956e-03 1.188365e+01
## CLEC18A -5.734292e-03 -3.959458e-04 -6.130238e-03 6.606856e+00
## ATP2A3 -1.435391e-01 5.830300e-02 -8.523610e-02 2.092872e+02
## C12orf4 -2.971410e-04 -4.887334e-03 -5.184475e-03 1.173463e+01
## MCM5 -7.318088e-03 1.257407e-02 5.255986e-03 1.992566e+01
## DCAF10 1.009649e-02 5.138775e-05 1.014788e-02 2.555328e+01
## NCKAP1 -3.034084e-03 4.713340e-03 1.679256e-03 6.203910e+00
## USP49 -3.993337e-03 3.636007e-03 -3.573304e-04 8.151365e+00
## YTHDF1 -3.859318e-03 7.369084e-03 3.509766e-03 3.271250e+01
## RUNX2 -1.142305e-02 1.996863e-02 8.545587e-03 2.999564e+01
## BHLHE40 3.311939e-02 -2.726952e-02 5.849869e-03 5.280375e+01
## RNF43 6.040189e-03 -3.060356e-03 2.979833e-03 1.105826e+01
## UFL1 3.540092e-03 6.257637e-03 9.797729e-03 1.805867e+01
## AUP1 -6.277208e-02 1.605859e-02 -4.671349e-02 1.253401e+02
## PPP1R7 1.182861e-02 5.974709e-03 1.780332e-02 4.626269e+01
## PIGN 2.339447e-04 -2.764325e-03 -2.530381e-03 8.850118e+00
## DOCK10 2.006794e-02 8.856914e-03 2.892485e-02 3.568100e+01
## REST -1.583890e-02 7.466738e-03 -8.372163e-03 3.532080e+01
## FARSA -3.001679e-03 8.524000e-03 5.522321e-03 1.241728e+01
## CTSO 9.169460e-03 -5.111714e-03 4.057746e-03 1.489180e+01
## EMP3 5.752476e-02 -1.251775e-01 -6.765272e-02 1.863266e+02
## CEP19 -6.509814e-02 5.387540e-02 -1.122274e-02 7.496780e+01
## ZCCHC17 6.728123e-04 -1.719723e-02 -1.652442e-02 3.403845e+01
## RENBP 2.054073e-02 -8.224475e-03 1.231625e-02 2.630851e+01
## PAK4 -6.029244e-04 1.200200e-03 5.972756e-04 2.334588e+00
## ETNK1 1.274438e-02 -1.473054e-02 -1.986152e-03 4.377615e+01
## MAML2 5.024584e-03 1.113906e-02 1.616364e-02 2.263292e+01
## MMD 3.787867e-02 -2.793532e-02 9.943352e-03 5.295268e+01
## ALYREF 8.597485e-04 9.592937e-03 1.045269e-02 1.808976e+01
## CCND2 1.866744e-02 -1.722215e-02 1.445289e-03 4.193033e+01
## NBPF1 5.588566e-03 -4.481235e-03 1.107331e-03 8.137959e+00
## XYLT1 -1.463493e-02 9.454839e-03 -5.180089e-03 2.079308e+01
## MTHFD1L 1.830169e-03 -1.528077e-03 3.020920e-04 2.951414e+00
## LRRC8C -1.099226e-02 -6.364909e-03 -1.735717e-02 2.984596e+01
## MRPL16 -7.622586e-03 1.038181e-02 2.759226e-03 2.530340e+01
## MED7 -2.451705e-03 7.080937e-03 4.629232e-03 1.627404e+01
## LARP4 1.612623e-03 -4.958164e-03 -3.345541e-03 1.249580e+01
## NEU1 -2.506285e-02 1.324861e-02 -1.181423e-02 5.953602e+01
## CCDC157 8.385346e-04 -1.188986e-03 -3.504510e-04 2.080613e+00
## HDAC5 4.944066e-02 -4.345394e-02 5.986718e-03 8.636239e+01
## ABCB8 -5.588898e-04 4.792744e-03 4.233854e-03 6.121221e+00
## MIB2 -6.237799e-04 3.150028e-03 2.526248e-03 3.460727e+00
## JADE2 -3.433184e-02 1.759271e-02 -1.673913e-02 5.428562e+01
## CRABP2 7.128376e-04 1.880770e-04 9.009146e-04 1.225575e+00
## PCM1 -2.631265e-02 1.275178e-02 -1.356087e-02 6.416301e+01
## TMEM39B -2.409343e-03 3.273939e-03 8.645964e-04 7.144007e+00
## INPP5D -8.239570e-02 7.483475e-02 -7.560948e-03 2.307735e+02
## NBPF3 3.694466e-03 -1.111430e-03 2.583036e-03 5.432229e+00
## TMEM168 -2.545996e-03 -4.709295e-03 -7.255291e-03 1.668743e+01
## KIAA1671 1.512415e-03 -2.340131e-03 -8.277161e-04 1.920746e+00
## AFG1L 4.392994e-04 1.109861e-04 5.502855e-04 1.212874e+00
## PYGM -1.290595e-02 2.648755e-03 -1.025720e-02 1.764729e+01
## TRIM44 1.017846e-03 1.716003e-02 1.817787e-02 3.985618e+01
## PTPN11 -1.836415e-02 1.880980e-02 4.456436e-04 4.422719e+01
## RCOR1 -4.441762e-02 -2.880916e-03 -4.729854e-02 9.074520e+01
## DENND6B -4.124457e-03 1.343400e-03 -2.781057e-03 3.805693e+00
## FBLIM1 6.277460e-04 -9.909979e-04 -3.632519e-04 2.055397e+00
## SCRN1 6.492461e-03 -7.093975e-03 -6.015136e-04 1.257360e+01
## NUS1 6.174686e-03 -1.399083e-02 -7.816142e-03 3.757963e+01
## RIC8B -2.092880e-03 2.198186e-03 1.053059e-04 4.665072e+00
## PSMD3 -7.519646e-03 1.007582e-02 2.556178e-03 3.463562e+01
## KBTBD11 -3.619897e-03 -8.058928e-03 -1.167883e-02 2.491124e+01
## PRDX6 6.491390e-03 -5.183344e-02 -4.534205e-02 1.341536e+02
## ILF2 2.595331e-02 -4.206058e-03 2.174725e-02 8.091475e+01
## PAAF1 2.325316e-03 -1.359199e-03 9.661173e-04 6.858848e+00
## GMDS -2.866331e-03 1.908975e-03 -9.573558e-04 7.494307e+00
## PNPLA1 -2.388364e-03 1.650536e-02 1.411699e-02 2.333008e+01
## RSPH9 2.223461e-03 1.178553e-03 3.402014e-03 3.199327e+00
## TAF1B -1.570695e-05 -2.167113e-03 -2.182820e-03 5.208159e+00
## FAM199X -1.305409e-02 -1.563805e-03 -1.461790e-02 3.456611e+01
## KCTD20 4.201940e-02 -3.896934e-02 3.050060e-03 1.076263e+02
## ITGA5 6.604043e-02 4.132645e-02 1.073669e-01 2.374864e+02
## HSPA13 -1.120789e-02 1.251702e-02 1.309132e-03 2.075128e+01
## UCK1 5.190200e-03 4.079740e-03 9.269940e-03 2.329643e+01
## WDFY4 -6.161893e-03 -2.572100e-02 -3.188289e-02 6.434275e+01
## UBE2V1 1.416913e-04 1.458749e-02 1.472918e-02 7.471469e+01
## FAM131B -3.906277e-04 9.470570e-04 5.564293e-04 1.967989e+00
## CD74 3.800282e-01 5.070643e-01 8.870925e-01 1.048920e+03
## AGL 6.856820e-03 -4.555629e-04 6.401257e-03 1.386566e+01
## CWF19L1 2.133558e-02 -1.342324e-02 7.912336e-03 5.329476e+01
## CNTROB -7.939310e-03 8.334915e-03 3.956051e-04 1.869156e+01
## SMIM29 -5.712542e-03 1.366549e-02 7.952949e-03 1.803404e+01
## PTPRN2 5.120279e-03 -1.632312e-02 -1.120284e-02 1.956850e+01
## CMAS 3.759762e-03 1.285235e-03 5.044997e-03 1.506844e+01
## RGS6 -9.904489e-04 -1.714822e-03 -2.705271e-03 3.861306e+00
## DTX2 -9.674273e-03 -4.352598e-03 -1.402687e-02 2.113412e+01
## VPS36 -5.233308e-03 1.287435e-02 7.641043e-03 3.787610e+01
## PSMD2 -2.200543e-02 1.335841e-02 -8.647015e-03 1.058684e+02
## ARFGEF2 -1.202150e-02 9.263153e-03 -2.758351e-03 2.004439e+01
## KLHL24 -2.330185e-02 1.826455e-02 -5.037298e-03 4.580787e+01
## MISP3 3.366403e-03 -3.279648e-03 8.675496e-05 4.036114e+00
## WDR76 -5.133100e-04 2.381380e-03 1.868070e-03 5.510450e+00
## ZBTB21 -2.099965e-03 -1.774401e-03 -3.874367e-03 8.360560e+00
## GRHPR -1.917461e-03 -8.893064e-03 -1.081052e-02 2.369453e+01
## CAVIN2 -6.042912e-02 1.055598e-02 -4.987315e-02 9.727598e+01
## TOM1 -7.085767e-02 4.755521e-02 -2.330246e-02 9.757974e+01
## SLC25A3 -4.954439e-02 6.740670e-02 1.786230e-02 1.959651e+02
## SDHA 4.464312e-03 9.256173e-03 1.372048e-02 5.589737e+01
## FAM207A 1.008321e-03 1.364311e-03 2.372632e-03 2.279916e+00
## RMDN2 9.947600e-04 1.074947e-03 2.069707e-03 4.022868e+00
## LUZP1 -3.368684e-03 -1.397365e-03 -4.766049e-03 9.065831e+00
## NDUFAF3 -2.598890e-03 7.987450e-03 5.388560e-03 1.395281e+01
## PFDN2 9.899159e-05 -3.678175e-03 -3.579183e-03 1.507015e+01
## ARV1 2.148334e-03 -1.057374e-03 1.090960e-03 7.050759e+00
## USP27X -1.066270e-03 6.006234e-04 -4.656464e-04 2.158228e+00
## GSDMD -4.014111e-03 4.398898e-02 3.997486e-02 5.409087e+01
## NENF 1.636732e-02 -1.157679e-02 4.790527e-03 1.850034e+01
## ERI2 9.879552e-04 -1.359874e-03 -3.719190e-04 3.443466e+00
## ALDH1B1 1.419033e-03 -7.052931e-04 7.137402e-04 2.673101e+00
## XAB2 4.103111e-03 -1.349815e-02 -9.395043e-03 2.158461e+01
## RBM11 1.530871e-03 -2.817840e-04 1.249087e-03 1.756431e+00
## MCOLN1 9.186910e-03 -7.643786e-03 1.543124e-03 1.607359e+01
## SH3TC1 -1.039000e-02 -9.216323e-04 -1.131163e-02 1.552069e+01
## CHCHD10 -4.737350e-03 8.651909e-03 3.914559e-03 7.115650e+00
## TMEM135 -1.702840e-04 -1.770881e-03 -1.941165e-03 5.174368e+00
## TREML4 -1.025068e-02 1.172652e-03 -9.078029e-03 8.006319e+00
## ASGR2 -1.149952e-02 2.961592e-02 1.811639e-02 3.299900e+01
## LFNG 2.528434e-02 3.821310e-02 6.349744e-02 6.125100e+01
## RBM12 -1.193350e-02 1.070330e-02 -1.230197e-03 5.145961e+01
## RAD21 9.366654e-02 -7.323954e-02 2.042700e-02 2.241692e+02
## RNFT1 -7.138124e-03 -5.274567e-03 -1.241269e-02 2.797873e+01
## AKR1A1 -2.505576e-02 1.174955e-02 -1.330621e-02 4.717125e+01
## ADCK1 -2.609103e-03 1.678818e-03 -9.302849e-04 3.334364e+00
## POLR2G 1.942347e-02 -6.726676e-03 1.269680e-02 4.910076e+01
## BAG5 8.225152e-03 -7.376828e-04 7.487469e-03 3.207113e+01
## ISG20 7.559677e-02 -2.543299e-02 5.016378e-02 9.173526e+01
## ATP5F1A 1.434351e-03 5.701884e-02 5.845319e-02 2.418702e+02
## KLRD1 3.128823e-02 -3.404075e-02 -2.752523e-03 5.079376e+01
## UBAP2 2.005945e-03 -1.667075e-03 3.388705e-04 6.711356e+00
## SLC25A23 2.713769e-03 5.478306e-04 3.261600e-03 4.317810e+00
## UQCRFS1 -3.325017e-02 1.519543e-02 -1.805474e-02 6.939107e+01
## ATG4D -1.032975e-02 6.948996e-03 -3.380749e-03 1.474693e+01
## LRRC40 1.506030e-05 -2.883583e-03 -2.868523e-03 7.298671e+00
## SRP68 -9.480073e-03 1.058903e-03 -8.421170e-03 3.313547e+01
## PRMT9 -1.723919e-03 -7.374709e-04 -2.461390e-03 6.298467e+00
## PLEKHJ1 -7.705907e-03 2.034392e-02 1.263801e-02 2.948693e+01
## STUB1 1.546430e-03 1.934329e-02 2.088972e-02 2.941626e+01
## ZNF672 -1.107641e-02 7.312718e-04 -1.034514e-02 2.761042e+01
## NBPF9 -2.288144e-03 9.826311e-03 7.538167e-03 1.650017e+01
## ACBD3 3.424286e-03 6.075363e-03 9.499649e-03 2.900214e+01
## AHSA1 -9.784843e-03 5.772329e-03 -4.012514e-03 4.621075e+01
## SSBP2 6.762603e-03 -4.624704e-03 2.137899e-03 1.985354e+01
## ULK2 1.578830e-03 -5.597155e-03 -4.018324e-03 1.127519e+01
## ECSIT 4.766042e-03 1.817986e-03 6.584028e-03 9.465281e+00
## ASB16 -1.921469e-04 -2.205641e-04 -4.127110e-04 8.459172e-01
## CD37 6.364721e-02 -5.871676e-02 4.930453e-03 1.999032e+02
## NIT1 -8.517214e-03 -1.875874e-04 -8.704801e-03 3.232203e+01
## SUZ12 -1.127907e-02 1.939176e-02 8.112686e-03 5.628733e+01
## SLC39A3 -1.726945e-03 -6.288184e-03 -8.015129e-03 1.327072e+01
## PICK1 -3.303462e-03 -2.035364e-03 -5.338826e-03 9.753561e+00
## STK19 -4.469725e-03 5.268729e-03 7.990046e-04 1.266014e+01
## THTPA 3.392091e-03 -8.263857e-04 2.565705e-03 9.032734e+00
## XPO5 -3.138948e-03 -1.292612e-03 -4.431561e-03 1.325135e+01
## AIFM3 1.322236e-03 -2.412336e-03 -1.090099e-03 2.507852e+00
## IER5 -5.337061e-03 1.962930e-02 1.429224e-02 4.739248e+01
## WWC3 -3.367613e-02 3.841741e-02 4.741284e-03 8.311294e+01
## TAGAP 5.567998e-02 -1.576095e-01 -1.019295e-01 2.715670e+02
## OGFOD2 -2.323522e-04 4.806517e-03 4.574164e-03 9.250384e+00
## SLC26A2 -3.433516e-03 3.263280e-03 -1.702365e-04 9.960958e+00
## ZNF620 -1.751160e-04 -2.440136e-04 -4.191296e-04 1.111005e+00
## FAM234B -6.794886e-04 -2.081826e-04 -8.876712e-04 2.393256e+00
## DHX37 6.603520e-04 2.535972e-03 3.196324e-03 5.786447e+00
## PPIL4 5.103912e-04 -5.091947e-03 -4.581555e-03 1.613138e+01
## ITGB5 -2.116587e-02 7.111168e-03 -1.405471e-02 2.440822e+01
## TTC37 6.366991e-03 5.574570e-03 1.194156e-02 2.561168e+01
## CDHR1 -1.345288e-03 1.326941e-03 -1.834721e-05 1.189851e+00
## SEPTIN10 -1.465579e-03 5.892737e-04 -8.763051e-04 2.530566e+00
## TPRN 2.825479e-03 7.140036e-04 3.539483e-03 2.888773e+00
## FOXP4 -2.171298e-04 -1.678032e-03 -1.895161e-03 3.184719e+00
## ASCC3 -6.400428e-03 7.273161e-03 8.727332e-04 1.604485e+01
## USP28 -7.011993e-03 6.391037e-03 -6.209557e-04 1.504889e+01
## EZH1 -2.401819e-02 -1.244802e-02 -3.646621e-02 1.204256e+02
## CSTF2 -3.864369e-05 1.661373e-03 1.622730e-03 6.444062e+00
## HMG20B 3.507423e-03 9.010653e-03 1.251808e-02 1.962604e+01
## GINS3 9.565720e-04 -1.851285e-05 9.380592e-04 2.159317e+00
## ANXA6 1.016061e-01 1.291011e-02 1.145162e-01 2.694456e+02
## TGFBR3 6.700403e-03 3.511486e-03 1.021189e-02 1.189919e+01
## KANSL1L -5.086673e-03 2.588628e-03 -2.498045e-03 9.319335e+00
## DCLRE1C -1.360869e-03 -4.525695e-03 -5.886564e-03 2.577264e+01
## SUGP2 4.300012e-03 8.260430e-03 1.256044e-02 4.621708e+01
## XKR7 3.743951e-05 -4.816994e-04 -4.442599e-04 8.011319e-01
## TTC14 -1.905857e-02 9.612303e-03 -9.446267e-03 5.552143e+01
## SNRPA 1.026282e-02 3.528081e-03 1.379090e-02 2.112387e+01
## TLR9 -2.614640e-03 3.212779e-03 5.981387e-04 6.135615e+00
## BRMS1 -2.922717e-02 2.013918e-02 -9.087983e-03 5.200969e+01
## YAF2 -5.820991e-03 7.296998e-04 -5.091291e-03 1.855719e+01
## SDCBP2 -1.211358e-03 1.257623e-03 4.626472e-05 1.920731e+00
## HIP1 2.022738e-02 -5.214057e-02 -3.191319e-02 7.870031e+01
## NOTCH1 -2.996103e-02 1.653964e-02 -1.342139e-02 7.588455e+01
## FCHSD1 2.441363e-02 -1.448604e-02 9.927599e-03 6.887258e+01
## TSC22D4 -6.200085e-02 3.781859e-02 -2.418226e-02 1.116143e+02
## PPARG -4.024789e-03 1.389825e-03 -2.634964e-03 4.457790e+00
## ERAL1 5.962476e-03 -4.305910e-03 1.656566e-03 1.550735e+01
## CARD8 -9.972402e-02 9.831923e-02 -1.404790e-03 2.376386e+02
## ZNF585A -1.813228e-03 2.623209e-03 8.099814e-04 9.846526e+00
## TIGD3 2.361661e-03 7.023151e-03 9.384812e-03 1.031599e+01
## PTK2 -3.752089e-03 -8.035135e-04 -4.555603e-03 8.331115e+00
## NUDT12 -7.234484e-04 4.762789e-04 -2.471695e-04 1.130241e+00
## ZGPAT -3.247637e-03 1.157263e-02 8.324995e-03 2.003335e+01
## DGAT1 -2.419865e-02 1.328577e-02 -1.091288e-02 4.230236e+01
## ANXA1 -2.576042e-01 -4.631714e-01 -7.207756e-01 8.495004e+02
## TUT4 -7.990621e-03 5.008922e-03 -2.981698e-03 1.829120e+01
## OTUB1 -2.791495e-03 2.607006e-02 2.327857e-02 7.650581e+01
## UQCR10 -2.240245e-02 1.362853e-02 -8.773919e-03 4.208845e+01
## TRAPPC3 -1.125282e-02 -4.069954e-03 -1.532277e-02 5.580605e+01
## TIA1 2.854092e-03 -1.747492e-02 -1.462082e-02 7.442085e+01
## ZFP91 -1.021484e-02 -1.133584e-02 -2.155068e-02 5.371768e+01
## RGS12 1.471871e-03 -1.572663e-03 -1.007922e-04 2.385566e+00
## GPATCH2 9.133470e-04 -1.419499e-03 -5.061519e-04 4.802980e+00
## ABCA3 7.424644e-04 -1.162395e-03 -4.199303e-04 2.087508e+00
## HSPA4 7.048398e-03 -7.017564e-03 3.083387e-05 5.706318e+01
## AAGAB 4.847815e-03 1.761097e-03 6.608912e-03 3.571618e+01
## GARRE1 -3.920704e-03 2.498576e-03 -1.422129e-03 9.847996e+00
## POMZP3 2.983995e-03 3.202547e-05 3.016020e-03 5.646571e+00
## GREB1 -5.221393e-04 3.531911e-04 -1.689482e-04 9.694933e-01
## UTP23 1.901160e-03 -2.305892e-03 -4.047320e-04 1.273638e+01
## BUB1B -2.261803e-04 -1.927219e-03 -2.153399e-03 2.893909e+00
## CEP120 -4.349122e-03 8.929840e-03 4.580718e-03 2.569100e+01
## SAP25 1.694409e-02 -1.478417e-02 2.159923e-03 1.959619e+01
## YEATS2 6.488402e-03 -3.717649e-03 2.770753e-03 2.274426e+01
## MED29 -4.591551e-03 3.685042e-03 -9.065086e-04 3.489606e+01
## RANBP3 -7.946963e-03 6.392978e-03 -1.553985e-03 2.980396e+01
## ZNF595 -3.790700e-04 1.902049e-03 1.522979e-03 4.793236e+00
## STING1 2.174145e-02 -2.584006e-02 -4.098617e-03 7.368207e+01
## ZNF580 -2.311824e-03 5.312166e-03 3.000342e-03 7.745392e+00
## ZCCHC9 -2.171448e-03 3.474223e-03 1.302775e-03 1.564725e+01
## PSAT1 9.351408e-04 1.112432e-03 2.047572e-03 4.080667e+00
## BBC3 -7.445638e-03 2.590421e-03 -4.855217e-03 1.025264e+01
## CHRNE 8.414192e-04 1.068964e-03 1.910383e-03 2.193163e+00
## TYMS 7.871921e-04 -8.301208e-03 -7.514016e-03 1.204017e+01
## MYPOP 2.274818e-03 -1.374535e-03 9.002834e-04 5.463564e+00
## TOB2 -3.337284e-03 3.179501e-03 -1.577835e-04 2.284622e+01
## AQR -6.657149e-03 8.720243e-03 2.063095e-03 3.045538e+01
## TNXB 1.374577e-03 9.789392e-05 1.472471e-03 1.810947e+00
## SDHAF2 1.074178e-02 6.650166e-03 1.739195e-02 5.872331e+01
## SPX -2.476579e-03 3.266039e-03 7.894599e-04 4.613071e+00
## BAX -2.763646e-02 1.123685e-02 -1.639961e-02 5.942547e+01
## NME8 4.070416e-03 1.913823e-03 5.984238e-03 9.656100e+00
## VPS37C -2.735684e-05 3.418378e-03 3.391021e-03 1.213700e+01
## XPNPEP3 -1.713878e-03 1.355855e-03 -3.580233e-04 9.121096e+00
## DHX33 1.445867e-03 5.041635e-04 1.950030e-03 7.645431e+00
## EXOC2 -2.147836e-03 5.294497e-03 3.146661e-03 1.759741e+01
## NAA20 7.509339e-04 -3.521405e-03 -2.770471e-03 1.829832e+01
## AP2S1 -5.399549e-03 2.470640e-02 1.930685e-02 4.404107e+01
## HDAC10 -1.385571e-03 7.417256e-03 6.031686e-03 1.072716e+01
## AFAP1L2 -3.790864e-04 8.485573e-04 4.694709e-04 1.847041e+00
## SCAF1 -4.714554e-03 -2.567478e-04 -4.971302e-03 1.161429e+01
## MCM2 4.767927e-03 -5.198754e-03 -4.308266e-04 9.678482e+00
## PAF1 -1.291427e-02 1.288540e-02 -2.887278e-05 4.691603e+01
## PLEKHM2 5.731441e-03 -1.479540e-02 -9.063957e-03 4.673070e+01
## SPECC1 6.323248e-03 -2.507718e-03 3.815530e-03 2.037327e+01
## WASHC1 -4.397412e-02 6.471673e-02 2.074261e-02 1.276131e+02
## C11orf98 1.292856e-02 3.323350e-03 1.625191e-02 3.301385e+01
## ARHGEF39 9.579913e-04 -1.771625e-03 -8.136338e-04 3.605983e+00
## ASB7 -3.998060e-03 9.886015e-03 5.887955e-03 3.039819e+01
## COMMD10 2.651266e-03 -2.755983e-03 -1.047168e-04 1.174316e+01
## CNOT2 6.630276e-03 -6.241837e-03 3.884388e-04 4.367349e+01
## RBM27 -9.206971e-03 2.381282e-03 -6.825689e-03 2.871347e+01
## PDZD8 -3.834639e-02 3.171599e-02 -6.630405e-03 7.019456e+01
## CLTA 1.219156e-02 -2.305761e-02 -1.086605e-02 6.304633e+01
## CD300H 6.521468e-03 2.222276e-03 8.743744e-03 7.163910e+00
## KLHL11 1.071226e-03 1.156961e-03 2.228186e-03 7.187823e+00
## FLNB 1.336304e-03 -9.564817e-03 -8.228513e-03 1.623961e+01
## ARMC9 -7.254246e-04 -7.728857e-04 -1.498310e-03 3.242856e+00
## CHN2 2.432499e-03 9.936544e-06 2.442436e-03 6.302256e+00
## MTERF1 -7.746231e-04 -1.330674e-03 -2.105297e-03 8.488626e+00
## COMMD4 -2.088599e-03 -5.923575e-03 -8.012175e-03 1.227254e+01
## LETM1 9.344686e-04 1.989643e-03 2.924112e-03 9.673980e+00
## MRM2 3.079080e-03 -1.805518e-03 1.273561e-03 1.210393e+01
## CCSAP 1.888215e-03 -9.946893e-03 -8.058677e-03 2.848229e+01
## DNMT1 4.245992e-03 -7.105356e-03 -2.859365e-03 1.811275e+01
## C1orf50 1.781304e-03 1.589975e-03 3.371279e-03 9.110777e+00
## FAM114A2 7.258814e-06 3.281242e-03 3.288501e-03 1.559514e+01
## TMEM62 4.453819e-03 -2.116593e-03 2.337226e-03 1.265611e+01
## FIP1L1 3.511220e-03 4.690496e-04 3.980270e-03 2.867529e+01
## FCF1 -2.059694e-03 4.517752e-03 2.458058e-03 2.821458e+01
## ULBP3 -3.032644e-04 1.764769e-04 -1.267874e-04 5.910329e-01
## USP40 2.980875e-05 1.442670e-03 1.472479e-03 5.215226e+00
## ERC1 -1.395367e-03 -1.367103e-03 -2.762470e-03 9.859469e+00
## HLA-DMA 3.239942e-02 4.040593e-03 3.644001e-02 7.506412e+01
## NDUFA3 -1.382209e-02 7.248159e-03 -6.573930e-03 1.969129e+01
## MRE11 5.311654e-04 3.636015e-03 4.167180e-03 1.950657e+01
## SP2 -4.483815e-03 -6.690589e-05 -4.550721e-03 2.019575e+01
## TRIR 7.015746e-02 -1.999550e-02 5.016196e-02 1.294770e+02
## SSU72 -2.473481e-02 2.053521e-02 -4.199604e-03 9.237356e+01
## HYI 8.286338e-04 2.001639e-03 2.830272e-03 3.682162e+00
## PSMC4 -1.046128e-02 7.976555e-03 -2.484727e-03 3.771708e+01
## SLC36A2 2.762565e-04 -1.413628e-04 1.348937e-04 3.821700e-01
## SLC25A16 -1.821454e-03 1.534785e-03 -2.866684e-04 1.027612e+01
## IGHMBP2 1.344850e-03 1.841930e-03 3.186780e-03 1.056043e+01
## NDUFA8 -1.559337e-03 4.931139e-03 3.371802e-03 1.787617e+01
## ATR -1.552261e-03 4.585806e-03 3.033545e-03 1.461578e+01
## CTSW 8.624743e-03 4.912234e-02 5.774708e-02 8.257379e+01
## MED15 1.099023e-02 -2.627540e-03 8.362686e-03 3.682910e+01
## TP53RK 3.104717e-03 -1.649873e-03 1.454844e-03 1.288815e+01
## SETD3 -6.781039e-03 -1.042739e-03 -7.823777e-03 4.408786e+01
## ZNF616 1.428946e-03 -2.924342e-04 1.136512e-03 5.664482e+00
## FBXL15 -2.036294e-03 4.458357e-04 -1.590458e-03 2.371857e+00
## ZSWIM4 9.908873e-05 -9.025665e-04 -8.034778e-04 3.310517e+00
## SLC4A2 -6.313654e-03 9.700099e-04 -5.343644e-03 1.786706e+01
## SIRT7 7.813894e-03 9.106589e-03 1.692048e-02 4.780414e+01
## RBM4 1.481670e-02 3.172795e-03 1.798950e-02 9.074107e+01
## DCLRE1A 2.430628e-03 -4.107100e-04 2.019918e-03 7.064350e+00
## PTGES3 3.355176e-02 -1.935498e-02 1.419678e-02 1.687058e+02
## STK17A -9.827330e-03 -2.210235e-02 -3.192968e-02 1.102225e+02
## CGGBP1 -1.594816e-02 2.588847e-02 9.940304e-03 1.293696e+02
## CHEK1 -1.683940e-03 2.088709e-04 -1.475069e-03 4.014832e+00
## HCAR1 3.005540e-04 -1.826913e-04 1.178627e-04 4.605348e-01
## ZNF791 3.113750e-03 -3.127322e-03 -1.357249e-05 2.165035e+01
## MELK 7.381029e-05 -9.045203e-04 -8.307100e-04 1.925849e+00
## PACS1 -8.593395e-03 -2.081704e-02 -2.941043e-02 1.243962e+02
## KRTCAP3 -3.402032e-05 -2.208914e-04 -2.549117e-04 5.837618e-01
## NCOA5 -5.792508e-04 2.991009e-03 2.411758e-03 2.133031e+01
## GCHFR 4.349861e-03 -2.788298e-03 1.561562e-03 5.653780e+00
## SERPINH1 9.021517e-04 6.890267e-04 1.591178e-03 2.296805e+00
## PAXIP1 -1.446284e-03 4.042948e-04 -1.041990e-03 6.051895e+00
## WDR33 -4.234939e-03 2.378248e-03 -1.856690e-03 5.250688e+01
## RFFL 1.936361e-02 1.622121e-02 3.558482e-02 1.079016e+02
## TMEM189 -3.881871e-03 4.361006e-03 4.791350e-04 1.619761e+01
## HOMEZ -3.400328e-04 -1.028553e-03 -1.368585e-03 8.237358e+00
## COG5 3.615832e-03 -3.971082e-03 -3.552502e-04 2.359828e+01
## GGT6 -4.705560e-04 6.303467e-05 -4.075213e-04 1.189500e+00
## SMAD4 -3.015930e-03 -6.740415e-03 -9.756345e-03 5.109182e+01
## TMEM175 -1.858827e-03 -2.357345e-03 -4.216173e-03 1.329342e+01
## ZNF385D -1.031312e-03 1.937172e-03 9.058592e-04 5.222245e+00
## MTURN 1.120673e-02 1.421941e-02 2.542614e-02 8.618507e+01
## PEX13 1.482956e-03 -2.769262e-03 -1.286307e-03 1.442421e+01
## MPP5 1.212455e-03 -7.417119e-04 4.707435e-04 4.875689e+00
## BCL7B -8.325054e-03 1.246896e-02 4.143907e-03 4.130552e+01
## RTL8C -2.967919e-03 4.395373e-03 1.427454e-03 1.131030e+01
## MTDH -2.006877e-02 6.282165e-03 -1.378661e-02 9.650345e+01
## GABPA -8.616288e-03 2.931385e-03 -5.684904e-03 3.536235e+01
## PILRA -5.834975e-02 3.743510e-02 -2.091465e-02 2.119027e+02
## VPS33A -2.091560e-03 2.609161e-03 5.176003e-04 2.945702e+01
## ZNF384 6.185569e-03 -3.360886e-03 2.824683e-03 5.270992e+01
## GPR35 1.541930e-03 -4.955919e-04 1.046338e-03 2.643002e+00
## PRAF2 5.320024e-03 -8.706782e-03 -3.386758e-03 2.509528e+01
## WDR26 -8.474922e-02 5.199322e-02 -3.275601e-02 2.800902e+02
## HMGXB4 1.028434e-03 -2.641707e-03 -1.613273e-03 1.218550e+01
## FAM71F2 -1.076828e-03 7.122393e-05 -1.005604e-03 3.086909e+00
## GPATCH2L -9.735349e-03 7.887980e-03 -1.847369e-03 4.436338e+01
## ARAP3 1.433811e-03 2.630345e-02 2.773726e-02 1.016630e+02
## NEIL3 -5.143319e-04 6.477432e-04 1.334113e-04 9.016860e-01
## PRPF4B -1.235739e-02 1.266886e-02 3.114719e-04 6.849967e+01
## ELOF1 9.633215e-03 -8.421698e-04 8.791045e-03 3.308626e+01
## CPNE2 -3.710194e-03 1.088580e-02 7.175602e-03 3.622870e+01
## UBP1 -7.502177e-03 6.030271e-03 -1.471906e-03 4.840598e+01
## KAT7 8.232471e-03 -2.488626e-03 5.743845e-03 3.514078e+01
## SOWAHD 6.415879e-04 1.436798e-03 2.078386e-03 6.818966e+00
## RNA28SN3 -1.151014e+00 8.052114e-01 -3.458027e-01 2.155951e+03
## MRPL33 -1.004288e-03 -3.896516e-03 -4.900804e-03 3.856385e+01
## MTMR14 -1.878404e-02 2.191681e-02 3.132773e-03 1.213356e+02
## UBE2E2 1.038882e-03 8.541844e-05 1.124300e-03 5.685146e+00
## MEPCE 9.975651e-03 -6.612456e-04 9.314405e-03 4.292490e+01
## CYHR1 -1.951140e-03 -3.552046e-03 -5.503186e-03 1.810429e+01
## PNISR -1.863385e-02 -1.566475e-02 -3.429859e-02 1.664202e+02
## BBS2 -1.770922e-03 2.668686e-03 8.977636e-04 1.476334e+01
## DUSP6 -6.992943e-02 7.296422e-02 3.034791e-03 2.489971e+02
## PTPA -8.122451e-03 1.921345e-02 1.109100e-02 6.543058e+01
## PIM2 5.593059e-03 -2.611033e-02 -2.051727e-02 1.381539e+02
## FAM124B 3.028493e-04 -2.610254e-04 4.182389e-05 1.021604e+00
## MBTPS1 -8.199121e-03 3.175587e-03 -5.023534e-03 4.770738e+01
## PLCD3 3.701549e-04 -5.306188e-04 -1.604638e-04 2.541970e+00
## MED9 -1.046428e-03 -1.720026e-05 -1.063629e-03 6.636698e+00
## SEMA4D 5.633081e-02 3.311983e-03 5.964279e-02 3.121918e+02
## KLRC1 2.999250e-03 -4.009187e-04 2.598331e-03 5.569075e+00
## FAM193B -1.179112e-02 1.198585e-02 1.947258e-04 7.591747e+01
## PAQR7 -1.695087e-05 1.762024e-03 1.745073e-03 6.692685e+00
## KALRN 3.531155e-04 1.153185e-04 4.684340e-04 1.325778e+00
## UBE4B 6.314644e-03 1.130601e-04 6.427704e-03 3.908683e+01
## ZNF644 -3.661322e-03 5.379461e-04 -3.123376e-03 1.846363e+01
## GPR82 -8.053333e-04 1.050878e-04 -7.002455e-04 2.380888e+00
## TIFA -2.778579e-02 -4.716702e-03 -3.250249e-02 5.082520e+01
## HLA-B 1.930621e+00 -1.105738e+00 8.248830e-01 8.062067e+03
## AGER 1.088813e-02 4.569397e-03 1.545752e-02 5.678703e+01
## CTU1 -8.604949e-04 4.219723e-04 -4.385226e-04 2.318572e+00
## HDAC8 4.379117e-04 -9.890752e-04 -5.511636e-04 7.247411e+00
## FAM156B -9.423491e-04 3.418857e-03 2.476508e-03 2.250224e+01
## SCAMP2 -1.250955e-02 5.319058e-04 -1.197765e-02 9.379822e+01
## SPON2 -4.935328e-03 4.471775e-03 -4.635534e-04 8.547164e+00
## DLG5 -9.312510e-04 3.194019e-04 -6.118490e-04 2.401628e+00
## CAPN3 6.905571e-03 -1.399729e-03 5.505842e-03 2.124492e+01
## SMARCAL1 3.433822e-05 -1.459477e-03 -1.425138e-03 1.124412e+01
## CDK13 -6.327930e-03 5.027389e-03 -1.300541e-03 3.860281e+01
## PIAS4 1.403857e-03 -7.507588e-04 6.530981e-04 8.388484e+00
## HYPK -4.712534e-03 4.224771e-03 -4.877630e-04 2.001202e+01
## SH3GL1 -2.621348e-03 5.532131e-03 2.910784e-03 2.443641e+01
## ELOA 1.813403e-03 6.203339e-04 2.433737e-03 2.736178e+01
## PEA15 -1.384000e-03 9.915902e-03 8.531902e-03 5.234471e+01
## ITGB7 6.563838e-03 1.493838e-02 2.150222e-02 6.553459e+01
## OGT 3.456269e-02 -4.604235e-03 2.995845e-02 2.333961e+02
## SNAI3 -2.361170e-03 3.679134e-03 1.317963e-03 1.161980e+01
## RECQL5 1.263604e-03 8.432753e-04 2.106879e-03 1.335482e+01
## NUP205 -2.466829e-03 -1.128024e-03 -3.594853e-03 1.882619e+01
## EVI5L -1.084474e-03 5.775075e-04 -5.069662e-04 4.592831e+00
## PIGT -6.146161e-03 1.380326e-04 -6.008128e-03 4.189608e+01
## VPS11 -2.230690e-03 2.853367e-03 6.226774e-04 3.218880e+01
## NSDHL 1.509171e-03 -3.216376e-04 1.187534e-03 8.814317e+00
## NDOR1 -3.525417e-03 -6.675991e-04 -4.193016e-03 1.651867e+01
## WDSUB1 1.197784e-03 -4.905797e-04 7.072039e-04 8.446875e+00
## CCDC92B -3.866071e-05 -1.511367e-04 -1.897974e-04 1.112531e+00
## PITPNB -2.937004e-03 1.389236e-03 -1.547768e-03 3.265382e+01
## CHI3L1 2.969619e-02 2.626368e-03 3.232255e-02 1.081570e+02
## PRKN -7.485365e-05 1.287903e-04 5.393668e-05 6.645115e-01
## APPL1 -2.227826e-03 -3.031127e-04 -2.530939e-03 2.426074e+01
## EIF4EBP2 -2.015143e-02 7.193238e-03 -1.295819e-02 1.957714e+02
## FADS2 3.303066e-03 9.854833e-05 3.401615e-03 1.134986e+01
## DOCK7 -4.182972e-04 5.056041e-04 8.730687e-05 2.774259e+00
## CEMP1 1.199902e-03 -1.040769e-03 1.591325e-04 5.007336e+00
## PRDX1 -1.296832e-02 5.077120e-03 -7.891195e-03 1.115833e+02
## COMT -2.811328e-04 2.613189e-03 2.332056e-03 1.564950e+01
## KAZN 3.357801e-03 -4.189577e-03 -8.317754e-04 1.601950e+01
## ZNF775 2.333906e-04 2.320673e-04 4.654579e-04 2.188327e+00
## SEC63 3.406966e-03 -1.903421e-04 3.216624e-03 4.194978e+01
## HADHA -1.421687e-02 7.776871e-03 -6.440003e-03 1.995597e+02
## EIF4EBP3 1.905880e-03 -1.942980e-03 -3.710015e-05 1.196776e+01
## GPI 1.782988e-02 -1.505102e-02 2.778858e-03 7.831340e+01
## EVA1C -4.628333e-04 4.166790e-04 -4.615428e-05 2.588056e+00
## SPATA2L 3.414663e-04 1.062863e-03 1.404329e-03 6.162861e+00
## PRKCB -3.330499e-02 3.232113e-02 -9.838611e-04 3.776651e+02
## CLN3 7.211635e-03 -7.688944e-03 -4.773088e-04 5.489069e+01
## NOL10 5.673448e-04 -1.830479e-04 3.842969e-04 9.316793e+00
## GATAD2A -3.230176e-03 -6.560514e-04 -3.886228e-03 5.767474e+01
## PI4K2B 1.561000e-03 -1.332014e-03 2.289864e-04 1.531449e+01
## ANO8 2.178876e-04 2.535013e-05 2.432377e-04 2.307026e+00
## DCLRE1B -1.573543e-04 5.232790e-04 3.659247e-04 7.472998e+00
## NUDC 5.497390e-03 -4.769907e-03 7.274831e-04 4.170508e+01
## FAM110A -1.219260e-03 -1.662268e-03 -2.881529e-03 1.801229e+01
## ZNF132 1.071462e-04 1.098198e-05 1.181282e-04 1.305671e+00
## PTGR1 -1.583889e-04 6.056453e-05 -9.782441e-05 1.082687e+00
## SNRPC -8.956928e-04 -4.272528e-04 -1.322946e-03 2.728609e+01
## ANKRD13D 5.106637e-03 -2.160433e-03 2.946203e-03 1.041355e+02
## BMF -4.140149e-04 -7.430120e-04 -1.157027e-03 3.408921e+01
## ANGEL2 1.787330e-04 5.018862e-05 2.289216e-04 1.761940e+01
## F P.Value adj.P.Val
## LRRC8A 6.048610e+00 0.003130915 0.9999595
## MYEF2 4.939903e+00 0.008655601 0.9999595
## USP21 4.478655e+00 0.013280691 0.9999595
## FAM117A 4.318359e+00 0.015422050 0.9999595
## SCML4 4.141846e+00 0.018189310 0.9999595
## C1orf115 4.134826e+00 0.018309245 0.9999595
## AMACR 3.811180e+00 0.024809081 0.9999595
## ANKRD37 3.785222e+00 0.025422682 0.9999595
## C22orf23 3.774605e+00 0.025678082 0.9999595
## SLC35E2A 3.720191e+00 0.027028550 0.9999595
## ACSL6 3.700560e+00 0.027533309 0.9999595
## SIGLEC11 3.669290e+00 0.028357173 0.9999595
## RPH3A 3.615557e+00 0.029831871 0.9999595
## IFI27 3.528889e+00 0.032376674 0.9999595
## C4BPA 3.500274e+00 0.033264452 0.9999595
## ITM2A 3.416218e+00 0.036018176 0.9999595
## TRAF3IP2 3.412503e+00 0.036145114 0.9999595
## TMEM116 3.373508e+00 0.037505085 0.9999595
## MACROH2A2 3.312372e+00 0.039742742 0.9999595
## ANKH 3.303842e+00 0.040065566 0.9999595
## SLC2A1 3.275980e+00 0.041138707 0.9999595
## MGAT3 3.260350e+00 0.041753457 0.9999595
## SLC22A23 3.215489e+00 0.043570338 0.9999595
## ADD2 3.205720e+00 0.043976512 0.9999595
## PRDM8 3.195448e+00 0.044407743 0.9999595
## VOPP1 3.190848e+00 0.044602264 0.9999595
## PGBD2 3.171769e+00 0.045418316 0.9999595
## DCAF8 3.153158e+00 0.046228970 0.9999595
## DUS2 3.148244e+00 0.046445456 0.9999595
## STARD8 3.139545e+00 0.046831233 0.9999595
## CYP1B1 3.136957e+00 0.046946586 0.9999595
## EPM2A 3.130382e+00 0.047241060 0.9999595
## BORCS5 3.104888e+00 0.048400726 0.9999595
## SNAPC1 3.063387e+00 0.050350719 0.9999595
## UPF3A 3.062510e+00 0.050392799 0.9999595
## ZNF23 3.047887e+00 0.051099348 0.9999595
## HNRNPDL 3.020016e+00 0.052474014 0.9999595
## ACSM3 3.011964e+00 0.052878161 0.9999595
## NT5DC1 2.995287e+00 0.053725225 0.9999595
## CELF6 2.984024e+00 0.054305100 0.9999595
## GMPS 2.981282e+00 0.054447213 0.9999595
## NOTCH2NLB 2.969248e+00 0.055075488 0.9999595
## GPR15 2.960707e+00 0.055525846 0.9999595
## IGFBP2 2.948491e+00 0.056176519 0.9999595
## ACCS 2.929703e+00 0.057192371 0.9999595
## NRIP3 2.928156e+00 0.057276820 0.9999595
## SEC14L5 2.925177e+00 0.057439848 0.9999595
## ZNF69 2.909845e+00 0.058286384 0.9999595
## MAFB 2.900681e+00 0.058798409 0.9999595
## ISOC1 2.895823e+00 0.059071725 0.9999595
## GGCX 2.894623e+00 0.059139436 0.9999595
## POLR1G 2.872718e+00 0.060389255 0.9999595
## LHFPL2 2.869640e+00 0.060567006 0.9999595
## COQ2 2.865285e+00 0.060819444 0.9999595
## HKDC1 2.864044e+00 0.060891560 0.9999595
## QRICH2 2.857625e+00 0.061265996 0.9999595
## CLIC2 2.843931e+00 0.062072685 0.9999595
## SIRPD 2.816986e+00 0.063691614 0.9999595
## QSOX2 2.802184e+00 0.064599147 0.9999595
## TBCEL 2.780223e+00 0.065969900 0.9999595
## DTX4 2.778462e+00 0.066081140 0.9999595
## NOD2 2.759785e+00 0.067272210 0.9999595
## CXCL5 2.758856e+00 0.067331988 0.9999595
## DHCR24 2.732962e+00 0.069021044 0.9999595
## BIK 2.729443e+00 0.069253873 0.9999595
## ENO2 2.729440e+00 0.069254075 0.9999595
## HPCAL4 2.720920e+00 0.069821121 0.9999595
## WDR6 2.719978e+00 0.069884078 0.9999595
## SIGLEC16 2.712549e+00 0.070382870 0.9999595
## SEPTIN4 2.696717e+00 0.071457812 0.9999595
## PDGFRB 2.695004e+00 0.071575165 0.9999595
## OFD1 2.686208e+00 0.072180556 0.9999595
## MTUS1 2.683803e+00 0.072347010 0.9999595
## TMCC2 2.679391e+00 0.072653417 0.9999595
## SMN1 2.674584e+00 0.072988668 0.9999595
## RCL1 2.667184e+00 0.073507911 0.9999595
## DOK4 2.651366e+00 0.074630469 0.9999595
## FAAH2 2.643119e+00 0.075222581 0.9999595
## PRORP 2.642817e+00 0.075244400 0.9999595
## VSIG1 2.629524e+00 0.076209185 0.9999595
## CD200R1 2.627090e+00 0.076387239 0.9999595
## EMP1 2.624925e+00 0.076545898 0.9999595
## SEMA7A 2.618994e+00 0.076982346 0.9999595
## SAMD4A 2.617383e+00 0.077101372 0.9999595
## LRP12 2.614361e+00 0.077325100 0.9999595
## SNX22 2.605130e+00 0.078012529 0.9999595
## CD93 2.605038e+00 0.078019416 0.9999595
## ICOS 2.603938e+00 0.078101772 0.9999595
## HPGD 2.603791e+00 0.078112746 0.9999595
## CERK 2.596008e+00 0.078698014 0.9999595
## TTLL11 2.594802e+00 0.078789105 0.9999595
## TTC26 2.583746e+00 0.079629027 0.9999595
## KRBOX4 2.580048e+00 0.079912031 0.9999595
## GPRIN1 2.573521e+00 0.080414006 0.9999595
## CPOX 2.573065e+00 0.080449127 0.9999595
## SPRYD7 2.569293e+00 0.080740805 0.9999595
## ZNF197 2.561224e+00 0.081368409 0.9999595
## RAP1GAP 2.555419e+00 0.081822975 0.9999595
## MTERF4 2.553425e+00 0.081979700 0.9999595
## DLEC1 2.539965e+00 0.083045649 0.9999595
## KLHDC7B 2.537987e+00 0.083203467 0.9999595
## DYRK3 2.536864e+00 0.083293250 0.9999595
## PRDX2 2.531156e+00 0.083750903 0.9999595
## TDP1 2.529874e+00 0.083854041 0.9999595
## CDCA7 2.509957e+00 0.085473180 0.9999595
## EPHX2 2.475200e+00 0.088375196 0.9999595
## C11orf1 2.474142e+00 0.088465107 0.9999595
## LTO1 2.467537e+00 0.089028403 0.9999595
## CDR2 2.464414e+00 0.089295956 0.9999595
## HSPA5 2.457093e+00 0.089926500 0.9999595
## FICD 2.450995e+00 0.090455152 0.9999595
## HMBS 2.448035e+00 0.090712923 0.9999595
## NREP 2.443362e+00 0.091121297 0.9999595
## ADK 2.435695e+00 0.091795540 0.9999595
## C7orf31 2.435097e+00 0.091848268 0.9999595
## CA13 2.431793e+00 0.092140587 0.9999595
## RFESD 2.428378e+00 0.092443592 0.9999595
## PRPSAP1 2.426190e+00 0.092638301 0.9999595
## C2orf74 2.421934e+00 0.093018294 0.9999595
## LDHB 2.420115e+00 0.093181155 0.9999595
## BEX4 2.417670e+00 0.093400492 0.9999595
## EEF1A1 2.414246e+00 0.093708595 0.9999595
## TIMM10 2.413032e+00 0.093818118 0.9999595
## PLXNA2 2.412199e+00 0.093893253 0.9999595
## PWP1 2.409452e+00 0.094141696 0.9999595
## KLF1 2.402159e+00 0.094804441 0.9999595
## UBTF 2.402086e+00 0.094811157 0.9999595
## OSBP2 2.400319e+00 0.094972455 0.9999595
## ELAPOR1 2.395359e+00 0.095426742 0.9999595
## FAM114A1 2.392261e+00 0.095711584 0.9999595
## ZNF154 2.391813e+00 0.095752871 0.9999595
## CA1 2.391629e+00 0.095769789 0.9999595
## SIRPG 2.384976e+00 0.096384872 0.9999595
## AHSP 2.382363e+00 0.096627557 0.9999595
## AGMAT 2.380030e+00 0.096844686 0.9999595
## EML6 2.379958e+00 0.096851393 0.9999595
## GIMAP4 2.379517e+00 0.096892478 0.9999595
## ZNF554 2.375053e+00 0.097309716 0.9999595
## ABCB6 2.365685e+00 0.098191052 0.9999595
## GLRX5 2.362171e+00 0.098523734 0.9999595
## OVGP1 2.358850e+00 0.098839186 0.9999595
## CEP76 2.358505e+00 0.098872076 0.9999595
## BTBD3 2.357396e+00 0.098977644 0.9999595
## POC5 2.356436e+00 0.099069143 0.9999595
## SYVN1 2.350795e+00 0.099608658 0.9999595
## HES6 2.345005e+00 0.100165483 0.9999595
## SDR42E1 2.344655e+00 0.100199336 0.9999595
## MLXIP 2.341632e+00 0.100491373 0.9999595
## HBD 2.339549e+00 0.100693179 0.9999595
## LY75 2.338775e+00 0.100768264 0.9999595
## FOLR3 2.334562e+00 0.101177940 0.9999595
## GRAMD1C 2.331761e+00 0.101451186 0.9999595
## KIF9 2.331759e+00 0.101451384 0.9999595
## ZNF813 2.328134e+00 0.101806237 0.9999595
## RGS16 2.324777e+00 0.102135866 0.9999595
## SERPING1 2.323867e+00 0.102225426 0.9999595
## ZNF404 2.298396e+00 0.104764989 0.9999595
## PASK 2.298337e+00 0.104770967 0.9999595
## PIAS3 2.289883e+00 0.105627949 0.9999595
## YPEL4 2.289704e+00 0.105646152 0.9999595
## KIAA0895L 2.288027e+00 0.105817022 0.9999595
## TMEM143 2.286461e+00 0.105976929 0.9999595
## EDC3 2.283358e+00 0.106294274 0.9999595
## TFR2 2.280409e+00 0.106596895 0.9999595
## EIF3E 2.279946e+00 0.106644458 0.9999595
## TMEM63C 2.278293e+00 0.106814537 0.9999595
## SSTR3 2.277459e+00 0.106900383 0.9999595
## PILRB 2.274233e+00 0.107233366 0.9999595
## REXO2 2.271420e+00 0.107524477 0.9999595
## PPP1R3E 2.264128e+00 0.108283038 0.9999595
## GPR183 2.263753e+00 0.108322197 0.9999595
## AXIN2 2.262211e+00 0.108483351 0.9999595
## STXBP4 2.261660e+00 0.108541022 0.9999595
## HACL1 2.261111e+00 0.108598503 0.9999595
## SH3D21 2.259230e+00 0.108795649 0.9999595
## ARL14EP 2.256340e+00 0.109099223 0.9999595
## TDRP 2.255711e+00 0.109165388 0.9999595
## ADCY4 2.255027e+00 0.109237443 0.9999595
## EID3 2.251912e+00 0.109566005 0.9999595
## NDRG2 2.247455e+00 0.110037945 0.9999595
## KDELR2 2.242381e+00 0.110577758 0.9999595
## ALKBH1 2.227125e+00 0.112217021 0.9999595
## IL23A 2.225520e+00 0.112390833 0.9999595
## AQP1 2.223957e+00 0.112560478 0.9999595
## TPGS2 2.220645e+00 0.112920710 0.9999595
## CD1C 2.217032e+00 0.113315016 0.9999595
## TSPAN5 2.212710e+00 0.113788506 0.9999595
## FECH 2.203817e+00 0.114769150 0.9999595
## THEM4 2.197377e+00 0.115484752 0.9999595
## H2AC8 2.196727e+00 0.115557187 0.9999595
## RUFY4 2.192747e+00 0.116001923 0.9999595
## TTLL4 2.186715e+00 0.116679316 0.9999595
## CD5 2.179454e+00 0.117500012 0.9999595
## SQLE 2.179030e+00 0.117548116 0.9999595
## ZNF138 2.175334e+00 0.117968389 0.9999595
## ZNF287 2.174502e+00 0.118063110 0.9999595
## RTL10 2.173568e+00 0.118169702 0.9999595
## TCEANC 2.171928e+00 0.118356910 0.9999595
## SELENOS 2.171024e+00 0.118460342 0.9999595
## MICAL3 2.170875e+00 0.118477391 0.9999595
## RANBP10 2.170173e+00 0.118557710 0.9999595
## GP1BA 2.164768e+00 0.119178050 0.9999595
## ANK1 2.162997e+00 0.119382083 0.9999595
## FAM102A 2.157920e+00 0.119968810 0.9999595
## ARRDC2 2.157261e+00 0.120045117 0.9999595
## RIPOR3 2.154956e+00 0.120312679 0.9999595
## GID4 2.151044e+00 0.120768148 0.9999595
## GAL3ST4 2.150477e+00 0.120834269 0.9999595
## FMNL2 2.137916e+00 0.122309354 0.9999595
## CD34 2.137241e+00 0.122389132 0.9999595
## NELL2 2.121371e+00 0.124280146 0.9999595
## CMTM8 2.119754e+00 0.124474516 0.9999595
## MTARC2 2.119020e+00 0.124562855 0.9999595
## CD40LG 2.118410e+00 0.124636267 0.9999595
## HLA-DQA1 2.117591e+00 0.124735013 0.9999595
## GRAMD1B 2.111303e+00 0.125495230 0.9999595
## DYNC2I1 2.110111e+00 0.125639972 0.9999595
## TRAF3IP3 2.107977e+00 0.125899303 0.9999595
## PON2 2.102357e+00 0.126585094 0.9999595
## TYW1 2.102183e+00 0.126606344 0.9999595
## CNTLN 2.099397e+00 0.126947778 0.9999595
## ZNF485 2.096747e+00 0.127273400 0.9999595
## TCF7 2.096442e+00 0.127310971 0.9999595
## TMEM40 2.094573e+00 0.127541110 0.9999595
## ZSCAN21 2.093939e+00 0.127619384 0.9999595
## LBHD1 2.091755e+00 0.127889006 0.9999595
## LILRA3 2.089287e+00 0.128194599 0.9999595
## FGF7 2.087173e+00 0.128456829 0.9999595
## MST1 2.086983e+00 0.128480465 0.9999595
## SERF1A 2.086754e+00 0.128508864 0.9999595
## TRAK2 2.084514e+00 0.128787554 0.9999595
## UAP1L1 2.078719e+00 0.129511226 0.9999595
## FSTL1 2.077708e+00 0.129637779 0.9999595
## EPHB2 2.073196e+00 0.130204751 0.9999595
## EXTL2 2.067240e+00 0.130956865 0.9999595
## ZNF135 2.066021e+00 0.131111326 0.9999595
## SLC4A1 2.064567e+00 0.131295847 0.9999595
## FOXRED2 2.064174e+00 0.131345720 0.9999595
## ZNF548 2.063296e+00 0.131457356 0.9999595
## RIC3 2.062740e+00 0.131528013 0.9999595
## SKP2 2.061941e+00 0.131629760 0.9999595
## SLC26A6 2.059917e+00 0.131887612 0.9999595
## THRA 2.059510e+00 0.131939585 0.9999595
## PPOX 2.059032e+00 0.132000601 0.9999595
## KLHL33 2.054736e+00 0.132550277 0.9999595
## PCGF6 2.053064e+00 0.132764835 0.9999595
## CXCL8 2.049497e+00 0.133223705 0.9999595
## SPAG16 2.045437e+00 0.133748065 0.9999595
## TMEM131 2.043995e+00 0.133934801 0.9999595
## CCR7 2.043177e+00 0.134040784 0.9999595
## DPH5 2.041636e+00 0.134240778 0.9999595
## HAGH 2.037227e+00 0.134814721 0.9999595
## VIPR1 2.035569e+00 0.135031168 0.9999595
## TMEM9 2.035379e+00 0.135055918 0.9999595
## BBS1 2.034401e+00 0.135183869 0.9999595
## CLHC1 2.026174e+00 0.136264370 0.9999595
## SPATA5L1 2.025162e+00 0.136397849 0.9999595
## ZC4H2 2.024041e+00 0.136545959 0.9999595
## TUBB2A 2.020838e+00 0.136969846 0.9999595
## NQO1 2.019473e+00 0.137151018 0.9999595
## PRPS2 2.011743e+00 0.138180968 0.9999595
## PRMT6 2.011556e+00 0.138205987 0.9999595
## UBASH3A 2.009562e+00 0.138472990 0.9999595
## GNA12 2.007719e+00 0.138720295 0.9999595
## RPSAP58 2.004319e+00 0.139177637 0.9999595
## GIMAP8 2.000916e+00 0.139636877 0.9999595
## NPIPA7 2.000755e+00 0.139658628 0.9999595
## ST8SIA1 1.996677e+00 0.140211183 0.9999595
## HYAL2 1.995373e+00 0.140388283 0.9999595
## TNFSF8 1.992509e+00 0.140778218 0.9999595
## ITPRIPL2 1.992354e+00 0.140799289 0.9999595
## TM9SF1 1.992339e+00 0.140801287 0.9999595
## LRATD2 1.987450e+00 0.141469502 0.9999595
## HLA-DOA 1.984842e+00 0.141827276 0.9999595
## UBE2O 1.982826e+00 0.142104338 0.9999595
## RBM6 1.980257e+00 0.142458460 0.9999595
## NIPAL2 1.979796e+00 0.142521963 0.9999595
## UROD 1.979733e+00 0.142530721 0.9999595
## SUSD3 1.979620e+00 0.142546247 0.9999595
## C8orf44-SGK3 1.978873e+00 0.142649462 0.9999595
## SLC6A8 1.978280e+00 0.142731428 0.9999595
## CTLA4 1.970776e+00 0.143772596 0.9999595
## MLLT3 1.970717e+00 0.143780816 0.9999595
## SPCS2 1.969906e+00 0.143893791 0.9999595
## TSEN2 1.968378e+00 0.144106857 0.9999595
## DDX50 1.967901e+00 0.144173582 0.9999595
## IFIT1B 1.966402e+00 0.144382951 0.9999595
## CYP20A1 1.965978e+00 0.144442320 0.9999595
## PROSER2 1.945961e+00 0.147270836 0.9999595
## GNPDA1 1.945386e+00 0.147352929 0.9999595
## SCFD1 1.944308e+00 0.147506978 0.9999595
## NPM1 1.943124e+00 0.147676250 0.9999595
## NXN 1.943112e+00 0.147677984 0.9999595
## ZFAT 1.941633e+00 0.147889866 0.9999595
## NUDT7 1.941355e+00 0.147929626 0.9999595
## TMEM150B 1.941251e+00 0.147944652 0.9999595
## HSF2 1.936693e+00 0.148599530 0.9999595
## PARD6G 1.935618e+00 0.148754448 0.9999595
## CISD2 1.935583e+00 0.148759492 0.9999595
## RGMA 1.932086e+00 0.149264518 0.9999595
## CLYBL 1.930347e+00 0.149516388 0.9999595
## APP 1.927895e+00 0.149872058 0.9999595
## HOOK1 1.927869e+00 0.149875911 0.9999595
## MVB12B 1.923467e+00 0.150516768 0.9999595
## ACOT11 1.922966e+00 0.150589922 0.9999595
## TUSC2 1.922303e+00 0.150686676 0.9999595
## METTL23 1.920395e+00 0.150965567 0.9999595
## FBXW8 1.920237e+00 0.150988755 0.9999595
## B4GALT2 1.919090e+00 0.151156758 0.9999595
## SLC1A5 1.916045e+00 0.151603653 0.9999595
## CFAP36 1.915458e+00 0.151689893 0.9999595
## MDK 1.914754e+00 0.151793450 0.9999595
## ST6GALNAC4 1.913141e+00 0.152031084 0.9999595
## DUSP19 1.911249e+00 0.152310210 0.9999595
## ERMAP 1.910768e+00 0.152381139 0.9999595
## DNAAF2 1.909349e+00 0.152590951 0.9999595
## LRPPRC 1.907768e+00 0.152825037 0.9999595
## ZNF846 1.906517e+00 0.153010571 0.9999595
## RCAN3 1.906181e+00 0.153060356 0.9999595
## HYKK 1.905458e+00 0.153167715 0.9999595
## ARHGEF40 1.905335e+00 0.153185983 0.9999595
## ZNF480 1.902669e+00 0.153582553 0.9999595
## RCN2 1.899190e+00 0.154101571 0.9999595
## ENAH 1.895676e+00 0.154627630 0.9999595
## PLD2 1.894448e+00 0.154811870 0.9999595
## PLXNA3 1.893625e+00 0.154935461 0.9999595
## EIF2D 1.892478e+00 0.155107823 0.9999595
## CPNE5 1.886864e+00 0.155954715 0.9999595
## TRERF1 1.883159e+00 0.156516232 0.9999595
## FAM210A 1.882864e+00 0.156560960 0.9999595
## ITGB3BP 1.882683e+00 0.156588479 0.9999595
## CDKN1A 1.874530e+00 0.157831814 0.9999595
## POLR1E 1.871959e+00 0.158225939 0.9999595
## RNASE6 1.870180e+00 0.158499297 0.9999595
## SMYD3 1.869099e+00 0.158665617 0.9999595
## ZNF439 1.866868e+00 0.159009394 0.9999595
## MANF 1.862507e+00 0.159683610 0.9999595
## ULK3 1.862463e+00 0.159690495 0.9999595
## RDH14 1.858962e+00 0.160233872 0.9999595
## H4C14 1.857408e+00 0.160475596 0.9999595
## H4C15 1.857408e+00 0.160475596 0.9999595
## ST14 1.856689e+00 0.160587614 0.9999595
## SLC45A3 1.856163e+00 0.160669658 0.9999595
## COX19 1.856127e+00 0.160675165 0.9999595
## KCNH7 1.855379e+00 0.160791957 0.9999595
## SMYD2 1.851261e+00 0.161435703 0.9999595
## ANAPC10 1.848303e+00 0.161899800 0.9999595
## OXNAD1 1.847427e+00 0.162037609 0.9999595
## ANXA4 1.840563e+00 0.163120716 0.9999595
## TMEM38A 1.839772e+00 0.163246024 0.9999595
## NBPF15 1.837837e+00 0.163552829 0.9999595
## ZNF181 1.836609e+00 0.163747856 0.9999595
## GNG4 1.836157e+00 0.163819816 0.9999595
## ZNF563 1.835305e+00 0.163955290 0.9999595
## PEX11B 1.833841e+00 0.164188500 0.9999595
## BICDL1 1.833705e+00 0.164210109 0.9999595
## ZNF749 1.828481e+00 0.165045126 0.9999595
## UNC119B 1.826916e+00 0.165295970 0.9999595
## RORC 1.826840e+00 0.165308241 0.9999595
## CCT8 1.825699e+00 0.165491366 0.9999595
## ARL17B 1.821375e+00 0.166187604 0.9999595
## C15orf48 1.817635e+00 0.166792246 0.9999595
## PDCD2 1.816178e+00 0.167028308 0.9999595
## CYP51A1 1.811684e+00 0.167758774 0.9999595
## C19orf12 1.810338e+00 0.167978283 0.9999595
## SPTBN1 1.809053e+00 0.168188060 0.9999595
## TCEA3 1.808771e+00 0.168234001 0.9999595
## ZNF432 1.808526e+00 0.168274152 0.9999595
## OLA1 1.807975e+00 0.168364179 0.9999595
## KDSR 1.807508e+00 0.168440606 0.9999595
## MRPL50 1.806743e+00 0.168565764 0.9999595
## NEXN 1.805534e+00 0.168763724 0.9999595
## EXT2 1.805465e+00 0.168775036 0.9999595
## KIAA0930 1.804900e+00 0.168867748 0.9999595
## LRRC1 1.802811e+00 0.169210725 0.9999595
## TMTC4 1.800863e+00 0.169531177 0.9999595
## GOLGA1 1.800485e+00 0.169593309 0.9999595
## CD28 1.797990e+00 0.170004793 0.9999595
## WDR45 1.796974e+00 0.170172744 0.9999595
## TAMM41 1.796453e+00 0.170258868 0.9999595
## TCN2 1.792286e+00 0.170949407 0.9999595
## EIF3L 1.791972e+00 0.171001426 0.9999595
## FHIT 1.790683e+00 0.171215686 0.9999595
## MS4A6A 1.789680e+00 0.171382627 0.9999595
## MAPK9 1.788844e+00 0.171521923 0.9999595
## EIF4A2 1.788107e+00 0.171644681 0.9999595
## XPO7 1.787432e+00 0.171757398 0.9999595
## LEF1 1.786599e+00 0.171896418 0.9999595
## PRR7 1.786310e+00 0.171944681 0.9999595
## LIAS 1.784743e+00 0.172206530 0.9999595
## TRABD2A 1.784508e+00 0.172245847 0.9999595
## SRD5A3 1.783272e+00 0.172452887 0.9999595
## CCDC134 1.782171e+00 0.172637489 0.9999595
## DNAJC21 1.781014e+00 0.172831611 0.9999595
## ALG14 1.780493e+00 0.172919150 0.9999595
## CCNB1IP1 1.779439e+00 0.173096338 0.9999595
## ITGA10 1.779066e+00 0.173158977 0.9999595
## EIF3D 1.774373e+00 0.173950375 0.9999595
## MYL4 1.773905e+00 0.174029473 0.9999595
## SELENBP1 1.772303e+00 0.174300576 0.9999595
## LCMT2 1.770898e+00 0.174538769 0.9999595
## MACO1 1.770411e+00 0.174621328 0.9999595
## RPS7 1.767671e+00 0.175086859 0.9999595
## NSMCE3 1.767478e+00 0.175119757 0.9999595
## AP3S2 1.765652e+00 0.175430730 0.9999595
## TRIM10 1.760506e+00 0.176310356 0.9999595
## SETDB1 1.759971e+00 0.176401984 0.9999595
## CMKLR1 1.757284e+00 0.176863315 0.9999595
## LRIG1 1.756699e+00 0.176963899 0.9999595
## KLHL5 1.755820e+00 0.177115161 0.9999595
## FGFR1 1.755165e+00 0.177227953 0.9999595
## EXT1 1.754118e+00 0.177408313 0.9999595
## UBAC1 1.753629e+00 0.177492742 0.9999595
## PFKM 1.748820e+00 0.178324225 0.9999595
## TNFRSF12A 1.746521e+00 0.178723293 0.9999595
## MCEE 1.745236e+00 0.178946672 0.9999595
## SUPT3H 1.744092e+00 0.179145841 0.9999595
## PIP4K2B 1.743834e+00 0.179190681 0.9999595
## GAS6 1.742628e+00 0.179400867 0.9999595
## BDH1 1.742059e+00 0.179500108 0.9999595
## ZNF544 1.740650e+00 0.179746286 0.9999595
## ZNF461 1.740643e+00 0.179747485 0.9999595
## CXCL16 1.740293e+00 0.179808604 0.9999595
## SLC11A1 1.740139e+00 0.179835467 0.9999595
## MAP3K7CL 1.739987e+00 0.179862097 0.9999595
## HP 1.737460e+00 0.180304533 0.9999595
## DAP3 1.736142e+00 0.180535718 0.9999595
## DUSP2 1.735247e+00 0.180692876 0.9999595
## APH1A 1.735246e+00 0.180693168 0.9999595
## IBA57 1.734613e+00 0.180804372 0.9999595
## BCL2L1 1.733512e+00 0.180998022 0.9999595
## ANKMY1 1.732699e+00 0.181141149 0.9999595
## RABIF 1.727973e+00 0.181975330 0.9999595
## SLC35F6 1.721324e+00 0.183155770 0.9999595
## ACTR6 1.720453e+00 0.183311045 0.9999595
## GRAMD2B 1.717249e+00 0.183883117 0.9999595
## RFXAP 1.709601e+00 0.185256057 0.9999595
## GRPEL2 1.708868e+00 0.185388230 0.9999595
## UBA2 1.708365e+00 0.185478812 0.9999595
## KCNN3 1.706235e+00 0.185863542 0.9999595
## NIPSNAP3B 1.704555e+00 0.186167585 0.9999595
## ANK3 1.703975e+00 0.186272585 0.9999595
## CRIP3 1.703329e+00 0.186389602 0.9999595
## WASL 1.703122e+00 0.186427236 0.9999595
## TRAPPC3L 1.701672e+00 0.186690413 0.9999595
## MAPRE3 1.697746e+00 0.187404696 0.9999595
## CD1A 1.694389e+00 0.188017762 0.9999595
## ANKS6 1.693012e+00 0.188269831 0.9999595
## DSE 1.693012e+00 0.188269876 0.9999595
## DELE1 1.692483e+00 0.188366783 0.9999595
## ZNF763 1.690979e+00 0.188642653 0.9999595
## CXCL6 1.688898e+00 0.189024971 0.9999595
## BTK 1.687473e+00 0.189287170 0.9999595
## REEP5 1.686761e+00 0.189418428 0.9999595
## MID2 1.686760e+00 0.189418517 0.9999595
## NIF3L1 1.685646e+00 0.189623961 0.9999595
## UBN2 1.684136e+00 0.189902886 0.9999595
## OXER1 1.682538e+00 0.190198459 0.9999595
## RPL4 1.680846e+00 0.190511836 0.9999595
## BCAT1 1.678848e+00 0.190882488 0.9999595
## HBB 1.677186e+00 0.191191504 0.9999595
## B4GALT3 1.675572e+00 0.191492090 0.9999595
## MCMDC2 1.674812e+00 0.191633817 0.9999595
## P2RY10 1.674234e+00 0.191741507 0.9999595
## CHAF1B 1.673922e+00 0.191799771 0.9999595
## TYW5 1.673496e+00 0.191879418 0.9999595
## BEX2 1.673184e+00 0.191937599 0.9999595
## PPARA 1.672873e+00 0.191995801 0.9999595
## OR2W3 1.670484e+00 0.192442632 0.9999595
## STK11 1.670115e+00 0.192511834 0.9999595
## C12orf66 1.669400e+00 0.192645898 0.9999595
## TRAT1 1.669192e+00 0.192684718 0.9999595
## GPA33 1.668677e+00 0.192781461 0.9999595
## HYLS1 1.661923e+00 0.194052959 0.9999595
## EOLA1 1.661597e+00 0.194114440 0.9999595
## COL6A3 1.661154e+00 0.194198169 0.9999595
## GDF11 1.660602e+00 0.194302617 0.9999595
## RALA 1.660439e+00 0.194333390 0.9999595
## MFSD14B 1.660304e+00 0.194359091 0.9999595
## ODF2 1.659970e+00 0.194422164 0.9999595
## ZNF540 1.659965e+00 0.194423147 0.9999595
## TCEAL8 1.659236e+00 0.194561128 0.9999595
## CD200 1.658848e+00 0.194634736 0.9999595
## UXS1 1.657666e+00 0.194858654 0.9999595
## LIX1L 1.657231e+00 0.194941354 0.9999595
## BZW2 1.654995e+00 0.195366019 0.9999595
## ACTR3C 1.654969e+00 0.195370951 0.9999595
## APOBEC3A_B 1.654916e+00 0.195381023 0.9999595
## TPM1 1.651346e+00 0.196061350 0.9999595
## MYC 1.649412e+00 0.196430939 0.9999595
## EPG5 1.648418e+00 0.196621054 0.9999595
## LIPN 1.648272e+00 0.196649032 0.9999595
## SMPDL3A 1.647421e+00 0.196812009 0.9999595
## GAPT 1.644157e+00 0.197438531 0.9999595
## MYBL2 1.643459e+00 0.197572643 0.9999595
## CDKN3 1.639472e+00 0.198341222 0.9999595
## TMEM231 1.639250e+00 0.198384028 0.9999595
## FAIM 1.638036e+00 0.198618752 0.9999595
## SLC12A8 1.634208e+00 0.199360522 0.9999595
## PDHB 1.633603e+00 0.199478007 0.9999595
## KYAT1 1.632683e+00 0.199656864 0.9999595
## HIBADH 1.630364e+00 0.200108154 0.9999595
## ZNHIT3 1.627808e+00 0.200607069 0.9999595
## ABRACL 1.626566e+00 0.200849839 0.9999595
## PLEKHG4 1.626020e+00 0.200956585 0.9999595
## CD99L2 1.625792e+00 0.201001317 0.9999595
## GCSAM 1.623829e+00 0.201385895 0.9999595
## AMIGO1 1.622240e+00 0.201697871 0.9999595
## NSA2 1.621537e+00 0.201836109 0.9999595
## PIK3IP1 1.621371e+00 0.201868572 0.9999595
## VEPH1 1.618825e+00 0.202369866 0.9999595
## CKS2 1.616631e+00 0.202802934 0.9999595
## TATDN3 1.614722e+00 0.203180431 0.9999595
## PRG2 1.613991e+00 0.203325097 0.9999595
## FMNL3 1.613211e+00 0.203479658 0.9999595
## CNNM3 1.613145e+00 0.203492809 0.9999595
## TMOD2 1.610558e+00 0.204006152 0.9999595
## RAP1B 1.610498e+00 0.204018074 0.9999595
## TSHZ3 1.610335e+00 0.204050462 0.9999595
## SLC25A39 1.608235e+00 0.204468371 0.9999595
## PAXBP1 1.606023e+00 0.204909640 0.9999595
## HRK 1.605150e+00 0.205083986 0.9999595
## C11orf21 1.603305e+00 0.205452947 0.9999595
## LDLR 1.601597e+00 0.205795057 0.9999595
## NDUFAF6 1.601310e+00 0.205852547 0.9999595
## CDA 1.600539e+00 0.206007263 0.9999595
## AGPAT4 1.598983e+00 0.206319904 0.9999595
## C10orf143 1.595019e+00 0.207118442 0.9999595
## CES1 1.594623e+00 0.207198412 0.9999595
## FRMD4A 1.592306e+00 0.207666601 0.9999595
## GPR171 1.591648e+00 0.207799855 0.9999595
## TTC24 1.591018e+00 0.207927458 0.9999595
## F2RL1 1.590346e+00 0.208063644 0.9999595
## MBLAC2 1.590121e+00 0.208109406 0.9999595
## AP3M2 1.589681e+00 0.208198554 0.9999595
## HOXA10 1.589523e+00 0.208230586 0.9999595
## KLHL25 1.588264e+00 0.208486243 0.9999595
## EAF2 1.587369e+00 0.208668227 0.9999595
## MPZL1 1.586827e+00 0.208778457 0.9999595
## SIGLEC10 1.586424e+00 0.208860437 0.9999595
## NMT2 1.585245e+00 0.209100590 0.9999595
## GALC 1.582879e+00 0.209583377 0.9999595
## IMMP1L 1.581469e+00 0.209871503 0.9999595
## H3C10 1.581355e+00 0.209894956 0.9999595
## PJA1 1.579173e+00 0.210341745 0.9999595
## TRIM27 1.578466e+00 0.210486711 0.9999595
## FCMR 1.576905e+00 0.210807348 0.9999595
## COPS3 1.576243e+00 0.210943338 0.9999595
## GSTA4 1.572370e+00 0.211741112 0.9999595
## LY9 1.572008e+00 0.211815850 0.9999595
## TMEM216 1.571951e+00 0.211827770 0.9999595
## DPP4 1.571829e+00 0.211852965 0.9999595
## TMEM158 1.570968e+00 0.212030802 0.9999595
## MAPKAP1 1.570352e+00 0.212158108 0.9999595
## WNT5B 1.569692e+00 0.212294642 0.9999595
## CDC20 1.569251e+00 0.212385894 0.9999595
## PDE5A 1.568694e+00 0.212501431 0.9999595
## WNT10B 1.568292e+00 0.212584650 0.9999595
## ZNF83 1.568165e+00 0.212610898 0.9999595
## SNPH 1.567513e+00 0.212746171 0.9999595
## IMMP2L 1.566765e+00 0.212901277 0.9999595
## ALDH6A1 1.565627e+00 0.213137634 0.9999595
## TMEM18 1.565139e+00 0.213239093 0.9999595
## BIRC3 1.564291e+00 0.213415393 0.9999595
## AMIGO2 1.563445e+00 0.213591594 0.9999595
## SSPN 1.563337e+00 0.213614051 0.9999595
## TMEM45A 1.561843e+00 0.213925333 0.9999595
## COQ3 1.561087e+00 0.214083143 0.9999595
## GLB1 1.560563e+00 0.214192457 0.9999595
## PREB 1.557997e+00 0.214729118 0.9999595
## F5 1.557675e+00 0.214796433 0.9999595
## PDE9A 1.557410e+00 0.214852035 0.9999595
## CNR2 1.556846e+00 0.214970240 0.9999595
## IGLL1 1.556254e+00 0.215094441 0.9999595
## MOSPD1 1.555810e+00 0.215187375 0.9999595
## SPTSSA 1.555533e+00 0.215245667 0.9999595
## ETV7 1.555063e+00 0.215344268 0.9999595
## TRPS1 1.554870e+00 0.215384749 0.9999595
## RPS6KC1 1.553657e+00 0.215639633 0.9999595
## PPT2 1.551714e+00 0.216048557 0.9999595
## ZNF502 1.549776e+00 0.216457378 0.9999595
## PLCG1 1.548197e+00 0.216790979 0.9999595
## TROAP 1.546722e+00 0.217102997 0.9999595
## CLPTM1L 1.545928e+00 0.217271154 0.9999595
## LETM2 1.543747e+00 0.217733768 0.9999595
## RETREG2 1.541555e+00 0.218199750 0.9999595
## LOC100287896 1.541334e+00 0.218246707 0.9999595
## EIF3H 1.541015e+00 0.218314738 0.9999595
## RWDD2B 1.539186e+00 0.218704455 0.9999595
## GGPS1 1.537523e+00 0.219059448 0.9999595
## SUSD1 1.536998e+00 0.219171699 0.9999595
## C12orf29 1.536953e+00 0.219181335 0.9999595
## NKAPL 1.535364e+00 0.219521248 0.9999595
## SOX6 1.535283e+00 0.219538609 0.9999595
## ARGLU1 1.534756e+00 0.219651433 0.9999595
## CLEC17A 1.534742e+00 0.219654358 0.9999595
## ZNF888 1.533644e+00 0.219889921 0.9999595
## HECTD4 1.533322e+00 0.219958834 0.9999595
## SLAIN1 1.532001e+00 0.220242582 0.9999595
## HOXA9 1.531020e+00 0.220453365 0.9999595
## ARMCX3 1.530471e+00 0.220571443 0.9999595
## MFHAS1 1.529737e+00 0.220729480 0.9999595
## SENP8 1.524859e+00 0.221782284 0.9999595
## GPR89B 1.524490e+00 0.221862221 0.9999595
## MZB1 1.524109e+00 0.221944565 0.9999595
## PLEKHB1 1.523507e+00 0.222075068 0.9999595
## NLE1 1.522389e+00 0.222317416 0.9999595
## RTCA 1.522349e+00 0.222326077 0.9999595
## DBN1 1.520771e+00 0.222668515 0.9999595
## SLC25A53 1.519599e+00 0.222923239 0.9999595
## SETD9 1.519347e+00 0.222978018 0.9999595
## DNAJC27 1.516398e+00 0.223620548 0.9999595
## IL24 1.515596e+00 0.223795622 0.9999595
## EEF1E1 1.515304e+00 0.223859446 0.9999595
## P2RY12 1.515146e+00 0.223894025 0.9999595
## ZNF555 1.514843e+00 0.223960167 0.9999595
## VRK2 1.514725e+00 0.223986023 0.9999595
## ATP6V1G2 1.514538e+00 0.224026799 0.9999595
## NONO 1.514515e+00 0.224031859 0.9999595
## ASNS 1.514151e+00 0.224111367 0.9999595
## ARHGAP29 1.513378e+00 0.224280419 0.9999595
## ZNF254 1.508028e+00 0.225454404 0.9999595
## LRRC34 1.506824e+00 0.225719342 0.9999595
## C4orf3 1.506660e+00 0.225755593 0.9999595
## CD3G 1.506034e+00 0.225893458 0.9999595
## YBX1 1.504105e+00 0.226319096 0.9999595
## CCR6 1.502028e+00 0.226778325 0.9999595
## ZNF30 1.501462e+00 0.226903711 0.9999595
## SIGLEC1 1.500682e+00 0.227076363 0.9999595
## TRAF5 1.499762e+00 0.227280424 0.9999595
## NME7 1.497647e+00 0.227750098 0.9999595
## CCT6B 1.497430e+00 0.227798178 0.9999595
## IL7R 1.495779e+00 0.228165693 0.9999595
## ZNF501 1.495044e+00 0.228329322 0.9999595
## DGKA 1.494941e+00 0.228352201 0.9999595
## MZT1 1.494221e+00 0.228512826 0.9999595
## TNRC6C 1.493847e+00 0.228596253 0.9999595
## EFCAB2 1.492637e+00 0.228866260 0.9999595
## ELOVL3 1.492391e+00 0.228921412 0.9999595
## MYO10 1.492102e+00 0.228985854 0.9999595
## RNF214 1.491757e+00 0.229062999 0.9999595
## POU6F1 1.490468e+00 0.229351327 0.9999595
## PITRM1 1.490438e+00 0.229358181 0.9999595
## TMED10 1.490415e+00 0.229363271 0.9999595
## UBE2T 1.489879e+00 0.229483414 0.9999595
## CA5B 1.489225e+00 0.229629846 0.9999595
## FBXO34 1.488478e+00 0.229797295 0.9999595
## FSTL4 1.486724e+00 0.230191077 0.9999595
## SEMA4A 1.485424e+00 0.230483350 0.9999595
## CCDC80 1.483964e+00 0.230812162 0.9999595
## SLC35A5 1.481237e+00 0.231427314 0.9999595
## CSNK1A1L 1.480785e+00 0.231529576 0.9999595
## PHF10 1.480730e+00 0.231541882 0.9999595
## FEM1C 1.479694e+00 0.231776349 0.9999595
## CCDC69 1.477630e+00 0.232243860 0.9999595
## ZNF16 1.475234e+00 0.232787788 0.9999595
## ZBTB46 1.473658e+00 0.233146246 0.9999595
## ANXA5 1.471949e+00 0.233535622 0.9999595
## ZNF681 1.471944e+00 0.233536741 0.9999595
## INO80B 1.471456e+00 0.233647946 0.9999595
## SLFN12 1.470965e+00 0.233759930 0.9999595
## AGA 1.470756e+00 0.233807648 0.9999595
## ACSBG1 1.470510e+00 0.233863875 0.9999595
## LIPT2 1.470259e+00 0.233921238 0.9999595
## IL3RA 1.469876e+00 0.234008787 0.9999595
## DLAT 1.469613e+00 0.234068676 0.9999595
## SAPCD2 1.468325e+00 0.234363280 0.9999595
## MAGEF1 1.467525e+00 0.234546512 0.9999595
## BAIAP2 1.466651e+00 0.234746708 0.9999595
## LILRB2 1.465992e+00 0.234897944 0.9999595
## BEX5 1.465952e+00 0.234907024 0.9999595
## WASHC2C 1.464254e+00 0.235296900 0.9999595
## ZNF470 1.463662e+00 0.235432998 0.9999595
## SLC25A38 1.461776e+00 0.235866966 0.9999595
## C1orf74 1.461732e+00 0.235877083 0.9999595
## BOLA3 1.460541e+00 0.236151614 0.9999595
## H2BC5 1.459603e+00 0.236368030 0.9999595
## ST13 1.458924e+00 0.236524617 0.9999595
## ZNF77 1.458791e+00 0.236555377 0.9999595
## ADM2 1.456559e+00 0.237071668 0.9999595
## BTBD11 1.456460e+00 0.237094657 0.9999595
## ZDHHC20 1.455522e+00 0.237311745 0.9999595
## TTC12 1.455154e+00 0.237397111 0.9999595
## ENOSF1 1.453062e+00 0.237882595 0.9999595
## CLEC4D 1.452562e+00 0.237998937 0.9999595
## PSPH 1.452071e+00 0.238112994 0.9999595
## ATF3 1.451396e+00 0.238270175 0.9999595
## DRICH1 1.450333e+00 0.238517582 0.9999595
## ZNF655 1.450016e+00 0.238591453 0.9999595
## ZNF785 1.449923e+00 0.238613185 0.9999595
## MBIP 1.449483e+00 0.238715694 0.9999595
## UBE2G2 1.446513e+00 0.239409308 0.9999595
## HINT1 1.445446e+00 0.239658771 0.9999595
## ELP1 1.443758e+00 0.240054410 0.9999595
## DPCD 1.442381e+00 0.240377447 0.9999595
## PXDC1 1.441939e+00 0.240481168 0.9999595
## LRTOMT 1.441803e+00 0.240513282 0.9999595
## NAP1L1 1.441644e+00 0.240550673 0.9999595
## KYAT3 1.441640e+00 0.240551529 0.9999595
## S100PBP 1.440595e+00 0.240797285 0.9999595
## FIS1 1.440396e+00 0.240844100 0.9999595
## TVP23C 1.439712e+00 0.241005052 0.9999595
## SLC51A 1.439597e+00 0.241032139 0.9999595
## LRRC8B 1.437168e+00 0.241604566 0.9999595
## ZNF75D 1.436265e+00 0.241817847 0.9999595
## PLXNA1 1.435569e+00 0.241982488 0.9999595
## TFAP4 1.435254e+00 0.242056961 0.9999595
## SIGLEC9 1.434174e+00 0.242312407 0.9999595
## EPDR1 1.432491e+00 0.242711103 0.9999595
## NHEJ1 1.431084e+00 0.243045034 0.9999595
## ZNF483 1.430832e+00 0.243104821 0.9999595
## CLUAP1 1.429528e+00 0.243414766 0.9999595
## CLEC12B 1.428990e+00 0.243542795 0.9999595
## KIF3A 1.428623e+00 0.243630180 0.9999595
## RIMS3 1.427708e+00 0.243847992 0.9999595
## SLC7A11 1.427494e+00 0.243899019 0.9999595
## SAR1B 1.426804e+00 0.244063471 0.9999595
## SPTB 1.426700e+00 0.244088241 0.9999595
## NHLRC4 1.426608e+00 0.244110361 0.9999595
## SERINC2 1.425798e+00 0.244303483 0.9999595
## CLDN15 1.423873e+00 0.244763427 0.9999595
## LNX2 1.422223e+00 0.245158513 0.9999595
## VASH1 1.421394e+00 0.245357137 0.9999595
## SPOCK2 1.420415e+00 0.245591858 0.9999595
## NSUN6 1.419459e+00 0.245821435 0.9999595
## SCAPER 1.416001e+00 0.246653548 0.9999595
## NPIPB11 1.415139e+00 0.246861390 0.9999595
## MMP25 1.414846e+00 0.246932155 0.9999595
## PHYKPL 1.412896e+00 0.247403105 0.9999595
## NCKAP1L 1.412322e+00 0.247541868 0.9999595
## POU5F1 1.410167e+00 0.248063925 0.9999595
## HIBCH 1.409677e+00 0.248182635 0.9999595
## RPN1 1.409577e+00 0.248206906 0.9999595
## MAML3 1.409554e+00 0.248212644 0.9999595
## ALS2CL 1.407521e+00 0.248706265 0.9999595
## CBWD5 1.405508e+00 0.249196048 0.9999595
## ADTRP 1.404528e+00 0.249434870 0.9999595
## VPS72 1.404234e+00 0.249506602 0.9999595
## CHRNA5 1.402193e+00 0.250004808 0.9999595
## ZNF354C 1.402064e+00 0.250036435 0.9999595
## MSL3 1.400268e+00 0.250475671 0.9999595
## MSH5 1.399229e+00 0.250730198 0.9999595
## CMIP 1.398368e+00 0.250941264 0.9999595
## VPS37B 1.397703e+00 0.251104529 0.9999595
## PLXDC1 1.397358e+00 0.251189117 0.9999595
## TRIB3 1.396888e+00 0.251304641 0.9999595
## PPIL3 1.396106e+00 0.251496906 0.9999595
## PDGFC 1.395677e+00 0.251602222 0.9999595
## PITHD1 1.392614e+00 0.252356832 0.9999595
## CDYL2 1.392278e+00 0.252439699 0.9999595
## CHI3L2 1.391774e+00 0.252564065 0.9999595
## CLCN2 1.391494e+00 0.252633216 0.9999595
## TFB1M 1.390097e+00 0.252978492 0.9999595
## JUN 1.389908e+00 0.253025395 0.9999595
## SEC13 1.389466e+00 0.253134754 0.9999595
## NADK2 1.389405e+00 0.253149654 0.9999595
## CRYBG2 1.387176e+00 0.253702118 0.9999595
## CALHM5 1.385003e+00 0.254241547 0.9999595
## ZC3H8 1.384068e+00 0.254474173 0.9999595
## ARFIP1 1.383131e+00 0.254707483 0.9999595
## MGST1 1.382056e+00 0.254975298 0.9999595
## CD22 1.381442e+00 0.255128479 0.9999595
## ABCB9 1.381037e+00 0.255229419 0.9999595
## GLOD4 1.379814e+00 0.255534728 0.9999595
## MYL9 1.379731e+00 0.255555705 0.9999595
## PGAP2 1.379658e+00 0.255573915 0.9999595
## SRSF8 1.379405e+00 0.255637193 0.9999595
## EHD4 1.379385e+00 0.255642108 0.9999595
## ZSCAN18 1.377191e+00 0.256191039 0.9999595
## CBFA2T2 1.376381e+00 0.256394051 0.9999595
## RIN2 1.376332e+00 0.256406376 0.9999595
## MFN2 1.375857e+00 0.256525398 0.9999595
## PTPRO 1.374786e+00 0.256794313 0.9999595
## LRRC25 1.374683e+00 0.256820098 0.9999595
## DUSP10 1.374670e+00 0.256823582 0.9999595
## CARMIL2 1.374577e+00 0.256846866 0.9999595
## PDE4DIP 1.373408e+00 0.257140631 0.9999595
## C9orf40 1.373369e+00 0.257150405 0.9999595
## CDK5R1 1.372232e+00 0.257436529 0.9999595
## CASP1 1.372207e+00 0.257442892 0.9999595
## PRPSAP2 1.370487e+00 0.257876187 0.9999595
## SLITRK4 1.370162e+00 0.257958225 0.9999595
## PYGO2 1.369437e+00 0.258141122 0.9999595
## U2AF1L5 1.369015e+00 0.258247771 0.9999595
## CHML 1.368348e+00 0.258416149 0.9999595
## PIF1 1.365963e+00 0.259019804 0.9999595
## LOXHD1 1.365760e+00 0.259071123 0.9999595
## TRIM16L 1.365014e+00 0.259260262 0.9999595
## SAR1A 1.364136e+00 0.259482905 0.9999595
## MMS19 1.363015e+00 0.259767700 0.9999595
## UNG 1.361976e+00 0.260031825 0.9999595
## TRMT11 1.361917e+00 0.260046749 0.9999595
## SDC4 1.361133e+00 0.260246251 0.9999595
## PRKRA 1.360901e+00 0.260305395 0.9999595
## SEC11C 1.360369e+00 0.260440821 0.9999595
## MAP2K7 1.358706e+00 0.260864674 0.9999595
## FAM53B 1.357833e+00 0.261087671 0.9999595
## MAEA 1.357787e+00 0.261099291 0.9999595
## TMPPE 1.356949e+00 0.261313464 0.9999595
## HDAC1 1.356948e+00 0.261313789 0.9999595
## ARF3 1.356530e+00 0.261420688 0.9999595
## TRA2A 1.356288e+00 0.261482459 0.9999595
## CAMK4 1.355550e+00 0.261671423 0.9999595
## SLC35B1 1.355454e+00 0.261695895 0.9999595
## ZNF583 1.353662e+00 0.262154983 0.9999595
## LGALS3BP 1.353545e+00 0.262184924 0.9999595
## ANKRD46 1.352946e+00 0.262338642 0.9999595
## ZNF768 1.351718e+00 0.262653969 0.9999595
## IFI6 1.350982e+00 0.262843325 0.9999595
## C2 1.350905e+00 0.262862995 0.9999595
## SLX4IP 1.349927e+00 0.263114547 0.9999595
## TINF2 1.349505e+00 0.263223299 0.9999595
## ADSL 1.347624e+00 0.263708196 0.9999595
## TTN 1.347450e+00 0.263753035 0.9999595
## KY 1.346175e+00 0.264082174 0.9999595
## ZNF639 1.346023e+00 0.264121470 0.9999595
## BACH2 1.345344e+00 0.264297090 0.9999595
## DEDD 1.345242e+00 0.264323294 0.9999595
## UACA 1.343946e+00 0.264658695 0.9999595
## FGF13 1.343397e+00 0.264801002 0.9999595
## GSPT2 1.342240e+00 0.265100860 0.9999595
## FZD6 1.341721e+00 0.265235461 0.9999595
## PGLYRP1 1.341487e+00 0.265296316 0.9999595
## AUH 1.340869e+00 0.265456727 0.9999595
## MRPL10 1.340806e+00 0.265473046 0.9999595
## TMEM106A 1.340803e+00 0.265473855 0.9999595
## C17orf100 1.340772e+00 0.265481841 0.9999595
## PFAS 1.340338e+00 0.265594717 0.9999595
## WDFY1 1.339661e+00 0.265770804 0.9999595
## AK5 1.339612e+00 0.265783386 0.9999595
## GATB 1.339231e+00 0.265882641 0.9999595
## TCF4 1.337823e+00 0.266249140 0.9999595
## FAM104B 1.336757e+00 0.266527005 0.9999595
## DYNLT3 1.336464e+00 0.266603392 0.9999595
## C1orf109 1.336330e+00 0.266638268 0.9999595
## PPME1 1.336051e+00 0.266711174 0.9999595
## TCTEX1D4 1.334997e+00 0.266986248 0.9999595
## POLR1D 1.334639e+00 0.267079952 0.9999595
## TNKS1BP1 1.334399e+00 0.267142742 0.9999595
## TPT1 1.334120e+00 0.267215571 0.9999595
## ALDH5A1 1.333935e+00 0.267263976 0.9999595
## TNS1 1.333474e+00 0.267384610 0.9999595
## LAP3 1.332915e+00 0.267530948 0.9999595
## AUTS2 1.331263e+00 0.267963690 0.9999595
## DKC1 1.331260e+00 0.267964503 0.9999595
## CTSH 1.330674e+00 0.268118199 0.9999595
## C18orf25 1.330395e+00 0.268191376 0.9999595
## MAGEE1 1.330274e+00 0.268223052 0.9999595
## MMP9 1.329580e+00 0.268405307 0.9999595
## ZMYND15 1.328618e+00 0.268658232 0.9999595
## RMI2 1.328055e+00 0.268806351 0.9999595
## LCK 1.327466e+00 0.268961319 0.9999595
## GUCY1B1 1.327287e+00 0.269008302 0.9999595
## MXD3 1.327100e+00 0.269057697 0.9999595
## NR6A1 1.327099e+00 0.269057733 0.9999595
## RPS6 1.326340e+00 0.269257660 0.9999595
## CD6 1.325718e+00 0.269421829 0.9999595
## RASGRF2 1.325360e+00 0.269516217 0.9999595
## AZIN2 1.325286e+00 0.269535747 0.9999595
## CUL1 1.324226e+00 0.269815374 0.9999595
## UQCRC2 1.324040e+00 0.269864467 0.9999595
## TUBA1B 1.323390e+00 0.270036392 0.9999595
## ZNF530 1.322818e+00 0.270187454 0.9999595
## ATIC 1.322303e+00 0.270323802 0.9999595
## BCL11B 1.321396e+00 0.270563846 0.9999595
## PHF23 1.319935e+00 0.270950913 0.9999595
## MAPKAPK5 1.318529e+00 0.271324157 0.9999595
## FGR 1.317347e+00 0.271638242 0.9999595
## HSD3B7 1.317219e+00 0.271672259 0.9999595
## RPL7L1 1.316161e+00 0.271953674 0.9999595
## DAPK1 1.316026e+00 0.271989519 0.9999595
## COL9A2 1.313654e+00 0.272621780 0.9999595
## GTF3C2 1.313653e+00 0.272622229 0.9999595
## FOSB 1.311986e+00 0.273067449 0.9999595
## ZNF101 1.311317e+00 0.273246302 0.9999595
## MCUB 1.311283e+00 0.273255359 0.9999595
## TP53I3 1.310871e+00 0.273365626 0.9999595
## RPL10A 1.310730e+00 0.273403378 0.9999595
## SIRPA 1.310544e+00 0.273453180 0.9999595
## AGAP9 1.309991e+00 0.273601029 0.9999595
## KRT8 1.309768e+00 0.273660971 0.9999595
## ZBTB22 1.309237e+00 0.273803286 0.9999595
## C17orf75 1.307095e+00 0.274378037 0.9999595
## LY6G5C 1.307021e+00 0.274397834 0.9999595
## SLC9B2 1.306951e+00 0.274416627 0.9999595
## XBP1 1.306946e+00 0.274417887 0.9999595
## AP3D1 1.306032e+00 0.274663579 0.9999595
## RIOK1 1.305420e+00 0.274828185 0.9999595
## TRIM22 1.305318e+00 0.274855754 0.9999595
## TGIF1 1.305027e+00 0.274934063 0.9999595
## RBX1 1.304758e+00 0.275006413 0.9999595
## CHMP7 1.303656e+00 0.275303114 0.9999595
## N6AMT1 1.301921e+00 0.275771297 0.9999595
## ZNF337 1.300314e+00 0.276205496 0.9999595
## PABPC4 1.300150e+00 0.276249834 0.9999595
## TC2N 1.299380e+00 0.276458191 0.9999595
## NDUFB6 1.298929e+00 0.276580357 0.9999595
## TBC1D4 1.298723e+00 0.276636130 0.9999595
## VMA21 1.298336e+00 0.276740881 0.9999595
## TNFRSF25 1.298255e+00 0.276762841 0.9999595
## DDO 1.297942e+00 0.276847593 0.9999595
## CTPS2 1.297289e+00 0.277024665 0.9999595
## ZCCHC4 1.297071e+00 0.277083952 0.9999595
## PIK3C2B 1.296795e+00 0.277158852 0.9999595
## CNTNAP3 1.296104e+00 0.277346433 0.9999595
## SRD5A1 1.295905e+00 0.277400337 0.9999595
## MAN1C1 1.295684e+00 0.277460340 0.9999595
## TNFRSF13C 1.295633e+00 0.277474408 0.9999595
## TESPA1 1.295185e+00 0.277595913 0.9999595
## FAM117B 1.294494e+00 0.277783856 0.9999595
## RGS3 1.293612e+00 0.278024008 0.9999595
## CLSPN 1.293472e+00 0.278062017 0.9999595
## ZNF780B 1.293372e+00 0.278089240 0.9999595
## HNRNPH1 1.293063e+00 0.278173448 0.9999595
## TLR7 1.291129e+00 0.278700811 0.9999595
## WDR55 1.290129e+00 0.278973757 0.9999595
## AK6 1.289284e+00 0.279204829 0.9999595
## ZNF445 1.288896e+00 0.279310708 0.9999595
## ASPRV1 1.288614e+00 0.279387955 0.9999595
## GFUS 1.288391e+00 0.279448979 0.9999595
## INTS12 1.287238e+00 0.279764792 0.9999595
## TUBG1 1.286792e+00 0.279887000 0.9999595
## SNCA 1.286585e+00 0.279943722 0.9999595
## GZMK 1.285633e+00 0.280204599 0.9999595
## SH2D4A 1.284635e+00 0.280478685 0.9999595
## GOT2 1.284053e+00 0.280638517 0.9999595
## CCDC144A 1.283082e+00 0.280905549 0.9999595
## SNED1 1.281470e+00 0.281349515 0.9999595
## ZNF366 1.281249e+00 0.281410220 0.9999595
## PECR 1.281161e+00 0.281434558 0.9999595
## ZNF619 1.280545e+00 0.281604527 0.9999595
## EEF1B2 1.280457e+00 0.281628694 0.9999595
## MAL 1.280280e+00 0.281677638 0.9999595
## PELATON 1.280275e+00 0.281678845 0.9999595
## MMP24-AS1-EDEM2 1.279914e+00 0.281778464 0.9999595
## ZNF566 1.279609e+00 0.281862661 0.9999595
## RCSD1 1.279361e+00 0.281931154 0.9999595
## MGRN1 1.279318e+00 0.281943104 0.9999595
## ZKSCAN2 1.278137e+00 0.282269342 0.9999595
## LZIC 1.277267e+00 0.282510025 0.9999595
## CCZ1 1.276106e+00 0.282831472 0.9999595
## ZNF682 1.275631e+00 0.282962953 0.9999595
## PRKCH 1.275283e+00 0.283059386 0.9999595
## SRBD1 1.275095e+00 0.283111757 0.9999595
## RPA2 1.275014e+00 0.283134133 0.9999595
## NSUN7 1.274829e+00 0.283185502 0.9999595
## COX11 1.274676e+00 0.283227857 0.9999595
## RNF157 1.274462e+00 0.283287299 0.9999595
## CASP2 1.273341e+00 0.283598324 0.9999595
## SIT1 1.272440e+00 0.283848797 0.9999595
## TUBA1A 1.272186e+00 0.283919536 0.9999595
## RRBP1 1.271704e+00 0.284053675 0.9999595
## PCNT 1.271567e+00 0.284091720 0.9999595
## SULF2 1.271237e+00 0.284183444 0.9999595
## POLR3A 1.270231e+00 0.284463779 0.9999595
## SEC16A 1.270219e+00 0.284467052 0.9999595
## SCLT1 1.269014e+00 0.284803018 0.9999595
## KCNA3 1.268865e+00 0.284844535 0.9999595
## TMEM14B 1.268257e+00 0.285014325 0.9999595
## HAVCR2 1.268139e+00 0.285047183 0.9999595
## DALRD3 1.268002e+00 0.285085342 0.9999595
## RGS17 1.267805e+00 0.285140550 0.9999595
## HBA1 1.266659e+00 0.285460690 0.9999595
## SMAD1 1.266494e+00 0.285506918 0.9999595
## SIRT3 1.265648e+00 0.285743643 0.9999595
## RPL5 1.264081e+00 0.286182495 0.9999595
## GALNT2 1.263759e+00 0.286272826 0.9999595
## TEF 1.262458e+00 0.286637891 0.9999595
## ZNF891 1.260980e+00 0.287053413 0.9999595
## FNIP2 1.260902e+00 0.287075170 0.9999595
## ALCAM 1.260750e+00 0.287118159 0.9999595
## CFAP20 1.260388e+00 0.287219761 0.9999595
## LHX4 1.260151e+00 0.287286539 0.9999595
## ZNF577 1.259412e+00 0.287494759 0.9999595
## CFD 1.259112e+00 0.287579249 0.9999595
## SMPD2 1.258331e+00 0.287799408 0.9999595
## GOLGA8B 1.257905e+00 0.287919437 0.9999595
## BLVRB 1.257699e+00 0.287977493 0.9999595
## NKD1 1.256702e+00 0.288259039 0.9999595
## FBLN5 1.255932e+00 0.288476636 0.9999595
## RPA3 1.255109e+00 0.288709131 0.9999595
## ZNF436 1.254292e+00 0.288940478 0.9999595
## TMEM245 1.254175e+00 0.288973680 0.9999595
## SPRY3 1.252572e+00 0.289427826 0.9999595
## SIPA1L1 1.252194e+00 0.289535038 0.9999595
## RHOH 1.251127e+00 0.289837831 0.9999595
## TRIM34 1.250833e+00 0.289921515 0.9999595
## SMIM27 1.250568e+00 0.289996762 0.9999595
## SUCNR1 1.250492e+00 0.290018363 0.9999595
## ATXN7L1 1.250293e+00 0.290074852 0.9999595
## KCNC4 1.250231e+00 0.290092520 0.9999595
## TIPIN 1.249483e+00 0.290305083 0.9999595
## SIAH2 1.249403e+00 0.290327943 0.9999595
## P2RY1 1.249361e+00 0.290339961 0.9999595
## PCSK7 1.249261e+00 0.290368156 0.9999595
## NR1D1 1.248946e+00 0.290458009 0.9999595
## ZMYND10 1.248807e+00 0.290497393 0.9999595
## NANS 1.248378e+00 0.290619752 0.9999595
## BAHCC1 1.247620e+00 0.290835492 0.9999595
## LDAH 1.247581e+00 0.290846706 0.9999595
## FBXO10 1.247276e+00 0.290933671 0.9999595
## ANKS1A 1.247021e+00 0.291006329 0.9999595
## IZUMO4 1.245457e+00 0.291452637 0.9999595
## HMGN5 1.244352e+00 0.291768548 0.9999595
## AKAP5 1.243900e+00 0.291897639 0.9999595
## OPLAH 1.243776e+00 0.291933192 0.9999595
## MTSS2 1.243720e+00 0.291949196 0.9999595
## PSMD11 1.242649e+00 0.292255716 0.9999595
## CACNA1E 1.241173e+00 0.292678912 0.9999595
## NECAB1 1.240400e+00 0.292900539 0.9999595
## MRPS6 1.240011e+00 0.293012318 0.9999595
## NLN 1.239529e+00 0.293150630 0.9999595
## NLRC5 1.239049e+00 0.293288673 0.9999595
## LBH 1.238845e+00 0.293347276 0.9999595
## TFDP2 1.238631e+00 0.293408853 0.9999595
## RNASE4 1.238299e+00 0.293504302 0.9999595
## NPHP4 1.237924e+00 0.293612119 0.9999595
## ERGIC2 1.237691e+00 0.293679173 0.9999595
## PLOD1 1.237371e+00 0.293771543 0.9999595
## IGKC 1.237258e+00 0.293803933 0.9999595
## HPSE 1.236504e+00 0.294021125 0.9999595
## AP1M2 1.236313e+00 0.294076254 0.9999595
## ALPL 1.235858e+00 0.294207275 0.9999595
## KCTD11 1.235533e+00 0.294301003 0.9999595
## PTPRM 1.235285e+00 0.294372605 0.9999595
## SERPINB8 1.234670e+00 0.294550126 0.9999595
## BTN3A1 1.234568e+00 0.294579584 0.9999595
## INPP4B 1.233770e+00 0.294810081 0.9999595
## ZBTB32 1.233587e+00 0.294863050 0.9999595
## FAM160A2 1.233134e+00 0.294993752 0.9999595
## SPATA33 1.232192e+00 0.295266291 0.9999595
## CYBRD1 1.231149e+00 0.295568440 0.9999595
## RRP12 1.230590e+00 0.295730283 0.9999595
## WASF3 1.230546e+00 0.295743210 0.9999595
## VSTM1 1.230392e+00 0.295787872 0.9999595
## RPP38 1.229461e+00 0.296057912 0.9999595
## PCCA 1.229217e+00 0.296128673 0.9999595
## UBASH3B 1.229140e+00 0.296150937 0.9999595
## MAPK7 1.228863e+00 0.296231382 0.9999595
## OSGEPL1 1.227966e+00 0.296491863 0.9999595
## SLC37A1 1.226276e+00 0.296983632 0.9999595
## SP140 1.225925e+00 0.297085712 0.9999595
## MED22 1.222500e+00 0.298084974 0.9999595
## FBXO7 1.222283e+00 0.298148203 0.9999595
## PTPN18 1.222100e+00 0.298201791 0.9999595
## STMN3 1.220920e+00 0.298546942 0.9999595
## IFT57 1.220765e+00 0.298592352 0.9999595
## RTP4 1.220624e+00 0.298633660 0.9999595
## IRAK4 1.219214e+00 0.299046677 0.9999595
## KLHDC8B 1.219112e+00 0.299076422 0.9999595
## KRT23 1.218596e+00 0.299227751 0.9999595
## IFT88 1.218254e+00 0.299328323 0.9999595
## NOD1 1.217225e+00 0.299630306 0.9999595
## TTLL1 1.215732e+00 0.300069122 0.9999595
## CSNK1G1 1.214605e+00 0.300400951 0.9999595
## ING5 1.214217e+00 0.300515407 0.9999595
## ZNF714 1.213576e+00 0.300704096 0.9999595
## ZNF93 1.212610e+00 0.300989019 0.9999595
## PTMS 1.212534e+00 0.301011558 0.9999595
## SLC33A1 1.212338e+00 0.301069494 0.9999595
## C2CD5 1.212171e+00 0.301118580 0.9999595
## SDF2L1 1.212006e+00 0.301167333 0.9999595
## PTAFR 1.211922e+00 0.301192329 0.9999595
## TMEM121B 1.211914e+00 0.301194598 0.9999595
## TUBE1 1.211407e+00 0.301344482 0.9999595
## TAL1 1.211327e+00 0.301368112 0.9999595
## MAPK8 1.210955e+00 0.301477823 0.9999595
## BMPR2 1.210816e+00 0.301518872 0.9999595
## C1GALT1 1.210461e+00 0.301624104 0.9999595
## RCC1 1.209914e+00 0.301785883 0.9999595
## CD3D 1.209823e+00 0.301812800 0.9999595
## NUDT5 1.209470e+00 0.301917269 0.9999595
## TMC4 1.209265e+00 0.301977776 0.9999595
## CD3E 1.209161e+00 0.302008745 0.9999595
## LRRC7 1.207475e+00 0.302508439 0.9999595
## SFTPB 1.206941e+00 0.302666732 0.9999595
## NOL11 1.205717e+00 0.303030317 0.9999595
## RPL27 1.205531e+00 0.303085600 0.9999595
## NPIPB5 1.205467e+00 0.303104599 0.9999595
## TENT5A 1.205401e+00 0.303124214 0.9999595
## FCGR3A 1.204274e+00 0.303459511 0.9999595
## LGALS8 1.203533e+00 0.303680031 0.9999595
## TRMT61B 1.203402e+00 0.303718976 0.9999595
## CTC1 1.203358e+00 0.303731998 0.9999595
## C11orf95 1.203003e+00 0.303837710 0.9999595
## DIMT1 1.202917e+00 0.303863320 0.9999595
## AQP3 1.202325e+00 0.304039955 0.9999595
## SAAL1 1.202199e+00 0.304077496 0.9999595
## TTC19 1.201441e+00 0.304303421 0.9999595
## POLR2C 1.200882e+00 0.304470378 0.9999595
## FOXRED1 1.200798e+00 0.304495503 0.9999595
## NOTCH2NLA 1.200653e+00 0.304538934 0.9999595
## ZNF792 1.200543e+00 0.304571546 0.9999595
## TRAF1 1.198603e+00 0.305151569 0.9999595
## TOP3A 1.198577e+00 0.305159368 0.9999595
## MARCHF3 1.198499e+00 0.305182715 0.9999595
## CHFR 1.198369e+00 0.305221621 0.9999595
## KPNA4 1.197318e+00 0.305536369 0.9999595
## HNRNPA1 1.196483e+00 0.305786801 0.9999595
## SLC36A1 1.195473e+00 0.306089714 0.9999595
## ZC3H12C 1.195038e+00 0.306220434 0.9999595
## RAD1 1.194190e+00 0.306475045 0.9999595
## CHSY1 1.193044e+00 0.306819731 0.9999595
## MAP7D3 1.192996e+00 0.306834309 0.9999595
## SH3BP4 1.192804e+00 0.306892057 0.9999595
## SC5D 1.192732e+00 0.306913746 0.9999595
## PIGQ 1.192713e+00 0.306919318 0.9999595
## FAM185A 1.192505e+00 0.306982022 0.9999595
## MTMR2 1.192380e+00 0.307019690 0.9999595
## RBM38 1.190270e+00 0.307655593 0.9999595
## EMC7 1.189241e+00 0.307966463 0.9999595
## ADCY3 1.188930e+00 0.308060211 0.9999595
## IFT81 1.188637e+00 0.308149040 0.9999595
## ZNF559 1.187519e+00 0.308487127 0.9999595
## SERBP1 1.187330e+00 0.308544317 0.9999595
## CAMK1D 1.186453e+00 0.308809649 0.9999595
## BNIP3 1.185733e+00 0.309027804 0.9999595
## UBIAD1 1.185110e+00 0.309216798 0.9999595
## PYCR1 1.185031e+00 0.309240666 0.9999595
## METTL2B 1.184823e+00 0.309303707 0.9999595
## MIS12 1.184784e+00 0.309315819 0.9999595
## RPL17 1.182963e+00 0.309868655 0.9999595
## TCEAL1 1.182862e+00 0.309899309 0.9999595
## GIMAP2 1.182193e+00 0.310102908 0.9999595
## RAB3IP 1.182154e+00 0.310114530 0.9999595
## NELFCD 1.181823e+00 0.310215515 0.9999595
## LPCAT3 1.181724e+00 0.310245631 0.9999595
## CD47 1.180599e+00 0.310588090 0.9999595
## DONSON 1.180135e+00 0.310729629 0.9999595
## RPL7 1.178929e+00 0.311097344 0.9999595
## ZFAND1 1.178840e+00 0.311124556 0.9999595
## TACC3 1.178478e+00 0.311234893 0.9999595
## FAM118A 1.177837e+00 0.311430632 0.9999595
## SLC6A12 1.174541e+00 0.312439448 0.9999595
## PLEKHA1 1.174452e+00 0.312466783 0.9999595
## GOLGA8A 1.174362e+00 0.312494177 0.9999595
## TRIM7 1.174229e+00 0.312535024 0.9999595
## KIF5C 1.173817e+00 0.312661452 0.9999595
## FBXO4 1.173438e+00 0.312777605 0.9999595
## ENC1 1.173144e+00 0.312867976 0.9999595
## GNAL 1.173080e+00 0.312887477 0.9999595
## LOC283710 1.172149e+00 0.313173436 0.9999595
## ZNF324B 1.171342e+00 0.313421476 0.9999595
## C3orf33 1.170977e+00 0.313533756 0.9999595
## NCSTN 1.170730e+00 0.313609762 0.9999595
## TMEM38B 1.169849e+00 0.313881025 0.9999595
## GSTM2 1.169734e+00 0.313916352 0.9999595
## ANXA2R 1.169694e+00 0.313928680 0.9999595
## C5orf34 1.169125e+00 0.314104107 0.9999595
## NRIP1 1.168660e+00 0.314247462 0.9999595
## ANAPC1 1.168625e+00 0.314258111 0.9999595
## DOCK4 1.167826e+00 0.314504705 0.9999595
## LCN2 1.166914e+00 0.314786159 0.9999595
## DCUN1D2 1.166670e+00 0.314861476 0.9999595
## GMPPB 1.166643e+00 0.314869863 0.9999595
## SERPINB2 1.166485e+00 0.314918808 0.9999595
## MEF2A 1.166307e+00 0.314973544 0.9999595
## ATP9A 1.165883e+00 0.315104819 0.9999595
## RRAS2 1.165319e+00 0.315279159 0.9999595
## CACNA1I 1.164505e+00 0.315531065 0.9999595
## APBB1 1.164406e+00 0.315561752 0.9999595
## WDCP 1.164301e+00 0.315594367 0.9999595
## DYNLL2 1.163644e+00 0.315797610 0.9999595
## NUDT16 1.162932e+00 0.316018539 0.9999595
## ADH5 1.162506e+00 0.316150709 0.9999595
## BMP2K 1.162414e+00 0.316179208 0.9999595
## HMGCS1 1.162310e+00 0.316211512 0.9999595
## URI1 1.161313e+00 0.316520774 0.9999595
## TBC1D8 1.160864e+00 0.316660426 0.9999595
## DUS4L 1.160126e+00 0.316889740 0.9999595
## ISG15 1.159960e+00 0.316941544 0.9999595
## CCDC58 1.159834e+00 0.316980528 0.9999595
## ZNF263 1.159709e+00 0.317019426 0.9999595
## HMGN3 1.159683e+00 0.317027572 0.9999595
## DZIP3 1.158523e+00 0.317388568 0.9999595
## ATP10B 1.158001e+00 0.317551270 0.9999595
## AK1 1.157022e+00 0.317856503 0.9999595
## PTPN2 1.156431e+00 0.318040975 0.9999595
## ANKRD23 1.156091e+00 0.318147187 0.9999595
## CCDC65 1.155988e+00 0.318179082 0.9999595
## HNRNPUL2 1.155915e+00 0.318202003 0.9999595
## GNRH1 1.155604e+00 0.318299066 0.9999595
## MOB3B 1.154204e+00 0.318736842 0.9999595
## NUP88 1.153947e+00 0.318817204 0.9999595
## NOTCH2NLC 1.153857e+00 0.318845277 0.9999595
## SEMA4C 1.153844e+00 0.318849383 0.9999595
## SCN9A 1.152358e+00 0.319314652 0.9999595
## GCFC2 1.151621e+00 0.319545601 0.9999595
## RASGEF1B 1.151395e+00 0.319616768 0.9999595
## METAP1D 1.151326e+00 0.319638394 0.9999595
## THAP11 1.151000e+00 0.319740502 0.9999595
## CHPF 1.150933e+00 0.319761643 0.9999595
## THOC1 1.150158e+00 0.320004843 0.9999595
## DSTN 1.150119e+00 0.320017010 0.9999595
## UFSP1 1.148820e+00 0.320425446 0.9999595
## CSF1 1.148589e+00 0.320497988 0.9999595
## MARK3 1.148356e+00 0.320571277 0.9999595
## TRIT1 1.148054e+00 0.320666357 0.9999595
## ITPKB 1.147415e+00 0.320867679 0.9999595
## DPH1 1.146145e+00 0.321267683 0.9999595
## SRP54 1.145870e+00 0.321354403 0.9999595
## ORMDL3 1.145374e+00 0.321510826 0.9999595
## MRPL22 1.144764e+00 0.321703411 0.9999595
## BORCS8 1.144471e+00 0.321795908 0.9999595
## FEZ2 1.143756e+00 0.322021858 0.9999595
## TNFRSF10B 1.143039e+00 0.322248792 0.9999595
## POLDIP3 1.142397e+00 0.322451894 0.9999595
## IPP 1.142292e+00 0.322485040 0.9999595
## ZKSCAN7 1.142284e+00 0.322487512 0.9999595
## GNB4 1.142178e+00 0.322521239 0.9999595
## DHRS7 1.141392e+00 0.322770192 0.9999595
## ZNF582 1.140707e+00 0.322987188 0.9999595
## NAE1 1.140409e+00 0.323081719 0.9999595
## EGFL8 1.139811e+00 0.323271480 0.9999595
## POLR2K 1.138245e+00 0.323768709 0.9999595
## BATF2 1.137187e+00 0.324105241 0.9999595
## GGCT 1.136672e+00 0.324268878 0.9999595
## SPATA20 1.136097e+00 0.324452131 0.9999595
## ACACA 1.136049e+00 0.324467509 0.9999595
## SCML1 1.135505e+00 0.324640645 0.9999595
## CEP89 1.134958e+00 0.324815022 0.9999595
## PKIA 1.133348e+00 0.325328862 0.9999595
## RRP15 1.132946e+00 0.325457401 0.9999595
## ATXN7L3 1.131848e+00 0.325808130 0.9999595
## OPA3 1.131591e+00 0.325890525 0.9999595
## PHGDH 1.131528e+00 0.325910604 0.9999595
## TMEM208 1.131248e+00 0.326000145 0.9999595
## TSEN15 1.130112e+00 0.326364039 0.9999595
## TRPV1 1.129990e+00 0.326403166 0.9999595
## SH2D1A 1.129450e+00 0.326576153 0.9999595
## PLEK2 1.129260e+00 0.326637041 0.9999595
## RPF1 1.129001e+00 0.326720209 0.9999595
## EMILIN2 1.127986e+00 0.327046106 0.9999595
## ALKBH5 1.127933e+00 0.327063108 0.9999595
## TFB2M 1.127798e+00 0.327106314 0.9999595
## RBBP7 1.127178e+00 0.327305449 0.9999595
## DTD1 1.127177e+00 0.327305793 0.9999595
## DISP1 1.125810e+00 0.327745417 0.9999595
## CHRNB1 1.124822e+00 0.328063361 0.9999595
## PARP4 1.124817e+00 0.328065256 0.9999595
## GSTZ1 1.124009e+00 0.328325368 0.9999595
## PCID2 1.123855e+00 0.328375269 0.9999595
## HEMK1 1.123300e+00 0.328553966 0.9999595
## PLAGL1 1.123174e+00 0.328594627 0.9999595
## RPL6 1.122821e+00 0.328708796 0.9999595
## CLK2 1.122396e+00 0.328845952 0.9999595
## TMEM25 1.121483e+00 0.329140690 0.9999595
## HINFP 1.120797e+00 0.329362518 0.9999595
## WDR73 1.120098e+00 0.329588571 0.9999595
## PHLPP1 1.119806e+00 0.329683137 0.9999595
## C10orf88 1.118978e+00 0.329951515 0.9999595
## TSPAN9 1.118280e+00 0.330177509 0.9999595
## CD33 1.118245e+00 0.330188927 0.9999595
## PIGW 1.117746e+00 0.330350696 0.9999595
## RPA1 1.117292e+00 0.330497994 0.9999595
## NT5DC2 1.116605e+00 0.330721195 0.9999595
## PTGR2 1.116402e+00 0.330787023 0.9999595
## CENPV 1.115795e+00 0.330984133 0.9999595
## MT1E 1.115550e+00 0.331064011 0.9999595
## ZNF607 1.115279e+00 0.331152056 0.9999595
## IVD 1.113720e+00 0.331659290 0.9999595
## GJC1 1.112569e+00 0.332034387 0.9999595
## ACOT9 1.110170e+00 0.332817815 0.9999595
## TTC30A 1.110066e+00 0.332851754 0.9999595
## NFIX 1.109895e+00 0.332907635 0.9999595
## PTTG1 1.108947e+00 0.333217644 0.9999595
## TAF15 1.108874e+00 0.333241573 0.9999595
## DISC1 1.107583e+00 0.333664203 0.9999595
## BBS7 1.106743e+00 0.333939680 0.9999595
## PPM1M 1.106501e+00 0.334019064 0.9999595
## PLPP1 1.106376e+00 0.334060029 0.9999595
## C12orf60 1.106328e+00 0.334076001 0.9999595
## RPL15 1.106144e+00 0.334136289 0.9999595
## HAX1 1.105816e+00 0.334243892 0.9999595
## MRPS10 1.105658e+00 0.334295825 0.9999595
## TMEM272 1.104795e+00 0.334579281 0.9999595
## SYK 1.104791e+00 0.334580704 0.9999595
## PGRMC1 1.104709e+00 0.334607540 0.9999595
## SNTA1 1.104666e+00 0.334621714 0.9999595
## PHYHD1 1.104013e+00 0.334836284 0.9999595
## RGL1 1.103556e+00 0.334986509 0.9999595
## RPAIN 1.103477e+00 0.335012631 0.9999595
## CFDP1 1.103036e+00 0.335157655 0.9999595
## SHPK 1.102659e+00 0.335282016 0.9999595
## HMGB3 1.102513e+00 0.335329881 0.9999595
## SPRYD3 1.102512e+00 0.335330452 0.9999595
## C9orf139 1.102091e+00 0.335469057 0.9999595
## CD59 1.101968e+00 0.335509369 0.9999595
## RSAD1 1.101952e+00 0.335514918 0.9999595
## POLR3K 1.101748e+00 0.335582152 0.9999595
## FRMD8 1.101744e+00 0.335583351 0.9999595
## RBMS2 1.101636e+00 0.335618949 0.9999595
## TRIM46 1.100617e+00 0.335954877 0.9999595
## TMLHE 1.100566e+00 0.335971748 0.9999595
## GPR174 1.100116e+00 0.336120460 0.9999595
## FBXW2 1.099010e+00 0.336485635 0.9999595
## ABT1 1.098745e+00 0.336573203 0.9999595
## PI3 1.097727e+00 0.336910135 0.9999595
## MT2A 1.097455e+00 0.336999960 0.9999595
## CCL4L1 1.096875e+00 0.337192132 0.9999595
## TUBB4B 1.096858e+00 0.337197786 0.9999595
## PTPN14 1.096391e+00 0.337352397 0.9999595
## CCDC57 1.096302e+00 0.337382076 0.9999595
## LMLN 1.095858e+00 0.337529134 0.9999595
## ESYT1 1.095808e+00 0.337545699 0.9999595
## TMEM60 1.095797e+00 0.337549281 0.9999595
## L3MBTL4 1.095644e+00 0.337600101 0.9999595
## TNK1 1.095357e+00 0.337695264 0.9999595
## GHRL 1.095191e+00 0.337750407 0.9999595
## EPSTI1 1.093528e+00 0.338302495 0.9999595
## ORM1 1.093397e+00 0.338345987 0.9999595
## OCIAD2 1.093397e+00 0.338346058 0.9999595
## ZNHIT6 1.092524e+00 0.338636496 0.9999595
## HGF 1.092265e+00 0.338722531 0.9999595
## MARCHF9 1.091289e+00 0.339047428 0.9999595
## ZNF395 1.090407e+00 0.339341417 0.9999595
## RUSC2 1.089563e+00 0.339622880 0.9999595
## TRMT13 1.089205e+00 0.339742395 0.9999595
## MYDGF 1.089067e+00 0.339788508 0.9999595
## FAM133B 1.088129e+00 0.340101580 0.9999595
## MYO18A 1.087916e+00 0.340172764 0.9999595
## KLF8 1.087659e+00 0.340258670 0.9999595
## SKAP1 1.087566e+00 0.340289747 0.9999595
## RPL26L1 1.087327e+00 0.340369704 0.9999595
## BSDC1 1.086982e+00 0.340485097 0.9999595
## GOLGA7B 1.086893e+00 0.340514903 0.9999595
## PRUNE2 1.086798e+00 0.340546827 0.9999595
## ORC5 1.086456e+00 0.340661198 0.9999595
## MEOX1 1.085850e+00 0.340864120 0.9999595
## ZNF852 1.085005e+00 0.341146998 0.9999595
## STARD4 1.084516e+00 0.341311050 0.9999595
## RPL30 1.084410e+00 0.341346515 0.9999595
## RPL22 1.083027e+00 0.341810804 0.9999595
## ZNF74 1.082957e+00 0.341834160 0.9999595
## HSBP1L1 1.082776e+00 0.341895104 0.9999595
## ZNF286A 1.082590e+00 0.341957352 0.9999595
## CRY1 1.082577e+00 0.341961793 0.9999595
## VNN2 1.082538e+00 0.341974863 0.9999595
## GP6 1.082358e+00 0.342035492 0.9999595
## PRXL2B 1.081909e+00 0.342186380 0.9999595
## FASTKD3 1.081502e+00 0.342323228 0.9999595
## TMEM248 1.081411e+00 0.342354006 0.9999595
## MGLL 1.081340e+00 0.342377881 0.9999595
## THBS3 1.080943e+00 0.342511422 0.9999595
## BRD3 1.079274e+00 0.343073619 0.9999595
## PHF7 1.079120e+00 0.343125357 0.9999595
## POP7 1.078853e+00 0.343215440 0.9999595
## ZNF671 1.078687e+00 0.343271300 0.9999595
## KIAA0513 1.078663e+00 0.343279336 0.9999595
## MPI 1.078289e+00 0.343405572 0.9999595
## IRAG2 1.078208e+00 0.343433067 0.9999595
## POU2AF1 1.078024e+00 0.343494973 0.9999595
## LTA 1.077941e+00 0.343522974 0.9999595
## ISCU 1.077715e+00 0.343599243 0.9999595
## TRIM8 1.077414e+00 0.343701046 0.9999595
## ITSN1 1.077163e+00 0.343785761 0.9999595
## MAN1B1 1.077139e+00 0.343793810 0.9999595
## SPIN2B 1.076994e+00 0.343842802 0.9999595
## SYNGAP1 1.076896e+00 0.343876158 0.9999595
## FHL1 1.076496e+00 0.344011315 0.9999595
## KCNK13 1.076348e+00 0.344061394 0.9999595
## UBE2Z 1.076234e+00 0.344099870 0.9999595
## MCCC1 1.075982e+00 0.344185121 0.9999595
## SERPINB1 1.075819e+00 0.344240227 0.9999595
## IDI1 1.075384e+00 0.344387413 0.9999595
## GNPDA2 1.075219e+00 0.344443105 0.9999595
## FAM222B 1.074308e+00 0.344751635 0.9999595
## TRAF3 1.074051e+00 0.344838544 0.9999595
## MACF1 1.073846e+00 0.344908300 0.9999595
## HPN 1.073780e+00 0.344930592 0.9999595
## CDC37L1 1.073766e+00 0.344935185 0.9999595
## ST3GAL2 1.072279e+00 0.345439608 0.9999595
## TXNDC15 1.072212e+00 0.345462404 0.9999595
## C1orf116 1.072169e+00 0.345476873 0.9999595
## PTMA 1.071085e+00 0.345845186 0.9999595
## PRDX4 1.070837e+00 0.345929553 0.9999595
## CD96 1.070734e+00 0.345964685 0.9999595
## VAPB 1.070602e+00 0.346009562 0.9999595
## ASB6 1.070368e+00 0.346088911 0.9999595
## JADE1 1.069936e+00 0.346235815 0.9999595
## TXNDC17 1.069673e+00 0.346325295 0.9999595
## USP36 1.069121e+00 0.346513483 0.9999595
## B3GALNT1 1.069091e+00 0.346523718 0.9999595
## TRIP4 1.068601e+00 0.346690620 0.9999595
## SUB1 1.068059e+00 0.346875078 0.9999595
## RPS4X 1.066954e+00 0.347251990 0.9999595
## CTNNAL1 1.066811e+00 0.347300836 0.9999595
## CEP95 1.066471e+00 0.347417052 0.9999595
## KCND1 1.066162e+00 0.347522531 0.9999595
## ZFP82 1.065879e+00 0.347619253 0.9999595
## SEMA4G 1.065806e+00 0.347644207 0.9999595
## SEL1L3 1.065501e+00 0.347748241 0.9999595
## NUP85 1.064424e+00 0.348116464 0.9999595
## RPS27A 1.064378e+00 0.348132254 0.9999595
## FHDC1 1.062071e+00 0.348922644 0.9999595
## RPL31 1.061461e+00 0.349131837 0.9999595
## PLAG1 1.061434e+00 0.349141147 0.9999595
## ZNF709 1.060430e+00 0.349485717 0.9999595
## FAM220A 1.060411e+00 0.349492245 0.9999595
## SAMM50 1.060108e+00 0.349596556 0.9999595
## CDYL 1.059270e+00 0.349884602 0.9999595
## SPATS2L 1.059240e+00 0.349894897 0.9999595
## TMEM17 1.059208e+00 0.349905907 0.9999595
## TRPM6 1.058726e+00 0.350071480 0.9999595
## TCEANC2 1.058097e+00 0.350288101 0.9999595
## KSR1 1.058005e+00 0.350319939 0.9999595
## CLN5 1.057658e+00 0.350439205 0.9999595
## ZNF777 1.056806e+00 0.350732726 0.9999595
## APOBEC3F 1.056735e+00 0.350757217 0.9999595
## DUSP14 1.056565e+00 0.350815815 0.9999595
## BMP6 1.056450e+00 0.350855590 0.9999595
## FANCE 1.056329e+00 0.350897433 0.9999595
## NXPE3 1.055626e+00 0.351140079 0.9999595
## ZNF717 1.055546e+00 0.351167588 0.9999595
## SOCS2 1.055526e+00 0.351174372 0.9999595
## MAF 1.055398e+00 0.351218602 0.9999595
## RCCD1 1.054815e+00 0.351420065 0.9999595
## ZNF26 1.054109e+00 0.351663849 0.9999595
## CAMKK2 1.054066e+00 0.351678907 0.9999595
## DENND2C 1.053951e+00 0.351718355 0.9999595
## ZNF10 1.053908e+00 0.351733324 0.9999595
## TMEM223 1.053570e+00 0.351850329 0.9999595
## ZNF584 1.053474e+00 0.351883586 0.9999595
## TBC1D7-LOC100130357 1.053471e+00 0.351884536 0.9999595
## C12orf65 1.053194e+00 0.351980278 0.9999595
## BATF3 1.053109e+00 0.352009650 0.9999595
## ATP8B2 1.052394e+00 0.352257167 0.9999595
## BOLA1 1.051460e+00 0.352580681 0.9999595
## SH3BP2 1.051318e+00 0.352629948 0.9999595
## TBL2 1.051202e+00 0.352670322 0.9999595
## SKIL 1.050717e+00 0.352838540 0.9999595
## DPM2 1.050319e+00 0.352976601 0.9999595
## TRPC1 1.049287e+00 0.353334906 0.9999595
## ANPEP 1.048944e+00 0.353453977 0.9999595
## NR2C1 1.048872e+00 0.353479098 0.9999595
## ZNF256 1.047701e+00 0.353885972 0.9999595
## JAKMIP1 1.047699e+00 0.353886647 0.9999595
## PLIN5 1.047084e+00 0.354100953 0.9999595
## ARHGAP18 1.046998e+00 0.354130668 0.9999595
## ZNF75A 1.046937e+00 0.354151994 0.9999595
## FANCB 1.046428e+00 0.354329079 0.9999595
## HCLS1 1.046410e+00 0.354335460 0.9999595
## LOC102724488 1.046048e+00 0.354461757 0.9999595
## DUSP16 1.045896e+00 0.354514565 0.9999595
## PFKFB4 1.045181e+00 0.354763880 0.9999595
## ITK 1.045131e+00 0.354781161 0.9999595
## POMT2 1.044568e+00 0.354977646 0.9999595
## SPACA9 1.044517e+00 0.354995566 0.9999595
## HUS1 1.044503e+00 0.355000419 0.9999595
## TPM2 1.044254e+00 0.355087202 0.9999595
## SEC24A 1.043894e+00 0.355212866 0.9999595
## GFOD2 1.043804e+00 0.355244448 0.9999595
## PCBD2 1.043723e+00 0.355272896 0.9999595
## EMG1 1.043601e+00 0.355315420 0.9999595
## ZSCAN26 1.043438e+00 0.355372359 0.9999595
## ZBTB3 1.043261e+00 0.355434210 0.9999595
## LAPTM4A 1.042921e+00 0.355553042 0.9999595
## CARNMT1 1.042834e+00 0.355583360 0.9999595
## PARP16 1.042831e+00 0.355584406 0.9999595
## CEP57L1 1.042359e+00 0.355749445 0.9999595
## COQ10A 1.041352e+00 0.356102043 0.9999595
## GOLM1 1.041328e+00 0.356110299 0.9999595
## RGPD1 1.040782e+00 0.356301424 0.9999595
## MUC1 1.040417e+00 0.356429430 0.9999595
## KLHDC10 1.040222e+00 0.356497779 0.9999595
## DHX16 1.039101e+00 0.356891029 0.9999595
## TEP1 1.038582e+00 0.357072883 0.9999595
## OBSCN 1.037580e+00 0.357424861 0.9999595
## SORT1 1.037282e+00 0.357529651 0.9999595
## EHHADH 1.036672e+00 0.357744289 0.9999595
## SAMD9 1.036538e+00 0.357791337 0.9999595
## LTV1 1.036521e+00 0.357797198 0.9999595
## ZNF382 1.036496e+00 0.357805988 0.9999595
## ZNF182 1.036453e+00 0.357821181 0.9999595
## NKX3-1 1.036222e+00 0.357902712 0.9999595
## ORAI2 1.036215e+00 0.357904864 0.9999595
## CPLANE1 1.035695e+00 0.358088178 0.9999595
## WBP1L 1.035065e+00 0.358309791 0.9999595
## RGCC 1.034919e+00 0.358361369 0.9999595
## MB21D2 1.034121e+00 0.358642718 0.9999595
## SERP1 1.033484e+00 0.358867325 0.9999595
## C1RL 1.033245e+00 0.358951731 0.9999595
## SPTLC2 1.033075e+00 0.359011840 0.9999595
## MYH10 1.032819e+00 0.359102219 0.9999595
## INTS14 1.032642e+00 0.359164739 0.9999595
## CXCR5 1.032359e+00 0.359264533 0.9999595
## ZNF316 1.032302e+00 0.359284840 0.9999595
## NPFFR1 1.032186e+00 0.359325783 0.9999595
## PI4KB 1.032095e+00 0.359357938 0.9999595
## WDR89 1.031930e+00 0.359416088 0.9999595
## GANAB 1.031323e+00 0.359630919 0.9999595
## CLC 1.031261e+00 0.359652528 0.9999595
## OSCP1 1.031217e+00 0.359668282 0.9999595
## NUGGC 1.030947e+00 0.359763647 0.9999595
## FCRL2 1.030928e+00 0.359770577 0.9999595
## C15orf62 1.030544e+00 0.359906324 0.9999595
## CSE1L 1.030484e+00 0.359927622 0.9999595
## SMCO4 1.030311e+00 0.359988730 0.9999595
## RPS10-NUDT3 1.029498e+00 0.360276747 0.9999595
## NACA 1.029121e+00 0.360410293 0.9999595
## SCN1B 1.028873e+00 0.360498323 0.9999595
## CCT2 1.028534e+00 0.360618577 0.9999595
## SPINT2 1.028402e+00 0.360665416 0.9999595
## EFL1 1.028383e+00 0.360672095 0.9999595
## ZNF33B 1.028200e+00 0.360737010 0.9999595
## FCRL1 1.028109e+00 0.360769330 0.9999595
## CNIH1 1.027965e+00 0.360820279 0.9999595
## ITPR2 1.027817e+00 0.360872738 0.9999595
## CA11 1.027071e+00 0.361137540 0.9999595
## ADARB1 1.026994e+00 0.361164948 0.9999595
## NAP1L4 1.026949e+00 0.361180957 0.9999595
## CNPPD1 1.026141e+00 0.361468171 0.9999595
## PAK1 1.026136e+00 0.361469736 0.9999595
## WDR59 1.026083e+00 0.361488582 0.9999595
## SPIB 1.024595e+00 0.362017957 0.9999595
## CEP43 1.024401e+00 0.362087139 0.9999595
## ASB1 1.024401e+00 0.362087214 0.9999595
## NAF1 1.024054e+00 0.362210721 0.9999595
## MFSD8 1.023527e+00 0.362398308 0.9999595
## CLEC5A 1.023350e+00 0.362461675 0.9999595
## WASHC3 1.023089e+00 0.362554755 0.9999595
## NIBAN3 1.022869e+00 0.362633123 0.9999595
## CCL28 1.022665e+00 0.362705879 0.9999595
## FKBP11 1.022589e+00 0.362733028 0.9999595
## BTF3 1.022448e+00 0.362783080 0.9999595
## CDAN1 1.022115e+00 0.362902214 0.9999595
## AOC3 1.021998e+00 0.362943895 0.9999595
## GPATCH11 1.021721e+00 0.363042551 0.9999595
## MAP3K12 1.020684e+00 0.363413020 0.9999595
## LGALS9 1.020672e+00 0.363417337 0.9999595
## TMEM14C 1.020668e+00 0.363419007 0.9999595
## DCUN1D4 1.020044e+00 0.363642011 0.9999595
## HABP4 1.019759e+00 0.363743902 0.9999595
## TK2 1.018724e+00 0.364114560 0.9999595
## TENT5C 1.018407e+00 0.364227806 0.9999595
## TSPAN31 1.018066e+00 0.364350068 0.9999595
## ZNF419 1.017668e+00 0.364492767 0.9999595
## SCAP 1.017263e+00 0.364638114 0.9999595
## DDX23 1.017098e+00 0.364696993 0.9999595
## RPS13 1.017051e+00 0.364713966 0.9999595
## BTN3A3 1.016777e+00 0.364812234 0.9999595
## PHLDA1 1.015192e+00 0.365381529 0.9999595
## CLECL1 1.014645e+00 0.365578007 0.9999595
## ADD1 1.014634e+00 0.365582021 0.9999595
## HK2 1.014578e+00 0.365602389 0.9999595
## ATP6V0A2 1.014089e+00 0.365777951 0.9999595
## TUFT1 1.013163e+00 0.366111573 0.9999595
## SNX1 1.012138e+00 0.366480614 0.9999595
## DDTL 1.011495e+00 0.366712608 0.9999595
## RPS15A 1.011167e+00 0.366830841 0.9999595
## ZNF248 1.011075e+00 0.366864100 0.9999595
## CHST2 1.010836e+00 0.366950429 0.9999595
## UTP4 1.010832e+00 0.366951744 0.9999595
## ETAA1 1.009846e+00 0.367308048 0.9999595
## CD1D 1.009661e+00 0.367374694 0.9999595
## METTL5 1.009339e+00 0.367491086 0.9999595
## ACADSB 1.009064e+00 0.367590498 0.9999595
## OTUD7B 1.008971e+00 0.367624343 0.9999595
## ALDOC 1.008821e+00 0.367678525 0.9999595
## SLC6A4 1.008402e+00 0.367829974 0.9999595
## HAPLN3 1.008400e+00 0.367830746 0.9999595
## HOXB2 1.008121e+00 0.367931859 0.9999595
## PATJ 1.008028e+00 0.367965274 0.9999595
## SLC35E1 1.007998e+00 0.367976183 0.9999595
## MSMO1 1.007760e+00 0.368062259 0.9999595
## CEP70 1.007618e+00 0.368113923 0.9999595
## LRRC6 1.007594e+00 0.368122555 0.9999595
## ABHD18 1.007483e+00 0.368162539 0.9999595
## SSR3 1.007456e+00 0.368172428 0.9999595
## AMDHD1 1.007376e+00 0.368201558 0.9999595
## PAPLN 1.007211e+00 0.368261062 0.9999595
## ENPP2 1.006338e+00 0.368577759 0.9999595
## NMD3 1.006003e+00 0.368698948 0.9999595
## UTRN 1.005983e+00 0.368706195 0.9999595
## BPGM 1.005594e+00 0.368847406 0.9999595
## TMEM234 1.005460e+00 0.368895913 0.9999595
## VDR 1.005248e+00 0.368972945 0.9999595
## ATP6AP1 1.004388e+00 0.369285477 0.9999595
## ANO9 1.003873e+00 0.369472601 0.9999595
## STIMATE 1.003466e+00 0.369620271 0.9999595
## MEST 1.003279e+00 0.369688326 0.9999595
## SARM1 1.003182e+00 0.369723546 0.9999595
## DERL2 1.002561e+00 0.369949729 0.9999595
## ALDH9A1 1.002104e+00 0.370116019 0.9999595
## NFXL1 1.001656e+00 0.370279312 0.9999595
## AHI1 1.001357e+00 0.370387997 0.9999595
## ZNF81 1.001244e+00 0.370429240 0.9999595
## PDIA4 1.001172e+00 0.370455627 0.9999595
## ERICH1 1.001103e+00 0.370480561 0.9999595
## NEK3 1.000749e+00 0.370609772 0.9999595
## SH3RF1 1.000594e+00 0.370666428 0.9999595
## ARL1 9.994827e-01 0.371071725 0.9999595
## ECPAS 9.993710e-01 0.371112521 0.9999595
## MON2 9.992149e-01 0.371169507 0.9999595
## BCAS2 9.989699e-01 0.371258993 0.9999595
## BEND2 9.984869e-01 0.371435459 0.9999595
## CACNB3 9.982650e-01 0.371516534 0.9999595
## C15orf40 9.973000e-01 0.371869432 0.9999595
## E2F2 9.960080e-01 0.372342454 0.9999595
## ZNF19 9.953317e-01 0.372590302 0.9999595
## NAIF1 9.952934e-01 0.372604343 0.9999595
## HSD17B7 9.948181e-01 0.372778613 0.9999595
## SIL1 9.943194e-01 0.372961578 0.9999595
## NUDT13 9.934439e-01 0.373283005 0.9999595
## LIPC 9.930816e-01 0.373416104 0.9999595
## DENND11 9.927763e-01 0.373528273 0.9999595
## ERLEC1 9.926779e-01 0.373564442 0.9999595
## NHLRC3 9.926610e-01 0.373570645 0.9999595
## C1QTNF6 9.921579e-01 0.373755643 0.9999595
## CNKSR1 9.916038e-01 0.373959456 0.9999595
## STX2 9.914866e-01 0.374002586 0.9999595
## MFSD1 9.908031e-01 0.374254192 0.9999595
## PFDN4 9.904622e-01 0.374379777 0.9999595
## NCKAP5L 9.901337e-01 0.374500802 0.9999595
## RASGRP4 9.897378e-01 0.374646708 0.9999595
## RNF112 9.894285e-01 0.374760760 0.9999595
## GALNT12 9.885007e-01 0.375103044 0.9999595
## GSDMB 9.883989e-01 0.375140635 0.9999595
## YIPF6 9.881445e-01 0.375234543 0.9999595
## CD177 9.881348e-01 0.375238126 0.9999595
## NAIP 9.872222e-01 0.375575245 0.9999595
## TSGA10 9.871367e-01 0.375606853 0.9999595
## ATG14 9.869753e-01 0.375666504 0.9999595
## BTLA 9.867581e-01 0.375746803 0.9999595
## ST7L 9.865419e-01 0.375826757 0.9999595
## XRN2 9.864718e-01 0.375852683 0.9999595
## SBF2 9.862001e-01 0.375953205 0.9999595
## TBC1D17 9.860237e-01 0.376018458 0.9999595
## ACY1 9.859955e-01 0.376028899 0.9999595
## NOCT 9.857969e-01 0.376102407 0.9999595
## NLK 9.854553e-01 0.376228842 0.9999595
## MORC4 9.854045e-01 0.376247645 0.9999595
## FBH1 9.841722e-01 0.376704171 0.9999595
## MKNK1 9.838593e-01 0.376820187 0.9999595
## SSH1 9.835469e-01 0.376936064 0.9999595
## SHC1 9.834974e-01 0.376954425 0.9999595
## EIF1AX 9.833659e-01 0.377003210 0.9999595
## ATF7IP2 9.831964e-01 0.377066088 0.9999595
## VSIG10 9.827124e-01 0.377245732 0.9999595
## TET2 9.826083e-01 0.377284377 0.9999595
## UBXN6 9.820862e-01 0.377478296 0.9999595
## QPRT 9.819060e-01 0.377545241 0.9999595
## SNAPIN 9.819010e-01 0.377547082 0.9999595
## BSG 9.817164e-01 0.377615675 0.9999595
## C2orf50 9.816610e-01 0.377636275 0.9999595
## CSAD 9.809497e-01 0.377900728 0.9999595
## LRRC59 9.809347e-01 0.377906283 0.9999595
## TARS3 9.806978e-01 0.377994396 0.9999595
## ACP3 9.802814e-01 0.378149324 0.9999595
## RPS18 9.801907e-01 0.378183087 0.9999595
## ZNF761 9.800626e-01 0.378230779 0.9999595
## TAF5 9.796153e-01 0.378397302 0.9999595
## MAPRE1 9.792124e-01 0.378547395 0.9999595
## LRRC46 9.790108e-01 0.378622515 0.9999595
## EEF2 9.789406e-01 0.378648646 0.9999595
## BICRAL 9.784256e-01 0.378840609 0.9999595
## SSC4D 9.782460e-01 0.378907588 0.9999595
## FZD1 9.780315e-01 0.378987587 0.9999595
## ALX3 9.776398e-01 0.379133731 0.9999595
## FAN1 9.773883e-01 0.379227560 0.9999595
## SDHAF4 9.766735e-01 0.379494450 0.9999595
## POMT1 9.764207e-01 0.379588897 0.9999595
## DMAC2 9.762832e-01 0.379640267 0.9999595
## MYH3 9.762455e-01 0.379654356 0.9999595
## S100A8 9.754260e-01 0.379960693 0.9999595
## PTRH2 9.751581e-01 0.380060895 0.9999595
## ZNF827 9.749371e-01 0.380143568 0.9999595
## SPECC1L 9.742853e-01 0.380387515 0.9999595
## HEMGN 9.742396e-01 0.380404599 0.9999595
## TMEM42 9.741057e-01 0.380454766 0.9999595
## FAM122A 9.736205e-01 0.380636471 0.9999595
## STPG1 9.736149e-01 0.380638573 0.9999595
## CETN3 9.735549e-01 0.380661062 0.9999595
## UFD1 9.735099e-01 0.380677907 0.9999595
## KIF22 9.732270e-01 0.380783942 0.9999595
## CASP5 9.729290e-01 0.380895622 0.9999595
## PLAAT1 9.728287e-01 0.380933252 0.9999595
## ARL3 9.720153e-01 0.381238345 0.9999595
## CIC 9.714690e-01 0.381443383 0.9999595
## PIK3AP1 9.709114e-01 0.381652780 0.9999595
## ZC3H12D 9.704112e-01 0.381840745 0.9999595
## ATP6V1E2 9.700193e-01 0.381988077 0.9999595
## MYO1D 9.698910e-01 0.382036297 0.9999595
## EIF4ENIF1 9.697720e-01 0.382081076 0.9999595
## FGGY 9.697535e-01 0.382088012 0.9999595
## RSL24D1 9.685940e-01 0.382524345 0.9999595
## IL11RA 9.685904e-01 0.382525710 0.9999595
## BCL3 9.683099e-01 0.382631357 0.9999595
## HK3 9.680009e-01 0.382747735 0.9999595
## SLC38A5 9.679286e-01 0.382774970 0.9999595
## AMPD3 9.672542e-01 0.383029165 0.9999595
## RPL26 9.672023e-01 0.383048720 0.9999595
## FOSL1 9.669343e-01 0.383149782 0.9999595
## CAMP 9.665557e-01 0.383292618 0.9999595
## RAD23A 9.661704e-01 0.383438011 0.9999595
## ZNF764 9.657364e-01 0.383601873 0.9999595
## MRI1 9.657016e-01 0.383614990 0.9999595
## TRIB2 9.655905e-01 0.383656951 0.9999595
## ZNF302 9.654827e-01 0.383697652 0.9999595
## SLC9A9 9.653679e-01 0.383741019 0.9999595
## HERPUD1 9.644385e-01 0.384092259 0.9999595
## ZNF266 9.643221e-01 0.384136291 0.9999595
## MCF2L 9.640433e-01 0.384241722 0.9999595
## ZNF653 9.637210e-01 0.384363656 0.9999595
## GAS7 9.635682e-01 0.384421485 0.9999595
## RABGGTB 9.635133e-01 0.384442241 0.9999595
## DGKE 9.633671e-01 0.384497593 0.9999595
## TMEM268 9.630035e-01 0.384635247 0.9999595
## IGHM 9.629536e-01 0.384654127 0.9999595
## KLHDC2 9.623265e-01 0.384891671 0.9999595
## IL5RA 9.623011e-01 0.384901291 0.9999595
## ZNF551 9.621747e-01 0.384949165 0.9999595
## RPS8 9.615764e-01 0.385175996 0.9999595
## KLHL36 9.615008e-01 0.385204635 0.9999595
## ATF6 9.607275e-01 0.385498016 0.9999595
## COLGALT1 9.594325e-01 0.385989795 0.9999595
## NECAB3 9.588554e-01 0.386209153 0.9999595
## MRPL40 9.585870e-01 0.386311200 0.9999595
## SLC12A2 9.580964e-01 0.386497830 0.9999595
## SCAI 9.579168e-01 0.386566180 0.9999595
## PPIB 9.574666e-01 0.386737556 0.9999595
## RPS3A 9.568740e-01 0.386963230 0.9999595
## ZNF420 9.565817e-01 0.387074602 0.9999595
## SLC17A9 9.558822e-01 0.387341274 0.9999595
## PSTPIP2 9.552739e-01 0.387573315 0.9999595
## GPR157 9.552521e-01 0.387581624 0.9999595
## ALG13 9.550143e-01 0.387672409 0.9999595
## MCFD2 9.549518e-01 0.387696236 0.9999595
## ARMH2 9.548480e-01 0.387735886 0.9999595
## COMMD3-BMI1 9.537670e-01 0.388148762 0.9999595
## ARHGAP15 9.519066e-01 0.388860387 0.9999595
## CHCHD4 9.515626e-01 0.388992098 0.9999595
## COX20 9.513025e-01 0.389091763 0.9999595
## CNOT6 9.509712e-01 0.389218679 0.9999595
## RIMKLB 9.501942e-01 0.389516584 0.9999595
## NAP1L5 9.500620e-01 0.389567264 0.9999595
## JCHAIN 9.498836e-01 0.389635708 0.9999595
## ENTR1 9.498650e-01 0.389642844 0.9999595
## SFXN3 9.496721e-01 0.389716845 0.9999595
## JHY 9.493311e-01 0.389847723 0.9999595
## EHMT1 9.486504e-01 0.390109133 0.9999595
## RHOU 9.486272e-01 0.390118044 0.9999595
## CHCHD3 9.468001e-01 0.390820524 0.9999595
## MED31 9.465040e-01 0.390934459 0.9999595
## CRYBB2 9.464582e-01 0.390952104 0.9999595
## NEMP2 9.460290e-01 0.391117381 0.9999595
## ZNF629 9.459013e-01 0.391166546 0.9999595
## C7orf25 9.457685e-01 0.391217697 0.9999595
## GLRX2 9.454767e-01 0.391330121 0.9999595
## CIDEB 9.452215e-01 0.391428467 0.9999595
## RBM17 9.446203e-01 0.391660275 0.9999595
## HIP1R 9.440799e-01 0.391868733 0.9999595
## TMC6 9.437852e-01 0.391982478 0.9999595
## SDHC 9.435888e-01 0.392058314 0.9999595
## IL17RD 9.435662e-01 0.392067034 0.9999595
## SLIT1 9.435526e-01 0.392072279 0.9999595
## AP3B1 9.435470e-01 0.392074425 0.9999595
## FAM216A 9.431650e-01 0.392221970 0.9999595
## CYSTM1 9.431411e-01 0.392231187 0.9999595
## TAF4B 9.431029e-01 0.392245927 0.9999595
## LANCL1 9.430056e-01 0.392283523 0.9999595
## APOL1 9.429302e-01 0.392312652 0.9999595
## PPIL6 9.428887e-01 0.392328689 0.9999595
## SPRY2 9.427245e-01 0.392392110 0.9999595
## USP53 9.426764e-01 0.392410712 0.9999595
## UFC1 9.426008e-01 0.392439934 0.9999595
## SPCS3 9.424020e-01 0.392516767 0.9999595
## PALLD 9.423638e-01 0.392531519 0.9999595
## C3orf18 9.419089e-01 0.392707409 0.9999595
## HNRNPH3 9.411897e-01 0.392985630 0.9999595
## TMEM229B 9.408969e-01 0.393098944 0.9999595
## TCTN2 9.407295e-01 0.393163762 0.9999595
## RAB43 9.406584e-01 0.393191291 0.9999595
## CAT 9.403108e-01 0.393325900 0.9999595
## DNASE1L1 9.402942e-01 0.393332363 0.9999595
## ANKRD17 9.396096e-01 0.393597623 0.9999595
## PIGG 9.386619e-01 0.393965134 0.9999595
## PRDM5 9.373061e-01 0.394491516 0.9999595
## NUF2 9.371610e-01 0.394547872 0.9999595
## GAB1 9.370937e-01 0.394574028 0.9999595
## EPB41L3 9.363029e-01 0.394881441 0.9999595
## PGM2L1 9.362275e-01 0.394910756 0.9999595
## LAMC1 9.361164e-01 0.394953970 0.9999595
## MLH3 9.359250e-01 0.395028453 0.9999595
## TFAP2E 9.355776e-01 0.395163603 0.9999595
## PLCL1 9.353569e-01 0.395249527 0.9999595
## C7orf26 9.349125e-01 0.395422527 0.9999595
## CENPA 9.349112e-01 0.395423032 0.9999595
## TXN2 9.343691e-01 0.395634226 0.9999595
## ETS1 9.342600e-01 0.395676730 0.9999595
## MOB1B 9.339841e-01 0.395784254 0.9999595
## DBF4 9.339696e-01 0.395789909 0.9999595
## SCD 9.339184e-01 0.395809855 0.9999595
## SHFL 9.338762e-01 0.395826327 0.9999595
## ADPRH 9.338403e-01 0.395840339 0.9999595
## PPHLN1 9.338307e-01 0.395844066 0.9999595
## PML 9.337135e-01 0.395889741 0.9999595
## AFF3 9.330821e-01 0.396136004 0.9999595
## LRRC3 9.324028e-01 0.396401131 0.9999595
## CDIN1 9.323713e-01 0.396413429 0.9999595
## STX7 9.323706e-01 0.396413706 0.9999595
## DDHD2 9.316840e-01 0.396681868 0.9999595
## CMSS1 9.316151e-01 0.396708811 0.9999595
## RIPK3 9.316046e-01 0.396712880 0.9999595
## MSH2 9.313304e-01 0.396820065 0.9999595
## SDC3 9.313034e-01 0.396830616 0.9999595
## TIGAR 9.312488e-01 0.396851924 0.9999595
## BAZ1A 9.311202e-01 0.396902205 0.9999595
## DEPP1 9.310445e-01 0.396931791 0.9999595
## PIM1 9.308269e-01 0.397016885 0.9999595
## ANKAR 9.308209e-01 0.397019222 0.9999595
## RPE 9.308069e-01 0.397024698 0.9999595
## UFSP2 9.306287e-01 0.397094375 0.9999595
## ZNF441 9.304150e-01 0.397177973 0.9999595
## CSTF3 9.304095e-01 0.397180130 0.9999595
## NKRF 9.300907e-01 0.397304864 0.9999595
## PRKACB 9.300784e-01 0.397309691 0.9999595
## GADD45A 9.294076e-01 0.397572278 0.9999595
## EVL 9.292360e-01 0.397639469 0.9999595
## ZNF519 9.292279e-01 0.397642631 0.9999595
## PLPP5 9.291692e-01 0.397665639 0.9999595
## SOAT1 9.283547e-01 0.397984772 0.9999595
## LIPT1 9.279582e-01 0.398140271 0.9999595
## SSR2 9.278439e-01 0.398185077 0.9999595
## FAM131A 9.272976e-01 0.398399401 0.9999595
## IDNK 9.271503e-01 0.398457212 0.9999595
## MLLT1 9.269254e-01 0.398545467 0.9999595
## GBP3 9.264256e-01 0.398741742 0.9999595
## ULK4 9.254721e-01 0.399116399 0.9999595
## ICOSLG 9.254300e-01 0.399132954 0.9999595
## GPRASP1 9.253132e-01 0.399178866 0.9999595
## SLC9A3 9.250737e-01 0.399273065 0.9999595
## RPS17 9.242481e-01 0.399597901 0.9999595
## ACSL4 9.240000e-01 0.399695554 0.9999595
## BPNT1 9.239939e-01 0.399697985 0.9999595
## CMPK1 9.228665e-01 0.400142112 0.9999595
## RAD17 9.227268e-01 0.400197180 0.9999595
## DSC2 9.225379e-01 0.400271658 0.9999595
## SYCP2 9.222459e-01 0.400386787 0.9999595
## SNRPG 9.222365e-01 0.400390488 0.9999595
## GRB10 9.222152e-01 0.400398916 0.9999595
## COMMD2 9.214997e-01 0.400681209 0.9999595
## TCF7L2 9.212470e-01 0.400780951 0.9999595
## TRMT12 9.208443e-01 0.400939984 0.9999595
## FPGT 9.207104e-01 0.400992865 0.9999595
## GSPT1 9.204878e-01 0.401080824 0.9999595
## CKS1B 9.200981e-01 0.401234815 0.9999595
## CR1 9.197534e-01 0.401371081 0.9999595
## HSPB11 9.197007e-01 0.401391906 0.9999595
## IQCN 9.194777e-01 0.401480112 0.9999595
## FOXK2 9.193060e-01 0.401548026 0.9999595
## ANAPC16 9.192442e-01 0.401572455 0.9999595
## CRNKL1 9.192073e-01 0.401587056 0.9999595
## ARL13B 9.188393e-01 0.401732687 0.9999595
## SGPL1 9.187095e-01 0.401784060 0.9999595
## NECAP2 9.174725e-01 0.402273967 0.9999595
## RNF13 9.174133e-01 0.402297424 0.9999595
## ZNF14 9.173559e-01 0.402320181 0.9999595
## H2BC18 9.172881e-01 0.402347033 0.9999595
## TFEC 9.171825e-01 0.402388905 0.9999595
## ZNF670 9.159788e-01 0.402866355 0.9999595
## ABCD2 9.155504e-01 0.403036395 0.9999595
## ENSA 9.151722e-01 0.403186613 0.9999595
## UST 9.148147e-01 0.403328620 0.9999595
## PORCN 9.140934e-01 0.403615368 0.9999595
## MFSD13A 9.138579e-01 0.403709008 0.9999595
## HSPA9 9.137275e-01 0.403760864 0.9999595
## CMTM2 9.128835e-01 0.404096762 0.9999595
## CUTC 9.126132e-01 0.404204375 0.9999595
## DDB1 9.124467e-01 0.404270670 0.9999595
## USP45 9.119242e-01 0.404478838 0.9999595
## CYB5B 9.117597e-01 0.404544402 0.9999595
## RPS23 9.117149e-01 0.404562254 0.9999595
## ENOPH1 9.117057e-01 0.404565949 0.9999595
## CLEC4A 9.105949e-01 0.405008926 0.9999595
## ABHD2 9.101683e-01 0.405179216 0.9999595
## ZFP69B 9.097406e-01 0.405349961 0.9999595
## SGSM1 9.095275e-01 0.405435093 0.9999595
## IL21R 9.093002e-01 0.405525886 0.9999595
## TJP2 9.092573e-01 0.405543059 0.9999595
## KIAA0319L 9.088011e-01 0.405725360 0.9999595
## ST6GALNAC3 9.080565e-01 0.406023123 0.9999595
## PRKCQ 9.078823e-01 0.406092841 0.9999595
## ZNF460 9.075437e-01 0.406228326 0.9999595
## NIPSNAP1 9.071660e-01 0.406379525 0.9999595
## ANKRD34A 9.064866e-01 0.406651685 0.9999595
## NUDT19 9.062024e-01 0.406765552 0.9999595
## ENO3 9.060505e-01 0.406826436 0.9999595
## DDR1 9.055208e-01 0.407038833 0.9999595
## PRDX5 9.047323e-01 0.407355184 0.9999595
## OXCT1 9.046324e-01 0.407395296 0.9999595
## GEMIN2 9.045849e-01 0.407414385 0.9999595
## WDR5B 9.043653e-01 0.407502514 0.9999595
## TSSK3 9.039755e-01 0.407659069 0.9999595
## GPR155 9.036939e-01 0.407772209 0.9999595
## EEF1AKMT3 9.036726e-01 0.407780768 0.9999595
## DTX3 9.035651e-01 0.407823963 0.9999595
## CD9 9.027014e-01 0.408171216 0.9999595
## SEPTIN1 9.025674e-01 0.408225094 0.9999595
## SLC25A24 9.023091e-01 0.408329021 0.9999595
## ARMCX5 9.021494e-01 0.408393294 0.9999595
## ZNF781 9.014524e-01 0.408673865 0.9999595
## GTF2H5 9.005398e-01 0.409041537 0.9999595
## LTBP3 9.003124e-01 0.409133220 0.9999595
## ZFYVE26 8.998683e-01 0.409312307 0.9999595
## SLC39A1 8.994401e-01 0.409485043 0.9999595
## PANK4 8.991410e-01 0.409605739 0.9999595
## ACTR1B 8.989610e-01 0.409678420 0.9999595
## NCL 8.988329e-01 0.409730118 0.9999595
## TMEM165 8.988276e-01 0.409732292 0.9999595
## DOK6 8.984145e-01 0.409899100 0.9999595
## SCMH1 8.982227e-01 0.409976575 0.9999595
## HEATR6 8.980178e-01 0.410059377 0.9999595
## DNAJB11 8.977221e-01 0.410178873 0.9999595
## CSKMT 8.970989e-01 0.410430859 0.9999595
## SCLY 8.970058e-01 0.410468549 0.9999595
## DYRK2 8.969936e-01 0.410473460 0.9999595
## ZNF773 8.968374e-01 0.410536671 0.9999595
## P2RX1 8.963394e-01 0.410738187 0.9999595
## IMMT 8.962728e-01 0.410765152 0.9999595
## CCDC170 8.962414e-01 0.410777865 0.9999595
## PAPSS1 8.960912e-01 0.410838642 0.9999595
## STK16 8.955119e-01 0.411073274 0.9999595
## ST3GAL3 8.950311e-01 0.411268095 0.9999595
## H2AX 8.948249e-01 0.411351664 0.9999595
## C11orf24 8.945992e-01 0.411443176 0.9999595
## SLC25A5 8.942204e-01 0.411596808 0.9999595
## CFAP298 8.933903e-01 0.411933658 0.9999595
## UHRF1 8.931198e-01 0.412043483 0.9999595
## MGST2 8.930371e-01 0.412077086 0.9999595
## PATZ1 8.929292e-01 0.412120902 0.9999595
## KIAA1143 8.929023e-01 0.412131806 0.9999595
## BTN2A2 8.928266e-01 0.412162568 0.9999595
## SPRING1 8.925701e-01 0.412266792 0.9999595
## SHROOM4 8.922773e-01 0.412385775 0.9999595
## GIMAP5 8.918768e-01 0.412548581 0.9999595
## ZFP30 8.917733e-01 0.412590647 0.9999595
## OXSM 8.917069e-01 0.412617643 0.9999595
## RFT1 8.913676e-01 0.412755638 0.9999595
## BTBD9 8.913331e-01 0.412769671 0.9999595
## ATP11B 8.913199e-01 0.412775062 0.9999595
## KANK2 8.905487e-01 0.413088898 0.9999595
## NEPRO 8.904151e-01 0.413143291 0.9999595
## RHNO1 8.900393e-01 0.413296340 0.9999595
## OARD1 8.898961e-01 0.413354683 0.9999595
## PPM1N 8.896356e-01 0.413460851 0.9999595
## NABP1 8.894263e-01 0.413546118 0.9999595
## SH3RF3 8.894063e-01 0.413554281 0.9999595
## RGS9 8.889671e-01 0.413733325 0.9999595
## RNF185 8.888012e-01 0.413800973 0.9999595
## ADGRL1 8.887663e-01 0.413815214 0.9999595
## GAN 8.886242e-01 0.413873187 0.9999595
## APBB2 8.882813e-01 0.414013070 0.9999595
## CKAP4 8.874950e-01 0.414334065 0.9999595
## TRIM52 8.874700e-01 0.414344261 0.9999595
## TIMM8B 8.874204e-01 0.414364521 0.9999595
## ATG16L1 8.868397e-01 0.414601769 0.9999595
## ZNF207 8.865286e-01 0.414728914 0.9999595
## GBA2 8.861755e-01 0.414873269 0.9999595
## LRRC2 8.861248e-01 0.414894022 0.9999595
## NUDT3 8.855606e-01 0.415124810 0.9999595
## SMIM10L1 8.852822e-01 0.415238736 0.9999595
## MARS1 8.851459e-01 0.415294518 0.9999595
## DOLPP1 8.844501e-01 0.415579406 0.9999595
## ZNF48 8.839748e-01 0.415774183 0.9999595
## PDK1 8.836640e-01 0.415901568 0.9999595
## ALOX12 8.834730e-01 0.415979853 0.9999595
## ARGFX 8.830294e-01 0.416161776 0.9999595
## PPP2R5A 8.828070e-01 0.416253041 0.9999595
## GMEB1 8.824523e-01 0.416398570 0.9999595
## RNF144B 8.823944e-01 0.416422358 0.9999595
## E2F5 8.823734e-01 0.416430979 0.9999595
## SRF 8.823642e-01 0.416434740 0.9999595
## RNF170 8.822996e-01 0.416461280 0.9999595
## POLA1 8.822657e-01 0.416475183 0.9999595
## TMEM14A 8.821207e-01 0.416534701 0.9999595
## FCGR1A 8.816723e-01 0.416718844 0.9999595
## FBXO8 8.816132e-01 0.416743137 0.9999595
## GABPB2 8.811923e-01 0.416916067 0.9999595
## FAM86B1 8.810916e-01 0.416957447 0.9999595
## FIG4 8.802694e-01 0.417295548 0.9999595
## ACSL3 8.802084e-01 0.417320625 0.9999595
## ARL10 8.798639e-01 0.417462364 0.9999595
## ADAT2 8.796000e-01 0.417570963 0.9999595
## DTD2 8.794237e-01 0.417643539 0.9999595
## ATG2B 8.794187e-01 0.417645593 0.9999595
## NDUFA10 8.789644e-01 0.417832696 0.9999595
## RBBP9 8.785010e-01 0.418023604 0.9999595
## LAIR1 8.784168e-01 0.418058299 0.9999595
## MED11 8.782425e-01 0.418130110 0.9999595
## PPCS 8.781752e-01 0.418157881 0.9999595
## PATL1 8.781555e-01 0.418166000 0.9999595
## H2AC6 8.777090e-01 0.418350065 0.9999595
## CTNNB1 8.776025e-01 0.418393998 0.9999595
## SLC14A1 8.772723e-01 0.418530232 0.9999595
## LTA4H 8.767502e-01 0.418745701 0.9999595
## HMBOX1 8.766374e-01 0.418792261 0.9999595
## STX12 8.766286e-01 0.418795895 0.9999595
## HACD3 8.765852e-01 0.418813816 0.9999595
## AEBP1 8.763789e-01 0.418898981 0.9999595
## PLB1 8.759318e-01 0.419083648 0.9999595
## NLRC4 8.758668e-01 0.419110519 0.9999595
## PAIP2B 8.752980e-01 0.419345598 0.9999595
## ALG5 8.752785e-01 0.419353642 0.9999595
## GDF7 8.752178e-01 0.419378725 0.9999595
## MEAF6 8.747342e-01 0.419578700 0.9999595
## MRPL44 8.747225e-01 0.419583544 0.9999595
## F2RL3 8.744399e-01 0.419700455 0.9999595
## CDKL1 8.743376e-01 0.419742817 0.9999595
## TSTD1 8.741273e-01 0.419829832 0.9999595
## LPIN1 8.739838e-01 0.419889243 0.9999595
## POLR2J2 8.739737e-01 0.419893393 0.9999595
## CYB561A3 8.739323e-01 0.419910543 0.9999595
## ZNF17 8.733111e-01 0.420167786 0.9999595
## AOC2 8.727093e-01 0.420417108 0.9999595
## ASF1B 8.724780e-01 0.420512994 0.9999595
## SLC35E3 8.723514e-01 0.420565488 0.9999595
## DMAC2L 8.722436e-01 0.420610197 0.9999595
## HTR7 8.721617e-01 0.420644138 0.9999595
## TM7SF3 8.721172e-01 0.420662613 0.9999595
## ALAS2 8.720570e-01 0.420687559 0.9999595
## SNTB2 8.719494e-01 0.420732187 0.9999595
## GRTP1 8.718518e-01 0.420772692 0.9999595
## SGMS2 8.714060e-01 0.420957679 0.9999595
## TMEM185A 8.710204e-01 0.421117717 0.9999595
## MYCT1 8.702991e-01 0.421417275 0.9999595
## NPC1 8.701374e-01 0.421484497 0.9999595
## ECM1 8.693726e-01 0.421802410 0.9999595
## TNFSF13 8.690645e-01 0.421930538 0.9999595
## ZNF569 8.688457e-01 0.422021583 0.9999595
## NME6 8.683520e-01 0.422227050 0.9999595
## PAIP1 8.681453e-01 0.422313095 0.9999595
## FCRL3 8.679869e-01 0.422379066 0.9999595
## TNS3 8.678609e-01 0.422431527 0.9999595
## GLCE 8.677719e-01 0.422468591 0.9999595
## CASD1 8.672143e-01 0.422700933 0.9999595
## PTER 8.667250e-01 0.422904894 0.9999595
## STAB1 8.665409e-01 0.422981683 0.9999595
## KIAA2013 8.664858e-01 0.423004656 0.9999595
## CCR2 8.658813e-01 0.423256817 0.9999595
## LMAN2L 8.656088e-01 0.423370564 0.9999595
## HDLBP 8.649377e-01 0.423650812 0.9999595
## AGAP6 8.646720e-01 0.423761783 0.9999595
## RGL4 8.642911e-01 0.423920989 0.9999595
## ERLIN1 8.642666e-01 0.423931228 0.9999595
## RNF123 8.640544e-01 0.424019919 0.9999595
## RETREG1 8.638265e-01 0.424115202 0.9999595
## ATL3 8.637833e-01 0.424133270 0.9999595
## ADI1 8.630936e-01 0.424421833 0.9999595
## U2AF2 8.630648e-01 0.424433877 0.9999595
## KAT2A 8.627917e-01 0.424548157 0.9999595
## PCYT1A 8.627214e-01 0.424577613 0.9999595
## STK24 8.625416e-01 0.424652898 0.9999595
## ZBTB14 8.625196e-01 0.424662083 0.9999595
## MAX 8.623867e-01 0.424717732 0.9999595
## SMIM7 8.623151e-01 0.424747722 0.9999595
## FDXACB1 8.622702e-01 0.424766534 0.9999595
## PFKFB2 8.621824e-01 0.424803332 0.9999595
## GPR65 8.620905e-01 0.424841798 0.9999595
## EXOC6 8.618387e-01 0.424947301 0.9999595
## CCDC92 8.617171e-01 0.424998265 0.9999595
## TMIGD2 8.616519e-01 0.425025563 0.9999595
## ERN1 8.612825e-01 0.425180403 0.9999595
## HSPA1A 8.612398e-01 0.425198325 0.9999595
## GCA 8.610784e-01 0.425266008 0.9999595
## ASF1A 8.606241e-01 0.425456556 0.9999595
## ALAD 8.605853e-01 0.425472818 0.9999595
## LILRA5 8.603879e-01 0.425555652 0.9999595
## STAC3 8.602068e-01 0.425631632 0.9999595
## GUCY2C 8.601786e-01 0.425643463 0.9999595
## LILRB4 8.599154e-01 0.425753965 0.9999595
## TP53I11 8.596900e-01 0.425848585 0.9999595
## ZMYND11 8.596713e-01 0.425856453 0.9999595
## KLC2 8.596689e-01 0.425857480 0.9999595
## RSPH3 8.593614e-01 0.425986626 0.9999595
## ANKLE1 8.590034e-01 0.426137028 0.9999595
## RWDD3 8.587299e-01 0.426251967 0.9999595
## APOO 8.583708e-01 0.426402903 0.9999595
## HSDL2 8.582799e-01 0.426441145 0.9999595
## NOTCH4 8.582794e-01 0.426441369 0.9999595
## FAM162A 8.580350e-01 0.426544126 0.9999595
## BCAS3 8.577377e-01 0.426669185 0.9999595
## MOV10 8.570879e-01 0.426942667 0.9999595
## USP12 8.568897e-01 0.427026118 0.9999595
## DPYD 8.568272e-01 0.427052460 0.9999595
## OLFM2 8.566731e-01 0.427117339 0.9999595
## RPS3 8.563175e-01 0.427267153 0.9999595
## DYNC1LI2 8.562558e-01 0.427293141 0.9999595
## CDK5RAP2 8.556337e-01 0.427555376 0.9999595
## CDC123 8.551885e-01 0.427743107 0.9999595
## DRAM1 8.551750e-01 0.427748792 0.9999595
## VTI1A 8.547033e-01 0.427947816 0.9999595
## ROGDI 8.546734e-01 0.427960462 0.9999595
## ZRANB2 8.546390e-01 0.427974977 0.9999595
## ZDHHC19 8.541677e-01 0.428173932 0.9999595
## GPN3 8.539737e-01 0.428255834 0.9999595
## F8 8.536874e-01 0.428376773 0.9999595
## LAT 8.530356e-01 0.428652195 0.9999595
## TADA2B 8.529601e-01 0.428684123 0.9999595
## BMP8B 8.529148e-01 0.428703279 0.9999595
## PPP2R3B 8.526820e-01 0.428801703 0.9999595
## ADAMTS1 8.526768e-01 0.428803927 0.9999595
## MRPS27 8.526212e-01 0.428827432 0.9999595
## NPRL2 8.521175e-01 0.429040494 0.9999595
## ACER3 8.513895e-01 0.429348646 0.9999595
## ABCC1 8.513514e-01 0.429364758 0.9999595
## LYAR 8.512931e-01 0.429389448 0.9999595
## EIF4B 8.509961e-01 0.429515253 0.9999595
## VBP1 8.509147e-01 0.429549729 0.9999595
## ATAD2B 8.506593e-01 0.429657938 0.9999595
## MTPAP 8.505088e-01 0.429721693 0.9999595
## GCNT2 8.504996e-01 0.429725602 0.9999595
## JPT2 8.504227e-01 0.429758207 0.9999595
## RASA3 8.499630e-01 0.429953092 0.9999595
## CTDSP2 8.499193e-01 0.429971619 0.9999595
## PIAS2 8.497286e-01 0.430052472 0.9999595
## BDH2 8.497159e-01 0.430057880 0.9999595
## SAE1 8.496519e-01 0.430085013 0.9999595
## TCEAL4 8.491014e-01 0.430318578 0.9999595
## TXNDC5 8.490860e-01 0.430325100 0.9999595
## PHF8 8.489873e-01 0.430367021 0.9999595
## POM121 8.486113e-01 0.430526617 0.9999595
## ST6GALNAC6 8.485363e-01 0.430558470 0.9999595
## COA6 8.481488e-01 0.430723035 0.9999595
## METAP2 8.480096e-01 0.430782201 0.9999595
## NMRK1 8.478771e-01 0.430838487 0.9999595
## INAFM2 8.477205e-01 0.430905028 0.9999595
## CHURC1-FNTB 8.476648e-01 0.430928683 0.9999595
## TRRAP 8.474186e-01 0.431033334 0.9999595
## RPS25 8.469999e-01 0.431211380 0.9999595
## NUDCD2 8.468137e-01 0.431290588 0.9999595
## TBX19 8.467616e-01 0.431312748 0.9999595
## STAT1 8.466550e-01 0.431358086 0.9999595
## FAHD1 8.466513e-01 0.431359663 0.9999595
## EIF2A 8.466358e-01 0.431366255 0.9999595
## METRNL 8.464868e-01 0.431429660 0.9999595
## PHLPP2 8.464723e-01 0.431435820 0.9999595
## AIMP2 8.463277e-01 0.431497360 0.9999595
## EFCAB12 8.462490e-01 0.431530838 0.9999595
## DPY19L3 8.458253e-01 0.431711209 0.9999595
## SARNP 8.457373e-01 0.431748685 0.9999595
## GK 8.450875e-01 0.432025468 0.9999595
## MAP3K8 8.448629e-01 0.432121201 0.9999595
## SACS 8.445863e-01 0.432239084 0.9999595
## ZNF333 8.436883e-01 0.432622113 0.9999595
## NSD3 8.436592e-01 0.432634515 0.9999595
## AMIGO3 8.436184e-01 0.432651951 0.9999595
## TDRD12 8.436034e-01 0.432658339 0.9999595
## PARP9 8.434857e-01 0.432708550 0.9999595
## JAZF1 8.431047e-01 0.432871215 0.9999595
## WDPCP 8.421509e-01 0.433278641 0.9999595
## KIFAP3 8.418409e-01 0.433411119 0.9999595
## H2BC4 8.418223e-01 0.433419065 0.9999595
## PPARD 8.416332e-01 0.433499912 0.9999595
## ZNF844 8.415830e-01 0.433521401 0.9999595
## MRPL30 8.413551e-01 0.433618857 0.9999595
## GPR141 8.412690e-01 0.433655666 0.9999595
## PER2 8.409837e-01 0.433777737 0.9999595
## CYP27A1 8.404723e-01 0.433996618 0.9999595
## CASP6 8.404264e-01 0.434016253 0.9999595
## ZNF500 8.404133e-01 0.434021847 0.9999595
## MSRA 8.401309e-01 0.434142795 0.9999595
## TTI2 8.388247e-01 0.434702485 0.9999595
## RBM8A 8.386219e-01 0.434789440 0.9999595
## GNL3L 8.377593e-01 0.435159549 0.9999595
## NT5DC3 8.377293e-01 0.435172427 0.9999595
## BRIX1 8.376905e-01 0.435189113 0.9999595
## E2F4 8.372556e-01 0.435375836 0.9999595
## COX7C 8.372379e-01 0.435383439 0.9999595
## ADPRM 8.372080e-01 0.435396265 0.9999595
## RPL9 8.369955e-01 0.435487573 0.9999595
## PLAAT3 8.367770e-01 0.435581425 0.9999595
## CBR3 8.367345e-01 0.435599702 0.9999595
## FCGR3B 8.366519e-01 0.435635194 0.9999595
## ARL15 8.363518e-01 0.435764180 0.9999595
## CAAP1 8.362627e-01 0.435802471 0.9999595
## CTPS1 8.360703e-01 0.435885167 0.9999595
## ZSCAN12 8.359311e-01 0.435945056 0.9999595
## RPL10 8.358883e-01 0.435963440 0.9999595
## PGGT1B 8.355247e-01 0.436119827 0.9999595
## PDZK1IP1 8.355144e-01 0.436124292 0.9999595
## MBOAT2 8.350677e-01 0.436316506 0.9999595
## NSMCE4A 8.347529e-01 0.436452026 0.9999595
## BARD1 8.345248e-01 0.436550217 0.9999595
## ATXN10 8.342209e-01 0.436681124 0.9999595
## SPIN3 8.341797e-01 0.436698850 0.9999595
## TRIM36 8.339722e-01 0.436788249 0.9999595
## C2orf42 8.338415e-01 0.436844572 0.9999595
## MILR1 8.338375e-01 0.436846304 0.9999595
## PJVK 8.335141e-01 0.436985715 0.9999595
## TOM1L2 8.333132e-01 0.437072306 0.9999595
## EXOC1 8.325284e-01 0.437410824 0.9999595
## MIA2 8.322067e-01 0.437549638 0.9999595
## C1orf162 8.319721e-01 0.437650912 0.9999595
## NLRP12 8.317842e-01 0.437732069 0.9999595
## TSC22D1 8.315215e-01 0.437845500 0.9999595
## CYSLTR2 8.312301e-01 0.437971400 0.9999595
## ING2 8.310333e-01 0.438056448 0.9999595
## PDE6D 8.308998e-01 0.438114136 0.9999595
## MGAT2 8.302698e-01 0.438386512 0.9999595
## GDPD3 8.300376e-01 0.438486957 0.9999595
## SMIM10 8.298757e-01 0.438556992 0.9999595
## MFSD2A 8.298333e-01 0.438575347 0.9999595
## ZNF790 8.295741e-01 0.438687521 0.9999595
## ITGB1BP2 8.292979e-01 0.438807072 0.9999595
## TPRKB 8.291746e-01 0.438860415 0.9999595
## SLC25A20 8.289229e-01 0.438969427 0.9999595
## DYNC2I2 8.285237e-01 0.439142344 0.9999595
## SAMD9L 8.282152e-01 0.439276002 0.9999595
## SPG21 8.282138e-01 0.439276634 0.9999595
## TTC39C 8.281908e-01 0.439286605 0.9999595
## B3GNT2 8.280285e-01 0.439356933 0.9999595
## AKT1S1 8.275933e-01 0.439545634 0.9999595
## TCFL5 8.274951e-01 0.439588187 0.9999595
## MTA3 8.274465e-01 0.439609297 0.9999595
## YEATS4 8.272892e-01 0.439677489 0.9999595
## DNAJC9 8.272145e-01 0.439709923 0.9999595
## VSIG2 8.271301e-01 0.439746527 0.9999595
## BASP1 8.270233e-01 0.439792844 0.9999595
## P3H4 8.267296e-01 0.439920310 0.9999595
## TSNARE1 8.265417e-01 0.440001898 0.9999595
## SEC61B 8.262904e-01 0.440110999 0.9999595
## DHX32 8.262225e-01 0.440140457 0.9999595
## CREB3L2 8.258208e-01 0.440314925 0.9999595
## ITIH4 8.257066e-01 0.440364535 0.9999595
## EEPD1 8.255014e-01 0.440453697 0.9999595
## OSBPL9 8.254502e-01 0.440475949 0.9999595
## ZNF853 8.253660e-01 0.440512542 0.9999595
## ZMAT2 8.251947e-01 0.440586991 0.9999595
## HYOU1 8.239923e-01 0.441109994 0.9999595
## ATP6V0E2 8.239786e-01 0.441115963 0.9999595
## SMARCE1 8.237304e-01 0.441223985 0.9999595
## TATDN1 8.233540e-01 0.441387861 0.9999595
## VPS8 8.233306e-01 0.441398059 0.9999595
## SRSF5 8.232911e-01 0.441415272 0.9999595
## NDUFA2 8.232142e-01 0.441448774 0.9999595
## SPOP 8.228943e-01 0.441588129 0.9999595
## MTMR1 8.228694e-01 0.441598984 0.9999595
## TDRD9 8.221272e-01 0.441922463 0.9999595
## CENPP 8.216415e-01 0.442134309 0.9999595
## B3GNT5 8.212750e-01 0.442294210 0.9999595
## NEK6 8.210855e-01 0.442376932 0.9999595
## ZNF121 8.206449e-01 0.442569268 0.9999595
## SGCB 8.206390e-01 0.442571846 0.9999595
## ID3 8.206183e-01 0.442580890 0.9999595
## TXN 8.205277e-01 0.442620481 0.9999595
## HARS2 8.200307e-01 0.442837552 0.9999595
## MPIG6B 8.196801e-01 0.442990774 0.9999595
## S100Z 8.191183e-01 0.443236412 0.9999595
## SMARCD3 8.189683e-01 0.443302018 0.9999595
## RNF146 8.189163e-01 0.443324772 0.9999595
## ZNF512B 8.188598e-01 0.443349476 0.9999595
## PELO 8.186620e-01 0.443436035 0.9999595
## OPTN 8.185733e-01 0.443474842 0.9999595
## RASGRP1 8.183840e-01 0.443557701 0.9999595
## ZNF766 8.182890e-01 0.443599268 0.9999595
## CCDC152 8.181038e-01 0.443680341 0.9999595
## GSDMA 8.180481e-01 0.443704726 0.9999595
## BCORL1 8.178682e-01 0.443783482 0.9999595
## SURF4 8.175482e-01 0.443923634 0.9999595
## TMEM63B 8.173270e-01 0.444020561 0.9999595
## CEBPD 8.172606e-01 0.444049630 0.9999595
## AOAH 8.166841e-01 0.444302315 0.9999595
## SYNM 8.166008e-01 0.444338854 0.9999595
## DSEL 8.163418e-01 0.444452396 0.9999595
## MSH6 8.157417e-01 0.444715685 0.9999595
## PDHX 8.155162e-01 0.444814655 0.9999595
## ZNF609 8.154053e-01 0.444863339 0.9999595
## TMEM120A 8.150452e-01 0.445021402 0.9999595
## PLD1 8.150101e-01 0.445036847 0.9999595
## CDCP1 8.149273e-01 0.445073214 0.9999595
## POLB 8.146061e-01 0.445214282 0.9999595
## CNOT11 8.143165e-01 0.445341561 0.9999595
## TMCO4 8.142085e-01 0.445389022 0.9999595
## FCGBP 8.142058e-01 0.445390171 0.9999595
## CASTOR2 8.140773e-01 0.445446677 0.9999595
## TCF3 8.137822e-01 0.445576421 0.9999595
## SCARB2 8.133371e-01 0.445772160 0.9999595
## CCDC120 8.132626e-01 0.445804929 0.9999595
## CCNK 8.130831e-01 0.445883906 0.9999595
## REPS1 8.129948e-01 0.445922766 0.9999595
## ZNF331 8.126826e-01 0.446060161 0.9999595
## TMEM164 8.125859e-01 0.446102708 0.9999595
## UBE2G1 8.120299e-01 0.446347554 0.9999595
## NPR2 8.118390e-01 0.446431669 0.9999595
## RABEPK 8.116627e-01 0.446509314 0.9999595
## SLFN5 8.115721e-01 0.446549232 0.9999595
## STK38 8.115002e-01 0.446580919 0.9999595
## IRF2BP1 8.104841e-01 0.447028972 0.9999595
## MAN1A1 8.095184e-01 0.447455204 0.9999595
## FADS1 8.094659e-01 0.447478383 0.9999595
## SLIRP 8.092061e-01 0.447593107 0.9999595
## GTPBP4 8.091114e-01 0.447634925 0.9999595
## SH3PXD2A 8.089794e-01 0.447693242 0.9999595
## LYPLAL1 8.086529e-01 0.447837532 0.9999595
## HNRNPR 8.076623e-01 0.448275575 0.9999595
## ZNF34 8.075936e-01 0.448305940 0.9999595
## SH3YL1 8.068762e-01 0.448623482 0.9999595
## EIPR1 8.065523e-01 0.448766913 0.9999595
## PTDSS1 8.065454e-01 0.448769949 0.9999595
## TRPT1 8.064754e-01 0.448800958 0.9999595
## GALM 8.064358e-01 0.448818511 0.9999595
## IQSEC1 8.061344e-01 0.448952047 0.9999595
## FAM151B 8.060992e-01 0.448967627 0.9999595
## PDIA6 8.057924e-01 0.449103585 0.9999595
## HNRNPM 8.052567e-01 0.449341070 0.9999595
## INPP4A 8.051313e-01 0.449396694 0.9999595
## OPN3 8.050644e-01 0.449426387 0.9999595
## RPS27 8.047907e-01 0.449547795 0.9999595
## STARD5 8.047352e-01 0.449572399 0.9999595
## ZFP1 8.037362e-01 0.450015889 0.9999595
## FRRS1 8.029315e-01 0.450373428 0.9999595
## APH1B 8.027681e-01 0.450446099 0.9999595
## MAIP1 8.026521e-01 0.450497679 0.9999595
## THNSL1 8.026477e-01 0.450499625 0.9999595
## TRIB1 8.023731e-01 0.450621725 0.9999595
## TCEAL9 8.022401e-01 0.450680875 0.9999595
## AREL1 8.020721e-01 0.450755621 0.9999595
## CACNG8 8.019875e-01 0.450793265 0.9999595
## NUB1 8.017568e-01 0.450895901 0.9999595
## SOCS1 8.015251e-01 0.450999023 0.9999595
## MAST4 8.014126e-01 0.451049107 0.9999595
## CDKN2C 8.012723e-01 0.451111595 0.9999595
## ARHGEF2 8.012658e-01 0.451114494 0.9999595
## RNF168 8.011022e-01 0.451187345 0.9999595
## XRCC6 8.009658e-01 0.451248071 0.9999595
## SLC24A4 8.008335e-01 0.451306985 0.9999595
## SIPA1L2 8.002413e-01 0.451570858 0.9999595
## LAPTM4B 7.998924e-01 0.451726410 0.9999595
## TMC8 7.997148e-01 0.451805584 0.9999595
## CCDC6 7.994985e-01 0.451902055 0.9999595
## SEC31B 7.992471e-01 0.452014235 0.9999595
## RSL1D1 7.990923e-01 0.452083286 0.9999595
## AGO2 7.988527e-01 0.452190198 0.9999595
## DENND10 7.988271e-01 0.452201633 0.9999595
## ZNF780A 7.986467e-01 0.452282152 0.9999595
## NBPF10 7.984838e-01 0.452354896 0.9999595
## YWHAH 7.983050e-01 0.452434725 0.9999595
## TMEM204 7.979644e-01 0.452586850 0.9999595
## AGFG2 7.977608e-01 0.452677843 0.9999595
## SLC2A9 7.976503e-01 0.452727194 0.9999595
## KCTD3 7.971123e-01 0.452967700 0.9999595
## ZNF613 7.970671e-01 0.452987882 0.9999595
## R3HDM4 7.970482e-01 0.452996327 0.9999595
## WRAP73 7.970310e-01 0.453004019 0.9999595
## PLBD1 7.970000e-01 0.453017887 0.9999595
## DDX59 7.969091e-01 0.453058555 0.9999595
## DHTKD1 7.966367e-01 0.453180369 0.9999595
## TOMM34 7.965067e-01 0.453238529 0.9999595
## TBCA 7.963586e-01 0.453304796 0.9999595
## MAPKBP1 7.963370e-01 0.453314456 0.9999595
## BOD1 7.959348e-01 0.453494453 0.9999595
## MST1L 7.957432e-01 0.453580255 0.9999595
## TUBGCP3 7.956346e-01 0.453628868 0.9999595
## LMF1 7.956109e-01 0.453639492 0.9999595
## CENPW 7.953921e-01 0.453737444 0.9999595
## CSPP1 7.951033e-01 0.453866835 0.9999595
## G3BP1 7.950419e-01 0.453894359 0.9999595
## PLD6 7.949877e-01 0.453918606 0.9999595
## LRPAP1 7.948411e-01 0.453984303 0.9999595
## MIS18A 7.947663e-01 0.454017833 0.9999595
## ITM2C 7.947417e-01 0.454028873 0.9999595
## MCUR1 7.937554e-01 0.454471112 0.9999595
## SERTAD3 7.937403e-01 0.454477902 0.9999595
## SLPI 7.935304e-01 0.454572077 0.9999595
## TBCCD1 7.933229e-01 0.454665160 0.9999595
## PPA2 7.931929e-01 0.454723515 0.9999595
## TMEM267 7.928785e-01 0.454864665 0.9999595
## POLR3E 7.928059e-01 0.454897273 0.9999595
## ARL8B 7.927445e-01 0.454924842 0.9999595
## ZEB2 7.926658e-01 0.454960209 0.9999595
## VSIR 7.924603e-01 0.455052506 0.9999595
## GPATCH4 7.922814e-01 0.455132864 0.9999595
## RPL7A 7.916836e-01 0.455401531 0.9999595
## CMTM4 7.911865e-01 0.455625051 0.9999595
## TMEM11 7.909284e-01 0.455741161 0.9999595
## XPNPEP1 7.909152e-01 0.455747079 0.9999595
## DNAJC24 7.908307e-01 0.455785115 0.9999595
## AKAP8L 7.906341e-01 0.455873583 0.9999595
## PSMD9 7.900239e-01 0.456148249 0.9999595
## TAF11 7.900151e-01 0.456152246 0.9999595
## SMG6 7.897288e-01 0.456281144 0.9999595
## WDR43 7.894643e-01 0.456400319 0.9999595
## TESC 7.890867e-01 0.456570474 0.9999595
## HS2ST1 7.888074e-01 0.456696384 0.9999595
## HYAL1 7.885432e-01 0.456815539 0.9999595
## AGAP5 7.875728e-01 0.457253354 0.9999595
## CDC42SE2 7.875097e-01 0.457281830 0.9999595
## TMEM220 7.873897e-01 0.457335995 0.9999595
## CD302 7.870800e-01 0.457475844 0.9999595
## CD38 7.864886e-01 0.457743046 0.9999595
## GNG10 7.862107e-01 0.457868640 0.9999595
## ARHGEF10 7.861257e-01 0.457907053 0.9999595
## EXTL3 7.858514e-01 0.458031074 0.9999595
## OGA 7.857070e-01 0.458096399 0.9999595
## THBS1 7.857032e-01 0.458098112 0.9999595
## PLXDC2 7.856804e-01 0.458108411 0.9999595
## ARSD 7.855050e-01 0.458187760 0.9999595
## ARHGAP35 7.852303e-01 0.458312024 0.9999595
## SIGLEC7 7.851017e-01 0.458370231 0.9999595
## TAF9B 7.845632e-01 0.458613975 0.9999595
## FBF1 7.845161e-01 0.458635306 0.9999595
## CHMP3 7.845096e-01 0.458638240 0.9999595
## TMEM237 7.845022e-01 0.458641562 0.9999595
## HENMT1 7.844649e-01 0.458658461 0.9999595
## RPL3 7.834899e-01 0.459100188 0.9999595
## TMEM177 7.833593e-01 0.459159374 0.9999595
## COX6B2 7.833590e-01 0.459159531 0.9999595
## SUMF1 7.833213e-01 0.459176625 0.9999595
## SLC25A4 7.830324e-01 0.459307594 0.9999595
## TRMT2B 7.827575e-01 0.459432260 0.9999595
## RAD54L2 7.824448e-01 0.459574127 0.9999595
## ANKRD42 7.822163e-01 0.459677841 0.9999595
## ATG5 7.821794e-01 0.459694581 0.9999595
## NPIPA1 7.821317e-01 0.459716222 0.9999595
## KLF12 7.821128e-01 0.459724819 0.9999595
## KDM4A 7.821086e-01 0.459726728 0.9999595
## LILRB5 7.818144e-01 0.459860262 0.9999595
## RAP2A 7.816803e-01 0.459921151 0.9999595
## IL2RA 7.816663e-01 0.459927499 0.9999595
## ZNF862 7.810614e-01 0.460202299 0.9999595
## SLC41A3 7.810185e-01 0.460221763 0.9999595
## ARHGAP24 7.809795e-01 0.460239511 0.9999595
## ANTXR2 7.808555e-01 0.460295863 0.9999595
## OCIAD1 7.807150e-01 0.460359685 0.9999595
## TNFAIP8L1 7.803464e-01 0.460527251 0.9999595
## GYG1 7.802579e-01 0.460567529 0.9999595
## IL32 7.801051e-01 0.460637013 0.9999595
## LIMS2 7.798673e-01 0.460745141 0.9999595
## ZCCHC2 7.793791e-01 0.460967291 0.9999595
## NUP50 7.793409e-01 0.460984681 0.9999595
## P2RX5 7.791980e-01 0.461049733 0.9999595
## EML4 7.791074e-01 0.461090993 0.9999595
## SCOC 7.788889e-01 0.461190468 0.9999595
## GATA1 7.788082e-01 0.461227223 0.9999595
## TGFBRAP1 7.787300e-01 0.461262821 0.9999595
## SLC50A1 7.787100e-01 0.461271955 0.9999595
## SLC20A1 7.784004e-01 0.461412982 0.9999595
## ANXA2 7.781483e-01 0.461527816 0.9999595
## DEPTOR 7.780836e-01 0.461557331 0.9999595
## LARS1 7.776640e-01 0.461748577 0.9999595
## ADAMTSL4 7.776536e-01 0.461753309 0.9999595
## COPS4 7.772112e-01 0.461955073 0.9999595
## F8A1 7.768546e-01 0.462117773 0.9999595
## SESN3 7.767934e-01 0.462145683 0.9999595
## MORN3 7.765931e-01 0.462237100 0.9999595
## PABPC1 7.763424e-01 0.462351505 0.9999595
## COG8 7.757405e-01 0.462626370 0.9999595
## PDE4A 7.752925e-01 0.462831094 0.9999595
## ZNF696 7.750760e-01 0.462930032 0.9999595
## MRPL45 7.748899e-01 0.463015089 0.9999595
## C22orf34 7.746543e-01 0.463122818 0.9999595
## MBD2 7.745260e-01 0.463181496 0.9999595
## ZNF174 7.744216e-01 0.463229278 0.9999595
## ZNF550 7.743234e-01 0.463274183 0.9999595
## PMS1 7.739784e-01 0.463432033 0.9999595
## EGLN3 7.739528e-01 0.463443747 0.9999595
## PFN2 7.736334e-01 0.463589913 0.9999595
## GRAP 7.734190e-01 0.463688068 0.9999595
## NFYA 7.733327e-01 0.463727602 0.9999595
## GM2A 7.732272e-01 0.463775935 0.9999595
## TNRC6A 7.729170e-01 0.463917984 0.9999595
## HTATSF1 7.728524e-01 0.463947591 0.9999595
## CGAS 7.726999e-01 0.464017437 0.9999595
## LAX1 7.726968e-01 0.464018861 0.9999595
## PNOC 7.717678e-01 0.464444748 0.9999595
## SLFN14 7.716642e-01 0.464492282 0.9999595
## BACE1 7.716512e-01 0.464498205 0.9999595
## SPATS2 7.715333e-01 0.464552282 0.9999595
## OMG 7.708365e-01 0.464872069 0.9999595
## EXOSC2 7.705958e-01 0.464982591 0.9999595
## RIOX2 7.703804e-01 0.465081471 0.9999595
## RNLS 7.702347e-01 0.465148416 0.9999595
## RRN3 7.699532e-01 0.465277740 0.9999595
## COPZ1 7.697747e-01 0.465359749 0.9999595
## METTL18 7.697693e-01 0.465362239 0.9999595
## MAP11 7.695994e-01 0.465440313 0.9999595
## CHD1L 7.695950e-01 0.465442343 0.9999595
## RPL37 7.695929e-01 0.465443309 0.9999595
## METTL14 7.694114e-01 0.465526735 0.9999595
## PTPN1 7.692532e-01 0.465599474 0.9999595
## NIT2 7.692035e-01 0.465622297 0.9999595
## DMAC1 7.690670e-01 0.465685060 0.9999595
## NFKBIZ 7.690243e-01 0.465704739 0.9999595
## MORC2 7.689226e-01 0.465751496 0.9999595
## THUMPD2 7.688851e-01 0.465768750 0.9999595
## MSL2 7.688552e-01 0.465782480 0.9999595
## HSP90B1 7.683737e-01 0.466004037 0.9999595
## TSPYL1 7.682632e-01 0.466054888 0.9999595
## SASH1 7.682601e-01 0.466056292 0.9999595
## ABCA13 7.681345e-01 0.466114118 0.9999595
## BRCA2 7.680772e-01 0.466140506 0.9999595
## CLPX 7.677386e-01 0.466296401 0.9999595
## DENND2D 7.676342e-01 0.466344478 0.9999595
## AIDA 7.675612e-01 0.466378096 0.9999595
## GRINA 7.674936e-01 0.466409221 0.9999595
## TMEM185B 7.673822e-01 0.466460512 0.9999595
## PPID 7.672684e-01 0.466512961 0.9999595
## SLC37A4 7.668080e-01 0.466725100 0.9999595
## BCKDHB 7.667558e-01 0.466749166 0.9999595
## CCDC91 7.664724e-01 0.466879833 0.9999595
## ARHGAP1 7.661604e-01 0.467023682 0.9999595
## PNKP 7.660785e-01 0.467061480 0.9999595
## CYB561D1 7.660692e-01 0.467065755 0.9999595
## FNDC3A 7.655301e-01 0.467314492 0.9999595
## SYP 7.653893e-01 0.467379486 0.9999595
## LAMP3 7.652590e-01 0.467439612 0.9999595
## ZBTB7B 7.650375e-01 0.467541862 0.9999595
## HS3ST3B1 7.647404e-01 0.467679063 0.9999595
## DNAAF5 7.646457e-01 0.467722825 0.9999595
## ITGA6 7.646012e-01 0.467743369 0.9999595
## ZNF32 7.642790e-01 0.467892219 0.9999595
## PCYOX1L 7.642315e-01 0.467914211 0.9999595
## ELP4 7.638504e-01 0.468090328 0.9999595
## TIPARP 7.635637e-01 0.468222881 0.9999595
## PDE6G 7.634826e-01 0.468260404 0.9999595
## ALOX5 7.630317e-01 0.468468957 0.9999595
## IDH1 7.630236e-01 0.468472699 0.9999595
## PMF1 7.629157e-01 0.468522615 0.9999595
## RPS6KA3 7.626384e-01 0.468650981 0.9999595
## SOCS7 7.623346e-01 0.468791614 0.9999595
## FOCAD 7.623045e-01 0.468805555 0.9999595
## ADA2 7.622470e-01 0.468832163 0.9999595
## ZNF786 7.621195e-01 0.468891193 0.9999595
## DCAF4 7.618577e-01 0.469012460 0.9999595
## TIPRL 7.616673e-01 0.469100672 0.9999595
## UBE2H 7.615636e-01 0.469148704 0.9999595
## SUPT20H 7.613754e-01 0.469235932 0.9999595
## CYRIA 7.611152e-01 0.469356494 0.9999595
## RHOQ 7.607683e-01 0.469517357 0.9999595
## SHISA4 7.597531e-01 0.469988358 0.9999595
## ZNF418 7.593172e-01 0.470190746 0.9999595
## GP5 7.592722e-01 0.470211642 0.9999595
## FXYD6 7.592076e-01 0.470241643 0.9999595
## GTDC1 7.591726e-01 0.470257899 0.9999595
## CNN2 7.589519e-01 0.470360402 0.9999595
## SLC9A4 7.583596e-01 0.470635664 0.9999595
## CRELD2 7.582071e-01 0.470706543 0.9999595
## C3 7.577614e-01 0.470913808 0.9999595
## KLHL26 7.574845e-01 0.471042600 0.9999595
## LRRC23 7.572944e-01 0.471131053 0.9999595
## CATIP 7.571623e-01 0.471192563 0.9999595
## SRSF7 7.569771e-01 0.471278725 0.9999595
## DDX10 7.566373e-01 0.471436959 0.9999595
## AGPAT5 7.562773e-01 0.471604604 0.9999595
## SHLD1 7.562661e-01 0.471609825 0.9999595
## ALG2 7.557151e-01 0.471866561 0.9999595
## ACP6 7.553619e-01 0.472031207 0.9999595
## RER1 7.553390e-01 0.472041882 0.9999595
## DDIT3 7.553067e-01 0.472056931 0.9999595
## DNAJC13 7.551815e-01 0.472115317 0.9999595
## SRCAP 7.536566e-01 0.472826972 0.9999595
## SIK3 7.534199e-01 0.472937507 0.9999595
## DAPK2 7.531812e-01 0.473049034 0.9999595
## CCNG1 7.531674e-01 0.473055487 0.9999595
## MAP7 7.530931e-01 0.473090208 0.9999595
## FAM76A 7.528394e-01 0.473208808 0.9999595
## CZIB 7.527252e-01 0.473262160 0.9999595
## HNRNPA0 7.526930e-01 0.473277245 0.9999595
## POLR1F 7.526693e-01 0.473288292 0.9999595
## TCP11L2 7.523731e-01 0.473426785 0.9999595
## CDK1 7.522993e-01 0.473461314 0.9999595
## MTRNR2L1 7.520587e-01 0.473573840 0.9999595
## TSC1 7.517139e-01 0.473735154 0.9999595
## MFSD14C 7.516690e-01 0.473756184 0.9999595
## PDE12 7.515123e-01 0.473829506 0.9999595
## C1GALT1C1 7.514985e-01 0.473835973 0.9999595
## SMIM19 7.513986e-01 0.473882733 0.9999595
## FAM174B 7.509476e-01 0.474093896 0.9999595
## FTSJ3 7.508392e-01 0.474144674 0.9999595
## MRPS28 7.503319e-01 0.474382352 0.9999595
## KCNMB4 7.502607e-01 0.474415690 0.9999595
## SNX6 7.501905e-01 0.474448612 0.9999595
## BAG2 7.500672e-01 0.474506376 0.9999595
## SDHB 7.499263e-01 0.474572447 0.9999595
## CDKN2B 7.499126e-01 0.474578839 0.9999595
## TMEM140 7.497786e-01 0.474641694 0.9999595
## NT5M 7.494584e-01 0.474791844 0.9999595
## DHDDS 7.490088e-01 0.475002770 0.9999595
## ATP13A3 7.487882e-01 0.475106264 0.9999595
## COPS7B 7.486219e-01 0.475184324 0.9999595
## SSRP1 7.485753e-01 0.475206183 0.9999595
## FOXN2 7.485399e-01 0.475222819 0.9999595
## ZNF467 7.483438e-01 0.475314875 0.9999595
## HDAC6 7.482930e-01 0.475338756 0.9999595
## ABI1 7.480425e-01 0.475456381 0.9999595
## ATF7 7.478274e-01 0.475557435 0.9999595
## SLC46A2 7.474740e-01 0.475723452 0.9999595
## LPIN2 7.473412e-01 0.475785891 0.9999595
## ZNF674 7.473354e-01 0.475788615 0.9999595
## HDGF 7.472941e-01 0.475808002 0.9999595
## SNX3 7.472558e-01 0.475826039 0.9999595
## TRAK1 7.471959e-01 0.475854196 0.9999595
## RBMX 7.471326e-01 0.475883921 0.9999595
## PRPF38A 7.470756e-01 0.475910715 0.9999595
## TMEM263 7.466780e-01 0.476097699 0.9999595
## CPPED1 7.466509e-01 0.476110434 0.9999595
## ROPN1L 7.463092e-01 0.476271210 0.9999595
## HSD17B8 7.461719e-01 0.476335798 0.9999595
## RASAL3 7.457150e-01 0.476550841 0.9999595
## SETDB2 7.451624e-01 0.476811047 0.9999595
## TAMALIN 7.446441e-01 0.477055250 0.9999595
## CENPO 7.445713e-01 0.477089572 0.9999595
## RPAP3 7.443348e-01 0.477201055 0.9999595
## ZNF84 7.442014e-01 0.477263932 0.9999595
## FUZ 7.441503e-01 0.477288048 0.9999595
## SCO2 7.439142e-01 0.477399379 0.9999595
## CA8 7.436270e-01 0.477534860 0.9999595
## NATD1 7.436259e-01 0.477535394 0.9999595
## TEC 7.435103e-01 0.477589933 0.9999595
## FBXO38 7.432566e-01 0.477709624 0.9999595
## METTL22 7.431075e-01 0.477779997 0.9999595
## WDR75 7.429746e-01 0.477842720 0.9999595
## DCAF11 7.429534e-01 0.477852761 0.9999595
## ARRDC4 7.427647e-01 0.477941855 0.9999595
## RAP1GDS1 7.426962e-01 0.477974165 0.9999595
## HADHB 7.426513e-01 0.477995399 0.9999595
## FAM200B 7.421378e-01 0.478237940 0.9999595
## HEATR5A 7.420250e-01 0.478291240 0.9999595
## TLR4 7.419308e-01 0.478335763 0.9999595
## TXNDC12 7.417026e-01 0.478443606 0.9999595
## OAZ2 7.415471e-01 0.478517106 0.9999595
## CHRM3 7.414556e-01 0.478560356 0.9999595
## IQCE 7.414373e-01 0.478569044 0.9999595
## TOR3A 7.412076e-01 0.478677656 0.9999595
## CDC6 7.411861e-01 0.478687822 0.9999595
## TMEM230 7.411219e-01 0.478718192 0.9999595
## LY6E 7.410035e-01 0.478774165 0.9999595
## IL16 7.409880e-01 0.478781508 0.9999595
## CDC25B 7.403404e-01 0.479087937 0.9999595
## SMIM14 7.398309e-01 0.479329155 0.9999595
## NUCKS1 7.396855e-01 0.479397991 0.9999595
## GNAI2 7.395952e-01 0.479440767 0.9999595
## LETMD1 7.395032e-01 0.479484351 0.9999595
## VTI1B 7.392677e-01 0.479595928 0.9999595
## DERL1 7.390419e-01 0.479702947 0.9999595
## FFAR3 7.390163e-01 0.479715062 0.9999595
## A1BG 7.387299e-01 0.479850856 0.9999595
## C8orf33 7.381902e-01 0.480106801 0.9999595
## DVL3 7.379001e-01 0.480244415 0.9999595
## IL18RAP 7.378442e-01 0.480270914 0.9999595
## TLR8 7.376765e-01 0.480350535 0.9999595
## WHAMM 7.375161e-01 0.480426631 0.9999595
## CDC16 7.373336e-01 0.480513277 0.9999595
## CD82 7.371877e-01 0.480582575 0.9999595
## UBR4 7.368918e-01 0.480723091 0.9999595
## CATSPERG 7.367646e-01 0.480783505 0.9999595
## TMEM86B 7.367368e-01 0.480796686 0.9999595
## ISOC2 7.365300e-01 0.480894961 0.9999595
## NDUFB1 7.364593e-01 0.480928562 0.9999595
## TMEM156 7.361417e-01 0.481079499 0.9999595
## RNF149 7.359596e-01 0.481166039 0.9999595
## H2BC15 7.359422e-01 0.481174328 0.9999595
## CNTRL 7.359388e-01 0.481175956 0.9999595
## TIAL1 7.353321e-01 0.481464478 0.9999595
## COL18A1 7.343296e-01 0.481941617 0.9999595
## MTRNR2L8 7.332093e-01 0.482475389 0.9999595
## HLA-DQB1 7.327855e-01 0.482677445 0.9999595
## CUL7 7.326178e-01 0.482757453 0.9999595
## PSTK 7.323650e-01 0.482878068 0.9999595
## MAP3K1 7.321838e-01 0.482964519 0.9999595
## PCBP3 7.320481e-01 0.483029268 0.9999595
## IFI27L1 7.319168e-01 0.483091977 0.9999595
## CCT6A 7.318656e-01 0.483116418 0.9999595
## RPL34 7.315965e-01 0.483244893 0.9999595
## TOMM20 7.311467e-01 0.483459726 0.9999595
## CASP3 7.307750e-01 0.483637316 0.9999595
## CCNF 7.303892e-01 0.483821723 0.9999595
## URGCP 7.301317e-01 0.483944851 0.9999595
## SINHCAF 7.300776e-01 0.483970700 0.9999595
## YAE1 7.300312e-01 0.483992888 0.9999595
## DTWD1 7.298521e-01 0.484078561 0.9999595
## GAPVD1 7.295621e-01 0.484217324 0.9999595
## ADORA2B 7.295106e-01 0.484241929 0.9999595
## EIF3C 7.291751e-01 0.484402516 0.9999595
## MGAM 7.290347e-01 0.484469705 0.9999595
## CASP4 7.288940e-01 0.484537102 0.9999595
## TANGO6 7.286614e-01 0.484648466 0.9999595
## TAF6 7.285972e-01 0.484679195 0.9999595
## YIPF1 7.283485e-01 0.484798316 0.9999595
## CBX7 7.282385e-01 0.484851015 0.9999595
## SH3BP5 7.281461e-01 0.484895332 0.9999595
## ZNF788P 7.281398e-01 0.484898343 0.9999595
## FAM110B 7.277990e-01 0.485061637 0.9999595
## DCTN6 7.276746e-01 0.485121285 0.9999595
## APOL6 7.273420e-01 0.485280768 0.9999595
## ANG 7.271082e-01 0.485392909 0.9999595
## AKR1B15 7.270531e-01 0.485419305 0.9999595
## SPG11 7.270132e-01 0.485438437 0.9999595
## TMED2 7.267292e-01 0.485574697 0.9999595
## C5 7.266767e-01 0.485599928 0.9999595
## ZBTB25 7.266095e-01 0.485632129 0.9999595
## ZNF570 7.263044e-01 0.485778582 0.9999595
## MX2 7.262088e-01 0.485824485 0.9999595
## C9orf78 7.257261e-01 0.486056271 0.9999595
## PCGF3 7.255775e-01 0.486127678 0.9999595
## ZNF558 7.255434e-01 0.486144031 0.9999595
## RCBTB1 7.254980e-01 0.486165847 0.9999595
## ZNF443 7.253675e-01 0.486228584 0.9999595
## GNPNAT1 7.252570e-01 0.486281663 0.9999595
## FGD2 7.250031e-01 0.486403692 0.9999595
## IL17RA 7.247443e-01 0.486528109 0.9999595
## SLC25A51 7.242895e-01 0.486746801 0.9999595
## C3orf38 7.239503e-01 0.486910007 0.9999595
## TOGARAM2 7.236992e-01 0.487030863 0.9999595
## FAH 7.234202e-01 0.487165138 0.9999595
## NSFL1C 7.234136e-01 0.487168305 0.9999595
## PHB2 7.230628e-01 0.487337225 0.9999595
## TULP3 7.229036e-01 0.487413932 0.9999595
## ACP5 7.227171e-01 0.487503792 0.9999595
## DNAJC3 7.226376e-01 0.487542079 0.9999595
## DLG3 7.222385e-01 0.487734382 0.9999595
## TMEM159 7.222340e-01 0.487736597 0.9999595
## RARG 7.219990e-01 0.487849843 0.9999595
## LHPP 7.216453e-01 0.488020409 0.9999595
## KREMEN1 7.212935e-01 0.488190122 0.9999595
## BANK1 7.212929e-01 0.488190405 0.9999595
## CTSB 7.205388e-01 0.488554369 0.9999595
## BAG6 7.202515e-01 0.488693093 0.9999595
## UBR7 7.196401e-01 0.488988509 0.9999595
## DNAJC5 7.193035e-01 0.489151194 0.9999595
## GJB6 7.189005e-01 0.489346070 0.9999595
## ITGA3 7.182067e-01 0.489681722 0.9999595
## TSR2 7.181768e-01 0.489696187 0.9999595
## LRRK1 7.180598e-01 0.489752821 0.9999595
## FKBP15 7.177867e-01 0.489885042 0.9999595
## ATP6V0C 7.176095e-01 0.489970838 0.9999595
## PPP1CB 7.175223e-01 0.490013043 0.9999595
## ZNF22 7.174304e-01 0.490057558 0.9999595
## UBL5 7.173647e-01 0.490089400 0.9999595
## HNRNPA1L2 7.173357e-01 0.490103443 0.9999595
## GBP5 7.172491e-01 0.490145374 0.9999595
## ZNF547 7.169430e-01 0.490293682 0.9999595
## MT1F 7.168586e-01 0.490334604 0.9999595
## CDC27 7.165377e-01 0.490490151 0.9999595
## EMC2 7.164791e-01 0.490518558 0.9999595
## TRPM2 7.164552e-01 0.490530114 0.9999595
## RPL21 7.164325e-01 0.490541120 0.9999595
## THADA 7.162780e-01 0.490616042 0.9999595
## AURKA 7.162629e-01 0.490623372 0.9999595
## USP20 7.162278e-01 0.490640408 0.9999595
## BRD8 7.160673e-01 0.490718241 0.9999595
## FMC1 7.158518e-01 0.490822779 0.9999595
## TMEM144 7.158060e-01 0.490844967 0.9999595
## AURKB 7.153298e-01 0.491076063 0.9999595
## MTIF2 7.151346e-01 0.491170817 0.9999595
## AGRN 7.151169e-01 0.491179417 0.9999595
## SLC43A1 7.150670e-01 0.491203608 0.9999595
## ACAT1 7.147898e-01 0.491338206 0.9999595
## GBGT1 7.147629e-01 0.491351273 0.9999595
## GBF1 7.147612e-01 0.491352094 0.9999595
## C12orf73 7.147421e-01 0.491361400 0.9999595
## LARP1B 7.142178e-01 0.491616104 0.9999595
## ZNF736 7.142154e-01 0.491617231 0.9999595
## MDM1 7.136433e-01 0.491895342 0.9999595
## MARCHF2 7.132621e-01 0.492080706 0.9999595
## GTF2IRD2 7.130709e-01 0.492173689 0.9999595
## TFG 7.127649e-01 0.492322572 0.9999595
## COL8A2 7.126311e-01 0.492387699 0.9999595
## TTC3 7.125805e-01 0.492412306 0.9999595
## PAFAH1B1 7.124722e-01 0.492465023 0.9999595
## NFU1 7.124129e-01 0.492493902 0.9999595
## FKBP7 7.123900e-01 0.492505072 0.9999595
## GPR162 7.119678e-01 0.492710612 0.9999595
## METTL16 7.118993e-01 0.492744002 0.9999595
## OTUD1 7.118720e-01 0.492757296 0.9999595
## HLA-G 7.117879e-01 0.492798268 0.9999595
## C18orf32 7.116962e-01 0.492842905 0.9999595
## HELB 7.116108e-01 0.492884511 0.9999595
## ARSG 7.114933e-01 0.492941744 0.9999595
## SGK1 7.111029e-01 0.493132038 0.9999595
## NTAN1 7.110238e-01 0.493170555 0.9999595
## PMAIP1 7.107762e-01 0.493291272 0.9999595
## COX15 7.107008e-01 0.493328071 0.9999595
## PDCD7 7.103320e-01 0.493507912 0.9999595
## CCR4 7.101236e-01 0.493609622 0.9999595
## HBA2 7.099662e-01 0.493686406 0.9999595
## IKZF4 7.098908e-01 0.493723195 0.9999595
## PPP2R2B 7.095211e-01 0.493903654 0.9999595
## CRYGS 7.089918e-01 0.494162148 0.9999595
## CXCR4 7.088226e-01 0.494244781 0.9999595
## CREG1 7.087168e-01 0.494296477 0.9999595
## TUT1 7.086642e-01 0.494322186 0.9999595
## INPP5E 7.085225e-01 0.494391414 0.9999595
## SLC9A1 7.083872e-01 0.494457555 0.9999595
## TBC1D2 7.083022e-01 0.494499122 0.9999595
## NOP2 7.082524e-01 0.494523438 0.9999595
## CEP85L 7.078417e-01 0.494724256 0.9999595
## SFXN2 7.077905e-01 0.494749303 0.9999595
## PCIF1 7.077854e-01 0.494751764 0.9999595
## BLVRA 7.076230e-01 0.494831189 0.9999595
## MOSMO 7.075403e-01 0.494871684 0.9999595
## ANKEF1 7.074757e-01 0.494903275 0.9999595
## FAM156A 7.074060e-01 0.494937368 0.9999595
## PCNX4 7.073752e-01 0.494952448 0.9999595
## NCOA6 7.073179e-01 0.494980455 0.9999595
## CELF1 7.068983e-01 0.495185839 0.9999595
## RNF213 7.067417e-01 0.495262499 0.9999595
## CNIH2 7.064488e-01 0.495405891 0.9999595
## TBC1D25 7.063452e-01 0.495456650 0.9999595
## NDUFAF7 7.062555e-01 0.495500555 0.9999595
## RGS19 7.058344e-01 0.495706866 0.9999595
## SMAP2 7.057917e-01 0.495727815 0.9999595
## FLT3LG 7.057532e-01 0.495746661 0.9999595
## TXNL1 7.057214e-01 0.495762227 0.9999595
## IL4R 7.056059e-01 0.495818839 0.9999595
## PHACTR4 7.054780e-01 0.495881567 0.9999595
## DNAAF4 7.049627e-01 0.496134192 0.9999595
## LPAR1 7.043872e-01 0.496416554 0.9999595
## ALMS1 7.043021e-01 0.496458297 0.9999595
## VPS39 7.042750e-01 0.496471635 0.9999595
## SLAMF1 7.042285e-01 0.496494443 0.9999595
## FUCA2 7.040463e-01 0.496583875 0.9999595
## LILRB3 7.035720e-01 0.496816735 0.9999595
## GLB1L 7.035362e-01 0.496834338 0.9999595
## MATR3 7.034930e-01 0.496855553 0.9999595
## TXNL4B 7.033521e-01 0.496924760 0.9999595
## DNASE2 7.032460e-01 0.496976908 0.9999595
## RUBCN 7.031491e-01 0.497024483 0.9999595
## RAB40B 7.029912e-01 0.497102114 0.9999595
## MED10 7.027764e-01 0.497207646 0.9999595
## TRIM72 7.027199e-01 0.497235413 0.9999595
## DEAF1 7.026724e-01 0.497258783 0.9999595
## FN3KRP 7.022208e-01 0.497480850 0.9999595
## C9orf72 7.021096e-01 0.497535529 0.9999595
## FCHO1 7.020401e-01 0.497569697 0.9999595
## YRDC 7.019358e-01 0.497621036 0.9999595
## SPINT1 7.015621e-01 0.497804875 0.9999595
## SALL2 7.014299e-01 0.497869977 0.9999595
## CCP110 7.013899e-01 0.497889641 0.9999595
## CEBPZ 7.012874e-01 0.497940082 0.9999595
## TWNK 7.012837e-01 0.497941896 0.9999595
## ZNF605 7.010954e-01 0.498034626 0.9999595
## ZNRF3 7.009674e-01 0.498097627 0.9999595
## TSPYL2 7.009537e-01 0.498104409 0.9999595
## NEDD8 7.007772e-01 0.498191308 0.9999595
## THBD 7.006433e-01 0.498257282 0.9999595
## SEC24D 7.005319e-01 0.498312129 0.9999595
## AGO1 7.001946e-01 0.498478358 0.9999595
## FLACC1 7.001255e-01 0.498512399 0.9999595
## PDCD1LG2 7.001010e-01 0.498524450 0.9999595
## TAF1C 6.998587e-01 0.498643904 0.9999595
## NT5C 6.997944e-01 0.498675598 0.9999595
## RAB24 6.997330e-01 0.498705852 0.9999595
## SLC25A44 6.997025e-01 0.498720930 0.9999595
## ELK1 6.996608e-01 0.498741487 0.9999595
## RBMS1 6.993809e-01 0.498879517 0.9999595
## RNF2 6.991287e-01 0.499003902 0.9999595
## ABCG1 6.986278e-01 0.499251066 0.9999595
## MBOAT1 6.982572e-01 0.499434034 0.9999595
## MPHOSPH10 6.981591e-01 0.499482447 0.9999595
## HMOX1 6.974279e-01 0.499843661 0.9999595
## COX7B 6.972744e-01 0.499919524 0.9999595
## WDR31 6.970466e-01 0.500032152 0.9999595
## AKAP7 6.970374e-01 0.500036703 0.9999595
## TPST2 6.970028e-01 0.500053812 0.9999595
## APOL2 6.967346e-01 0.500186407 0.9999595
## RAPGEF6 6.967158e-01 0.500195721 0.9999595
## ICE2 6.963572e-01 0.500373096 0.9999595
## GTPBP1 6.958047e-01 0.500646463 0.9999595
## NEK2 6.957574e-01 0.500669900 0.9999595
## SLC9A6 6.957566e-01 0.500670306 0.9999595
## SLC15A2 6.955439e-01 0.500775597 0.9999595
## SLC26A11 6.954051e-01 0.500844302 0.9999595
## PPP1R16A 6.953019e-01 0.500895436 0.9999595
## ESD 6.948638e-01 0.501112419 0.9999595
## RPL23 6.948195e-01 0.501134405 0.9999595
## EFHC1 6.943671e-01 0.501358575 0.9999595
## CDS2 6.943187e-01 0.501382564 0.9999595
## FAM172A 6.939026e-01 0.501588880 0.9999595
## GORASP2 6.939011e-01 0.501589618 0.9999595
## LOXL3 6.937987e-01 0.501640407 0.9999595
## PHKA2 6.937863e-01 0.501646574 0.9999595
## ERCC6L2 6.937506e-01 0.501664272 0.9999595
## PLCXD1 6.936817e-01 0.501698454 0.9999595
## H2BC8 6.936322e-01 0.501722999 0.9999595
## BLOC1S5 6.935533e-01 0.501762130 0.9999595
## AKAP13 6.935508e-01 0.501763404 0.9999595
## H2AZ1 6.932831e-01 0.501896219 0.9999595
## FRMD4B 6.931547e-01 0.501959961 0.9999595
## TASP1 6.930593e-01 0.502007296 0.9999595
## CTNNA1 6.930484e-01 0.502012680 0.9999595
## SELL 6.930147e-01 0.502029446 0.9999595
## NLRC3 6.929562e-01 0.502058469 0.9999595
## GRIN3A 6.928360e-01 0.502118119 0.9999595
## ZXDA 6.926333e-01 0.502218784 0.9999595
## ZNF510 6.924074e-01 0.502330944 0.9999595
## ACOX3 6.923326e-01 0.502368120 0.9999595
## TPK1 6.923183e-01 0.502375245 0.9999595
## GIN1 6.921191e-01 0.502474193 0.9999595
## ZNF92 6.919705e-01 0.502548015 0.9999595
## RGS1 6.917862e-01 0.502639609 0.9999595
## NUP37 6.916563e-01 0.502704145 0.9999595
## KIAA1109 6.915221e-01 0.502770852 0.9999595
## SMAD5 6.910096e-01 0.503025704 0.9999595
## MUS81 6.910034e-01 0.503028815 0.9999595
## ANKRD6 6.908919e-01 0.503084245 0.9999595
## DLGAP4 6.908627e-01 0.503098796 0.9999595
## PA2G4 6.908249e-01 0.503117592 0.9999595
## RABAC1 6.906852e-01 0.503187063 0.9999595
## VPS45 6.905695e-01 0.503244670 0.9999595
## TRIM32 6.903892e-01 0.503334400 0.9999595
## DMXL2 6.902413e-01 0.503407996 0.9999595
## ZNF587B 6.901101e-01 0.503473296 0.9999595
## DUT 6.896946e-01 0.503680214 0.9999595
## NR3C1 6.896761e-01 0.503689411 0.9999595
## PPP1R13B 6.895804e-01 0.503737091 0.9999595
## NDST2 6.894054e-01 0.503824232 0.9999595
## CKAP2 6.893106e-01 0.503871485 0.9999595
## DPY30 6.888956e-01 0.504078266 0.9999595
## AKAP1 6.888230e-01 0.504114474 0.9999595
## ZNF225 6.886654e-01 0.504193012 0.9999595
## XIAP 6.886506e-01 0.504200434 0.9999595
## USF3 6.886291e-01 0.504211123 0.9999595
## ENTPD5 6.885093e-01 0.504270837 0.9999595
## KLHDC1 6.882349e-01 0.504407726 0.9999595
## GYPC 6.881994e-01 0.504425400 0.9999595
## MFAP3L 6.881661e-01 0.504442034 0.9999595
## DERPC 6.881157e-01 0.504467140 0.9999595
## DHODH 6.880559e-01 0.504496996 0.9999595
## MRPL49 6.878812e-01 0.504584133 0.9999595
## ZNF329 6.878428e-01 0.504603300 0.9999595
## SFPQ 6.877252e-01 0.504662010 0.9999595
## GATA3 6.877216e-01 0.504663770 0.9999595
## H4C8 6.876047e-01 0.504722102 0.9999595
## PRXL2C 6.874576e-01 0.504795558 0.9999595
## KLHL12 6.873814e-01 0.504833591 0.9999595
## ZNF398 6.872291e-01 0.504909606 0.9999595
## SLC6A20 6.872076e-01 0.504920371 0.9999595
## MREG 6.870678e-01 0.504990165 0.9999595
## TTC4 6.869810e-01 0.505033512 0.9999595
## DARS1 6.869279e-01 0.505060016 0.9999595
## ANKRD12 6.868194e-01 0.505114202 0.9999595
## SPATA13 6.866750e-01 0.505186355 0.9999595
## PSMA2 6.865733e-01 0.505237143 0.9999595
## GPD2 6.861673e-01 0.505440044 0.9999595
## S100A13 6.860230e-01 0.505512159 0.9999595
## PMPCB 6.860134e-01 0.505516929 0.9999595
## TMPO 6.858093e-01 0.505618968 0.9999595
## ZBED1 6.856465e-01 0.505700400 0.9999595
## PHF1 6.856388e-01 0.505704261 0.9999595
## MTRNR2L10 6.855399e-01 0.505753710 0.9999595
## H2BC11 6.851464e-01 0.505950543 0.9999595
## TGM2 6.851011e-01 0.505973183 0.9999595
## UPP1 6.848637e-01 0.506092012 0.9999595
## CALM2 6.846813e-01 0.506183289 0.9999595
## ANKRD13A 6.845528e-01 0.506247616 0.9999595
## SFI1 6.844207e-01 0.506313745 0.9999595
## YIPF5 6.843547e-01 0.506346775 0.9999595
## MCOLN2 6.840940e-01 0.506477331 0.9999595
## TSPO 6.840052e-01 0.506521832 0.9999595
## JAK2 6.839078e-01 0.506570592 0.9999595
## P4HB 6.836365e-01 0.506706528 0.9999595
## CYFIP2 6.834874e-01 0.506781267 0.9999595
## LILRA1 6.833500e-01 0.506850115 0.9999595
## OSTC 6.827259e-01 0.507163014 0.9999595
## GOSR1 6.818213e-01 0.507616910 0.9999595
## PGBD3 6.817995e-01 0.507627853 0.9999595
## ZNF277 6.815397e-01 0.507758282 0.9999595
## MYOM1 6.814940e-01 0.507781234 0.9999595
## RABL2B 6.813905e-01 0.507833200 0.9999595
## MYL6B 6.812797e-01 0.507888865 0.9999595
## TRIM41 6.810309e-01 0.508013844 0.9999595
## SAYSD1 6.808026e-01 0.508128544 0.9999595
## DDA1 6.805168e-01 0.508272202 0.9999595
## CLEC10A 6.804555e-01 0.508303012 0.9999595
## FGFRL1 6.801356e-01 0.508463830 0.9999595
## ADAM22 6.799356e-01 0.508564387 0.9999595
## H3C4 6.798538e-01 0.508605540 0.9999595
## NOTCH2 6.798290e-01 0.508618037 0.9999595
## CCRL2 6.797179e-01 0.508673900 0.9999595
## NTAQ1 6.794740e-01 0.508796638 0.9999595
## PEG10 6.791111e-01 0.508979262 0.9999595
## INSR 6.789620e-01 0.509054302 0.9999595
## CREB3L4 6.787006e-01 0.509185922 0.9999595
## SLC20A2 6.785384e-01 0.509267613 0.9999595
## CHN1 6.784810e-01 0.509296530 0.9999595
## MKS1 6.783832e-01 0.509345798 0.9999595
## ZNF649 6.783792e-01 0.509347780 0.9999595
## RAB27B 6.783636e-01 0.509355673 0.9999595
## USP46 6.783193e-01 0.509377992 0.9999595
## CD69 6.782579e-01 0.509408896 0.9999595
## ACBD4 6.782194e-01 0.509428298 0.9999595
## DDI2 6.782053e-01 0.509435433 0.9999595
## CD83 6.778617e-01 0.509608552 0.9999595
## TARBP1 6.776987e-01 0.509690690 0.9999595
## NIFK 6.776422e-01 0.509719205 0.9999595
## CADM4 6.776335e-01 0.509723599 0.9999595
## ILKAP 6.775143e-01 0.509783658 0.9999595
## QTRT2 6.771640e-01 0.509960323 0.9999595
## LPCAT1 6.770902e-01 0.509997549 0.9999595
## TRIM59 6.768014e-01 0.510143209 0.9999595
## ELMO3 6.765034e-01 0.510293583 0.9999595
## GNL3 6.763175e-01 0.510387401 0.9999595
## KDM2A 6.762731e-01 0.510409842 0.9999595
## GLT1D1 6.761377e-01 0.510478211 0.9999595
## NID1 6.758691e-01 0.510613795 0.9999595
## WDR27 6.758220e-01 0.510637585 0.9999595
## DCTPP1 6.756532e-01 0.510722842 0.9999595
## CLPTM1 6.755452e-01 0.510777419 0.9999595
## CCNJL 6.754653e-01 0.510817769 0.9999595
## FGD4 6.753294e-01 0.510886414 0.9999595
## ZNF799 6.748844e-01 0.511111338 0.9999595
## C21orf91 6.746880e-01 0.511210628 0.9999595
## AREG 6.746624e-01 0.511223549 0.9999595
## CHD8 6.745928e-01 0.511258752 0.9999595
## WASHC5 6.744334e-01 0.511339358 0.9999595
## FKBP5 6.736669e-01 0.511727174 0.9999595
## ATP1B1 6.734424e-01 0.511840800 0.9999595
## FLRT2 6.733249e-01 0.511900267 0.9999595
## C21orf62 6.732902e-01 0.511917846 0.9999595
## GIGYF2 6.732546e-01 0.511935895 0.9999595
## MRPS16 6.731101e-01 0.512009026 0.9999595
## SETD5 6.729547e-01 0.512087751 0.9999595
## WSB1 6.729445e-01 0.512092930 0.9999595
## REM2 6.726177e-01 0.512258468 0.9999595
## CEP126 6.726037e-01 0.512265560 0.9999595
## DUSP18 6.725925e-01 0.512271241 0.9999595
## TMEM53 6.724486e-01 0.512344164 0.9999595
## CCDC127 6.724187e-01 0.512359285 0.9999595
## RBM15B 6.723244e-01 0.512407104 0.9999595
## OR1F1 6.723011e-01 0.512418882 0.9999595
## EBPL 6.722603e-01 0.512439563 0.9999595
## RAB32 6.721795e-01 0.512480543 0.9999595
## TRAPPC6A 6.718791e-01 0.512632830 0.9999595
## PI16 6.717972e-01 0.512674355 0.9999595
## LY86 6.717700e-01 0.512688157 0.9999595
## BTG2 6.717168e-01 0.512715139 0.9999595
## ARPC3 6.716598e-01 0.512744045 0.9999595
## PKP4 6.714764e-01 0.512837046 0.9999595
## PFDN1 6.714270e-01 0.512862116 0.9999595
## CTSF 6.712448e-01 0.512954515 0.9999595
## RIC1 6.710251e-01 0.513066001 0.9999595
## ATP23 6.710155e-01 0.513070857 0.9999595
## TADA2A 6.710088e-01 0.513074286 0.9999595
## NAA30 6.706647e-01 0.513248958 0.9999595
## ABLIM3 6.702634e-01 0.513452700 0.9999595
## CTDSP1 6.701514e-01 0.513509563 0.9999595
## SLC41A1 6.700871e-01 0.513542257 0.9999595
## TRANK1 6.698752e-01 0.513649868 0.9999595
## INTS6L 6.698352e-01 0.513670189 0.9999595
## SRRD 6.697904e-01 0.513692992 0.9999595
## ACTA2 6.694611e-01 0.513860332 0.9999595
## EIF4E3 6.687908e-01 0.514201116 0.9999595
## SCIN 6.686119e-01 0.514292115 0.9999595
## CFL2 6.685406e-01 0.514328376 0.9999595
## MED20 6.685326e-01 0.514332437 0.9999595
## LZTFL1 6.685258e-01 0.514335907 0.9999595
## HAT1 6.684927e-01 0.514352776 0.9999595
## SV2A 6.681604e-01 0.514521827 0.9999595
## IMPDH1 6.681043e-01 0.514550388 0.9999595
## TMEM258 6.680719e-01 0.514566876 0.9999595
## MPDU1 6.679830e-01 0.514612165 0.9999595
## CDK20 6.678751e-01 0.514667065 0.9999595
## TMEM167A 6.674377e-01 0.514889799 0.9999595
## ELOVL6 6.671183e-01 0.515052504 0.9999595
## RPL22L1 6.668868e-01 0.515170435 0.9999595
## SYNGR1 6.667360e-01 0.515247281 0.9999595
## ZMYND19 6.664846e-01 0.515375431 0.9999595
## SCD5 6.663636e-01 0.515437119 0.9999595
## MPC1 6.663503e-01 0.515443922 0.9999595
## NDUFS2 6.657512e-01 0.515749468 0.9999595
## CYTH3 6.654610e-01 0.515897539 0.9999595
## TREX1 6.653730e-01 0.515942426 0.9999595
## CD86 6.650736e-01 0.516095280 0.9999595
## CD300E 6.650730e-01 0.516095578 0.9999595
## DDX27 6.648851e-01 0.516191505 0.9999595
## PLEKHG1 6.643376e-01 0.516471152 0.9999595
## OLFML2A 6.641382e-01 0.516573024 0.9999595
## GALT 6.638483e-01 0.516721187 0.9999595
## ZZEF1 6.638422e-01 0.516724278 0.9999595
## FCGR2B 6.633897e-01 0.516955656 0.9999595
## RAB12 6.631606e-01 0.517072819 0.9999595
## ATF1 6.631234e-01 0.517091849 0.9999595
## UBE2Q2 6.630189e-01 0.517145295 0.9999595
## CEP83 6.628103e-01 0.517252025 0.9999595
## C2orf15 6.626522e-01 0.517332898 0.9999595
## ATP5MPL 6.626506e-01 0.517333727 0.9999595
## PPP1R9B 6.626307e-01 0.517343915 0.9999595
## LPCAT2 6.624849e-01 0.517418528 0.9999595
## FABP5 6.624179e-01 0.517452818 0.9999595
## RNF220 6.623866e-01 0.517468865 0.9999595
## ACVR1B 6.623644e-01 0.517480229 0.9999595
## PRKCI 6.617584e-01 0.517790510 0.9999595
## PIGU 6.616418e-01 0.517850264 0.9999595
## ELAC1 6.615791e-01 0.517882380 0.9999595
## SIN3B 6.610348e-01 0.518161319 0.9999595
## MED1 6.609496e-01 0.518204997 0.9999595
## TNFRSF8 6.608817e-01 0.518239772 0.9999595
## STAT4 6.607043e-01 0.518330747 0.9999595
## TMOD3 6.606976e-01 0.518334204 0.9999595
## SRPRA 6.603111e-01 0.518532401 0.9999595
## PRKACA 6.601953e-01 0.518591830 0.9999595
## GBA 6.601934e-01 0.518592798 0.9999595
## COX7A2 6.600546e-01 0.518664008 0.9999595
## RBAK 6.600175e-01 0.518683013 0.9999595
## EGR1 6.600169e-01 0.518683337 0.9999595
## EPHA4 6.599964e-01 0.518693887 0.9999595
## CLEC2D 6.598333e-01 0.518777571 0.9999595
## ACKR3 6.597644e-01 0.518812900 0.9999595
## SLC39A6 6.596653e-01 0.518863796 0.9999595
## ITGAX 6.596204e-01 0.518886825 0.9999595
## CEP128 6.593998e-01 0.519000065 0.9999595
## PHTF1 6.591785e-01 0.519113707 0.9999595
## CAMKMT 6.591050e-01 0.519151488 0.9999595
## DYRK4 6.590495e-01 0.519179976 0.9999595
## RPL14 6.590152e-01 0.519197575 0.9999595
## DENND3 6.589365e-01 0.519238004 0.9999595
## ZNF211 6.588403e-01 0.519287454 0.9999595
## DNAJC2 6.584601e-01 0.519482765 0.9999595
## EP400 6.582476e-01 0.519592016 0.9999595
## RNF144A 6.581296e-01 0.519652660 0.9999595
## ZC3H4 6.580922e-01 0.519671869 0.9999595
## C17orf58 6.575223e-01 0.519964976 0.9999595
## ARL11 6.574049e-01 0.520025384 0.9999595
## RNF130 6.571929e-01 0.520134447 0.9999595
## VAV1 6.569976e-01 0.520234973 0.9999595
## ABR 6.569739e-01 0.520247147 0.9999595
## ZNF529 6.569478e-01 0.520260596 0.9999595
## CCNE1 6.567477e-01 0.520363589 0.9999595
## PCBD1 6.566277e-01 0.520425387 0.9999595
## PLA2G6 6.565865e-01 0.520446561 0.9999595
## LIPE 6.564857e-01 0.520498498 0.9999595
## ENTPD7 6.564580e-01 0.520512749 0.9999595
## UBLCP1 6.563283e-01 0.520579527 0.9999595
## FTSJ1 6.561658e-01 0.520663232 0.9999595
## TTC7B 6.560875e-01 0.520703544 0.9999595
## C19orf38 6.560613e-01 0.520717053 0.9999595
## HS6ST1 6.557487e-01 0.520878131 0.9999595
## NSUN3 6.556797e-01 0.520913708 0.9999595
## ANKRD27 6.554213e-01 0.521046860 0.9999595
## SNRPN 6.553117e-01 0.521103367 0.9999595
## RIPK2 6.549121e-01 0.521309420 0.9999595
## CYB5R4 6.544973e-01 0.521523417 0.9999595
## CEP63 6.542830e-01 0.521633989 0.9999595
## ANKRD50 6.542159e-01 0.521668628 0.9999595
## DHRS12 6.542156e-01 0.521668773 0.9999595
## ITPR3 6.541057e-01 0.521725493 0.9999595
## FAM13B 6.540792e-01 0.521739192 0.9999595
## ATAD2 6.540606e-01 0.521748784 0.9999595
## RMI1 6.539346e-01 0.521813850 0.9999595
## CLNS1A 6.538615e-01 0.521851591 0.9999595
## LRRFIP2 6.538013e-01 0.521882666 0.9999595
## VPS26C 6.537077e-01 0.521930966 0.9999595
## BNIP2 6.536033e-01 0.521984899 0.9999595
## SLC25A42 6.535746e-01 0.521999736 0.9999595
## GATA2 6.534986e-01 0.522038959 0.9999595
## PPM1F 6.533940e-01 0.522093022 0.9999595
## OIP5 6.533117e-01 0.522135518 0.9999595
## PTGS2 6.532460e-01 0.522169439 0.9999595
## MICB 6.530488e-01 0.522271358 0.9999595
## MED25 6.530450e-01 0.522273291 0.9999595
## PRPF39 6.530362e-01 0.522277825 0.9999595
## MYO1C 6.529687e-01 0.522312706 0.9999595
## ZFP28 6.529581e-01 0.522318221 0.9999595
## SYNE1 6.529014e-01 0.522347504 0.9999595
## RNF41 6.528502e-01 0.522373973 0.9999595
## UBXN10 6.527002e-01 0.522451481 0.9999595
## KIAA0040 6.526176e-01 0.522494218 0.9999595
## ZNF784 6.525151e-01 0.522547166 0.9999595
## PANX1 6.524402e-01 0.522585890 0.9999595
## SHLD2 6.524109e-01 0.522601057 0.9999595
## CATSPER2 6.523790e-01 0.522617555 0.9999595
## VPS25 6.522698e-01 0.522674032 0.9999595
## SLC25A45 6.521697e-01 0.522725789 0.9999595
## TAF9 6.515882e-01 0.523026600 0.9999595
## ATP6V1C1 6.514895e-01 0.523077708 0.9999595
## EPS15 6.512698e-01 0.523191395 0.9999595
## PLEKHA5 6.512454e-01 0.523204061 0.9999595
## UBE2J2 6.512091e-01 0.523222858 0.9999595
## MAK16 6.511107e-01 0.523273801 0.9999595
## ATM 6.510765e-01 0.523291480 0.9999595
## POR 6.506930e-01 0.523490065 0.9999595
## TIGIT 6.505537e-01 0.523562241 0.9999595
## CDKN1C 6.505032e-01 0.523588399 0.9999595
## ISCA2 6.503382e-01 0.523673889 0.9999595
## C3orf14 6.503209e-01 0.523682836 0.9999595
## PRMT2 6.501263e-01 0.523783673 0.9999595
## SLC25A36 6.500653e-01 0.523815323 0.9999595
## GDF9 6.499708e-01 0.523864260 0.9999595
## GNAI3 6.495883e-01 0.524062552 0.9999595
## FAM214B 6.495369e-01 0.524089241 0.9999595
## SET 6.493248e-01 0.524199235 0.9999595
## POPDC2 6.492746e-01 0.524225259 0.9999595
## LRIF1 6.490761e-01 0.524328220 0.9999595
## CDK7 6.489685e-01 0.524384059 0.9999595
## PECAM1 6.487189e-01 0.524513601 0.9999595
## TERF1 6.486285e-01 0.524560505 0.9999595
## NAV1 6.485181e-01 0.524617825 0.9999595
## IRF7 6.483040e-01 0.524728946 0.9999595
## TENT2 6.480596e-01 0.524855873 0.9999595
## NFIA 6.479017e-01 0.524937859 0.9999595
## LRRC49 6.478457e-01 0.524966938 0.9999595
## GOLGA4 6.476373e-01 0.525075201 0.9999595
## CDC34 6.473803e-01 0.525208772 0.9999595
## ABHD15 6.472797e-01 0.525261026 0.9999595
## TTC39B 6.468392e-01 0.525490048 0.9999595
## TXLNG 6.466295e-01 0.525599067 0.9999595
## ZIK1 6.464856e-01 0.525673901 0.9999595
## ANAPC13 6.458315e-01 0.526014277 0.9999595
## VSIG10L 6.457400e-01 0.526061862 0.9999595
## RPL24 6.457065e-01 0.526079347 0.9999595
## SUOX 6.456684e-01 0.526099147 0.9999595
## SLC22A15 6.455463e-01 0.526162744 0.9999595
## PSD4 6.455066e-01 0.526183399 0.9999595
## ELP3 6.452478e-01 0.526318129 0.9999595
## ZSCAN25 6.451278e-01 0.526380673 0.9999595
## VPS13B 6.450775e-01 0.526406848 0.9999595
## DPH6 6.449819e-01 0.526456653 0.9999595
## AS3MT 6.448744e-01 0.526512638 0.9999595
## KLHL2 6.447819e-01 0.526560867 0.9999595
## COG4 6.447627e-01 0.526570874 0.9999595
## ZSWIM6 6.447395e-01 0.526582929 0.9999595
## SH2D3A 6.445582e-01 0.526677434 0.9999595
## LRP6 6.444128e-01 0.526753185 0.9999595
## NRG1 6.443744e-01 0.526773209 0.9999595
## C22orf39 6.442687e-01 0.526828305 0.9999595
## PUM3 6.437372e-01 0.527105486 0.9999595
## FITM2 6.436829e-01 0.527133776 0.9999595
## YIF1A 6.435485e-01 0.527203917 0.9999595
## DDX28 6.434436e-01 0.527258614 0.9999595
## FAM111A 6.432459e-01 0.527361792 0.9999595
## SKIV2L 6.432215e-01 0.527374498 0.9999595
## S100A12 6.428937e-01 0.527545614 0.9999595
## INPP5F 6.428009e-01 0.527594040 0.9999595
## ZNF251 6.427331e-01 0.527629431 0.9999595
## TBCC 6.425847e-01 0.527706936 0.9999595
## KIAA1191 6.424602e-01 0.527771971 0.9999595
## PHF14 6.424425e-01 0.527781186 0.9999595
## ZNF804A 6.419989e-01 0.528012948 0.9999595
## LINS1 6.417785e-01 0.528128104 0.9999595
## CAB39 6.416439e-01 0.528198440 0.9999595
## HSPA4L 6.415340e-01 0.528255876 0.9999595
## LIPA 6.415255e-01 0.528260317 0.9999595
## TAOK1 6.411692e-01 0.528446640 0.9999595
## KLLN 6.408688e-01 0.528603729 0.9999595
## AKT3 6.406411e-01 0.528722874 0.9999595
## IL20RB 6.406046e-01 0.528741947 0.9999595
## AKAP10 6.404655e-01 0.528814764 0.9999595
## KLF4 6.400379e-01 0.529038533 0.9999595
## KRI1 6.397135e-01 0.529208416 0.9999595
## RBL1 6.394524e-01 0.529345179 0.9999595
## NGLY1 6.393130e-01 0.529418218 0.9999595
## EXOSC6 6.392983e-01 0.529425917 0.9999595
## PLIN3 6.389904e-01 0.529587254 0.9999595
## PIPOX 6.389808e-01 0.529592284 0.9999595
## PDCD6 6.388504e-01 0.529660598 0.9999595
## MR1 6.387717e-01 0.529701875 0.9999595
## LDLRAP1 6.386595e-01 0.529760711 0.9999595
## GPHN 6.385927e-01 0.529795733 0.9999595
## HOMER2 6.385255e-01 0.529830941 0.9999595
## VPS26A 6.385139e-01 0.529837050 0.9999595
## CEP41 6.380676e-01 0.530071107 0.9999595
## ENY2 6.379340e-01 0.530141159 0.9999595
## SEPTIN2 6.377890e-01 0.530217265 0.9999595
## AP4S1 6.375988e-01 0.530317055 0.9999595
## RNF34 6.372769e-01 0.530486023 0.9999595
## FBXO32 6.372516e-01 0.530499290 0.9999595
## ZNF599 6.367881e-01 0.530742728 0.9999595
## TMSB15B 6.367602e-01 0.530757373 0.9999595
## SYN2 6.367531e-01 0.530761068 0.9999595
## DGKD 6.367196e-01 0.530778673 0.9999595
## PDE3A 6.365864e-01 0.530848660 0.9999595
## TUBGCP5 6.364774e-01 0.530905915 0.9999595
## SRR 6.362137e-01 0.531044493 0.9999595
## PROS1 6.361959e-01 0.531053833 0.9999595
## EPS15L1 6.358644e-01 0.531228119 0.9999595
## FURIN 6.356389e-01 0.531346675 0.9999595
## ZNF517 6.355982e-01 0.531368067 0.9999595
## EFHD2 6.354829e-01 0.531428730 0.9999595
## RAB36 6.352869e-01 0.531531786 0.9999595
## IPCEF1 6.350163e-01 0.531674147 0.9999595
## ERI1 6.345497e-01 0.531919762 0.9999595
## FAM83F 6.344646e-01 0.531964520 0.9999595
## DICER1 6.344425e-01 0.531976200 0.9999595
## SLC12A7 6.344362e-01 0.531979516 0.9999595
## BET1L 6.343830e-01 0.532007497 0.9999595
## PDCD10 6.342772e-01 0.532063222 0.9999595
## TTC21A 6.342210e-01 0.532092807 0.9999595
## CAMSAP1 6.337891e-01 0.532320311 0.9999595
## SH3BGRL2 6.332266e-01 0.532616737 0.9999595
## COPA 6.331317e-01 0.532666759 0.9999595
## CAV2 6.331006e-01 0.532683139 0.9999595
## CRYM 6.328862e-01 0.532796197 0.9999595
## CREBL2 6.327642e-01 0.532860532 0.9999595
## DPH2 6.327582e-01 0.532863673 0.9999595
## ADSS1 6.325010e-01 0.532999351 0.9999595
## PPIH 6.324007e-01 0.533052237 0.9999595
## DAB2 6.323156e-01 0.533097155 0.9999595
## RNF111 6.322908e-01 0.533110227 0.9999595
## PLEK 6.321636e-01 0.533177381 0.9999595
## ETFDH 6.320536e-01 0.533235388 0.9999595
## INO80C 6.319587e-01 0.533285488 0.9999595
## ABLIM1 6.318029e-01 0.533367714 0.9999595
## TLCD2 6.314340e-01 0.533562500 0.9999595
## CNOT4 6.313211e-01 0.533622135 0.9999595
## MYO1E 6.312378e-01 0.533666141 0.9999595
## MAU2 6.311753e-01 0.533699146 0.9999595
## PLEC 6.304109e-01 0.534103088 0.9999595
## SYAP1 6.299680e-01 0.534337220 0.9999595
## LSM6 6.297961e-01 0.534428184 0.9999595
## CLDN7 6.297923e-01 0.534430164 0.9999595
## PUS7L 6.297664e-01 0.534443857 0.9999595
## FYTTD1 6.293069e-01 0.534686980 0.9999595
## ZNF44 6.292739e-01 0.534704429 0.9999595
## ZKSCAN1 6.291219e-01 0.534784898 0.9999595
## MAPK1IP1L 6.286996e-01 0.535008496 0.9999595
## ARFGAP3 6.282746e-01 0.535233572 0.9999595
## CHD4 6.277676e-01 0.535502256 0.9999595
## EIF2AK1 6.276695e-01 0.535554211 0.9999595
## GATD3A 6.274831e-01 0.535653051 0.9999595
## CD2 6.269316e-01 0.535945551 0.9999595
## HPS1 6.268394e-01 0.535994430 0.9999595
## ETS2 6.267459e-01 0.536044036 0.9999595
## ARHGEF17 6.266408e-01 0.536099836 0.9999595
## RUVBL1 6.264740e-01 0.536188325 0.9999595
## SLC2A3 6.263124e-01 0.536274122 0.9999595
## TMEM120B 6.262337e-01 0.536315895 0.9999595
## CNEP1R1 6.262122e-01 0.536327313 0.9999595
## ZBP1 6.260551e-01 0.536410699 0.9999595
## TPPP3 6.257772e-01 0.536558249 0.9999595
## RASGEF1A 6.256060e-01 0.536649208 0.9999595
## TLNRD1 6.250660e-01 0.536936097 0.9999595
## ANKRD36 6.249283e-01 0.537009318 0.9999595
## CD55 6.247844e-01 0.537085803 0.9999595
## ITGAE 6.246428e-01 0.537161077 0.9999595
## AQP10 6.245520e-01 0.537209382 0.9999595
## CD27 6.243316e-01 0.537326553 0.9999595
## ARSB 6.237577e-01 0.537631907 0.9999595
## ZNF24 6.235433e-01 0.537746026 0.9999595
## ARL16 6.234679e-01 0.537786174 0.9999595
## SLC35G1 6.234643e-01 0.537788088 0.9999595
## MOSPD3 6.233029e-01 0.537874004 0.9999595
## YKT6 6.231356e-01 0.537963067 0.9999595
## THUMPD3 6.230987e-01 0.537982736 0.9999595
## TMCO6 6.230541e-01 0.538006451 0.9999595
## IRF2BP2 6.230501e-01 0.538008624 0.9999595
## NMT1 6.227270e-01 0.538180675 0.9999595
## PEBP1 6.226495e-01 0.538222006 0.9999595
## USP11 6.226249e-01 0.538235082 0.9999595
## SUN2 6.225381e-01 0.538281318 0.9999595
## NSL1 6.224826e-01 0.538310933 0.9999595
## ADAR 6.222320e-01 0.538444474 0.9999595
## VILL 6.219883e-01 0.538574383 0.9999595
## LIG1 6.219496e-01 0.538595002 0.9999595
## SIK2 6.216264e-01 0.538767369 0.9999595
## BTN3A2 6.214524e-01 0.538860158 0.9999595
## LTF 6.214166e-01 0.538879266 0.9999595
## DUSP12 6.214055e-01 0.538885158 0.9999595
## RPL32 6.213873e-01 0.538894866 0.9999595
## MRPL51 6.211207e-01 0.539037128 0.9999595
## VSIG4 6.211069e-01 0.539044482 0.9999595
## CAPRIN2 6.210392e-01 0.539080584 0.9999595
## TNFSF4 6.206664e-01 0.539279578 0.9999595
## DTX1 6.206158e-01 0.539306583 0.9999595
## PTP4A3 6.204701e-01 0.539384388 0.9999595
## ADO 6.204692e-01 0.539384869 0.9999595
## RAB5A 6.201457e-01 0.539557624 0.9999595
## PARP12 6.198813e-01 0.539698857 0.9999595
## ZBTB24 6.197490e-01 0.539769533 0.9999595
## SPPL2A 6.197331e-01 0.539778044 0.9999595
## ABCB11 6.197290e-01 0.539780203 0.9999595
## NOL9 6.197278e-01 0.539780887 0.9999595
## ZNF662 6.194026e-01 0.539954674 0.9999595
## MUTYH 6.192832e-01 0.540018482 0.9999595
## ASXL2 6.191435e-01 0.540093144 0.9999595
## TSPAN14 6.191406e-01 0.540094699 0.9999595
## ATP8B3 6.189633e-01 0.540189544 0.9999595
## BSCL2 6.180098e-01 0.540699627 0.9999595
## PTGES 6.178942e-01 0.540761535 0.9999595
## BRD7 6.178289e-01 0.540796482 0.9999595
## CAMTA2 6.176154e-01 0.540910795 0.9999595
## SP100 6.175827e-01 0.540928305 0.9999595
## MAGEH1 6.174809e-01 0.540982814 0.9999595
## XPO1 6.173589e-01 0.541048175 0.9999595
## HBEGF 6.173283e-01 0.541064558 0.9999595
## CDC42EP4 6.172575e-01 0.541102467 0.9999595
## PTPRA 6.167985e-01 0.541348434 0.9999595
## RPL41 6.164527e-01 0.541533760 0.9999595
## ERMARD 6.164054e-01 0.541559120 0.9999595
## TPD52 6.163536e-01 0.541586899 0.9999595
## TMEM131L 6.163050e-01 0.541612929 0.9999595
## REV3L 6.163028e-01 0.541614146 0.9999595
## ZNF829 6.162993e-01 0.541615996 0.9999595
## ATXN2 6.162769e-01 0.541627995 0.9999595
## PLAU 6.160203e-01 0.541765612 0.9999595
## GP9 6.159812e-01 0.541786610 0.9999595
## NSD1 6.155657e-01 0.542009494 0.9999595
## CR2 6.154878e-01 0.542051287 0.9999595
## FBXL13 6.154602e-01 0.542066097 0.9999595
## LYRM7 6.154583e-01 0.542067126 0.9999595
## ECE1 6.154479e-01 0.542072719 0.9999595
## PSMD10 6.153238e-01 0.542139323 0.9999595
## SMARCD1 6.151399e-01 0.542238003 0.9999595
## GEN1 6.149223e-01 0.542354862 0.9999595
## CRIM1 6.148489e-01 0.542394256 0.9999595
## SYTL4 6.148109e-01 0.542414672 0.9999595
## STAT5B 6.146236e-01 0.542515254 0.9999595
## DOP1B 6.146089e-01 0.542523140 0.9999595
## CD320 6.143600e-01 0.542656860 0.9999595
## UGGT2 6.143048e-01 0.542686515 0.9999595
## ERAP1 6.141069e-01 0.542792850 0.9999595
## SLC5A3 6.140620e-01 0.542816981 0.9999595
## VLDLR 6.140567e-01 0.542819788 0.9999595
## ZNRF2 6.140024e-01 0.542849004 0.9999595
## MTRNR2L2 6.139785e-01 0.542861840 0.9999595
## ZSCAN2 6.139620e-01 0.542870707 0.9999595
## HGD 6.137161e-01 0.543002862 0.9999595
## LUC7L 6.134425e-01 0.543149967 0.9999595
## EPS8L1 6.132159e-01 0.543271813 0.9999595
## RPS27L 6.131688e-01 0.543297189 0.9999595
## PPIE 6.130508e-01 0.543360646 0.9999595
## HRH2 6.130479e-01 0.543362205 0.9999595
## KIAA1614 6.129450e-01 0.543417560 0.9999595
## IFIT3 6.127256e-01 0.543535602 0.9999595
## NEIL2 6.126291e-01 0.543587550 0.9999595
## NBPF11 6.124956e-01 0.543659407 0.9999595
## CBR4 6.122782e-01 0.543776428 0.9999595
## SLC25A37 6.120971e-01 0.543873904 0.9999595
## USP18 6.118598e-01 0.544001719 0.9999595
## BIN1 6.116660e-01 0.544106079 0.9999595
## YWHAE 6.116421e-01 0.544118989 0.9999595
## ZBED4 6.112528e-01 0.544328735 0.9999595
## SESTD1 6.112158e-01 0.544348672 0.9999595
## ANO6 6.111826e-01 0.544366590 0.9999595
## SGPP2 6.110466e-01 0.544439860 0.9999595
## RBM7 6.108433e-01 0.544549490 0.9999595
## TNKS 6.107690e-01 0.544589499 0.9999595
## UQCRB 6.107219e-01 0.544614925 0.9999595
## TPCN2 6.106496e-01 0.544653916 0.9999595
## TMCO1 6.105412e-01 0.544712360 0.9999595
## STT3A 6.103183e-01 0.544832592 0.9999595
## SLC25A25 6.102469e-01 0.544871101 0.9999595
## RNF5 6.102214e-01 0.544884841 0.9999595
## ESRRA 6.100843e-01 0.544958846 0.9999595
## SLC25A29 6.098821e-01 0.545067953 0.9999595
## HNRNPU 6.098758e-01 0.545071309 0.9999595
## NAB2 6.098060e-01 0.545109027 0.9999595
## ZNF345 6.096805e-01 0.545176719 0.9999595
## UBTD2 6.096259e-01 0.545206184 0.9999595
## ESYT2 6.095861e-01 0.545227682 0.9999595
## BAHD1 6.094692e-01 0.545290803 0.9999595
## DENND4B 6.092387e-01 0.545415240 0.9999595
## FMO4 6.092384e-01 0.545415445 0.9999595
## SMARCB1 6.091815e-01 0.545446158 0.9999595
## IFRD2 6.090837e-01 0.545498966 0.9999595
## CNOT1 6.090694e-01 0.545506711 0.9999595
## TSPYL5 6.090346e-01 0.545525507 0.9999595
## TMEM88 6.090286e-01 0.545528706 0.9999595
## ID2 6.088138e-01 0.545644743 0.9999595
## LZTS2 6.087044e-01 0.545703874 0.9999595
## METTL6 6.085969e-01 0.545761965 0.9999595
## EWSR1 6.085896e-01 0.545765882 0.9999595
## POLK 6.085701e-01 0.545776421 0.9999595
## SMIM26 6.084849e-01 0.545822477 0.9999595
## C12orf43 6.079626e-01 0.546104796 0.9999595
## ZNF260 6.073345e-01 0.546444514 0.9999595
## ZNF136 6.073177e-01 0.546453619 0.9999595
## IL18 6.070984e-01 0.546572274 0.9999595
## ANKRD22 6.070261e-01 0.546611425 0.9999595
## SCML2 6.067451e-01 0.546763511 0.9999595
## GNB1 6.060758e-01 0.547125981 0.9999595
## PLA2G4A 6.058866e-01 0.547228482 0.9999595
## TBXAS1 6.054051e-01 0.547489445 0.9999595
## NGDN 6.052646e-01 0.547565604 0.9999595
## ZNF416 6.051812e-01 0.547610838 0.9999595
## ACOT2 6.050612e-01 0.547675876 0.9999595
## ZMPSTE24 6.050215e-01 0.547697417 0.9999595
## PCCB 6.048507e-01 0.547790030 0.9999595
## BMP1 6.046774e-01 0.547884076 0.9999595
## PF4 6.045421e-01 0.547957451 0.9999595
## SKA2 6.045378e-01 0.547959776 0.9999595
## CDH26 6.043601e-01 0.548056189 0.9999595
## LRRN1 6.043232e-01 0.548076229 0.9999595
## CDK6 6.043104e-01 0.548083203 0.9999595
## LRSAM1 6.040696e-01 0.548213906 0.9999595
## TRMT5 6.038631e-01 0.548325993 0.9999595
## HCCS 6.038274e-01 0.548345346 0.9999595
## PTX3 6.038047e-01 0.548357689 0.9999595
## EOGT 6.036849e-01 0.548422747 0.9999595
## DNLZ 6.036292e-01 0.548452978 0.9999595
## THOC5 6.034787e-01 0.548534730 0.9999595
## PRDM1 6.034133e-01 0.548570245 0.9999595
## SAFB2 6.032408e-01 0.548663945 0.9999595
## GMPR2 6.032088e-01 0.548681350 0.9999595
## SLC46A1 6.032058e-01 0.548682951 0.9999595
## MFNG 6.031692e-01 0.548702877 0.9999595
## GPR107 6.030793e-01 0.548751702 0.9999595
## MS4A14 6.029483e-01 0.548822897 0.9999595
## GPR180 6.028817e-01 0.548859075 0.9999595
## DOCK6 6.028651e-01 0.548868119 0.9999595
## JRK 6.025791e-01 0.549023571 0.9999595
## RMND5B 6.025274e-01 0.549051647 0.9999595
## SRRM2 6.024993e-01 0.549066931 0.9999595
## ZNF486 6.024905e-01 0.549071761 0.9999595
## TECPR2 6.024236e-01 0.549108119 0.9999595
## IFT140 6.023835e-01 0.549129905 0.9999595
## ASXL1 6.023634e-01 0.549140830 0.9999595
## INTS5 6.021154e-01 0.549275733 0.9999595
## SPSB2 6.015495e-01 0.549583576 0.9999595
## B4GALT4 6.015375e-01 0.549590118 0.9999595
## C5orf63 6.013897e-01 0.549670577 0.9999595
## CASP9 6.012371e-01 0.549753604 0.9999595
## CBX6 6.010902e-01 0.549833580 0.9999595
## PLCD1 6.010125e-01 0.549875917 0.9999595
## TMEM214 6.009035e-01 0.549935229 0.9999595
## NTNG2 6.008548e-01 0.549961796 0.9999595
## LIN7A 6.007998e-01 0.549991730 0.9999595
## CISH 6.006910e-01 0.550050967 0.9999595
## COA5 6.006531e-01 0.550071622 0.9999595
## POLE2 6.004048e-01 0.550206874 0.9999595
## GANC 6.003524e-01 0.550235442 0.9999595
## PELI3 6.002057e-01 0.550315381 0.9999595
## SLC9A8 5.997961e-01 0.550538627 0.9999595
## CETN2 5.996889e-01 0.550597068 0.9999595
## SSH2 5.996126e-01 0.550638696 0.9999595
## CFAP58 5.994592e-01 0.550722350 0.9999595
## SLC31A2 5.993226e-01 0.550796835 0.9999595
## ASTN2 5.990526e-01 0.550944112 0.9999595
## AGAP4 5.990015e-01 0.550971976 0.9999595
## SRGAP2 5.989141e-01 0.551019688 0.9999595
## SLC14A2 5.989060e-01 0.551024122 0.9999595
## HAUS1 5.987291e-01 0.551120619 0.9999595
## LDOC1 5.985533e-01 0.551216606 0.9999595
## ERV3-1-ZNF117 5.985161e-01 0.551236862 0.9999595
## ARG1 5.980984e-01 0.551464926 0.9999595
## VMP1 5.977219e-01 0.551670570 0.9999595
## ASCC2 5.971666e-01 0.551974013 0.9999595
## CAD 5.971666e-01 0.551974051 0.9999595
## ALOX5AP 5.970744e-01 0.552024421 0.9999595
## RCHY1 5.970272e-01 0.552050247 0.9999595
## SEC61A1 5.968154e-01 0.552166013 0.9999595
## FZD5 5.965802e-01 0.552294636 0.9999595
## PPP2R5B 5.965157e-01 0.552329936 0.9999595
## KIF3C 5.963208e-01 0.552436538 0.9999595
## KDM2B 5.958409e-01 0.552699165 0.9999595
## PPP4R2 5.955931e-01 0.552834783 0.9999595
## ZNF567 5.955388e-01 0.552864547 0.9999595
## PKD2 5.953794e-01 0.552951833 0.9999595
## ACP1 5.952668e-01 0.553013479 0.9999595
## PIGP 5.952607e-01 0.553016815 0.9999595
## ZFYVE28 5.950688e-01 0.553121896 0.9999595
## FAM32A 5.948313e-01 0.553252050 0.9999595
## KAT5 5.945420e-01 0.553410548 0.9999595
## DENND5B 5.943174e-01 0.553533659 0.9999595
## ANAPC15 5.942301e-01 0.553581509 0.9999595
## PHACTR1 5.941771e-01 0.553610600 0.9999595
## ZNF354A 5.941084e-01 0.553648265 0.9999595
## BIRC5 5.939633e-01 0.553727813 0.9999595
## PSME3IP1 5.939554e-01 0.553732138 0.9999595
## RIDA 5.939108e-01 0.553756583 0.9999595
## ZAP70 5.937287e-01 0.553856465 0.9999595
## CDK11A 5.935537e-01 0.553952479 0.9999595
## CYB5D2 5.933861e-01 0.554044412 0.9999595
## NDUFV2 5.933624e-01 0.554057409 0.9999595
## IL18R1 5.932502e-01 0.554119018 0.9999595
## ZDHHC7 5.930755e-01 0.554214885 0.9999595
## CREB3 5.930511e-01 0.554228253 0.9999595
## EFNA1 5.927158e-01 0.554412357 0.9999595
## SMCR8 5.926641e-01 0.554440735 0.9999595
## EID1 5.923890e-01 0.554591802 0.9999595
## ROM1 5.922651e-01 0.554659873 0.9999595
## PIP4K2A 5.922053e-01 0.554692720 0.9999595
## FAM217B 5.922047e-01 0.554693027 0.9999595
## TMEM260 5.921873e-01 0.554702592 0.9999595
## TOR4A 5.918553e-01 0.554885007 0.9999595
## ACAD11 5.918010e-01 0.554914843 0.9999595
## ZNF546 5.917900e-01 0.554920913 0.9999595
## GDAP2 5.917255e-01 0.554956352 0.9999595
## PYCR3 5.915405e-01 0.555058018 0.9999595
## PPM1G 5.914504e-01 0.555107576 0.9999595
## BEND5 5.914428e-01 0.555111765 0.9999595
## PMM2 5.913485e-01 0.555163559 0.9999595
## VASP 5.912392e-01 0.555223668 0.9999595
## STX11 5.911211e-01 0.555288632 0.9999595
## NPIPB12 5.911159e-01 0.555291462 0.9999595
## CYB561 5.909599e-01 0.555377308 0.9999595
## RILP 5.909215e-01 0.555398398 0.9999595
## TP73 5.909015e-01 0.555409433 0.9999595
## DLG4 5.903572e-01 0.555708911 0.9999595
## BUB3 5.902752e-01 0.555754030 0.9999595
## ZNF383 5.902121e-01 0.555788758 0.9999595
## NFATC3 5.899234e-01 0.555947718 0.9999595
## ZNF141 5.898365e-01 0.555995547 0.9999595
## FAM53C 5.897695e-01 0.556032429 0.9999595
## ABCB10 5.897580e-01 0.556038790 0.9999595
## TOMM7 5.897318e-01 0.556053182 0.9999595
## THSD1 5.896385e-01 0.556104567 0.9999595
## CAPN2 5.889611e-01 0.556477780 0.9999595
## KRAS 5.887211e-01 0.556610071 0.9999595
## DTNBP1 5.886420e-01 0.556653711 0.9999595
## GET1 5.886070e-01 0.556672997 0.9999595
## TLR1 5.885159e-01 0.556723231 0.9999595
## WBP11 5.884716e-01 0.556747670 0.9999595
## SRSF6 5.884577e-01 0.556755312 0.9999595
## LAMTOR5 5.884270e-01 0.556772267 0.9999595
## PINX1 5.883938e-01 0.556790558 0.9999595
## SSR4 5.883880e-01 0.556793743 0.9999595
## PCDH12 5.883778e-01 0.556799384 0.9999595
## SAMD10 5.882121e-01 0.556890735 0.9999595
## DYRK1B 5.880963e-01 0.556954618 0.9999595
## TCAIM 5.880438e-01 0.556983608 0.9999595
## COPS8 5.878982e-01 0.557063919 0.9999595
## FKBP1B 5.877133e-01 0.557165921 0.9999595
## ZBTB41 5.872663e-01 0.557412647 0.9999595
## UTP14A 5.867912e-01 0.557675006 0.9999595
## ZNF438 5.864955e-01 0.557838363 0.9999595
## ZNF304 5.863011e-01 0.557945824 0.9999595
## MARCKS 5.862574e-01 0.557969925 0.9999595
## MON1B 5.859318e-01 0.558149928 0.9999595
## REEP2 5.855744e-01 0.558347538 0.9999595
## ST6GAL1 5.855594e-01 0.558355812 0.9999595
## DGAT2 5.855073e-01 0.558384665 0.9999595
## TMEM63A 5.854236e-01 0.558430910 0.9999595
## MRTFB 5.850633e-01 0.558630254 0.9999595
## LRRC70 5.848949e-01 0.558723445 0.9999595
## RGS10 5.848595e-01 0.558743041 0.9999595
## ZNF66 5.841134e-01 0.559156100 0.9999595
## QSOX1 5.839663e-01 0.559237572 0.9999595
## CYB5R1 5.833881e-01 0.559557938 0.9999595
## HCFC2 5.831350e-01 0.559698256 0.9999595
## UBE2W 5.830188e-01 0.559762658 0.9999595
## DDX1 5.830038e-01 0.559770952 0.9999595
## AFG3L2 5.829794e-01 0.559784530 0.9999595
## ZBTB20 5.828406e-01 0.559861472 0.9999595
## HEBP2 5.825349e-01 0.560031026 0.9999595
## ZNF285 5.823433e-01 0.560137338 0.9999595
## SNAP47 5.822599e-01 0.560183566 0.9999595
## MINPP1 5.822370e-01 0.560196318 0.9999595
## LSM1 5.821782e-01 0.560228953 0.9999595
## GNAO1 5.821452e-01 0.560247251 0.9999595
## SPATA6 5.819882e-01 0.560334388 0.9999595
## MFN1 5.819392e-01 0.560361546 0.9999595
## PPP1R3D 5.817536e-01 0.560464571 0.9999595
## STX6 5.817300e-01 0.560477699 0.9999595
## RAD54B 5.816630e-01 0.560514919 0.9999595
## UBE3B 5.816113e-01 0.560543586 0.9999595
## DYNC1LI1 5.811562e-01 0.560796321 0.9999595
## CABP4 5.809744e-01 0.560897364 0.9999595
## GNS 5.802402e-01 0.561305398 0.9999595
## ERO1A 5.801259e-01 0.561368960 0.9999595
## DYNLT1 5.800191e-01 0.561428367 0.9999595
## RRM1 5.798669e-01 0.561512983 0.9999595
## MTMR11 5.798057e-01 0.561547037 0.9999595
## UMPS 5.797116e-01 0.561599383 0.9999595
## OTUD3 5.796848e-01 0.561614274 0.9999595
## PGM3 5.796766e-01 0.561618879 0.9999595
## GCH1 5.794248e-01 0.561758982 0.9999595
## SLC39A8 5.793641e-01 0.561792754 0.9999595
## BNIP3L 5.792819e-01 0.561838499 0.9999595
## FLII 5.790606e-01 0.561961639 0.9999595
## ZNF630 5.790501e-01 0.561967493 0.9999595
## NFE2L3 5.789928e-01 0.561999425 0.9999595
## CLK4 5.788426e-01 0.562083029 0.9999595
## RPS6KA1 5.788293e-01 0.562090425 0.9999595
## SLC25A28 5.787060e-01 0.562159083 0.9999595
## REL 5.786662e-01 0.562181275 0.9999595
## ADGRE1 5.784923e-01 0.562278115 0.9999595
## JUP 5.783135e-01 0.562377711 0.9999595
## IDUA 5.778438e-01 0.562639395 0.9999595
## BCL2 5.778350e-01 0.562644302 0.9999595
## CCDC14 5.775244e-01 0.562817449 0.9999595
## HSP90AA1 5.774464e-01 0.562860942 0.9999595
## TBC1D31 5.771623e-01 0.563019399 0.9999595
## LIN7C 5.770371e-01 0.563089213 0.9999595
## CEP72 5.770168e-01 0.563100547 0.9999595
## MCPH1 5.769187e-01 0.563155233 0.9999595
## PTGER4 5.766416e-01 0.563309874 0.9999595
## LACTB 5.765325e-01 0.563370752 0.9999595
## IL15 5.764964e-01 0.563390879 0.9999595
## C3orf35 5.764902e-01 0.563394340 0.9999595
## HACD4 5.764801e-01 0.563399969 0.9999595
## MXD4 5.763963e-01 0.563446789 0.9999595
## WIPI1 5.762335e-01 0.563537661 0.9999595
## BAMBI 5.762186e-01 0.563545984 0.9999595
## ANKRD36B 5.762157e-01 0.563547569 0.9999595
## ATP6V0A1 5.760995e-01 0.563612473 0.9999595
## STAT2 5.759986e-01 0.563668795 0.9999595
## CA2 5.759838e-01 0.563677057 0.9999595
## MPC2 5.757442e-01 0.563810865 0.9999595
## DZIP1L 5.755415e-01 0.563924078 0.9999595
## CD70 5.753556e-01 0.564027933 0.9999595
## SETD1B 5.750121e-01 0.564219882 0.9999595
## SPATA5 5.746488e-01 0.564423010 0.9999595
## SH3GLB2 5.741411e-01 0.564706978 0.9999595
## SPPL2B 5.740222e-01 0.564773471 0.9999595
## NOMO1 5.740169e-01 0.564776436 0.9999595
## PLPP3 5.740073e-01 0.564781806 0.9999595
## SEC23B 5.739953e-01 0.564788545 0.9999595
## MYD88 5.737336e-01 0.564934988 0.9999595
## ABHD11 5.736253e-01 0.564995572 0.9999595
## SSR1 5.731445e-01 0.565264766 0.9999595
## GLIPR2 5.731051e-01 0.565286846 0.9999595
## SYS1 5.730828e-01 0.565299318 0.9999595
## FAM221A 5.726920e-01 0.565518199 0.9999595
## NDST1 5.726260e-01 0.565555172 0.9999595
## TMEM97 5.723567e-01 0.565706094 0.9999595
## IGFBP4 5.723091e-01 0.565732775 0.9999595
## PLPP6 5.722482e-01 0.565766876 0.9999595
## IGFBP7 5.722469e-01 0.565767632 0.9999595
## ARHGAP31 5.722039e-01 0.565791749 0.9999595
## TUBG2 5.721389e-01 0.565828173 0.9999595
## RAB4A 5.720981e-01 0.565851050 0.9999595
## PTEN 5.718874e-01 0.565969173 0.9999595
## SLC19A2 5.718349e-01 0.565998600 0.9999595
## SLC3A2 5.717705e-01 0.566034684 0.9999595
## LMAN2 5.716987e-01 0.566074962 0.9999595
## DCAF12 5.713691e-01 0.566259845 0.9999595
## HARS1 5.712699e-01 0.566315526 0.9999595
## MYL5 5.708577e-01 0.566546799 0.9999595
## TBC1D14 5.707144e-01 0.566627264 0.9999595
## RPL39 5.706426e-01 0.566667550 0.9999595
## MTIF3 5.704384e-01 0.566782182 0.9999595
## CCDC66 5.703539e-01 0.566829628 0.9999595
## KCNIP2 5.700718e-01 0.566988074 0.9999595
## SHCBP1 5.699653e-01 0.567047945 0.9999595
## SELENON 5.699060e-01 0.567081213 0.9999595
## TPM3 5.698733e-01 0.567099603 0.9999595
## DDX47 5.698154e-01 0.567132120 0.9999595
## TRAPPC4 5.695527e-01 0.567279751 0.9999595
## TMBIM6 5.695306e-01 0.567292179 0.9999595
## PAGR1 5.693534e-01 0.567391771 0.9999595
## PGAP1 5.691990e-01 0.567478589 0.9999595
## MYOF 5.691812e-01 0.567488575 0.9999595
## MAP3K14 5.687912e-01 0.567707913 0.9999595
## C17orf80 5.687494e-01 0.567731405 0.9999595
## MAP2K6 5.682006e-01 0.568040179 0.9999595
## CRACR2A 5.678404e-01 0.568242921 0.9999595
## FKBP3 5.677323e-01 0.568303808 0.9999595
## ZNF514 5.676172e-01 0.568368579 0.9999595
## IGHG1 5.675482e-01 0.568407437 0.9999595
## AGO4 5.674717e-01 0.568450523 0.9999595
## TAGLN2 5.673678e-01 0.568509074 0.9999595
## TTLL5 5.671308e-01 0.568642560 0.9999595
## TMEM183B 5.670715e-01 0.568675956 0.9999595
## NHSL2 5.669666e-01 0.568735071 0.9999595
## GLG1 5.669184e-01 0.568762263 0.9999595
## IL27RA 5.667046e-01 0.568882737 0.9999595
## THAP9 5.666598e-01 0.568907989 0.9999595
## TRUB1 5.665919e-01 0.568946273 0.9999595
## TM7SF2 5.665745e-01 0.568956086 0.9999595
## ANKRD54 5.663455e-01 0.569085151 0.9999595
## CARD11 5.663239e-01 0.569097381 0.9999595
## MSANTD2 5.657387e-01 0.569427419 0.9999595
## FAM20B 5.656137e-01 0.569497923 0.9999595
## PPP3CC 5.656116e-01 0.569499128 0.9999595
## FBXL4 5.653029e-01 0.569673314 0.9999595
## MIIP 5.651873e-01 0.569738613 0.9999595
## FCGR2C 5.649767e-01 0.569857476 0.9999595
## ARF6 5.649026e-01 0.569899335 0.9999595
## RNF175 5.648580e-01 0.569924509 0.9999595
## SUPT7L 5.646067e-01 0.570066442 0.9999595
## DNAJC19 5.645533e-01 0.570096581 0.9999595
## COX6C 5.645374e-01 0.570105586 0.9999595
## GALK2 5.643936e-01 0.570186819 0.9999595
## NCOR1 5.643465e-01 0.570213429 0.9999595
## VPS35 5.641518e-01 0.570323456 0.9999595
## RALGPS1 5.641318e-01 0.570334757 0.9999595
## C16orf70 5.639011e-01 0.570465135 0.9999595
## MOSPD2 5.638662e-01 0.570484867 0.9999595
## USP15 5.637885e-01 0.570528790 0.9999595
## THUMPD1 5.634492e-01 0.570720590 0.9999595
## CYP4F12 5.633271e-01 0.570789632 0.9999595
## RPL35A 5.633263e-01 0.570790081 0.9999595
## KCNA2 5.631973e-01 0.570863051 0.9999595
## TWF2 5.631211e-01 0.570906153 0.9999595
## GTF2F2 5.631086e-01 0.570913219 0.9999595
## MS4A4E 5.631048e-01 0.570915372 0.9999595
## GRB2 5.630805e-01 0.570929104 0.9999595
## PDE6A 5.630380e-01 0.570953190 0.9999595
## RAB8A 5.630257e-01 0.570960132 0.9999595
## AMER1 5.629851e-01 0.570983123 0.9999595
## PYGL 5.627904e-01 0.571093272 0.9999595
## SNX9 5.626759e-01 0.571158067 0.9999595
## RPF2 5.623326e-01 0.571352386 0.9999595
## ZCCHC3 5.622658e-01 0.571390162 0.9999595
## AGK 5.621457e-01 0.571458213 0.9999595
## ARFIP2 5.620558e-01 0.571509088 0.9999595
## GIPR 5.618082e-01 0.571649349 0.9999595
## RCBTB2 5.616362e-01 0.571746767 0.9999595
## MED8 5.610725e-01 0.572066207 0.9999595
## ZNF320 5.606700e-01 0.572294404 0.9999595
## NOB1 5.605112e-01 0.572384427 0.9999595
## SEPTIN6 5.603412e-01 0.572480848 0.9999595
## CEP350 5.601553e-01 0.572586321 0.9999595
## NDUFAF4 5.601215e-01 0.572605518 0.9999595
## RIN3 5.599237e-01 0.572717726 0.9999595
## C6orf89 5.595421e-01 0.572934320 0.9999595
## ZNF429 5.594737e-01 0.572973162 0.9999595
## SYNRG 5.592591e-01 0.573095051 0.9999595
## POMGNT1 5.590948e-01 0.573188334 0.9999595
## EXPH5 5.590820e-01 0.573195584 0.9999595
## GMIP 5.589120e-01 0.573292184 0.9999595
## ASPH 5.588033e-01 0.573353941 0.9999595
## TMEM64 5.582702e-01 0.573656872 0.9999595
## ITFG1 5.582488e-01 0.573669054 0.9999595
## HNRNPH2 5.580501e-01 0.573782012 0.9999595
## CCNB2 5.577868e-01 0.573931740 0.9999595
## ZXDB 5.577860e-01 0.573932186 0.9999595
## NDUFS4 5.577649e-01 0.573944199 0.9999595
## NME1 5.577597e-01 0.573947150 0.9999595
## KMT2D 5.577302e-01 0.573963918 0.9999595
## IFRD1 5.576598e-01 0.574003937 0.9999595
## RPL19 5.576291e-01 0.574021436 0.9999595
## TIGD1 5.575941e-01 0.574041309 0.9999595
## CAPZA2 5.575044e-01 0.574092367 0.9999595
## MS4A4A 5.572855e-01 0.574216902 0.9999595
## DPP8 5.572800e-01 0.574220016 0.9999595
## LIMA1 5.572724e-01 0.574224356 0.9999595
## ITPRID2 5.571293e-01 0.574305765 0.9999595
## GRK3 5.564774e-01 0.574676899 0.9999595
## LTK 5.564528e-01 0.574690920 0.9999595
## USPL1 5.560951e-01 0.574894667 0.9999595
## MRPS9 5.557281e-01 0.575103764 0.9999595
## DHX8 5.556760e-01 0.575133442 0.9999595
## TMEM70 5.554694e-01 0.575251240 0.9999595
## PLSCR3 5.552756e-01 0.575361726 0.9999595
## ABCF2 5.547875e-01 0.575640073 0.9999595
## UEVLD 5.547450e-01 0.575664310 0.9999595
## CCL4L2 5.546822e-01 0.575700153 0.9999595
## MYLK3 5.545891e-01 0.575753247 0.9999595
## DUSP22 5.540932e-01 0.576036275 0.9999595
## SEC61G 5.540329e-01 0.576070683 0.9999595
## MTHFS 5.539487e-01 0.576118749 0.9999595
## S100A6 5.539225e-01 0.576133698 0.9999595
## ACVRL1 5.535309e-01 0.576357341 0.9999595
## NET1 5.535153e-01 0.576366249 0.9999595
## HLCS 5.534857e-01 0.576383131 0.9999595
## ECHDC3 5.533220e-01 0.576476646 0.9999595
## TCTA 5.532086e-01 0.576541451 0.9999595
## SLC4A7 5.531449e-01 0.576577837 0.9999595
## FKBP2 5.531440e-01 0.576578328 0.9999595
## TDRD3 5.530316e-01 0.576642576 0.9999595
## CEP104 5.529798e-01 0.576672174 0.9999595
## SGMS1 5.529460e-01 0.576691501 0.9999595
## STAM2 5.528000e-01 0.576774941 0.9999595
## LCORL 5.526825e-01 0.576842089 0.9999595
## TMEM50B 5.525065e-01 0.576942699 0.9999595
## DNASE1 5.522402e-01 0.577095017 0.9999595
## RNF7 5.521319e-01 0.577156969 0.9999595
## TM9SF4 5.520836e-01 0.577184566 0.9999595
## MRPS18C 5.520542e-01 0.577201410 0.9999595
## BMS1 5.519108e-01 0.577283403 0.9999595
## MGAT5 5.517823e-01 0.577356929 0.9999595
## BRD1 5.517746e-01 0.577361354 0.9999595
## KLRB1 5.517692e-01 0.577364460 0.9999595
## HTRA2 5.517573e-01 0.577371266 0.9999595
## KDM1B 5.517339e-01 0.577384633 0.9999595
## PPT1 5.516066e-01 0.577457478 0.9999595
## NR1H3 5.514609e-01 0.577540845 0.9999595
## FLOT2 5.513391e-01 0.577610552 0.9999595
## ZNF275 5.513096e-01 0.577627446 0.9999595
## UBE4A 5.512979e-01 0.577634161 0.9999595
## SERINC1 5.512889e-01 0.577639323 0.9999595
## FGF11 5.512739e-01 0.577647912 0.9999595
## TNIK 5.512530e-01 0.577659874 0.9999595
## ZNF274 5.511045e-01 0.577744893 0.9999595
## ATG2A 5.510988e-01 0.577748143 0.9999595
## XRCC4 5.507821e-01 0.577929514 0.9999595
## ZNF836 5.506025e-01 0.578032408 0.9999595
## ACYP1 5.501905e-01 0.578268461 0.9999595
## SNAPC3 5.500348e-01 0.578357703 0.9999595
## JAK3 5.499945e-01 0.578380757 0.9999595
## TMED9 5.498340e-01 0.578472756 0.9999595
## CEP68 5.498069e-01 0.578488309 0.9999595
## ELF1 5.496771e-01 0.578562735 0.9999595
## WDTC1 5.494982e-01 0.578665342 0.9999595
## GPT2 5.494598e-01 0.578687371 0.9999595
## SMS 5.491926e-01 0.578840631 0.9999595
## HMGN4 5.491726e-01 0.578852110 0.9999595
## RPS20 5.484905e-01 0.579243525 0.9999595
## ZNF25 5.484420e-01 0.579271381 0.9999595
## TRAPPC2 5.484378e-01 0.579273792 0.9999595
## WDR12 5.484165e-01 0.579285998 0.9999595
## STYX 5.481847e-01 0.579419122 0.9999595
## RAPGEF2 5.479985e-01 0.579526051 0.9999595
## CFAP97 5.476401e-01 0.579731921 0.9999595
## LARP1 5.475692e-01 0.579772646 0.9999595
## MTAP 5.475678e-01 0.579773437 0.9999595
## AEBP2 5.475030e-01 0.579810681 0.9999595
## CIAO2A 5.471846e-01 0.579993679 0.9999595
## ANAPC7 5.469137e-01 0.580149419 0.9999595
## PLCB1 5.468503e-01 0.580185912 0.9999595
## PFKFB3 5.466123e-01 0.580322752 0.9999595
## NDFIP2 5.466023e-01 0.580328528 0.9999595
## EEF1AKMT2 5.462981e-01 0.580503481 0.9999595
## COBLL1 5.462646e-01 0.580522758 0.9999595
## ILF3 5.462315e-01 0.580541839 0.9999595
## TIMM9 5.461774e-01 0.580572946 0.9999595
## MAGOHB 5.461025e-01 0.580616028 0.9999595
## AMFR 5.460935e-01 0.580621237 0.9999595
## CASP7 5.459828e-01 0.580684930 0.9999595
## PSAP 5.459743e-01 0.580689804 0.9999595
## LY6G5B 5.458779e-01 0.580745285 0.9999595
## RAI1 5.458654e-01 0.580752486 0.9999595
## ALG6 5.458542e-01 0.580758952 0.9999595
## PCED1B 5.457570e-01 0.580814899 0.9999595
## KCNJ2 5.457564e-01 0.580815233 0.9999595
## H2BC21 5.456802e-01 0.580859081 0.9999595
## UQCC1 5.456610e-01 0.580870164 0.9999595
## CD300C 5.456417e-01 0.580881286 0.9999595
## TMEM209 5.454119e-01 0.581013563 0.9999595
## TNFSF10 5.453660e-01 0.581040014 0.9999595
## PHACTR2 5.449297e-01 0.581291320 0.9999595
## CLMN 5.448804e-01 0.581319741 0.9999595
## B4GALNT2 5.447301e-01 0.581406348 0.9999595
## METTL17 5.446536e-01 0.581450414 0.9999595
## UBXN2B 5.443962e-01 0.581598759 0.9999595
## WEE1 5.442387e-01 0.581689579 0.9999595
## STARD10 5.441889e-01 0.581718303 0.9999595
## RPS10 5.439012e-01 0.581884210 0.9999595
## ZNF658 5.438060e-01 0.581939081 0.9999595
## ZNF230 5.437221e-01 0.581987508 0.9999595
## TBCE 5.436011e-01 0.582057274 0.9999595
## GORASP1 5.431595e-01 0.582312108 0.9999595
## ELMO2 5.430722e-01 0.582362495 0.9999595
## CCPG1 5.430042e-01 0.582401764 0.9999595
## UTS2R 5.428886e-01 0.582468498 0.9999595
## OAS1 5.428846e-01 0.582470782 0.9999595
## MAP3K3 5.426598e-01 0.582600584 0.9999595
## ZNF511 5.423627e-01 0.582772193 0.9999595
## UBA5 5.423604e-01 0.582773489 0.9999595
## C11orf54 5.420453e-01 0.582955560 0.9999595
## ARSK 5.418462e-01 0.583070609 0.9999595
## GALNT1 5.416509e-01 0.583183465 0.9999595
## GCC1 5.414280e-01 0.583312335 0.9999595
## POP1 5.413236e-01 0.583372670 0.9999595
## RRP7A 5.412597e-01 0.583409654 0.9999595
## PRIM1 5.412223e-01 0.583431266 0.9999595
## NPC2 5.411828e-01 0.583454136 0.9999595
## P2RY8 5.411009e-01 0.583501474 0.9999595
## UBR1 5.410888e-01 0.583508502 0.9999595
## TRIM58 5.410241e-01 0.583545885 0.9999595
## ZNF765 5.409816e-01 0.583570472 0.9999595
## KANSL2 5.408778e-01 0.583630543 0.9999595
## BRWD3 5.408195e-01 0.583664226 0.9999595
## DNAJB4 5.405845e-01 0.583800223 0.9999595
## FSD1L 5.404347e-01 0.583886900 0.9999595
## KLHL3 5.400129e-01 0.584131049 0.9999595
## SLC7A14 5.399760e-01 0.584152412 0.9999595
## ZNF57 5.397681e-01 0.584272811 0.9999595
## MYRF 5.396706e-01 0.584329282 0.9999595
## NAT10 5.396453e-01 0.584343964 0.9999595
## CCND3 5.395794e-01 0.584382097 0.9999595
## EML3 5.394005e-01 0.584485748 0.9999595
## CARD6 5.391718e-01 0.584618287 0.9999595
## R3HCC1L 5.391113e-01 0.584653314 0.9999595
## TPM4 5.390599e-01 0.584683104 0.9999595
## ZNF180 5.389415e-01 0.584751715 0.9999595
## HUWE1 5.389139e-01 0.584767727 0.9999595
## SIRT2 5.388080e-01 0.584829101 0.9999595
## HERC2 5.383504e-01 0.585094449 0.9999595
## ZFP62 5.380582e-01 0.585263956 0.9999595
## RRP1B 5.379738e-01 0.585312909 0.9999595
## KDM1A 5.378791e-01 0.585367850 0.9999595
## KLF5 5.376703e-01 0.585489048 0.9999595
## ARL17A 5.372862e-01 0.585711977 0.9999595
## CCNB1 5.372490e-01 0.585733575 0.9999595
## ARRB2 5.371699e-01 0.585779528 0.9999595
## ZBTB4 5.371464e-01 0.585793136 0.9999595
## LEPROT 5.371411e-01 0.585796215 0.9999595
## SLF2 5.370858e-01 0.585828345 0.9999595
## UPF3B 5.370304e-01 0.585860525 0.9999595
## RNF141 5.369868e-01 0.585885837 0.9999595
## ZC3H14 5.368865e-01 0.585944108 0.9999595
## CLCN6 5.367573e-01 0.586019154 0.9999595
## GEMIN4 5.367310e-01 0.586034400 0.9999595
## DNAH17 5.363962e-01 0.586228913 0.9999595
## CHKA 5.363382e-01 0.586262621 0.9999595
## GTPBP3 5.363016e-01 0.586283903 0.9999595
## NOP53 5.362669e-01 0.586304044 0.9999595
## ZNF611 5.360474e-01 0.586431651 0.9999595
## MRPS33 5.359823e-01 0.586469502 0.9999595
## ZNF549 5.355870e-01 0.586699368 0.9999595
## PDIA5 5.352981e-01 0.586867388 0.9999595
## GOLPH3 5.349826e-01 0.587050971 0.9999595
## MRPL9 5.349355e-01 0.587078387 0.9999595
## PARP14 5.347399e-01 0.587192211 0.9999595
## ZNF839 5.346586e-01 0.587239524 0.9999595
## STX3 5.346156e-01 0.587264562 0.9999595
## RPSA 5.344997e-01 0.587332037 0.9999595
## PITPNM2 5.342575e-01 0.587473078 0.9999595
## RBKS 5.339902e-01 0.587628734 0.9999595
## CYTH2 5.337916e-01 0.587744458 0.9999595
## SCUBE1 5.337462e-01 0.587770930 0.9999595
## STRN4 5.335615e-01 0.587878519 0.9999595
## BMX 5.335194e-01 0.587903094 0.9999595
## GJD3 5.334387e-01 0.587950122 0.9999595
## NDC1 5.333775e-01 0.587985760 0.9999595
## RPS24 5.333106e-01 0.588024750 0.9999595
## SLC30A6 5.332850e-01 0.588039672 0.9999595
## GOLGA5 5.332301e-01 0.588071681 0.9999595
## BRF2 5.330831e-01 0.588157392 0.9999595
## SF3B2 5.330380e-01 0.588183724 0.9999595
## FBXO42 5.327638e-01 0.588343599 0.9999595
## SLC8A1 5.327538e-01 0.588349444 0.9999595
## EEF1G 5.326719e-01 0.588397228 0.9999595
## BTBD10 5.326563e-01 0.588406284 0.9999595
## AGTPBP1 5.325442e-01 0.588471702 0.9999595
## RNFT2 5.325181e-01 0.588486909 0.9999595
## KATNIP 5.324846e-01 0.588506447 0.9999595
## CLEC7A 5.324694e-01 0.588515338 0.9999595
## APEX1 5.323966e-01 0.588557809 0.9999595
## CEP164 5.321946e-01 0.588675660 0.9999595
## ALDH3B1 5.321301e-01 0.588713308 0.9999595
## APMAP 5.321277e-01 0.588714734 0.9999595
## EI24 5.321214e-01 0.588718368 0.9999595
## ANKHD1-EIF4EBP3 5.320290e-01 0.588772322 0.9999595
## CD8B 5.319162e-01 0.588838139 0.9999595
## SP110 5.318377e-01 0.588884004 0.9999595
## BLMH 5.317584e-01 0.588930301 0.9999595
## ZNF496 5.317405e-01 0.588940716 0.9999595
## STRBP 5.317100e-01 0.588958554 0.9999595
## NRDE2 5.313060e-01 0.589194486 0.9999595
## DNAJA3 5.312850e-01 0.589206730 0.9999595
## ZNF678 5.307436e-01 0.589523056 0.9999595
## LUZP6 5.304595e-01 0.589689109 0.9999595
## MTPN 5.304595e-01 0.589689109 0.9999595
## C8orf58 5.302868e-01 0.589790091 0.9999595
## PAM16 5.302806e-01 0.589793716 0.9999595
## MYL12B 5.302237e-01 0.589826997 0.9999595
## ZFP3 5.299505e-01 0.589986722 0.9999595
## IRF4 5.299353e-01 0.589995612 0.9999595
## HSBP1 5.297498e-01 0.590104142 0.9999595
## NCOA7 5.297052e-01 0.590130221 0.9999595
## SPACA6 5.296097e-01 0.590186126 0.9999595
## PRADC1 5.295651e-01 0.590212208 0.9999595
## LRMDA 5.295213e-01 0.590237839 0.9999595
## ARID3B 5.294595e-01 0.590274001 0.9999595
## N4BP1 5.290402e-01 0.590519429 0.9999595
## UPK3BL1 5.288153e-01 0.590651080 0.9999595
## MTX1 5.287048e-01 0.590715822 0.9999595
## PARD6B 5.285790e-01 0.590789464 0.9999595
## PTTG1IP 5.282961e-01 0.590955176 0.9999595
## ZNF85 5.282219e-01 0.590998654 0.9999595
## RAP2B 5.282175e-01 0.591001239 0.9999595
## NPIPA5 5.281453e-01 0.591043566 0.9999595
## CXorf21 5.280710e-01 0.591087111 0.9999595
## ZNF718 5.280147e-01 0.591120068 0.9999595
## RPAP1 5.277966e-01 0.591247935 0.9999595
## XRN1 5.277863e-01 0.591253949 0.9999595
## MYLK4 5.276229e-01 0.591349725 0.9999595
## UPF1 5.273976e-01 0.591481812 0.9999595
## SDR39U1 5.271971e-01 0.591599410 0.9999595
## RPLP0 5.269314e-01 0.591755257 0.9999595
## OAZ1 5.267896e-01 0.591838485 0.9999595
## CSNK1D 5.267869e-01 0.591840066 0.9999595
## TMA16 5.267780e-01 0.591845253 0.9999595
## BLCAP 5.267237e-01 0.591877160 0.9999595
## FBXO31 5.267175e-01 0.591880789 0.9999595
## SIRPB2 5.265721e-01 0.591966132 0.9999595
## LRRC57 5.265008e-01 0.592007930 0.9999595
## C11orf80 5.264487e-01 0.592038543 0.9999595
## GABARAPL2 5.264469e-01 0.592039589 0.9999595
## KIFC2 5.264092e-01 0.592061705 0.9999595
## MTR 5.263040e-01 0.592123475 0.9999595
## DCP1B 5.262526e-01 0.592153673 0.9999595
## SLC22A5 5.262137e-01 0.592176472 0.9999595
## LRRC61 5.260208e-01 0.592289753 0.9999595
## SRSF3 5.256842e-01 0.592487429 0.9999595
## AMOT 5.256360e-01 0.592515758 0.9999595
## FAM177A1 5.256207e-01 0.592524733 0.9999595
## MAZ 5.252471e-01 0.592744270 0.9999595
## RAB11FIP4 5.252043e-01 0.592769399 0.9999595
## DUSP5 5.245729e-01 0.593140570 0.9999595
## NAPB 5.243745e-01 0.593257250 0.9999595
## ECHDC2 5.242659e-01 0.593321156 0.9999595
## MYCBP 5.241014e-01 0.593417936 0.9999595
## B9D2 5.240823e-01 0.593429183 0.9999595
## ERLIN2 5.239334e-01 0.593516801 0.9999595
## TAF13 5.237244e-01 0.593639794 0.9999595
## YWHAB 5.236117e-01 0.593706090 0.9999595
## ARMCX2 5.236010e-01 0.593712399 0.9999595
## RPL36A 5.235640e-01 0.593734177 0.9999595
## CLU 5.232415e-01 0.593924080 0.9999595
## ADD3 5.228830e-01 0.594135225 0.9999595
## HLA-DOB 5.225587e-01 0.594326307 0.9999595
## XPC 5.225586e-01 0.594326344 0.9999595
## ADAT1 5.223846e-01 0.594428895 0.9999595
## RAB30 5.222088e-01 0.594532492 0.9999595
## RAB33B 5.219829e-01 0.594665667 0.9999595
## TOMM70 5.219817e-01 0.594666385 0.9999595
## CLIP2 5.217107e-01 0.594826199 0.9999595
## SHQ1 5.216373e-01 0.594869495 0.9999595
## PTCD2 5.216369e-01 0.594869699 0.9999595
## NDUFA5 5.216259e-01 0.594876197 0.9999595
## ELK3 5.213902e-01 0.595015233 0.9999595
## SYT11 5.212190e-01 0.595116268 0.9999595
## GSK3A 5.212179e-01 0.595116886 0.9999595
## ZNF875 5.211287e-01 0.595169562 0.9999595
## EIF2AK2 5.210776e-01 0.595199694 0.9999595
## PLP2 5.210116e-01 0.595238646 0.9999595
## PSMC6 5.208720e-01 0.595321033 0.9999595
## ZDBF2 5.206351e-01 0.595460890 0.9999595
## FGL2 5.206178e-01 0.595471110 0.9999595
## DTX3L 5.205075e-01 0.595536210 0.9999595
## TBC1D3L 5.204213e-01 0.595587120 0.9999595
## RFX7 5.204082e-01 0.595594843 0.9999595
## RBFA 5.202639e-01 0.595680066 0.9999595
## MCCC2 5.201993e-01 0.595718266 0.9999595
## ZNF169 5.201971e-01 0.595719542 0.9999595
## RNPC3 5.201786e-01 0.595730495 0.9999595
## DBP 5.199340e-01 0.595874983 0.9999595
## CXorf65 5.198087e-01 0.595949024 0.9999595
## UBE2E1 5.197156e-01 0.596004007 0.9999595
## ARG2 5.193540e-01 0.596217741 0.9999595
## C12orf75 5.193150e-01 0.596240786 0.9999595
## NUP42 5.192272e-01 0.596292735 0.9999595
## ATP11A 5.187755e-01 0.596559842 0.9999595
## ZNF789 5.187623e-01 0.596567637 0.9999595
## EID2B 5.185539e-01 0.596690906 0.9999595
## PERP 5.183830e-01 0.596792027 0.9999595
## SLC46A3 5.183439e-01 0.596815198 0.9999595
## ARIH2 5.182565e-01 0.596866926 0.9999595
## IFI44L 5.181584e-01 0.596925002 0.9999595
## MON1A 5.179339e-01 0.597057870 0.9999595
## MED19 5.179019e-01 0.597076810 0.9999595
## RPS14 5.175102e-01 0.597308760 0.9999595
## VAPA 5.174921e-01 0.597319511 0.9999595
## TUT7 5.173011e-01 0.597432634 0.9999595
## TRIM65 5.172626e-01 0.597455417 0.9999595
## POLG 5.172018e-01 0.597491467 0.9999595
## GPALPP1 5.170600e-01 0.597575482 0.9999595
## MC1R 5.170438e-01 0.597585071 0.9999595
## NUDCD3 5.169598e-01 0.597634865 0.9999595
## ZNF621 5.167879e-01 0.597736697 0.9999595
## ZNF534 5.166363e-01 0.597826599 0.9999595
## GLTP 5.165725e-01 0.597864387 0.9999595
## RALBP1 5.165016e-01 0.597906405 0.9999595
## CTTN 5.164767e-01 0.597921181 0.9999595
## CS 5.163834e-01 0.597976534 0.9999595
## PGS1 5.163786e-01 0.597979379 0.9999595
## TRIM9 5.163331e-01 0.598006319 0.9999595
## FAAP24 5.160496e-01 0.598174466 0.9999595
## SLC16A6 5.158150e-01 0.598313620 0.9999595
## PDE4D 5.157196e-01 0.598370230 0.9999595
## CXCR3 5.157120e-01 0.598374750 0.9999595
## ERCC8 5.156965e-01 0.598383941 0.9999595
## CEP97 5.153503e-01 0.598589382 0.9999595
## SNX18 5.153034e-01 0.598617240 0.9999595
## FNBP1L 5.152639e-01 0.598640695 0.9999595
## PNP 5.152560e-01 0.598645367 0.9999595
## ZMYM4 5.151587e-01 0.598703128 0.9999595
## PXMP4 5.148729e-01 0.598872848 0.9999595
## CPNE8 5.147589e-01 0.598940538 0.9999595
## ANKRD33B 5.146453e-01 0.599007981 0.9999595
## QARS1 5.143969e-01 0.599155583 0.9999595
## KLF2 5.142375e-01 0.599250265 0.9999595
## TAX1BP3 5.140676e-01 0.599351262 0.9999595
## TPRA1 5.139252e-01 0.599435899 0.9999595
## SLC49A4 5.137409e-01 0.599545436 0.9999595
## CARF 5.135944e-01 0.599632555 0.9999595
## ZNF117 5.134921e-01 0.599693402 0.9999595
## DNAJC18 5.134268e-01 0.599732230 0.9999595
## TIMM17B 5.133093e-01 0.599802106 0.9999595
## RTN3 5.129492e-01 0.600016315 0.9999595
## SLAMF6 5.129202e-01 0.600033578 0.9999595
## FAAH 5.129163e-01 0.600035927 0.9999595
## CLEC4E 5.128840e-01 0.600055139 0.9999595
## SIRT1 5.127633e-01 0.600126932 0.9999595
## MGST3 5.127359e-01 0.600143244 0.9999595
## U2AF1 5.125900e-01 0.600230112 0.9999595
## SURF6 5.125264e-01 0.600267968 0.9999595
## TOR1A 5.124911e-01 0.600288966 0.9999595
## ATP10D 5.124670e-01 0.600303326 0.9999595
## NELFA 5.123754e-01 0.600357849 0.9999595
## KLHL18 5.120673e-01 0.600541308 0.9999595
## CTSL 5.114412e-01 0.600914240 0.9999595
## GLMN 5.113282e-01 0.600981580 0.9999595
## SRSF10 5.112994e-01 0.600998742 0.9999595
## ARMCX4 5.112615e-01 0.601021375 0.9999595
## DDIT4 5.111985e-01 0.601058911 0.9999595
## LIN52 5.110120e-01 0.601170108 0.9999595
## GGT7 5.109988e-01 0.601177951 0.9999595
## C11orf49 5.109529e-01 0.601205292 0.9999595
## QRSL1 5.109505e-01 0.601206763 0.9999595
## VPS29 5.109235e-01 0.601222830 0.9999595
## NKAIN3 5.109193e-01 0.601225347 0.9999595
## GRK6 5.108762e-01 0.601251062 0.9999595
## TK1 5.105820e-01 0.601426478 0.9999595
## GTF2IRD2B 5.105507e-01 0.601445144 0.9999595
## ELP6 5.105430e-01 0.601449726 0.9999595
## C19orf44 5.103297e-01 0.601576973 0.9999595
## MRPL1 5.100763e-01 0.601728181 0.9999595
## RPS29 5.100367e-01 0.601751779 0.9999595
## UBE2J1 5.099087e-01 0.601828182 0.9999595
## SRGAP2C 5.098229e-01 0.601879398 0.9999595
## XXYLT1 5.097484e-01 0.601923884 0.9999595
## ZNF224 5.096242e-01 0.601997995 0.9999595
## KCNK5 5.096055e-01 0.602009197 0.9999595
## NPTN 5.094314e-01 0.602113151 0.9999595
## ARL6IP6 5.093272e-01 0.602175345 0.9999595
## LRP11 5.093048e-01 0.602188700 0.9999595
## CRYBG1 5.091147e-01 0.602302273 0.9999595
## PRKCA 5.086648e-01 0.602571027 0.9999595
## ARHGEF11 5.085193e-01 0.602658013 0.9999595
## PNMA2 5.084930e-01 0.602673704 0.9999595
## RNF26 5.084734e-01 0.602685411 0.9999595
## ARPP19 5.083431e-01 0.602763320 0.9999595
## TPI1 5.082588e-01 0.602813696 0.9999595
## LGMN 5.081942e-01 0.602852334 0.9999595
## MAGED1 5.080013e-01 0.602967688 0.9999595
## B9D1 5.079014e-01 0.603027406 0.9999595
## DENND1B 5.078006e-01 0.603087716 0.9999595
## IPO9 5.077279e-01 0.603131184 0.9999595
## ATL1 5.076142e-01 0.603199190 0.9999595
## TAF4 5.074023e-01 0.603325940 0.9999595
## SHOC2 5.072566e-01 0.603413171 0.9999595
## AXIN1 5.071750e-01 0.603461953 0.9999595
## B3GNT7 5.071708e-01 0.603464511 0.9999595
## ADCY7 5.071633e-01 0.603468987 0.9999595
## DOCK8 5.070657e-01 0.603527416 0.9999595
## ARL6 5.069306e-01 0.603608254 0.9999595
## EPB41L5 5.069167e-01 0.603616592 0.9999595
## SPART 5.067370e-01 0.603724160 0.9999595
## ADIPOR1 5.067208e-01 0.603733845 0.9999595
## PRMT7 5.066662e-01 0.603766555 0.9999595
## SCO1 5.064365e-01 0.603904142 0.9999595
## LRRN2 5.063746e-01 0.603941206 0.9999595
## SNAP29 5.063233e-01 0.603971890 0.9999595
## UBE2L6 5.061660e-01 0.604066148 0.9999595
## AZI2 5.059648e-01 0.604186668 0.9999595
## EXOC6B 5.053222e-01 0.604571891 0.9999595
## MLLT6 5.051507e-01 0.604674695 0.9999595
## ZNF597 5.051454e-01 0.604677889 0.9999595
## LMAN1 5.051426e-01 0.604679562 0.9999595
## APOL4 5.051156e-01 0.604695765 0.9999595
## CPQ 5.050558e-01 0.604731601 0.9999595
## ACTL6A 5.049696e-01 0.604783319 0.9999595
## DNM3 5.049020e-01 0.604823896 0.9999595
## FZD3 5.047525e-01 0.604913559 0.9999595
## CERT1 5.046576e-01 0.604970481 0.9999595
## UBA3 5.046331e-01 0.604985190 0.9999595
## RNF122 5.044961e-01 0.605067372 0.9999595
## CCNL1 5.043664e-01 0.605145259 0.9999595
## APBA2 5.042450e-01 0.605218083 0.9999595
## SPIN4 5.042186e-01 0.605233926 0.9999595
## NFKBIL1 5.039253e-01 0.605410016 0.9999595
## BAK1 5.035541e-01 0.605632968 0.9999595
## CCDC121 5.035387e-01 0.605642177 0.9999595
## HERC6 5.034836e-01 0.605675313 0.9999595
## NDUFA4 5.033471e-01 0.605757323 0.9999595
## NR1D2 5.032781e-01 0.605798759 0.9999595
## SARS1 5.032627e-01 0.605807994 0.9999595
## EHBP1L1 5.032498e-01 0.605815730 0.9999595
## SMAD7 5.030076e-01 0.605961277 0.9999595
## SLC25A17 5.029335e-01 0.606005806 0.9999595
## OAS3 5.029306e-01 0.606007557 0.9999595
## TTL 5.025541e-01 0.606233920 0.9999595
## RMDN1 5.025321e-01 0.606247158 0.9999595
## TEX22 5.023852e-01 0.606335475 0.9999595
## S100A11 5.022395e-01 0.606423120 0.9999595
## ZNF35 5.022324e-01 0.606427345 0.9999595
## ZNF623 5.020055e-01 0.606563860 0.9999595
## PEX6 5.019580e-01 0.606592445 0.9999595
## CANX 5.019056e-01 0.606623965 0.9999595
## ABITRAM 5.015857e-01 0.606816448 0.9999595
## KARS1 5.015564e-01 0.606834077 0.9999595
## DDX19B 5.013625e-01 0.606950815 0.9999595
## LSR 5.012585e-01 0.607013440 0.9999595
## GIT1 5.011776e-01 0.607062153 0.9999595
## PIGB 5.010321e-01 0.607149736 0.9999595
## HELZ 5.009773e-01 0.607182737 0.9999595
## MAPK6 5.009049e-01 0.607226320 0.9999595
## CHERP 5.007454e-01 0.607322409 0.9999595
## SPN 5.007209e-01 0.607337186 0.9999595
## HSPA1L 5.006591e-01 0.607374377 0.9999595
## GFPT1 5.006306e-01 0.607391559 0.9999595
## TLR2 5.006180e-01 0.607399149 0.9999595
## ATP13A4 5.005988e-01 0.607410720 0.9999595
## P2RY13 5.005404e-01 0.607445918 0.9999595
## KMT2A 5.003808e-01 0.607542052 0.9999595
## RALGDS 5.003267e-01 0.607574685 0.9999595
## NIN 5.001793e-01 0.607663499 0.9999595
## TMEM107 4.998500e-01 0.607862042 0.9999595
## FAM122B 4.998474e-01 0.607863578 0.9999595
## LYPLA1 4.993853e-01 0.608142233 0.9999595
## RETN 4.993848e-01 0.608142561 0.9999595
## PSMG4 4.993842e-01 0.608142902 0.9999595
## MOCS2 4.993131e-01 0.608185826 0.9999595
## SPTAN1 4.993082e-01 0.608188759 0.9999595
## TMEM8B 4.991892e-01 0.608260539 0.9999595
## TOR1AIP1 4.991434e-01 0.608288206 0.9999595
## SRP14 4.988559e-01 0.608461658 0.9999595
## AGFG1 4.988062e-01 0.608491671 0.9999595
## CCDC191 4.987882e-01 0.608502505 0.9999595
## SREBF1 4.987522e-01 0.608524254 0.9999595
## TAS2R20 4.986772e-01 0.608569525 0.9999595
## DDX11 4.984140e-01 0.608728444 0.9999595
## C1orf56 4.983532e-01 0.608765155 0.9999595
## CENPN 4.983458e-01 0.608769583 0.9999595
## NDE1 4.983258e-01 0.608781682 0.9999595
## NDUFS5 4.981566e-01 0.608883852 0.9999595
## HSPA1B 4.981203e-01 0.608905762 0.9999595
## SLC7A1 4.980860e-01 0.608926507 0.9999595
## SDAD1 4.980708e-01 0.608935663 0.9999595
## NOL3 4.980399e-01 0.608954358 0.9999595
## THEM6 4.979510e-01 0.609008059 0.9999595
## MARK4 4.977104e-01 0.609153385 0.9999595
## CLP1 4.976759e-01 0.609174233 0.9999595
## MPRIP 4.976727e-01 0.609176187 0.9999595
## TMEM218 4.974971e-01 0.609282262 0.9999595
## ZNF568 4.972007e-01 0.609461455 0.9999595
## AIF1 4.971008e-01 0.609521852 0.9999595
## MTRNR2L3 4.970825e-01 0.609532893 0.9999595
## NCBP2 4.970798e-01 0.609534535 0.9999595
## PEX11A 4.966353e-01 0.609803349 0.9999595
## ZNF468 4.965717e-01 0.609841775 0.9999595
## SOS1 4.962309e-01 0.610047960 0.9999595
## FBXO46 4.961317e-01 0.610108024 0.9999595
## CST7 4.961240e-01 0.610112656 0.9999595
## BTBD8 4.958791e-01 0.610260888 0.9999595
## CEMIP2 4.957292e-01 0.610351625 0.9999595
## LRRC14 4.956554e-01 0.610396351 0.9999595
## RAPH1 4.956425e-01 0.610404160 0.9999595
## MEI1 4.956186e-01 0.610418584 0.9999595
## ATP6V1A 4.955370e-01 0.610468019 0.9999595
## RMDN3 4.955203e-01 0.610478100 0.9999595
## BRD2 4.953880e-01 0.610558248 0.9999595
## KCNN4 4.953779e-01 0.610564350 0.9999595
## ATL2 4.952997e-01 0.610611702 0.9999595
## RTTN 4.950448e-01 0.610766112 0.9999595
## PGAP6 4.948874e-01 0.610861493 0.9999595
## RABGAP1 4.948407e-01 0.610889773 0.9999595
## SH3BGRL 4.947261e-01 0.610959230 0.9999595
## AK3 4.943116e-01 0.611210472 0.9999595
## CEPT1 4.942457e-01 0.611250460 0.9999595
## NDUFB3 4.942306e-01 0.611259613 0.9999595
## AATK 4.941921e-01 0.611282969 0.9999595
## NPDC1 4.941902e-01 0.611284080 0.9999595
## LMO2 4.938521e-01 0.611489164 0.9999595
## IQCG 4.936625e-01 0.611604165 0.9999595
## FAR1 4.934920e-01 0.611707638 0.9999595
## SLC12A9 4.931440e-01 0.611918792 0.9999595
## PEX5 4.931256e-01 0.611929949 0.9999595
## SETBP1 4.930080e-01 0.612001364 0.9999595
## C21orf58 4.929727e-01 0.612022810 0.9999595
## LILRA2 4.929092e-01 0.612061363 0.9999595
## HAUS5 4.927592e-01 0.612152403 0.9999595
## ATPAF1 4.927203e-01 0.612176054 0.9999595
## SZT2 4.926625e-01 0.612211170 0.9999595
## PABPC1L 4.925448e-01 0.612282651 0.9999595
## EPC1 4.924594e-01 0.612334517 0.9999595
## PER3 4.923421e-01 0.612405734 0.9999595
## PGRMC2 4.923212e-01 0.612418469 0.9999595
## BRCA1 4.922425e-01 0.612466264 0.9999595
## COX6A1 4.922097e-01 0.612486223 0.9999595
## ARL4C 4.921513e-01 0.612521684 0.9999595
## EPB41L4A 4.920323e-01 0.612593957 0.9999595
## RPL12 4.920270e-01 0.612597186 0.9999595
## ZNF600 4.920074e-01 0.612609130 0.9999595
## ATP5PB 4.920039e-01 0.612611216 0.9999595
## NEDD4L 4.918732e-01 0.612690654 0.9999595
## FBXO21 4.917564e-01 0.612761662 0.9999595
## EPAS1 4.917381e-01 0.612772764 0.9999595
## THEMIS2 4.916014e-01 0.612855885 0.9999595
## TRMT10B 4.915023e-01 0.612916143 0.9999595
## BPTF 4.913869e-01 0.612986304 0.9999595
## RHOC 4.912025e-01 0.613098461 0.9999595
## SLC37A3 4.911870e-01 0.613107879 0.9999595
## CDC42SE1 4.909589e-01 0.613246623 0.9999595
## BTBD7 4.908768e-01 0.613296549 0.9999595
## KBTBD7 4.906773e-01 0.613417975 0.9999595
## GBP4 4.906455e-01 0.613437282 0.9999595
## MIPEP 4.903637e-01 0.613608833 0.9999595
## ZNF835 4.903191e-01 0.613635980 0.9999595
## COG2 4.903080e-01 0.613642732 0.9999595
## DDX55 4.902357e-01 0.613686725 0.9999595
## LONP2 4.898906e-01 0.613896873 0.9999595
## ACTB 4.897471e-01 0.613984268 0.9999595
## PACRGL 4.896739e-01 0.614028841 0.9999595
## TNPO2 4.895772e-01 0.614087756 0.9999595
## CPED1 4.891231e-01 0.614364431 0.9999595
## IRF2 4.891045e-01 0.614375784 0.9999595
## PRR3 4.890651e-01 0.614399762 0.9999595
## MRPL47 4.890005e-01 0.614439192 0.9999595
## SHB 4.888703e-01 0.614518529 0.9999595
## STAMBPL1 4.888686e-01 0.614519564 0.9999595
## CPT1B 4.887222e-01 0.614608815 0.9999595
## GAB3 4.886774e-01 0.614636156 0.9999595
## PSEN1 4.885139e-01 0.614735846 0.9999595
## FUNDC1 4.884836e-01 0.614754344 0.9999595
## NRSN2 4.883098e-01 0.614860304 0.9999595
## PLEKHA8 4.882945e-01 0.614869679 0.9999595
## HPCAL1 4.880630e-01 0.615010875 0.9999595
## SAMD1 4.878423e-01 0.615145520 0.9999595
## SLC2A4RG 4.877615e-01 0.615194848 0.9999595
## GTPBP10 4.875766e-01 0.615307738 0.9999595
## PAICS 4.875637e-01 0.615315569 0.9999595
## KDM6A 4.875204e-01 0.615342005 0.9999595
## ZNF675 4.873151e-01 0.615467373 0.9999595
## TMEM169 4.870155e-01 0.615650309 0.9999595
## ABCD4 4.870105e-01 0.615653346 0.9999595
## MEN1 4.869978e-01 0.615661124 0.9999595
## LUC7L3 4.869128e-01 0.615713027 0.9999595
## ARF5 4.868982e-01 0.615721959 0.9999595
## WDR19 4.868814e-01 0.615732234 0.9999595
## TADA1 4.866839e-01 0.615852903 0.9999595
## SSB 4.866340e-01 0.615883376 0.9999595
## TSPAN32 4.865480e-01 0.615935893 0.9999595
## DAGLB 4.865460e-01 0.615937130 0.9999595
## MT1X 4.863856e-01 0.616035125 0.9999595
## CALR 4.862871e-01 0.616095360 0.9999595
## GGA3 4.862294e-01 0.616130606 0.9999595
## BCL2L2 4.859606e-01 0.616294923 0.9999595
## ATG4A 4.859067e-01 0.616327893 0.9999595
## ANP32A 4.857872e-01 0.616400964 0.9999595
## TIAM2 4.855737e-01 0.616531541 0.9999595
## METTL8 4.855489e-01 0.616546709 0.9999595
## RAD18 4.853921e-01 0.616642643 0.9999595
## M6PR 4.852446e-01 0.616732878 0.9999595
## MAML1 4.851591e-01 0.616785206 0.9999595
## PALM2AKAP2 4.850743e-01 0.616837064 0.9999595
## DHRS7B 4.850399e-01 0.616858155 0.9999595
## TNPO1 4.850122e-01 0.616875088 0.9999595
## ATCAY 4.848692e-01 0.616962580 0.9999595
## ARPC5L 4.847763e-01 0.617019482 0.9999595
## RAC1 4.847354e-01 0.617044535 0.9999595
## NR4A1 4.847047e-01 0.617063277 0.9999595
## ZFP36L2 4.847003e-01 0.617066004 0.9999595
## AHNAK 4.844862e-01 0.617197085 0.9999595
## ZNF823 4.844697e-01 0.617207201 0.9999595
## ABCC4 4.843783e-01 0.617263130 0.9999595
## PET117 4.843055e-01 0.617307720 0.9999595
## CNOT9 4.840374e-01 0.617471939 0.9999595
## GFI1B 4.837324e-01 0.617658799 0.9999595
## PAFAH2 4.837061e-01 0.617674933 0.9999595
## TCEA1 4.836886e-01 0.617685667 0.9999595
## ZYG11A 4.835774e-01 0.617753821 0.9999595
## TPMT 4.835507e-01 0.617770187 0.9999595
## NFATC1 4.834703e-01 0.617819460 0.9999595
## H3-2 4.832912e-01 0.617929215 0.9999595
## POM121C 4.832832e-01 0.617934134 0.9999595
## TIMM17A 4.831717e-01 0.618002486 0.9999595
## GLRX3 4.830069e-01 0.618103560 0.9999595
## MRPL35 4.829220e-01 0.618155628 0.9999595
## SGSM3 4.828172e-01 0.618219928 0.9999595
## SAT1 4.827811e-01 0.618242054 0.9999595
## ZNF396 4.827532e-01 0.618259185 0.9999595
## S100P 4.827334e-01 0.618271321 0.9999595
## CCNDBP1 4.825922e-01 0.618357934 0.9999595
## NDUFA1 4.825262e-01 0.618398434 0.9999595
## CHID1 4.825250e-01 0.618399160 0.9999595
## ABHD17B 4.824636e-01 0.618436794 0.9999595
## PDLIM5 4.822253e-01 0.618583034 0.9999595
## RRS1 4.822150e-01 0.618589362 0.9999595
## PICALM 4.821971e-01 0.618600339 0.9999595
## UQCR11 4.821658e-01 0.618619566 0.9999595
## ZADH2 4.821533e-01 0.618627268 0.9999595
## OLIG1 4.820774e-01 0.618673846 0.9999595
## SH3GLB1 4.819194e-01 0.618770789 0.9999595
## TRMT44 4.818718e-01 0.618800026 0.9999595
## ZNF606 4.817500e-01 0.618874840 0.9999595
## ARID5A 4.815321e-01 0.619008649 0.9999595
## SGTB 4.814662e-01 0.619049090 0.9999595
## ZNF217 4.811060e-01 0.619270369 0.9999595
## FBXL14 4.809879e-01 0.619342964 0.9999595
## CSNK2A2 4.809740e-01 0.619351492 0.9999595
## UBE2D3 4.809513e-01 0.619365454 0.9999595
## SPPL3 4.807820e-01 0.619469492 0.9999595
## ZNF195 4.806590e-01 0.619545067 0.9999595
## STAG3 4.806364e-01 0.619558979 0.9999595
## MAPK14 4.806058e-01 0.619577780 0.9999595
## RACK1 4.805798e-01 0.619593769 0.9999595
## TNFAIP3 4.805632e-01 0.619603973 0.9999595
## PSME4 4.804978e-01 0.619644195 0.9999595
## PPP3R1 4.803693e-01 0.619723170 0.9999595
## IFFO2 4.803571e-01 0.619730658 0.9999595
## GCSH 4.802719e-01 0.619783092 0.9999595
## PEX19 4.802663e-01 0.619786498 0.9999595
## TRAM2 4.800425e-01 0.619924130 0.9999595
## CBFB 4.799407e-01 0.619986787 0.9999595
## ABHD10 4.799189e-01 0.620000159 0.9999595
## HIF1AN 4.798953e-01 0.620014673 0.9999595
## PCNX1 4.798454e-01 0.620045419 0.9999595
## COTL1 4.797817e-01 0.620084559 0.9999595
## TSEN34 4.796655e-01 0.620156049 0.9999595
## FDFT1 4.787515e-01 0.620718739 0.9999595
## PSKH1 4.787442e-01 0.620723239 0.9999595
## LAMB3 4.786646e-01 0.620772268 0.9999595
## PLAAT4 4.786458e-01 0.620783819 0.9999595
## C4orf33 4.785130e-01 0.620865654 0.9999595
## SGSM2 4.785125e-01 0.620865962 0.9999595
## CCDC7 4.784545e-01 0.620901665 0.9999595
## SMYD5 4.783952e-01 0.620938222 0.9999595
## GCNT1 4.783600e-01 0.620959866 0.9999595
## RUBCNL 4.781340e-01 0.621099155 0.9999595
## MTFMT 4.781324e-01 0.621100108 0.9999595
## MANEA 4.780826e-01 0.621130816 0.9999595
## TPRG1L 4.779752e-01 0.621197011 0.9999595
## TNRC18 4.779395e-01 0.621218987 0.9999595
## ENTPD1 4.779334e-01 0.621222792 0.9999595
## HGSNAT 4.777643e-01 0.621326998 0.9999595
## TGFBR2 4.777307e-01 0.621347746 0.9999595
## RABL3 4.776739e-01 0.621382744 0.9999595
## MX1 4.769921e-01 0.621803278 0.9999595
## XK 4.769003e-01 0.621859898 0.9999595
## ATRX 4.767247e-01 0.621968233 0.9999595
## ZNF324 4.766410e-01 0.622019883 0.9999595
## ABCE1 4.764181e-01 0.622157493 0.9999595
## NCOA4 4.763859e-01 0.622177382 0.9999595
## CLIP4 4.763518e-01 0.622198400 0.9999595
## STK39 4.762666e-01 0.622251050 0.9999595
## CALCOCO2 4.761654e-01 0.622313482 0.9999595
## KIAA0586 4.761550e-01 0.622319914 0.9999595
## POLD3 4.760971e-01 0.622355654 0.9999595
## BMT2 4.760926e-01 0.622358472 0.9999595
## GRSF1 4.760564e-01 0.622380796 0.9999595
## SNW1 4.759475e-01 0.622448046 0.9999595
## FAM13A 4.757950e-01 0.622542263 0.9999595
## ZNF664 4.755063e-01 0.622720605 0.9999595
## PIK3CB 4.754975e-01 0.622726073 0.9999595
## USP39 4.752419e-01 0.622883996 0.9999595
## VIPAS39 4.751618e-01 0.622933516 0.9999595
## MAGT1 4.751457e-01 0.622943471 0.9999595
## SPIDR 4.750252e-01 0.623017941 0.9999595
## C1orf52 4.749805e-01 0.623045566 0.9999595
## ARHGAP26 4.749529e-01 0.623062658 0.9999595
## MEF2C 4.748202e-01 0.623144677 0.9999595
## MNAT1 4.748110e-01 0.623150417 0.9999595
## RAB11FIP5 4.747878e-01 0.623164745 0.9999595
## PLCH2 4.745880e-01 0.623288273 0.9999595
## CENPC 4.744319e-01 0.623384840 0.9999595
## BID 4.743875e-01 0.623412279 0.9999595
## ATP5PF 4.741907e-01 0.623534059 0.9999595
## CLIC1 4.741725e-01 0.623545297 0.9999595
## ARRDC3 4.740617e-01 0.623613868 0.9999595
## TM9SF2 4.740433e-01 0.623625245 0.9999595
## MARCHF8 4.738245e-01 0.623760689 0.9999595
## KIF16B 4.736390e-01 0.623875516 0.9999595
## ATP1A1 4.735814e-01 0.623911181 0.9999595
## CNOT10 4.733527e-01 0.624052730 0.9999595
## PSMD5 4.730901e-01 0.624215359 0.9999595
## TPP1 4.729890e-01 0.624277997 0.9999595
## EIF2AK4 4.727891e-01 0.624401858 0.9999595
## PDE6B 4.726964e-01 0.624459305 0.9999595
## GGH 4.725410e-01 0.624555585 0.9999595
## STX1A 4.725163e-01 0.624570899 0.9999595
## NBR1 4.724980e-01 0.624582223 0.9999595
## TOPBP1 4.723299e-01 0.624686423 0.9999595
## IKBKB 4.722804e-01 0.624717127 0.9999595
## OASL 4.722745e-01 0.624720804 0.9999595
## PPP2R2D 4.722736e-01 0.624721345 0.9999595
## PAQR8 4.722342e-01 0.624745752 0.9999595
## CARS1 4.720875e-01 0.624836694 0.9999595
## GPSM3 4.720194e-01 0.624878946 0.9999595
## XPA 4.719900e-01 0.624897196 0.9999595
## PDIK1L 4.718802e-01 0.624965233 0.9999595
## YY1 4.718033e-01 0.625012924 0.9999595
## S100A10 4.717409e-01 0.625051659 0.9999595
## MED12 4.717290e-01 0.625059013 0.9999595
## TBC1D19 4.716542e-01 0.625105412 0.9999595
## DNM1 4.715453e-01 0.625172976 0.9999595
## RSRC1 4.714077e-01 0.625258325 0.9999595
## EBAG9 4.713092e-01 0.625319486 0.9999595
## EIF2S2 4.712853e-01 0.625334267 0.9999595
## SLC29A1 4.712537e-01 0.625353875 0.9999595
## LIN9 4.711168e-01 0.625438893 0.9999595
## UCP2 4.709495e-01 0.625542696 0.9999595
## APEH 4.707341e-01 0.625676456 0.9999595
## SEH1L 4.704925e-01 0.625826471 0.9999595
## MFF 4.704150e-01 0.625874558 0.9999595
## ANKRD11 4.703180e-01 0.625934851 0.9999595
## MTMR6 4.701680e-01 0.626027988 0.9999595
## NUDT4B 4.700928e-01 0.626074722 0.9999595
## ARMC1 4.699092e-01 0.626188803 0.9999595
## FLT3 4.699021e-01 0.626193232 0.9999595
## CAPZB 4.698489e-01 0.626226269 0.9999595
## KBTBD12 4.698263e-01 0.626240287 0.9999595
## LRRC37A2 4.697842e-01 0.626266462 0.9999595
## FAM24B 4.694626e-01 0.626466356 0.9999595
## ARNT 4.693366e-01 0.626544724 0.9999595
## RAB31 4.692907e-01 0.626573240 0.9999595
## NQO2 4.692757e-01 0.626582568 0.9999595
## NPTXR 4.691148e-01 0.626682600 0.9999595
## BCDIN3D 4.688765e-01 0.626830817 0.9999595
## PIK3CG 4.688501e-01 0.626847287 0.9999595
## ALPK3 4.688252e-01 0.626862730 0.9999595
## ZNF235 4.687771e-01 0.626892695 0.9999595
## SLC25A15 4.687444e-01 0.626912995 0.9999595
## FAM204A 4.685373e-01 0.627041892 0.9999595
## MAD2L1 4.684705e-01 0.627083428 0.9999595
## HEG1 4.684129e-01 0.627119255 0.9999595
## NOL6 4.681455e-01 0.627285695 0.9999595
## IFT74 4.676657e-01 0.627584441 0.9999595
## MAP4 4.676412e-01 0.627599712 0.9999595
## MYL6 4.676293e-01 0.627607115 0.9999595
## RPL13A 4.675247e-01 0.627672294 0.9999595
## GAA 4.672206e-01 0.627861700 0.9999595
## ZC3H13 4.672089e-01 0.627869027 0.9999595
## WDFY3 4.671743e-01 0.627890548 0.9999595
## IMPDH2 4.670545e-01 0.627965243 0.9999595
## IL6ST 4.669179e-01 0.628050387 0.9999595
## TYSND1 4.668078e-01 0.628118967 0.9999595
## MCTP2 4.667927e-01 0.628128414 0.9999595
## PLEKHA2 4.665978e-01 0.628249899 0.9999595
## CCDC73 4.664769e-01 0.628325265 0.9999595
## TLK2 4.664393e-01 0.628348706 0.9999595
## SLC30A1 4.664170e-01 0.628362647 0.9999595
## LSM4 4.663882e-01 0.628380604 0.9999595
## OSBPL1A 4.662909e-01 0.628441273 0.9999595
## PTCRA 4.661763e-01 0.628512769 0.9999595
## TRIM3 4.660159e-01 0.628612798 0.9999595
## CFH 4.658545e-01 0.628713468 0.9999595
## MSRB3 4.657262e-01 0.628793585 0.9999595
## TSG101 4.657067e-01 0.628805737 0.9999595
## IGSF6 4.652836e-01 0.629069822 0.9999595
## PSMB4 4.651823e-01 0.629133037 0.9999595
## FLVCR1 4.648415e-01 0.629345852 0.9999595
## MARCHF1 4.647884e-01 0.629379062 0.9999595
## KCTD12 4.646318e-01 0.629476842 0.9999595
## PSMB5 4.646129e-01 0.629488675 0.9999595
## UBE2S 4.646055e-01 0.629493313 0.9999595
## RPL35 4.645176e-01 0.629548193 0.9999595
## MED16 4.642714e-01 0.629702035 0.9999595
## MDM2 4.642526e-01 0.629713799 0.9999595
## UBE2D1 4.640599e-01 0.629834220 0.9999595
## H3-5 4.640377e-01 0.629848127 0.9999595
## MUSTN1 4.639077e-01 0.629929379 0.9999595
## NACC1 4.636673e-01 0.630079680 0.9999595
## RASA4 4.635310e-01 0.630164882 0.9999595
## TAF12 4.634117e-01 0.630239555 0.9999595
## SLC26A8 4.632276e-01 0.630354697 0.9999595
## LSS 4.631697e-01 0.630390897 0.9999595
## CEBPB 4.630929e-01 0.630438945 0.9999595
## PDE1B 4.629705e-01 0.630515526 0.9999595
## NAA15 4.629503e-01 0.630528214 0.9999595
## NLRX1 4.628061e-01 0.630618413 0.9999595
## NSMF 4.627795e-01 0.630635050 0.9999595
## RALGAPA2 4.626725e-01 0.630702050 0.9999595
## ERGIC1 4.626155e-01 0.630737710 0.9999595
## DYSF 4.625148e-01 0.630800787 0.9999595
## ARMC8 4.624777e-01 0.630823977 0.9999595
## ZNF518A 4.624022e-01 0.630871258 0.9999595
## ZBTB40 4.623877e-01 0.630880321 0.9999595
## DGCR8 4.623677e-01 0.630892880 0.9999595
## LMNB2 4.622860e-01 0.630944040 0.9999595
## CNOT7 4.621195e-01 0.631048285 0.9999595
## MTHFD2L 4.620369e-01 0.631100028 0.9999595
## SMG7 4.620136e-01 0.631114632 0.9999595
## MRPS35 4.619757e-01 0.631138361 0.9999595
## ZBTB10 4.615958e-01 0.631376383 0.9999595
## ZNF319 4.615555e-01 0.631401638 0.9999595
## AZIN1 4.615246e-01 0.631421011 0.9999595
## ZNF507 4.615211e-01 0.631423149 0.9999595
## HSPA6 4.615103e-01 0.631429964 0.9999595
## PARP11 4.614672e-01 0.631456953 0.9999595
## TFRC 4.610530e-01 0.631716619 0.9999595
## NAA35 4.607647e-01 0.631897360 0.9999595
## ASTE1 4.607115e-01 0.631930741 0.9999595
## CCDC47 4.606542e-01 0.631966651 0.9999595
## AKNA 4.606458e-01 0.631971914 0.9999595
## UBA6 4.604388e-01 0.632101769 0.9999595
## EME1 4.602537e-01 0.632217946 0.9999595
## TICAM1 4.601705e-01 0.632270119 0.9999595
## USP30 4.600306e-01 0.632357907 0.9999595
## ANXA3 4.599485e-01 0.632409440 0.9999595
## DNAJB12 4.596891e-01 0.632572303 0.9999595
## ZDHHC21 4.596116e-01 0.632620922 0.9999595
## BRAF 4.595578e-01 0.632654754 0.9999595
## G0S2 4.594719e-01 0.632708693 0.9999595
## RNF125 4.594270e-01 0.632736845 0.9999595
## ZNF561 4.593764e-01 0.632768674 0.9999595
## PTCD3 4.593135e-01 0.632808172 0.9999595
## RXRA 4.592933e-01 0.632820818 0.9999595
## UVRAG 4.592567e-01 0.632843801 0.9999595
## STK26 4.590153e-01 0.632995451 0.9999595
## ZNF326 4.588321e-01 0.633110573 0.9999595
## IPO5 4.588275e-01 0.633113443 0.9999595
## IFT22 4.587962e-01 0.633133153 0.9999595
## RAB5B 4.587854e-01 0.633139936 0.9999595
## EXD2 4.587759e-01 0.633145906 0.9999595
## MAGI3 4.586087e-01 0.633250950 0.9999595
## ZDHHC3 4.583909e-01 0.633387884 0.9999595
## UQCRC1 4.583219e-01 0.633431256 0.9999595
## ADGRE2 4.582541e-01 0.633473874 0.9999595
## RNF216 4.579208e-01 0.633683442 0.9999595
## RXRB 4.578530e-01 0.633726123 0.9999595
## VWA7 4.577753e-01 0.633774969 0.9999595
## TAF1D 4.577433e-01 0.633795107 0.9999595
## AGPAT2 4.575630e-01 0.633908537 0.9999595
## CHIC1 4.574146e-01 0.634001897 0.9999595
## TLE5 4.573073e-01 0.634069454 0.9999595
## CDH13 4.572714e-01 0.634092051 0.9999595
## ATP6V1C2 4.572010e-01 0.634136347 0.9999595
## TRIM45 4.570949e-01 0.634203115 0.9999595
## TEX10 4.570935e-01 0.634203999 0.9999595
## MRPL36 4.570341e-01 0.634241414 0.9999595
## DMWD 4.569460e-01 0.634296886 0.9999595
## ALKBH4 4.569381e-01 0.634301861 0.9999595
## DENND4A 4.569201e-01 0.634313174 0.9999595
## PPP1R32 4.568008e-01 0.634388323 0.9999595
## GASK1B 4.566828e-01 0.634462572 0.9999595
## MDFIC 4.566393e-01 0.634490015 0.9999595
## SDHAF3 4.566053e-01 0.634511376 0.9999595
## ARL4A 4.565803e-01 0.634527132 0.9999595
## ASMTL 4.565393e-01 0.634552962 0.9999595
## CGRRF1 4.565103e-01 0.634571219 0.9999595
## CTRC 4.563639e-01 0.634663451 0.9999595
## FKBP1A 4.561752e-01 0.634782321 0.9999595
## TRIM13 4.561594e-01 0.634792297 0.9999595
## KLRK1 4.560950e-01 0.634832852 0.9999595
## BICD2 4.560286e-01 0.634874711 0.9999595
## ST7 4.559837e-01 0.634903011 0.9999595
## USB1 4.559250e-01 0.634940011 0.9999595
## LSM3 4.558824e-01 0.634966822 0.9999595
## RAD51B 4.558552e-01 0.634984010 0.9999595
## NEIL1 4.558290e-01 0.635000471 0.9999595
## TBL1X 4.557822e-01 0.635030012 0.9999595
## ABCA10 4.557285e-01 0.635063838 0.9999595
## USP6NL 4.556461e-01 0.635115792 0.9999595
## FOSL2 4.556179e-01 0.635133577 0.9999595
## TRIM5 4.555969e-01 0.635146818 0.9999595
## MINK1 4.555308e-01 0.635188459 0.9999595
## VGLL4 4.554697e-01 0.635226983 0.9999595
## ZNF831 4.553262e-01 0.635317455 0.9999595
## ZNF184 4.551178e-01 0.635448933 0.9999595
## ARMCX1 4.546555e-01 0.635740545 0.9999595
## SLC27A2 4.546083e-01 0.635770344 0.9999595
## JRKL 4.545014e-01 0.635837809 0.9999595
## FOXP3 4.544076e-01 0.635897025 0.9999595
## AHCYL1 4.542875e-01 0.635972846 0.9999595
## EZR 4.542571e-01 0.635992021 0.9999595
## HSF4 4.540204e-01 0.636141467 0.9999595
## WDR54 4.538680e-01 0.636237698 0.9999595
## PLCG2 4.538604e-01 0.636242522 0.9999595
## SERPINI1 4.538164e-01 0.636270287 0.9999595
## SIKE1 4.535266e-01 0.636453304 0.9999595
## IFI44 4.534229e-01 0.636518866 0.9999595
## SF3B6 4.532978e-01 0.636597917 0.9999595
## IQCB1 4.528519e-01 0.636879736 0.9999595
## CA4 4.528225e-01 0.636898317 0.9999595
## SMPDL3B 4.527645e-01 0.636934946 0.9999595
## ST3GAL1 4.527203e-01 0.636962920 0.9999595
## SYPL1 4.527064e-01 0.636971703 0.9999595
## DGKG 4.526156e-01 0.637029131 0.9999595
## RHOF 4.525496e-01 0.637070819 0.9999595
## NIBAN2 4.521520e-01 0.637322306 0.9999595
## NPLOC4 4.521401e-01 0.637329877 0.9999595
## SNRNP27 4.518322e-01 0.637524670 0.9999595
## CYP2D7 4.518264e-01 0.637528358 0.9999595
## PHC1 4.516749e-01 0.637624221 0.9999595
## WASF2 4.514489e-01 0.637767285 0.9999595
## UAP1 4.513473e-01 0.637831610 0.9999595
## PRRT4 4.510670e-01 0.638009066 0.9999595
## GART 4.510449e-01 0.638023083 0.9999595
## PCSK6 4.510223e-01 0.638037430 0.9999595
## MAFF 4.508222e-01 0.638164136 0.9999595
## PVRIG 4.507375e-01 0.638217789 0.9999595
## SMAD9 4.506016e-01 0.638303922 0.9999595
## ERVW-1 4.505768e-01 0.638319611 0.9999595
## RBPJ 4.502996e-01 0.638495300 0.9999595
## EEF2K 4.502254e-01 0.638542348 0.9999595
## PCMT1 4.500204e-01 0.638672265 0.9999595
## ENTPD4 4.499875e-01 0.638693105 0.9999595
## ZNF280C 4.499300e-01 0.638729563 0.9999595
## TRA2B 4.498784e-01 0.638762325 0.9999595
## SUCLA2 4.498120e-01 0.638804419 0.9999595
## FUNDC2 4.493520e-01 0.639096153 0.9999595
## TAS2R40 4.490454e-01 0.639290691 0.9999595
## SLK 4.489465e-01 0.639353471 0.9999595
## BRAP 4.488598e-01 0.639408502 0.9999595
## OAF 4.487725e-01 0.639463884 0.9999595
## WAPL 4.483323e-01 0.639743422 0.9999595
## RPL29 4.482857e-01 0.639772972 0.9999595
## L3MBTL1 4.481687e-01 0.639847330 0.9999595
## RALB 4.476808e-01 0.640157318 0.9999595
## MTERF3 4.475807e-01 0.640220878 0.9999595
## NCOA3 4.475020e-01 0.640270907 0.9999595
## IRF5 4.474316e-01 0.640315643 0.9999595
## MAP3K5 4.473867e-01 0.640344215 0.9999595
## BST2 4.473778e-01 0.640349864 0.9999595
## DCAF1 4.473321e-01 0.640378944 0.9999595
## DCTN4 4.472698e-01 0.640418540 0.9999595
## WDFY2 4.472410e-01 0.640436849 0.9999595
## FPGS 4.472086e-01 0.640457420 0.9999595
## DDOST 4.470357e-01 0.640567385 0.9999595
## FAM120A 4.465761e-01 0.640859684 0.9999595
## SELENOF 4.464930e-01 0.640912577 0.9999595
## EIF4G3 4.464712e-01 0.640926462 0.9999595
## WASHC4 4.464704e-01 0.640926923 0.9999595
## HELZ2 4.463297e-01 0.641016446 0.9999595
## RBM45 4.462431e-01 0.641071596 0.9999595
## RASGRP3 4.461242e-01 0.641147242 0.9999595
## TAFA2 4.461024e-01 0.641161119 0.9999595
## CD4 4.458450e-01 0.641324989 0.9999595
## RDH11 4.458022e-01 0.641352263 0.9999595
## FBXO30 4.457991e-01 0.641354201 0.9999595
## ZNF787 4.455931e-01 0.641485392 0.9999595
## TBL1XR1 4.455514e-01 0.641511960 0.9999595
## SNRPD3 4.454579e-01 0.641571498 0.9999595
## CFL1 4.453903e-01 0.641614550 0.9999595
## TLE3 4.453366e-01 0.641648724 0.9999595
## PRRC2B 4.453105e-01 0.641665378 0.9999595
## RRAGA 4.451945e-01 0.641739258 0.9999595
## BRIP1 4.451311e-01 0.641779634 0.9999595
## MTMR12 4.451190e-01 0.641787395 0.9999595
## POLR2M 4.449161e-01 0.641916655 0.9999595
## EIF2B5 4.449157e-01 0.641916885 0.9999595
## LARP4B 4.448541e-01 0.641956134 0.9999595
## PPM1L 4.447842e-01 0.642000690 0.9999595
## C12orf57 4.447549e-01 0.642019393 0.9999595
## SCRN3 4.447291e-01 0.642035839 0.9999595
## FAM126B 4.446921e-01 0.642059382 0.9999595
## RSRP1 4.445675e-01 0.642138832 0.9999595
## ANO10 4.443568e-01 0.642273141 0.9999595
## BUB1 4.443557e-01 0.642273858 0.9999595
## CD40 4.443243e-01 0.642293876 0.9999595
## MMACHC 4.442520e-01 0.642340011 0.9999595
## ARF1 4.441521e-01 0.642403684 0.9999595
## TRIP10 4.441009e-01 0.642436363 0.9999595
## MICAL1 4.440781e-01 0.642450881 0.9999595
## DCAF17 4.440689e-01 0.642456762 0.9999595
## PGP 4.439963e-01 0.642503077 0.9999595
## C1orf112 4.439856e-01 0.642509924 0.9999595
## FARS2 4.439748e-01 0.642516814 0.9999595
## SLC24A1 4.439096e-01 0.642558386 0.9999595
## CLCC1 4.439061e-01 0.642560601 0.9999595
## RP2 4.437833e-01 0.642638978 0.9999595
## DCTD 4.432148e-01 0.643001750 0.9999595
## ANKRD52 4.432139e-01 0.643002328 0.9999595
## SLC19A3 4.428355e-01 0.643243950 0.9999595
## SLC25A33 4.427694e-01 0.643286133 0.9999595
## KCNK6 4.426703e-01 0.643349445 0.9999595
## CISD1 4.425980e-01 0.643395613 0.9999595
## NEURL4 4.424073e-01 0.643517394 0.9999595
## C1orf159 4.420320e-01 0.643757241 0.9999595
## SSBP1 4.420313e-01 0.643757713 0.9999595
## SHTN1 4.419168e-01 0.643830895 0.9999595
## ETV6 4.416478e-01 0.644002852 0.9999595
## GGT1 4.416171e-01 0.644022475 0.9999595
## TIRAP 4.415701e-01 0.644052528 0.9999595
## FAM210B 4.415394e-01 0.644072116 0.9999595
## PPP1R10 4.414908e-01 0.644103201 0.9999595
## COPS5 4.414476e-01 0.644130876 0.9999595
## LRRK2 4.410946e-01 0.644356634 0.9999595
## ZNF626 4.410591e-01 0.644379337 0.9999595
## EEF1AKNMT 4.409045e-01 0.644478220 0.9999595
## SLC7A6OS 4.408013e-01 0.644544300 0.9999595
## RWDD2A 4.407769e-01 0.644559899 0.9999595
## APLP2 4.406973e-01 0.644610806 0.9999595
## CRADD 4.406679e-01 0.644629658 0.9999595
## CLSTN3 4.406669e-01 0.644630319 0.9999595
## TXNDC9 4.405973e-01 0.644674807 0.9999595
## MSH3 4.405896e-01 0.644679791 0.9999595
## NASP 4.405824e-01 0.644684399 0.9999595
## CAMK2G 4.404836e-01 0.644747588 0.9999595
## GAMT 4.403825e-01 0.644812314 0.9999595
## MRPS31 4.402700e-01 0.644884352 0.9999595
## PAK2 4.401465e-01 0.644963464 0.9999595
## SPDL1 4.401137e-01 0.644984460 0.9999595
## RAB39B 4.399851e-01 0.645066790 0.9999595
## SYTL3 4.397544e-01 0.645214552 0.9999595
## CARMIL1 4.397485e-01 0.645218309 0.9999595
## MSTO1 4.393806e-01 0.645454046 0.9999595
## TIMM44 4.392650e-01 0.645528147 0.9999595
## CXCR6 4.391890e-01 0.645576814 0.9999595
## MTM1 4.391416e-01 0.645607209 0.9999595
## CCT7 4.390434e-01 0.645670188 0.9999595
## SLFN13 4.390199e-01 0.645685245 0.9999595
## TSN 4.384735e-01 0.646035637 0.9999595
## IMPA2 4.384233e-01 0.646067802 0.9999595
## KIAA1586 4.384050e-01 0.646079531 0.9999595
## RFK 4.383006e-01 0.646146541 0.9999595
## AMZ2 4.382718e-01 0.646164996 0.9999595
## ARID1A 4.382478e-01 0.646180406 0.9999595
## RYK 4.381238e-01 0.646259937 0.9999595
## PTPRS 4.381167e-01 0.646264527 0.9999595
## UGGT1 4.380508e-01 0.646306790 0.9999595
## ARHGEF9 4.378596e-01 0.646429525 0.9999595
## KCTD2 4.377582e-01 0.646494606 0.9999595
## STX17 4.377318e-01 0.646511534 0.9999595
## NDUFA12 4.375953e-01 0.646599165 0.9999595
## MROH6 4.375730e-01 0.646613476 0.9999595
## CCNT1 4.373645e-01 0.646747318 0.9999595
## BCL2A1 4.372650e-01 0.646811255 0.9999595
## ADRB2 4.372096e-01 0.646846783 0.9999595
## HCK 4.370750e-01 0.646933233 0.9999595
## FAM161B 4.368841e-01 0.647055883 0.9999595
## SREBF2 4.368835e-01 0.647056274 0.9999595
## CATSPER1 4.368748e-01 0.647061880 0.9999595
## DGCR2 4.367770e-01 0.647124708 0.9999595
## ABHD3 4.367340e-01 0.647152314 0.9999595
## CELA1 4.366583e-01 0.647200985 0.9999595
## IL1RAP 4.365779e-01 0.647252612 0.9999595
## PALB2 4.364739e-01 0.647319503 0.9999595
## ANKRD16 4.364522e-01 0.647333444 0.9999595
## BAG1 4.363715e-01 0.647385300 0.9999595
## ZNF354B 4.362359e-01 0.647472471 0.9999595
## RILPL2 4.361392e-01 0.647534612 0.9999595
## ATP5F1C 4.359602e-01 0.647649747 0.9999595
## OAS2 4.359436e-01 0.647660418 0.9999595
## PRELID1 4.358994e-01 0.647688832 0.9999595
## DEF6 4.358744e-01 0.647704875 0.9999595
## ZNF543 4.358101e-01 0.647746211 0.9999595
## H6PD 4.357721e-01 0.647770674 0.9999595
## TBC1D15 4.356841e-01 0.647827254 0.9999595
## ZNF442 4.354755e-01 0.647961504 0.9999595
## DBI 4.354044e-01 0.648007247 0.9999595
## MTERF2 4.353562e-01 0.648038220 0.9999595
## GLIPR1L2 4.351602e-01 0.648164330 0.9999595
## COQ8A 4.349828e-01 0.648278507 0.9999595
## RHBDD1 4.348518e-01 0.648362858 0.9999595
## DYNC2LI1 4.348351e-01 0.648373628 0.9999595
## ZNF689 4.347712e-01 0.648414736 0.9999595
## SS18 4.347433e-01 0.648432681 0.9999595
## RIF1 4.347294e-01 0.648441668 0.9999595
## MNT 4.346411e-01 0.648498499 0.9999595
## ZNF106 4.346397e-01 0.648499393 0.9999595
## LYRM4 4.344690e-01 0.648609365 0.9999595
## INMT 4.344013e-01 0.648652926 0.9999595
## ZNF107 4.343880e-01 0.648661522 0.9999595
## TUBD1 4.343701e-01 0.648673026 0.9999595
## ANKS3 4.342870e-01 0.648726535 0.9999595
## CHD3 4.340314e-01 0.648891189 0.9999595
## FYCO1 4.339182e-01 0.648964148 0.9999595
## MIER2 4.339089e-01 0.648970153 0.9999595
## LSM8 4.338215e-01 0.649026486 0.9999595
## KANK1 4.337608e-01 0.649065589 0.9999595
## FBL 4.337418e-01 0.649077808 0.9999595
## DOT1L 4.336144e-01 0.649159926 0.9999595
## FHOD1 4.334772e-01 0.649248384 0.9999595
## TMEM179B 4.334438e-01 0.649269921 0.9999595
## TXLNB 4.333601e-01 0.649323883 0.9999595
## COCH 4.332311e-01 0.649407082 0.9999595
## WDR44 4.331808e-01 0.649439502 0.9999595
## ING4 4.331522e-01 0.649457958 0.9999595
## WWP1 4.330347e-01 0.649533695 0.9999595
## HIF1A 4.329239e-01 0.649605187 0.9999595
## PDP2 4.328925e-01 0.649625438 0.9999595
## USP5 4.328473e-01 0.649654570 0.9999595
## DNTTIP1 4.327430e-01 0.649721866 0.9999595
## FNBP1 4.325982e-01 0.649815311 0.9999595
## PRPF4 4.322623e-01 0.650032054 0.9999595
## SLC35F5 4.322021e-01 0.650070922 0.9999595
## PPA1 4.320737e-01 0.650153774 0.9999595
## ZNF556 4.320376e-01 0.650177075 0.9999595
## TMEM101 4.319747e-01 0.650217701 0.9999595
## ZSWIM1 4.318724e-01 0.650283783 0.9999595
## SYNE3 4.318640e-01 0.650289199 0.9999595
## IQGAP2 4.315916e-01 0.650465120 0.9999595
## CDC40 4.314804e-01 0.650536925 0.9999595
## PRMT5 4.313698e-01 0.650608402 0.9999595
## ICAM4 4.311954e-01 0.650721078 0.9999595
## LCMT1 4.311874e-01 0.650726241 0.9999595
## TBCB 4.311653e-01 0.650740515 0.9999595
## KMT5C 4.311646e-01 0.650740930 0.9999595
## POLDIP2 4.308540e-01 0.650941696 0.9999595
## SGSH 4.308179e-01 0.650964998 0.9999595
## PPP1R16B 4.306063e-01 0.651101831 0.9999595
## TMEM250 4.301454e-01 0.651399845 0.9999595
## ZNF783 4.300947e-01 0.651432669 0.9999595
## PCED1A 4.299560e-01 0.651522398 0.9999595
## LMNA 4.298825e-01 0.651569954 0.9999595
## HMGN1 4.297072e-01 0.651683388 0.9999595
## MRPL48 4.296886e-01 0.651695403 0.9999595
## ADNP 4.296450e-01 0.651723601 0.9999595
## TKT 4.296282e-01 0.651734504 0.9999595
## SEPHS1 4.295845e-01 0.651762767 0.9999595
## YBEY 4.294891e-01 0.651824490 0.9999595
## TCF7L1 4.293250e-01 0.651930767 0.9999595
## KRT18 4.291932e-01 0.652016034 0.9999595
## WSB2 4.291573e-01 0.652039300 0.9999595
## VPS26B 4.291004e-01 0.652076165 0.9999595
## FBXO22 4.290459e-01 0.652111418 0.9999595
## NUFIP2 4.290432e-01 0.652113161 0.9999595
## RPL13 4.288717e-01 0.652224258 0.9999595
## PLAUR 4.288000e-01 0.652270679 0.9999595
## ACADVL 4.286397e-01 0.652374524 0.9999595
## EIF4G1 4.285260e-01 0.652448207 0.9999595
## RPIA 4.282460e-01 0.652629631 0.9999595
## CCDC28A 4.280863e-01 0.652733122 0.9999595
## FCAR 4.280501e-01 0.652756564 0.9999595
## EEF1AKMT4 4.279625e-01 0.652813393 0.9999595
## KCNMB3 4.278870e-01 0.652862323 0.9999595
## KIF21A 4.278225e-01 0.652904129 0.9999595
## CUX1 4.278118e-01 0.652911090 0.9999595
## FAM120AOS 4.277799e-01 0.652931758 0.9999595
## CHUK 4.277450e-01 0.652954416 0.9999595
## EMB 4.277044e-01 0.652980685 0.9999595
## PEX1 4.276846e-01 0.652993530 0.9999595
## SMG8 4.276531e-01 0.653013946 0.9999595
## CCDC59 4.276147e-01 0.653038905 0.9999595
## C14orf119 4.272104e-01 0.653301100 0.9999595
## TIMP2 4.266427e-01 0.653669511 0.9999595
## FBXO11 4.265790e-01 0.653710878 0.9999595
## ENDOV 4.265655e-01 0.653719637 0.9999595
## TTC9C 4.264119e-01 0.653819343 0.9999595
## ZNF589 4.262838e-01 0.653902544 0.9999595
## SEPTIN11 4.262707e-01 0.653911037 0.9999595
## SMARCC1 4.262265e-01 0.653939721 0.9999595
## SLX4 4.260910e-01 0.654027715 0.9999595
## SENP1 4.260562e-01 0.654050327 0.9999595
## ACSS1 4.260088e-01 0.654081093 0.9999595
## MRPS5 4.257784e-01 0.654230775 0.9999595
## MAPK1 4.255526e-01 0.654377500 0.9999595
## BTG1 4.255330e-01 0.654390205 0.9999595
## BLOC1S3 4.255225e-01 0.654397064 0.9999595
## RHEBL1 4.255133e-01 0.654403043 0.9999595
## SLC25A30 4.254649e-01 0.654434516 0.9999595
## FGF5 4.254388e-01 0.654451434 0.9999595
## SLC36A4 4.254247e-01 0.654460611 0.9999595
## CYREN 4.252995e-01 0.654541968 0.9999595
## REC8 4.252780e-01 0.654555953 0.9999595
## HHEX 4.252679e-01 0.654562540 0.9999595
## CCDC189 4.252078e-01 0.654601592 0.9999595
## RRNAD1 4.250285e-01 0.654718173 0.9999595
## COL7A1 4.249882e-01 0.654744347 0.9999595
## MAK 4.249873e-01 0.654744956 0.9999595
## RHOT1 4.248538e-01 0.654831745 0.9999595
## CST3 4.247436e-01 0.654903431 0.9999595
## SGPP1 4.247340e-01 0.654909645 0.9999595
## BRF1 4.244307e-01 0.655106984 0.9999595
## PIGBOS1 4.242863e-01 0.655200911 0.9999595
## TMEM181 4.241378e-01 0.655297553 0.9999595
## CXCL1 4.239772e-01 0.655402029 0.9999595
## NRBF2 4.239704e-01 0.655406482 0.9999595
## S100A9 4.238418e-01 0.655490183 0.9999595
## USE1 4.237740e-01 0.655534313 0.9999595
## TET3 4.237237e-01 0.655567091 0.9999595
## NUMBL 4.236330e-01 0.655626100 0.9999595
## TUBGCP6 4.234621e-01 0.655737381 0.9999595
## DPYSL2 4.234265e-01 0.655760599 0.9999595
## PEX3 4.232602e-01 0.655868878 0.9999595
## MERTK 4.231856e-01 0.655917467 0.9999595
## ZSCAN22 4.231000e-01 0.655973224 0.9999595
## HCAR2 4.230789e-01 0.655986984 0.9999595
## CCDC103 4.229492e-01 0.656071468 0.9999595
## PSMA7 4.228194e-01 0.656156090 0.9999595
## IGFL4 4.226654e-01 0.656256414 0.9999595
## GCDH 4.225205e-01 0.656350855 0.9999595
## RAVER2 4.224199e-01 0.656416426 0.9999595
## ZNF564 4.224191e-01 0.656416939 0.9999595
## FXR2 4.222879e-01 0.656502504 0.9999595
## CHST10 4.221524e-01 0.656590823 0.9999595
## PRDM15 4.219226e-01 0.656740742 0.9999595
## ACVR2A 4.219133e-01 0.656746747 0.9999595
## DUSP13 4.218008e-01 0.656820137 0.9999595
## RUSF1 4.216745e-01 0.656902558 0.9999595
## APCDD1 4.215244e-01 0.657000495 0.9999595
## AARS2 4.214943e-01 0.657020149 0.9999595
## FUT11 4.214913e-01 0.657022072 0.9999595
## URB2 4.212945e-01 0.657150526 0.9999595
## GNAI1 4.211985e-01 0.657213135 0.9999595
## PDGFA 4.210275e-01 0.657324768 0.9999595
## PROSER1 4.209913e-01 0.657348384 0.9999595
## WDR77 4.209210e-01 0.657394273 0.9999595
## SAP30L 4.207948e-01 0.657476719 0.9999595
## BTD 4.203823e-01 0.657746126 0.9999595
## KIF3B 4.203457e-01 0.657770036 0.9999595
## EHMT2 4.203383e-01 0.657774880 0.9999595
## DDX51 4.202064e-01 0.657861043 0.9999595
## DPEP2 4.199950e-01 0.657999121 0.9999595
## PRKCE 4.199809e-01 0.658008371 0.9999595
## ARID4A 4.199044e-01 0.658058382 0.9999595
## CLASP1 4.196213e-01 0.658243380 0.9999595
## C15orf65 4.194023e-01 0.658386589 0.9999595
## BCKDK 4.193115e-01 0.658445960 0.9999595
## MPP1 4.192929e-01 0.658458148 0.9999595
## MPP7 4.192234e-01 0.658503548 0.9999595
## PARP2 4.191588e-01 0.658545800 0.9999595
## CCDC174 4.191093e-01 0.658578215 0.9999595
## NEK11 4.191034e-01 0.658582057 0.9999595
## SCPEP1 4.190576e-01 0.658612011 0.9999595
## DCAF7 4.189613e-01 0.658674987 0.9999595
## EARS2 4.188730e-01 0.658732801 0.9999595
## FANCG 4.188278e-01 0.658762322 0.9999595
## PITPNC1 4.187083e-01 0.658840536 0.9999595
## STK25 4.186307e-01 0.658891349 0.9999595
## GK5 4.183959e-01 0.659044981 0.9999595
## EIF2S3 4.183880e-01 0.659050158 0.9999595
## GLO1 4.183489e-01 0.659075722 0.9999595
## ACBD5 4.182104e-01 0.659166439 0.9999595
## LRRFIP1 4.178640e-01 0.659393201 0.9999595
## DAZAP1 4.176911e-01 0.659506461 0.9999595
## SH3BP5L 4.175815e-01 0.659578283 0.9999595
## MOCOS 4.175578e-01 0.659593777 0.9999595
## EIF3F 4.175152e-01 0.659621713 0.9999595
## KIF2C 4.173877e-01 0.659705258 0.9999595
## COMMD3 4.173430e-01 0.659734544 0.9999595
## RAPGEF1 4.173054e-01 0.659759147 0.9999595
## CDK9 4.172333e-01 0.659806390 0.9999595
## TMEM141 4.172154e-01 0.659818157 0.9999595
## AKAP11 4.168583e-01 0.660052161 0.9999595
## JKAMP 4.163517e-01 0.660384381 0.9999595
## C1QBP 4.162226e-01 0.660469070 0.9999595
## RAPGEF3 4.161382e-01 0.660524457 0.9999595
## VTA1 4.161083e-01 0.660544047 0.9999595
## NKIRAS2 4.159733e-01 0.660632624 0.9999595
## ZDHHC23 4.158440e-01 0.660717442 0.9999595
## SERGEF 4.158402e-01 0.660719992 0.9999595
## TCAF2 4.158065e-01 0.660742096 0.9999595
## SOD1 4.156336e-01 0.660855549 0.9999595
## SNRPD2 4.155622e-01 0.660902398 0.9999595
## MAN2B2 4.155427e-01 0.660915228 0.9999595
## SLC39A10 4.153336e-01 0.661052493 0.9999595
## APLF 4.151605e-01 0.661166169 0.9999595
## CUL4A 4.146969e-01 0.661470684 0.9999595
## GTPBP6 4.146491e-01 0.661502064 0.9999595
## TOR2A 4.145630e-01 0.661558629 0.9999595
## RPL11 4.144621e-01 0.661624942 0.9999595
## TNFAIP1 4.144520e-01 0.661631601 0.9999595
## GSTO1 4.143781e-01 0.661680127 0.9999595
## PGK1 4.143662e-01 0.661687965 0.9999595
## CSGALNACT1 4.143438e-01 0.661702661 0.9999595
## LYRM2 4.143175e-01 0.661720001 0.9999595
## ZNF695 4.141280e-01 0.661844541 0.9999595
## IFNGR2 4.141141e-01 0.661853645 0.9999595
## PPTC7 4.141127e-01 0.661854588 0.9999595
## ANKZF1 4.140367e-01 0.661904584 0.9999595
## LYN 4.139557e-01 0.661957823 0.9999595
## EPOR 4.138322e-01 0.662039028 0.9999595
## MAP2K1 4.137235e-01 0.662110474 0.9999595
## BLNK 4.137016e-01 0.662124906 0.9999595
## DHRS13 4.133338e-01 0.662366820 0.9999595
## PMEPA1 4.132706e-01 0.662408385 0.9999595
## TMEM150A 4.131779e-01 0.662469418 0.9999595
## LEPROTL1 4.130018e-01 0.662585297 0.9999595
## STARD7 4.129458e-01 0.662622127 0.9999595
## CENPM 4.128557e-01 0.662681421 0.9999595
## SMPD1 4.125441e-01 0.662886590 0.9999595
## PRKAR1A 4.125170e-01 0.662904439 0.9999595
## COPE 4.125032e-01 0.662913497 0.9999595
## LSM14B 4.123492e-01 0.663014905 0.9999595
## INKA1 4.123090e-01 0.663041364 0.9999595
## CAPN7 4.122694e-01 0.663067493 0.9999595
## CDC14C 4.122455e-01 0.663083206 0.9999595
## VCAN 4.122352e-01 0.663090003 0.9999595
## TXK 4.121836e-01 0.663123955 0.9999595
## STK32C 4.121098e-01 0.663172615 0.9999595
## ZSWIM9 4.119647e-01 0.663268162 0.9999595
## TRIP12 4.118955e-01 0.663313761 0.9999595
## ITGB2 4.118110e-01 0.663369459 0.9999595
## MEGF8 4.117776e-01 0.663391442 0.9999595
## AK4 4.114870e-01 0.663582990 0.9999595
## PPAN 4.114123e-01 0.663632202 0.9999595
## TSPOAP1 4.111195e-01 0.663825226 0.9999595
## CREBZF 4.110982e-01 0.663839289 0.9999595
## FBXL12 4.110767e-01 0.663853471 0.9999595
## TMEM251 4.110592e-01 0.663865022 0.9999595
## ATAD1 4.109331e-01 0.663948154 0.9999595
## ERF 4.107190e-01 0.664089386 0.9999595
## ANXA11 4.106644e-01 0.664125394 0.9999595
## MICAL2 4.106584e-01 0.664129365 0.9999595
## TFAM 4.106499e-01 0.664134952 0.9999595
## VPS18 4.106182e-01 0.664155851 0.9999595
## MYO5A 4.105153e-01 0.664223723 0.9999595
## NPAP1 4.104039e-01 0.664297248 0.9999595
## PRICKLE1 4.103419e-01 0.664338148 0.9999595
## MARS2 4.100249e-01 0.664547378 0.9999595
## TMEM119 4.099778e-01 0.664578480 0.9999595
## CPSF7 4.099581e-01 0.664591449 0.9999595
## ARID3A 4.098828e-01 0.664641212 0.9999595
## DAG1 4.098520e-01 0.664661512 0.9999595
## USO1 4.097799e-01 0.664709150 0.9999595
## SWSAP1 4.097670e-01 0.664717639 0.9999595
## SMG1 4.097258e-01 0.664744817 0.9999595
## PEX26 4.093317e-01 0.665005134 0.9999595
## LTB 4.092256e-01 0.665075192 0.9999595
## NUDT22 4.091775e-01 0.665107002 0.9999595
## ABRAXAS1 4.091364e-01 0.665134123 0.9999595
## CCDC117 4.088322e-01 0.665335180 0.9999595
## SH2B2 4.086487e-01 0.665456438 0.9999595
## BST1 4.084794e-01 0.665568361 0.9999595
## GZMA 4.082024e-01 0.665751539 0.9999595
## CTCF 4.081879e-01 0.665761089 0.9999595
## SLC15A3 4.078459e-01 0.665987292 0.9999595
## UBE2R2 4.076901e-01 0.666090370 0.9999595
## HMOX2 4.076217e-01 0.666135661 0.9999595
## PFN1 4.074087e-01 0.666276608 0.9999595
## SUN1 4.073946e-01 0.666285963 0.9999595
## WTAP 4.073639e-01 0.666306251 0.9999595
## RFX2 4.073496e-01 0.666315744 0.9999595
## PSENEN 4.072930e-01 0.666353168 0.9999595
## DVL2 4.072898e-01 0.666355311 0.9999595
## XAF1 4.072394e-01 0.666388668 0.9999595
## C6orf62 4.071768e-01 0.666430129 0.9999595
## DBNL 4.071558e-01 0.666444031 0.9999595
## RNF32 4.070072e-01 0.666542394 0.9999595
## TCHP 4.069315e-01 0.666592510 0.9999595
## SNX25 4.068882e-01 0.666621174 0.9999595
## TFIP11 4.066858e-01 0.666755208 0.9999595
## NUAK2 4.066018e-01 0.666810851 0.9999595
## SPTLC1 4.064400e-01 0.666918020 0.9999595
## EIF1AD 4.063096e-01 0.667004478 0.9999595
## SNX8 4.062697e-01 0.667030869 0.9999595
## POLG2 4.062552e-01 0.667040522 0.9999595
## LOC728392 4.059609e-01 0.667235532 0.9999595
## ADAM9 4.058077e-01 0.667337084 0.9999595
## RB1 4.057514e-01 0.667374409 0.9999595
## CD52 4.057232e-01 0.667393089 0.9999595
## RAB18 4.057189e-01 0.667395930 0.9999595
## PRMT1 4.056769e-01 0.667423826 0.9999595
## ZNF527 4.056400e-01 0.667448226 0.9999595
## RPUSD2 4.056135e-01 0.667465842 0.9999595
## IFIH1 4.055288e-01 0.667521981 0.9999595
## CIITA 4.054923e-01 0.667546180 0.9999595
## IK 4.052909e-01 0.667679749 0.9999595
## TIMM22 4.052494e-01 0.667707308 0.9999595
## PHRF1 4.051282e-01 0.667787683 0.9999595
## DIAPH1 4.050955e-01 0.667809400 0.9999595
## ALG1 4.050056e-01 0.667869037 0.9999595
## ABHD14B 4.049613e-01 0.667898423 0.9999595
## MEFV 4.049348e-01 0.667915975 0.9999595
## GGNBP2 4.049022e-01 0.667937606 0.9999595
## DACH1 4.048138e-01 0.667996271 0.9999595
## NCF4 4.047537e-01 0.668036160 0.9999595
## HERC3 4.044917e-01 0.668210042 0.9999595
## NOMO2 4.044820e-01 0.668216460 0.9999595
## GNB2 4.044000e-01 0.668270912 0.9999595
## SHKBP1 4.043186e-01 0.668324973 0.9999595
## CEP135 4.042730e-01 0.668355273 0.9999595
## NIPAL3 4.041781e-01 0.668418263 0.9999595
## GPR161 4.041571e-01 0.668432199 0.9999595
## TNFRSF14 4.040791e-01 0.668484001 0.9999595
## ZSWIM3 4.038949e-01 0.668606313 0.9999595
## CCT4 4.038512e-01 0.668635357 0.9999595
## RAB38 4.037189e-01 0.668723213 0.9999595
## TLR3 4.033331e-01 0.668979589 0.9999595
## ADGRE3 4.032503e-01 0.669034602 0.9999595
## SF3A3 4.031610e-01 0.669093971 0.9999595
## MAP10 4.030684e-01 0.669155507 0.9999595
## GUCA1B 4.030377e-01 0.669175906 0.9999595
## POLR3F 4.027990e-01 0.669334645 0.9999595
## NT5C2 4.027316e-01 0.669379418 0.9999595
## SFT2D2 4.026622e-01 0.669425581 0.9999595
## SERPINA1 4.025874e-01 0.669475354 0.9999595
## SRGAP3 4.025493e-01 0.669500677 0.9999595
## TECPR1 4.024306e-01 0.669579640 0.9999595
## SLC43A3 4.023676e-01 0.669621527 0.9999595
## NARF 4.023204e-01 0.669652943 0.9999595
## RAB29 4.020824e-01 0.669811285 0.9999595
## H3-3A 4.020411e-01 0.669838776 0.9999595
## LPGAT1 4.019702e-01 0.669885927 0.9999595
## SHLD3 4.019098e-01 0.669926113 0.9999595
## NR2C2AP 4.019005e-01 0.669932328 0.9999595
## PLAGL2 4.018077e-01 0.669994119 0.9999595
## INKA2 4.018000e-01 0.669999212 0.9999595
## NRBP2 4.017743e-01 0.670016361 0.9999595
## ELF4 4.017689e-01 0.670019911 0.9999595
## KLF11 4.016623e-01 0.670090889 0.9999595
## ECT2 4.016284e-01 0.670113446 0.9999595
## STXBP2 4.014389e-01 0.670239617 0.9999595
## PDXP 4.013119e-01 0.670324166 0.9999595
## SUPT4H1 4.013057e-01 0.670328311 0.9999595
## KLF9 4.012792e-01 0.670345987 0.9999595
## CD58 4.011820e-01 0.670410718 0.9999595
## C6orf226 4.010632e-01 0.670489845 0.9999595
## TUBA8 4.010220e-01 0.670517279 0.9999595
## SLC5A6 4.008958e-01 0.670601365 0.9999595
## HNRNPLL 4.008235e-01 0.670649498 0.9999595
## POLR2H 4.007656e-01 0.670688067 0.9999595
## ELOVL1 4.004478e-01 0.670899858 0.9999595
## CASK 4.003848e-01 0.670941862 0.9999595
## ERGIC3 4.003679e-01 0.670953106 0.9999595
## SVBP 3.999574e-01 0.671226781 0.9999595
## CHRNA10 3.998525e-01 0.671296769 0.9999595
## TMED5 3.998431e-01 0.671303035 0.9999595
## TFEB 3.997760e-01 0.671347755 0.9999595
## RHOBTB2 3.996885e-01 0.671406114 0.9999595
## SOCS3 3.996487e-01 0.671432657 0.9999595
## KIF1B 3.996453e-01 0.671434957 0.9999595
## NUDCD1 3.996237e-01 0.671449378 0.9999595
## SMIM15 3.995750e-01 0.671481845 0.9999595
## TBCD 3.994023e-01 0.671597052 0.9999595
## DIPK1A 3.993991e-01 0.671599227 0.9999595
## MFSD11 3.993342e-01 0.671642480 0.9999595
## BEND7 3.989970e-01 0.671867558 0.9999595
## NT5C3A 3.989486e-01 0.671899848 0.9999595
## GCNA 3.987724e-01 0.672017496 0.9999595
## VEGFA 3.985107e-01 0.672192221 0.9999595
## ZNF808 3.984966e-01 0.672201650 0.9999595
## POLR3B 3.984128e-01 0.672257588 0.9999595
## DYNC1H1 3.983267e-01 0.672315146 0.9999595
## PCYOX1 3.982660e-01 0.672355649 0.9999595
## KDM4B 3.982158e-01 0.672389200 0.9999595
## PPP2R5C 3.980923e-01 0.672471700 0.9999595
## MMP24OS 3.980899e-01 0.672473280 0.9999595
## DLC1 3.980701e-01 0.672486556 0.9999595
## PSMF1 3.979744e-01 0.672550480 0.9999595
## DMTN 3.977397e-01 0.672707327 0.9999595
## MACROH2A1 3.976036e-01 0.672798271 0.9999595
## NEK9 3.975241e-01 0.672851397 0.9999595
## MANSC1 3.974280e-01 0.672915660 0.9999595
## STRN3 3.973193e-01 0.672988378 0.9999595
## CDC42BPA 3.971700e-01 0.673088167 0.9999595
## CDK11B 3.971650e-01 0.673091540 0.9999595
## NPHP3 3.970439e-01 0.673172523 0.9999595
## BCR 3.968295e-01 0.673315919 0.9999595
## BAZ2B 3.966734e-01 0.673420347 0.9999595
## PSIP1 3.965666e-01 0.673491782 0.9999595
## MOB1A 3.965177e-01 0.673524509 0.9999595
## BAIAP3 3.965136e-01 0.673527269 0.9999595
## CDC73 3.964711e-01 0.673555700 0.9999595
## PCMTD2 3.964605e-01 0.673562811 0.9999595
## NIBAN1 3.964565e-01 0.673565486 0.9999595
## STX18 3.963700e-01 0.673623352 0.9999595
## CYTH4 3.961991e-01 0.673737780 0.9999595
## PAWR 3.961009e-01 0.673803473 0.9999595
## THEMIS 3.960153e-01 0.673860772 0.9999595
## ETFBKMT 3.959711e-01 0.673890384 0.9999595
## LONRF1 3.959323e-01 0.673916369 0.9999595
## ZBTB43 3.959226e-01 0.673922895 0.9999595
## BCKDHA 3.958745e-01 0.673955048 0.9999595
## MCM7 3.955537e-01 0.674169896 0.9999595
## PDCD4 3.955067e-01 0.674201407 0.9999595
## GNAQ 3.954989e-01 0.674206655 0.9999595
## CD274 3.952688e-01 0.674360750 0.9999595
## FCER1G 3.952492e-01 0.674373872 0.9999595
## METTL15 3.952430e-01 0.674378049 0.9999595
## CREB1 3.949525e-01 0.674572709 0.9999595
## PRR13 3.948535e-01 0.674639079 0.9999595
## LPCAT4 3.947440e-01 0.674712485 0.9999595
## SLC30A7 3.947360e-01 0.674717856 0.9999595
## ANP32B 3.946386e-01 0.674783129 0.9999595
## ESF1 3.946170e-01 0.674797631 0.9999595
## FKRP 3.946126e-01 0.674800567 0.9999595
## LRP5L 3.946090e-01 0.674803001 0.9999595
## MEF2B 3.945504e-01 0.674842248 0.9999595
## SAMHD1 3.944926e-01 0.674881067 0.9999595
## CALU 3.944701e-01 0.674896104 0.9999595
## ATXN1 3.941900e-01 0.675083980 0.9999595
## TRIM28 3.941804e-01 0.675090421 0.9999595
## PRKDC 3.941794e-01 0.675091079 0.9999595
## MAN2A1 3.941430e-01 0.675115511 0.9999595
## TM2D3 3.940824e-01 0.675156130 0.9999595
## CENPH 3.940810e-01 0.675157107 0.9999595
## HSPBAP1 3.940403e-01 0.675184420 0.9999595
## CHP1 3.938454e-01 0.675315118 0.9999595
## SNX5 3.937949e-01 0.675349060 0.9999595
## CPSF2 3.937368e-01 0.675388014 0.9999595
## C9orf85 3.936816e-01 0.675425054 0.9999595
## TBC1D10B 3.936181e-01 0.675467689 0.9999595
## ZNF684 3.934391e-01 0.675587815 0.9999595
## OXLD1 3.934167e-01 0.675602857 0.9999595
## PGD 3.934135e-01 0.675604970 0.9999595
## KPNA1 3.932349e-01 0.675724889 0.9999595
## TACSTD2 3.932309e-01 0.675727612 0.9999595
## HMCES 3.931634e-01 0.675772894 0.9999595
## SESN2 3.931413e-01 0.675787739 0.9999595
## RPS5 3.931019e-01 0.675814214 0.9999595
## TRABD 3.931005e-01 0.675815135 0.9999595
## CUL4B 3.930715e-01 0.675834632 0.9999595
## POLD1 3.930465e-01 0.675851405 0.9999595
## CHCHD6 3.930098e-01 0.675876041 0.9999595
## NSF 3.928642e-01 0.675973822 0.9999595
## C8orf37 3.928560e-01 0.675979349 0.9999595
## UXT 3.928006e-01 0.676016540 0.9999595
## ATRAID 3.927849e-01 0.676027077 0.9999595
## IL27 3.927588e-01 0.676044617 0.9999595
## RPS21 3.927354e-01 0.676060336 0.9999595
## NOA1 3.927339e-01 0.676061378 0.9999595
## ZC3H12A 3.926242e-01 0.676135067 0.9999595
## PDE3B 3.925467e-01 0.676187115 0.9999595
## BCAP31 3.925338e-01 0.676195770 0.9999595
## LNPEP 3.925120e-01 0.676210395 0.9999595
## ERI3 3.925116e-01 0.676210712 0.9999595
## REEP3 3.924554e-01 0.676248427 0.9999595
## CD79B 3.923763e-01 0.676301598 0.9999595
## TANGO2 3.922790e-01 0.676366976 0.9999595
## ZFAND6 3.922725e-01 0.676371335 0.9999595
## BORCS8-MEF2B 3.922565e-01 0.676382133 0.9999595
## ZBTB18 3.921521e-01 0.676452281 0.9999595
## ZNF281 3.919708e-01 0.676574118 0.9999595
## CARNS1 3.918873e-01 0.676630258 0.9999595
## VCPIP1 3.916947e-01 0.676759753 0.9999595
## HIGD1A 3.916805e-01 0.676769341 0.9999595
## DHX58 3.915951e-01 0.676826738 0.9999595
## PCBP4 3.915317e-01 0.676869404 0.9999595
## AFF1 3.913852e-01 0.676967950 0.9999595
## SMG5 3.911815e-01 0.677104938 0.9999595
## SAMD14 3.911143e-01 0.677150156 0.9999595
## RNF167 3.907401e-01 0.677401978 0.9999595
## USP35 3.907256e-01 0.677411730 0.9999595
## IGBP1 3.905730e-01 0.677514487 0.9999595
## FAM98B 3.905662e-01 0.677519007 0.9999595
## PARVB 3.904774e-01 0.677578832 0.9999595
## COLEC12 3.904162e-01 0.677620061 0.9999595
## SBDS 3.903634e-01 0.677655601 0.9999595
## HMGB2 3.901573e-01 0.677794344 0.9999595
## CCL4 3.901103e-01 0.677826018 0.9999595
## RPUSD4 3.898885e-01 0.677975422 0.9999595
## MRRF 3.898413e-01 0.678007188 0.9999595
## HIVEP2 3.898186e-01 0.678022494 0.9999595
## TIGD5 3.897936e-01 0.678039366 0.9999595
## AP5M1 3.897547e-01 0.678065585 0.9999595
## ERO1B 3.897193e-01 0.678089392 0.9999595
## CFAP97D1 3.894951e-01 0.678240467 0.9999595
## MEX3D 3.890230e-01 0.678558706 0.9999595
## SMIM12 3.889683e-01 0.678595579 0.9999595
## IGF2BP2 3.889543e-01 0.678605059 0.9999595
## DFFA 3.889339e-01 0.678618809 0.9999595
## TMCO3 3.887918e-01 0.678714659 0.9999595
## NFAT5 3.887649e-01 0.678732765 0.9999595
## RYBP 3.886895e-01 0.678783660 0.9999595
## DHRS3 3.886626e-01 0.678801800 0.9999595
## USP3 3.886153e-01 0.678833695 0.9999595
## ZNF223 3.885002e-01 0.678911312 0.9999595
## SLC30A4 3.883908e-01 0.678985143 0.9999595
## FAM3C 3.882267e-01 0.679095873 0.9999595
## ESCO1 3.879449e-01 0.679286016 0.9999595
## THAP5 3.879022e-01 0.679314861 0.9999595
## TRIM38 3.878736e-01 0.679334159 0.9999595
## CRTC3 3.878636e-01 0.679340902 0.9999595
## PINK1 3.878429e-01 0.679354908 0.9999595
## METTL1 3.877613e-01 0.679409939 0.9999595
## BLOC1S2 3.876687e-01 0.679472513 0.9999595
## AP5B1 3.875414e-01 0.679558436 0.9999595
## NBDY 3.874155e-01 0.679643462 0.9999595
## ASNSD1 3.873947e-01 0.679657485 0.9999595
## TERF2IP 3.873921e-01 0.679659239 0.9999595
## TSPAN15 3.873813e-01 0.679666554 0.9999595
## RGPD8 3.873425e-01 0.679692754 0.9999595
## EFCAB14 3.872764e-01 0.679737427 0.9999595
## AMMECR1 3.872163e-01 0.679778007 0.9999595
## PREPL 3.870801e-01 0.679870026 0.9999595
## ADAP2 3.870010e-01 0.679923450 0.9999595
## LRFN4 3.869747e-01 0.679941230 0.9999595
## SNX19 3.869656e-01 0.679947373 0.9999595
## LMO7 3.869561e-01 0.679953767 0.9999595
## UCKL1 3.866224e-01 0.680179292 0.9999595
## RAPGEFL1 3.865741e-01 0.680211954 0.9999595
## PPP1R21 3.865307e-01 0.680241272 0.9999595
## ZBTB34 3.861640e-01 0.680489199 0.9999595
## SLCO3A1 3.861220e-01 0.680517617 0.9999595
## RAB8B 3.858141e-01 0.680725796 0.9999595
## C2CD2L 3.855337e-01 0.680915536 0.9999595
## CPT1A 3.855197e-01 0.680924987 0.9999595
## TMEM252 3.854459e-01 0.680974960 0.9999595
## TTI1 3.853696e-01 0.681026598 0.9999595
## IMPG2 3.852763e-01 0.681089689 0.9999595
## MBD5 3.849442e-01 0.681314529 0.9999595
## HM13 3.849080e-01 0.681338995 0.9999595
## PNMA1 3.848265e-01 0.681394201 0.9999595
## DAXX 3.846308e-01 0.681526721 0.9999595
## CASP10 3.845022e-01 0.681613840 0.9999595
## PRKAA1 3.844888e-01 0.681622874 0.9999595
## SLC16A10 3.844845e-01 0.681625831 0.9999595
## TOLLIP 3.844029e-01 0.681681097 0.9999595
## MPZL2 3.843823e-01 0.681695029 0.9999595
## SEC62 3.843393e-01 0.681724194 0.9999595
## COPB2 3.842775e-01 0.681766038 0.9999595
## MTO1 3.840259e-01 0.681936493 0.9999595
## SBF1 3.839913e-01 0.681960000 0.9999595
## ATP1B3 3.839418e-01 0.681993544 0.9999595
## IRAK3 3.835988e-01 0.682226038 0.9999595
## RASSF2 3.835318e-01 0.682271441 0.9999595
## C1orf131 3.835202e-01 0.682279308 0.9999595
## CIZ1 3.834438e-01 0.682331080 0.9999595
## GPR68 3.832982e-01 0.682429856 0.9999595
## SLU7 3.832974e-01 0.682430410 0.9999595
## ZBTB38 3.831983e-01 0.682497593 0.9999595
## ZFYVE16 3.827299e-01 0.682815355 0.9999595
## MDP1 3.825699e-01 0.682923897 0.9999595
## RASL11A 3.825144e-01 0.682961603 0.9999595
## NTPCR 3.824822e-01 0.682983431 0.9999595
## SLC9A7 3.824457e-01 0.683008188 0.9999595
## RAB7A 3.824287e-01 0.683019757 0.9999595
## ECD 3.823984e-01 0.683040322 0.9999595
## ARHGDIB 3.821725e-01 0.683193675 0.9999595
## B4GALT6 3.820507e-01 0.683276392 0.9999595
## RBM43 3.820083e-01 0.683305175 0.9999595
## SENP5 3.819861e-01 0.683320236 0.9999595
## KCNJ15 3.818802e-01 0.683392164 0.9999595
## SOX13 3.815959e-01 0.683585237 0.9999595
## KPTN 3.815228e-01 0.683634937 0.9999595
## VPS54 3.814914e-01 0.683656251 0.9999595
## ASL 3.814401e-01 0.683691126 0.9999595
## ITFG2 3.814050e-01 0.683714956 0.9999595
## NAA80 3.813353e-01 0.683762278 0.9999595
## HSP90AB1 3.810926e-01 0.683927210 0.9999595
## TMOD1 3.810537e-01 0.683953714 0.9999595
## GNA11 3.809147e-01 0.684048145 0.9999595
## VPS41 3.807299e-01 0.684173787 0.9999595
## RPL23A 3.806395e-01 0.684235254 0.9999595
## PSPC1 3.805337e-01 0.684307207 0.9999595
## C12orf76 3.804702e-01 0.684350412 0.9999595
## CEP162 3.803505e-01 0.684431837 0.9999595
## BIRC6 3.803332e-01 0.684443592 0.9999595
## IFI16 3.802302e-01 0.684513643 0.9999595
## BCAS4 3.798281e-01 0.684787203 0.9999595
## KDM6B 3.798097e-01 0.684799776 0.9999595
## TMEM30A 3.798086e-01 0.684800508 0.9999595
## ZFC3H1 3.796058e-01 0.684938512 0.9999595
## G2E3 3.795167e-01 0.684999173 0.9999595
## WBP4 3.793950e-01 0.685082027 0.9999595
## CLTCL1 3.793689e-01 0.685099792 0.9999595
## RFLNB 3.793507e-01 0.685112178 0.9999595
## NAA40 3.790619e-01 0.685308835 0.9999595
## KIAA1522 3.789492e-01 0.685385640 0.9999595
## TOMM5 3.788548e-01 0.685449952 0.9999595
## SCAF11 3.787721e-01 0.685506236 0.9999595
## ACVR2B 3.787587e-01 0.685515390 0.9999595
## COQ8B 3.786937e-01 0.685559710 0.9999595
## STXBP3 3.786483e-01 0.685590623 0.9999595
## CPEB2 3.786338e-01 0.685600478 0.9999595
## ZNF677 3.786185e-01 0.685610924 0.9999595
## EHD1 3.786144e-01 0.685613742 0.9999595
## PTBP2 3.785079e-01 0.685686262 0.9999595
## SPRTN 3.784835e-01 0.685702889 0.9999595
## ELMO1 3.784311e-01 0.685738638 0.9999595
## CTR9 3.783105e-01 0.685820793 0.9999595
## PTK2B 3.782133e-01 0.685887094 0.9999595
## LMBRD1 3.781161e-01 0.685953322 0.9999595
## ORC2 3.780930e-01 0.685969063 0.9999595
## MAP4K5 3.780415e-01 0.686004196 0.9999595
## HK1 3.778883e-01 0.686108659 0.9999595
## PPP1R15A 3.775408e-01 0.686345650 0.9999595
## TOPORS 3.775380e-01 0.686347562 0.9999595
## PIGY 3.775111e-01 0.686365863 0.9999595
## PYURF 3.775111e-01 0.686365863 0.9999595
## UBE2F 3.774475e-01 0.686409271 0.9999595
## UBE2E3 3.774053e-01 0.686438059 0.9999595
## NGRN 3.771159e-01 0.686635485 0.9999595
## CRTAM 3.770738e-01 0.686664283 0.9999595
## SERTAD2 3.770695e-01 0.686667194 0.9999595
## TENM1 3.770469e-01 0.686682626 0.9999595
## SLA2 3.769912e-01 0.686720624 0.9999595
## HEXIM1 3.768990e-01 0.686783580 0.9999595
## PSMD13 3.768480e-01 0.686818345 0.9999595
## APPBP2 3.767322e-01 0.686897390 0.9999595
## BACE2 3.763858e-01 0.687133945 0.9999595
## CENPS 3.762671e-01 0.687214998 0.9999595
## IKBKG 3.761574e-01 0.687289942 0.9999595
## DIABLO 3.760537e-01 0.687360747 0.9999595
## CDKN2D 3.759846e-01 0.687407972 0.9999595
## THAP12 3.759769e-01 0.687413233 0.9999595
## NAA50 3.759562e-01 0.687427392 0.9999595
## GDE1 3.758698e-01 0.687486433 0.9999595
## MPV17L2 3.755242e-01 0.687722568 0.9999595
## NUMB 3.755071e-01 0.687734249 0.9999595
## DNAJC10 3.754953e-01 0.687742298 0.9999595
## PCP2 3.751498e-01 0.687978502 0.9999595
## GPBAR1 3.751320e-01 0.687990673 0.9999595
## TXNDC16 3.750952e-01 0.688015867 0.9999595
## WDR25 3.750740e-01 0.688030332 0.9999595
## FASTKD2 3.750494e-01 0.688047174 0.9999595
## SLC22A4 3.749382e-01 0.688123257 0.9999595
## CD247 3.748980e-01 0.688150754 0.9999595
## ZMYND8 3.748773e-01 0.688164867 0.9999595
## PRCP 3.748388e-01 0.688191233 0.9999595
## CBX5 3.747920e-01 0.688223193 0.9999595
## RGS18 3.747832e-01 0.688229219 0.9999595
## ANKRD44 3.747770e-01 0.688233459 0.9999595
## KLF16 3.747133e-01 0.688277083 0.9999595
## SNRPA1 3.745513e-01 0.688387877 0.9999595
## FAM89A 3.742570e-01 0.688589237 0.9999595
## SLC6A6 3.742458e-01 0.688596951 0.9999595
## PHOSPHO1 3.741781e-01 0.688643262 0.9999595
## PXMP2 3.741765e-01 0.688644328 0.9999595
## ZFP36 3.741493e-01 0.688662984 0.9999595
## ACAA1 3.740548e-01 0.688727628 0.9999595
## ZNF3 3.738554e-01 0.688864165 0.9999595
## SRRM1 3.738538e-01 0.688865238 0.9999595
## C16orf54 3.737431e-01 0.688941027 0.9999595
## AFF2 3.736524e-01 0.689003186 0.9999595
## IL13RA1 3.736325e-01 0.689016806 0.9999595
## FDXR 3.729431e-01 0.689489087 0.9999595
## RSBN1 3.728948e-01 0.689522143 0.9999595
## HLA-A 3.728714e-01 0.689538213 0.9999595
## SFXN5 3.726439e-01 0.689694151 0.9999595
## ZNF841 3.726283e-01 0.689704823 0.9999595
## CD84 3.726049e-01 0.689720838 0.9999595
## GOLIM4 3.725849e-01 0.689734614 0.9999595
## SLC25A10 3.725461e-01 0.689761189 0.9999595
## JMJD6 3.724398e-01 0.689834039 0.9999595
## SPAST 3.724359e-01 0.689836727 0.9999595
## VNN1 3.724021e-01 0.689859898 0.9999595
## MRPS23 3.723636e-01 0.689886289 0.9999595
## MAF1 3.723504e-01 0.689895325 0.9999595
## INTU 3.722159e-01 0.689987617 0.9999595
## PER1 3.722153e-01 0.689988036 0.9999595
## CBLN3 3.721304e-01 0.690046235 0.9999595
## TSPAN17 3.719698e-01 0.690156392 0.9999595
## OSM 3.719481e-01 0.690171295 0.9999595
## RORA 3.719462e-01 0.690172589 0.9999595
## GRAMD1A 3.718735e-01 0.690222441 0.9999595
## SLAMF8 3.718016e-01 0.690271778 0.9999595
## NUFIP1 3.717767e-01 0.690288878 0.9999595
## ATF2 3.716415e-01 0.690381597 0.9999595
## LLGL1 3.716207e-01 0.690395880 0.9999595
## JOSD1 3.715785e-01 0.690424869 0.9999595
## DOLK 3.709989e-01 0.690822698 0.9999595
## NSG1 3.709869e-01 0.690830931 0.9999595
## ZBTB5 3.709437e-01 0.690860628 0.9999595
## FAM8A1 3.708009e-01 0.690958713 0.9999595
## CCDC126 3.707048e-01 0.691024706 0.9999595
## C16orf72 3.705808e-01 0.691109856 0.9999595
## GTSE1 3.705523e-01 0.691129450 0.9999595
## ELK4 3.704951e-01 0.691168722 0.9999595
## SCYL3 3.704306e-01 0.691213068 0.9999595
## MYG1 3.703655e-01 0.691257744 0.9999595
## ACTR1A 3.701281e-01 0.691420898 0.9999595
## ATP6AP2 3.700025e-01 0.691507217 0.9999595
## PPP1R37 3.698788e-01 0.691592251 0.9999595
## SNX4 3.698237e-01 0.691630105 0.9999595
## LRG1 3.698211e-01 0.691631940 0.9999595
## FBXW4 3.697372e-01 0.691689610 0.9999595
## LOC100996842 3.694193e-01 0.691908160 0.9999595
## RWDD1 3.694117e-01 0.691913382 0.9999595
## SNRNP48 3.692766e-01 0.692006301 0.9999595
## HIPK3 3.691670e-01 0.692081734 0.9999595
## TARBP2 3.691606e-01 0.692086112 0.9999595
## LTB4R2 3.690347e-01 0.692172731 0.9999595
## C5AR2 3.689117e-01 0.692257387 0.9999595
## OCLN 3.688132e-01 0.692325152 0.9999595
## TGDS 3.687582e-01 0.692363017 0.9999595
## SMURF2 3.686868e-01 0.692412126 0.9999595
## RAE1 3.684641e-01 0.692565414 0.9999595
## VCL 3.684563e-01 0.692570788 0.9999595
## TTC17 3.684294e-01 0.692589290 0.9999595
## TMEM41B 3.684041e-01 0.692606721 0.9999595
## KRR1 3.679387e-01 0.692927233 0.9999595
## EFTUD2 3.678004e-01 0.693022492 0.9999595
## C2orf69 3.676212e-01 0.693145928 0.9999595
## SLC52A2 3.675736e-01 0.693178732 0.9999595
## MCM3 3.673105e-01 0.693359999 0.9999595
## SERF2 3.672988e-01 0.693368110 0.9999595
## PSMD8 3.672202e-01 0.693422232 0.9999595
## TRIP11 3.671473e-01 0.693472523 0.9999595
## FSD2 3.669876e-01 0.693582624 0.9999595
## CHMP2B 3.669766e-01 0.693590162 0.9999595
## RAB1B 3.666790e-01 0.693795401 0.9999595
## DLGAP5 3.665497e-01 0.693884531 0.9999595
## CLCN5 3.664367e-01 0.693962481 0.9999595
## LSG1 3.662083e-01 0.694120046 0.9999595
## TRIM66 3.661727e-01 0.694144671 0.9999595
## PRSS36 3.661043e-01 0.694191822 0.9999595
## MTSS1 3.660572e-01 0.694224372 0.9999595
## DNAJB14 3.660156e-01 0.694253057 0.9999595
## MFSD12 3.659058e-01 0.694328825 0.9999595
## CWF19L2 3.658711e-01 0.694352767 0.9999595
## MTX2 3.657334e-01 0.694447816 0.9999595
## F11R 3.657324e-01 0.694448516 0.9999595
## TTC7A 3.657087e-01 0.694464906 0.9999595
## KIAA0825 3.655399e-01 0.694581404 0.9999595
## ZNF492 3.652562e-01 0.694777301 0.9999595
## KAT6B 3.651930e-01 0.694820958 0.9999595
## B4GAT1 3.650752e-01 0.694902342 0.9999595
## POLE3 3.650696e-01 0.694906182 0.9999595
## OPA1 3.649944e-01 0.694958139 0.9999595
## PPEF1 3.647594e-01 0.695120514 0.9999595
## TBC1D24 3.647466e-01 0.695129359 0.9999595
## MTRR 3.646390e-01 0.695203712 0.9999595
## TMBIM4 3.645555e-01 0.695261408 0.9999595
## PAQR3 3.644403e-01 0.695341039 0.9999595
## CORO2A 3.644244e-01 0.695352019 0.9999595
## TCN1 3.643218e-01 0.695422920 0.9999595
## EIF5A2 3.643188e-01 0.695425027 0.9999595
## OTULIN 3.640674e-01 0.695598833 0.9999595
## CBWD6 3.638073e-01 0.695778674 0.9999595
## TBPL1 3.637274e-01 0.695833930 0.9999595
## CUL5 3.637036e-01 0.695850426 0.9999595
## CTBS 3.636757e-01 0.695869730 0.9999595
## EXOG 3.633549e-01 0.696091676 0.9999595
## CENPBD1 3.632669e-01 0.696152584 0.9999595
## ZNF880 3.628937e-01 0.696410861 0.9999595
## DIP2A 3.627956e-01 0.696478800 0.9999595
## ACAP1 3.627709e-01 0.696495925 0.9999595
## LRCH3 3.626332e-01 0.696591222 0.9999595
## HPS3 3.623809e-01 0.696765961 0.9999595
## TOGARAM1 3.623572e-01 0.696782397 0.9999595
## PHC3 3.623444e-01 0.696791244 0.9999595
## ST6GALNAC2 3.622927e-01 0.696827048 0.9999595
## ORMDL1 3.620960e-01 0.696963316 0.9999595
## GZF1 3.619512e-01 0.697063666 0.9999595
## GBP1 3.619485e-01 0.697065512 0.9999595
## DDX56 3.618172e-01 0.697156548 0.9999595
## ZNF528 3.617935e-01 0.697172928 0.9999595
## MDN1 3.614563e-01 0.697406686 0.9999595
## CSK 3.613918e-01 0.697451412 0.9999595
## TBC1D1 3.613844e-01 0.697456514 0.9999595
## STAP1 3.613428e-01 0.697485403 0.9999595
## PTS 3.613402e-01 0.697487206 0.9999595
## ZNF513 3.612894e-01 0.697522430 0.9999595
## CLIP1 3.612804e-01 0.697528645 0.9999595
## TRIM25 3.612582e-01 0.697544044 0.9999595
## ZNF133 3.612562e-01 0.697545416 0.9999595
## PKD1 3.611795e-01 0.697598606 0.9999595
## CCDC85C 3.611760e-01 0.697601053 0.9999595
## ZMYM3 3.611277e-01 0.697634566 0.9999595
## SSTR2 3.610025e-01 0.697721339 0.9999595
## AARS1 3.609956e-01 0.697726174 0.9999595
## PLPBP 3.607898e-01 0.697868912 0.9999595
## MAPKAPK2 3.607177e-01 0.697918906 0.9999595
## ZNF490 3.606424e-01 0.697971197 0.9999595
## YWHAZ 3.605095e-01 0.698063381 0.9999595
## MAPK3 3.604763e-01 0.698086459 0.9999595
## TTC27 3.604558e-01 0.698100640 0.9999595
## ATP10A 3.604470e-01 0.698106764 0.9999595
## PNPLA7 3.601087e-01 0.698341601 0.9999595
## GPR137B 3.599653e-01 0.698441118 0.9999595
## COQ9 3.599545e-01 0.698448619 0.9999595
## ELMOD2 3.599191e-01 0.698473219 0.9999595
## PITPNA 3.598600e-01 0.698514255 0.9999595
## JAK1 3.597539e-01 0.698587976 0.9999595
## USP14 3.597126e-01 0.698616627 0.9999595
## C1QA 3.597098e-01 0.698618581 0.9999595
## ZBTB8OS 3.595084e-01 0.698758460 0.9999595
## SFMBT2 3.593436e-01 0.698872973 0.9999595
## CENPU 3.593361e-01 0.698878196 0.9999595
## RFTN1 3.592786e-01 0.698918146 0.9999595
## STK11IP 3.592145e-01 0.698962682 0.9999595
## KIF1C 3.591123e-01 0.699033689 0.9999595
## HERPUD2 3.590424e-01 0.699082232 0.9999595
## IQGAP1 3.589646e-01 0.699136311 0.9999595
## C19orf47 3.587205e-01 0.699305968 0.9999595
## GMFG 3.586949e-01 0.699323818 0.9999595
## CLBA1 3.585531e-01 0.699422408 0.9999595
## MYO15B 3.585484e-01 0.699425684 0.9999595
## CLEC9A 3.583433e-01 0.699568271 0.9999595
## AP1M1 3.581757e-01 0.699684877 0.9999595
## TGM1 3.579678e-01 0.699829510 0.9999595
## IQSEC2 3.577169e-01 0.700004034 0.9999595
## SPAG7 3.576884e-01 0.700023896 0.9999595
## PLEKHO2 3.575568e-01 0.700115510 0.9999595
## SQOR 3.575196e-01 0.700141358 0.9999595
## BAG3 3.573793e-01 0.700239050 0.9999595
## MBNL2 3.573222e-01 0.700278785 0.9999595
## XYLB 3.572968e-01 0.700296495 0.9999595
## TMEM134 3.572174e-01 0.700351774 0.9999595
## C1QB 3.571139e-01 0.700423835 0.9999595
## TBXA2R 3.568068e-01 0.700637688 0.9999595
## KLHL22 3.567859e-01 0.700652240 0.9999595
## LATS2 3.567461e-01 0.700680014 0.9999595
## ARHGEF19 3.563786e-01 0.700936022 0.9999595
## SMIM5 3.563253e-01 0.700973190 0.9999595
## MRPL32 3.562956e-01 0.700993892 0.9999595
## PRPF3 3.562543e-01 0.701022687 0.9999595
## KATNA1 3.560898e-01 0.701137335 0.9999595
## PPP4R3B 3.560076e-01 0.701194623 0.9999595
## TMEM43 3.559887e-01 0.701207802 0.9999595
## TMED8 3.558720e-01 0.701289151 0.9999595
## ANAPC5 3.558375e-01 0.701313179 0.9999595
## IFI35 3.558235e-01 0.701322993 0.9999595
## RAB3GAP1 3.557976e-01 0.701341032 0.9999595
## NOP58 3.555035e-01 0.701546114 0.9999595
## DTYMK 3.553907e-01 0.701624767 0.9999595
## TASOR 3.553737e-01 0.701636628 0.9999595
## KIF23 3.552387e-01 0.701730824 0.9999595
## ARPC2 3.551874e-01 0.701766595 0.9999595
## PTOV1 3.550010e-01 0.701896697 0.9999595
## APC 3.549159e-01 0.701956072 0.9999595
## SLF1 3.547218e-01 0.702091563 0.9999595
## CEP20 3.546131e-01 0.702167434 0.9999595
## TAF1 3.544875e-01 0.702255121 0.9999595
## MICU1 3.544737e-01 0.702264772 0.9999595
## CHMP4B 3.544260e-01 0.702298066 0.9999595
## SLC25A32 3.543729e-01 0.702335142 0.9999595
## PPP1R12A 3.542580e-01 0.702415341 0.9999595
## TNFSF13B 3.542005e-01 0.702455534 0.9999595
## CCDC167 3.540222e-01 0.702580081 0.9999595
## IL1R2 3.540114e-01 0.702587566 0.9999595
## LRP1 3.538740e-01 0.702683609 0.9999595
## GIPC3 3.537922e-01 0.702740744 0.9999595
## DDIAS 3.537732e-01 0.702754001 0.9999595
## FCHSD2 3.536150e-01 0.702864577 0.9999595
## STK36 3.536010e-01 0.702874316 0.9999595
## FAM228B 3.533747e-01 0.703032508 0.9999595
## MYBPC3 3.533240e-01 0.703067956 0.9999595
## RHOA 3.532885e-01 0.703092732 0.9999595
## TOP2A 3.531741e-01 0.703172746 0.9999595
## LATS1 3.531638e-01 0.703179930 0.9999595
## CD36 3.530676e-01 0.703247172 0.9999595
## GBP2 3.529809e-01 0.703307770 0.9999595
## PLEKHM1 3.527613e-01 0.703461368 0.9999595
## MRPS36 3.525964e-01 0.703576707 0.9999595
## ZRSR2 3.524638e-01 0.703669503 0.9999595
## MTRNR2L9 3.524124e-01 0.703705463 0.9999595
## KLF7 3.523321e-01 0.703761593 0.9999595
## SHROOM1 3.523261e-01 0.703765794 0.9999595
## CDK19 3.523148e-01 0.703773712 0.9999595
## SUV39H2 3.522911e-01 0.703790338 0.9999595
## C12orf45 3.522142e-01 0.703844087 0.9999595
## ZNF282 3.521325e-01 0.703901272 0.9999595
## MMAA 3.520544e-01 0.703955939 0.9999595
## SELPLG 3.520301e-01 0.703972959 0.9999595
## IFITM1 3.520086e-01 0.703987979 0.9999595
## C3orf86 3.518595e-01 0.704092396 0.9999595
## UBE2I 3.518003e-01 0.704133802 0.9999595
## CTF1 3.515675e-01 0.704296796 0.9999595
## E2F6 3.515377e-01 0.704317714 0.9999595
## SORL1 3.515351e-01 0.704319489 0.9999595
## RMND5A 3.514551e-01 0.704375540 0.9999595
## MTX3 3.512857e-01 0.704494190 0.9999595
## UBAP2L 3.510300e-01 0.704673299 0.9999595
## FRMD3 3.510224e-01 0.704678642 0.9999595
## PPP1R18 3.509965e-01 0.704696767 0.9999595
## DNAJC25 3.508897e-01 0.704771601 0.9999595
## C1orf122 3.507810e-01 0.704847806 0.9999595
## MAP3K21 3.507654e-01 0.704858695 0.9999595
## PDLIM1 3.506615e-01 0.704931541 0.9999595
## NUP160 3.503731e-01 0.705133693 0.9999595
## ZNF236 3.501069e-01 0.705320336 0.9999595
## FYN 3.500790e-01 0.705339937 0.9999595
## FOXK1 3.500345e-01 0.705371125 0.9999595
## EBNA1BP2 3.499820e-01 0.705407987 0.9999595
## RASSF3 3.498785e-01 0.705480564 0.9999595
## KCTD7 3.495490e-01 0.705711748 0.9999595
## UBR5 3.493574e-01 0.705846194 0.9999595
## SIGMAR1 3.490964e-01 0.706029342 0.9999595
## USP6 3.490424e-01 0.706067293 0.9999595
## CDC42 3.488548e-01 0.706198983 0.9999595
## PIH1D1 3.488437e-01 0.706206758 0.9999595
## PIP4P2 3.488114e-01 0.706229473 0.9999595
## SUSD6 3.488004e-01 0.706237167 0.9999595
## IRF8 3.487846e-01 0.706248298 0.9999595
## ZSCAN20 3.486827e-01 0.706319867 0.9999595
## CRELD1 3.486595e-01 0.706336154 0.9999595
## SOX12 3.486162e-01 0.706366534 0.9999595
## MRPS30 3.485830e-01 0.706389870 0.9999595
## CAPNS2 3.484507e-01 0.706482787 0.9999595
## NECAB2 3.484442e-01 0.706487361 0.9999595
## ABCA2 3.483252e-01 0.706570962 0.9999595
## MINDY3 3.482705e-01 0.706609423 0.9999595
## MRPL39 3.482549e-01 0.706620332 0.9999595
## STK40 3.482230e-01 0.706642799 0.9999595
## MED28 3.480903e-01 0.706736040 0.9999595
## AFMID 3.480326e-01 0.706776577 0.9999595
## CHEK2 3.479134e-01 0.706860345 0.9999595
## NOL8 3.477344e-01 0.706986145 0.9999595
## KLHL15 3.477280e-01 0.706990681 0.9999595
## TMED1 3.477038e-01 0.707007691 0.9999595
## TBC1D2B 3.475725e-01 0.707099976 0.9999595
## NCAM1 3.475411e-01 0.707122070 0.9999595
## THOP1 3.474576e-01 0.707180770 0.9999595
## GALNT14 3.471943e-01 0.707365952 0.9999595
## AAAS 3.470744e-01 0.707450234 0.9999595
## MAP2K2 3.469658e-01 0.707526654 0.9999595
## TTC5 3.468957e-01 0.707575980 0.9999595
## PLEKHG3 3.467893e-01 0.707650847 0.9999595
## GOLGB1 3.467730e-01 0.707662340 0.9999595
## C1orf174 3.467725e-01 0.707662688 0.9999595
## ENGASE 3.467516e-01 0.707677397 0.9999595
## FAR2 3.467412e-01 0.707684695 0.9999595
## EXOC3 3.467342e-01 0.707689610 0.9999595
## GPR108 3.466566e-01 0.707744222 0.9999595
## CCT3 3.465955e-01 0.707787256 0.9999595
## ELF2 3.465951e-01 0.707787499 0.9999595
## RIOK2 3.464982e-01 0.707855674 0.9999595
## GLA 3.464938e-01 0.707858772 0.9999595
## ANKRD9 3.463218e-01 0.707979852 0.9999595
## PCYT1B 3.461221e-01 0.708120484 0.9999595
## PIK3CA 3.461109e-01 0.708128381 0.9999595
## RPL18 3.461023e-01 0.708134393 0.9999595
## SUMF2 3.460251e-01 0.708188804 0.9999595
## VPS13D 3.460099e-01 0.708199460 0.9999595
## ZNF454 3.457521e-01 0.708381039 0.9999595
## ERP27 3.456816e-01 0.708430684 0.9999595
## BLZF1 3.456421e-01 0.708458543 0.9999595
## ZNF202 3.456204e-01 0.708473782 0.9999595
## GCLC 3.455741e-01 0.708506454 0.9999595
## CRIP1 3.455180e-01 0.708545989 0.9999595
## IQCC 3.454896e-01 0.708565952 0.9999595
## VAMP3 3.453730e-01 0.708648102 0.9999595
## ADNP2 3.452425e-01 0.708740082 0.9999595
## SSBP3 3.451704e-01 0.708790891 0.9999595
## NOP9 3.451478e-01 0.708806857 0.9999595
## SS18L2 3.449442e-01 0.708950310 0.9999595
## NAT8B 3.448509e-01 0.709016141 0.9999595
## SLC35B3 3.447215e-01 0.709107348 0.9999595
## HDHD2 3.445767e-01 0.709209457 0.9999595
## SOCS6 3.444442e-01 0.709302884 0.9999595
## CCAR2 3.444099e-01 0.709327132 0.9999595
## SULT1B1 3.441667e-01 0.709498664 0.9999595
## RPL17-C18orf32 3.441557e-01 0.709506433 0.9999595
## GTF2H2C 3.441520e-01 0.709509058 0.9999595
## SEPTIN14 3.440558e-01 0.709576924 0.9999595
## CCDC122 3.440545e-01 0.709577834 0.9999595
## P4HA2 3.440393e-01 0.709588525 0.9999595
## SPRYD4 3.440130e-01 0.709607091 0.9999595
## CDC14A 3.438274e-01 0.709738070 0.9999595
## PI4K2A 3.438021e-01 0.709755963 0.9999595
## GTF3C1 3.437962e-01 0.709760095 0.9999595
## COPRS 3.434633e-01 0.709995057 0.9999595
## RNF169 3.433916e-01 0.710045703 0.9999595
## H1-0 3.433887e-01 0.710047740 0.9999595
## PLBD2 3.433761e-01 0.710056651 0.9999595
## SUCO 3.433505e-01 0.710074725 0.9999595
## AGO3 3.433216e-01 0.710095114 0.9999595
## TMUB2 3.432485e-01 0.710146726 0.9999595
## TMEM187 3.432071e-01 0.710175974 0.9999595
## PRELID2 3.432015e-01 0.710179947 0.9999595
## MCL1 3.431858e-01 0.710191008 0.9999595
## MALT1 3.429872e-01 0.710331301 0.9999595
## LRWD1 3.426161e-01 0.710593493 0.9999595
## NBEAL1 3.423666e-01 0.710769776 0.9999595
## CEACAM21 3.422924e-01 0.710822230 0.9999595
## TMEM256 3.422307e-01 0.710865876 0.9999595
## DNPH1 3.421954e-01 0.710890806 0.9999595
## NCEH1 3.421899e-01 0.710894726 0.9999595
## MAP4K3 3.421848e-01 0.710898277 0.9999595
## DDX19A 3.421591e-01 0.710916459 0.9999595
## SUV39H1 3.421190e-01 0.710944813 0.9999595
## PARP3 3.420627e-01 0.710984611 0.9999595
## FNDC3B 3.419527e-01 0.711062399 0.9999595
## NRAS 3.418529e-01 0.711132960 0.9999595
## OXA1L 3.414238e-01 0.711436474 0.9999595
## SMIM8 3.412489e-01 0.711560259 0.9999595
## TRAPPC1 3.412392e-01 0.711567090 0.9999595
## SYNE2 3.412207e-01 0.711580181 0.9999595
## GPN1 3.411815e-01 0.711607949 0.9999595
## NSMCE2 3.411250e-01 0.711647870 0.9999595
## PLK1 3.410275e-01 0.711716898 0.9999595
## RETREG3 3.409967e-01 0.711738675 0.9999595
## RCAN1 3.408173e-01 0.711865689 0.9999595
## GTF3A 3.407577e-01 0.711907887 0.9999595
## SLC25A34 3.407523e-01 0.711911710 0.9999595
## TSPAN3 3.407352e-01 0.711923803 0.9999595
## STT3B 3.406865e-01 0.711958308 0.9999595
## SRPK1 3.406142e-01 0.712009471 0.9999595
## WTIP 3.404168e-01 0.712149271 0.9999595
## UBE3A 3.404067e-01 0.712156399 0.9999595
## FUT7 3.403908e-01 0.712167682 0.9999595
## EFCAB7 3.403823e-01 0.712173660 0.9999595
## EIF3M 3.403207e-01 0.712217322 0.9999595
## DDX60L 3.403155e-01 0.712220978 0.9999595
## PPP5C 3.401472e-01 0.712340242 0.9999595
## DDX60 3.400445e-01 0.712412947 0.9999595
## ZNF394 3.399968e-01 0.712446783 0.9999595
## CALML4 3.399610e-01 0.712472142 0.9999595
## LOC730098 3.398934e-01 0.712520038 0.9999595
## CMC4 3.395606e-01 0.712755887 0.9999595
## RPS6KB2 3.395535e-01 0.712760868 0.9999595
## FSTL3 3.394204e-01 0.712855242 0.9999595
## RNF24 3.391841e-01 0.713022779 0.9999595
## RNF135 3.390889e-01 0.713090285 0.9999595
## TOP3B 3.390688e-01 0.713104531 0.9999595
## EMC3 3.390503e-01 0.713117677 0.9999595
## ETF1 3.390280e-01 0.713133459 0.9999595
## MRPL2 3.390003e-01 0.713153129 0.9999595
## MED23 3.388722e-01 0.713243993 0.9999595
## RUFY1 3.388580e-01 0.713254072 0.9999595
## MYBBP1A 3.388465e-01 0.713262195 0.9999595
## GINS4 3.388393e-01 0.713267326 0.9999595
## GPR89A 3.387952e-01 0.713298623 0.9999595
## MED12L 3.387653e-01 0.713319789 0.9999595
## PUS3 3.387623e-01 0.713321935 0.9999595
## KLHL42 3.387321e-01 0.713343383 0.9999595
## SCP2 3.387214e-01 0.713350953 0.9999595
## NKTR 3.386601e-01 0.713394418 0.9999595
## ALPK1 3.386032e-01 0.713434804 0.9999595
## ABTB1 3.385126e-01 0.713499066 0.9999595
## NUDT2 3.383271e-01 0.713630706 0.9999595
## DNAJC8 3.383124e-01 0.713641125 0.9999595
## JPT1 3.382430e-01 0.713690389 0.9999595
## SUMO1 3.382318e-01 0.713698322 0.9999595
## CMTR1 3.382173e-01 0.713708650 0.9999595
## GPR137 3.381785e-01 0.713736213 0.9999595
## RALGAPB 3.381723e-01 0.713740569 0.9999595
## SORBS3 3.381541e-01 0.713753520 0.9999595
## ASPHD2 3.380161e-01 0.713851433 0.9999595
## PIGX 3.379700e-01 0.713884215 0.9999595
## RHPN1 3.378364e-01 0.713979018 0.9999595
## CREM 3.378185e-01 0.713991756 0.9999595
## DVL1 3.377620e-01 0.714031867 0.9999595
## RCC1L 3.376992e-01 0.714076479 0.9999595
## IL1R1 3.376133e-01 0.714137453 0.9999595
## RSF1 3.375579e-01 0.714176784 0.9999595
## SH2D1B 3.375158e-01 0.714206749 0.9999595
## GTF3C3 3.375117e-01 0.714209632 0.9999595
## KLF6 3.374957e-01 0.714220993 0.9999595
## CIDEC 3.373836e-01 0.714300646 0.9999595
## MCU 3.373714e-01 0.714309276 0.9999595
## PRELP 3.371091e-01 0.714495639 0.9999595
## DECR1 3.370696e-01 0.714523736 0.9999595
## AGGF1 3.370540e-01 0.714534790 0.9999595
## IP6K2 3.369700e-01 0.714594520 0.9999595
## RBIS 3.368874e-01 0.714653226 0.9999595
## SLC66A2 3.366393e-01 0.714829519 0.9999595
## UCHL3 3.365437e-01 0.714897491 0.9999595
## KIDINS220 3.363594e-01 0.715028526 0.9999595
## PARP1 3.361759e-01 0.715159056 0.9999595
## RASSF5 3.361612e-01 0.715169498 0.9999595
## HECTD3 3.360080e-01 0.715278489 0.9999595
## C9orf64 3.359827e-01 0.715296489 0.9999595
## LSM12 3.359823e-01 0.715296780 0.9999595
## SLC4A5 3.357899e-01 0.715433642 0.9999595
## RINT1 3.357474e-01 0.715463911 0.9999595
## XRCC2 3.356666e-01 0.715521355 0.9999595
## GOLGA8O 3.355683e-01 0.715591330 0.9999595
## MTCP1 3.350450e-01 0.715963823 0.9999595
## R3HCC1 3.350321e-01 0.715973017 0.9999595
## RASA4B 3.350009e-01 0.715995217 0.9999595
## UBE2A 3.349264e-01 0.716048265 0.9999595
## AP1S2 3.347920e-01 0.716144042 0.9999595
## RHBDD2 3.347825e-01 0.716150780 0.9999595
## SLC22A1 3.345263e-01 0.716333295 0.9999595
## MATK 3.344005e-01 0.716422873 0.9999595
## APTX 3.343211e-01 0.716479499 0.9999595
## MPPE1 3.343084e-01 0.716488558 0.9999595
## BAZ2A 3.342454e-01 0.716533451 0.9999595
## PRKAR2A 3.341927e-01 0.716570949 0.9999595
## IFITM3 3.341019e-01 0.716635715 0.9999595
## NFKBIA 3.340955e-01 0.716640225 0.9999595
## MMAB 3.340825e-01 0.716649477 0.9999595
## B2M 3.340761e-01 0.716654084 0.9999595
## PRKAB2 3.340262e-01 0.716689632 0.9999595
## ANKRD28 3.338443e-01 0.716819296 0.9999595
## EIF4G2 3.337352e-01 0.716897068 0.9999595
## STN1 3.337060e-01 0.716917920 0.9999595
## ZFP90 3.335513e-01 0.717028212 0.9999595
## USP8 3.333693e-01 0.717158046 0.9999595
## GNE 3.333470e-01 0.717173937 0.9999595
## TMEM44 3.333009e-01 0.717206808 0.9999595
## MICALCL 3.332527e-01 0.717241200 0.9999595
## CACTIN 3.331892e-01 0.717286472 0.9999595
## BIRC2 3.331462e-01 0.717317133 0.9999595
## FAM120C 3.331372e-01 0.717323596 0.9999595
## KAT6A 3.331347e-01 0.717325363 0.9999595
## NUDT4 3.330974e-01 0.717351995 0.9999595
## CSNK1G2 3.327435e-01 0.717604494 0.9999595
## DNM1L 3.327010e-01 0.717634861 0.9999595
## SERPINB9 3.326801e-01 0.717649748 0.9999595
## HEBP1 3.325340e-01 0.717754071 0.9999595
## SERPINF2 3.325099e-01 0.717771230 0.9999595
## NHLRC1 3.324283e-01 0.717829507 0.9999595
## KIN 3.324105e-01 0.717842247 0.9999595
## TBRG4 3.323749e-01 0.717867644 0.9999595
## MLKL 3.322552e-01 0.717953106 0.9999595
## CMC2 3.320921e-01 0.718069585 0.9999595
## PPP3CB 3.319889e-01 0.718143280 0.9999595
## CMTM7 3.318985e-01 0.718207851 0.9999595
## MTA2 3.318856e-01 0.718217029 0.9999595
## CLIC4 3.318508e-01 0.718241906 0.9999595
## NDUFB8 3.317925e-01 0.718283565 0.9999595
## CYP4F3 3.317815e-01 0.718291435 0.9999595
## HEXB 3.317721e-01 0.718298118 0.9999595
## RNF10 3.317710e-01 0.718298913 0.9999595
## GIMAP1 3.316590e-01 0.718378965 0.9999595
## STAU2 3.316082e-01 0.718415233 0.9999595
## CDC26 3.314203e-01 0.718549534 0.9999595
## IL12RB2 3.314006e-01 0.718563574 0.9999595
## CERS4 3.312143e-01 0.718696716 0.9999595
## LSM5 3.311666e-01 0.718730855 0.9999595
## IMPACT 3.310579e-01 0.718808563 0.9999595
## ATP5MG 3.309753e-01 0.718867572 0.9999595
## C7orf61 3.309512e-01 0.718884858 0.9999595
## CHPT1 3.307258e-01 0.719045995 0.9999595
## LGALS3 3.305904e-01 0.719142872 0.9999595
## DOP1A 3.305484e-01 0.719172919 0.9999595
## HAUS4 3.305123e-01 0.719198730 0.9999595
## KIAA2026 3.304704e-01 0.719228668 0.9999595
## AKT2 3.303574e-01 0.719309535 0.9999595
## IL17RB 3.303360e-01 0.719324826 0.9999595
## SLC7A7 3.302815e-01 0.719363800 0.9999595
## MYORG 3.301690e-01 0.719444335 0.9999595
## GDPD1 3.301480e-01 0.719459354 0.9999595
## TRIM16 3.297361e-01 0.719754137 0.9999595
## NUDT18 3.297302e-01 0.719758414 0.9999595
## DCAF6 3.296777e-01 0.719795969 0.9999595
## MCM3AP 3.295967e-01 0.719853940 0.9999595
## TRAIP 3.293892e-01 0.720002528 0.9999595
## PBX1 3.293444e-01 0.720034652 0.9999595
## ETFA 3.292952e-01 0.720069842 0.9999595
## PFKP 3.291900e-01 0.720145185 0.9999595
## ZNF146 3.291133e-01 0.720200138 0.9999595
## PPP3CA 3.291100e-01 0.720202503 0.9999595
## INHBB 3.290160e-01 0.720269878 0.9999595
## TESK1 3.289538e-01 0.720314410 0.9999595
## ACIN1 3.289129e-01 0.720343703 0.9999595
## UBR3 3.289025e-01 0.720351173 0.9999595
## TM9SF3 3.289010e-01 0.720352247 0.9999595
## KNSTRN 3.288882e-01 0.720361402 0.9999595
## DRAM2 3.288532e-01 0.720386495 0.9999595
## DTL 3.288148e-01 0.720414014 0.9999595
## CCL5 3.285812e-01 0.720581404 0.9999595
## MED18 3.284565e-01 0.720670790 0.9999595
## ZNF491 3.283870e-01 0.720720572 0.9999595
## FBXW7 3.283856e-01 0.720721607 0.9999595
## IKZF2 3.282843e-01 0.720794224 0.9999595
## GEMIN8 3.282435e-01 0.720823502 0.9999595
## LIN54 3.281088e-01 0.720920037 0.9999595
## UQCRQ 3.281038e-01 0.720923663 0.9999595
## RLIM 3.279969e-01 0.721000271 0.9999595
## TGFA 3.279341e-01 0.721045343 0.9999595
## PLSCR1 3.278052e-01 0.721137775 0.9999595
## RPGRIP1 3.277855e-01 0.721151895 0.9999595
## SLC24A3 3.276792e-01 0.721228177 0.9999595
## COX17 3.276523e-01 0.721247440 0.9999595
## SFXN1 3.275275e-01 0.721337005 0.9999595
## INPPL1 3.274559e-01 0.721388367 0.9999595
## SPEF2 3.274186e-01 0.721415142 0.9999595
## BCL2L11 3.274141e-01 0.721418382 0.9999595
## CAND1 3.273935e-01 0.721433131 0.9999595
## CNPY4 3.273363e-01 0.721474203 0.9999595
## PRPF19 3.273045e-01 0.721497038 0.9999595
## SETD6 3.272398e-01 0.721543456 0.9999595
## MRPL12 3.271163e-01 0.721632064 0.9999595
## BOD1L1 3.271040e-01 0.721640903 0.9999595
## EPB41 3.270944e-01 0.721647821 0.9999595
## SBK1 3.270199e-01 0.721701284 0.9999595
## NEDD4 3.270112e-01 0.721707506 0.9999595
## PDCL 3.269479e-01 0.721752969 0.9999595
## DHRS4L2 3.269081e-01 0.721781518 0.9999595
## DHRSX 3.268464e-01 0.721825843 0.9999595
## ATP5F1E 3.268042e-01 0.721856115 0.9999595
## SENP6 3.267589e-01 0.721888678 0.9999595
## SLC23A3 3.266719e-01 0.721951161 0.9999595
## TADA3 3.265791e-01 0.722017753 0.9999595
## STIM1 3.265583e-01 0.722032687 0.9999595
## USP54 3.264206e-01 0.722131621 0.9999595
## RHOG 3.263472e-01 0.722184377 0.9999595
## LMNB1 3.261905e-01 0.722296946 0.9999595
## MCAT 3.259161e-01 0.722494070 0.9999595
## RPS2 3.257912e-01 0.722583856 0.9999595
## ATP6V0D1 3.257304e-01 0.722627557 0.9999595
## FAM102B 3.256831e-01 0.722661525 0.9999595
## SYN3 3.256100e-01 0.722714094 0.9999595
## SRSF9 3.255611e-01 0.722749269 0.9999595
## USP25 3.254450e-01 0.722832707 0.9999595
## PDCL3 3.253538e-01 0.722898275 0.9999595
## IFNGR1 3.252457e-01 0.722976059 0.9999595
## PDSS1 3.251336e-01 0.723056676 0.9999595
## LENG8 3.250399e-01 0.723124017 0.9999595
## TRAP1 3.250326e-01 0.723129263 0.9999595
## TLR10 3.249494e-01 0.723189105 0.9999595
## CSNK1E 3.249477e-01 0.723190382 0.9999595
## EFEMP2 3.249404e-01 0.723195643 0.9999595
## DCAF13 3.248849e-01 0.723235538 0.9999595
## DERA 3.248581e-01 0.723254795 0.9999595
## PCDHA4 3.248271e-01 0.723277126 0.9999595
## SF3B3 3.248121e-01 0.723287898 0.9999595
## USP34 3.246803e-01 0.723382767 0.9999595
## PXYLP1 3.246207e-01 0.723425646 0.9999595
## AVEN 3.246195e-01 0.723426483 0.9999595
## NEDD1 3.245146e-01 0.723502009 0.9999595
## ABHD13 3.245075e-01 0.723507080 0.9999595
## ENDOD1 3.242715e-01 0.723676926 0.9999595
## TRMT1 3.242160e-01 0.723716886 0.9999595
## LRRC41 3.240879e-01 0.723809123 0.9999595
## HARBI1 3.240566e-01 0.723831658 0.9999595
## LEPR 3.240535e-01 0.723833866 0.9999595
## KBTBD4 3.240121e-01 0.723863686 0.9999595
## COMMD1 3.239355e-01 0.723918852 0.9999595
## KCTD10 3.239142e-01 0.723934158 0.9999595
## POLD2 3.239107e-01 0.723936725 0.9999595
## MBD6 3.239081e-01 0.723938616 0.9999595
## ARPC1B 3.238986e-01 0.723945393 0.9999595
## GATAD2B 3.238572e-01 0.723975216 0.9999595
## FLYWCH1 3.238544e-01 0.723977244 0.9999595
## RBM23 3.237545e-01 0.724049228 0.9999595
## PTRHD1 3.237448e-01 0.724056158 0.9999595
## SQSTM1 3.236764e-01 0.724105468 0.9999595
## CAPG 3.235869e-01 0.724169920 0.9999595
## KIAA1958 3.234836e-01 0.724244322 0.9999595
## AIMP1 3.234386e-01 0.724276758 0.9999595
## PHF21A 3.232909e-01 0.724383178 0.9999595
## GADD45G 3.232073e-01 0.724443422 0.9999595
## ABHD6 3.232009e-01 0.724448037 0.9999595
## GTF2H3 3.229968e-01 0.724595085 0.9999595
## PPP1R26 3.229855e-01 0.724603254 0.9999595
## NBPF14 3.229485e-01 0.724629933 0.9999595
## PKNOX1 3.229259e-01 0.724646239 0.9999595
## SLC35A2 3.227733e-01 0.724756249 0.9999595
## ZNF76 3.227424e-01 0.724778479 0.9999595
## KIAA0100 3.225795e-01 0.724895980 0.9999595
## MZF1 3.224303e-01 0.725003530 0.9999595
## HAUS2 3.223656e-01 0.725050219 0.9999595
## NAPRT 3.223529e-01 0.725059406 0.9999595
## XKR9 3.223282e-01 0.725077204 0.9999595
## CDADC1 3.222741e-01 0.725116176 0.9999595
## COMMD6 3.222548e-01 0.725130134 0.9999595
## PAG1 3.222239e-01 0.725152392 0.9999595
## PBDC1 3.222060e-01 0.725165343 0.9999595
## HSPA14 3.222002e-01 0.725169516 0.9999595
## JMY 3.220729e-01 0.725261317 0.9999595
## MARCHF7 3.219305e-01 0.725364082 0.9999595
## JARID2 3.217183e-01 0.725517247 0.9999595
## TUBB1 3.216614e-01 0.725558297 0.9999595
## ZBTB44 3.215751e-01 0.725620557 0.9999595
## ZKSCAN8 3.214664e-01 0.725699009 0.9999595
## MEF2D 3.213471e-01 0.725785125 0.9999595
## CMTR2 3.213370e-01 0.725792419 0.9999595
## SLC25A40 3.213315e-01 0.725796408 0.9999595
## ZMAT1 3.212716e-01 0.725839704 0.9999595
## OSBPL11 3.212098e-01 0.725884283 0.9999595
## S1PR1 3.211961e-01 0.725894173 0.9999595
## ATG13 3.209805e-01 0.726049896 0.9999595
## DHX35 3.209647e-01 0.726061324 0.9999595
## CHST7 3.207780e-01 0.726196167 0.9999595
## RAMAC 3.207087e-01 0.726246216 0.9999595
## VAT1 3.206715e-01 0.726273124 0.9999595
## FLI1 3.206704e-01 0.726273875 0.9999595
## DDX31 3.204802e-01 0.726411338 0.9999595
## HMGCR 3.203968e-01 0.726471574 0.9999595
## B4GALT5 3.203648e-01 0.726494725 0.9999595
## APBB3 3.203524e-01 0.726503666 0.9999595
## BLOC1S4 3.203088e-01 0.726535159 0.9999595
## MRPS25 3.202215e-01 0.726598278 0.9999595
## EDC4 3.201888e-01 0.726621941 0.9999595
## NCAPH2 3.201601e-01 0.726642689 0.9999595
## ZNF700 3.201303e-01 0.726664217 0.9999595
## TCTN3 3.199851e-01 0.726769146 0.9999595
## SLC31A1 3.199528e-01 0.726792516 0.9999595
## FEN1 3.198505e-01 0.726866477 0.9999595
## ZNF425 3.198015e-01 0.726901945 0.9999595
## CD53 3.196235e-01 0.727030643 0.9999595
## SLC35C1 3.195930e-01 0.727052696 0.9999595
## NCOA2 3.195816e-01 0.727060973 0.9999595
## SRPK2 3.195675e-01 0.727071165 0.9999595
## SYNJ1 3.195376e-01 0.727092752 0.9999595
## KLHDC3 3.194626e-01 0.727147007 0.9999595
## ARHGAP27 3.193633e-01 0.727218871 0.9999595
## BIN2 3.192274e-01 0.727317133 0.9999595
## VDAC2 3.191080e-01 0.727403583 0.9999595
## TYROBP 3.189693e-01 0.727503954 0.9999595
## KANSL1 3.188985e-01 0.727555190 0.9999595
## SLC8B1 3.188218e-01 0.727610685 0.9999595
## ATG9A 3.186521e-01 0.727733553 0.9999595
## YWHAG 3.186171e-01 0.727758895 0.9999595
## EFCAB11 3.184063e-01 0.727911464 0.9999595
## GFM1 3.183948e-01 0.727919828 0.9999595
## RASSF7 3.183008e-01 0.727987913 0.9999595
## EPRS1 3.182592e-01 0.728017993 0.9999595
## TSPAN16 3.182371e-01 0.728034013 0.9999595
## PLCE1 3.180516e-01 0.728168352 0.9999595
## TVP23B 3.180391e-01 0.728177451 0.9999595
## COMMD9 3.178491e-01 0.728315058 0.9999595
## ASH1L 3.178457e-01 0.728317522 0.9999595
## DOK3 3.177669e-01 0.728374620 0.9999595
## HJURP 3.175186e-01 0.728554599 0.9999595
## MRPL13 3.175007e-01 0.728567567 0.9999595
## POGZ 3.172195e-01 0.728771422 0.9999595
## PARP10 3.169736e-01 0.728949659 0.9999595
## SEL1L 3.168093e-01 0.729068853 0.9999595
## EZH2 3.166392e-01 0.729192240 0.9999595
## STK3 3.165973e-01 0.729222657 0.9999595
## ARHGAP6 3.164562e-01 0.729325020 0.9999595
## CCDC96 3.164498e-01 0.729329631 0.9999595
## B3GNT8 3.163597e-01 0.729395045 0.9999595
## LILRA6 3.162736e-01 0.729457525 0.9999595
## RNPEP 3.162049e-01 0.729507377 0.9999595
## MEGF6 3.161955e-01 0.729514171 0.9999595
## ZBTB39 3.161752e-01 0.729528865 0.9999595
## SRPRB 3.161171e-01 0.729571074 0.9999595
## CACNA2D4 3.160793e-01 0.729598497 0.9999595
## EXOSC4 3.160505e-01 0.729619426 0.9999595
## MIEF2 3.160217e-01 0.729640339 0.9999595
## GMNN 3.159904e-01 0.729663031 0.9999595
## SLC39A14 3.159418e-01 0.729698291 0.9999595
## PTGER2 3.158714e-01 0.729749447 0.9999595
## ZSCAN32 3.158405e-01 0.729771835 0.9999595
## CFLAR 3.157343e-01 0.729848957 0.9999595
## CNST 3.156459e-01 0.729913152 0.9999595
## ALKBH8 3.155905e-01 0.729953374 0.9999595
## FBXL8 3.154487e-01 0.730056364 0.9999595
## TAP2 3.152943e-01 0.730168523 0.9999595
## FRY 3.152044e-01 0.730233815 0.9999595
## LRRC28 3.150778e-01 0.730325776 0.9999595
## ARID5B 3.149432e-01 0.730423602 0.9999595
## WRN 3.149419e-01 0.730424528 0.9999595
## CD14 3.148419e-01 0.730497220 0.9999595
## ATP6V0E1 3.147879e-01 0.730536422 0.9999595
## TCEA2 3.147781e-01 0.730543564 0.9999595
## TREML2 3.147662e-01 0.730552200 0.9999595
## HDAC3 3.146390e-01 0.730644663 0.9999595
## SPIN1 3.144610e-01 0.730774071 0.9999595
## SRRT 3.143652e-01 0.730843739 0.9999595
## PRKAR1B 3.143350e-01 0.730865706 0.9999595
## RAB11B 3.143169e-01 0.730878818 0.9999595
## CAMK2D 3.142830e-01 0.730903493 0.9999595
## LAS1L 3.142234e-01 0.730946828 0.9999595
## AVL9 3.141945e-01 0.730967835 0.9999595
## XPO4 3.141902e-01 0.730970954 0.9999595
## FES 3.140293e-01 0.731088026 0.9999595
## COPG2 3.139670e-01 0.731133314 0.9999595
## LPAR6 3.139620e-01 0.731136963 0.9999595
## CASZ1 3.138244e-01 0.731237033 0.9999595
## MRPL42 3.138142e-01 0.731244430 0.9999595
## IKZF5 3.137027e-01 0.731325550 0.9999595
## NOSIP 3.136609e-01 0.731355965 0.9999595
## ATG3 3.133442e-01 0.731586484 0.9999595
## ACTR10 3.132777e-01 0.731634884 0.9999595
## PTGS1 3.132375e-01 0.731664155 0.9999595
## CRBN 3.131126e-01 0.731755034 0.9999595
## MED26 3.130967e-01 0.731766594 0.9999595
## PIGZ 3.130074e-01 0.731831669 0.9999595
## SLC25A12 3.129945e-01 0.731841056 0.9999595
## USP33 3.129006e-01 0.731909422 0.9999595
## RIPOR2 3.128952e-01 0.731913298 0.9999595
## CD63 3.128716e-01 0.731930523 0.9999595
## FBP1 3.127670e-01 0.732006656 0.9999595
## PPIA 3.127425e-01 0.732024559 0.9999595
## SLAMF7 3.127409e-01 0.732025733 0.9999595
## COA8 3.126967e-01 0.732057898 0.9999595
## C19orf54 3.126237e-01 0.732111064 0.9999595
## ALG11 3.125284e-01 0.732180472 0.9999595
## TTF2 3.123588e-01 0.732304030 0.9999595
## GCSAML 3.122617e-01 0.732374807 0.9999595
## PEX7 3.122482e-01 0.732384583 0.9999595
## SASS6 3.121996e-01 0.732420024 0.9999595
## NAPG 3.121969e-01 0.732421997 0.9999595
## HCN3 3.121463e-01 0.732458898 0.9999595
## DPH7 3.121057e-01 0.732488428 0.9999595
## TNIP2 3.120106e-01 0.732557787 0.9999595
## CLK1 3.118963e-01 0.732641088 0.9999595
## DPP9 3.118052e-01 0.732707489 0.9999595
## SOD2 3.117842e-01 0.732722770 0.9999595
## IGFLR1 3.116642e-01 0.732810237 0.9999595
## ZMAT3 3.115738e-01 0.732876202 0.9999595
## FUCA1 3.115685e-01 0.732880011 0.9999595
## LSP1 3.115624e-01 0.732884502 0.9999595
## CBX3 3.115484e-01 0.732894730 0.9999595
## TIMM29 3.115119e-01 0.732921316 0.9999595
## TRIO 3.114571e-01 0.732961249 0.9999595
## PHF5A 3.114282e-01 0.732982337 0.9999595
## TCEAL3 3.113535e-01 0.733036848 0.9999595
## NECTIN2 3.111044e-01 0.733218490 0.9999595
## PPP1R2 3.110934e-01 0.733226573 0.9999595
## RINL 3.110672e-01 0.733245657 0.9999595
## ZBTB8A 3.106393e-01 0.733557863 0.9999595
## STYXL1 3.106164e-01 0.733574630 0.9999595
## SUPV3L1 3.105081e-01 0.733653664 0.9999595
## DSN1 3.104424e-01 0.733701598 0.9999595
## CARD16 3.103724e-01 0.733752675 0.9999595
## SPICE1 3.103296e-01 0.733783960 0.9999595
## BPHL 3.103231e-01 0.733788707 0.9999595
## CYBA 3.102446e-01 0.733846023 0.9999595
## GPR84 3.101544e-01 0.733911858 0.9999595
## PDE4B 3.101379e-01 0.733923882 0.9999595
## GGACT 3.098061e-01 0.734166267 0.9999595
## C1QTNF3 3.096784e-01 0.734259529 0.9999595
## CCDC9B 3.095095e-01 0.734382946 0.9999595
## COP1 3.094780e-01 0.734405909 0.9999595
## APOM 3.093778e-01 0.734479187 0.9999595
## CASP8 3.093650e-01 0.734488531 0.9999595
## IDH3A 3.092384e-01 0.734580993 0.9999595
## MBOAT7 3.091369e-01 0.734655250 0.9999595
## PSMB1 3.091058e-01 0.734677978 0.9999595
## CNPY2 3.090979e-01 0.734683715 0.9999595
## KMO 3.090532e-01 0.734716430 0.9999595
## CYC1 3.090090e-01 0.734748717 0.9999595
## IFT27 3.089726e-01 0.734775347 0.9999595
## CAPZA1 3.089627e-01 0.734782576 0.9999595
## DMXL1 3.089140e-01 0.734818179 0.9999595
## ARHGAP12 3.088817e-01 0.734841782 0.9999595
## OSTF1 3.088554e-01 0.734861003 0.9999595
## ADA 3.088211e-01 0.734886092 0.9999595
## STX8 3.087395e-01 0.734945727 0.9999595
## SND1 3.085903e-01 0.735054888 0.9999595
## NCBP2AS2 3.085424e-01 0.735089856 0.9999595
## ACOT7 3.084907e-01 0.735127710 0.9999595
## C2CD3 3.084667e-01 0.735145237 0.9999595
## VPS16 3.083942e-01 0.735198301 0.9999595
## RELL2 3.083251e-01 0.735248827 0.9999595
## SNAPC5 3.081394e-01 0.735384680 0.9999595
## RDH13 3.080964e-01 0.735416123 0.9999595
## ABCF1 3.080168e-01 0.735474438 0.9999595
## SNX12 3.079767e-01 0.735503729 0.9999595
## EPM2AIP1 3.078311e-01 0.735610281 0.9999595
## TRAPPC2B 3.077483e-01 0.735670879 0.9999595
## ZNF614 3.076118e-01 0.735770804 0.9999595
## ALG12 3.076025e-01 0.735777674 0.9999595
## TRIM56 3.075541e-01 0.735813047 0.9999595
## C1QC 3.072842e-01 0.736010671 0.9999595
## CELF2 3.072682e-01 0.736022382 0.9999595
## DMPK 3.072280e-01 0.736051840 0.9999595
## PJA2 3.071830e-01 0.736084826 0.9999595
## TGOLN2 3.071525e-01 0.736107166 0.9999595
## SPOUT1 3.069166e-01 0.736279959 0.9999595
## USP32 3.068585e-01 0.736322491 0.9999595
## PDHA1 3.068018e-01 0.736364071 0.9999595
## FRA10AC1 3.067642e-01 0.736391562 0.9999595
## RAB27A 3.067587e-01 0.736395659 0.9999595
## PLEKHG2 3.067584e-01 0.736395812 0.9999595
## PSME3 3.066361e-01 0.736485478 0.9999595
## ACTR2 3.065912e-01 0.736518333 0.9999595
## NCAPG 3.065680e-01 0.736535370 0.9999595
## C1orf54 3.065084e-01 0.736579062 0.9999595
## SLC44A1 3.064075e-01 0.736652999 0.9999595
## GFOD1 3.064044e-01 0.736655283 0.9999595
## SHE 3.064040e-01 0.736655573 0.9999595
## CRLS1 3.063870e-01 0.736667998 0.9999595
## GIT2 3.062702e-01 0.736753645 0.9999595
## PLGRKT 3.062657e-01 0.736756935 0.9999595
## SYNGR2 3.062114e-01 0.736796724 0.9999595
## SUFU 3.061990e-01 0.736805873 0.9999595
## TMEM184C 3.061099e-01 0.736871142 0.9999595
## ATMIN 3.060175e-01 0.736938916 0.9999595
## DHRS11 3.058789e-01 0.737040529 0.9999595
## KHDRBS1 3.058473e-01 0.737063748 0.9999595
## OSGEP 3.057932e-01 0.737103369 0.9999595
## RSPRY1 3.057180e-01 0.737158585 0.9999595
## PHETA2 3.057004e-01 0.737171470 0.9999595
## MRNIP 3.056251e-01 0.737226725 0.9999595
## ATG12 3.056058e-01 0.737240858 0.9999595
## PPFIA4 3.055068e-01 0.737313460 0.9999595
## PRRC2A 3.054871e-01 0.737327932 0.9999595
## STOML2 3.054804e-01 0.737332873 0.9999595
## PTPRC 3.054773e-01 0.737335103 0.9999595
## SHOX 3.054671e-01 0.737342636 0.9999595
## SLC39A7 3.054474e-01 0.737357041 0.9999595
## PDE2A 3.051171e-01 0.737599420 0.9999595
## USP42 3.050892e-01 0.737619906 0.9999595
## GTF2E1 3.050179e-01 0.737672249 0.9999595
## WNK1 3.050154e-01 0.737674055 0.9999595
## FAM219B 3.048511e-01 0.737794698 0.9999595
## SMU1 3.046669e-01 0.737929916 0.9999595
## HBG2 3.046458e-01 0.737945419 0.9999595
## SELP 3.046118e-01 0.737970405 0.9999595
## PPARGC1B 3.045931e-01 0.737984071 0.9999595
## CKB 3.045742e-01 0.737997958 0.9999595
## BOLA2B 3.045719e-01 0.737999679 0.9999595
## ERMN 3.045118e-01 0.738043783 0.9999595
## EPHB4 3.044922e-01 0.738058195 0.9999595
## OS9 3.044264e-01 0.738106529 0.9999595
## SLC25A11 3.043974e-01 0.738127855 0.9999595
## OSBPL7 3.043808e-01 0.738139983 0.9999595
## PREX1 3.042202e-01 0.738257963 0.9999595
## CDCA4 3.042192e-01 0.738258717 0.9999595
## LDHA 3.042020e-01 0.738271375 0.9999595
## NR4A2 3.041945e-01 0.738276858 0.9999595
## RAB11A 3.040912e-01 0.738352722 0.9999595
## TP53 3.040334e-01 0.738395193 0.9999595
## MCTS1 3.040297e-01 0.738397919 0.9999595
## RAN 3.039969e-01 0.738422058 0.9999595
## KDM5C 3.039590e-01 0.738449871 0.9999595
## CD79A 3.039200e-01 0.738478512 0.9999595
## FBXO24 3.038936e-01 0.738497950 0.9999595
## PTPN6 3.038143e-01 0.738556185 0.9999595
## MESD 3.038127e-01 0.738557349 0.9999595
## PIGS 3.036001e-01 0.738713651 0.9999595
## UTP20 3.034885e-01 0.738795678 0.9999595
## MPP6 3.034258e-01 0.738841767 0.9999595
## TBC1D22B 3.033737e-01 0.738880072 0.9999595
## PGAM4 3.033232e-01 0.738917213 0.9999595
## CPEB3 3.032757e-01 0.738952147 0.9999595
## ZNF79 3.030994e-01 0.739081762 0.9999595
## SWI5 3.028570e-01 0.739260030 0.9999595
## ADAM8 3.027831e-01 0.739314388 0.9999595
## CFAP44 3.027390e-01 0.739346884 0.9999595
## RNF187 3.027117e-01 0.739366948 0.9999595
## CCDC90B 3.026989e-01 0.739376327 0.9999595
## ECI1 3.026939e-01 0.739380034 0.9999595
## HERC1 3.026842e-01 0.739387174 0.9999595
## ATN1 3.026631e-01 0.739402701 0.9999595
## BMPR1A 3.026429e-01 0.739417529 0.9999595
## MRPL57 3.025412e-01 0.739492413 0.9999595
## VMAC 3.025061e-01 0.739518216 0.9999595
## NUP54 3.024681e-01 0.739546155 0.9999595
## CNIH4 3.024590e-01 0.739552879 0.9999595
## SEC24C 3.022419e-01 0.739712682 0.9999595
## ISG20L2 3.021899e-01 0.739750946 0.9999595
## ZNF726 3.021367e-01 0.739790079 0.9999595
## RAVER1 3.021086e-01 0.739810764 0.9999595
## TACC1 3.020269e-01 0.739870904 0.9999595
## ZNF407 3.019898e-01 0.739898242 0.9999595
## CCDC153 3.019118e-01 0.739955676 0.9999595
## METTL9 3.018828e-01 0.739976991 0.9999595
## FNIP1 3.018252e-01 0.740019441 0.9999595
## BCS1L 3.018119e-01 0.740029203 0.9999595
## TSEN54 3.017844e-01 0.740049517 0.9999595
## MAP2K3 3.017693e-01 0.740060613 0.9999595
## HDGFL2 3.015551e-01 0.740218346 0.9999595
## ZNF800 3.014997e-01 0.740259201 0.9999595
## DND1 3.014347e-01 0.740307070 0.9999595
## DGLUCY 3.014110e-01 0.740324500 0.9999595
## OTULINL 3.013137e-01 0.740396212 0.9999595
## TTLL12 3.012327e-01 0.740455897 0.9999595
## TMEM129 3.011942e-01 0.740484230 0.9999595
## PIKFYVE 3.011598e-01 0.740509580 0.9999595
## PYHIN1 3.011291e-01 0.740532185 0.9999595
## SAMD3 3.011220e-01 0.740537442 0.9999595
## FH 3.011136e-01 0.740543632 0.9999595
## MBNL1 3.010185e-01 0.740613680 0.9999595
## SCAF8 3.010069e-01 0.740622264 0.9999595
## PRNP 3.010005e-01 0.740626946 0.9999595
## MED13 3.008040e-01 0.740771823 0.9999595
## BCL7A 3.007595e-01 0.740804630 0.9999595
## C4orf46 3.006042e-01 0.740919061 0.9999595
## PAFAH1B2 3.005102e-01 0.740988380 0.9999595
## G6PD 3.004794e-01 0.741011090 0.9999595
## THOC2 3.004221e-01 0.741053383 0.9999595
## CRTAP 3.004017e-01 0.741068402 0.9999595
## PIGL 3.003454e-01 0.741109908 0.9999595
## RAB10 3.001723e-01 0.741237609 0.9999595
## CEBPA 3.001680e-01 0.741240777 0.9999595
## NRGN 3.001578e-01 0.741248302 0.9999595
## HACE1 3.001456e-01 0.741257313 0.9999595
## CD300LB 3.001124e-01 0.741281774 0.9999595
## USP10 3.000969e-01 0.741293234 0.9999595
## KIF13A 3.000495e-01 0.741328147 0.9999595
## MARVELD1 2.999060e-01 0.741434080 0.9999595
## EIF2B3 2.998402e-01 0.741482615 0.9999595
## LMOD3 2.996532e-01 0.741620617 0.9999595
## FBXL6 2.996079e-01 0.741653995 0.9999595
## FRK 2.995339e-01 0.741708616 0.9999595
## ANKRD65 2.995099e-01 0.741726325 0.9999595
## SMPD3 2.994250e-01 0.741789012 0.9999595
## RAP1A 2.993887e-01 0.741815834 0.9999595
## RPAP2 2.992226e-01 0.741938453 0.9999595
## SRA1 2.991386e-01 0.742000433 0.9999595
## PSRC1 2.990957e-01 0.742032128 0.9999595
## ZNF497 2.988339e-01 0.742225481 0.9999595
## HSD17B11 2.987644e-01 0.742276768 0.9999595
## UIMC1 2.986584e-01 0.742355101 0.9999595
## EMC9 2.986193e-01 0.742383968 0.9999595
## ANKFY1 2.985683e-01 0.742421674 0.9999595
## PHC2 2.985327e-01 0.742447945 0.9999595
## ZNF565 2.984778e-01 0.742488514 0.9999595
## ATP2B4 2.983834e-01 0.742558255 0.9999595
## TAP1 2.982695e-01 0.742642422 0.9999595
## ZDHHC9 2.981697e-01 0.742716204 0.9999595
## RAB11FIP3 2.980773e-01 0.742784516 0.9999595
## PSD3 2.980519e-01 0.742803263 0.9999595
## ZNF701 2.978151e-01 0.742978363 0.9999595
## SERAC1 2.977476e-01 0.743028225 0.9999595
## APOBEC3H 2.976819e-01 0.743076849 0.9999595
## ACYP2 2.975797e-01 0.743152370 0.9999595
## STRADB 2.975272e-01 0.743191235 0.9999595
## PTTG2 2.973713e-01 0.743306546 0.9999595
## FAM168B 2.973705e-01 0.743307123 0.9999595
## PAFAH1B3 2.968726e-01 0.743675511 0.9999595
## ZFP41 2.968240e-01 0.743711464 0.9999595
## RGP1 2.967988e-01 0.743730115 0.9999595
## SLC44A2 2.967442e-01 0.743770541 0.9999595
## ZNF576 2.967016e-01 0.743802047 0.9999595
## NXT1 2.965995e-01 0.743877639 0.9999595
## MYCBP2 2.964413e-01 0.743994738 0.9999595
## SLC7A6 2.963451e-01 0.744065969 0.9999595
## FAM83H 2.962313e-01 0.744150265 0.9999595
## DLEU7 2.962077e-01 0.744167722 0.9999595
## SPIRE1 2.961663e-01 0.744198401 0.9999595
## MS4A10 2.960871e-01 0.744257068 0.9999595
## AASS 2.960150e-01 0.744310454 0.9999595
## PPP1R12C 2.960146e-01 0.744310782 0.9999595
## RCN1 2.959770e-01 0.744338591 0.9999595
## PLA2G4B 2.959770e-01 0.744338602 0.9999595
## PGAP3 2.959024e-01 0.744393859 0.9999595
## SELENOT 2.958888e-01 0.744403973 0.9999595
## DUS4L-BCAP29 2.957338e-01 0.744518758 0.9999595
## VAMP1 2.957110e-01 0.744535673 0.9999595
## TP53BP2 2.956949e-01 0.744547583 0.9999595
## DIS3L 2.956387e-01 0.744589256 0.9999595
## ZNF850 2.955770e-01 0.744634988 0.9999595
## SPAG1 2.955581e-01 0.744648969 0.9999595
## BTRC 2.953532e-01 0.744800821 0.9999595
## MAN1A2 2.952901e-01 0.744847606 0.9999595
## MCM9 2.951846e-01 0.744925780 0.9999595
## DCK 2.951751e-01 0.744932821 0.9999595
## RBM19 2.951607e-01 0.744943523 0.9999595
## TLE1 2.951229e-01 0.744971566 0.9999595
## C3AR1 2.949773e-01 0.745079507 0.9999595
## MPHOSPH6 2.949700e-01 0.745084900 0.9999595
## ZNF721 2.947915e-01 0.745217282 0.9999595
## CTSS 2.947530e-01 0.745245866 0.9999595
## ABHD8 2.946105e-01 0.745351561 0.9999595
## GTPBP2 2.945849e-01 0.745370535 0.9999595
## KATNAL1 2.944287e-01 0.745486375 0.9999595
## PIK3R2 2.944121e-01 0.745498710 0.9999595
## PSMG1 2.943768e-01 0.745524884 0.9999595
## PPIP5K1 2.942472e-01 0.745621091 0.9999595
## DUS3L 2.942255e-01 0.745637137 0.9999595
## ANXA9 2.941748e-01 0.745674790 0.9999595
## ACBD6 2.941428e-01 0.745698548 0.9999595
## EIF2B1 2.940137e-01 0.745794334 0.9999595
## TMEM212 2.940078e-01 0.745798684 0.9999595
## SNRNP200 2.940047e-01 0.745801037 0.9999595
## POLR1A 2.939599e-01 0.745834291 0.9999595
## HIVEP1 2.939236e-01 0.745861250 0.9999595
## ZNF592 2.938894e-01 0.745886640 0.9999595
## UNC13B 2.938192e-01 0.745938684 0.9999595
## FRS3 2.937637e-01 0.745979897 0.9999595
## ALKBH2 2.937270e-01 0.746007128 0.9999595
## PHTF2 2.936994e-01 0.746027645 0.9999595
## C11orf71 2.936581e-01 0.746058349 0.9999595
## ZNF175 2.935833e-01 0.746113878 0.9999595
## FKBP14 2.935767e-01 0.746118747 0.9999595
## THAP1 2.935682e-01 0.746125103 0.9999595
## TTC13 2.935610e-01 0.746130399 0.9999595
## HOXB4 2.935382e-01 0.746147372 0.9999595
## DCP1A 2.934255e-01 0.746231075 0.9999595
## RELT 2.930675e-01 0.746496918 0.9999595
## POLL 2.927687e-01 0.746718974 0.9999595
## ZNF506 2.927454e-01 0.746736305 0.9999595
## ILRUN 2.924980e-01 0.746920152 0.9999595
## RAB1A 2.923417e-01 0.747036372 0.9999595
## UBL3 2.921584e-01 0.747172677 0.9999595
## NEK7 2.920883e-01 0.747224803 0.9999595
## FAM122C 2.920653e-01 0.747241898 0.9999595
## KATNB1 2.920536e-01 0.747250557 0.9999595
## UTP25 2.920100e-01 0.747283019 0.9999595
## FAM20A 2.919952e-01 0.747294015 0.9999595
## MCTP1 2.919622e-01 0.747318531 0.9999595
## PPP1R3F 2.917344e-01 0.747488012 0.9999595
## ARID4B 2.915635e-01 0.747615157 0.9999595
## POLR3G 2.915057e-01 0.747658168 0.9999595
## SLC5A9 2.914220e-01 0.747720466 0.9999595
## ITPKC 2.913567e-01 0.747769074 0.9999595
## CYB5R3 2.913566e-01 0.747769085 0.9999595
## GPRIN3 2.913369e-01 0.747783747 0.9999595
## VAMP2 2.913127e-01 0.747801792 0.9999595
## THOC7 2.911411e-01 0.747929480 0.9999595
## ZWINT 2.911283e-01 0.747939019 0.9999595
## PRPF40B 2.910754e-01 0.747978403 0.9999595
## ERBIN 2.910214e-01 0.748018628 0.9999595
## DIPK1B 2.909833e-01 0.748047004 0.9999595
## CMTM6 2.908678e-01 0.748133003 0.9999595
## UHRF1BP1L 2.908498e-01 0.748146362 0.9999595
## LILRB1 2.908031e-01 0.748181163 0.9999595
## ZNF782 2.907542e-01 0.748217586 0.9999595
## ADM 2.907518e-01 0.748219360 0.9999595
## IPO7 2.906558e-01 0.748290816 0.9999595
## WDR13 2.906090e-01 0.748325716 0.9999595
## GPN2 2.905910e-01 0.748339077 0.9999595
## FYB1 2.904915e-01 0.748413240 0.9999595
## PIP4K2C 2.904431e-01 0.748449270 0.9999595
## NRL 2.902833e-01 0.748568272 0.9999595
## HADH 2.901933e-01 0.748635364 0.9999595
## ANAPC2 2.900450e-01 0.748745845 0.9999595
## ZNF638 2.899966e-01 0.748781933 0.9999595
## KATNAL2 2.899739e-01 0.748798844 0.9999595
## ITPR1 2.899300e-01 0.748831539 0.9999595
## TSPAN2 2.898494e-01 0.748891597 0.9999595
## PLIN2 2.897767e-01 0.748945846 0.9999595
## EHD3 2.897014e-01 0.749001919 0.9999595
## ENPP4 2.895210e-01 0.749136442 0.9999595
## RNGTT 2.895199e-01 0.749137238 0.9999595
## ACAA2 2.894947e-01 0.749156021 0.9999595
## GLYCTK 2.894730e-01 0.749172245 0.9999595
## LYZ 2.894480e-01 0.749190836 0.9999595
## PSMA6 2.894411e-01 0.749196037 0.9999595
## EPS8L2 2.894240e-01 0.749208764 0.9999595
## CBWD3 2.894198e-01 0.749211870 0.9999595
## APOBR 2.894113e-01 0.749218249 0.9999595
## LSM10 2.893640e-01 0.749253476 0.9999595
## BZW1 2.893269e-01 0.749281173 0.9999595
## FUT2 2.892956e-01 0.749304488 0.9999595
## ORMDL2 2.892738e-01 0.749320741 0.9999595
## ATG4B 2.892657e-01 0.749326792 0.9999595
## INTS11 2.891863e-01 0.749386015 0.9999595
## AP4M1 2.891370e-01 0.749422805 0.9999595
## ETFRF1 2.891189e-01 0.749436334 0.9999595
## GOLGA8N 2.890929e-01 0.749455690 0.9999595
## CHD1 2.890735e-01 0.749470195 0.9999595
## BABAM1 2.890557e-01 0.749483438 0.9999595
## HNRNPK 2.889278e-01 0.749578875 0.9999595
## DDX42 2.888955e-01 0.749602953 0.9999595
## NUP58 2.888894e-01 0.749607518 0.9999595
## TAF6L 2.888609e-01 0.749628776 0.9999595
## PARP15 2.886710e-01 0.749770450 0.9999595
## SNAPC4 2.885546e-01 0.749857343 0.9999595
## PPIL1 2.884657e-01 0.749923713 0.9999595
## P4HTM 2.882930e-01 0.750052628 0.9999595
## GOLM2 2.880818e-01 0.750210268 0.9999595
## VWA5A 2.880205e-01 0.750256016 0.9999595
## SRM 2.879558e-01 0.750304374 0.9999595
## EAF1 2.879056e-01 0.750341822 0.9999595
## SAMSN1 2.878777e-01 0.750362668 0.9999595
## ZFAND2B 2.878347e-01 0.750394797 0.9999595
## RAC2 2.877268e-01 0.750475413 0.9999595
## BCL6 2.877002e-01 0.750495285 0.9999595
## DET1 2.874944e-01 0.750648984 0.9999595
## CTTNBP2NL 2.874546e-01 0.750678725 0.9999595
## GOSR2 2.874286e-01 0.750698144 0.9999595
## FANCA 2.874264e-01 0.750699782 0.9999595
## RECK 2.873680e-01 0.750743412 0.9999595
## GLRX 2.873606e-01 0.750748963 0.9999595
## ACLY 2.872275e-01 0.750848447 0.9999595
## RPN2 2.869199e-01 0.751078338 0.9999595
## GTF2I 2.868697e-01 0.751115848 0.9999595
## SPC25 2.864686e-01 0.751415781 0.9999595
## SESN1 2.864477e-01 0.751431395 0.9999595
## IPO11 2.863709e-01 0.751488895 0.9999595
## SNX20 2.863621e-01 0.751495464 0.9999595
## EPS8 2.863102e-01 0.751534256 0.9999595
## ERCC5 2.862227e-01 0.751599735 0.9999595
## SH2B1 2.860440e-01 0.751733407 0.9999595
## NDUFA7 2.859886e-01 0.751774855 0.9999595
## CLPP 2.859080e-01 0.751835175 0.9999595
## MIDN 2.857410e-01 0.751960126 0.9999595
## PRR14L 2.856849e-01 0.752002116 0.9999595
## SNX13 2.856795e-01 0.752006181 0.9999595
## DNAJC4 2.856601e-01 0.752020697 0.9999595
## SIRT5 2.856060e-01 0.752061240 0.9999595
## TRMT10A 2.855810e-01 0.752079951 0.9999595
## APBA3 2.855473e-01 0.752105163 0.9999595
## TCF23 2.853872e-01 0.752224981 0.9999595
## KMT2E 2.853364e-01 0.752263058 0.9999595
## TSNAX 2.852614e-01 0.752319185 0.9999595
## MMP14 2.851511e-01 0.752401812 0.9999595
## MRPS17 2.851377e-01 0.752411860 0.9999595
## AEN 2.851222e-01 0.752423445 0.9999595
## NCBP3 2.851061e-01 0.752435510 0.9999595
## FAM43A 2.850106e-01 0.752506990 0.9999595
## PISD 2.849553e-01 0.752548414 0.9999595
## ABCC3 2.849486e-01 0.752553440 0.9999595
## GMPPA 2.849384e-01 0.752561103 0.9999595
## SEPTIN9 2.848999e-01 0.752589923 0.9999595
## SLC27A3 2.847884e-01 0.752673458 0.9999595
## CAPN1 2.847609e-01 0.752694085 0.9999595
## IL15RA 2.847323e-01 0.752715489 0.9999595
## KYNU 2.847252e-01 0.752720848 0.9999595
## SAP130 2.846324e-01 0.752790348 0.9999595
## NIPA1 2.846235e-01 0.752797016 0.9999595
## ZCWPW1 2.845053e-01 0.752885585 0.9999595
## RAB28 2.844808e-01 0.752903974 0.9999595
## TRIM24 2.842930e-01 0.753044727 0.9999595
## LTBP1 2.842803e-01 0.753054219 0.9999595
## BAD 2.839422e-01 0.753307683 0.9999595
## GPRC5C 2.839379e-01 0.753310918 0.9999595
## RTCB 2.839283e-01 0.753318103 0.9999595
## YPEL2 2.838938e-01 0.753343989 0.9999595
## ADGRG3 2.838642e-01 0.753366189 0.9999595
## PARL 2.838461e-01 0.753379749 0.9999595
## SPTBN5 2.838316e-01 0.753390607 0.9999595
## RBM47 2.837776e-01 0.753431088 0.9999595
## DHRS9 2.836801e-01 0.753504227 0.9999595
## GMPR 2.836586e-01 0.753520328 0.9999595
## CEACAM4 2.836286e-01 0.753542856 0.9999595
## CRYZL1 2.835056e-01 0.753635102 0.9999595
## RNF145 2.834399e-01 0.753684391 0.9999595
## KCNAB2 2.833651e-01 0.753740503 0.9999595
## MRPL34 2.832342e-01 0.753838721 0.9999595
## HPS5 2.831002e-01 0.753939275 0.9999595
## NCF2 2.830129e-01 0.754004846 0.9999595
## GTSF1 2.829317e-01 0.754065784 0.9999595
## CANT1 2.828836e-01 0.754101835 0.9999595
## BCL9 2.828835e-01 0.754101933 0.9999595
## ACAP2 2.826532e-01 0.754274850 0.9999595
## MMP8 2.825694e-01 0.754337752 0.9999595
## TBC1D23 2.823962e-01 0.754467823 0.9999595
## OPRD1 2.823796e-01 0.754480291 0.9999595
## AAMP 2.823218e-01 0.754523650 0.9999595
## PCYT2 2.823141e-01 0.754529476 0.9999595
## SETD1A 2.822624e-01 0.754568318 0.9999595
## MAST2 2.822207e-01 0.754599585 0.9999595
## SMCHD1 2.821087e-01 0.754683705 0.9999595
## MIER1 2.821082e-01 0.754684132 0.9999595
## ABCF2-H2BE1 2.819606e-01 0.754795018 0.9999595
## KBTBD8 2.819311e-01 0.754817147 0.9999595
## TCTEX1D2 2.818384e-01 0.754886795 0.9999595
## SEPHS2 2.818137e-01 0.754905357 0.9999595
## SLMAP 2.817089e-01 0.754984126 0.9999595
## DNAJC7 2.817004e-01 0.754990484 0.9999595
## PAN2 2.815996e-01 0.755066276 0.9999595
## CMPK2 2.815949e-01 0.755069799 0.9999595
## KCNE3 2.815638e-01 0.755093181 0.9999595
## TRPC4AP 2.815485e-01 0.755104701 0.9999595
## NEGR1 2.814461e-01 0.755181624 0.9999595
## KDM3B 2.813267e-01 0.755271412 0.9999595
## SF3B4 2.813208e-01 0.755275844 0.9999595
## CDK10 2.812120e-01 0.755357660 0.9999595
## ZNF697 2.812109e-01 0.755358468 0.9999595
## ROCK1 2.812019e-01 0.755365272 0.9999595
## SMAGP 2.811649e-01 0.755393073 0.9999595
## TACO1 2.811431e-01 0.755409484 0.9999595
## SPTY2D1 2.811368e-01 0.755414164 0.9999595
## ABCA1 2.811155e-01 0.755430219 0.9999595
## PUS7 2.809934e-01 0.755522051 0.9999595
## TXNRD1 2.809533e-01 0.755552174 0.9999595
## KCTD9 2.808966e-01 0.755594840 0.9999595
## CHAC2 2.808888e-01 0.755600706 0.9999595
## CFP 2.808797e-01 0.755607498 0.9999595
## ARHGEF18 2.808474e-01 0.755631861 0.9999595
## HOGA1 2.807250e-01 0.755723915 0.9999595
## C7orf50 2.806282e-01 0.755796695 0.9999595
## VPS4A 2.805086e-01 0.755886737 0.9999595
## SVIP 2.804542e-01 0.755927623 0.9999595
## SOS2 2.803072e-01 0.756038282 0.9999595
## ZNF155 2.802943e-01 0.756047985 0.9999595
## GAB2 2.802652e-01 0.756069863 0.9999595
## RANGRF 2.802351e-01 0.756092486 0.9999595
## MGA 2.801547e-01 0.756152998 0.9999595
## OAT 2.801445e-01 0.756160700 0.9999595
## MIB1 2.801394e-01 0.756164583 0.9999595
## LCP1 2.800494e-01 0.756232267 0.9999595
## RO60 2.800233e-01 0.756251978 0.9999595
## ACTR8 2.798336e-01 0.756394746 0.9999595
## ATAD3B 2.795907e-01 0.756577656 0.9999595
## OMA1 2.795557e-01 0.756604005 0.9999595
## MAVS 2.793670e-01 0.756746154 0.9999595
## SNUPN 2.793466e-01 0.756761493 0.9999595
## NSUN4 2.792876e-01 0.756805986 0.9999595
## PBX3 2.792032e-01 0.756869578 0.9999595
## TP53BP1 2.790653e-01 0.756973494 0.9999595
## ATP5PO 2.790173e-01 0.757009608 0.9999595
## SLC7A8 2.789626e-01 0.757050842 0.9999595
## WDR7 2.789563e-01 0.757055573 0.9999595
## GIPC1 2.788782e-01 0.757114490 0.9999595
## KIF21B 2.788319e-01 0.757149314 0.9999595
## MPL 2.787084e-01 0.757242441 0.9999595
## WDR35 2.786283e-01 0.757302829 0.9999595
## SPI1 2.785553e-01 0.757357870 0.9999595
## NFAM1 2.785430e-01 0.757367098 0.9999595
## IKZF3 2.784086e-01 0.757468452 0.9999595
## RAB37 2.782205e-01 0.757610326 0.9999595
## NUP188 2.782193e-01 0.757611195 0.9999595
## CCDC115 2.781359e-01 0.757674126 0.9999595
## STARD9 2.780994e-01 0.757701648 0.9999595
## CNKSR3 2.779676e-01 0.757801084 0.9999595
## SP1 2.777554e-01 0.757961131 0.9999595
## FRYL 2.776560e-01 0.758036120 0.9999595
## TMEM59 2.773821e-01 0.758242854 0.9999595
## CDIPT 2.773560e-01 0.758262534 0.9999595
## COX7A2L 2.772838e-01 0.758317083 0.9999595
## MSRB1 2.772429e-01 0.758347954 0.9999595
## IFT80 2.772405e-01 0.758349780 0.9999595
## ATXN7L2 2.771886e-01 0.758388938 0.9999595
## MAP3K13 2.771800e-01 0.758395390 0.9999595
## AKAP9 2.771393e-01 0.758426112 0.9999595
## NEMF 2.771066e-01 0.758450831 0.9999595
## TFCP2 2.771034e-01 0.758453248 0.9999595
## CBLB 2.770220e-01 0.758514731 0.9999595
## RTN1 2.769851e-01 0.758542568 0.9999595
## CLTC 2.769334e-01 0.758581627 0.9999595
## ABCC5 2.769288e-01 0.758585068 0.9999595
## KCNMB1 2.769279e-01 0.758585753 0.9999595
## ATF7IP 2.769181e-01 0.758593194 0.9999595
## FUS 2.766780e-01 0.758774536 0.9999595
## CIT 2.766735e-01 0.758777868 0.9999595
## WRAP53 2.766708e-01 0.758779928 0.9999595
## PPP1R3B 2.765640e-01 0.758860598 0.9999595
## ASB8 2.765517e-01 0.758869925 0.9999595
## PIGA 2.764806e-01 0.758923625 0.9999595
## C5orf15 2.764614e-01 0.758938129 0.9999595
## RNF121 2.764518e-01 0.758945350 0.9999595
## PYROXD2 2.763243e-01 0.759041724 0.9999595
## CCDC71L 2.763186e-01 0.759045992 0.9999595
## CCNG2 2.762626e-01 0.759088331 0.9999595
## RBMXL1 2.762082e-01 0.759129428 0.9999595
## CDK2 2.761500e-01 0.759173419 0.9999595
## MKLN1 2.759664e-01 0.759312209 0.9999595
## NCBP1 2.758195e-01 0.759423276 0.9999595
## ATP6V0B 2.756836e-01 0.759525964 0.9999595
## C1D 2.755777e-01 0.759606064 0.9999595
## IFNLR1 2.754285e-01 0.759718865 0.9999595
## AP1G2 2.753096e-01 0.759808861 0.9999595
## LSM11 2.752938e-01 0.759820807 0.9999595
## NIPSNAP3A 2.752540e-01 0.759850868 0.9999595
## BANP 2.752179e-01 0.759878177 0.9999595
## PLTP 2.752007e-01 0.759891189 0.9999595
## NSUN2 2.751868e-01 0.759901733 0.9999595
## PUS10 2.751560e-01 0.759924978 0.9999595
## CSF3R 2.749693e-01 0.760066236 0.9999595
## MSANTD3 2.749225e-01 0.760101686 0.9999595
## RNF44 2.746896e-01 0.760277925 0.9999595
## ZNF160 2.746620e-01 0.760298798 0.9999595
## SMARCAD1 2.745536e-01 0.760380858 0.9999595
## SUCLG1 2.743578e-01 0.760529102 0.9999595
## TSPAN18 2.743316e-01 0.760548914 0.9999595
## ATP13A2 2.743135e-01 0.760562622 0.9999595
## OSCAR 2.742303e-01 0.760625660 0.9999595
## PMM1 2.741445e-01 0.760690630 0.9999595
## TCTN1 2.741071e-01 0.760718961 0.9999595
## ZNF618 2.739149e-01 0.760864514 0.9999595
## BECN1 2.738168e-01 0.760938797 0.9999595
## MYLK 2.737937e-01 0.760956319 0.9999595
## SPCS1 2.737856e-01 0.760962476 0.9999595
## GADD45B 2.736806e-01 0.761041994 0.9999595
## SRGN 2.735974e-01 0.761105003 0.9999595
## INTS6 2.735900e-01 0.761110666 0.9999595
## GMCL1 2.732726e-01 0.761351192 0.9999595
## MECP2 2.732008e-01 0.761405599 0.9999595
## GLS 2.730184e-01 0.761543839 0.9999595
## ADPGK 2.729896e-01 0.761565715 0.9999595
## ZUP1 2.729072e-01 0.761628149 0.9999595
## CASP8AP2 2.728626e-01 0.761662000 0.9999595
## AMT 2.727476e-01 0.761749175 0.9999595
## NPEPL1 2.727232e-01 0.761767673 0.9999595
## MCEMP1 2.726522e-01 0.761821584 0.9999595
## SNRNP25 2.725684e-01 0.761885117 0.9999595
## GNL2 2.725121e-01 0.761927791 0.9999595
## PRKAG1 2.724513e-01 0.761973962 0.9999595
## MLH1 2.723434e-01 0.762055803 0.9999595
## XKR8 2.721970e-01 0.762166887 0.9999595
## FANCD2 2.721394e-01 0.762210595 0.9999595
## RPL38 2.720604e-01 0.762270497 0.9999595
## FAM98C 2.719381e-01 0.762363328 0.9999595
## HIC2 2.716770e-01 0.762561501 0.9999595
## SNRPF 2.715556e-01 0.762653663 0.9999595
## BNIPL 2.714991e-01 0.762696585 0.9999595
## SKI 2.714115e-01 0.762763128 0.9999595
## PLD3 2.712763e-01 0.762865750 0.9999595
## KCNE1 2.712525e-01 0.762883895 0.9999595
## FEM1A 2.712398e-01 0.762893539 0.9999595
## CYRIB 2.711985e-01 0.762924864 0.9999595
## NARS2 2.711122e-01 0.762990461 0.9999595
## GTF3C6 2.710102e-01 0.763067919 0.9999595
## RUNX1 2.709538e-01 0.763110752 0.9999595
## PEX12 2.708995e-01 0.763152022 0.9999595
## C6orf136 2.708515e-01 0.763188471 0.9999595
## RPL27A 2.708493e-01 0.763190185 0.9999595
## LDLRAD3 2.708489e-01 0.763190460 0.9999595
## TCERG1 2.707750e-01 0.763246634 0.9999595
## AGBL3 2.707715e-01 0.763249237 0.9999595
## EDARADD 2.706818e-01 0.763317446 0.9999595
## CAP1 2.706619e-01 0.763332529 0.9999595
## CELF3 2.706192e-01 0.763364975 0.9999595
## L3MBTL2 2.706114e-01 0.763370915 0.9999595
## TF 2.705344e-01 0.763429459 0.9999595
## SERPINE1 2.704944e-01 0.763459830 0.9999595
## ROMO1 2.704931e-01 0.763460835 0.9999595
## CNOT8 2.703387e-01 0.763578228 0.9999595
## PLCL2 2.702907e-01 0.763614676 0.9999595
## CDC25A 2.700421e-01 0.763803732 0.9999595
## CSTB 2.699879e-01 0.763844909 0.9999595
## STRAP 2.699216e-01 0.763895373 0.9999595
## PPWD1 2.698759e-01 0.763930115 0.9999595
## ELOC 2.698395e-01 0.763957810 0.9999595
## COPS6 2.695677e-01 0.764164557 0.9999595
## UTP11 2.694892e-01 0.764224280 0.9999595
## TRMT1L 2.694444e-01 0.764258339 0.9999595
## NPAT 2.694354e-01 0.764265251 0.9999595
## NME4 2.692901e-01 0.764375743 0.9999595
## GDAP1 2.691841e-01 0.764456420 0.9999595
## TM6SF1 2.691561e-01 0.764477792 0.9999595
## GOLGA3 2.691229e-01 0.764503047 0.9999595
## NMRAL1 2.691120e-01 0.764511301 0.9999595
## PRKCD 2.690396e-01 0.764566437 0.9999595
## GNG5 2.690055e-01 0.764592376 0.9999595
## GPLD1 2.689024e-01 0.764670846 0.9999595
## GSTM3 2.688619e-01 0.764701699 0.9999595
## PTPN12 2.687913e-01 0.764755433 0.9999595
## CAST 2.687584e-01 0.764780520 0.9999595
## RYR1 2.687229e-01 0.764807522 0.9999595
## GOPC 2.687037e-01 0.764822131 0.9999595
## AATF 2.686526e-01 0.764861092 0.9999595
## E4F1 2.683946e-01 0.765057574 0.9999595
## ZHX3 2.683460e-01 0.765094627 0.9999595
## MYL12A 2.683055e-01 0.765125472 0.9999595
## SDCBP 2.682069e-01 0.765200579 0.9999595
## ODR4 2.681429e-01 0.765249309 0.9999595
## SLC16A13 2.681331e-01 0.765256783 0.9999595
## ACSL5 2.678616e-01 0.765463690 0.9999595
## ADGRG5 2.677095e-01 0.765579553 0.9999595
## TTC31 2.676381e-01 0.765634008 0.9999595
## EIF2S1 2.676215e-01 0.765646707 0.9999595
## CAB39L 2.675520e-01 0.765699644 0.9999595
## VPS13A 2.672833e-01 0.765904508 0.9999595
## ARHGAP9 2.672152e-01 0.765956439 0.9999595
## MTMR3 2.672137e-01 0.765957574 0.9999595
## PIP5K1C 2.670975e-01 0.766046243 0.9999595
## LAPTM5 2.670888e-01 0.766052840 0.9999595
## USP4 2.670326e-01 0.766095728 0.9999595
## POLRMT 2.669769e-01 0.766138184 0.9999595
## RHEB 2.669690e-01 0.766144192 0.9999595
## POLR1H 2.669535e-01 0.766156038 0.9999595
## MRPL21 2.669459e-01 0.766161857 0.9999595
## ZFYVE9 2.669137e-01 0.766186378 0.9999595
## ZNF512 2.668832e-01 0.766209658 0.9999595
## DCUN1D3 2.668468e-01 0.766237424 0.9999595
## RC3H2 2.668060e-01 0.766268565 0.9999595
## WDR97 2.668015e-01 0.766272008 0.9999595
## NAT14 2.667847e-01 0.766284805 0.9999595
## SNRNP40 2.667712e-01 0.766295144 0.9999595
## NRF1 2.667612e-01 0.766302743 0.9999595
## XCL2 2.666778e-01 0.766366386 0.9999595
## CCDC163 2.665945e-01 0.766429942 0.9999595
## ACP2 2.665317e-01 0.766477859 0.9999595
## FEZ1 2.664683e-01 0.766526276 0.9999595
## NDRG1 2.664457e-01 0.766543525 0.9999595
## FOLR2 2.663407e-01 0.766623650 0.9999595
## SOX4 2.663001e-01 0.766654638 0.9999595
## DCTN5 2.662157e-01 0.766719081 0.9999595
## ADCK2 2.662038e-01 0.766728173 0.9999595
## KHNYN 2.660432e-01 0.766850761 0.9999595
## PGAM5 2.660085e-01 0.766877274 0.9999595
## JMJD8 2.658687e-01 0.766983982 0.9999595
## JAML 2.658681e-01 0.766984426 0.9999595
## TRMT6 2.657010e-01 0.767112040 0.9999595
## HDDC2 2.656818e-01 0.767126704 0.9999595
## POC1A 2.656682e-01 0.767137121 0.9999595
## IRAG1 2.656146e-01 0.767178041 0.9999595
## MBTD1 2.655895e-01 0.767197266 0.9999595
## CACNG5 2.654118e-01 0.767333027 0.9999595
## ZBTB48 2.653961e-01 0.767344953 0.9999595
## NINJ2 2.653956e-01 0.767345384 0.9999595
## RSU1 2.653913e-01 0.767348664 0.9999595
## MAMDC4 2.653746e-01 0.767361414 0.9999595
## PRKX 2.652562e-01 0.767451888 0.9999595
## SDF4 2.652375e-01 0.767466201 0.9999595
## PITPNM1 2.652274e-01 0.767473897 0.9999595
## SIN3A 2.651349e-01 0.767544556 0.9999595
## C1orf43 2.651237e-01 0.767553139 0.9999595
## FAM76B 2.650235e-01 0.767629738 0.9999595
## ADIPOR2 2.649935e-01 0.767652643 0.9999595
## TOMM22 2.648835e-01 0.767736735 0.9999595
## TP63 2.647868e-01 0.767810637 0.9999595
## FTL 2.647304e-01 0.767853788 0.9999595
## GRK5 2.646827e-01 0.767890233 0.9999595
## VHL 2.644407e-01 0.768075307 0.9999595
## CIAO1 2.642974e-01 0.768184912 0.9999595
## WDR3 2.641746e-01 0.768278830 0.9999595
## FUT8 2.639670e-01 0.768437607 0.9999595
## PXN 2.635131e-01 0.768784993 0.9999595
## DDAH2 2.635036e-01 0.768792262 0.9999595
## ITGA7 2.634732e-01 0.768815529 0.9999595
## BUD23 2.634212e-01 0.768855341 0.9999595
## CCDC15 2.633819e-01 0.768885430 0.9999595
## STK38L 2.632637e-01 0.768975947 0.9999595
## TRMT112 2.629359e-01 0.769226945 0.9999595
## TSR1 2.626577e-01 0.769440034 0.9999595
## FRG1 2.626304e-01 0.769460977 0.9999595
## TIMM23B 2.625695e-01 0.769507652 0.9999595
## ZZZ3 2.625371e-01 0.769532469 0.9999595
## FBXL5 2.625293e-01 0.769538465 0.9999595
## MTMR9 2.624467e-01 0.769601749 0.9999595
## MDH1 2.624172e-01 0.769624297 0.9999595
## STK4 2.624037e-01 0.769634657 0.9999595
## MME 2.621842e-01 0.769802886 0.9999595
## DENND5A 2.621187e-01 0.769853081 0.9999595
## RPL18A 2.621005e-01 0.769867039 0.9999595
## TCF25 2.620635e-01 0.769895462 0.9999595
## TMEM45B 2.620533e-01 0.769903247 0.9999595
## INTS4 2.618465e-01 0.770061817 0.9999595
## EHBP1 2.618363e-01 0.770069611 0.9999595
## GGA2 2.616867e-01 0.770184338 0.9999595
## SLC27A5 2.616652e-01 0.770200830 0.9999595
## BTBD6 2.616242e-01 0.770232269 0.9999595
## WDR82 2.616084e-01 0.770244360 0.9999595
## SEC22C 2.616031e-01 0.770248458 0.9999595
## KAT8 2.615678e-01 0.770275503 0.9999595
## NANP 2.615325e-01 0.770302625 0.9999595
## HLA-DRA 2.615297e-01 0.770304761 0.9999595
## SARAF 2.615074e-01 0.770321881 0.9999595
## SUDS3 2.614714e-01 0.770349441 0.9999595
## ACTR3B 2.614453e-01 0.770369509 0.9999595
## BCO2 2.614345e-01 0.770377794 0.9999595
## DNAJB6 2.613670e-01 0.770429574 0.9999595
## VPS52 2.613425e-01 0.770448343 0.9999595
## CCDC138 2.612635e-01 0.770508923 0.9999595
## GNAZ 2.612539e-01 0.770516304 0.9999595
## GCM1 2.612269e-01 0.770537004 0.9999595
## CTNS 2.611833e-01 0.770570520 0.9999595
## TBC1D30 2.611744e-01 0.770577299 0.9999595
## DAGLA 2.611337e-01 0.770608517 0.9999595
## MLF2 2.609606e-01 0.770741415 0.9999595
## GAK 2.609264e-01 0.770767587 0.9999595
## PET100 2.608890e-01 0.770796307 0.9999595
## TMEM241 2.607559e-01 0.770898514 0.9999595
## PRDM2 2.607404e-01 0.770910411 0.9999595
## BCL9L 2.606548e-01 0.770976082 0.9999595
## MANBAL 2.605835e-01 0.771030873 0.9999595
## LRRC45 2.604481e-01 0.771134768 0.9999595
## TALDO1 2.604417e-01 0.771139700 0.9999595
## RBCK1 2.603501e-01 0.771210065 0.9999595
## CETP 2.603277e-01 0.771227264 0.9999595
## TOMM40 2.602630e-01 0.771276902 0.9999595
## HACD1 2.601983e-01 0.771326649 0.9999595
## GLCCI1 2.601392e-01 0.771372024 0.9999595
## FCER2 2.601221e-01 0.771385120 0.9999595
## NFKB1 2.600821e-01 0.771415862 0.9999595
## IRF3 2.600370e-01 0.771450502 0.9999595
## SNX24 2.600232e-01 0.771461104 0.9999595
## G3BP2 2.600158e-01 0.771466809 0.9999595
## TAF10 2.600135e-01 0.771468570 0.9999595
## ARNTL 2.599782e-01 0.771495721 0.9999595
## ZMYND12 2.598365e-01 0.771604571 0.9999595
## BYSL 2.596736e-01 0.771729725 0.9999595
## RICTOR 2.596147e-01 0.771774984 0.9999595
## ZYX 2.596033e-01 0.771783767 0.9999595
## ASAP3 2.595873e-01 0.771796009 0.9999595
## DHPS 2.595080e-01 0.771856961 0.9999595
## INPP5K 2.593598e-01 0.771970877 0.9999595
## AGBL5 2.592538e-01 0.772052413 0.9999595
## PPP1R35 2.590351e-01 0.772220506 0.9999595
## TMEM184B 2.589857e-01 0.772258517 0.9999595
## NCKIPSD 2.589406e-01 0.772293197 0.9999595
## GRB14 2.588110e-01 0.772392872 0.9999595
## RSKR 2.587253e-01 0.772458786 0.9999595
## VPS4B 2.586554e-01 0.772512558 0.9999595
## ADAM17 2.585862e-01 0.772565799 0.9999595
## COQ4 2.585415e-01 0.772600158 0.9999595
## OXSR1 2.582860e-01 0.772796771 0.9999595
## TAF8 2.582490e-01 0.772825246 0.9999595
## MAP1LC3B 2.581397e-01 0.772909342 0.9999595
## EPHB1 2.579586e-01 0.773048729 0.9999595
## MED6 2.579147e-01 0.773082530 0.9999595
## TRAM1 2.579065e-01 0.773088903 0.9999595
## ACOX1 2.578352e-01 0.773143744 0.9999595
## ANKRA2 2.577623e-01 0.773199901 0.9999595
## MOGS 2.576679e-01 0.773272591 0.9999595
## DIAPH2 2.575928e-01 0.773330414 0.9999595
## ACSL1 2.575714e-01 0.773346847 0.9999595
## HNRNPF 2.575127e-01 0.773392123 0.9999595
## AFAP1 2.572674e-01 0.773581048 0.9999595
## ARFGAP2 2.572568e-01 0.773589198 0.9999595
## WDR24 2.572480e-01 0.773595955 0.9999595
## LTB4R 2.572475e-01 0.773596369 0.9999595
## UQCC2 2.571393e-01 0.773679678 0.9999595
## KNTC1 2.570491e-01 0.773749175 0.9999595
## DDX46 2.568811e-01 0.773878672 0.9999595
## ZNF33A 2.568270e-01 0.773920372 0.9999595
## TRAF6 2.567889e-01 0.773949724 0.9999595
## MPZL3 2.565915e-01 0.774101845 0.9999595
## GALNS 2.565710e-01 0.774117696 0.9999595
## TCOF1 2.565688e-01 0.774119389 0.9999595
## CERS6 2.564682e-01 0.774196885 0.9999595
## DOCK2 2.564514e-01 0.774209850 0.9999595
## WASHC2A 2.564387e-01 0.774219695 0.9999595
## MYO9A 2.564370e-01 0.774220937 0.9999595
## DCXR 2.564245e-01 0.774230636 0.9999595
## PRPF31 2.564142e-01 0.774238547 0.9999595
## CBY1 2.563603e-01 0.774280117 0.9999595
## RPS19 2.563539e-01 0.774285056 0.9999595
## SCCPDH 2.563041e-01 0.774323452 0.9999595
## ACTN4 2.562714e-01 0.774348690 0.9999595
## YLPM1 2.562708e-01 0.774349081 0.9999595
## NKAPD1 2.561606e-01 0.774434063 0.9999595
## INPP5B 2.561448e-01 0.774446281 0.9999595
## COMMD5 2.559506e-01 0.774596024 0.9999595
## THAP7 2.559124e-01 0.774625503 0.9999595
## RABL2A 2.558351e-01 0.774685187 0.9999595
## MEIS1 2.557835e-01 0.774724999 0.9999595
## TMPRSS13 2.556075e-01 0.774860744 0.9999595
## NFATC2IP 2.555180e-01 0.774929807 0.9999595
## CPSF4 2.554264e-01 0.775000533 0.9999595
## SDHD 2.553299e-01 0.775074995 0.9999595
## ZNF622 2.552655e-01 0.775124731 0.9999595
## TPH1 2.552226e-01 0.775157834 0.9999595
## ADHFE1 2.551426e-01 0.775219601 0.9999595
## VPS51 2.551106e-01 0.775244276 0.9999595
## ZNF300 2.550330e-01 0.775304151 0.9999595
## RELA 2.550136e-01 0.775319150 0.9999595
## ZNF212 2.550036e-01 0.775326868 0.9999595
## KLF10 2.548480e-01 0.775447053 0.9999595
## ZNF747 2.546531e-01 0.775597555 0.9999595
## ERP29 2.546460e-01 0.775603026 0.9999595
## TMEM161A 2.545586e-01 0.775670522 0.9999595
## IL17RE 2.545552e-01 0.775673168 0.9999595
## MAD2L2 2.545092e-01 0.775708723 0.9999595
## TLR5 2.543705e-01 0.775815816 0.9999595
## KRBA2 2.543605e-01 0.775823558 0.9999595
## NAT9 2.542342e-01 0.775921135 0.9999595
## MEX3C 2.542239e-01 0.775929120 0.9999595
## ACSS2 2.541968e-01 0.775950076 0.9999595
## ACTR5 2.541642e-01 0.775975283 0.9999595
## ZFHX3 2.540301e-01 0.776078905 0.9999595
## POLR2B 2.539754e-01 0.776121154 0.9999595
## ESAM 2.538901e-01 0.776187111 0.9999595
## LST1 2.538709e-01 0.776201951 0.9999595
## ANGEL1 2.536451e-01 0.776376473 0.9999595
## DYNC1I2 2.536154e-01 0.776399446 0.9999595
## NAGK 2.535997e-01 0.776411585 0.9999595
## ELF3 2.535811e-01 0.776425942 0.9999595
## WDR83 2.533213e-01 0.776626841 0.9999595
## RABL6 2.533213e-01 0.776626895 0.9999595
## RPTOR 2.531151e-01 0.776786390 0.9999595
## STRADA 2.529711e-01 0.776897741 0.9999595
## TRIQK 2.527746e-01 0.777049815 0.9999595
## ZC3HAV1 2.527093e-01 0.777100374 0.9999595
## MUL1 2.526500e-01 0.777146200 0.9999595
## VPS37A 2.525758e-01 0.777203682 0.9999595
## DHCR7 2.525513e-01 0.777222638 0.9999595
## MXI1 2.524996e-01 0.777262617 0.9999595
## ZMYM5 2.523613e-01 0.777369681 0.9999595
## PDK4 2.522795e-01 0.777433039 0.9999595
## FSCN1 2.522584e-01 0.777449336 0.9999595
## SLC25A19 2.522286e-01 0.777472456 0.9999595
## CD44 2.521963e-01 0.777497477 0.9999595
## ARHGEF12 2.519577e-01 0.777682187 0.9999595
## TRPM4 2.519127e-01 0.777717055 0.9999595
## NAMPT 2.518845e-01 0.777738898 0.9999595
## PAOX 2.518281e-01 0.777782560 0.9999595
## ZNF484 2.517219e-01 0.777864868 0.9999595
## MAP3K4 2.516995e-01 0.777882194 0.9999595
## LOC112694756 2.516416e-01 0.777927063 0.9999595
## OSBPL8 2.514481e-01 0.778077011 0.9999595
## GNA15 2.514140e-01 0.778103377 0.9999595
## TTC33 2.514118e-01 0.778105147 0.9999595
## RBL2 2.512843e-01 0.778203919 0.9999595
## PTGES2 2.512476e-01 0.778232359 0.9999595
## PHKB 2.511455e-01 0.778311515 0.9999595
## ATE1 2.510073e-01 0.778418619 0.9999595
## KMT2C 2.508818e-01 0.778515947 0.9999595
## IFT172 2.508131e-01 0.778569214 0.9999595
## GRK2 2.507120e-01 0.778647601 0.9999595
## RPP40 2.507012e-01 0.778655927 0.9999595
## WNT11 2.506841e-01 0.778669238 0.9999595
## OGFRL1 2.505239e-01 0.778793475 0.9999595
## LRRCC1 2.505176e-01 0.778798365 0.9999595
## BRI3 2.504678e-01 0.778836939 0.9999595
## SWT1 2.504649e-01 0.778839230 0.9999595
## REXO4 2.504252e-01 0.778870005 0.9999595
## TIMM10B 2.503569e-01 0.778922965 0.9999595
## SLX1A 2.502935e-01 0.778972146 0.9999595
## RNASE2 2.502521e-01 0.779004332 0.9999595
## GPAA1 2.500947e-01 0.779126449 0.9999595
## CHD7 2.499468e-01 0.779241207 0.9999595
## USP24 2.498902e-01 0.779285147 0.9999595
## TMC5 2.498676e-01 0.779302677 0.9999595
## RAB4B 2.497477e-01 0.779395712 0.9999595
## RC3H1 2.497195e-01 0.779417646 0.9999595
## KLHDC4 2.496755e-01 0.779451776 0.9999595
## PQBP1 2.495858e-01 0.779521411 0.9999595
## BDP1 2.492913e-01 0.779750095 0.9999595
## RBM25 2.492906e-01 0.779750621 0.9999595
## NDUFB4 2.492391e-01 0.779790614 0.9999595
## IGSF8 2.491962e-01 0.779823906 0.9999595
## ITPK1 2.491168e-01 0.779885564 0.9999595
## TRAPPC6B 2.490879e-01 0.779908054 0.9999595
## TMEM50A 2.490539e-01 0.779934418 0.9999595
## RB1CC1 2.490512e-01 0.779936557 0.9999595
## SENP3 2.488307e-01 0.780107808 0.9999595
## IL1B 2.486681e-01 0.780234181 0.9999595
## SCNN1A 2.486566e-01 0.780243148 0.9999595
## CYLD 2.486346e-01 0.780260243 0.9999595
## SNX2 2.486079e-01 0.780280976 0.9999595
## KDM5A 2.480674e-01 0.780701075 0.9999595
## C1orf198 2.480563e-01 0.780709711 0.9999595
## TMEM102 2.479642e-01 0.780781340 0.9999595
## RELB 2.479085e-01 0.780824629 0.9999595
## ZNF793 2.478926e-01 0.780836996 0.9999595
## PTPN4 2.478036e-01 0.780906201 0.9999595
## CKLF 2.478013e-01 0.780908012 0.9999595
## TRMT61A 2.477586e-01 0.780941213 0.9999595
## PARD3 2.477184e-01 0.780972533 0.9999595
## SCYL2 2.476744e-01 0.781006699 0.9999595
## TBC1D7 2.476619e-01 0.781016480 0.9999595
## GSKIP 2.476575e-01 0.781019851 0.9999595
## NBPF8 2.474603e-01 0.781173254 0.9999595
## ORAI1 2.474212e-01 0.781203688 0.9999595
## USP9X 2.473341e-01 0.781271445 0.9999595
## GAPDH 2.472461e-01 0.781339967 0.9999595
## MLST8 2.472427e-01 0.781342588 0.9999595
## WIZ 2.471843e-01 0.781388013 0.9999595
## PTP4A1 2.470869e-01 0.781463805 0.9999595
## KCNRG 2.470764e-01 0.781472006 0.9999595
## KATNBL1 2.470487e-01 0.781493573 0.9999595
## RPS12 2.469485e-01 0.781571582 0.9999595
## FAF1 2.469441e-01 0.781574955 0.9999595
## DHFR2 2.468306e-01 0.781663338 0.9999595
## CCDC17 2.468252e-01 0.781667562 0.9999595
## TPST1 2.468204e-01 0.781671275 0.9999595
## CHST15 2.468093e-01 0.781679929 0.9999595
## AHDC1 2.467933e-01 0.781692366 0.9999595
## COQ7 2.466407e-01 0.781811195 0.9999595
## SECISBP2 2.466265e-01 0.781822287 0.9999595
## PMS2 2.465129e-01 0.781910751 0.9999595
## GSTO2 2.464360e-01 0.781970578 0.9999595
## CTRL 2.463114e-01 0.782067621 0.9999595
## MCRS1 2.462371e-01 0.782125547 0.9999595
## SVIL 2.462089e-01 0.782147456 0.9999595
## PGM5 2.461613e-01 0.782184598 0.9999595
## HSDL1 2.461397e-01 0.782201365 0.9999595
## RAB2A 2.461387e-01 0.782202191 0.9999595
## NAPEPLD 2.459884e-01 0.782319260 0.9999595
## SIAE 2.459436e-01 0.782354172 0.9999595
## TMBIM1 2.458657e-01 0.782414926 0.9999595
## EIF3B 2.456957e-01 0.782547406 0.9999595
## CIPC 2.455935e-01 0.782627055 0.9999595
## INO80D 2.454317e-01 0.782753174 0.9999595
## C18orf54 2.453829e-01 0.782791216 0.9999595
## RGS14 2.449768e-01 0.783107873 0.9999595
## NAALADL1 2.448439e-01 0.783211586 0.9999595
## EXOC5 2.447977e-01 0.783247604 0.9999595
## PIK3C3 2.447639e-01 0.783273937 0.9999595
## PARN 2.447638e-01 0.783274041 0.9999595
## NCALD 2.446364e-01 0.783373401 0.9999595
## STAG1 2.446308e-01 0.783377833 0.9999595
## LXN 2.445894e-01 0.783410092 0.9999595
## AQP9 2.445223e-01 0.783462465 0.9999595
## APOL3 2.444156e-01 0.783545718 0.9999595
## ZCCHC7 2.443739e-01 0.783578273 0.9999595
## RDH16 2.442222e-01 0.783696718 0.9999595
## TSC22D3 2.442096e-01 0.783706516 0.9999595
## MPO 2.442036e-01 0.783711194 0.9999595
## TUBB 2.441951e-01 0.783717837 0.9999595
## AKIRIN1 2.441931e-01 0.783719423 0.9999595
## NDUFAF2 2.440753e-01 0.783811374 0.9999595
## MRPL53 2.440426e-01 0.783836871 0.9999595
## ZNF20 2.438994e-01 0.783948718 0.9999595
## PIN4 2.438957e-01 0.783951608 0.9999595
## ECI2 2.438887e-01 0.783957022 0.9999595
## S1PR3 2.437312e-01 0.784080046 0.9999595
## TRIM4 2.436004e-01 0.784182179 0.9999595
## CSF2RA 2.435698e-01 0.784206078 0.9999595
## PIP5K1A 2.434985e-01 0.784261766 0.9999595
## RNA28SN4 2.434191e-01 0.784323783 0.9999595
## DIPK2A 2.433778e-01 0.784356048 0.9999595
## SPEN 2.433067e-01 0.784411651 0.9999595
## PRDM10 2.433006e-01 0.784416348 0.9999595
## PNRC2 2.431509e-01 0.784533340 0.9999595
## REPS2 2.430926e-01 0.784578917 0.9999595
## ACTG1 2.430364e-01 0.784622812 0.9999595
## DNAJA2 2.430144e-01 0.784640043 0.9999595
## TAPBPL 2.430055e-01 0.784646953 0.9999595
## BTG3 2.429448e-01 0.784694452 0.9999595
## SERTAD1 2.428561e-01 0.784763728 0.9999595
## WWP2 2.428195e-01 0.784792378 0.9999595
## RCE1 2.427916e-01 0.784814175 0.9999595
## MICA 2.426670e-01 0.784911531 0.9999595
## FUOM 2.426508e-01 0.784924211 0.9999595
## ALG9 2.426489e-01 0.784925737 0.9999595
## INCENP 2.426371e-01 0.784934972 0.9999595
## SCRN2 2.426173e-01 0.784950426 0.9999595
## KCNAB3 2.425803e-01 0.784979355 0.9999595
## SNRK 2.424694e-01 0.785066041 0.9999595
## DHX9 2.424613e-01 0.785072388 0.9999595
## GPR160 2.424238e-01 0.785101733 0.9999595
## OBI1 2.424186e-01 0.785105763 0.9999595
## LAT2 2.422979e-01 0.785200188 0.9999595
## TBC1D9B 2.422478e-01 0.785239376 0.9999595
## ARHGAP10 2.421352e-01 0.785327406 0.9999595
## PRH1-TAS2R14 2.421288e-01 0.785332435 0.9999595
## DCP2 2.421175e-01 0.785341304 0.9999595
## PPIG 2.421086e-01 0.785348239 0.9999595
## BCLAF3 2.420818e-01 0.785369199 0.9999595
## PTBP3 2.420744e-01 0.785374975 0.9999595
## DGCR6L 2.420632e-01 0.785383780 0.9999595
## EIF5A 2.419921e-01 0.785439387 0.9999595
## DYM 2.416947e-01 0.785672105 0.9999595
## BLOC1S1 2.416657e-01 0.785694749 0.9999595
## CMTM5 2.416276e-01 0.785724568 0.9999595
## ZC3H11A 2.415462e-01 0.785788273 0.9999595
## DPY19L4 2.415423e-01 0.785791352 0.9999595
## AMPD2 2.412902e-01 0.785988726 0.9999595
## C8orf76 2.412151e-01 0.786047522 0.9999595
## PCGF5 2.409725e-01 0.786237431 0.9999595
## GPX7 2.408461e-01 0.786336446 0.9999595
## ABHD16A 2.408435e-01 0.786338506 0.9999595
## SLC25A13 2.408075e-01 0.786366675 0.9999595
## PEMT 2.407003e-01 0.786450682 0.9999595
## PAQR6 2.406602e-01 0.786482061 0.9999595
## GPR132 2.406320e-01 0.786504193 0.9999595
## SARS2 2.405676e-01 0.786554608 0.9999595
## CLOCK 2.405601e-01 0.786560489 0.9999595
## PEX2 2.405535e-01 0.786565636 0.9999595
## ZER1 2.404862e-01 0.786618345 0.9999595
## SLC25A35 2.404352e-01 0.786658372 0.9999595
## SLC10A3 2.404059e-01 0.786681309 0.9999595
## VARS1 2.403736e-01 0.786706606 0.9999595
## TOR1AIP2 2.403652e-01 0.786713196 0.9999595
## BUD31 2.402960e-01 0.786767400 0.9999595
## ZNF431 2.401597e-01 0.786874236 0.9999595
## MBP 2.401023e-01 0.786919235 0.9999595
## MIGA1 2.400397e-01 0.786968324 0.9999595
## ZBTB16 2.400133e-01 0.786989024 0.9999595
## ADORA3 2.399242e-01 0.787058848 0.9999595
## CPSF3 2.398967e-01 0.787080421 0.9999595
## INVS 2.398603e-01 0.787108916 0.9999595
## TRIM14 2.397533e-01 0.787192831 0.9999595
## NR2C2 2.397319e-01 0.787209645 0.9999595
## ATXN2L 2.397177e-01 0.787220730 0.9999595
## RBM28 2.396281e-01 0.787290997 0.9999595
## ASB13 2.396184e-01 0.787298650 0.9999595
## LRR1 2.392904e-01 0.787555851 0.9999595
## BLOC1S6 2.392775e-01 0.787565974 0.9999595
## C1orf21 2.392495e-01 0.787587968 0.9999595
## PUS1 2.391716e-01 0.787649061 0.9999595
## COQ10B 2.390473e-01 0.787746576 0.9999595
## LOC100289561 2.390098e-01 0.787776060 0.9999595
## CD46 2.389033e-01 0.787859598 0.9999595
## MTHFSD 2.388722e-01 0.787884002 0.9999595
## UBE2K 2.388137e-01 0.787929969 0.9999595
## QPCTL 2.387792e-01 0.787957014 0.9999595
## EIF3I 2.386892e-01 0.788027655 0.9999595
## CCDC61 2.386847e-01 0.788031224 0.9999595
## FCGR2A 2.386564e-01 0.788053418 0.9999595
## BTNL8 2.386266e-01 0.788076813 0.9999595
## ARMC12 2.386071e-01 0.788092111 0.9999595
## STAT3 2.385948e-01 0.788101771 0.9999595
## NRROS 2.385361e-01 0.788147863 0.9999595
## KCMF1 2.384561e-01 0.788210684 0.9999595
## ISY1-RAB43 2.383493e-01 0.788294539 0.9999595
## B3GALT6 2.383178e-01 0.788319229 0.9999595
## TDRD7 2.383053e-01 0.788329051 0.9999595
## PHYH 2.382872e-01 0.788343239 0.9999595
## CCDC9 2.382668e-01 0.788359288 0.9999595
## ICAM1 2.382298e-01 0.788388359 0.9999595
## CRY2 2.381804e-01 0.788427167 0.9999595
## SLC38A9 2.381786e-01 0.788428544 0.9999595
## ABCC2 2.381474e-01 0.788453035 0.9999595
## PBLD 2.380177e-01 0.788554923 0.9999595
## ZNF41 2.379928e-01 0.788574444 0.9999595
## GNG11 2.378979e-01 0.788649001 0.9999595
## ARPC1A 2.378473e-01 0.788688820 0.9999595
## PRPF6 2.375933e-01 0.788888319 0.9999595
## MMGT1 2.374816e-01 0.788976134 0.9999595
## DYRK1A 2.374588e-01 0.788994040 0.9999595
## CES3 2.373863e-01 0.789051042 0.9999595
## ZNF189 2.373024e-01 0.789116969 0.9999595
## TTC38 2.372216e-01 0.789180482 0.9999595
## ECHDC1 2.372096e-01 0.789189892 0.9999595
## ZNF699 2.371553e-01 0.789232636 0.9999595
## BRD4 2.370702e-01 0.789299507 0.9999595
## ZNRD2 2.370495e-01 0.789315837 0.9999595
## ANKIB1 2.369790e-01 0.789371239 0.9999595
## DIP2B 2.369230e-01 0.789415292 0.9999595
## SAP30BP 2.365767e-01 0.789687667 0.9999595
## CUEDC1 2.365289e-01 0.789725226 0.9999595
## ARL6IP5 2.365026e-01 0.789745880 0.9999595
## ZBED6CL 2.364944e-01 0.789752342 0.9999595
## MRFAP1 2.364592e-01 0.789780063 0.9999595
## KPNA5 2.364557e-01 0.789782810 0.9999595
## NAXD 2.362231e-01 0.789965829 0.9999595
## ZNF865 2.361193e-01 0.790047481 0.9999595
## IGF1R 2.360855e-01 0.790074133 0.9999595
## MOG 2.360739e-01 0.790083222 0.9999595
## PNPLA6 2.360732e-01 0.790083809 0.9999595
## CYSLTR1 2.360728e-01 0.790084101 0.9999595
## ZNF367 2.359889e-01 0.790150133 0.9999595
## FOXN3 2.359812e-01 0.790156224 0.9999595
## ALDOA 2.359191e-01 0.790205064 0.9999595
## DNA2 2.356928e-01 0.790383242 0.9999595
## ARSA 2.356557e-01 0.790412431 0.9999595
## HACD2 2.356515e-01 0.790415789 0.9999595
## SNRPB2 2.355309e-01 0.790510701 0.9999595
## COX18 2.354998e-01 0.790535204 0.9999595
## TRAF4 2.354833e-01 0.790548233 0.9999595
## PRR12 2.354045e-01 0.790610260 0.9999595
## CD101 2.353971e-01 0.790616079 0.9999595
## GUCY1A1 2.353546e-01 0.790649591 0.9999595
## FANCI 2.352843e-01 0.790704920 0.9999595
## TTLL3 2.352068e-01 0.790765946 0.9999595
## PEX16 2.350097e-01 0.790921258 0.9999595
## CHCHD1 2.349023e-01 0.791005886 0.9999595
## SPHK2 2.347217e-01 0.791148196 0.9999595
## TMEM9B 2.347205e-01 0.791149105 0.9999595
## ZNF713 2.346582e-01 0.791198236 0.9999595
## PPIF 2.344563e-01 0.791357380 0.9999595
## MARK2 2.344321e-01 0.791376463 0.9999595
## ENKUR 2.343873e-01 0.791411760 0.9999595
## EGFL7 2.342370e-01 0.791530266 0.9999595
## MTOR 2.341290e-01 0.791615446 0.9999595
## TFPI 2.340670e-01 0.791664371 0.9999595
## CEACAM3 2.340277e-01 0.791695310 0.9999595
## SLC35C2 2.338848e-01 0.791808078 0.9999595
## AGTRAP 2.337931e-01 0.791880368 0.9999595
## SETD7 2.337187e-01 0.791939029 0.9999595
## POFUT2 2.337086e-01 0.791947029 0.9999595
## CERCAM 2.334973e-01 0.792113721 0.9999595
## HLA-DPB1 2.334936e-01 0.792116701 0.9999595
## TSFM 2.334768e-01 0.792129906 0.9999595
## FARP2 2.334322e-01 0.792165129 0.9999595
## TUBB6 2.333195e-01 0.792254098 0.9999595
## TMEM199 2.333036e-01 0.792266625 0.9999595
## CCSER2 2.332584e-01 0.792302255 0.9999595
## PTGDR 2.331221e-01 0.792409884 0.9999595
## POLR3H 2.330859e-01 0.792438416 0.9999595
## PCMTD1 2.329959e-01 0.792509517 0.9999595
## PUM1 2.329828e-01 0.792519867 0.9999595
## GZMB 2.329374e-01 0.792555648 0.9999595
## EPHB6 2.329313e-01 0.792560502 0.9999595
## IPMK 2.328688e-01 0.792609832 0.9999595
## C16orf91 2.325426e-01 0.792867428 0.9999595
## QTRT1 2.324632e-01 0.792930197 0.9999595
## RBP7 2.324534e-01 0.792937945 0.9999595
## ADAM10 2.323282e-01 0.793036792 0.9999595
## PIGM 2.323010e-01 0.793058282 0.9999595
## COX8A 2.321400e-01 0.793185547 0.9999595
## HDAC2 2.321021e-01 0.793215438 0.9999595
## SIMC1 2.320129e-01 0.793285963 0.9999595
## MPEG1 2.319371e-01 0.793345878 0.9999595
## ZNF471 2.319371e-01 0.793345883 0.9999595
## S100A4 2.318507e-01 0.793414124 0.9999595
## GCLM 2.318245e-01 0.793434852 0.9999595
## GARS1 2.317664e-01 0.793480807 0.9999595
## IFITM2 2.317079e-01 0.793527008 0.9999595
## CEP55 2.316868e-01 0.793543668 0.9999595
## INO80E 2.316615e-01 0.793563695 0.9999595
## ERG28 2.316481e-01 0.793574316 0.9999595
## SNX11 2.316177e-01 0.793598293 0.9999595
## CCNY 2.315852e-01 0.793624002 0.9999595
## CAPNS1 2.315510e-01 0.793651091 0.9999595
## DUS1L 2.314655e-01 0.793718666 0.9999595
## ASAP1 2.314010e-01 0.793769694 0.9999595
## RPS19BP1 2.313153e-01 0.793837432 0.9999595
## DDX24 2.312260e-01 0.793908092 0.9999595
## GET3 2.312064e-01 0.793923563 0.9999595
## SORD 2.311976e-01 0.793930485 0.9999595
## ERCC2 2.311867e-01 0.793939146 0.9999595
## DUSP1 2.311700e-01 0.793952314 0.9999595
## FGFR1OP2 2.311228e-01 0.793989714 0.9999595
## LEO1 2.311154e-01 0.793995564 0.9999595
## ERBB2 2.310336e-01 0.794060229 0.9999595
## INSIG2 2.310047e-01 0.794083118 0.9999595
## CITED2 2.309668e-01 0.794113128 0.9999595
## ABCC6 2.308832e-01 0.794179233 0.9999595
## DNAJC30 2.308256e-01 0.794224785 0.9999595
## JMJD4 2.307548e-01 0.794280800 0.9999595
## TIMM50 2.307275e-01 0.794302424 0.9999595
## CDK4 2.307151e-01 0.794312233 0.9999595
## HTD2 2.306850e-01 0.794336027 0.9999595
## MTRNR2L6 2.306389e-01 0.794372556 0.9999595
## OXR1 2.306382e-01 0.794373106 0.9999595
## MOAP1 2.306165e-01 0.794390282 0.9999595
## TGFBI 2.303395e-01 0.794609537 0.9999595
## SAMD8 2.303132e-01 0.794630339 0.9999595
## ISYNA1 2.302696e-01 0.794664841 0.9999595
## MAP3K20 2.302227e-01 0.794701962 0.9999595
## TAOK3 2.301850e-01 0.794731856 0.9999595
## AMN1 2.301591e-01 0.794752369 0.9999595
## DOCK3 2.300814e-01 0.794813821 0.9999595
## ANO5 2.300021e-01 0.794876626 0.9999595
## FRAT1 2.299458e-01 0.794921262 0.9999595
## MITF 2.298282e-01 0.795014328 0.9999595
## MAPK11 2.298146e-01 0.795025158 0.9999595
## CUZD1 2.297975e-01 0.795038647 0.9999595
## MKI67 2.297302e-01 0.795091980 0.9999595
## BRD9 2.296681e-01 0.795141142 0.9999595
## KMT5B 2.296100e-01 0.795187178 0.9999595
## ARMC2 2.295686e-01 0.795220015 0.9999595
## MRPS14 2.295286e-01 0.795251678 0.9999595
## STEAP3 2.293858e-01 0.795364797 0.9999595
## LRP8 2.293101e-01 0.795424792 0.9999595
## TRMU 2.292586e-01 0.795465648 0.9999595
## TXNIP 2.292415e-01 0.795479192 0.9999595
## PREP 2.292120e-01 0.795502569 0.9999595
## CSNK2B 2.292029e-01 0.795509805 0.9999595
## SKA1 2.289607e-01 0.795701736 0.9999595
## KDELR1 2.289023e-01 0.795748012 0.9999595
## EP300 2.288138e-01 0.795818167 0.9999595
## ATP2A2 2.287452e-01 0.795872622 0.9999595
## PSMA1 2.287146e-01 0.795896891 0.9999595
## MINDY1 2.285400e-01 0.796035314 0.9999595
## PRIM2 2.283845e-01 0.796158642 0.9999595
## PELI1 2.283145e-01 0.796214160 0.9999595
## CRYZ 2.282025e-01 0.796303014 0.9999595
## MLLT11 2.280333e-01 0.796437232 0.9999595
## UNC45A 2.280226e-01 0.796445754 0.9999595
## GEMIN5 2.280122e-01 0.796454032 0.9999595
## BIVM 2.279975e-01 0.796465639 0.9999595
## CD244 2.279380e-01 0.796512880 0.9999595
## PPP6R3 2.278404e-01 0.796590313 0.9999595
## SEC14L2 2.278153e-01 0.796610261 0.9999595
## STK17B 2.277933e-01 0.796627716 0.9999595
## PPM1B 2.277828e-01 0.796636015 0.9999595
## DCTN1 2.277116e-01 0.796692525 0.9999595
## TRAPPC11 2.276826e-01 0.796715614 0.9999595
## EIF3G 2.275105e-01 0.796852191 0.9999595
## AIFM2 2.274506e-01 0.796899727 0.9999595
## CRAMP1 2.274460e-01 0.796903429 0.9999595
## GNL1 2.273937e-01 0.796944892 0.9999595
## DNPEP 2.273724e-01 0.796961820 0.9999595
## PACS2 2.273588e-01 0.796972642 0.9999595
## CCNA2 2.273497e-01 0.796979836 0.9999595
## C6orf120 2.272740e-01 0.797039976 0.9999595
## SLC27A1 2.271578e-01 0.797132267 0.9999595
## TMEM35B 2.271541e-01 0.797135216 0.9999595
## FNTA 2.271365e-01 0.797149148 0.9999595
## MTHFD2 2.271178e-01 0.797164019 0.9999595
## DARS2 2.271148e-01 0.797166365 0.9999595
## HECTD1 2.270161e-01 0.797244755 0.9999595
## ASCC1 2.269735e-01 0.797278603 0.9999595
## IFTAP 2.269569e-01 0.797291829 0.9999595
## ZNF493 2.269179e-01 0.797322785 0.9999595
## PARP6 2.268996e-01 0.797337305 0.9999595
## TNKS2 2.268299e-01 0.797392715 0.9999595
## CEP170 2.268095e-01 0.797408879 0.9999595
## COA1 2.267155e-01 0.797483557 0.9999595
## TMEM161B 2.266863e-01 0.797506791 0.9999595
## NUP133 2.266300e-01 0.797551539 0.9999595
## ARPC5 2.265241e-01 0.797635695 0.9999595
## ZBTB33 2.265119e-01 0.797645348 0.9999595
## TGFBR1 2.264753e-01 0.797674414 0.9999595
## SAP18 2.264666e-01 0.797681345 0.9999595
## PIAS1 2.263834e-01 0.797747466 0.9999595
## ULK1 2.262520e-01 0.797851943 0.9999595
## NAA38 2.262362e-01 0.797864505 0.9999595
## LRP10 2.261554e-01 0.797928702 0.9999595
## CACYBP 2.261318e-01 0.797947500 0.9999595
## TLCD4 2.261116e-01 0.797963553 0.9999595
## TWF1 2.260505e-01 0.798012089 0.9999595
## UBXN4 2.260472e-01 0.798014704 0.9999595
## EID2 2.260063e-01 0.798047271 0.9999595
## DUSP3 2.259950e-01 0.798056277 0.9999595
## CCDC106 2.259644e-01 0.798080595 0.9999595
## TARS2 2.258456e-01 0.798175047 0.9999595
## CASTOR1 2.256728e-01 0.798312434 0.9999595
## DHX38 2.256251e-01 0.798350396 0.9999595
## SNX10 2.255624e-01 0.798400242 0.9999595
## ITCH 2.255060e-01 0.798445150 0.9999595
## FADS3 2.254878e-01 0.798459628 0.9999595
## CCR3 2.254599e-01 0.798481827 0.9999595
## MFSD4B 2.253564e-01 0.798564140 0.9999595
## MAB21L3 2.253561e-01 0.798564360 0.9999595
## CTSC 2.253194e-01 0.798593629 0.9999595
## CSTF2T 2.252762e-01 0.798627937 0.9999595
## RASGRP2 2.251703e-01 0.798712205 0.9999595
## SLC38A1 2.251138e-01 0.798757184 0.9999595
## CPTP 2.251135e-01 0.798757479 0.9999595
## PEAK1 2.250952e-01 0.798772009 0.9999595
## MED27 2.250802e-01 0.798783942 0.9999595
## M1AP 2.250477e-01 0.798809789 0.9999595
## TMEM71 2.249884e-01 0.798856992 0.9999595
## IGIP 2.249882e-01 0.798857179 0.9999595
## SLBP 2.249504e-01 0.798887228 0.9999595
## TUBA4A 2.248667e-01 0.798953849 0.9999595
## ZBTB2 2.246038e-01 0.799163189 0.9999595
## UCHL5 2.245741e-01 0.799186781 0.9999595
## CLEC1B 2.245621e-01 0.799196340 0.9999595
## PRXL2A 2.245036e-01 0.799242978 0.9999595
## WDR92 2.244862e-01 0.799256778 0.9999595
## ZNF665 2.244328e-01 0.799299333 0.9999595
## PIK3R3 2.243784e-01 0.799342689 0.9999595
## LOC643802 2.242311e-01 0.799459979 0.9999595
## ATXN1L 2.241392e-01 0.799533190 0.9999595
## OSBPL2 2.239983e-01 0.799645463 0.9999595
## TNNI2 2.239827e-01 0.799657822 0.9999595
## POC1B 2.239743e-01 0.799664572 0.9999595
## DEK 2.239615e-01 0.799674727 0.9999595
## TMED4 2.238984e-01 0.799724987 0.9999595
## RNF6 2.237816e-01 0.799818105 0.9999595
## FUT4 2.237297e-01 0.799859463 0.9999595
## NUP153 2.236932e-01 0.799888543 0.9999595
## TBC1D13 2.236864e-01 0.799893960 0.9999595
## UBQLN2 2.235820e-01 0.799977156 0.9999595
## PCNX2 2.235468e-01 0.800005213 0.9999595
## ZNF91 2.235327e-01 0.800016428 0.9999595
## PELI2 2.235239e-01 0.800023475 0.9999595
## UBA7 2.234486e-01 0.800083520 0.9999595
## ICAM3 2.234094e-01 0.800114721 0.9999595
## CASS4 2.233659e-01 0.800149440 0.9999595
## UPF2 2.232208e-01 0.800265112 0.9999595
## PIGV 2.231796e-01 0.800298002 0.9999595
## CLEC16A 2.231622e-01 0.800311830 0.9999595
## TTYH3 2.231131e-01 0.800351026 0.9999595
## RNASEH2B 2.230965e-01 0.800364221 0.9999595
## CHRNA2 2.230320e-01 0.800415696 0.9999595
## NDUFA6 2.230105e-01 0.800432819 0.9999595
## NAA25 2.229485e-01 0.800482258 0.9999595
## RNPS1 2.228871e-01 0.800531246 0.9999595
## NADSYN1 2.228458e-01 0.800564166 0.9999595
## TRIM26 2.227082e-01 0.800673913 0.9999595
## FPR1 2.227027e-01 0.800678320 0.9999595
## LTBP4 2.226893e-01 0.800689031 0.9999595
## DNAJB2 2.226719e-01 0.800702931 0.9999595
## KIAA0232 2.226096e-01 0.800752634 0.9999595
## SEMA3B 2.225356e-01 0.800811663 0.9999595
## NFKB2 2.223680e-01 0.800945366 0.9999595
## VPS9D1 2.223415e-01 0.800966514 0.9999595
## SHMT1 2.222397e-01 0.801047809 0.9999595
## TOX2 2.222163e-01 0.801066445 0.9999595
## LRRC4 2.220855e-01 0.801170853 0.9999595
## TMEM79 2.220350e-01 0.801211166 0.9999595
## ZDHHC5 2.220347e-01 0.801211386 0.9999595
## TRAPPC13 2.219565e-01 0.801273806 0.9999595
## LITAF 2.218917e-01 0.801325547 0.9999595
## PDZD11 2.217812e-01 0.801413786 0.9999595
## ZPR1 2.216988e-01 0.801479612 0.9999595
## TTC22 2.216526e-01 0.801516459 0.9999595
## IBTK 2.216081e-01 0.801552002 0.9999595
## AP2A1 2.215417e-01 0.801605092 0.9999595
## ATXN7 2.213943e-01 0.801722775 0.9999595
## UNKL 2.212216e-01 0.801860792 0.9999595
## SIGIRR 2.212150e-01 0.801866034 0.9999595
## ATG10 2.212066e-01 0.801872774 0.9999595
## IDS 2.211888e-01 0.801886954 0.9999595
## TSTD3 2.210927e-01 0.801963769 0.9999595
## DNAJB1 2.209469e-01 0.802080297 0.9999595
## BBOF1 2.208980e-01 0.802119333 0.9999595
## RHOBTB3 2.207205e-01 0.802261257 0.9999595
## MIF 2.207040e-01 0.802274458 0.9999595
## EIF5B 2.206223e-01 0.802339708 0.9999595
## AKIP1 2.205292e-01 0.802414164 0.9999595
## MAP2K4 2.205230e-01 0.802419146 0.9999595
## MED14 2.204764e-01 0.802456386 0.9999595
## POLR2A 2.204428e-01 0.802483269 0.9999595
## FBXO44 2.204268e-01 0.802496041 0.9999595
## PTAR1 2.204014e-01 0.802516359 0.9999595
## TBC1D20 2.203950e-01 0.802521500 0.9999595
## TMEM87A 2.201995e-01 0.802677775 0.9999595
## MEA1 2.201979e-01 0.802679073 0.9999595
## ZFP36L1 2.201931e-01 0.802682941 0.9999595
## NTSR1 2.201610e-01 0.802708606 0.9999595
## BCL10 2.201480e-01 0.802718993 0.9999595
## FDPS 2.201085e-01 0.802750626 0.9999595
## METTL3 2.199733e-01 0.802858735 0.9999595
## NUTM2D 2.199515e-01 0.802876195 0.9999595
## ZNF362 2.197809e-01 0.803012650 0.9999595
## KBTBD3 2.196361e-01 0.803128515 0.9999595
## DRG1 2.195707e-01 0.803180834 0.9999595
## B3GALNT2 2.195464e-01 0.803200344 0.9999595
## PHAX 2.195124e-01 0.803227490 0.9999595
## NAPA 2.194362e-01 0.803288488 0.9999595
## NF1 2.193020e-01 0.803395906 0.9999595
## HDAC9 2.192580e-01 0.803431153 0.9999595
## PIGF 2.192194e-01 0.803462083 0.9999595
## CTSZ 2.191707e-01 0.803501089 0.9999595
## TMEM236 2.191101e-01 0.803549603 0.9999595
## ATP5MC3 2.190902e-01 0.803565541 0.9999595
## PARD6A 2.190116e-01 0.803628448 0.9999595
## CCNH 2.189700e-01 0.803661732 0.9999595
## MPG 2.188143e-01 0.803786475 0.9999595
## CAPN10 2.187595e-01 0.803830334 0.9999595
## FRRS1L 2.186389e-01 0.803926934 0.9999595
## ZNF343 2.186215e-01 0.803940899 0.9999595
## FANCF 2.186145e-01 0.803946459 0.9999595
## SNRPE 2.185826e-01 0.803972005 0.9999595
## RFC4 2.185797e-01 0.803974343 0.9999595
## ITGAD 2.185651e-01 0.803986084 0.9999595
## ABTB2 2.185291e-01 0.804014934 0.9999595
## ATP5PD 2.184911e-01 0.804045300 0.9999595
## WAS 2.184500e-01 0.804078229 0.9999595
## CFAP45 2.184139e-01 0.804107194 0.9999595
## MROH1 2.182447e-01 0.804242738 0.9999595
## SPATA7 2.181967e-01 0.804281266 0.9999595
## CCDC102A 2.181209e-01 0.804342001 0.9999595
## DOK1 2.179758e-01 0.804458260 0.9999595
## SLC38A7 2.179672e-01 0.804465164 0.9999595
## TMEM167B 2.179269e-01 0.804497490 0.9999595
## FAM214A 2.179049e-01 0.804515121 0.9999595
## EDEM2 2.178925e-01 0.804525080 0.9999595
## TTC23 2.177335e-01 0.804652529 0.9999595
## PSMB2 2.177015e-01 0.804678166 0.9999595
## GNB5 2.176955e-01 0.804682992 0.9999595
## SLC43A2 2.176867e-01 0.804690072 0.9999595
## RSBN1L 2.176595e-01 0.804711889 0.9999595
## SMIM24 2.175437e-01 0.804804750 0.9999595
## CEACAM6 2.175097e-01 0.804831959 0.9999595
## ACAT2 2.174679e-01 0.804865511 0.9999595
## WDR48 2.174582e-01 0.804873316 0.9999595
## SLC40A1 2.174089e-01 0.804912810 0.9999595
## ARCN1 2.173626e-01 0.804949942 0.9999595
## GIMAP6 2.172767e-01 0.805018901 0.9999595
## CD2BP2 2.172077e-01 0.805074208 0.9999595
## ST3GAL4 2.171925e-01 0.805086433 0.9999595
## DCPS 2.169922e-01 0.805247150 0.9999595
## RCC2 2.166965e-01 0.805484389 0.9999595
## CIAPIN1 2.165229e-01 0.805623800 0.9999595
## RPL8 2.164916e-01 0.805648896 0.9999595
## HIRA 2.163729e-01 0.805744221 0.9999595
## POLR2J3 2.162789e-01 0.805819659 0.9999595
## GRPEL1 2.162003e-01 0.805882804 0.9999595
## CC2D1B 2.161236e-01 0.805944375 0.9999595
## VRK1 2.161101e-01 0.805955238 0.9999595
## FAM193A 2.160950e-01 0.805967382 0.9999595
## DNAJA1 2.158805e-01 0.806139632 0.9999595
## CSNK1G3 2.158396e-01 0.806172529 0.9999595
## CD163 2.157749e-01 0.806224488 0.9999595
## PDPK1 2.156768e-01 0.806303290 0.9999595
## CYP4V2 2.153131e-01 0.806595575 0.9999595
## B3GAT1 2.153124e-01 0.806596123 0.9999595
## IRAK1 2.152767e-01 0.806624808 0.9999595
## RRM2B 2.150850e-01 0.806778920 0.9999595
## DOCK5 2.150267e-01 0.806825768 0.9999595
## PDCD2L 2.149923e-01 0.806853399 0.9999595
## VNN3 2.148305e-01 0.806983521 0.9999595
## TSC22D2 2.148222e-01 0.806990188 0.9999595
## BABAM2 2.147879e-01 0.807017754 0.9999595
## CSF1R 2.147656e-01 0.807035721 0.9999595
## UTP15 2.146398e-01 0.807136894 0.9999595
## H1-2 2.145820e-01 0.807183367 0.9999595
## FAS 2.145802e-01 0.807184840 0.9999595
## TMEM203 2.144526e-01 0.807287448 0.9999595
## ZNF440 2.143273e-01 0.807388291 0.9999595
## CYTH1 2.142378e-01 0.807460289 0.9999595
## ZC3H10 2.142266e-01 0.807469282 0.9999595
## UHRF2 2.141861e-01 0.807501882 0.9999595
## PLXNC1 2.141839e-01 0.807503643 0.9999595
## GNA13 2.141807e-01 0.807506260 0.9999595
## DHX30 2.141548e-01 0.807527082 0.9999595
## ST8SIA4 2.141519e-01 0.807529387 0.9999595
## SH3PXD2B 2.141294e-01 0.807547519 0.9999595
## VIL1 2.141197e-01 0.807555339 0.9999595
## HSD17B4 2.140813e-01 0.807586260 0.9999595
## ZNF814 2.140259e-01 0.807630846 0.9999595
## PIK3C2A 2.138389e-01 0.807781358 0.9999595
## TPR 2.138079e-01 0.807806295 0.9999595
## DHRS1 2.138034e-01 0.807809899 0.9999595
## UBE2D4 2.137906e-01 0.807820206 0.9999595
## ALKBH3 2.137891e-01 0.807821379 0.9999595
## CD7 2.137785e-01 0.807829971 0.9999595
## KLRF1 2.137534e-01 0.807850172 0.9999595
## CCNL2 2.137458e-01 0.807856296 0.9999595
## SSBP4 2.136679e-01 0.807918947 0.9999595
## FBXO33 2.136575e-01 0.807927370 0.9999595
## LOC100133315 2.136383e-01 0.807942830 0.9999595
## ZFP14 2.135864e-01 0.807984613 0.9999595
## RPL37A 2.135206e-01 0.808037562 0.9999595
## FGFBP2 2.134935e-01 0.808059401 0.9999595
## ZW10 2.134479e-01 0.808096154 0.9999595
## LPP 2.133378e-01 0.808184823 0.9999595
## MGME1 2.132957e-01 0.808218705 0.9999595
## DNM2 2.132284e-01 0.808272922 0.9999595
## KRBA1 2.131111e-01 0.808367405 0.9999595
## SOWAHC 2.131065e-01 0.808371056 0.9999595
## PROK2 2.130618e-01 0.808407126 0.9999595
## TMTC3 2.130564e-01 0.808411472 0.9999595
## RSAD2 2.130272e-01 0.808434952 0.9999595
## CDK8 2.130176e-01 0.808442742 0.9999595
## SRP19 2.129277e-01 0.808515150 0.9999595
## ZNF276 2.128884e-01 0.808546790 0.9999595
## FBXO17 2.128816e-01 0.808552246 0.9999595
## LMO4 2.128736e-01 0.808558706 0.9999595
## VPS13C 2.128483e-01 0.808579145 0.9999595
## PRPF8 2.128279e-01 0.808595587 0.9999595
## PSMB3 2.128145e-01 0.808606315 0.9999595
## TNNC2 2.127984e-01 0.808619318 0.9999595
## CD300A 2.126546e-01 0.808735179 0.9999595
## ZNF821 2.126535e-01 0.808736112 0.9999595
## SLC25A6 2.126485e-01 0.808740129 0.9999595
## NUP107 2.126086e-01 0.808772269 0.9999595
## ZKSCAN4 2.125886e-01 0.808788391 0.9999595
## CYB561D2 2.125885e-01 0.808788476 0.9999595
## PCBP1 2.125482e-01 0.808820925 0.9999595
## ZSCAN5A 2.124558e-01 0.808895402 0.9999595
## ZNF816 2.124514e-01 0.808898977 0.9999595
## FAM78A 2.124429e-01 0.808905825 0.9999595
## TAF3 2.124181e-01 0.808925784 0.9999595
## NME3 2.124133e-01 0.808929708 0.9999595
## ARHGAP11A 2.123971e-01 0.808942749 0.9999595
## RAB35 2.123817e-01 0.808955142 0.9999595
## TCP1 2.123367e-01 0.808991466 0.9999595
## TOE1 2.122123e-01 0.809091740 0.9999595
## UQCRHL 2.121716e-01 0.809124589 0.9999595
## DRC7 2.121675e-01 0.809127851 0.9999595
## DHX34 2.121520e-01 0.809140341 0.9999595
## KLHL8 2.119789e-01 0.809279947 0.9999595
## EOMES 2.118724e-01 0.809365824 0.9999595
## CABLES2 2.118444e-01 0.809388407 0.9999595
## R3HDM2 2.118400e-01 0.809391947 0.9999595
## TXNL4A 2.118150e-01 0.809412121 0.9999595
## FAHD2B 2.115546e-01 0.809622232 0.9999595
## JUNB 2.114679e-01 0.809692145 0.9999595
## ARL2BP 2.114137e-01 0.809735860 0.9999595
## CSTA 2.114092e-01 0.809739495 0.9999595
## GPBP1L1 2.113579e-01 0.809780928 0.9999595
## MTHFR 2.109499e-01 0.810110201 0.9999595
## MSI2 2.109386e-01 0.810119349 0.9999595
## ZDHHC14 2.109227e-01 0.810132196 0.9999595
## SEMA6B 2.109128e-01 0.810140159 0.9999595
## RDH10 2.108612e-01 0.810181879 0.9999595
## BORA 2.108002e-01 0.810231083 0.9999595
## PHIP 2.106389e-01 0.810361352 0.9999595
## ARHGAP30 2.106113e-01 0.810383612 0.9999595
## E2F3 2.105974e-01 0.810394877 0.9999595
## RBM41 2.104819e-01 0.810488160 0.9999595
## SHISA5 2.104733e-01 0.810495083 0.9999595
## RRAGD 2.104264e-01 0.810532980 0.9999595
## TMEM132D 2.103777e-01 0.810572299 0.9999595
## GALE 2.102998e-01 0.810635253 0.9999595
## REEP4 2.102692e-01 0.810659929 0.9999595
## FXR1 2.102206e-01 0.810699200 0.9999595
## FANCM 2.101731e-01 0.810737594 0.9999595
## ELAVL1 2.099670e-01 0.810904129 0.9999595
## LOXL2 2.099231e-01 0.810939607 0.9999595
## CDK2AP2 2.098712e-01 0.810981532 0.9999595
## YIF1B 2.098626e-01 0.810988486 0.9999595
## RAB3B 2.098357e-01 0.811010221 0.9999595
## ODC1 2.097830e-01 0.811052835 0.9999595
## SNF8 2.097725e-01 0.811061316 0.9999595
## PRPF38B 2.097710e-01 0.811062546 0.9999595
## TMEM126A 2.097658e-01 0.811066715 0.9999595
## AP3S1 2.096630e-01 0.811149875 0.9999595
## PADI2 2.096615e-01 0.811151050 0.9999595
## NOC3L 2.094844e-01 0.811294223 0.9999595
## DOCK11 2.094017e-01 0.811361062 0.9999595
## LIME1 2.093633e-01 0.811392127 0.9999595
## ZNF574 2.093358e-01 0.811414353 0.9999595
## OGDH 2.091525e-01 0.811562648 0.9999595
## SUMO3 2.090728e-01 0.811627115 0.9999595
## XPO6 2.090383e-01 0.811655025 0.9999595
## TBRG1 2.085328e-01 0.812063991 0.9999595
## PLK3 2.085256e-01 0.812069832 0.9999595
## MAP4K1 2.084854e-01 0.812102326 0.9999595
## NOL7 2.084789e-01 0.812107621 0.9999595
## FAM227A 2.084767e-01 0.812109381 0.9999595
## FNBP4 2.083690e-01 0.812196588 0.9999595
## KAT14 2.083372e-01 0.812222296 0.9999595
## SYNJ2 2.083005e-01 0.812252034 0.9999595
## TBK1 2.081706e-01 0.812357176 0.9999595
## ASCL2 2.081621e-01 0.812364036 0.9999595
## TMED7 2.080256e-01 0.812474534 0.9999595
## CD99 2.080061e-01 0.812490375 0.9999595
## ZBED3 2.079959e-01 0.812498581 0.9999595
## ALS2 2.079550e-01 0.812531743 0.9999595
## VDAC3 2.079479e-01 0.812537448 0.9999595
## MOB3C 2.079220e-01 0.812558440 0.9999595
## SIDT1 2.079128e-01 0.812565930 0.9999595
## TEX264 2.078494e-01 0.812617227 0.9999595
## CDH23 2.078382e-01 0.812626302 0.9999595
## CRACDL 2.077963e-01 0.812660252 0.9999595
## RHOB 2.075610e-01 0.812850804 0.9999595
## SLC25A22 2.075569e-01 0.812854190 0.9999595
## MRPL11 2.075518e-01 0.812858308 0.9999595
## FMNL1 2.073791e-01 0.812998169 0.9999595
## CPSF6 2.073553e-01 0.813017511 0.9999595
## TRIM68 2.073009e-01 0.813061563 0.9999595
## CD300LF 2.072981e-01 0.813063867 0.9999595
## SRSF1 2.072704e-01 0.813086300 0.9999595
## TNFAIP6 2.072600e-01 0.813094734 0.9999595
## ARHGEF3 2.071990e-01 0.813144153 0.9999595
## MTRNR2L4 2.071599e-01 0.813175826 0.9999595
## IL1RL1 2.070197e-01 0.813289460 0.9999595
## GPD1L 2.069671e-01 0.813332058 0.9999595
## CSGALNACT2 2.069412e-01 0.813353042 0.9999595
## NSRP1 2.069231e-01 0.813367758 0.9999595
## TBC1D9 2.069130e-01 0.813375903 0.9999595
## YME1L1 2.068384e-01 0.813436388 0.9999595
## TMX2 2.067502e-01 0.813507940 0.9999595
## GIMAP7 2.066131e-01 0.813619098 0.9999595
## RNMT 2.065034e-01 0.813708036 0.9999595
## NMI 2.064607e-01 0.813742628 0.9999595
## ZBTB37 2.064507e-01 0.813750808 0.9999595
## TGFB3 2.064297e-01 0.813767773 0.9999595
## HSCB 2.063965e-01 0.813794756 0.9999595
## SLC11A2 2.063584e-01 0.813825627 0.9999595
## GLMP 2.062858e-01 0.813884501 0.9999595
## AMDHD2 2.061903e-01 0.813962018 0.9999595
## SPTBN2 2.061645e-01 0.813982893 0.9999595
## DDX58 2.060532e-01 0.814073249 0.9999595
## PTP4A2 2.060068e-01 0.814110832 0.9999595
## RPS28 2.059935e-01 0.814121629 0.9999595
## ZNF219 2.058981e-01 0.814199067 0.9999595
## AHCYL2 2.058826e-01 0.814211649 0.9999595
## RREB1 2.058677e-01 0.814223710 0.9999595
## EXOC8 2.058494e-01 0.814238609 0.9999595
## SMIM41 2.057783e-01 0.814296303 0.9999595
## RIC8A 2.057165e-01 0.814346404 0.9999595
## NPL 2.056523e-01 0.814398566 0.9999595
## ATP5F1B 2.056485e-01 0.814401617 0.9999595
## POLR1B 2.056056e-01 0.814436474 0.9999595
## ZNF208 2.055003e-01 0.814521937 0.9999595
## VAV3 2.054721e-01 0.814544776 0.9999595
## NCOA1 2.054599e-01 0.814554677 0.9999595
## UBR2 2.054493e-01 0.814563361 0.9999595
## UBXN8 2.053702e-01 0.814627519 0.9999595
## CTSG 2.053519e-01 0.814642428 0.9999595
## POLR2I 2.052259e-01 0.814744669 0.9999595
## UPK3B 2.052189e-01 0.814750413 0.9999595
## CENPX 2.051920e-01 0.814772264 0.9999595
## TNFRSF1B 2.051881e-01 0.814775399 0.9999595
## PDK3 2.051796e-01 0.814782307 0.9999595
## MASTL 2.049219e-01 0.814991597 0.9999595
## GUK1 2.049133e-01 0.814998543 0.9999595
## SGTA 2.048978e-01 0.815011151 0.9999595
## DENND1A 2.047061e-01 0.815166892 0.9999595
## PTPRCAP 2.046019e-01 0.815251588 0.9999595
## ARMC10 2.045538e-01 0.815290607 0.9999595
## TREM1 2.045311e-01 0.815309047 0.9999595
## LCOR 2.045010e-01 0.815333536 0.9999595
## PRSS23 2.044627e-01 0.815364661 0.9999595
## KCNS1 2.043709e-01 0.815439232 0.9999595
## PIK3R1 2.042916e-01 0.815503701 0.9999595
## FAM219A 2.042819e-01 0.815511577 0.9999595
## CENPT 2.042694e-01 0.815521770 0.9999595
## CLPB 2.042481e-01 0.815539091 0.9999595
## ZNF114 2.040642e-01 0.815688526 0.9999595
## ZNF397 2.040624e-01 0.815690025 0.9999595
## CEP290 2.040061e-01 0.815735772 0.9999595
## ABCD1 2.038810e-01 0.815837538 0.9999595
## MAP4K2 2.038615e-01 0.815853369 0.9999595
## HLA-DPA1 2.038595e-01 0.815854969 0.9999595
## GUCD1 2.035866e-01 0.816076937 0.9999595
## ABI2 2.035545e-01 0.816103004 0.9999595
## SLC66A3 2.034506e-01 0.816187515 0.9999595
## IARS1 2.034434e-01 0.816193412 0.9999595
## MECR 2.033679e-01 0.816254859 0.9999595
## NHLH1 2.033147e-01 0.816298086 0.9999595
## TIAM1 2.033002e-01 0.816309922 0.9999595
## PPP4R1 2.032540e-01 0.816347488 0.9999595
## PIM3 2.032229e-01 0.816372800 0.9999595
## YARS2 2.031640e-01 0.816420691 0.9999595
## NOP14 2.031396e-01 0.816440565 0.9999595
## USP38 2.031382e-01 0.816441745 0.9999595
## RTL8A 2.030460e-01 0.816516738 0.9999595
## ADRM1 2.030374e-01 0.816523738 0.9999595
## PACC1 2.029788e-01 0.816571476 0.9999595
## AKT1 2.029216e-01 0.816618011 0.9999595
## RAB5C 2.028460e-01 0.816679558 0.9999595
## SDF2 2.027746e-01 0.816737652 0.9999595
## STAT6 2.027588e-01 0.816750496 0.9999595
## RNF19B 2.026686e-01 0.816823953 0.9999595
## PSMG3 2.026513e-01 0.816838043 0.9999595
## ZNRF1 2.026481e-01 0.816840609 0.9999595
## DCAF15 2.025958e-01 0.816883203 0.9999595
## FKBPL 2.025611e-01 0.816911484 0.9999595
## SFSWAP 2.024823e-01 0.816975593 0.9999595
## SLC39A13 2.024734e-01 0.816982886 0.9999595
## POU2F1 2.022761e-01 0.817143544 0.9999595
## CALCOCO1 2.022132e-01 0.817194803 0.9999595
## EXO5 2.020896e-01 0.817295431 0.9999595
## EXOSC1 2.020517e-01 0.817326326 0.9999595
## SSX2IP 2.020095e-01 0.817360690 0.9999595
## WDR37 2.019994e-01 0.817368900 0.9999595
## H2BC12 2.019458e-01 0.817412573 0.9999595
## FZD2 2.019429e-01 0.817414917 0.9999595
## ZBTB7A 2.019081e-01 0.817443274 0.9999595
## GDI2 2.019067e-01 0.817444454 0.9999595
## SIAH1 2.018562e-01 0.817485563 0.9999595
## DENND6A 2.017743e-01 0.817552285 0.9999595
## C17orf113 2.017187e-01 0.817597668 0.9999595
## SNTB1 2.016440e-01 0.817658512 0.9999595
## CIR1 2.015925e-01 0.817700501 0.9999595
## FKBP9 2.015386e-01 0.817744440 0.9999595
## PSMD4 2.015060e-01 0.817770971 0.9999595
## SETD4 2.013975e-01 0.817859402 0.9999595
## WDR83OS 2.013380e-01 0.817907927 0.9999595
## SRGAP2B 2.012983e-01 0.817940254 0.9999595
## PAPOLA 2.012699e-01 0.817963465 0.9999595
## RFWD3 2.011908e-01 0.818027924 0.9999595
## MAP4K4 2.011491e-01 0.818061913 0.9999595
## PPIL2 2.011216e-01 0.818084351 0.9999595
## TIMP1 2.010817e-01 0.818116875 0.9999595
## RAP1GAP2 2.010646e-01 0.818130828 0.9999595
## BLM 2.009722e-01 0.818206207 0.9999595
## FOXO1 2.009450e-01 0.818228359 0.9999595
## TP53I13 2.008899e-01 0.818273310 0.9999595
## APAF1 2.008319e-01 0.818320629 0.9999595
## CLCN3 2.007834e-01 0.818360166 0.9999595
## RPGR 2.007677e-01 0.818373009 0.9999595
## ACO1 2.006380e-01 0.818478766 0.9999595
## SLC25A26 2.005869e-01 0.818520459 0.9999595
## DPM1 2.004345e-01 0.818644781 0.9999595
## TMEM65 2.004098e-01 0.818664978 0.9999595
## ATG101 2.003699e-01 0.818697548 0.9999595
## LOXL1 2.003254e-01 0.818733823 0.9999595
## TIGD2 2.002926e-01 0.818760594 0.9999595
## SPHK1 2.002204e-01 0.818819527 0.9999595
## TTF1 2.000724e-01 0.818940305 0.9999595
## TMEM265 1.999400e-01 0.819048356 0.9999595
## GOLT1B 1.999100e-01 0.819072865 0.9999595
## ZNF253 1.996841e-01 0.819257339 0.9999595
## PPP2R1B 1.996174e-01 0.819311834 0.9999595
## ARMT1 1.995771e-01 0.819344736 0.9999595
## TMEM163 1.995442e-01 0.819371557 0.9999595
## CLDND1 1.993646e-01 0.819518307 0.9999595
## SLC2A13 1.993028e-01 0.819568753 0.9999595
## RRP36 1.992227e-01 0.819634207 0.9999595
## PLAA 1.992074e-01 0.819646704 0.9999595
## ACTR3 1.991980e-01 0.819654339 0.9999595
## SURF1 1.991397e-01 0.819702032 0.9999595
## CYFIP1 1.991258e-01 0.819713318 0.9999595
## KXD1 1.990165e-01 0.819802627 0.9999595
## CLEC1A 1.990081e-01 0.819809559 0.9999595
## UBTD1 1.989906e-01 0.819823833 0.9999595
## FBXO5 1.989178e-01 0.819883320 0.9999595
## BRPF1 1.988269e-01 0.819957589 0.9999595
## FBXO25 1.987314e-01 0.820035632 0.9999595
## E2F1 1.986583e-01 0.820095390 0.9999595
## EYA3 1.986497e-01 0.820102440 0.9999595
## RBM48 1.986495e-01 0.820102592 0.9999595
## ATP5MF 1.985215e-01 0.820207266 0.9999595
## ARL8A 1.985169e-01 0.820210978 0.9999595
## COG3 1.985134e-01 0.820213890 0.9999595
## ZNF131 1.983312e-01 0.820362791 0.9999595
## AGPAT1 1.982690e-01 0.820413721 0.9999595
## SLC19A1 1.982674e-01 0.820414977 0.9999595
## CPEB4 1.982253e-01 0.820449413 0.9999595
## ANXA7 1.981127e-01 0.820541498 0.9999595
## YTHDC2 1.980932e-01 0.820557499 0.9999595
## FUBP3 1.979007e-01 0.820714917 0.9999595
## COMMD8 1.978674e-01 0.820742193 0.9999595
## DXO 1.975374e-01 0.821012162 0.9999595
## CD151 1.975343e-01 0.821014684 0.9999595
## QRICH1 1.975213e-01 0.821025347 0.9999595
## PAN3 1.974948e-01 0.821047053 0.9999595
## ORC4 1.974747e-01 0.821063487 0.9999595
## RNF38 1.974205e-01 0.821107863 0.9999595
## ITPRIP 1.973449e-01 0.821169713 0.9999595
## ATAD3A 1.972828e-01 0.821220594 0.9999595
## NBEAL2 1.972340e-01 0.821260520 0.9999595
## CHMP6 1.972249e-01 0.821267995 0.9999595
## SETMAR 1.970725e-01 0.821392748 0.9999595
## APPL2 1.970603e-01 0.821402714 0.9999595
## TYK2 1.970105e-01 0.821443524 0.9999595
## DCUN1D5 1.969558e-01 0.821488307 0.9999595
## RGMB 1.969356e-01 0.821504788 0.9999595
## TAF5L 1.968876e-01 0.821544138 0.9999595
## BBS9 1.967311e-01 0.821672271 0.9999595
## ARHGAP5 1.966817e-01 0.821712737 0.9999595
## BET1 1.966747e-01 0.821718486 0.9999595
## ISCA1 1.965947e-01 0.821784012 0.9999595
## HINT3 1.964804e-01 0.821877646 0.9999595
## VEZT 1.964616e-01 0.821893051 0.9999595
## AGAP2 1.963639e-01 0.821973097 0.9999595
## ABHD5 1.963329e-01 0.821998493 0.9999595
## MARVELD2 1.963058e-01 0.822020679 0.9999595
## ESPL1 1.962808e-01 0.822041191 0.9999595
## RPRD1A 1.962589e-01 0.822059131 0.9999595
## WNT2B 1.962063e-01 0.822102255 0.9999595
## VWA8 1.961803e-01 0.822123541 0.9999595
## P2RY14 1.960495e-01 0.822230735 0.9999595
## MPLKIP 1.959654e-01 0.822299685 0.9999595
## NVL 1.958865e-01 0.822364310 0.9999595
## TKFC 1.957489e-01 0.822477128 0.9999595
## SHISAL2A 1.957019e-01 0.822515629 0.9999595
## EPC2 1.956415e-01 0.822565189 0.9999595
## DDX21 1.955407e-01 0.822647871 0.9999595
## NPM3 1.953813e-01 0.822778570 0.9999595
## EMD 1.953596e-01 0.822796383 0.9999595
## ZNF70 1.952442e-01 0.822891004 0.9999595
## RBM18 1.952355e-01 0.822898169 0.9999595
## SLC1A4 1.951856e-01 0.822939092 0.9999595
## APBB1IP 1.951544e-01 0.822964652 0.9999595
## ZNF776 1.951110e-01 0.823000303 0.9999595
## TMEM170A 1.950715e-01 0.823032714 0.9999595
## SBNO2 1.950297e-01 0.823066937 0.9999595
## COL11A2 1.950117e-01 0.823081741 0.9999595
## GABARAPL1 1.950066e-01 0.823085926 0.9999595
## TRAPPC9 1.948913e-01 0.823180514 0.9999595
## MTMR10 1.948624e-01 0.823204207 0.9999595
## NOP16 1.948274e-01 0.823233006 0.9999595
## PRKAR2B 1.947840e-01 0.823268604 0.9999595
## TXLNA 1.947761e-01 0.823275049 0.9999595
## DGKZ 1.946042e-01 0.823416168 0.9999595
## MTG1 1.945700e-01 0.823444198 0.9999595
## GSR 1.945318e-01 0.823475595 0.9999595
## NUDT14 1.945265e-01 0.823479942 0.9999595
## THAP8 1.945250e-01 0.823481131 0.9999595
## GFI1 1.943909e-01 0.823591261 0.9999595
## RAB14 1.943170e-01 0.823651949 0.9999595
## WARS2 1.943056e-01 0.823661241 0.9999595
## PRKD3 1.941779e-01 0.823766089 0.9999595
## FBXO6 1.941209e-01 0.823812921 0.9999595
## SLC35D1 1.940046e-01 0.823908453 0.9999595
## CHPF2 1.939627e-01 0.823942862 0.9999595
## MICOS10 1.939331e-01 0.823967176 0.9999595
## HBP1 1.939181e-01 0.823979508 0.9999595
## SERPINF1 1.937532e-01 0.824114932 0.9999595
## PPM1D 1.936948e-01 0.824162910 0.9999595
## PNO1 1.936920e-01 0.824165194 0.9999595
## EFR3A 1.936411e-01 0.824207069 0.9999595
## FARSB 1.935875e-01 0.824251038 0.9999595
## LIMS1 1.931208e-01 0.824634587 0.9999595
## CROT 1.930631e-01 0.824682017 0.9999595
## NECAP1 1.930587e-01 0.824685668 0.9999595
## RMC1 1.929632e-01 0.824764165 0.9999595
## GUF1 1.929587e-01 0.824767867 0.9999595
## FAM149B1 1.928832e-01 0.824829947 0.9999595
## R3HDM1 1.928808e-01 0.824831963 0.9999595
## CCDC149 1.928230e-01 0.824879422 0.9999595
## GLE1 1.928193e-01 0.824882508 0.9999595
## IFITM10 1.927682e-01 0.824924482 0.9999595
## MKKS 1.927229e-01 0.824961748 0.9999595
## CDCA2 1.926367e-01 0.825032651 0.9999595
## WBP2 1.924131e-01 0.825216540 0.9999595
## NRDC 1.923828e-01 0.825241535 0.9999595
## ZDHHC16 1.923594e-01 0.825260744 0.9999595
## PROCA1 1.923511e-01 0.825267543 0.9999595
## AFDN 1.923053e-01 0.825305280 0.9999595
## PURA 1.922887e-01 0.825318925 0.9999595
## LCP2 1.921067e-01 0.825468708 0.9999595
## RUVBL2 1.920690e-01 0.825499717 0.9999595
## FAM135A 1.920282e-01 0.825533293 0.9999595
## IWS1 1.919818e-01 0.825571447 0.9999595
## WDR61 1.919656e-01 0.825584753 0.9999595
## IER5L 1.919152e-01 0.825626288 0.9999595
## TMEM109 1.918438e-01 0.825684996 0.9999595
## F2R 1.918071e-01 0.825715246 0.9999595
## C2orf68 1.917948e-01 0.825725355 0.9999595
## MAP3K7 1.917888e-01 0.825730279 0.9999595
## GSS 1.917270e-01 0.825781199 0.9999595
## MRPL43 1.916645e-01 0.825832636 0.9999595
## PKN2 1.915389e-01 0.825936049 0.9999595
## WDR41 1.915265e-01 0.825946210 0.9999595
## KBTBD2 1.914161e-01 0.826037139 0.9999595
## NAGLU 1.914148e-01 0.826038178 0.9999595
## SMC2 1.913485e-01 0.826092846 0.9999595
## GPBP1 1.913100e-01 0.826124513 0.9999595
## PRPF18 1.913063e-01 0.826127541 0.9999595
## CD164 1.912667e-01 0.826160157 0.9999595
## FAM89B 1.910541e-01 0.826335289 0.9999595
## RUNX3 1.910113e-01 0.826370540 0.9999595
## ZNF772 1.909314e-01 0.826436392 0.9999595
## ACOT8 1.908098e-01 0.826536566 0.9999595
## CDK16 1.907665e-01 0.826572258 0.9999595
## FBXL3 1.907645e-01 0.826573842 0.9999595
## FOXJ2 1.906933e-01 0.826632563 0.9999595
## ITSN2 1.906851e-01 0.826639288 0.9999595
## PROB1 1.904852e-01 0.826804085 0.9999595
## UMAD1 1.904159e-01 0.826861144 0.9999595
## NUDT16L1 1.903744e-01 0.826895410 0.9999595
## RNASEH1 1.903713e-01 0.826897943 0.9999595
## SYCP3 1.903551e-01 0.826911287 0.9999595
## ZNF7 1.902182e-01 0.827024138 0.9999595
## PLEKHF2 1.901531e-01 0.827077783 0.9999595
## PTPRJ 1.901345e-01 0.827093141 0.9999595
## PHF20 1.901236e-01 0.827102107 0.9999595
## ZBTB9 1.900342e-01 0.827175864 0.9999595
## F12 1.899609e-01 0.827236270 0.9999595
## GLT8D1 1.898964e-01 0.827289522 0.9999595
## NDC80 1.897477e-01 0.827412177 0.9999595
## MKRN2 1.895024e-01 0.827614482 0.9999595
## ZNF778 1.894909e-01 0.827623990 0.9999595
## DDX17 1.894604e-01 0.827649120 0.9999595
## CASR 1.892809e-01 0.827797298 0.9999595
## POLR3C 1.891486e-01 0.827906425 0.9999595
## JAG1 1.891116e-01 0.827937005 0.9999595
## DDX39B 1.890839e-01 0.827959888 0.9999595
## PSMC3IP 1.890367e-01 0.827998804 0.9999595
## MAD1L1 1.888482e-01 0.828154392 0.9999595
## MSN 1.888245e-01 0.828173974 0.9999595
## PIGO 1.888209e-01 0.828176965 0.9999595
## IL1RN 1.888062e-01 0.828189116 0.9999595
## NUDT1 1.887439e-01 0.828240504 0.9999595
## RTF2 1.885745e-01 0.828380402 0.9999595
## PHLDB3 1.882673e-01 0.828634152 0.9999595
## FAM91A1 1.882495e-01 0.828648857 0.9999595
## ZNF710 1.882308e-01 0.828664336 0.9999595
## DEF8 1.881815e-01 0.828704998 0.9999595
## ARHGAP25 1.881606e-01 0.828722261 0.9999595
## ZNF410 1.880626e-01 0.828803288 0.9999595
## GALNT3 1.877837e-01 0.829033719 0.9999595
## LONRF3 1.877552e-01 0.829057304 0.9999595
## C1orf216 1.877007e-01 0.829102345 0.9999595
## TASOR2 1.876903e-01 0.829110951 0.9999595
## CEBPZOS 1.875983e-01 0.829187010 0.9999595
## PPP2R3A 1.875520e-01 0.829225288 0.9999595
## PLOD3 1.875291e-01 0.829244155 0.9999595
## DRAXIN 1.874950e-01 0.829272377 0.9999595
## S100A5 1.873427e-01 0.829398256 0.9999595
## TEX261 1.872018e-01 0.829514849 0.9999595
## PLA2G4C 1.871956e-01 0.829519972 0.9999595
## TBC1D22A 1.871798e-01 0.829532961 0.9999595
## YTHDF3 1.870770e-01 0.829617999 0.9999595
## HEXA 1.868869e-01 0.829775235 0.9999595
## VIM 1.868465e-01 0.829808679 0.9999595
## ETV3 1.868027e-01 0.829844889 0.9999595
## METAP1 1.867430e-01 0.829894331 0.9999595
## CCDC43 1.866959e-01 0.829933303 0.9999595
## TRIM35 1.866270e-01 0.829990275 0.9999595
## ARAF 1.866090e-01 0.830005147 0.9999595
## NUCB2 1.865385e-01 0.830063490 0.9999595
## SLC29A3 1.865073e-01 0.830089376 0.9999595
## ZNF708 1.865015e-01 0.830094153 0.9999595
## UBAP1 1.859816e-01 0.830524532 0.9999595
## EIF3J 1.859727e-01 0.830531899 0.9999595
## KHK 1.859565e-01 0.830545249 0.9999595
## RBM22 1.859112e-01 0.830582785 0.9999595
## ATP7A 1.858420e-01 0.830640084 0.9999595
## RAB44 1.858410e-01 0.830640962 0.9999595
## TNFRSF9 1.856524e-01 0.830797097 0.9999595
## PCSK5 1.856384e-01 0.830808692 0.9999595
## RNF31 1.855846e-01 0.830853309 0.9999595
## TANK 1.855499e-01 0.830882044 0.9999595
## SCIMP 1.855292e-01 0.830899184 0.9999595
## TGIF2 1.854822e-01 0.830938111 0.9999595
## RAB3D 1.854500e-01 0.830964757 0.9999595
## NELFE 1.854427e-01 0.830970791 0.9999595
## JOSD2 1.854299e-01 0.830981463 0.9999595
## UBALD1 1.854193e-01 0.830990194 0.9999595
## SPNS1 1.854139e-01 0.830994687 0.9999595
## ARFRP1 1.854119e-01 0.830996311 0.9999595
## SUMO2 1.852370e-01 0.831141229 0.9999595
## FAXDC2 1.851837e-01 0.831185441 0.9999595
## RAB6A 1.849873e-01 0.831348188 0.9999595
## EXOC7 1.848856e-01 0.831432522 0.9999595
## CNBP 1.848052e-01 0.831499154 0.9999595
## DCTN2 1.847432e-01 0.831550508 0.9999595
## KLRG1 1.847042e-01 0.831582903 0.9999595
## IREB2 1.846857e-01 0.831598171 0.9999595
## RCN3 1.846639e-01 0.831616234 0.9999595
## ATP6V1H 1.846162e-01 0.831655856 0.9999595
## ZSCAN29 1.845579e-01 0.831704163 0.9999595
## RNF4 1.844700e-01 0.831777078 0.9999595
## SART1 1.844295e-01 0.831810666 0.9999595
## PTK7 1.843346e-01 0.831889338 0.9999595
## GLUD1 1.843099e-01 0.831909813 0.9999595
## PACSIN2 1.842493e-01 0.831960072 0.9999595
## ICE1 1.840709e-01 0.832108037 0.9999595
## KIFC3 1.840249e-01 0.832146227 0.9999595
## AKR1B1 1.840058e-01 0.832162106 0.9999595
## TRAPPC5 1.839444e-01 0.832213057 0.9999595
## MOCS3 1.839440e-01 0.832213356 0.9999595
## ITGAL 1.837644e-01 0.832362349 0.9999595
## ZNF267 1.836927e-01 0.832421894 0.9999595
## PRR29 1.835472e-01 0.832542660 0.9999595
## TNFRSF10C 1.835375e-01 0.832550666 0.9999595
## CYB5A 1.835026e-01 0.832579706 0.9999595
## ZYG11B 1.834762e-01 0.832601602 0.9999595
## RAD23B 1.834663e-01 0.832609823 0.9999595
## DOCK9 1.834133e-01 0.832653765 0.9999595
## CDPF1 1.834045e-01 0.832661130 0.9999595
## GRIPAP1 1.833547e-01 0.832702482 0.9999595
## ADPRS 1.833426e-01 0.832712515 0.9999595
## MFAP3 1.832919e-01 0.832754598 0.9999595
## SELENOK 1.832788e-01 0.832765482 0.9999595
## CEP131 1.831981e-01 0.832832485 0.9999595
## ITGAV 1.831780e-01 0.832849176 0.9999595
## FLT4 1.831521e-01 0.832870678 0.9999595
## TG 1.831289e-01 0.832889901 0.9999595
## MS4A7 1.829662e-01 0.833025076 0.9999595
## SURF2 1.829646e-01 0.833026398 0.9999595
## CDC14B 1.829384e-01 0.833048122 0.9999595
## FMR1 1.828068e-01 0.833157408 0.9999595
## NUP98 1.827168e-01 0.833232183 0.9999595
## IL6R 1.825857e-01 0.833341129 0.9999595
## SIRT6 1.825216e-01 0.833394400 0.9999595
## RANBP9 1.823687e-01 0.833521430 0.9999595
## ELP2 1.823626e-01 0.833526519 0.9999595
## NUDT21 1.823245e-01 0.833558209 0.9999595
## PSMB6 1.823120e-01 0.833568566 0.9999595
## HOOK2 1.823002e-01 0.833578347 0.9999595
## SNX29 1.822934e-01 0.833584042 0.9999595
## NDUFS1 1.822092e-01 0.833654028 0.9999595
## CIP2A 1.822030e-01 0.833659122 0.9999595
## KCTD5 1.820872e-01 0.833755426 0.9999595
## HAUS8 1.820320e-01 0.833801330 0.9999595
## KCTD15 1.819181e-01 0.833895945 0.9999595
## RAB3GAP2 1.819074e-01 0.833904844 0.9999595
## ARFGEF1 1.819002e-01 0.833910877 0.9999595
## OSGIN2 1.817347e-01 0.834048447 0.9999595
## TEDC1 1.817344e-01 0.834048734 0.9999595
## SEMA3E 1.816741e-01 0.834098915 0.9999595
## TMCC3 1.815593e-01 0.834194388 0.9999595
## LONP1 1.815328e-01 0.834216389 0.9999595
## METTL25 1.815072e-01 0.834237658 0.9999595
## FBXW5 1.814806e-01 0.834259809 0.9999595
## AMD1 1.814742e-01 0.834265105 0.9999595
## PRRT3 1.814584e-01 0.834278269 0.9999595
## DECR2 1.813747e-01 0.834347913 0.9999595
## TBC1D10C 1.813628e-01 0.834357784 0.9999595
## GDI1 1.813487e-01 0.834369558 0.9999595
## TNFAIP8L2-SCNM1 1.812961e-01 0.834413250 0.9999595
## RPL36 1.812326e-01 0.834466074 0.9999595
## CX3CR1 1.812180e-01 0.834478222 0.9999595
## SMAD2 1.812064e-01 0.834487901 0.9999595
## DIDO1 1.811957e-01 0.834496832 0.9999595
## DESI2 1.811868e-01 0.834504248 0.9999595
## CSF2RB 1.810820e-01 0.834591425 0.9999595
## NCAPG2 1.810718e-01 0.834599872 0.9999595
## DTWD2 1.810066e-01 0.834654170 0.9999595
## P4HA1 1.807326e-01 0.834882247 0.9999595
## PGBD4 1.807048e-01 0.834905369 0.9999595
## NEMP1 1.806648e-01 0.834938622 0.9999595
## CCS 1.806406e-01 0.834958773 0.9999595
## ATPAF2 1.805586e-01 0.835027028 0.9999595
## CSRNP1 1.802666e-01 0.835270167 0.9999595
## RIOX1 1.802603e-01 0.835275425 0.9999595
## VKORC1 1.802389e-01 0.835293280 0.9999595
## MRPS18B 1.802286e-01 0.835301828 0.9999595
## CIAO3 1.801611e-01 0.835358105 0.9999595
## MSR1 1.801588e-01 0.835359982 0.9999595
## CLASRP 1.801415e-01 0.835374394 0.9999595
## USP31 1.800209e-01 0.835474890 0.9999595
## SNX14 1.799609e-01 0.835524853 0.9999595
## OST4 1.799251e-01 0.835554701 0.9999595
## TRMT10C 1.799182e-01 0.835560371 0.9999595
## IFIT2 1.798522e-01 0.835615366 0.9999595
## KCTD6 1.797003e-01 0.835741960 0.9999595
## OPRL1 1.796358e-01 0.835795749 0.9999595
## ZNF28 1.796321e-01 0.835798750 0.9999595
## UVSSA 1.795799e-01 0.835842320 0.9999595
## FIGNL1 1.795466e-01 0.835870042 0.9999595
## RPS11 1.795444e-01 0.835871841 0.9999595
## RNF14 1.795094e-01 0.835901080 0.9999595
## ORC3 1.794632e-01 0.835939576 0.9999595
## PDZD4 1.793896e-01 0.836000915 0.9999595
## PGM1 1.793216e-01 0.836057560 0.9999595
## GEMIN7 1.793104e-01 0.836066883 0.9999595
## CRK 1.792908e-01 0.836083265 0.9999595
## FAM200A 1.792903e-01 0.836083682 0.9999595
## DPH3P1 1.792057e-01 0.836154230 0.9999595
## SCAMP1 1.790792e-01 0.836259710 0.9999595
## C2orf49 1.790555e-01 0.836279409 0.9999595
## PIP4P1 1.790179e-01 0.836310793 0.9999595
## RAB5IF 1.789760e-01 0.836345761 0.9999595
## NPEPPS 1.789146e-01 0.836396895 0.9999595
## MEAK7 1.788733e-01 0.836431353 0.9999595
## CEACAM8 1.788579e-01 0.836444247 0.9999595
## CC2D1A 1.788013e-01 0.836491414 0.9999595
## NOP10 1.787909e-01 0.836500063 0.9999595
## MRPL3 1.787872e-01 0.836503156 0.9999595
## BTBD2 1.787829e-01 0.836506800 0.9999595
## B3GALT4 1.786711e-01 0.836600029 0.9999595
## NEK5 1.786020e-01 0.836657648 0.9999595
## ZNF516 1.785703e-01 0.836684068 0.9999595
## CPT2 1.785557e-01 0.836696284 0.9999595
## FFAR2 1.785080e-01 0.836736082 0.9999595
## FAM241A 1.784566e-01 0.836778944 0.9999595
## MRPL15 1.783856e-01 0.836838226 0.9999595
## TMEM222 1.780763e-01 0.837096333 0.9999595
## MLX 1.779782e-01 0.837178237 0.9999595
## WDR62 1.778374e-01 0.837295734 0.9999595
## GP1BB 1.778125e-01 0.837316541 0.9999595
## HAUS3 1.777965e-01 0.837329874 0.9999595
## FBXO40 1.777609e-01 0.837359578 0.9999595
## LIG4 1.775362e-01 0.837547234 0.9999595
## TOR1B 1.775325e-01 0.837550324 0.9999595
## VCP 1.775089e-01 0.837570037 0.9999595
## NETO2 1.773543e-01 0.837699145 0.9999595
## GOLGA2 1.773055e-01 0.837739948 0.9999595
## CLDND2 1.773045e-01 0.837740718 0.9999595
## PGAM1 1.772021e-01 0.837826331 0.9999595
## FLJ44635 1.771886e-01 0.837837608 0.9999595
## MANBA 1.771525e-01 0.837867721 0.9999595
## NDFIP1 1.771438e-01 0.837875032 0.9999595
## ATXN7L3B 1.770130e-01 0.837984288 0.9999595
## FCGRT 1.769838e-01 0.838008659 0.9999595
## KIAA0319 1.769101e-01 0.838070296 0.9999595
## FBXL20 1.768615e-01 0.838110841 0.9999595
## RAB15 1.767905e-01 0.838170179 0.9999595
## GTF2E2 1.767817e-01 0.838177553 0.9999595
## PAK3 1.767468e-01 0.838206769 0.9999595
## LMBRD2 1.766265e-01 0.838307298 0.9999595
## YOD1 1.766254e-01 0.838308197 0.9999595
## INTS3 1.765686e-01 0.838355682 0.9999595
## INSL3 1.765636e-01 0.838359905 0.9999595
## GALNT7 1.765243e-01 0.838392736 0.9999595
## RAB2B 1.764111e-01 0.838487391 0.9999595
## PHB 1.763785e-01 0.838514647 0.9999595
## COA7 1.762965e-01 0.838583157 0.9999595
## EVI2A 1.762909e-01 0.838587870 0.9999595
## OVCA2 1.762575e-01 0.838615827 0.9999595
## PLA2G7 1.762525e-01 0.838619971 0.9999595
## EXOSC10 1.762091e-01 0.838656231 0.9999595
## LAMB2 1.762027e-01 0.838661639 0.9999595
## ZMIZ1 1.761718e-01 0.838687411 0.9999595
## BMP8A 1.760569e-01 0.838783534 0.9999595
## SMTN 1.760041e-01 0.838827727 0.9999595
## DCST2 1.759399e-01 0.838881376 0.9999595
## DPM3 1.759201e-01 0.838897954 0.9999595
## TAF1A 1.759102e-01 0.838906285 0.9999595
## FASTK 1.758810e-01 0.838930646 0.9999595
## TRNAU1AP 1.758393e-01 0.838965533 0.9999595
## MPHOSPH9 1.757800e-01 0.839015133 0.9999595
## NLRP6 1.756221e-01 0.839147251 0.9999595
## ZGLP1 1.755986e-01 0.839166918 0.9999595
## TSKU 1.755603e-01 0.839199014 0.9999595
## PRIMPOL 1.754506e-01 0.839290762 0.9999595
## VANGL1 1.754092e-01 0.839325405 0.9999595
## TMEM128 1.754055e-01 0.839328520 0.9999595
## ZC3HC1 1.754052e-01 0.839328822 0.9999595
## RDH5 1.753757e-01 0.839353445 0.9999595
## GSN 1.753015e-01 0.839415559 0.9999595
## LACTB2 1.752848e-01 0.839429584 0.9999595
## ABCD3 1.752524e-01 0.839456704 0.9999595
## CCNQ 1.752347e-01 0.839471487 0.9999595
## TBC1D16 1.751966e-01 0.839503411 0.9999595
## DUSP7 1.751308e-01 0.839558480 0.9999595
## KLF13 1.746953e-01 0.839923150 0.9999595
## ZNF292 1.746483e-01 0.839962461 0.9999595
## PDCD5 1.746225e-01 0.839984058 0.9999595
## RELL1 1.745920e-01 0.840009656 0.9999595
## NLRP3 1.745706e-01 0.840027576 0.9999595
## L3MBTL3 1.745036e-01 0.840083665 0.9999595
## FN3K 1.744896e-01 0.840095378 0.9999595
## TREML1 1.744527e-01 0.840126309 0.9999595
## RNF8 1.743345e-01 0.840225367 0.9999595
## LPAR5 1.743279e-01 0.840230872 0.9999595
## TTC21B 1.741493e-01 0.840380547 0.9999595
## CDC7 1.741293e-01 0.840397260 0.9999595
## ITGAM 1.740467e-01 0.840466513 0.9999595
## ATP6AP1L 1.739704e-01 0.840530474 0.9999595
## NNT 1.739497e-01 0.840547818 0.9999595
## PRRC1 1.739350e-01 0.840560122 0.9999595
## GALNT11 1.739033e-01 0.840586709 0.9999595
## MYH9 1.739006e-01 0.840588968 0.9999595
## ZNF124 1.738566e-01 0.840625806 0.9999595
## NBPF20 1.738263e-01 0.840651216 0.9999595
## SF3A1 1.737670e-01 0.840700933 0.9999595
## ZNF100 1.737014e-01 0.840755970 0.9999595
## JADE3 1.736116e-01 0.840831251 0.9999595
## SGF29 1.735135e-01 0.840913463 0.9999595
## HDGFL3 1.734732e-01 0.840947311 0.9999595
## ATP5MD 1.734383e-01 0.840976552 0.9999595
## INTS9 1.734301e-01 0.840983463 0.9999595
## AIP 1.733939e-01 0.841013782 0.9999595
## NAB1 1.733566e-01 0.841045057 0.9999595
## RNF115 1.733032e-01 0.841089839 0.9999595
## KIFC1 1.732940e-01 0.841097605 0.9999595
## DEXI 1.732753e-01 0.841113213 0.9999595
## ZNF746 1.732181e-01 0.841161256 0.9999595
## PLK2 1.731436e-01 0.841223697 0.9999595
## SATB1 1.730567e-01 0.841296612 0.9999595
## ANP32E 1.728986e-01 0.841429235 0.9999595
## SART3 1.727821e-01 0.841527042 0.9999595
## BCAP29 1.727623e-01 0.841543614 0.9999595
## SERPINE2 1.726922e-01 0.841602421 0.9999595
## RUNDC1 1.726839e-01 0.841609416 0.9999595
## PGM2 1.726430e-01 0.841643777 0.9999595
## DCAF4L1 1.726005e-01 0.841679395 0.9999595
## UBXN7 1.725771e-01 0.841699086 0.9999595
## FDX1 1.724625e-01 0.841795265 0.9999595
## CCDC50 1.724234e-01 0.841828066 0.9999595
## SLC38A10 1.724142e-01 0.841835778 0.9999595
## BNIP1 1.724061e-01 0.841842617 0.9999595
## ANKHD1 1.724003e-01 0.841847494 0.9999595
## RNA28SN1 1.723815e-01 0.841863274 0.9999595
## SLC30A5 1.723527e-01 0.841887392 0.9999595
## PDCD6IP 1.723033e-01 0.841928889 0.9999595
## PRKCSH 1.722763e-01 0.841951538 0.9999595
## ARHGAP21 1.721609e-01 0.842048444 0.9999595
## DAP 1.721249e-01 0.842078646 0.9999595
## THYN1 1.720779e-01 0.842118116 0.9999595
## TLR6 1.720161e-01 0.842170036 0.9999595
## CEP57 1.720102e-01 0.842174996 0.9999595
## PHF6 1.719184e-01 0.842252100 0.9999595
## RPLP2 1.718437e-01 0.842314882 0.9999595
## ZSCAN9 1.716960e-01 0.842438891 0.9999595
## ZNF660 1.716519e-01 0.842475934 0.9999595
## GTF3C4 1.715473e-01 0.842563849 0.9999595
## SLC22A18 1.711624e-01 0.842887263 0.9999595
## PLRG1 1.711043e-01 0.842936151 0.9999595
## APOBEC3G 1.710811e-01 0.842955591 0.9999595
## REPIN1 1.709791e-01 0.843041402 0.9999595
## PLAC8 1.709676e-01 0.843051033 0.9999595
## GRAP2 1.708855e-01 0.843120060 0.9999595
## GINM1 1.708315e-01 0.843165504 0.9999595
## UBB 1.707940e-01 0.843197025 0.9999595
## ACRBP 1.707467e-01 0.843236769 0.9999595
## NUP43 1.707270e-01 0.843253326 0.9999595
## CD72 1.706331e-01 0.843332330 0.9999595
## MAN2C1 1.704703e-01 0.843469225 0.9999595
## UBE2L3 1.702683e-01 0.843639155 0.9999595
## CD2AP 1.702302e-01 0.843671196 0.9999595
## ICA1L 1.702154e-01 0.843683610 0.9999595
## FPR2 1.702149e-01 0.843684062 0.9999595
## TRAF7 1.701177e-01 0.843765840 0.9999595
## DCTN3 1.701116e-01 0.843770979 0.9999595
## AARSD1 1.699572e-01 0.843900912 0.9999595
## GNG7 1.699304e-01 0.843923497 0.9999595
## CCDC125 1.698770e-01 0.843968412 0.9999595
## GLUL 1.698459e-01 0.843994558 0.9999595
## ZFAND5 1.697973e-01 0.844035444 0.9999595
## SMPD4 1.697375e-01 0.844085838 0.9999595
## C6orf47 1.697043e-01 0.844113735 0.9999595
## LIPH 1.696950e-01 0.844121593 0.9999595
## CWC25 1.695744e-01 0.844223141 0.9999595
## SH3BGRL3 1.695182e-01 0.844270390 0.9999595
## SLC16A3 1.694035e-01 0.844366974 0.9999595
## XPOT 1.693519e-01 0.844410439 0.9999595
## STAU1 1.691915e-01 0.844545537 0.9999595
## KLRC2 1.691786e-01 0.844556371 0.9999595
## NDUFV3 1.690855e-01 0.844634832 0.9999595
## LIMK2 1.690519e-01 0.844663082 0.9999595
## KIAA0753 1.690199e-01 0.844690063 0.9999595
## TMEM81 1.689236e-01 0.844771154 0.9999595
## AKR7A2 1.688631e-01 0.844822130 0.9999595
## BRCC3 1.688500e-01 0.844833174 0.9999595
## NFATC2 1.688351e-01 0.844845729 0.9999595
## SUPT5H 1.686706e-01 0.844984352 0.9999595
## METTL2A 1.686455e-01 0.845005510 0.9999595
## TSR3 1.686063e-01 0.845038533 0.9999595
## FBXO9 1.685095e-01 0.845120102 0.9999595
## MMADHC 1.684389e-01 0.845179610 0.9999595
## SYNJ2BP 1.683383e-01 0.845264442 0.9999595
## ELAC2 1.681970e-01 0.845383556 0.9999595
## ATAT1 1.681689e-01 0.845407228 0.9999595
## CRLF3 1.680778e-01 0.845484040 0.9999595
## RNF20 1.680212e-01 0.845531779 0.9999595
## TNFRSF10A 1.679503e-01 0.845591522 0.9999595
## ZRANB3 1.679394e-01 0.845600720 0.9999595
## STOML1 1.678804e-01 0.845650467 0.9999595
## HDAC7 1.677694e-01 0.845744109 0.9999595
## ZNF350 1.677676e-01 0.845745608 0.9999595
## SKP1 1.676677e-01 0.845829880 0.9999595
## PRRG4 1.676613e-01 0.845835293 0.9999595
## CDCA8 1.675952e-01 0.845891061 0.9999595
## ZDHHC4 1.675496e-01 0.845929532 0.9999595
## IFT122 1.675436e-01 0.845934549 0.9999595
## RNASEH2A 1.674303e-01 0.846030179 0.9999595
## GKAP1 1.673846e-01 0.846068714 0.9999595
## PODXL2 1.673371e-01 0.846108780 0.9999595
## MSS51 1.672174e-01 0.846209797 0.9999595
## NDEL1 1.672091e-01 0.846216808 0.9999595
## LCAT 1.671010e-01 0.846308042 0.9999595
## FOS 1.670518e-01 0.846349580 0.9999595
## WDR46 1.670239e-01 0.846373124 0.9999595
## ZNF596 1.668854e-01 0.846489993 0.9999595
## HBG1 1.668608e-01 0.846510740 0.9999595
## DNTTIP2 1.668468e-01 0.846522573 0.9999595
## RBM34 1.667691e-01 0.846588193 0.9999595
## DCUN1D1 1.667203e-01 0.846629371 0.9999595
## SMAD3 1.666823e-01 0.846661476 0.9999595
## CSRNP2 1.666571e-01 0.846682753 0.9999595
## AP2B1 1.666428e-01 0.846694808 0.9999595
## ERP44 1.666204e-01 0.846713759 0.9999595
## TTBK2 1.664842e-01 0.846828756 0.9999595
## PHF11 1.664754e-01 0.846836216 0.9999595
## PLIN4 1.664303e-01 0.846874240 0.9999595
## BRMS1L 1.664197e-01 0.846883208 0.9999595
## HDDC3 1.664112e-01 0.846890409 0.9999595
## GTF2H2C_2 1.664079e-01 0.846893238 0.9999595
## CCNA1 1.664014e-01 0.846898699 0.9999595
## NKAP 1.663542e-01 0.846938572 0.9999595
## ZDHHC17 1.663156e-01 0.846971144 0.9999595
## EIF4A1 1.662421e-01 0.847033271 0.9999595
## CCDC97 1.660673e-01 0.847180948 0.9999595
## HMGB1 1.660143e-01 0.847225690 0.9999595
## MFSD9 1.659232e-01 0.847302689 0.9999595
## PIP5K1B 1.658657e-01 0.847351262 0.9999595
## KCTD21 1.658310e-01 0.847380615 0.9999595
## GLIPR1 1.657339e-01 0.847462677 0.9999595
## ADAM28 1.657286e-01 0.847467116 0.9999595
## TMEM255B 1.655250e-01 0.847639233 0.9999595
## ATRIP 1.654883e-01 0.847670245 0.9999595
## RPLP1 1.653575e-01 0.847780808 0.9999595
## TIGD7 1.653100e-01 0.847820953 0.9999595
## CHORDC1 1.652473e-01 0.847873982 0.9999595
## RHBDD3 1.651677e-01 0.847941330 0.9999595
## IGF2R 1.651590e-01 0.847948672 0.9999595
## MCM6 1.650265e-01 0.848060732 0.9999595
## LY96 1.647846e-01 0.848265347 0.9999595
## SP3 1.647409e-01 0.848302318 0.9999595
## NMNAT1 1.647353e-01 0.848307053 0.9999595
## PIDD1 1.646297e-01 0.848396417 0.9999595
## MIER3 1.646021e-01 0.848419758 0.9999595
## AP1G1 1.645919e-01 0.848428409 0.9999595
## NPIPB15 1.645211e-01 0.848488279 0.9999595
## TST 1.644300e-01 0.848565385 0.9999595
## KIF15 1.642001e-01 0.848759933 0.9999595
## CPVL 1.641384e-01 0.848812162 0.9999595
## NARS1 1.640102e-01 0.848920703 0.9999595
## FERMT3 1.640030e-01 0.848926782 0.9999595
## DNAJC17 1.638168e-01 0.849084441 0.9999595
## PWWP2A 1.638095e-01 0.849090653 0.9999595
## TMEM80 1.638032e-01 0.849095963 0.9999595
## PTPN7 1.636600e-01 0.849217295 0.9999595
## TIMM21 1.636152e-01 0.849255173 0.9999595
## TMX4 1.635684e-01 0.849294844 0.9999595
## PPP6R1 1.635552e-01 0.849306023 0.9999595
## FIZ1 1.635395e-01 0.849319321 0.9999595
## CDKN1B 1.635374e-01 0.849321130 0.9999595
## TAF7 1.634823e-01 0.849367748 0.9999595
## CHMP1A 1.633811e-01 0.849453508 0.9999595
## HCAR3 1.633436e-01 0.849485317 0.9999595
## CCDC84 1.633315e-01 0.849495538 0.9999595
## NBN 1.633190e-01 0.849506086 0.9999595
## ATP9B 1.632960e-01 0.849525641 0.9999595
## SMIM30 1.632280e-01 0.849583242 0.9999595
## DPH3 1.630294e-01 0.849751525 0.9999595
## CREB5 1.630186e-01 0.849760627 0.9999595
## GTF2H1 1.630139e-01 0.849764634 0.9999595
## GLI4 1.629189e-01 0.849845171 0.9999595
## SDCCAG8 1.628721e-01 0.849884831 0.9999595
## MRPS26 1.628526e-01 0.849901357 0.9999595
## RAB9A 1.627887e-01 0.849955569 0.9999595
## CORO1A 1.627479e-01 0.849990087 0.9999595
## C17orf49 1.627441e-01 0.849993345 0.9999595
## PSMB10 1.627218e-01 0.850012245 0.9999595
## SCYL1 1.627020e-01 0.850029037 0.9999595
## CORO1C 1.626539e-01 0.850069807 0.9999595
## TENT4A 1.626512e-01 0.850072100 0.9999595
## CC2D2B 1.625780e-01 0.850134167 0.9999595
## PXK 1.625525e-01 0.850155757 0.9999595
## ZFP69 1.623310e-01 0.850343611 0.9999595
## MFSD14A 1.623264e-01 0.850347488 0.9999595
## TATDN2 1.621816e-01 0.850470318 0.9999595
## PTPN22 1.621450e-01 0.850501400 0.9999595
## DAPP1 1.621429e-01 0.850503114 0.9999595
## CCAR1 1.621195e-01 0.850523029 0.9999595
## ATPSCKMT 1.621104e-01 0.850530714 0.9999595
## ZDHHC12 1.620250e-01 0.850603164 0.9999595
## TARS1 1.620102e-01 0.850615713 0.9999595
## TRAPPC8 1.619705e-01 0.850649391 0.9999595
## STXBP5 1.618877e-01 0.850719644 0.9999595
## PTPDC1 1.617953e-01 0.850798048 0.9999595
## ANAPC11 1.617514e-01 0.850835334 0.9999595
## EVI5 1.617338e-01 0.850850230 0.9999595
## ODF2L 1.617206e-01 0.850861460 0.9999595
## SAP30 1.616886e-01 0.850888559 0.9999595
## PRUNE1 1.615083e-01 0.851041586 0.9999595
## TMEM87B 1.614366e-01 0.851102507 0.9999595
## RTRAF 1.613543e-01 0.851172343 0.9999595
## CHMP2A 1.613420e-01 0.851182764 0.9999595
## ARMC7 1.613369e-01 0.851187105 0.9999595
## SF3B5 1.611665e-01 0.851331802 0.9999595
## SAPCD1 1.610862e-01 0.851399977 0.9999595
## AHCTF1 1.610678e-01 0.851415589 0.9999595
## SPG7 1.610342e-01 0.851444148 0.9999595
## GNLY 1.610073e-01 0.851466961 0.9999595
## ZNF446 1.609917e-01 0.851480169 0.9999595
## BTF3L4 1.609661e-01 0.851501910 0.9999595
## CDV3 1.607577e-01 0.851678990 0.9999595
## UNC93B1 1.607199e-01 0.851711079 0.9999595
## DSCC1 1.606923e-01 0.851734466 0.9999595
## ZNF177 1.606162e-01 0.851799190 0.9999595
## NUP155 1.605771e-01 0.851832346 0.9999595
## MPZ 1.604442e-01 0.851945271 0.9999595
## NDUFAF1 1.603506e-01 0.852024822 0.9999595
## MRPL54 1.603437e-01 0.852030690 0.9999595
## WDR11 1.603364e-01 0.852036918 0.9999595
## DAZAP2 1.602552e-01 0.852105940 0.9999595
## OSBPL5 1.602096e-01 0.852144624 0.9999595
## TFE3 1.601512e-01 0.852194265 0.9999595
## BRAT1 1.600995e-01 0.852238226 0.9999595
## SREK1 1.600908e-01 0.852245629 0.9999595
## PFDN5 1.599670e-01 0.852350842 0.9999595
## PPAT 1.598835e-01 0.852421870 0.9999595
## INTS7 1.598511e-01 0.852449422 0.9999595
## MAPK13 1.597566e-01 0.852529757 0.9999595
## SERPINB10 1.596603e-01 0.852611647 0.9999595
## VEZF1 1.595738e-01 0.852685203 0.9999595
## CYBC1 1.595445e-01 0.852710140 0.9999595
## HBS1L 1.595399e-01 0.852714071 0.9999595
## RBM3 1.594086e-01 0.852825715 0.9999595
## PTPN23 1.593272e-01 0.852894918 0.9999595
## TOMM6 1.593209e-01 0.852900290 0.9999595
## ROCK2 1.592863e-01 0.852929707 0.9999595
## RNF215 1.592853e-01 0.852930609 0.9999595
## GTF2A1 1.591945e-01 0.853007852 0.9999595
## CASC3 1.591870e-01 0.853014207 0.9999595
## SLC35B2 1.591808e-01 0.853019531 0.9999595
## MRPL37 1.591591e-01 0.853037951 0.9999595
## SLTM 1.590915e-01 0.853095471 0.9999595
## CHKB 1.590798e-01 0.853105408 0.9999595
## C16orf86 1.590697e-01 0.853114011 0.9999595
## RAB22A 1.589331e-01 0.853230285 0.9999595
## FBXO48 1.589069e-01 0.853252577 0.9999595
## FTH1 1.588905e-01 0.853266513 0.9999595
## CHD2 1.588783e-01 0.853276902 0.9999595
## FTO 1.588742e-01 0.853280375 0.9999595
## VCPKMT 1.588593e-01 0.853293079 0.9999595
## UBE3C 1.588433e-01 0.853306682 0.9999595
## UQCC3 1.588065e-01 0.853338012 0.9999595
## SNAP23 1.587187e-01 0.853412710 0.9999595
## KPNB1 1.586565e-01 0.853465664 0.9999595
## RUSC1 1.586413e-01 0.853478588 0.9999595
## KLC1 1.585574e-01 0.853550063 0.9999595
## PDS5B 1.584640e-01 0.853629530 0.9999595
## CFAP410 1.583370e-01 0.853737668 0.9999595
## MYO1A 1.582952e-01 0.853773276 0.9999595
## CMBL 1.581795e-01 0.853871864 0.9999595
## ADCY9 1.581473e-01 0.853899261 0.9999595
## ACSF3 1.581145e-01 0.853927199 0.9999595
## CTDP1 1.580499e-01 0.853982241 0.9999595
## PRICKLE3 1.580456e-01 0.853985874 0.9999595
## CARD19 1.579498e-01 0.854067509 0.9999595
## CCDC130 1.578576e-01 0.854146044 0.9999595
## ITPA 1.578559e-01 0.854147479 0.9999595
## MED24 1.578533e-01 0.854149715 0.9999595
## CBX1 1.577915e-01 0.854202362 0.9999595
## PAM 1.576493e-01 0.854323490 0.9999595
## MIA3 1.576445e-01 0.854327566 0.9999595
## MGMT 1.576339e-01 0.854336624 0.9999595
## TAX1BP1 1.575410e-01 0.854415818 0.9999595
## GTF2H4 1.573960e-01 0.854539408 0.9999595
## DNAJC14 1.573558e-01 0.854573605 0.9999595
## SLC12A6 1.573508e-01 0.854577885 0.9999595
## RPS9 1.573173e-01 0.854606478 0.9999595
## NUDT9 1.571504e-01 0.854748721 0.9999595
## TEX30 1.571142e-01 0.854779598 0.9999595
## VAV2 1.569516e-01 0.854918229 0.9999595
## SPOPL 1.569460e-01 0.854923034 0.9999595
## TMEM123 1.569175e-01 0.854947310 0.9999595
## TNNT3 1.568812e-01 0.854978249 0.9999595
## MRM3 1.566988e-01 0.855133828 0.9999595
## TIAF1 1.566674e-01 0.855160566 0.9999595
## ABCB7 1.566068e-01 0.855212327 0.9999595
## VEGFB 1.565926e-01 0.855224385 0.9999595
## PIN1 1.565664e-01 0.855246757 0.9999595
## CNP 1.565509e-01 0.855260019 0.9999595
## CCDC28B 1.565311e-01 0.855276877 0.9999595
## DNAJC11 1.565133e-01 0.855292074 0.9999595
## SRC 1.563924e-01 0.855395164 0.9999595
## TMED3 1.562539e-01 0.855513348 0.9999595
## GXYLT1 1.562493e-01 0.855517266 0.9999595
## LAMTOR2 1.562299e-01 0.855533895 0.9999595
## TRPV2 1.562160e-01 0.855545687 0.9999595
## IFNAR2 1.561350e-01 0.855614855 0.9999595
## ASH2L 1.561152e-01 0.855631706 0.9999595
## TBP 1.560235e-01 0.855710013 0.9999595
## CHAF1A 1.559893e-01 0.855739207 0.9999595
## DDX52 1.559583e-01 0.855765692 0.9999595
## RNF139 1.559293e-01 0.855790378 0.9999595
## NPHP1 1.559255e-01 0.855793630 0.9999595
## ZNF707 1.558159e-01 0.855887247 0.9999595
## ZNF430 1.557431e-01 0.855949381 0.9999595
## ALDH4A1 1.556768e-01 0.856005996 0.9999595
## HLA-C 1.555986e-01 0.856072748 0.9999595
## SEMA4B 1.555985e-01 0.856072845 0.9999595
## GEMIN6 1.555870e-01 0.856082646 0.9999595
## TIMM23 1.555305e-01 0.856130897 0.9999595
## ATP6V1E1 1.554749e-01 0.856178348 0.9999595
## NKIRAS1 1.554748e-01 0.856178470 0.9999595
## ATXN3 1.554457e-01 0.856203312 0.9999595
## GOLGA6L4 1.554434e-01 0.856205282 0.9999595
## MLEC 1.553348e-01 0.856298071 0.9999595
## EIF3K 1.553229e-01 0.856308177 0.9999595
## CNOT3 1.553105e-01 0.856318793 0.9999595
## DIS3L2 1.552798e-01 0.856345040 0.9999595
## GLYR1 1.551217e-01 0.856480026 0.9999595
## TBC1D12 1.550536e-01 0.856538236 0.9999595
## PURB 1.550203e-01 0.856566658 0.9999595
## PBXIP1 1.550182e-01 0.856568462 0.9999595
## PBRM1 1.548882e-01 0.856679587 0.9999595
## HCFC1R1 1.548269e-01 0.856731918 0.9999595
## MED21 1.547651e-01 0.856784766 0.9999595
## GPAT4 1.546209e-01 0.856907982 0.9999595
## CCDC146 1.545162e-01 0.856997480 0.9999595
## GNB1L 1.545025e-01 0.857009229 0.9999595
## TRUB2 1.544771e-01 0.857030943 0.9999595
## AMMECR1L 1.544203e-01 0.857079522 0.9999595
## NXT2 1.543862e-01 0.857108613 0.9999595
## PPP2CA 1.543226e-01 0.857162972 0.9999595
## COG6 1.543162e-01 0.857168527 0.9999595
## NPRL3 1.541235e-01 0.857333240 0.9999595
## NEDD9 1.540047e-01 0.857434822 0.9999595
## CD68 1.539684e-01 0.857465871 0.9999595
## INTS8 1.539591e-01 0.857473874 0.9999595
## HSPH1 1.539237e-01 0.857504107 0.9999595
## CCDC77 1.538842e-01 0.857537944 0.9999595
## TMEM269 1.538580e-01 0.857560341 0.9999595
## ASRGL1 1.537584e-01 0.857645523 0.9999595
## TARP 1.537198e-01 0.857678526 0.9999595
## CTU2 1.536565e-01 0.857732681 0.9999595
## PHKG2 1.535541e-01 0.857820336 0.9999595
## SIGLEC5 1.534425e-01 0.857915802 0.9999595
## FARP1 1.534397e-01 0.857918224 0.9999595
## CLEC2B 1.532944e-01 0.858042585 0.9999595
## FAM104A 1.532019e-01 0.858121781 0.9999595
## CTNND1 1.531302e-01 0.858183149 0.9999595
## VSTM4 1.530944e-01 0.858213810 0.9999595
## NSUN5 1.529928e-01 0.858300775 0.9999595
## STARD3 1.529874e-01 0.858305359 0.9999595
## LIMK1 1.529472e-01 0.858339804 0.9999595
## MED17 1.528738e-01 0.858402655 0.9999595
## GCC2 1.528290e-01 0.858441030 0.9999595
## GATD1 1.526499e-01 0.858594361 0.9999595
## HMG20A 1.525033e-01 0.858719980 0.9999595
## SEMA3C 1.524349e-01 0.858778525 0.9999595
## GON7 1.523892e-01 0.858817716 0.9999595
## LSMEM1 1.523420e-01 0.858858159 0.9999595
## SECISBP2L 1.523329e-01 0.858865907 0.9999595
## TMEM86A 1.523131e-01 0.858882878 0.9999595
## NABP2 1.522731e-01 0.858917167 0.9999595
## MYCL 1.522173e-01 0.858964951 0.9999595
## DBF4B 1.521014e-01 0.859064280 0.9999595
## C2orf88 1.520400e-01 0.859116845 0.9999595
## CSNK1A1 1.520268e-01 0.859128159 0.9999595
## BCL2L12 1.520001e-01 0.859151081 0.9999595
## RAB40C 1.519583e-01 0.859186920 0.9999595
## MRTO4 1.519391e-01 0.859203320 0.9999595
## HIPK2 1.519349e-01 0.859206926 0.9999595
## RTL5 1.517347e-01 0.859378581 0.9999595
## AKAP17A 1.516878e-01 0.859418793 0.9999595
## KANSL3 1.515464e-01 0.859539952 0.9999595
## NUDT6 1.514797e-01 0.859597159 0.9999595
## SAV1 1.513986e-01 0.859666753 0.9999595
## NAGPA 1.513964e-01 0.859668624 0.9999595
## TMEM138 1.513655e-01 0.859695109 0.9999595
## TANC2 1.512901e-01 0.859759742 0.9999595
## EPB41L2 1.512490e-01 0.859795052 0.9999595
## FAM3A 1.512196e-01 0.859820201 0.9999595
## POLR3D 1.511394e-01 0.859888986 0.9999595
## UGP2 1.511135e-01 0.859911255 0.9999595
## TMSB10 1.511028e-01 0.859920434 0.9999595
## GINS1 1.509866e-01 0.860020086 0.9999595
## OPHN1 1.509299e-01 0.860068710 0.9999595
## VAMP5 1.509121e-01 0.860083995 0.9999595
## SELENOO 1.509035e-01 0.860091372 0.9999595
## MTG2 1.508388e-01 0.860146938 0.9999595
## ZNF140 1.507682e-01 0.860207492 0.9999595
## COX4I1 1.507664e-01 0.860209035 0.9999595
## WDR45B 1.506533e-01 0.860306087 0.9999595
## WNT4 1.506499e-01 0.860309035 0.9999595
## AVIL 1.505131e-01 0.860426382 0.9999595
## GNAS 1.504677e-01 0.860465410 0.9999595
## RFX1 1.504231e-01 0.860503647 0.9999595
## PNRC1 1.503179e-01 0.860593930 0.9999595
## SYF2 1.502577e-01 0.860645680 0.9999595
## IL10RA 1.502374e-01 0.860663067 0.9999595
## LIMD2 1.501895e-01 0.860704236 0.9999595
## BRD3OS 1.501788e-01 0.860713397 0.9999595
## NUTF2 1.501019e-01 0.860779418 0.9999595
## DLST 1.500955e-01 0.860784955 0.9999595
## REXO5 1.500225e-01 0.860847565 0.9999595
## SMAP1 1.499766e-01 0.860886994 0.9999595
## PNN 1.499734e-01 0.860889787 0.9999595
## IFNAR1 1.499574e-01 0.860903495 0.9999595
## SULT1A1 1.499155e-01 0.860939460 0.9999595
## PUSL1 1.499155e-01 0.860939512 0.9999595
## MED14OS 1.499124e-01 0.860942176 0.9999595
## TMEM39A 1.499104e-01 0.860943863 0.9999595
## BBS12 1.499060e-01 0.860947646 0.9999595
## ADGRA2 1.497858e-01 0.861050911 0.9999595
## CBWD2 1.497311e-01 0.861097839 0.9999595
## CDCA5 1.496978e-01 0.861126516 0.9999595
## ZNFX1 1.495549e-01 0.861249232 0.9999595
## BRWD1 1.494856e-01 0.861308734 0.9999595
## CBFA2T3 1.494589e-01 0.861331698 0.9999595
## NOC2L 1.494394e-01 0.861348495 0.9999595
## FAM83G 1.493865e-01 0.861393886 0.9999595
## TAB2 1.493721e-01 0.861406277 0.9999595
## TMEM219 1.493266e-01 0.861445429 0.9999595
## HEATR1 1.491887e-01 0.861563948 0.9999595
## GIMAP1-GIMAP5 1.490851e-01 0.861652926 0.9999595
## HAPLN4 1.488774e-01 0.861831485 0.9999595
## ZNF525 1.488709e-01 0.861837065 0.9999595
## SUCLG2 1.488112e-01 0.861888449 0.9999595
## GPC2 1.486555e-01 0.862022299 0.9999595
## ZNF148 1.486489e-01 0.862027973 0.9999595
## PSMC2 1.486412e-01 0.862034566 0.9999595
## UNC5A 1.485190e-01 0.862139696 0.9999595
## ATP6V1G1 1.485059e-01 0.862150946 0.9999595
## CREBBP 1.485022e-01 0.862154090 0.9999595
## NR1H2 1.481351e-01 0.862469898 0.9999595
## PARK7 1.480694e-01 0.862526412 0.9999595
## MTFP1 1.480607e-01 0.862533957 0.9999595
## KRT10 1.479914e-01 0.862593533 0.9999595
## WDR1 1.479809e-01 0.862602607 0.9999595
## NFE2 1.478741e-01 0.862694530 0.9999595
## PAK1IP1 1.478719e-01 0.862696360 0.9999595
## PHF2 1.478495e-01 0.862715707 0.9999595
## ARRDC5 1.478357e-01 0.862727553 0.9999595
## MCM8 1.477769e-01 0.862778193 0.9999595
## SHARPIN 1.476632e-01 0.862876062 0.9999595
## AP4E1 1.476613e-01 0.862877702 0.9999595
## CTSK 1.476500e-01 0.862887374 0.9999595
## ZFAND3 1.475959e-01 0.862933937 0.9999595
## CCDC13 1.475153e-01 0.863003377 0.9999595
## C6orf163 1.474041e-01 0.863099071 0.9999595
## WRNIP1 1.473965e-01 0.863105649 0.9999595
## ECHS1 1.472928e-01 0.863194881 0.9999595
## MAFG 1.472576e-01 0.863225249 0.9999595
## CHIT1 1.472071e-01 0.863268746 0.9999595
## KLHL7 1.472063e-01 0.863269401 0.9999595
## TECR 1.471659e-01 0.863304205 0.9999595
## ATP5ME 1.470245e-01 0.863425974 0.9999595
## RACGAP1 1.470115e-01 0.863437225 0.9999595
## FLYWCH2 1.470081e-01 0.863440080 0.9999595
## SNIP1 1.469988e-01 0.863448161 0.9999595
## IPO4 1.469062e-01 0.863527881 0.9999595
## TEN1 1.468913e-01 0.863540754 0.9999595
## COIL 1.468060e-01 0.863614232 0.9999595
## ELP5 1.467995e-01 0.863619795 0.9999595
## CBL 1.467905e-01 0.863627525 0.9999595
## RPUSD1 1.467096e-01 0.863697232 0.9999595
## SMIM13 1.467090e-01 0.863697764 0.9999595
## LRRC27 1.466898e-01 0.863714368 0.9999595
## SLC35E4 1.466593e-01 0.863740598 0.9999595
## SDHAF1 1.466589e-01 0.863740919 0.9999595
## CEBPG 1.465843e-01 0.863805239 0.9999595
## NDUFAF8 1.465740e-01 0.863814121 0.9999595
## ARL5B 1.465370e-01 0.863845991 0.9999595
## ZNF594 1.464675e-01 0.863905884 0.9999595
## NBPF19 1.464473e-01 0.863923321 0.9999595
## ADGRE5 1.464374e-01 0.863931816 0.9999595
## NIPSNAP2 1.464148e-01 0.863951281 0.9999595
## HPS6 1.462819e-01 0.864065842 0.9999595
## TRDMT1 1.462676e-01 0.864078176 0.9999595
## TBL3 1.461882e-01 0.864146603 0.9999595
## RAP2C 1.461515e-01 0.864178286 0.9999595
## MKRN1 1.461381e-01 0.864189822 0.9999595
## PRF1 1.461203e-01 0.864205207 0.9999595
## PLXNB1 1.460939e-01 0.864227893 0.9999595
## SMDT1 1.460492e-01 0.864266500 0.9999595
## PUF60 1.460465e-01 0.864268789 0.9999595
## XPR1 1.459732e-01 0.864331969 0.9999595
## P2RX7 1.459636e-01 0.864340253 0.9999595
## TMA7 1.459454e-01 0.864355977 0.9999595
## SGO2 1.458416e-01 0.864445463 0.9999595
## MRPL52 1.458075e-01 0.864474932 0.9999595
## ARMCX6 1.457810e-01 0.864497711 0.9999595
## ITGA2B 1.457303e-01 0.864541430 0.9999595
## DUSP11 1.457208e-01 0.864549684 0.9999595
## POLE 1.456213e-01 0.864635516 0.9999595
## UBALD2 1.455922e-01 0.864660561 0.9999595
## FADD 1.455271e-01 0.864716722 0.9999595
## PRKRIP1 1.455055e-01 0.864735388 0.9999595
## PEF1 1.454700e-01 0.864766027 0.9999595
## HTRA4 1.454231e-01 0.864806435 0.9999595
## GABBR1 1.453906e-01 0.864834530 0.9999595
## IFFO1 1.453440e-01 0.864874709 0.9999595
## FANCC 1.452300e-01 0.864973052 0.9999595
## FAM160B1 1.452054e-01 0.864994279 0.9999595
## EMC6 1.452051e-01 0.864994534 0.9999595
## ZBTB47 1.450778e-01 0.865104460 0.9999595
## MTHFD1 1.449775e-01 0.865190952 0.9999595
## FAM50A 1.449347e-01 0.865227957 0.9999595
## NWD1 1.448600e-01 0.865292374 0.9999595
## VPS53 1.448424e-01 0.865307625 0.9999595
## NFE2L2 1.448309e-01 0.865317557 0.9999595
## CD180 1.447697e-01 0.865370371 0.9999595
## PHF19 1.447542e-01 0.865383760 0.9999595
## TOX4 1.447165e-01 0.865416301 0.9999595
## LRRC20 1.447073e-01 0.865424203 0.9999595
## LYSMD1 1.446992e-01 0.865431195 0.9999595
## DPP7 1.446384e-01 0.865483697 0.9999595
## RNASEL 1.446197e-01 0.865499917 0.9999595
## RANBP2 1.445482e-01 0.865561613 0.9999595
## PLPPR2 1.445137e-01 0.865591367 0.9999595
## MTREX 1.444173e-01 0.865674666 0.9999595
## RIPK1 1.443063e-01 0.865770518 0.9999595
## MARF1 1.442375e-01 0.865829960 0.9999595
## OSBPL3 1.441997e-01 0.865862615 0.9999595
## MRPL20 1.441585e-01 0.865898148 0.9999595
## HEATR5B 1.441106e-01 0.865939600 0.9999595
## RHD 1.440789e-01 0.865966981 0.9999595
## MAST3 1.440762e-01 0.865969315 0.9999595
## OSER1 1.440566e-01 0.865986184 0.9999595
## PES1 1.440090e-01 0.866027383 0.9999595
## LEMD2 1.439935e-01 0.866040755 0.9999595
## RP9 1.439577e-01 0.866071670 0.9999595
## APOBEC3D 1.439441e-01 0.866083453 0.9999595
## ZFPM1 1.439238e-01 0.866100921 0.9999595
## CPSF1 1.438879e-01 0.866132015 0.9999595
## EXOSC5 1.438575e-01 0.866158224 0.9999595
## VENTX 1.438098e-01 0.866199433 0.9999595
## LAMP2 1.437747e-01 0.866229802 0.9999595
## NFIC 1.437309e-01 0.866267673 0.9999595
## PIGK 1.436634e-01 0.866325965 0.9999595
## ATP2C1 1.436212e-01 0.866362480 0.9999595
## DR1 1.434969e-01 0.866469898 0.9999595
## NUP214 1.434789e-01 0.866485425 0.9999595
## CLEC12A 1.434726e-01 0.866490884 0.9999595
## PKHD1L1 1.434537e-01 0.866507225 0.9999595
## ATP1A3 1.434044e-01 0.866549836 0.9999595
## TM2D2 1.434035e-01 0.866550647 0.9999595
## NFYB 1.433848e-01 0.866566826 0.9999595
## BOLA2-SMG1P6 1.433703e-01 0.866579342 0.9999595
## NUPR1 1.432804e-01 0.866657043 0.9999595
## ATP5IF1 1.432398e-01 0.866692222 0.9999595
## DNAJA4 1.431557e-01 0.866764888 0.9999595
## DMTF1 1.431498e-01 0.866770043 0.9999595
## C11orf58 1.431002e-01 0.866812932 0.9999595
## HSPB1 1.430355e-01 0.866868878 0.9999595
## FGD6 1.430133e-01 0.866888008 0.9999595
## KAT2B 1.429516e-01 0.866941396 0.9999595
## MXRA7 1.429416e-01 0.866950081 0.9999595
## VPS50 1.428205e-01 0.867054803 0.9999595
## LARS2 1.427339e-01 0.867129718 0.9999595
## BCL7C 1.426488e-01 0.867203383 0.9999595
## KDM8 1.425497e-01 0.867289055 0.9999595
## ALDH16A1 1.424301e-01 0.867392576 0.9999595
## RARS2 1.423955e-01 0.867422541 0.9999595
## WDR91 1.423770e-01 0.867438538 0.9999595
## IKBKE 1.421246e-01 0.867656980 0.9999595
## PHF20L1 1.421232e-01 0.867658163 0.9999595
## KMT5A 1.421232e-01 0.867658214 0.9999595
## ITGB3 1.421064e-01 0.867672762 0.9999595
## FAM160B2 1.420866e-01 0.867689842 0.9999595
## LASP1 1.419926e-01 0.867771284 0.9999595
## MRTFA 1.419164e-01 0.867837233 0.9999595
## DNAH1 1.418707e-01 0.867876810 0.9999595
## RABGEF1 1.418510e-01 0.867893847 0.9999595
## CCDC24 1.417267e-01 0.868001466 0.9999595
## NCK2 1.416484e-01 0.868069266 0.9999595
## ENPEP 1.416227e-01 0.868091574 0.9999595
## SLC35F2 1.416092e-01 0.868103272 0.9999595
## CRAT 1.415791e-01 0.868129325 0.9999595
## CYBB 1.414868e-01 0.868209303 0.9999595
## TRIM21 1.414818e-01 0.868213633 0.9999595
## HPRT1 1.411049e-01 0.868540113 0.9999595
## PPP1R12B 1.408585e-01 0.868753687 0.9999595
## EIF4E2 1.405287e-01 0.869039575 0.9999595
## LCLAT1 1.405105e-01 0.869055374 0.9999595
## HERC5 1.404355e-01 0.869120394 0.9999595
## ACAP3 1.404031e-01 0.869148516 0.9999595
## SLC35A3 1.403520e-01 0.869192822 0.9999595
## PARPBP 1.403508e-01 0.869193860 0.9999595
## EIF1B 1.402428e-01 0.869287484 0.9999595
## KLRC3 1.402187e-01 0.869308424 0.9999595
## SIPA1 1.402162e-01 0.869310537 0.9999595
## CD81 1.401099e-01 0.869402800 0.9999595
## ALAS1 1.400892e-01 0.869420760 0.9999595
## IMP3 1.400736e-01 0.869434272 0.9999595
## RRAGB 1.399197e-01 0.869567740 0.9999595
## CENPE 1.399058e-01 0.869579798 0.9999595
## ZNF608 1.398462e-01 0.869631570 0.9999595
## ZNF143 1.398432e-01 0.869634115 0.9999595
## POP5 1.397960e-01 0.869675126 0.9999595
## PPP1CA 1.395326e-01 0.869903697 0.9999595
## ARHGAP19 1.394198e-01 0.870001588 0.9999595
## DNAL4 1.394174e-01 0.870003663 0.9999595
## TELO2 1.393900e-01 0.870027472 0.9999595
## BCL2L15 1.393699e-01 0.870044874 0.9999595
## SNX30 1.392766e-01 0.870125889 0.9999595
## PCDH9 1.391630e-01 0.870224547 0.9999595
## PNPLA8 1.389579e-01 0.870402625 0.9999595
## PWWP3A 1.388951e-01 0.870457175 0.9999595
## ZNF585B 1.388898e-01 0.870461773 0.9999595
## STEAP4 1.388719e-01 0.870477308 0.9999595
## CDKAL1 1.388548e-01 0.870492111 0.9999595
## CCNT2 1.387465e-01 0.870586182 0.9999595
## DAPK3 1.387277e-01 0.870602566 0.9999595
## CCDC180 1.386992e-01 0.870627323 0.9999595
## CENPF 1.386397e-01 0.870678978 0.9999595
## TMEM170B 1.386092e-01 0.870705442 0.9999595
## DDX54 1.385913e-01 0.870721000 0.9999595
## COMMD7 1.385138e-01 0.870788379 0.9999595
## ZNF341 1.384586e-01 0.870836270 0.9999595
## H1-10 1.384448e-01 0.870848262 0.9999595
## MICU2 1.384355e-01 0.870856357 0.9999595
## PRTFDC1 1.384323e-01 0.870859137 0.9999595
## ME2 1.384273e-01 0.870863495 0.9999595
## DCAF16 1.384045e-01 0.870883328 0.9999595
## IFI30 1.384023e-01 0.870885264 0.9999595
## SCNM1 1.383621e-01 0.870920185 0.9999595
## EXD1 1.383540e-01 0.870927187 0.9999595
## MAFK 1.383447e-01 0.870935287 0.9999595
## ZFX 1.382899e-01 0.870982892 0.9999595
## CXorf56 1.382831e-01 0.870988804 0.9999595
## RBM26 1.382455e-01 0.871021480 0.9999595
## ARMH1 1.381981e-01 0.871062668 0.9999595
## RFXANK 1.381241e-01 0.871127002 0.9999595
## ARNTL2 1.381158e-01 0.871134168 0.9999595
## PPP2CB 1.380204e-01 0.871217157 0.9999595
## SNU13 1.379892e-01 0.871244244 0.9999595
## KIAA1328 1.379159e-01 0.871307966 0.9999595
## ABL2 1.378869e-01 0.871333194 0.9999595
## PFKL 1.378796e-01 0.871339487 0.9999595
## GPCPD1 1.378052e-01 0.871404238 0.9999595
## TSC2 1.377865e-01 0.871420473 0.9999595
## MRPL58 1.377710e-01 0.871433958 0.9999595
## ATF6B 1.377651e-01 0.871439050 0.9999595
## CCDC25 1.377141e-01 0.871483382 0.9999595
## AK9 1.376520e-01 0.871537446 0.9999595
## RBMX2 1.376136e-01 0.871570840 0.9999595
## DRG2 1.375636e-01 0.871614273 0.9999595
## LYSMD3 1.375527e-01 0.871623761 0.9999595
## STIL 1.375073e-01 0.871663268 0.9999595
## SMC6 1.374322e-01 0.871728540 0.9999595
## APOLD1 1.373828e-01 0.871771523 0.9999595
## ELL2 1.372949e-01 0.871847978 0.9999595
## RUFY2 1.372621e-01 0.871876519 0.9999595
## ABAT 1.371547e-01 0.871969927 0.9999595
## HEATR3 1.371042e-01 0.872013869 0.9999595
## INTS2 1.370920e-01 0.872024491 0.9999595
## AKTIP 1.370417e-01 0.872068265 0.9999595
## TAB3 1.370384e-01 0.872071120 0.9999595
## SAC3D1 1.370077e-01 0.872097888 0.9999595
## ACAD10 1.369757e-01 0.872125674 0.9999595
## UBE2B 1.369669e-01 0.872133371 0.9999595
## FAM168A 1.369361e-01 0.872160135 0.9999595
## TMEM154 1.368960e-01 0.872195059 0.9999595
## GAS8 1.368347e-01 0.872248399 0.9999595
## CCDC22 1.368159e-01 0.872264783 0.9999595
## AGAP1 1.367557e-01 0.872317170 0.9999595
## BBS5 1.366808e-01 0.872382334 0.9999595
## CROCC 1.366018e-01 0.872451095 0.9999595
## FAU 1.365407e-01 0.872504321 0.9999595
## FOXJ3 1.365224e-01 0.872520268 0.9999595
## PAIP2 1.364561e-01 0.872577931 0.9999595
## COMTD1 1.363097e-01 0.872705452 0.9999595
## GOLGA7 1.362206e-01 0.872782998 0.9999595
## CCZ1B 1.362055e-01 0.872796133 0.9999595
## TBC1D10A 1.361938e-01 0.872806393 0.9999595
## CLUH 1.361630e-01 0.872833179 0.9999595
## FBXL17 1.361553e-01 0.872839870 0.9999595
## HELQ 1.361191e-01 0.872871433 0.9999595
## FKTN 1.360614e-01 0.872921655 0.9999595
## PSMA3 1.359857e-01 0.872987599 0.9999595
## FASTKD5 1.359591e-01 0.873010816 0.9999595
## SLC9A3R1 1.358897e-01 0.873071188 0.9999595
## TES 1.358581e-01 0.873098748 0.9999595
## FZR1 1.358559e-01 0.873100703 0.9999595
## LMBR1 1.358362e-01 0.873117842 0.9999595
## MID1IP1 1.358356e-01 0.873118380 0.9999595
## KDM7A 1.358079e-01 0.873142499 0.9999595
## CDCA7L 1.358017e-01 0.873147885 0.9999595
## TLN1 1.357816e-01 0.873165383 0.9999595
## ERMP1 1.357552e-01 0.873188427 0.9999595
## LRRC42 1.357519e-01 0.873191251 0.9999595
## FUBP1 1.357474e-01 0.873195244 0.9999595
## ANKRD55 1.357439e-01 0.873198284 0.9999595
## URM1 1.357410e-01 0.873200749 0.9999595
## GNG2 1.357217e-01 0.873217563 0.9999595
## SPAG9 1.356649e-01 0.873267086 0.9999595
## MAPKAPK3 1.355906e-01 0.873331822 0.9999595
## RPS16 1.355519e-01 0.873365505 0.9999595
## CNNM4 1.354755e-01 0.873432111 0.9999595
## SMIM3 1.354516e-01 0.873452961 0.9999595
## TUBGCP2 1.354329e-01 0.873469227 0.9999595
## EIF2AK3 1.353225e-01 0.873565493 0.9999595
## TAPT1 1.352092e-01 0.873664274 0.9999595
## FHL3 1.351725e-01 0.873696265 0.9999595
## HSH2D 1.351101e-01 0.873750633 0.9999595
## PHETA1 1.350938e-01 0.873764810 0.9999595
## ALDH3A2 1.350873e-01 0.873770469 0.9999595
## EEF1D 1.350041e-01 0.873843065 0.9999595
## LAMTOR1 1.349780e-01 0.873865829 0.9999595
## BORCS7 1.349446e-01 0.873894926 0.9999595
## CCDC86 1.349292e-01 0.873908341 0.9999595
## ARIH1 1.348987e-01 0.873934930 0.9999595
## CEP250 1.348668e-01 0.873962774 0.9999595
## NDUFB5 1.348534e-01 0.873974433 0.9999595
## XRCC5 1.348445e-01 0.873982219 0.9999595
## MFSD6 1.348157e-01 0.874007334 0.9999595
## ITM2B 1.346516e-01 0.874150443 0.9999595
## PLXNA4 1.345936e-01 0.874201074 0.9999595
## MRPS21 1.345441e-01 0.874244226 0.9999595
## MVK 1.345334e-01 0.874253562 0.9999595
## TOB1 1.345096e-01 0.874274309 0.9999595
## MRFAP1L1 1.344709e-01 0.874308086 0.9999595
## RAB11FIP1 1.344651e-01 0.874313090 0.9999595
## ZNF37A 1.343848e-01 0.874383212 0.9999595
## CSNK2A1 1.342867e-01 0.874468778 0.9999595
## P2RX4 1.342092e-01 0.874536402 0.9999595
## CALHM6 1.341622e-01 0.874577450 0.9999595
## ZNF680 1.340756e-01 0.874652988 0.9999595
## NT5C3B 1.340628e-01 0.874664202 0.9999595
## TAPBP 1.339597e-01 0.874754111 0.9999595
## EGLN1 1.339454e-01 0.874766654 0.9999595
## ZCCHC10 1.339143e-01 0.874793748 0.9999595
## SF3B1 1.338449e-01 0.874854367 0.9999595
## ELOB 1.338277e-01 0.874869390 0.9999595
## TP53INP1 1.338208e-01 0.874875387 0.9999595
## MBD3 1.338102e-01 0.874884636 0.9999595
## KLHL28 1.337921e-01 0.874900467 0.9999595
## RBSN 1.337613e-01 0.874927376 0.9999595
## SYNCRIP 1.337328e-01 0.874952186 0.9999595
## IKZF1 1.336787e-01 0.874999417 0.9999595
## FKBP8 1.336779e-01 0.875000149 0.9999595
## EXOSC8 1.336127e-01 0.875057107 0.9999595
## CENPL 1.335936e-01 0.875073778 0.9999595
## MGAT4B 1.335718e-01 0.875092786 0.9999595
## FLVCR2 1.335299e-01 0.875129387 0.9999595
## COX16 1.334673e-01 0.875184032 0.9999595
## ATP6V1B2 1.334444e-01 0.875204070 0.9999595
## RNF126 1.334292e-01 0.875217323 0.9999595
## LMBR1L 1.332855e-01 0.875342810 0.9999595
## CHAMP1 1.332820e-01 0.875345842 0.9999595
## UBXN2A 1.331944e-01 0.875422355 0.9999595
## MIS18BP1 1.331792e-01 0.875435629 0.9999595
## RTL6 1.331697e-01 0.875443977 0.9999595
## EIF4A3 1.331224e-01 0.875485277 0.9999595
## TAOK2 1.330538e-01 0.875545255 0.9999595
## ZNF688 1.329952e-01 0.875596428 0.9999595
## CXXC5 1.327912e-01 0.875774695 0.9999595
## RABEP2 1.327412e-01 0.875818384 0.9999595
## FAHD2A 1.326971e-01 0.875856891 0.9999595
## JMJD7 1.326501e-01 0.875897926 0.9999595
## COPG1 1.326346e-01 0.875911500 0.9999595
## NFS1 1.326212e-01 0.875923236 0.9999595
## TULP4 1.325698e-01 0.875968193 0.9999595
## PELP1 1.325351e-01 0.875998479 0.9999595
## SPA17 1.325248e-01 0.876007517 0.9999595
## HIVEP3 1.325135e-01 0.876017392 0.9999595
## MFGE8 1.323460e-01 0.876163809 0.9999595
## COPB1 1.321416e-01 0.876342532 0.9999595
## TMEM273 1.320211e-01 0.876447844 0.9999595
## TNFSF14 1.319772e-01 0.876486246 0.9999595
## HGH1 1.319460e-01 0.876513528 0.9999595
## NFKBID 1.319444e-01 0.876514964 0.9999595
## ZSCAN30 1.318690e-01 0.876580944 0.9999595
## PPM1J 1.318583e-01 0.876590303 0.9999595
## PANK2 1.318579e-01 0.876590608 0.9999595
## CALD1 1.317882e-01 0.876651557 0.9999595
## YPEL5 1.316836e-01 0.876743067 0.9999595
## NADK 1.316623e-01 0.876761690 0.9999595
## DAD1 1.316232e-01 0.876795905 0.9999595
## ZNF845 1.315563e-01 0.876854444 0.9999595
## SEC22A 1.314733e-01 0.876927073 0.9999595
## COASY 1.313455e-01 0.877038930 0.9999595
## SNRPB 1.311357e-01 0.877222572 0.9999595
## MRPL38 1.310832e-01 0.877268540 0.9999595
## BBS10 1.310542e-01 0.877293941 0.9999595
## TNRC6B 1.308951e-01 0.877433232 0.9999595
## PABPN1 1.308927e-01 0.877435329 0.9999595
## MUC20 1.308919e-01 0.877436033 0.9999595
## TRIM23 1.308129e-01 0.877505152 0.9999595
## STRN 1.307432e-01 0.877566218 0.9999595
## NFRKB 1.307212e-01 0.877585493 0.9999595
## RBM4B 1.306351e-01 0.877660881 0.9999595
## EDEM1 1.305087e-01 0.877771594 0.9999595
## PTPMT1 1.304582e-01 0.877815826 0.9999595
## COPS2 1.304416e-01 0.877830385 0.9999595
## USF1 1.304315e-01 0.877839227 0.9999595
## NAGA 1.303951e-01 0.877871096 0.9999595
## UROS 1.303551e-01 0.877906122 0.9999595
## RPRD2 1.302651e-01 0.877984965 0.9999595
## CFAP251 1.302565e-01 0.877992468 0.9999595
## CNTD1 1.300163e-01 0.878202953 0.9999595
## BPI 1.299944e-01 0.878222132 0.9999595
## SAFB 1.299389e-01 0.878270758 0.9999595
## HPS4 1.298958e-01 0.878308552 0.9999595
## N4BP2L2 1.298947e-01 0.878309547 0.9999595
## TTK 1.298581e-01 0.878341632 0.9999595
## ASIC3 1.298460e-01 0.878352186 0.9999595
## TRPC6 1.298152e-01 0.878379174 0.9999595
## PRDX3 1.297975e-01 0.878394761 0.9999595
## PATL2 1.297691e-01 0.878419583 0.9999595
## ZNF335 1.296001e-01 0.878567790 0.9999595
## NCR3 1.295708e-01 0.878593498 0.9999595
## THAP3 1.295537e-01 0.878608411 0.9999595
## THOC3 1.295452e-01 0.878615905 0.9999595
## ARL6IP4 1.294696e-01 0.878682218 0.9999595
## PAXX 1.294240e-01 0.878722151 0.9999595
## WIPF2 1.294010e-01 0.878742300 0.9999595
## ILVBL 1.293644e-01 0.878774429 0.9999595
## PYROXD1 1.293202e-01 0.878813183 0.9999595
## MZT2B 1.293043e-01 0.878827175 0.9999595
## DMAP1 1.293037e-01 0.878827701 0.9999595
## UPRT 1.292603e-01 0.878865709 0.9999595
## ATF4 1.292294e-01 0.878892815 0.9999595
## FLOT1 1.291818e-01 0.878934550 0.9999595
## HEXIM2 1.291698e-01 0.878945115 0.9999595
## ALDH2 1.290056e-01 0.879089109 0.9999595
## CYB5RL 1.289644e-01 0.879125284 0.9999595
## RBM44 1.289009e-01 0.879180980 0.9999595
## SH2D3C 1.288858e-01 0.879194254 0.9999595
## WIPI2 1.288488e-01 0.879226654 0.9999595
## RECQL 1.288038e-01 0.879266164 0.9999595
## PPP1CC 1.286900e-01 0.879366037 0.9999595
## TKTL1 1.286806e-01 0.879374309 0.9999595
## CCDC88C 1.286689e-01 0.879384498 0.9999595
## ZNF557 1.285889e-01 0.879454720 0.9999595
## ING3 1.284564e-01 0.879571064 0.9999595
## NCDN 1.283538e-01 0.879661080 0.9999595
## MMP19 1.283193e-01 0.879691363 0.9999595
## PHF12 1.282351e-01 0.879765257 0.9999595
## ZHX2 1.280368e-01 0.879939380 0.9999595
## PFDN6 1.279277e-01 0.880035203 0.9999595
## LPXN 1.277682e-01 0.880175257 0.9999595
## SLA 1.277539e-01 0.880187812 0.9999595
## SHMT2 1.277413e-01 0.880198930 0.9999595
## GVQW3 1.276629e-01 0.880267814 0.9999595
## RNASEK 1.276460e-01 0.880282619 0.9999595
## CHTOP 1.276204e-01 0.880305124 0.9999595
## CWC27 1.275624e-01 0.880356059 0.9999595
## ADCK5 1.275379e-01 0.880377555 0.9999595
## CCDC137 1.275260e-01 0.880388041 0.9999595
## CDC42EP2 1.275169e-01 0.880396064 0.9999595
## SPRED1 1.274844e-01 0.880424605 0.9999595
## POFUT1 1.274389e-01 0.880464549 0.9999595
## NDUFB10 1.274166e-01 0.880484212 0.9999595
## POLR1C 1.272584e-01 0.880623197 0.9999595
## MMP17 1.272239e-01 0.880653527 0.9999595
## RHOT2 1.272005e-01 0.880674055 0.9999595
## CDK12 1.270430e-01 0.880812535 0.9999595
## CDK2AP1 1.268285e-01 0.881001066 0.9999595
## UTP6 1.268108e-01 0.881016577 0.9999595
## RPL36AL 1.268103e-01 0.881017013 0.9999595
## ARID2 1.267927e-01 0.881032536 0.9999595
## SRSF11 1.267667e-01 0.881055415 0.9999595
## PYCARD 1.267527e-01 0.881067725 0.9999595
## KCNQ5 1.266747e-01 0.881136295 0.9999595
## QDPR 1.265628e-01 0.881234689 0.9999595
## HNRNPD 1.265318e-01 0.881261923 0.9999595
## ENO1 1.265000e-01 0.881289877 0.9999595
## MADD 1.264906e-01 0.881298190 0.9999595
## KHSRP 1.264666e-01 0.881319280 0.9999595
## ITGA9 1.264293e-01 0.881352127 0.9999595
## SLC18B1 1.264189e-01 0.881361217 0.9999595
## CEACAM1 1.264064e-01 0.881372239 0.9999595
## RTF1 1.263971e-01 0.881380442 0.9999595
## TLK1 1.262745e-01 0.881488207 0.9999595
## SASH3 1.262668e-01 0.881494978 0.9999595
## STARD3NL 1.262035e-01 0.881550689 0.9999595
## APIP 1.260940e-01 0.881647029 0.9999595
## ZNF365 1.260663e-01 0.881671370 0.9999595
## ZNF587 1.260384e-01 0.881695921 0.9999595
## SRI 1.259103e-01 0.881808638 0.9999595
## ZNF250 1.257801e-01 0.881923220 0.9999595
## CTNNBIP1 1.257584e-01 0.881942370 0.9999595
## ANKRD36C 1.257051e-01 0.881989288 0.9999595
## PRR5 1.256682e-01 0.882021764 0.9999595
## CDK5RAP3 1.256059e-01 0.882076564 0.9999595
## VPS33B 1.255565e-01 0.882120110 0.9999595
## POLE4 1.253959e-01 0.882261472 0.9999595
## MAN2A2 1.253182e-01 0.882329855 0.9999595
## USP1 1.252504e-01 0.882389616 0.9999595
## POLH 1.252162e-01 0.882419709 0.9999595
## CORO7 1.250834e-01 0.882536650 0.9999595
## LIG3 1.250083e-01 0.882602804 0.9999595
## STAT5A 1.249302e-01 0.882671542 0.9999595
## TSPAN33 1.249282e-01 0.882673370 0.9999595
## STX5 1.249068e-01 0.882692159 0.9999595
## SRXN1 1.247985e-01 0.882787631 0.9999595
## LDB1 1.247746e-01 0.882808700 0.9999595
## NAA16 1.246866e-01 0.882886207 0.9999595
## NT5DC4 1.246835e-01 0.882888901 0.9999595
## ARF4 1.245803e-01 0.882979878 0.9999595
## DYNLL1 1.245339e-01 0.883020719 0.9999595
## PRKD2 1.245338e-01 0.883020824 0.9999595
## HIKESHI 1.245098e-01 0.883041950 0.9999595
## PSMC1 1.245028e-01 0.883048140 0.9999595
## TMIGD3 1.244201e-01 0.883121038 0.9999595
## FLNA 1.243631e-01 0.883171250 0.9999595
## IL12RB1 1.243564e-01 0.883177201 0.9999595
## AAR2 1.243461e-01 0.883186291 0.9999595
## LYST 1.243235e-01 0.883206126 0.9999595
## RXYLT1 1.242847e-01 0.883240396 0.9999595
## XRRA1 1.242533e-01 0.883268083 0.9999595
## RPP21 1.242185e-01 0.883298715 0.9999595
## PAPSS2 1.242068e-01 0.883309004 0.9999595
## NOP56 1.241978e-01 0.883316962 0.9999595
## IFIT1 1.241735e-01 0.883338352 0.9999595
## RBPMS 1.241343e-01 0.883372926 0.9999595
## AP1S3 1.241001e-01 0.883403079 0.9999595
## SLC16A5 1.240513e-01 0.883446115 0.9999595
## CRKL 1.240414e-01 0.883454861 0.9999595
## GHDC 1.238984e-01 0.883580892 0.9999595
## EIF2B4 1.238063e-01 0.883662177 0.9999595
## MDC1 1.238023e-01 0.883665644 0.9999595
## NUBPL 1.236551e-01 0.883795492 0.9999595
## FXN 1.235891e-01 0.883853671 0.9999595
## SH3TC2 1.235767e-01 0.883864650 0.9999595
## KIF5B 1.235682e-01 0.883872120 0.9999595
## ALKBH7 1.235659e-01 0.883874149 0.9999595
## STIM2 1.235443e-01 0.883893265 0.9999595
## ZMYM2 1.235009e-01 0.883931475 0.9999595
## ALDH1A1 1.234240e-01 0.883999379 0.9999595
## ELOVL5 1.234200e-01 0.884002890 0.9999595
## KNOP1 1.233788e-01 0.884039228 0.9999595
## CHMP5 1.233416e-01 0.884072035 0.9999595
## UBQLN4 1.233117e-01 0.884098416 0.9999595
## GSAP 1.231929e-01 0.884203250 0.9999595
## IRS2 1.231245e-01 0.884263654 0.9999595
## PGPEP1 1.231174e-01 0.884269914 0.9999595
## PTDSS2 1.230832e-01 0.884300020 0.9999595
## HIPK1 1.230829e-01 0.884300344 0.9999595
## CLTB 1.230751e-01 0.884307253 0.9999595
## TOP1 1.230706e-01 0.884311226 0.9999595
## MORF4L2 1.230672e-01 0.884314152 0.9999595
## PSMD7 1.230590e-01 0.884321394 0.9999595
## RAD51AP1 1.230390e-01 0.884339102 0.9999595
## PROSER3 1.230350e-01 0.884342610 0.9999595
## RNF138 1.230331e-01 0.884344315 0.9999595
## NMUR1 1.229842e-01 0.884387436 0.9999595
## PIBF1 1.229748e-01 0.884395748 0.9999595
## NOC4L 1.229639e-01 0.884405316 0.9999595
## TNPO3 1.229387e-01 0.884427567 0.9999595
## SLC25A46 1.229381e-01 0.884428167 0.9999595
## JTB 1.228884e-01 0.884472029 0.9999595
## TNK2 1.228356e-01 0.884518583 0.9999595
## TYW3 1.228132e-01 0.884538391 0.9999595
## ATP6V1F 1.227665e-01 0.884579577 0.9999595
## MTARC1 1.227269e-01 0.884614527 0.9999595
## TPP2 1.227175e-01 0.884622851 0.9999595
## GYS1 1.226752e-01 0.884660229 0.9999595
## ISY1 1.225698e-01 0.884753237 0.9999595
## CCDC186 1.224563e-01 0.884853462 0.9999595
## RBM39 1.224485e-01 0.884860377 0.9999595
## CYCS 1.224386e-01 0.884869084 0.9999595
## PTBP1 1.223659e-01 0.884933316 0.9999595
## CLDN9 1.223626e-01 0.884936252 0.9999595
## MARCHF5 1.222402e-01 0.885044344 0.9999595
## PSMG2 1.222167e-01 0.885065068 0.9999595
## CCDC30 1.222148e-01 0.885066807 0.9999595
## RNASET2 1.221772e-01 0.885099981 0.9999595
## TAGLN 1.221259e-01 0.885145315 0.9999595
## TTC8 1.221078e-01 0.885161301 0.9999595
## GATC 1.220761e-01 0.885189280 0.9999595
## KRIT1 1.220463e-01 0.885215584 0.9999595
## HAAO 1.218740e-01 0.885367858 0.9999595
## C16orf74 1.217974e-01 0.885435559 0.9999595
## LAMTOR3 1.217947e-01 0.885437936 0.9999595
## PEPD 1.217222e-01 0.885501959 0.9999595
## NDUFB7 1.216308e-01 0.885582757 0.9999595
## CENPK 1.216124e-01 0.885599061 0.9999595
## ITPRIPL1 1.216039e-01 0.885606508 0.9999595
## TNFAIP8 1.216001e-01 0.885609908 0.9999595
## CBWD1 1.215529e-01 0.885651644 0.9999595
## CEP295 1.214937e-01 0.885703950 0.9999595
## PPIAL4H 1.214695e-01 0.885725314 0.9999595
## N4BP2L1 1.213667e-01 0.885816209 0.9999595
## TMF1 1.212928e-01 0.885881562 0.9999595
## CABP5 1.212444e-01 0.885924347 0.9999595
## RUFY3 1.211586e-01 0.886000180 0.9999595
## TRAPPC12 1.211071e-01 0.886045742 0.9999595
## THG1L 1.210649e-01 0.886083103 0.9999595
## DDX39A 1.210222e-01 0.886120863 0.9999595
## ADORA2A 1.209687e-01 0.886168130 0.9999595
## XRCC1 1.209669e-01 0.886169727 0.9999595
## ZNF200 1.208531e-01 0.886270376 0.9999595
## CIAO2B 1.207556e-01 0.886356605 0.9999595
## ZNF318 1.207140e-01 0.886393433 0.9999595
## EVI2B 1.207005e-01 0.886405329 0.9999595
## RASSF1 1.206983e-01 0.886407296 0.9999595
## PSMC5 1.206259e-01 0.886471378 0.9999595
## STRIP2 1.206100e-01 0.886485407 0.9999595
## THAP2 1.205842e-01 0.886508297 0.9999595
## MTFR1 1.205649e-01 0.886525350 0.9999595
## NDUFS3 1.205051e-01 0.886578266 0.9999595
## SIRPB1 1.204845e-01 0.886596503 0.9999595
## CRIPT 1.203761e-01 0.886692418 0.9999595
## MYO9B 1.203449e-01 0.886719991 0.9999595
## NPIPA8 1.203344e-01 0.886729291 0.9999595
## SLC22A16 1.202814e-01 0.886776175 0.9999595
## ZDHHC18 1.201697e-01 0.886875098 0.9999595
## IP6K1 1.201595e-01 0.886884125 0.9999595
## IFT52 1.201241e-01 0.886915434 0.9999595
## ATG7 1.200693e-01 0.886963936 0.9999595
## SLC37A2 1.200279e-01 0.887000593 0.9999595
## TRIM37 1.199318e-01 0.887085647 0.9999595
## ZNF226 1.196460e-01 0.887338703 0.9999595
## UBE2Q1 1.196143e-01 0.887366791 0.9999595
## ATP6V1D 1.195608e-01 0.887414217 0.9999595
## GAR1 1.195165e-01 0.887453393 0.9999595
## CCDC124 1.193314e-01 0.887617410 0.9999595
## MYBL1 1.192962e-01 0.887648607 0.9999595
## CLSTN1 1.192900e-01 0.887654055 0.9999595
## PLEKHA3 1.192474e-01 0.887691804 0.9999595
## CORO6 1.191763e-01 0.887754834 0.9999595
## INPP5A 1.190664e-01 0.887852219 0.9999595
## OTUD4 1.189804e-01 0.887928350 0.9999595
## FBXO28 1.189400e-01 0.887964199 0.9999595
## UHRF1BP1 1.189110e-01 0.887989862 0.9999595
## SMARCA4 1.188717e-01 0.888024722 0.9999595
## TEPSIN 1.188021e-01 0.888086398 0.9999595
## PPP4C 1.187187e-01 0.888160304 0.9999595
## RPUSD3 1.187120e-01 0.888166275 0.9999595
## RFC1 1.186854e-01 0.888189873 0.9999595
## CACFD1 1.186731e-01 0.888200761 0.9999595
## TMEM201 1.186597e-01 0.888212597 0.9999595
## NEU3 1.185519e-01 0.888308183 0.9999595
## UBE2N 1.184695e-01 0.888381274 0.9999595
## FCRL6 1.184526e-01 0.888396270 0.9999595
## NDUFB9 1.182988e-01 0.888532602 0.9999595
## CDK14 1.182570e-01 0.888569705 0.9999595
## SMOX 1.182468e-01 0.888578702 0.9999595
## SMYD4 1.181837e-01 0.888634728 0.9999595
## SUPT6H 1.180816e-01 0.888725251 0.9999595
## MGAT4C 1.180451e-01 0.888757664 0.9999595
## MIDEAS 1.180102e-01 0.888788584 0.9999595
## ZNF317 1.180026e-01 0.888795380 0.9999595
## VARS2 1.180015e-01 0.888796309 0.9999595
## SCRIB 1.177510e-01 0.889018561 0.9999595
## RNF19A 1.177174e-01 0.889048402 0.9999595
## NEO1 1.177031e-01 0.889061097 0.9999595
## CEP192 1.176242e-01 0.889131039 0.9999595
## AOPEP 1.176120e-01 0.889141859 0.9999595
## SLC35B4 1.175985e-01 0.889153905 0.9999595
## NDUFV1 1.175778e-01 0.889172207 0.9999595
## EIF4E 1.175058e-01 0.889236133 0.9999595
## SLC35A4 1.174717e-01 0.889266403 0.9999595
## GSK3B 1.174395e-01 0.889294950 0.9999595
## MAP7D1 1.173027e-01 0.889416408 0.9999595
## SMUG1 1.172949e-01 0.889423308 0.9999595
## HNRNPA3 1.172816e-01 0.889435167 0.9999595
## NIPBL 1.172767e-01 0.889439485 0.9999595
## MORC3 1.171717e-01 0.889532756 0.9999595
## IL17RC 1.171495e-01 0.889552431 0.9999595
## PDRG1 1.170312e-01 0.889657455 0.9999595
## POP4 1.169857e-01 0.889697834 0.9999595
## PRICKLE4 1.167357e-01 0.889919888 0.9999595
## IDH3G 1.165832e-01 0.890055344 0.9999595
## DDX49 1.165568e-01 0.890078769 0.9999595
## B3GLCT 1.165499e-01 0.890084974 0.9999595
## MRPL46 1.165091e-01 0.890121206 0.9999595
## IAH1 1.164406e-01 0.890182071 0.9999595
## GNPTAB 1.162706e-01 0.890333140 0.9999595
## ZMAT5 1.160746e-01 0.890507333 0.9999595
## UBE2M 1.160349e-01 0.890542536 0.9999595
## GGTA1P 1.159614e-01 0.890607887 0.9999595
## INTS10 1.159518e-01 0.890616423 0.9999595
## SP140L 1.159400e-01 0.890626893 0.9999595
## KCTD13 1.159170e-01 0.890647384 0.9999595
## KIF20B 1.158801e-01 0.890680215 0.9999595
## GLB1L2 1.158785e-01 0.890681576 0.9999595
## MRPS24 1.158691e-01 0.890689999 0.9999595
## MTMR4 1.157773e-01 0.890771572 0.9999595
## RAD51C 1.156286e-01 0.890903808 0.9999595
## LSM7 1.156162e-01 0.890914847 0.9999595
## MRPS34 1.153816e-01 0.891123468 0.9999595
## SELENOW 1.153389e-01 0.891161473 0.9999595
## METTL4 1.152032e-01 0.891282150 0.9999595
## MTRF1L 1.151972e-01 0.891287469 0.9999595
## C11orf68 1.151711e-01 0.891310701 0.9999595
## SPSB3 1.151480e-01 0.891331254 0.9999595
## ACACB 1.151467e-01 0.891332374 0.9999595
## PRKCZ 1.150474e-01 0.891420720 0.9999595
## UBL7 1.150024e-01 0.891460797 0.9999595
## PDXK 1.149658e-01 0.891493334 0.9999595
## PARVG 1.148524e-01 0.891594312 0.9999595
## MAT2A 1.148126e-01 0.891629701 0.9999595
## ZNF8 1.146673e-01 0.891758971 0.9999595
## TTPAL 1.145237e-01 0.891886878 0.9999595
## KIF27 1.144662e-01 0.891938008 0.9999595
## MRPL23 1.144393e-01 0.891961992 0.9999595
## BRK1 1.144350e-01 0.891965829 0.9999595
## UNC119 1.143426e-01 0.892048086 0.9999595
## RAB21 1.143172e-01 0.892070684 0.9999595
## CCDC34 1.143005e-01 0.892085592 0.9999595
## MTFR1L 1.142963e-01 0.892089314 0.9999595
## ORC6 1.142539e-01 0.892127062 0.9999595
## MED13L 1.142205e-01 0.892156767 0.9999595
## YDJC 1.141883e-01 0.892185496 0.9999595
## ZNF347 1.141379e-01 0.892230346 0.9999595
## PCNP 1.140907e-01 0.892272375 0.9999595
## GPR153 1.140551e-01 0.892304089 0.9999595
## ZC2HC1A 1.140486e-01 0.892309836 0.9999595
## FITM1 1.140428e-01 0.892315055 0.9999595
## ANGPT1 1.139682e-01 0.892381460 0.9999595
## KLHL9 1.139287e-01 0.892416662 0.9999595
## GAS2L1 1.138352e-01 0.892499995 0.9999595
## PPFIBP2 1.137749e-01 0.892553679 0.9999595
## CHM 1.135743e-01 0.892732429 0.9999595
## RABEP1 1.135548e-01 0.892749796 0.9999595
## B4GALT7 1.135180e-01 0.892782617 0.9999595
## GORAB 1.134695e-01 0.892825753 0.9999595
## ZNF816-ZNF321P 1.134533e-01 0.892840264 0.9999595
## PPFIBP1 1.134197e-01 0.892870147 0.9999595
## L3HYPDH 1.133607e-01 0.892922756 0.9999595
## SIDT2 1.132541e-01 0.893017747 0.9999595
## DDX18 1.131957e-01 0.893069795 0.9999595
## WDR36 1.131116e-01 0.893144807 0.9999595
## PRPS1 1.131029e-01 0.893152551 0.9999595
## FAM120B 1.130902e-01 0.893163918 0.9999595
## EGLN2 1.130472e-01 0.893202237 0.9999595
## TENT4B 1.130225e-01 0.893224271 0.9999595
## DLD 1.130077e-01 0.893237404 0.9999595
## CCDC18 1.130006e-01 0.893243723 0.9999595
## MYADM 1.128313e-01 0.893394721 0.9999595
## PPRC1 1.128158e-01 0.893408537 0.9999595
## PPP6C 1.127781e-01 0.893442133 0.9999595
## CERS2 1.127321e-01 0.893483198 0.9999595
## CCDC32 1.126911e-01 0.893519728 0.9999595
## OCRL 1.126338e-01 0.893570883 0.9999595
## UBXN1 1.126280e-01 0.893576061 0.9999595
## TMEM104 1.124985e-01 0.893691518 0.9999595
## TNFSF12 1.124491e-01 0.893735644 0.9999595
## ZMYM6 1.123145e-01 0.893855696 0.9999595
## CAPRIN1 1.123047e-01 0.893864433 0.9999595
## ERAP2 1.121145e-01 0.894034142 0.9999595
## LANCL3 1.120207e-01 0.894117851 0.9999595
## URB1 1.118621e-01 0.894259441 0.9999595
## SLC25A43 1.118573e-01 0.894263717 0.9999595
## BRICD5 1.118337e-01 0.894284783 0.9999595
## GCN1 1.117660e-01 0.894345216 0.9999595
## UNC50 1.117571e-01 0.894353169 0.9999595
## OGFOD1 1.116436e-01 0.894454490 0.9999595
## IFI27L2 1.116310e-01 0.894465711 0.9999595
## CIB1 1.116244e-01 0.894471655 0.9999595
## CELSR3 1.115817e-01 0.894509722 0.9999595
## HFE 1.115633e-01 0.894526197 0.9999595
## SENP2 1.115547e-01 0.894533856 0.9999595
## MDM4 1.115481e-01 0.894539778 0.9999595
## RALGPS2 1.115153e-01 0.894569004 0.9999595
## MRM1 1.114676e-01 0.894611625 0.9999595
## RAD51 1.113931e-01 0.894678195 0.9999595
## TCIRG1 1.113867e-01 0.894683891 0.9999595
## UQCRH 1.112537e-01 0.894802674 0.9999595
## SNRPD1 1.111838e-01 0.894865061 0.9999595
## FDX2 1.111797e-01 0.894868738 0.9999595
## LAMP1 1.111123e-01 0.894928975 0.9999595
## DST 1.110529e-01 0.894982000 0.9999595
## SLC38A2 1.110109e-01 0.895019512 0.9999595
## ZNF615 1.108260e-01 0.895184714 0.9999595
## SMC4 1.108135e-01 0.895195937 0.9999595
## COLGALT2 1.107842e-01 0.895222137 0.9999595
## KCNQ1 1.107821e-01 0.895223955 0.9999595
## CHDH 1.107772e-01 0.895228378 0.9999595
## SPR 1.107649e-01 0.895239348 0.9999595
## CRISPLD2 1.106673e-01 0.895326545 0.9999595
## TTYH2 1.106643e-01 0.895329269 0.9999595
## BBIP1 1.106578e-01 0.895335072 0.9999595
## SLC6A16 1.105750e-01 0.895409100 0.9999595
## HP1BP3 1.105011e-01 0.895475117 0.9999595
## WDR74 1.104655e-01 0.895506950 0.9999595
## FRAT2 1.104651e-01 0.895507252 0.9999595
## BCAT2 1.104512e-01 0.895519745 0.9999595
## NKG7 1.104265e-01 0.895541783 0.9999595
## RERE 1.104135e-01 0.895553402 0.9999595
## FOXO4 1.103732e-01 0.895589462 0.9999595
## UPB1 1.103450e-01 0.895614642 0.9999595
## CYP2U1 1.102694e-01 0.895682214 0.9999595
## DAND5 1.102432e-01 0.895705700 0.9999595
## MND1 1.101375e-01 0.895800207 0.9999595
## HIRIP3 1.099991e-01 0.895923914 0.9999595
## ZSWIM8 1.099892e-01 0.895932785 0.9999595
## DDT 1.099600e-01 0.895958943 0.9999595
## SVOP 1.099424e-01 0.895974618 0.9999595
## TNFAIP8L2 1.099404e-01 0.895976439 0.9999595
## PCK2 1.098784e-01 0.896031913 0.9999595
## ABCA7 1.098601e-01 0.896048289 0.9999595
## C16orf87 1.097710e-01 0.896127987 0.9999595
## FAAP20 1.097104e-01 0.896182142 0.9999595
## ARRB1 1.096472e-01 0.896238708 0.9999595
## MEGF9 1.096410e-01 0.896244210 0.9999595
## TIMMDC1 1.096179e-01 0.896264949 0.9999595
## PAPOLG 1.096010e-01 0.896280043 0.9999595
## ZCCHC8 1.095919e-01 0.896288150 0.9999595
## PDSS2 1.094588e-01 0.896407306 0.9999595
## ZNF524 1.094488e-01 0.896416238 0.9999595
## FAM118B 1.092237e-01 0.896617619 0.9999595
## CYP2D6 1.091936e-01 0.896644638 0.9999595
## SSNA1 1.091557e-01 0.896678502 0.9999595
## AFTPH 1.091204e-01 0.896710075 0.9999595
## PPP1R8 1.091071e-01 0.896722060 0.9999595
## IPPK 1.090138e-01 0.896805571 0.9999595
## CARS2 1.089937e-01 0.896823575 0.9999595
## DBR1 1.089443e-01 0.896867721 0.9999595
## GPR18 1.088638e-01 0.896939825 0.9999595
## PHF3 1.088483e-01 0.896953696 0.9999595
## SAT2 1.086969e-01 0.897089268 0.9999595
## POGLUT1 1.086656e-01 0.897117270 0.9999595
## ZFYVE19 1.085761e-01 0.897197453 0.9999595
## TOP2B 1.085444e-01 0.897225847 0.9999595
## SFN 1.083618e-01 0.897389405 0.9999595
## FUT10 1.083383e-01 0.897410494 0.9999595
## AFF4 1.082621e-01 0.897478731 0.9999595
## BEX3 1.082368e-01 0.897501376 0.9999595
## FBRSL1 1.081475e-01 0.897581408 0.9999595
## CCNJ 1.080602e-01 0.897659652 0.9999595
## ZNF346 1.079104e-01 0.897793835 0.9999595
## MYO19 1.077775e-01 0.897913000 0.9999595
## EMC8 1.076475e-01 0.898029492 0.9999595
## RABGAP1L 1.074985e-01 0.898163056 0.9999595
## UBN1 1.074890e-01 0.898171642 0.9999595
## MANEAL 1.074230e-01 0.898230800 0.9999595
## SEC61A2 1.074045e-01 0.898247354 0.9999595
## CDC45 1.073826e-01 0.898266966 0.9999595
## MAP1A 1.073202e-01 0.898322991 0.9999595
## NIPA2 1.072708e-01 0.898367290 0.9999595
## PRX 1.071945e-01 0.898435658 0.9999595
## PMPCA 1.071653e-01 0.898461864 0.9999595
## COPS7A 1.070720e-01 0.898545588 0.9999595
## EAPP 1.070340e-01 0.898579614 0.9999595
## PPP2R3C 1.069859e-01 0.898622785 0.9999595
## POLR2E 1.069470e-01 0.898657644 0.9999595
## ZBTB1 1.068814e-01 0.898716533 0.9999595
## ZNF593 1.068685e-01 0.898728086 0.9999595
## PSTPIP1 1.068472e-01 0.898747187 0.9999595
## GLI1 1.067750e-01 0.898811983 0.9999595
## PINLYP 1.066840e-01 0.898893615 0.9999595
## RABGGTA 1.066596e-01 0.898915567 0.9999595
## ATAD5 1.066025e-01 0.898966813 0.9999595
## TRMO 1.066011e-01 0.898968072 0.9999595
## PWWP2B 1.065737e-01 0.898992650 0.9999595
## ZNF142 1.065299e-01 0.899031951 0.9999595
## TTC32 1.064369e-01 0.899115443 0.9999595
## UTP3 1.064237e-01 0.899127235 0.9999595
## CEP152 1.063473e-01 0.899195785 0.9999595
## SREK1IP1 1.062751e-01 0.899260647 0.9999595
## SZRD1 1.062561e-01 0.899277739 0.9999595
## RAD9B 1.061693e-01 0.899355603 0.9999595
## SNX27 1.061493e-01 0.899373541 0.9999595
## LRRC75A 1.061069e-01 0.899411613 0.9999595
## ABL1 1.060860e-01 0.899430448 0.9999595
## C19orf53 1.060518e-01 0.899461099 0.9999595
## ATF5 1.060404e-01 0.899471395 0.9999595
## LRRC37B 1.059709e-01 0.899533742 0.9999595
## DPY19L1 1.058581e-01 0.899635089 0.9999595
## APOOL 1.058451e-01 0.899646739 0.9999595
## DPP3 1.057842e-01 0.899701415 0.9999595
## CTIF 1.057665e-01 0.899717315 0.9999595
## EMSY 1.057291e-01 0.899750894 0.9999595
## SNRNP70 1.057245e-01 0.899755036 0.9999595
## ATRN 1.057244e-01 0.899755133 0.9999595
## ATP8A1 1.056946e-01 0.899781889 0.9999595
## TXNDC11 1.056862e-01 0.899789411 0.9999595
## GALNT10 1.056687e-01 0.899805169 0.9999595
## TYRO3 1.056000e-01 0.899866907 0.9999595
## SMARCA2 1.055751e-01 0.899889258 0.9999595
## UBC 1.055633e-01 0.899899834 0.9999595
## BATF 1.054666e-01 0.899986764 0.9999595
## ANKDD1A 1.054211e-01 0.900027624 0.9999595
## RTN4 1.053662e-01 0.900076955 0.9999595
## CBX8 1.053636e-01 0.900079305 0.9999595
## RGS2 1.053283e-01 0.900111001 0.9999595
## BCCIP 1.052944e-01 0.900141488 0.9999595
## ENTPD6 1.052414e-01 0.900189034 0.9999595
## IRF2BPL 1.052291e-01 0.900200161 0.9999595
## ARL6IP1 1.051610e-01 0.900261354 0.9999595
## CCDC107 1.051498e-01 0.900271394 0.9999595
## YES1 1.051150e-01 0.900302638 0.9999595
## RAD51D 1.050845e-01 0.900330092 0.9999595
## WDR4 1.050828e-01 0.900331562 0.9999595
## IRAK2 1.049354e-01 0.900464103 0.9999595
## TMOD4 1.049181e-01 0.900479606 0.9999595
## MLYCD 1.048559e-01 0.900535598 0.9999595
## SPNS2 1.048396e-01 0.900550200 0.9999595
## CALM1 1.046260e-01 0.900742246 0.9999595
## ABHD17A 1.046047e-01 0.900761394 0.9999595
## BRI3BP 1.046018e-01 0.900763981 0.9999595
## SHISA9 1.045188e-01 0.900838640 0.9999595
## POU2F2 1.045178e-01 0.900839551 0.9999595
## WIPF1 1.045105e-01 0.900846156 0.9999595
## TAF2 1.043165e-01 0.901020640 0.9999595
## CHCHD7 1.041311e-01 0.901187406 0.9999595
## RPRD1B 1.040859e-01 0.901228033 0.9999595
## CUL2 1.040771e-01 0.901235927 0.9999595
## TLCD5 1.040158e-01 0.901291159 0.9999595
## C17orf107 1.039475e-01 0.901352559 0.9999595
## TGS1 1.037858e-01 0.901498093 0.9999595
## SLC49A3 1.037418e-01 0.901537728 0.9999595
## WDR81 1.036591e-01 0.901612143 0.9999595
## MRPL14 1.036428e-01 0.901626761 0.9999595
## GHITM 1.036259e-01 0.901642042 0.9999595
## CENPJ 1.036136e-01 0.901653100 0.9999595
## SPAG5 1.035973e-01 0.901667738 0.9999595
## SACM1L 1.034485e-01 0.901801655 0.9999595
## PRAM1 1.034382e-01 0.901811012 0.9999595
## COX5B 1.033677e-01 0.901874450 0.9999595
## NUCB1 1.033092e-01 0.901927158 0.9999595
## YIPF2 1.033070e-01 0.901929112 0.9999595
## PDK2 1.031752e-01 0.902047801 0.9999595
## RNF181 1.029805e-01 0.902223112 0.9999595
## CRTC2 1.029330e-01 0.902265942 0.9999595
## PSMD12 1.028100e-01 0.902376707 0.9999595
## OTUD6B 1.027710e-01 0.902411882 0.9999595
## ZNF428 1.026760e-01 0.902497419 0.9999595
## THAP4 1.026368e-01 0.902532764 0.9999595
## KTI12 1.026187e-01 0.902549041 0.9999595
## SELENOH 1.026025e-01 0.902563659 0.9999595
## ZNF234 1.025493e-01 0.902611635 0.9999595
## MSRB2 1.025205e-01 0.902637530 0.9999595
## NUP210 1.024894e-01 0.902665553 0.9999595
## TGFB1 1.024726e-01 0.902680673 0.9999595
## UFM1 1.024634e-01 0.902688994 0.9999595
## MICOS13 1.024494e-01 0.902701603 0.9999595
## IMP4 1.023141e-01 0.902823553 0.9999595
## AP2M1 1.022990e-01 0.902837157 0.9999595
## SEC24B 1.022919e-01 0.902843579 0.9999595
## GPATCH8 1.021123e-01 0.903005459 0.9999595
## SFT2D1 1.020747e-01 0.903039332 0.9999595
## POLI 1.020639e-01 0.903049132 0.9999595
## TPCN1 1.020037e-01 0.903103401 0.9999595
## ADAM15 1.019679e-01 0.903135666 0.9999595
## UBA52 1.019459e-01 0.903155497 0.9999595
## RAB3A 1.019242e-01 0.903175086 0.9999595
## RARA 1.019035e-01 0.903193724 0.9999595
## RRP8 1.018391e-01 0.903251774 0.9999595
## ARPC4 1.018021e-01 0.903285106 0.9999595
## ARHGAP17 1.017776e-01 0.903307269 0.9999595
## MYLIP 1.017543e-01 0.903328287 0.9999595
## ITGB1 1.017505e-01 0.903331653 0.9999595
## TMSB4X 1.017234e-01 0.903356126 0.9999595
## AGPAT3 1.016747e-01 0.903400016 0.9999595
## C5AR1 1.016335e-01 0.903437227 0.9999595
## SKA3 1.016100e-01 0.903458432 0.9999595
## HINT2 1.016035e-01 0.903464256 0.9999595
## JMJD1C 1.015630e-01 0.903500756 0.9999595
## RESF1 1.015488e-01 0.903513573 0.9999595
## RNF217 1.015486e-01 0.903513750 0.9999595
## TBKBP1 1.014508e-01 0.903601948 0.9999595
## SERINC5 1.014493e-01 0.903603336 0.9999595
## TJAP1 1.014370e-01 0.903614439 0.9999595
## CHD6 1.014265e-01 0.903623931 0.9999595
## LNPK 1.014193e-01 0.903630388 0.9999595
## ATAD3C 1.013308e-01 0.903710251 0.9999595
## DHX57 1.012967e-01 0.903741057 0.9999595
## DEDD2 1.012292e-01 0.903801899 0.9999595
## LRP3 1.012272e-01 0.903803752 0.9999595
## DNAJC16 1.011927e-01 0.903834889 0.9999595
## PNKD 1.011535e-01 0.903870215 0.9999595
## PTCH1 1.011488e-01 0.903874462 0.9999595
## CD48 1.009738e-01 0.904032426 0.9999595
## U2SURP 1.009722e-01 0.904033838 0.9999595
## RPGRIP1L 1.009249e-01 0.904076552 0.9999595
## NACC2 1.008979e-01 0.904100946 0.9999595
## ZNF552 1.008439e-01 0.904149613 0.9999595
## DNAJB9 1.007818e-01 0.904205738 0.9999595
## KRCC1 1.007800e-01 0.904207303 0.9999595
## NRM 1.007303e-01 0.904252234 0.9999595
## RPS26 1.006602e-01 0.904315487 0.9999595
## JDP2 1.003301e-01 0.904613518 0.9999595
## ZNF12 1.002296e-01 0.904704314 0.9999595
## METTL26 1.000811e-01 0.904838449 0.9999595
## SLC2A8 1.000499e-01 0.904866630 0.9999595
## CAMSAP2 1.000168e-01 0.904896535 0.9999595
## SLC12A4 9.996780e-02 0.904940807 0.9999595
## PTPN9 9.993622e-02 0.904969345 0.9999595
## ELOVL7 9.988745e-02 0.905013406 0.9999595
## ZCCHC14 9.986213e-02 0.905036283 0.9999595
## CHST14 9.986186e-02 0.905036529 0.9999595
## COPS9 9.984143e-02 0.905054985 0.9999595
## TMTC2 9.984142e-02 0.905054998 0.9999595
## PPP1R11 9.981522e-02 0.905078667 0.9999595
## YPEL3 9.975953e-02 0.905128989 0.9999595
## MRO 9.970534e-02 0.905177958 0.9999595
## RBM5 9.968835e-02 0.905193312 0.9999595
## H2AJ 9.967708e-02 0.905203503 0.9999595
## MRS2 9.966848e-02 0.905211272 0.9999595
## GRAMD4 9.961503e-02 0.905259580 0.9999595
## TIMELESS 9.937239e-02 0.905478897 0.9999595
## SLC16A1 9.919543e-02 0.905638889 0.9999595
## C14orf93 9.900674e-02 0.905809507 0.9999595
## ERCC4 9.900020e-02 0.905815423 0.9999595
## SMIM4 9.894046e-02 0.905869446 0.9999595
## EPHA6 9.884068e-02 0.905959692 0.9999595
## IDH3B 9.871419e-02 0.906074114 0.9999595
## UBE2C 9.859660e-02 0.906180492 0.9999595
## NAA60 9.858667e-02 0.906189477 0.9999595
## WBP1 9.857426e-02 0.906200700 0.9999595
## LMF2 9.848363e-02 0.906282699 0.9999595
## SMURF1 9.846745e-02 0.906297347 0.9999595
## TLE4 9.842540e-02 0.906335393 0.9999595
## TRIAP1 9.833692e-02 0.906415458 0.9999595
## PADI4 9.832425e-02 0.906426922 0.9999595
## SLC15A4 9.830109e-02 0.906447878 0.9999595
## PRC1 9.818267e-02 0.906555056 0.9999595
## EGR2 9.816823e-02 0.906568125 0.9999595
## ADSS2 9.803664e-02 0.906687238 0.9999595
## SLC23A2 9.798226e-02 0.906736463 0.9999595
## MNDA 9.787440e-02 0.906834117 0.9999595
## NDUFC1 9.780897e-02 0.906893358 0.9999595
## PDGFD 9.775744e-02 0.906940018 0.9999595
## CBR1 9.772800e-02 0.906966670 0.9999595
## SPATA2 9.768808e-02 0.907002822 0.9999595
## COG7 9.766172e-02 0.907026691 0.9999595
## RANBP1 9.763808e-02 0.907048097 0.9999595
## ADAL 9.762028e-02 0.907064215 0.9999595
## SLC35D2 9.759476e-02 0.907087329 0.9999595
## LOC107984974 9.748591e-02 0.907185918 0.9999595
## LYVE1 9.747156e-02 0.907198909 0.9999595
## PDAP1 9.745061e-02 0.907217888 0.9999595
## EEFSEC 9.742279e-02 0.907243082 0.9999595
## DDX6 9.739416e-02 0.907269018 0.9999595
## KHDC4 9.738992e-02 0.907272855 0.9999595
## EXOC4 9.738110e-02 0.907280849 0.9999595
## SLC39A9 9.736590e-02 0.907294614 0.9999595
## DSTYK 9.735119e-02 0.907307944 0.9999595
## ZNF706 9.735048e-02 0.907308582 0.9999595
## MTCH2 9.724454e-02 0.907404562 0.9999595
## TMEM33 9.716710e-02 0.907474721 0.9999595
## HDHD5 9.708786e-02 0.907546517 0.9999595
## LRCH1 9.708175e-02 0.907552048 0.9999595
## ELMOD3 9.707253e-02 0.907560409 0.9999595
## PIK3R4 9.693041e-02 0.907689191 0.9999595
## LIN37 9.687345e-02 0.907740815 0.9999595
## WARS1 9.685070e-02 0.907761435 0.9999595
## UBXN11 9.677620e-02 0.907828956 0.9999595
## BMERB1 9.669798e-02 0.907899851 0.9999595
## SKAP2 9.659368e-02 0.907994400 0.9999595
## KCNH3 9.652335e-02 0.908058166 0.9999595
## ZC3H3 9.649947e-02 0.908079815 0.9999595
## PUM2 9.646189e-02 0.908113882 0.9999595
## CDK5RAP1 9.644490e-02 0.908129292 0.9999595
## YIPF3 9.633464e-02 0.908229270 0.9999595
## TRIM11 9.630042e-02 0.908260303 0.9999595
## CALHM2 9.616798e-02 0.908380403 0.9999595
## THAP6 9.612942e-02 0.908415380 0.9999595
## LEMD3 9.606900e-02 0.908470179 0.9999595
## TPTEP2-CSNK1E 9.605022e-02 0.908487218 0.9999595
## RFX5 9.604020e-02 0.908496308 0.9999595
## MDH2 9.603057e-02 0.908505039 0.9999595
## ZNF641 9.601473e-02 0.908519406 0.9999595
## MKNK2 9.587822e-02 0.908643244 0.9999595
## GDPD5 9.583126e-02 0.908685849 0.9999595
## PRR5L 9.578637e-02 0.908726570 0.9999595
## STX4 9.574050e-02 0.908768192 0.9999595
## ZNF770 9.572026e-02 0.908786560 0.9999595
## IPO8 9.569530e-02 0.908809202 0.9999595
## USP16 9.562458e-02 0.908873377 0.9999595
## RRP1 9.560498e-02 0.908891168 0.9999595
## PARG 9.556912e-02 0.908923708 0.9999595
## CHST12 9.554628e-02 0.908944431 0.9999595
## RAD9A 9.554578e-02 0.908944883 0.9999595
## LYPLA2 9.550841e-02 0.908978803 0.9999595
## PLEKHB2 9.547940e-02 0.909005127 0.9999595
## ZSWIM7 9.545254e-02 0.909029508 0.9999595
## INSIG1 9.528391e-02 0.909182571 0.9999595
## RAD50 9.525112e-02 0.909212336 0.9999595
## ZDHHC11 9.523140e-02 0.909230241 0.9999595
## STAG2 9.522944e-02 0.909232014 0.9999595
## C5orf51 9.522942e-02 0.909232033 0.9999595
## MPV17 9.517747e-02 0.909279197 0.9999595
## WWOX 9.509563e-02 0.909353497 0.9999595
## PSMD1 9.503031e-02 0.909412806 0.9999595
## BCL2L13 9.501511e-02 0.909426613 0.9999595
## FCSK 9.501436e-02 0.909427294 0.9999595
## VIRMA 9.501087e-02 0.909430464 0.9999595
## TRNT1 9.487904e-02 0.909550175 0.9999595
## KLHL20 9.482901e-02 0.909595609 0.9999595
## EPN1 9.482295e-02 0.909601114 0.9999595
## TFPT 9.478283e-02 0.909637550 0.9999595
## CTDNEP1 9.470895e-02 0.909704647 0.9999595
## ACSF2 9.470623e-02 0.909707121 0.9999595
## PCLAF 9.466093e-02 0.909748265 0.9999595
## ZNF134 9.466001e-02 0.909749107 0.9999595
## CITED4 9.458612e-02 0.909816223 0.9999595
## GSG1 9.455725e-02 0.909842449 0.9999595
## FOXM1 9.455076e-02 0.909848340 0.9999595
## ZDHHC13 9.435694e-02 0.910024435 0.9999595
## RING1 9.428665e-02 0.910088306 0.9999595
## PKIG 9.416505e-02 0.910198809 0.9999595
## LMTK2 9.415024e-02 0.910212260 0.9999595
## TRIM33 9.411611e-02 0.910243281 0.9999595
## ZBTB8B 9.395439e-02 0.910390267 0.9999595
## GFER 9.391427e-02 0.910426740 0.9999595
## TTC30B 9.389330e-02 0.910445805 0.9999595
## FBN2 9.385611e-02 0.910479611 0.9999595
## RNF11 9.384391e-02 0.910490705 0.9999595
## ZNF449 9.382924e-02 0.910504042 0.9999595
## SDE2 9.382776e-02 0.910505388 0.9999595
## NOM1 9.372996e-02 0.910594300 0.9999595
## C8orf82 9.368201e-02 0.910637896 0.9999595
## TUBGCP4 9.367352e-02 0.910645613 0.9999595
## TSPAN4 9.363592e-02 0.910679806 0.9999595
## SRP9 9.360374e-02 0.910709063 0.9999595
## MPND 9.357185e-02 0.910738064 0.9999595
## SEPTIN8 9.354647e-02 0.910761145 0.9999595
## SMG9 9.345434e-02 0.910844924 0.9999595
## MCMBP 9.344009e-02 0.910857888 0.9999595
## HNRNPAB 9.338262e-02 0.910910157 0.9999595
## C1orf35 9.338074e-02 0.910911867 0.9999595
## TRIM39 9.333454e-02 0.910953887 0.9999595
## KDM4C 9.327464e-02 0.911008366 0.9999595
## TMEM242 9.325654e-02 0.911024829 0.9999595
## MTF1 9.325109e-02 0.911029788 0.9999595
## ZFR 9.323086e-02 0.911048188 0.9999595
## ZMYM1 9.321935e-02 0.911058659 0.9999595
## P2RY2 9.321183e-02 0.911065501 0.9999595
## LRRC29 9.321031e-02 0.911066882 0.9999595
## CD24 9.319546e-02 0.911080394 0.9999595
## SLFN11 9.318932e-02 0.911085983 0.9999595
## CSRP1 9.317325e-02 0.911100602 0.9999595
## SGO1 9.306221e-02 0.911201616 0.9999595
## ZNF43 9.300794e-02 0.911250993 0.9999595
## PRR14 9.300222e-02 0.911256197 0.9999595
## TMEM69 9.299998e-02 0.911258240 0.9999595
## GON4L 9.292833e-02 0.911323429 0.9999595
## CLINT1 9.284812e-02 0.911396424 0.9999595
## CLCF1 9.280100e-02 0.911439298 0.9999595
## ZNF518B 9.276990e-02 0.911467603 0.9999595
## PIGC 9.273377e-02 0.911500490 0.9999595
## UBQLN1 9.266039e-02 0.911567271 0.9999595
## ATP11C 9.263888e-02 0.911586850 0.9999595
## NDUFC2 9.257933e-02 0.911641051 0.9999595
## RNF222 9.255049e-02 0.911667306 0.9999595
## COLQ 9.250673e-02 0.911707137 0.9999595
## YBX3 9.249664e-02 0.911716331 0.9999595
## IFT20 9.248669e-02 0.911725386 0.9999595
## HERC4 9.236753e-02 0.911833869 0.9999595
## EED 9.223623e-02 0.911953419 0.9999595
## SNRNP35 9.222992e-02 0.911959163 0.9999595
## SLC16A7 9.222145e-02 0.911966876 0.9999595
## CEP44 9.221354e-02 0.911974081 0.9999595
## PDLIM7 9.217953e-02 0.912005050 0.9999595
## THOC6 9.216711e-02 0.912016355 0.9999595
## ZNF687 9.216462e-02 0.912018630 0.9999595
## HLA-DRB1 9.210253e-02 0.912075171 0.9999595
## MYB 9.193857e-02 0.912224502 0.9999595
## NDUFS8 9.187368e-02 0.912283610 0.9999595
## TRADD 9.185718e-02 0.912298635 0.9999595
## HELLS 9.184686e-02 0.912308037 0.9999595
## GGA1 9.166116e-02 0.912477210 0.9999595
## TMEM91 9.165271e-02 0.912484916 0.9999595
## POLR2J 9.158441e-02 0.912547144 0.9999595
## POLA2 9.151686e-02 0.912608691 0.9999595
## MGAT4A 9.151652e-02 0.912609006 0.9999595
## LYRM1 9.146253e-02 0.912658200 0.9999595
## KIF24 9.145559e-02 0.912664529 0.9999595
## TRIP13 9.130213e-02 0.912804383 0.9999595
## ZNF805 9.116853e-02 0.912926160 0.9999595
## MOB4 9.110053e-02 0.912988151 0.9999595
## FAM234A 9.109144e-02 0.912996438 0.9999595
## AACS 9.105786e-02 0.913027054 0.9999595
## CAPS 9.099211e-02 0.913086999 0.9999595
## RSRC2 9.090239e-02 0.913168799 0.9999595
## CWC15 9.087631e-02 0.913192576 0.9999595
## HDAC11 9.082403e-02 0.913240248 0.9999595
## MAP1S 9.080752e-02 0.913255302 0.9999595
## ATP5MC1 9.072980e-02 0.913326176 0.9999595
## MARCO 9.069957e-02 0.913353747 0.9999595
## GTF2H2 9.067262e-02 0.913378331 0.9999595
## FUT6 9.062901e-02 0.913418099 0.9999595
## MIOS 9.056923e-02 0.913472624 0.9999595
## PARP8 9.056648e-02 0.913475136 0.9999595
## ANKRD10 9.055962e-02 0.913481392 0.9999595
## SMNDC1 9.054902e-02 0.913491064 0.9999595
## FMO5 9.051155e-02 0.913525239 0.9999595
## RBM33 9.047917e-02 0.913554774 0.9999595
## DAAM1 9.044591e-02 0.913585115 0.9999595
## RFC2 9.043502e-02 0.913595048 0.9999595
## ABCB1 9.042618e-02 0.913603116 0.9999595
## EFCAB8 9.040755e-02 0.913620108 0.9999595
## CXCR2 9.031533e-02 0.913704246 0.9999595
## YPEL1 9.030557e-02 0.913713144 0.9999595
## TCF20 9.022270e-02 0.913788757 0.9999595
## MCRIP1 9.020882e-02 0.913801418 0.9999595
## GUSB 9.008835e-02 0.913911351 0.9999595
## CHIC2 9.006039e-02 0.913936863 0.9999595
## PM20D2 9.004231e-02 0.913953371 0.9999595
## TMUB1 8.993868e-02 0.914047941 0.9999595
## RHOBTB1 8.993742e-02 0.914049099 0.9999595
## ZNF222 8.991774e-02 0.914067059 0.9999595
## NISCH 8.991489e-02 0.914069662 0.9999595
## MRPL28 8.983308e-02 0.914144333 0.9999595
## ODF3B 8.973078e-02 0.914237712 0.9999595
## F13A1 8.960142e-02 0.914355814 0.9999595
## PRRC2C 8.958201e-02 0.914373532 0.9999595
## NOLC1 8.953634e-02 0.914415234 0.9999595
## PEX10 8.949289e-02 0.914454908 0.9999595
## BTAF1 8.934668e-02 0.914588426 0.9999595
## CLEC2L 8.930688e-02 0.914624770 0.9999595
## ZNF692 8.925419e-02 0.914672896 0.9999595
## MSL1 8.924527e-02 0.914681041 0.9999595
## CUEDC2 8.924006e-02 0.914685802 0.9999595
## NAT1 8.914294e-02 0.914774511 0.9999595
## LGALSL 8.912640e-02 0.914789622 0.9999595
## LENG9 8.910998e-02 0.914804618 0.9999595
## LYSMD4 8.910473e-02 0.914809413 0.9999595
## PDE7A 8.907147e-02 0.914839797 0.9999595
## SLC4A1AP 8.904128e-02 0.914867370 0.9999595
## DENND1C 8.903541e-02 0.914872737 0.9999595
## SLC45A4 8.888863e-02 0.915006834 0.9999595
## ZDHHC8 8.877518e-02 0.915110500 0.9999595
## TPX2 8.875459e-02 0.915129310 0.9999595
## LAMP5 8.873096e-02 0.915150904 0.9999595
## CD8A 8.866973e-02 0.915206857 0.9999595
## ALG10 8.866688e-02 0.915209467 0.9999595
## TCF19 8.866484e-02 0.915211327 0.9999595
## CPNE1 8.859995e-02 0.915270635 0.9999595
## HSPA8 8.839874e-02 0.915454547 0.9999595
## RBBP4 8.837241e-02 0.915478610 0.9999595
## IFT43 8.837213e-02 0.915478873 0.9999595
## POT1 8.834686e-02 0.915501967 0.9999595
## ENOX2 8.831838e-02 0.915528004 0.9999595
## MARCHF6 8.831114e-02 0.915534626 0.9999595
## GET4 8.827743e-02 0.915565439 0.9999595
## KLHL17 8.826106e-02 0.915580411 0.9999595
## CRCP 8.820442e-02 0.915632191 0.9999595
## MPST 8.817399e-02 0.915660015 0.9999595
## TIGD6 8.809808e-02 0.915729425 0.9999595
## RELCH 8.809349e-02 0.915733620 0.9999595
## MCC 8.808999e-02 0.915736827 0.9999595
## LYRM9 8.808394e-02 0.915742354 0.9999595
## MRPS11 8.803749e-02 0.915784834 0.9999595
## S1PR4 8.802124e-02 0.915799692 0.9999595
## NINJ1 8.801798e-02 0.915802672 0.9999595
## NDRG3 8.783951e-02 0.915965901 0.9999595
## SCFD2 8.780103e-02 0.916001097 0.9999595
## CAMKK1 8.777385e-02 0.916025952 0.9999595
## CENPB 8.775240e-02 0.916045578 0.9999595
## YIPF4 8.774463e-02 0.916052685 0.9999595
## KTN1 8.768643e-02 0.916105921 0.9999595
## RECQL4 8.753914e-02 0.916240670 0.9999595
## SPINDOC 8.745831e-02 0.916314631 0.9999595
## ABHD14A 8.745047e-02 0.916321798 0.9999595
## ARHGAP4 8.744469e-02 0.916327086 0.9999595
## FXYD5 8.743446e-02 0.916336453 0.9999595
## PGLS 8.735200e-02 0.916411901 0.9999595
## RAD52 8.718242e-02 0.916567101 0.9999595
## ZNF257 8.716391e-02 0.916584041 0.9999595
## HPF1 8.713362e-02 0.916611767 0.9999595
## ZC3H7B 8.696085e-02 0.916769913 0.9999595
## ANKLE2 8.687171e-02 0.916851528 0.9999595
## HDHD3 8.682746e-02 0.916892040 0.9999595
## RPH3AL 8.676096e-02 0.916952924 0.9999595
## B3GAT3 8.671442e-02 0.916995539 0.9999595
## RNASEH2C 8.663538e-02 0.917067924 0.9999595
## LRIG2 8.653079e-02 0.917163705 0.9999595
## DENR 8.643251e-02 0.917253719 0.9999595
## PPP2R2A 8.633619e-02 0.917341949 0.9999595
## FLAD1 8.632190e-02 0.917355041 0.9999595
## MYO7B 8.628989e-02 0.917384365 0.9999595
## COX6B1 8.626136e-02 0.917410496 0.9999595
## RAF1 8.625382e-02 0.917417405 0.9999595
## MCM4 8.623582e-02 0.917433900 0.9999595
## TMEM183A 8.621414e-02 0.917453762 0.9999595
## PIK3R5 8.620498e-02 0.917462155 0.9999595
## USP13 8.612431e-02 0.917536060 0.9999595
## MEMO1 8.603026e-02 0.917622240 0.9999595
## GALK1 8.593526e-02 0.917709294 0.9999595
## IARS2 8.591848e-02 0.917724670 0.9999595
## NFIL3 8.588507e-02 0.917755285 0.9999595
## PNPT1 8.577715e-02 0.917854203 0.9999595
## RASSF4 8.573502e-02 0.917892819 0.9999595
## STMN1 8.553242e-02 0.918078542 0.9999595
## RBM15 8.552951e-02 0.918081209 0.9999595
## VKORC1L1 8.552669e-02 0.918083789 0.9999595
## PTPRE 8.551928e-02 0.918090580 0.9999595
## C5orf24 8.545141e-02 0.918152807 0.9999595
## ZFPL1 8.544429e-02 0.918159334 0.9999595
## COX5A 8.536730e-02 0.918229927 0.9999595
## AP3M1 8.535076e-02 0.918245098 0.9999595
## ZNF185 8.532084e-02 0.918272531 0.9999595
## NDUFA11 8.531817e-02 0.918274981 0.9999595
## CSTF1 8.530056e-02 0.918291126 0.9999595
## GID8 8.530013e-02 0.918291526 0.9999595
## HVCN1 8.530011e-02 0.918291541 0.9999595
## AHRR 8.520603e-02 0.918377820 0.9999595
## FBXO3 8.516223e-02 0.918417984 0.9999595
## RANGAP1 8.514558e-02 0.918433255 0.9999595
## ZWILCH 8.514171e-02 0.918436809 0.9999595
## PCTP 8.505697e-02 0.918514532 0.9999595
## SH3BP1 8.501056e-02 0.918557101 0.9999595
## FBXL19 8.496507e-02 0.918598832 0.9999595
## ARHGEF6 8.496227e-02 0.918601395 0.9999595
## PIEZO1 8.493642e-02 0.918625108 0.9999595
## GAS2L3 8.484910e-02 0.918705217 0.9999595
## IRGQ 8.477721e-02 0.918771168 0.9999595
## PEAK3 8.476367e-02 0.918783593 0.9999595
## ZNF669 8.460066e-02 0.918933165 0.9999595
## IER3IP1 8.456300e-02 0.918967726 0.9999595
## GADD45GIP1 8.455992e-02 0.918970560 0.9999595
## HS1BP3 8.452702e-02 0.919000747 0.9999595
## CLASP2 8.448922e-02 0.919035434 0.9999595
## TMEM243 8.446342e-02 0.919059119 0.9999595
## PPM1A 8.439151e-02 0.919125114 0.9999595
## RIN1 8.439092e-02 0.919125661 0.9999595
## GMFB 8.436222e-02 0.919152004 0.9999595
## CISD3 8.434992e-02 0.919163288 0.9999595
## DYNLRB1 8.431151e-02 0.919198546 0.9999595
## LIMD1 8.428308e-02 0.919224644 0.9999595
## HLA-DMB 8.421343e-02 0.919288586 0.9999595
## CCL24 8.419677e-02 0.919303877 0.9999595
## TEFM 8.417053e-02 0.919327963 0.9999595
## MTCH1 8.411680e-02 0.919377291 0.9999595
## MAGED2 8.407508e-02 0.919415596 0.9999595
## MLC1 8.401387e-02 0.919471800 0.9999595
## SNX33 8.395173e-02 0.919528863 0.9999595
## BAP1 8.389268e-02 0.919583081 0.9999595
## FCHO2 8.379682e-02 0.919671116 0.9999595
## TFDP1 8.375785e-02 0.919706907 0.9999595
## ATP2A1 8.374714e-02 0.919716749 0.9999595
## WWC2 8.371437e-02 0.919746845 0.9999595
## H3-3B 8.366229e-02 0.919794681 0.9999595
## EIF5 8.363343e-02 0.919821186 0.9999595
## NELFB 8.362494e-02 0.919828988 0.9999595
## AHCY 8.361692e-02 0.919836356 0.9999595
## PKN3 8.358308e-02 0.919867438 0.9999595
## PANK3 8.342146e-02 0.920015915 0.9999595
## EEA1 8.331635e-02 0.920112493 0.9999595
## CCR1 8.331562e-02 0.920113165 0.9999595
## MXD1 8.323141e-02 0.920190546 0.9999595
## NCR1 8.322047e-02 0.920200594 0.9999595
## NME2 8.320188e-02 0.920217685 0.9999595
## ZNF45 8.318849e-02 0.920229984 0.9999595
## EEF2KMT 8.317150e-02 0.920245599 0.9999595
## HMGA1 8.310926e-02 0.920302797 0.9999595
## ATP5MC2 8.309175e-02 0.920318889 0.9999595
## CXorf38 8.301979e-02 0.920385028 0.9999595
## UHMK1 8.289945e-02 0.920495641 0.9999595
## NHP2 8.280789e-02 0.920579819 0.9999595
## FRS2 8.276365e-02 0.920620490 0.9999595
## PDIA3 8.261968e-02 0.920752861 0.9999595
## POLR2D 8.255324e-02 0.920813948 0.9999595
## PDCD11 8.254652e-02 0.920820129 0.9999595
## LRBA 8.250488e-02 0.920858425 0.9999595
## RPL36A-HNRNPH2 8.246742e-02 0.920892875 0.9999595
## CFAP70 8.222066e-02 0.921119832 0.9999595
## PIWIL4 8.217279e-02 0.921163872 0.9999595
## FHL2 8.217029e-02 0.921166167 0.9999595
## UBA1 8.208838e-02 0.921241520 0.9999595
## FER 8.208028e-02 0.921248973 0.9999595
## PPP1R15B 8.206191e-02 0.921265875 0.9999595
## CAVIN1 8.202672e-02 0.921298252 0.9999595
## GOT1 8.202280e-02 0.921301855 0.9999595
## RWDD4 8.191954e-02 0.921396869 0.9999595
## CIRBP 8.186358e-02 0.921448366 0.9999595
## GPX1 8.177217e-02 0.921532486 0.9999595
## PCF11 8.165610e-02 0.921639305 0.9999595
## NDUFB11 8.165344e-02 0.921641756 0.9999595
## JUND 8.164855e-02 0.921646258 0.9999595
## HIGD2A 8.139489e-02 0.921879759 0.9999595
## RASA2 8.139080e-02 0.921883521 0.9999595
## TAZ 8.136017e-02 0.921911726 0.9999595
## PIK3CD 8.134908e-02 0.921921937 0.9999595
## UNC13D 8.129024e-02 0.921976108 0.9999595
## DNAJC1 8.120608e-02 0.922053598 0.9999595
## C19orf48 8.120084e-02 0.922058424 0.9999595
## BRPF3 8.118328e-02 0.922074599 0.9999595
## MORN2 8.117730e-02 0.922080104 0.9999595
## LOC100421372 8.113820e-02 0.922116112 0.9999595
## ZNF268 8.095551e-02 0.922284358 0.9999595
## EFNB1 8.091688e-02 0.922319942 0.9999595
## C9orf16 8.085779e-02 0.922374370 0.9999595
## STX16 8.085488e-02 0.922377049 0.9999595
## KCTD18 8.081227e-02 0.922416302 0.9999595
## CRTC1 8.080024e-02 0.922427389 0.9999595
## AKAP8 8.077875e-02 0.922447178 0.9999595
## CXXC1 8.076906e-02 0.922456106 0.9999595
## ORAI3 8.069637e-02 0.922523077 0.9999595
## HMGXB3 8.068493e-02 0.922533616 0.9999595
## PDS5A 8.066543e-02 0.922551586 0.9999595
## SERINC3 8.064734e-02 0.922568246 0.9999595
## SON 8.056906e-02 0.922640371 0.9999595
## ZBTB49 8.055213e-02 0.922655973 0.9999595
## HNMT 8.044059e-02 0.922758761 0.9999595
## MAP6D1 8.041854e-02 0.922779077 0.9999595
## CPLANE2 8.034702e-02 0.922844988 0.9999595
## ZNF213 8.033251e-02 0.922858365 0.9999595
## CES2 8.032511e-02 0.922865186 0.9999595
## TYW1B 8.027851e-02 0.922908134 0.9999595
## ZNF740 8.024827e-02 0.922936005 0.9999595
## RITA1 8.021295e-02 0.922968557 0.9999595
## NCK1 8.013187e-02 0.923043296 0.9999595
## CUL3 8.001214e-02 0.923153674 0.9999595
## MRPS22 7.997057e-02 0.923192002 0.9999595
## VAMP4 7.994540e-02 0.923215213 0.9999595
## CREBRF 7.991690e-02 0.923241486 0.9999595
## SPC24 7.991587e-02 0.923242440 0.9999595
## CACUL1 7.987958e-02 0.923275897 0.9999595
## LSM14A 7.981163e-02 0.923338552 0.9999595
## DHX36 7.968320e-02 0.923456992 0.9999595
## DNAJB5 7.961037e-02 0.923524159 0.9999595
## RPP30 7.957623e-02 0.923555653 0.9999595
## CDC5L 7.949180e-02 0.923633527 0.9999595
## CYB5D1 7.935119e-02 0.923763238 0.9999595
## PSMD6 7.933388e-02 0.923779207 0.9999595
## IRF9 7.932270e-02 0.923789524 0.9999595
## CACNA1A 7.920801e-02 0.923895343 0.9999595
## NF2 7.920727e-02 0.923896020 0.9999595
## RNA18SN2 7.917150e-02 0.923929029 0.9999595
## RNA18SN3 7.917150e-02 0.923929029 0.9999595
## RNA18SN4 7.917150e-02 0.923929029 0.9999595
## MTRES1 7.911036e-02 0.923985449 0.9999595
## ATP8B4 7.909906e-02 0.923995872 0.9999595
## GMEB2 7.909658e-02 0.923998157 0.9999595
## TSPYL4 7.893103e-02 0.924150939 0.9999595
## WDR5 7.892594e-02 0.924155637 0.9999595
## GPER1 7.890964e-02 0.924170688 0.9999595
## AURKAIP1 7.889821e-02 0.924181233 0.9999595
## BROX 7.888817e-02 0.924190500 0.9999595
## CLIP3 7.884168e-02 0.924233410 0.9999595
## ANKRD49 7.882604e-02 0.924247851 0.9999595
## STON2 7.881217e-02 0.924260657 0.9999595
## C10orf105 7.876678e-02 0.924302553 0.9999595
## GSTP1 7.864124e-02 0.924418447 0.9999595
## KIF13B 7.860469e-02 0.924452193 0.9999595
## EOLA2 7.860139e-02 0.924455236 0.9999595
## PLEKHF1 7.859965e-02 0.924456845 0.9999595
## ZNF451 7.857505e-02 0.924479554 0.9999595
## SCARB1 7.855975e-02 0.924493679 0.9999595
## S1PR2 7.851859e-02 0.924531683 0.9999595
## NRIP2 7.850629e-02 0.924543047 0.9999595
## PRKAB1 7.848907e-02 0.924558942 0.9999595
## STAMBP 7.838370e-02 0.924656248 0.9999595
## DNMBP 7.838257e-02 0.924657290 0.9999595
## EEF1AKMT1 7.824386e-02 0.924785391 0.9999595
## VPS35L 7.813815e-02 0.924883028 0.9999595
## ASGR1 7.806851e-02 0.924947353 0.9999595
## ETHE1 7.800131e-02 0.925009438 0.9999595
## LRRC8D 7.799512e-02 0.925015151 0.9999595
## RPL28 7.795811e-02 0.925049347 0.9999595
## GZMH 7.786555e-02 0.925134865 0.9999595
## KPNA6 7.784518e-02 0.925153687 0.9999595
## NUBP1 7.780453e-02 0.925191247 0.9999595
## GINS2 7.768020e-02 0.925306134 0.9999595
## STAR 7.763796e-02 0.925345167 0.9999595
## ST3GAL6 7.748080e-02 0.925490425 0.9999595
## PLEKHM3 7.740067e-02 0.925564494 0.9999595
## OSTM1 7.738088e-02 0.925582782 0.9999595
## FAM209B 7.734362e-02 0.925617228 0.9999595
## RARS1 7.719999e-02 0.925750021 0.9999595
## RNF103 7.717156e-02 0.925776304 0.9999595
## YTHDC1 7.701991e-02 0.925916527 0.9999595
## GFM2 7.692160e-02 0.926007451 0.9999595
## DDB2 7.684822e-02 0.926075316 0.9999595
## RNASE1 7.683555e-02 0.926087029 0.9999595
## EVA1B 7.676614e-02 0.926151233 0.9999595
## NCLN 7.634589e-02 0.926540038 0.9999595
## STOM 7.631688e-02 0.926566887 0.9999595
## MSANTD4 7.631085e-02 0.926572466 0.9999595
## SEPSECS 7.626305e-02 0.926616703 0.9999595
## MIEN1 7.624257e-02 0.926635652 0.9999595
## GPANK1 7.614284e-02 0.926727957 0.9999595
## ZEB1 7.614233e-02 0.926728429 0.9999595
## EIF6 7.607228e-02 0.926793268 0.9999595
## TMEM192 7.606692e-02 0.926798227 0.9999595
## FASLG 7.604981e-02 0.926814065 0.9999595
## MAN2B1 7.603002e-02 0.926832383 0.9999595
## FAF2 7.596513e-02 0.926892452 0.9999595
## SLC17A5 7.594029e-02 0.926915452 0.9999595
## AIG1 7.584236e-02 0.927006111 0.9999595
## NFYC 7.576865e-02 0.927074365 0.9999595
## NCF1 7.573638e-02 0.927104241 0.9999595
## C18orf21 7.573048e-02 0.927109706 0.9999595
## HCFC1 7.569295e-02 0.927144453 0.9999595
## ERCC3 7.568205e-02 0.927154551 0.9999595
## AASDHPPT 7.552413e-02 0.927300796 0.9999595
## GIGYF1 7.531874e-02 0.927491043 0.9999595
## NIP7 7.510658e-02 0.927687596 0.9999595
## TUFM 7.507057e-02 0.927720962 0.9999595
## RPS6KA4 7.498376e-02 0.927801394 0.9999595
## AK2 7.498224e-02 0.927802808 0.9999595
## REV1 7.486493e-02 0.927911521 0.9999595
## MIF4GD 7.486100e-02 0.927915159 0.9999595
## ABHD4 7.482685e-02 0.927946815 0.9999595
## IER2 7.482338e-02 0.927950028 0.9999595
## HSD17B12 7.480160e-02 0.927970216 0.9999595
## METTL21A 7.477929e-02 0.927990897 0.9999595
## ZHX1-C8orf76 7.477521e-02 0.927994673 0.9999595
## AP4B1 7.472768e-02 0.928038730 0.9999595
## AGBL2 7.468240e-02 0.928080700 0.9999595
## TNFRSF1A 7.461492e-02 0.928143250 0.9999595
## KDM3A 7.457555e-02 0.928179747 0.9999595
## IL2RG 7.455462e-02 0.928199152 0.9999595
## LAMTOR4 7.452759e-02 0.928224209 0.9999595
## RHBDF2 7.451378e-02 0.928237017 0.9999595
## TRMT2A 7.446031e-02 0.928286590 0.9999595
## ZNF18 7.442754e-02 0.928316973 0.9999595
## VAC14 7.442049e-02 0.928323508 0.9999595
## PRPF40A 7.427433e-02 0.928459036 0.9999595
## PPM1K 7.413683e-02 0.928586555 0.9999595
## SH3KBP1 7.412918e-02 0.928593646 0.9999595
## NOL12 7.401342e-02 0.928701019 0.9999595
## CPD 7.401102e-02 0.928703245 0.9999595
## PF4V1 7.400800e-02 0.928706040 0.9999595
## DESI1 7.399158e-02 0.928721275 0.9999595
## B4GALT1 7.398099e-02 0.928731100 0.9999595
## NUSAP1 7.383643e-02 0.928865201 0.9999595
## DDX20 7.375926e-02 0.928936802 0.9999595
## SPARC 7.372059e-02 0.928972681 0.9999595
## LAG3 7.356450e-02 0.929117519 0.9999595
## C2orf76 7.355616e-02 0.929125259 0.9999595
## VWF 7.351032e-02 0.929167795 0.9999595
## DDX41 7.346878e-02 0.929206345 0.9999595
## ADAP1 7.343801e-02 0.929234902 0.9999595
## MITD1 7.333609e-02 0.929329508 0.9999595
## TMX3 7.333399e-02 0.929331454 0.9999595
## METTL7A 7.333133e-02 0.929333922 0.9999595
## MED4 7.330442e-02 0.929358904 0.9999595
## NXF1 7.328387e-02 0.929377973 0.9999595
## USP48 7.319583e-02 0.929459700 0.9999595
## LLGL2 7.310233e-02 0.929546508 0.9999595
## GPAM 7.307846e-02 0.929568673 0.9999595
## INPP1 7.297975e-02 0.929660325 0.9999595
## ABCA5 7.288407e-02 0.929749174 0.9999595
## PPCDC 7.284357e-02 0.929786777 0.9999595
## MAS1 7.275135e-02 0.929872432 0.9999595
## ZXDC 7.270568e-02 0.929914841 0.9999595
## MTLN 7.269739e-02 0.929922541 0.9999595
## HECA 7.266355e-02 0.929953975 0.9999595
## SYTL2 7.258905e-02 0.930023173 0.9999595
## STK10 7.258245e-02 0.930029308 0.9999595
## NAAA 7.252893e-02 0.930079023 0.9999595
## NAXE 7.251990e-02 0.930087415 0.9999595
## ASPSCR1 7.241858e-02 0.930181548 0.9999595
## RLF 7.239675e-02 0.930201824 0.9999595
## RNF40 7.231910e-02 0.930273973 0.9999595
## NPFF 7.226526e-02 0.930323998 0.9999595
## TNIP1 7.224694e-02 0.930341021 0.9999595
## MYO1G 7.213942e-02 0.930440938 0.9999595
## PDP1 7.188416e-02 0.930678196 0.9999595
## SHPRH 7.185506e-02 0.930705250 0.9999595
## RRP9 7.184458e-02 0.930714989 0.9999595
## PLCB3 7.166740e-02 0.930879715 0.9999595
## NCAPD3 7.136336e-02 0.931162444 0.9999595
## ZNF330 7.136096e-02 0.931164680 0.9999595
## TAB1 7.136039e-02 0.931165212 0.9999595
## SRFBP1 7.135031e-02 0.931174583 0.9999595
## ILK 7.129840e-02 0.931222867 0.9999595
## TPD52L2 7.118792e-02 0.931325637 0.9999595
## SLC10A7 7.111186e-02 0.931396392 0.9999595
## SMC1A 7.110183e-02 0.931405726 0.9999595
## CNPY3 7.097236e-02 0.931526182 0.9999595
## GRN 7.092582e-02 0.931569483 0.9999595
## MICALL1 7.089789e-02 0.931595467 0.9999595
## MPV17L 7.076211e-02 0.931721826 0.9999595
## BACH1 7.071647e-02 0.931764295 0.9999595
## SCARF1 7.061795e-02 0.931855992 0.9999595
## HSD17B10 7.058570e-02 0.931886013 0.9999595
## WAC 7.054388e-02 0.931924938 0.9999595
## NUBP2 7.046771e-02 0.931995841 0.9999595
## RASA1 7.038337e-02 0.932074358 0.9999595
## HEXD 7.021400e-02 0.932232054 0.9999595
## FANCL 7.019971e-02 0.932245363 0.9999595
## CDKN2AIP 7.015019e-02 0.932291476 0.9999595
## KIF18B 7.012213e-02 0.932317603 0.9999595
## TMEM126B 7.008220e-02 0.932354791 0.9999595
## QKI 7.004177e-02 0.932392443 0.9999595
## ST3GAL5 6.993208e-02 0.932494611 0.9999595
## CCDC88A 6.991866e-02 0.932507108 0.9999595
## SOGA1 6.990509e-02 0.932519745 0.9999595
## TOX 6.982179e-02 0.932597343 0.9999595
## DGKQ 6.981159e-02 0.932606844 0.9999595
## ABCC10 6.965053e-02 0.932756885 0.9999595
## TMEM41A 6.951377e-02 0.932884316 0.9999595
## TOP1MT 6.947086e-02 0.932924303 0.9999595
## TBC1D5 6.942478e-02 0.932967237 0.9999595
## ZNF284 6.937534e-02 0.933013311 0.9999595
## CDC23 6.936787e-02 0.933020281 0.9999595
## ZNF273 6.934850e-02 0.933038325 0.9999595
## CCR5 6.933155e-02 0.933054124 0.9999595
## MGAT1 6.931328e-02 0.933071149 0.9999595
## DAB1 6.915628e-02 0.933217489 0.9999595
## PPP2R5D 6.914887e-02 0.933224399 0.9999595
## FAM107B 6.909606e-02 0.933273626 0.9999595
## ACO2 6.902850e-02 0.933336610 0.9999595
## SOCS4 6.900937e-02 0.933354444 0.9999595
## WDHD1 6.900373e-02 0.933359701 0.9999595
## ZC3H6 6.899585e-02 0.933367047 0.9999595
## RAB33A 6.894964e-02 0.933410128 0.9999595
## C2CD2 6.893324e-02 0.933425422 0.9999595
## BBX 6.890474e-02 0.933451992 0.9999595
## ERCC6 6.886978e-02 0.933484596 0.9999595
## ME3 6.886896e-02 0.933485354 0.9999595
## SLC25A14 6.885927e-02 0.933494396 0.9999595
## SLC38A6 6.881336e-02 0.933537202 0.9999595
## OLAH 6.875737e-02 0.933589411 0.9999595
## HSPE1 6.858623e-02 0.933749023 0.9999595
## SS18L1 6.856516e-02 0.933768671 0.9999595
## PTGES3L 6.849068e-02 0.933838144 0.9999595
## PPP4R3A 6.845266e-02 0.933873607 0.9999595
## SEC23A 6.837776e-02 0.933943481 0.9999595
## SPOCD1 6.832177e-02 0.933995712 0.9999595
## MTMR7 6.819248e-02 0.934116340 0.9999595
## RFX3 6.813412e-02 0.934170802 0.9999595
## SRSF4 6.804600e-02 0.934253033 0.9999595
## CSDE1 6.804214e-02 0.934256629 0.9999595
## PEX14 6.801793e-02 0.934279229 0.9999595
## TMEM19 6.793142e-02 0.934359967 0.9999595
## MAD2L1BP 6.787048e-02 0.934416846 0.9999595
## NMNAT3 6.779365e-02 0.934488556 0.9999595
## SLC7A5 6.758946e-02 0.934679173 0.9999595
## TXNRD2 6.757572e-02 0.934692009 0.9999595
## SPSB1 6.754610e-02 0.934719663 0.9999595
## AIFM1 6.746780e-02 0.934792771 0.9999595
## DCBLD2 6.734702e-02 0.934905559 0.9999595
## SH2B3 6.734221e-02 0.934910047 0.9999595
## TRPM7 6.731536e-02 0.934935123 0.9999595
## TMEM106C 6.729697e-02 0.934952296 0.9999595
## SLC2A5 6.720886e-02 0.935034587 0.9999595
## GATAD1 6.717989e-02 0.935061647 0.9999595
## CRACR2B 6.717254e-02 0.935068511 0.9999595
## FAM20C 6.708850e-02 0.935147016 0.9999595
## SERPINB6 6.707613e-02 0.935158571 0.9999595
## APOBEC3A 6.706946e-02 0.935164801 0.9999595
## XYLT2 6.696923e-02 0.935258429 0.9999595
## BAZ1B 6.694476e-02 0.935281296 0.9999595
## SNX17 6.689815e-02 0.935324835 0.9999595
## TRAF2 6.687445e-02 0.935346985 0.9999595
## SETD2 6.685956e-02 0.935360898 0.9999595
## CHURC1 6.678543e-02 0.935430155 0.9999595
## ZNF624 6.671808e-02 0.935493094 0.9999595
## SLC22A14 6.669118e-02 0.935518235 0.9999595
## DBT 6.661830e-02 0.935586335 0.9999595
## NFX1 6.657985e-02 0.935622278 0.9999595
## AP1AR 6.657668e-02 0.935625238 0.9999595
## RNPEPL1 6.657449e-02 0.935627279 0.9999595
## CTNNBL1 6.654752e-02 0.935652494 0.9999595
## POLR3GL 6.654113e-02 0.935658459 0.9999595
## PHF13 6.652598e-02 0.935672622 0.9999595
## CCDC12 6.650179e-02 0.935695235 0.9999595
## PDE8A 6.649750e-02 0.935699244 0.9999595
## RBM12B 6.649214e-02 0.935704247 0.9999595
## ACAD8 6.638225e-02 0.935806971 0.9999595
## AAK1 6.632751e-02 0.935858138 0.9999595
## C16orf46 6.625566e-02 0.935925313 0.9999595
## MRPS7 6.625560e-02 0.935925364 0.9999595
## KRTCAP2 6.624235e-02 0.935937754 0.9999595
## RPS6KA2 6.622562e-02 0.935953399 0.9999595
## PNPLA2 6.621689e-02 0.935961559 0.9999595
## COX14 6.619089e-02 0.935985869 0.9999595
## ATG4C 6.615601e-02 0.936018483 0.9999595
## ACBD7 6.611779e-02 0.936054213 0.9999595
## NUDT15 6.604005e-02 0.936126905 0.9999595
## RPS6KA5 6.601739e-02 0.936148095 0.9999595
## PANX2 6.599841e-02 0.936165850 0.9999595
## ZNF879 6.589421e-02 0.936263299 0.9999595
## HSF1 6.583779e-02 0.936316068 0.9999595
## SMARCD2 6.572365e-02 0.936422821 0.9999595
## CDC42EP3 6.561785e-02 0.936521802 0.9999595
## CCHCR1 6.558445e-02 0.936553048 0.9999595
## LSM2 6.554076e-02 0.936593916 0.9999595
## GOLGA6L9 6.552111e-02 0.936612304 0.9999595
## WDR53 6.547583e-02 0.936654669 0.9999595
## SNX16 6.529733e-02 0.936821697 0.9999595
## DBNDD2 6.519805e-02 0.936914612 0.9999595
## HSPBP1 6.512896e-02 0.936979277 0.9999595
## REX1BD 6.501496e-02 0.937085982 0.9999595
## CTSD 6.498727e-02 0.937111901 0.9999595
## REXO1 6.494408e-02 0.937152331 0.9999595
## TOMM40L 6.489655e-02 0.937196828 0.9999595
## KCTD17 6.488447e-02 0.937208139 0.9999595
## MOB2 6.486838e-02 0.937223200 0.9999595
## HNRNPA2B1 6.474807e-02 0.937335850 0.9999595
## MYSM1 6.465689e-02 0.937421226 0.9999595
## HAL 6.464998e-02 0.937427694 0.9999595
## RNF25 6.462753e-02 0.937448718 0.9999595
## TDRKH 6.457667e-02 0.937496347 0.9999595
## MINDY2 6.452097e-02 0.937548517 0.9999595
## MBD1 6.449915e-02 0.937568945 0.9999595
## IRAK1BP1 6.449549e-02 0.937572381 0.9999595
## STAM 6.446326e-02 0.937602569 0.9999595
## MRGBP 6.436414e-02 0.937695410 0.9999595
## TNF 6.432908e-02 0.937728249 0.9999595
## ZNF283 6.427332e-02 0.937780482 0.9999595
## CUL9 6.421954e-02 0.937830862 0.9999595
## CTBP1 6.411525e-02 0.937928569 0.9999595
## ADAM19 6.403721e-02 0.938001697 0.9999595
## CCDC51 6.400406e-02 0.938032757 0.9999595
## ARRDC1 6.399888e-02 0.938037612 0.9999595
## TCAF1 6.396058e-02 0.938073502 0.9999595
## ZNF586 6.393715e-02 0.938095459 0.9999595
## MRPS15 6.393285e-02 0.938099485 0.9999595
## HLA-E 6.378378e-02 0.938239190 0.9999595
## PRKAG2 6.374437e-02 0.938276132 0.9999595
## PLEKHA6 6.372734e-02 0.938292089 0.9999595
## GPX3 6.372337e-02 0.938295814 0.9999595
## C14orf28 6.361412e-02 0.938398217 0.9999595
## TESK2 6.347931e-02 0.938524604 0.9999595
## VDAC1 6.312499e-02 0.938856851 0.9999595
## ASPM 6.308016e-02 0.938898901 0.9999595
## RPS15 6.305655e-02 0.938921045 0.9999595
## SWAP70 6.301912e-02 0.938956156 0.9999595
## USF2 6.295838e-02 0.939013129 0.9999595
## PRR11 6.289035e-02 0.939076942 0.9999595
## ALDH18A1 6.288707e-02 0.939080026 0.9999595
## ENKD1 6.279673e-02 0.939164778 0.9999595
## BCL11A 6.276982e-02 0.939190025 0.9999595
## CCM2 6.274506e-02 0.939213253 0.9999595
## EXOSC9 6.258246e-02 0.939365819 0.9999595
## TRIOBP 6.253179e-02 0.939413371 0.9999595
## PI4KA 6.240765e-02 0.939529882 0.9999595
## SNAPC2 6.239900e-02 0.939537995 0.9999595
## MYZAP 6.236097e-02 0.939573697 0.9999595
## CNNM2 6.234359e-02 0.939590003 0.9999595
## CYTIP 6.218309e-02 0.939740667 0.9999595
## MTRF1 6.217014e-02 0.939752826 0.9999595
## MAGOH 6.207221e-02 0.939844767 0.9999595
## EIF4EBP1 6.192361e-02 0.939984297 0.9999595
## INTS1 6.190298e-02 0.940003667 0.9999595
## STON1 6.186898e-02 0.940035597 0.9999595
## CBX4 6.186717e-02 0.940037291 0.9999595
## NHLRC2 6.183520e-02 0.940067315 0.9999595
## PCNA 6.181282e-02 0.940088340 0.9999595
## PGGHG 6.178426e-02 0.940115160 0.9999595
## EIF4H 6.177899e-02 0.940120105 0.9999595
## PDE4C 6.176689e-02 0.940131471 0.9999595
## VPS28 6.176464e-02 0.940133589 0.9999595
## AASDH 6.175348e-02 0.940144069 0.9999595
## FEM1B 6.170004e-02 0.940194259 0.9999595
## FBRS 6.167655e-02 0.940216322 0.9999595
## MFAP1 6.164602e-02 0.940244996 0.9999595
## ZNF2 6.163995e-02 0.940250697 0.9999595
## ICMT 6.156658e-02 0.940319613 0.9999595
## AP1S1 6.135414e-02 0.940519198 0.9999595
## G6PC3 6.112497e-02 0.940734543 0.9999595
## SUGP1 6.112081e-02 0.940738459 0.9999595
## ARHGEF1 6.106719e-02 0.940788851 0.9999595
## UNC5CL 6.105535e-02 0.940799973 0.9999595
## DNMT3A 6.088990e-02 0.940955484 0.9999595
## ATOX1 6.088628e-02 0.940958888 0.9999595
## MRPS18A 6.072753e-02 0.941108131 0.9999595
## AP1B1 6.070186e-02 0.941132265 0.9999595
## TMEM259 6.062063e-02 0.941208639 0.9999595
## FMN1 6.061607e-02 0.941212925 0.9999595
## ZNF562 6.058039e-02 0.941246475 0.9999595
## SCAF4 6.057684e-02 0.941249813 0.9999595
## ZNF652 6.029905e-02 0.941511066 0.9999595
## GTF2F1 6.026519e-02 0.941542907 0.9999595
## CAMK1 6.021496e-02 0.941590157 0.9999595
## LARP7 6.019032e-02 0.941613339 0.9999595
## GPAT3 6.018943e-02 0.941614171 0.9999595
## PSMB9 6.017815e-02 0.941624785 0.9999595
## SLC29A4 6.017046e-02 0.941632016 0.9999595
## INTS13 6.014788e-02 0.941653265 0.9999595
## IDH2 6.012331e-02 0.941676371 0.9999595
## BAG4 6.009014e-02 0.941707580 0.9999595
## ETFB 6.008899e-02 0.941708664 0.9999595
## KIZ 6.007144e-02 0.941725173 0.9999595
## TMEM115 5.999086e-02 0.941800982 0.9999595
## NSMCE1 5.997707e-02 0.941813958 0.9999595
## TDG 5.994286e-02 0.941846147 0.9999595
## RBBP6 5.992315e-02 0.941864696 0.9999595
## DDHD1 5.986113e-02 0.941923052 0.9999595
## HTATIP2 5.984810e-02 0.941935317 0.9999595
## ADGRG1 5.981966e-02 0.941962079 0.9999595
## FAM174A 5.974874e-02 0.942028821 0.9999595
## GPS1 5.959025e-02 0.942177983 0.9999595
## FAM136A 5.953995e-02 0.942225331 0.9999595
## MBD4 5.951282e-02 0.942250873 0.9999595
## APRT 5.949570e-02 0.942266981 0.9999595
## CDC42BPB 5.947211e-02 0.942289187 0.9999595
## RTEL1 5.946771e-02 0.942293330 0.9999595
## PLEKHO1 5.938137e-02 0.942374615 0.9999595
## DDX5 5.932842e-02 0.942424467 0.9999595
## ANKRD39 5.928551e-02 0.942464871 0.9999595
## AIM2 5.918193e-02 0.942562398 0.9999595
## RAB19 5.917310e-02 0.942570712 0.9999595
## AKIRIN2 5.911861e-02 0.942622023 0.9999595
## SETX 5.901741e-02 0.942717326 0.9999595
## MRPL27 5.889874e-02 0.942829105 0.9999595
## SYTL1 5.879047e-02 0.942931088 0.9999595
## YARS1 5.870762e-02 0.943009140 0.9999595
## ACD 5.856161e-02 0.943146702 0.9999595
## TWSG1 5.855037e-02 0.943157296 0.9999595
## PPP2R1A 5.851468e-02 0.943190928 0.9999595
## GTF2B 5.848041e-02 0.943223219 0.9999595
## FBXO45 5.837048e-02 0.943326807 0.9999595
## UBL4A 5.830991e-02 0.943383900 0.9999595
## MAP3K6 5.811430e-02 0.943568274 0.9999595
## ZNF654 5.806224e-02 0.943617351 0.9999595
## ASAH1 5.805696e-02 0.943622328 0.9999595
## RBM14 5.803583e-02 0.943642244 0.9999595
## PCBP2 5.795851e-02 0.943715146 0.9999595
## ZNF414 5.789984e-02 0.943770458 0.9999595
## MAPRE2 5.785415e-02 0.943813542 0.9999595
## SNN 5.783853e-02 0.943828265 0.9999595
## LY6G6F 5.773033e-02 0.943930296 0.9999595
## LLCFC1 5.764287e-02 0.944012785 0.9999595
## LRCH4 5.758599e-02 0.944066431 0.9999595
## DHX29 5.756951e-02 0.944081966 0.9999595
## CAPN15 5.746595e-02 0.944179648 0.9999595
## COQ6 5.734938e-02 0.944289621 0.9999595
## MRPS2 5.718371e-02 0.944445924 0.9999595
## MIGA2 5.717373e-02 0.944455338 0.9999595
## SLC2A6 5.712179e-02 0.944504353 0.9999595
## TCF12 5.711872e-02 0.944507246 0.9999595
## GBE1 5.698058e-02 0.944637604 0.9999595
## BORCS6 5.693664e-02 0.944679078 0.9999595
## CPM 5.693661e-02 0.944679103 0.9999595
## EFCAB13 5.691104e-02 0.944703239 0.9999595
## TRIP6 5.690418e-02 0.944709716 0.9999595
## GPR27 5.685500e-02 0.944756133 0.9999595
## EDRF1 5.682465e-02 0.944784777 0.9999595
## WDR70 5.665612e-02 0.944943873 0.9999595
## NCAPH 5.661789e-02 0.944979964 0.9999595
## KEAP1 5.659892e-02 0.944997868 0.9999595
## ZRANB1 5.654815e-02 0.945045805 0.9999595
## RRM2 5.654628e-02 0.945047569 0.9999595
## LACC1 5.642865e-02 0.945158640 0.9999595
## CTDSPL 5.638624e-02 0.945198688 0.9999595
## FASN 5.630692e-02 0.945273595 0.9999595
## NUDT17 5.622425e-02 0.945351676 0.9999595
## CEP78 5.618640e-02 0.945387420 0.9999595
## KCNK7 5.615542e-02 0.945416687 0.9999595
## CD226 5.614036e-02 0.945430912 0.9999595
## RAB6B 5.610396e-02 0.945465293 0.9999595
## SSH3 5.609893e-02 0.945470038 0.9999595
## ZNHIT1 5.599491e-02 0.945568303 0.9999595
## AMBRA1 5.592746e-02 0.945632027 0.9999595
## PSMD14 5.591172e-02 0.945646901 0.9999595
## PKM 5.590047e-02 0.945657528 0.9999595
## IST1 5.581858e-02 0.945734898 0.9999595
## SLC39A11 5.569260e-02 0.945853942 0.9999595
## ABCF3 5.561692e-02 0.945925464 0.9999595
## RPS6KB1 5.546094e-02 0.946072878 0.9999595
## RAB13 5.535679e-02 0.946171330 0.9999595
## ADPRHL1 5.532045e-02 0.946205687 0.9999595
## KLF3 5.524716e-02 0.946274969 0.9999595
## HAUS6 5.513200e-02 0.946383852 0.9999595
## EXOSC7 5.510627e-02 0.946408183 0.9999595
## USP7 5.508375e-02 0.946429472 0.9999595
## TMEM147 5.505668e-02 0.946455072 0.9999595
## UGDH 5.494774e-02 0.946558092 0.9999595
## SNX15 5.484978e-02 0.946650738 0.9999595
## ACADS 5.482230e-02 0.946676726 0.9999595
## CRYL1 5.478545e-02 0.946711577 0.9999595
## PPP6R2 5.473077e-02 0.946763301 0.9999595
## ICA1 5.470024e-02 0.946792180 0.9999595
## NSD2 5.469745e-02 0.946794818 0.9999595
## CLCN4 5.461586e-02 0.946871999 0.9999595
## CCDC93 5.449717e-02 0.946984295 0.9999595
## PDXDC1 5.448766e-02 0.946993295 0.9999595
## C15orf39 5.437665e-02 0.947098329 0.9999595
## PPDPF 5.424624e-02 0.947221734 0.9999595
## MLLT10 5.419236e-02 0.947272726 0.9999595
## LTN1 5.407437e-02 0.947384404 0.9999595
## ZNF646 5.401822e-02 0.947437558 0.9999595
## USP22 5.390903e-02 0.947540925 0.9999595
## DHX40 5.390198e-02 0.947547591 0.9999595
## ZNF227 5.384395e-02 0.947602533 0.9999595
## NDUFAB1 5.382805e-02 0.947617590 0.9999595
## KMT2B 5.372003e-02 0.947719865 0.9999595
## RBBP5 5.362947e-02 0.947805620 0.9999595
## SLC4A8 5.362703e-02 0.947807926 0.9999595
## ENDOG 5.361740e-02 0.947817049 0.9999595
## CORO1B 5.357877e-02 0.947853631 0.9999595
## MTA1 5.350420e-02 0.947924249 0.9999595
## RANBP6 5.348624e-02 0.947941260 0.9999595
## NFKBIE 5.328254e-02 0.948134212 0.9999595
## TMX1 5.325605e-02 0.948159306 0.9999595
## CEL 5.322762e-02 0.948186240 0.9999595
## SLC66A1 5.316620e-02 0.948244426 0.9999595
## ARHGAP33 5.315841e-02 0.948251806 0.9999595
## ALKBH6 5.305752e-02 0.948347396 0.9999595
## TMEM186 5.298551e-02 0.948415627 0.9999595
## ERH 5.294132e-02 0.948457501 0.9999595
## RAB34 5.290664e-02 0.948490367 0.9999595
## PPM1H 5.285305e-02 0.948541157 0.9999595
## PIK3R6 5.283067e-02 0.948562366 0.9999595
## ATP2B1 5.274712e-02 0.948641554 0.9999595
## CCT5 5.268851e-02 0.948697102 0.9999595
## DHRS4 5.264741e-02 0.948736060 0.9999595
## D2HGDH 5.255153e-02 0.948826952 0.9999595
## NDUFA13 5.255138e-02 0.948827092 0.9999595
## UBE2V2 5.251588e-02 0.948860750 0.9999595
## ZFYVE27 5.246847e-02 0.948905697 0.9999595
## ASB3 5.245044e-02 0.948922792 0.9999595
## KLHL21 5.243622e-02 0.948936280 0.9999595
## WDR18 5.243289e-02 0.948939432 0.9999595
## IL18BP 5.242795e-02 0.948944115 0.9999595
## ZBED5 5.232708e-02 0.949039757 0.9999595
## MRPL17 5.227534e-02 0.949088818 0.9999595
## TMEM127 5.218635e-02 0.949173211 0.9999595
## WDR20 5.204680e-02 0.949305568 0.9999595
## CHCHD2 5.204561e-02 0.949306696 0.9999595
## RNASE3 5.203768e-02 0.949314217 0.9999595
## RBBP8 5.201489e-02 0.949335829 0.9999595
## RTN2 5.188145e-02 0.949462417 0.9999595
## SIVA1 5.185824e-02 0.949484427 0.9999595
## SEC22B 5.178725e-02 0.949551784 0.9999595
## RPL39L 5.175218e-02 0.949585050 0.9999595
## IFT46 5.173382e-02 0.949602476 0.9999595
## ZNF668 5.169423e-02 0.949640035 0.9999595
## ZDHHC2 5.162098e-02 0.949709537 0.9999595
## TMEM160 5.158976e-02 0.949739170 0.9999595
## ST8SIA6 5.156068e-02 0.949766761 0.9999595
## KLHL6 5.151138e-02 0.949813550 0.9999595
## NCAPD2 5.142255e-02 0.949897855 0.9999595
## NUP93 5.140902e-02 0.949910688 0.9999595
## MRPL55 5.138639e-02 0.949932173 0.9999595
## ZKSCAN5 5.132741e-02 0.949988152 0.9999595
## MYO1F 5.129627e-02 0.950017707 0.9999595
## PCGF1 5.128046e-02 0.950032713 0.9999595
## YWHAQ 5.116628e-02 0.950141104 0.9999595
## ATG16L2 5.090632e-02 0.950387928 0.9999595
## ZC3H15 5.084509e-02 0.950446075 0.9999595
## MFSD10 5.077527e-02 0.950512386 0.9999595
## ZBTB6 5.076595e-02 0.950521232 0.9999595
## NLGN3 5.074006e-02 0.950545827 0.9999595
## PNPO 5.071938e-02 0.950565460 0.9999595
## CTSA 5.069950e-02 0.950584349 0.9999595
## OSGIN1 5.066984e-02 0.950612513 0.9999595
## SUPT16H 5.066950e-02 0.950612837 0.9999595
## STRIP1 5.062157e-02 0.950658368 0.9999595
## ARHGEF7 5.059130e-02 0.950687119 0.9999595
## DGUOK 5.056419e-02 0.950712868 0.9999595
## MTF2 5.056075e-02 0.950716138 0.9999595
## GPS2 5.049858e-02 0.950775193 0.9999595
## RFNG 5.044040e-02 0.950830469 0.9999595
## ZNF598 5.042941e-02 0.950840908 0.9999595
## ERV3-1 5.040876e-02 0.950860528 0.9999595
## FBXO41 5.037503e-02 0.950892576 0.9999595
## TSSC4 5.027958e-02 0.950983269 0.9999595
## EIF2B2 5.021438e-02 0.951045224 0.9999595
## POLR2F 5.014966e-02 0.951106728 0.9999595
## SLC2A11 5.014650e-02 0.951109731 0.9999595
## ZNF581 5.007882e-02 0.951174052 0.9999595
## API5 5.007157e-02 0.951180942 0.9999595
## BICRA 5.004578e-02 0.951205451 0.9999595
## B4GALNT3 5.003649e-02 0.951214280 0.9999595
## SRP72 4.998161e-02 0.951266443 0.9999595
## CRHBP 4.993664e-02 0.951309188 0.9999595
## TMEM94 4.984078e-02 0.951400307 0.9999595
## BTBD1 4.980409e-02 0.951435184 0.9999595
## SBNO1 4.979187e-02 0.951446800 0.9999595
## C15orf61 4.978442e-02 0.951453888 0.9999595
## QSER1 4.974379e-02 0.951492511 0.9999595
## RCOR3 4.972228e-02 0.951512965 0.9999595
## MVP 4.968051e-02 0.951552677 0.9999595
## NBAS 4.965546e-02 0.951576493 0.9999595
## CES4A 4.958881e-02 0.951639867 0.9999595
## OGG1 4.958790e-02 0.951640736 0.9999595
## CDC37 4.956010e-02 0.951667166 0.9999595
## ZNF71 4.948278e-02 0.951740691 0.9999595
## C5orf22 4.947034e-02 0.951752524 0.9999595
## AHR 4.930073e-02 0.951913828 0.9999595
## NBPF12 4.923134e-02 0.951979838 0.9999595
## ACTN1 4.921047e-02 0.951999686 0.9999595
## CDT1 4.920578e-02 0.952004150 0.9999595
## PSEN2 4.916451e-02 0.952043409 0.9999595
## UPK3BL2 4.912482e-02 0.952081159 0.9999595
## MAP3K11 4.905400e-02 0.952148541 0.9999595
## ZDHHC24 4.902120e-02 0.952179743 0.9999595
## HOOK3 4.900548e-02 0.952194696 0.9999595
## SMC5 4.889241e-02 0.952302281 0.9999595
## LPAR2 4.887437e-02 0.952319445 0.9999595
## ARMC6 4.885732e-02 0.952335673 0.9999595
## RETSAT 4.882418e-02 0.952367212 0.9999595
## ZNF444 4.879444e-02 0.952395513 0.9999595
## SFXN4 4.873149e-02 0.952455420 0.9999595
## JAGN1 4.872831e-02 0.952458447 0.9999595
## PPFIA1 4.862595e-02 0.952555867 0.9999595
## APEX2 4.856394e-02 0.952614885 0.9999595
## MARCKSL1 4.852985e-02 0.952647333 0.9999595
## DNHD1 4.847223e-02 0.952702186 0.9999595
## PLXNB2 4.843328e-02 0.952739265 0.9999595
## OSBP 4.838076e-02 0.952789266 0.9999595
## BEST1 4.833099e-02 0.952836650 0.9999595
## INIP 4.831898e-02 0.952848082 0.9999595
## TM2D1 4.831512e-02 0.952851752 0.9999595
## ERCC1 4.827915e-02 0.952886005 0.9999595
## BOP1 4.826342e-02 0.952900983 0.9999595
## ZMIZ2 4.823052e-02 0.952932307 0.9999595
## TNFAIP2 4.819403e-02 0.952967052 0.9999595
## CDK3 4.816046e-02 0.952999019 0.9999595
## SEC14L1 4.813920e-02 0.953019262 0.9999595
## ZNF417 4.811882e-02 0.953038671 0.9999595
## IER3 4.811515e-02 0.953042166 0.9999595
## CDK17 4.810892e-02 0.953048095 0.9999595
## MAPK8IP3 4.789058e-02 0.953256046 0.9999595
## TRIM69 4.785568e-02 0.953289294 0.9999595
## SLC35A1 4.784794e-02 0.953296661 0.9999595
## SLC27A4 4.774901e-02 0.953390902 0.9999595
## EXOSC3 4.771109e-02 0.953427027 0.9999595
## OGFOD3 4.768498e-02 0.953451901 0.9999595
## VAMP7 4.766726e-02 0.953468781 0.9999595
## PSMB7 4.756903e-02 0.953562379 0.9999595
## MAP1LC3B2 4.747069e-02 0.953656081 0.9999595
## CHD9 4.743745e-02 0.953687754 0.9999595
## FAM174C 4.725076e-02 0.953865680 0.9999595
## AAMDC 4.724328e-02 0.953872811 0.9999595
## RALY 4.719905e-02 0.953914966 0.9999595
## KBTBD6 4.708841e-02 0.954020433 0.9999595
## PCNX3 4.701556e-02 0.954089882 0.9999595
## COQ5 4.688583e-02 0.954213562 0.9999595
## PDPR 4.688374e-02 0.954215560 0.9999595
## FAM50B 4.686179e-02 0.954236483 0.9999595
## FCN1 4.680917e-02 0.954286664 0.9999595
## NDUFAF5 4.679953e-02 0.954295853 0.9999595
## SLC30A9 4.671484e-02 0.954376615 0.9999595
## MAP3K2 4.669766e-02 0.954393001 0.9999595
## LYL1 4.665077e-02 0.954437713 0.9999595
## SPATA24 4.653166e-02 0.954551322 0.9999595
## LTBR 4.642774e-02 0.954650444 0.9999595
## ARMC5 4.632844e-02 0.954745178 0.9999595
## SLX1B 4.623971e-02 0.954829825 0.9999595
## RNH1 4.621377e-02 0.954854575 0.9999595
## NLRP1 4.618078e-02 0.954886052 0.9999595
## GDPGP1 4.617163e-02 0.954894786 0.9999595
## TMEM117 4.609894e-02 0.954964144 0.9999595
## OPRM1 4.608205e-02 0.954980263 0.9999595
## AP2A2 4.600184e-02 0.955056814 0.9999595
## ESS2 4.598990e-02 0.955068200 0.9999595
## CCNYL1 4.588623e-02 0.955167146 0.9999595
## IVNS1ABP 4.588138e-02 0.955171774 0.9999595
## LENG1 4.585773e-02 0.955194350 0.9999595
## DDRGK1 4.574647e-02 0.955300547 0.9999595
## STIP1 4.573903e-02 0.955307647 0.9999595
## AGAP3 4.560851e-02 0.955432256 0.9999595
## H2AZ2 4.552876e-02 0.955508397 0.9999595
## NICN1 4.532325e-02 0.955704639 0.9999595
## ING1 4.530412e-02 0.955722902 0.9999595
## N4BP2 4.530204e-02 0.955724894 0.9999595
## SPNS3 4.523955e-02 0.955784569 0.9999595
## HYAL3 4.503094e-02 0.955983826 0.9999595
## GSE1 4.499986e-02 0.956013525 0.9999595
## SUGT1 4.498445e-02 0.956028245 0.9999595
## CDIP1 4.496701e-02 0.956044907 0.9999595
## ZFP64 4.495893e-02 0.956052619 0.9999595
## PYM1 4.494588e-02 0.956065088 0.9999595
## ZSCAN16 4.488265e-02 0.956125500 0.9999595
## ABCC9 4.485914e-02 0.956147963 0.9999595
## MRPL19 4.475461e-02 0.956247839 0.9999595
## MIEF1 4.474680e-02 0.956255306 0.9999595
## HAUS7 4.474376e-02 0.956258210 0.9999595
## SIPA1L3 4.470715e-02 0.956293193 0.9999595
## EFNA3 4.469532e-02 0.956304495 0.9999595
## GSTK1 4.466002e-02 0.956338228 0.9999595
## MMS22L 4.459940e-02 0.956396158 0.9999595
## DPEP3 4.454741e-02 0.956445846 0.9999595
## PEAR1 4.444147e-02 0.956547108 0.9999595
## ZCCHC24 4.442994e-02 0.956558129 0.9999595
## C17orf67 4.438336e-02 0.956602651 0.9999595
## QPCT 4.430345e-02 0.956679042 0.9999595
## ATP13A1 4.426322e-02 0.956717499 0.9999595
## MBNL3 4.423505e-02 0.956744433 0.9999595
## TMEM254 4.421538e-02 0.956763238 0.9999595
## ZCWPW2 4.419591e-02 0.956781855 0.9999595
## EMC1 4.405503e-02 0.956916556 0.9999595
## ZCRB1 4.400695e-02 0.956962538 0.9999595
## GPX4 4.399872e-02 0.956970400 0.9999595
## RIT1 4.391165e-02 0.957053671 0.9999595
## FBXW9 4.388290e-02 0.957081171 0.9999595
## LAGE3 4.383116e-02 0.957130646 0.9999595
## C3orf62 4.376474e-02 0.957194176 0.9999595
## CDKL5 4.369271e-02 0.957263081 0.9999595
## TRAF3IP1 4.366085e-02 0.957293557 0.9999595
## UTP18 4.365611e-02 0.957298095 0.9999595
## MICALL2 4.363125e-02 0.957321874 0.9999595
## ARHGEF5 4.361902e-02 0.957333572 0.9999595
## L2HGDH 4.361483e-02 0.957337582 0.9999595
## LLPH 4.358151e-02 0.957369459 0.9999595
## PSMA5 4.358088e-02 0.957370058 0.9999595
## TUBA1C 4.356856e-02 0.957381843 0.9999595
## PPP1R14B 4.356832e-02 0.957382073 0.9999595
## DIS3 4.355638e-02 0.957393498 0.9999595
## UBOX5 4.355519e-02 0.957394635 0.9999595
## NPIPB3 4.348316e-02 0.957463555 0.9999595
## ABI3 4.342010e-02 0.957523886 0.9999595
## B3GNTL1 4.337191e-02 0.957570000 0.9999595
## MORF4L1 4.336548e-02 0.957576156 0.9999595
## KIFBP 4.333517e-02 0.957605154 0.9999595
## DUSP28 4.329552e-02 0.957643094 0.9999595
## CNDP2 4.327410e-02 0.957663598 0.9999595
## PBX2 4.320638e-02 0.957728407 0.9999595
## RRAS 4.320081e-02 0.957733739 0.9999595
## DNAL1 4.315893e-02 0.957773823 0.9999595
## IMPA1 4.313686e-02 0.957794939 0.9999595
## NTHL1 4.310614e-02 0.957824342 0.9999595
## ARAP1 4.308927e-02 0.957840490 0.9999595
## IRF1 4.299115e-02 0.957934418 0.9999595
## ZNF526 4.296710e-02 0.957957432 0.9999595
## TTC9 4.293478e-02 0.957988374 0.9999595
## RBM42 4.279657e-02 0.958120695 0.9999595
## ATP5F1D 4.275626e-02 0.958159288 0.9999595
## SRSF2 4.274604e-02 0.958169078 0.9999595
## PCOLCE 4.272942e-02 0.958184993 0.9999595
## KIAA1841 4.266906e-02 0.958242784 0.9999595
## YTHDF2 4.253691e-02 0.958369337 0.9999595
## ENG 4.249590e-02 0.958408614 0.9999595
## FBXO2 4.243027e-02 0.958471473 0.9999595
## UBAC2 4.240475e-02 0.958495920 0.9999595
## SEM1 4.238784e-02 0.958512117 0.9999595
## LZTR1 4.237122e-02 0.958528032 0.9999595
## CEBPE 4.235990e-02 0.958538877 0.9999595
## SMIM20 4.229086e-02 0.958605014 0.9999595
## MMUT 4.213059e-02 0.958758556 0.9999595
## CLN6 4.208137e-02 0.958805711 0.9999595
## TBCK 4.203452e-02 0.958850600 0.9999595
## MAP3K10 4.201988e-02 0.958864629 0.9999595
## BIN3 4.200575e-02 0.958878165 0.9999595
## HMGN2 4.197809e-02 0.958904671 0.9999595
## PPIP5K2 4.197221e-02 0.958910310 0.9999595
## MRAS 4.185769e-02 0.959020057 0.9999595
## DLG1 4.173363e-02 0.959138953 0.9999595
## CHRAC1 4.170788e-02 0.959163634 0.9999595
## ITGA1 4.170686e-02 0.959164610 0.9999595
## SLCO4C1 4.164881e-02 0.959220256 0.9999595
## ARHGDIA 4.161121e-02 0.959256303 0.9999595
## GPATCH1 4.156355e-02 0.959301987 0.9999595
## DEPDC5 4.154723e-02 0.959317630 0.9999595
## C20orf194 4.153783e-02 0.959326642 0.9999595
## IKBIP 4.153776e-02 0.959326714 0.9999595
## CARD9 4.142344e-02 0.959436317 0.9999595
## HSPD1 4.132459e-02 0.959531090 0.9999595
## DUSP23 4.124477e-02 0.959607635 0.9999595
## CCDC88B 4.123752e-02 0.959614583 0.9999595
## ANKRD40 4.119171e-02 0.959658521 0.9999595
## COG1 4.112450e-02 0.959722973 0.9999595
## SF1 4.111538e-02 0.959731721 0.9999595
## STMP1 4.106760e-02 0.959777552 0.9999595
## SCAMP3 4.086186e-02 0.959974901 0.9999595
## LYSMD2 4.080206e-02 0.960032268 0.9999595
## CPNE3 4.070327e-02 0.960127056 0.9999595
## DRAP1 4.067861e-02 0.960150709 0.9999595
## SLC25A1 4.057371e-02 0.960251368 0.9999595
## USP19 4.052284e-02 0.960300188 0.9999595
## LYG1 4.048518e-02 0.960336327 0.9999595
## EIF3A 4.041906e-02 0.960399782 0.9999595
## GPKOW 4.040051e-02 0.960417595 0.9999595
## NRBP1 4.028649e-02 0.960527027 0.9999595
## MYOM2 4.027176e-02 0.960541171 0.9999595
## CKAP5 4.019565e-02 0.960614233 0.9999595
## KIF2A 4.017843e-02 0.960630760 0.9999595
## CHMP1B 4.017767e-02 0.960631493 0.9999595
## MVB12A 4.015118e-02 0.960656923 0.9999595
## DDX3X 4.010489e-02 0.960701360 0.9999595
## COA4 4.010309e-02 0.960703094 0.9999595
## UCP3 4.004110e-02 0.960762613 0.9999595
## FASTKD1 4.001627e-02 0.960786448 0.9999595
## CDK5 3.992407e-02 0.960874974 0.9999595
## GABARAP 3.991640e-02 0.960882343 0.9999595
## CHCHD5 3.988755e-02 0.960910051 0.9999595
## PRELID3B 3.986682e-02 0.960929950 0.9999595
## MALSU1 3.985032e-02 0.960945803 0.9999595
## MFSD3 3.984201e-02 0.960953776 0.9999595
## ZNF264 3.975920e-02 0.961033306 0.9999595
## NUMA1 3.975731e-02 0.961035125 0.9999595
## NCOR2 3.971461e-02 0.961076134 0.9999595
## DCAF5 3.967915e-02 0.961110188 0.9999595
## UGT8 3.959500e-02 0.961191022 0.9999595
## CFAP161 3.953252e-02 0.961251033 0.9999595
## ITGB1BP1 3.949471e-02 0.961287362 0.9999595
## HSD17B13 3.948136e-02 0.961300183 0.9999595
## S1PR5 3.927902e-02 0.961494585 0.9999595
## CABIN1 3.922537e-02 0.961546136 0.9999595
## TRAPPC10 3.913739e-02 0.961630682 0.9999595
## ABHD12 3.911460e-02 0.961652589 0.9999595
## NAPSA 3.897688e-02 0.961784953 0.9999595
## TNFRSF10D 3.897191e-02 0.961789730 0.9999595
## KLC4 3.891949e-02 0.961840113 0.9999595
## ALG8 3.883757e-02 0.961918862 0.9999595
## HHLA2 3.875993e-02 0.961993495 0.9999595
## TIMM8A 3.875544e-02 0.961997820 0.9999595
## SOCS5 3.874678e-02 0.962006142 0.9999595
## PNMA3 3.872457e-02 0.962027490 0.9999595
## CILK1 3.868222e-02 0.962068212 0.9999595
## CRX 3.860569e-02 0.962141790 0.9999595
## TMEM176A 3.860386e-02 0.962143557 0.9999595
## OCEL1 3.859691e-02 0.962150239 0.9999595
## ZFAND2A 3.850982e-02 0.962233980 0.9999595
## SRGAP1 3.845919e-02 0.962282668 0.9999595
## RALGAPA1 3.843079e-02 0.962309984 0.9999595
## NFE2L1 3.840531e-02 0.962334487 0.9999595
## PKN1 3.831168e-02 0.962424535 0.9999595
## PLA2G12A 3.825436e-02 0.962479669 0.9999595
## MAP2K5 3.823538e-02 0.962497926 0.9999595
## TP53INP2 3.810552e-02 0.962622844 0.9999595
## LRFN1 3.806408e-02 0.962662714 0.9999595
## DISP2 3.805477e-02 0.962671669 0.9999595
## ICAM2 3.798747e-02 0.962736422 0.9999595
## FOXO3 3.798112e-02 0.962742529 0.9999595
## PSME1 3.797472e-02 0.962748688 0.9999595
## PVR 3.796420e-02 0.962758812 0.9999595
## GPR34 3.796193e-02 0.962760990 0.9999595
## NAA10 3.795880e-02 0.962764000 0.9999595
## ZNF487 3.774959e-02 0.962965321 0.9999595
## ARL2 3.760068e-02 0.963108636 0.9999595
## FBXW11 3.755323e-02 0.963154308 0.9999595
## CINP 3.753688e-02 0.963170047 0.9999595
## ERCC6L 3.739326e-02 0.963308307 0.9999595
## MRPL41 3.734414e-02 0.963355588 0.9999595
## DOK2 3.731641e-02 0.963382287 0.9999595
## GNGT2 3.726039e-02 0.963436229 0.9999595
## ACAD9 3.724034e-02 0.963455533 0.9999595
## C20orf27 3.723719e-02 0.963458569 0.9999595
## VRK3 3.721062e-02 0.963484145 0.9999595
## TTC1 3.720093e-02 0.963493477 0.9999595
## SEC11A 3.711050e-02 0.963580558 0.9999595
## NFKBIB 3.694399e-02 0.963740920 0.9999595
## H3C6 3.694157e-02 0.963743253 0.9999595
## NEK8 3.691864e-02 0.963765336 0.9999595
## ZBTB11 3.691675e-02 0.963767155 0.9999595
## PSME2 3.687747e-02 0.963804987 0.9999595
## CD160 3.682538e-02 0.963855167 0.9999595
## EDF1 3.676017e-02 0.963917986 0.9999595
## CFAP92 3.675526e-02 0.963922715 0.9999595
## SULT1A2 3.675423e-02 0.963923702 0.9999595
## CWC22 3.674023e-02 0.963937195 0.9999595
## EMC4 3.672739e-02 0.963949564 0.9999595
## ZDHHC6 3.665866e-02 0.964015778 0.9999595
## LBR 3.657987e-02 0.964091691 0.9999595
## ANAPC4 3.650116e-02 0.964167531 0.9999595
## RPP25 3.634998e-02 0.964313220 0.9999595
## STK35 3.632500e-02 0.964337290 0.9999595
## KNL1 3.631463e-02 0.964347282 0.9999595
## ZNF720 3.627174e-02 0.964388628 0.9999595
## NTMT1 3.626417e-02 0.964395922 0.9999595
## MFSD5 3.625065e-02 0.964408955 0.9999595
## CMTM3 3.609727e-02 0.964556793 0.9999595
## FKBP4 3.606766e-02 0.964585336 0.9999595
## NUP35 3.600453e-02 0.964646203 0.9999595
## NOL4L 3.596822e-02 0.964681206 0.9999595
## RFC3 3.590389e-02 0.964743228 0.9999595
## TSPAN13 3.581434e-02 0.964829577 0.9999595
## CHMP4A 3.573238e-02 0.964908606 0.9999595
## DCAKD 3.569401e-02 0.964945611 0.9999595
## TSHZ1 3.562000e-02 0.965016989 0.9999595
## RIPOR1 3.560380e-02 0.965032608 0.9999595
## MZT2A 3.557351e-02 0.965061827 0.9999595
## TDP2 3.554781e-02 0.965086612 0.9999595
## WASF1 3.553076e-02 0.965103059 0.9999595
## ZBTB45 3.551001e-02 0.965123068 0.9999595
## YJU2 3.547974e-02 0.965152268 0.9999595
## ZNF232 3.546515e-02 0.965166342 0.9999595
## SF3A2 3.545532e-02 0.965175827 0.9999595
## LRRC47 3.543116e-02 0.965199130 0.9999595
## ARAP2 3.543069e-02 0.965199586 0.9999595
## ZNF280D 3.542974e-02 0.965200497 0.9999595
## FIBP 3.542243e-02 0.965207553 0.9999595
## PSMC3 3.540380e-02 0.965225527 0.9999595
## UCK2 3.534306e-02 0.965284116 0.9999595
## RAB20 3.531046e-02 0.965315572 0.9999595
## WLS 3.529301e-02 0.965332409 0.9999595
## DFFB 3.517657e-02 0.965444755 0.9999595
## NDUFS6 3.514333e-02 0.965476823 0.9999595
## RNF227 3.513734e-02 0.965482603 0.9999595
## ANKRD26 3.511666e-02 0.965502556 0.9999595
## ABHD17C 3.505353e-02 0.965563476 0.9999595
## SENP7 3.503467e-02 0.965581680 0.9999595
## HMGCL 3.489020e-02 0.965721108 0.9999595
## CACNA2D2 3.487764e-02 0.965733224 0.9999595
## PYCR2 3.485899e-02 0.965751233 0.9999595
## PHPT1 3.484042e-02 0.965769152 0.9999595
## CAMTA1 3.481949e-02 0.965789359 0.9999595
## MFSD2B 3.480661e-02 0.965801786 0.9999595
## DENND4C 3.477026e-02 0.965836874 0.9999595
## EMC10 3.475152e-02 0.965854968 0.9999595
## RTN4IP1 3.472120e-02 0.965884237 0.9999595
## P3H1 3.471291e-02 0.965892232 0.9999595
## ZGRF1 3.471151e-02 0.965893591 0.9999595
## CTDSPL2 3.470375e-02 0.965901079 0.9999595
## NSMAF 3.468523e-02 0.965918958 0.9999595
## POLR2L 3.464990e-02 0.965953067 0.9999595
## INF2 3.461836e-02 0.965983511 0.9999595
## PRMT3 3.451518e-02 0.966083128 0.9999595
## ZFYVE1 3.444062e-02 0.966155126 0.9999595
## TARDBP 3.438840e-02 0.966205551 0.9999595
## ELL 3.438302e-02 0.966210743 0.9999595
## LANCL2 3.429665e-02 0.966294154 0.9999595
## TIMM13 3.416980e-02 0.966416669 0.9999595
## MAT2B 3.407836e-02 0.966504990 0.9999595
## ARHGEF10L 3.406232e-02 0.966520484 0.9999595
## ARFGAP1 3.389453e-02 0.966682578 0.9999595
## SCAND1 3.379704e-02 0.966776771 0.9999595
## STX10 3.378243e-02 0.966790890 0.9999595
## ZNF627 3.375185e-02 0.966820438 0.9999595
## SP4 3.373963e-02 0.966832244 0.9999595
## BCOR 3.373826e-02 0.966833570 0.9999595
## BPNT2 3.370514e-02 0.966865573 0.9999595
## CARHSP1 3.369252e-02 0.966877768 0.9999595
## MPHOSPH8 3.360078e-02 0.966966432 0.9999595
## ZNF426 3.357172e-02 0.966994508 0.9999595
## FBXO27 3.355824e-02 0.967007536 0.9999595
## ZC3H7A 3.353848e-02 0.967026642 0.9999595
## TRAFD1 3.348887e-02 0.967074588 0.9999595
## RDX 3.343419e-02 0.967127434 0.9999595
## RILPL1 3.337196e-02 0.967187591 0.9999595
## KPNA2 3.329600e-02 0.967261026 0.9999595
## NLRP2 3.324348e-02 0.967311800 0.9999595
## NDUFS7 3.323451e-02 0.967320472 0.9999595
## NMB 3.322756e-02 0.967327189 0.9999595
## FAM126A 3.321691e-02 0.967337486 0.9999595
## PPBP 3.321673e-02 0.967337662 0.9999595
## MRPL24 3.321517e-02 0.967339167 0.9999595
## USP47 3.319088e-02 0.967362655 0.9999595
## TMEM176B 3.305766e-02 0.967491462 0.9999595
## COA3 3.300969e-02 0.967537847 0.9999595
## ANKRD13C 3.292538e-02 0.967619384 0.9999595
## POLD4 3.290631e-02 0.967637821 0.9999595
## ADAMTS4 3.288806e-02 0.967655474 0.9999595
## THRAP3 3.270515e-02 0.967832389 0.9999595
## PTK6 3.268219e-02 0.967854597 0.9999595
## SMC3 3.266878e-02 0.967867566 0.9999595
## DROSHA 3.256768e-02 0.967965371 0.9999595
## ZNF322 3.243720e-02 0.968091613 0.9999595
## OR7E24 3.234038e-02 0.968185303 0.9999595
## CARM1 3.232881e-02 0.968196493 0.9999595
## LOC400499 3.212167e-02 0.968396964 0.9999595
## MS4A3 3.209635e-02 0.968421472 0.9999595
## IFIT5 3.188961e-02 0.968621599 0.9999595
## XRCC3 3.187289e-02 0.968637786 0.9999595
## FAM209A 3.184671e-02 0.968663124 0.9999595
## RPP25L 3.183497e-02 0.968674491 0.9999595
## SEPTIN7 3.181344e-02 0.968695341 0.9999595
## DPF2 3.176845e-02 0.968738900 0.9999595
## TONSL 3.174257e-02 0.968763957 0.9999595
## NECTIN1 3.172829e-02 0.968777784 0.9999595
## ZNF80 3.170230e-02 0.968802946 0.9999595
## EGR3 3.152749e-02 0.968972234 0.9999595
## PLA2G15 3.142163e-02 0.969074765 0.9999595
## CBLL1 3.129814e-02 0.969194381 0.9999595
## HTT 3.119281e-02 0.969296421 0.9999595
## RNF166 3.119254e-02 0.969296674 0.9999595
## ZBTB26 3.118398e-02 0.969304967 0.9999595
## MACIR 3.117797e-02 0.969310791 0.9999595
## RNF113A 3.111271e-02 0.969374025 0.9999595
## EPHX1 3.110919e-02 0.969377427 0.9999595
## GALNT6 3.099840e-02 0.969484780 0.9999595
## HILPDA 3.083646e-02 0.969641708 0.9999595
## C1R 3.083295e-02 0.969645114 0.9999595
## MRPL4 3.082410e-02 0.969653690 0.9999595
## ARL5A 3.079034e-02 0.969686405 0.9999595
## IL10RB 3.075096e-02 0.969724581 0.9999595
## KDM5B 3.075079e-02 0.969724739 0.9999595
## PLCB2 3.069318e-02 0.969780584 0.9999595
## C20orf96 3.069310e-02 0.969780657 0.9999595
## SFMBT1 3.065825e-02 0.969814438 0.9999595
## HSD17B1 3.059628e-02 0.969874506 0.9999595
## ARHGAP32 3.037403e-02 0.970089981 0.9999595
## COX10 3.033440e-02 0.970128409 0.9999595
## TMCC1 3.023363e-02 0.970226125 0.9999595
## TMEM205 3.022590e-02 0.970233620 0.9999595
## HOMER3 3.017497e-02 0.970283009 0.9999595
## HLA-F 3.014706e-02 0.970310077 0.9999595
## DNAJC15 3.009471e-02 0.970360851 0.9999595
## INO80 3.008863e-02 0.970366748 0.9999595
## HNRNPUL1 3.008219e-02 0.970372989 0.9999595
## CCDC71 3.007060e-02 0.970384235 0.9999595
## ELMOD1 3.006103e-02 0.970393511 0.9999595
## TEX2 3.002988e-02 0.970423725 0.9999595
## SLC35E2B 3.001919e-02 0.970434095 0.9999595
## POMGNT2 2.995166e-02 0.970499599 0.9999595
## SFR1 2.991546e-02 0.970534715 0.9999595
## RIOK3 2.986156e-02 0.970587005 0.9999595
## NAGS 2.978888e-02 0.970657513 0.9999595
## CCDC82 2.975730e-02 0.970688154 0.9999595
## IDE 2.972754e-02 0.970717030 0.9999595
## PLK4 2.963270e-02 0.970809047 0.9999595
## FGD3 2.957751e-02 0.970862599 0.9999595
## FLCN 2.949160e-02 0.970945977 0.9999595
## LRRC37A3 2.946975e-02 0.970967176 0.9999595
## CENPQ 2.945138e-02 0.970985008 0.9999595
## ALG3 2.942915e-02 0.971006579 0.9999595
## CNOT6L 2.932076e-02 0.971111787 0.9999595
## PMVK 2.924426e-02 0.971186036 0.9999595
## TMEM68 2.924294e-02 0.971187325 0.9999595
## BANF1 2.902951e-02 0.971394527 0.9999595
## FCRLB 2.899363e-02 0.971429358 0.9999595
## PSMB8 2.887806e-02 0.971541585 0.9999595
## VAMP8 2.887270e-02 0.971546787 0.9999595
## HRAS 2.875200e-02 0.971664010 0.9999595
## EFNA4 2.874936e-02 0.971666567 0.9999595
## CCNI 2.874707e-02 0.971668791 0.9999595
## ZP3 2.867633e-02 0.971737500 0.9999595
## RNF114 2.860471e-02 0.971807066 0.9999595
## PRCC 2.854256e-02 0.971867437 0.9999595
## GOLPH3L 2.848932e-02 0.971919159 0.9999595
## IL2RB 2.848482e-02 0.971923532 0.9999595
## GPATCH3 2.847491e-02 0.971933155 0.9999595
## BFAR 2.838776e-02 0.972017819 0.9999595
## ACVR1 2.834482e-02 0.972059540 0.9999595
## RGL2 2.830178e-02 0.972101361 0.9999595
## ZFAND4 2.826002e-02 0.972141938 0.9999595
## EBP 2.819965e-02 0.972200601 0.9999595
## UBE2D2 2.813848e-02 0.972260045 0.9999595
## DGKH 2.812686e-02 0.972271336 0.9999595
## SAMD4B 2.810829e-02 0.972289381 0.9999595
## CALM3 2.810344e-02 0.972294103 0.9999595
## CEP85 2.807416e-02 0.972322558 0.9999595
## ZNF578 2.803567e-02 0.972359963 0.9999595
## TERF2 2.803340e-02 0.972362165 0.9999595
## AMY2B 2.801909e-02 0.972376077 0.9999595
## MRPS12 2.795362e-02 0.972439713 0.9999595
## CAMLG 2.794863e-02 0.972444560 0.9999595
## SEC23IP 2.788790e-02 0.972503592 0.9999595
## ARPC4-TTLL3 2.781524e-02 0.972574224 0.9999595
## SLAIN2 2.781276e-02 0.972576633 0.9999595
## NDUFB2 2.773814e-02 0.972649176 0.9999595
## HGS 2.768003e-02 0.972705675 0.9999595
## BBS4 2.765994e-02 0.972725208 0.9999595
## OLFM4 2.763548e-02 0.972748993 0.9999595
## ARMH3 2.753452e-02 0.972847159 0.9999595
## CERS5 2.752702e-02 0.972854457 0.9999595
## EIF1 2.748126e-02 0.972898955 0.9999595
## HDAC4 2.747998e-02 0.972900194 0.9999595
## ZNF473 2.739377e-02 0.972984036 0.9999595
## FOXP1 2.731133e-02 0.973064221 0.9999595
## MED30 2.729817e-02 0.973077020 0.9999595
## MVD 2.726006e-02 0.973114089 0.9999595
## NDUFA9 2.723268e-02 0.973140719 0.9999595
## TESMIN 2.722710e-02 0.973146142 0.9999595
## PIGH 2.715834e-02 0.973213031 0.9999595
## AKR1C1 2.715443e-02 0.973216829 0.9999595
## CDKN2AIPNL 2.710172e-02 0.973268111 0.9999595
## ALG10B 2.708335e-02 0.973285982 0.9999595
## CYP2R1 2.705956e-02 0.973309128 0.9999595
## WDR47 2.705782e-02 0.973310820 0.9999595
## CMC1 2.696904e-02 0.973397198 0.9999595
## GABRR2 2.684582e-02 0.973517087 0.9999595
## FAAP100 2.684444e-02 0.973518434 0.9999595
## GOLGA8H 2.684187e-02 0.973520938 0.9999595
## NUP62 2.679030e-02 0.973571122 0.9999595
## KIF11 2.675884e-02 0.973601730 0.9999595
## TRAPPC2L 2.670563e-02 0.973653514 0.9999595
## INAFM1 2.669451e-02 0.973664340 0.9999595
## KPNA3 2.668411e-02 0.973674467 0.9999595
## BUD13 2.667580e-02 0.973682554 0.9999595
## DCBLD1 2.662731e-02 0.973729747 0.9999595
## TYMP 2.661330e-02 0.973743380 0.9999595
## GSTM4 2.659922e-02 0.973757081 0.9999595
## DHFR 2.651677e-02 0.973837337 0.9999595
## CLDN12 2.650821e-02 0.973845677 0.9999595
## MTFR2 2.627416e-02 0.974073528 0.9999595
## ZKSCAN3 2.625531e-02 0.974091880 0.9999595
## ABCA9 2.617282e-02 0.974172199 0.9999595
## HNRNPL 2.616048e-02 0.974184220 0.9999595
## DTNB 2.610655e-02 0.974236741 0.9999595
## OGFR 2.609158e-02 0.974251310 0.9999595
## CCDC142 2.609106e-02 0.974251816 0.9999595
## SLC48A1 2.596246e-02 0.974377065 0.9999595
## POGK 2.596196e-02 0.974377550 0.9999595
## MOB3A 2.590770e-02 0.974430399 0.9999595
## ZNF385A 2.590393e-02 0.974434070 0.9999595
## ARID1B 2.589235e-02 0.974445350 0.9999595
## RRAGC 2.581507e-02 0.974520627 0.9999595
## MRPL18 2.573748e-02 0.974596212 0.9999595
## HOPX 2.566242e-02 0.974669332 0.9999595
## ABRAXAS2 2.562363e-02 0.974707129 0.9999595
## CHST11 2.558456e-02 0.974745195 0.9999595
## EGF 2.558385e-02 0.974745890 0.9999595
## CACNA1F 2.556435e-02 0.974764884 0.9999595
## MYNN 2.550595e-02 0.974821793 0.9999595
## ZHX1 2.549447e-02 0.974832976 0.9999595
## EDEM3 2.537432e-02 0.974950056 0.9999595
## GNPAT 2.527735e-02 0.975044562 0.9999595
## ZNF830 2.524115e-02 0.975079848 0.9999595
## ZBED8 2.522637e-02 0.975094257 0.9999595
## AKR1C3 2.519522e-02 0.975124621 0.9999595
## OTUD5 2.518654e-02 0.975133076 0.9999595
## CCDC159 2.508253e-02 0.975234464 0.9999595
## HORMAD1 2.506831e-02 0.975248327 0.9999595
## PAQR4 2.502284e-02 0.975292652 0.9999595
## ZBTB42 2.493259e-02 0.975380640 0.9999595
## UBFD1 2.492986e-02 0.975383300 0.9999595
## MBTPS2 2.487420e-02 0.975437576 0.9999595
## DPAGT1 2.468520e-02 0.975621877 0.9999595
## CCNC 2.456720e-02 0.975736954 0.9999595
## SEMA4F 2.455212e-02 0.975751667 0.9999595
## CACNB1 2.437603e-02 0.975923434 0.9999595
## HECW2 2.437321e-02 0.975926186 0.9999595
## BTN2A1 2.431398e-02 0.975983966 0.9999595
## CTBP2 2.419322e-02 0.976101781 0.9999595
## SULT1A3 2.413333e-02 0.976160221 0.9999595
## RFC5 2.408234e-02 0.976209981 0.9999595
## HLX 2.407443e-02 0.976217699 0.9999595
## RBM10 2.397402e-02 0.976315683 0.9999595
## CLN8 2.381801e-02 0.976467956 0.9999595
## FAM189B 2.376233e-02 0.976522304 0.9999595
## LGALS1 2.370708e-02 0.976576238 0.9999595
## YY1AP1 2.369537e-02 0.976587668 0.9999595
## CCDC112 2.367291e-02 0.976609590 0.9999595
## PDLIM2 2.362664e-02 0.976654765 0.9999595
## MAP1LC3A 2.356074e-02 0.976719100 0.9999595
## APOBEC3C 2.353797e-02 0.976741339 0.9999595
## CLK3 2.351877e-02 0.976760082 0.9999595
## CCL3 2.348598e-02 0.976792095 0.9999595
## IPO13 2.343918e-02 0.976837797 0.9999595
## GABPB1 2.335876e-02 0.976916324 0.9999595
## ECH1 2.331931e-02 0.976954846 0.9999595
## LRRC58 2.331622e-02 0.976957867 0.9999595
## LTBP2 2.326536e-02 0.977007534 0.9999595
## ANKDD1B 2.324555e-02 0.977026883 0.9999595
## ACADM 2.323349e-02 0.977038661 0.9999595
## SEC31A 2.321664e-02 0.977055125 0.9999595
## ZNF691 2.319813e-02 0.977073195 0.9999595
## SELENOI 2.318785e-02 0.977083235 0.9999595
## DHX15 2.314006e-02 0.977129919 0.9999595
## PLEKHD1 2.308894e-02 0.977179848 0.9999595
## U2AF1L4 2.307597e-02 0.977192522 0.9999595
## GRWD1 2.305243e-02 0.977215518 0.9999595
## CXCR1 2.301941e-02 0.977247770 0.9999595
## C19orf25 2.300757e-02 0.977259337 0.9999595
## PLXND1 2.300464e-02 0.977262197 0.9999595
## ZNF358 2.298851e-02 0.977277960 0.9999595
## RMND1 2.298543e-02 0.977280961 0.9999595
## GTPBP8 2.296359e-02 0.977302298 0.9999595
## SNX21 2.292721e-02 0.977337846 0.9999595
## LDLRAD4 2.287832e-02 0.977385611 0.9999595
## AP5S1 2.286777e-02 0.977395918 0.9999595
## PRDM4 2.282004e-02 0.977442547 0.9999595
## ZNF408 2.281397e-02 0.977448478 0.9999595
## SCAMP4 2.279725e-02 0.977464815 0.9999595
## ZFYVE21 2.279704e-02 0.977465022 0.9999595
## AGPS 2.275226e-02 0.977508775 0.9999595
## SH2D2A 2.274227e-02 0.977518542 0.9999595
## ZNF738 2.260514e-02 0.977652546 0.9999595
## SECTM1 2.251762e-02 0.977738082 0.9999595
## NEK1 2.251093e-02 0.977744619 0.9999595
## GTF3C5 2.237999e-02 0.977872614 0.9999595
## EFHC2 2.237989e-02 0.977872708 0.9999595
## POMP 2.237767e-02 0.977874881 0.9999595
## SYMPK 2.233863e-02 0.977913035 0.9999595
## LGALS12 2.232343e-02 0.977927898 0.9999595
## ACOT13 2.228973e-02 0.977960848 0.9999595
## ORC1 2.215033e-02 0.978097130 0.9999595
## TBX21 2.212250e-02 0.978124343 0.9999595
## FLT1 2.209018e-02 0.978155949 0.9999595
## RAB11FIP2 2.202409e-02 0.978220568 0.9999595
## POLM 2.198954e-02 0.978254357 0.9999595
## CLDN5 2.196440e-02 0.978278939 0.9999595
## AP5Z1 2.194676e-02 0.978296194 0.9999595
## FBXL18 2.189162e-02 0.978350117 0.9999595
## BCLAF1 2.175846e-02 0.978480357 0.9999595
## DEGS1 2.173371e-02 0.978504566 0.9999595
## TMEM106B 2.158114e-02 0.978653809 0.9999595
## GNPTG 2.150570e-02 0.978727623 0.9999595
## TGFB1I1 2.143094e-02 0.978800770 0.9999595
## STBD1 2.135789e-02 0.978872244 0.9999595
## NEK4 2.126284e-02 0.978965257 0.9999595
## ITGA4 2.123458e-02 0.978992916 0.9999595
## GTF2A2 2.121906e-02 0.979008101 0.9999595
## TRIM62 2.117861e-02 0.979047692 0.9999595
## HCST 2.115560e-02 0.979070209 0.9999595
## SCAMP5 2.115212e-02 0.979073615 0.9999595
## SMARCA5 2.114940e-02 0.979076280 0.9999595
## ZC3H18 2.109323e-02 0.979131257 0.9999595
## PPP2R5E 2.108215e-02 0.979142103 0.9999595
## ZNF737 2.094594e-02 0.979275431 0.9999595
## GPSM2 2.093102e-02 0.979290044 0.9999595
## UNK 2.092180e-02 0.979299066 0.9999595
## ZBTB17 2.074740e-02 0.979469809 0.9999595
## ARHGAP45 2.072255e-02 0.979494144 0.9999595
## EML2 2.069504e-02 0.979521077 0.9999595
## POGLUT3 2.065882e-02 0.979556552 0.9999595
## LAIR2 2.065545e-02 0.979559847 0.9999595
## CUTA 2.059903e-02 0.979615101 0.9999595
## UGCG 2.056258e-02 0.979650788 0.9999595
## PTGIR 2.051719e-02 0.979695248 0.9999595
## SEPTIN5 2.043558e-02 0.979775170 0.9999595
## ANKMY2 2.036697e-02 0.979842375 0.9999595
## PYGB 2.032392e-02 0.979884549 0.9999595
## GRHL1 2.029143e-02 0.979916371 0.9999595
## SMARCC2 2.027718e-02 0.979930331 0.9999595
## TCP11L1 2.027270e-02 0.979934722 0.9999595
## PSMA4 2.026984e-02 0.979937525 0.9999595
## NPFFR2 2.016869e-02 0.980036614 0.9999595
## HNRNPC 2.003396e-02 0.980168623 0.9999595
## CLCN7 2.002792e-02 0.980174540 0.9999595
## FAM98A 2.002057e-02 0.980181742 0.9999595
## CLEC18A 1.999021e-02 0.980211492 0.9999595
## ATP2A3 1.979467e-02 0.980403111 0.9999595
## C12orf4 1.972753e-02 0.980468923 0.9999595
## MCM5 1.965940e-02 0.980535700 0.9999595
## DCAF10 1.965012e-02 0.980544793 0.9999595
## NCKAP1 1.963899e-02 0.980555702 0.9999595
## USP49 1.960434e-02 0.980589669 0.9999595
## YTHDF1 1.959725e-02 0.980596623 0.9999595
## RUNX2 1.955480e-02 0.980638238 0.9999595
## BHLHE40 1.946260e-02 0.980728626 0.9999595
## RNF43 1.941814e-02 0.980772213 0.9999595
## UFL1 1.939472e-02 0.980795179 0.9999595
## AUP1 1.938963e-02 0.980800168 0.9999595
## PPP1R7 1.938585e-02 0.980803878 0.9999595
## PIGN 1.938331e-02 0.980806368 0.9999595
## DOCK10 1.930423e-02 0.980883908 0.9999595
## REST 1.926058e-02 0.980926715 0.9999595
## FARSA 1.921416e-02 0.980972230 0.9999595
## CTSO 1.918678e-02 0.980999081 0.9999595
## EMP3 1.912283e-02 0.981061797 0.9999595
## CEP19 1.906583e-02 0.981117708 0.9999595
## ZCCHC17 1.895562e-02 0.981225809 0.9999595
## RENBP 1.885737e-02 0.981322183 0.9999595
## PAK4 1.885236e-02 0.981327105 0.9999595
## ETNK1 1.881903e-02 0.981359802 0.9999595
## MAML2 1.878677e-02 0.981391446 0.9999595
## MMD 1.878152e-02 0.981396598 0.9999595
## ALYREF 1.871855e-02 0.981458384 0.9999595
## CCND2 1.865062e-02 0.981525029 0.9999595
## NBPF1 1.864295e-02 0.981532559 0.9999595
## XYLT1 1.863642e-02 0.981538963 0.9999595
## MTHFD1L 1.847012e-02 0.981702159 0.9999595
## LRRC8C 1.846510e-02 0.981707088 0.9999595
## MRPL16 1.844896e-02 0.981722927 0.9999595
## MED7 1.835015e-02 0.981819903 0.9999595
## LARP4 1.833447e-02 0.981835297 0.9999595
## NEU1 1.823302e-02 0.981934881 0.9999595
## CCDC157 1.820988e-02 0.981957598 0.9999595
## HDAC5 1.820462e-02 0.981962762 0.9999595
## ABCB8 1.817905e-02 0.981987863 0.9999595
## MIB2 1.813469e-02 0.982031404 0.9999595
## JADE2 1.809797e-02 0.982067455 0.9999595
## CRABP2 1.809007e-02 0.982075210 0.9999595
## PCM1 1.804611e-02 0.982118371 0.9999595
## TMEM39B 1.804493e-02 0.982119535 0.9999595
## INPP5D 1.803760e-02 0.982126734 0.9999595
## NBPF3 1.803432e-02 0.982129950 0.9999595
## TMEM168 1.799364e-02 0.982169894 0.9999595
## KIAA1671 1.785395e-02 0.982307064 0.9999595
## AFG1L 1.776227e-02 0.982397093 0.9999595
## PYGM 1.773750e-02 0.982421420 0.9999595
## TRIM44 1.766966e-02 0.982488053 0.9999595
## PTPN11 1.766854e-02 0.982489154 0.9999595
## RCOR1 1.765894e-02 0.982498581 0.9999595
## DENND6B 1.765338e-02 0.982504043 0.9999595
## FBLIM1 1.763576e-02 0.982521349 0.9999595
## SCRN1 1.763439e-02 0.982522696 0.9999595
## NUS1 1.758833e-02 0.982567943 0.9999595
## RIC8B 1.758019e-02 0.982575939 0.9999595
## PSMD3 1.754860e-02 0.982606968 0.9999595
## KBTBD11 1.753239e-02 0.982622886 0.9999595
## PRDX6 1.751959e-02 0.982635465 0.9999595
## ILF2 1.734191e-02 0.982810026 0.9999595
## PAAF1 1.732275e-02 0.982828854 0.9999595
## GMDS 1.708929e-02 0.983058261 0.9999595
## PNPLA1 1.708377e-02 0.983063691 0.9999595
## RSPH9 1.707521e-02 0.983072098 0.9999595
## TAF1B 1.702122e-02 0.983125167 0.9999595
## FAM199X 1.692665e-02 0.983218114 0.9999595
## KCTD20 1.689576e-02 0.983248479 0.9999595
## ITGA5 1.682586e-02 0.983317193 0.9999595
## HSPA13 1.679789e-02 0.983344686 0.9999595
## UCK1 1.674540e-02 0.983396292 0.9999595
## WDFY4 1.671391e-02 0.983427250 0.9999595
## UBE2V1 1.667656e-02 0.983463971 0.9999595
## FAM131B 1.665148e-02 0.983488627 0.9999595
## CD74 1.664780e-02 0.983492247 0.9999595
## AGL 1.648719e-02 0.983650182 0.9999595
## CWF19L1 1.642112e-02 0.983715156 0.9999595
## CNTROB 1.641213e-02 0.983723990 0.9999595
## SMIM29 1.640462e-02 0.983731379 0.9999595
## PTPRN2 1.625054e-02 0.983882920 0.9999595
## CMAS 1.618872e-02 0.983943728 0.9999595
## RGS6 1.618042e-02 0.983951900 0.9999595
## DTX2 1.617643e-02 0.983955819 0.9999595
## VPS36 1.617503e-02 0.983957200 0.9999595
## PSMD2 1.616158e-02 0.983970429 0.9999595
## ARFGEF2 1.612522e-02 0.984006202 0.9999595
## KLHL24 1.606618e-02 0.984064280 0.9999595
## MISP3 1.606537e-02 0.984065074 0.9999595
## WDR76 1.605522e-02 0.984075065 0.9999595
## ZBTB21 1.602939e-02 0.984100472 0.9999595
## GRHPR 1.595615e-02 0.984172537 0.9999595
## CAVIN2 1.587806e-02 0.984249373 0.9999595
## TOM1 1.586831e-02 0.984258968 0.9999595
## SLC25A3 1.581776e-02 0.984308712 0.9999595
## SDHA 1.571339e-02 0.984411422 0.9999595
## FAM207A 1.570334e-02 0.984421308 0.9999595
## RMDN2 1.562243e-02 0.984500942 0.9999595
## LUZP1 1.561708e-02 0.984506210 0.9999595
## NDUFAF3 1.560901e-02 0.984514151 0.9999595
## PFDN2 1.556067e-02 0.984561731 0.9999595
## ARV1 1.554490e-02 0.984577258 0.9999595
## USP27X 1.552836e-02 0.984593533 0.9999595
## GSDMD 1.550416e-02 0.984617353 0.9999595
## NENF 1.545766e-02 0.984663132 0.9999595
## ERI2 1.545308e-02 0.984667638 0.9999595
## ALDH1B1 1.544356e-02 0.984677008 0.9999595
## XAB2 1.528037e-02 0.984837671 0.9999595
## RBM11 1.521830e-02 0.984898784 0.9999595
## MCOLN1 1.518195e-02 0.984934578 0.9999595
## SH3TC1 1.510740e-02 0.985007993 0.9999595
## CHCHD10 1.504206e-02 0.985072337 0.9999595
## TMEM135 1.501956e-02 0.985094500 0.9999595
## TREML4 1.499744e-02 0.985116287 0.9999595
## ASGR2 1.496601e-02 0.985147239 0.9999595
## LFNG 1.482088e-02 0.985290190 0.9999595
## RBM12 1.479173e-02 0.985318903 0.9999595
## RAD21 1.475446e-02 0.985355617 0.9999595
## RNFT1 1.469081e-02 0.985418320 0.9999595
## AKR1A1 1.465299e-02 0.985455584 0.9999595
## ADCK1 1.460042e-02 0.985507374 0.9999595
## POLR2G 1.450866e-02 0.985597789 0.9999595
## BAG5 1.446437e-02 0.985641431 0.9999595
## ISG20 1.439262e-02 0.985712136 0.9999595
## ATP5F1A 1.434324e-02 0.985760798 0.9999595
## KLRD1 1.418897e-02 0.985912853 0.9999595
## UBAP2 1.409283e-02 0.986007622 0.9999595
## SLC25A23 1.406086e-02 0.986039132 0.9999595
## UQCRFS1 1.405987e-02 0.986040111 0.9999595
## ATG4D 1.405568e-02 0.986044242 0.9999595
## LRRC40 1.405120e-02 0.986048656 0.9999595
## SRP68 1.403355e-02 0.986066062 0.9999595
## PRMT9 1.394043e-02 0.986157859 0.9999595
## PLEKHJ1 1.388346e-02 0.986214029 0.9999595
## STUB1 1.378069e-02 0.986315370 0.9999595
## ZNF672 1.372842e-02 0.986366909 0.9999595
## NBPF9 1.364572e-02 0.986448472 0.9999595
## ACBD3 1.359818e-02 0.986495355 0.9999595
## AHSA1 1.349316e-02 0.986598945 0.9999595
## SSBP2 1.346555e-02 0.986626177 0.9999595
## ULK2 1.338521e-02 0.986705428 0.9999595
## ECSIT 1.328555e-02 0.986803749 0.9999595
## ASB16 1.328233e-02 0.986806924 0.9999595
## CD37 1.326295e-02 0.986826044 0.9999595
## NIT1 1.315915e-02 0.986928462 0.9999595
## SUZ12 1.314163e-02 0.986945748 0.9999595
## SLC39A3 1.312224e-02 0.986964882 0.9999595
## PICK1 1.311083e-02 0.986976136 0.9999595
## STK19 1.308070e-02 0.987005866 0.9999595
## THTPA 1.307403e-02 0.987012448 0.9999595
## XPO5 1.307073e-02 0.987015708 0.9999595
## AIFM3 1.303877e-02 0.987047249 0.9999595
## IER5 1.303180e-02 0.987054121 0.9999595
## WWC3 1.295941e-02 0.987125559 0.9999595
## TAGAP 1.294964e-02 0.987135207 0.9999595
## OGFOD2 1.291335e-02 0.987171019 0.9999595
## SLC26A2 1.290155e-02 0.987182666 0.9999595
## ZNF620 1.286315e-02 0.987220573 0.9999595
## FAM234B 1.284577e-02 0.987237720 0.9999595
## DHX37 1.281266e-02 0.987270408 0.9999595
## PPIL4 1.280580e-02 0.987277180 0.9999595
## ITGB5 1.273829e-02 0.987343815 0.9999595
## TTC37 1.273477e-02 0.987347287 0.9999595
## CDHR1 1.266913e-02 0.987412086 0.9999595
## SEPTIN10 1.263724e-02 0.987443572 0.9999595
## TPRN 1.263515e-02 0.987445632 0.9999595
## FOXP4 1.258931e-02 0.987490888 0.9999595
## ASCC3 1.258716e-02 0.987493014 0.9999595
## USP28 1.255591e-02 0.987523862 0.9999595
## EZH1 1.253200e-02 0.987547476 0.9999595
## CSTF2 1.252972e-02 0.987549725 0.9999595
## HMG20B 1.250643e-02 0.987572718 0.9999595
## GINS3 1.250624e-02 0.987572912 0.9999595
## ANXA6 1.238937e-02 0.987688312 0.9999595
## TGFBR3 1.237298e-02 0.987704493 0.9999595
## KANSL1L 1.236035e-02 0.987716970 0.9999595
## DCLRE1C 1.233462e-02 0.987742378 0.9999595
## SUGP2 1.227211e-02 0.987804110 0.9999595
## XKR7 1.214190e-02 0.987932717 0.9999595
## TTC14 1.210540e-02 0.987968762 0.9999595
## SNRPA 1.208912e-02 0.987984851 0.9999595
## TLR9 1.201588e-02 0.988057193 0.9999595
## BRMS1 1.197380e-02 0.988098762 0.9999595
## YAF2 1.185651e-02 0.988214647 0.9999595
## SDCBP2 1.184298e-02 0.988228014 0.9999595
## HIP1 1.184193e-02 0.988229045 0.9999595
## NOTCH1 1.183764e-02 0.988233290 0.9999595
## FCHSD1 1.176635e-02 0.988303729 0.9999595
## TSC22D4 1.171021e-02 0.988359197 0.9999595
## PPARG 1.170891e-02 0.988360490 0.9999595
## ERAL1 1.168240e-02 0.988386681 0.9999595
## CARD8 1.165522e-02 0.988413543 0.9999595
## ZNF585A 1.159435e-02 0.988473695 0.9999595
## TIGD3 1.159143e-02 0.988476579 0.9999595
## PTK2 1.154509e-02 0.988522380 0.9999595
## NUDT12 1.145161e-02 0.988614780 0.9999595
## ZGPAT 1.134863e-02 0.988716569 0.9999595
## DGAT1 1.130262e-02 0.988762053 0.9999595
## ANXA1 1.128204e-02 0.988782399 0.9999595
## TUT4 1.123504e-02 0.988828863 0.9999595
## OTUB1 1.114938e-02 0.988913557 0.9999595
## UQCR10 1.104211e-02 0.989019623 0.9999595
## TRAPPC3 1.101605e-02 0.989045395 0.9999595
## TIA1 1.101301e-02 0.989048395 0.9999595
## ZFP91 1.100110e-02 0.989060179 0.9999595
## RGS12 1.094914e-02 0.989111557 0.9999595
## GPATCH2 1.088527e-02 0.989174723 0.9999595
## ABCA3 1.088334e-02 0.989176635 0.9999595
## HSPA4 1.079230e-02 0.989266674 0.9999595
## AAGAB 1.077039e-02 0.989288344 0.9999595
## GARRE1 1.075820e-02 0.989300399 0.9999595
## POMZP3 1.066258e-02 0.989394986 0.9999595
## GREB1 1.064825e-02 0.989409163 0.9999595
## UTP23 1.064159e-02 0.989415748 0.9999595
## BUB1B 1.061951e-02 0.989437596 0.9999595
## CEP120 1.056967e-02 0.989486904 0.9999595
## SAP25 1.052908e-02 0.989527058 0.9999595
## YEATS2 1.050552e-02 0.989550370 0.9999595
## MED29 1.049377e-02 0.989561997 0.9999595
## RANBP3 1.049034e-02 0.989565390 0.9999595
## ZNF595 1.046149e-02 0.989593932 0.9999595
## STING1 1.039201e-02 0.989662680 0.9999595
## ZNF580 1.032033e-02 0.989733606 0.9999595
## ZCCHC9 1.029616e-02 0.989757531 0.9999595
## PSAT1 1.027497e-02 0.989778492 0.9999595
## BBC3 1.020348e-02 0.989849250 0.9999595
## CHRNE 1.013966e-02 0.989912406 0.9999595
## TYMS 1.008602e-02 0.989965504 0.9999595
## MYPOP 1.003374e-02 0.990017249 0.9999595
## TOB2 1.000929e-02 0.990041448 0.9999595
## AQR 9.926055e-03 0.990123848 0.9999595
## TNXB 9.919612e-03 0.990130226 0.9999595
## SDHAF2 9.867349e-03 0.990181966 0.9999595
## SPX 9.841498e-03 0.990207559 0.9999595
## BAX 9.817179e-03 0.990231637 0.9999595
## NME8 9.767894e-03 0.990280434 0.9999595
## VPS37C 9.691777e-03 0.990355802 0.9999595
## XPNPEP3 9.621310e-03 0.990425580 0.9999595
## DHX33 9.604157e-03 0.990442567 0.9999595
## EXOC2 9.594940e-03 0.990451694 0.9999595
## NAA20 9.529204e-03 0.990516794 0.9999595
## AP2S1 9.486785e-03 0.990558805 0.9999595
## HDAC10 9.457596e-03 0.990587715 0.9999595
## AFAP1L2 9.450322e-03 0.990594919 0.9999595
## SCAF1 9.439881e-03 0.990605261 0.9999595
## MCM2 9.429944e-03 0.990615103 0.9999595
## PAF1 9.304781e-03 0.990739080 0.9999595
## PLEKHM2 9.243281e-03 0.990800003 0.9999595
## SPECC1 9.224563e-03 0.990818545 0.9999595
## WASHC1 9.194192e-03 0.990848633 0.9999595
## C11orf98 9.181300e-03 0.990861406 0.9999595
## ARHGEF39 9.160083e-03 0.990882426 0.9999595
## ASB7 9.155529e-03 0.990886938 0.9999595
## COMMD10 9.145029e-03 0.990897341 0.9999595
## CNOT2 9.136625e-03 0.990905667 0.9999595
## RBM27 9.088090e-03 0.990953754 0.9999595
## PDZD8 9.040513e-03 0.991000895 0.9999595
## CLTA 8.925187e-03 0.991115173 0.9999595
## CD300H 8.872427e-03 0.991167458 0.9999595
## KLHL11 8.858052e-03 0.991181704 0.9999595
## FLNB 8.762694e-03 0.991276212 0.9999595
## ARMC9 8.617910e-03 0.991419723 0.9999595
## CHN2 8.558385e-03 0.991478731 0.9999595
## MTERF1 8.553738e-03 0.991483337 0.9999595
## COMMD4 8.493467e-03 0.991543089 0.9999595
## LETM1 8.443160e-03 0.991592965 0.9999595
## MRM2 8.440346e-03 0.991595754 0.9999595
## CCSAP 8.335108e-03 0.991700099 0.9999595
## DNMT1 8.267089e-03 0.991767547 0.9999595
## C1orf50 8.064887e-03 0.991968077 0.9999595
## FAM114A2 8.022335e-03 0.992010283 0.9999595
## TMEM62 8.003303e-03 0.992029161 0.9999595
## FIP1L1 8.001877e-03 0.992030575 0.9999595
## FCF1 7.941816e-03 0.992090151 0.9999595
## ULBP3 7.916265e-03 0.992115497 0.9999595
## USP40 7.831920e-03 0.992199170 0.9999595
## ERC1 7.771323e-03 0.992259288 0.9999595
## HLA-DMA 7.720495e-03 0.992309717 0.9999595
## NDUFA3 7.691250e-03 0.992338734 0.9999595
## MRE11 7.646815e-03 0.992382824 0.9999595
## SP2 7.628143e-03 0.992401352 0.9999595
## TRIR 7.619722e-03 0.992409708 0.9999595
## SSU72 7.585529e-03 0.992443637 0.9999595
## HYI 7.561673e-03 0.992467311 0.9999595
## PSMC4 7.547994e-03 0.992480885 0.9999595
## SLC36A2 7.525870e-03 0.992502840 0.9999595
## SLC25A16 7.454197e-03 0.992573969 0.9999595
## IGHMBP2 7.374455e-03 0.992653113 0.9999595
## NDUFA8 7.277415e-03 0.992749434 0.9999595
## ATR 7.098294e-03 0.992927251 0.9999595
## CTSW 7.056580e-03 0.992968666 0.9999595
## MED15 7.040957e-03 0.992984177 0.9999595
## TP53RK 6.979589e-03 0.993045110 0.9999595
## SETD3 6.936934e-03 0.993087464 0.9999595
## ZNF616 6.924564e-03 0.993099747 0.9999595
## FBXL15 6.884056e-03 0.993139971 0.9999595
## ZSWIM4 6.880245e-03 0.993143756 0.9999595
## SLC4A2 6.839830e-03 0.993183891 0.9999595
## SIRT7 6.825104e-03 0.993198514 0.9999595
## RBM4 6.782202e-03 0.993241121 0.9999595
## DCLRE1A 6.723275e-03 0.993299645 0.9999595
## PTGES3 6.644720e-03 0.993377668 0.9999595
## STK17A 6.508312e-03 0.993513167 0.9999595
## CGGBP1 6.485004e-03 0.993536322 0.9999595
## CHEK1 6.482767e-03 0.993538544 0.9999595
## HCAR1 6.393329e-03 0.993627399 0.9999595
## ZNF791 6.341079e-03 0.993679312 0.9999595
## MELK 6.262737e-03 0.993757154 0.9999595
## PACS1 6.260500e-03 0.993759377 0.9999595
## KRTCAP3 6.254887e-03 0.993764954 0.9999595
## NCOA5 6.211907e-03 0.993807662 0.9999595
## GCHFR 6.105680e-03 0.993913226 0.9999595
## SERPINH1 6.100986e-03 0.993917891 0.9999595
## PAXIP1 6.085319e-03 0.993933462 0.9999595
## WDR33 5.969765e-03 0.994048310 0.9999595
## RFFL 5.940569e-03 0.994077330 0.9999595
## TMEM189 5.801668e-03 0.994215404 0.9999595
## HOMEZ 5.797392e-03 0.994219655 0.9999595
## COG5 5.779115e-03 0.994237825 0.9999595
## GGT6 5.730901e-03 0.994285758 0.9999595
## SMAD4 5.639005e-03 0.994377124 0.9999595
## TMEM175 5.610850e-03 0.994405119 0.9999595
## ZNF385D 5.433211e-03 0.994581763 0.9999595
## MTURN 5.419281e-03 0.994595617 0.9999595
## PEX13 5.415084e-03 0.994599790 0.9999595
## MPP5 5.206941e-03 0.994806813 0.9999595
## BCL7B 5.198426e-03 0.994815283 0.9999595
## RTL8C 5.169893e-03 0.994843667 0.9999595
## MTDH 5.142688e-03 0.994870730 0.9999595
## GABPA 5.135061e-03 0.994878316 0.9999595
## PILRA 5.130840e-03 0.994882516 0.9999595
## VPS33A 4.943390e-03 0.995069009 0.9999595
## ZNF384 4.914189e-03 0.995098063 0.9999595
## GPR35 4.881723e-03 0.995130368 0.9999595
## PRAF2 4.856748e-03 0.995155220 0.9999595
## WDR26 4.839586e-03 0.995172298 0.9999595
## HMGXB4 4.825711e-03 0.995186105 0.9999595
## FAM71F2 4.815732e-03 0.995196035 0.9999595
## GPATCH2L 4.794753e-03 0.995216912 0.9999595
## ARAP3 4.763371e-03 0.995248141 0.9999595
## NEIL3 4.738271e-03 0.995273121 0.9999595
## PRPF4B 4.704483e-03 0.995306747 0.9999595
## ELOF1 4.636877e-03 0.995374032 0.9999595
## CPNE2 4.449616e-03 0.995560431 0.9999595
## UBP1 4.354786e-03 0.995654838 0.9999595
## KAT7 4.314072e-03 0.995695373 0.9999595
## SOWAHD 4.279239e-03 0.995730054 0.9999595
## RNA28SN3 4.248176e-03 0.995760982 0.9999595
## MRPL33 4.165454e-03 0.995843351 0.9999595
## MTMR14 4.131054e-03 0.995877607 0.9999595
## UBE2E2 4.044841e-03 0.995963463 0.9999595
## MEPCE 4.016593e-03 0.995991595 0.9999595
## CYHR1 4.009581e-03 0.995998578 0.9999595
## PNISR 3.931871e-03 0.996075975 0.9999595
## BBS2 3.904866e-03 0.996102873 0.9999595
## DUSP6 3.851744e-03 0.996155786 0.9999595
## PTPA 3.842556e-03 0.996164938 0.9999595
## PIM2 3.643249e-03 0.996363488 0.9999595
## FAM124B 3.522520e-03 0.996483779 0.9999595
## MBTPS1 3.499575e-03 0.996506642 0.9999595
## PLCD3 3.487731e-03 0.996518444 0.9999595
## MED9 3.451492e-03 0.996554555 0.9999595
## SEMA4D 3.350268e-03 0.996655430 0.9999595
## KLRC1 3.340332e-03 0.996665332 0.9999595
## FAM193B 3.337636e-03 0.996668019 0.9999595
## PAQR7 3.314258e-03 0.996691318 0.9999595
## KALRN 3.292629e-03 0.996712875 0.9999595
## UBE4B 3.250586e-03 0.996754778 0.9999595
## ZNF644 3.249632e-03 0.996755729 0.9999595
## GPR82 3.248919e-03 0.996756439 0.9999595
## TIFA 3.239231e-03 0.996766096 0.9999595
## HLA-B 3.209945e-03 0.996795286 0.9999595
## AGER 3.175892e-03 0.996829228 0.9999595
## CTU1 3.116972e-03 0.996887961 0.9999595
## HDAC8 3.054849e-03 0.996949889 0.9999595
## FAM156B 3.022535e-03 0.996982103 0.9999595
## SCAMP2 3.008173e-03 0.996996421 0.9999595
## SPON2 3.003116e-03 0.997001463 0.9999595
## DLG5 2.961094e-03 0.997043358 0.9999595
## CAPN3 2.917657e-03 0.997086665 0.9999595
## SMARCAL1 2.898739e-03 0.997105527 0.9999595
## CDK13 2.871285e-03 0.997132901 0.9999595
## PIAS4 2.845008e-03 0.997159101 0.9999595
## HYPK 2.623381e-03 0.997380114 0.9999595
## SH3GL1 2.532695e-03 0.997470562 0.9999595
## ELOA 2.518297e-03 0.997484924 0.9999595
## PEA15 2.472628e-03 0.997530476 0.9999595
## ITGB7 2.418984e-03 0.997583987 0.9999595
## OGT 2.168676e-03 0.997833713 0.9999595
## SNAI3 2.147839e-03 0.997854504 0.9999595
## RECQL5 2.107644e-03 0.997894612 0.9999595
## NUP205 1.945793e-03 0.998056130 0.9999595
## EVI5L 1.924783e-03 0.998077099 0.9999595
## PIGT 1.922149e-03 0.998079728 0.9999595
## VPS11 1.892883e-03 0.998108937 0.9999595
## NSDHL 1.850556e-03 0.998151183 0.9999595
## NDOR1 1.841312e-03 0.998160410 0.9999595
## WDSUB1 1.802556e-03 0.998199094 0.9999595
## CCDC92B 1.794297e-03 0.998207338 0.9999595
## PITPNB 1.669803e-03 0.998331614 0.9999595
## CHI3L1 1.664057e-03 0.998337349 0.9999595
## PRKN 1.596338e-03 0.998404957 0.9999595
## APPL1 1.541293e-03 0.998459914 0.9999595
## EIF4EBP2 1.510626e-03 0.998490534 0.9999595
## FADS2 1.501902e-03 0.998499243 0.9999595
## DOCK7 1.401258e-03 0.998599740 0.9999595
## CEMP1 1.281096e-03 0.998719737 0.9999595
## PRDX1 1.231371e-03 0.998769400 0.9999595
## COMT 1.206204e-03 0.998794535 0.9999595
## KAZN 1.199113e-03 0.998801617 0.9999595
## ZNF775 1.173057e-03 0.998827642 0.9999595
## SEC63 1.071858e-03 0.998928726 0.9999595
## HADHA 1.060970e-03 0.998939602 0.9999595
## EIF4EBP3 1.012670e-03 0.998987851 0.9999595
## GPI 9.807720e-04 0.999019717 0.9999595
## EVA1C 9.296019e-04 0.999070837 0.9999595
## SPATA2L 8.391202e-04 0.999161238 0.9999595
## PRKCB 8.346332e-04 0.999165721 0.9999595
## CLN3 8.264467e-04 0.999173900 0.9999595
## NOL10 8.165887e-04 0.999183750 0.9999595
## GATAD2A 7.627236e-04 0.999237572 0.9999595
## PI4K2B 7.383651e-04 0.999261912 0.9999595
## ANO8 6.447063e-04 0.999355505 0.9999595
## DCLRE1B 5.931764e-04 0.999407002 0.9999595
## NUDC 5.779153e-04 0.999422254 0.9999595
## FAM110A 5.465437e-04 0.999453608 0.9999595
## ZNF132 4.304732e-04 0.999569621 0.9999624
## PTGR1 2.846741e-04 0.999715367 0.9999624
## SNRPC 1.648819e-04 0.999835132 0.9999624
## ANKRD13D 1.453378e-04 0.999854673 0.9999624
## BMF 1.107671e-04 0.999889239 0.9999624
## ANGEL2 3.764172e-05 0.999962359 0.9999624
decideTests(confit_unicorn, adjust.method = "fdr", p.value = 0.05) %>%
summary()## day14_day7 day7_day0 day14_day0
## Down 0 0 0
## NotSig 11860 11860 11860
## Up 0 0 0
#BiocManager::install("biomaRt")
library(biomaRt)
listMarts()## biomart version
## 1 ENSEMBL_MART_ENSEMBL Ensembl Genes 104
## 2 ENSEMBL_MART_MOUSE Mouse strains 104
## 3 ENSEMBL_MART_SNP Ensembl Variation 104
## 4 ENSEMBL_MART_FUNCGEN Ensembl Regulation 104
ensembl=useMart("ensembl")
listDatasets(ensembl)## dataset
## 1 abrachyrhynchus_gene_ensembl
## 2 acalliptera_gene_ensembl
## 3 acarolinensis_gene_ensembl
## 4 acchrysaetos_gene_ensembl
## 5 acitrinellus_gene_ensembl
## 6 amelanoleuca_gene_ensembl
## 7 amexicanus_gene_ensembl
## 8 anancymaae_gene_ensembl
## 9 aocellaris_gene_ensembl
## 10 apercula_gene_ensembl
## 11 aplatyrhynchos_gene_ensembl
## 12 apolyacanthus_gene_ensembl
## 13 applatyrhynchos_gene_ensembl
## 14 atestudineus_gene_ensembl
## 15 bbbison_gene_ensembl
## 16 bgrunniens_gene_ensembl
## 17 bihybrid_gene_ensembl
## 18 bmusculus_gene_ensembl
## 19 bmutus_gene_ensembl
## 20 bsplendens_gene_ensembl
## 21 btaurus_gene_ensembl
## 22 cabingdonii_gene_ensembl
## 23 catys_gene_ensembl
## 24 cauratus_gene_ensembl
## 25 ccapucinus_gene_ensembl
## 26 ccarpio_gene_ensembl
## 27 cdromedarius_gene_ensembl
## 28 celegans_gene_ensembl
## 29 cgchok1gshd_gene_ensembl
## 30 cgobio_gene_ensembl
## 31 charengus_gene_ensembl
## 32 chircus_gene_ensembl
## 33 choffmanni_gene_ensembl
## 34 chyarkandensis_gene_ensembl
## 35 cintestinalis_gene_ensembl
## 36 cjacchus_gene_ensembl
## 37 cjaponica_gene_ensembl
## 38 clanigera_gene_ensembl
## 39 cldingo_gene_ensembl
## 40 clfamiliaris_gene_ensembl
## 41 clumpus_gene_ensembl
## 42 cmilii_gene_ensembl
## 43 cpbellii_gene_ensembl
## 44 cporcellus_gene_ensembl
## 45 cporosus_gene_ensembl
## 46 csabaeus_gene_ensembl
## 47 csavignyi_gene_ensembl
## 48 csemilaevis_gene_ensembl
## 49 csyrichta_gene_ensembl
## 50 cvariegatus_gene_ensembl
## 51 cwagneri_gene_ensembl
## 52 dclupeoides_gene_ensembl
## 53 dlabrax_gene_ensembl
## 54 dleucas_gene_ensembl
## 55 dmelanogaster_gene_ensembl
## 56 dnovemcinctus_gene_ensembl
## 57 dordii_gene_ensembl
## 58 drerio_gene_ensembl
## 59 eaasinus_gene_ensembl
## 60 eburgeri_gene_ensembl
## 61 ecaballus_gene_ensembl
## 62 ecalabaricus_gene_ensembl
## 63 eelectricus_gene_ensembl
## 64 eeuropaeus_gene_ensembl
## 65 elucius_gene_ensembl
## 66 etelfairi_gene_ensembl
## 67 falbicollis_gene_ensembl
## 68 fcatus_gene_ensembl
## 69 fheteroclitus_gene_ensembl
## 70 gaculeatus_gene_ensembl
## 71 gevgoodei_gene_ensembl
## 72 gfortis_gene_ensembl
## 73 ggallus_gene_ensembl
## 74 ggorilla_gene_ensembl
## 75 gmorhua_gene_ensembl
## 76 hburtoni_gene_ensembl
## 77 hcomes_gene_ensembl
## 78 hgfemale_gene_ensembl
## 79 hhucho_gene_ensembl
## 80 hsapiens_gene_ensembl
## 81 ipunctatus_gene_ensembl
## 82 itridecemlineatus_gene_ensembl
## 83 jjaculus_gene_ensembl
## 84 kmarmoratus_gene_ensembl
## 85 lafricana_gene_ensembl
## 86 lbergylta_gene_ensembl
## 87 lcalcarifer_gene_ensembl
## 88 lchalumnae_gene_ensembl
## 89 lcrocea_gene_ensembl
## 90 llaticaudata_gene_ensembl
## 91 lleishanense_gene_ensembl
## 92 loculatus_gene_ensembl
## 93 marmatus_gene_ensembl
## 94 mauratus_gene_ensembl
## 95 mcaroli_gene_ensembl
## 96 mdomestica_gene_ensembl
## 97 mfascicularis_gene_ensembl
## 98 mgallopavo_gene_ensembl
## 99 mleucophaeus_gene_ensembl
## 100 mlucifugus_gene_ensembl
## 101 mmmarmota_gene_ensembl
## 102 mmonoceros_gene_ensembl
## 103 mmoschiferus_gene_ensembl
## 104 mmulatta_gene_ensembl
## 105 mmurdjan_gene_ensembl
## 106 mmurinus_gene_ensembl
## 107 mmusculus_gene_ensembl
## 108 mnemestrina_gene_ensembl
## 109 mochrogaster_gene_ensembl
## 110 mpahari_gene_ensembl
## 111 mpfuro_gene_ensembl
## 112 mspicilegus_gene_ensembl
## 113 mspretus_gene_ensembl
## 114 mzebra_gene_ensembl
## 115 nbrichardi_gene_ensembl
## 116 neugenii_gene_ensembl
## 117 nfurzeri_gene_ensembl
## 118 ngalili_gene_ensembl
## 119 nleucogenys_gene_ensembl
## 120 nnaja_gene_ensembl
## 121 nscutatus_gene_ensembl
## 122 nvison_gene_ensembl
## 123 oanatinus_gene_ensembl
## 124 oarambouillet_gene_ensembl
## 125 oaries_gene_ensembl
## 126 ocuniculus_gene_ensembl
## 127 odegus_gene_ensembl
## 128 ogarnettii_gene_ensembl
## 129 ojavanicus_gene_ensembl
## 130 okisutch_gene_ensembl
## 131 olatipes_gene_ensembl
## 132 omelastigma_gene_ensembl
## 133 omykiss_gene_ensembl
## 134 oniloticus_gene_ensembl
## 135 oprinceps_gene_ensembl
## 136 osinensis_gene_ensembl
## 137 otshawytscha_gene_ensembl
## 138 pabelii_gene_ensembl
## 139 panubis_gene_ensembl
## 140 pcapensis_gene_ensembl
## 141 pcatodon_gene_ensembl
## 142 pcinereus_gene_ensembl
## 143 pcoquereli_gene_ensembl
## 144 pformosa_gene_ensembl
## 145 pkingsleyae_gene_ensembl
## 146 platipinna_gene_ensembl
## 147 pleo_gene_ensembl
## 148 pmajor_gene_ensembl
## 149 pmarinus_gene_ensembl
## 150 pmbairdii_gene_ensembl
## 151 pmuralis_gene_ensembl
## 152 pnattereri_gene_ensembl
## 153 pnyererei_gene_ensembl
## 154 ppaniscus_gene_ensembl
## 155 ppardus_gene_ensembl
## 156 preticulata_gene_ensembl
## 157 psimus_gene_ensembl
## 158 psinensis_gene_ensembl
## 159 psinus_gene_ensembl
## 160 ptaltaica_gene_ensembl
## 161 ptextilis_gene_ensembl
## 162 ptroglodytes_gene_ensembl
## 163 pvampyrus_gene_ensembl
## 164 rbieti_gene_ensembl
## 165 rferrumequinum_gene_ensembl
## 166 rnorvegicus_gene_ensembl
## 167 rroxellana_gene_ensembl
## 168 saraneus_gene_ensembl
## 169 saurata_gene_ensembl
## 170 sbboliviensis_gene_ensembl
## 171 scanaria_gene_ensembl
## 172 scaustralis_gene_ensembl
## 173 scerevisiae_gene_ensembl
## 174 sdumerili_gene_ensembl
## 175 sformosus_gene_ensembl
## 176 sgrahami_gene_ensembl
## 177 shabroptila_gene_ensembl
## 178 sharrisii_gene_ensembl
## 179 sldorsalis_gene_ensembl
## 180 slucioperca_gene_ensembl
## 181 smaximus_gene_ensembl
## 182 smerianae_gene_ensembl
## 183 spartitus_gene_ensembl
## 184 spunctatus_gene_ensembl
## 185 ssalar_gene_ensembl
## 186 sscrofa_gene_ensembl
## 187 strutta_gene_ensembl
## 188 svulgaris_gene_ensembl
## 189 tbelangeri_gene_ensembl
## 190 tctriunguis_gene_ensembl
## 191 tguttata_gene_ensembl
## 192 tnigroviridis_gene_ensembl
## 193 trubripes_gene_ensembl
## 194 ttruncatus_gene_ensembl
## 195 uamericanus_gene_ensembl
## 196 umaritimus_gene_ensembl
## 197 uparryii_gene_ensembl
## 198 vpacos_gene_ensembl
## 199 vursinus_gene_ensembl
## 200 vvulpes_gene_ensembl
## 201 xmaculatus_gene_ensembl
## 202 xtropicalis_gene_ensembl
## description
## 1 Pink-footed goose genes (ASM259213v1)
## 2 Eastern happy genes (fAstCal1.2)
## 3 Green anole genes (AnoCar2.0v2)
## 4 Golden eagle genes (bAquChr1.2)
## 5 Midas cichlid genes (Midas_v5)
## 6 Giant panda genes (ASM200744v2)
## 7 Mexican tetra genes (Astyanax_mexicanus-2.0)
## 8 Ma's night monkey genes (Anan_2.0)
## 9 Clown anemonefish genes (AmpOce1.0)
## 10 Orange clownfish genes (Nemo_v1)
## 11 Mallard genes (ASM874695v1)
## 12 Spiny chromis genes (ASM210954v1)
## 13 Duck genes (CAU_duck1.0)
## 14 Climbing perch genes (fAnaTes1.2)
## 15 American bison genes (Bison_UMD1.0)
## 16 Domestic yak genes (LU_Bosgru_v3.0)
## 17 Hybrid - Bos Indicus genes (UOA_Brahman_1)
## 18 Blue whale genes (mBalMus1.v2)
## 19 Wild yak genes (BosGru_v2.0)
## 20 Siamese fighting fish genes (fBetSpl5.2)
## 21 Cow genes (ARS-UCD1.2)
## 22 Abingdon island giant tortoise genes (ASM359739v1)
## 23 Sooty mangabey genes (Caty_1.0)
## 24 Goldfish genes (ASM336829v1)
## 25 Capuchin genes (Cebus_imitator-1.0)
## 26 Common carp genes (common_carp_genome)
## 27 Arabian camel genes (CamDro2)
## 28 Caenorhabditis elegans genes (WBcel235)
## 29 Chinese hamster CHOK1GS genes (CHOK1GS_HDv1)
## 30 Channel bull blenny genes (fCotGob3.1)
## 31 Atlantic herring genes (Ch_v2.0.2)
## 32 Goat genes (ARS1)
## 33 Sloth genes (choHof1)
## 34 Yarkand deer genes (CEY_v1)
## 35 C.intestinalis genes (KH)
## 36 Marmoset genes (ASM275486v1)
## 37 Japanese quail genes (Coturnix_japonica_2.0)
## 38 Long-tailed chinchilla genes (ChiLan1.0)
## 39 Dingo genes (ASM325472v1)
## 40 Dog genes (CanFam3.1)
## 41 Lumpfish genes (fCycLum1.pri)
## 42 Elephant shark genes (Callorhinchus_milii-6.1.3)
## 43 Painted turtle genes (Chrysemys_picta_bellii-3.0.3)
## 44 Guinea Pig genes (Cavpor3.0)
## 45 Australian saltwater crocodile genes (CroPor_comp1)
## 46 Vervet-AGM genes (ChlSab1.1)
## 47 C.savignyi genes (CSAV 2.0)
## 48 Tongue sole genes (Cse_v1.0)
## 49 Tarsier genes (Tarsius_syrichta-2.0.1)
## 50 Sheepshead minnow genes (C_variegatus-1.0)
## 51 Chacoan peccary genes (CatWag_v2_BIUU_UCD)
## 52 Denticle herring genes (fDenClu1.1)
## 53 European seabass genes (seabass_V1.0)
## 54 Beluga whale genes (ASM228892v3)
## 55 Drosophila melanogaster genes (BDGP6.32)
## 56 Armadillo genes (Dasnov3.0)
## 57 Kangaroo rat genes (Dord_2.0)
## 58 Zebrafish genes (GRCz11)
## 59 Donkey genes (ASM303372v1)
## 60 Hagfish genes (Eburgeri_3.2)
## 61 Horse genes (EquCab3.0)
## 62 Reedfish genes (fErpCal1.1)
## 63 Electric eel genes (Ee_SOAP_WITH_SSPACE)
## 64 Hedgehog genes (eriEur1)
## 65 Northern pike genes (Eluc_v4)
## 66 Lesser hedgehog tenrec genes (TENREC)
## 67 Collared flycatcher genes (FicAlb1.5)
## 68 Cat genes (Felis_catus_9.0)
## 69 Mummichog genes (Fundulus_heteroclitus-3.0.2)
## 70 Stickleback genes (BROAD S1)
## 71 Goodes thornscrub tortoise genes (rGopEvg1_v1.p)
## 72 Medium ground-finch genes (GeoFor_1.0)
## 73 Chicken genes (GRCg6a)
## 74 Gorilla genes (gorGor4)
## 75 Atlantic cod genes (gadMor3.0)
## 76 Burton's mouthbrooder genes (AstBur1.0)
## 77 Tiger tail seahorse genes (H_comes_QL1_v1)
## 78 Naked mole-rat female genes (HetGla_female_1.0)
## 79 Huchen genes (ASM331708v1)
## 80 Human genes (GRCh38.p13)
## 81 Channel catfish genes (IpCoco_1.2)
## 82 Squirrel genes (SpeTri2.0)
## 83 Lesser Egyptian jerboa genes (JacJac1.0)
## 84 Mangrove rivulus genes (ASM164957v1)
## 85 Elephant genes (Loxafr3.0)
## 86 Ballan wrasse genes (BallGen_V1)
## 87 Barramundi perch genes (ASB_HGAPassembly_v1)
## 88 Coelacanth genes (LatCha1)
## 89 Large yellow croaker genes (L_crocea_2.0)
## 90 Blue-ringed sea krait genes (latLat_1.0)
## 91 Leishan spiny toad genes (ASM966780v1)
## 92 Spotted gar genes (LepOcu1)
## 93 Zig-zag eel genes (fMasArm1.2)
## 94 Golden Hamster genes (MesAur1.0)
## 95 Ryukyu mouse genes (CAROLI_EIJ_v1.1)
## 96 Opossum genes (ASM229v1)
## 97 Crab-eating macaque genes (Macaca_fascicularis_6.0)
## 98 Turkey genes (Turkey_5.1)
## 99 Drill genes (Mleu.le_1.0)
## 100 Microbat genes (Myoluc2.0)
## 101 Alpine marmot genes (marMar2.1)
## 102 Narwhal genes (NGI_Narwhal_1)
## 103 Siberian musk deer genes (MosMos_v2_BIUU_UCD)
## 104 Macaque genes (Mmul_10)
## 105 Pinecone soldierfish genes (fMyrMur1.1)
## 106 Mouse Lemur genes (Mmur_3.0)
## 107 Mouse genes (GRCm39)
## 108 Pig-tailed macaque genes (Mnem_1.0)
## 109 Prairie vole genes (MicOch1.0)
## 110 Shrew mouse genes (PAHARI_EIJ_v1.1)
## 111 Ferret genes (MusPutFur1.0)
## 112 Steppe mouse genes (MUSP714)
## 113 Algerian mouse genes (SPRET_EiJ_v1)
## 114 Zebra mbuna genes (M_zebra_UMD2a)
## 115 Lyretail cichlid genes (NeoBri1.0)
## 116 Wallaby genes (Meug_1.0)
## 117 Turquoise killifish genes (Nfu_20140520)
## 118 Upper Galilee mountains blind mole rat genes (S.galili_v1.0)
## 119 Gibbon genes (Nleu_3.0)
## 120 Indian cobra genes (Nana_v5)
## 121 Mainland tiger snake genes (TS10Xv2-PRI)
## 122 American mink genes (NNQGG.v01)
## 123 Platypus genes (mOrnAna1.p.v1)
## 124 Sheep genes (Oar_rambouillet_v1.0)
## 125 Sheep (texel) genes (Oar_v3.1)
## 126 Rabbit genes (OryCun2.0)
## 127 Degu genes (OctDeg1.0)
## 128 Bushbaby genes (OtoGar3)
## 129 Javanese ricefish genes (OJAV_1.1)
## 130 Coho salmon genes (Okis_V2)
## 131 Japanese medaka HdrR genes (ASM223467v1)
## 132 Indian medaka genes (Om_v0.7.RACA)
## 133 Rainbow trout genes (Omyk_1.0)
## 134 Nile tilapia genes (O_niloticus_UMD_NMBU)
## 135 Pika genes (OchPri2.0-Ens)
## 136 Chinese medaka genes (ASM858656v1)
## 137 Chinook salmon genes (Otsh_v1.0)
## 138 Orangutan genes (PPYG2)
## 139 Olive baboon genes (Panu_3.0)
## 140 Hyrax genes (proCap1)
## 141 Sperm whale genes (ASM283717v2)
## 142 Koala genes (phaCin_unsw_v4.1)
## 143 Coquerel's sifaka genes (Pcoq_1.0)
## 144 Amazon molly genes (Poecilia_formosa-5.1.2)
## 145 Paramormyrops kingsleyae genes (PKINGS_0.1)
## 146 Sailfin molly genes (P_latipinna-1.0)
## 147 Lion genes (PanLeo1.0)
## 148 Great Tit genes (Parus_major1.1)
## 149 Lamprey genes (Pmarinus_7.0)
## 150 Northern American deer mouse genes (HU_Pman_2.1)
## 151 Common wall lizard genes (PodMur_1.0)
## 152 Red-bellied piranha genes (Pygocentrus_nattereri-1.0.2)
## 153 Makobe Island cichlid genes (PunNye1.0)
## 154 Bonobo genes (panpan1.1)
## 155 Leopard genes (PanPar1.0)
## 156 Guppy genes (Guppy_female_1.0_MT)
## 157 Greater bamboo lemur genes (Prosim_1.0)
## 158 Chinese softshell turtle genes (PelSin_1.0)
## 159 Vaquita genes (mPhoSin1.pri)
## 160 Tiger genes (PanTig1.0)
## 161 Eastern brown snake genes (EBS10Xv2-PRI)
## 162 Chimpanzee genes (Pan_tro_3.0)
## 163 Megabat genes (pteVam1)
## 164 Black snub-nosed monkey genes (ASM169854v1)
## 165 Greater horseshoe bat genes (mRhiFer1_v1.p)
## 166 Rat genes (Rnor_6.0)
## 167 Golden snub-nosed monkey genes (Rrox_v1)
## 168 Shrew genes (sorAra1)
## 169 Gilthead seabream genes (fSpaAur1.1)
## 170 Bolivian squirrel monkey genes (SaiBol1.0)
## 171 Common canary genes (SCA1)
## 172 African ostrich genes (ASM69896v1)
## 173 Saccharomyces cerevisiae genes (R64-1-1)
## 174 Greater amberjack genes (Sdu_1.0)
## 175 Asian bonytongue genes (fSclFor1.1)
## 176 Golden-line barbel genes (SAMN03320097.WGS_v1.1)
## 177 Kakapo genes (bStrHab1_v1.p)
## 178 Tasmanian devil genes (mSarHar1.11)
## 179 Yellowtail amberjack genes (Sedor1)
## 180 Pike-perch genes (SLUC_FBN_1)
## 181 Turbot genes (ASM1334776v1)
## 182 Argentine black and white tegu genes (HLtupMer3)
## 183 Bicolor damselfish genes (Stegastes_partitus-1.0.2)
## 184 Tuatara genes (ASM311381v1)
## 185 Atlantic salmon genes (ICSASG_v2)
## 186 Pig genes (Sscrofa11.1)
## 187 Brown trout genes (fSalTru1.1)
## 188 Eurasian red squirrel genes (mSciVul1.1)
## 189 Tree Shrew genes (tupBel1)
## 190 Three-toed box turtle genes (T_m_triunguis-2.0)
## 191 Zebra finch genes (bTaeGut1_v1.p)
## 192 Tetraodon genes (TETRAODON 8.0)
## 193 Fugu genes (fTakRub1.2)
## 194 Dolphin genes (turTru1)
## 195 American black bear genes (ASM334442v1)
## 196 Polar bear genes (UrsMar_1.0)
## 197 Arctic ground squirrel genes (ASM342692v1)
## 198 Alpaca genes (vicPac1)
## 199 Common wombat genes (bare-nosed_wombat_genome_assembly)
## 200 Red fox genes (VulVul2.2)
## 201 Platyfish genes (X_maculatus-5.0-male)
## 202 Tropical clawed frog genes (Xenopus_tropicalis_v9.1)
## version
## 1 ASM259213v1
## 2 fAstCal1.2
## 3 AnoCar2.0v2
## 4 bAquChr1.2
## 5 Midas_v5
## 6 ASM200744v2
## 7 Astyanax_mexicanus-2.0
## 8 Anan_2.0
## 9 AmpOce1.0
## 10 Nemo_v1
## 11 ASM874695v1
## 12 ASM210954v1
## 13 CAU_duck1.0
## 14 fAnaTes1.2
## 15 Bison_UMD1.0
## 16 LU_Bosgru_v3.0
## 17 UOA_Brahman_1
## 18 mBalMus1.v2
## 19 BosGru_v2.0
## 20 fBetSpl5.2
## 21 ARS-UCD1.2
## 22 ASM359739v1
## 23 Caty_1.0
## 24 ASM336829v1
## 25 Cebus_imitator-1.0
## 26 common_carp_genome
## 27 CamDro2
## 28 WBcel235
## 29 CHOK1GS_HDv1
## 30 fCotGob3.1
## 31 Ch_v2.0.2
## 32 ARS1
## 33 choHof1
## 34 CEY_v1
## 35 KH
## 36 ASM275486v1
## 37 Coturnix_japonica_2.0
## 38 ChiLan1.0
## 39 ASM325472v1
## 40 CanFam3.1
## 41 fCycLum1.pri
## 42 Callorhinchus_milii-6.1.3
## 43 Chrysemys_picta_bellii-3.0.3
## 44 Cavpor3.0
## 45 CroPor_comp1
## 46 ChlSab1.1
## 47 CSAV 2.0
## 48 Cse_v1.0
## 49 Tarsius_syrichta-2.0.1
## 50 C_variegatus-1.0
## 51 CatWag_v2_BIUU_UCD
## 52 fDenClu1.1
## 53 seabass_V1.0
## 54 ASM228892v3
## 55 BDGP6.32
## 56 Dasnov3.0
## 57 Dord_2.0
## 58 GRCz11
## 59 ASM303372v1
## 60 Eburgeri_3.2
## 61 EquCab3.0
## 62 fErpCal1.1
## 63 Ee_SOAP_WITH_SSPACE
## 64 eriEur1
## 65 Eluc_v4
## 66 TENREC
## 67 FicAlb1.5
## 68 Felis_catus_9.0
## 69 Fundulus_heteroclitus-3.0.2
## 70 BROAD S1
## 71 rGopEvg1_v1.p
## 72 GeoFor_1.0
## 73 GRCg6a
## 74 gorGor4
## 75 gadMor3.0
## 76 AstBur1.0
## 77 H_comes_QL1_v1
## 78 HetGla_female_1.0
## 79 ASM331708v1
## 80 GRCh38.p13
## 81 IpCoco_1.2
## 82 SpeTri2.0
## 83 JacJac1.0
## 84 ASM164957v1
## 85 Loxafr3.0
## 86 BallGen_V1
## 87 ASB_HGAPassembly_v1
## 88 LatCha1
## 89 L_crocea_2.0
## 90 latLat_1.0
## 91 ASM966780v1
## 92 LepOcu1
## 93 fMasArm1.2
## 94 MesAur1.0
## 95 CAROLI_EIJ_v1.1
## 96 ASM229v1
## 97 Macaca_fascicularis_6.0
## 98 Turkey_5.1
## 99 Mleu.le_1.0
## 100 Myoluc2.0
## 101 marMar2.1
## 102 NGI_Narwhal_1
## 103 MosMos_v2_BIUU_UCD
## 104 Mmul_10
## 105 fMyrMur1.1
## 106 Mmur_3.0
## 107 GRCm39
## 108 Mnem_1.0
## 109 MicOch1.0
## 110 PAHARI_EIJ_v1.1
## 111 MusPutFur1.0
## 112 MUSP714
## 113 SPRET_EiJ_v1
## 114 M_zebra_UMD2a
## 115 NeoBri1.0
## 116 Meug_1.0
## 117 Nfu_20140520
## 118 S.galili_v1.0
## 119 Nleu_3.0
## 120 Nana_v5
## 121 TS10Xv2-PRI
## 122 NNQGG.v01
## 123 mOrnAna1.p.v1
## 124 Oar_rambouillet_v1.0
## 125 Oar_v3.1
## 126 OryCun2.0
## 127 OctDeg1.0
## 128 OtoGar3
## 129 OJAV_1.1
## 130 Okis_V2
## 131 ASM223467v1
## 132 Om_v0.7.RACA
## 133 Omyk_1.0
## 134 O_niloticus_UMD_NMBU
## 135 OchPri2.0-Ens
## 136 ASM858656v1
## 137 Otsh_v1.0
## 138 PPYG2
## 139 Panu_3.0
## 140 proCap1
## 141 ASM283717v2
## 142 phaCin_unsw_v4.1
## 143 Pcoq_1.0
## 144 Poecilia_formosa-5.1.2
## 145 PKINGS_0.1
## 146 P_latipinna-1.0
## 147 PanLeo1.0
## 148 Parus_major1.1
## 149 Pmarinus_7.0
## 150 HU_Pman_2.1
## 151 PodMur_1.0
## 152 Pygocentrus_nattereri-1.0.2
## 153 PunNye1.0
## 154 panpan1.1
## 155 PanPar1.0
## 156 Guppy_female_1.0_MT
## 157 Prosim_1.0
## 158 PelSin_1.0
## 159 mPhoSin1.pri
## 160 PanTig1.0
## 161 EBS10Xv2-PRI
## 162 Pan_tro_3.0
## 163 pteVam1
## 164 ASM169854v1
## 165 mRhiFer1_v1.p
## 166 Rnor_6.0
## 167 Rrox_v1
## 168 sorAra1
## 169 fSpaAur1.1
## 170 SaiBol1.0
## 171 SCA1
## 172 ASM69896v1
## 173 R64-1-1
## 174 Sdu_1.0
## 175 fSclFor1.1
## 176 SAMN03320097.WGS_v1.1
## 177 bStrHab1_v1.p
## 178 mSarHar1.11
## 179 Sedor1
## 180 SLUC_FBN_1
## 181 ASM1334776v1
## 182 HLtupMer3
## 183 Stegastes_partitus-1.0.2
## 184 ASM311381v1
## 185 ICSASG_v2
## 186 Sscrofa11.1
## 187 fSalTru1.1
## 188 mSciVul1.1
## 189 tupBel1
## 190 T_m_triunguis-2.0
## 191 bTaeGut1_v1.p
## 192 TETRAODON 8.0
## 193 fTakRub1.2
## 194 turTru1
## 195 ASM334442v1
## 196 UrsMar_1.0
## 197 ASM342692v1
## 198 vicPac1
## 199 bare-nosed_wombat_genome_assembly
## 200 VulVul2.2
## 201 X_maculatus-5.0-male
## 202 Xenopus_tropicalis_v9.1
listDatasets(ensembl)$dataset## [1] "abrachyrhynchus_gene_ensembl" "acalliptera_gene_ensembl"
## [3] "acarolinensis_gene_ensembl" "acchrysaetos_gene_ensembl"
## [5] "acitrinellus_gene_ensembl" "amelanoleuca_gene_ensembl"
## [7] "amexicanus_gene_ensembl" "anancymaae_gene_ensembl"
## [9] "aocellaris_gene_ensembl" "apercula_gene_ensembl"
## [11] "aplatyrhynchos_gene_ensembl" "apolyacanthus_gene_ensembl"
## [13] "applatyrhynchos_gene_ensembl" "atestudineus_gene_ensembl"
## [15] "bbbison_gene_ensembl" "bgrunniens_gene_ensembl"
## [17] "bihybrid_gene_ensembl" "bmusculus_gene_ensembl"
## [19] "bmutus_gene_ensembl" "bsplendens_gene_ensembl"
## [21] "btaurus_gene_ensembl" "cabingdonii_gene_ensembl"
## [23] "catys_gene_ensembl" "cauratus_gene_ensembl"
## [25] "ccapucinus_gene_ensembl" "ccarpio_gene_ensembl"
## [27] "cdromedarius_gene_ensembl" "celegans_gene_ensembl"
## [29] "cgchok1gshd_gene_ensembl" "cgobio_gene_ensembl"
## [31] "charengus_gene_ensembl" "chircus_gene_ensembl"
## [33] "choffmanni_gene_ensembl" "chyarkandensis_gene_ensembl"
## [35] "cintestinalis_gene_ensembl" "cjacchus_gene_ensembl"
## [37] "cjaponica_gene_ensembl" "clanigera_gene_ensembl"
## [39] "cldingo_gene_ensembl" "clfamiliaris_gene_ensembl"
## [41] "clumpus_gene_ensembl" "cmilii_gene_ensembl"
## [43] "cpbellii_gene_ensembl" "cporcellus_gene_ensembl"
## [45] "cporosus_gene_ensembl" "csabaeus_gene_ensembl"
## [47] "csavignyi_gene_ensembl" "csemilaevis_gene_ensembl"
## [49] "csyrichta_gene_ensembl" "cvariegatus_gene_ensembl"
## [51] "cwagneri_gene_ensembl" "dclupeoides_gene_ensembl"
## [53] "dlabrax_gene_ensembl" "dleucas_gene_ensembl"
## [55] "dmelanogaster_gene_ensembl" "dnovemcinctus_gene_ensembl"
## [57] "dordii_gene_ensembl" "drerio_gene_ensembl"
## [59] "eaasinus_gene_ensembl" "eburgeri_gene_ensembl"
## [61] "ecaballus_gene_ensembl" "ecalabaricus_gene_ensembl"
## [63] "eelectricus_gene_ensembl" "eeuropaeus_gene_ensembl"
## [65] "elucius_gene_ensembl" "etelfairi_gene_ensembl"
## [67] "falbicollis_gene_ensembl" "fcatus_gene_ensembl"
## [69] "fheteroclitus_gene_ensembl" "gaculeatus_gene_ensembl"
## [71] "gevgoodei_gene_ensembl" "gfortis_gene_ensembl"
## [73] "ggallus_gene_ensembl" "ggorilla_gene_ensembl"
## [75] "gmorhua_gene_ensembl" "hburtoni_gene_ensembl"
## [77] "hcomes_gene_ensembl" "hgfemale_gene_ensembl"
## [79] "hhucho_gene_ensembl" "hsapiens_gene_ensembl"
## [81] "ipunctatus_gene_ensembl" "itridecemlineatus_gene_ensembl"
## [83] "jjaculus_gene_ensembl" "kmarmoratus_gene_ensembl"
## [85] "lafricana_gene_ensembl" "lbergylta_gene_ensembl"
## [87] "lcalcarifer_gene_ensembl" "lchalumnae_gene_ensembl"
## [89] "lcrocea_gene_ensembl" "llaticaudata_gene_ensembl"
## [91] "lleishanense_gene_ensembl" "loculatus_gene_ensembl"
## [93] "marmatus_gene_ensembl" "mauratus_gene_ensembl"
## [95] "mcaroli_gene_ensembl" "mdomestica_gene_ensembl"
## [97] "mfascicularis_gene_ensembl" "mgallopavo_gene_ensembl"
## [99] "mleucophaeus_gene_ensembl" "mlucifugus_gene_ensembl"
## [101] "mmmarmota_gene_ensembl" "mmonoceros_gene_ensembl"
## [103] "mmoschiferus_gene_ensembl" "mmulatta_gene_ensembl"
## [105] "mmurdjan_gene_ensembl" "mmurinus_gene_ensembl"
## [107] "mmusculus_gene_ensembl" "mnemestrina_gene_ensembl"
## [109] "mochrogaster_gene_ensembl" "mpahari_gene_ensembl"
## [111] "mpfuro_gene_ensembl" "mspicilegus_gene_ensembl"
## [113] "mspretus_gene_ensembl" "mzebra_gene_ensembl"
## [115] "nbrichardi_gene_ensembl" "neugenii_gene_ensembl"
## [117] "nfurzeri_gene_ensembl" "ngalili_gene_ensembl"
## [119] "nleucogenys_gene_ensembl" "nnaja_gene_ensembl"
## [121] "nscutatus_gene_ensembl" "nvison_gene_ensembl"
## [123] "oanatinus_gene_ensembl" "oarambouillet_gene_ensembl"
## [125] "oaries_gene_ensembl" "ocuniculus_gene_ensembl"
## [127] "odegus_gene_ensembl" "ogarnettii_gene_ensembl"
## [129] "ojavanicus_gene_ensembl" "okisutch_gene_ensembl"
## [131] "olatipes_gene_ensembl" "omelastigma_gene_ensembl"
## [133] "omykiss_gene_ensembl" "oniloticus_gene_ensembl"
## [135] "oprinceps_gene_ensembl" "osinensis_gene_ensembl"
## [137] "otshawytscha_gene_ensembl" "pabelii_gene_ensembl"
## [139] "panubis_gene_ensembl" "pcapensis_gene_ensembl"
## [141] "pcatodon_gene_ensembl" "pcinereus_gene_ensembl"
## [143] "pcoquereli_gene_ensembl" "pformosa_gene_ensembl"
## [145] "pkingsleyae_gene_ensembl" "platipinna_gene_ensembl"
## [147] "pleo_gene_ensembl" "pmajor_gene_ensembl"
## [149] "pmarinus_gene_ensembl" "pmbairdii_gene_ensembl"
## [151] "pmuralis_gene_ensembl" "pnattereri_gene_ensembl"
## [153] "pnyererei_gene_ensembl" "ppaniscus_gene_ensembl"
## [155] "ppardus_gene_ensembl" "preticulata_gene_ensembl"
## [157] "psimus_gene_ensembl" "psinensis_gene_ensembl"
## [159] "psinus_gene_ensembl" "ptaltaica_gene_ensembl"
## [161] "ptextilis_gene_ensembl" "ptroglodytes_gene_ensembl"
## [163] "pvampyrus_gene_ensembl" "rbieti_gene_ensembl"
## [165] "rferrumequinum_gene_ensembl" "rnorvegicus_gene_ensembl"
## [167] "rroxellana_gene_ensembl" "saraneus_gene_ensembl"
## [169] "saurata_gene_ensembl" "sbboliviensis_gene_ensembl"
## [171] "scanaria_gene_ensembl" "scaustralis_gene_ensembl"
## [173] "scerevisiae_gene_ensembl" "sdumerili_gene_ensembl"
## [175] "sformosus_gene_ensembl" "sgrahami_gene_ensembl"
## [177] "shabroptila_gene_ensembl" "sharrisii_gene_ensembl"
## [179] "sldorsalis_gene_ensembl" "slucioperca_gene_ensembl"
## [181] "smaximus_gene_ensembl" "smerianae_gene_ensembl"
## [183] "spartitus_gene_ensembl" "spunctatus_gene_ensembl"
## [185] "ssalar_gene_ensembl" "sscrofa_gene_ensembl"
## [187] "strutta_gene_ensembl" "svulgaris_gene_ensembl"
## [189] "tbelangeri_gene_ensembl" "tctriunguis_gene_ensembl"
## [191] "tguttata_gene_ensembl" "tnigroviridis_gene_ensembl"
## [193] "trubripes_gene_ensembl" "ttruncatus_gene_ensembl"
## [195] "uamericanus_gene_ensembl" "umaritimus_gene_ensembl"
## [197] "uparryii_gene_ensembl" "vpacos_gene_ensembl"
## [199] "vursinus_gene_ensembl" "vvulpes_gene_ensembl"
## [201] "xmaculatus_gene_ensembl" "xtropicalis_gene_ensembl"
mart = useMart("ensembl", dataset="hsapiens_gene_ensembl")
# We'll use the DEGs we got from the lactate model
genes <- topTable(efit_lactate, coef = "COVIDyes", adjust.method = "fdr", p.value = 0.05, n = Inf, sort.by = "logFC")
genes <- rownames(genes)
head(genes)## [1] "HBA2" "FTL" "ACTB" "B2M" "RNA28SN1" "EEF1A1"
filters <- listFilters(mart)
attr <- listAttributes(mart)
#converting HGNC Symbols to Entrez IDs
hgnc_to_entrez <- getBM(attributes = c("hgnc_symbol", "entrezgene_id"), filters = "hgnc_symbol", values = genes, mart = mart)
hgnc_to_entrez## hgnc_symbol entrezgene_id
## 1 AAMP 14
## 2 AATF 26574
## 3 AATK 9625
## 4 ABCA1 19
## 5 ABCA13 154664
## 6 ABCC4 10257
## 7 ABCD4 5826
## 8 ABCF3 55324
## 9 ABCG1 9619
## 10 ABHD13 84945
## 11 ABHD14B 84836
## 12 ABHD17A 81926
## 13 ABHD3 171586
## 14 ABHD4 63874
## 15 ABHD5 51099
## 16 ABI1 10006
## 17 ABI3 51225
## 18 ABLIM3 22885
## 19 ABRACL 58527
## 20 ABTB1 80325
## 21 ACAA1 30
## 22 ACADM 34
## 23 ACADVL 37
## 24 ACAP1 9744
## 25 ACAP2 23527
## 26 ACAP3 116983
## 27 ACBD3 64746
## 28 ACLY 47
## 29 ACP5 54
## 30 ACSS2 55902
## 31 ACTB 60
## 32 ACTG1 71
## 33 ACTR1A 10121
## 34 ACTR1B 10120
## 35 ADAM17 6868
## 36 ADAM8 101
## 37 ADAM9 8754
## 38 ADAP1 11033
## 39 ADAR 103
## 40 ADCY7 113
## 41 ADD3 120
## 42 ADIPOR2 79602
## 43 ADNP 23394
## 44 ADORA2A 135
## 45 ADPGK 83440
## 46 ADPRS 54936
## 47 ADRM1 11047
## 48 ADSS2 159
## 49 AFF1 4299
## 50 AFF4 27125
## 51 AFTPH 54812
## 52 AGAP3 116988
## 53 AGO1 26523
## 54 AGO2 27161
## 55 AGO3 192669
## 56 AGPAT2 10555
## 57 AGPS 8540
## 58 AGTRAP 57085
## 59 AHCTF1 25909
## 60 AIF1 199
## 61 AIP 9049
## 62 AKAP10 11216
## 63 AKAP13 11214
## 64 AKAP8L 26993
## 65 AKAP9 10142
## 66 AKIRIN1 79647
## 67 AKR1A1 10327
## 68 AKR1B1 231
## 69 AKR7A2 8574
## 70 AKT1 207
## 71 AKT1S1 84335
## 72 AKT2 208
## 73 ALAS1 211
## 74 ALDH16A1 126133
## 75 ALDH3B1 221
## 76 ALDOA 226
## 77 ALPL 249
## 78 AMD1 262
## 79 AMFR 267
## 80 AMN1 196394
## 81 AMPD2 271
## 82 ANAPC1 64682
## 83 ANAPC11 51529
## 84 ANAPC13 25847
## 85 ANAPC15 25906
## 86 ANKFY1 51479
## 87 ANKIB1 54467
## 88 ANKRD12 23253
## 89 ANKRD13A 88455
## 90 ANKRD13D 338692
## 91 ANKRD17 26057
## 92 ANKRD28 23243
## 93 ANKZF1 55139
## 94 ANO6 196527
## 95 ANO9 338440
## 96 ANP32B 10541
## 97 ANP32E 81611
## 98 ANXA11 311
## 99 ANXA2 302
## 100 ANXA2R 389289
## 101 ANXA4 307
## 102 ANXA6 309
## 103 AP1B1 162
## 104 AP1G1 164
## 105 AP1G2 8906
## 106 AP1M1 8907
## 107 AP2A1 160
## 108 AP2M1 1173
## 109 AP2S1 1175
## 110 AP3B1 8546
## 111 AP5B1 91056
## 112 AP5M1 55745
## 113 AP5Z1 9907
## 114 APAF1 317
## 115 APBB1 322
## 116 APC 324
## 117 APEH 327
## 118 APEX1 328
## 119 APOBR 55911
## 120 APOL6 80830
## 121 APP 351
## 122 APPBP2 10513
## 123 APPL2 55198
## 124 APRT 353
## 125 AQR 9716
## 126 ARAF 369
## 127 ARAP1 116985
## 128 ARAP2 116984
## 129 ARCN1 372
## 130 ARF4 378
## 131 ARF5 381
## 132 ARFGAP1 55738
## 133 ARFGAP2 84364
## 134 ARFGEF1 10565
## 135 ARFGEF2 10564
## 136 ARFRP1 10139
## 137 ARHGAP1 392
## 138 ARHGAP15 55843
## 139 ARHGAP21 57584
## 140 ARHGAP4 393
## 141 ARHGAP45 23526
## 142 ARHGDIA 396
## 143 ARHGEF1 9138
## 144 ARHGEF1 100505585
## 145 ARHGEF12 23365
## 146 ARHGEF18 23370
## 147 ARHGEF6 9459
## 148 ARID1A 8289
## 149 ARID1B 57492
## 150 ARID4A 5926
## 151 ARID4B 51742
## 152 ARID5A 10865
## 153 ARID5B 84159
## 154 ARIH1 25820
## 155 ARL5A 26225
## 156 ARL5B 221079
## 157 ARL6IP1 23204
## 158 ARL6IP4 51329
## 159 ARL6IP6 151188
## 160 ARMC7 79637
## 161 ARMC8 25852
## 162 ARNT 405
## 163 ARNTL 406
## 164 ARPC1B 10095
## 165 ARPC4 10093
## 166 ARPC4-TTLL3 100526693
## 167 ARPP19 10776
## 168 ARRB1 408
## 169 ARRB2 409
## 170 ARRDC1 92714
## 171 ARSA 410
## 172 ARSB 411
## 173 ASB7 140460
## 174 ASGR2 433
## 175 ASH1L 55870
## 176 ASL 435
## 177 ASMTL 8623
## 178 ATAD2 29028
## 179 ATAD2B 54454
## 180 ATF2 1386
## 181 ATF6B 1388
## 182 ATF7 11016
## 183 ATF7IP 55729
## 184 ATG101 60673
## 185 ATG13 9776
## 186 ATG16L2 89849
## 187 ATG2B 55102
## 188 ATG4B 23192
## 189 ATG7 10533
## 190 ATM 472
## 191 ATOX1 475
## 192 ATP11A 23250
## 193 ATP13A1 57130
## 194 ATP1A1 476
## 195 ATP2A2 488
## 196 ATP2A3 489
## 197 ATP2C1 27032
## 198 ATP5F1D 513
## 199 ATP5F1E 514
## 200 ATP5MC2 517
## 201 ATP5ME 521
## 202 ATP5PO 539
## 203 ATP6AP1 537
## 204 ATP6V0A1 535
## 205 ATP6V0D1 9114
## 206 ATP6V0E2 155066
## 207 ATP6V1A 523
## 208 ATP6V1F 9296
## 209 ATP8A1 10396
## 210 ATP8B4 79895
## 211 ATRAID 51374
## 212 ATRX 546
## 213 ATXN1L 342371
## 214 ATXN7 6314
## 215 AUP1 550
## 216 AURKAIP1 54998
## 217 AVL9 23080
## 218 AZI2 64343
## 219 B2M 567
## 220 B3GALT4 8705
## 221 B3GALT6 126792
## 222 B3GAT3 26229
## 223 B3GNT2 10678
## 224 B3GNT8 374907
## 225 B4GALT1 2683
## 226 B4GALT4 8702
## 227 B4GALT5 9334
## 228 BABAM1 29086
## 229 BABAM2 9577
## 230 BACH1 571
## 231 BACH1 100379661
## 232 BAG1 573
## 233 BAG6 7917
## 234 BANF1 8815
## 235 BAP1 8314
## 236 BAX 581
## 237 BAZ1B 9031
## 238 BAZ2A 11176
## 239 BAZ2B 29994
## 240 BBX 56987
## 241 BCAP31 10134
## 242 BCKDHA 593
## 243 BCKDK 10295
## 244 BCL7B 9275
## 245 BCL7C 9274
## 246 BDP1 55814
## 247 BICRAL 23506
## 248 BID 637
## 249 BIN1 274
## 250 BIN3 55909
## 251 BIRC2 329
## 252 BIRC6 57448
## 253 BLOC1S1 2647
## 254 BLVRB 645
## 255 BLZF1 8548
## 256 BMPR2 659
## 257 BOD1L1 259282
## 258 BORCS6 54785
## 259 BORCS8 729991
## 260 BPI 671
## 261 BPTF 2186
## 262 BRAF 673
## 263 BRAT1 221927
## 264 BRD2 6046
## 265 BRD7 29117
## 266 BRK1 55845
## 267 BRMS1 25855
## 268 BRPF3 27154
## 269 BRWD1 54014
## 270 BRWD3 254065
## 271 BSG 682
## 272 BTAF1 9044
## 273 BTBD1 53339
## 274 BTBD2 55643
## 275 BTF3 689
## 276 BTN2A1 11120
## 277 BTN2A2 10385
## 278 BTN3A1 11119
## 279 BTN3A2 11118
## 280 BTN3A3 10384
## 281 BUB1 699
## 282 C11orf68 83638
## 283 C11orf98 102288414
## 284 C12orf57 113246
## 285 C12orf75 387882
## 286 C15orf39 56905
## 287 C17orf49 124944
## 288 C18orf25 147339
## 289 C19orf25 148223
## 290 C19orf38 255809
## 291 C19orf53 28974
## 292 C1GALT1 56913
## 293 C1orf162 128346
## 294 C1QA 712
## 295 C20orf27 54976
## 296 C21orf91 54149
## 297 C2CD3 26005
## 298 C2CD5 9847
## 299 C2orf88 84281
## 300 C5AR2 27202
## 301 C5orf51 285636
## 302 C6orf47 57827
## 303 C6orf89 221477
## 304 C7orf50 84310
## 305 C9orf16 79095
## 306 C9orf72 203228
## 307 CABIN1 23523
## 308 CALCOCO2 10241
## 309 CALM1 801
## 310 CALU 813
## 311 CAMK1 8536
## 312 CAMK2G 818
## 313 CANX 821
## 314 CAPG 822
## 315 CAPN1 823
## 316 CAPN2 824
## 317 CAPNS1 826
## 318 CAPRIN1 4076
## 319 CAPZB 832
## 320 CARD19 84270
## 321 CARD6 84674
## 322 CARMIL2 146206
## 323 CARS2 79587
## 324 CASP10 843
## 325 CASP3 836
## 326 CAVIN2 8436
## 327 CBX1 10951
## 328 CBX6 23466
## 329 CCAR2 57805
## 330 CCDC107 203260
## 331 CCDC115 84317
## 332 CCDC12 151903
## 333 CCDC125 202243
## 334 CCDC186 55088
## 335 CCDC22 28952
## 336 CCDC47 57003
## 337 CCDC71 64925
## 338 CCDC82 79780
## 339 CCDC88B 283234
## 340 CCDC9 26093
## 341 CCDC93 54520
## 342 CCM2 83605
## 343 CCND2 894
## 344 CCNK 8812
## 345 CCNT1 904
## 346 CCNT2 905
## 347 CCR7 1236
## 348 CCS 9973
## 349 CCSER2 54462
## 350 CCT3 7203
## 351 CCT4 10575
## 352 CD14 929
## 353 CD164 8763
## 354 CD1D 912
## 355 CD2 914
## 356 CD22 933
## 357 CD226 10666
## 358 CD24 100133941
## 359 CD244 51744
## 360 CD2BP2 10421
## 361 CD300C 10871
## 362 CD300LF 146722
## 363 CD37 951
## 364 CD38 952
## 365 CD3D 915
## 366 CD3E 916
## 367 CD4 920
## 368 CD46 4179
## 369 CD48 962
## 370 CD5 921
## 371 CD52 1043
## 372 CD6 923
## 373 CD68 968
## 374 CD7 924
## 375 CD74 972
## 376 CD79A 973
## 377 CD79B 974
## 378 CD81 975
## 379 CD82 3732
## 380 CD8B 926
## 381 CD99L2 83692
## 382 CDC14B 8555
## 383 CDC26 246184
## 384 CDC27 996
## 385 CDC34 997
## 386 CDC37 11140
## 387 CDC42EP2 10435
## 388 CDC42SE1 56882
## 389 CDC73 79577
## 390 CDCA7L 55536
## 391 CDIP1 29965
## 392 CDIPT 10423
## 393 CDK10 8558
## 394 CDK11B 984
## 395 CDK12 51755
## 396 CDK13 8621
## 397 CDK14 5218
## 398 CDK16 5127
## 399 CDK17 5128
## 400 CDK19 23097
## 401 CDK2AP2 10263
## 402 CDK5RAP3 80279
## 403 CDK9 1025
## 404 CDKN2D 1032
## 405 CDS2 8760
## 406 CEACAM6 4680
## 407 CEACAM8 1088
## 408 CEBPA 1050
## 409 CEBPB 1051
## 410 CEBPZOS 100505876
## 411 CELF1 10658
## 412 CELF2 10659
## 413 CEMIP2 23670
## 414 CENPB 1059
## 415 CENPT 80152
## 416 CEP170 9859
## 417 CEP170 645455
## 418 CEP19 84984
## 419 CEP192 55125
## 420 CEP350 9857
## 421 CEP63 80254
## 422 CEP85L 387119
## 423 CEP97 79598
## 424 CERK 64781
## 425 CERS5 91012
## 426 CES1 1066
## 427 CFD 1675
## 428 CFL1 1072
## 429 CFLAR 8837
## 430 CFP 5199
## 431 CGGBP1 8545
## 432 CHD1 1105
## 433 CHD2 1106
## 434 CHD3 1107
## 435 CHD7 55636
## 436 CHD8 57680
## 437 CHIT1 1118
## 438 CHKB 1120
## 439 CHMP1A 5119
## 440 CHMP1B 57132
## 441 CHMP2A 27243
## 442 CHMP4A 29082
## 443 CHMP4B 128866
## 444 CHMP5 51510
## 445 CHMP6 79643
## 446 CHMP7 91782
## 447 CHPF2 54480
## 448 CHPT1 56994
## 449 CHST2 9435
## 450 CHSY1 22856
## 451 CHTOP 26097
## 452 CHUK 1147
## 453 CIAO2B 51647
## 454 CIB1 10519
## 455 CIC 23152
## 456 CINP 51550
## 457 CIRBP 1153
## 458 CISD3 284106
## 459 CISH 1154
## 460 CIZ1 25792
## 461 CKAP5 9793
## 462 CLASP1 23332
## 463 CLASRP 11129
## 464 CLCN3 1182
## 465 CLCN7 1186
## 466 CLDND1 56650
## 467 CLEC10A 10462
## 468 CLEC5A 23601
## 469 CLEC7A 64581
## 470 CLIC1 1192
## 471 CLIC4 25932
## 472 CLINT1 9685
## 473 CLIP1 6249
## 474 CLN3 1201
## 475 CLN6 54982
## 476 CLNS1A 1207
## 477 CLPX 10845
## 478 CLTA 1211
## 479 CLTB 1212
## 480 CMPK2 129607
## 481 CMTM3 123920
## 482 CMTM7 112616
## 483 CNEP1R1 255919
## 484 CNN2 1265
## 485 CNOT1 23019
## 486 CNOT6 57472
## 487 CNOT7 29883
## 488 CNPPD1 27013
## 489 CNPY3 10695
## 490 CNST 163882
## 491 CNTRL 11064
## 492 COA3 28958
## 493 COASY 80347
## 494 COG3 83548
## 495 COL18A1 80781
## 496 COLGALT1 79709
## 497 COMMD5 28991
## 498 COMMD6 170622
## 499 COMMD7 149951
## 500 COMMD9 29099
## 501 COMT 1312
## 502 COPA 1314
## 503 COPB1 1315
## 504 COPB2 9276
## 505 COPE 11316
## 506 COPS2 9318
## 507 COPS6 10980
## 508 COPS7A 50813
## 509 COPS9 150678
## 510 COPZ1 22818
## 511 COQ8A 56997
## 512 COQ8B 79934
## 513 CORO1A 11151
## 514 CORO1B 57175
## 515 CORO1C 23603
## 516 CORO2A 7464
## 517 CORO7 79585
## 518 COTL1 23406
## 519 COX4I1 1327
## 520 COX5B 1329
## 521 COX6A1 1337
## 522 COX6B1 1340
## 523 COX6C 1345
## 524 COX7C 1350
## 525 COX8A 1351
## 526 CPD 1362
## 527 CPEB2 132864
## 528 CPEB4 80315
## 529 CPNE1 8904
## 530 CPNE3 8895
## 531 CPSF1 29894
## 532 CPSF2 53981
## 533 CPVL 54504
## 534 CREB1 1385
## 535 CREB3L2 64764
## 536 CREB5 9586
## 537 CREBBP 1387
## 538 CREBRF 153222
## 539 CREG1 8804
## 540 CRIP1 1396
## 541 CRISPLD2 83716
## 542 CRKL 1399
## 543 CRLF3 51379
## 544 CRTAP 10491
## 545 CRTC2 200186
## 546 CS 1431
## 547 CSF1R 1436
## 548 CSGALNACT1 55790
## 549 CSGALNACT2 55454
## 550 CSK 1445
## 551 CSNK1A1 1452
## 552 CSNK1G1 53944
## 553 CSNK1G2 1455
## 554 CSNK2B 1460
## 555 CSRP1 1465
## 556 CST3 1471
## 557 CST7 8530
## 558 CTBP1 1487
## 559 CTDNEP1 23399
## 560 CTDP1 9150
## 561 CTDSP1 58190
## 562 CTDSP2 10106
## 563 CTNNBL1 56259
## 564 CTSC 1075
## 565 CTSD 1509
## 566 CTSH 1512
## 567 CTSZ 1522
## 568 CUEDC1 404093
## 569 CUEDC2 79004
## 570 CUL1 8454
## 571 CUTA 51596
## 572 CWF19L1 55280
## 573 CXCR5 643
## 574 CXXC1 30827
## 575 CYB561A3 220002
## 576 CYB5R1 51706
## 577 CYB5R3 1727
## 578 CYBA 1535
## 579 CYBC1 79415
## 580 CYC1 1537
## 581 CYCS 54205
## 582 CYHR1 50626
## 583 CYLD 1540
## 584 CYP4F3 4051
## 585 CYSTM1 84418
## 586 CYTH4 27128
## 587 CYTIP 9595
## 588 DAD1 1603
## 589 DAGLB 221955
## 590 DAZAP1 26528
## 591 DBI 1622
## 592 DBNL 28988
## 593 DCAF10 79269
## 594 DCAF15 90379
## 595 DCAF5 8816
## 596 DCAF7 10238
## 597 DCK 1633
## 598 DCTN1 1639
## 599 DCTN3 11258
## 600 DCTN4 51164
## 601 DCUN1D1 54165
## 602 DCXR 51181
## 603 DDRGK1 65992
## 604 DDX17 10521
## 605 DDX21 9188
## 606 DDX39B 7919
## 607 DDX3X 1654
## 608 DDX41 51428
## 609 DDX46 9879
## 610 DDX49 54555
## 611 DDX56 54606
## 612 DDX58 23586
## 613 DDX6 1656
## 614 DDX60 55601
## 615 DDX60L 91351
## 616 DEDD2 162989
## 617 DEF6 50619
## 618 DEF8 54849
## 619 DEGS1 8560
## 620 DEK 7913
## 621 DENND1B 163486
## 622 DENND1C 79958
## 623 DENND4A 10260
## 624 DENND4B 9909
## 625 DENND4C 55667
## 626 DENND5A 23258
## 627 DERL2 51009
## 628 DERPC 113455421
## 629 DGAT1 8694
## 630 DGCR2 9993
## 631 DGCR6L 85359
## 632 DGKH 160851
## 633 DGKQ 1609
## 634 DGKZ 8525
## 635 DGLUCY 80017
## 636 DGUOK 1716
## 637 DHCR24 1718
## 638 DHFR 1719
## 639 DHPS 1725
## 640 DHRS13 147015
## 641 DHRS4 10901
## 642 DHRS4 728635
## 643 DHRS4L2 317749
## 644 DHTKD1 55526
## 645 DHX15 1665
## 646 DHX36 170506
## 647 DHX40 79665
## 648 DHX8 1659
## 649 DHX9 1660
## 650 DICER1 23405
## 651 DIP2A 23181
## 652 DIP2B 57609
## 653 DMAP1 55929
## 654 DMTF1 9988
## 655 DMXL1 1657
## 656 DMXL2 23312
## 657 DNAJB14 79982
## 658 DNAJB2 3300
## 659 DNAJC13 23317
## 660 DNAJC14 85406
## 661 DNAJC4 3338
## 662 DNAJC7 7266
## 663 DNAJC8 22826
## 664 DNPEP 23549
## 665 DOCK11 139818
## 666 DOCK2 1794
## 667 DOCK4 9732
## 668 DOCK8 81704
## 669 DOK1 1796
## 670 DOK2 9046
## 671 DPH7 92715
## 672 DPM2 8818
## 673 DPP7 29952
## 674 DPP8 54878
## 675 DPYD 1806
## 676 DPYSL2 1808
## 677 DR1 1810
## 678 DRAM2 128338
## 679 DRAP1 10589
## 680 DTX2 113878
## 681 DTX3L 151636
## 682 DUS1L 64118
## 683 DYNC1LI2 1783
## 684 DYNLL1 8655
## 685 DYRK1A 1859
## 686 E2F1 1869
## 687 E2F3 1871
## 688 E2F4 1874
## 689 EAF1 85403
## 690 ECH1 1891
## 691 ECHDC1 55862
## 692 ECHS1 1892
## 693 ECPAS 23392
## 694 EDC4 23644
## 695 EDEM1 9695
## 696 EDEM3 80267
## 697 EDF1 8721
## 698 EEF1A1 1915
## 699 EEF1B2 1933
## 700 EEF1D 1936
## 701 EEF1G 1937
## 702 EEF2 1938
## 703 EFCAB14 9813
## 704 EFHD2 79180
## 705 EFR3A 23167
## 706 EFTUD2 9343
## 707 EGF 1950
## 708 EGLN2 112398
## 709 EHBP1L1 254102
## 710 EHD1 10938
## 711 EHD3 30845
## 712 EID1 23741
## 713 EIF2AK1 27102
## 714 EIF2AK2 5610
## 715 EIF2B4 8890
## 716 EIF3A 8661
## 717 EIF3B 8662
## 718 EIF3C 8663
## 719 EIF3D 8664
## 720 EIF3F 8665
## 721 EIF3G 8666
## 722 EIF3H 8667
## 723 EIF3I 8668
## 724 EIF3K 27335
## 725 EIF3L 51386
## 726 EIF3M 10480
## 727 EIF4A1 1973
## 728 EIF4E 1977
## 729 EIF4E2 9470
## 730 EIF4EBP1 1978
## 731 EIF4EBP3 8637
## 732 EIF4G2 1982
## 733 EIF4G3 8672
## 734 EIF5 1983
## 735 EIF5A 1984
## 736 EIF6 3692
## 737 ELF1 1997
## 738 ELF2 1998
## 739 ELL2 22936
## 740 ELOB 6923
## 741 ELOF1 84337
## 742 ELOVL1 64834
## 743 EMC10 284361
## 744 EMG1 10436
## 745 EML3 256364
## 746 EMP3 2014
## 747 ENDOD1 23052
## 748 ENG 2022
## 749 ENGASE 64772
## 750 ENO1 2023
## 751 ENTPD4 9583
## 752 ENTPD6 955
## 753 EP300 2033
## 754 EPB41 2035
## 755 EPC1 80314
## 756 EPC2 26122
## 757 EPG5 57724
## 758 EPHB6 2051
## 759 EPN1 29924
## 760 EPRS1 2058
## 761 EPS15 2060
## 762 EPSTI1 94240
## 763 ERAP1 51752
## 764 ERBIN 55914
## 765 ERCC1 2067
## 766 ERF 2077
## 767 ERGIC3 51614
## 768 ERLEC1 27248
## 769 ERLIN1 10613
## 770 ERP29 10961
## 771 ESRRA 2101
## 772 ESYT1 23344
## 773 ESYT2 57488
## 774 ETFB 2109
## 775 ETHE1 23474
## 776 ETNK1 55500
## 777 EVI2B 2124
## 778 EVL 51466
## 779 EWSR1 2130
## 780 EXOC3 11336
## 781 EXOC5 10640
## 782 EXOC7 23265
## 783 EXOC8 149371
## 784 EXOSC4 54512
## 785 EZH1 2145
## 786 F13A1 2162
## 787 F2R 2149
## 788 FAM102A 399665
## 789 FAM110A 83541
## 790 FAM111A 63901
## 791 FAM120A 23196
## 792 FAM126B 285172
## 793 FAM13B 51306
## 794 FAM160B1 57700
## 795 FAM168A 23201
## 796 FAM193B 54540
## 797 FAM199X 139231
## 798 FAM214A 56204
## 799 FAM214B 80256
## 800 FAM234A 83986
## 801 FAM241A 132720
## 802 FAM32A 26017
## 803 FAM3A 60343
## 804 FAM50A 9130
## 805 FAM53B 9679
## 806 FAM76B 143684
## 807 FAM78A 286336
## 808 FAM89B 23625
## 809 FAM8A1 51439
## 810 FAM91A1 157769
## 811 FAR2 55711
## 812 FASTK 10922
## 813 FASTKD5 60493
## 814 FAU 2197
## 815 FAXDC2 10826
## 816 FBH1 84893
## 817 FBL 2091
## 818 FBP1 2203
## 819 FBRS 64319
## 820 FBRSL1 57666
## 821 FBXL20 84961
## 822 FBXL3 26224
## 823 FBXO34 55030
## 824 FBXO38 81545
## 825 FBXO44 93611
## 826 FBXO9 26268
## 827 FBXW11 23291
## 828 FBXW4 6468
## 829 FBXW5 54461
## 830 FCER2 2208
## 831 FCGR3A 2214
## 832 FCGR3B 2215
## 833 FCGRT 2217
## 834 FCHO1 23149
## 835 FCHO2 115548
## 836 FCHSD2 9873
## 837 FCMR 9214
## 838 FCN1 2219
## 839 FEM1B 10116
## 840 FERMT3 83706
## 841 FES 2242
## 842 FGD3 89846
## 843 FGFR1OP2 26127
## 844 FHOD1 29109
## 845 FIBP 9158
## 846 FIS1 51024
## 847 FKBP2 2286
## 848 FKBP4 2288
## 849 FKBP5 2289
## 850 FKBP8 23770
## 851 FLCN 201163
## 852 FLI1 2313
## 853 FLII 2314
## 854 FLNA 2316
## 855 FLOT2 2319
## 856 FLT3 2322
## 857 FLT3LG 2323
## 858 FMR1 2332
## 859 FNBP4 23360
## 860 FNDC3A 22862
## 861 FNDC3B 64778
## 862 FNIP1 96459
## 863 FOXJ3 22887
## 864 FOXN2 3344
## 865 FOXO4 4303
## 866 FPGS 2356
## 867 FRG1 2483
## 868 FRMD3 257019
## 869 FRY 10129
## 870 FRYL 285527
## 871 FTH1 2495
## 872 FTL 2512
## 873 FUBP1 8880
## 874 FUNDC2 65991
## 875 FUS 2521
## 876 FUT4 2526
## 877 FUT7 2529
## 878 FXYD5 53827
## 879 FYTTD1 84248
## 880 FZR1 51343
## 881 G3BP2 9908
## 882 G6PC3 92579
## 883 G6PD 2539
## 884 GAA 2548
## 885 GABARAP 11337
## 886 GABBR1 2550
## 887 GABPA 2551
## 888 GADD45GIP1 90480
## 889 GAK 2580
## 890 GALK1 2584
## 891 GALM 130589
## 892 GALNT10 55568
## 893 GALNT2 2590
## 894 GALNT7 51809
## 895 GAPDH 2597
## 896 GAPVD1 26130
## 897 GATAD2B 57459
## 898 GATD3A 8209
## 899 GBGT1 26301
## 900 GBP1 2633
## 901 GBP3 2635
## 902 GBP4 115361
## 903 GCC1 79571
## 904 GCC2 9648
## 905 GCNT1 2650
## 906 GET3 439
## 907 GET4 51608
## 908 GFI1 2672
## 909 GFUS 7264
## 910 GGA1 26088
## 911 GGT1 2678
## 912 GIGYF1 64599
## 913 GIGYF2 26058
## 914 GIMAP1 170575
## 915 GIMAP1-GIMAP5 100527949
## 916 GIMAP5 55340
## 917 GIT1 28964
## 918 GIT2 9815
## 919 GLCCI1 113263
## 920 GLE1 2733
## 921 GLS 2744
## 922 GLYR1 84656
## 923 GNA13 10672
## 924 GNA15 2769
## 925 GNAI2 2771
## 926 GNAS 2778
## 927 GNB2 2783
## 928 GNL1 2794
## 929 GNL3L 54552
## 930 GNPTAB 79158
## 931 GNPTG 84572
## 932 GOLGA2 2801
## 933 GOLGA4 2803
## 934 GOLGA5 9950
## 935 GOLGB1 2804
## 936 GOLPH3 64083
## 937 GON4L 54856
## 938 GP1BB 2812
## 939 GPAA1 8733
## 940 GPANK1 7918
## 941 GPATCH2L 55668
## 942 GPATCH8 23131
## 943 GPBAR1 151306
## 944 GPBP1 65056
## 945 GPBP1L1 60313
## 946 GPD2 2820
## 947 GPR107 57720
## 948 GPR108 56927
## 949 GPR132 29933
## 950 GPR141 353345
## 951 GPR162 27239
## 952 GPR27 2850
## 953 GPS1 2873
## 954 GPS2 2874
## 955 GPSM3 63940
## 956 GPX1 2876
## 957 GPX4 2879
## 958 GRAP 10750
## 959 GRHPR 9380
## 960 GRK2 156
## 961 GRK6 2870
## 962 GSDMD 79792
## 963 GSTK1 373156
## 964 GSTO1 9446
## 965 GSTP1 2950
## 966 GTF2A1 2957
## 967 GTF2F1 2962
## 968 GTF2H2 2966
## 969 GTF2H2 728340
## 970 GTF2H2C 728340
## 971 GTF2H2C_2 730394
## 972 GTF3A 2971
## 973 GTF3C5 9328
## 974 GTPBP6 8225
## 975 GUK1 2987
## 976 GYPC 2995
## 977 H1-10 8971
## 978 H2AJ 55766
## 979 H2BC12 85236
## 980 H2BC21 8349
## 981 H2BC4 8347
## 982 H2BC5 3017
## 983 HACD4 401494
## 984 HADHA 3030
## 985 HAGH 3029
## 986 HAX1 10456
## 987 HBA1 3039
## 988 HBA2 3040
## 989 HBP1 26959
## 990 HCK 3055
## 991 HCST 10870
## 992 HDAC10 83933
## 993 HDAC3 8841
## 994 HDAC5 10014
## 995 HDAC7 51564
## 996 HDGFL2 84717
## 997 HDHD5 27440
## 998 HDLBP 3069
## 999 HEATR5B 54497
## 1000 HECA 51696
## 1001 HECTD1 25831
## 1002 HELZ 9931
## 1003 HERC1 8925
## 1004 HERC2 8924
## 1005 HERC3 8916
## 1006 HERC4 26091
## 1007 HERC5 51191
## 1008 HERPUD2 64224
## 1009 HEXIM1 10614
## 1010 HGS 9146
## 1011 HIF1A 3091
## 1012 HIF1AN 55662
## 1013 HIGD2A 192286
## 1014 HINT3 135114
## 1015 HIPK1 204851
## 1016 HIPK2 28996
## 1017 HIRA 7290
## 1018 HK3 3101
## 1019 HLA-DMA 3108
## 1020 HLA-DMB 3109
## 1021 HLA-DPA1 3113
## 1022 HLA-DPB1 3115
## 1023 HLA-DQA1 3117
## 1024 HLA-DQB1 3119
## 1025 HLA-DRA 3122
## 1026 HLA-DRB1 3123
## 1027 HM13 81502
## 1028 HMG20B 10362
## 1029 HMGB2 3148
## 1030 HMGCL 3155
## 1031 HMGCR 3156
## 1032 HMGN3 9324
## 1033 HMGN4 10473
## 1034 HMOX1 3162
## 1035 HMOX2 3163
## 1036 HNMT 3176
## 1037 HNRNPA0 10949
## 1038 HNRNPH3 3189
## 1039 HNRNPK 3190
## 1040 HNRNPLL 92906
## 1041 HNRNPM 4670
## 1042 HNRNPR 10236
## 1043 HP1BP3 50809
## 1044 HPS1 3257
## 1045 HPS3 84343
## 1046 HPS6 79803
## 1047 HPSE 10855
## 1048 HS1BP3 64342
## 1049 HSBP1 3281
## 1050 HSD17B10 3028
## 1051 HSD17B4 3295
## 1052 HSP90B1 7184
## 1053 HSPA13 6782
## 1054 HSPA1A 3303
## 1055 HSPA1B 3304
## 1056 HSPB1 3315
## 1057 HSPD1 3329
## 1058 HVCN1 84329
## 1059 HYPK 25764
## 1060 IARS1 3376
## 1061 ICAM2 3384
## 1062 ICAM3 3385
## 1063 IDH1 3417
## 1064 IDH3B 3420
## 1065 IDH3G 3421
## 1066 IFFO1 25900
## 1067 IFI16 3428
## 1068 IFI27 3429
## 1069 IFI27L2 83982
## 1070 IFI30 10437
## 1071 IFI44 10561
## 1072 IFI44L 10964
## 1073 IFIH1 64135
## 1074 IFIT2 3433
## 1075 IFIT3 3437
## 1076 IFIT5 24138
## 1077 IFITM2 10581
## 1078 IGBP1 3476
## 1079 IGF2R 3482
## 1080 IGFLR1 79713
## 1081 IGHG1 NA
## 1082 IGKC NA
## 1083 IGSF6 10261
## 1084 IKBKE 9641
## 1085 IKBKG 8517
## 1086 IKZF1 10320
## 1087 IL11RA 3590
## 1088 IL18R1 8809
## 1089 IL1R1 3554
## 1090 IL27RA 9466
## 1091 IL32 9235
## 1092 IL6ST 3572
## 1093 IMPA2 3613
## 1094 IMPDH1 3614
## 1095 IMPDH2 3615
## 1096 ING3 54556
## 1097 INO80D 54891
## 1098 INO80E 283899
## 1099 INPP4A 3631
## 1100 INPP5D 3635
## 1101 INPP5K 51763
## 1102 INTS1 26173
## 1103 INTS11 54973
## 1104 INTS6 26512
## 1105 INTS8 55656
## 1106 IP6K2 51447
## 1107 IPO7 10527
## 1108 IQGAP2 10788
## 1109 IRAK1 3654
## 1110 IRAK2 3656
## 1111 IRAK3 11213
## 1112 IREB2 3658
## 1113 IRF2 3660
## 1114 IRF3 3661
## 1115 IRF4 3662
## 1116 IRF5 3663
## 1117 IRF8 3394
## 1118 ISY1 57461
## 1119 ITCH 83737
## 1120 ITFG1 81533
## 1121 ITGB1 3688
## 1122 ITGB2 3689
## 1123 ITGB3 3690
## 1124 ITM2C 81618
## 1125 ITPA 3704
## 1126 ITPR2 3709
## 1127 ITSN2 50618
## 1128 IVNS1ABP 10625
## 1129 JADE1 79960
## 1130 JAK1 3716
## 1131 JAK2 3717
## 1132 JAML 120425
## 1133 JARID2 3720
## 1134 JCHAIN 3512
## 1135 JDP2 122953
## 1136 JMJD1C 221037
## 1137 JMJD8 339123
## 1138 JPT1 51155
## 1139 JTB 10899
## 1140 JUNB 3726
## 1141 KANSL1 284058
## 1142 KAT2B 8850
## 1143 KAT5 10524
## 1144 KAT6A 7994
## 1145 KAZN 23254
## 1146 KBTBD2 25948
## 1147 KBTBD6 89890
## 1148 KCNAB2 8514
## 1149 KCNK6 9424
## 1150 KCNN4 3783
## 1151 KCNQ1 3784
## 1152 KCTD20 222658
## 1153 KDELR1 10945
## 1154 KDM1B 221656
## 1155 KDM2A 22992
## 1156 KDM3B 51780
## 1157 KDM4B 23030
## 1158 KDM5A 5927
## 1159 KDM5B 10765
## 1160 KDM5C 8242
## 1161 KDM6A 7403
## 1162 KDM7A 80853
## 1163 KEAP1 9817
## 1164 KHDRBS1 10657
## 1165 KHNYN 23351
## 1166 KIAA0040 9674
## 1167 KIAA0232 9778
## 1168 KIAA0319L 79932
## 1169 KIAA0930 23313
## 1170 KIAA1109 84162
## 1171 KIAA1958 158405
## 1172 KIAA2026 158358
## 1173 KIDINS220 57498
## 1174 KIF1B 23095
## 1175 KIF27 55582
## 1176 KIF2A 3796
## 1177 KIF5B 3799
## 1178 KIFC2 90990
## 1179 KLF16 83855
## 1180 KLF2 10365
## 1181 KLF3 51274
## 1182 KLF6 1316
## 1183 KLF7 8609
## 1184 KLHDC3 116138
## 1185 KLHL24 54800
## 1186 KLHL6 89857
## 1187 KLHL8 57563
## 1188 KLRB1 3820
## 1189 KMT2C 58508
## 1190 KMT2D 8085
## 1191 KMT2E 55904
## 1192 KPNA2 3838
## 1193 KPNA5 3841
## 1194 KPNA6 23633
## 1195 KPNB1 3837
## 1196 KRAS 3845
## 1197 KRI1 65095
## 1198 KRTCAP2 200185
## 1199 KTN1 3895
## 1200 KXD1 79036
## 1201 LAMP1 3916
## 1202 LAMP2 3920
## 1203 LAMTOR1 55004
## 1204 LAMTOR2 28956
## 1205 LAMTOR4 389541
## 1206 LAPTM5 7805
## 1207 LARP1 23367
## 1208 LARP7 51574
## 1209 LAT 27040
## 1210 LATS1 9113
## 1211 LATS2 26524
## 1212 LCK 3932
## 1213 LCOR 84458
## 1214 LCP2 3937
## 1215 LDB1 8861
## 1216 LDLR 3949
## 1217 LEMD2 221496
## 1218 LEMD3 23592
## 1219 LEPROT 54741
## 1220 LFNG 3955
## 1221 LGALS1 3956
## 1222 LGALS9 3965
## 1223 LGALSL 29094
## 1224 LHFPL2 10184
## 1225 LIG4 3981
## 1226 LILRA1 11024
## 1227 LILRA2 11027
## 1228 LILRA3 11026
## 1229 LILRA5 353514
## 1230 LILRB1 10859
## 1231 LILRB2 10288
## 1232 LILRB3 11025
## 1233 LILRB3 102725035
## 1234 LILRB3 107987425
## 1235 LILRB3 107987462
## 1236 LILRB4 11006
## 1237 LIMD2 80774
## 1238 LIME1 54923
## 1239 LIMS1 3987
## 1240 LMAN1 3998
## 1241 LMAN2 10960
## 1242 LMBR1L 55716
## 1243 LMF2 91289
## 1244 LMNA 4000
## 1245 LMTK2 22853
## 1246 LNPEP 4012
## 1247 LONP1 9361
## 1248 LONP2 83752
## 1249 LPAR2 9170
## 1250 LPAR6 10161
## 1251 LPCAT1 79888
## 1252 LPCAT4 254531
## 1253 LPIN2 9663
## 1254 LPP 4026
## 1255 LRBA 987
## 1256 LRCH4 4034
## 1257 LRP1 4035
## 1258 LRPAP1 4043
## 1259 LRRC25 126364
## 1260 LRRC59 55379
## 1261 LRRC75A 388341
## 1262 LRRC8D 55144
## 1263 LRRK2 120892
## 1264 LSM10 84967
## 1265 LSM14A 26065
## 1266 LSM2 57819
## 1267 LSM4 25804
## 1268 LSM6 11157
## 1269 LSM7 51690
## 1270 LSM8 51691
## 1271 LSMEM1 286006
## 1272 LSP1 4046
## 1273 LST1 7940
## 1274 LTB 4050
## 1275 LTBP1 4052
## 1276 LTBR 4055
## 1277 LTF 4057
## 1278 LTN1 26046
## 1279 LUC7L 55692
## 1280 LY86 9450
## 1281 LYL1 4066
## 1282 LYPLA2 11313
## 1283 LYSMD3 116068
## 1284 LYST 1130
## 1285 LZTR1 8216
## 1286 MACIR 90355
## 1287 MAD1L1 8379
## 1288 MAD2L1BP 9587
## 1289 MAD2L2 10459
## 1290 MAF1 84232
## 1291 MAL 4118
## 1292 MAML1 9794
## 1293 MAML2 84441
## 1294 MAN1A1 4121
## 1295 MAN1A2 10905
## 1296 MAN1B1 11253
## 1297 MAN2A1 4124
## 1298 MAN2A2 4122
## 1299 MAN2B1 4125
## 1300 MAN2C1 4123
## 1301 MANSC1 54682
## 1302 MAP2K1 5604
## 1303 MAP2K2 5605
## 1304 MAP2K3 5606
## 1305 MAP2K4 6416
## 1306 MAP3K1 4214
## 1307 MAP3K11 4296
## 1308 MAP3K14 9020
## 1309 MAP3K2 10746
## 1310 MAP3K5 4217
## 1311 MAP4K1 11184
## 1312 MAP4K4 9448
## 1313 MAP7D1 55700
## 1314 MAPK13 5603
## 1315 MAPK1IP1L 93487
## 1316 MAPK3 5595
## 1317 MAPK8IP3 23162
## 1318 MAPKAPK3 7867
## 1319 MARCHF2 51257
## 1320 MARCHF5 54708
## 1321 MARCKSL1 65108
## 1322 MARCO 8685
## 1323 MARF1 9665
## 1324 MARK3 4140
## 1325 MARS1 4141
## 1326 MAT2A 4144
## 1327 MAT2B 27430
## 1328 MATK 4145
## 1329 MAZ 4150
## 1330 MBD3 53615
## 1331 MBNL1 4154
## 1332 MBOAT7 79143
## 1333 MCFD2 90411
## 1334 MCM4 4173
## 1335 MCM6 4175
## 1336 MCMBP 79892
## 1337 MCRIP1 348262
## 1338 MCRS1 10445
## 1339 MCTP1 79772
## 1340 MCU 90550
## 1341 MDH2 4191
## 1342 MDM1 56890
## 1343 MDM2 4193
## 1344 MDM4 4194
## 1345 ME2 4200
## 1346 MEA1 4201
## 1347 MED1 5469
## 1348 MED11 400569
## 1349 MED12 9968
## 1350 MED13 9969
## 1351 MED13L 23389
## 1352 MED15 51586
## 1353 MED16 10025
## 1354 MED22 6837
## 1355 MED23 9439
## 1356 MEFV 4210
## 1357 MEGF9 1955
## 1358 MEPCE 56257
## 1359 METRNL 284207
## 1360 METTL26 84326
## 1361 MFAP3 4238
## 1362 MFN2 9927
## 1363 MFNG 4242
## 1364 MFSD10 10227
## 1365 MFSD12 126321
## 1366 MFSD14A 64645
## 1367 MFSD14B 84641
## 1368 MFSD5 84975
## 1369 MGAT1 4245
## 1370 MGAT4A 11320
## 1371 MGAT5 4249
## 1372 MIA2 4253
## 1373 MIA3 375056
## 1374 MIB1 57534
## 1375 MICAL1 64780
## 1376 MICB 4277
## 1377 MICOS13 125988
## 1378 MICU1 10367
## 1379 MIDEAS 91748
## 1380 MIDN 90007
## 1381 MIER1 57708
## 1382 MIF4GD 57409
## 1383 MIGA2 84895
## 1384 MIIP 60672
## 1385 MINDY2 54629
## 1386 MINK1 50488
## 1387 MIS18BP1 55320
## 1388 MKI67 4288
## 1389 MKLN1 4289
## 1390 MLF2 8079
## 1391 MLLT1 4298
## 1392 MMD 23531
## 1393 MME 4311
## 1394 MMP24OS 101410538
## 1395 MMP25 64386
## 1396 MNT 4335
## 1397 MOB1A 55233
## 1398 MOB2 81532
## 1399 MOB3A 126308
## 1400 MOGS 7841
## 1401 MON2 23041
## 1402 MORC3 23515
## 1403 MORF4L2 9643
## 1404 MOSPD3 64598
## 1405 MPDU1 9526
## 1406 MPG 4350
## 1407 MPHOSPH8 54737
## 1408 MPI 4351
## 1409 MPND 84954
## 1410 MPO 4353
## 1411 MPP7 143098
## 1412 MR1 3140
## 1413 MRFAP1 93621
## 1414 MRFAP1L1 114932
## 1415 MRPL11 65003
## 1416 MRPL20 55052
## 1417 MRPL23 6150
## 1418 MRPL23 107987373
## 1419 MRPL24 79590
## 1420 MRPL28 10573
## 1421 MRPL38 64978
## 1422 MRPL52 122704
## 1423 MRPL54 116541
## 1424 MRPS18A 55168
## 1425 MRPS21 54460
## 1426 MRPS34 65993
## 1427 MRTFA 57591
## 1428 MS4A3 932
## 1429 MSL1 339287
## 1430 MSN 4478
## 1431 MSRA 4482
## 1432 MTA2 9219
## 1433 MTARC1 64757
## 1434 MTCH1 23787
## 1435 MTDH 92140
## 1436 MTF1 4520
## 1437 MTHFD2 10797
## 1438 MTMR10 54893
## 1439 MTMR3 8897
## 1440 MTMR4 9110
## 1441 MTMR6 9107
## 1442 MTOR 2475
## 1443 MTPN 136319
## 1444 MTPN 767558
## 1445 MTRNR2L10 100463488
## 1446 MTRNR2L3 100462983
## 1447 MTRNR2L6 100463482
## 1448 MTURN 222166
## 1449 MTX1 4580
## 1450 MVP 9961
## 1451 MXD1 4084
## 1452 MXD4 10608
## 1453 MYBL2 4605
## 1454 MYC 4609
## 1455 MYCBP2 23077
## 1456 MYCL 4610
## 1457 MYG1 60314
## 1458 MYL6 4637
## 1459 MYLIP 29116
## 1460 MYLK 4638
## 1461 MYO15B 80022
## 1462 MYO1F 4542
## 1463 MYO1G 64005
## 1464 MYO9B 4650
## 1465 MYSM1 114803
## 1466 NAA10 8260
## 1467 NAA38 84316
## 1468 NAA50 80218
## 1469 NAA60 79903
## 1470 NAAA 27163
## 1471 NAB1 4664
## 1472 NACA 4666
## 1473 NACC1 112939
## 1474 NADSYN1 55191
## 1475 NAGA 4668
## 1476 NANS 54187
## 1477 NAP1L1 4673
## 1478 NAPRT 93100
## 1479 NAPSA 9476
## 1480 NARF 26502
## 1481 NAXE 128240
## 1482 NBN 4683
## 1483 NBPF10 100132406
## 1484 NBPF14 25832
## 1485 NBPF19 101060226
## 1486 NBR1 4077
## 1487 NCAPD2 9918
## 1488 NCF1 653361
## 1489 NCF4 4689
## 1490 NCK1 4690
## 1491 NCK2 8440
## 1492 NCLN 56926
## 1493 NCOA1 8648
## 1494 NCOA2 10499
## 1495 NCOA3 8202
## 1496 NCOA6 23054
## 1497 NCOA7 135112
## 1498 NCOR1 9611
## 1499 NDE1 54820
## 1500 NDOR1 27158
## 1501 NDRG3 57446
## 1502 NDST1 3340
## 1503 NDUFA1 4694
## 1504 NDUFA11 126328
## 1505 NDUFA13 51079
## 1506 NDUFA2 4695
## 1507 NDUFA3 4696
## 1508 NDUFB10 4716
## 1509 NDUFB11 54539
## 1510 NDUFB2 4708
## 1511 NDUFB5 4711
## 1512 NDUFB7 4713
## 1513 NDUFB8 4714
## 1514 NDUFB9 4715
## 1515 NDUFC2 4718
## 1516 NDUFS1 4719
## 1517 NDUFS3 4722
## 1518 NDUFS6 4726
## 1519 NDUFV1 4723
## 1520 NECAP1 25977
## 1521 NECAP2 55707
## 1522 NEDD8 4738
## 1523 NEDD9 4739
## 1524 NEK7 140609
## 1525 NEK9 91754
## 1526 NELFB 25920
## 1527 NELFE 7936
## 1528 NEMF 9147
## 1529 NENF 29937
## 1530 NF1 4763
## 1531 NFAM1 150372
## 1532 NFAT5 10725
## 1533 NFE2L2 4780
## 1534 NFIL3 4783
## 1535 NFKBIE 4794
## 1536 NFYA 4800
## 1537 NHP2 55651
## 1538 NHSL2 340527
## 1539 NHSL2 392490
## 1540 NIBAN2 64855
## 1541 NIN 51199
## 1542 NINJ1 4814
## 1543 NINJ2 4815
## 1544 NIPA2 81614
## 1545 NIPBL 25836
## 1546 NISCH 11188
## 1547 NKTR 4820
## 1548 NLRC5 84166
## 1549 NLRP12 91662
## 1550 NLRX1 79671
## 1551 NME2 4831
## 1552 NMRAL1 57407
## 1553 NNT 23530
## 1554 NOC2L 26155
## 1555 NOD2 64127
## 1556 NOP53 29997
## 1557 NOSIP 51070
## 1558 NOTCH2 4853
## 1559 NPC2 10577
## 1560 NPEPL1 79716
## 1561 NPEPPS 9520
## 1562 NPLOC4 55666
## 1563 NPTN 27020
## 1564 NR1H2 7376
## 1565 NR2C2 7182
## 1566 NRAS 4893
## 1567 NRIP1 8204
## 1568 NRM 11270
## 1569 NSA2 10412
## 1570 NSD1 64324
## 1571 NSD3 54904
## 1572 NSF 4905
## 1573 NSMCE1 197370
## 1574 NSMF 26012
## 1575 NT5C 30833
## 1576 NT5C2 22978
## 1577 NT5C3A 51251
## 1578 NTNG2 84628
## 1579 NUBP2 10101
## 1580 NUCB1 4924
## 1581 NUCB2 4925
## 1582 NUDC 10726
## 1583 NUDT16L1 84309
## 1584 NUDT22 84304
## 1585 NUDT4 11163
## 1586 NUDT4B 440672
## 1587 NUFIP2 57532
## 1588 NUMA1 4926
## 1589 NUP153 9972
## 1590 NUP58 9818
## 1591 NUS1 116150
## 1592 NUSAP1 51203
## 1593 NXPE3 91775
## 1594 OAS1 4938
## 1595 OAS2 4939
## 1596 OAS3 4940
## 1597 OASL 8638
## 1598 OAZ1 4946
## 1599 ODC1 4953
## 1600 OGA 10724
## 1601 OGFR 11054
## 1602 OGT 8473
## 1603 OPA1 4976
## 1604 ORAI1 84876
## 1605 ORC4 5000
## 1606 OSBPL11 114885
## 1607 OSBPL8 114882
## 1608 OSBPL9 114883
## 1609 OSCAR 126014
## 1610 OSGEP 55644
## 1611 OSGIN2 734
## 1612 OSTM1 28962
## 1613 OTUB1 55611
## 1614 OTUD4 54726
## 1615 OTULIN 90268
## 1616 OVCA2 124641
## 1617 OXA1L 5018
## 1618 OXLD1 339229
## 1619 OXR1 55074
## 1620 OXSR1 9943
## 1621 PABPC1 26986
## 1622 PACS1 55690
## 1623 PAFAH1B1 5048
## 1624 PAG1 55824
## 1625 PAGR1 79447
## 1626 PAICS 10606
## 1627 PAK2 5062
## 1628 PALM2AKAP2 445815
## 1629 PAM 5066
## 1630 PAN3 255967
## 1631 PANK3 79646
## 1632 PAPOLA 10914
## 1633 PAPOLG 64895
## 1634 PARK7 11315
## 1635 PARL 55486
## 1636 PARP14 54625
## 1637 PARP15 165631
## 1638 PARP4 143
## 1639 PARP6 56965
## 1640 PARP8 79668
## 1641 PARP9 83666
## 1642 PARVG 64098
## 1643 PATL1 219988
## 1644 PATL2 197135
## 1645 PAXX 286257
## 1646 PBRM1 55193
## 1647 PBXIP1 57326
## 1648 PCED1A 64773
## 1649 PCED1B 91523
## 1650 PCF11 51585
## 1651 PCGF5 84333
## 1652 PCIF1 63935
## 1653 PCMTD1 115294
## 1654 PCNA 5111
## 1655 PCNP 57092
## 1656 PCNX1 22990
## 1657 PCNX3 399909
## 1658 PCNX4 64430
## 1659 PDAP1 11333
## 1660 PDE7A 5150
## 1661 PDIA6 10130
## 1662 PDK1 5163
## 1663 PDLIM2 64236
## 1664 PDLIM7 9260
## 1665 PDPK1 5170
## 1666 PDS5A 23244
## 1667 PDXDC1 23042
## 1668 PDZD4 57595
## 1669 PDZD8 118987
## 1670 PDZK1IP1 10158
## 1671 PEA15 8682
## 1672 PECAM1 5175
## 1673 PEF1 553115
## 1674 PELATON NA
## 1675 PELI1 57162
## 1676 PELI2 57161
## 1677 PELP1 27043
## 1678 PES1 23481
## 1679 PET100 100131801
## 1680 PEX16 9409
## 1681 PEX6 5190
## 1682 PFDN5 5204
## 1683 PFKL 5211
## 1684 PFN1 5216
## 1685 PGAP6 58986
## 1686 PGGHG 80162
## 1687 PGLS 25796
## 1688 PGPEP1 54858
## 1689 PGRMC1 10857
## 1690 PHACTR2 9749
## 1691 PHB 5245
## 1692 PHB2 11331
## 1693 PHC3 80012
## 1694 PHF1 5252
## 1695 PHF12 57649
## 1696 PHF2 5253
## 1697 PHF20L1 51105
## 1698 PHF3 23469
## 1699 PHIP 55023
## 1700 PHKB 5257
## 1701 PHKG2 5261
## 1702 PHPT1 29085
## 1703 PI4KB 5298
## 1704 PIAS1 8554
## 1705 PICALM 8301
## 1706 PIEZO1 9780
## 1707 PIGT 51604
## 1708 PIH1D1 55011
## 1709 PIK3AP1 118788
## 1710 PIK3C2A 5286
## 1711 PIK3CA 5290
## 1712 PIK3CB 5291
## 1713 PIK3CG 5294
## 1714 PIK3R5 23533
## 1715 PIKFYVE 200576
## 1716 PIM2 11040
## 1717 PIM3 415116
## 1718 PIN1 5300
## 1719 PIP4K2A 5305
## 1720 PIP4K2C 79837
## 1721 PIP4P2 55529
## 1722 PITPNB 23760
## 1723 PITPNC1 26207
## 1724 PITPNM1 9600
## 1725 PKN1 5585
## 1726 PKN2 5586
## 1727 PLA2G15 23659
## 1728 PLAAT4 5920
## 1729 PLB1 151056
## 1730 PLCL2 23228
## 1731 PLD2 5338
## 1732 PLD3 23646
## 1733 PLEC 5339
## 1734 PLEK 5341
## 1735 PLEKHA2 59339
## 1736 PLEKHJ1 55111
## 1737 PLEKHM2 23207
## 1738 PLEKHM3 389072
## 1739 PLEKHO1 51177
## 1740 PLEKHO2 80301
## 1741 PLIN3 10226
## 1742 PLIN5 440503
## 1743 PLSCR1 5359
## 1744 PLSCR3 57048
## 1745 PLXDC2 84898
## 1746 PLXNB2 23654
## 1747 PLXND1 23129
## 1748 PMM1 5372
## 1749 PMVK 10654
## 1750 PNISR 25957
## 1751 PNKD 25953
## 1752 PNN 5411
## 1753 PNPLA1 285848
## 1754 PNPLA2 57104
## 1755 PNPLA6 10908
## 1756 PNPT1 87178
## 1757 PNRC2 55629
## 1758 POGZ 23126
## 1759 POLD4 57804
## 1760 POLE4 56655
## 1761 POLL 27343
## 1762 POLM 27434
## 1763 POLR1D 51082
## 1764 POLR1H 30834
## 1765 POLR2B 5431
## 1766 POLR2C 5432
## 1767 POLR2E 5434
## 1768 POLR2G 5436
## 1769 POLR2J 5439
## 1770 POLR2L 5441
## 1771 POLRMT 5442
## 1772 POR 5447
## 1773 POU2AF1 5450
## 1774 POU2F2 5452
## 1775 PPCDC 60490
## 1776 PPCS 79717
## 1777 PPDPF 79144
## 1778 PPFIA1 8500
## 1779 PPIE 10450
## 1780 PPIL2 23759
## 1781 PPM1A 5494
## 1782 PPM1B 5495
## 1783 PPM1F 9647
## 1784 PPM1G 5496
## 1785 PPM1K 152926
## 1786 PPM1M 132160
## 1787 PPP1CA 5499
## 1788 PPP1R12A 4659
## 1789 PPP1R12B 4660
## 1790 PPP1R12C 54776
## 1791 PPP1R14B 26472
## 1792 PPP1R15B 84919
## 1793 PPP1R21 129285
## 1794 PPP1R35 221908
## 1795 PPP1R7 5510
## 1796 PPP1R9B 84687
## 1797 PPP2CB 5516
## 1798 PPP2R1A 5518
## 1799 PPP2R2A 5520
## 1800 PPP2R5A 5525
## 1801 PPP2R5C 5527
## 1802 PPP4C 5531
## 1803 PPP4R2 151987
## 1804 PPP6C 5537
## 1805 PPP6R1 22870
## 1806 PPP6R2 9701
## 1807 PPTC7 160760
## 1808 PQBP1 10084
## 1809 PRAM1 84106
## 1810 PRCC 5546
## 1811 PRDM1 639
## 1812 PRDM2 7799
## 1813 PRDX5 25824
## 1814 PRELID1 27166
## 1815 PRELID3B 51012
## 1816 PRKAA1 5562
## 1817 PRKAR2B 5577
## 1818 PRKCB 5579
## 1819 PRKCSH 5589
## 1820 PRKD2 25865
## 1821 PRKRIP1 79706
## 1822 PRMT1 3276
## 1823 PRMT2 3275
## 1824 PRPF19 27339
## 1825 PRPF31 26121
## 1826 PRPF38B 55119
## 1827 PRPF40A 55660
## 1828 PRPF4B 8899
## 1829 PRPF6 24148
## 1830 PRR14 78994
## 1831 PRR14L 253143
## 1832 PRRC2C 23215
## 1833 PRRG4 79056
## 1834 PRUNE1 58497
## 1835 PSAP 5660
## 1836 PSENEN 55851
## 1837 PSMA7 5688
## 1838 PSMB1 5689
## 1839 PSMB10 5699
## 1840 PSMB3 5691
## 1841 PSMB4 5692
## 1842 PSMB6 5694
## 1843 PSMC3 5702
## 1844 PSMC5 5705
## 1845 PSMD13 5719
## 1846 PSMD4 5710
## 1847 PSMD8 5714
## 1848 PSMD9 5715
## 1849 PSME3 10197
## 1850 PSME4 23198
## 1851 PSMF1 9491
## 1852 PSMG3 84262
## 1853 PSTPIP1 9051
## 1854 PSTPIP2 9050
## 1855 PTAFR 5724
## 1856 PTAR1 375743
## 1857 PTBP1 5725
## 1858 PTBP2 58155
## 1859 PTBP3 9991
## 1860 PTGES2 80142
## 1861 PTGS1 5742
## 1862 PTMA 5757
## 1863 PTOV1 53635
## 1864 PTP4A1 7803
## 1865 PTPA 5524
## 1866 PTPN11 5781
## 1867 PTPN12 5782
## 1868 PTPN18 26469
## 1869 PTPN22 26191
## 1870 PTPN6 5777
## 1871 PTPRA 5786
## 1872 PTPRCAP 5790
## 1873 PTPRE 5791
## 1874 PTX3 5806
## 1875 PUF60 22827
## 1876 PUM1 9698
## 1877 PUM2 23369
## 1878 PURB 5814
## 1879 PXK 54899
## 1880 PXN 5829
## 1881 PXYLP1 92370
## 1882 PYCARD 29108
## 1883 PYGB 5834
## 1884 PYM1 84305
## 1885 QARS1 5859
## 1886 QKI 9444
## 1887 QSOX1 5768
## 1888 R3HDM2 22864
## 1889 R3HDM4 91300
## 1890 RAB11A 8766
## 1891 RAB11B 9230
## 1892 RAB11FIP1 80223
## 1893 RAB11FIP4 84440
## 1894 RAB14 51552
## 1895 RAB1A 5861
## 1896 RAB1B 81876
## 1897 RAB21 23011
## 1898 RAB31 11031
## 1899 RAB33B 83452
## 1900 RAB34 83871
## 1901 RAB3GAP2 25782
## 1902 RAB4B 53916
## 1903 RAB5C 5878
## 1904 RAB6A 5870
## 1905 RAB8B 51762
## 1906 RABAC1 10567
## 1907 RABEP1 9135
## 1908 RABL6 55684
## 1909 RACK1 10399
## 1910 RAD21 5885
## 1911 RAD23A 5886
## 1912 RAD23B 5887
## 1913 RAF1 5894
## 1914 RALGAPA2 57186
## 1915 RALGAPB 57148
## 1916 RALY 22913
## 1917 RANBP2 5903
## 1918 RANBP3 8498
## 1919 RANBP9 10048
## 1920 RANGAP1 5905
## 1921 RANGRF 29098
## 1922 RAP2C 57826
## 1923 RAPGEF2 9693
## 1924 RAPGEF6 51735
## 1925 RARA 5914
## 1926 RASA1 5921
## 1927 RASA2 5922
## 1928 RASA4 10156
## 1929 RASA4B 100271927
## 1930 RASAL3 64926
## 1931 RASGEF1A 221002
## 1932 RASGRP2 10235
## 1933 RASGRP4 115727
## 1934 RASSF1 11186
## 1935 RASSF2 9770
## 1936 RASSF4 83937
## 1937 RASSF7 8045
## 1938 RAVER1 125950
## 1939 RB1 5925
## 1940 RB1CC1 9821
## 1941 RBBP4 5928
## 1942 RBBP5 5929
## 1943 RBBP6 5930
## 1944 RBIS 401466
## 1945 RBL2 5934
## 1946 RBM10 8241
## 1947 RBM12 10137
## 1948 RBM15B 29890
## 1949 RBM25 58517
## 1950 RBM27 54439
## 1951 RBM3 5935
## 1952 RBM33 155435
## 1953 RBM4 5936
## 1954 RBM42 79171
## 1955 RBMS1 5937
## 1956 RC3H1 149041
## 1957 RC3H2 54542
## 1958 RCBTB1 55213
## 1959 RCHY1 25898
## 1960 RCN3 57333
## 1961 RCOR1 23186
## 1962 RCOR3 55758
## 1963 RECQL 5965
## 1964 REEP3 221035
## 1965 REEP5 7905
## 1966 REL 5966
## 1967 RELB 5971
## 1968 RELCH 57614
## 1969 RELT 84957
## 1970 RENBP 5973
## 1971 REPIN1 29803
## 1972 RER1 11079
## 1973 RESF1 55196
## 1974 REST 5978
## 1975 RETREG3 162427
## 1976 REV3L 5980
## 1977 RFFL 117584
## 1978 RFNG 5986
## 1979 RFTN1 23180
## 1980 RFX5 5993
## 1981 RFXANK 8625
## 1982 RGS14 10636
## 1983 RGS18 64407
## 1984 RGS19 10287
## 1985 RGS3 5998
## 1986 RHBDD2 57414
## 1987 RHOC 389
## 1988 RHOF 54509
## 1989 RHOG 391
## 1990 RHOT1 55288
## 1991 RHOT2 89941
## 1992 RIC1 57589
## 1993 RIC8A 60626
## 1994 RICTOR 253260
## 1995 RIF1 55183
## 1996 RING1 6015
## 1997 RIOK3 8780
## 1998 RIPK3 11035
## 1999 RIPOR1 79567
## 2000 RIPOR2 9750
## 2001 RLF 6018
## 2002 RMND5A 64795
## 2003 RNASE1 6035
## 2004 RNASE2 6036
## 2005 RNASE3 6037
## 2006 RNASEK 440400
## 2007 RNF11 26994
## 2008 RNF111 54778
## 2009 RNF114 55905
## 2010 RNF145 153830
## 2011 RNF167 26001
## 2012 RNF169 254225
## 2013 RNF181 51255
## 2014 RNF187 149603
## 2015 RNF19A 25897
## 2016 RNF213 57674
## 2017 RNF220 55182
## 2018 RNF24 11237
## 2019 RNF31 55072
## 2020 RNF38 152006
## 2021 RNF40 9810
## 2022 RNF6 6049
## 2023 RNFT1 51136
## 2024 RNH1 6050
## 2025 RNPEPL1 57140
## 2026 RNPS1 10921
## 2027 RO60 6738
## 2028 ROCK1 6093
## 2029 ROCK2 9475
## 2030 ROGDI 79641
## 2031 RP2 6102
## 2032 RPAP2 79871
## 2033 RPH3A 22895
## 2034 RPL10 6134
## 2035 RPL10A 4736
## 2036 RPL11 6135
## 2037 RPL12 6136
## 2038 RPL13 6137
## 2039 RPL13A 23521
## 2040 RPL14 9045
## 2041 RPL15 6138
## 2042 RPL17 6139
## 2043 RPL18 6141
## 2044 RPL18A 6142
## 2045 RPL19 6143
## 2046 RPL21 6144
## 2047 RPL22 6146
## 2048 RPL23 9349
## 2049 RPL23A 6147
## 2050 RPL24 6152
## 2051 RPL26 6154
## 2052 RPL27 6155
## 2053 RPL27A 6157
## 2054 RPL28 6158
## 2055 RPL29 6159
## 2056 RPL3 6122
## 2057 RPL30 6156
## 2058 RPL31 6160
## 2059 RPL32 6161
## 2060 RPL34 6164
## 2061 RPL35 11224
## 2062 RPL35A 6165
## 2063 RPL36 25873
## 2064 RPL36A 6173
## 2065 RPL36AL 6166
## 2066 RPL37 6167
## 2067 RPL37A 6168
## 2068 RPL38 6169
## 2069 RPL39 6170
## 2070 RPL4 6124
## 2071 RPL41 6171
## 2072 RPL5 6125
## 2073 RPL6 6128
## 2074 RPL7 6129
## 2075 RPL7A 6130
## 2076 RPL8 6132
## 2077 RPL9 6133
## 2078 RPLP0 6175
## 2079 RPLP1 6176
## 2080 RPLP2 6181
## 2081 RPN1 6184
## 2082 RPRD2 23248
## 2083 RPS10 6204
## 2084 RPS11 6205
## 2085 RPS12 6206
## 2086 RPS13 6207
## 2087 RPS14 6208
## 2088 RPS15 6209
## 2089 RPS15A 6210
## 2090 RPS16 6217
## 2091 RPS17 6218
## 2092 RPS18 6222
## 2093 RPS19 6223
## 2094 RPS19BP1 91582
## 2095 RPS2 6187
## 2096 RPS20 6224
## 2097 RPS21 6227
## 2098 RPS23 6228
## 2099 RPS24 6229
## 2100 RPS25 6230
## 2101 RPS26 6231
## 2102 RPS27 6232
## 2103 RPS27A 6233
## 2104 RPS28 6234
## 2105 RPS29 6235
## 2106 RPS3 6188
## 2107 RPS3A 6189
## 2108 RPS4X 6191
## 2109 RPS5 6193
## 2110 RPS6 6194
## 2111 RPS6KA1 6195
## 2112 RPS6KA4 8986
## 2113 RPS6KB2 6199
## 2114 RPS7 6201
## 2115 RPS8 6202
## 2116 RPS9 6203
## 2117 RPSA 3921
## 2118 RPSAP58 NA
## 2119 RRAGD 58528
## 2120 RRAS 6237
## 2121 RRM2 6241
## 2122 RRP12 23223
## 2123 RRP7A 27341
## 2124 RSBN1 54665
## 2125 RSBN1L 222194
## 2126 RSF1 51773
## 2127 RSL1D1 26156
## 2128 RSU1 6251
## 2129 RTF1 23168
## 2130 RTL8C 8933
## 2131 RTRAF 51637
## 2132 RUBCN 9711
## 2133 RUFY1 80230
## 2134 RUNX2 860
## 2135 RUVBL2 10856
## 2136 RWDD1 51389
## 2137 RXRA 6256
## 2138 S100A10 6281
## 2139 S100A6 6277
## 2140 S1PR4 8698
## 2141 SACM1L 22908
## 2142 SAMD8 142891
## 2143 SAMD9 54809
## 2144 SAMD9L 219285
## 2145 SAP25 100316904
## 2146 SAP30 8819
## 2147 SAP30BP 29115
## 2148 SARNP 84324
## 2149 SARS1 6301
## 2150 SART1 9092
## 2151 SASH3 54440
## 2152 SAT2 112483
## 2153 SATB1 6304
## 2154 SBF1 6305
## 2155 SBF2 81846
## 2156 SBNO1 55206
## 2157 SCAF11 9169
## 2158 SCAF8 22828
## 2159 SCAMP2 10066
## 2160 SCAP 22937
## 2161 SCARB2 950
## 2162 SCP2 6342
## 2163 SCRN2 90507
## 2164 SCYL1 57410
## 2165 SCYL2 55681
## 2166 SDE2 163859
## 2167 SDF4 51150
## 2168 SDR39U1 56948
## 2169 SEC13 6396
## 2170 SEC23A 10484
## 2171 SEC23B 10483
## 2172 SEC24A 10802
## 2173 SEC24B 10427
## 2174 SEC24D 9871
## 2175 SEC31A 22872
## 2176 SEC63 11231
## 2177 SECISBP2L 9728
## 2178 SECTM1 6398
## 2179 SEL1L 6400
## 2180 SEL1L3 23231
## 2181 SELENOH 280636
## 2182 SELENON 57190
## 2183 SELENOO 83642
## 2184 SELENOW 6415
## 2185 SELL 6402
## 2186 SEM1 7979
## 2187 SEMA4D 10507
## 2188 SENP2 59343
## 2189 SENP7 57337
## 2190 SEPTIN1 1731
## 2191 SEPTIN2 4735
## 2192 SEPTIN7 989
## 2193 SEPTIN9 10801
## 2194 SERF2 10169
## 2195 SERINC1 57515
## 2196 SERINC3 10955
## 2197 SERPINB6 5269
## 2198 SERTAD3 29946
## 2199 SESTD1 91404
## 2200 SETD2 29072
## 2201 SETD5 55209
## 2202 SETX 23064
## 2203 SF3A1 10291
## 2204 SF3A2 8175
## 2205 SF3B4 10262
## 2206 SF3B5 83443
## 2207 SGSH 6448
## 2208 SGSM2 9905
## 2209 SGSM3 27352
## 2210 SGTA 6449
## 2211 SH2B1 25970
## 2212 SH2D3C 10044
## 2213 SH3BGRL2 83699
## 2214 SH3BGRL3 83442
## 2215 SH3BP1 23616
## 2216 SH3BP2 6452
## 2217 SH3BP5L 80851
## 2218 SH3GL1 6455
## 2219 SH3GLB2 56904
## 2220 SH3TC1 54436
## 2221 SHARPIN 81858
## 2222 SHOC2 8036
## 2223 SIDT2 51092
## 2224 SIGIRR 59307
## 2225 SIGLEC10 89790
## 2226 SIGLEC7 27036
## 2227 SIGLEC9 27180
## 2228 SIK3 23387
## 2229 SIKE1 80143
## 2230 SIL1 64374
## 2231 SIN3B 23309
## 2232 SIPA1 6494
## 2233 SIPA1L1 26037
## 2234 SIPA1L2 57568
## 2235 SIRT1 23411
## 2236 SIRT2 22933
## 2237 SIRT5 23408
## 2238 SIRT6 51548
## 2239 SIRT7 51547
## 2240 SKAP1 8631
## 2241 SKIL 6498
## 2242 SKP1 6500
## 2243 SLA2 84174
## 2244 SLAIN2 57606
## 2245 SLBP 7884
## 2246 SLC12A6 9990
## 2247 SLC12A9 56996
## 2248 SLC15A3 51296
## 2249 SLC15A4 121260
## 2250 SLC16A3 9123
## 2251 SLC19A1 6573
## 2252 SLC22A15 55356
## 2253 SLC25A1 6576
## 2254 SLC25A11 8402
## 2255 SLC25A28 81894
## 2256 SLC25A29 123096
## 2257 SLC25A3 5250
## 2258 SLC25A6 293
## 2259 SLC26A8 116369
## 2260 SLC27A1 376497
## 2261 SLC29A1 2030
## 2262 SLC2A4RG 56731
## 2263 SLC2A5 6518
## 2264 SLC2A6 11182
## 2265 SLC30A1 7779
## 2266 SLC35A1 10559
## 2267 SLC35A4 113829
## 2268 SLC35F5 80255
## 2269 SLC37A2 219855
## 2270 SLC38A1 81539
## 2271 SLC38A10 124565
## 2272 SLC38A2 54407
## 2273 SLC39A1 27173
## 2274 SLC39A13 91252
## 2275 SLC39A9 55334
## 2276 SLC43A2 124935
## 2277 SLC44A1 23446
## 2278 SLC66A2 80148
## 2279 SLC6A6 6533
## 2280 SLC7A7 9056
## 2281 SLC8B1 80024
## 2282 SLC9A3R1 9368
## 2283 SLC9A8 23315
## 2284 SLCO4C1 353189
## 2285 SLFN11 91607
## 2286 SLFN13 146857
## 2287 SLFN5 162394
## 2288 SLTM 79811
## 2289 SLX1A 548593
## 2290 SMAD2 4087
## 2291 SMAD4 4089
## 2292 SMARCA5 8467
## 2293 SMARCC2 6601
## 2294 SMARCD2 6603
## 2295 SMC1A 8243
## 2296 SMC3 9126
## 2297 SMC4 10051
## 2298 SMC5 23137
## 2299 SMCHD1 23347
## 2300 SMCO4 56935
## 2301 SMCR8 140775
## 2302 SMDT1 91689
## 2303 SMG1 23049
## 2304 SMG7 9887
## 2305 SMIM12 113444
## 2306 SMIM29 221491
## 2307 SMIM3 85027
## 2308 SMURF2 64750
## 2309 SND1 27044
## 2310 SNF8 11267
## 2311 SNN 8303
## 2312 SNRK 54861
## 2313 SNRNP200 23020
## 2314 SNRNP35 11066
## 2315 SNRNP70 6625
## 2316 SNRPA 6626
## 2317 SNRPB 6628
## 2318 SNRPD2 6633
## 2319 SNRPD3 6634
## 2320 SNRPN 6638
## 2321 SNTB1 6641
## 2322 SNTB2 6645
## 2323 SNU13 4809
## 2324 SNX1 6642
## 2325 SNX17 9784
## 2326 SNX19 399979
## 2327 SNX27 81609
## 2328 SOCS5 9655
## 2329 SOD1 6647
## 2330 SON 6651
## 2331 SOS1 6654
## 2332 SOS2 6655
## 2333 SP1 6667
## 2334 SP100 6672
## 2335 SP110 3431
## 2336 SP140 11262
## 2337 SP3 6670
## 2338 SPAG7 9552
## 2339 SPAG9 9043
## 2340 SPARC 6678
## 2341 SPCS1 28972
## 2342 SPCS2 9789
## 2343 SPCS3 60559
## 2344 SPEN 23013
## 2345 SPG11 80208
## 2346 SPG7 6687
## 2347 SPI1 6688
## 2348 SPINT2 10653
## 2349 SPNS1 83985
## 2350 SPOCK2 9806
## 2351 SPOPL 339745
## 2352 SPOUT1 51490
## 2353 SPRYD3 84926
## 2354 SPSB3 90864
## 2355 SPTBN1 6711
## 2356 SPTLC1 10558
## 2357 SPTLC2 9517
## 2358 SPTY2D1 144108
## 2359 SRBD1 55133
## 2360 SREBF1 6720
## 2361 SREBF2 6721
## 2362 SRF 6722
## 2363 SRGAP2 23380
## 2364 SRGAP2B 647135
## 2365 SRGAP2C 653464
## 2366 SRI 6717
## 2367 SRP54 6729
## 2368 SRP72 6731
## 2369 SRPK2 6733
## 2370 SRPRA 6734
## 2371 SRRT 51593
## 2372 SRSF4 6429
## 2373 SRSF9 8683
## 2374 SSH1 54434
## 2375 SSH2 85464
## 2376 SSNA1 8636
## 2377 SSR1 6745
## 2378 SSR2 6746
## 2379 ST13 6767
## 2380 ST14 6768
## 2381 ST3GAL1 6482
## 2382 ST6GAL1 6480
## 2383 ST6GALNAC6 30815
## 2384 STAB1 23166
## 2385 STAG1 10274
## 2386 STAG2 10735
## 2387 STAM2 10254
## 2388 STARD3 10948
## 2389 STARD7 56910
## 2390 STAT1 6772
## 2391 STAT2 6773
## 2392 STAT3 6774
## 2393 STAT5A 6776
## 2394 STAU1 6780
## 2395 STBD1 8987
## 2396 STEAP4 79689
## 2397 STIM1 6786
## 2398 STING1 340061
## 2399 STK10 6793
## 2400 STK11 6794
## 2401 STK11IP 114790
## 2402 STK17B 9262
## 2403 STK24 8428
## 2404 STK25 10494
## 2405 STK26 51765
## 2406 STK35 140901
## 2407 STK38 11329
## 2408 STK4 6789
## 2409 STK40 83931
## 2410 STMN1 3925
## 2411 STMN3 50861
## 2412 STRN 6801
## 2413 STRN4 29888
## 2414 STT3A 3703
## 2415 STT3B 201595
## 2416 STUB1 10273
## 2417 STX10 8677
## 2418 STX16 8675
## 2419 STX17 55014
## 2420 STX4 6810
## 2421 STX5 6811
## 2422 STX8 9482
## 2423 STXBP2 6813
## 2424 STXBP3 6814
## 2425 STXBP5 134957
## 2426 STYXL1 51657
## 2427 SUDS3 64426
## 2428 SUGP1 57794
## 2429 SUGP2 10147
## 2430 SULT1A3 6818
## 2431 SUMF1 285362
## 2432 SUMF1 100130207
## 2433 SUMF2 25870
## 2434 SUMO3 6612
## 2435 SUN2 25777
## 2436 SUPT16H 11198
## 2437 SUPT20H 55578
## 2438 SUPT5H 6829
## 2439 SURF1 6834
## 2440 SURF4 6836
## 2441 SUZ12 23512
## 2442 SVIL 6840
## 2443 SYMPK 8189
## 2444 SYNE1 23345
## 2445 SYNGR2 9144
## 2446 SYNJ1 8867
## 2447 SYNRG 11276
## 2448 SYTL1 84958
## 2449 SZRD1 26099
## 2450 TAB1 10454
## 2451 TAB2 23118
## 2452 TAB3 257397
## 2453 TACC1 6867
## 2454 TACC3 10460
## 2455 TADA3 10474
## 2456 TAF1 6872
## 2457 TAF10 6881
## 2458 TAF15 8148
## 2459 TAF8 129685
## 2460 TAGAP 117289
## 2461 TAGLN 6876
## 2462 TALDO1 6888
## 2463 TANK 10010
## 2464 TAOK1 57551
## 2465 TAOK3 51347
## 2466 TAP1 6890
## 2467 TAP2 6891
## 2468 TAPBP 6892
## 2469 TAPBPL 55080
## 2470 TARDBP 23435
## 2471 TARS1 6897
## 2472 TATDN2 9797
## 2473 TAX1BP3 30851
## 2474 TAZ 6901
## 2475 TBC1D1 23216
## 2476 TBC1D10A 83874
## 2477 TBC1D10B 26000
## 2478 TBC1D10C 374403
## 2479 TBC1D20 128637
## 2480 TBC1D22A 25771
## 2481 TBC1D23 55773
## 2482 TBC1D5 9779
## 2483 TBCA 6902
## 2484 TBCB 1155
## 2485 TBCD 6904
## 2486 TBK1 29110
## 2487 TCEA1 6917
## 2488 TCF20 6942
## 2489 TCF25 22980
## 2490 TCF7 6932
## 2491 TCIRG1 10312
## 2492 TCN1 6947
## 2493 TCOF1 6949
## 2494 TCP11L2 255394
## 2495 TDRD7 23424
## 2496 TECPR1 25851
## 2497 TECR 9524
## 2498 TENT5A 55603
## 2499 TENT5C 54855
## 2500 TEPSIN 146705
## 2501 TES 26136
## 2502 TESC 54997
## 2503 TESPA1 9840
## 2504 TET3 200424
## 2505 TEX2 55852
## 2506 TEX264 51368
## 2507 TFDP1 7027
## 2508 TFEB 7942
## 2509 TFEC 22797
## 2510 TGFB1 7040
## 2511 TGFBI 7045
## 2512 THAP11 57215
## 2513 THEMIS2 9473
## 2514 THOC5 8563
## 2515 THOC6 79228
## 2516 THRAP3 9967
## 2517 THYN1 29087
## 2518 TIA1 7072
## 2519 TIAF1 9220
## 2520 TIMM13 26517
## 2521 TIMM17B 10245
## 2522 TIMM8B 26521
## 2523 TIMP1 7076
## 2524 TINF2 26277
## 2525 TKT 7086
## 2526 TLE4 7091
## 2527 TLE5 166
## 2528 TLK1 9874
## 2529 TLK2 11011
## 2530 TLR10 81793
## 2531 TLR2 7097
## 2532 TM9SF3 56889
## 2533 TMC6 11322
## 2534 TMC8 147138
## 2535 TMCC3 57458
## 2536 TMED2 10959
## 2537 TMED3 23423
## 2538 TMED5 50999
## 2539 TMED7 51014
## 2540 TMED8 283578
## 2541 TMEM101 84336
## 2542 TMEM109 79073
## 2543 TMEM115 11070
## 2544 TMEM120A 83862
## 2545 TMEM123 114908
## 2546 TMEM129 92305
## 2547 TMEM141 85014
## 2548 TMEM154 201799
## 2549 TMEM170B 100113407
## 2550 TMEM179B 374395
## 2551 TMEM203 94107
## 2552 TMEM205 374882
## 2553 TMEM208 29100
## 2554 TMEM219 124446
## 2555 TMEM222 84065
## 2556 TMEM250 90120
## 2557 TMEM256 254863
## 2558 TMEM259 91304
## 2559 TMEM50A 23585
## 2560 TMF1 7110
## 2561 TMOD2 29767
## 2562 TMOD3 29766
## 2563 TMOD3 112268148
## 2564 TMPO 7112
## 2565 TMSB10 9168
## 2566 TMX1 81542
## 2567 TMX3 54495
## 2568 TMX4 56255
## 2569 TNFAIP6 7130
## 2570 TNFAIP8L2 79626
## 2571 TNFRSF10C 8794
## 2572 TNFRSF14 8764
## 2573 TNFRSF1B 7133
## 2574 TNFRSF8 943
## 2575 TNFSF12 8742
## 2576 TNFSF13 8741
## 2577 TNFSF14 8740
## 2578 TNFSF8 944
## 2579 TNIP2 79155
## 2580 TNK2 10188
## 2581 TNKS2 80351
## 2582 TNNI2 7136
## 2583 TNPO1 3842
## 2584 TNPO3 23534
## 2585 TNRC6B 23112
## 2586 TOLLIP 54472
## 2587 TOM1 10043
## 2588 TOMM20 9804
## 2589 TOMM22 56993
## 2590 TOMM6 100188893
## 2591 TOMM7 54543
## 2592 TOP1 7150
## 2593 TOP2A 7153
## 2594 TOPBP1 11073
## 2595 TOPORS 10210
## 2596 TOR1AIP2 163590
## 2597 TOR1B 27348
## 2598 TOR2A 27433
## 2599 TOR4A 54863
## 2600 TOX4 9878
## 2601 TP53BP2 7159
## 2602 TP53I11 9537
## 2603 TP53I13 90313
## 2604 TP53INP1 94241
## 2605 TPCN1 53373
## 2606 TPI1 7167
## 2607 TPP1 1200
## 2608 TPP2 7174
## 2609 TPPP3 51673
## 2610 TPR 7175
## 2611 TPST1 8460
## 2612 TPT1 7178
## 2613 TRABD 80305
## 2614 TRADD 8717
## 2615 TRAF1 7185
## 2616 TRAF3IP3 80342
## 2617 TRAF7 84231
## 2618 TRAFD1 10906
## 2619 TRAK2 66008
## 2620 TRAM1 23471
## 2621 TRAM2 9697
## 2622 TRANK1 9881
## 2623 TRAPPC1 58485
## 2624 TRAPPC10 7109
## 2625 TRAPPC11 60684
## 2626 TRAPPC12 51112
## 2627 TRAPPC2L 51693
## 2628 TRAPPC4 51399
## 2629 TRAPPC5 126003
## 2630 TRAPPC8 22878
## 2631 TREX1 11277
## 2632 TRIM22 10346
## 2633 TRIM25 7706
## 2634 TRIM26 7726
## 2635 TRIM28 10155
## 2636 TRIM33 51592
## 2637 TRIM38 10475
## 2638 TRIM5 85363
## 2639 TRIM56 81844
## 2640 TRIM58 25893
## 2641 TRIM8 81603
## 2642 TRIP12 9320
## 2643 TRIR 79002
## 2644 TRMT1 55621
## 2645 TRMT112 51504
## 2646 TRMT2A 27037
## 2647 TRPM6 140803
## 2648 TRPM7 54822
## 2649 TRPV2 51393
## 2650 TSC2 7249
## 2651 TSC22D1 8848
## 2652 TSC22D4 81628
## 2653 TSEN34 79042
## 2654 TSPAN17 26262
## 2655 TSPAN2 10100
## 2656 TSPAN33 340348
## 2657 TSPO 706
## 2658 TSR3 115939
## 2659 TSSC4 10078
## 2660 TTC17 55761
## 2661 TTC37 9652
## 2662 TTC9 23508
## 2663 TTN 7273
## 2664 TTPAL 79183
## 2665 TTYH3 80727
## 2666 TUBA1A 7846
## 2667 TUBB1 81027
## 2668 TUBB4B 10383
## 2669 TUBGCP2 10844
## 2670 TUBGCP6 85378
## 2671 TUFM 7284
## 2672 TUT7 79670
## 2673 TWF1 5756
## 2674 TWF2 11344
## 2675 TXN2 25828
## 2676 TXNDC11 51061
## 2677 TXNDC5 81567
## 2678 TXNIP 10628
## 2679 TXNL4A 10907
## 2680 TYK2 7297
## 2681 TYMP 1890
## 2682 TYMS 7298
## 2683 TYROBP 7305
## 2684 U2SURP 23350
## 2685 UAP1 6675
## 2686 UBA1 7317
## 2687 UBA52 7311
## 2688 UBAC2 337867
## 2689 UBALD2 283991
## 2690 UBAP2L 9898
## 2691 UBC 7316
## 2692 UBE2G1 7326
## 2693 UBE2J2 118424
## 2694 UBE2K 3093
## 2695 UBE2M 9040
## 2696 UBE3B 89910
## 2697 UBE3C 9690
## 2698 UBE4A 9354
## 2699 UBE4B 10277
## 2700 UBL5 59286
## 2701 UBL7 84993
## 2702 UBN1 29855
## 2703 UBQLN1 29979
## 2704 UBR1 197131
## 2705 UBR2 23304
## 2706 UBR3 130507
## 2707 UBR4 23352
## 2708 UBR5 51366
## 2709 UBTF 7343
## 2710 UBXN1 51035
## 2711 UBXN11 91544
## 2712 UBXN4 23190
## 2713 UBXN6 80700
## 2714 UBXN7 26043
## 2715 UCP2 7351
## 2716 UGCG 7357
## 2717 UGGT1 56886
## 2718 UHMK1 127933
## 2719 UHRF1BP1L 23074
## 2720 UHRF2 115426
## 2721 UNC119 9094
## 2722 UNC13D 201294
## 2723 UNC93B1 81622
## 2724 UPF2 26019
## 2725 UPK3BL1 100134938
## 2726 UQCR10 29796
## 2727 UQCR11 10975
## 2728 UQCRB 7381
## 2729 UQCRC1 7384
## 2730 UQCRFS1 7386
## 2731 URM1 81605
## 2732 USF2 7392
## 2733 USF3 205717
## 2734 USO1 8615
## 2735 USP1 7398
## 2736 USP15 9958
## 2737 USP16 10600
## 2738 USP20 10868
## 2739 USP24 23358
## 2740 USP25 29761
## 2741 USP3 9960
## 2742 USP32 84669
## 2743 USP33 23032
## 2744 USP34 9736
## 2745 USP38 84640
## 2746 USP4 7375
## 2747 USP4 107986084
## 2748 USP47 55031
## 2749 USP48 84196
## 2750 USP5 8078
## 2751 USP7 7874
## 2752 USP8 9101
## 2753 USP9X 8239
## 2754 UTRN 7402
## 2755 UXT 8409
## 2756 VAMP1 6843
## 2757 VAMP2 6844
## 2758 VAMP7 6845
## 2759 VAMP8 8673
## 2760 VASH1 22846
## 2761 VASP 7408
## 2762 VAV3 10451
## 2763 VCL 7414
## 2764 VCPIP1 80124
## 2765 VDAC3 7419
## 2766 VEGFA 7422
## 2767 VEGFB 7423
## 2768 VEZF1 7716
## 2769 VIM 7431
## 2770 VIRMA 25962
## 2771 VKORC1 79001
## 2772 VNN3 55350
## 2773 VOPP1 81552
## 2774 VPS13A 23230
## 2775 VPS13B 157680
## 2776 VPS13C 54832
## 2777 VPS13D 55187
## 2778 VPS18 57617
## 2779 VPS25 84313
## 2780 VPS26C 10311
## 2781 VPS28 51160
## 2782 VPS39 23339
## 2783 VPS4A 27183
## 2784 VPS51 738
## 2785 VPS54 51542
## 2786 VPS9D1 9605
## 2787 VRK3 51231
## 2788 VSIR 64115
## 2789 VWA8 23078
## 2790 WAC 51322
## 2791 WAPL 23063
## 2792 WAS 7454
## 2793 WASHC1 100287171
## 2794 WASHC2A 387680
## 2795 WASHC2C 253725
## 2796 WASHC4 23325
## 2797 WBP1 23559
## 2798 WDFY1 57590
## 2799 WDFY3 23001
## 2800 WDR13 64743
## 2801 WDR26 80232
## 2802 WDR45 11152
## 2803 WDR46 9277
## 2804 WDR47 22911
## 2805 WDR48 57599
## 2806 WDR6 11180
## 2807 WDR74 54663
## 2808 WDR81 124997
## 2809 WDR82 80335
## 2810 WDR83OS 51398
## 2811 WIPF1 7456
## 2812 WIPF2 147179
## 2813 WLS 79971
## 2814 WNK1 65125
## 2815 WWC3 55841
## 2816 XAB2 56949
## 2817 XAF1 54739
## 2818 XBP1 7494
## 2819 XK 7504
## 2820 XPNPEP1 7511
## 2821 XPO1 7514
## 2822 XPO7 23039
## 2823 XPOT 11260
## 2824 XRCC1 7515
## 2825 XRCC5 7520
## 2826 XRN1 54464
## 2827 XRRA1 143570
## 2828 YBX1 4904
## 2829 YEATS2 55689
## 2830 YIF1B 90522
## 2831 YIPF3 25844
## 2832 YME1L1 10730
## 2833 YOD1 55432
## 2834 YPEL2 388403
## 2835 YTHDF3 253943
## 2836 YWHAG 7532
## 2837 YWHAH 7533
## 2838 YY1 7528
## 2839 ZAP70 7535
## 2840 ZBTB11 27107
## 2841 ZBTB16 7704
## 2842 ZBTB22 9278
## 2843 ZBTB34 403341
## 2844 ZBTB37 84614
## 2845 ZBTB38 253461
## 2846 ZBTB44 29068
## 2847 ZBTB48 3104
## 2848 ZBTB7A 51341
## 2849 ZC3H11A 9877
## 2850 ZC3H13 23091
## 2851 ZC3H15 55854
## 2852 ZC3H7A 29066
## 2853 ZC3HAV1 56829
## 2854 ZCCHC2 54877
## 2855 ZDHHC12 84885
## 2856 ZDHHC17 23390
## 2857 ZDHHC19 131540
## 2858 ZDHHC2 51201
## 2859 ZDHHC5 25921
## 2860 ZEB1 6935
## 2861 ZEB2 9839
## 2862 ZER1 10444
## 2863 ZFAND2B 130617
## 2864 ZFAND5 7763
## 2865 ZFC3H1 196441
## 2866 ZFP91 80829
## 2867 ZFR 51663
## 2868 ZFX 7543
## 2869 ZFYVE16 9765
## 2870 ZFYVE26 23503
## 2871 ZGPAT 84619
## 2872 ZKSCAN1 7586
## 2873 ZMAT5 55954
## 2874 ZMIZ2 83637
## 2875 ZMPSTE24 10269
## 2876 ZNF106 64397
## 2877 ZNF148 7707
## 2878 ZNF200 7752
## 2879 ZNF207 7756
## 2880 ZNF217 7764
## 2881 ZNF24 7572
## 2882 ZNF281 23528
## 2883 ZNF292 23036
## 2884 ZNF316 100131017
## 2885 ZNF32 7580
## 2886 ZNF333 84449
## 2887 ZNF33A 7581
## 2888 ZNF385A 25946
## 2889 ZNF445 353274
## 2890 ZNF467 168544
## 2891 ZNF493 284443
## 2892 ZNF518A 9849
## 2893 ZNF524 147807
## 2894 ZNF581 51545
## 2895 ZNF608 57507
## 2896 ZNF622 90441
## 2897 ZNF638 27332
## 2898 ZNF652 22834
## 2899 ZNF655 79027
## 2900 ZNF664 144348
## 2901 ZNF672 79894
## 2902 ZNF692 55657
## 2903 ZNF710 374655
## 2904 ZNF770 54989
## 2905 ZNF865 100507290
## 2906 ZNFX1 57169
## 2907 ZNHIT1 10467
## 2908 ZRANB1 54764
## 2909 ZRSR2 8233
## 2910 ZSCAN29 146050
## 2911 ZSWIM6 57688
## 2912 ZYX 7791
## 2913 ZZEF1 23140
## 2914 A1BG 1
## 2915 AAAS 8086
## 2916 AAMDC 28971
## 2917 AAR2 25980
## 2918 AARSD1 80755
## 2919 AASDHPPT 60496
## 2920 AASS 10157
## 2921 ABCA5 23461
## 2922 ABCB10 23456
## 2923 ABCB7 22
## 2924 ABCB8 11194
## 2925 ABCC2 1244
## 2926 ABCC6 368
## 2927 ABCD1 215
## 2928 ABCE1 6059
## 2929 ABHD10 55347
## 2930 ABHD11 83451
## 2931 ABHD12 26090
## 2932 ABHD14A 25864
## 2933 ABHD17B 51104
## 2934 ABHD18 80167
## 2935 ABHD8 79575
## 2936 ABI2 10152
## 2937 ABITRAM 54942
## 2938 ABL2 27
## 2939 ABRAXAS2 23172
## 2940 ABT1 29777
## 2941 ACAA2 10449
## 2942 ACACA 31
## 2943 ACAD9 28976
## 2944 ACADS 35
## 2945 ACBD4 79777
## 2946 ACBD5 91452
## 2947 ACBD7 414149
## 2948 ACD 65057
## 2949 ACO1 48
## 2950 ACOT11 26027
## 2951 ACOT8 10005
## 2952 ACP2 53
## 2953 ACSF2 80221
## 2954 ACSF3 197322
## 2955 ACTL6A 86
## 2956 ACTR5 79913
## 2957 ACTR8 93973
## 2958 ACVR1 90
## 2959 ACVR2A 92
## 2960 ACVRL1 94
## 2961 ACY1 95
## 2962 ADAP2 55803
## 2963 ADAT1 23536
## 2964 ADCK1 57143
## 2965 ADCK2 90956
## 2966 ADCK5 203054
## 2967 ADGRL1 22859
## 2968 ADRB2 154
## 2969 ADSS1 122622
## 2970 AEBP1 165
## 2971 AFAP1L2 84632
## 2972 AFF2 2334
## 2973 AGAP5 729092
## 2974 AGFG2 3268
## 2975 AGPAT5 55326
## 2976 AHSA1 10598
## 2977 AIFM3 150209
## 2978 AK1 203
## 2979 AK3 50808
## 2980 AK4 205
## 2981 AK5 26289
## 2982 AK9 221264
## 2983 AKAP7 9465
## 2984 ALDH18A1 5832
## 2985 ALDOC 230
## 2986 ALG10 84920
## 2987 ALG11 440138
## 2988 ALG12 79087
## 2989 ALG3 10195
## 2990 ALKBH2 121642
## 2991 ALKBH3 221120
## 2992 ALKBH4 54784
## 2993 ALKBH7 84266
## 2994 ALMS1 7840
## 2995 ALPK3 57538
## 2996 ALS2 57679
## 2997 ALS2CL 259173
## 2998 ALYREF 10189
## 2999 AMDHD1 144193
## 3000 AMDHD2 51005
## 3001 AMIGO2 347902
## 3002 AMIGO3 386724
## 3003 AMMECR1 9949
## 3004 AMMECR1L 83607
## 3005 ANAPC2 29882
## 3006 ANGEL2 90806
## 3007 ANKMY1 51281
## 3008 ANKMY2 57037
## 3009 ANKRA2 57763
## 3010 ANKRD16 54522
## 3011 ANKRD26 22852
## 3012 ANKRD27 84079
## 3013 ANKRD33B 651746
## 3014 ANKRD36B 57730
## 3015 ANKRD36C 400986
## 3016 ANKRD39 51239
## 3017 ANKRD40 91369
## 3018 ANKRD52 283373
## 3019 ANKRD54 129138
## 3020 ANKRD55 79722
## 3021 ANKRD6 22881
## 3022 ANKS3 124401
## 3023 ANKS6 203286
## 3024 ANO5 203859
## 3025 ANO5 102723370
## 3026 ANXA9 8416
## 3027 AP1S1 1174
## 3028 AP1S3 130340
## 3029 AP2A2 161
## 3030 AP3D1 8943
## 3031 AP3M1 26985
## 3032 AP4E1 23431
## 3033 AP4M1 9179
## 3034 APBA3 9546
## 3035 APEX2 27301
## 3036 APPL1 26060
## 3037 ARFIP2 23647
## 3038 ARG2 384
## 3039 ARHGAP11A 9824
## 3040 ARHGAP18 93663
## 3041 ARHGAP32 9743
## 3042 ARHGAP5 394
## 3043 ARHGAP6 395
## 3044 ARHGEF10L 55160
## 3045 ARHGEF19 128272
## 3046 ARHGEF5 7984
## 3047 ARID2 196528
## 3048 ARL14EP 120534
## 3049 ARL15 54622
## 3050 ARL16 339231
## 3051 ARL17B 51326
## 3052 ARL17B 100506084
## 3053 ARL17B 100996709
## 3054 ARL2 402
## 3055 ARL3 403
## 3056 ARMC5 79798
## 3057 ARMC6 93436
## 3058 ARMCX3 51566
## 3059 ARMH1 339541
## 3060 ARMT1 79624
## 3061 ARNTL2 56938
## 3062 ARV1 64801
## 3063 ASB1 51665
## 3064 ASB13 79754
## 3065 ASB3 51130
## 3066 ASB3 100302652
## 3067 ASB6 140459
## 3068 ASCC1 51008
## 3069 ASCC3 10973
## 3070 ASCL2 430
## 3071 ASGR1 432
## 3072 ASIC3 9311
## 3073 ASPM 259266
## 3074 ASPSCR1 79058
## 3075 ASTN2 23245
## 3076 ATAD1 84896
## 3077 ATAD3A 55210
## 3078 ATAD3B 83858
## 3079 ATAD5 79915
## 3080 ATE1 11101
## 3081 ATF1 466
## 3082 ATF5 22809
## 3083 ATG16L1 55054
## 3084 ATG4A 115201
## 3085 ATG4D 84971
## 3086 ATL1 51062
## 3087 ATP10D 57205
## 3088 ATP11C 286410
## 3089 ATP13A2 23400
## 3090 ATP6V0A2 23545
## 3091 ATP8B3 148229
## 3092 ATP9B 374868
## 3093 ATPAF2 91647
## 3094 ATR 545
## 3095 ATRIP 84126
## 3096 ATXN10 25814
## 3097 ATXN2 6311
## 3098 ATXN3 4287
## 3099 ATXN7L3B 552889
## 3100 AUH 549
## 3101 AURKA 6790
## 3102 AURKB 9212
## 3103 AXIN1 8312
## 3104 AZIN2 113451
## 3105 B3GALNT2 148789
## 3106 B3GLCT 145173
## 3107 B3GNTL1 146712
## 3108 B4GALNT2 124872
## 3109 B4GALT7 11285
## 3110 B4GAT1 11041
## 3111 B9D2 80776
## 3112 BAD 572
## 3113 BAG2 9532
## 3114 BAG3 9531
## 3115 BAG5 9529
## 3116 BAHD1 22893
## 3117 BAIAP2 10458
## 3118 BAMBI 25805
## 3119 BANP 54971
## 3120 BARD1 580
## 3121 BATF3 55509
## 3122 BBC3 27113
## 3123 BBOF1 80127
## 3124 BBS10 79738
## 3125 BBS12 166379
## 3126 BBS5 129880
## 3127 BBS7 55212
## 3128 BCAS4 55653
## 3129 BCAT2 587
## 3130 BCL11A 53335
## 3131 BCL2L13 23786
## 3132 BCL2L15 440603
## 3133 BCL2L2 599
## 3134 BCLAF3 256643
## 3135 BCOR 54880
## 3136 BCS1L 617
## 3137 BEND5 79656
## 3138 BEND7 222389
## 3139 BET1L 51272
## 3140 BEX2 84707
## 3141 BEX5 340542
## 3142 BFAR 51283
## 3143 BICDL1 92558
## 3144 BICRA 29998
## 3145 BIRC5 332
## 3146 BLM 641
## 3147 BLOC1S3 388552
## 3148 BLOC1S4 55330
## 3149 BMP1 649
## 3150 BMP6 654
## 3151 BMP8B 656
## 3152 BNIPL 149428
## 3153 BOD1 91272
## 3154 BOLA2B 552900
## 3155 BOLA2B 654483
## 3156 BOP1 23246
## 3157 BORA 79866
## 3158 BPHL 670
## 3159 BPNT2 54928
## 3160 BRAP 8315
## 3161 BRCA1 672
## 3162 BRCA2 675
## 3163 BRD1 23774
## 3164 BRD3OS 266655
## 3165 BRD9 65980
## 3166 BRF1 2972
## 3167 BRICD5 283870
## 3168 BRIP1 83990
## 3169 BTBD3 22903
## 3170 BTBD6 90135
## 3171 BTBD7 55727
## 3172 BTG3 10950
## 3173 BTLA 151888
## 3174 BTRC 8945
## 3175 BUB1B 701
## 3176 BUD13 84811
## 3177 C10orf143 387723
## 3178 C11orf1 64776
## 3179 C11orf49 79096
## 3180 C12orf4 57102
## 3181 C12orf45 121053
## 3182 C12orf73 728568
## 3183 C12orf76 400073
## 3184 C14orf28 122525
## 3185 C15orf61 145853
## 3186 C16orf74 404550
## 3187 C16orf86 388284
## 3188 C16orf87 388272
## 3189 C16orf91 283951
## 3190 C17orf80 55028
## 3191 C18orf21 83608
## 3192 C18orf54 162681
## 3193 C19orf47 126526
## 3194 C1orf109 54955
## 3195 C1orf112 55732
## 3196 C1orf116 79098
## 3197 C1orf159 54991
## 3198 C1orf198 84886
## 3199 C1orf35 79169
## 3200 C1orf50 79078
## 3201 C1orf54 79630
## 3202 C1QTNF6 114904
## 3203 C21orf58 54058
## 3204 C21orf62 56245
## 3205 C22orf34 348645
## 3206 C22orf39 128977
## 3207 C2orf49 79074
## 3208 C2orf69 205327
## 3209 C3orf14 57415
## 3210 C4orf46 201725
## 3211 C5 727
## 3212 C5orf22 55322
## 3213 C5orf24 134553
## 3214 C6orf120 387263
## 3215 C6orf136 221545
## 3216 C6orf226 441150
## 3217 C7orf26 79034
## 3218 C7orf31 136895
## 3219 C8orf33 65265
## 3220 C8orf58 541565
## 3221 C8orf82 414919
## 3222 C9orf139 NA
## 3223 C9orf40 55071
## 3224 C9orf64 84267
## 3225 CA11 770
## 3226 CA13 377677
## 3227 CA8 767
## 3228 CABLES2 81928
## 3229 CABP4 57010
## 3230 CACFD1 11094
## 3231 CACNA1I 8911
## 3232 CACNB1 782
## 3233 CACTIN 58509
## 3234 CACYBP 27101
## 3235 CALHM2 51063
## 3236 CALHM5 254228
## 3237 CAMLG 819
## 3238 CAMTA1 23261
## 3239 CAND1 55832
## 3240 CAPN10 11132
## 3241 CAPN15 6650
## 3242 CAPN7 23473
## 3243 CAPS 828
## 3244 CARD9 64170
## 3245 CARMIL1 55604
## 3246 CARNMT1 138199
## 3247 CASP6 839
## 3248 CASP7 840
## 3249 CASP8AP2 9994
## 3250 CASR 846
## 3251 CASTOR1 652968
## 3252 CATIP 375307
## 3253 CATSPER1 117144
## 3254 CATSPERG 57828
## 3255 CAV2 858
## 3256 CBFA2T2 9139
## 3257 CBFA2T3 863
## 3258 CBFB 865
## 3259 CBLL1 79872
## 3260 CBR3 874
## 3261 CBWD2 150472
## 3262 CBX5 23468
## 3263 CBX8 57332
## 3264 CBY1 25776
## 3265 CC2D1A 54862
## 3266 CC2D2B 387707
## 3267 CCDC106 29903
## 3268 CCDC117 150275
## 3269 CCDC124 115098
## 3270 CCDC127 133957
## 3271 CCDC130 81576
## 3272 CCDC134 79879
## 3273 CCDC137 339230
## 3274 CCDC138 165055
## 3275 CCDC142 84865
## 3276 CCDC15 80071
## 3277 CCDC153 283152
## 3278 CCDC18 343099
## 3279 CCDC189 90835
## 3280 CCDC28B 79140
## 3281 CCDC30 728621
## 3282 CCDC32 90416
## 3283 CCDC57 284001
## 3284 CCDC61 729440
## 3285 CCDC65 85478
## 3286 CCDC77 84318
## 3287 CCDC80 151887
## 3288 CCDC86 79080
## 3289 CCDC96 257236
## 3290 CCDC9B 388115
## 3291 CCL24 6369
## 3292 CCL3 6348
## 3293 CCNA2 890
## 3294 CCNB1 891
## 3295 CCNB1IP1 57820
## 3296 CCNB2 9133
## 3297 CCNE1 898
## 3298 CCNF 899
## 3299 CCNJ 54619
## 3300 CCNQ 92002
## 3301 CCNYL1 151195
## 3302 CCP110 9738
## 3303 CD160 11126
## 3304 CD1C 911
## 3305 CD2AP 23607
## 3306 CD40 958
## 3307 CD72 971
## 3308 CDC20 991
## 3309 CDC23 8697
## 3310 CDC25A 993
## 3311 CDC42BPA 8476
## 3312 CDC45 8318
## 3313 CDC6 990
## 3314 CDC7 8317
## 3315 CDCA2 157313
## 3316 CDCA5 113130
## 3317 CDCA7 83879
## 3318 CDCA8 55143
## 3319 CDH13 1012
## 3320 CDHR1 92211
## 3321 CDIN1 84529
## 3322 CDK1 983
## 3323 CDK2 1017
## 3324 CDK20 23552
## 3325 CDK3 1018
## 3326 CDK5 1020
## 3327 CDK5RAP1 51654
## 3328 CDK6 1021
## 3329 CDK7 1022
## 3330 CDKL1 8814
## 3331 CDKL5 6792
## 3332 CDKN1C 1028
## 3333 CDKN2AIP 55602
## 3334 CDKN3 1033
## 3335 CDPF1 150383
## 3336 CDR2 1039
## 3337 CDT1 81620
## 3338 CDYL 9425
## 3339 CDYL2 124359
## 3340 CELF3 11189
## 3341 CEMP1 752014
## 3342 CENPA 1058
## 3343 CENPBD1 92806
## 3344 CENPC 1060
## 3345 CENPE 1062
## 3346 CENPF 1063
## 3347 CENPJ 55835
## 3348 CENPK 64105
## 3349 CENPL 91687
## 3350 CENPM 79019
## 3351 CENPN 55839
## 3352 CENPO 79172
## 3353 CENPQ 55166
## 3354 CENPS 378708
## 3355 CENPU 79682
## 3356 CENPX 201254
## 3357 CEP104 9731
## 3358 CEP120 153241
## 3359 CEP128 145508
## 3360 CEP131 22994
## 3361 CEP135 9662
## 3362 CEP152 22995
## 3363 CEP162 22832
## 3364 CEP20 123811
## 3365 CEP295 85459
## 3366 CEP44 80817
## 3367 CEP55 55165
## 3368 CEP57 9702
## 3369 CEP57L1 285753
## 3370 CEP76 79959
## 3371 CEP83 51134
## 3372 CEP85 64793
## 3373 CERS6 253782
## 3374 CES2 8824
## 3375 CES4A 283848
## 3376 CFAP251 144406
## 3377 CFAP36 112942
## 3378 CFAP410 755
## 3379 CFDP1 10428
## 3380 CHAC2 494143
## 3381 CHAF1B 8208
## 3382 CHAMP1 283489
## 3383 CHCHD1 118487
## 3384 CHCHD10 400916
## 3385 CHCHD5 84269
## 3386 CHCHD6 84303
## 3387 CHD1L 9557
## 3388 CHD9 80205
## 3389 CHEK1 1111
## 3390 CHERP 10523
## 3391 CHID1 66005
## 3392 CHORDC1 26973
## 3393 CHRNA10 57053
## 3394 CHRNE 1145
## 3395 CHST14 113189
## 3396 CHST7 56548
## 3397 CIAO3 64428
## 3398 CILK1 22858
## 3399 CIP2A 57650
## 3400 CISD1 55847
## 3401 CIT 11113
## 3402 CKAP2 26586
## 3403 CKB 1152
## 3404 CLASP2 23122
## 3405 CLCC1 23155
## 3406 CLCF1 23529
## 3407 CLDN12 9069
## 3408 CLIP4 79745
## 3409 CLK2 1196
## 3410 CLOCK 9575
## 3411 CLPP 8192
## 3412 CLPTM1 1209
## 3413 CLSPN 63967
## 3414 CLTCL1 8218
## 3415 CLUAP1 23059
## 3416 CLUH 23277
## 3417 CMAS 55907
## 3418 CMC1 152100
## 3419 CMC2 56942
## 3420 CMC4 100272147
## 3421 CNOT3 4849
## 3422 CNOT9 9125
## 3423 CNPY4 245812
## 3424 CNTLN 54875
## 3425 COA1 55744
## 3426 COA4 51287
## 3427 COA6 388753
## 3428 COA7 65260
## 3429 COA8 84334
## 3430 COBLL1 22837
## 3431 COG6 57511
## 3432 COG8 84342
## 3433 COIL 8161
## 3434 COL8A2 1296
## 3435 COLEC12 81035
## 3436 COMMD4 54939
## 3437 COMTD1 118881
## 3438 COPS7B 64708
## 3439 COQ10A 93058
## 3440 COQ2 27235
## 3441 COQ4 51117
## 3442 COQ9 57017
## 3443 COX14 84987
## 3444 COX17 10063
## 3445 COX18 285521
## 3446 COX19 90639
## 3447 CPEB3 22849
## 3448 CPED1 79974
## 3449 CPLANE2 79363
## 3450 CPNE8 144402
## 3451 CPSF3 51692
## 3452 CPSF4 10898
## 3453 CPTP 80772
## 3454 CRACR2A 84766
## 3455 CRAMP1 57585
## 3456 CRCP 27297
## 3457 CREB3 10488
## 3458 CRELD1 78987
## 3459 CROCC 9696
## 3460 CRTC1 23373
## 3461 CRYGS 1427
## 3462 CRYL1 51084
## 3463 CRYM 1428
## 3464 CSE1L 1434
## 3465 CSF1 1435
## 3466 CSNK1G3 1456
## 3467 CSPP1 79848
## 3468 CSRNP2 81566
## 3469 CTCF 10664
## 3470 CTDSPL 10217
## 3471 CTDSPL2 51496
## 3472 CTNNAL1 8727
## 3473 CTNNBIP1 56998
## 3474 CTPS1 1503
## 3475 CTSF 8722
## 3476 CTU1 90353
## 3477 CTU2 348180
## 3478 CUL2 8453
## 3479 CUL4A 8451
## 3480 CUL5 8065
## 3481 CWC22 57703
## 3482 CXXC5 51523
## 3483 CYB5D1 124637
## 3484 CYP51A1 1595
## 3485 CYREN 78996
## 3486 CZIB 54987
## 3487 D2HGDH 728294
## 3488 DAAM1 23002
## 3489 DAB2 1601
## 3490 DAB2 112267931
## 3491 DAGLA 747
## 3492 DALRD3 55152
## 3493 DAPK3 1613
## 3494 DARS1 1615
## 3495 DARS2 55157
## 3496 DBF4 10926
## 3497 DBP 1628
## 3498 DBT 1629
## 3499 DCAF17 80067
## 3500 DCAF6 55827
## 3501 DCLRE1A 9937
## 3502 DCLRE1B 64858
## 3503 DCP1A 55802
## 3504 DCUN1D3 123879
## 3505 DDA1 79016
## 3506 DDB2 1643
## 3507 DDHD1 80821
## 3508 DDI2 84301
## 3509 DDT 1652
## 3510 DDT 100037417
## 3511 DDX18 8886
## 3512 DDX19B 11269
## 3513 DDX28 55794
## 3514 DDX51 317781
## 3515 DDX52 11056
## 3516 DDX54 79039
## 3517 DEAF1 10522
## 3518 DECR2 26063
## 3519 DELE1 9812
## 3520 DENND1A 57706
## 3521 DENND5B 160518
## 3522 DENND6B 414918
## 3523 DENR 8562
## 3524 DERA 51071
## 3525 DESI2 51029
## 3526 DEXI 28955
## 3527 DGKG 1608
## 3528 DHFR2 200895
## 3529 DHODH 1723
## 3530 DHRS1 115817
## 3531 DHRS11 79154
## 3532 DHRS3 9249
## 3533 DHRS7B 25979
## 3534 DHRSX 207063
## 3535 DHX29 54505
## 3536 DHX30 22907
## 3537 DHX33 56919
## 3538 DHX37 57647
## 3539 DHX38 9785
## 3540 DIABLO 56616
## 3541 DIMT1 27292
## 3542 DIPK1A 388650
## 3543 DIS3 22894
## 3544 DIS3L 115752
## 3545 DLAT 1737
## 3546 DLG1 1739
## 3547 DLGAP4 22839
## 3548 DLGAP5 9787
## 3549 DLST 1743
## 3550 DMAC1 90871
## 3551 DNA2 1763
## 3552 DNAAF4 161582
## 3553 DNAAF5 54919
## 3554 DNAH1 25981
## 3555 DNAJB4 11080
## 3556 DNAJC17 55192
## 3557 DNAJC18 202052
## 3558 DNAJC19 131118
## 3559 DNAJC27 51277
## 3560 DNAJC30 84277
## 3561 DNAJC9 23234
## 3562 DNAL1 83544
## 3563 DNAL4 10126
## 3564 DNLZ 728489
## 3565 DNM1L 10059
## 3566 DNM3 26052
## 3567 DNPH1 10591
## 3568 DOCK7 85440
## 3569 DOK4 55715
## 3570 DOLK 22845
## 3571 DONSON 29980
## 3572 DOP1A 23033
## 3573 DOP1B 9980
## 3574 DOT1L 84444
## 3575 DPH1 1801
## 3576 DPH2 1802
## 3577 DPH3P1 NA
## 3578 DPH5 51611
## 3579 DPM3 54344
## 3580 DPY19L1 23333
## 3581 DPY19L4 286148
## 3582 DRG2 1819
## 3583 DSCC1 79075
## 3584 DSN1 79980
## 3585 DSTN 11034
## 3586 DSTYK 25778
## 3587 DTL 51514
## 3588 DTNBP1 84062
## 3589 DTWD2 285605
## 3590 DTX1 1840
## 3591 DTX3 196403
## 3592 DUS2 54920
## 3593 DUS3L 56931
## 3594 DUSP12 11266
## 3595 DUSP13 51207
## 3596 DUSP18 150290
## 3597 DUSP23 54935
## 3598 DUSP7 1849
## 3599 DVL1 1855
## 3600 DVL2 1856
## 3601 DVL3 1857
## 3602 DYRK1B 9149
## 3603 E2F5 1875
## 3604 E2F6 1876
## 3605 E4F1 1877
## 3606 EBPL 84650
## 3607 ECHDC2 55268
## 3608 ECI1 1632
## 3609 ECI2 10455
## 3610 ECSIT 51295
## 3611 ECT2 1894
## 3612 EDC3 80153
## 3613 EDRF1 26098
## 3614 EEA1 8411
## 3615 EEF2KMT 196483
## 3616 EEFSEC 60678
## 3617 EEPD1 80820
## 3618 EFCAB11 90141
## 3619 EFCAB12 90288
## 3620 EFCAB7 84455
## 3621 EFEMP2 30008
## 3622 EFNA3 1944
## 3623 EFNA4 1945
## 3624 EFNB1 1947
## 3625 EGFL8 80864
## 3626 EHBP1 23301
## 3627 EHD4 30844
## 3628 EHMT2 10919
## 3629 EID2B 126272
## 3630 EIF2AK3 9451
## 3631 EIF2AK4 440275
## 3632 EIF5A2 56648
## 3633 ELAC1 55520
## 3634 ELK3 2004
## 3635 ELK4 2005
## 3636 ELMO3 79767
## 3637 ELOA 6924
## 3638 ELOVL3 83401
## 3639 ELOVL6 79071
## 3640 ELOVL7 79993
## 3641 ELP5 23587
## 3642 ELP6 54859
## 3643 EMC6 83460
## 3644 EMC8 10328
## 3645 EMD 2010
## 3646 EME1 146956
## 3647 EML6 400954
## 3648 EMSY 56946
## 3649 ENDOG 2021
## 3650 ENDOV 284131
## 3651 ENKD1 84080
## 3652 ENO3 2027
## 3653 ENPP4 22875
## 3654 ENTPD5 957
## 3655 ENTR1 10807
## 3656 EOGT 285203
## 3657 EOLA1 91966
## 3658 EOLA2 541578
## 3659 EPAS1 2034
## 3660 EPB41L5 57669
## 3661 EPDR1 54749
## 3662 EPHB1 2047
## 3663 EPHX2 2053
## 3664 EPS8L2 64787
## 3665 ERC1 23085
## 3666 ERCC2 2068
## 3667 ERCC3 2071
## 3668 ERCC4 2072
## 3669 ERCC6 2074
## 3670 ERCC6L 54821
## 3671 ERI2 112479
## 3672 ERI3 79033
## 3673 ERMAP 114625
## 3674 ERMARD 55780
## 3675 ERMP1 79956
## 3676 ERO1B 56605
## 3677 ESCO1 114799
## 3678 ESD 2098
## 3679 ESF1 51575
## 3680 ESPL1 9700
## 3681 ESS2 8220
## 3682 ETFBKMT 254013
## 3683 ETV3 2117
## 3684 EVA1B 55194
## 3685 EVI5L 115704
## 3686 EXO5 64789
## 3687 EXOC2 55770
## 3688 EXOSC1 51013
## 3689 EXOSC5 56915
## 3690 EXOSC7 23016
## 3691 EXTL2 2135
## 3692 EYA3 2140
## 3693 EZH2 2146
## 3694 F12 2161
## 3695 FAAH 2166
## 3696 FAAP100 80233
## 3697 FAAP20 199990
## 3698 FAAP24 91442
## 3699 FADS1 3992
## 3700 FADS3 3995
## 3701 FAF2 23197
## 3702 FAHD1 81889
## 3703 FAHD2A 51011
## 3704 FAHD2B 151313
## 3705 FAM102B 284611
## 3706 FAM104B 90736
## 3707 FAM114A2 10827
## 3708 FAM120AOS 158293
## 3709 FAM124B 79843
## 3710 FAM126A 84668
## 3711 FAM149B1 317662
## 3712 FAM151B 167555
## 3713 FAM156A 29057
## 3714 FAM160B2 64760
## 3715 FAM174C 55009
## 3716 FAM185A 222234
## 3717 FAM189B 10712
## 3718 FAM193A 8603
## 3719 FAM207A 85395
## 3720 FAM20B 9917
## 3721 FAM20C 56975
## 3722 FAM216A 29902
## 3723 FAM3C 10447
## 3724 FAM43A 131583
## 3725 FAM71F2 346653
## 3726 FAM83H 286077
## 3727 FAM86B1 85002
## 3728 FAM98A 25940
## 3729 FAM98C 147965
## 3730 FANCD2 2177
## 3731 FANCE 2178
## 3732 FANCG 2189
## 3733 FANCI 55215
## 3734 FANCL 55120
## 3735 FANCM 57697
## 3736 FARP1 10160
## 3737 FARS2 10667
## 3738 FARSA 2193
## 3739 FASTKD1 79675
## 3740 FBF1 85302
## 3741 FBLN5 10516
## 3742 FBN2 2201
## 3743 FBXL13 222235
## 3744 FBXL15 79176
## 3745 FBXL18 80028
## 3746 FBXL19 54620
## 3747 FBXL4 26235
## 3748 FBXL6 26233
## 3749 FBXL8 55336
## 3750 FBXO10 26267
## 3751 FBXO25 26260
## 3752 FBXO28 23219
## 3753 FBXO31 79791
## 3754 FBXO45 200933
## 3755 FBXO5 26271
## 3756 FBXO8 26269
## 3757 FBXW8 26259
## 3758 FBXW9 84261
## 3759 FCGBP 8857
## 3760 FCRLB 127943
## 3761 FCSK 197258
## 3762 FDX2 112812
## 3763 FDXR 2232
## 3764 FEM1A 55527
## 3765 FEN1 2237
## 3766 FER 2241
## 3767 FFAR3 2865
## 3768 FGFR1 2260
## 3769 FGFRL1 53834
## 3770 FHIT 2272
## 3771 FHL1 2273
## 3772 FHL2 2274
## 3773 FIGNL1 63979
## 3774 FIP1L1 81608
## 3775 FIZ1 84922
## 3776 FKBP14 55033
## 3777 FKBP3 2287
## 3778 FKBP9 11328
## 3779 FKBPL 63943
## 3780 FKRP 79147
## 3781 FLAD1 80308
## 3782 FLT1 2321
## 3783 FLYWCH1 84256
## 3784 FLYWCH2 114984
## 3785 FN3K 64122
## 3786 FN3KRP 79672
## 3787 FNBP1L 54874
## 3788 FNIP2 57600
## 3789 FOCAD 54914
## 3790 FOLR2 2350
## 3791 FOXJ2 55810
## 3792 FOXM1 2305
## 3793 FOXP3 50943
## 3794 FOXP4 116113
## 3795 FRA10AC1 118924
## 3796 FRK 2444
## 3797 FRMD4A 55691
## 3798 FRS2 10818
## 3799 FRS3 10817
## 3800 FSCN1 6624
## 3801 FUCA1 2517
## 3802 FUOM 282969
## 3803 FUT10 84750
## 3804 FUT11 170384
## 3805 FUT8 2530
## 3806 FUZ 80199
## 3807 FZD2 2535
## 3808 FZD3 7976
## 3809 FZD5 7855
## 3810 G2E3 55632
## 3811 GABPB1 2553
## 3812 GABRR2 2570
## 3813 GALE 2582
## 3814 GALK2 2585
## 3815 GALNT12 79695
## 3816 GALNT6 11226
## 3817 GALT 2592
## 3818 GAMT 2593
## 3819 GAN 8139
## 3820 GANC 2595
## 3821 GART 2618
## 3822 GATA2 2624
## 3823 GATA3 2625
## 3824 GATAD1 57798
## 3825 GATB 5188
## 3826 GATD1 347862
## 3827 GBE1 2632
## 3828 GBF1 8729
## 3829 GCDH 2639
## 3830 GCHFR 2644
## 3831 GCLC 2729
## 3832 GCM1 8521
## 3833 GCSH 2653
## 3834 GDPD5 81544
## 3835 GDPGP1 390637
## 3836 GEMIN6 79833
## 3837 GEMIN7 79760
## 3838 GEMIN8 54960
## 3839 GEN1 348654
## 3840 GET1 7485
## 3841 GFER 2671
## 3842 GFM2 84340
## 3843 GFOD1 54438
## 3844 GFPT1 2673
## 3845 GGCX 2677
## 3846 GGH 8836
## 3847 GGT6 124975
## 3848 GGT7 2686
## 3849 GHDC 84514
## 3850 GID4 79018
## 3851 GINS1 9837
## 3852 GINS2 51659
## 3853 GINS3 64785
## 3854 GINS4 84296
## 3855 GIPC1 10755
## 3856 GKAP1 80318
## 3857 GLI1 2735
## 3858 GLI4 2738
## 3859 GLIPR1L2 144321
## 3860 GLT8D1 55830
## 3861 GLYCTK 132158
## 3862 GMEB1 10691
## 3863 GMEB2 26205
## 3864 GMNN 51053
## 3865 GMPPA 29926
## 3866 GNB1L 54584
## 3867 GNE 10020
## 3868 GNG7 2788
## 3869 GNGT2 2793
## 3870 GNL3 26354
## 3871 GNPAT 8443
## 3872 GOLGA6L4 643707
## 3873 GOLGA7B 401647
## 3874 GOLGA8H 728498
## 3875 GOLGA8N 643699
## 3876 GOLIM4 27333
## 3877 GOLPH3L 55204
## 3878 GOLT1B 51026
## 3879 GON7 84520
## 3880 GOPC 57120
## 3881 GP9 2815
## 3882 GPAM 57678
## 3883 GPATCH1 55094
## 3884 GPATCH11 253635
## 3885 GPATCH3 63906
## 3886 GPD1L 23171
## 3887 GPER1 2852
## 3888 GPKOW 27238
## 3889 GPLD1 2822
## 3890 GPN2 54707
## 3891 GPR137 56834
## 3892 GPR137B 7107
## 3893 GPR180 160897
## 3894 GPR35 2859
## 3895 GPR68 8111
## 3896 GPR82 27197
## 3897 GPRC5C 55890
## 3898 GPRIN1 114787
## 3899 GPX3 2878
## 3900 GRAMD1C 54762
## 3901 GRAMD2B 65983
## 3902 GRAMD4 23151
## 3903 GRB14 2888
## 3904 GRK5 2869
## 3905 GRWD1 83743
## 3906 GSE1 23199
## 3907 GSS 2937
## 3908 GSTM4 2948
## 3909 GSTZ1 2954
## 3910 GTF2E1 2960
## 3911 GTF2H3 2967
## 3912 GTF3C3 9330
## 3913 GTF3C4 9329
## 3914 GTPBP3 84705
## 3915 GTSE1 51512
## 3916 GUCY1A1 2982
## 3917 GUCY1B1 2983
## 3918 H2BC11 8970
## 3919 H2BC15 8341
## 3920 H2BC8 8339
## 3921 H3C6 8353
## 3922 H4C8 8365
## 3923 HAAO 23498
## 3924 HABP4 22927
## 3925 HACD2 201562
## 3926 HACD3 51495
## 3927 HACE1 57531
## 3928 HAPLN3 145864
## 3929 HARBI1 283254
## 3930 HARS1 3035
## 3931 HAUS2 55142
## 3932 HAUS5 23354
## 3933 HAUS6 54801
## 3934 HAUS7 55559
## 3935 HBS1L 10767
## 3936 HCFC1R1 54985
## 3937 HCFC2 29915
## 3938 HDAC11 79885
## 3939 HDDC2 51020
## 3940 HDGFL3 50810
## 3941 HDHD2 84064
## 3942 HDHD3 81932
## 3943 HEATR1 55127
## 3944 HEBP1 50865
## 3945 HECTD3 79654
## 3946 HECTD4 283450
## 3947 HELB 92797
## 3948 HELLS 3070
## 3949 HEMK1 51409
## 3950 HENMT1 113802
## 3951 HEXD 284004
## 3952 HGH1 51236
## 3953 HIBCH 26275
## 3954 HIKESHI 51501
## 3955 HILPDA 29923
## 3956 HINT2 84681
## 3957 HIP1R 9026
## 3958 HIVEP1 3096
## 3959 HJURP 55355
## 3960 HLA-DOA 3111
## 3961 HLA-DOB 3112
## 3962 HMBOX1 79618
## 3963 HMG20A 10363
## 3964 HMGB3 3149
## 3965 HMGCS1 3157
## 3966 HMGXB4 10042
## 3967 HNRNPAB 3182
## 3968 HOMER3 9454
## 3969 HOOK2 29911
## 3970 HOOK3 84376
## 3971 HPF1 54969
## 3972 HPS5 11234
## 3973 HRAS 3265
## 3974 HS6ST1 9394
## 3975 HSCB 150274
## 3976 HSD17B1 3292
## 3977 HSD17B12 51144
## 3978 HSD17B13 345275
## 3979 HSD17B7 51478
## 3980 HSD17B8 7923
## 3981 HSD3B7 80270
## 3982 HSF1 3297
## 3983 HSF4 3299
## 3984 HSPA4 3308
## 3985 HSPA4L 22824
## 3986 HSPBP1 23640
## 3987 HYAL2 8692
## 3988 IARS2 55699
## 3989 ICE1 23379
## 3990 ICOSLG 23308
## 3991 ID3 3399
## 3992 IDE 3416
## 3993 IDUA 3425
## 3994 IER5L 389792
## 3995 IFI27L1 122509
## 3996 IFNLR1 163702
## 3997 IFRD2 7866
## 3998 IFT122 55764
## 3999 IFT140 9742
## 4000 IFT27 11020
## 4001 IFT43 112752
## 4002 IFT80 57560
## 4003 IGFBP2 3485
## 4004 IGFBP4 3487
## 4005 IGFL4 444882
## 4006 IGHMBP2 3508
## 4007 IGSF8 93185
## 4008 IKZF4 64375
## 4009 IL17RC 84818
## 4010 IL18BP 10068
## 4011 IL21R 50615
## 4012 IL23A 51561
## 4013 IL24 11009
## 4014 ILKAP 80895
## 4015 ILVBL 10994
## 4016 IMP3 55272
## 4017 IMP4 92856
## 4018 IMPA1 3612
## 4019 INAFM1 255783
## 4020 INCENP 3619
## 4021 INF2 64423
## 4022 ING5 84289
## 4023 INO80 54617
## 4024 INO80B 83444
## 4025 INO80C 125476
## 4026 INPP5B 3633
## 4027 INPP5E 56623
## 4028 INSR 3643
## 4029 INTS10 55174
## 4030 INTS12 57117
## 4031 INTS13 55726
## 4032 INTS2 57508
## 4033 INTS4 92105
## 4034 INTS5 80789
## 4035 INTS6L 203522
## 4036 INTS7 25896
## 4037 INTS9 55756
## 4038 INTU 27152
## 4039 INVS 27130
## 4040 IPO13 9670
## 4041 IPO9 55705
## 4042 IPPK 64768
## 4043 IQCB1 9657
## 4044 IQCE 23288
## 4045 IRF2BP1 26145
## 4046 ISCA2 122961
## 4047 ISG20L2 81875
## 4048 ISOC1 51015
## 4049 ITGA1 3672
## 4050 ITGA9 3680
## 4051 ITGAV 3685
## 4052 ITPRIPL2 162073
## 4053 IWS1 55677
## 4054 IZUMO4 113177
## 4055 JADE3 9767
## 4056 JAG1 182
## 4057 JMJD4 65094
## 4058 JMJD7 100137047
## 4059 JOSD2 126119
## 4060 JUN 3725
## 4061 KANSL1L 151050
## 4062 KANSL3 55683
## 4063 KAT2A 2648
## 4064 KAT6B 23522
## 4065 KATNA1 11104
## 4066 KATNAL1 84056
## 4067 KATNB1 10300
## 4068 KATNIP 23247
## 4069 KBTBD3 143879
## 4070 KCNA2 3737
## 4071 KCNA3 3738
## 4072 KCNC4 3749
## 4073 KCND1 3750
## 4074 KCNE1 3753
## 4075 KCNIP2 30819
## 4076 KCNK5 8645
## 4077 KCNMB1 3779
## 4078 KCNMB3 27094
## 4079 KCNMB4 27345
## 4080 KCNN3 3782
## 4081 KCNQ5 56479
## 4082 KCTD11 147040
## 4083 KCTD13 253980
## 4084 KCTD15 79047
## 4085 KCTD17 79734
## 4086 KCTD18 130535
## 4087 KCTD3 51133
## 4088 KCTD5 54442
## 4089 KCTD9 54793
## 4090 KDM4A 9682
## 4091 KDM8 79831
## 4092 KHDC4 22889
## 4093 KHK 3795
## 4094 KIAA0319 9856
## 4095 KIAA1191 57179
## 4096 KIAA1586 57691
## 4097 KIAA1614 57710
## 4098 KIAA1841 84542
## 4099 KIF11 3832
## 4100 KIF13B 23303
## 4101 KIF15 56992
## 4102 KIF18B 146909
## 4103 KIF20B 9585
## 4104 KIF23 9493
## 4105 KIF24 347240
## 4106 KIF2C 11004
## 4107 KIFAP3 22920
## 4108 KIFC1 3833
## 4109 KIZ 55857
## 4110 KLC4 89953
## 4111 KLF5 688
## 4112 KLHDC10 23008
## 4113 KLHDC4 54758
## 4114 KLHL11 55175
## 4115 KLHL17 339451
## 4116 KLHL18 23276
## 4117 KLHL20 27252
## 4118 KLHL22 84861
## 4119 KLHL25 64410
## 4120 KLHL26 55295
## 4121 KLHL28 54813
## 4122 KMT5C 84787
## 4123 KNL1 57082
## 4124 KNSTRN 90417
## 4125 KNTC1 9735
## 4126 KPNA3 3839
## 4127 KRBA1 84626
## 4128 KRBA2 124751
## 4129 KRIT1 889
## 4130 KRR1 11103
## 4131 KRT18 3875
## 4132 KRTCAP3 200634
## 4133 L3MBTL2 83746
## 4134 L3MBTL4 91133
## 4135 LAGE3 8270
## 4136 LAMB3 3914
## 4137 LAMC1 3915
## 4138 LANCL3 347404
## 4139 LAPTM4B 55353
## 4140 LARP1B 55132
## 4141 LARP4 113251
## 4142 LARS2 23395
## 4143 LAS1L 81887
## 4144 LAX1 54900
## 4145 LCLAT1 253558
## 4146 LCMT1 51451
## 4147 LCORL 254251
## 4148 LDLRAD3 143458
## 4149 LDOC1 23641
## 4150 LENG1 79165
## 4151 LENG9 94059
## 4152 LEPR 3953
## 4153 LETM2 137994
## 4154 LHPP 64077
## 4155 LHX4 89884
## 4156 LIAS 11019
## 4157 LIG3 3980
## 4158 LILRB5 10990
## 4159 LIMS2 55679
## 4160 LIN37 55957
## 4161 LIN52 91750
## 4162 LIN54 132660
## 4163 LIN7C 55327
## 4164 LIN9 286826
## 4165 LIPH 200879
## 4166 LIPT1 51601
## 4167 LIPT2 387787
## 4168 LLGL1 3996
## 4169 LLGL2 3993
## 4170 LMAN2L 81562
## 4171 LMBR1 64327
## 4172 LMBRD2 92255
## 4173 LMF1 64788
## 4174 LMLN 89782
## 4175 LMOD3 56203
## 4176 LNX2 222484
## 4177 LONRF3 79836
## 4178 LOXHD1 125336
## 4179 LRCH1 23143
## 4180 LRCH3 84859
## 4181 LRFN1 57622
## 4182 LRFN4 78999
## 4183 LRMDA 83938
## 4184 LRP12 29967
## 4185 LRP6 4040
## 4186 LRP8 7804
## 4187 LRRC14 9684
## 4188 LRRC23 10233
## 4189 LRRC27 80313
## 4190 LRRC29 26231
## 4191 LRRC34 151827
## 4192 LRRC37A3 374819
## 4193 LRRC37B 114659
## 4194 LRRC40 55631
## 4195 LRRC45 201255
## 4196 LRRC46 90506
## 4197 LRRC47 57470
## 4198 LRRC58 116064
## 4199 LRRC61 65999
## 4200 LRRC7 57554
## 4201 LRRC8B 23507
## 4202 LRRCC1 85444
## 4203 LRRN2 10446
## 4204 LRSAM1 90678
## 4205 LSM11 134353
## 4206 LSM5 23658
## 4207 LSR 51599
## 4208 LSS 4047
## 4209 LTA 4049
## 4210 LTB4R2 56413
## 4211 LTBP3 4054
## 4212 LTBP4 8425
## 4213 LTK 4058
## 4214 LTO1 220064
## 4215 LYPLAL1 127018
## 4216 LYRM4 57128
## 4217 LYRM9 201229
## 4218 LZTS2 84445
## 4219 M1AP 130951
## 4220 MAB21L3 126868
## 4221 MACROH2A2 55506
## 4222 MAD2L1 4085
## 4223 MAFK 7975
## 4224 MAGI3 260425
## 4225 MALSU1 115416
## 4226 MAMDC4 158056
## 4227 MAN1C1 57134
## 4228 MAN2B2 23324
## 4229 MANBAL 63905
## 4230 MANEA 79694
## 4231 MANEAL 149175
## 4232 MAP1A 4130
## 4233 MAP1S 55201
## 4234 MAP2K5 5607
## 4235 MAP2K7 5609
## 4236 MAP3K10 4294
## 4237 MAP3K13 9175
## 4238 MAP3K21 84451
## 4239 MAP3K6 9064
## 4240 MAP4K5 11183
## 4241 MAP6D1 79929
## 4242 MAPK11 5600
## 4243 MAPK6 5597
## 4244 MAPK7 5598
## 4245 MAPK9 5601
## 4246 MAPRE2 10982
## 4247 MARCHF9 92979
## 4248 MARS2 92935
## 4249 MASTL 84930
## 4250 MB21D2 151963
## 4251 MBD1 4152
## 4252 MBD5 55777
## 4253 MBTD1 54799
## 4254 MBTPS2 51360
## 4255 MC1R 4157
## 4256 MCAT 27349
## 4257 MCC 4163
## 4258 MCCC2 64087
## 4259 MCF2L 23263
## 4260 MCM2 4171
## 4261 MCM3 4172
## 4262 MCM8 84515
## 4263 MCM9 254394
## 4264 MCUB 55013
## 4265 MCUR1 63933
## 4266 MDN1 23195
## 4267 MDP1 145553
## 4268 ME3 10873
## 4269 MECR 51102
## 4270 MED10 84246
## 4271 MED12L 116931
## 4272 MED14 9282
## 4273 MED17 9440
## 4274 MED18 54797
## 4275 MED19 219541
## 4276 MED21 9412
## 4277 MED27 9442
## 4278 MED6 10001
## 4279 MED7 9443
## 4280 MED9 55090
## 4281 MEF2B 4207
## 4282 MEF2B 100271849
## 4283 MEGF8 1954
## 4284 MEI1 150365
## 4285 MEIS1 4211
## 4286 MELK 9833
## 4287 MEN1 4221
## 4288 MEOX1 4222
## 4289 METAP1 23173
## 4290 METTL14 57721
## 4291 METTL3 56339
## 4292 METTL4 64863
## 4293 MEX3C 51320
## 4294 MFN1 55669
## 4295 MFSD11 79157
## 4296 MFSD3 113655
## 4297 MFSD6 54842
## 4298 MGA 23269
## 4299 MGMT 4255
## 4300 MIB2 142678
## 4301 MIEF1 54471
## 4302 MIEF2 125170
## 4303 MIER2 54531
## 4304 MIER3 166968
## 4305 MIF 4282
## 4306 MIGA1 374986
## 4307 MINDY3 80013
## 4308 MITF 4286
## 4309 MKS1 54903
## 4310 MLH1 4292
## 4311 MLLT10 8028
## 4312 MLLT11 10962
## 4313 MLST8 64223
## 4314 MLYCD 23417
## 4315 MMAB 326625
## 4316 MMP14 4323
## 4317 MMP17 4326
## 4318 MMP19 4327
## 4319 MMS19 64210
## 4320 MMS22L 253714
## 4321 MMUT 4594
## 4322 MND1 84057
## 4323 MOB1B 92597
## 4324 MOB3B 79817
## 4325 MON1A 84315
## 4326 MORN2 729967
## 4327 MORN3 283385
## 4328 MPHOSPH9 10198
## 4329 MPP5 64398
## 4330 MPP6 51678
## 4331 MPST 4357
## 4332 MPV17L 255027
## 4333 MPV17L2 84769
## 4334 MRAS 22808
## 4335 MRE11 4361
## 4336 MREG 55686
## 4337 MRGBP 55257
## 4338 MRM1 79922
## 4339 MRM2 29960
## 4340 MRM3 55178
## 4341 MROH1 727957
## 4342 MROH6 642475
## 4343 MRPL12 6182
## 4344 MRPL14 64928
## 4345 MRPL16 54948
## 4346 MRPL17 63875
## 4347 MRPL19 9801
## 4348 MRPL2 51069
## 4349 MRPL33 9553
## 4350 MRPL4 51073
## 4351 MRPL41 64975
## 4352 MRPL42 28977
## 4353 MRPL43 84545
## 4354 MRPL45 84311
## 4355 MRPL46 26589
## 4356 MRPL48 51642
## 4357 MRPL49 740
## 4358 MRPL53 116540
## 4359 MRPL55 128308
## 4360 MRPL57 78988
## 4361 MRPS11 64963
## 4362 MRPS12 6183
## 4363 MRPS16 51021
## 4364 MRPS17 51373
## 4365 MRPS2 51116
## 4366 MRPS23 51649
## 4367 MRPS24 64951
## 4368 MRPS25 64432
## 4369 MRPS26 64949
## 4370 MRPS28 28957
## 4371 MRPS35 60488
## 4372 MRPS5 64969
## 4373 MRPS6 64968
## 4374 MRPS9 64965
## 4375 MRTO4 51154
## 4376 MSH2 4436
## 4377 MSH6 2956
## 4378 MSI2 124540
## 4379 MSMO1 6307
## 4380 MSRB3 253827
## 4381 MST1L 11223
## 4382 MTA1 9112
## 4383 MTCP1 4515
## 4384 MTERF2 80298
## 4385 MTERF4 130916
## 4386 MTF2 22823
## 4387 MTFR1 9650
## 4388 MTFR2 113115
## 4389 MTG1 92170
## 4390 MTHFD1 4522
## 4391 MTHFD1L 25902
## 4392 MTHFD2L 441024
## 4393 MTHFSD 64779
## 4394 MTLN 205251
## 4395 MTM1 4534
## 4396 MTMR11 10903
## 4397 MTMR2 8898
## 4398 MTMR9 66036
## 4399 MTRES1 51250
## 4400 MTREX 23517
## 4401 MTRF1 9617
## 4402 MTRF1L 54516
## 4403 MUS81 80198
## 4404 MUSTN1 389125
## 4405 MUTYH 4595
## 4406 MVB12A 93343
## 4407 MVD 4597
## 4408 MVK 4598
## 4409 MYB 4602
## 4410 MYBBP1A 10514
## 4411 MYH10 4628
## 4412 MYL5 4636
## 4413 MYNN 55892
## 4414 MYO1A 4640
## 4415 MYO1D 4642
## 4416 MYO9A 4649
## 4417 MYORG 57462
## 4418 MYZAP 100820829
## 4419 MZF1 7593
## 4420 MZT2A 653784
## 4421 MZT2B 80097
## 4422 N4BP2 55728
## 4423 NAA15 80155
## 4424 NAA16 79612
## 4425 NAA30 122830
## 4426 NAA35 60560
## 4427 NAA80 24142
## 4428 NAALADL1 10004
## 4429 NADK2 133686
## 4430 NAE1 8883
## 4431 NAGLU 4669
## 4432 NAGPA 51172
## 4433 NAGS 162417
## 4434 NANP 140838
## 4435 NAPB 63908
## 4436 NAPG 8774
## 4437 NAT1 9
## 4438 NAT14 57106
## 4439 NAT9 26151
## 4440 NAV1 89796
## 4441 NAXD 55739
## 4442 NBDY 550643
## 4443 NBEAL1 65065
## 4444 NBPF1 55672
## 4445 NBPF11 200030
## 4446 NBPF12 149013
## 4447 NBPF3 84224
## 4448 NCAPD3 23310
## 4449 NCAPG 64151
## 4450 NCAPG2 54892
## 4451 NCAPH 23397
## 4452 NCBP1 4686
## 4453 NCBP2AS2 152217
## 4454 NCBP3 55421
## 4455 NCKAP1 10787
## 4456 NCKAP5L 57701
## 4457 NCOR2 9612
## 4458 NCR1 9437
## 4459 NCR3 259197
## 4460 NDC1 55706
## 4461 NDC80 10403
## 4462 NDRG2 57447
## 4463 NDUFA7 4701
## 4464 NDUFA8 4702
## 4465 NDUFAB1 4706
## 4466 NDUFAF2 91942
## 4467 NDUFAF7 55471
## 4468 NDUFAF8 284184
## 4469 NDUFC1 4717
## 4470 NDUFS7 374291
## 4471 NDUFS8 4728
## 4472 NDUFV3 4731
## 4473 NECAB2 54550
## 4474 NECAB3 63941
## 4475 NEGR1 257194
## 4476 NEIL2 252969
## 4477 NEIL3 55247
## 4478 NEK1 4750
## 4479 NEK2 4751
## 4480 NEK4 6787
## 4481 NEK8 284086
## 4482 NELFA 7469
## 4483 NEMP1 23306
## 4484 NEMP2 100131211
## 4485 NEO1 4756
## 4486 NET1 10276
## 4487 NETO2 81831
## 4488 NEURL4 84461
## 4489 NEXN 91624
## 4490 NF2 4771
## 4491 NFATC1 4772
## 4492 NFATC2IP 84901
## 4493 NFIC 4782
## 4494 NFKBIB 4793
## 4495 NFKBID 84807
## 4496 NFKBIL1 4795
## 4497 NFS1 9054
## 4498 NFX1 4799
## 4499 NGLY1 55768
## 4500 NGRN 51335
## 4501 NHLRC2 374354
## 4502 NHLRC4 283948
## 4503 NIBAN3 199786
## 4504 NIFK 84365
## 4505 NIP7 51388
## 4506 NIPA1 123606
## 4507 NIPAL3 57185
## 4508 NIPSNAP1 8508
## 4509 NKAIN3 286183
## 4510 NKD1 85407
## 4511 NLE1 54475
## 4512 NLGN3 54413
## 4513 NME3 4832
## 4514 NME4 4833
## 4515 NMT2 9397
## 4516 NOB1 28987
## 4517 NOC4L 79050
## 4518 NOL12 79159
## 4519 NOL8 55035
## 4520 NOP14 8602
## 4521 NOP16 51491
## 4522 NOP9 161424
## 4523 NOTCH4 4855
## 4524 NPAT 4863
## 4525 NPDC1 56654
## 4526 NPFF 8620
## 4527 NPHP3 27031
## 4528 NPIPA7 101059938
## 4529 NPIPB11 728888
## 4530 NPIPB5 100132247
## 4531 NPRL2 10641
## 4532 NPRL3 8131
## 4533 NPTXR 23467
## 4534 NR1D1 9572
## 4535 NR1H3 10062
## 4536 NR2C2AP 126382
## 4537 NR4A1 3164
## 4538 NR6A1 2649
## 4539 NRDE2 55051
## 4540 NREP 9315
## 4541 NRF1 4899
## 4542 NRG1 3084
## 4543 NRL 4901
## 4544 NRROS 375387
## 4545 NSD2 7468
## 4546 NSDHL 50814
## 4547 NSG1 27065
## 4548 NSMCE3 56160
## 4549 NSRP1 84081
## 4550 NSUN2 54888
## 4551 NSUN3 63899
## 4552 NT5C3B 115024
## 4553 NT5DC3 51559
## 4554 NTAQ1 55093
## 4555 NTMT1 28989
## 4556 NUBP1 4682
## 4557 NUDCD1 84955
## 4558 NUDT1 4521
## 4559 NUDT13 25961
## 4560 NUDT14 256281
## 4561 NUDT17 200035
## 4562 NUDT18 79873
## 4563 NUDT2 318
## 4564 NUDT21 11051
## 4565 NUF2 83540
## 4566 NUGGC 389643
## 4567 NUP107 57122
## 4568 NUP155 9631
## 4569 NUP160 23279
## 4570 NUP205 23165
## 4571 NUP43 348995
## 4572 NUP85 79902
## 4573 NUP93 9688
## 4574 NUTM2D 728130
## 4575 NWD1 284434
## 4576 OAF 220323
## 4577 OBSCN 84033
## 4578 OCEL1 79629
## 4579 OCIAD2 132299
## 4580 OCRL 4952
## 4581 ODF2L 57489
## 4582 ODF3B 440836
## 4583 ODR4 54953
## 4584 OGFOD2 79676
## 4585 OGFOD3 79701
## 4586 OIP5 11339
## 4587 OLFM2 93145
## 4588 OMG 4974
## 4589 OMG 101927057
## 4590 OPLAH 26873
## 4591 OR1F1 4992
## 4592 ORC1 4998
## 4593 ORC2 4999
## 4594 ORC3 23595
## 4595 ORC6 23594
## 4596 OSBP 5007
## 4597 OSBPL7 114881
## 4598 OSGIN1 29948
## 4599 OTUD3 23252
## 4600 OTUD6B 51633
## 4601 OXCT1 5019
## 4602 OXER1 165140
## 4603 P2RX4 5025
## 4604 P2RY12 64805
## 4605 P3H1 64175
## 4606 P3H4 10609
## 4607 P4HTM 54681
## 4608 PACS2 23241
## 4609 PAFAH1B3 5050
## 4610 PAK4 10298
## 4611 PALB2 79728
## 4612 PANX1 24145
## 4613 PAOX 196743
## 4614 PAPLN 89932
## 4615 PAPSS2 9060
## 4616 PAQR7 164091
## 4617 PARD3 56288
## 4618 PARD6A 50855
## 4619 PARD6G 84552
## 4620 PARG 8505
## 4621 PARP11 57097
## 4622 PARP2 10038
## 4623 PARP3 10039
## 4624 PARPBP 55010
## 4625 PASK 23178
## 4626 PATZ1 23598
## 4627 PAWR 5074
## 4628 PAXBP1 94104
## 4629 PAXIP1 22976
## 4630 PBDC1 51260
## 4631 PBLD 64081
## 4632 PBX3 5090
## 4633 PCBD1 5092
## 4634 PCBP4 57060
## 4635 PCDH12 51294
## 4636 PCDHA4 56144
## 4637 PCGF1 84759
## 4638 PCGF6 84108
## 4639 PCK2 5106
## 4640 PCLAF 9768
## 4641 PCOLCE 5118
## 4642 PCYOX1 51449
## 4643 PCYOX1L 78991
## 4644 PCYT1B 9468
## 4645 PCYT2 5833
## 4646 PDCD2 5134
## 4647 PDE1B 5153
## 4648 PDE2A 5138
## 4649 PDE3A 5139
## 4650 PDE5A 8654
## 4651 PDE6B 5158
## 4652 PDE6D 5147
## 4653 PDE6G 5148
## 4654 PDHX 8050
## 4655 PDIA5 10954
## 4656 PDIK1L 149420
## 4657 PDK2 5164
## 4658 PDLIM5 10611
## 4659 PDP2 57546
## 4660 PDRG1 81572
## 4661 PDS5B 23047
## 4662 PEAK1 79834
## 4663 PEAK3 374872
## 4664 PEAR1 375033
## 4665 PELI3 246330
## 4666 PEMT 10400
## 4667 PEPD 5184
## 4668 PER2 8864
## 4669 PERP 64065
## 4670 PET117 100303755
## 4671 PEX1 5189
## 4672 PEX10 5192
## 4673 PEX11B 8799
## 4674 PEX13 5194
## 4675 PEX14 5195
## 4676 PEX19 5824
## 4677 PEX5 5830
## 4678 PFDN6 10471
## 4679 PFKM 5213
## 4680 PFN2 5217
## 4681 PGAP1 80055
## 4682 PGAP3 93210
## 4683 PGM3 5238
## 4684 PGP 283871
## 4685 PHACTR4 65979
## 4686 PHETA1 144717
## 4687 PHETA2 150368
## 4688 PHF14 9678
## 4689 PHF6 84295
## 4690 PHLDB3 653583
## 4691 PHLPP1 23239
## 4692 PHRF1 57661
## 4693 PHTF2 57157
## 4694 PHYH 5264
## 4695 PI16 221476
## 4696 PI4K2B 55300
## 4697 PIAS3 10401
## 4698 PICK1 9463
## 4699 PIDD1 55367
## 4700 PIF1 80119
## 4701 PIGB 9488
## 4702 PIGBOS1 101928527
## 4703 PIGC 5279
## 4704 PIGF 5281
## 4705 PIGN 23556
## 4706 PIGQ 9091
## 4707 PIGW 284098
## 4708 PIGZ 80235
## 4709 PIK3R2 5296
## 4710 PIK3R4 30849
## 4711 PIK3R6 146850
## 4712 PIN4 5303
## 4713 PINX1 54984
## 4714 PIP5K1C 23396
## 4715 PIWIL4 143689
## 4716 PKD2 5311
## 4717 PKHD1L1 93035
## 4718 PKIG 11142
## 4719 PKP4 8502
## 4720 PLA2G12A 81579
## 4721 PLA2G4B 100137049
## 4722 PLA2G6 8398
## 4723 PLA2G7 7941
## 4724 PLAG1 5324
## 4725 PLCB3 5331
## 4726 PLCD1 5333
## 4727 PLCD3 113026
## 4728 PLCE1 51196
## 4729 PLCH2 9651
## 4730 PLD1 5337
## 4731 PLD6 201164
## 4732 PLEKHA3 65977
## 4733 PLEKHA8 84725
## 4734 PLEKHB1 58473
## 4735 PLEKHF1 79156
## 4736 PLEKHG4 25894
## 4737 PLK1 5347
## 4738 PLK2 10769
## 4739 PLK4 10733
## 4740 PLOD3 8985
## 4741 PLPP3 8613
## 4742 PLXNA1 5361
## 4743 PLXNA3 55558
## 4744 PM20D2 135293
## 4745 PMPCA 23203
## 4746 PNKP 11284
## 4747 PNMA1 9240
## 4748 PNMA3 29944
## 4749 PNPLA7 375775
## 4750 POGLUT3 143888
## 4751 POLA1 5422
## 4752 POLD1 5424
## 4753 POLD2 5425
## 4754 POLE2 5427
## 4755 POLG2 11232
## 4756 POLH 5429
## 4757 POLK 51426
## 4758 POLR1C 9533
## 4759 POLR1E 64425
## 4760 POLR2F 5435
## 4761 POLR2H 5437
## 4762 POLR2I 5438
## 4763 POLR2J2 246721
## 4764 POLR3B 55703
## 4765 POLR3G 10622
## 4766 POLR3H 171568
## 4767 POMGNT1 55624
## 4768 POMT1 10585
## 4769 POP4 10775
## 4770 POP5 51367
## 4771 POP7 10248
## 4772 PORCN 64840
## 4773 POU2F1 5451
## 4774 POU5F1 5460
## 4775 PPA2 27068
## 4776 PPAN 56342
## 4777 PPARA 5465
## 4778 PPARD 5467
## 4779 PPAT 5471
## 4780 PPEF1 5475
## 4781 PPIH 10465
## 4782 PPM1H 57460
## 4783 PPM1J 333926
## 4784 PPM1L 151742
## 4785 PPP1R13B 23368
## 4786 PPP1R16A 84988
## 4787 PPP1R32 220004
## 4788 PPP1R37 284352
## 4789 PPP1R3F 89801
## 4790 PPP1R8 5511
## 4791 PPP2R1B 5519
## 4792 PPP2R3B 28227
## 4793 PPP2R5E 5529
## 4794 PRADC1 84279
## 4795 PRC1 9055
## 4796 PRDM10 56980
## 4797 PRDM4 11108
## 4798 PRICKLE3 4007
## 4799 PRIM1 5557
## 4800 PRIM2 5558
## 4801 PRKAB2 5565
## 4802 PRKCE 5581
## 4803 PRKCI 5584
## 4804 PRKD3 23683
## 4805 PRMT3 10196
## 4806 PRMT7 54496
## 4807 PRMT9 90826
## 4808 PROCA1 147011
## 4809 PROSER3 148137
## 4810 PRPF4 9128
## 4811 PRPF40B 25766
## 4812 PRPS2 5634
## 4813 PRPSAP1 5635
## 4814 PRR11 55771
## 4815 PRR12 57479
## 4816 PRR29 92340
## 4817 PRR3 80742
## 4818 PRR5 55615
## 4819 PRRC1 133619
## 4820 PRRT4 401399
## 4821 PRSS36 146547
## 4822 PRTFDC1 56952
## 4823 PRX 57716
## 4824 PRXL2B 127281
## 4825 PSAT1 29968
## 4826 PSD3 23362
## 4827 PSKH1 5681
## 4828 PSMC3IP 29893
## 4829 PSMC4 5704
## 4830 PSMD11 5717
## 4831 PSMD3 5709
## 4832 PSMD5 5711
## 4833 PSMG2 56984
## 4834 PSMG4 389362
## 4835 PSPH 5723
## 4836 PSRC1 84722
## 4837 PSTK 118672
## 4838 PTDSS2 81490
## 4839 PTGIR 5739
## 4840 PTK2 5747
## 4841 PTK6 5753
## 4842 PTPMT1 114971
## 4843 PTPRS 5802
## 4844 PTRHD1 391356
## 4845 PTTG1 9232
## 4846 PUS1 80324
## 4847 PUS10 150962
## 4848 PUS7 54517
## 4849 PUS7L 83448
## 4850 PUSL1 126789
## 4851 PVRIG 79037
## 4852 PWWP2A 114825
## 4853 PWWP2B 170394
## 4854 PWWP3A 84939
## 4855 PXMP4 11264
## 4856 PYCR1 5831
## 4857 PYCR2 29920
## 4858 PYCR3 65263
## 4859 PYROXD1 79912
## 4860 QPRT 23475
## 4861 QSER1 79832
## 4862 QTRT1 81890
## 4863 R3HCC1 203069
## 4864 R3HDM1 23518
## 4865 RAB11FIP2 22841
## 4866 RAB11FIP3 9727
## 4867 RAB19 401409
## 4868 RAB27B 5874
## 4869 RAB2B 84932
## 4870 RAB30 27314
## 4871 RAB39B 116442
## 4872 RAB3A 5864
## 4873 RAB3IP 117177
## 4874 RAB40C 57799
## 4875 RABEP2 79874
## 4876 RABEPK 10244
## 4877 RABGAP1 23637
## 4878 RABGGTA 5875
## 4879 RABL2A 11159
## 4880 RABL3 285282
## 4881 RACGAP1 29127
## 4882 RAD17 5884
## 4883 RAD18 56852
## 4884 RAD50 10111
## 4885 RAD51 5888
## 4886 RAD51AP1 10635
## 4887 RAD51D 5892
## 4888 RAD54B 25788
## 4889 RAI1 10743
## 4890 RALGDS 5900
## 4891 RALGPS1 9649
## 4892 RAP1GDS1 5910
## 4893 RARG 5916
## 4894 RARS1 5917
## 4895 RASGRP3 25780
## 4896 RBBP8 5932
## 4897 RBBP9 10741
## 4898 RBFA 79863
## 4899 RBL1 5933
## 4900 RBM11 54033
## 4901 RBM12B 389677
## 4902 RBM14 10432
## 4903 RBM15 64783
## 4904 RBM18 92400
## 4905 RBM41 55285
## 4906 RBM43 375287
## 4907 RBM44 375316
## 4908 RBMX2 51634
## 4909 RBMXL1 494115
## 4910 RCC1L 81554
## 4911 RCE1 9986
## 4912 RCL1 10171
## 4913 RCN1 5954
## 4914 RDH10 157506
## 4915 RDX 5962
## 4916 RECQL5 9400
## 4917 REEP4 80346
## 4918 RELL2 285613
## 4919 RETSAT 54884
## 4920 REV1 51455
## 4921 REX1BD 55049
## 4922 REXO1 57455
## 4923 REXO4 57109
## 4924 REXO5 81691
## 4925 RFC1 5981
## 4926 RFC3 5983
## 4927 RFC4 5984
## 4928 RFC5 5985
## 4929 RFWD3 55159
## 4930 RFX1 5989
## 4931 RFXAP 5994
## 4932 RGPD8 727851
## 4933 RGS12 6002
## 4934 RGS16 6004
## 4935 RGS6 9628
## 4936 RHBDD3 25807
## 4937 RHD 6007
## 4938 RHOBTB1 9886
## 4939 RHOBTB2 23221
## 4940 RHPN1 114822
## 4941 RIMKLB 57494
## 4942 RIMS3 9783
## 4943 RIN1 9610
## 4944 RINL 126432
## 4945 RINT1 60561
## 4946 RIOX1 79697
## 4947 RITA1 84934
## 4948 RMC1 29919
## 4949 RMI1 80010
## 4950 RMI2 116028
## 4951 RMND5B 64777
## 4952 RNASEH1 246243
## 4953 RNF113A 7737
## 4954 RNF126 55658
## 4955 RNF144A 9781
## 4956 RNF168 165918
## 4957 RNF25 64320
## 4958 RNGTT 8732
## 4959 RNPC3 55599
## 4960 ROM1 6094
## 4961 ROMO1 140823
## 4962 RORC 6097
## 4963 RP9 6100
## 4964 RPAIN 84268
## 4965 RPF1 80135
## 4966 RPP21 79897
## 4967 RPP21 202658
## 4968 RPP25 54913
## 4969 RPP25L 138716
## 4970 RPRD1A 55197
## 4971 RPRD1B 58490
## 4972 RPS6KB1 6198
## 4973 RPS6KC1 26750
## 4974 RPUSD1 113000
## 4975 RPUSD2 27079
## 4976 RPUSD3 285367
## 4977 RREB1 6239
## 4978 RRM1 6240
## 4979 RRP1 8568
## 4980 RRP36 88745
## 4981 RRP8 23378
## 4982 RRP9 9136
## 4983 RRS1 23212
## 4984 RSAD1 55316
## 4985 RSKR 124923
## 4986 RSPRY1 89970
## 4987 RTEL1 51750
## 4988 RTL8A 26071
## 4989 RTN1 6252
## 4990 RTN2 6253
## 4991 RUFY2 55680
## 4992 RUSC1 23623
## 4993 RUSF1 64755
## 4994 RYR1 6261
## 4995 S100A13 6284
## 4996 S100PBP 64766
## 4997 S1PR2 9294
## 4998 SAC3D1 29901
## 4999 SACS 26278
## 5000 SAMD1 90378
## 5001 SAMD10 140700
## 5002 SAMD4B 55095
## 5003 SAMM50 25813
## 5004 SAPCD1 401251
## 5005 SARS2 54938
## 5006 SART3 9733
## 5007 SASS6 163786
## 5008 SAV1 60485
## 5009 SC5D 6309
## 5010 SCAF1 58506
## 5011 SCAF4 57466
## 5012 SCAMP1 9522
## 5013 SCAMP3 10067
## 5014 SCAMP4 113178
## 5015 SCAND1 51282
## 5016 SCAPER 49855
## 5017 SCARB1 949
## 5018 SCCPDH 51097
## 5019 SCD 6319
## 5020 SCFD2 152579
## 5021 SCIN 85477
## 5022 SCLY 51540
## 5023 SCML2 10389
## 5024 SCN9A 6335
## 5025 SCOC 60592
## 5026 SCRIB 23513
## 5027 SCRN3 79634
## 5028 SCUBE1 80274
## 5029 SCYL3 57147
## 5030 SDHAF1 644096
## 5031 SDHAF4 135154
## 5032 SEC14L5 9717
## 5033 SEC23IP 11196
## 5034 SECISBP2 79048
## 5035 SELENOI 85465
## 5036 SEMA3E 9723
## 5037 SEMA4C 54910
## 5038 SEMA6B 10501
## 5039 SEMA7A 8482
## 5040 SENP1 29843
## 5041 SENP5 205564
## 5042 SENP8 123228
## 5043 SEPHS1 22929
## 5044 SEPSECS 51091
## 5045 SEPTIN11 55752
## 5046 SERAC1 84947
## 5047 SERGEF 26297
## 5048 SERPINE1 5054
## 5049 SERPINF1 5176
## 5050 SERPINF2 5345
## 5051 SERPINH1 871
## 5052 SERTAD1 29950
## 5053 SETBP1 26040
## 5054 SETD1A 9739
## 5055 SETD6 79918
## 5056 SFI1 9814
## 5057 SFN 2810
## 5058 SFXN3 81855
## 5059 SFXN5 94097
## 5060 SGF29 112869
## 5061 SGMS1 259230
## 5062 SGO1 151648
## 5063 SGO2 151246
## 5064 SH2B2 10603
## 5065 SH2D2A 9047
## 5066 SH2D3A 10045
## 5067 SH2D4A 63898
## 5068 SH3D21 79729
## 5069 SH3TC2 79628
## 5070 SHCBP1 79801
## 5071 SHISA4 149345
## 5072 SHISA9 729993
## 5073 SHISAL2A 348378
## 5074 SHLD3 112441434
## 5075 SHMT1 6470
## 5076 SHROOM4 57477
## 5077 SIAE 54414
## 5078 SIMC1 375484
## 5079 SINHCAF 58516
## 5080 SIRPG 55423
## 5081 SIT1 27240
## 5082 SIVA1 10572
## 5083 SKA1 220134
## 5084 SKA2 348235
## 5085 SKA3 221150
## 5086 SLAIN1 122060
## 5087 SLC10A3 8273
## 5088 SLC10A7 84068
## 5089 SLC12A2 6558
## 5090 SLC15A2 6565
## 5091 SLC16A1 6566
## 5092 SLC16A7 9194
## 5093 SLC17A5 26503
## 5094 SLC1A4 6509
## 5095 SLC22A1 6580
## 5096 SLC22A16 85413
## 5097 SLC22A18 5002
## 5098 SLC23A2 9962
## 5099 SLC24A3 57419
## 5100 SLC25A19 60386
## 5101 SLC25A20 788
## 5102 SLC25A22 79751
## 5103 SLC25A25 114789
## 5104 SLC25A26 115286
## 5105 SLC25A30 253512
## 5106 SLC25A32 81034
## 5107 SLC25A38 54977
## 5108 SLC25A45 283130
## 5109 SLC25A51 92014
## 5110 SLC26A11 284129
## 5111 SLC26A2 1836
## 5112 SLC27A2 11001
## 5113 SLC27A4 10999
## 5114 SLC27A5 10998
## 5115 SLC29A3 55315
## 5116 SLC2A11 66035
## 5117 SLC2A13 114134
## 5118 SLC2A8 29988
## 5119 SLC30A5 64924
## 5120 SLC30A6 55676
## 5121 SLC30A7 148867
## 5122 SLC33A1 9197
## 5123 SLC35A3 23443
## 5124 SLC35B3 51000
## 5125 SLC35C1 55343
## 5126 SLC35D1 23169
## 5127 SLC35E1 79939
## 5128 SLC35E3 55508
## 5129 SLC35E4 339665
## 5130 SLC35F2 54733
## 5131 SLC37A1 54020
## 5132 SLC38A6 145389
## 5133 SLC39A14 23516
## 5134 SLC39A6 25800
## 5135 SLC45A3 85414
## 5136 SLC46A2 57864
## 5137 SLC48A1 55652
## 5138 SLC49A3 84179
## 5139 SLC4A2 6522
## 5140 SLC4A5 57835
## 5141 SLC4A7 9497
## 5142 SLC52A2 79581
## 5143 SLC5A3 6526
## 5144 SLC66A1 54896
## 5145 SLC66A3 130814
## 5146 SLC6A16 28968
## 5147 SLC6A4 6532
## 5148 SLC7A1 6541
## 5149 SLC9A3 6550
## 5150 SLC9A6 10479
## 5151 SLF1 84250
## 5152 SLF2 55719
## 5153 SLFN12 55106
## 5154 SLFN14 342618
## 5155 SLIT1 6585
## 5156 SLX4IP 128710
## 5157 SMAD5 4090
## 5158 SMAP1 60682
## 5159 SMARCA4 6597
## 5160 SMARCAD1 56916
## 5161 SMARCAL1 50485
## 5162 SMARCD1 6602
## 5163 SMC2 10592
## 5164 SMC6 79677
## 5165 SMG6 23293
## 5166 SMG9 56006
## 5167 SMIM13 221710
## 5168 SMIM19 114926
## 5169 SMIM4 440957
## 5170 SMIM5 643008
## 5171 SMIM7 79086
## 5172 SMIM8 57150
## 5173 SMIM8 63914
## 5174 SMN1 6606
## 5175 SMPD2 6610
## 5176 SMPD3 55512
## 5177 SMU1 55234
## 5178 SMURF1 57154
## 5179 SMYD5 10322
## 5180 SNAI3 333929
## 5181 SNAP47 116841
## 5182 SNAPC2 6618
## 5183 SNAPC4 6621
## 5184 SNAPC5 10302
## 5185 SNAPIN 23557
## 5186 SNIP1 79753
## 5187 SNRNP27 11017
## 5188 SNRNP48 154007
## 5189 SNRPA1 6627
## 5190 SNRPB2 6629
## 5191 SNRPC 6631
## 5192 SNRPF 6636
## 5193 SNTA1 6640
## 5194 SNUPN 10073
## 5195 SNX16 64089
## 5196 SNX21 90203
## 5197 SNX22 79856
## 5198 SNX25 83891
## 5199 SNX33 257364
## 5200 SNX8 29886
## 5201 SOCS4 122809
## 5202 SORBS3 10174
## 5203 SORD 6652
## 5204 SOWAHD 347454
## 5205 SOX12 6666
## 5206 SP4 6671
## 5207 SPAG1 6674
## 5208 SPAG16 79582
## 5209 SPAG5 10615
## 5210 SPATA20 64847
## 5211 SPATA2L 124044
## 5212 SPATA33 124045
## 5213 SPATA5L1 79029
## 5214 SPATA7 55812
## 5215 SPATS2 65244
## 5216 SPC24 147841
## 5217 SPC25 57405
## 5218 SPDL1 54908
## 5219 SPHK2 56848
## 5220 SPIB 6689
## 5221 SPICE1 152185
## 5222 SPIN1 10927
## 5223 SPIN2B 474343
## 5224 SPIN4 139886
## 5225 SPNS3 201305
## 5226 SPPL2B 56928
## 5227 SPRTN 83932
## 5228 SPSB1 80176
## 5229 SPSB2 84727
## 5230 SPSB2 105369632
## 5231 SPTBN5 51332
## 5232 SQLE 6713
## 5233 SRD5A3 79644
## 5234 SREK1 140890
## 5235 SRRM1 10250
## 5236 SS18 6760
## 5237 SS18L1 26039
## 5238 SS18L2 51188
## 5239 SSBP2 23635
## 5240 SSBP4 170463
## 5241 SSC4D 136853
## 5242 SSPN 8082
## 5243 SSX2IP 117178
## 5244 ST7 7982
## 5245 ST7 93655
## 5246 ST8SIA6 338596
## 5247 STAM 8027
## 5248 STAMBP 10617
## 5249 STARD4 134429
## 5250 STARD5 80765
## 5251 STAU2 27067
## 5252 STIL 6491
## 5253 STK19 8859
## 5254 STK32C 282974
## 5255 STON1 11037
## 5256 STON2 85439
## 5257 STRADA 92335
## 5258 STRBP 55342
## 5259 STRIP1 85369
## 5260 STRN3 29966
## 5261 STX18 53407
## 5262 STX1A 6804
## 5263 SUCLA2 8803
## 5264 SUCNR1 56670
## 5265 SUCO 51430
## 5266 SUGT1 10910
## 5267 SURF2 6835
## 5268 SUV39H2 79723
## 5269 SWI5 375757
## 5270 SWSAP1 126074
## 5271 SWT1 54823
## 5272 SYCP2 10388
## 5273 SYNJ2 8871
## 5274 SYTL4 94121
## 5275 TACO1 51204
## 5276 TACSTD2 4070
## 5277 TAF13 6884
## 5278 TAF1B 9014
## 5279 TAF1C 9013
## 5280 TAF1D 79101
## 5281 TAF2 6873
## 5282 TAF4B 6875
## 5283 TAF5 6877
## 5284 TAFA2 338811
## 5285 TANC2 26115
## 5286 TAPT1 202018
## 5287 TARBP2 6895
## 5288 TASOR2 54906
## 5289 TBC1D13 54662
## 5290 TBC1D17 79735
## 5291 TBC1D22B 55633
## 5292 TBC1D25 4943
## 5293 TBCEL 219899
## 5294 TBCK 93627
## 5295 TBL2 26608
## 5296 TBL3 10607
## 5297 TBP 6908
## 5298 TBPL1 9519
## 5299 TBRG4 9238
## 5300 TCEA2 6919
## 5301 TCEA3 6920
## 5302 TCEAL4 79921
## 5303 TCEANC2 127428
## 5304 TCERG1 10915
## 5305 TCF12 6938
## 5306 TCF19 6941
## 5307 TCF4 6925
## 5308 TCHP 84260
## 5309 TDG 6996
## 5310 TDRD12 91646
## 5311 TEC 7006
## 5312 TEDC1 283643
## 5313 TEF 7008
## 5314 TELO2 9894
## 5315 TEN1 100134934
## 5316 TENT4B 64282
## 5317 TESK1 7016
## 5318 TESK2 10420
## 5319 TEX10 54881
## 5320 TEX22 647310
## 5321 TFAM 7019
## 5322 TFAP4 7023
## 5323 TFPT 29844
## 5324 TG 7038
## 5325 TGFBRAP1 9392
## 5326 TGIF2 60436
## 5327 TGS1 96764
## 5328 THAP3 90326
## 5329 THAP4 51078
## 5330 THAP6 152815
## 5331 THAP7 80764
## 5332 THAP9 79725
## 5333 THEM6 51337
## 5334 THG1L 54974
## 5335 THOC1 9984
## 5336 THOC2 57187
## 5337 THSD1 55901
## 5338 TICAM1 148022
## 5339 TIGAR 57103
## 5340 TIGD3 220359
## 5341 TIGD5 84948
## 5342 TIMELESS 8914
## 5343 TIMM23B 100652748
## 5344 TIMM44 10469
## 5345 TIMM50 92609
## 5346 TIMM9 26520
## 5347 TIMMDC1 51300
## 5348 TIPIN 54962
## 5349 TIRAP 114609
## 5350 TJAP1 93643
## 5351 TJP2 9414
## 5352 TK1 7083
## 5353 TKFC 26007
## 5354 TLCD4 148534
## 5355 TLNRD1 59274
## 5356 TM2D2 83877
## 5357 TM7SF2 7108
## 5358 TM7SF3 51768
## 5359 TM9SF1 10548
## 5360 TMCO6 55374
## 5361 TMED1 11018
## 5362 TMED4 222068
## 5363 TMEM102 284114
## 5364 TMEM104 54868
## 5365 TMEM106C 79022
## 5366 TMEM107 84314
## 5367 TMEM120B 144404
## 5368 TMEM128 85013
## 5369 TMEM134 80194
## 5370 TMEM138 51524
## 5371 TMEM147 10430
## 5372 TMEM150A 129303
## 5373 TMEM159 57146
## 5374 TMEM160 54958
## 5375 TMEM161A 54929
## 5376 TMEM170A 124491
## 5377 TMEM175 84286
## 5378 TMEM18 129787
## 5379 TMEM184C 55751
## 5380 TMEM186 25880
## 5381 TMEM187 8269
## 5382 TMEM192 201931
## 5383 TMEM204 79652
## 5384 TMEM209 84928
## 5385 TMEM212 389177
## 5386 TMEM218 219854
## 5387 TMEM223 79064
## 5388 TMEM234 56063
## 5389 TMEM241 85019
## 5390 TMEM243 79161
## 5391 TMEM245 23731
## 5392 TMEM252 169693
## 5393 TMEM35B 100506144
## 5394 TMEM38B 55151
## 5395 TMEM39A 55254
## 5396 TMEM39B 55116
## 5397 TMEM42 131616
## 5398 TMEM44 93109
## 5399 TMEM45A 55076
## 5400 TMEM53 79639
## 5401 TMEM60 85025
## 5402 TMEM62 80021
## 5403 TMEM64 169200
## 5404 TMEM68 137695
## 5405 TMEM69 51249
## 5406 TMEM80 283232
## 5407 TMEM86A 144110
## 5408 TMEM86B 255043
## 5409 TMEM87A 25963
## 5410 TMEM88 92162
## 5411 TMEM8B 51754
## 5412 TMEM9 252839
## 5413 TMEM94 9772
## 5414 TMEM97 27346
## 5415 TMIGD2 126259
## 5416 TMIGD3 57413
## 5417 TMPRSS13 84000
## 5418 TMUB1 83590
## 5419 TNF 7124
## 5420 TNFAIP8L1 126282
## 5421 TNFRSF10A 8797
## 5422 TNFRSF13C 115650
## 5423 TNFRSF25 8718
## 5424 TNFSF4 7292
## 5425 TNIK 23043
## 5426 TNK1 8711
## 5427 TNKS 8658
## 5428 TNKS1BP1 85456
## 5429 TNNC2 7125
## 5430 TNPO2 30000
## 5431 TNRC18 84629
## 5432 TOGARAM1 23116
## 5433 TOM1L2 146691
## 5434 TOMM40 10452
## 5435 TOMM5 401505
## 5436 TOP1MT 116447
## 5437 TOP3B 8940
## 5438 TP53BP1 7158
## 5439 TP53RK 112858
## 5440 TPD52 7163
## 5441 TPM2 7169
## 5442 TPRN 286262
## 5443 TPX2 22974
## 5444 TRABD2A 129293
## 5445 TRABD2A 105374836
## 5446 TRAF2 7186
## 5447 TRAF4 9618
## 5448 TRAF6 7189
## 5449 TRAP1 10131
## 5450 TRAPPC2 6399
## 5451 TRAPPC2B 10597
## 5452 TRAPPC6A 79090
## 5453 TRAPPC9 83696
## 5454 TRDMT1 1787
## 5455 TRIAP1 51499
## 5456 TRIM11 81559
## 5457 TRIM24 8805
## 5458 TRIM3 10612
## 5459 TRIM46 80128
## 5460 TRIM59 286827
## 5461 TRIM65 201292
## 5462 TRIM68 55128
## 5463 TRIP11 9321
## 5464 TRIP13 9319
## 5465 TRIP6 7205
## 5466 TRIT1 54802
## 5467 TRMT10A 93587
## 5468 TRMT13 54482
## 5469 TRMT1L 81627
## 5470 TRMT61A 115708
## 5471 TRMU 55687
## 5472 TRNAU1AP 54952
## 5473 TRNT1 51095
## 5474 TRPM4 54795
## 5475 TRPT1 83707
## 5476 TRRAP 8295
## 5477 TRUB1 142940
## 5478 TSC1 7248
## 5479 TSEN54 283989
## 5480 TSNARE1 203062
## 5481 TSPAN15 23555
## 5482 TSPAN32 10077
## 5483 TSPAN4 7106
## 5484 TSPYL4 23270
## 5485 TSR2 90121
## 5486 TST 7263
## 5487 TTBK2 146057
## 5488 TTC19 54902
## 5489 TTC21B 79809
## 5490 TTC27 55622
## 5491 TTC33 23548
## 5492 TTC7B 145567
## 5493 TTF1 7270
## 5494 TTF2 8458
## 5495 TTI1 9675
## 5496 TTK 7272
## 5497 TTLL1 25809
## 5498 TTLL12 23170
## 5499 TTLL5 23093
## 5500 TTYH2 94015
## 5501 TUBGCP4 27229
## 5502 TUFT1 7286
## 5503 TUT1 64852
## 5504 TUT4 23318
## 5505 TVP23B 51030
## 5506 TWSG1 57045
## 5507 TXLNG 55787
## 5508 TXNDC16 57544
## 5509 TXNL1 9352
## 5510 TXNRD2 10587
## 5511 TYSND1 219743
## 5512 U2AF1L4 199746
## 5513 UACA 55075
## 5514 UBA5 79876
## 5515 UBALD1 124402
## 5516 UBASH3A 53347
## 5517 UBE2C 11065
## 5518 UBE2D4 51619
## 5519 UBE2E1 7324
## 5520 UBE2E2 7325
## 5521 UBE2T 29089
## 5522 UBFD1 56061
## 5523 UBN2 254048
## 5524 UBOX5 22888
## 5525 UBQLN4 56893
## 5526 UBR7 55148
## 5527 UBTD1 80019
## 5528 UBTD2 92181
## 5529 UBXN2A 165324
## 5530 UCHL5 51377
## 5531 UCK1 83549
## 5532 UCK2 7371
## 5533 UCKL1 54963
## 5534 UEVLD 55293
## 5535 UFL1 23376
## 5536 UFSP1 402682
## 5537 UGDH 7358
## 5538 UGT8 7368
## 5539 UHRF1 29128
## 5540 UHRF1BP1 54887
## 5541 ULK3 25989
## 5542 UMAD1 729852
## 5543 UNC13B 10497
## 5544 UNC50 25972
## 5545 UNC5A 90249
## 5546 UNC5CL 222643
## 5547 UNK 85451
## 5548 UPF3B 65109
## 5549 UQCC3 790955
## 5550 URGCP 55665
## 5551 UROS 7390
## 5552 USE1 55850
## 5553 USP12 219333
## 5554 USP28 57646
## 5555 USP31 57478
## 5556 USP49 25862
## 5557 USP53 54532
## 5558 USP54 159195
## 5559 USP6NL 9712
## 5560 UTP18 51096
## 5561 UTP3 57050
## 5562 UVRAG 7405
## 5563 VAC14 55697
## 5564 VANGL1 81839
## 5565 VAPB 9217
## 5566 VAV2 7410
## 5567 VDAC2 7417
## 5568 VENTX 27287
## 5569 VEPH1 79674
## 5570 VGLL4 9686
## 5571 VMA21 203547
## 5572 VPS33A 65082
## 5573 VPS36 51028
## 5574 VPS37A 137492
## 5575 VPS37C 55048
## 5576 VPS45 11311
## 5577 VPS52 6293
## 5578 VPS53 55275
## 5579 VPS72 6944
## 5580 VRK1 7443
## 5581 VRK2 7444
## 5582 VSIG10 54621
## 5583 VTI1A 143187
## 5584 WASF1 8936
## 5585 WASHC5 9897
## 5586 WASL 8976
## 5587 WDHD1 11169
## 5588 WDR12 55759
## 5589 WDR18 57418
## 5590 WDR20 91833
## 5591 WDR24 84219
## 5592 WDR25 79446
## 5593 WDR33 55339
## 5594 WDR36 134430
## 5595 WDR44 54521
## 5596 WDR54 84058
## 5597 WDR62 284403
## 5598 WDR7 23335
## 5599 WDR70 55100
## 5600 WDR76 79968
## 5601 WDR77 79084
## 5602 WDR83 84292
## 5603 WDR91 29062
## 5604 WDR97 340390
## 5605 WEE1 7465
## 5606 WHAMM 123720
## 5607 WIZ 58525
## 5608 WNT10B 7480
## 5609 WRAP53 55135
## 5610 WRN 7486
## 5611 WTIP 126374
## 5612 WWC2 80014
## 5613 XPA 7507
## 5614 XPNPEP3 63929
## 5615 XPO4 64328
## 5616 XPR1 9213
## 5617 XRCC2 7516
## 5618 XXYLT1 152002
## 5619 XYLT2 64132
## 5620 YAE1 57002
## 5621 YAF2 10138
## 5622 YBEY 54059
## 5623 YDJC 150223
## 5624 YIF1A 10897
## 5625 YIPF2 78992
## 5626 YIPF6 286451
## 5627 YJU2 55702
## 5628 YLPM1 56252
## 5629 YPEL1 29799
## 5630 YRDC 79693
## 5631 YTHDF2 51441
## 5632 ZBED4 9889
## 5633 ZBTB17 7709
## 5634 ZBTB2 57621
## 5635 ZBTB20 26137
## 5636 ZBTB21 49854
## 5637 ZBTB26 57684
## 5638 ZBTB32 27033
## 5639 ZBTB33 10009
## 5640 ZBTB39 9880
## 5641 ZBTB42 100128927
## 5642 ZBTB45 84878
## 5643 ZBTB46 140685
## 5644 ZBTB47 92999
## 5645 ZBTB6 10773
## 5646 ZC3H10 84872
## 5647 ZC3H12C 85463
## 5648 ZC3H6 376940
## 5649 ZCCHC14 23174
## 5650 ZCWPW1 55063
## 5651 ZDHHC13 54503
## 5652 ZDHHC14 79683
## 5653 ZDHHC21 340481
## 5654 ZDHHC23 254887
## 5655 ZDHHC6 64429
## 5656 ZDHHC8 29801
## 5657 ZFAND4 93550
## 5658 ZFP41 286128
## 5659 ZFP64 55734
## 5660 ZFP69B 65243
## 5661 ZFP82 284406
## 5662 ZFPL1 7542
## 5663 ZFPM1 161882
## 5664 ZFYVE19 84936
## 5665 ZFYVE21 79038
## 5666 ZFYVE28 57732
## 5667 ZGLP1 100125288
## 5668 ZGRF1 55345
## 5669 ZHX1 11244
## 5670 ZKSCAN3 80317
## 5671 ZKSCAN7 55888
## 5672 ZKSCAN8 7745
## 5673 ZMAT3 64393
## 5674 ZMYM4 9202
## 5675 ZMYM5 9205
## 5676 ZMYND15 84225
## 5677 ZMYND19 116225
## 5678 ZMYND8 23613
## 5679 ZNF100 163227
## 5680 ZNF131 7690
## 5681 ZNF132 7691
## 5682 ZNF133 7692
## 5683 ZNF135 7694
## 5684 ZNF136 7695
## 5685 ZNF143 7702
## 5686 ZNF19 7567
## 5687 ZNF197 10168
## 5688 ZNF197 110354863
## 5689 ZNF211 10520
## 5690 ZNF212 7988
## 5691 ZNF213 7760
## 5692 ZNF219 51222
## 5693 ZNF22 7570
## 5694 ZNF223 7766
## 5695 ZNF224 7767
## 5696 ZNF226 7769
## 5697 ZNF232 7775
## 5698 ZNF236 7776
## 5699 ZNF250 58500
## 5700 ZNF263 10127
## 5701 ZNF277 11179
## 5702 ZNF28 7576
## 5703 ZNF280C 55609
## 5704 ZNF280D 54816
## 5705 ZNF287 57336
## 5706 ZNF324B 388569
## 5707 ZNF329 79673
## 5708 ZNF335 63925
## 5709 ZNF341 84905
## 5710 ZNF346 23567
## 5711 ZNF358 140467
## 5712 ZNF362 149076
## 5713 ZNF367 195828
## 5714 ZNF383 163087
## 5715 ZNF384 171017
## 5716 ZNF385D 79750
## 5717 ZNF395 55893
## 5718 ZNF397 84307
## 5719 ZNF407 55628
## 5720 ZNF408 79797
## 5721 ZNF414 84330
## 5722 ZNF416 55659
## 5723 ZNF419 79744
## 5724 ZNF425 155054
## 5725 ZNF428 126299
## 5726 ZNF430 80264
## 5727 ZNF436 80818
## 5728 ZNF440 126070
## 5729 ZNF444 55311
## 5730 ZNF446 55663
## 5731 ZNF45 7596
## 5732 ZNF451 26036
## 5733 ZNF460 10794
## 5734 ZNF468 90333
## 5735 ZNF48 197407
## 5736 ZNF480 147657
## 5737 ZNF497 162968
## 5738 ZNF500 26048
## 5739 ZNF506 440515
## 5740 ZNF507 22847
## 5741 ZNF511 118472
## 5742 ZNF512B 57473
## 5743 ZNF513 130557
## 5744 ZNF526 116115
## 5745 ZNF540 163255
## 5746 ZNF547 284306
## 5747 ZNF563 147837
## 5748 ZNF568 374900
## 5749 ZNF574 64763
## 5750 ZNF576 79177
## 5751 ZNF578 147660
## 5752 ZNF580 51157
## 5753 ZNF582 147948
## 5754 ZNF587 84914
## 5755 ZNF596 169270
## 5756 ZNF597 146434
## 5757 ZNF598 90850
## 5758 ZNF606 80095
## 5759 ZNF609 23060
## 5760 ZNF611 81856
## 5761 ZNF615 284370
## 5762 ZNF616 90317
## 5763 ZNF619 285267
## 5764 ZNF620 253639
## 5765 ZNF621 285268
## 5766 ZNF623 9831
## 5767 ZNF629 23361
## 5768 ZNF653 115950
## 5769 ZNF654 55279
## 5770 ZNF66 7617
## 5771 ZNF668 79759
## 5772 ZNF669 79862
## 5773 ZNF671 79891
## 5774 ZNF684 127396
## 5775 ZNF688 146542
## 5776 ZNF691 51058
## 5777 ZNF697 90874
## 5778 ZNF699 374879
## 5779 ZNF707 286075
## 5780 ZNF707 101928160
## 5781 ZNF71 58491
## 5782 ZNF714 148206
## 5783 ZNF726 730087
## 5784 ZNF74 7625
## 5785 ZNF747 65988
## 5786 ZNF75D 7626
## 5787 ZNF76 7629
## 5788 ZNF761 388561
## 5789 ZNF761 110116772
## 5790 ZNF764 92595
## 5791 ZNF765 91661
## 5792 ZNF768 79724
## 5793 ZNF775 285971
## 5794 ZNF777 27153
## 5795 ZNF778 197320
## 5796 ZNF783 100289678
## 5797 ZNF784 147808
## 5798 ZNF787 126208
## 5799 ZNF788P NA
## 5800 ZNF791 163049
## 5801 ZNF799 90576
## 5802 ZNF8 7554
## 5803 ZNF808 388558
## 5804 ZNF81 347344
## 5805 ZNF835 90485
## 5806 ZNF836 162962
## 5807 ZNF841 284371
## 5808 ZNF844 284391
## 5809 ZNF846 162993
## 5810 ZNF846 100505555
## 5811 ZNF850 342892
## 5812 ZNF852 285346
## 5813 ZNF853 54753
## 5814 ZNF875 284459
## 5815 ZNF888 388559
## 5816 ZNHIT3 9326
## 5817 ZNRD2 10534
## 5818 ZNRF1 84937
## 5819 ZP3 7784
## 5820 ZPR1 8882
## 5821 ZRANB3 84083
## 5822 ZSCAN12 9753
## 5823 ZSCAN18 65982
## 5824 ZSCAN2 54993
## 5825 ZSCAN30 100101467
## 5826 ZSCAN32 54925
## 5827 ZSCAN9 7746
## 5828 ZSWIM7 125150
## 5829 ZSWIM9 374920
## 5830 ZWILCH 55055
## 5831 ZWINT 11130
go_terms <- getBM(attributes = c("hgnc_symbol", "go_id", "name_1006", "definition_1006", "namespace_1003"), filters = "hgnc_symbol", values = genes, mart = mart)
go_terms <- go_terms %>%
mutate_all(na_if,"")
go_terms <-na.omit(go_terms)
go_plot <- go_terms %>%
dplyr::count(name_1006) %>%
dplyr::arrange(desc(n))
go_plot## name_1006
## 1 protein binding
## 2 nucleus
## 3 cytoplasm
## 4 membrane
## 5 cytosol
## 6 nucleoplasm
## 7 integral component of membrane
## 8 metal ion binding
## 9 plasma membrane
## 10 DNA binding
## 11 transferase activity
## 12 nucleotide binding
## 13 RNA binding
## 14 extracellular exosome
## 15 mitochondrion
## 16 ATP binding
## 17 identical protein binding
## 18 hydrolase activity
## 19 endoplasmic reticulum
## 20 cytoskeleton
## 21 Golgi apparatus
## 22 regulation of transcription by RNA polymerase II
## 23 nucleolus
## 24 signal transduction
## 25 positive regulation of transcription by RNA polymerase II
## 26 regulation of transcription, DNA-templated
## 27 endoplasmic reticulum membrane
## 28 intracellular membrane-bounded organelle
## 29 extracellular region
## 30 cell cycle
## 31 RNA polymerase II cis-regulatory region sequence-specific DNA binding
## 32 negative regulation of transcription by RNA polymerase II
## 33 cell projection
## 34 protein transport
## 35 DNA-binding transcription factor activity, RNA polymerase II-specific
## 36 phosphorylation
## 37 kinase activity
## 38 endosome
## 39 perinuclear region of cytoplasm
## 40 protein-containing complex
## 41 viral process
## 42 cellular response to DNA damage stimulus
## 43 chromatin
## 44 chromosome
## 45 cytoplasmic vesicle
## 46 zinc ion binding
## 47 positive regulation of transcription, DNA-templated
## 48 Golgi membrane
## 49 extracellular space
## 50 integral component of plasma membrane
## 51 protein phosphorylation
## 52 centrosome
## 53 protein homodimerization activity
## 54 protein ubiquitination
## 55 multicellular organism development
## 56 nucleic acid binding
## 57 apoptotic process
## 58 cell division
## 59 DNA repair
## 60 cell differentiation
## 61 cell junction
## 62 protein kinase activity
## 63 immune system process
## 64 negative regulation of transcription, DNA-templated
## 65 microtubule organizing center
## 66 molecular_function
## 67 synapse
## 68 mitochondrial inner membrane
## 69 nuclear speck
## 70 protein serine/threonine kinase activity
## 71 neutrophil degranulation
## 72 lipid metabolic process
## 73 chromatin binding
## 74 translation
## 75 protein kinase binding
## 76 oxidoreductase activity
## 77 lysosome
## 78 DNA-binding transcription factor activity
## 79 mRNA processing
## 80 nuclear body
## 81 focal adhesion
## 82 mitochondrial matrix
## 83 protein serine kinase activity
## 84 protein threonine kinase activity
## 85 negative regulation of apoptotic process
## 86 ATPase activity
## 87 chromatin organization
## 88 intracellular signal transduction
## 89 biological_process
## 90 enzyme binding
## 91 transmembrane transport
## 92 protein-containing complex binding
## 93 proteolysis
## 94 innate immune response
## 95 catalytic activity
## 96 positive regulation of gene expression
## 97 lysosomal membrane
## 98 calcium ion binding
## 99 intracellular protein transport
## 100 RNA splicing
## 101 positive regulation of cell population proliferation
## 102 cadherin binding
## 103 ion transport
## 104 positive regulation of GTPase activity
## 105 cell surface
## 106 endosome membrane
## 107 ribosome
## 108 rRNA processing
## 109 microtubule
## 110 protein deubiquitination
## 111 peptidase activity
## 112 small GTPase binding
## 113 mRNA splicing, via spliceosome
## 114 sequence-specific double-stranded DNA binding
## 115 DNA-binding transcription activator activity, RNA polymerase II-specific
## 116 oxidation-reduction process
## 117 sequence-specific DNA binding
## 118 ubiquitin-dependent protein catabolic process
## 119 negative regulation of cell population proliferation
## 120 positive regulation of apoptotic process
## 121 transcription factor binding
## 122 nervous system development
## 123 vesicle-mediated transport
## 124 post-translational protein modification
## 125 actin binding
## 126 ubiquitin protein ligase binding
## 127 dendrite
## 128 GTP binding
## 129 spindle
## 130 spermatogenesis
## 131 structural constituent of ribosome
## 132 protein polyubiquitination
## 133 lipid binding
## 134 cellular_component
## 135 ubiquitin protein ligase activity
## 136 GTPase activator activity
## 137 G protein-coupled receptor signaling pathway
## 138 ubiquitin-protein transferase activity
## 139 cell adhesion
## 140 early endosome
## 141 regulation of catalytic activity
## 142 translational initiation
## 143 axon
## 144 protein domain specific binding
## 145 nuclear membrane
## 146 inflammatory response
## 147 neuron projection
## 148 regulation of gene expression
## 149 transcription coactivator activity
## 150 MAPK cascade
## 151 chromosome, centromeric region
## 152 signaling receptor binding
## 153 DNA-binding transcription repressor activity, RNA polymerase II-specific
## 154 endocytosis
## 155 negative regulation of gene expression
## 156 neuronal cell body
## 157 immune response
## 158 DNA replication
## 159 postsynaptic density
## 160 protein heterodimerization activity
## 161 nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## 162 RNA polymerase II transcription regulatory region sequence-specific DNA binding
## 163 viral transcription
## 164 actin cytoskeleton
## 165 protein C-terminus binding
## 166 GTPase activity
## 167 microtubule binding
## 168 regulation of apoptotic process
## 169 trans-Golgi network
## 170 guanyl-nucleotide exchange factor activity
## 171 kinetochore
## 172 magnesium ion binding
## 173 midbody
## 174 mRNA binding
## 175 proteasome-mediated ubiquitin-dependent protein catabolic process
## 176 response to drug
## 177 transcription corepressor activity
## 178 transcription by RNA polymerase II
## 179 carbohydrate metabolic process
## 180 nuclear envelope
## 181 glutamatergic synapse
## 182 in utero embryonic development
## 183 protein stabilization
## 184 regulation of cell cycle
## 185 transcription regulatory region sequence-specific DNA binding
## 186 protein phosphopantetheinylation
## 187 SRP-dependent cotranslational protein targeting to membrane
## 188 autophagy
## 189 helicase activity
## 190 apical plasma membrane
## 191 cilium
## 192 cytokine-mediated signaling pathway
## 193 cytoplasmic translation
## 194 defense response to virus
## 195 histone binding
## 196 membrane raft
## 197 protein autophosphorylation
## 198 regulation of signal transduction by p53 class mediator
## 199 T cell receptor signaling pathway
## 200 adaptive immune response
## 201 chromosome, telomeric region
## 202 endoplasmic reticulum to Golgi vesicle-mediated transport
## 203 microtubule cytoskeleton
## 204 spliceosomal complex
## 205 transferase activity, transferring glycosyl groups
## 206 brain development
## 207 ribonucleoprotein complex
## 208 mitotic spindle organization
## 209 positive regulation of cell migration
## 210 heart development
## 211 lamellipodium
## 212 spindle pole
## 213 transcription regulator complex
## 214 cytosolic ribosome
## 215 peptidyl-serine phosphorylation
## 216 positive regulation of I-kappaB kinase/NF-kappaB signaling
## 217 protein dephosphorylation
## 218 Wnt signaling pathway
## 219 methylation
## 220 cell projection organization
## 221 cell migration
## 222 mitotic cell cycle
## 223 cilium assembly
## 224 condensed chromosome kinetochore
## 225 endoplasmic reticulum lumen
## 226 vesicle
## 227 methyltransferase activity
## 228 mitochondrial outer membrane
## 229 positive regulation of protein phosphorylation
## 230 regulation of translation
## 231 transcription coregulator activity
## 232 transferase activity, transferring acyl groups
## 233 G2/M transition of mitotic cell cycle
## 234 metabolic process
## 235 cell population proliferation
## 236 dephosphorylation
## 237 angiogenesis
## 238 centriole
## 239 early endosome membrane
## 240 external side of plasma membrane
## 241 endomembrane system
## 242 positive regulation of NF-kappaB transcription factor activity
## 243 protein glycosylation
## 244 fatty acid metabolic process
## 245 actin cytoskeleton organization
## 246 protein folding
## 247 ubiquitin ligase complex
## 248 cell cortex
## 249 fibrillar center
## 250 late endosome membrane
## 251 protein localization
## 252 rhythmic process
## 253 actin filament binding
## 254 chromosome segregation
## 255 cysteine-type peptidase activity
## 256 mitotic spindle
## 257 regulation of cell population proliferation
## 258 negative regulation of canonical Wnt signaling pathway
## 259 nuclease activity
## 260 phosphatase activity
## 261 transcription initiation from RNA polymerase II promoter
## 262 DNA recombination
## 263 double-stranded DNA binding
## 264 protein localization to plasma membrane
## 265 cytoplasmic vesicle membrane
## 266 integral component of endoplasmic reticulum membrane
## 267 transcription, DNA-templated
## 268 cell surface receptor signaling pathway
## 269 late endosome
## 270 mitochondrial membrane
## 271 nucleic acid phosphodiester bond hydrolysis
## 272 protein-containing complex assembly
## 273 response to hypoxia
## 274 isomerase activity
## 275 membrane organization
## 276 peptidyl-tyrosine phosphorylation
## 277 phosphoprotein phosphatase activity
## 278 chromatin remodeling
## 279 Golgi organization
## 280 ligase activity
## 281 protein dimerization activity
## 282 protein N-terminus binding
## 283 basolateral plasma membrane
## 284 centriolar satellite
## 285 ion transmembrane transport
## 286 lyase activity
## 287 positive regulation of canonical Wnt signaling pathway
## 288 signaling receptor activity
## 289 growth cone
## 290 PML body
## 291 presynapse
## 292 aging
## 293 ciliary basal body
## 294 ficolin-1-rich granule lumen
## 295 microtubule cytoskeleton organization
## 296 peroxisome
## 297 positive regulation of ERK1 and ERK2 cascade
## 298 regulation of cell shape
## 299 cell cycle arrest
## 300 cell-cell junction
## 301 double-strand break repair
## 302 histone deacetylase binding
## 303 SH3 domain binding
## 304 tumor necrosis factor-mediated signaling pathway
## 305 calmodulin binding
## 306 collagen-containing extracellular matrix
## 307 DNA duplex unwinding
## 308 endosomal transport
## 309 Fc-epsilon receptor signaling pathway
## 310 mitochondrial translational termination
## 311 recycling endosome
## 312 regulation of small GTPase mediated signal transduction
## 313 single-stranded DNA binding
## 314 antigen processing and presentation of exogenous peptide antigen via MHC class II
## 315 lipid transport
## 316 mitochondrion organization
## 317 mRNA export from nucleus
## 318 protein tyrosine kinase activity
## 319 regulation of mRNA stability
## 320 response to oxidative stress
## 321 transmembrane signaling receptor activity
## 322 transmembrane transporter activity
## 323 cytoskeleton organization
## 324 cytosolic large ribosomal subunit
## 325 mitochondrial translational elongation
## 326 nuclear matrix
## 327 snRNA transcription by RNA polymerase II
## 328 trans-Golgi network membrane
## 329 activation of MAPK activity
## 330 adherens junction
## 331 cellular response to hypoxia
## 332 cellular response to lipopolysaccharide
## 333 ciliary basal body-plasma membrane docking
## 334 dendritic spine
## 335 positive regulation of protein kinase B signaling
## 336 response to lipopolysaccharide
## 337 response to virus
## 338 anaphase-promoting complex-dependent catabolic process
## 339 axon guidance
## 340 blood coagulation
## 341 carbohydrate binding
## 342 cellular response to oxidative stress
## 343 kinase binding
## 344 thiol-dependent ubiquitin-specific protease activity
## 345 transcription-coupled nucleotide-excision repair
## 346 interleukin-1-mediated signaling pathway
## 347 protein serine/threonine phosphatase activity
## 348 retrograde vesicle-mediated transport, Golgi to endoplasmic reticulum
## 349 ion channel binding
## 350 macroautophagy
## 351 negative regulation of translation
## 352 regulation of mitotic cell cycle phase transition
## 353 ribosome biogenesis
## 354 stimulatory C-type lectin receptor signaling pathway
## 355 actin filament organization
## 356 exocytosis
## 357 negative regulation of cell growth
## 358 nucleotidyltransferase activity
## 359 phosphatidylinositol binding
## 360 positive regulation of neuron projection development
## 361 SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## 362 small GTPase mediated signal transduction
## 363 tRNA processing
## 364 double-strand break repair via homologous recombination
## 365 endoplasmic reticulum-Golgi intermediate compartment
## 366 methylated histone binding
## 367 mRNA transport
## 368 platelet degranulation
## 369 secretory granule lumen
## 370 ubiquitin binding
## 371 cytoplasmic ribonucleoprotein granule
## 372 endonuclease activity
## 373 P-body
## 374 protein phosphatase binding
## 375 regulation of GTPase activity
## 376 regulation of immune response
## 377 ruffle
## 378 transmembrane receptor protein tyrosine kinase activity
## 379 transport vesicle
## 380 cellular protein modification process
## 381 cytoplasmic stress granule
## 382 double-stranded RNA binding
## 383 Golgi cisterna membrane
## 384 meiotic cell cycle
## 385 molecular adaptor activity
## 386 receptor-mediated endocytosis
## 387 regulation of protein stability
## 388 retrograde transport, endosome to Golgi
## 389 secretory granule membrane
## 390 transcription elongation from RNA polymerase II promoter
## 391 tRNA binding
## 392 activation of GTPase activity
## 393 cytosolic small ribosomal subunit
## 394 DNA helicase activity
## 395 intercellular bridge
## 396 perikaryon
## 397 phosphatidylinositol biosynthetic process
## 398 positive regulation of proteasomal ubiquitin-dependent protein catabolic process
## 399 regulation of G2/M transition of mitotic cell cycle
## 400 regulation of lipid metabolic process
## 401 RNA processing
## 402 synaptic vesicle
## 403 Wnt signaling pathway, planar cell polarity pathway
## 404 catalytic step 2 spliceosome
## 405 chaperone binding
## 406 damaged DNA binding
## 407 extracellular matrix organization
## 408 neuron projection development
## 409 positive regulation of DNA-binding transcription factor activity
## 410 positive regulation of tumor necrosis factor production
## 411 RNA helicase activity
## 412 ruffle membrane
## 413 transforming growth factor beta receptor signaling pathway
## 414 unfolded protein binding
## 415 clathrin-coated vesicle
## 416 G protein-coupled receptor activity
## 417 G1/S transition of mitotic cell cycle
## 418 leukocyte migration
## 419 lipid droplet
## 420 multicellular organism growth
## 421 positive regulation of angiogenesis
## 422 postsynapse
## 423 postsynaptic membrane
## 424 regulation of cellular response to heat
## 425 site of double-strand break
## 426 specific granule membrane
## 427 structural molecule activity
## 428 viral life cycle
## 429 cellular response to insulin stimulus
## 430 cellular response to tumor necrosis factor
## 431 melanosome
## 432 mitochondrial intermembrane space
## 433 negative regulation of cell migration
## 434 negative regulation of neuron apoptotic process
## 435 negative regulation of NF-kappaB transcription factor activity
## 436 neural tube closure
## 437 platelet activation
## 438 pre-replicative complex assembly
## 439 protease binding
## 440 protein import into nucleus
## 441 protein-macromolecule adaptor activity
## 442 receptor complex
## 443 transmembrane receptor protein tyrosine kinase signaling pathway
## 444 animal organ morphogenesis
## 445 cell-cell adhesion
## 446 cholesterol metabolic process
## 447 endoplasmic reticulum-Golgi intermediate compartment membrane
## 448 liver development
## 449 metallopeptidase activity
## 450 mitochondrial respiratory chain complex I assembly
## 451 negative regulation of protein kinase activity
## 452 positive regulation of interleukin-6 production
## 453 positive regulation of MAPK cascade
## 454 post-Golgi vesicle-mediated transport
## 455 Ras protein signal transduction
## 456 response to organic cyclic compound
## 457 visual perception
## 458 calcium ion transport
## 459 double-strand break repair via nonhomologous end joining
## 460 interstrand cross-link repair
## 461 iron-sulfur cluster binding
## 462 negative regulation of protein binding
## 463 NIK/NF-kappaB signaling
## 464 protein homooligomerization
## 465 proton transmembrane transport
## 466 regulation of autophagy
## 467 regulation of transcription from RNA polymerase II promoter in response to hypoxia
## 468 SCF ubiquitin ligase complex
## 469 ubiquitin-dependent ERAD pathway
## 470 wound healing
## 471 apoptotic signaling pathway
## 472 azurophil granule lumen
## 473 hydrolase activity, acting on glycosyl bonds
## 474 I-kappaB kinase/NF-kappaB signaling
## 475 mRNA 3'-UTR binding
## 476 Notch signaling pathway
## 477 nuclear pore
## 478 positive regulation of translation
## 479 protein serine phosphatase activity
## 480 protein threonine phosphatase activity
## 481 respirasome
## 482 cellular response to organic cyclic compound
## 483 cysteine-type endopeptidase activity
## 484 dioxygenase activity
## 485 extracellular matrix
## 486 interferon-gamma-mediated signaling pathway
## 487 intracellular receptor signaling pathway
## 488 lipid catabolic process
## 489 mitochondrial large ribosomal subunit
## 490 phospholipid binding
## 491 regulation of hematopoietic stem cell differentiation
## 492 response to estradiol
## 493 response to ethanol
## 494 RNA phosphodiester bond hydrolysis, endonucleolytic
## 495 steroid metabolic process
## 496 antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-dependent
## 497 cellular response to UV
## 498 chemical synaptic transmission
## 499 chemotaxis
## 500 circadian rhythm
## 501 clathrin-coated pit
## 502 COPII vesicle coating
## 503 mitotic nuclear envelope reassembly
## 504 neuron differentiation
## 505 osteoblast differentiation
## 506 peptidyl-tyrosine dephosphorylation
## 507 phagocytic vesicle
## 508 positive regulation of autophagy
## 509 positive regulation of peptidyl-tyrosine phosphorylation
## 510 proteasome complex
## 511 RNA polymerase II transcription regulator complex
## 512 viral entry into host cell
## 513 activation of cysteine-type endopeptidase activity involved in apoptotic process
## 514 bicellular tight junction
## 515 calcium ion transmembrane transport
## 516 cleavage furrow
## 517 glucose homeostasis
## 518 insulin receptor signaling pathway
## 519 manganese ion binding
## 520 mitotic cytokinesis
## 521 peroxisomal membrane
## 522 polysomal ribosome
## 523 positive regulation of interferon-gamma production
## 524 positive regulation of JNK cascade
## 525 positive regulation of protein catabolic process
## 526 protein tyrosine phosphatase activity
## 527 regulation of cell growth
## 528 regulation of gene silencing by miRNA
## 529 regulation of growth
## 530 ribosome binding
## 531 U2-type precatalytic spliceosome
## 532 vascular endothelial growth factor receptor signaling pathway
## 533 autophagosome
## 534 cellular protein metabolic process
## 535 cellular response to mechanical stimulus
## 536 DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest
## 537 electron transport chain
## 538 endocytic recycling
## 539 ER to Golgi transport vesicle membrane
## 540 fatty acid biosynthetic process
## 541 integral component of Golgi membrane
## 542 kidney development
## 543 mRNA 3'-end processing
## 544 negative regulation of G2/M transition of mitotic cell cycle
## 545 p53 binding
## 546 peptidyl-threonine phosphorylation
## 547 positive regulation of inflammatory response
## 548 positive regulation of peptidyl-serine phosphorylation
## 549 positive regulation of protein binding
## 550 response to unfolded protein
## 551 response to UV
## 552 rough endoplasmic reticulum
## 553 actin filament
## 554 Cajal body
## 555 cellular response to leukemia inhibitory factor
## 556 cerebral cortex development
## 557 cytokine activity
## 558 defense response to bacterium
## 559 endopeptidase activity
## 560 ephrin receptor signaling pathway
## 561 fibroblast growth factor receptor signaling pathway
## 562 JNK cascade
## 563 negative regulation of inflammatory response
## 564 negative regulation of protein phosphorylation
## 565 negative regulation of protein ubiquitination
## 566 nucleosome assembly
## 567 phagocytosis
## 568 positive regulation of cytosolic calcium ion concentration
## 569 positive regulation of protein ubiquitination
## 570 positive regulation of type I interferon production
## 571 protein autoubiquitination
## 572 protein K48-linked ubiquitination
## 573 recycling endosome membrane
## 574 response to endoplasmic reticulum stress
## 575 response to organic substance
## 576 response to toxic substance
## 577 rRNA binding
## 578 tubulin binding
## 579 cell body
## 580 cellular response to amino acid starvation
## 581 cellular response to hydrogen peroxide
## 582 defense response
## 583 Fc-gamma receptor signaling pathway involved in phagocytosis
## 584 gene silencing by RNA
## 585 host cell
## 586 integrin-mediated signaling pathway
## 587 lateral plasma membrane
## 588 lysosomal lumen
## 589 negative regulation of neuron projection development
## 590 negative regulation of transforming growth factor beta receptor signaling pathway
## 591 neuron migration
## 592 phagocytic vesicle membrane
## 593 positive regulation of NIK/NF-kappaB signaling
## 594 post-embryonic development
## 595 potassium ion transmembrane transport
## 596 regulation of actin cytoskeleton organization
## 597 regulation of inflammatory response
## 598 regulation of protein localization
## 599 response to nutrient
## 600 response to nutrient levels
## 601 tertiary granule membrane
## 602 4 iron, 4 sulfur cluster binding
## 603 activation of protein kinase activity
## 604 axon cytoplasm
## 605 axonogenesis
## 606 cellular response to interferon-gamma
## 607 centrosome cycle
## 608 fat cell differentiation
## 609 integrin binding
## 610 mitotic spindle assembly
## 611 negative regulation of catalytic activity
## 612 negative regulation of cysteine-type endopeptidase activity involved in apoptotic process
## 613 ossification
## 614 phosphatidylinositol phosphorylation
## 615 phosphatidylinositol-4,5-bisphosphate binding
## 616 positive regulation of cold-induced thermogenesis
## 617 potassium ion transport
## 618 protein sumoylation
## 619 regulation of cyclin-dependent protein serine/threonine kinase activity
## 620 ribonucleoprotein complex binding
## 621 secretory granule
## 622 sensory perception of sound
## 623 skeletal system development
## 624 small ribosomal subunit
## 625 stem cell population maintenance
## 626 steroid biosynthetic process
## 627 symporter activity
## 628 telomere maintenance
## 629 transcription repressor complex
## 630 transport across blood-brain barrier
## 631 ATPase binding
## 632 cell-cell signaling
## 633 cellular iron ion homeostasis
## 634 central nervous system development
## 635 cis-Golgi network
## 636 cis-regulatory region sequence-specific DNA binding
## 637 clathrin-coated endocytic vesicle membrane
## 638 defense response to Gram-positive bacterium
## 639 DNA replication initiation
## 640 endocytic vesicle
## 641 endocytic vesicle membrane
## 642 heme binding
## 643 hemopoiesis
## 644 IRE1-mediated unfolded protein response
## 645 iron ion binding
## 646 lysosome organization
## 647 male gonad development
## 648 mediator complex
## 649 mitochondrial electron transport, NADH to ubiquinone
## 650 mitochondrial respiratory chain complex I
## 651 mitochondrial translation
## 652 mitotic metaphase plate congression
## 653 muscle contraction
## 654 muscle organ development
## 655 nuclear receptor transcription coactivator activity
## 656 PDZ domain binding
## 657 peroxisomal matrix
## 658 phospholipid biosynthetic process
## 659 positive regulation of endothelial cell proliferation
## 660 positive regulation of interleukin-8 production
## 661 positive regulation of phosphatidylinositol 3-kinase signaling
## 662 positive regulation of protein-containing complex assembly
## 663 promoter-specific chromatin binding
## 664 regulation of macroautophagy
## 665 regulation of protein phosphorylation
## 666 regulation of transcription initiation from RNA polymerase II promoter
## 667 response to bacterium
## 668 sarcolemma
## 669 specific granule lumen
## 670 spindle microtubule
## 671 stress fiber
## 672 translation initiation factor activity
## 673 activation of MAPKK activity
## 674 amyloid-beta binding
## 675 azurophil granule membrane
## 676 cell leading edge
## 677 cholesterol homeostasis
## 678 cytoskeletal protein binding
## 679 DNA damage response, detection of DNA damage
## 680 exonuclease activity
## 681 extrinsic component of cytoplasmic side of plasma membrane
## 682 glucose metabolic process
## 683 heat shock protein binding
## 684 intracellular transport of virus
## 685 negative regulation of G0 to G1 transition
## 686 negative regulation of neuron death
## 687 nucleobase-containing compound metabolic process
## 688 polysome
## 689 positive regulation of cell growth
## 690 protein kinase C binding
## 691 regulation of circadian rhythm
## 692 regulation of mitotic cell cycle
## 693 type I interferon signaling pathway
## 694 beta-catenin binding
## 695 cell periphery
## 696 cellular calcium ion homeostasis
## 697 cellular protein localization
## 698 cellular response to cytokine stimulus
## 699 cellular response to glucose stimulus
## 700 circadian regulation of gene expression
## 701 COPII-coated ER to Golgi transport vesicle
## 702 extrinsic component of membrane
## 703 fatty acid beta-oxidation
## 704 filopodium
## 705 lung development
## 706 motor activity
## 707 neuron projection morphogenesis
## 708 non-membrane spanning protein tyrosine kinase activity
## 709 phosphatidic acid biosynthetic process
## 710 positive regulation of gene expression, epigenetic
## 711 regulation of alternative mRNA splicing, via spliceosome
## 712 regulation of cytokinesis
## 713 response to hydrogen peroxide
## 714 response to ischemia
## 715 RNA metabolic process
## 716 syntaxin binding
## 717 T cell activation
## 718 tau protein binding
## 719 virus receptor activity
## 720 Z disc
## 721 anatomical structure morphogenesis
## 722 anchored component of membrane
## 723 autophagosome assembly
## 724 BMP signaling pathway
## 725 cellular response to starvation
## 726 chromatin DNA binding
## 727 DNA-dependent ATPase activity
## 728 electron transfer activity
## 729 estrogen receptor binding
## 730 heparin binding
## 731 histone acetylation
## 732 histone deacetylation
## 733 ion channel activity
## 734 mitotic sister chromatid segregation
## 735 NADH dehydrogenase (ubiquinone) activity
## 736 negative regulation of endopeptidase activity
## 737 negative regulation of G1/S transition of mitotic cell cycle
## 738 nucleosome
## 739 nucleotide-excision repair, DNA incision
## 740 nucleotide-excision repair, DNA incision, 5'-to lesion
## 741 positive regulation of actin filament polymerization
## 742 positive regulation of cysteine-type endopeptidase activity involved in apoptotic process
## 743 positive regulation of cytokine production
## 744 positive regulation of interferon-beta production
## 745 positive regulation of protein localization to plasma membrane
## 746 positive regulation of protein serine/threonine kinase activity
## 747 positive regulation of T cell proliferation
## 748 regulation of cell migration
## 749 regulation of cellular amino acid metabolic process
## 750 regulation of glycolytic process
## 751 regulation of ion transmembrane transport
## 752 regulation of transcription involved in G1/S transition of mitotic cell cycle
## 753 Rho protein signal transduction
## 754 scaffold protein binding
## 755 Schaffer collateral - CA1 synapse
## 756 SNARE binding
## 757 sphingolipid biosynthetic process
## 758 synaptic vesicle membrane
## 759 termination of RNA polymerase II transcription
## 760 tertiary granule lumen
## 761 voltage-gated ion channel activity
## 762 antiporter activity
## 763 ATP-dependent chromatin remodeling
## 764 axoneme
## 765 B cell differentiation
## 766 calcium-dependent protein binding
## 767 cellular response to drug
## 768 cytoplasmic microtubule
## 769 cytoplasmic side of plasma membrane
## 770 DNA-directed 5'-3' RNA polymerase activity
## 771 flavin adenine dinucleotide binding
## 772 GDP binding
## 773 microtubule-based movement
## 774 negative regulation of angiogenesis
## 775 negative regulation of cell death
## 776 negative regulation of DNA-binding transcription factor activity
## 777 negative regulation of tumor necrosis factor production
## 778 nuclear inner membrane
## 779 platelet aggregation
## 780 positive regulation of MAP kinase activity
## 781 positive regulation of neuron apoptotic process
## 782 protein N-linked glycosylation
## 783 regulation of exit from mitosis
## 784 regulation of phosphoprotein phosphatase activity
## 785 replication fork processing
## 786 response to hormone
## 787 ribosomal large subunit biogenesis
## 788 spermatid development
## 789 bone development
## 790 calcium channel activity
## 791 cation transport
## 792 cell morphogenesis
## 793 cell-matrix adhesion
## 794 cellular oxidant detoxification
## 795 cellular response to interleukin-1
## 796 CENP-A containing nucleosome assembly
## 797 cholesterol biosynthetic process
## 798 condensed nuclear chromosome
## 799 DNA damage checkpoint
## 800 endoplasmic reticulum unfolded protein response
## 801 endosome to lysosome transport
## 802 enzyme activator activity
## 803 epithelial cell differentiation
## 804 erythrocyte differentiation
## 805 exonucleolytic catabolism of deadenylated mRNA
## 806 ficolin-1-rich granule membrane
## 807 growth factor activity
## 808 heterochromatin
## 809 histone H3 acetylation
## 810 intermembrane lipid transfer
## 811 intrinsic apoptotic signaling pathway in response to DNA damage
## 812 membrane coat
## 813 metalloendopeptidase activity
## 814 miRNA binding
## 815 mitochondrial nucleoid
## 816 mitotic spindle assembly checkpoint
## 817 modulation of chemical synaptic transmission
## 818 multivesicular body assembly
## 819 negative regulation of autophagy
## 820 negative regulation of ERK1 and ERK2 cascade
## 821 negative regulation of inflammatory response to antigenic stimulus
## 822 nucleosome-dependent ATPase activity
## 823 phosphatase binding
## 824 positive regulation of osteoblast differentiation
## 825 positive regulation of protein kinase activity
## 826 positive regulation of smooth muscle cell proliferation
## 827 presynaptic membrane
## 828 protein K63-linked ubiquitination
## 829 protein phosphatase regulator activity
## 830 protein processing
## 831 protein self-association
## 832 response to cytokine
## 833 response to insulin
## 834 response to stimulus
## 835 RNA export from nucleus
## 836 single-stranded RNA binding
## 837 SNARE complex
## 838 sphingolipid metabolic process
## 839 spindle assembly
## 840 T cell costimulation
## 841 thyroid hormone receptor binding
## 842 transcription initiation from RNA polymerase I promoter
## 843 translational elongation
## 844 translesion synthesis
## 845 U4/U6 x U5 tri-snRNP complex
## 846 7-methylguanosine mRNA capping
## 847 amino acid transport
## 848 aminoacyl-tRNA ligase activity
## 849 apical part of cell
## 850 base-excision repair, gap-filling
## 851 blood microparticle
## 852 brush border
## 853 cartilage development
## 854 caveola
## 855 cell adhesion molecule binding
## 856 cellular response to growth factor stimulus
## 857 cellular response to ionizing radiation
## 858 cyclin-dependent protein serine/threonine kinase activity
## 859 DNA biosynthetic process
## 860 endoplasmic reticulum organization
## 861 endosome organization
## 862 extrinsic apoptotic signaling pathway
## 863 female pregnancy
## 864 G protein-coupled receptor binding
## 865 glutathione metabolic process
## 866 Hsp90 protein binding
## 867 intrinsic apoptotic signaling pathway
## 868 lipopolysaccharide-mediated signaling pathway
## 869 microtubule associated complex
## 870 mitotic spindle pole
## 871 negative regulation of GTPase activity
## 872 negative regulation of protein kinase B signaling
## 873 oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor
## 874 phosphatidylinositol-mediated signaling
## 875 phospholipid transport
## 876 platelet alpha granule lumen
## 877 polyubiquitin modification-dependent protein binding
## 878 positive regulation of endothelial cell migration
## 879 positive regulation of neuron differentiation
## 880 protein catabolic process
## 881 protein homotetramerization
## 882 protein K48-linked deubiquitination
## 883 protein targeting to mitochondrion
## 884 regulation of RNA splicing
## 885 response to ionizing radiation
## 886 RNA polymerase II general transcription initiation factor activity
## 887 SMAD binding
## 888 sodium ion transport
## 889 structural constituent of cytoskeleton
## 890 synaptic vesicle endocytosis
## 891 telomere maintenance via semi-conservative replication
## 892 termination of RNA polymerase I transcription
## 893 tRNA aminoacylation for protein translation
## 894 vesicle membrane
## 895 acrosomal vesicle
## 896 activation of JUN kinase activity
## 897 anion transmembrane transport
## 898 antigen processing and presentation
## 899 cellular response to calcium ion
## 900 condensed chromosome
## 901 establishment or maintenance of cell polarity
## 902 Golgi stack
## 903 hippocampus development
## 904 histone deacetylase complex
## 905 immunological synapse
## 906 integral component of mitochondrial inner membrane
## 907 kinesin binding
## 908 lysosome localization
## 909 microtubule motor activity
## 910 microvillus
## 911 mitotic chromosome condensation
## 912 motile cilium
## 913 negative regulation of cell cycle
## 914 negative regulation of epithelial cell proliferation
## 915 negative regulation of proteasomal ubiquitin-dependent protein catabolic process
## 916 negative regulation of signal transduction
## 917 NF-kappaB binding
## 918 nucleus organization
## 919 phosphatidylinositol-3-phosphate binding
## 920 positive regulation of DNA repair
## 921 positive regulation of insulin secretion involved in cellular response to glucose stimulus
## 922 positive regulation of interleukin-1 beta production
## 923 positive regulation of kinase activity
## 924 positive regulation of protein secretion
## 925 positive regulation of stress fiber assembly
## 926 positive regulation of viral transcription
## 927 protein targeting to membrane
## 928 proteolysis involved in cellular protein catabolic process
## 929 receptor tyrosine kinase binding
## 930 regulation of endocytosis
## 931 regulation of G protein-coupled receptor signaling pathway
## 932 repressing transcription factor binding
## 933 response to glucose
## 934 response to retinoic acid
## 935 response to wounding
## 936 retina development in camera-type eye
## 937 RNA polymerase II repressing transcription factor binding
## 938 serine-type endopeptidase activity
## 939 smoothened signaling pathway
## 940 spliceosomal snRNP assembly
## 941 translation elongation factor activity
## 942 voltage-gated potassium channel complex
## 943 ADP binding
## 944 amyloid fibril formation
## 945 calcium-mediated signaling
## 946 canonical Wnt signaling pathway
## 947 cation transmembrane transport
## 948 cellular response to reactive oxygen species
## 949 cellular response to retinoic acid
## 950 cholesterol binding
## 951 chromosome organization
## 952 cortical actin cytoskeleton
## 953 defense response to Gram-negative bacterium
## 954 endoribonuclease activity
## 955 enzyme inhibitor activity
## 956 hematopoietic progenitor cell differentiation
## 957 histone acetyltransferase activity
## 958 histone H4 acetylation
## 959 intermediate filament
## 960 kinesin complex
## 961 lamellipodium assembly
## 962 learning
## 963 mRNA 5'-UTR binding
## 964 multivesicular body
## 965 negative regulation of I-kappaB kinase/NF-kappaB signaling
## 966 negative regulation of interleukin-6 production
## 967 neuromuscular junction
## 968 nucleotide-excision repair
## 969 peptidyl-prolyl cis-trans isomerase activity
## 970 phosphatidylinositol dephosphorylation
## 971 phosphatidylserine binding
## 972 positive regulation of blood vessel endothelial cell migration
## 973 positive regulation of protein import into nucleus
## 974 protein destabilization
## 975 protein N-linked glycosylation via asparagine
## 976 protein O-linked glycosylation
## 977 protein peptidyl-prolyl isomerization
## 978 protein secretion
## 979 protein targeting
## 980 regulation of cell differentiation
## 981 regulation of defense response to virus by virus
## 982 regulation of megakaryocyte differentiation
## 983 ribosomal large subunit assembly
## 984 RNA polymerase II activating transcription factor binding
## 985 small-subunit processome
## 986 SNAP receptor activity
## 987 sodium ion transmembrane transport
## 988 tRNA modification
## 989 tumor necrosis factor receptor binding
## 990 viral protein processing
## 991 14-3-3 protein binding
## 992 aminopeptidase activity
## 993 ATPase-coupled transmembrane transporter activity
## 994 autophagosome membrane
## 995 basal plasma membrane
## 996 bicellular tight junction assembly
## 997 carbohydrate transport
## 998 cell redox homeostasis
## 999 cellular response to amino acid stimulus
## 1000 cellular response to virus
## 1001 chloride transport
## 1002 cytoplasmic microtubule organization
## 1003 determination of left/right symmetry
## 1004 DNA replication origin binding
## 1005 DNA-dependent DNA replication
## 1006 embryonic organ development
## 1007 epidermal growth factor receptor signaling pathway
## 1008 generation of precursor metabolites and energy
## 1009 GTPase binding
## 1010 heart morphogenesis
## 1011 histone methyltransferase complex
## 1012 inositol phosphate metabolic process
## 1013 interleukin-12-mediated signaling pathway
## 1014 lipid homeostasis
## 1015 mitochondrial small ribosomal subunit
## 1016 mRNA polyadenylation
## 1017 MyD88-dependent toll-like receptor signaling pathway
## 1018 NAD binding
## 1019 NAD+ ADP-ribosyltransferase activity
## 1020 neurogenesis
## 1021 neuron apoptotic process
## 1022 neurotransmitter transport
## 1023 non-motile cilium assembly
## 1024 nuclear receptor activity
## 1025 phosphatidylinositol-3,4,5-trisphosphate binding
## 1026 phosphoprotein binding
## 1027 phosphotyrosine residue binding
## 1028 positive regulation of interleukin-12 production
## 1029 positive regulation of viral genome replication
## 1030 preribosome, large subunit precursor
## 1031 protein serine/threonine/tyrosine kinase activity
## 1032 regulation of tumor necrosis factor-mediated signaling pathway
## 1033 replication fork
## 1034 response to estrogen
## 1035 serine-type peptidase activity
## 1036 SH2 domain binding
## 1037 sterol biosynthetic process
## 1038 stress-activated MAPK cascade
## 1039 transcription factor TFIID complex
## 1040 vesicle fusion
## 1041 adenylate cyclase-activating G protein-coupled receptor signaling pathway
## 1042 ATP metabolic process
## 1043 ATP-dependent microtubule motor activity
## 1044 base-excision repair
## 1045 basement membrane
## 1046 cellular response to epidermal growth factor stimulus
## 1047 cellular response to nerve growth factor stimulus
## 1048 clathrin binding
## 1049 clathrin-dependent endocytosis
## 1050 cognition
## 1051 Cul3-RING ubiquitin ligase complex
## 1052 cyclin binding
## 1053 dendrite cytoplasm
## 1054 DNA-templated transcription, initiation
## 1055 E-box binding
## 1056 extracellular matrix structural constituent
## 1057 Flemming body
## 1058 germ cell development
## 1059 global genome nucleotide-excision repair
## 1060 gluconeogenesis
## 1061 histone acetyltransferase binding
## 1062 histone acetyltransferase complex
## 1063 Hsp70 protein binding
## 1064 integrator complex
## 1065 intermediate filament cytoskeleton
## 1066 intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## 1067 keratinocyte differentiation
## 1068 liver regeneration
## 1069 maturation of SSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 1070 microtubule bundle formation
## 1071 MLL1 complex
## 1072 NADP binding
## 1073 negative regulation of cell adhesion
## 1074 negative regulation of fat cell differentiation
## 1075 negative regulation of neuron differentiation
## 1076 negative regulation of Notch signaling pathway
## 1077 negative regulation of phosphatase activity
## 1078 negative regulation of phosphoprotein phosphatase activity
## 1079 negative regulation of protein catabolic process
## 1080 negative regulation of viral genome replication
## 1081 nuclear chromosome
## 1082 nucleosome binding
## 1083 nucleotide-excision repair, DNA gap filling
## 1084 pericentric heterochromatin
## 1085 phosphatidylinositol 3-kinase signaling
## 1086 phospholipid metabolic process
## 1087 phosphoric diester hydrolase activity
## 1088 positive regulation of cell adhesion
## 1089 positive regulation of chemokine production
## 1090 positive regulation of cytokinesis
## 1091 positive regulation of DNA replication
## 1092 positive regulation of erythrocyte differentiation
## 1093 positive regulation of G1/S transition of mitotic cell cycle
## 1094 positive regulation of telomere maintenance via telomerase
## 1095 positive regulation of TOR signaling
## 1096 positive regulation of tyrosine phosphorylation of STAT protein
## 1097 protein insertion into ER membrane
## 1098 protein K63-linked deubiquitination
## 1099 protein phosphatase 2A binding
## 1100 protein serine/threonine kinase activator activity
## 1101 protein tyrosine/serine/threonine phosphatase activity
## 1102 regulation of cell motility
## 1103 regulation of DNA replication
## 1104 regulation of I-kappaB kinase/NF-kappaB signaling
## 1105 regulation of synaptic vesicle exocytosis
## 1106 RNA polymerase II complex binding
## 1107 RNA polymerase II transcription factor binding
## 1108 site of DNA damage
## 1109 somatic stem cell population maintenance
## 1110 spinal cord development
## 1111 T cell differentiation
## 1112 telomere maintenance via telomerase
## 1113 thymus development
## 1114 translation initiation factor binding
## 1115 tricarboxylic acid cycle
## 1116 tRNA export from nucleus
## 1117 U12-type spliceosomal complex
## 1118 visual learning
## 1119 xenobiotic metabolic process
## 1120 actin cytoskeleton reorganization
## 1121 actin filament polymerization
## 1122 antigen processing and presentation of peptide antigen via MHC class I
## 1123 antimicrobial humoral immune response mediated by antimicrobial peptide
## 1124 B cell receptor signaling pathway
## 1125 beta-tubulin binding
## 1126 carboxylic ester hydrolase activity
## 1127 cell motility
## 1128 cellular response to cAMP
## 1129 cellular response to gamma radiation
## 1130 cellular response to heat
## 1131 centrosome duplication
## 1132 ciliary tip
## 1133 collagen binding
## 1134 collagen fibril organization
## 1135 condensed chromosome, centromeric region
## 1136 cyclin-dependent protein kinase holoenzyme complex
## 1137 dendrite morphogenesis
## 1138 disordered domain specific binding
## 1139 DNA metabolic process
## 1140 embryonic placenta development
## 1141 error-free translesion synthesis
## 1142 error-prone translesion synthesis
## 1143 extracellular matrix disassembly
## 1144 extracellular vesicle
## 1145 flagellated sperm motility
## 1146 forebrain development
## 1147 gene expression
## 1148 glycosphingolipid metabolic process
## 1149 GTP-dependent protein binding
## 1150 humoral immune response
## 1151 intra-Golgi vesicle-mediated transport
## 1152 lactation
## 1153 limb development
## 1154 locomotory behavior
## 1155 microtubule plus-end binding
## 1156 mitochondrial cytochrome c oxidase assembly
## 1157 negative regulation of BMP signaling pathway
## 1158 negative regulation of cold-induced thermogenesis
## 1159 negative regulation of cyclin-dependent protein serine/threonine kinase activity
## 1160 negative regulation of TOR signaling
## 1161 negative regulation of type I interferon production
## 1162 negative regulation of Wnt signaling pathway
## 1163 neuron development
## 1164 nucleotide-binding oligomerization domain containing signaling pathway
## 1165 O-glycan processing
## 1166 one-carbon metabolic process
## 1167 peptidase inhibitor activity
## 1168 peptide binding
## 1169 phosphatidylinositol metabolic process
## 1170 pigmentation
## 1171 positive regulation of axon extension
## 1172 positive regulation of fat cell differentiation
## 1173 positive regulation of fibroblast proliferation
## 1174 positive regulation of insulin secretion
## 1175 positive regulation of interferon-alpha production
## 1176 positive regulation of neuron death
## 1177 positive regulation of protein localization to nucleus
## 1178 positive regulation of transforming growth factor beta receptor signaling pathway
## 1179 posttranscriptional regulation of gene expression
## 1180 potassium channel activity
## 1181 protein ADP-ribosylation
## 1182 protein localization to nucleus
## 1183 protein phosphatase inhibitor activity
## 1184 reciprocal meiotic recombination
## 1185 regulation of actin filament polymerization
## 1186 regulation of cytokine production
## 1187 regulation of synaptic plasticity
## 1188 response to activity
## 1189 response to glucocorticoid
## 1190 response to heat
## 1191 response to interleukin-1
## 1192 ribosomal small subunit biogenesis
## 1193 RNA phosphodiester bond hydrolysis, exonucleolytic
## 1194 signaling receptor complex adaptor activity
## 1195 single fertilization
## 1196 spindle midzone
## 1197 substantia nigra development
## 1198 TRIF-dependent toll-like receptor signaling pathway
## 1199 ubiquitin-like protein ligase binding
## 1200 acetylglucosaminyltransferase activity
## 1201 actin polymerization or depolymerization
## 1202 aerobic respiration
## 1203 anaphase-promoting complex
## 1204 androgen receptor binding
## 1205 anterior/posterior pattern specification
## 1206 B cell activation
## 1207 calcium-dependent phospholipid binding
## 1208 cellular defense response
## 1209 centriole replication
## 1210 cerebellum development
## 1211 chaperone cofactor-dependent protein refolding
## 1212 chloride channel activity
## 1213 COP9 signalosome
## 1214 cyclin-dependent protein serine/threonine kinase regulator activity
## 1215 DNA-directed DNA polymerase activity
## 1216 endoplasmic reticulum quality control compartment
## 1217 epidermis development
## 1218 ERBB2 signaling pathway
## 1219 establishment of protein localization
## 1220 euchromatin
## 1221 eukaryotic translation initiation factor 3 complex
## 1222 extrinsic apoptotic signaling pathway via death domain receptors
## 1223 glycogen metabolic process
## 1224 GPI anchor biosynthetic process
## 1225 granulocyte differentiation
## 1226 histone deacetylase activity
## 1227 histone-lysine N-methyltransferase activity
## 1228 hydrolase activity, hydrolyzing O-glycosyl compounds
## 1229 integral component of lumenal side of endoplasmic reticulum membrane
## 1230 intraciliary transport involved in cilium assembly
## 1231 K63-linked polyubiquitin modification-dependent protein binding
## 1232 lysosomal transport
## 1233 membrane fusion
## 1234 memory
## 1235 methyl-CpG binding
## 1236 microtubule nucleation
## 1237 microtubule plus-end
## 1238 mRNA catabolic process
## 1239 mRNA stabilization
## 1240 negative regulation of DNA binding
## 1241 negative regulation of DNA recombination at telomere
## 1242 negative regulation of extrinsic apoptotic signaling pathway via death domain receptors
## 1243 negative regulation of fibroblast proliferation
## 1244 negative regulation of peptidase activity
## 1245 negative regulation of T cell proliferation
## 1246 nuclear envelope organization
## 1247 nuclear hormone receptor binding
## 1248 nucleobase-containing small molecule interconversion
## 1249 nucleotide metabolic process
## 1250 nucleotide-excision repair, preincision complex assembly
## 1251 outflow tract morphogenesis
## 1252 oxidative phosphorylation
## 1253 peroxisome organization
## 1254 positive regulation of cell cycle
## 1255 positive regulation of defense response to virus by host
## 1256 positive regulation of interleukin-10 production
## 1257 positive regulation of intrinsic apoptotic signaling pathway
## 1258 positive regulation of macroautophagy
## 1259 positive regulation of microtubule polymerization
## 1260 positive regulation of mitotic cell cycle
## 1261 positive regulation of neurogenesis
## 1262 positive regulation of nitric oxide biosynthetic process
## 1263 positive regulation of Notch signaling pathway
## 1264 positive regulation of pri-miRNA transcription by RNA polymerase II
## 1265 positive regulation of protein tyrosine kinase activity
## 1266 positive regulation of Ras protein signal transduction
## 1267 positive regulation of telomerase activity
## 1268 potassium channel regulator activity
## 1269 protein kinase B signaling
## 1270 protein methylation
## 1271 protein-DNA complex
## 1272 receptor internalization
## 1273 regulation of cell adhesion
## 1274 regulation of metabolic process
## 1275 response to calcium ion
## 1276 response to gamma radiation
## 1277 response to peptide hormone
## 1278 RNA catabolic process
## 1279 RNA methylation
## 1280 sarcoplasmic reticulum
## 1281 signaling adaptor activity
## 1282 spindle organization
## 1283 stress granule assembly
## 1284 substrate adhesion-dependent cell spreading
## 1285 SWI/SNF complex
## 1286 synapse organization
## 1287 transcription by RNA polymerase III
## 1288 U2-type catalytic step 2 spliceosome
## 1289 3'-5'-exoribonuclease activity
## 1290 acetyltransferase activity
## 1291 actin monomer binding
## 1292 activating transcription factor binding
## 1293 aggresome
## 1294 anterograde axonal transport
## 1295 beta-catenin-TCF complex assembly
## 1296 brush border membrane
## 1297 cation channel activity
## 1298 cell chemotaxis
## 1299 cellular response to estradiol stimulus
## 1300 cellular response to glucose starvation
## 1301 chloride transmembrane transport
## 1302 chromosome condensation
## 1303 clathrin adaptor activity
## 1304 collagen trimer
## 1305 copper ion binding
## 1306 cortical actin cytoskeleton organization
## 1307 cytoplasmic translational initiation
## 1308 DNA methylation
## 1309 epidermal growth factor receptor binding
## 1310 epithelial to mesenchymal transition
## 1311 eukaryotic 43S preinitiation complex
## 1312 fatty-acyl-CoA binding
## 1313 formation of cytoplasmic translation initiation complex
## 1314 four-way junction DNA binding
## 1315 GABA-ergic synapse
## 1316 gamma-tubulin binding
## 1317 Golgi to endosome transport
## 1318 Golgi to plasma membrane transport
## 1319 growth factor binding
## 1320 heart looping
## 1321 histone lysine methylation
## 1322 homophilic cell adhesion via plasma membrane adhesion molecules
## 1323 Ino80 complex
## 1324 intrinsic apoptotic signaling pathway by p53 class mediator
## 1325 iron ion homeostasis
## 1326 learning or memory
## 1327 lung alveolus development
## 1328 lysine-acetylated histone binding
## 1329 MAP kinase kinase kinase activity
## 1330 mitochondrial calcium ion transmembrane transport
## 1331 mitotic G2 DNA damage checkpoint
## 1332 negative regulation of cell differentiation
## 1333 negative regulation of extrinsic apoptotic signaling pathway
## 1334 negative regulation of gene expression, epigenetic
## 1335 negative regulation of insulin receptor signaling pathway
## 1336 negative regulation of MAP kinase activity
## 1337 negative regulation of microtubule depolymerization
## 1338 negative regulation of osteoblast differentiation
## 1339 negative regulation of protein-containing complex assembly
## 1340 negative regulation of stress fiber assembly
## 1341 negative regulation of T cell receptor signaling pathway
## 1342 negative regulation of type I interferon-mediated signaling pathway
## 1343 neutrophil chemotaxis
## 1344 nuclear import signal receptor activity
## 1345 nucleocytoplasmic transport
## 1346 nucleosomal DNA binding
## 1347 nucleotide-excision repair, DNA damage recognition
## 1348 nucleotide-excision repair, DNA duplex unwinding
## 1349 oogenesis
## 1350 osteoclast differentiation
## 1351 ovarian follicle development
## 1352 PcG protein complex
## 1353 phosphatidylinositol-4-phosphate binding
## 1354 photoreceptor cell maintenance
## 1355 photoreceptor outer segment
## 1356 placenta development
## 1357 podosome
## 1358 positive regulation of ATPase activity
## 1359 positive regulation of axonogenesis
## 1360 positive regulation of B cell proliferation
## 1361 positive regulation of BMP signaling pathway
## 1362 positive regulation of cell cycle arrest
## 1363 positive regulation of cyclin-dependent protein serine/threonine kinase activity
## 1364 positive regulation of epithelial cell migration
## 1365 positive regulation of epithelial cell proliferation
## 1366 positive regulation of extrinsic apoptotic signaling pathway
## 1367 positive regulation of glucose import
## 1368 positive regulation of JUN kinase activity
## 1369 positive regulation of pathway-restricted SMAD protein phosphorylation
## 1370 positive regulation of phagocytosis
## 1371 positive regulation of protein dephosphorylation
## 1372 positive regulation of protein targeting to mitochondrion
## 1373 positive regulation of substrate adhesion-dependent cell spreading
## 1374 protein import into peroxisome membrane
## 1375 protein K11-linked ubiquitination
## 1376 protein kinase inhibitor activity
## 1377 protein maturation
## 1378 protein phosphatase 1 binding
## 1379 protein-cysteine S-palmitoyltransferase activity
## 1380 purine nucleotide biosynthetic process
## 1381 Rac protein signal transduction
## 1382 regulation of blood pressure
## 1383 regulation of cytoskeleton organization
## 1384 regulation of DNA-binding transcription factor activity
## 1385 regulation of exocytosis
## 1386 regulation of focal adhesion assembly
## 1387 regulation of insulin secretion
## 1388 regulation of mitotic spindle assembly
## 1389 regulation of protein kinase activity
## 1390 regulation of translational initiation
## 1391 response to axon injury
## 1392 response to cadmium ion
## 1393 response to progesterone
## 1394 RNA phosphodiester bond hydrolysis
## 1395 semaphorin-plexin signaling pathway
## 1396 snRNA processing
## 1397 somitogenesis
## 1398 spliceosomal complex assembly
## 1399 T cell homeostasis
## 1400 telomeric DNA binding
## 1401 TOR signaling
## 1402 transport vesicle membrane
## 1403 TRAPP complex
## 1404 U1 snRNP
## 1405 vesicle budding from membrane
## 1406 viral budding via host ESCRT complex
## 1407 Wnt signaling pathway, calcium modulating pathway
## 1408 3'-5' DNA helicase activity
## 1409 actomyosin structure organization
## 1410 adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway
## 1411 adipose tissue development
## 1412 adult locomotory behavior
## 1413 antibacterial humoral response
## 1414 aorta development
## 1415 autophagosome maturation
## 1416 axon terminus
## 1417 axonal growth cone
## 1418 barbed-end actin filament capping
## 1419 blood vessel development
## 1420 camera-type eye development
## 1421 cardiac muscle contraction
## 1422 cellular protein-containing complex assembly
## 1423 cellular response to fatty acid
## 1424 cellular response to interferon-beta
## 1425 cellular response to interleukin-4
## 1426 cellular response to transforming growth factor beta stimulus
## 1427 chaperone-mediated protein folding
## 1428 chromatin silencing
## 1429 ciliary transition zone
## 1430 clathrin coat assembly
## 1431 COPII-coated vesicle cargo loading
## 1432 cristae formation
## 1433 Cul4-RING E3 ubiquitin ligase complex
## 1434 dendrite development
## 1435 determination of adult lifespan
## 1436 DNA double-strand break processing
## 1437 DNA polymerase binding
## 1438 early endosome to late endosome transport
## 1439 embryonic digit morphogenesis
## 1440 endoplasmic reticulum exit site
## 1441 establishment of mitotic spindle orientation
## 1442 eukaryotic 48S preinitiation complex
## 1443 execution phase of apoptosis
## 1444 FAD binding
## 1445 filamentous actin
## 1446 folic acid metabolic process
## 1447 gamete generation
## 1448 glycolytic process
## 1449 Golgi to plasma membrane protein transport
## 1450 histone H3 deacetylation
## 1451 homeostasis of number of cells
## 1452 innate immune response in mucosa
## 1453 interleukin-27-mediated signaling pathway
## 1454 kinetochore assembly
## 1455 lipopolysaccharide binding
## 1456 megakaryocyte development
## 1457 melanosome organization
## 1458 mesoderm development
## 1459 metalloaminopeptidase activity
## 1460 MHC class II protein complex
## 1461 mismatch repair
## 1462 mitochondrial ribosome
## 1463 myelination
## 1464 myeloid cell differentiation
## 1465 N-acetyltransferase activity
## 1466 N-glycan processing
## 1467 negative regulation of double-strand break repair via homologous recombination
## 1468 negative regulation of interferon-gamma production
## 1469 negative regulation of intrinsic apoptotic signaling pathway
## 1470 negative regulation of mitotic cell cycle
## 1471 negative regulation of NIK/NF-kappaB signaling
## 1472 negative regulation of ubiquitin protein ligase activity
## 1473 neural crest cell migration
## 1474 neural tube development
## 1475 NuA4 histone acetyltransferase complex
## 1476 nuclear receptor binding
## 1477 nuclear-transcribed mRNA poly(A) tail shortening
## 1478 palmitoyltransferase activity
## 1479 peptide antigen binding
## 1480 phosphatidic acid binding
## 1481 phosphatidylcholine acyl-chain remodeling
## 1482 phosphatidylcholine binding
## 1483 phosphatidylcholine biosynthetic process
## 1484 phosphatidylinositol 3-kinase complex
## 1485 poly(U) RNA binding
## 1486 positive regulation of calcium ion transport
## 1487 positive regulation of catalytic activity
## 1488 positive regulation of cell death
## 1489 positive regulation of cell differentiation
## 1490 positive regulation of DNA binding
## 1491 positive regulation of exocytosis
## 1492 positive regulation of filopodium assembly
## 1493 positive regulation of histone acetylation
## 1494 positive regulation of innate immune response
## 1495 positive regulation of receptor internalization
## 1496 positive regulation of transcription initiation from RNA polymerase II promoter
## 1497 presynaptic active zone
## 1498 production of miRNAs involved in gene silencing by miRNA
## 1499 protein ADP-ribosylase activity
## 1500 protein kinase C-activating G protein-coupled receptor signaling pathway
## 1501 protein palmitoylation
## 1502 protein targeting to lysosome
## 1503 regulation of actin cytoskeleton reorganization
## 1504 regulation of cell morphogenesis
## 1505 regulation of cell size
## 1506 regulation of centrosome duplication
## 1507 regulation of membrane potential
## 1508 regulation of mitochondrion organization
## 1509 regulation of neurogenesis
## 1510 regulation of protein localization to plasma membrane
## 1511 regulation of transforming growth factor beta receptor signaling pathway
## 1512 response to antibiotic
## 1513 response to mechanical stimulus
## 1514 sarcomere
## 1515 sarcoplasmic reticulum membrane
## 1516 sister chromatid cohesion
## 1517 skeletal muscle cell differentiation
## 1518 SMAD protein signal transduction
## 1519 stereocilium
## 1520 structural constituent of nuclear pore
## 1521 synapse assembly
## 1522 synaptic membrane
## 1523 TBP-class protein binding
## 1524 toll-like receptor signaling pathway
## 1525 toxin transport
## 1526 transcription elongation factor complex
## 1527 transferrin transport
## 1528 U2 snRNP
## 1529 ubiquitin conjugating enzyme activity
## 1530 ubiquitin conjugating enzyme binding
## 1531 vasculogenesis
## 1532 2-oxoglutarate-dependent dioxygenase activity
## 1533 activation of protein kinase B activity
## 1534 aggrephagy
## 1535 anatomical structure development
## 1536 animal organ regeneration
## 1537 antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## 1538 ATP biosynthetic process
## 1539 axon extension
## 1540 B cell homeostasis
## 1541 beta-catenin destruction complex disassembly
## 1542 bile acid and bile salt transport
## 1543 bile acid biosynthetic process
## 1544 binding of sperm to zona pellucida
## 1545 biosynthetic process
## 1546 blastocyst development
## 1547 blastocyst formation
## 1548 camera-type eye morphogenesis
## 1549 cAMP response element binding
## 1550 carbohydrate phosphorylation
## 1551 carboxy-lyase activity
## 1552 cell aging
## 1553 cell death
## 1554 cellular amino acid biosynthetic process
## 1555 cellular response to BMP stimulus
## 1556 cellular response to low-density lipoprotein particle stimulus
## 1557 centrosome localization
## 1558 ceramide biosynthetic process
## 1559 clathrin-coated vesicle membrane
## 1560 condensed nuclear chromosome kinetochore
## 1561 COPI-coated vesicle membrane
## 1562 coreceptor activity
## 1563 cytokine binding
## 1564 dendritic shaft
## 1565 DNA strand elongation involved in DNA replication
## 1566 endoplasmic reticulum mannose trimming
## 1567 energy homeostasis
## 1568 ERK1 and ERK2 cascade
## 1569 establishment of cell polarity
## 1570 excitatory postsynaptic potential
## 1571 gastrulation
## 1572 histone H3-K4 methylation
## 1573 histone methylation
## 1574 homeostasis of number of cells within a tissue
## 1575 hormone-mediated signaling pathway
## 1576 inner cell mass cell proliferation
## 1577 inorganic anion transport
## 1578 inositol phosphate dephosphorylation
## 1579 interleukin-6-mediated signaling pathway
## 1580 intracellular transport
## 1581 intrinsic component of plasma membrane
## 1582 iron-sulfur cluster assembly
## 1583 lamellipodium membrane
## 1584 large ribosomal subunit
## 1585 low-density lipoprotein particle clearance
## 1586 lysophospholipase activity
## 1587 maintenance of blood-brain barrier
## 1588 maturation of SSU-rRNA
## 1589 MHC class II protein complex binding
## 1590 microtubule-based process
## 1591 midbody abscission
## 1592 mitochondrial fusion
## 1593 mitogen-activated protein kinase binding
## 1594 mitotic sister chromatid cohesion
## 1595 mRNA cleavage and polyadenylation specificity factor complex
## 1596 mRNA destabilization
## 1597 mRNA splice site selection
## 1598 myosin complex
## 1599 negative chemotaxis
## 1600 negative regulation of cytokine production involved in inflammatory response
## 1601 negative regulation of endothelial cell apoptotic process
## 1602 negative regulation of epidermal growth factor receptor signaling pathway
## 1603 negative regulation of Ras protein signal transduction
## 1604 negative regulation of toll-like receptor signaling pathway
## 1605 nuclear localization sequence binding
## 1606 nuclear replication fork
## 1607 nucleotide-excision repair, DNA incision, 3'-to lesion
## 1608 nucleotide-excision repair, preincision complex stabilization
## 1609 oxidoreductase activity, acting on the CH-CH group of donors
## 1610 pattern specification process
## 1611 peptidyl-L-cysteine S-palmitoylation
## 1612 pericentriolar material
## 1613 phagocytic cup
## 1614 phosphatidylinositol phosphate binding
## 1615 phosphatidylinositol-3-phosphatase activity
## 1616 phosphatidylinositol-3,4-bisphosphate binding
## 1617 phospholipid translocation
## 1618 photoreceptor connecting cilium
## 1619 positive regulation of cell-substrate adhesion
## 1620 positive regulation of cholesterol efflux
## 1621 positive regulation of cytokine production involved in inflammatory response
## 1622 positive regulation of dendrite morphogenesis
## 1623 positive regulation of DNA-templated transcription, elongation
## 1624 positive regulation of double-strand break repair via nonhomologous end joining
## 1625 positive regulation of epidermal growth factor receptor signaling pathway
## 1626 positive regulation of glial cell proliferation
## 1627 positive regulation of interleukin-2 production
## 1628 positive regulation of interleukin-4 production
## 1629 positive regulation of lamellipodium assembly
## 1630 positive regulation of mRNA splicing, via spliceosome
## 1631 positive regulation of nitric-oxide synthase activity
## 1632 positive regulation of potassium ion transmembrane transport
## 1633 positive regulation of protein export from nucleus
## 1634 positive regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## 1635 positive regulation of proteolysis
## 1636 positive regulation of smoothened signaling pathway
## 1637 positive regulation of stress-activated MAPK cascade
## 1638 positive regulation of T cell activation
## 1639 positive regulation of transcription of Notch receptor target
## 1640 positive regulation of translational initiation
## 1641 positive regulation of triglyceride biosynthetic process
## 1642 positive regulation of vascular associated smooth muscle cell proliferation
## 1643 precatalytic spliceosome
## 1644 proteasome assembly
## 1645 proteasome binding
## 1646 protein folding chaperone
## 1647 protein import into mitochondrial matrix
## 1648 protein kinase A regulatory subunit binding
## 1649 protein phosphatase type 2A complex
## 1650 protein tyrosine kinase binding
## 1651 receptor signaling pathway via JAK-STAT
## 1652 regulation of calcium ion transport
## 1653 regulation of double-strand break repair via homologous recombination
## 1654 regulation of embryonic development
## 1655 regulation of glucose metabolic process
## 1656 regulation of microtubule cytoskeleton organization
## 1657 regulation of mitochondrial membrane potential
## 1658 regulation of mitotic nuclear division
## 1659 regulation of myelination
## 1660 regulation of protein catabolic process
## 1661 regulation of signal transduction
## 1662 release of sequestered calcium ion into cytosol
## 1663 response to exogenous dsRNA
## 1664 response to radiation
## 1665 response to tumor necrosis factor
## 1666 response to X-ray
## 1667 retinoid X receptor binding
## 1668 ribosomal small subunit assembly
## 1669 RNA polymerase binding
## 1670 RNA polymerase II core promoter sequence-specific DNA binding
## 1671 RNA polymerase II transcription corepressor binding
## 1672 RNA polymerase II, core complex
## 1673 RNA polymerase III complex
## 1674 roof of mouth development
## 1675 rRNA catabolic process
## 1676 scavenger receptor activity
## 1677 small nuclear ribonucleoprotein complex
## 1678 snoRNA binding
## 1679 T cell differentiation in thymus
## 1680 T cell proliferation
## 1681 tau-protein kinase activity
## 1682 telomerase RNA binding
## 1683 transcription coactivator binding
## 1684 transforming growth factor beta binding
## 1685 translation regulator activity
## 1686 U2-type prespliceosome
## 1687 U6 snRNA binding
## 1688 ubiquitin-ubiquitin ligase activity
## 1689 vasculature development
## 1690 ventricular septum development
## 1691 vesicle docking
## 1692 vesicle docking involved in exocytosis
## 1693 3'-5' exonuclease activity
## 1694 acetylgalactosaminyltransferase activity
## 1695 actin filament bundle assembly
## 1696 activation of innate immune response
## 1697 alpha-tubulin binding
## 1698 anterograde synaptic vesicle transport
## 1699 antigen binding
## 1700 apoptotic cell clearance
## 1701 arachidonic acid metabolic process
## 1702 bHLH transcription factor binding
## 1703 bicarbonate transport
## 1704 blastocyst hatching
## 1705 BLOC-1 complex
## 1706 blood circulation
## 1707 bone mineralization
## 1708 branched-chain amino acid catabolic process
## 1709 branching involved in blood vessel morphogenesis
## 1710 canonical glycolysis
## 1711 cardiac conduction
## 1712 cargo receptor activity
## 1713 cation binding
## 1714 cell maturation
## 1715 cellular lipid metabolic process
## 1716 cellular response to cadmium ion
## 1717 cellular response to hormone stimulus
## 1718 cellular response to peptide
## 1719 chaperone-mediated protein complex assembly
## 1720 chondrocyte differentiation
## 1721 ciliary membrane
## 1722 clathrin-coated endocytic vesicle
## 1723 COPI vesicle coat
## 1724 COPII vesicle coat
## 1725 cullin family protein binding
## 1726 cytoskeleton-dependent cytokinesis
## 1727 defense response to protozoan
## 1728 double-strand break repair via break-induced replication
## 1729 dynein complex binding
## 1730 embryonic limb morphogenesis
## 1731 entrainment of circadian clock by photoperiod
## 1732 extrinsic component of plasma membrane
## 1733 eye development
## 1734 face development
## 1735 Fanconi anaemia nuclear complex
## 1736 ferrous iron binding
## 1737 fertilization
## 1738 fibroblast growth factor binding
## 1739 filopodium tip
## 1740 Golgi vesicle transport
## 1741 Golgi-associated vesicle
## 1742 hemostasis
## 1743 hippo signaling
## 1744 hippocampal mossy fiber to CA3 synapse
## 1745 histone demethylase activity
## 1746 import into nucleus
## 1747 inclusion body
## 1748 integral component of mitochondrial outer membrane
## 1749 intracellular cholesterol transport
## 1750 L-ascorbic acid binding
## 1751 lipid biosynthetic process
## 1752 long-term memory
## 1753 M band
## 1754 macrophage differentiation
## 1755 MAP kinase kinase activity
## 1756 maturation of LSU-rRNA
## 1757 metal ion transport
## 1758 MHC class I protein binding
## 1759 microtubule depolymerization
## 1760 misfolded protein binding
## 1761 mitochondria-associated endoplasmic reticulum membrane
## 1762 mitotic nuclear envelope disassembly
## 1763 muscle cell cellular homeostasis
## 1764 negative regulation of apoptotic signaling pathway
## 1765 negative regulation of cell cycle arrest
## 1766 negative regulation of cytokine production
## 1767 negative regulation of endothelial cell proliferation
## 1768 negative regulation of interferon-beta production
## 1769 negative regulation of interleukin-2 production
## 1770 negative regulation of JNK cascade
## 1771 negative regulation of macroautophagy
## 1772 negative regulation of mRNA splicing, via spliceosome
## 1773 negative regulation of protein serine/threonine kinase activity
## 1774 negative regulation of smoothened signaling pathway
## 1775 negative regulation of viral entry into host cell
## 1776 neuromuscular junction development
## 1777 neuromuscular process controlling balance
## 1778 neurotransmitter secretion
## 1779 nuclear-transcribed mRNA catabolic process
## 1780 oocyte maturation
## 1781 P-body assembly
## 1782 phagophore assembly site
## 1783 phospholipase A2 activity
## 1784 platelet-derived growth factor receptor signaling pathway
## 1785 positive regulation of activated T cell proliferation
## 1786 positive regulation of bone mineralization
## 1787 positive regulation of cell-matrix adhesion
## 1788 positive regulation of collagen biosynthetic process
## 1789 positive regulation of dendritic spine development
## 1790 positive regulation of double-strand break repair via homologous recombination
## 1791 positive regulation of focal adhesion assembly
## 1792 positive regulation of G2/M transition of mitotic cell cycle
## 1793 positive regulation of intracellular protein transport
## 1794 positive regulation of long-term synaptic potentiation
## 1795 positive regulation of phosphatidylinositol 3-kinase activity
## 1796 positive regulation of protein autophosphorylation
## 1797 positive regulation of protein targeting to membrane
## 1798 positive regulation of release of cytochrome c from mitochondria
## 1799 positive regulation of telomere capping
## 1800 positive regulation of TORC1 signaling
## 1801 positive regulation of ubiquitin protein ligase activity
## 1802 proline-rich region binding
## 1803 proteasome accessory complex
## 1804 protein acetylation
## 1805 protein deacetylation
## 1806 protein export from nucleus
## 1807 protein localization to cell surface
## 1808 protein localization to centrosome
## 1809 protein localization to chromatin
## 1810 protein localization to chromosome, telomeric region
## 1811 protein monoubiquitination
## 1812 protein targeting to vacuole
## 1813 protein transmembrane transporter activity
## 1814 pseudouridine synthase activity
## 1815 pseudouridine synthesis
## 1816 purine ribonucleoside monophosphate biosynthetic process
## 1817 purinergic nucleotide receptor signaling pathway
## 1818 pyridoxal phosphate binding
## 1819 pyruvate metabolic process
## 1820 receptor recycling
## 1821 regulation of androgen receptor signaling pathway
## 1822 regulation of dendritic spine morphogenesis
## 1823 regulation of establishment of cell polarity
## 1824 regulation of gene expression, epigenetic
## 1825 regulation of gluconeogenesis
## 1826 regulation of innate immune response
## 1827 regulation of multicellular organism growth
## 1828 regulation of necroptotic process
## 1829 regulation of neuron differentiation
## 1830 regulation of Notch signaling pathway
## 1831 regulation of phosphatidylinositol 3-kinase activity
## 1832 regulation of proteasomal ubiquitin-dependent protein catabolic process
## 1833 regulation of protein-containing complex assembly
## 1834 release of cytochrome c from mitochondria
## 1835 resolution of meiotic recombination intermediates
## 1836 response to amino acid
## 1837 response to cAMP
## 1838 response to cocaine
## 1839 response to cold
## 1840 response to electrical stimulus
## 1841 response to zinc ion
## 1842 retromer complex
## 1843 RISC complex
## 1844 RNA cap binding
## 1845 RNA modification
## 1846 RNA stem-loop binding
## 1847 S-adenosylmethionine-dependent methyltransferase activity
## 1848 serine-type endopeptidase inhibitor activity
## 1849 single-stranded DNA helicase activity
## 1850 skeletal muscle fiber development
## 1851 skeletal muscle tissue development
## 1852 skeletal muscle tissue regeneration
## 1853 spindle pole centrosome
## 1854 stem cell differentiation
## 1855 stress-activated protein kinase signaling cascade
## 1856 syntaxin-1 binding
## 1857 tail-anchored membrane protein insertion into ER membrane
## 1858 telomerase holoenzyme complex
## 1859 terminal bouton
## 1860 tissue development
## 1861 translation repressor activity, mRNA regulatory element binding
## 1862 triglyceride lipase activity
## 1863 tRNA methylation
## 1864 U5 snRNP
## 1865 unsaturated fatty acid biosynthetic process
## 1866 UV protection
## 1867 vacuolar transport
## 1868 vesicle organization
## 1869 vesicle transport along microtubule
## 1870 voltage-gated potassium channel activity
## 1871 WASH complex
## 1872 WW domain binding
## 1873 zinc ion transport
## 1874 1-phosphatidylinositol binding
## 1875 2 iron, 2 sulfur cluster binding
## 1876 5S rRNA binding
## 1877 7SK snRNA binding
## 1878 90S preribosome
## 1879 activation of phospholipase C activity
## 1880 acyl-CoA metabolic process
## 1881 Ada2/Gcn5/Ada3 transcription activator complex
## 1882 adenylate cyclase-modulating G protein-coupled receptor signaling pathway
## 1883 alpha-linolenic acid metabolic process
## 1884 anoikis
## 1885 ATPase-coupled intramembrane lipid transporter activity
## 1886 attachment of mitotic spindle microtubules to kinetochore
## 1887 blood vessel remodeling
## 1888 bone morphogenesis
## 1889 calcium channel complex
## 1890 calcium-dependent protein kinase C activity
## 1891 carboxylic acid metabolic process
## 1892 cardiac septum development
## 1893 CCR4-NOT complex
## 1894 cell fate commitment
## 1895 cell junction assembly
## 1896 cell-cell contact zone
## 1897 cell-substrate adhesion
## 1898 cellular response to angiotensin
## 1899 cellular response to cholesterol
## 1900 cellular response to dexamethasone stimulus
## 1901 cellular response to ethanol
## 1902 cellular response to hydroxyurea
## 1903 cellular response to organic substance
## 1904 cellular response to peptide hormone stimulus
## 1905 cellular response to vascular endothelial growth factor stimulus
## 1906 cellular senescence
## 1907 cellular zinc ion homeostasis
## 1908 cholesterol transfer activity
## 1909 cholesterol transport
## 1910 chondroitin sulfate biosynthetic process
## 1911 chromatin silencing complex
## 1912 clathrin adaptor complex
## 1913 CMG complex
## 1914 condensed chromosome outer kinetochore
## 1915 COPI-coated vesicle
## 1916 coronary vasculature development
## 1917 cortical cytoskeleton
## 1918 cysteine-type endopeptidase activator activity involved in apoptotic process
## 1919 cytochrome-c oxidase activity
## 1920 cytokine receptor activity
## 1921 desmosome
## 1922 developmental growth
## 1923 DNA replication checkpoint
## 1924 DNA synthesis involved in DNA repair
## 1925 DNA unwinding involved in DNA replication
## 1926 dynein intermediate chain binding
## 1927 embryonic morphogenesis
## 1928 endochondral ossification
## 1929 endopeptidase inhibitor activity
## 1930 endothelial cell migration
## 1931 enzyme regulator activity
## 1932 ESC/E(Z) complex
## 1933 exit from mitosis
## 1934 exocyst
## 1935 exon-exon junction complex
## 1936 exosome (RNase complex)
## 1937 face morphogenesis
## 1938 G-quadruplex DNA binding
## 1939 glucocorticoid receptor binding
## 1940 glutathione biosynthetic process
## 1941 glycosaminoglycan biosynthetic process
## 1942 Golgi cisterna
## 1943 Golgi lumen
## 1944 Golgi to lysosome transport
## 1945 GTPase inhibitor activity
## 1946 GTPase regulator activity
## 1947 hair follicle development
## 1948 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules
## 1949 heterotypic cell-cell adhesion
## 1950 histone H3-K4 trimethylation
## 1951 histone methyltransferase activity
## 1952 histone phosphorylation
## 1953 homologous chromosome pairing at meiosis
## 1954 immunological synapse formation
## 1955 inner ear development
## 1956 integral component of peroxisomal membrane
## 1957 integral component of postsynaptic density membrane
## 1958 integral component of synaptic vesicle membrane
## 1959 intercalated disc
## 1960 intra-S DNA damage checkpoint
## 1961 intraciliary transport
## 1962 intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## 1963 labyrinthine layer blood vessel development
## 1964 long-chain fatty-acyl-CoA biosynthetic process
## 1965 low-density lipoprotein particle receptor binding
## 1966 lymph node development
## 1967 Lys48-specific deubiquitinase activity
## 1968 macropinosome
## 1969 maternal process involved in female pregnancy
## 1970 maturation of LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 1971 MCM complex
## 1972 melanosome transport
## 1973 mesoderm formation
## 1974 metaphase plate congression
## 1975 microvillus assembly
## 1976 microvillus membrane
## 1977 midbrain development
## 1978 mitochondrial electron transport, cytochrome c to oxygen
## 1979 mitochondrial electron transport, ubiquinol to cytochrome c
## 1980 mitochondrion morphogenesis
## 1981 mitotic cell cycle checkpoint
## 1982 mitotic cell cycle phase transition
## 1983 monocyte differentiation
## 1984 mRNA 3'-UTR AU-rich region binding
## 1985 mRNA methylation
## 1986 MyD88-independent toll-like receptor signaling pathway
## 1987 myelin sheath
## 1988 myeloid dendritic cell differentiation
## 1989 myoblast differentiation
## 1990 myosin V binding
## 1991 NAD+ binding
## 1992 negative regulation of actin filament polymerization
## 1993 negative regulation of axon extension
## 1994 negative regulation of DNA replication
## 1995 negative regulation of extrinsic apoptotic signaling pathway in absence of ligand
## 1996 negative regulation of interleukin-12 production
## 1997 negative regulation of macrophage derived foam cell differentiation
## 1998 negative regulation of MAPK cascade
## 1999 negative regulation of peptidyl-serine phosphorylation
## 2000 negative regulation of protein localization to plasma membrane
## 2001 negative regulation of proteolysis
## 2002 negative regulation of reactive oxygen species metabolic process
## 2003 negative regulation of release of cytochrome c from mitochondria
## 2004 negative regulation of Rho protein signal transduction
## 2005 negative regulation of signaling receptor activity
## 2006 negative regulation of smooth muscle cell proliferation
## 2007 negative regulation of telomere maintenance via telomerase
## 2008 negative regulation of transcription elongation from RNA polymerase II promoter
## 2009 negative regulation of translational initiation
## 2010 neuron cellular homeostasis
## 2011 nuclear inclusion body
## 2012 nuclear periphery
## 2013 nucleoside diphosphate kinase activity
## 2014 nucleoside diphosphate phosphorylation
## 2015 nucleoside metabolic process
## 2016 nucleosome disassembly
## 2017 odontogenesis of dentin-containing tooth
## 2018 oligosaccharide biosynthetic process
## 2019 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen
## 2020 peptidyl-threonine dephosphorylation
## 2021 peroxidase activity
## 2022 phagocytosis, engulfment
## 2023 phosphatidylinositol phospholipase C activity
## 2024 phosphatidylinositol-4,5-bisphosphate 5-phosphatase activity
## 2025 phospholipase A2 activity (consuming 1,2-dipalmitoylphosphatidylcholine)
## 2026 phospholipase A2 activity consuming 1,2-dioleoylphosphatidylethanolamine)
## 2027 phospholipase activity
## 2028 plasma membrane raft
## 2029 platelet alpha granule membrane
## 2030 platelet formation
## 2031 positive chemotaxis
## 2032 positive regulation by host of viral transcription
## 2033 positive regulation of apoptotic signaling pathway
## 2034 positive regulation of dendritic spine morphogenesis
## 2035 positive regulation of glycolytic process
## 2036 positive regulation of mitochondrial membrane potential
## 2037 positive regulation of neuron migration
## 2038 positive regulation of p38MAPK cascade
## 2039 positive regulation of peptidyl-threonine phosphorylation
## 2040 positive regulation of proteasomal protein catabolic process
## 2041 positive regulation of protein localization to cell surface
## 2042 positive regulation of SMAD protein signal transduction
## 2043 positive regulation of superoxide anion generation
## 2044 positive regulation of T cell receptor signaling pathway
## 2045 positive regulation of telomere maintenance
## 2046 positive regulation of ubiquitin-protein transferase activity
## 2047 positive regulation of vascular endothelial growth factor production
## 2048 positive regulation of viral entry into host cell
## 2049 positive regulation of wound healing
## 2050 pre-miRNA processing
## 2051 preassembly of GPI anchor in ER membrane
## 2052 programmed cell death
## 2053 proteasomal ubiquitin-independent protein catabolic process
## 2054 protein disulfide isomerase activity
## 2055 protein kinase A binding
## 2056 protein kinase C activity
## 2057 protein localization to cilium
## 2058 protein localization to Golgi apparatus
## 2059 protein localization to membrane
## 2060 protein localization to organelle
## 2061 protein mono-ADP-ribosylation
## 2062 protein quality control for misfolded or incompletely synthesized proteins
## 2063 protein targeting to ER
## 2064 proton transmembrane transporter activity
## 2065 R-SMAD binding
## 2066 reactive oxygen species metabolic process
## 2067 receptor clustering
## 2068 receptor ligand activity
## 2069 regulated exocytosis
## 2070 regulation of angiogenesis
## 2071 regulation of canonical Wnt signaling pathway
## 2072 regulation of chromosome segregation
## 2073 regulation of DNA methylation
## 2074 regulation of extrinsic apoptotic signaling pathway via death domain receptors
## 2075 regulation of fat cell differentiation
## 2076 regulation of intracellular estrogen receptor signaling pathway
## 2077 regulation of intracellular pH
## 2078 regulation of mRNA splicing, via spliceosome
## 2079 regulation of neuron apoptotic process
## 2080 regulation of ossification
## 2081 regulation of phosphatidylinositol 3-kinase signaling
## 2082 regulation of protein binding
## 2083 regulation of smoothened signaling pathway
## 2084 regulation of TOR signaling
## 2085 regulation of Wnt signaling pathway
## 2086 replication fork protection
## 2087 replicative senescence
## 2088 respiratory gaseous exchange by respiratory system
## 2089 response to organonitrogen compound
## 2090 response to starvation
## 2091 reticulophagy
## 2092 retinoic acid receptor binding
## 2093 retinol metabolic process
## 2094 ribonuclease activity
## 2095 ribosomal large subunit binding
## 2096 RNA methyltransferase activity
## 2097 RNA polymerase I complex
## 2098 RNA polymerase II CTD heptapeptide repeat kinase activity
## 2099 RNA splicing, via transesterification reactions
## 2100 ruffle organization
## 2101 sensory perception of pain
## 2102 signal transduction involved in G2 DNA damage checkpoint
## 2103 skeletal system morphogenesis
## 2104 SMN-Sm protein complex
## 2105 smooth endoplasmic reticulum
## 2106 social behavior
## 2107 spliceosomal tri-snRNP complex assembly
## 2108 sterol binding
## 2109 sterol transport
## 2110 striated muscle cell differentiation
## 2111 structural constituent of muscle
## 2112 surfactant homeostasis
## 2113 synaptonemal complex
## 2114 T cell mediated immunity
## 2115 T-tubule
## 2116 toll-like receptor 9 signaling pathway
## 2117 transcription export complex
## 2118 transcription factor TFIIH holo complex
## 2119 transferase activity, transferring acyl groups other than amino-acyl groups
## 2120 transferase activity, transferring hexosyl groups
## 2121 translation factor activity, RNA binding
## 2122 transporter activity
## 2123 ubiquitin ligase inhibitor activity
## 2124 ubiquitin-specific protease binding
## 2125 ubiquitinyl hydrolase activity
## 2126 vacuolar acidification
## 2127 vacuolar membrane
## 2128 vacuole
## 2129 ventricular septum morphogenesis
## 2130 very long-chain fatty acid biosynthetic process
## 2131 virion assembly
## 2132 vitamin D receptor binding
## 2133 1-phosphatidylinositol-3-kinase regulator activity
## 2134 3',5'-cyclic-nucleotide phosphodiesterase activity
## 2135 actin filament severing
## 2136 action potential
## 2137 activation of NF-kappaB-inducing kinase activity
## 2138 adenyl-nucleotide exchange factor activity
## 2139 alpha-mannosidase activity
## 2140 alternative mRNA splicing, via spliceosome
## 2141 amyloid-beta clearance
## 2142 anion transport
## 2143 aortic valve morphogenesis
## 2144 apolipoprotein binding
## 2145 apoptotic mitochondrial changes
## 2146 armadillo repeat domain binding
## 2147 aspartic-type endopeptidase activity
## 2148 ATP synthesis coupled proton transport
## 2149 ATPase activator activity
## 2150 autophagy of mitochondrion
## 2151 blood vessel morphogenesis
## 2152 bone remodeling
## 2153 branching morphogenesis of an epithelial tube
## 2154 cadherin binding involved in cell-cell adhesion
## 2155 calcium ion import
## 2156 calcium-ion regulated exocytosis
## 2157 cAMP-mediated signaling
## 2158 cardiac muscle cell differentiation
## 2159 CD40 receptor complex
## 2160 cell development
## 2161 cell migration involved in sprouting angiogenesis
## 2162 cell projection assembly
## 2163 cell-cell junction organization
## 2164 cellular glucose homeostasis
## 2165 cellular response to ATP
## 2166 cellular response to chemokine
## 2167 cellular response to exogenous dsRNA
## 2168 cellular response to fibroblast growth factor stimulus
## 2169 cellular response to hepatocyte growth factor stimulus
## 2170 cellular response to unfolded protein
## 2171 centriolar subdistal appendage
## 2172 centriole-centriole cohesion
## 2173 chaperone complex
## 2174 chloride channel complex
## 2175 chondrocyte development
## 2176 chromatin-mediated maintenance of transcription
## 2177 chromocenter
## 2178 cochlea development
## 2179 condensin complex
## 2180 core promoter sequence-specific DNA binding
## 2181 cornification
## 2182 cyclin/CDK positive transcription elongation factor complex
## 2183 cytoplasmic pattern recognition receptor signaling pathway
## 2184 cytoskeleton-dependent intracellular transport
## 2185 decidualization
## 2186 definitive hemopoiesis
## 2187 detection of calcium ion
## 2188 diacylglycerol binding
## 2189 dynein light intermediate chain binding
## 2190 embryo implantation
## 2191 embryonic cranial skeleton morphogenesis
## 2192 embryonic pattern specification
## 2193 endoderm development
## 2194 endolysosome membrane
## 2195 endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 2196 enoyl-CoA hydratase activity
## 2197 ephrin receptor binding
## 2198 ESCRT III complex
## 2199 establishment of protein localization to membrane
## 2200 eukaryotic translation initiation factor 3 complex, eIF3m
## 2201 eukaryotic translation initiation factor 4F complex
## 2202 extracellular matrix binding
## 2203 extrinsic apoptotic signaling pathway in absence of ligand
## 2204 fatty acid beta-oxidation using acyl-CoA oxidase
## 2205 fatty acid catabolic process
## 2206 fatty acid homeostasis
## 2207 focal adhesion assembly
## 2208 G-protein alpha-subunit binding
## 2209 gamma-tubulin complex
## 2210 gastrulation with mouth forming second
## 2211 Gemini of coiled bodies
## 2212 glutathione derivative biosynthetic process
## 2213 glycogen biosynthetic process
## 2214 glycogen catabolic process
## 2215 glycosaminoglycan binding
## 2216 Golgi cis cisterna
## 2217 Golgi ribbon formation
## 2218 GTPase activating protein binding
## 2219 hematopoietic stem cell differentiation
## 2220 heterotrimeric G-protein complex
## 2221 histone H2A acetylation
## 2222 histone H3-K9 demethylation
## 2223 histone methyltransferase activity (H3-K4 specific)
## 2224 histone mRNA metabolic process
## 2225 hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides
## 2226 hydrolase activity, acting on ester bonds
## 2227 inactivation of MAPK activity
## 2228 inner mitochondrial membrane organization
## 2229 integral component of postsynaptic membrane
## 2230 interleukin-35-mediated signaling pathway
## 2231 interleukin-7-mediated signaling pathway
## 2232 intermediate filament cytoskeleton organization
## 2233 intrinsic apoptotic signaling pathway in response to oxidative stress
## 2234 isotype switching
## 2235 keratan sulfate biosynthetic process
## 2236 keratin filament
## 2237 killing of cells of other organism
## 2238 late endosome to vacuole transport via multivesicular body sorting pathway
## 2239 lateral element
## 2240 leukocyte cell-cell adhesion
## 2241 lipid droplet organization
## 2242 long-term synaptic potentiation
## 2243 lung morphogenesis
## 2244 maintenance of protein location in nucleus
## 2245 mannosyltransferase activity
## 2246 MDM2/MDM4 family protein binding
## 2247 meiotic spindle
## 2248 methylosome
## 2249 MHC class II receptor activity
## 2250 microglial cell activation
## 2251 microtubule anchoring
## 2252 microtubule organizing center organization
## 2253 miRNA mediated inhibition of translation
## 2254 mitochondrial calcium ion homeostasis
## 2255 mitochondrial fission
## 2256 mitochondrial respiratory chain complex III
## 2257 monooxygenase activity
## 2258 multivesicular body membrane
## 2259 multivesicular body sorting pathway
## 2260 myofibril
## 2261 NAD+ kinase activity
## 2262 natural killer cell activation
## 2263 necroptotic process
## 2264 negative regulation of activated T cell proliferation
## 2265 negative regulation of androgen receptor signaling pathway
## 2266 negative regulation of autophagosome assembly
## 2267 negative regulation of B cell proliferation
## 2268 negative regulation of cardiac muscle cell apoptotic process
## 2269 negative regulation of cell motility
## 2270 negative regulation of cell-cell adhesion
## 2271 negative regulation of cellular senescence
## 2272 negative regulation of cholesterol storage
## 2273 negative regulation of cilium assembly
## 2274 negative regulation of glycolytic process
## 2275 negative regulation of hippo signaling
## 2276 negative regulation of insulin secretion
## 2277 negative regulation of interleukin-1 beta production
## 2278 negative regulation of neurogenesis
## 2279 negative regulation of osteoclast differentiation
## 2280 negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## 2281 negative regulation of phagocytosis
## 2282 negative regulation of phosphorylation
## 2283 negative regulation of reactive oxygen species biosynthetic process
## 2284 negative regulation of T cell activation
## 2285 negative regulation of ubiquitin-dependent protein catabolic process
## 2286 neuroblast proliferation
## 2287 neuronal action potential
## 2288 neuronal stem cell population maintenance
## 2289 NLS-bearing protein import into nucleus
## 2290 non-motile cilium
## 2291 nuclear exosome (RNase complex)
## 2292 nuclear migration
## 2293 nuclear origin of replication recognition complex
## 2294 nuclear pore complex assembly
## 2295 NuRD complex
## 2296 obsolete small monomeric GTPase activity
## 2297 odontogenesis
## 2298 palmitoyl-(protein) hydrolase activity
## 2299 pattern recognition receptor activity
## 2300 peptide alpha-N-acetyltransferase activity
## 2301 peptidyl-serine dephosphorylation
## 2302 phagosome acidification
## 2303 phosphate-containing compound metabolic process
## 2304 phosphatidylinositol 3-kinase binding
## 2305 phosphatidylinositol-3,5-bisphosphate binding
## 2306 phospholipase binding
## 2307 photoreceptor inner segment
## 2308 poly(A) binding
## 2309 poly(A)+ mRNA export from nucleus
## 2310 positive regulation of amyloid-beta formation
## 2311 positive regulation of Arp2/3 complex-mediated actin nucleation
## 2312 positive regulation of B cell activation
## 2313 positive regulation of cell migration involved in sprouting angiogenesis
## 2314 positive regulation of chondrocyte differentiation
## 2315 positive regulation of cilium assembly
## 2316 positive regulation of double-strand break repair
## 2317 positive regulation of epithelial to mesenchymal transition
## 2318 positive regulation of exosomal secretion
## 2319 positive regulation of histone H3-K4 methylation
## 2320 positive regulation of immunoglobulin production
## 2321 positive regulation of megakaryocyte differentiation
## 2322 positive regulation of mitochondrial fission
## 2323 positive regulation of mitotic nuclear division
## 2324 positive regulation of monocyte differentiation
## 2325 positive regulation of multicellular organism growth
## 2326 positive regulation of nitric-oxide synthase biosynthetic process
## 2327 positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## 2328 positive regulation of nuclear-transcribed mRNA poly(A) tail shortening
## 2329 positive regulation of osteoclast differentiation
## 2330 positive regulation of peptidase activity
## 2331 positive regulation of phosphoprotein phosphatase activity
## 2332 positive regulation of protein acetylation
## 2333 positive regulation of regulatory T cell differentiation
## 2334 positive regulation of RIG-I signaling pathway
## 2335 positive regulation of RNA splicing
## 2336 positive regulation of ruffle assembly
## 2337 positive regulation of signal transduction by p53 class mediator
## 2338 positive regulation of T cell migration
## 2339 positive regulation of tumor necrosis factor-mediated signaling pathway
## 2340 positive thymic T cell selection
## 2341 postsynaptic cytosol
## 2342 postsynaptic density membrane
## 2343 pre-mRNA cleavage required for polyadenylation
## 2344 proteasome core complex
## 2345 protein auto-ADP-ribosylation
## 2346 protein complex oligomerization
## 2347 protein deacetylase activity
## 2348 protein deglycosylation
## 2349 protein depalmitoylation
## 2350 protein import into peroxisome matrix
## 2351 protein kinase activator activity
## 2352 protein localization to kinetochore
## 2353 protein localization to phagophore assembly site
## 2354 protein tag
## 2355 protein tetramerization
## 2356 proteoglycan biosynthetic process
## 2357 proton-transporting ATPase activity, rotational mechanism
## 2358 pseudopodium
## 2359 rDNA heterochromatin assembly
## 2360 receptor catabolic process
## 2361 regulation of ARF protein signal transduction
## 2362 regulation of cardiac conduction
## 2363 regulation of cellular senescence
## 2364 regulation of centriole replication
## 2365 regulation of complement activation
## 2366 regulation of ERK1 and ERK2 cascade
## 2367 regulation of fibroblast migration
## 2368 regulation of G1/S transition of mitotic cell cycle
## 2369 regulation of immunoglobulin production
## 2370 regulation of microtubule polymerization or depolymerization
## 2371 regulation of mitotic spindle organization
## 2372 regulation of neuron death
## 2373 regulation of osteoblast differentiation
## 2374 regulation of phosphorylation
## 2375 regulation of protein complex stability
## 2376 regulation of protein secretion
## 2377 regulation of protein ubiquitination
## 2378 regulation of reactive oxygen species metabolic process
## 2379 regulation of Rho protein signal transduction
## 2380 regulation of sodium ion transport
## 2381 regulation of stress fiber assembly
## 2382 regulation of T cell activation
## 2383 regulation of telomere maintenance
## 2384 regulation of type I interferon production
## 2385 response to amphetamine
## 2386 response to lipid
## 2387 response to steroid hormone
## 2388 response to testosterone
## 2389 retina homeostasis
## 2390 retrograde protein transport, ER to cytosol
## 2391 RNA N6-methyladenosine methyltransferase complex
## 2392 RNA polymerase I preinitiation complex assembly
## 2393 RNA secondary structure unwinding
## 2394 skin development
## 2395 small ribosomal subunit rRNA binding
## 2396 snRNA 3'-end processing
## 2397 specific granule
## 2398 sperm flagellum
## 2399 spleen development
## 2400 sprouting angiogenesis
## 2401 steroid hormone mediated signaling pathway
## 2402 steroid hormone receptor activity
## 2403 sulfotransferase activity
## 2404 Swr1 complex
## 2405 synaptic transmission, glutamatergic
## 2406 synaptic vesicle transport
## 2407 T cell receptor complex
## 2408 t-circle formation
## 2409 TORC1 complex
## 2410 TORC2 complex
## 2411 transcription factor TFIIH core complex
## 2412 transcriptionally active chromatin
## 2413 triglyceride metabolic process
## 2414 tRNA aminoacylation
## 2415 tRNA splicing, via endonucleolytic cleavage and ligation
## 2416 U4 snRNP
## 2417 U6 snRNP
## 2418 ubiquinone biosynthetic process
## 2419 UV-damage excision repair
## 2420 vasodilation
## 2421 ventricular system development
## 2422 very long-chain fatty acid metabolic process
## 2423 voltage-gated calcium channel activity
## 2424 Wnt-protein binding
## 2425 zinc ion transmembrane transport
## 2426 17-beta-hydroxysteroid dehydrogenase (NAD+) activity
## 2427 5'-3' DNA helicase activity
## 2428 5'-3' exonuclease activity
## 2429 acrosome assembly
## 2430 actin filament capping
## 2431 actin filament depolymerization
## 2432 actin filament-based movement
## 2433 actin-dependent ATPase activity
## 2434 activation of adenylate cyclase activity
## 2435 adherens junction assembly
## 2436 adult walking behavior
## 2437 amino acid transmembrane transporter activity
## 2438 aminoacyl-tRNA synthetase multienzyme complex
## 2439 AMP binding
## 2440 amyloid precursor protein catabolic process
## 2441 anchored component of plasma membrane
## 2442 antigen processing and presentation of endogenous peptide antigen via MHC class I
## 2443 antioxidant activity
## 2444 AP-1 adaptor complex
## 2445 AP-2 adaptor complex
## 2446 apical junction complex
## 2447 Arp2/3 complex-mediated actin nucleation
## 2448 artery morphogenesis
## 2449 aryl hydrocarbon receptor binding
## 2450 astral microtubule organization
## 2451 ATP-dependent microtubule motor activity, plus-end-directed
## 2452 ATP-dependent peptidase activity
## 2453 attachment of spindle microtubules to kinetochore
## 2454 auditory receptor cell stereocilium organization
## 2455 autolysosome
## 2456 brain morphogenesis
## 2457 brown fat cell differentiation
## 2458 calcium channel regulator activity
## 2459 calcium import into the mitochondrion
## 2460 calcium-dependent cysteine-type endopeptidase activity
## 2461 calyx of Held
## 2462 carboxypeptidase activity
## 2463 cation transmembrane transporter activity
## 2464 CD40 signaling pathway
## 2465 cell activation
## 2466 cell adhesion mediated by integrin
## 2467 cell cortex region
## 2468 cell division site
## 2469 cell volume homeostasis
## 2470 cellular amino acid metabolic process
## 2471 cellular response to amyloid-beta
## 2472 cellular response to estrogen stimulus
## 2473 cellular response to interferon-alpha
## 2474 cellular response to interleukin-7
## 2475 cellular response to laminar fluid shear stress
## 2476 cellular response to platelet-derived growth factor stimulus
## 2477 cellular response to prostaglandin E stimulus
## 2478 cellular response to zinc ion
## 2479 ceramide metabolic process
## 2480 chemorepellent activity
## 2481 chromatoid body
## 2482 ciliary base
## 2483 cilium organization
## 2484 clathrin coat of coated pit
## 2485 clathrin heavy chain binding
## 2486 clathrin vesicle coat
## 2487 collagen catabolic process
## 2488 complement activation
## 2489 cotranslational protein targeting to membrane
## 2490 cullin-RING ubiquitin ligase complex
## 2491 cysteine-type endopeptidase activity involved in apoptotic process
## 2492 cysteine-type endopeptidase inhibitor activity
## 2493 cytoskeletal anchor activity
## 2494 deacetylase activity
## 2495 delayed rectifier potassium channel activity
## 2496 dendritic spine development
## 2497 depurination
## 2498 digestive tract development
## 2499 DNA clamp loader activity
## 2500 DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## 2501 DNA dealkylation involved in DNA repair
## 2502 DNA methylation involved in gamete generation
## 2503 DNA replication-independent nucleosome assembly
## 2504 DNA topological change
## 2505 DNA-binding transcription activator activity
## 2506 dynein complex
## 2507 early endosome to Golgi transport
## 2508 embryonic camera-type eye morphogenesis
## 2509 embryonic hemopoiesis
## 2510 embryonic skeletal system development
## 2511 endodermal cell differentiation
## 2512 endosome transport via multivesicular body sorting pathway
## 2513 endothelial cell proliferation
## 2514 erythrocyte development
## 2515 erythrocyte maturation
## 2516 ESCRT III complex disassembly
## 2517 establishment of centrosome localization
## 2518 establishment of skin barrier
## 2519 establishment or maintenance of epithelial cell apical/basal polarity
## 2520 estradiol 17-beta-dehydrogenase activity
## 2521 fatty acid elongation
## 2522 fatty acid oxidation
## 2523 fatty-acyl-CoA biosynthetic process
## 2524 female gonad development
## 2525 fibronectin binding
## 2526 filopodium membrane
## 2527 FMN binding
## 2528 frizzled binding
## 2529 fructose 1,6-bisphosphate metabolic process
## 2530 fructose 6-phosphate metabolic process
## 2531 galactose metabolic process
## 2532 gene silencing by miRNA
## 2533 glucose transmembrane transport
## 2534 glutamate metabolic process
## 2535 glutamine family amino acid metabolic process
## 2536 glutathione peroxidase activity
## 2537 glycoprotein metabolic process
## 2538 glycosaminoglycan catabolic process
## 2539 glycosaminoglycan metabolic process
## 2540 glycosylation
## 2541 Golgi to vacuole transport
## 2542 Golgi trans cisterna
## 2543 head development
## 2544 heparan sulfate proteoglycan biosynthetic process
## 2545 histone demethylase activity (H3-K36 specific)
## 2546 histone demethylase activity (H3-K9 specific)
## 2547 histone deubiquitination
## 2548 histone H2A monoubiquitination
## 2549 histone H3-K36 demethylation
## 2550 histone H4 deacetylation
## 2551 histone H4-K5 acetylation
## 2552 histone H4-K8 acetylation
## 2553 histone methyltransferase activity (H3-K36 specific)
## 2554 histone methyltransferase binding
## 2555 histone modification
## 2556 histone monoubiquitination
## 2557 homologous chromosome segregation
## 2558 HOPS complex
## 2559 hydrogen peroxide catabolic process
## 2560 I band
## 2561 inflammatory response to antigenic stimulus
## 2562 insulin secretion
## 2563 insulin-like growth factor receptor signaling pathway
## 2564 integral component of mitochondrial membrane
## 2565 integral component of presynaptic membrane
## 2566 integrin complex
## 2567 internal peptidyl-lysine acetylation
## 2568 intracellular organelle
## 2569 ionotropic glutamate receptor binding
## 2570 IRES-dependent viral translational initiation
## 2571 iron ion transport
## 2572 isopeptidase activity
## 2573 isoprenoid biosynthetic process
## 2574 JUN kinase binding
## 2575 lamin binding
## 2576 lens development in camera-type eye
## 2577 lens fiber cell differentiation
## 2578 leucine zipper domain binding
## 2579 leukocyte tethering or rolling
## 2580 lipid phosphorylation
## 2581 lipid translocation
## 2582 lipoprotein transport
## 2583 long-chain fatty acid biosynthetic process
## 2584 long-chain fatty acid metabolic process
## 2585 long-chain fatty acid transporter activity
## 2586 low-density lipoprotein particle receptor activity
## 2587 low-density lipoprotein particle receptor catabolic process
## 2588 Lsm2-8 complex
## 2589 Lys63-specific deubiquitinase activity
## 2590 maintenance of DNA methylation
## 2591 male meiosis I
## 2592 male meiotic nuclear division
## 2593 mannose metabolic process
## 2594 mannosyl-oligosaccharide 1,2-alpha-mannosidase activity
## 2595 mannosylation
## 2596 MAP kinase activity
## 2597 maturation of 5.8S rRNA
## 2598 meiosis I
## 2599 membrane insertase activity
## 2600 membrane protein intracellular domain proteolysis
## 2601 membrane protein proteolysis
## 2602 messenger ribonucleoprotein complex
## 2603 metal ion transmembrane transporter activity
## 2604 metalloexopeptidase activity
## 2605 microfilament motor activity
## 2606 microtubule minus-end binding
## 2607 microtubule polymerization
## 2608 miRNA loading onto RISC involved in gene silencing by miRNA
## 2609 miRNA metabolic process
## 2610 mitochondrial outer membrane translocase complex
## 2611 mitogen-activated protein kinase kinase binding
## 2612 mitotic DNA replication checkpoint
## 2613 mitotic spindle microtubule
## 2614 mitotic spindle midzone
## 2615 MLL3/4 complex
## 2616 monoubiquitinated protein deubiquitination
## 2617 MOZ/MORF histone acetyltransferase complex
## 2618 mRNA cis splicing, via spliceosome
## 2619 muscle filament sliding
## 2620 MutLalpha complex binding
## 2621 MutSalpha complex binding
## 2622 myosin binding
## 2623 N-acetylglucosamine metabolic process
## 2624 N-terminal protein amino acid acetylation
## 2625 NADH dehydrogenase activity
## 2626 NADPH binding
## 2627 nBAF complex
## 2628 negative regulation by host of viral transcription
## 2629 negative regulation of axon extension involved in axon guidance
## 2630 negative regulation of DNA damage response, signal transduction by p53 class mediator
## 2631 negative regulation of DNA recombination
## 2632 negative regulation of endocytosis
## 2633 negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## 2634 negative regulation of endothelial cell migration
## 2635 negative regulation of epidermal growth factor-activated receptor activity
## 2636 negative regulation of epithelial cell migration
## 2637 negative regulation of focal adhesion assembly
## 2638 negative regulation of gluconeogenesis
## 2639 negative regulation of insulin secretion involved in cellular response to glucose stimulus
## 2640 negative regulation of interleukin-10 production
## 2641 negative regulation of interleukin-17 production
## 2642 negative regulation of interleukin-8 production
## 2643 negative regulation of intracellular estrogen receptor signaling pathway
## 2644 negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## 2645 negative regulation of myeloid cell differentiation
## 2646 negative regulation of oxidative stress-induced neuron death
## 2647 negative regulation of pri-miRNA transcription by RNA polymerase II
## 2648 negative regulation of protein localization to cell surface
## 2649 negative regulation of protein tyrosine kinase activity
## 2650 negative regulation of receptor internalization
## 2651 negative regulation of telomerase activity
## 2652 negative regulation of telomere maintenance via telomere lengthening
## 2653 negative regulation of vascular associated smooth muscle cell proliferation
## 2654 negative regulation of viral release from host cell
## 2655 neural crest cell development
## 2656 neurotrophin TRK receptor signaling pathway
## 2657 nitric-oxide synthase binding
## 2658 Notch binding
## 2659 npBAF complex
## 2660 nuclear export
## 2661 nuclear pore outer ring
## 2662 nucleoside triphosphate biosynthetic process
## 2663 O-acyltransferase activity
## 2664 oligodendrocyte development
## 2665 oligosaccharide metabolic process
## 2666 oligosaccharyltransferase complex
## 2667 organelle membrane
## 2668 organelle organization
## 2669 peptide catabolic process
## 2670 peptide transport
## 2671 peptide-lysine-N-acetyltransferase activity
## 2672 peptidyl-lysine acetylation
## 2673 perinuclear endoplasmic reticulum
## 2674 peripheral nervous system myelin maintenance
## 2675 phagophore assembly site membrane
## 2676 phosphatase regulator activity
## 2677 phosphate ion binding
## 2678 phosphate ion transmembrane transport
## 2679 phosphatidyl phospholipase B activity
## 2680 phosphatidylethanolamine acyl-chain remodeling
## 2681 phosphatidylethanolamine biosynthetic process
## 2682 phosphatidylinositol-3-phosphate biosynthetic process
## 2683 phospholipase C-activating G protein-coupled receptor signaling pathway
## 2684 phosphotransferase activity, alcohol group as acceptor
## 2685 plasma membrane tubulation
## 2686 platelet dense granule organization
## 2687 positive regulation of actin cytoskeleton reorganization
## 2688 positive regulation of adaptive immune response
## 2689 positive regulation of blood coagulation
## 2690 positive regulation of bone resorption
## 2691 positive regulation of calcineurin-NFAT signaling cascade
## 2692 positive regulation of calcium-mediated signaling
## 2693 positive regulation of cardiac muscle hypertrophy
## 2694 positive regulation of cell cycle G1/S phase transition
## 2695 positive regulation of cell division
## 2696 positive regulation of cellular senescence
## 2697 positive regulation of ceramide biosynthetic process
## 2698 positive regulation of circadian rhythm
## 2699 positive regulation of CREB transcription factor activity
## 2700 positive regulation of cytokine production involved in immune response
## 2701 positive regulation of DNA-directed DNA polymerase activity
## 2702 positive regulation of endothelial cell apoptotic process
## 2703 positive regulation of gene silencing by miRNA
## 2704 positive regulation of histone deacetylation
## 2705 positive regulation of histone phosphorylation
## 2706 positive regulation of insulin receptor signaling pathway
## 2707 positive regulation of interleukin-13 production
## 2708 positive regulation of isotype switching
## 2709 positive regulation of keratinocyte differentiation
## 2710 positive regulation of leukocyte adhesion to vascular endothelial cell
## 2711 positive regulation of lipid biosynthetic process
## 2712 positive regulation of membrane protein ectodomain proteolysis
## 2713 positive regulation of mitochondrial calcium ion concentration
## 2714 positive regulation of mitochondrial translation
## 2715 positive regulation of mitotic metaphase/anaphase transition
## 2716 positive regulation of mRNA catabolic process
## 2717 positive regulation of muscle cell differentiation
## 2718 positive regulation of neutrophil chemotaxis
## 2719 positive regulation of protein localization to early endosome
## 2720 positive regulation of reactive oxygen species metabolic process
## 2721 positive regulation of receptor recycling
## 2722 positive regulation of receptor signaling pathway via JAK-STAT
## 2723 positive regulation of receptor-mediated endocytosis
## 2724 positive regulation of Rho protein signal transduction
## 2725 positive regulation of RNA polymerase II transcription preinitiation complex assembly
## 2726 positive regulation of T cell cytokine production
## 2727 positive regulation of T cell differentiation
## 2728 positive regulation of T cell mediated cytotoxicity
## 2729 positive regulation of toll-like receptor 4 signaling pathway
## 2730 positive regulation of transcription by RNA polymerase III
## 2731 positive regulation of transcription elongation from RNA polymerase II promoter
## 2732 positive regulation of type I interferon-mediated signaling pathway
## 2733 positive regulation of ubiquitin-dependent protein catabolic process
## 2734 positive regulation of vascular associated smooth muscle cell migration
## 2735 positive regulation of vascular endothelial cell proliferation
## 2736 positive regulation of vascular endothelial growth factor receptor signaling pathway
## 2737 positive regulation of vasoconstriction
## 2738 positive regulation of Wnt signaling pathway
## 2739 post-mRNA release spliceosomal complex
## 2740 postreplication repair
## 2741 PRC1 complex
## 2742 prostaglandin biosynthetic process
## 2743 prostaglandin metabolic process
## 2744 proteasomal protein catabolic process
## 2745 proteasome regulatory particle
## 2746 proteasome regulatory particle, base subcomplex
## 2747 proteasome regulatory particle, lid subcomplex
## 2748 protein disulfide oxidoreductase activity
## 2749 protein heterotetramerization
## 2750 protein K6-linked ubiquitination
## 2751 protein localization to chromosome, centromeric region
## 2752 protein methyltransferase activity
## 2753 protein phosphatase activator activity
## 2754 protein phosphatase type 1 complex
## 2755 protein poly-ADP-ribosylation
## 2756 protein refolding
## 2757 protein targeting to peroxisome
## 2758 protein tyrosine kinase activator activity
## 2759 protein-lysine N-methyltransferase activity
## 2760 purine nucleotide binding
## 2761 pyrimidine nucleoside salvage
## 2762 regulation of attachment of spindle microtubules to kinetochore
## 2763 regulation of autophagosome assembly
## 2764 regulation of autophagy of mitochondrion
## 2765 regulation of cholesterol metabolic process
## 2766 regulation of cilium assembly
## 2767 regulation of cysteine-type endopeptidase activity involved in apoptotic process
## 2768 regulation of cytosolic calcium ion concentration
## 2769 regulation of dendrite development
## 2770 regulation of dendrite morphogenesis
## 2771 regulation of DNA-templated transcription, elongation
## 2772 regulation of gene expression by genetic imprinting
## 2773 regulation of Golgi organization
## 2774 regulation of heart contraction
## 2775 regulation of heart rate
## 2776 regulation of histone acetylation
## 2777 regulation of insulin secretion involved in cellular response to glucose stimulus
## 2778 regulation of JNK cascade
## 2779 regulation of lamellipodium assembly
## 2780 regulation of mast cell degranulation
## 2781 regulation of mitotic metaphase/anaphase transition
## 2782 regulation of mRNA processing
## 2783 regulation of neuron projection development
## 2784 regulation of nitric-oxide synthase activity
## 2785 regulation of osteoclast differentiation
## 2786 regulation of peptidyl-tyrosine phosphorylation
## 2787 regulation of proteasomal protein catabolic process
## 2788 regulation of rhodopsin mediated signaling pathway
## 2789 regulation of synapse organization
## 2790 regulation of T cell differentiation
## 2791 renal water homeostasis
## 2792 respiratory system process
## 2793 response to copper ion
## 2794 response to fatty acid
## 2795 response to food
## 2796 response to hydroperoxide
## 2797 response to interferon-gamma
## 2798 response to muscle activity
## 2799 response to osmotic stress
## 2800 response to reactive oxygen species
## 2801 retinoic acid receptor signaling pathway
## 2802 retinoid metabolic process
## 2803 RISC-loading complex
## 2804 RNA 3'-end processing
## 2805 RNA 7-methylguanosine cap binding
## 2806 RNA polymerase I core promoter sequence-specific DNA binding
## 2807 RNA polymerase II CTD heptapeptide repeat phosphatase activity
## 2808 rRNA methylation
## 2809 rRNA transcription
## 2810 S-adenosyl-L-methionine binding
## 2811 sarcomere organization
## 2812 SCAR complex
## 2813 selenocysteine incorporation
## 2814 semaphorin receptor binding
## 2815 septin complex
## 2816 septin ring
## 2817 Sin3 complex
## 2818 single-stranded DNA endodeoxyribonuclease activity
## 2819 SNARE complex assembly
## 2820 snRNA binding
## 2821 sodium channel regulator activity
## 2822 sphingosine-1-phosphate receptor signaling pathway
## 2823 sterol metabolic process
## 2824 sulfate transport
## 2825 SUMO transferase activity
## 2826 superoxide metabolic process
## 2827 synaptic vesicle exocytosis
## 2828 synaptonemal complex assembly
## 2829 T cell receptor binding
## 2830 telomere maintenance via recombination
## 2831 tetrahydrofolate interconversion
## 2832 thyroid gland development
## 2833 tissue homeostasis
## 2834 tissue regeneration
## 2835 toll-like receptor 3 signaling pathway
## 2836 transcription factor TFTC complex
## 2837 transcription initiation from RNA polymerase III promoter
## 2838 transcription preinitiation complex
## 2839 translation repressor activity
## 2840 transmembrane receptor protein serine/threonine kinase signaling pathway
## 2841 tRNA 5'-leader removal
## 2842 tRNA wobble uridine modification
## 2843 U2-type spliceosomal complex
## 2844 ubiquitin ligase-substrate adaptor activity
## 2845 ubiquitin-dependent protein binding
## 2846 ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## 2847 ureteric bud development
## 2848 vacuolar proton-transporting V-type ATPase complex
## 2849 vascular endothelial growth factor signaling pathway
## 2850 vesicle transport along actin filament
## 2851 zinc ion transmembrane transporter activity
## 2852 1-acylglycerol-3-phosphate O-acyltransferase activity
## 2853 1-phosphatidylinositol-3-kinase activity
## 2854 17-beta-hydroxysteroid dehydrogenase (NADP+) activity
## 2855 2-oxoglutarate metabolic process
## 2856 3-hydroxyacyl-CoA dehydrogenase activity
## 2857 3'-UTR-mediated mRNA stabilization
## 2858 3',5'-cyclic-GMP phosphodiesterase activity
## 2859 5'-flap endonuclease activity
## 2860 5'-nucleotidase activity
## 2861 A band
## 2862 acrosomal membrane
## 2863 activation of cysteine-type endopeptidase activity
## 2864 activation of JNKK activity
## 2865 activation of MAPKKK activity
## 2866 activin binding
## 2867 acute-phase response
## 2868 acyl-CoA dehydrogenase activity
## 2869 adenylate kinase activity
## 2870 adiponectin-activated signaling pathway
## 2871 amyloid-beta clearance by transcytosis
## 2872 anaphase-promoting complex binding
## 2873 angiogenesis involved in wound healing
## 2874 anion transmembrane transporter activity
## 2875 anion:anion antiporter activity
## 2876 anterograde axonal protein transport
## 2877 antiviral innate immune response
## 2878 aorta morphogenesis
## 2879 AP-3 adaptor complex
## 2880 apical protein localization
## 2881 apoptotic DNA fragmentation
## 2882 Arp2/3 complex binding
## 2883 arrestin family protein binding
## 2884 asymmetric synapse
## 2885 Atg1/ULK1 kinase complex
## 2886 Bergmann glial cell differentiation
## 2887 beta-catenin destruction complex
## 2888 biomineral tissue development
## 2889 bone resorption
## 2890 BORC complex
## 2891 branching involved in ureteric bud morphogenesis
## 2892 BRCA1-A complex
## 2893 C21-steroid hormone biosynthetic process
## 2894 calcium channel inhibitor activity
## 2895 calcium-activated potassium channel activity
## 2896 cAMP response element binding protein binding
## 2897 cardiac septum morphogenesis
## 2898 cardiolipin binding
## 2899 cardiolipin biosynthetic process
## 2900 cargo adaptor activity
## 2901 catalytic complex
## 2902 CD4 receptor binding
## 2903 CDP-diacylglycerol biosynthetic process
## 2904 cell fate determination
## 2905 cell recognition
## 2906 cellular process
## 2907 cellular respiration
## 2908 cellular response to arsenic-containing substance
## 2909 cellular response to extracellular stimulus
## 2910 cellular response to fluid shear stress
## 2911 cellular response to granulocyte macrophage colony-stimulating factor stimulus
## 2912 cellular response to increased oxygen levels
## 2913 cellular response to leucine
## 2914 cellular response to muramyl dipeptide
## 2915 cellular response to nitric oxide
## 2916 cellular response to osmotic stress
## 2917 cellular response to oxidised low-density lipoprotein particle stimulus
## 2918 cellular response to X-ray
## 2919 chemoattractant activity
## 2920 chemokine-mediated signaling pathway
## 2921 cholesterol efflux
## 2922 chondroitin sulfate proteoglycan biosynthetic process
## 2923 chordate embryonic development
## 2924 chromatin assembly or disassembly
## 2925 chromatin silencing at telomere
## 2926 chromosome organization involved in meiotic cell cycle
## 2927 chromosome passenger complex
## 2928 clathrin coat of trans-Golgi network vesicle
## 2929 cohesin complex
## 2930 cortical cytoskeleton organization
## 2931 Cul2-RING ubiquitin ligase complex
## 2932 cyclin-dependent protein serine/threonine kinase inhibitor activity
## 2933 cysteine-type endopeptidase activity involved in execution phase of apoptosis
## 2934 cysteine-type endopeptidase inhibitor activity involved in apoptotic process
## 2935 cytoplasmic dynein complex
## 2936 cytoplasmic exosome (RNase complex)
## 2937 cytoplasmic sequestering of transcription factor
## 2938 cytosolic proteasome complex
## 2939 death receptor binding
## 2940 dendritic cell differentiation
## 2941 dendritic spine head
## 2942 diacylglycerol metabolic process
## 2943 DNA binding, bending
## 2944 DNA damage response, signal transduction by p53 class mediator
## 2945 DNA demethylation
## 2946 DNA-(apurinic or apyrimidinic site) endonuclease activity
## 2947 DNA-binding transcription factor binding
## 2948 DNA-templated transcription, termination
## 2949 dolichol-linked oligosaccharide biosynthetic process
## 2950 dopamine receptor signaling pathway
## 2951 dorsal/ventral pattern formation
## 2952 dosage compensation by inactivation of X chromosome
## 2953 double-stranded telomeric DNA binding
## 2954 drug binding
## 2955 dystrophin-associated glycoprotein complex
## 2956 embryonic brain development
## 2957 embryonic camera-type eye development
## 2958 embryonic viscerocranium morphogenesis
## 2959 endocardial cushion morphogenesis
## 2960 endodeoxyribonuclease activity
## 2961 endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 2962 endoplasmic reticulum calcium ion homeostasis
## 2963 endoplasmic reticulum tubular network
## 2964 endosomal vesicle fusion
## 2965 endosome lumen
## 2966 endosome to melanosome transport
## 2967 endothelial tube morphogenesis
## 2968 epithelial structure maintenance
## 2969 ERAD pathway
## 2970 erythrocyte homeostasis
## 2971 establishment of endothelial barrier
## 2972 establishment of mitotic spindle localization
## 2973 establishment of protein localization to chromatin
## 2974 establishment of protein localization to organelle
## 2975 estrogen biosynthetic process
## 2976 estrogen metabolic process
## 2977 excretion
## 2978 extrinsic component of mitochondrial inner membrane
## 2979 fatty acid beta-oxidation using acyl-CoA dehydrogenase
## 2980 fatty acid binding
## 2981 fatty acid transport
## 2982 female gamete generation
## 2983 female pronucleus
## 2984 filopodium assembly
## 2985 FK506 binding
## 2986 folic acid binding
## 2987 four-way junction helicase activity
## 2988 fucosylation
## 2989 G-protein beta/gamma-subunit complex binding
## 2990 G-quadruplex DNA unwinding
## 2991 G-quadruplex RNA binding
## 2992 GABA receptor binding
## 2993 gamma-aminobutyric acid signaling pathway
## 2994 gamma-tubulin ring complex
## 2995 glutamine metabolic process
## 2996 glutathione transferase activity
## 2997 glycerolipid metabolic process
## 2998 glycerophospholipid biosynthetic process
## 2999 glycerophospholipid metabolic process
## 3000 glycoprotein biosynthetic process
## 3001 Golgi disassembly
## 3002 Golgi localization
## 3003 Golgi medial cisterna
## 3004 GTP biosynthetic process
## 3005 GTP metabolic process
## 3006 H4 histone acetyltransferase activity
## 3007 heart valve development
## 3008 hematopoietic stem cell homeostasis
## 3009 heme biosynthetic process
## 3010 hepatocyte apoptotic process
## 3011 histone exchange
## 3012 histone H3-K14 acetylation
## 3013 histone H3-K4 demethylation
## 3014 histone H4-K16 acetylation
## 3015 HMG box domain binding
## 3016 hydro-lyase activity
## 3017 hydrolase activity, hydrolyzing N-glycosyl compounds
## 3018 hyperosmotic response
## 3019 I-SMAD binding
## 3020 IkappaB kinase complex
## 3021 importin-alpha family protein binding
## 3022 inner ear morphogenesis
## 3023 inositol-1,4,5-trisphosphate 5-phosphatase activity
## 3024 insulin receptor substrate binding
## 3025 insulin-like growth factor I binding
## 3026 insulin-like growth factor receptor binding
## 3027 integral component of organelle membrane
## 3028 intestinal absorption
## 3029 intestinal epithelial cell development
## 3030 intracellular calcium activated chloride channel activity
## 3031 intracellular distribution of mitochondria
## 3032 intracellular estrogen receptor signaling pathway
## 3033 intraciliary retrograde transport
## 3034 intrinsic component of membrane
## 3035 K48-linked polyubiquitin modification-dependent protein binding
## 3036 keratinization
## 3037 kinetochore binding
## 3038 kinetochore microtubule
## 3039 kinetochore organization
## 3040 laminin binding
## 3041 large ribosomal subunit rRNA binding
## 3042 late endosome to vacuole transport
## 3043 limb morphogenesis
## 3044 linoleic acid metabolic process
## 3045 lipid storage
## 3046 lipoprotein metabolic process
## 3047 low-density lipoprotein particle binding
## 3048 lysosomal lumen acidification
## 3049 lysosomal protein catabolic process
## 3050 macropinocytosis
## 3051 magnesium ion transmembrane transport
## 3052 magnesium ion transmembrane transporter activity
## 3053 male pronucleus
## 3054 mammary gland development
## 3055 mammary gland epithelial cell differentiation
## 3056 mannose binding
## 3057 MAP-kinase scaffold activity
## 3058 maternal placenta development
## 3059 meiotic chromosome condensation
## 3060 meiotic chromosome segregation
## 3061 membrane invagination
## 3062 membrane protein ectodomain proteolysis
## 3063 metanephros development
## 3064 metaphase/anaphase transition of mitotic cell cycle
## 3065 microtubule severing
## 3066 mitochondrial ATP synthesis coupled electron transport
## 3067 mitochondrial ATP synthesis coupled proton transport
## 3068 mitochondrial envelope
## 3069 mitochondrial respirasome
## 3070 mitochondrial respiratory chain complex III assembly
## 3071 mitochondrial transport
## 3072 mitochondrion localization
## 3073 mitogen-activated protein kinase kinase kinase binding
## 3074 mitotic DNA replication initiation
## 3075 mitotic G1 DNA damage checkpoint
## 3076 modulation by symbiont of host defense response
## 3077 modulation by virus of host cellular process
## 3078 monosaccharide binding
## 3079 morphogenesis of an epithelial sheet
## 3080 motile cilium assembly
## 3081 motor neuron axon guidance
## 3082 mRNA cap binding complex
## 3083 mRNA cleavage
## 3084 mRNA transcription by RNA polymerase II
## 3085 multimeric ribonuclease P complex
## 3086 muscle alpha-actinin binding
## 3087 myelination in peripheral nervous system
## 3088 myosin II binding
## 3089 N-terminal peptidyl-methionine acetylation
## 3090 NAD metabolic process
## 3091 NAD(P)+ nucleosidase activity
## 3092 NAD+ nucleosidase activity
## 3093 NAD+ nucleotidase, cyclic ADP-ribose generating
## 3094 NADH metabolic process
## 3095 natural killer cell mediated cytotoxicity
## 3096 negative regulation of amyloid-beta clearance
## 3097 negative regulation of amyloid-beta formation
## 3098 negative regulation of bone mineralization
## 3099 negative regulation of bone resorption
## 3100 negative regulation of calcineurin-NFAT signaling cascade
## 3101 negative regulation of cardiac muscle cell proliferation
## 3102 negative regulation of cell division
## 3103 negative regulation of cell growth involved in cardiac muscle cell development
## 3104 negative regulation of cell size
## 3105 negative regulation of cell-cell adhesion mediated by cadherin
## 3106 negative regulation of cell-matrix adhesion
## 3107 negative regulation of centriole replication
## 3108 negative regulation of cytoplasmic translation
## 3109 negative regulation of endoplasmic reticulum calcium ion concentration
## 3110 negative regulation of fat cell proliferation
## 3111 negative regulation of glucose import
## 3112 negative regulation of growth
## 3113 negative regulation of histone acetylation
## 3114 negative regulation of inclusion body assembly
## 3115 negative regulation of innate immune response
## 3116 negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## 3117 negative regulation of lipopolysaccharide-mediated signaling pathway
## 3118 negative regulation of monocyte differentiation
## 3119 negative regulation of mRNA polyadenylation
## 3120 negative regulation of peptidyl-threonine phosphorylation
## 3121 negative regulation of phosphatidylinositol 3-kinase signaling
## 3122 negative regulation of production of miRNAs involved in gene silencing by miRNA
## 3123 negative regulation of protein export from nucleus
## 3124 negative regulation of protein localization to nucleus
## 3125 negative regulation of protein secretion
## 3126 negative regulation of protein sumoylation
## 3127 negative regulation of RNA splicing
## 3128 negative regulation of smooth muscle cell migration
## 3129 negative regulation of stem cell differentiation
## 3130 negative regulation of stress-activated MAPK cascade
## 3131 negative regulation of tumor necrosis factor-mediated signaling pathway
## 3132 negative regulation of viral transcription
## 3133 negative thymic T cell selection
## 3134 neuromuscular process
## 3135 neuron projection extension
## 3136 neuron projection maintenance
## 3137 neuronal cell body membrane
## 3138 NF-kappaB-inducing kinase activity
## 3139 nitric oxide biosynthetic process
## 3140 nitrogen compound metabolic process
## 3141 NSL complex
## 3142 nuclear envelope reassembly
## 3143 nuclear outer membrane
## 3144 nuclear pore nuclear basket
## 3145 nucleobase-containing compound kinase activity
## 3146 nucleobase-containing small molecule catabolic process
## 3147 nucleoside monophosphate phosphorylation
## 3148 nucleoside-triphosphatase activity
## 3149 nucleosomal histone binding
## 3150 nucleosome positioning
## 3151 NURF complex
## 3152 O-methyltransferase activity
## 3153 olfactory bulb development
## 3154 origin recognition complex
## 3155 oxidoreductase activity, acting on NAD(P)H
## 3156 pentose-phosphate shunt
## 3157 peptidyl-arginine methylation
## 3158 peptidyl-arginine N-methylation
## 3159 peptidyl-serine autophosphorylation
## 3160 peroxisome fission
## 3161 peroxisome proliferator activated receptor binding
## 3162 phagosome maturation
## 3163 phosphatidylethanolamine binding
## 3164 phosphatidylglycerol acyl-chain remodeling
## 3165 phosphatidylinositol kinase activity
## 3166 phosphatidylinositol-3,5-bisphosphate 3-phosphatase activity
## 3167 phosphatidylinositol-4,5-bisphosphate 3-kinase activity
## 3168 phosphatidylinositol-5-phosphate binding
## 3169 phospholipase D activity
## 3170 phospholipid homeostasis
## 3171 phosphorylation of RNA polymerase II C-terminal domain
## 3172 photoreceptor outer segment membrane
## 3173 phototransduction
## 3174 placenta blood vessel development
## 3175 plasma membrane protein complex
## 3176 poly(G) binding
## 3177 polyamine biosynthetic process
## 3178 polynucleotide adenylyltransferase activity
## 3179 polypeptide N-acetylgalactosaminyltransferase activity
## 3180 pore complex
## 3181 pore complex assembly
## 3182 positive regulation of ATP biosynthetic process
## 3183 positive regulation of B cell differentiation
## 3184 positive regulation of cardiac muscle cell apoptotic process
## 3185 positive regulation of cell motility
## 3186 positive regulation of cellular protein metabolic process
## 3187 positive regulation of chemotaxis
## 3188 positive regulation of cholesterol biosynthetic process
## 3189 positive regulation of chromatin binding
## 3190 positive regulation of chromosome segregation
## 3191 positive regulation of DNA biosynthetic process
## 3192 positive regulation of early endosome to late endosome transport
## 3193 positive regulation of embryonic development
## 3194 positive regulation of endocytosis
## 3195 positive regulation of endopeptidase activity
## 3196 positive regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## 3197 positive regulation of ER-associated ubiquitin-dependent protein catabolic process
## 3198 positive regulation of excitatory postsynaptic potential
## 3199 positive regulation of fibroblast migration
## 3200 positive regulation of G protein-coupled receptor signaling pathway
## 3201 positive regulation of gluconeogenesis
## 3202 positive regulation of histone H3-K9 acetylation
## 3203 positive regulation of histone H3-K9 methylation
## 3204 positive regulation of interleukin-17 production
## 3205 positive regulation of macrophage chemotaxis
## 3206 positive regulation of macrophage cytokine production
## 3207 positive regulation of memory T cell differentiation
## 3208 positive regulation of microtubule nucleation
## 3209 positive regulation of miRNA mediated inhibition of translation
## 3210 positive regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## 3211 positive regulation of monocyte chemotactic protein-1 production
## 3212 positive regulation of monocyte chemotaxis
## 3213 positive regulation of myotube differentiation
## 3214 positive regulation of natural killer cell mediated cytotoxicity
## 3215 positive regulation of neuroblast proliferation
## 3216 positive regulation of nuclear cell cycle DNA replication
## 3217 positive regulation of ossification
## 3218 positive regulation of phospholipase C activity
## 3219 positive regulation of phosphorylation
## 3220 positive regulation of protein kinase C signaling
## 3221 positive regulation of protein metabolic process
## 3222 positive regulation of protein sumoylation
## 3223 positive regulation of release of sequestered calcium ion into cytosol
## 3224 positive regulation of response to DNA damage stimulus
## 3225 positive regulation of synapse assembly
## 3226 positive regulation of synaptic vesicle endocytosis
## 3227 positive regulation of T cell chemotaxis
## 3228 positive regulation of transcription of nucleolar large rRNA by RNA polymerase I
## 3229 positive regulation of transcription regulatory region DNA binding
## 3230 post-anal tail morphogenesis
## 3231 post-transcriptional gene silencing by RNA
## 3232 postsynapse to nucleus signaling pathway
## 3233 posttranslational protein targeting to endoplasmic reticulum membrane
## 3234 potassium ion export across plasma membrane
## 3235 pre-mRNA binding
## 3236 pre-mRNA intronic binding
## 3237 pre-replicative complex assembly involved in nuclear cell cycle DNA replication
## 3238 preribosome, small subunit precursor
## 3239 presynaptic cytosol
## 3240 primary miRNA processing
## 3241 proteasome core complex, beta-subunit complex
## 3242 protein autoprocessing
## 3243 protein demethylation
## 3244 protein deneddylation
## 3245 protein insertion into mitochondrial inner membrane
## 3246 protein kinase B binding
## 3247 protein kinase regulator activity
## 3248 protein lipidation
## 3249 protein lipoylation
## 3250 protein localization to cytoplasmic stress granule
## 3251 protein localization to endoplasmic reticulum exit site
## 3252 protein localization to nucleolus
## 3253 protein maturation by iron-sulfur cluster transfer
## 3254 protein metabolic process
## 3255 protein neddylation
## 3256 protein O-linked mannosylation
## 3257 protein transport to vacuole involved in ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## 3258 protein-arginine N-methyltransferase activity
## 3259 proton-transporting ATP synthase activity, rotational mechanism
## 3260 proton-transporting V-type ATPase, V0 domain
## 3261 purine nucleotide catabolic process
## 3262 Rab protein signal transduction
## 3263 receptor antagonist activity
## 3264 reelin-mediated signaling pathway
## 3265 regulation of adaptive immune response
## 3266 regulation of aerobic respiration
## 3267 regulation of cell adhesion mediated by integrin
## 3268 regulation of cell cycle arrest
## 3269 regulation of cell cycle process
## 3270 regulation of cell division
## 3271 regulation of cellular protein localization
## 3272 regulation of cholesterol biosynthetic process
## 3273 regulation of chromatin organization
## 3274 regulation of cytokine-mediated signaling pathway
## 3275 regulation of DNA repair
## 3276 regulation of epidermal growth factor receptor signaling pathway
## 3277 regulation of establishment of endothelial barrier
## 3278 regulation of fatty acid beta-oxidation
## 3279 regulation of glycogen biosynthetic process
## 3280 regulation of heart rate by cardiac conduction
## 3281 regulation of histone H3-K4 methylation
## 3282 regulation of interferon-gamma-mediated signaling pathway
## 3283 regulation of interleukin-6 production
## 3284 regulation of intrinsic apoptotic signaling pathway
## 3285 regulation of MAPK cascade
## 3286 regulation of mitochondrial fission
## 3287 regulation of muscle contraction
## 3288 regulation of myeloid cell differentiation
## 3289 regulation of NIK/NF-kappaB signaling
## 3290 regulation of pH
## 3291 regulation of postsynaptic membrane potential
## 3292 regulation of protein export from nucleus
## 3293 regulation of protein kinase B signaling
## 3294 regulation of protein localization to nucleus
## 3295 regulation of proteolysis
## 3296 regulation of Rab protein signal transduction
## 3297 regulation of Rac protein signal transduction
## 3298 regulation of Ras protein signal transduction
## 3299 regulation of regulatory T cell differentiation
## 3300 regulation of release of sequestered calcium ion into cytosol
## 3301 regulation of sodium ion transmembrane transporter activity
## 3302 regulation of stem cell population maintenance
## 3303 regulation of stress-activated MAPK cascade
## 3304 regulation of synaptic transmission, glutamatergic
## 3305 regulation of synaptic vesicle endocytosis
## 3306 regulation of T cell differentiation in thymus
## 3307 regulation of T cell proliferation
## 3308 regulation of ventricular cardiac muscle cell membrane repolarization
## 3309 regulation of viral entry into host cell
## 3310 replication-born double-strand break repair via sister chromatid exchange
## 3311 rescue of stalled ribosome
## 3312 respiratory burst
## 3313 response to arsenic-containing substance
## 3314 response to cholesterol
## 3315 response to glucagon
## 3316 response to immobilization stress
## 3317 response to interferon-beta
## 3318 response to iron ion
## 3319 response to lead ion
## 3320 response to morphine
## 3321 response to muramyl dipeptide
## 3322 response to pH
## 3323 response to transforming growth factor beta
## 3324 response to UV-C
## 3325 response to xenobiotic stimulus
## 3326 reverse cholesterol transport
## 3327 ribonuclease MRP complex
## 3328 ribonuclease P activity
## 3329 ribonuclease P RNA binding
## 3330 ribonucleoprotein granule
## 3331 ribosomal small subunit binding
## 3332 RIG-I signaling pathway
## 3333 RNA polymerase II, holoenzyme
## 3334 RNA transport
## 3335 rough endoplasmic reticulum membrane
## 3336 S100 protein binding
## 3337 Schmidt-Lanterman incisure
## 3338 seminiferous tubule development
## 3339 sensory perception of smell
## 3340 sequence-specific mRNA binding
## 3341 sialic acid binding
## 3342 signal complex assembly
## 3343 signaling
## 3344 siRNA binding
## 3345 skeletal muscle contraction
## 3346 SMN complex
## 3347 sperm midpiece
## 3348 SREBP signaling pathway
## 3349 steroid binding
## 3350 sterol transporter activity
## 3351 striated muscle contraction
## 3352 suckling behavior
## 3353 sulfate transmembrane transport
## 3354 sulfate transmembrane transporter activity
## 3355 SUMO binding
## 3356 synaptic vesicle maturation
## 3357 T-helper 1 type immune response
## 3358 telomere capping
## 3359 tetrahydrofolate metabolic process
## 3360 TFIID-class transcription factor complex binding
## 3361 thioesterase binding
## 3362 threonine-type endopeptidase activity
## 3363 TIM23 mitochondrial import inner membrane translocase complex
## 3364 toll-like receptor 4 signaling pathway
## 3365 TORC1 signaling
## 3366 TPR domain binding
## 3367 trans-Golgi network transport vesicle
## 3368 transcription by RNA polymerase I
## 3369 transcription corepressor binding
## 3370 transferase activity, transferring phosphorus-containing groups
## 3371 transforming growth factor beta receptor binding
## 3372 transforming growth factor beta-activated receptor activity
## 3373 translational termination
## 3374 transmembrane receptor protein tyrosine kinase adaptor activity
## 3375 trophectodermal cell differentiation
## 3376 tropomyosin binding
## 3377 U1 snRNA binding
## 3378 U2-type catalytic step 1 spliceosome
## 3379 U3 snoRNA binding
## 3380 U4 snRNA binding
## 3381 U7 snRNP
## 3382 ubiquinol-cytochrome-c reductase activity
## 3383 ubiquitin-protein transferase activator activity
## 3384 UDP-N-acetylglucosamine biosynthetic process
## 3385 UDP-N-acetylglucosamine metabolic process
## 3386 urea cycle
## 3387 uropod
## 3388 very long-chain fatty acid-CoA ligase activity
## 3389 vesicle-mediated transport in synapse
## 3390 viral mRNA export from host cell nucleus
## 3391 viral translational termination-reinitiation
## 3392 voluntary musculoskeletal movement
## 3393 xenobiotic transport
## 3394 Y-form DNA binding
## 3395 zymogen activation
## 3396 1-phosphatidylinositol-4-phosphate 3-kinase activity
## 3397 1-phosphatidylinositol-4-phosphate 5-kinase activity
## 3398 2'-5'-oligoadenylate synthetase activity
## 3399 3-keto sterol reductase activity
## 3400 3-oxo-arachidoyl-CoA synthase activity
## 3401 3-oxo-cerotoyl-CoA synthase activity
## 3402 3-oxo-lignoceronyl-CoA synthase activity
## 3403 3'-phosphoadenosine 5'-phosphosulfate metabolic process
## 3404 3'-UTR-mediated mRNA destabilization
## 3405 3',5'-cyclic-AMP phosphodiesterase activity
## 3406 acetyl-CoA biosynthetic process
## 3407 acetyl-CoA C-acyltransferase activity
## 3408 actin cortical patch
## 3409 actin nucleation
## 3410 actinin binding
## 3411 activation of cysteine-type endopeptidase activity involved in apoptotic process by cytochrome c
## 3412 activation of transmembrane receptor protein tyrosine kinase activity
## 3413 activin receptor signaling pathway
## 3414 actomyosin
## 3415 acute inflammatory response
## 3416 ADP biosynthetic process
## 3417 adrenal gland development
## 3418 adrenergic receptor signaling pathway
## 3419 alpha DNA polymerase:primase complex
## 3420 alpha-(1->3)-fucosyltransferase activity
## 3421 amino acid binding
## 3422 amino acid transmembrane transport
## 3423 aminoacyl-tRNA metabolism involved in translational fidelity
## 3424 AMP metabolic process
## 3425 AMPA glutamate receptor complex
## 3426 amyloid-beta clearance by cellular catabolic process
## 3427 anchored component of external side of plasma membrane
## 3428 androgen metabolic process
## 3429 ankyrin binding
## 3430 annealing helicase activity
## 3431 annulate lamellae
## 3432 anterior/posterior axis specification
## 3433 antigen processing and presentation, exogenous lipid antigen via MHC class Ib
## 3434 AP-2 adaptor complex binding
## 3435 apical dendrite
## 3436 apical junction assembly
## 3437 aryl hydrocarbon receptor complex
## 3438 associative learning
## 3439 astrocyte activation
## 3440 ATF6-mediated unfolded protein response
## 3441 ATP-dependent protein binding
## 3442 atrioventricular valve morphogenesis
## 3443 autophagosome membrane docking
## 3444 autophagosome-lysosome fusion
## 3445 autophagy of peroxisome
## 3446 axon initial segment
## 3447 axon regeneration
## 3448 B cell proliferation
## 3449 basement membrane organization
## 3450 basic amino acid transmembrane transporter activity
## 3451 behavioral response to pain
## 3452 beta-catenin-TCF complex
## 3453 bile acid metabolic process
## 3454 bile acid signaling pathway
## 3455 bleb
## 3456 box C/D snoRNP assembly
## 3457 branching involved in mammary gland duct morphogenesis
## 3458 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules
## 3459 carboxylic acid binding
## 3460 cardiac muscle tissue development
## 3461 cardiolipin acyl-chain remodeling
## 3462 CCR4-NOT core complex
## 3463 CCR5 chemokine receptor binding
## 3464 cell communication
## 3465 cell fate specification
## 3466 cell morphogenesis involved in neuron differentiation
## 3467 cell projection membrane
## 3468 cell-cell adhesion via plasma-membrane adhesion molecules
## 3469 cell-cell junction assembly
## 3470 cellular copper ion homeostasis
## 3471 cellular hypotonic response
## 3472 cellular metabolic process
## 3473 cellular protein-containing complex localization
## 3474 cellular response to cGMP
## 3475 cellular response to dopamine
## 3476 cellular response to electrical stimulus
## 3477 cellular response to insulin-like growth factor stimulus
## 3478 cellular response to macrophage colony-stimulating factor stimulus
## 3479 cellular response to manganese ion
## 3480 cellular response to misfolded protein
## 3481 cellular response to nutrient
## 3482 cellular response to nutrient levels
## 3483 cellular response to UV-B
## 3484 centromeric DNA binding
## 3485 ceramide binding
## 3486 ceramide transport
## 3487 cerebellar Purkinje cell differentiation
## 3488 cerebral cortex neuron differentiation
## 3489 cGMP-mediated signaling
## 3490 chaperone-mediated autophagy
## 3491 chaperone-mediated protein transport
## 3492 chloride channel inhibitor activity
## 3493 cholesterol import
## 3494 chromatin assembly
## 3495 chromo shadow domain binding
## 3496 chromosome separation
## 3497 ciliary rootlet
## 3498 ciliary transition fiber
## 3499 cilium movement
## 3500 circulatory system development
## 3501 citrate metabolic process
## 3502 clathrin coat
## 3503 cobalamin metabolic process
## 3504 cochlea morphogenesis
## 3505 coenzyme A biosynthetic process
## 3506 collagen biosynthetic process
## 3507 collagen metabolic process
## 3508 complement activation, classical pathway
## 3509 condensed nuclear chromosome outer kinetochore
## 3510 contractile fiber
## 3511 contractile ring
## 3512 COPII-coated vesicle budding
## 3513 core mediator complex
## 3514 cortical endoplasmic reticulum
## 3515 Ctf18 RFC-like complex
## 3516 CTP biosynthetic process
## 3517 cyclin-dependent protein serine/threonine kinase activator activity
## 3518 cytoplasmic sequestering of protein
## 3519 cytoplasmic side of rough endoplasmic reticulum membrane
## 3520 D-threo-aldose 1-dehydrogenase activity
## 3521 deadenylation-dependent decapping of nuclear-transcribed mRNA
## 3522 deadenylation-independent decapping of nuclear-transcribed mRNA
## 3523 death-inducing signaling complex assembly
## 3524 defense response to fungus
## 3525 dendrite membrane
## 3526 dendritic cell chemotaxis
## 3527 dendritic spine membrane
## 3528 dendritic spine morphogenesis
## 3529 dephosphorylation of RNA polymerase II C-terminal domain
## 3530 diacylglycerol biosynthetic process
## 3531 diacylglycerol kinase activity
## 3532 dipeptidase activity
## 3533 DNA catabolic process, exonucleolytic
## 3534 DNA ligation
## 3535 DNA replication factor A complex
## 3536 DNA replication factor C complex
## 3537 DNA replication-dependent nucleosome assembly
## 3538 DNA replication, synthesis of RNA primer
## 3539 DNA strand renaturation
## 3540 DNA topoisomerase activity
## 3541 DNA translocase activity
## 3542 DNA-binding transcription repressor activity
## 3543 dolichyl diphosphate biosynthetic process
## 3544 double-strand break repair via classical nonhomologous end joining
## 3545 dynactin binding
## 3546 dynactin complex
## 3547 dynamin family protein polymerization involved in mitochondrial fission
## 3548 dystroglycan binding
## 3549 ectoderm development
## 3550 EKC/KEOPS complex
## 3551 elastic fiber assembly
## 3552 embryonic cleavage
## 3553 embryonic forelimb morphogenesis
## 3554 embryonic hindlimb morphogenesis
## 3555 embryonic neurocranium morphogenesis
## 3556 embryonic skeletal system morphogenesis
## 3557 enamel mineralization
## 3558 endocytic vesicle lumen
## 3559 endonucleolytic cleavage to generate mature 5'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 3560 endopeptidase activator activity
## 3561 endoplasmic reticulum membrane organization
## 3562 endoplasmic reticulum-plasma membrane tethering
## 3563 endoribonuclease activity, producing 5'-phosphomonoesters
## 3564 endothelial cell apoptotic process
## 3565 endothelial cell differentiation
## 3566 endothelial cell morphogenesis
## 3567 energy reserve metabolic process
## 3568 enzyme-directed rRNA pseudouridine synthesis
## 3569 ER-associated misfolded protein catabolic process
## 3570 ESCRT I complex
## 3571 establishment of endothelial intestinal barrier
## 3572 establishment of epithelial cell apical/basal polarity
## 3573 establishment of epithelial cell polarity
## 3574 establishment of Golgi localization
## 3575 establishment of planar polarity
## 3576 establishment of spindle orientation
## 3577 establishment of vesicle localization
## 3578 estrous cycle
## 3579 eukaryotic initiation factor 4E binding
## 3580 eukaryotic translation initiation factor 2alpha kinase activity
## 3581 extrinsic component of endosome membrane
## 3582 fatty acid alpha-oxidation
## 3583 fatty acid elongase activity
## 3584 fatty acid elongation, monounsaturated fatty acid
## 3585 fatty acid elongation, polyunsaturated fatty acid
## 3586 fatty acid elongation, saturated fatty acid
## 3587 female meiotic nuclear division
## 3588 ferric iron binding
## 3589 fibrinolysis
## 3590 fibroblast migration
## 3591 fructose binding
## 3592 fructose metabolic process
## 3593 fucosyltransferase activity
## 3594 galactose binding
## 3595 galactosyltransferase activity
## 3596 GARP complex
## 3597 GDP metabolic process
## 3598 GINS complex
## 3599 glial cell projection
## 3600 gliogenesis
## 3601 glucose transmembrane transporter activity
## 3602 glucuronate catabolic process to xylulose 5-phosphate
## 3603 glucuronosyl-N-acetylgalactosaminyl-proteoglycan 4-beta-N-acetylgalactosaminyltransferase activity
## 3604 glutamine transport
## 3605 glycoprotein catabolic process
## 3606 GMP metabolic process
## 3607 Golgi transport complex
## 3608 Golgi-associated vesicle membrane
## 3609 growth hormone receptor signaling pathway
## 3610 growth plate cartilage development
## 3611 guanyl nucleotide binding
## 3612 guanylate kinase activity
## 3613 HAUS complex
## 3614 heme catabolic process
## 3615 heparin biosynthetic process
## 3616 hexose transmembrane transport
## 3617 high-density lipoprotein particle binding
## 3618 histone H2B ubiquitination
## 3619 histone H3-K36 methylation
## 3620 histone H3-K4 demethylation, trimethyl-H3-K4-specific
## 3621 histone H3-K4 monomethylation
## 3622 histone methyltransferase activity (H3-K9 specific)
## 3623 histone mRNA catabolic process
## 3624 histone pre-mRNA 3'end processing complex
## 3625 histone pre-mRNA DCP binding
## 3626 hormone activity
## 3627 Hrd1p ubiquitin ligase ERAD-L complex
## 3628 hyaluronic acid binding
## 3629 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds
## 3630 I-kappaB phosphorylation
## 3631 inner ear receptor cell stereocilium organization
## 3632 inorganic diphosphatase activity
## 3633 inositol-polyphosphate 5-phosphatase activity
## 3634 insulin receptor binding
## 3635 insulin secretion involved in cellular response to glucose stimulus
## 3636 insulin-like growth factor II binding
## 3637 integral component of nuclear inner membrane
## 3638 interleukin-15-mediated signaling pathway
## 3639 interleukin-17-mediated signaling pathway
## 3640 interleukin-21-mediated signaling pathway
## 3641 interleukin-23-mediated signaling pathway
## 3642 interleukin-6 receptor binding
## 3643 interleukin-9-mediated signaling pathway
## 3644 intraciliary transport particle A
## 3645 intrinsic component of endoplasmic reticulum membrane
## 3646 ion homeostasis
## 3647 ion transmembrane transporter activity
## 3648 L-amino acid transport
## 3649 L-ascorbic acid metabolic process
## 3650 L-fucose catabolic process
## 3651 L-glutamine transmembrane transporter activity
## 3652 L-proline biosynthetic process
## 3653 lamellipodium morphogenesis
## 3654 lateral loop
## 3655 layer formation in cerebral cortex
## 3656 leptin-mediated signaling pathway
## 3657 leucine catabolic process
## 3658 lipid droplet formation
## 3659 lipopeptide binding
## 3660 locomotor rhythm
## 3661 long-chain fatty acid import into cell
## 3662 long-chain fatty acid-CoA ligase activity
## 3663 long-term synaptic depression
## 3664 low-density lipoprotein particle
## 3665 lymphocyte differentiation
## 3666 lymphocyte homeostasis
## 3667 lysine catabolic process
## 3668 macrophage activation involved in immune response
## 3669 main axon
## 3670 maintenance of centrosome location
## 3671 manchette
## 3672 mannose trimming involved in glycoprotein ERAD pathway
## 3673 marginal zone B cell differentiation
## 3674 megakaryocyte differentiation
## 3675 melanocyte differentiation
## 3676 membrane depolarization
## 3677 membrane raft assembly
## 3678 membrane repolarization
## 3679 membrane repolarization during cardiac muscle cell action potential
## 3680 metallocarboxypeptidase activity
## 3681 methylenetetrahydrofolate dehydrogenase (NADP+) activity
## 3682 MHC class I peptide loading complex
## 3683 MHC class Ib protein binding
## 3684 MIB complex
## 3685 microfibril
## 3686 microglia development
## 3687 microtubule anchoring at centrosome
## 3688 microtubule minus-end
## 3689 mismatched DNA binding
## 3690 mitochondrial fragmentation involved in apoptotic process
## 3691 mitochondrial genome maintenance
## 3692 mitochondrial outer membrane permeabilization
## 3693 mitochondrial proton-transporting ATP synthase complex
## 3694 mitochondrial respiratory chain complex IV
## 3695 mitochondrial transcription
## 3696 mitochondrion transport along microtubule
## 3697 mitochondrion-endoplasmic reticulum membrane tethering
## 3698 mitotic cell cycle arrest
## 3699 mitotic chromosome movement towards spindle pole
## 3700 mitotic spindle midzone assembly
## 3701 modification of postsynaptic actin cytoskeleton
## 3702 modification-dependent protein catabolic process
## 3703 modulation by virus of host process
## 3704 modulation of age-related behavioral decline
## 3705 modulation of excitatory postsynaptic potential
## 3706 monocyte chemotaxis
## 3707 morphogenesis of a branching structure
## 3708 morphogenesis of an epithelium
## 3709 Mre11 complex
## 3710 mRNA 3'-end processing by stem-loop binding and cleavage
## 3711 mRNA pseudouridine synthesis
## 3712 multicellular organism aging
## 3713 muscle cell differentiation
## 3714 myofibril assembly
## 3715 myristoyl-CoA hydrolase activity
## 3716 N-acetylneuraminate metabolic process
## 3717 NAD biosynthesis via nicotinamide riboside salvage pathway
## 3718 NAD biosynthetic process
## 3719 NAD-dependent histone deacetylase activity (H3-K14 specific)
## 3720 NAD-dependent protein deacetylase activity
## 3721 NADH pyrophosphatase activity
## 3722 NADP-retinol dehydrogenase activity
## 3723 NatA complex
## 3724 natural killer cell differentiation
## 3725 Ndc80 complex
## 3726 negative regulation of anoikis
## 3727 negative regulation of ATPase activity
## 3728 negative regulation of blood vessel endothelial cell migration
## 3729 negative regulation of cardiac muscle hypertrophy
## 3730 negative regulation of CD4-positive, alpha-beta T cell proliferation
## 3731 negative regulation of cell aging
## 3732 negative regulation of cell-substrate adhesion
## 3733 negative regulation of chemokine production
## 3734 negative regulation of chromatin binding
## 3735 negative regulation of double-strand break repair
## 3736 negative regulation of double-strand break repair via nonhomologous end joining
## 3737 negative regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## 3738 negative regulation of endothelial cell differentiation
## 3739 negative regulation of epithelial to mesenchymal transition
## 3740 negative regulation of execution phase of apoptosis
## 3741 negative regulation of fibroblast apoptotic process
## 3742 negative regulation of fibroblast migration
## 3743 negative regulation of granulocyte differentiation
## 3744 negative regulation of histone H3-K9 trimethylation
## 3745 negative regulation of hydrogen peroxide-induced cell death
## 3746 negative regulation of immune response
## 3747 negative regulation of kinase activity
## 3748 negative regulation of leukocyte cell-cell adhesion
## 3749 negative regulation of lipid storage
## 3750 negative regulation of lipid transport
## 3751 negative regulation of megakaryocyte differentiation
## 3752 negative regulation of microtubule polymerization
## 3753 negative regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## 3754 negative regulation of myoblast differentiation
## 3755 negative regulation of neural precursor cell proliferation
## 3756 negative regulation of nitric oxide biosynthetic process
## 3757 negative regulation of organ growth
## 3758 negative regulation of pathway-restricted SMAD protein phosphorylation
## 3759 negative regulation of programmed cell death
## 3760 negative regulation of protein autophosphorylation
## 3761 negative regulation of protein kinase activity by regulation of protein phosphorylation
## 3762 negative regulation of protein localization to microtubule
## 3763 negative regulation of protein neddylation
## 3764 negative regulation of retrograde protein transport, ER to cytosol
## 3765 negative regulation of ruffle assembly
## 3766 negative regulation of ryanodine-sensitive calcium-release channel activity
## 3767 negative regulation of sequestering of triglyceride
## 3768 negative regulation of single stranded viral RNA replication via double stranded DNA intermediate
## 3769 negative regulation of telomere capping
## 3770 negative regulation of transcription by competitive promoter binding
## 3771 negative regulation of tyrosine phosphorylation of STAT protein
## 3772 negative regulation of ubiquitin-protein transferase activity
## 3773 nephron development
## 3774 neural retina development
## 3775 neuromuscular synaptic transmission
## 3776 neuron projection terminus
## 3777 neuropeptide signaling pathway
## 3778 neurotransmitter transmembrane transporter activity
## 3779 NLRP3 inflammasome complex
## 3780 non-membrane spanning protein tyrosine phosphatase activity
## 3781 nuclear envelope disassembly
## 3782 nuclear export signal receptor activity
## 3783 nuclear lamina
## 3784 nuclear mRNA surveillance
## 3785 nuclear stress granule
## 3786 nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## 3787 nuclear-transcribed mRNA catabolic process, exonucleolytic, 3'-5'
## 3788 nucleoside-diphosphatase activity
## 3789 oligodendrocyte differentiation
## 3790 oocyte development
## 3791 organ growth
## 3792 osteoblast proliferation
## 3793 outflow tract septum morphogenesis
## 3794 outward rectifier potassium channel activity
## 3795 oxidized purine DNA binding
## 3796 oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor
## 3797 oxygen transport
## 3798 P granule
## 3799 palmitoyl-CoA hydrolase activity
## 3800 peptidase activator activity
## 3801 peptide antigen assembly with MHC class II protein complex
## 3802 peptide metabolic process
## 3803 peptidyl-diphthamide biosynthetic process from peptidyl-histidine
## 3804 peptidyl-tyrosine autophosphorylation
## 3805 peripheral nervous system development
## 3806 phagocytosis, recognition
## 3807 phagosome-lysosome fusion
## 3808 phosphatidic acid transfer activity
## 3809 phosphatidylcholine catabolic process
## 3810 phosphatidylcholine metabolic process
## 3811 phosphatidylglycerol biosynthetic process
## 3812 phosphatidylinositol 3-kinase activity
## 3813 phosphatidylinositol 3-kinase complex, class IB
## 3814 phosphatidylinositol bisphosphate binding
## 3815 phosphatidylinositol phosphate kinase activity
## 3816 phosphatidylinositol transfer activity
## 3817 phosphatidylinositol-3,4-bisphosphate 5-kinase activity
## 3818 phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## 3819 phosphatidylserine acyl-chain remodeling
## 3820 phospholipase activator activity
## 3821 phospholipase C activity
## 3822 phospholipid scramblase activity
## 3823 phospholipid transporter activity
## 3824 phosphoric ester hydrolase activity
## 3825 phosphorus-oxygen lyase activity
## 3826 photoreceptor cell outer segment organization
## 3827 Piccolo NuA4 histone acetyltransferase complex
## 3828 pICln-Sm protein complex
## 3829 piecemeal microautophagy of the nucleus
## 3830 piRNA metabolic process
## 3831 planar cell polarity pathway involved in neural tube closure
## 3832 plasma membrane organization
## 3833 plasma membrane to endosome transport
## 3834 platelet dense tubular network membrane
## 3835 poly(A)-specific ribonuclease activity
## 3836 positive regulation by host of viral process
## 3837 positive regulation of actin filament bundle assembly
## 3838 positive regulation of astrocyte differentiation
## 3839 positive regulation of autophagosome assembly
## 3840 positive regulation of autophagosome maturation
## 3841 positive regulation of B cell receptor signaling pathway
## 3842 positive regulation of calcium ion import
## 3843 positive regulation of cardiac muscle cell proliferation
## 3844 positive regulation of cartilage development
## 3845 positive regulation of cell adhesion mediated by integrin
## 3846 positive regulation of cell growth involved in cardiac muscle cell development
## 3847 positive regulation of cellular component movement
## 3848 positive regulation of cellular protein localization
## 3849 positive regulation of cellular respiration
## 3850 positive regulation of chemokine (C-X-C motif) ligand 2 production
## 3851 positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G protein-coupled signaling pathway
## 3852 positive regulation of dendrite development
## 3853 positive regulation of DNA methylation-dependent heterochromatin assembly
## 3854 positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## 3855 positive regulation of ERAD pathway
## 3856 positive regulation of establishment of protein localization
## 3857 positive regulation of exit from mitosis
## 3858 positive regulation of extracellular matrix disassembly
## 3859 positive regulation of fatty acid beta-oxidation
## 3860 positive regulation of glucose metabolic process
## 3861 positive regulation of Golgi to plasma membrane protein transport
## 3862 positive regulation of hair follicle development
## 3863 positive regulation of heterotypic cell-cell adhesion
## 3864 positive regulation of histone deacetylase activity
## 3865 positive regulation of histone exchange
## 3866 positive regulation of humoral immune response mediated by circulating immunoglobulin
## 3867 positive regulation of I-kappaB phosphorylation
## 3868 positive regulation of intracellular transport
## 3869 positive regulation of isotype switching to IgA isotypes
## 3870 positive regulation of isotype switching to IgG isotypes
## 3871 positive regulation of keratinocyte migration
## 3872 positive regulation of lipid storage
## 3873 positive regulation of mesenchymal cell proliferation
## 3874 positive regulation of microglial cell migration
## 3875 positive regulation of mitotic cell cycle spindle assembly checkpoint
## 3876 positive regulation of mRNA 3'-end processing
## 3877 positive regulation of myelination
## 3878 positive regulation of myeloid dendritic cell cytokine production
## 3879 positive regulation of myoblast differentiation
## 3880 positive regulation of myoblast fusion
## 3881 positive regulation of natural killer cell activation
## 3882 positive regulation of neural precursor cell proliferation
## 3883 positive regulation of neuron projection arborization
## 3884 positive regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## 3885 positive regulation of oxidoreductase activity
## 3886 positive regulation of phagocytosis, engulfment
## 3887 positive regulation of podosome assembly
## 3888 positive regulation of protein K63-linked ubiquitination
## 3889 positive regulation of protein localization to Cajal body
## 3890 positive regulation of protein localization to kinetochore
## 3891 positive regulation of pseudopodium assembly
## 3892 positive regulation of Rac protein signal transduction
## 3893 positive regulation of reactive oxygen species biosynthetic process
## 3894 positive regulation of rRNA processing
## 3895 positive regulation of smooth muscle cell differentiation
## 3896 positive regulation of sprouting angiogenesis
## 3897 positive regulation of synaptic transmission, GABAergic
## 3898 positive regulation of T cell anergy
## 3899 positive regulation of telomerase RNA localization to Cajal body
## 3900 positive regulation of toll-like receptor 3 signaling pathway
## 3901 positive regulation of transcription by RNA polymerase I
## 3902 positive regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## 3903 positive regulation of transforming growth factor beta production
## 3904 positive regulation of urine volume
## 3905 positive regulation of vascular permeability
## 3906 positive regulation of vesicle fusion
## 3907 positive regulation of xenophagy
## 3908 postsynaptic actin cytoskeleton organization
## 3909 postsynaptic density, intracellular component
## 3910 posttranscriptional gene silencing
## 3911 potassium ion import across plasma membrane
## 3912 prenyltransferase activity
## 3913 presynaptic endocytic zone membrane
## 3914 primary miRNA binding
## 3915 production of siRNA involved in RNA interference
## 3916 profilin binding
## 3917 proline biosynthetic process
## 3918 pronucleus
## 3919 protein desumoylation
## 3920 protein heterooligomerization
## 3921 protein hexamerization
## 3922 protein localization to cell-cell junction
## 3923 protein localization to site of double-strand break
## 3924 protein maturation by [4Fe-4S] cluster transfer
## 3925 protein modification by small protein conjugation
## 3926 protein polymerization
## 3927 protein retention in Golgi apparatus
## 3928 protein sequestering activity
## 3929 protein ufmylation
## 3930 protein-DNA covalent cross-linking repair
## 3931 protein-membrane adaptor activity
## 3932 Prp19 complex
## 3933 PTW/PP1 phosphatase complex
## 3934 purine nucleobase biosynthetic process
## 3935 purine-containing compound salvage
## 3936 pyrimidine dimer repair
## 3937 pyrimidine nucleoside catabolic process
## 3938 quinone binding
## 3939 Ragulator complex
## 3940 Rap protein signal transduction
## 3941 rDNA heterochromatin
## 3942 regulation of acetyl-CoA biosynthetic process from pyruvate
## 3943 regulation of actin polymerization or depolymerization
## 3944 regulation of ATPase activity
## 3945 regulation of B cell receptor signaling pathway
## 3946 regulation of blood vessel diameter
## 3947 regulation of cardiac muscle contraction
## 3948 regulation of cell-cell adhesion
## 3949 regulation of cell-matrix adhesion
## 3950 regulation of cellular localization
## 3951 regulation of cellular respiration
## 3952 regulation of clathrin-dependent endocytosis
## 3953 regulation of DNA binding
## 3954 regulation of DNA damage checkpoint
## 3955 regulation of early endosome to late endosome transport
## 3956 regulation of erythrocyte differentiation
## 3957 regulation of establishment of protein localization
## 3958 regulation of fatty acid biosynthetic process
## 3959 regulation of fatty acid metabolic process
## 3960 regulation of insulin receptor signaling pathway
## 3961 regulation of interleukin-1 beta production
## 3962 regulation of intracellular signal transduction
## 3963 regulation of lipid storage
## 3964 regulation of long-term neuronal synaptic plasticity
## 3965 regulation of meiotic nuclear division
## 3966 regulation of mitochondrial mRNA stability
## 3967 regulation of mitotic centrosome separation
## 3968 regulation of mRNA export from nucleus
## 3969 regulation of neuron migration
## 3970 regulation of neurotransmitter secretion
## 3971 regulation of organ growth
## 3972 regulation of peptidyl-serine phosphorylation
## 3973 regulation of phosphatidylinositol dephosphorylation
## 3974 regulation of postsynapse organization
## 3975 regulation of postsynaptic density assembly
## 3976 regulation of postsynaptic membrane neurotransmitter receptor levels
## 3977 regulation of postsynaptic neurotransmitter receptor activity
## 3978 regulation of postsynaptic neurotransmitter receptor internalization
## 3979 regulation of presynapse assembly
## 3980 regulation of pro-B cell differentiation
## 3981 regulation of protein autophosphorylation
## 3982 regulation of protein kinase A signaling
## 3983 regulation of protein localization to cell surface
## 3984 regulation of protein metabolic process
## 3985 regulation of protein neddylation
## 3986 regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## 3987 regulation of ribonuclease activity
## 3988 regulation of RNA biosynthetic process
## 3989 regulation of synaptic transmission, GABAergic
## 3990 regulation of synaptic vesicle priming
## 3991 regulation of telomerase activity
## 3992 regulation of the force of heart contraction
## 3993 regulation of TORC1 signaling
## 3994 regulation of transcription by RNA polymerase III
## 3995 regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## 3996 regulation of translational initiation by eIF2 alpha phosphorylation
## 3997 regulation of type B pancreatic cell proliferation
## 3998 regulation of type I interferon-mediated signaling pathway
## 3999 regulation of vesicle-mediated transport
## 4000 relaxation of cardiac muscle
## 4001 respiratory electron transport chain
## 4002 response to alkaloid
## 4003 response to ATP
## 4004 response to auditory stimulus
## 4005 response to caffeine
## 4006 response to fructose
## 4007 response to growth factor
## 4008 response to growth hormone
## 4009 response to interferon-alpha
## 4010 response to isolation stress
## 4011 response to laminar fluid shear stress
## 4012 response to leptin
## 4013 response to magnesium ion
## 4014 response to metal ion
## 4015 response to molecule of bacterial origin
## 4016 response to nicotine
## 4017 response to peptide
## 4018 response to peptidoglycan
## 4019 response to type I interferon
## 4020 response to vitamin A
## 4021 response to vitamin D
## 4022 retina vasculature development in camera-type eye
## 4023 retrograde axonal transport
## 4024 ribosomal protein S6 kinase activity
## 4025 ribosome assembly
## 4026 RNA polyadenylation
## 4027 RNA polymerase II C-terminal domain phosphoserine binding
## 4028 RNA polymerase III general transcription initiation factor activity
## 4029 SAGA complex
## 4030 SAM complex
## 4031 secretion
## 4032 selenocysteine insertion sequence binding
## 4033 selenocysteinyl-tRNA(Sec) biosynthetic process
## 4034 semaphorin receptor activity
## 4035 semaphorin receptor complex
## 4036 semaphorin-plexin signaling pathway involved in axon guidance
## 4037 sequestering of actin monomers
## 4038 Set1C/COMPASS complex
## 4039 sialylation
## 4040 sialyltransferase activity
## 4041 signal peptide processing
## 4042 single strand break repair
## 4043 Smc5-Smc6 complex
## 4044 smooth muscle tissue development
## 4045 sodium ion import across plasma membrane
## 4046 solute:proton antiporter activity
## 4047 somatic hypermutation of immunoglobulin genes
## 4048 somite rostral/caudal axis specification
## 4049 spanning component of membrane
## 4050 spanning component of plasma membrane
## 4051 spectrin binding
## 4052 sperm axoneme assembly
## 4053 sperm-egg recognition
## 4054 spermatid nucleus differentiation
## 4055 sphingomyelin biosynthetic process
## 4056 spliceosomal tri-snRNP complex
## 4057 SRP-dependent cotranslational protein targeting to membrane, translocation
## 4058 stabilization of membrane potential
## 4059 STAGA complex
## 4060 STAT family protein binding
## 4061 sterol homeostasis
## 4062 stress fiber assembly
## 4063 striated muscle thin filament
## 4064 sulfuric ester hydrolase activity
## 4065 SUMO ligase activity
## 4066 superoxide anion generation
## 4067 synaptic membrane adhesion
## 4068 synaptic transmission, cholinergic
## 4069 synaptic vesicle fusion to presynaptic active zone membrane
## 4070 telomerase inhibitor activity
## 4071 telomere maintenance via telomere lengthening
## 4072 telomere organization
## 4073 telomeric 3' overhang formation
## 4074 thiol oxidase activity
## 4075 THO complex
## 4076 THO complex part of transcription export complex
## 4077 thrombin-activated receptor signaling pathway
## 4078 toll-like receptor 2 signaling pathway
## 4079 transcription cofactor binding
## 4080 transferrin receptor binding
## 4081 translation activator activity
## 4082 transmembrane receptor protein serine/threonine kinase activity
## 4083 tRNA pseudouridine synthesis
## 4084 tRNA transcription by RNA polymerase III
## 4085 tRNA-splicing ligase complex
## 4086 tubulin complex assembly
## 4087 type 1 angiotensin receptor binding
## 4088 type B pancreatic cell development
## 4089 ubiquitin-dependent SMAD protein catabolic process
## 4090 ubiquitin-like modifier activating enzyme activity
## 4091 uniplex complex
## 4092 unmethylated CpG binding
## 4093 urogenital system development
## 4094 vascular wound healing
## 4095 VCP-NPL4-UFD1 AAA ATPase complex
## 4096 ventricular cardiac muscle cell action potential
## 4097 ventricular cardiac muscle cell development
## 4098 ventricular trabecula myocardium morphogenesis
## 4099 very long-chain fatty acid catabolic process
## 4100 very-long-chain 3-ketoacyl-CoA synthase activity
## 4101 vesicle cargo loading
## 4102 vesicle fusion with endoplasmic reticulum-Golgi intermediate compartment (ERGIC) membrane
## 4103 vesicle fusion with Golgi apparatus
## 4104 viral budding
## 4105 viral genome replication
## 4106 viral translation
## 4107 virion binding
## 4108 voltage-gated sodium channel activity
## 4109 white fat cell differentiation
## 4110 Wnt signalosome
## 4111 Wnt-activated receptor activity
## 4112 wound healing, spreading of cells
## 4113 XY body
## 4114 zymogen granule membrane
## 4115 'de novo' IMP biosynthetic process
## 4116 [2Fe-2S] cluster assembly
## 4117 1-acyl-2-lysophosphatidylserine acylhydrolase activity
## 4118 1-acylglycerophosphocholine O-acyltransferase activity
## 4119 1-alkyl-2-acetylglycerophosphocholine esterase activity
## 4120 3-hydroxy-arachidoyl-CoA dehydratase activity
## 4121 3-hydroxy-behenoyl-CoA dehydratase activity
## 4122 3-hydroxy-lignoceroyl-CoA dehydratase activity
## 4123 3-hydroxyacyl-CoA dehydratase activity
## 4124 3' overhang single-stranded DNA endodeoxyribonuclease activity
## 4125 3'-5'-exodeoxyribonuclease activity
## 4126 3'-phosphoadenosine 5'-phosphosulfate biosynthetic process
## 4127 5S class rRNA transcription by RNA polymerase III
## 4128 7SK snRNP
## 4129 abscission
## 4130 acetyl-CoA C-acetyltransferase activity
## 4131 acetylcholine receptor binding
## 4132 acid phosphatase activity
## 4133 actin crosslink formation
## 4134 actin filament network formation
## 4135 actin filament reorganization
## 4136 activation of protein kinase A activity
## 4137 activation-induced cell death of T cells
## 4138 acyl carnitine transmembrane transport
## 4139 acyl-CoA hydrolase activity
## 4140 acylglycerol lipase activity
## 4141 adenylate cyclase activator activity
## 4142 adenylate cyclase binding
## 4143 adenylate cyclase-activating adrenergic receptor signaling pathway
## 4144 aflatoxin metabolic process
## 4145 alditol:NADP+ 1-oxidoreductase activity
## 4146 alpha-actinin binding
## 4147 alpha-beta T cell receptor complex
## 4148 alveolar lamellar body
## 4149 amelogenesis
## 4150 aminoacyl-tRNA editing activity
## 4151 aminophospholipid translocation
## 4152 ammonium transmembrane transporter activity
## 4153 AMP biosynthetic process
## 4154 amyloid precursor protein metabolic process
## 4155 amyloid-beta metabolic process
## 4156 anchored component of synaptic vesicle membrane
## 4157 androgen biosynthetic process
## 4158 androgen receptor signaling pathway
## 4159 angiotensin maturation
## 4160 animal organ development
## 4161 antigen receptor-mediated signaling pathway
## 4162 antimicrobial humoral response
## 4163 AP-4 adaptor complex
## 4164 AP-type membrane coat adaptor complex
## 4165 apolipoprotein A-I binding
## 4166 apolipoprotein A-I-mediated signaling pathway
## 4167 apoptotic nuclear changes
## 4168 apoptotic process involved in morphogenesis
## 4169 arachidonate-CoA ligase activity
## 4170 arginine binding
## 4171 arginine transport
## 4172 Arp2/3 protein complex
## 4173 aspartic-type endopeptidase inhibitor activity
## 4174 astrocyte cell migration
## 4175 astrocyte development
## 4176 ATPase inhibitor activity
## 4177 ATPase-coupled cation transmembrane transporter activity
## 4178 ATPase-coupled glutathione S-conjugate transmembrane transporter activity
## 4179 ATPase-coupled peptide antigen transmembrane transporter activity
## 4180 ATPase-coupled xenobiotic transmembrane transporter activity
## 4181 atrial septum development
## 4182 atrial septum morphogenesis
## 4183 atrioventricular canal development
## 4184 attachment of GPI anchor to protein
## 4185 autophagic cell death
## 4186 axolemma
## 4187 axon development
## 4188 axon ensheathment
## 4189 axon hillock
## 4190 axonal transport of mitochondrion
## 4191 axoneme assembly
## 4192 azurophil granule
## 4193 B cell apoptotic process
## 4194 B cell mediated immunity
## 4195 B cell receptor complex
## 4196 basal cortex
## 4197 basement membrane assembly
## 4198 basic amino acid transmembrane transport
## 4199 behavioral fear response
## 4200 beta-1 adrenergic receptor binding
## 4201 beta-2-microglobulin binding
## 4202 beta-adrenergic receptor kinase activity
## 4203 beta-catenin destruction complex assembly
## 4204 bleb assembly
## 4205 BLOC-2 complex
## 4206 blood coagulation, intrinsic pathway
## 4207 blood vessel maturation
## 4208 BMP receptor activity
## 4209 BMP receptor binding
## 4210 box C/D snoRNP complex
## 4211 bradykinin catabolic process
## 4212 BRCA1-BARD1 complex
## 4213 BRISC complex
## 4214 bubble DNA binding
## 4215 C-X3-C chemokine binding
## 4216 C2H2 zinc finger domain binding
## 4217 calcium activated cation channel activity
## 4218 calcium activated phospholipid scrambling
## 4219 calcium ion homeostasis
## 4220 calcium transmembrane transporter activity, phosphorylative mechanism
## 4221 calcium-independent phospholipase A2 activity
## 4222 calcium-mediated signaling using intracellular calcium source
## 4223 calmodulin-dependent protein kinase activity
## 4224 cAMP binding
## 4225 carbohydrate biosynthetic process
## 4226 carbonate dehydratase activity
## 4227 carbonyl reductase (NADPH) activity
## 4228 CARD domain binding
## 4229 cardiac conduction system development
## 4230 cardiac muscle fiber development
## 4231 cardiac muscle hypertrophy in response to stress
## 4232 carnitine shuttle
## 4233 catecholamine metabolic process
## 4234 cation:chloride symporter activity
## 4235 Cdc73/Paf1 complex
## 4236 CDP-choline pathway
## 4237 cell cycle phase transition
## 4238 cell growth involved in cardiac muscle cell development
## 4239 cell-cell adhesion mediated by integrin
## 4240 cell-cell adhesion mediator activity
## 4241 cell-cell junction maintenance
## 4242 cellular aldehyde metabolic process
## 4243 cellular chloride ion homeostasis
## 4244 cellular extravasation
## 4245 cellular heat acclimation
## 4246 cellular homeostasis
## 4247 cellular lipid catabolic process
## 4248 cellular phosphate ion homeostasis
## 4249 cellular response to brain-derived neurotrophic factor stimulus
## 4250 cellular response to caffeine
## 4251 cellular response to camptothecin
## 4252 cellular response to cisplatin
## 4253 cellular response to copper ion
## 4254 cellular response to cycloheximide
## 4255 cellular response to decreased oxygen levels
## 4256 cellular response to follicle-stimulating hormone stimulus
## 4257 cellular response to glucagon stimulus
## 4258 cellular response to glucocorticoid stimulus
## 4259 cellular response to hydroperoxide
## 4260 cellular response to hydrostatic pressure
## 4261 cellular response to L-glutamate
## 4262 cellular response to leucine starvation
## 4263 cellular response to lipid
## 4264 cellular response to lipoteichoic acid
## 4265 cellular response to lithium ion
## 4266 cellular response to magnesium ion
## 4267 cellular response to molecule of bacterial origin
## 4268 cellular response to morphine
## 4269 cellular response to nicotine
## 4270 cellular response to nitrogen starvation
## 4271 cellular response to pH
## 4272 cellular response to phorbol 13-acetate 12-myristate
## 4273 cellular response to potassium ion
## 4274 cellular response to staurosporine
## 4275 cellular response to testosterone stimulus
## 4276 cellular response to thyroid hormone stimulus
## 4277 cellular response to xenobiotic stimulus
## 4278 central nervous system neuron development
## 4279 centralspindlin complex
## 4280 centriole assembly
## 4281 ceramide 1-phosphate binding
## 4282 ceramide 1-phosphate transfer activity
## 4283 ceramide 1-phosphate transport
## 4284 cerebellar cortex formation
## 4285 cerebellum morphogenesis
## 4286 cerebrospinal fluid circulation
## 4287 cGMP binding
## 4288 channel activity
## 4289 chemokine (C-C motif) ligand 21 signaling pathway
## 4290 chemokine activity
## 4291 chloride ion homeostasis
## 4292 chloride transmembrane transporter activity
## 4293 cholinergic synapse
## 4294 chondrocyte proliferation
## 4295 chromatin insulator sequence binding
## 4296 CIA complex
## 4297 class I DNA-(apurinic or apyrimidinic site) endonuclease activity
## 4298 clathrin complex
## 4299 clathrin light chain binding
## 4300 cleavage involved in rRNA processing
## 4301 co-SMAD binding
## 4302 coated vesicle
## 4303 cobalamin binding
## 4304 coenzyme A metabolic process
## 4305 complement activation, alternative pathway
## 4306 connective tissue replacement involved in inflammatory response wound healing
## 4307 constitutive secretory pathway
## 4308 COP9 signalosome assembly
## 4309 COPI coating of Golgi vesicle
## 4310 copper ion transport
## 4311 coronary artery morphogenesis
## 4312 corpus callosum morphogenesis
## 4313 CORVET complex
## 4314 costamere
## 4315 cranial skeletal system development
## 4316 craniofacial suture morphogenesis
## 4317 CTP salvage
## 4318 Cul4A-RING E3 ubiquitin ligase complex
## 4319 cupric ion binding
## 4320 cuprous ion binding
## 4321 cyclic nucleotide biosynthetic process
## 4322 cyclin-dependent protein kinase activity
## 4323 cyclosporin A binding
## 4324 cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## 4325 cytochrome-b5 reductase activity, acting on NAD(P)H
## 4326 cytolysis
## 4327 cytoplasmic sequestering of NF-kappaB
## 4328 D1 dopamine receptor binding
## 4329 daunorubicin metabolic process
## 4330 de novo centriole assembly involved in multi-ciliated epithelial cell differentiation
## 4331 DEAD/H-box RNA helicase binding
## 4332 death-inducing signaling complex
## 4333 defense response to tumor cell
## 4334 delta DNA polymerase complex
## 4335 demethylation
## 4336 dendrite extension
## 4337 dendrite self-avoidance
## 4338 dendritic spine maintenance
## 4339 dendritic spine neck
## 4340 dense body
## 4341 deoxyribonucleoside monophosphate biosynthetic process
## 4342 Derlin-1 retrotranslocation complex
## 4343 dermatan sulfate proteoglycan biosynthetic process
## 4344 detection of bacterium
## 4345 detection of temperature stimulus involved in sensory perception of pain
## 4346 detection of virus
## 4347 deuterosome
## 4348 developmental pigmentation
## 4349 developmental process
## 4350 developmental process involved in reproduction
## 4351 digestive tract morphogenesis
## 4352 dipeptide import across plasma membrane
## 4353 dipeptide transmembrane transporter activity
## 4354 dipeptidyl-peptidase activity
## 4355 DNA catabolic process, endonucleolytic
## 4356 DNA damage induced protein phosphorylation
## 4357 DNA methylation-dependent heterochromatin assembly
## 4358 DNA N-glycosylase activity
## 4359 DNA repair complex
## 4360 DNA replication, removal of RNA primer
## 4361 DNA topoisomerase type I (single strand cut, ATP-independent) activity
## 4362 dolichyl-diphosphooligosaccharide-protein glycotransferase activity
## 4363 dopaminergic neuron differentiation
## 4364 dorsal aorta morphogenesis
## 4365 doxorubicin metabolic process
## 4366 dTTP biosynthetic process
## 4367 early phagosome
## 4368 EARP complex
## 4369 eating behavior
## 4370 efflux transmembrane transporter activity
## 4371 Elg1 RFC-like complex
## 4372 embryo development ending in birth or egg hatching
## 4373 embryonic body morphogenesis
## 4374 embryonic placenta morphogenesis
## 4375 embryonic retina morphogenesis in camera-type eye
## 4376 endoplasmic reticulum tubular network organization
## 4377 endoplasmic reticulum-plasma membrane contact site
## 4378 endosome to lysosome transport via multivesicular body sorting pathway
## 4379 endothelial cell chemotaxis
## 4380 endothelial cell development
## 4381 endothelial to hematopoietic transition
## 4382 engulfment of apoptotic cell
## 4383 eosinophil degranulation
## 4384 epithelial cell development
## 4385 epithelial cilium movement involved in extracellular fluid movement
## 4386 equatorial microtubule organizing center
## 4387 ER membrane protein complex
## 4388 ER overload response
## 4389 ERBB signaling pathway
## 4390 ErbB-2 class receptor binding
## 4391 ERCC4-ERCC1 complex
## 4392 ESCRT II complex
## 4393 ESCRT-0 complex
## 4394 establishment of apical/basal cell polarity
## 4395 establishment of integrated proviral latency
## 4396 establishment of T cell polarity
## 4397 establishment or maintenance of microtubule cytoskeleton polarity
## 4398 establishment or maintenance of transmembrane electrochemical gradient
## 4399 ether lipid biosynthetic process
## 4400 eukaryotic initiation factor eIF2 binding
## 4401 eukaryotic translation elongation factor 1 complex
## 4402 exocytic vesicle
## 4403 exonucleolytic trimming to generate mature 3'-end of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 4404 exopeptidase activity
## 4405 export across plasma membrane
## 4406 extracellular ligand-gated ion channel activity
## 4407 extracellular matrix assembly
## 4408 extracellular matrix constituent conferring elasticity
## 4409 eye photoreceptor cell development
## 4410 F-actin capping protein complex
## 4411 FANCM-MHF complex
## 4412 FAR/SIN/STRIPAK complex
## 4413 fatty acid transmembrane transporter activity
## 4414 Fc receptor mediated inhibitory signaling pathway
## 4415 female meiosis chromosome segregation
## 4416 flavonoid metabolic process
## 4417 folic acid transport
## 4418 forebrain morphogenesis
## 4419 formation of translation preinitiation complex
## 4420 fructose catabolic process to hydroxyacetone phosphate and glyceraldehyde-3-phosphate
## 4421 fructose transmembrane transport
## 4422 fructose transmembrane transporter activity
## 4423 fucose metabolic process
## 4424 G protein-coupled adenosine receptor signaling pathway
## 4425 G protein-coupled glutamate receptor signaling pathway
## 4426 G protein-coupled peptide receptor activity
## 4427 G protein-coupled receptor internalization
## 4428 G protein-coupled receptor kinase activity
## 4429 G-protein beta-subunit binding
## 4430 GAIT complex
## 4431 galactose catabolic process
## 4432 galactose catabolic process via UDP-galactose
## 4433 gamma-tubulin small complex
## 4434 ganglioside biosynthetic process
## 4435 GATOR2 complex
## 4436 general transcription initiation factor activity
## 4437 generation of catalytic spliceosome for first transesterification step
## 4438 generation of neurons
## 4439 genitalia development
## 4440 germinal center B cell differentiation
## 4441 germinal center formation
## 4442 GET complex
## 4443 GID complex
## 4444 gland morphogenesis
## 4445 glial cell apoptotic process
## 4446 glucose 6-phosphate metabolic process
## 4447 glucose binding
## 4448 glucose-6-phosphate transport
## 4449 glucuronosyltransferase activity
## 4450 glucuronylgalactosylproteoglycan 4-beta-N-acetylgalactosaminyltransferase activity
## 4451 glutathione binding
## 4452 glutathione catabolic process
## 4453 glutathione hydrolase activity
## 4454 glycerol catabolic process
## 4455 glycerol-3-phosphate metabolic process
## 4456 glycerophospholipid catabolic process
## 4457 glycine biosynthetic process
## 4458 glycolipid binding
## 4459 glycolipid biosynthetic process
## 4460 glycolipid transport
## 4461 glycoprotein transport
## 4462 glycosylphosphatidylinositol-N-acetylglucosaminyltransferase (GPI-GnT) complex
## 4463 Golgi apparatus mannose trimming
## 4464 Golgi vesicle budding
## 4465 GPI anchor metabolic process
## 4466 growth cone filopodium
## 4467 growth hormone receptor binding
## 4468 growth hormone receptor signaling pathway via JAK-STAT
## 4469 growth hormone secretion
## 4470 guanine/thymine mispair binding
## 4471 guanosine-diphosphatase activity
## 4472 guanyl-nucleotide exchange factor complex
## 4473 H3 histone acetyltransferase activity
## 4474 hard palate development
## 4475 heart contraction
## 4476 heart valve morphogenesis
## 4477 hematopoietic stem cell proliferation
## 4478 hemidesmosome assembly
## 4479 hemoglobin complex
## 4480 hepatocyte differentiation
## 4481 hepatocyte proliferation
## 4482 heterochromatin assembly
## 4483 heteromeric SMAD protein complex
## 4484 high-density lipoprotein particle assembly
## 4485 high-density lipoprotein particle clearance
## 4486 high-density lipoprotein particle remodeling
## 4487 histidine catabolic process
## 4488 histone acetyltransferase activity (H3-K23 specific)
## 4489 histone demethylase activity (H3-dimethyl-K4 specific)
## 4490 histone demethylase activity (H3-K4 specific)
## 4491 histone demethylase activity (H3-trimethyl-K4 specific)
## 4492 histone demethylation
## 4493 histone glutamine methylation
## 4494 histone H2A ubiquitination
## 4495 histone H2A-K119 monoubiquitination
## 4496 histone H2B acetylation
## 4497 histone H2B conserved C-terminal lysine deubiquitination
## 4498 histone H3-K23 acetylation
## 4499 histone H3-K27 methylation
## 4500 histone H3-K9 methylation
## 4501 histone H4-K12 acetylation
## 4502 histone H4-R3 methylation
## 4503 histone kinase activity
## 4504 histone methyltransferase activity (H3-K27 specific)
## 4505 histone serine kinase activity
## 4506 histone ubiquitination
## 4507 hyalurononglucosaminidase activity
## 4508 hypoglycin A gamma-glutamyl transpeptidase activity
## 4509 hypomethylation of CpG island
## 4510 hypothalamus development
## 4511 IgG binding
## 4512 immune response-activating cell surface receptor signaling pathway
## 4513 immune response-regulating cell surface receptor signaling pathway
## 4514 immunoglobulin mediated immune response
## 4515 immunoglobulin receptor binding
## 4516 IMP metabolic process
## 4517 import across plasma membrane
## 4518 induction of positive chemotaxis
## 4519 inflammasome complex
## 4520 inner dynein arm assembly
## 4521 inorganic anion exchanger activity
## 4522 inorganic cation transmembrane transport
## 4523 inositol 1,3,4,5 tetrakisphosphate binding
## 4524 inositol 1,4,5 trisphosphate binding
## 4525 inositol lipid-mediated signaling
## 4526 inositol metabolic process
## 4527 inositol-1,3,4,5-tetrakisphosphate 5-phosphatase activity
## 4528 insulin receptor signaling pathway via phosphatidylinositol 3-kinase
## 4529 insulin-like growth factor binding
## 4530 insulin-responsive compartment
## 4531 integral component of cytoplasmic side of endoplasmic reticulum membrane
## 4532 integral component of lysosomal membrane
## 4533 integral component of presynaptic active zone membrane
## 4534 interchromatin granule
## 4535 interkinetic nuclear migration
## 4536 interleukin-18-mediated signaling pathway
## 4537 intermediate filament organization
## 4538 intestinal epithelial cell differentiation
## 4539 intracellular anatomical structure
## 4540 intracellular protein transmembrane transport
## 4541 intracellular sequestering of iron ion
## 4542 intracellular vesicle
## 4543 intraciliary transport particle B
## 4544 ion channel complex
## 4545 ionotropic glutamate receptor complex
## 4546 ionotropic glutamate receptor signaling pathway
## 4547 iris morphogenesis
## 4548 ISG15 transferase activity
## 4549 ISG15-protein conjugation
## 4550 isocitrate metabolic process
## 4551 isoleucine catabolic process
## 4552 isopentenyl diphosphate biosynthetic process, mevalonate pathway
## 4553 JUN kinase kinase kinase activity
## 4554 juxtaparanode region of axon
## 4555 keratin filament binding
## 4556 kidney morphogenesis
## 4557 L-alpha-amino acid transmembrane transport
## 4558 L-amino acid transmembrane transporter activity
## 4559 L-lysine transmembrane transport
## 4560 L-serine biosynthetic process
## 4561 labyrinthine layer development
## 4562 lactate transmembrane transport
## 4563 lactate transmembrane transporter activity
## 4564 lamin filament
## 4565 late endosome to lysosome transport
## 4566 leukocyte chemotaxis
## 4567 leukocyte migration involved in inflammatory response
## 4568 leukotriene C4 gamma-glutamyl transferase activity
## 4569 leukotriene D4 biosynthetic process
## 4570 leukotriene metabolic process
## 4571 leukotriene transport
## 4572 lipase activity
## 4573 lipase binding
## 4574 lipid glycosylation
## 4575 lipid kinase activity
## 4576 lipid phosphatase activity
## 4577 lipid transfer activity
## 4578 lipid transporter activity
## 4579 lipopolysaccharide immune receptor activity
## 4580 lipoprotein catabolic process
## 4581 locomotory exploration behavior
## 4582 long-chain fatty acyl-CoA binding
## 4583 low-density lipoprotein particle remodeling
## 4584 LRR domain binding
## 4585 Lsm1-7-Pat1 complex
## 4586 LUBAC complex
## 4587 lymphocyte chemotaxis
## 4588 lymphocyte proliferation
## 4589 lysophosphatidic acid acyltransferase activity
## 4590 macrophage colony-stimulating factor signaling pathway
## 4591 magnesium ion transport
## 4592 maintenance of mitotic sister chromatid cohesion
## 4593 malate metabolic process
## 4594 male genitalia development
## 4595 male germ cell nucleus
## 4596 mammary gland alveolus development
## 4597 mammary gland branching involved in thelarche
## 4598 mammary gland epithelial cell proliferation
## 4599 mannosidase activity
## 4600 mast cell degranulation
## 4601 maturation of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 4602 MDA-5 signaling pathway
## 4603 mechanosensitive ion channel activity
## 4604 mediator complex binding
## 4605 medium-chain fatty acid metabolic process
## 4606 meiotic sister chromatid cohesion, centromeric
## 4607 meiotic spindle organization
## 4608 melanin biosynthetic process
## 4609 melanosome membrane
## 4610 membrane depolarization during action potential
## 4611 membrane raft polarization
## 4612 mercury ion binding
## 4613 mesodermal cell differentiation
## 4614 methenyltetrahydrofolate cyclohydrolase activity
## 4615 methylenetetrahydrofolate dehydrogenase (NAD+) activity
## 4616 methylumbelliferyl-acetate deacetylase activity
## 4617 MHC class I receptor activity
## 4618 MHC class II protein binding
## 4619 MHC protein binding
## 4620 MICOS complex
## 4621 microtubule-severing ATPase activity
## 4622 miRNA catabolic process
## 4623 mismatch repair complex
## 4624 mitochondrial alpha-ketoglutarate dehydrogenase complex
## 4625 mitochondrial crista
## 4626 mitochondrial intermembrane space protein transporter complex
## 4627 mitochondrial membrane organization
## 4628 mitochondrial promoter sequence-specific DNA binding
## 4629 mitochondrial pyruvate dehydrogenase complex
## 4630 mitochondrial transmembrane transport
## 4631 mitochondrion distribution
## 4632 mitogen-activated protein kinase p38 binding
## 4633 mitophagy
## 4634 mitotic centrosome separation
## 4635 mitotic cytokinesis checkpoint
## 4636 mitotic G2/M transition checkpoint
## 4637 mitotic recombination
## 4638 mitotic sister chromatid cohesion, centromeric
## 4639 mitotic telomere maintenance via semi-conservative replication
## 4640 MKS complex
## 4641 MMXD complex
## 4642 modulation by host of viral RNA genome replication
## 4643 monoamine transport
## 4644 monocarboxylic acid transmembrane transporter activity
## 4645 monocarboxylic acid transport
## 4646 monocyte activation
## 4647 monoubiquitinated histone H2A deubiquitination
## 4648 MPP7-DLG1-LIN7 complex
## 4649 mRNA (2'-O-methyladenosine-N6-)-methyltransferase activity
## 4650 mRNA 3'-splice site recognition
## 4651 mRNA cleavage factor complex
## 4652 mu-type opioid receptor binding
## 4653 mucosal immune response
## 4654 muscle structure development
## 4655 Myb complex
## 4656 myelin assembly
## 4657 myelin sheath abaxonal region
## 4658 myelin sheath adaxonal region
## 4659 myeloid cell homeostasis
## 4660 myoblast fusion
## 4661 myoblast migration
## 4662 N-acetyllactosamine synthase activity
## 4663 N-acylphosphatidylethanolamine metabolic process
## 4664 N-acyltransferase activity
## 4665 N-methyltransferase activity
## 4666 N-terminal peptidyl-lysine acetylation
## 4667 N-terminal protein myristoylation
## 4668 NAD-dependent histone deacetylase activity
## 4669 NADP metabolic process
## 4670 NADPH oxidase complex
## 4671 NADPH regeneration
## 4672 NatC complex
## 4673 natural killer cell degranulation
## 4674 negative regulation by host of viral genome replication
## 4675 negative regulation of adenylate cyclase activity
## 4676 negative regulation of adherens junction organization
## 4677 negative regulation of amyloid fibril formation
## 4678 negative regulation of amyloid precursor protein biosynthetic process
## 4679 negative regulation of appetite
## 4680 negative regulation of Arp2/3 complex-mediated actin nucleation
## 4681 negative regulation of autophagosome maturation
## 4682 negative regulation of axonogenesis
## 4683 negative regulation of B cell activation
## 4684 negative regulation of B cell receptor signaling pathway
## 4685 negative regulation of barbed-end actin filament capping
## 4686 negative regulation of bicellular tight junction assembly
## 4687 negative regulation of biomineral tissue development
## 4688 negative regulation of blood pressure
## 4689 negative regulation of calcium ion transport
## 4690 negative regulation of calcium ion-dependent exocytosis
## 4691 negative regulation of calcium-mediated signaling
## 4692 negative regulation of cAMP-dependent protein kinase activity
## 4693 negative regulation of cAMP-mediated signaling
## 4694 negative regulation of cellular protein catabolic process
## 4695 negative regulation of chemokine (C-X-C motif) ligand 2 production
## 4696 negative regulation of cholesterol biosynthetic process
## 4697 negative regulation of chondrocyte differentiation
## 4698 negative regulation of chromatin silencing
## 4699 negative regulation of cyclic-nucleotide phosphodiesterase activity
## 4700 negative regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## 4701 negative regulation of cytokinesis
## 4702 negative regulation of defense response to virus
## 4703 negative regulation of dendritic spine development
## 4704 negative regulation of DNA biosynthetic process
## 4705 negative regulation of DNA damage checkpoint
## 4706 negative regulation of endoplasmic reticulum unfolded protein response
## 4707 negative regulation of epithelial cell proliferation involved in prostate gland development
## 4708 negative regulation of ERBB signaling pathway
## 4709 negative regulation of excitatory postsynaptic potential
## 4710 negative regulation of fatty acid biosynthetic process
## 4711 negative regulation of glucocorticoid receptor signaling pathway
## 4712 negative regulation of heart contraction
## 4713 negative regulation of heterotypic cell-cell adhesion
## 4714 negative regulation of histone H2A K63-linked ubiquitination
## 4715 negative regulation of interferon-gamma-mediated signaling pathway
## 4716 negative regulation of IP-10 production
## 4717 negative regulation of IRE1-mediated unfolded protein response
## 4718 negative regulation of keratinocyte proliferation
## 4719 negative regulation of lipid catabolic process
## 4720 negative regulation of lymphocyte migration
## 4721 negative regulation of macrophage chemotaxis
## 4722 negative regulation of mammary gland epithelial cell proliferation
## 4723 negative regulation of mesenchymal cell proliferation
## 4724 negative regulation of microglial cell activation
## 4725 negative regulation of mitotic nuclear division
## 4726 negative regulation of monocyte chemotactic protein-1 production
## 4727 negative regulation of multicellular organism growth
## 4728 negative regulation of myelination
## 4729 negative regulation of myosin-light-chain-phosphatase activity
## 4730 negative regulation of natural killer cell mediated cytotoxicity
## 4731 negative regulation of neuron migration
## 4732 negative regulation of ossification
## 4733 negative regulation of p38MAPK cascade
## 4734 negative regulation of peptidyl-cysteine S-nitrosylation
## 4735 negative regulation of PERK-mediated unfolded protein response
## 4736 negative regulation of plasminogen activation
## 4737 negative regulation of platelet-derived growth factor receptor signaling pathway
## 4738 negative regulation of protection from non-homologous end joining at telomere
## 4739 negative regulation of protein ADP-ribosylation
## 4740 negative regulation of protein dephosphorylation
## 4741 negative regulation of protein refolding
## 4742 negative regulation of protein targeting to mitochondrion
## 4743 negative regulation of receptor binding
## 4744 negative regulation of receptor signaling pathway via JAK-STAT
## 4745 negative regulation of response to cytokine stimulus
## 4746 negative regulation of retinoic acid receptor signaling pathway
## 4747 negative regulation of RIG-I signaling pathway
## 4748 negative regulation of signal transduction by p53 class mediator
## 4749 negative regulation of SMAD protein signal transduction
## 4750 negative regulation of smooth muscle cell chemotaxis
## 4751 negative regulation of sprouting angiogenesis
## 4752 negative regulation of striated muscle cell apoptotic process
## 4753 negative regulation of substrate adhesion-dependent cell spreading
## 4754 negative regulation of superoxide anion generation
## 4755 negative regulation of T-helper 17 cell differentiation
## 4756 negative regulation of TORC1 signaling
## 4757 negative regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## 4758 negative regulation of transcription regulatory region DNA binding
## 4759 negative regulation of transforming growth factor beta1 production
## 4760 negative regulation of transposition
## 4761 negative regulation of triglyceride catabolic process
## 4762 negative regulation of vascular endothelial growth factor receptor signaling pathway
## 4763 negative regulation of vascular permeability
## 4764 negative regulation of vascular wound healing
## 4765 nerve growth factor signaling pathway
## 4766 nervous system process
## 4767 netrin-activated signaling pathway
## 4768 neural crest formation
## 4769 neural precursor cell proliferation
## 4770 neurexin family protein binding
## 4771 neuron cell-cell adhesion
## 4772 neuron fate commitment
## 4773 neuronal ribonucleoprotein granule
## 4774 neurotransmitter biosynthetic process
## 4775 neurotransmitter receptor activity
## 4776 neurotransmitter receptor transport, endosome to postsynaptic membrane
## 4777 neutral amino acid transmembrane transporter activity
## 4778 neutral amino acid transport
## 4779 neutrophil extravasation
## 4780 NFAT protein binding
## 4781 nitric-oxide synthase regulator activity
## 4782 non-canonical Wnt signaling pathway
## 4783 nonhomologous end joining complex
## 4784 nose development
## 4785 nuclear envelope lumen
## 4786 nuclear membrane organization
## 4787 nuclear pore cytoplasmic filaments
## 4788 nuclear pore organization
## 4789 nuclear telomere cap complex
## 4790 nuclear transport
## 4791 nucleolar large rRNA transcription by RNA polymerase I
## 4792 nucleoside diphosphate catabolic process
## 4793 nucleoside-triphosphate diphosphatase activity
## 4794 nucleosome mobilization
## 4795 nucleotide biosynthetic process
## 4796 nucleotide-excision repair complex
## 4797 nucleotide-excision repair factor 1 complex
## 4798 O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase activity
## 4799 oligosaccharide catabolic process
## 4800 organic acid binding
## 4801 organic anion transmembrane transporter activity
## 4802 organic cation transport
## 4803 osteoblast development
## 4804 outer dynein arm assembly
## 4805 ovulation
## 4806 oxaloacetate decarboxylase activity
## 4807 oxaloacetate metabolic process
## 4808 oxidative demethylation
## 4809 oxidative DNA demethylation
## 4810 oxidoreductase activity, acting on NAD(P)H, quinone or similar compound as acceptor
## 4811 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, NAD(P)H as one donor, and incorporation of one atom of oxygen
## 4812 oxidoreductase activity, acting on the CH-CH group of donors, NAD or NADP as acceptor
## 4813 oxygen homeostasis
## 4814 oxygen sensor activity
## 4815 paranodal junction
## 4816 pathway-restricted SMAD protein phosphorylation
## 4817 PCAF complex
## 4818 PeBoW complex
## 4819 peptidase activator activity involved in apoptotic process
## 4820 peptide cross-linking
## 4821 peptide hormone binding
## 4822 peptidoglycan binding
## 4823 peptidoglycan transport
## 4824 peptidyl-arginine methylation, to symmetrical-dimethyl arginine
## 4825 peptidyl-arginine omega-N-methylation
## 4826 peptidyl-lysine deacetylation
## 4827 peptidyl-lysine trimethylation
## 4828 pericardium development
## 4829 perichromatin fibrils
## 4830 PERK-mediated unfolded protein response
## 4831 pexophagy
## 4832 phagocytic vesicle lumen
## 4833 phagolysosome
## 4834 phenylalanine-tRNA ligase activity
## 4835 phosphatase activator activity
## 4836 phosphatase inhibitor activity
## 4837 phosphatidylinositol acyl-chain remodeling
## 4838 phosphatidylinositol phosphate 5-phosphatase activity
## 4839 phosphatidylserine 1-acylhydrolase activity
## 4840 phosphatidylserine biosynthetic process
## 4841 phosphatidylserine flippase activity
## 4842 phosphatidylserine metabolic process
## 4843 phospholipase A1 activity
## 4844 phospholipid catabolic process
## 4845 phospholipid-translocating ATPase complex
## 4846 phosphotransferase activity, for other substituted phosphate groups
## 4847 photoreceptor disc membrane
## 4848 pituitary gland development
## 4849 plasma membrane phospholipid scrambling
## 4850 plasma membrane repair
## 4851 platelet activating factor metabolic process
## 4852 platelet alpha granule
## 4853 platelet dense granule membrane
## 4854 platelet-derived growth factor receptor binding
## 4855 pointed-end actin filament capping
## 4856 poly-N-acetyllactosamine biosynthetic process
## 4857 polyamine metabolic process
## 4858 polysaccharide binding
## 4859 porin activity
## 4860 positive regulation by virus of viral protein levels in host cell
## 4861 positive regulation of acute inflammatory response
## 4862 positive regulation of adenylate cyclase activity
## 4863 positive regulation of alpha-beta T cell proliferation
## 4864 positive regulation of amyloid-beta clearance
## 4865 positive regulation of anoikis
## 4866 positive regulation of apoptotic DNA fragmentation
## 4867 positive regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## 4868 positive regulation of axon extension involved in axon guidance
## 4869 positive regulation of binding
## 4870 positive regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## 4871 positive regulation of calcium ion-dependent exocytosis
## 4872 positive regulation of cAMP-dependent protein kinase activity
## 4873 positive regulation of cap-independent translational initiation
## 4874 positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## 4875 positive regulation of cell activation
## 4876 positive regulation of cell-cell adhesion mediated by integrin
## 4877 positive regulation of cellular protein catabolic process
## 4878 positive regulation of centriole elongation
## 4879 positive regulation of centrosome duplication
## 4880 positive regulation of cholesterol storage
## 4881 positive regulation of cholesterol transport
## 4882 positive regulation of chondrocyte proliferation
## 4883 positive regulation of clathrin-dependent endocytosis
## 4884 positive regulation of collagen fibril organization
## 4885 positive regulation of cysteine-type endopeptidase activity
## 4886 positive regulation of cytokine-mediated signaling pathway
## 4887 positive regulation of cytoplasmic mRNA processing body assembly
## 4888 positive regulation of cytoplasmic translation
## 4889 positive regulation of dendrite extension
## 4890 positive regulation of dendritic cell antigen processing and presentation
## 4891 positive regulation of DNA demethylation
## 4892 positive regulation of DNA-templated transcription, initiation
## 4893 positive regulation of endothelial cell chemotaxis
## 4894 positive regulation of endothelial cell chemotaxis by VEGF-activated vascular endothelial growth factor receptor signaling pathway
## 4895 positive regulation of endothelial cell differentiation
## 4896 positive regulation of endothelial cell-matrix adhesion via fibronectin
## 4897 positive regulation of epidermal growth factor-activated receptor activity
## 4898 positive regulation of epithelial cell apoptotic process
## 4899 positive regulation of ER to Golgi vesicle-mediated transport
## 4900 positive regulation of establishment of protein localization to telomere
## 4901 positive regulation of extrinsic apoptotic signaling pathway in absence of ligand
## 4902 positive regulation of extrinsic apoptotic signaling pathway via death domain receptors
## 4903 positive regulation of fatty acid biosynthetic process
## 4904 positive regulation of fatty acid oxidation
## 4905 positive regulation of fibroblast growth factor receptor signaling pathway
## 4906 positive regulation of glucokinase activity
## 4907 positive regulation of glycogen biosynthetic process
## 4908 positive regulation of granulocyte differentiation
## 4909 positive regulation of granulocyte macrophage colony-stimulating factor production
## 4910 positive regulation of heart rate
## 4911 positive regulation of helicase activity
## 4912 positive regulation of hepatocyte proliferation
## 4913 positive regulation of histone H3-K27 methylation
## 4914 positive regulation of histone methylation
## 4915 positive regulation of inclusion body assembly
## 4916 positive regulation of insulin-like growth factor receptor signaling pathway
## 4917 positive regulation of integrin activation
## 4918 positive regulation of integrin-mediated signaling pathway
## 4919 positive regulation of interferon-gamma-mediated signaling pathway
## 4920 positive regulation of intracellular estrogen receptor signaling pathway
## 4921 positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## 4922 positive regulation of lamellipodium morphogenesis
## 4923 positive regulation of leukocyte cell-cell adhesion
## 4924 positive regulation of leukocyte chemotaxis
## 4925 positive regulation of leukocyte migration
## 4926 positive regulation of leukocyte tethering or rolling
## 4927 positive regulation of lipophagy
## 4928 positive regulation of lipopolysaccharide-mediated signaling pathway
## 4929 positive regulation of lipoprotein lipase activity
## 4930 positive regulation of macrophage activation
## 4931 positive regulation of macrophage differentiation
## 4932 positive regulation of macrophage proliferation
## 4933 positive regulation of maintenance of mitotic sister chromatid cohesion
## 4934 positive regulation of melanin biosynthetic process
## 4935 positive regulation of MHC class II biosynthetic process
## 4936 positive regulation of microglial cell activation
## 4937 positive regulation of mitochondrial depolarization
## 4938 positive regulation of mitochondrial fusion
## 4939 positive regulation of mononuclear cell migration
## 4940 positive regulation of mRNA binding
## 4941 positive regulation of mRNA polyadenylation
## 4942 positive regulation of NAD(P)H oxidase activity
## 4943 positive regulation of natural killer cell degranulation
## 4944 positive regulation of necrotic cell death
## 4945 positive regulation of neuron maturation
## 4946 positive regulation of neurotransmitter secretion
## 4947 positive regulation of neutrophil extravasation
## 4948 positive regulation of NK T cell differentiation
## 4949 positive regulation of non-motile cilium assembly
## 4950 positive regulation of oligodendrocyte differentiation
## 4951 positive regulation of osteoblast proliferation
## 4952 positive regulation of osteoclast development
## 4953 positive regulation of peptidyl-lysine acetylation
## 4954 positive regulation of phospholipase activity
## 4955 positive regulation of phospholipid transport
## 4956 positive regulation of positive chemotaxis
## 4957 positive regulation of potassium ion transport
## 4958 positive regulation of programmed cell death
## 4959 positive regulation of protein kinase A signaling
## 4960 positive regulation of protein monoubiquitination
## 4961 positive regulation of protein processing
## 4962 positive regulation of protein transport
## 4963 positive regulation of receptor catabolic process
## 4964 positive regulation of respiratory burst
## 4965 positive regulation of response to cytokine stimulus
## 4966 positive regulation of RNA export from nucleus
## 4967 positive regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## 4968 positive regulation of sequestering of triglyceride
## 4969 positive regulation of signal transduction
## 4970 positive regulation of signaling receptor activity
## 4971 positive regulation of smooth muscle cell apoptotic process
## 4972 positive regulation of smooth muscle contraction
## 4973 positive regulation of snRNA transcription by RNA polymerase II
## 4974 positive regulation of synapse maturation
## 4975 positive regulation of synaptic plasticity
## 4976 positive regulation of synaptic transmission
## 4977 positive regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## 4978 positive regulation of T cell mediated immune response to tumor cell
## 4979 positive regulation of T-helper 1 type immune response
## 4980 positive regulation of T-helper 2 cell cytokine production
## 4981 positive regulation of telomere maintenance via telomere lengthening
## 4982 positive regulation of toll-like receptor 7 signaling pathway
## 4983 positive regulation of transcription factor catabolic process
## 4984 positive regulation of transcription from RNA polymerase II promoter in response to hypoxia
## 4985 positive regulation of transcription from RNA polymerase II promoter in response to stress
## 4986 positive regulation of transcription from RNA polymerase II promoter involved in cellular response to chemical stimulus
## 4987 positive regulation of transcription from RNA polymerase II promoter involved in unfolded protein response
## 4988 positive regulation of translation in response to endoplasmic reticulum stress
## 4989 positive regulation of translational elongation
## 4990 positive regulation of translational termination
## 4991 positive regulation of triglyceride catabolic process
## 4992 positive regulation of trophoblast cell migration
## 4993 positive regulation of type 2 immune response
## 4994 positive regulation of vascular associated smooth muscle cell apoptotic process
## 4995 positive regulation of vasculogenesis
## 4996 positive regulation of viral life cycle
## 4997 positive regulation of viral release from host cell
## 4998 positive regulation of Wnt signaling pathway, planar cell polarity pathway
## 4999 post-chaperonin tubulin folding pathway
## 5000 postsynaptic neurotransmitter receptor internalization
## 5001 potassium ion homeostasis
## 5002 potassium ion leak channel activity
## 5003 potassium:chloride symporter activity
## 5004 potassium:proton antiporter activity
## 5005 pre-miRNA binding
## 5006 prefoldin complex
## 5007 prenylated protein catabolic process
## 5008 prepulse inhibition
## 5009 preribosome
## 5010 presynaptic active zone cytoplasmic component
## 5011 programmed necrotic cell death
## 5012 proteasome-activating ATPase activity
## 5013 protection from non-homologous end joining at telomere
## 5014 protein C-linked glycosylation via 2'-alpha-mannosyl-L-tryptophan
## 5015 protein exit from endoplasmic reticulum
## 5016 protein folding in endoplasmic reticulum
## 5017 protein homotrimerization
## 5018 protein hydroxylation
## 5019 protein import into peroxisome matrix, docking
## 5020 protein import into peroxisome matrix, translocation
## 5021 protein insertion into ER membrane by stop-transfer membrane-anchor sequence
## 5022 protein insertion into mitochondrial inner membrane from matrix
## 5023 protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## 5024 protein insertion into mitochondrial outer membrane
## 5025 protein K11-linked deubiquitination
## 5026 protein K27-linked ubiquitination
## 5027 protein K29-linked ubiquitination
## 5028 protein K69-linked ufmylation
## 5029 protein kinase A catalytic subunit binding
## 5030 protein kinase C inhibitor activity
## 5031 protein localization to adherens junction
## 5032 protein localization to ciliary membrane
## 5033 protein localization to endosome
## 5034 protein localization to lysosome
## 5035 protein localization to microtubule
## 5036 protein localization to mitochondrion
## 5037 protein localization to nuclear envelope
## 5038 protein N-acetylglucosaminyltransferase activity
## 5039 protein prenylation
## 5040 protein retention in ER lumen
## 5041 protein serine/threonine kinase inhibitor activity
## 5042 protein transmembrane transport
## 5043 protein urmylation
## 5044 protein-arginine omega-N monomethyltransferase activity
## 5045 protein-arginine omega-N symmetric methyltransferase activity
## 5046 protein-cysteine S-stearoyltransferase activity
## 5047 proteoglycan metabolic process
## 5048 proton-exporting ATPase activity, phosphorylative mechanism
## 5049 proton-transporting ATP synthase complex, catalytic core F(1)
## 5050 proton-transporting two-sector ATPase complex
## 5051 proton-transporting V-type ATPase, V1 domain
## 5052 protoporphyrinogen IX biosynthetic process
## 5053 pulmonary valve morphogenesis
## 5054 pyridine nucleotide biosynthetic process
## 5055 pyrimidine nucleobase metabolic process
## 5056 pyrimidine nucleotide biosynthetic process
## 5057 pyrimidine nucleotide-sugar transmembrane transport
## 5058 pyrimidine nucleotide-sugar transmembrane transporter activity
## 5059 pyrroline-5-carboxylate reductase activity
## 5060 pyruvate dehydrogenase (acetyl-transferring) kinase activity
## 5061 R-loop disassembly
## 5062 RAVE complex
## 5063 receptor-mediated endocytosis of virus by host cell
## 5064 recognition of apoptotic cell
## 5065 regulation of Arp2/3 complex-mediated actin nucleation
## 5066 regulation of axon extension
## 5067 regulation of axon regeneration
## 5068 regulation of axonogenesis
## 5069 regulation of bicellular tight junction assembly
## 5070 regulation of bile acid secretion
## 5071 regulation of binding
## 5072 regulation of blood vessel endothelial cell migration
## 5073 regulation of bone mineralization
## 5074 regulation of bone resorption
## 5075 regulation of cardiac muscle cell action potential involved in regulation of contraction
## 5076 regulation of cardiac muscle cell membrane potential
## 5077 regulation of cardiac muscle contraction by regulation of the release of sequestered calcium ion
## 5078 regulation of cartilage development
## 5079 regulation of cell cycle G2/M phase transition
## 5080 regulation of cell junction assembly
## 5081 regulation of cellular ketone metabolic process
## 5082 regulation of cellular metabolic process
## 5083 regulation of cholesterol efflux
## 5084 regulation of cohesin loading
## 5085 regulation of cytochrome-c oxidase activity
## 5086 regulation of defense response to virus
## 5087 regulation of dendritic spine development
## 5088 regulation of dephosphorylation
## 5089 regulation of DNA recombination
## 5090 regulation of DNA-dependent DNA replication initiation
## 5091 regulation of dopamine secretion
## 5092 regulation of double-strand break repair
## 5093 regulation of double-strand break repair via nonhomologous end joining
## 5094 regulation of epithelial cell differentiation
## 5095 regulation of epithelial cell migration
## 5096 regulation of epithelial to mesenchymal transition
## 5097 regulation of feeding behavior
## 5098 regulation of filopodium assembly
## 5099 regulation of gastrulation
## 5100 regulation of genetic imprinting
## 5101 regulation of glucose import
## 5102 regulation of Golgi inheritance
## 5103 regulation of hair cycle
## 5104 regulation of hippo signaling
## 5105 regulation of histone modification
## 5106 regulation of insulin-like growth factor receptor signaling pathway
## 5107 regulation of isotype switching to IgG isotypes
## 5108 regulation of keratinocyte differentiation
## 5109 regulation of leukocyte migration
## 5110 regulation of lipid kinase activity
## 5111 regulation of lysosomal lumen pH
## 5112 regulation of lysosome organization
## 5113 regulation of macrophage activation
## 5114 regulation of mammary gland epithelial cell proliferation
## 5115 regulation of MAP kinase activity
## 5116 regulation of membrane repolarization
## 5117 regulation of metaphase plate congression
## 5118 regulation of microtubule motor activity
## 5119 regulation of microtubule polymerization
## 5120 regulation of microtubule-based process
## 5121 regulation of microvillus assembly
## 5122 regulation of mitochondrial depolarization
## 5123 regulation of mitochondrial membrane permeability
## 5124 regulation of mitochondrial translation
## 5125 regulation of mitotic cell cycle spindle assembly checkpoint
## 5126 regulation of muscle cell differentiation
## 5127 regulation of neural precursor cell proliferation
## 5128 regulation of neuronal synaptic plasticity
## 5129 regulation of NMDA receptor activity
## 5130 regulation of nuclear cell cycle DNA replication
## 5131 regulation of nucleocytoplasmic transport
## 5132 regulation of nucleotide-binding oligomerization domain containing signaling pathway
## 5133 regulation of oxidative phosphorylation
## 5134 regulation of phagocytosis
## 5135 regulation of potassium ion transmembrane transport
## 5136 regulation of protein ADP-ribosylation
## 5137 regulation of protein processing
## 5138 regulation of protein targeting to mitochondrion
## 5139 regulation of reactive oxygen species biosynthetic process
## 5140 regulation of receptor signaling pathway via JAK-STAT
## 5141 regulation of removal of superoxide radicals
## 5142 regulation of respiratory gaseous exchange by nervous system process
## 5143 regulation of response to DNA damage stimulus
## 5144 regulation of ruffle assembly
## 5145 regulation of sensory perception of pain
## 5146 regulation of short-term neuronal synaptic plasticity
## 5147 regulation of skeletal muscle satellite cell proliferation
## 5148 regulation of smooth muscle contraction
## 5149 regulation of sodium ion transmembrane transport
## 5150 regulation of spontaneous synaptic transmission
## 5151 regulation of stem cell division
## 5152 regulation of stem cell proliferation
## 5153 regulation of store-operated calcium entry
## 5154 regulation of striated muscle tissue development
## 5155 regulation of substrate adhesion-dependent cell spreading
## 5156 regulation of systemic arterial blood pressure
## 5157 regulation of T-helper cell differentiation
## 5158 regulation of telomere maintenance via telomerase
## 5159 regulation of Toll signaling pathway
## 5160 regulation of translational fidelity
## 5161 regulation of tumor necrosis factor production
## 5162 regulation of type B pancreatic cell development
## 5163 regulation of ubiquitin-protein transferase activity
## 5164 regulation of vesicle size
## 5165 release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## 5166 removal of superoxide radicals
## 5167 renal absorption
## 5168 renal system process
## 5169 replication fork arrest
## 5170 replication fork reversal
## 5171 respiratory chain complex IV
## 5172 respiratory chain complex IV assembly
## 5173 response to amine
## 5174 response to antineoplastic agent
## 5175 response to cobalt ion
## 5176 response to dexamethasone
## 5177 response to folic acid
## 5178 response to hypobaric hypoxia
## 5179 response to inorganic substance
## 5180 response to intra-S DNA damage checkpoint signaling
## 5181 response to L-glutamate
## 5182 response to manganese ion
## 5183 response to organophosphorus
## 5184 response to redox state
## 5185 response to sucrose
## 5186 response to superoxide
## 5187 retina layer formation
## 5188 retinal ganglion cell axon guidance
## 5189 retinal rod cell development
## 5190 retinoic acid binding
## 5191 retromer complex binding
## 5192 riboflavin metabolic process
## 5193 ribosomal small subunit export from nucleus
## 5194 ribosomal subunit export from nucleus
## 5195 ripoptosome
## 5196 RNA 3' uridylation
## 5197 RNA adenylyltransferase activity
## 5198 RNA polymerase I general transcription initiation factor activity
## 5199 RNA polymerase II preinitiation complex assembly
## 5200 RNA polymerase II-specific DNA-binding transcription factor binding
## 5201 RNA polymerase III type 3 promoter sequence-specific DNA binding
## 5202 RNA uridylyltransferase activity
## 5203 RNA-dependent ATPase activity
## 5204 RNA-DNA hybrid ribonuclease activity
## 5205 RQC complex
## 5206 rRNA 2'-O-methylation
## 5207 ruffle assembly
## 5208 sarcoplasm
## 5209 SCF complex assembly
## 5210 Schwann cell development
## 5211 sebaceous gland development
## 5212 secondary active sulfate transmembrane transporter activity
## 5213 secondary palate development
## 5214 secretion of lysosomal enzymes
## 5215 selenium binding
## 5216 sensory perception
## 5217 sequestering of TGFbeta in extracellular matrix
## 5218 Sertoli cell development
## 5219 Sertoli cell proliferation
## 5220 short-term memory
## 5221 signal peptidase complex
## 5222 signal recognition particle binding
## 5223 signal transduction in response to DNA damage
## 5224 Sin3-type complex
## 5225 siRNA loading onto RISC involved in RNA interference
## 5226 site of polarized growth
## 5227 sleep
## 5228 SMAD protein complex
## 5229 small molecule binding
## 5230 small nucleolar ribonucleoprotein complex
## 5231 smooth muscle cell differentiation
## 5232 smooth muscle contraction
## 5233 snoRNA localization
## 5234 snRNA transcription by RNA polymerase III
## 5235 sodium ion binding
## 5236 sodium:proton antiporter activity
## 5237 somatic recombination of immunoglobulin gene segments
## 5238 somatodendritic compartment
## 5239 somite development
## 5240 sorting endosome
## 5241 spectrin
## 5242 sperm annulus
## 5243 sperm principal piece
## 5244 sphingosine biosynthetic process
## 5245 sphingosine metabolic process
## 5246 sphingosine-1-phosphate receptor activity
## 5247 spinal cord motor neuron differentiation
## 5248 spindle assembly involved in female meiosis I
## 5249 spindle assembly involved in meiosis
## 5250 spongiotrophoblast layer development
## 5251 stereocilium tip
## 5252 sterol esterase activity
## 5253 store-operated calcium entry
## 5254 strand invasion
## 5255 substrate-dependent cell migration, cell extension
## 5256 sulfatide binding
## 5257 sulfur amino acid catabolic process
## 5258 sulfurtransferase activity
## 5259 super elongation complex
## 5260 supercoiled DNA binding
## 5261 superoxide-generating NAD(P)H oxidase activity
## 5262 synaptic transmission, dopaminergic
## 5263 synaptic vesicle priming
## 5264 synaptic vesicle recycling
## 5265 synaptic vesicle uncoating
## 5266 synaptobrevin 2-SNAP-25-syntaxin-1a complex
## 5267 T cell activation involved in immune response
## 5268 T cell chemotaxis
## 5269 T cell migration
## 5270 T cell selection
## 5271 T-helper 1 cell differentiation
## 5272 tangential migration from the subventricular zone to the olfactory bulb
## 5273 TAP1 binding
## 5274 targeting of mRNA for destruction involved in RNA interference
## 5275 Tat protein binding
## 5276 telomeric D-loop disassembly
## 5277 telomeric DNA-containing double minutes formation
## 5278 temperature homeostasis
## 5279 tertiary granule
## 5280 testosterone dehydrogenase (NAD+) activity
## 5281 tetrahydrobiopterin metabolic process
## 5282 tetrahydrofolate biosynthetic process
## 5283 tetraspanin-enriched microdomain
## 5284 thiamine pyrophosphate binding
## 5285 tissue morphogenesis
## 5286 tissue remodeling
## 5287 Toll signaling pathway
## 5288 Toll-like receptor binding
## 5289 toxin transmembrane transporter activity
## 5290 trachea cartilage development
## 5291 TRAIL-activated apoptotic signaling pathway
## 5292 transaminase activity
## 5293 transcription elongation from RNA polymerase I promoter
## 5294 transcription factor TFIIA complex
## 5295 transcription factor TFIIIC complex
## 5296 transcytosis
## 5297 transferase activity, transferring pentosyl groups
## 5298 transformation of host cell by virus
## 5299 transmembrane receptor protein tyrosine kinase activator activity
## 5300 transmembrane receptor protein tyrosine phosphatase activity
## 5301 transmembrane-ephrin receptor activity
## 5302 transmitter-gated ion channel activity involved in regulation of postsynaptic membrane potential
## 5303 transsulfuration
## 5304 traversing start control point of mitotic cell cycle
## 5305 triglyceride biosynthetic process
## 5306 triglyceride catabolic process
## 5307 triglyceride homeostasis
## 5308 tRNA (cytosine-5-)-methyltransferase activity
## 5309 tRNA dihydrouridine synthase activity
## 5310 tRNA dihydrouridine synthesis
## 5311 tRNA pseudouridine synthase activity
## 5312 tRNA thio-modification
## 5313 tRNA wobble position uridine thiolation
## 5314 trophoblast giant cell differentiation
## 5315 tumor necrosis factor binding
## 5316 tumor necrosis factor receptor superfamily complex
## 5317 tumor necrosis factor-activated receptor activity
## 5318 type 5 metabotropic glutamate receptor binding
## 5319 type B pancreatic cell proliferation
## 5320 tyrosine phosphorylation of STAT protein
## 5321 U1 snRNP binding
## 5322 U2 snRNA binding
## 5323 U4 snRNA 3'-end processing
## 5324 U4/U6 snRNP
## 5325 U7 snRNA binding
## 5326 ubiquitin ligase activator activity
## 5327 ubiquitin-dependent protein catabolic process via the N-end rule pathway
## 5328 ubiquitin-like protein conjugating enzyme binding
## 5329 UDP-N-acetylgalactosamine metabolic process
## 5330 UMP salvage
## 5331 unconventional myosin complex
## 5332 uridine kinase activity
## 5333 uridine-diphosphatase activity
## 5334 uterus morphogenesis
## 5335 UTP biosynthetic process
## 5336 V(D)J recombination
## 5337 vacuolar proton-transporting V-type ATPase, V0 domain
## 5338 vacuole organization
## 5339 varicosity
## 5340 vascular endothelial growth factor receptor binding
## 5341 VCB complex
## 5342 very-long-chain 3-hydroxyacyl-CoA dehydratase activity
## 5343 very-long-chain-acyl-CoA dehydrogenase activity
## 5344 very-low-density lipoprotein particle
## 5345 very-low-density lipoprotein particle receptor activity
## 5346 vesicle tethering to Golgi
## 5347 vinculin binding
## 5348 voltage-gated chloride channel activity
## 5349 voltage-gated potassium channel activity involved in cardiac muscle cell action potential repolarization
## 5350 volume-sensitive chloride channel activity
## 5351 xenobiotic catabolic process
## 5352 xenobiotic detoxification by transmembrane export across the plasma membrane
## 5353 xenobiotic transmembrane transporter activity
## 5354 zeta DNA polymerase complex
## 5355 'de novo' AMP biosynthetic process
## 5356 'de novo' posttranslational protein folding
## 5357 'de novo' pyrimidine nucleobase biosynthetic process
## 5358 (1->3)-beta-D-glucan binding
## 5359 1-alkyl-2-acetylglycerophosphocholine esterase complex
## 5360 1-alkylglycerophosphocholine O-acetyltransferase activity
## 5361 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate biosynthetic process
## 5362 1-phosphatidylinositol 4-kinase activity
## 5363 1-phosphatidylinositol-5-phosphate 4-kinase activity
## 5364 1,4-alpha-oligoglucan phosphorylase activity
## 5365 10-formyltetrahydrofolate biosynthetic process
## 5366 2-(3-amino-3-carboxypropyl)histidine synthase activity
## 5367 3-beta-hydroxy-delta5-steroid dehydrogenase activity
## 5368 3'-5' RNA helicase activity
## 5369 3M complex
## 5370 4-galactosyl-N-acetylglucosaminide 3-alpha-L-fucosyltransferase activity
## 5371 5-phosphoribose 1-diphosphate biosynthetic process
## 5372 5.8S rRNA binding
## 5373 5'-3' exodeoxyribonuclease activity
## 5374 5'-deoxyribose-5-phosphate lyase activity
## 5375 6-phosphofructokinase activity
## 5376 6-phosphofructokinase complex
## 5377 7S RNA binding
## 5378 8-hydroxy-2'-deoxyguanosine DNA binding
## 5379 9+0 non-motile cilium
## 5380 A-type (transient outward) potassium channel activity
## 5381 abortive mitotic cell cycle
## 5382 acetate-CoA ligase activity
## 5383 acetyl-CoA binding
## 5384 acetyl-CoA C-myristoyltransferase activity
## 5385 acetyl-CoA hydrolase activity
## 5386 acetyl-CoA metabolic process
## 5387 acetylcholine receptor activity
## 5388 acetylcholine-gated cation-selective channel activity
## 5389 acetylcholine-gated channel complex
## 5390 aconitate hydratase activity
## 5391 acrosomal vesicle exocytosis
## 5392 actin filament fragmentation
## 5393 activated T cell proliferation
## 5394 activation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## 5395 activation of immune response
## 5396 activation of phospholipase D activity
## 5397 activation of protein kinase C activity
## 5398 activation of store-operated calcium channel activity
## 5399 activin receptor activity, type I
## 5400 activin receptor complex
## 5401 activin responsive factor complex
## 5402 acyl carnitine transmembrane transporter activity
## 5403 acyl carnitine transport
## 5404 acylglycerol acyl-chain remodeling
## 5405 acylglycerol catabolic process
## 5406 adenosine 5'-(hexahydrogen pentaphosphate) catabolic process
## 5407 adenosine deaminase activity
## 5408 adenosine metabolic process
## 5409 adenosine to inosine editing
## 5410 adenylate cyclase activity
## 5411 adenylate cyclase-activating dopamine receptor signaling pathway
## 5412 adenylosuccinate synthase activity
## 5413 adherens junction organization
## 5414 adiponectin binding
## 5415 adult heart development
## 5416 alanine transport
## 5417 alcohol metabolic process
## 5418 aldehyde catabolic process
## 5419 alkenylglycerophosphocholine hydrolase activity
## 5420 alkenylglycerophosphoethanolamine hydrolase activity
## 5421 allyl-alcohol dehydrogenase activity
## 5422 alpha-1,2-mannosyltransferase activity
## 5423 alpha-1,4-glucosidase activity
## 5424 alpha-1A adrenergic receptor binding
## 5425 alpha-1B adrenergic receptor binding
## 5426 alpha-beta T cell differentiation
## 5427 alpha-glucosidase activity
## 5428 alphav-beta3 integrin-HMGB1 complex
## 5429 alphav-beta3 integrin-IGF-1-IGF1R complex
## 5430 alphav-beta3 integrin-PKCalpha complex
## 5431 ameboidal-type cell migration
## 5432 amino acid import across plasma membrane
## 5433 aminoacylase activity
## 5434 ammonium transmembrane transport
## 5435 ammonium transport
## 5436 AMP-activated protein kinase activity
## 5437 amyloid-beta formation
## 5438 anchored component of postsynaptic density membrane
## 5439 anchored component of postsynaptic recycling endosome membrane
## 5440 anchored component of presynaptic active zone membrane
## 5441 angiotensin receptor binding
## 5442 ankyrin repeat binding
## 5443 anterior/posterior axis specification, embryo
## 5444 anterograde neuronal dense core vesicle transport
## 5445 antifungal humoral response
## 5446 antigen processing and presentation of endogenous peptide antigen via MHC class II
## 5447 antigen processing and presentation of exogenous peptide antigen via MHC class I
## 5448 antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-independent
## 5449 antigen processing and presentation, endogenous lipid antigen via MHC class Ib
## 5450 AnxA2-p11 complex
## 5451 aorta smooth muscle tissue morphogenesis
## 5452 aortic valve development
## 5453 apical cortex
## 5454 apoptotic chromosome condensation
## 5455 apoptotic process involved in blood vessel morphogenesis
## 5456 apoptotic process involved in development
## 5457 arachidonic acid secretion
## 5458 arginine biosynthetic process
## 5459 arginine transmembrane transport
## 5460 arginine transmembrane transporter activity
## 5461 arginine-tRNA ligase activity
## 5462 arginyl-tRNA aminoacylation
## 5463 artery development
## 5464 arylsulfatase activity
## 5465 ASAP complex
## 5466 asialoglycoprotein receptor activity
## 5467 aspartate metabolic process
## 5468 aspartate transmembrane transport
## 5469 aspartate-tRNA ligase activity
## 5470 aspartic endopeptidase activity, intramembrane cleaving
## 5471 assembly of large subunit precursor of preribosome
## 5472 ASTRA complex
## 5473 astral microtubule
## 5474 astrocyte activation involved in immune response
## 5475 asymmetric cell division
## 5476 ATF4-CREB1 transcription factor complex
## 5477 ATP synthesis coupled electron transport
## 5478 ATP transport
## 5479 ATP-binding cassette (ABC) transporter complex
## 5480 ATP-dependent polydeoxyribonucleotide 5'-hydroxyl-kinase activity
## 5481 ATPase-coupled ion transmembrane transporter activity
## 5482 ATPase-coupled peptide transmembrane transporter activity
## 5483 atrial cardiac muscle cell action potential
## 5484 atrial septum primum morphogenesis
## 5485 atrioventricular node development
## 5486 auditory receptor cell development
## 5487 auditory receptor cell morphogenesis
## 5488 autocrine signaling
## 5489 axial mesoderm development
## 5490 axis elongation involved in somitogenesis
## 5491 axo-dendritic transport
## 5492 axonal spine
## 5493 axonemal dynein complex
## 5494 axonemal dynein complex assembly
## 5495 axonemal microtubule
## 5496 B-1 B cell homeostasis
## 5497 B-1a B cell differentiation
## 5498 Barr body
## 5499 basal part of cell
## 5500 base-excision repair, AP site formation
## 5501 base-excision repair, DNA ligation
## 5502 BAT3 complex
## 5503 BAT3 complex binding
## 5504 BBSome
## 5505 Bcl-2 family protein complex
## 5506 behavioral response to cocaine
## 5507 beta-2 adrenergic receptor binding
## 5508 beta-N-acetylglucosaminylglycopeptide beta-1,4-galactosyltransferase activity
## 5509 BH3 domain binding
## 5510 bicarbonate transmembrane transporter activity
## 5511 bile acid secretion
## 5512 bis(5'-adenosyl)-hexaphosphatase activity
## 5513 bis(5'-adenosyl)-pentaphosphatase activity
## 5514 bis(5'-adenosyl)-triphosphatase activity
## 5515 blastocyst growth
## 5516 blood vessel endothelial cell migration
## 5517 BMP binding
## 5518 BMP receptor complex
## 5519 bone growth
## 5520 bone trabecula formation
## 5521 box C/D snoRNA 3'-end processing
## 5522 brahma complex
## 5523 brain-derived neurotrophic factor receptor signaling pathway
## 5524 brainstem development
## 5525 branching involved in labyrinthine layer morphogenesis
## 5526 branchiomotor neuron axon guidance
## 5527 C-4 methylsterol oxidase activity
## 5528 C-5 sterol desaturase activity
## 5529 C-C chemokine binding
## 5530 C-C chemokine receptor activity
## 5531 C-terminal protein lipidation
## 5532 C-X-C chemokine receptor activity
## 5533 C3HC4-type RING finger domain binding
## 5534 C5-methylcytidine-containing RNA binding
## 5535 CAAX-box protein processing
## 5536 cadmium ion transmembrane transport
## 5537 CAF-1 complex
## 5538 Cajal body organization
## 5539 CAK-ERCC2 complex
## 5540 calcineurin-NFAT signaling cascade
## 5541 calcium activated phosphatidylcholine scrambling
## 5542 calcium activated phosphatidylserine scrambling
## 5543 calcium ion import into sarcoplasmic reticulum
## 5544 calcium ion transmembrane transporter activity
## 5545 calcium ion transport from cytosol to endoplasmic reticulum
## 5546 calcium-dependent phospholipase A2 activity
## 5547 calcium-induced calcium release activity
## 5548 calcium-release channel activity
## 5549 calmodulin-dependent protein phosphatase activity
## 5550 CAMKK-AMPK signaling cascade
## 5551 cAMP-dependent protein kinase activity
## 5552 cAMP-dependent protein kinase inhibitor activity
## 5553 canonical Wnt signaling pathway involved in regulation of cell proliferation
## 5554 carbohydrate catabolic process
## 5555 carbohydrate derivative binding
## 5556 carbohydrate mediated signaling
## 5557 carboxylic acid transmembrane transport
## 5558 cardiac atrium morphogenesis
## 5559 cardiac muscle cell action potential involved in contraction
## 5560 cardiac muscle cell development
## 5561 cardiac muscle cell myoblast differentiation
## 5562 cardiac muscle tissue morphogenesis
## 5563 cardiac myofibril assembly
## 5564 cardiac right ventricle morphogenesis
## 5565 cardiac ventricle development
## 5566 cardiac ventricle morphogenesis
## 5567 carnitine biosynthetic process
## 5568 carnitine metabolic process
## 5569 carnitine transmembrane transport
## 5570 caspase binding
## 5571 catabolic process
## 5572 catenin complex
## 5573 CatSper complex
## 5574 CCR chemokine receptor binding
## 5575 CCR1 chemokine receptor binding
## 5576 CD4-positive, alpha-beta T cell differentiation
## 5577 CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## 5578 CD95 death-inducing signaling complex
## 5579 cell adhesion molecule production
## 5580 cell body membrane
## 5581 cell cycle G1/S phase transition
## 5582 cell dedifferentiation
## 5583 cell differentiation involved in embryonic placenta development
## 5584 cell migration involved in gastrulation
## 5585 cell tip
## 5586 cell-substrate junction
## 5587 cellular component organization
## 5588 cellular detoxification of aldehyde
## 5589 cellular hyperosmotic salinity response
## 5590 cellular potassium ion homeostasis
## 5591 cellular protein catabolic process
## 5592 cellular response to actinomycin D
## 5593 cellular response to alkaloid
## 5594 cellular response to antibiotic
## 5595 cellular response to arsenite(3-)
## 5596 cellular response to bacterial lipopeptide
## 5597 cellular response to bile acid
## 5598 cellular response to carbohydrate stimulus
## 5599 cellular response to cobalt ion
## 5600 cellular response to cocaine
## 5601 cellular response to cold
## 5602 cellular response to diacyl bacterial lipopeptide
## 5603 cellular response to dsDNA
## 5604 cellular response to epinephrine stimulus
## 5605 cellular response to fructose stimulus
## 5606 cellular response to gonadotropin stimulus
## 5607 cellular response to high density lipoprotein particle stimulus
## 5608 cellular response to interleukin-6
## 5609 cellular response to iron ion
## 5610 cellular response to iron(III) ion
## 5611 cellular response to L-glutamine
## 5612 cellular response to leptin stimulus
## 5613 cellular response to organonitrogen compound
## 5614 cellular response to oxygen-glucose deprivation
## 5615 cellular response to phosphate starvation
## 5616 cellular response to radiation
## 5617 cellular response to rapamycin
## 5618 cellular response to redox state
## 5619 cellular response to sodium arsenite
## 5620 cellular response to sorbitol
## 5621 cellular response to steroid hormone stimulus
## 5622 cellular response to thapsigargin
## 5623 cellular response to Thyroglobulin triiodothyronine
## 5624 cellular response to triacyl bacterial lipopeptide
## 5625 cellular response to UV-A
## 5626 cellular response to UV-C
## 5627 cellular response to vasopressin
## 5628 cellular response to vitamin D
## 5629 cellular sodium ion homeostasis
## 5630 cellular stress response to acid chemical
## 5631 cellular triglyceride homeostasis
## 5632 central nervous system myelin formation
## 5633 central nervous system projection neuron axonogenesis
## 5634 centriole elongation
## 5635 centrosome-templated microtubule nucleation
## 5636 ceramide cholinephosphotransferase activity
## 5637 ceramide phosphoethanolamine synthase activity
## 5638 cerebellar cortex development
## 5639 cerebral cortex cell migration
## 5640 cGMP biosynthetic process
## 5641 cGMP catabolic process
## 5642 chaperonin-containing T-complex
## 5643 chiasma assembly
## 5644 chitin binding
## 5645 chloride ion binding
## 5646 cholate-CoA ligase activity
## 5647 cholesterol biosynthetic process via desmosterol
## 5648 cholesterol biosynthetic process via lathosterol
## 5649 cholesterol catabolic process
## 5650 chondrocyte development involved in endochondral bone morphogenesis
## 5651 chondroitin sulfate binding
## 5652 chondroitin sulfate catabolic process
## 5653 chondroitin sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## 5654 chromaffin granule membrane
## 5655 chromosome, subtelomeric region
## 5656 chylomicron
## 5657 ciliary basal body organization
## 5658 ciliary body morphogenesis
## 5659 ciliary inversin compartment
## 5660 ciliary neurotrophic factor receptor binding
## 5661 ciliary pocket membrane
## 5662 cilium-dependent cell motility
## 5663 circadian regulation of translation
## 5664 cis-Golgi network membrane
## 5665 citrate transmembrane transporter activity
## 5666 clathrin-coated pit assembly
## 5667 clathrin-sculpted gamma-aminobutyric acid transport vesicle membrane
## 5668 clathrin-sculpted glutamate transport vesicle membrane
## 5669 clathrin-sculpted monoamine transport vesicle membrane
## 5670 cleavage furrow formation
## 5671 co-receptor binding
## 5672 co-translational protein modification
## 5673 cobalt ion transport
## 5674 cochlear nucleus development
## 5675 cold acclimation
## 5676 collagen binding involved in cell-matrix adhesion
## 5677 collateral sprouting
## 5678 commissural neuron axon guidance
## 5679 commitment complex
## 5680 common myeloid progenitor cell proliferation
## 5681 common-partner SMAD protein phosphorylation
## 5682 complement component C3b binding
## 5683 complement receptor mediated signaling pathway
## 5684 condensed chromosome inner kinetochore
## 5685 condensed nuclear chromosome inner kinetochore
## 5686 connective tissue development
## 5687 convergent extension involved in neural plate elongation
## 5688 convergent extension involved in organogenesis
## 5689 copper chaperone activity
## 5690 copper-dependent protein binding
## 5691 core TFIIH complex portion of holo TFIIH complex
## 5692 cornified envelope
## 5693 cornified envelope assembly
## 5694 corpus callosum development
## 5695 cortical microtubule organization
## 5696 corticospinal tract morphogenesis
## 5697 covalent chromatin modification
## 5698 cranial nerve development
## 5699 CRD-mediated mRNA stability complex
## 5700 CRD-mediated mRNA stabilization
## 5701 creatine kinase activity
## 5702 creatine metabolic process
## 5703 crossover junction endodeoxyribonuclease activity
## 5704 crotonyl-CoA hydratase activity
## 5705 CSF1-CSF1R complex
## 5706 CTPase activity
## 5707 Cul4B-RING E3 ubiquitin ligase complex
## 5708 Cul5-RING ubiquitin ligase complex
## 5709 Cul7-RING ubiquitin ligase complex
## 5710 cyanate catabolic process
## 5711 cyclic-GMP-AMP binding
## 5712 cyclin A2-CDK2 complex
## 5713 cyclin B1-CDK1 complex
## 5714 cyclin D2-CDK4 complex
## 5715 cyclin E1-CDK2 complex
## 5716 cyclin K-CDK12 complex
## 5717 cyclin K-CDK13 complex
## 5718 cyclooxygenase pathway
## 5719 cysteine-type exopeptidase activity
## 5720 cytidine-diphosphatase activity
## 5721 cytokine receptor binding
## 5722 cytolytic granule
## 5723 cytoophidium
## 5724 cytoplasmic pattern recognition receptor signaling pathway in response to virus
## 5725 cytoplasmic periphery of the nuclear pore complex
## 5726 cytoplasmic side of lysosomal membrane
## 5727 cytoplasmic side of mitochondrial outer membrane
## 5728 cytoskeleton of presynaptic active zone
## 5729 cytoskeleton-nuclear membrane anchor activity
## 5730 cytosol to endoplasmic reticulum transport
## 5731 dAMP biosynthetic process
## 5732 dCMP catabolic process
## 5733 deactivation of mitotic spindle assembly checkpoint
## 5734 definitive erythrocyte differentiation
## 5735 dehydroascorbic acid transmembrane transporter activity
## 5736 dehydroascorbic acid transport
## 5737 dendritic branch
## 5738 dendritic cell migration
## 5739 dendritic cell proliferation
## 5740 dendritic microtubule
## 5741 dendritic transport of mitochondrion
## 5742 dense core granule
## 5743 dense core granule membrane
## 5744 dense fibrillar component
## 5745 dentinogenesis
## 5746 deoxyadenosine kinase activity
## 5747 deoxyguanosine kinase activity
## 5748 deoxynucleoside kinase activity
## 5749 deoxyribonucleotide biosynthetic process
## 5750 deoxyribonucleotide catabolic process
## 5751 depyrimidination
## 5752 desensitization of G protein-coupled receptor signaling pathway by arrestin
## 5753 detection of mechanical stimulus
## 5754 detection of mechanical stimulus involved in sensory perception of pain
## 5755 detection of muscle stretch
## 5756 detection of nodal flow
## 5757 determination of liver left/right asymmetry
## 5758 detoxification of mercury ion
## 5759 development of secondary sexual characteristics
## 5760 diadenosine hexaphosphate catabolic process
## 5761 diadenosine pentaphosphate catabolic process
## 5762 diapedesis
## 5763 dichotomous subdivision of terminal units involved in salivary gland branching
## 5764 diet induced thermogenesis
## 5765 dihydrofolate metabolic process
## 5766 dihydrofolate reductase activity
## 5767 dinucleotide insertion or deletion binding
## 5768 diphosphoinositol polyphosphate metabolic process
## 5769 diphosphoinositol-polyphosphate diphosphatase activity
## 5770 disulfide oxidoreductase activity
## 5771 DNA ADP-ribosylation
## 5772 DNA clamp unloader activity
## 5773 DNA clamp unloading
## 5774 DNA deamination
## 5775 DNA double-strand break attachment to nuclear envelope
## 5776 DNA double-strand break processing involved in repair via single-strand annealing
## 5777 DNA geometric change
## 5778 DNA integration
## 5779 DNA ligase (ATP) activity
## 5780 DNA ligase activity
## 5781 DNA ligation involved in DNA repair
## 5782 DNA methylation involved in embryo development
## 5783 DNA packaging
## 5784 DNA polymerase activity
## 5785 DNA polymerase processivity factor activity
## 5786 DNA replication preinitiation complex
## 5787 DNA replication preinitiation complex assembly
## 5788 DNA secondary structure binding
## 5789 DNA topoisomerase binding
## 5790 DNA-binding transcription factor inhibitor activity
## 5791 DNA-dependent protein kinase complex
## 5792 DNA-N1-methyladenine dioxygenase activity
## 5793 dodecenoyl-CoA delta-isomerase activity
## 5794 dolichol biosynthetic process
## 5795 dolichol metabolic process
## 5796 dolichol-phosphate-mannose synthase complex
## 5797 dopachrome isomerase activity
## 5798 dopamine catabolic process
## 5799 dorsal/ventral neural tube patterning
## 5800 double-strand break repair involved in meiotic recombination
## 5801 double-strand/single-strand DNA junction binding
## 5802 double-stranded DNA 3'-5' exodeoxyribonuclease activity
## 5803 double-stranded DNA exodeoxyribonuclease activity
## 5804 double-stranded DNA helicase activity
## 5805 double-stranded methylated DNA binding
## 5806 drug metabolic process
## 5807 drug transmembrane transport
## 5808 dTMP catabolic process
## 5809 dTTP diphosphatase activity
## 5810 dUMP catabolic process
## 5811 dynein heavy chain binding
## 5812 ear development
## 5813 ear morphogenesis
## 5814 early endosome lumen
## 5815 early endosome to recycling endosome transport
## 5816 early phagosome membrane
## 5817 eiF2alpha phosphorylation in response to endoplasmic reticulum stress
## 5818 elastic fiber
## 5819 Elongator holoenzyme complex
## 5820 elongin complex
## 5821 embryonic axis specification
## 5822 embryonic eye morphogenesis
## 5823 embryonic foregut morphogenesis
## 5824 embryonic heart tube development
## 5825 embryonic heart tube morphogenesis
## 5826 embryonic liver development
## 5827 embryonic process involved in female pregnancy
## 5828 endocannabinoid signaling pathway
## 5829 endocardial cell differentiation
## 5830 endocardial cushion development
## 5831 endodeoxyribonuclease activity, producing 5'-phosphomonoesters
## 5832 endodermal cell fate commitment
## 5833 endogenous lipid antigen binding
## 5834 endomembrane system organization
## 5835 endopeptidase Clp complex
## 5836 endoplasmic reticulum chaperone complex
## 5837 endoplasmic reticulum tubular network membrane organization
## 5838 endoplasmic reticulum-Golgi intermediate compartment organization
## 5839 endopolyphosphatase activity
## 5840 endoribonuclease activity, cleaving miRNA-paired mRNA
## 5841 endosomal lumen acidification
## 5842 endosome fission
## 5843 endosome to plasma membrane transport vesicle
## 5844 endothelial cell activation
## 5845 entrainment of circadian clock
## 5846 entry of viral genome into host nucleus through nuclear pore complex via importin
## 5847 enucleate erythrocyte differentiation
## 5848 enzyme linked receptor protein signaling pathway
## 5849 eosinophil chemotaxis
## 5850 ephrin receptor activity
## 5851 epithelial cell maturation
## 5852 epithelial cell migration
## 5853 epithelial cell morphogenesis involved in placental branching
## 5854 epithelial cell proliferation
## 5855 epithelial cell-cell adhesion
## 5856 epithelial to mesenchymal transition involved in endocardial cushion formation
## 5857 epithelial tube branching involved in lung morphogenesis
## 5858 epithelium development
## 5859 epsilon DNA polymerase complex
## 5860 ER retention sequence binding
## 5861 ErbB-3 class receptor binding
## 5862 establishment of mitotic sister chromatid cohesion
## 5863 establishment of organelle localization
## 5864 establishment of protein localization to mitochondrion
## 5865 establishment of protein localization to telomere
## 5866 establishment of protein-containing complex localization to telomere
## 5867 establishment of RNA localization to telomere
## 5868 establishment of Sertoli cell barrier
## 5869 ethanol catabolic process
## 5870 ethanolamine kinase activity
## 5871 ethanolaminephosphotransferase activity
## 5872 excitatory synapse
## 5873 excitatory synapse assembly
## 5874 exocrine pancreas development
## 5875 exocytic insertion of neurotransmitter receptor to postsynaptic membrane
## 5876 exogenous lipid antigen binding
## 5877 exopolyphosphatase activity
## 5878 exoribonuclease activity
## 5879 exploration behavior
## 5880 extension of a leading process involved in cell motility in cerebral cortex radial glia guided migration
## 5881 external genitalia morphogenesis
## 5882 external side of apical plasma membrane
## 5883 extracellular matrix constituent secretion
## 5884 extracellular matrix structural constituent conferring tensile strength
## 5885 extracellular negative regulation of signal transduction
## 5886 extrinsic component of external side of plasma membrane
## 5887 extrinsic component of postsynaptic density membrane
## 5888 extrinsic component of postsynaptic membrane
## 5889 eye photoreceptor cell differentiation
## 5890 eyelid development in camera-type eye
## 5891 FACT complex
## 5892 fat pad development
## 5893 fatty acid amide hydrolase activity
## 5894 fatty acid elongase complex
## 5895 FBXO family protein binding
## 5896 feeding behavior
## 5897 ferredoxin metabolic process
## 5898 FFAT motif binding
## 5899 FHF complex
## 5900 fibroblast growth factor receptor binding
## 5901 fibroblast growth factor-activated receptor activity
## 5902 flavin-linked sulfhydryl oxidase activity
## 5903 floor plate development
## 5904 floppase activity
## 5905 flotillin complex
## 5906 folate import across plasma membrane
## 5907 folic acid transmembrane transporter activity
## 5908 folic acid-containing compound metabolic process
## 5909 follicle-stimulating hormone receptor binding
## 5910 follicle-stimulating hormone signaling pathway
## 5911 follicular B cell differentiation
## 5912 forebrain astrocyte development
## 5913 forebrain radial glial cell differentiation
## 5914 forelimb morphogenesis
## 5915 forked DNA-dependent helicase activity
## 5916 formate-tetrahydrofolate ligase activity
## 5917 formation of radial glial scaffolds
## 5918 free ubiquitin chain polymerization
## 5919 fructosamine metabolic process
## 5920 fructose biosynthetic process
## 5921 fructose-6-phosphate binding
## 5922 fructose-bisphosphate aldolase activity
## 5923 fusion of virus membrane with host plasma membrane
## 5924 G protein-coupled acetylcholine receptor signaling pathway
## 5925 G protein-coupled adenosine receptor activity
## 5926 G protein-coupled purinergic nucleotide receptor activity
## 5927 G protein-coupled purinergic nucleotide receptor signaling pathway
## 5928 G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger
## 5929 G-protein beta/gamma-subunit complex
## 5930 G0 to G1 transition
## 5931 G1 to G0 transition
## 5932 galactokinase activity
## 5933 gamma DNA polymerase complex
## 5934 gamma-aminobutyric acid import
## 5935 gamma-aminobutyric acid transmembrane transporter activity
## 5936 gamma-delta T cell activation
## 5937 ganglioside biosynthetic process via lactosylceramide
## 5938 ganglioside GM1 binding
## 5939 gap junction
## 5940 GATOR1 complex
## 5941 GDP catabolic process
## 5942 GDP-dissociation inhibitor activity
## 5943 GDP-mannose biosynthetic process
## 5944 GDP-mannose metabolic process
## 5945 gene silencing
## 5946 germ cell migration
## 5947 glandular epithelial cell development
## 5948 glial cell differentiation
## 5949 glial cell migration
## 5950 glial cell proliferation
## 5951 glomerular filtration
## 5952 glomerular visceral epithelial cell development
## 5953 glomerular visceral epithelial cell migration
## 5954 glucocorticoid receptor signaling pathway
## 5955 glucose 6-phosphate:inorganic phosphate antiporter activity
## 5956 glucose import
## 5957 glucose import in response to insulin stimulus
## 5958 glutamate binding
## 5959 glutaminase activity
## 5960 glutamine catabolic process
## 5961 glyceraldehyde-3-phosphate biosynthetic process
## 5962 glyceraldehyde-3-phosphate metabolic process
## 5963 glycerol dehydrogenase [NADP+] activity
## 5964 glycerol metabolic process
## 5965 glycerol-3-phosphate dehydrogenase complex
## 5966 glycine binding
## 5967 glycine metabolic process
## 5968 glycogen binding
## 5969 glycolipid catabolic process
## 5970 glycolytic process through fructose-6-phosphate
## 5971 glycophagy
## 5972 glycoside catabolic process
## 5973 GMP biosynthetic process
## 5974 Golgi reassembly
## 5975 Golgi vesicle docking
## 5976 GPI-anchor transamidase complex
## 5977 granular component
## 5978 growth cone lamellipodium
## 5979 growth cone membrane
## 5980 growth factor receptor binding
## 5981 growth plate cartilage chondrocyte differentiation
## 5982 guanylate cyclase activity
## 5983 guanylate cyclase complex, soluble
## 5984 hair cell differentiation
## 5985 hair follicle maturation
## 5986 haptoglobin binding
## 5987 haptoglobin-hemoglobin complex
## 5988 heart process
## 5989 heart trabecula formation
## 5990 heart trabecula morphogenesis
## 5991 heme oxidation
## 5992 heme oxygenase (decyclizing) activity
## 5993 heme transmembrane transporter activity
## 5994 heme transport
## 5995 hemidesmosome
## 5996 hemoglobin biosynthetic process
## 5997 heparan sulfate proteoglycan binding
## 5998 heparan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## 5999 heparan sulfate proteoglycan catabolic process
## 6000 hepatocyte growth factor receptor signaling pathway
## 6001 heterochromatin assembly by small RNA
## 6002 heterocyclic compound binding
## 6003 hexose metabolic process
## 6004 high-density lipoprotein particle
## 6005 histidine biosynthetic process
## 6006 histone arginine methylation
## 6007 histone demethylase activity (H3-K27 specific)
## 6008 histone dephosphorylation
## 6009 histone H3-K27 demethylation
## 6010 histone H3-K27 trimethylation
## 6011 histone H3-K36 dimethylation
## 6012 histone H3-K36 trimethylation
## 6013 histone H3-K4 dimethylation
## 6014 histone H3-K9 acetylation
## 6015 histone H3-K9 deacetylation
## 6016 histone H3-K9 modification
## 6017 histone H3-K9 trimethylation
## 6018 histone H3-S10 phosphorylation
## 6019 histone H3-S28 phosphorylation
## 6020 histone H3-T11 phosphorylation
## 6021 histone H4-K20 methylation
## 6022 histone H4-K20 trimethylation
## 6023 histone kinase activity (H3-T11 specific)
## 6024 histone methyltransferase activity (H4-K20 specific)
## 6025 histone methyltransferase activity (H4-R3 specific)
## 6026 histone succinylation
## 6027 histone-arginine N-methyltransferase activity
## 6028 histone-serine phosphorylation
## 6029 HLH domain binding
## 6030 Holliday junction resolvase complex
## 6031 homeostatic process
## 6032 homotypic cell-cell adhesion
## 6033 hormone secretion
## 6034 Hrd1p ubiquitin ligase complex
## 6035 humoral immune response mediated by circulating immunoglobulin
## 6036 hyaluronan catabolic process
## 6037 hydrogen peroxide biosynthetic process
## 6038 hydroxyacylglutathione hydrolase activity
## 6039 hypoxia-inducible factor-1alpha signaling pathway
## 6040 icosanoid metabolic process
## 6041 IgM binding
## 6042 IkappaB kinase activity
## 6043 immature B cell differentiation
## 6044 immune response-inhibiting cell surface receptor signaling pathway
## 6045 immune system development
## 6046 IMP dehydrogenase activity
## 6047 induction by virus of host autophagy
## 6048 inhibitory postsynaptic potential
## 6049 inhibitory synapse
## 6050 inner acrosomal membrane
## 6051 inner ear receptor cell development
## 6052 inner mitochondrial membrane protein complex
## 6053 innervation
## 6054 inositol biosynthetic process
## 6055 inositol diphosphate pentakisphosphate diphosphatase activity
## 6056 inositol diphosphate tetrakisphosphate diphosphatase activity
## 6057 inositol hexakisphosphate binding
## 6058 inositol monophosphate 1-phosphatase activity
## 6059 inositol monophosphate 3-phosphatase activity
## 6060 inositol monophosphate 4-phosphatase activity
## 6061 inositol monophosphate phosphatase activity
## 6062 inositol phosphate biosynthetic process
## 6063 inositol phosphate phosphatase activity
## 6064 inositol phosphate-mediated signaling
## 6065 inositol trisphosphate biosynthetic process
## 6066 insulin binding
## 6067 integral component of autophagosome membrane
## 6068 integral component of endosome membrane
## 6069 integral component of synaptic membrane
## 6070 integrin alpha1-beta1 complex
## 6071 integrin alphav-beta3 complex
## 6072 interaction with symbiont
## 6073 intercellular canaliculus
## 6074 interleukin-1 binding
## 6075 interleukin-1 receptor activity
## 6076 interleukin-10-mediated signaling pathway
## 6077 interleukin-11 binding
## 6078 interleukin-11 receptor activity
## 6079 interleukin-11-mediated signaling pathway
## 6080 interleukin-12 receptor binding
## 6081 interleukin-18 binding
## 6082 interleukin-2 receptor binding
## 6083 interleukin-2-mediated signaling pathway
## 6084 interleukin-27 receptor activity
## 6085 intermediate filament binding
## 6086 internal protein amino acid acetylation
## 6087 intestinal epithelial cell maturation
## 6088 intracellular ferritin complex
## 6089 intracellular steroid hormone receptor signaling pathway
## 6090 intracellular sterol transport
## 6091 intramolecular oxidoreductase activity, transposing C=C bonds
## 6092 intramolecular transferase activity
## 6093 intrinsic component of mitochondrial outer membrane
## 6094 ion channel inhibitor activity
## 6095 IRE1-TRAF2-ASK1 complex
## 6096 iron import into cell
## 6097 iron ion transmembrane transporter activity
## 6098 iron-responsive element binding
## 6099 isocitrate dehydrogenase (NAD+) activity
## 6100 isoleucine-tRNA ligase activity
## 6101 isoleucyl-tRNA aminoacylation
## 6102 JUN kinase kinase activity
## 6103 K6-linked polyubiquitin modification-dependent protein binding
## 6104 keratinocyte migration
## 6105 keratinocyte proliferation
## 6106 ketone body biosynthetic process
## 6107 kinase activator activity
## 6108 Ku70:Ku80 complex
## 6109 L-aspartate transmembrane transporter activity
## 6110 L-histidine transmembrane transporter activity
## 6111 L-lysine catabolic process to acetyl-CoA via saccharopine
## 6112 L-lysine transmembrane transporter activity
## 6113 L-serine metabolic process
## 6114 L-serine transmembrane transporter activity
## 6115 L-serine transport
## 6116 L27 domain binding
## 6117 lactate biosynthetic process
## 6118 lagging strand elongation
## 6119 laminin complex
## 6120 late endosome to Golgi transport
## 6121 late nucleophagy
## 6122 late viral transcription
## 6123 lateral ventricle development
## 6124 LBD domain binding
## 6125 lead ion binding
## 6126 leading edge membrane
## 6127 leading strand elongation
## 6128 left/right axis specification
## 6129 lens fiber cell development
## 6130 lens fiber cell morphogenesis
## 6131 lens induction in camera-type eye
## 6132 lens morphogenesis in camera-type eye
## 6133 leucine binding
## 6134 leukocyte apoptotic process
## 6135 leukocyte differentiation
## 6136 leukocyte homeostasis
## 6137 leukocyte migration involved in immune response
## 6138 Lewy body
## 6139 ligand-gated calcium channel activity
## 6140 ligand-gated sodium channel activity
## 6141 lipid localization
## 6142 lipid modification
## 6143 lipid transport across blood-brain barrier
## 6144 lipopolysaccharide receptor complex
## 6145 lipoteichoic acid binding
## 6146 lipoxygenase pathway
## 6147 long-chain fatty acid import across plasma membrane
## 6148 long-chain fatty acid import into peroxisome
## 6149 long-chain fatty acid transport
## 6150 long-chain fatty-acyl-CoA metabolic process
## 6151 long-chain-acyl-CoA dehydrogenase activity
## 6152 long-chain-enoyl-CoA hydratase activity
## 6153 lung epithelial cell differentiation
## 6154 lung epithelium development
## 6155 lung saccule development
## 6156 lymphangiogenesis
## 6157 lymphatic endothelial cell differentiation
## 6158 lymphocyte activation
## 6159 lymphocyte migration into lymph node
## 6160 lymphoid progenitor cell differentiation
## 6161 lysine biosynthetic process via aminoadipic acid
## 6162 lysine N-acetyltransferase activity, acting on acetyl phosphate as donor
## 6163 lysine transport
## 6164 lysophosphatidic acid binding
## 6165 lysophosphatidic acid receptor activity
## 6166 lysophospholipid acyltransferase activity
## 6167 m7G(5')pppN diphosphatase activity
## 6168 macrophage chemotaxis
## 6169 macrophage derived foam cell differentiation
## 6170 maintenance of animal organ identity
## 6171 maintenance of epithelial cell apical/basal polarity
## 6172 maintenance of gastrointestinal epithelium
## 6173 maintenance of Golgi location
## 6174 maintenance of presynaptic active zone structure
## 6175 maintenance of protein location in mitochondrion
## 6176 maintenance of rDNA
## 6177 maintenance of synapse structure
## 6178 maintenance of unfolded protein involved in ERAD pathway
## 6179 malate dehydrogenase (decarboxylating) (NAD+) activity
## 6180 malate dehydrogenase (decarboxylating) (NADP+) activity
## 6181 malate transmembrane transport
## 6182 malate transmembrane transporter activity
## 6183 male mating behavior
## 6184 malic enzyme activity
## 6185 maltose alpha-glucosidase activity
## 6186 maltose metabolic process
## 6187 mammary duct terminal end bud growth
## 6188 mammary gland duct morphogenesis
## 6189 mammary gland epithelium development
## 6190 manganese ion transmembrane transport
## 6191 manganese ion transmembrane transporter activity
## 6192 mannose-ethanolamine phosphotransferase activity
## 6193 mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase activity
## 6194 MAP kinase kinase kinase kinase activity
## 6195 MAP kinase tyrosine/serine/threonine phosphatase activity
## 6196 matrix side of mitochondrial inner membrane
## 6197 mature ribosome assembly
## 6198 MCM8-MCM9 complex
## 6199 medium-chain fatty acid catabolic process
## 6200 medium-chain fatty acid transport
## 6201 medium-chain-acyl-CoA dehydrogenase activity
## 6202 meiotic cohesin complex
## 6203 meiotic mismatch repair
## 6204 meiotic nuclear membrane microtubule tethering complex
## 6205 meiotic sister chromatid cohesion
## 6206 meiotic spindle midzone assembly
## 6207 meiotic telomere clustering
## 6208 melanosome assembly
## 6209 melanosome localization
## 6210 membrane curvature sensor activity
## 6211 membrane fission
## 6212 membrane hyperpolarization
## 6213 membrane repolarization during action potential
## 6214 membrane repolarization during ventricular cardiac muscle cell action potential
## 6215 membrane to membrane docking
## 6216 membranous septum morphogenesis
## 6217 memory T cell activation
## 6218 mesendoderm development
## 6219 mesonephros development
## 6220 metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## 6221 metalloendopeptidase inhibitor activity
## 6222 methionine adenosyltransferase complex
## 6223 methionine biosynthetic process
## 6224 methionine metabolic process
## 6225 methionine-tRNA ligase activity
## 6226 methionyl-tRNA aminoacylation
## 6227 methotrexate binding
## 6228 methyl indole-3-acetate esterase activity
## 6229 methyl-branched fatty acid metabolic process
## 6230 methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione
## 6231 MHC class I protein complex
## 6232 MHC class I protein complex binding
## 6233 MHC class Ib protein complex binding
## 6234 MHC class Ib receptor activity
## 6235 microglial cell migration
## 6236 microglial cell proliferation
## 6237 microtubule bundle
## 6238 microtubule cytoskeleton organization involved in mitosis
## 6239 microtubule-based peroxisome localization
## 6240 midbrain morphogenesis
## 6241 middle ear morphogenesis
## 6242 minus-end-directed organelle transport along microtubule
## 6243 mitigation of host immune response by virus
## 6244 mitochondrial DNA metabolic process
## 6245 mitochondrial DNA repair
## 6246 mitochondrial DNA replication
## 6247 mitochondrial large ribosomal subunit assembly
## 6248 mitochondrial membrane fusion
## 6249 mitochondrial permeability transition pore complex
## 6250 mitochondrial prohibitin complex
## 6251 mitochondrial protein processing
## 6252 mitochondrial proton-transporting ATP synthase complex assembly
## 6253 mitochondrial proton-transporting ATP synthase complex, catalytic sector F(1)
## 6254 mitochondrial proton-transporting ATP synthase complex, coupling factor F(o)
## 6255 mitochondrial respiratory chain complex assembly
## 6256 mitochondrial respiratory chain complex II assembly
## 6257 mitochondrial ribosome assembly
## 6258 mitochondrial ribosome binding
## 6259 mitochondrial tRNA 3'-end processing
## 6260 mitochondrial tRNA modification
## 6261 mitotic nuclear division
## 6262 mitotic recombination-dependent replication fork processing
## 6263 mitotic spindle astral microtubule
## 6264 mitotic spindle elongation
## 6265 mitral valve morphogenesis
## 6266 modification-dependent protein binding
## 6267 modulation by symbiont of host process
## 6268 Mon1-Ccz1 complex
## 6269 monoacylglycerol catabolic process
## 6270 monoamine transmembrane transporter activity
## 6271 monocyte extravasation
## 6272 monosaccharide metabolic process
## 6273 morphogenesis of a polarized epithelium
## 6274 motor behavior
## 6275 motor learning
## 6276 Mpp10 complex
## 6277 MRF binding
## 6278 mRNA alternative polyadenylation
## 6279 mRNA cap binding
## 6280 mRNA cleavage involved in gene silencing by miRNA
## 6281 mRNA transcription
## 6282 mucociliary clearance
## 6283 multicellular organismal iron ion homeostasis
## 6284 multicellular organismal reproductive process
## 6285 multicellular organismal response to stress
## 6286 multivesicular body lumen
## 6287 multivesicular body, internal vesicle
## 6288 musculoskeletal movement
## 6289 MutLbeta complex binding
## 6290 MutSalpha complex
## 6291 MutSbeta complex binding
## 6292 myelin maintenance
## 6293 myeloid dendritic cell activation involved in immune response
## 6294 myeloid dendritic cell antigen processing and presentation
## 6295 myeloid progenitor cell differentiation
## 6296 myo-inositol transmembrane transporter activity
## 6297 myo-inositol transport
## 6298 myoblast migration involved in skeletal muscle regeneration
## 6299 myotube differentiation
## 6300 N-acetylgalactosaminyl-proteoglycan 3-beta-glucuronosyltransferase activity
## 6301 N-acetylglucosamine 6-O-sulfotransferase activity
## 6302 N-acetylglucosamine biosynthetic process
## 6303 N-acetyllactosaminide beta-1,3-N-acetylglucosaminyltransferase activity
## 6304 N-acetylneuraminate catabolic process
## 6305 N-acylneuraminate cytidylyltransferase activity
## 6306 N-acylphosphatidylethanolamine-specific phospholipase D activity
## 6307 N-terminal peptidyl-glutamic acid acetylation
## 6308 N6-methyladenosine-containing RNA binding
## 6309 NAD DNA ADP-ribosyltransferase activity
## 6310 NAD-dependent histone deacetylase activity (H3-K9 specific)
## 6311 NADP catabolic process
## 6312 NADP+ binding
## 6313 NADPH-hemoprotein reductase activity
## 6314 nascent polypeptide-associated complex
## 6315 necroptotic signaling pathway
## 6316 NEDD8-specific protease activity
## 6317 negative cofactor 2 complex
## 6318 negative regulation by host of viral process
## 6319 negative regulation by symbiont of host apoptotic process
## 6320 negative regulation by virus of viral protein levels in host cell
## 6321 negative regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## 6322 negative regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## 6323 negative regulation of activin receptor signaling pathway
## 6324 negative regulation of acute inflammatory response
## 6325 negative regulation of adaptive immune memory response
## 6326 negative regulation of adiponectin secretion
## 6327 negative regulation of adipose tissue development
## 6328 negative regulation of alkaline phosphatase activity
## 6329 negative regulation of alpha-beta T cell activation
## 6330 negative regulation of alpha-beta T cell proliferation
## 6331 negative regulation of amyloid precursor protein catabolic process
## 6332 negative regulation of antigen processing and presentation of peptide antigen via MHC class II
## 6333 negative regulation of apoptotic process in bone marrow cell
## 6334 negative regulation of astrocyte activation
## 6335 negative regulation of astrocyte differentiation
## 6336 negative regulation of ATP metabolic process
## 6337 negative regulation of B cell apoptotic process
## 6338 negative regulation of biosynthetic process
## 6339 negative regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## 6340 negative regulation of cardiac muscle contraction
## 6341 negative regulation of cartilage development
## 6342 negative regulation of cell adhesion mediated by integrin
## 6343 negative regulation of cell cycle G1/S phase transition
## 6344 negative regulation of cell migration involved in sprouting angiogenesis
## 6345 negative regulation of cell volume
## 6346 negative regulation of cellular response to oxidative stress
## 6347 negative regulation of centriole elongation
## 6348 negative regulation of centrosome duplication
## 6349 negative regulation of chemokine (C-C motif) ligand 5 production
## 6350 negative regulation of cholesterol efflux
## 6351 negative regulation of circadian rhythm
## 6352 negative regulation of collateral sprouting
## 6353 negative regulation of CREB transcription factor activity
## 6354 negative regulation of cysteine-type endopeptidase activity
## 6355 negative regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## 6356 negative regulation of cytokine production involved in immune response
## 6357 negative regulation of cytokine-mediated signaling pathway
## 6358 negative regulation of cytoplasmic mRNA processing body assembly
## 6359 negative regulation of cytoplasmic translational elongation
## 6360 negative regulation of defense response to bacterium
## 6361 negative regulation of defense response to virus by host
## 6362 negative regulation of delayed rectifier potassium channel activity
## 6363 negative regulation of dendrite development
## 6364 negative regulation of dendrite extension
## 6365 negative regulation of dendrite morphogenesis
## 6366 negative regulation of dendritic cell apoptotic process
## 6367 negative regulation of dendritic cell differentiation
## 6368 negative regulation of DNA demethylation
## 6369 negative regulation of dopamine metabolic process
## 6370 negative regulation of epithelial cell apoptotic process
## 6371 negative regulation of ERAD pathway
## 6372 negative regulation of fatty acid beta-oxidation
## 6373 negative regulation of fatty acid oxidation
## 6374 negative regulation of fibrinolysis
## 6375 negative regulation of filopodium assembly
## 6376 negative regulation of G protein-coupled receptor signaling pathway
## 6377 negative regulation of glial cell apoptotic process
## 6378 negative regulation of glucose transmembrane transport
## 6379 negative regulation of glycogen biosynthetic process
## 6380 negative regulation of hematopoietic progenitor cell differentiation
## 6381 negative regulation of hepatocyte apoptotic process
## 6382 negative regulation of histone deacetylase activity
## 6383 negative regulation of histone deacetylation
## 6384 negative regulation of histone H3-K27 methylation
## 6385 negative regulation of histone H3-K4 methylation
## 6386 negative regulation of histone H4 acetylation
## 6387 negative regulation of histone H4-K16 acetylation
## 6388 negative regulation of histone methylation
## 6389 negative regulation of hyaluronan biosynthetic process
## 6390 negative regulation of hydrogen peroxide biosynthetic process
## 6391 negative regulation of hydrogen peroxide-induced neuron death
## 6392 negative regulation of inflammatory response to wounding
## 6393 negative regulation of interleukin-13 production
## 6394 negative regulation of interleukin-4 production
## 6395 negative regulation of interleukin-5 production
## 6396 negative regulation of JUN kinase activity
## 6397 negative regulation of lipase activity
## 6398 negative regulation of lipoprotein metabolic process
## 6399 negative regulation of long-chain fatty acid import across plasma membrane
## 6400 negative regulation of long-term synaptic potentiation
## 6401 negative regulation of low-density lipoprotein particle clearance
## 6402 negative regulation of low-density lipoprotein receptor activity
## 6403 negative regulation of lymphocyte proliferation
## 6404 negative regulation of lysosomal protein catabolic process
## 6405 negative regulation of macrophage activation
## 6406 negative regulation of macrophage cytokine production
## 6407 negative regulation of macrophage differentiation
## 6408 negative regulation of macrophage inflammatory protein 1 alpha production
## 6409 negative regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## 6410 negative regulation of mast cell degranulation
## 6411 negative regulation of MDA-5 signaling pathway
## 6412 negative regulation of melanin biosynthetic process
## 6413 negative regulation of membrane protein ectodomain proteolysis
## 6414 negative regulation of metallopeptidase activity
## 6415 negative regulation of MHC class II biosynthetic process
## 6416 negative regulation of microtubule polymerization or depolymerization
## 6417 negative regulation of mitochondrial DNA replication
## 6418 negative regulation of mitochondrial fusion
## 6419 negative regulation of mitochondrial membrane potential
## 6420 negative regulation of mitochondrion organization
## 6421 negative regulation of mitophagy
## 6422 negative regulation of mitotic metaphase/anaphase transition
## 6423 negative regulation of motor neuron apoptotic process
## 6424 negative regulation of muscle cell differentiation
## 6425 negative regulation of MyD88-independent toll-like receptor signaling pathway
## 6426 negative regulation of myofibroblast differentiation
## 6427 negative regulation of myotube differentiation
## 6428 negative regulation of necroptotic process
## 6429 negative regulation of neuroblast proliferation
## 6430 negative regulation of neuroinflammatory response
## 6431 negative regulation of neurotransmitter secretion
## 6432 negative regulation of nitric-oxide synthase activity
## 6433 negative regulation of NLRP3 inflammasome complex assembly
## 6434 negative regulation of non-canonical Wnt signaling pathway
## 6435 negative regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## 6436 negative regulation of nucleic acid-templated transcription
## 6437 negative regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## 6438 negative regulation of osteoblast proliferation
## 6439 negative regulation of osteoclast development
## 6440 negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## 6441 negative regulation of pancreatic juice secretion
## 6442 negative regulation of peptidyl-lysine acetylation
## 6443 negative regulation of peptidyl-tyrosine phosphorylation
## 6444 negative regulation of phosphatidylinositol 3-kinase activity
## 6445 negative regulation of pinocytosis
## 6446 negative regulation of platelet-derived growth factor receptor-beta signaling pathway
## 6447 negative regulation of post-translational protein modification
## 6448 negative regulation of potassium ion transmembrane transport
## 6449 negative regulation of protein acetylation
## 6450 negative regulation of protein K48-linked deubiquitination
## 6451 negative regulation of protein kinase C signaling
## 6452 negative regulation of protein metabolic process
## 6453 negative regulation of protein processing
## 6454 negative regulation of protein targeting to membrane
## 6455 negative regulation of protein tyrosine phosphatase activity
## 6456 negative regulation of protein-containing complex disassembly
## 6457 negative regulation of response to endoplasmic reticulum stress
## 6458 negative regulation of response to oxidative stress
## 6459 negative regulation of Rho guanyl-nucleotide exchange factor activity
## 6460 negative regulation of RNA export from nucleus
## 6461 negative regulation of satellite cell differentiation
## 6462 negative regulation of Schwann cell proliferation
## 6463 negative regulation of secretion
## 6464 negative regulation of sister chromatid cohesion
## 6465 negative regulation of skeletal muscle satellite cell proliferation
## 6466 negative regulation of small GTPase mediated signal transduction
## 6467 negative regulation of smooth muscle cell apoptotic process
## 6468 negative regulation of smooth muscle cell differentiation
## 6469 negative regulation of sodium ion transport
## 6470 negative regulation of striated muscle cell differentiation
## 6471 negative regulation of synapse assembly
## 6472 negative regulation of synaptic plasticity
## 6473 negative regulation of synaptic transmission
## 6474 negative regulation of synaptic transmission, glutamatergic
## 6475 negative regulation of synaptic vesicle exocytosis
## 6476 negative regulation of systemic arterial blood pressure
## 6477 negative regulation of T cell apoptotic process
## 6478 negative regulation of T cell costimulation
## 6479 negative regulation of T cell cytokine production
## 6480 negative regulation of T cell differentiation
## 6481 negative regulation of T cell migration
## 6482 negative regulation of t-circle formation
## 6483 negative regulation of telomere maintenance
## 6484 negative regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## 6485 negative regulation of thymocyte apoptotic process
## 6486 negative regulation of toll-like receptor 4 signaling pathway
## 6487 negative regulation of toll-like receptor 9 signaling pathway
## 6488 negative regulation of transcription by RNA polymerase I
## 6489 negative regulation of transcription by RNA polymerase III
## 6490 negative regulation of transcription from RNA polymerase II promoter in response to hypoxia
## 6491 negative regulation of transcription from RNA polymerase II promoter in response to stress
## 6492 negative regulation of transcription initiation from RNA polymerase II promoter
## 6493 negative regulation of transcription involved in G1/S transition of mitotic cell cycle
## 6494 negative regulation of transcription of nucleolar large rRNA by RNA polymerase I
## 6495 negative regulation of translation in response to stress
## 6496 negative regulation of translational initiation in response to stress
## 6497 negative regulation of transposition, RNA-mediated
## 6498 negative regulation of tubulin deacetylation
## 6499 negative regulation of type 2 immune response
## 6500 negative regulation of ubiquitin-specific protease activity
## 6501 negative regulation of vascular associated smooth muscle cell migration
## 6502 negative regulation of voltage-gated calcium channel activity
## 6503 negative regulation of wound healing
## 6504 negative regulation of wound healing, spreading of epidermal cells
## 6505 negative stranded viral RNA replication
## 6506 NELF complex
## 6507 Nem1-Spo7 phosphatase complex
## 6508 netrin receptor activity
## 6509 neural crest cell differentiation
## 6510 neural tube formation
## 6511 neural tube patterning
## 6512 neuregulin binding
## 6513 neurofilament cytoskeleton organization
## 6514 neuromuscular process controlling posture
## 6515 neuron death
## 6516 neuron maturation
## 6517 neuron projection arborization
## 6518 neuron projection guidance
## 6519 neuron remodeling
## 6520 neuron-neuron synaptic transmission
## 6521 neuronal dense core vesicle
## 6522 neuronal ion channel clustering
## 6523 neuropilin binding
## 6524 neurotransmitter metabolic process
## 6525 neurotransmitter reuptake
## 6526 neurotransmitter uptake
## 6527 neutral amino acid:sodium symporter activity
## 6528 neutrophil activation involved in immune response
## 6529 neutrophil mediated immunity
## 6530 nicotinamide nucleotide metabolic process
## 6531 nicotinate-nucleotide diphosphorylase (carboxylating) activity
## 6532 nitrate metabolic process
## 6533 nitric oxide binding
## 6534 nitric oxide mediated signal transduction
## 6535 nitric-oxide synthase complex
## 6536 nitrite reductase (NO-forming) activity
## 6537 Noc4p-Nop14p complex
## 6538 nodal signaling pathway
## 6539 node of Ranvier
## 6540 norepinephrine metabolic process
## 6541 Notch receptor processing
## 6542 Notch signaling involved in heart development
## 6543 notochord development
## 6544 nuclear cyclin-dependent protein kinase holoenzyme complex
## 6545 nuclear lumen
## 6546 nuclear matrix anchoring at nuclear membrane
## 6547 nuclear meiotic cohesin complex
## 6548 nuclear outer membrane-endoplasmic reticulum membrane network
## 6549 nuclear polyadenylation-dependent mRNA catabolic process
## 6550 nuclear pore inner ring
## 6551 nuclear pre-replicative complex
## 6552 nuclear proteasome complex
## 6553 nuclear speck organization
## 6554 nucleolar ribonuclease P complex
## 6555 nucleoside kinase activity
## 6556 nucleoside monophosphate kinase activity
## 6557 nucleoside transmembrane transport
## 6558 nucleoside transmembrane transporter activity
## 6559 nucleoside transport
## 6560 nucleoside triphosphate adenylate kinase activity
## 6561 nucleotide diphosphatase activity
## 6562 nucleotide phosphorylation
## 6563 nucleotide transport
## 6564 nucleotide-activated protein kinase complex
## 6565 nucleotide-binding oligomerization domain containing 2 signaling pathway
## 6566 nucleotide-excision repair involved in interstrand cross-link repair
## 6567 nucleus localization
## 6568 oleate transmembrane transporter activity
## 6569 oleoyl-CoA ligase activity
## 6570 olfactory lobe development
## 6571 oligopeptide transport
## 6572 oligosaccharide binding
## 6573 oligosaccharyl transferase activity
## 6574 omega peptidase activity
## 6575 opsonization
## 6576 optic nerve development
## 6577 organelle assembly
## 6578 organelle localization by membrane tethering
## 6579 organelle membrane contact site
## 6580 organic anion transport
## 6581 organic cation transmembrane transporter activity
## 6582 ornithine transport
## 6583 ossification involved in bone maturation
## 6584 osteoblast fate commitment
## 6585 osteoclast development
## 6586 osteoclast proliferation
## 6587 outer dense fiber
## 6588 oxalate transmembrane transporter activity
## 6589 oxalate transport
## 6590 oxaloacetate transmembrane transporter activity
## 6591 oxaloacetate transport
## 6592 oxaloacetate(2-) transmembrane transport
## 6593 oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor
## 6594 oxidoreductase activity, acting on a sulfur group of donors, oxygen as acceptor
## 6595 oxidoreductase activity, acting on CH-OH group of donors
## 6596 oxidoreductase activity, acting on paired donors, with oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water
## 6597 oxidoreductase activity, acting on the aldehyde or oxo group of donors, disulfide as acceptor
## 6598 oxoglutarate dehydrogenase complex
## 6599 oxygen binding
## 6600 oxygen carrier activity
## 6601 oxysterol binding
## 6602 P-TEFb complex
## 6603 p38MAPK cascade
## 6604 pantothenate metabolic process
## 6605 parallel actin filament bundle assembly
## 6606 parallel fiber to Purkinje cell synapse
## 6607 paranodal junction assembly
## 6608 paranode region of axon
## 6609 paraspeckles
## 6610 parathyroid gland development
## 6611 parturition
## 6612 pentose-phosphate shunt, non-oxidative branch
## 6613 pentose-phosphate shunt, oxidative branch
## 6614 peptide disulfide oxidoreductase activity
## 6615 peptide hormone receptor binding
## 6616 peptide transmembrane transporter activity
## 6617 peptide-methionine (R)-S-oxide reductase activity
## 6618 peptide-methionine (S)-S-oxide reductase activity
## 6619 peptide:proton symporter activity
## 6620 peptidoglycan transmembrane transporter activity
## 6621 peptidyl-arginine methylation, to asymmetrical-dimethyl arginine
## 6622 peptidyl-glutamic acid carboxylation
## 6623 peptidyl-lysine deglutarylation
## 6624 peptidyl-lysine desuccinylation
## 6625 peptidyl-lysine hydroxylation
## 6626 peptidyl-lysine methylation
## 6627 peptidyl-lysine monomethylation
## 6628 peptidyl-proline hydroxylation to 4-hydroxy-L-proline
## 6629 peptidyl-serine ADP-ribosylation
## 6630 peptidyltransferase activity
## 6631 pericardium morphogenesis
## 6632 periciliary membrane compartment
## 6633 perinucleolar compartment
## 6634 peroxisomal importomer complex
## 6635 peroxisome membrane biogenesis
## 6636 peroxisome membrane targeting sequence binding
## 6637 peroxisome proliferator activated receptor signaling pathway
## 6638 peroxisome targeting sequence binding
## 6639 pH reduction
## 6640 pharyngeal system development
## 6641 phenylalanyl-tRNA aminoacylation
## 6642 phenylpyruvate tautomerase activity
## 6643 phosphate ion transport
## 6644 phosphatidate phosphatase activity
## 6645 phosphatidic acid metabolic process
## 6646 phosphatidylcholine floppase activity
## 6647 phosphatidylcholine transfer activity
## 6648 phosphatidylcholine transporter activity
## 6649 phosphatidylethanolamine catabolic process
## 6650 phosphatidylethanolamine flippase activity
## 6651 phosphatidylinositol 3-kinase complex, class IA
## 6652 phosphatidylinositol 3-kinase regulator activity
## 6653 phosphatidylinositol 5-phosphate metabolic process
## 6654 phosphatidylinositol N-acetylglucosaminyltransferase activity
## 6655 phosphatidylinositol phosphate phosphatase activity
## 6656 phosphatidylinositol-4-phosphate phosphatase activity
## 6657 phosphatidylinositol-4,5-bisphosphate 4-phosphatase activity
## 6658 phosphodiesterase I activity
## 6659 phospholipase A2 inhibitor activity
## 6660 phospholipase C-activating dopamine receptor signaling pathway
## 6661 phospholipase inhibitor activity
## 6662 phospholipid dephosphorylation
## 6663 phospholipid efflux
## 6664 phospholipid-hydroperoxide glutathione peroxidase activity
## 6665 phosphopyruvate hydratase activity
## 6666 phosphopyruvate hydratase complex
## 6667 phosphorylase kinase complex
## 6668 phosphotransferase activity, phosphate group as acceptor
## 6669 photoreceptor cell cilium
## 6670 photoreceptor cell morphogenesis
## 6671 phylloquinone catabolic process
## 6672 plasma lipoprotein particle clearance
## 6673 plasma membrane lactate transport
## 6674 plasma membrane proton-transporting V-type ATPase complex
## 6675 plus-end-directed vesicle transport along microtubule
## 6676 PML body organization
## 6677 poly(ADP-ribose) glycohydrolase activity
## 6678 polyadenylation-dependent snoRNA 3'-end processing
## 6679 polyphosphate catabolic process
## 6680 polysome binding
## 6681 polyuridylation-dependent mRNA catabolic process
## 6682 porphyrin-containing compound biosynthetic process
## 6683 positive regulation by host of viral genome replication
## 6684 positive regulation by host of viral release from host cell
## 6685 positive regulation of acrosome reaction
## 6686 positive regulation of actin filament depolymerization
## 6687 positive regulation of actin nucleation
## 6688 positive regulation of activin receptor signaling pathway
## 6689 positive regulation of adipose tissue development
## 6690 positive regulation of AMPA glutamate receptor clustering
## 6691 positive regulation of AMPA receptor activity
## 6692 positive regulation of amyloid precursor protein catabolic process
## 6693 positive regulation of anaphase-promoting complex-dependent catabolic process
## 6694 positive regulation of androgen receptor activity
## 6695 positive regulation of ARF protein signal transduction
## 6696 positive regulation of ATP-dependent microtubule motor activity, plus-end-directed
## 6697 positive regulation of attachment of spindle microtubules to kinetochore
## 6698 positive regulation of autophagy of mitochondrion
## 6699 positive regulation of axon regeneration
## 6700 positive regulation of B cell apoptotic process
## 6701 positive regulation of base-excision repair
## 6702 positive regulation of basement membrane assembly involved in embryonic body morphogenesis
## 6703 positive regulation of bile acid biosynthetic process
## 6704 positive regulation of biomineral tissue development
## 6705 positive regulation of branching involved in ureteric bud morphogenesis
## 6706 positive regulation of brown fat cell differentiation
## 6707 positive regulation of calcium ion transport into cytosol
## 6708 positive regulation of cAMP-mediated signaling
## 6709 positive regulation of cardiac muscle cell differentiation
## 6710 positive regulation of catecholamine secretion
## 6711 positive regulation of CD4-positive, alpha-beta T cell activation
## 6712 positive regulation of CD4-positive, alpha-beta T cell differentiation
## 6713 positive regulation of CD4-positive, alpha-beta T cell proliferation
## 6714 positive regulation of CD8-positive, alpha-beta T cell differentiation
## 6715 positive regulation of cell cycle G2/M phase transition
## 6716 positive regulation of cell killing
## 6717 positive regulation of cell projection organization
## 6718 positive regulation of cell-cell adhesion
## 6719 positive regulation of cellular extravasation
## 6720 positive regulation of cellular metabolic process
## 6721 positive regulation of cellular response to insulin stimulus
## 6722 positive regulation of cholangiocyte proliferation
## 6723 positive regulation of chromosome separation
## 6724 positive regulation of chronic inflammatory response to antigenic stimulus
## 6725 positive regulation of collateral sprouting
## 6726 positive regulation of connective tissue replacement
## 6727 positive regulation of cristae formation
## 6728 positive regulation of cyclic-nucleotide phosphodiesterase activity
## 6729 positive regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## 6730 positive regulation of cytochrome-c oxidase activity
## 6731 positive regulation of cytoskeleton organization
## 6732 positive regulation of dendritic cell apoptotic process
## 6733 positive regulation of dendritic cell chemotaxis
## 6734 positive regulation of dendritic cell cytokine production
## 6735 positive regulation of dendritic cell differentiation
## 6736 positive regulation of DNA damage response, signal transduction by p53 class mediator
## 6737 positive regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## 6738 positive regulation of DNA ligation
## 6739 positive regulation of dopamine receptor signaling pathway
## 6740 positive regulation of endodeoxyribonuclease activity
## 6741 positive regulation of endoplasmic reticulum unfolded protein response
## 6742 positive regulation of eosinophil migration
## 6743 positive regulation of epithelial cell proliferation involved in wound healing
## 6744 positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## 6745 positive regulation of epithelial tube formation
## 6746 positive regulation of establishment of T cell polarity
## 6747 positive regulation of execution phase of apoptosis
## 6748 positive regulation of extracellular matrix organization
## 6749 positive regulation of fatty acid metabolic process
## 6750 positive regulation of fibroblast apoptotic process
## 6751 positive regulation of fibroblast growth factor production
## 6752 positive regulation of focal adhesion disassembly
## 6753 positive regulation of glucose mediated signaling pathway
## 6754 positive regulation of glucose transmembrane transport
## 6755 positive regulation of glutamate secretion
## 6756 positive regulation of glycoprotein metabolic process
## 6757 positive regulation of granzyme B production
## 6758 positive regulation of growth
## 6759 positive regulation of growth factor dependent skeletal muscle satellite cell proliferation
## 6760 positive regulation of growth hormone receptor signaling pathway
## 6761 positive regulation of hematopoietic stem cell proliferation
## 6762 positive regulation of hemoglobin biosynthetic process
## 6763 positive regulation of hepatic stellate cell activation
## 6764 positive regulation of high-density lipoprotein particle assembly
## 6765 positive regulation of histamine secretion by mast cell
## 6766 positive regulation of histone H2B ubiquitination
## 6767 positive regulation of histone H4 acetylation
## 6768 positive regulation of hormone biosynthetic process
## 6769 positive regulation of hormone secretion
## 6770 positive regulation of humoral immune response
## 6771 positive regulation of hydrogen peroxide-mediated programmed cell death
## 6772 positive regulation of immunoglobulin mediated immune response
## 6773 positive regulation of inositol phosphate biosynthetic process
## 6774 positive regulation of interleukin-1 alpha production
## 6775 positive regulation of interleukin-18 production
## 6776 positive regulation of interleukin-4-mediated signaling pathway
## 6777 positive regulation of interleukin-5 production
## 6778 positive regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## 6779 positive regulation of ion transmembrane transport
## 6780 positive regulation of IRE1-mediated unfolded protein response
## 6781 positive regulation of killing of cells of other organism
## 6782 positive regulation of lamellipodium organization
## 6783 positive regulation of lipase activity
## 6784 positive regulation of lipid catabolic process
## 6785 positive regulation of low-density lipoprotein receptor activity
## 6786 positive regulation of lymphocyte activation
## 6787 positive regulation of lysosomal protein catabolic process
## 6788 positive regulation of macrophage derived foam cell differentiation
## 6789 positive regulation of macrophage fusion
## 6790 positive regulation of macropinocytosis
## 6791 positive regulation of mammary gland epithelial cell proliferation
## 6792 positive regulation of mast cell chemotaxis
## 6793 positive regulation of mast cell degranulation
## 6794 positive regulation of matrix metallopeptidase secretion
## 6795 positive regulation of MDA-5 signaling pathway
## 6796 positive regulation of mesenchymal stem cell proliferation
## 6797 positive regulation of MHC class I biosynthetic process
## 6798 positive regulation of microglial cell mediated cytotoxicity
## 6799 positive regulation of microtubule binding
## 6800 positive regulation of mitochondrial ATP synthesis coupled electron transport
## 6801 positive regulation of mitochondrial membrane permeability involved in apoptotic process
## 6802 positive regulation of mitochondrial transcription
## 6803 positive regulation of mitophagy in response to mitochondrial depolarization
## 6804 positive regulation of mitotic cell cycle phase transition
## 6805 positive regulation of mucus secretion
## 6806 positive regulation of myeloid cell differentiation
## 6807 positive regulation of myoblast proliferation
## 6808 positive regulation of natural killer cell cytokine production
## 6809 positive regulation of neutrophil degranulation
## 6810 positive regulation of NK T cell proliferation
## 6811 positive regulation of NLRP3 inflammasome complex assembly
## 6812 positive regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## 6813 positive regulation of oocyte maturation
## 6814 positive regulation of organ growth
## 6815 positive regulation of organelle organization
## 6816 positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## 6817 positive regulation of peptidyl-tyrosine autophosphorylation
## 6818 positive regulation of phosphatase activity
## 6819 positive regulation of pinocytosis
## 6820 positive regulation of plasminogen activation
## 6821 positive regulation of potassium ion export across plasma membrane
## 6822 positive regulation of production of miRNAs involved in gene silencing by miRNA
## 6823 positive regulation of prostaglandin-E synthase activity
## 6824 positive regulation of protein autoubiquitination
## 6825 positive regulation of protein deacetylation
## 6826 positive regulation of protein deubiquitination
## 6827 positive regulation of protein K48-linked ubiquitination
## 6828 positive regulation of protein localization to cell cortex
## 6829 positive regulation of protein localization to centrosome
## 6830 positive regulation of protein localization to chromosome, telomeric region
## 6831 positive regulation of protein localization to cilium
## 6832 positive regulation of protein localization to endosome
## 6833 positive regulation of protein localization to membrane
## 6834 positive regulation of protein localization to nucleolus
## 6835 positive regulation of protein modification process
## 6836 positive regulation of protein neddylation
## 6837 positive regulation of protein polyubiquitination
## 6838 positive regulation of protein-containing complex disassembly
## 6839 positive regulation of receptor binding
## 6840 positive regulation of receptor clustering
## 6841 positive regulation of regulated secretory pathway
## 6842 positive regulation of renal sodium excretion
## 6843 positive regulation of retrograde protein transport, ER to cytosol
## 6844 positive regulation of ryanodine-sensitive calcium-release channel activity
## 6845 positive regulation of secretion
## 6846 positive regulation of secretory granule organization
## 6847 positive regulation of sensory perception of pain
## 6848 positive regulation of sister chromatid cohesion
## 6849 positive regulation of skeletal muscle fiber development
## 6850 positive regulation of skeletal muscle tissue development
## 6851 positive regulation of small GTPase mediated signal transduction
## 6852 positive regulation of smooth muscle cell migration
## 6853 positive regulation of sodium ion transport
## 6854 positive regulation of spindle assembly
## 6855 positive regulation of stem cell differentiation
## 6856 positive regulation of stem cell population maintenance
## 6857 positive regulation of striated muscle cell differentiation
## 6858 positive regulation of superoxide dismutase activity
## 6859 positive regulation of synaptic transmission, glutamatergic
## 6860 positive regulation of syncytium formation by plasma membrane fusion
## 6861 positive regulation of systemic arterial blood pressure
## 6862 positive regulation of T cell costimulation
## 6863 positive regulation of T cell differentiation in thymus
## 6864 positive regulation of T cell tolerance induction
## 6865 positive regulation of t-circle formation
## 6866 positive regulation of T-helper 1 cell cytokine production
## 6867 positive regulation of T-helper 2 cell differentiation
## 6868 positive regulation of telomerase catalytic core complex assembly
## 6869 positive regulation of testosterone secretion
## 6870 positive regulation of thymocyte apoptotic process
## 6871 positive regulation of toll-like receptor 2 signaling pathway
## 6872 positive regulation of toll-like receptor 8 signaling pathway
## 6873 positive regulation of toll-like receptor 9 signaling pathway
## 6874 positive regulation of TORC2 signaling
## 6875 positive regulation of transcription via serum response element binding
## 6876 positive regulation of transcytosis
## 6877 positive regulation of translational fidelity
## 6878 positive regulation of vascular wound healing
## 6879 positive regulation of voltage-gated calcium channel activity
## 6880 positive regulation of wound healing, spreading of epidermal cells
## 6881 post-embryonic camera-type eye development
## 6882 post-translational protein acetylation
## 6883 postsynapse organization
## 6884 postsynaptic endocytic zone cytoplasmic component
## 6885 postsynaptic recycling endosome
## 6886 potassium channel complex
## 6887 potassium channel inhibitor activity
## 6888 potassium ion transmembrane transporter activity
## 6889 POZ domain binding
## 6890 pre-mRNA 3'-splice site binding
## 6891 pre-snoRNP complex
## 6892 prenylcysteine catabolic process
## 6893 prenylcysteine oxidase activity
## 6894 presynapse assembly
## 6895 presynaptic active zone membrane
## 6896 presynaptic modulation of chemical synaptic transmission
## 6897 primitive erythrocyte differentiation
## 6898 primitive hemopoiesis
## 6899 primitive streak formation
## 6900 pro-B cell differentiation
## 6901 pro-T cell differentiation
## 6902 procollagen galactosyltransferase activity
## 6903 progesterone biosynthetic process
## 6904 progesterone receptor binding
## 6905 progesterone receptor signaling pathway
## 6906 prostaglandin transport
## 6907 prostate gland development
## 6908 prostate gland growth
## 6909 proteasome regulatory particle assembly
## 6910 protein antigen binding
## 6911 protein deglutarylation
## 6912 protein depropionylation
## 6913 protein deubiquitination involved in ubiquitin-dependent protein catabolic process
## 6914 protein histidine phosphatase activity
## 6915 protein import
## 6916 protein insertion into membrane
## 6917 protein insertion into mitochondrial membrane
## 6918 protein K27-linked deubiquitination
## 6919 protein K29-linked deubiquitination
## 6920 protein K33-linked deubiquitination
## 6921 protein kinase A signaling
## 6922 protein kinase C signaling
## 6923 protein kinase D signaling
## 6924 protein linear deubiquitination
## 6925 protein linear polyubiquitination
## 6926 protein localization to axon
## 6927 protein localization to basolateral plasma membrane
## 6928 protein localization to bicellular tight junction
## 6929 protein localization to cell periphery
## 6930 protein localization to cytosolic proteasome complex involved in ERAD pathway
## 6931 protein localization to endoplasmic reticulum
## 6932 protein localization to Golgi membrane
## 6933 protein localization to perinuclear region of cytoplasm
## 6934 protein localization to photoreceptor outer segment
## 6935 protein localization to synapse
## 6936 protein localization to tricellular tight junction
## 6937 protein mannosylation
## 6938 protein O-GlcNAc transferase activity
## 6939 protein O-linked fucosylation
## 6940 protein O-linked glycosylation via serine
## 6941 protein oxidation
## 6942 protein phosphatase 2B binding
## 6943 protein phosphatase 4 complex
## 6944 protein phosphorylated amino acid binding
## 6945 protein polyglutamylation
## 6946 protein prenyltransferase activity
## 6947 protein repair
## 6948 protein serine/threonine phosphatase complex
## 6949 protein serine/threonine phosphatase inhibitor activity
## 6950 protein to membrane docking
## 6951 protein-arginine omega-N asymmetric methyltransferase activity
## 6952 protein-cysteine S-myristoyltransferase activity
## 6953 protein-DNA complex assembly
## 6954 protein-DNA complex disassembly
## 6955 protein-glutaryllysine deglutarylase activity
## 6956 protein-propionyllysine depropionylase activity
## 6957 protein-ribulosamine 3-kinase activity
## 6958 protein-succinyllysine desuccinylase activity
## 6959 proton-transporting ATP synthase complex, coupling factor F(o)
## 6960 proximal/distal pattern formation
## 6961 PTB domain binding
## 6962 pulmonary artery morphogenesis
## 6963 pulmonary valve development
## 6964 purine nucleotide metabolic process
## 6965 purine ribonucleoside salvage
## 6966 purine-rich negative regulatory element binding
## 6967 purine-specific mismatch base pair DNA N-glycosylase activity
## 6968 putrescine biosynthetic process
## 6969 putrescine biosynthetic process from ornithine
## 6970 Pwp2p-containing subcomplex of 90S preribosome
## 6971 pyramidal neuron development
## 6972 pyrimidine dimer repair by nucleotide-excision repair
## 6973 pyrimidine nucleoside metabolic process
## 6974 pyrimidine nucleotide binding
## 6975 pyrimidine ribonucleotide biosynthetic process
## 6976 pyrimidine-containing compound transmembrane transport
## 6977 pyrophosphatase activity
## 6978 pyroptosis
## 6979 pyruvate dehydrogenase (NAD+) activity
## 6980 pyruvate dehydrogenase complex
## 6981 quinolinate metabolic process
## 6982 R2TP complex
## 6983 Rad51B-Rad51C-Rad51D-XRCC2 complex
## 6984 RAGE receptor binding
## 6985 Rb-E2F complex
## 6986 re-entry into mitotic cell cycle
## 6987 receptor localization to synapse
## 6988 receptor transactivation
## 6989 receptor-mediated endocytosis involved in cholesterol transport
## 6990 recombinational interstrand cross-link repair
## 6991 regulation of actin filament bundle assembly
## 6992 regulation of actin filament organization
## 6993 regulation of actin filament-based process
## 6994 regulation of AMPA receptor activity
## 6995 regulation of amyloid precursor protein biosynthetic process
## 6996 regulation of angiotensin-activated signaling pathway
## 6997 regulation of ATP biosynthetic process
## 6998 regulation of autophagosome maturation
## 6999 regulation of autophagosome size
## 7000 regulation of axon guidance
## 7001 regulation of B cell differentiation
## 7002 regulation of behavior
## 7003 regulation of bile acid biosynthetic process
## 7004 regulation of BMP signaling pathway
## 7005 regulation of bone remodeling
## 7006 regulation of branching involved in mammary gland duct morphogenesis
## 7007 regulation of branching involved in salivary gland morphogenesis
## 7008 regulation of brown fat cell differentiation
## 7009 regulation of calcium ion import
## 7010 regulation of calcium ion transmembrane transport
## 7011 regulation of calcium-mediated signaling
## 7012 regulation of cAMP-mediated signaling
## 7013 regulation of cardiac muscle cell contraction
## 7014 regulation of cardiolipin metabolic process
## 7015 regulation of CD40 signaling pathway
## 7016 regulation of cell communication by electrical coupling involved in cardiac conduction
## 7017 regulation of cell differentiation involved in embryonic placenta development
## 7018 regulation of cellular pH
## 7019 regulation of cellular protein metabolic process
## 7020 regulation of cellular response to insulin stimulus
## 7021 regulation of cellular response to oxidative stress
## 7022 regulation of centrosome cycle
## 7023 regulation of chaperone-mediated autophagy
## 7024 regulation of chemotaxis
## 7025 regulation of cholesterol esterification
## 7026 regulation of cholesterol transport
## 7027 regulation of chromatin assembly or disassembly
## 7028 regulation of chromosome condensation
## 7029 regulation of collagen fibril organization
## 7030 regulation of cytokine production involved in inflammatory response
## 7031 regulation of cytoplasmic translation
## 7032 regulation of defense response to virus by host
## 7033 regulation of delayed rectifier potassium channel activity
## 7034 regulation of dendritic cell differentiation
## 7035 regulation of developmental process
## 7036 regulation of DNA biosynthetic process
## 7037 regulation of DNA double-strand break processing
## 7038 regulation of DNA-templated transcription in response to stress
## 7039 regulation of dopamine receptor signaling pathway
## 7040 regulation of eIF2 alpha phosphorylation by heme
## 7041 regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## 7042 regulation of endothelial cell migration
## 7043 regulation of entry of bacterium into host cell
## 7044 regulation of epidermal cell differentiation
## 7045 regulation of epidermal growth factor-activated receptor activity
## 7046 regulation of epidermis development
## 7047 regulation of epithelial cell proliferation
## 7048 regulation of ER to Golgi vesicle-mediated transport
## 7049 regulation of establishment or maintenance of cell polarity
## 7050 regulation of Fc receptor mediated stimulatory signaling pathway
## 7051 regulation of fibroblast proliferation
## 7052 regulation of gastric acid secretion
## 7053 regulation of gene silencing
## 7054 regulation of germinal center formation
## 7055 regulation of gliogenesis
## 7056 regulation of glucosylceramidase activity
## 7057 regulation of growth rate
## 7058 regulation of hair follicle development
## 7059 regulation of hematopoietic progenitor cell differentiation
## 7060 regulation of high voltage-gated calcium channel activity
## 7061 regulation of histone deacetylation
## 7062 regulation of histone H4 acetylation
## 7063 regulation of histone methylation
## 7064 regulation of hormone levels
## 7065 regulation of immune system process
## 7066 regulation of interferon-gamma production
## 7067 regulation of intracellular cholesterol transport
## 7068 regulation of intracellular protein transport
## 7069 regulation of kainate selective glutamate receptor activity
## 7070 regulation of kinase activity
## 7071 regulation of leukocyte cell-cell adhesion
## 7072 regulation of lipid biosynthetic process
## 7073 regulation of long-term synaptic potentiation
## 7074 regulation of lymphocyte activation
## 7075 regulation of lymphocyte migration
## 7076 regulation of meiotic cell cycle
## 7077 regulation of membrane depolarization
## 7078 regulation of membrane lipid distribution
## 7079 regulation of membrane permeability
## 7080 regulation of microtubule depolymerization
## 7081 regulation of miRNA metabolic process
## 7082 regulation of mitochondrial membrane permeability involved in apoptotic process
## 7083 regulation of mitochondrial membrane permeability involved in programmed necrotic cell death
## 7084 regulation of mitochondrial transcription
## 7085 regulation of mitotic recombination
## 7086 regulation of natural killer cell mediated cytotoxicity
## 7087 regulation of neuroinflammatory response
## 7088 regulation of neuron projection arborization
## 7089 regulation of neurotransmitter levels
## 7090 regulation of neurotrophin TRK receptor signaling pathway
## 7091 regulation of norepinephrine secretion
## 7092 regulation of organelle assembly
## 7093 regulation of organelle transport along microtubule
## 7094 regulation of phosphatidylcholine catabolic process
## 7095 regulation of phospholipid biosynthetic process
## 7096 regulation of plasma membrane repair
## 7097 regulation of protein catabolic process at postsynapse, modulating synaptic transmission
## 7098 regulation of protein import into nucleus
## 7099 regulation of protein localization to chromatin
## 7100 regulation of protein localization to synapse
## 7101 regulation of protein serine/threonine kinase activity
## 7102 regulation of protein transport
## 7103 regulation of proton transport
## 7104 regulation of receptor recycling
## 7105 regulation of receptor-mediated endocytosis
## 7106 regulation of respiratory gaseous exchange
## 7107 regulation of resting membrane potential
## 7108 regulation of retrograde transport, endosome to Golgi
## 7109 regulation of retrograde vesicle-mediated transport, Golgi to ER
## 7110 regulation of RIG-I signaling pathway
## 7111 regulation of RNA metabolic process
## 7112 regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## 7113 regulation of ryanodine-sensitive calcium-release channel activity
## 7114 regulation of smooth muscle cell apoptotic process
## 7115 regulation of smooth muscle cell differentiation
## 7116 regulation of SREBP signaling pathway
## 7117 regulation of steroid biosynthetic process
## 7118 regulation of synapse assembly
## 7119 regulation of synapse structure or activity
## 7120 regulation of synaptic vesicle recycling
## 7121 regulation of T cell anergy
## 7122 regulation of T cell cytokine production
## 7123 regulation of T cell receptor signaling pathway
## 7124 regulation of toll-like receptor 4 signaling pathway
## 7125 regulation of toll-like receptor signaling pathway
## 7126 regulation of transcription elongation from RNA polymerase II promoter
## 7127 regulation of transcription regulatory region DNA binding
## 7128 regulation of transepithelial transport
## 7129 regulation of transforming growth factor beta activation
## 7130 regulation of transforming growth factor beta2 production
## 7131 regulation of translational termination
## 7132 regulation of tubulin deacetylation
## 7133 regulation of type III interferon production
## 7134 regulation of tyrosine phosphorylation of STAT protein
## 7135 regulation of vacuole fusion, non-autophagic
## 7136 regulation of vasoconstriction
## 7137 regulation of ventricular cardiac muscle cell action potential
## 7138 regulation of viral process
## 7139 regulation of vitamin D receptor signaling pathway
## 7140 regulation of Wnt signaling pathway, planar cell polarity pathway
## 7141 regulatory region nucleic acid binding
## 7142 regulatory region RNA binding
## 7143 relaxation of vascular associated smooth muscle
## 7144 replication fork protection complex
## 7145 replisome
## 7146 reproductive structure development
## 7147 respiratory burst after phagocytosis
## 7148 respiratory burst involved in defense response
## 7149 respiratory tube development
## 7150 response to 17alpha-ethynylestradiol
## 7151 response to acidic pH
## 7152 response to aldosterone
## 7153 response to amino acid starvation
## 7154 response to angiotensin
## 7155 response to antipsychotic drug
## 7156 response to cisplatin
## 7157 response to clozapine
## 7158 response to denervation involved in regulation of muscle adaptation
## 7159 response to dietary excess
## 7160 response to DNA damage checkpoint signaling
## 7161 response to epidermal growth factor
## 7162 response to extracellular stimulus
## 7163 response to fibroblast growth factor
## 7164 response to flavonoid
## 7165 response to fluid shear stress
## 7166 response to fluoride
## 7167 response to fungicide
## 7168 response to gravity
## 7169 response to human chorionic gonadotropin
## 7170 response to insulin-like growth factor stimulus
## 7171 response to L-ascorbic acid
## 7172 response to lithium ion
## 7173 response to methotrexate
## 7174 response to methylmercury
## 7175 response to mitochondrial depolarisation
## 7176 response to muscle stretch
## 7177 response to other organism
## 7178 response to pain
## 7179 response to prostaglandin E
## 7180 response to psychosocial stress
## 7181 response to purine-containing compound
## 7182 response to salt stress
## 7183 response to selenium ion
## 7184 response to symbiotic bacterium
## 7185 response to temperature stimulus
## 7186 response to tetrachloromethane
## 7187 response to thyroid hormone
## 7188 response to UV-B
## 7189 response to vitamin
## 7190 response to water deprivation
## 7191 response to water-immersion restraint stress
## 7192 response to yeast
## 7193 retina morphogenesis in camera-type eye
## 7194 retinal cone cell development
## 7195 retinal metabolic process
## 7196 retinoic acid-responsive element binding
## 7197 retinol dehydrogenase activity
## 7198 retinyl-palmitate esterase activity
## 7199 retrograde neuronal dense core vesicle transport
## 7200 retrograde trans-synaptic signaling by endocannabinoid
## 7201 Rho-dependent protein serine/threonine kinase activity
## 7202 rhodopsin mediated signaling pathway
## 7203 ribonuclease A activity
## 7204 ribonucleoside binding
## 7205 ribonucleoside monophosphate biosynthetic process
## 7206 ribonucleoside-diphosphate reductase activity, thioredoxin disulfide as acceptor
## 7207 ribonucleoside-diphosphate reductase complex
## 7208 ribose phosphate biosynthetic process
## 7209 ribose phosphate diphosphokinase activity
## 7210 ribose phosphate diphosphokinase complex
## 7211 ribose phosphate metabolic process
## 7212 ribosomal large subunit export from nucleus
## 7213 ribosomal protein import into nucleus
## 7214 ribosome disassembly
## 7215 ribosome-associated ubiquitin-dependent protein catabolic process
## 7216 RISC complex binding
## 7217 RNA biosynthetic process
## 7218 RNA cap binding complex
## 7219 RNA interference
## 7220 RNA localization
## 7221 RNA polymerase core enzyme binding
## 7222 RNA polymerase II C-terminal domain binding
## 7223 RNA polymerase II general transcription initiation factor binding
## 7224 RNA polymerase II intronic transcription regulatory region sequence-specific DNA binding
## 7225 RNA polymerase II transcription coactivator binding
## 7226 RNA polymerase III type 1 promoter sequence-specific DNA binding
## 7227 RNA polymerase III type 2 promoter sequence-specific DNA binding
## 7228 RNA polymerase transcription factor SL1 complex
## 7229 RNA strand annealing activity
## 7230 Roundabout binding
## 7231 rRNA (guanosine-2'-O-)-methyltransferase activity
## 7232 rRNA import into mitochondrion
## 7233 rRNA methyltransferase activity
## 7234 rRNA modification
## 7235 rRNA primary transcript binding
## 7236 RSC-type complex
## 7237 RSF complex
## 7238 RZZ complex
## 7239 S-adenosylmethionine biosynthetic process
## 7240 S-adenosylmethionine metabolic process
## 7241 SAGA-type complex
## 7242 sarcoplasmic reticulum lumen
## 7243 scaRNA localization to Cajal body
## 7244 secretion by cell
## 7245 secretory granule localization
## 7246 segment specification
## 7247 segmentation
## 7248 selenocysteine metabolic process
## 7249 self proteolysis
## 7250 semicircular canal morphogenesis
## 7251 sensory perception of touch
## 7252 serine C-palmitoyltransferase activity
## 7253 serine C-palmitoyltransferase complex
## 7254 serine phosphorylation of STAT protein
## 7255 serine-tRNA ligase activity
## 7256 serine-type carboxypeptidase activity
## 7257 serotonin uptake
## 7258 seryl-tRNA aminoacylation
## 7259 sex chromosome
## 7260 sex differentiation
## 7261 sexual reproduction
## 7262 shelterin complex
## 7263 Shu complex
## 7264 signal recognition particle
## 7265 signal recognition particle receptor complex
## 7266 signal recognition particle, endoplasmic reticulum targeting
## 7267 signal transduction involved in DNA damage checkpoint
## 7268 signal transduction involved in regulation of gene expression
## 7269 signaling receptor activator activity
## 7270 single guanine insertion binding
## 7271 single thymine insertion binding
## 7272 single-stranded 3'-5' DNA helicase activity
## 7273 single-stranded DNA 5'-3' exodeoxyribonuclease activity
## 7274 sister chromatid biorientation
## 7275 sister chromatid segregation
## 7276 site-specific endodeoxyribonuclease activity, specific for altered base
## 7277 skeletal muscle acetylcholine-gated channel clustering
## 7278 skeletal muscle satellite cell differentiation
## 7279 skeletal muscle satellite cell maintenance involved in skeletal muscle regeneration
## 7280 skeletal muscle thin filament assembly
## 7281 SMAD protein complex assembly
## 7282 small conductance calcium-activated potassium channel activity
## 7283 small-subunit processome assembly
## 7284 smooth endoplasmic reticulum membrane
## 7285 smooth muscle cell migration
## 7286 smooth muscle cell proliferation
## 7287 SNARE complex disassembly
## 7288 snRNA transcription
## 7289 snRNP binding
## 7290 sodium channel activity
## 7291 sodium-independent organic anion transport
## 7292 sodium:bicarbonate symporter activity
## 7293 soluble NSF attachment protein activity
## 7294 solute:proton symporter activity
## 7295 somatic recombination of immunoglobulin genes involved in immune response
## 7296 spectrin-associated cytoskeleton
## 7297 sperm ejaculation
## 7298 sperm mitochondrion organization
## 7299 spermatid differentiation
## 7300 spermatogonial cell division
## 7301 spermatoproteasome complex
## 7302 sphingolipid binding
## 7303 sphingolipid catabolic process
## 7304 sphingomyelin catabolic process
## 7305 sphingomyelin metabolic process
## 7306 sphingomyelin phosphodiesterase activity
## 7307 sphingomyelin synthase activity
## 7308 sphingosine N-acyltransferase activity
## 7309 spindle localization
## 7310 splicing factor binding
## 7311 spongiotrophoblast differentiation
## 7312 stem cell development
## 7313 stem cell division
## 7314 stereocilium bundle
## 7315 steroid hormone binding
## 7316 sterol response element binding
## 7317 store-operated calcium channel activity
## 7318 striatum development
## 7319 structural constituent of eye lens
## 7320 structural constituent of postsynaptic actin cytoskeleton
## 7321 succinate transmembrane transport
## 7322 succinate transmembrane transporter activity
## 7323 succinyl-CoA metabolic process
## 7324 sulfate binding
## 7325 sulfation
## 7326 sulfur compound metabolic process
## 7327 SUMO polymer binding
## 7328 SUMO-specific endopeptidase activity
## 7329 superoxide dismutase activity
## 7330 superoxide-generating NADPH oxidase activator activity
## 7331 supramolecular fiber organization
## 7332 sympathetic nervous system development
## 7333 synapse pruning
## 7334 synaptic vesicle budding from endosome
## 7335 synaptic vesicle budding from presynaptic endocytic zone membrane
## 7336 synaptic vesicle docking
## 7337 synaptic vesicle membrane organization
## 7338 synaptobrevin 2-SNAP-25-syntaxin-1a-complexin I complex
## 7339 synaptobrevin 2-SNAP-25-syntaxin-1a-complexin II complex
## 7340 T cell aggregation
## 7341 T cell antigen processing and presentation
## 7342 T cell apoptotic process
## 7343 T cell mediated cytotoxicity
## 7344 T cell proliferation involved in immune response
## 7345 T cell receptor V(D)J recombination
## 7346 T follicular helper cell differentiation
## 7347 T-helper 17 cell lineage commitment
## 7348 T-helper 17 type immune response
## 7349 T-tubule organization
## 7350 tachykinin receptor signaling pathway
## 7351 TAP complex
## 7352 TAP2 binding
## 7353 taurine transport
## 7354 telencephalon development
## 7355 telethonin binding
## 7356 telomere assembly
## 7357 telomere maintenance in response to DNA damage
## 7358 telomeric D-loop binding
## 7359 telomeric G-quadruplex DNA binding
## 7360 terminal cisterna
## 7361 testosterone dehydrogenase [NAD(P)] activity
## 7362 tetrahydrobiopterin biosynthetic process
## 7363 tetrapyrrole biosynthetic process
## 7364 TFIIB-class transcription factor binding
## 7365 TFIIF-class transcription factor complex binding
## 7366 TFIIIC-class transcription factor complex binding
## 7367 thiosulfate sulfurtransferase activity
## 7368 thiosulfate transmembrane transporter activity
## 7369 thiosulfate transport
## 7370 thrombopoietin-mediated signaling pathway
## 7371 thymic T cell selection
## 7372 thyroid hormone binding
## 7373 thyroid hormone generation
## 7374 thyroid hormone metabolic process
## 7375 thyroid hormone transport
## 7376 tight junction
## 7377 titin binding
## 7378 tolerance induction
## 7379 tolerance induction to self antigen
## 7380 toll-like receptor 7 signaling pathway
## 7381 toll-like receptor TLR1:TLR2 signaling pathway
## 7382 toll-like receptor TLR6:TLR2 signaling pathway
## 7383 TORC2 signaling
## 7384 toxic substance binding
## 7385 trachea formation
## 7386 TRAF2-GSTP1 complex
## 7387 TRAIL binding
## 7388 TRAM-dependent toll-like receptor 4 signaling pathway
## 7389 TRAMP complex
## 7390 trans-2-enoyl-CoA reductase (NADPH) activity
## 7391 trans-Golgi network membrane organization
## 7392 transcription elongation regulator activity
## 7393 transcription factor AP-1 complex
## 7394 transcription factor catabolic process
## 7395 transcription factor TFIIIB complex
## 7396 transcription initiation from mitochondrial promoter
## 7397 transcription-dependent tethering of RNA polymerase II gene DNA at nuclear periphery
## 7398 transepithelial transport
## 7399 transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer
## 7400 transferase activity, transferring alkyl or aryl (other than methyl) groups
## 7401 transforming growth factor beta receptor activity, type I
## 7402 translation reinitiation
## 7403 translation release factor activity
## 7404 transmission of nerve impulse
## 7405 TRAPPII protein complex
## 7406 TRAPPIII protein complex
## 7407 triglyceride mobilization
## 7408 trimming of terminal mannose on C branch
## 7409 tripeptidyl-peptidase activity
## 7410 tRNA (guanine-N2-)-methyltransferase activity
## 7411 tRNA 2'-phosphotransferase activity
## 7412 tRNA methyltransferase activity
## 7413 tRNA N2-guanine methylation
## 7414 tRNA stabilization
## 7415 tRNA threonylcarbamoyladenosine metabolic process
## 7416 tRNA-guanine transglycosylation
## 7417 tRNA-intron endonuclease complex
## 7418 tRNA-specific adenosine deaminase activity
## 7419 tRNA-type intron splice site recognition and cleavage
## 7420 troponin complex
## 7421 TSC1-TSC2 complex
## 7422 tubulin deacetylation
## 7423 tubulin-glutamic acid ligase activity
## 7424 type 2A serotonin receptor binding
## 7425 type 3 metabotropic glutamate receptor binding
## 7426 type I pneumocyte differentiation
## 7427 type I transforming growth factor beta receptor binding
## 7428 type II transforming growth factor beta receptor binding
## 7429 type IV hypersensitivity
## 7430 U12 snRNA binding
## 7431 U2-type prespliceosome assembly
## 7432 U2AF complex
## 7433 U4atac snRNA binding
## 7434 U4atac snRNP
## 7435 ubiquinone binding
## 7436 ubiquitin modification-dependent histone binding
## 7437 ubiquitin-independent protein catabolic process via the multivesicular body sorting pathway
## 7438 ubiquitin-like protein binding
## 7439 ubiquitin-like protein-specific protease activity
## 7440 UDP-galactose transmembrane transport
## 7441 UDP-galactose transmembrane transporter activity
## 7442 UDP-galactose:beta-N-acetylglucosamine beta-1,3-galactosyltransferase activity
## 7443 UDP-galactose:glucosylceramide beta-1,4-galactosyltransferase activity
## 7444 UDP-galactosyltransferase activity
## 7445 UDP-glucuronate biosynthetic process
## 7446 UDP-N-acetylglucosamine transmembrane transport
## 7447 UDP-N-acetylglucosamine transmembrane transporter activity
## 7448 UDP-N-acetylglucosamine-lysosomal-enzyme N-acetylglucosaminephosphotransferase activity
## 7449 UDP-sugar diphosphatase activity
## 7450 UDP-xylosyltransferase activity
## 7451 UMP catabolic process
## 7452 unidimensional cell growth
## 7453 uracil DNA N-glycosylase activity
## 7454 ureter morphogenesis
## 7455 uridylyltransferase activity
## 7456 uterus development
## 7457 vacuolar proton-transporting V-type ATPase complex assembly
## 7458 valine biosynthetic process
## 7459 valine catabolic process
## 7460 vascular associated smooth muscle cell development
## 7461 vascular associated smooth muscle contraction
## 7462 vascular endothelial growth factor production
## 7463 vascular endothelial growth factor receptor 1 binding
## 7464 vascular endothelial growth factor receptor 2 binding
## 7465 vascular endothelial growth factor-activated receptor activity
## 7466 vasoconstriction
## 7467 venous blood vessel development
## 7468 venous blood vessel morphogenesis
## 7469 ventral spinal cord development
## 7470 ventricular cardiac muscle cell differentiation
## 7471 vesicle targeting
## 7472 viral penetration into host nucleus
## 7473 viral RNA genome replication
## 7474 vitamin binding
## 7475 vitamin transmembrane transport
## 7476 voltage-gated anion channel activity
## 7477 voltage-gated calcium channel complex
## 7478 voltage-gated cation channel activity
## 7479 voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## 7480 voltage-gated sodium channel complex
## 7481 volume-sensitive anion channel activity
## 7482 Weibel-Palade body
## 7483 Wnt protein secretion
## 7484 wound healing, spreading of epidermal cells
## 7485 X chromosome
## 7486 xenobiotic transport across blood-brain barrier
## 7487 xenophagy
## 7488 xylulose biosynthetic process
## 7489 zinc ion homeostasis
## 7490 zinc ion import across plasma membrane
## 7491 zona pellucida receptor complex
## 7492 'de novo' CTP biosynthetic process
## 7493 'de novo' GDP-L-fucose biosynthetic process
## 7494 'de novo' NAD biosynthetic process
## 7495 'de novo' NAD biosynthetic process from tryptophan
## 7496 'de novo' protein folding
## 7497 'de novo' UMP biosynthetic process
## 7498 (R,R)-butanediol dehydrogenase activity
## 7499 (R)-2-hydroxyglutarate dehydrogenase activity
## 7500 [3-methyl-2-oxobutanoate dehydrogenase (acetyl-transferring)] kinase activity
## 7501 [acetyl-CoA carboxylase] kinase activity
## 7502 [acyl-carrier-protein] S-malonyltransferase activity
## 7503 [heparan sulfate]-glucosamine N-sulfotransferase activity
## 7504 [hydroxymethylglutaryl-CoA reductase (NADPH)] kinase activity
## 7505 [myelin basic protein]-arginine N-methyltransferase activity
## 7506 [protein]-3-O-(N-acetyl-D-glucosaminyl)-L-serine O-N-acetyl-alpha-D-glucosaminase activity
## 7507 [protein]-3-O-(N-acetyl-D-glucosaminyl)-L-serine/L-threonine O-N-acetyl-alpha-D-glucosaminase activity
## 7508 [protein]-3-O-(N-acetyl-D-glucosaminyl)-L-threonine O-N-acetyl-alpha-D-glucosaminase activity
## 7509 [pyruvate dehydrogenase (lipoamide)] phosphatase activity
## 7510 1-acylglycerophosphoethanolamine O-acyltransferase activity
## 7511 1-acylglycerophosphoserine O-acyltransferase activity
## 7512 1-alkenylglycerophosphocholine O-acyltransferase activity
## 7513 1-alkenylglycerophosphoethanolamine O-acyltransferase activity
## 7514 1-alkylglycerophosphocholine O-acyltransferase activity
## 7515 1-ethyladenine demethylase activity
## 7516 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate metabolic process
## 7517 1-phosphatidylinositol-3-phosphate 5-kinase activity
## 7518 1-phosphatidylinositol-5-kinase activity
## 7519 1,4-alpha-glucan branching enzyme activity
## 7520 1,4-alpha-glucan branching enzyme activity (using a glucosylated glycogenin as primer for glycogen synthesis)
## 7521 10-formyltetrahydrofolate metabolic process
## 7522 10-hydroxy-9-(phosphonooxy)octadecanoate phosphatase activity
## 7523 12-hydroxyheptadecatrienoic acid synthase activity
## 7524 15-hydroxyprostaglandin dehydrogenase (NAD+) activity
## 7525 17-beta-ketosteroid reductase activity
## 7526 18S rRNA (adenine(1779)-N(6)/adenine(1780)-N(6))-dimethyltransferase activity
## 7527 2-acylglycerol O-acyltransferase activity
## 7528 2-hydroxyacylsphingosine 1-beta-galactosyltransferase activity
## 7529 2-oxobutyrate catabolic process
## 7530 2,4-dienoyl-CoA reductase (NADPH) activity
## 7531 3 iron, 4 sulfur cluster binding
## 7532 3-beta-hydroxysteroid dehydrogenase/C4-decarboxylase activity
## 7533 3-chloroallyl aldehyde dehydrogenase activity
## 7534 3-hydroxy-2-methylbutyryl-CoA dehydrogenase activity
## 7535 3-hydroxyanthranilate 3,4-dioxygenase activity
## 7536 3-hydroxyisobutyryl-CoA hydrolase activity
## 7537 3-hydroxypropionyl-CoA dehydratase activity
## 7538 3-mercaptopyruvate sulfurtransferase activity
## 7539 3-methyl-2-oxobutanoate dehydrogenase (2-methylpropanoyl-transferring) activity
## 7540 3-methylcrotonyl-CoA carboxylase complex, mitochondrial
## 7541 3-oxo-5-alpha-steroid 4-dehydrogenase activity
## 7542 3-oxo-arachidoyl-CoA reductase activity
## 7543 3-oxo-behenoyl-CoA reductase activity
## 7544 3-oxo-cerotoyl-CoA reductase activity
## 7545 3-oxo-lignoceroyl-CoA reductase activity
## 7546 3-oxoacid CoA-transferase activity
## 7547 3-oxoacyl-[acyl-carrier-protein] reductase (NADH) activity
## 7548 3-phosphoinositide-dependent protein kinase activity
## 7549 3'-5' DNA/RNA helicase activity
## 7550 3'-flap endonuclease activity
## 7551 3'-flap-structured DNA binding
## 7552 3'-nucleotidase activity
## 7553 3'-phospho-5'-adenylyl sulfate transmembrane transport
## 7554 3'-phosphoadenosine 5'-phosphosulfate transmembrane transporter activity
## 7555 3'-tRNA processing endoribonuclease activity
## 7556 3',5'-nucleotide bisphosphate phosphatase activity
## 7557 3'(2'),5'-bisphosphate nucleotidase activity
## 7558 3alpha,7alpha,12alpha-trihydroxy-5beta-cholest-24-enoyl-CoA hydratase activity
## 7559 4-alpha-hydroxytetrahydrobiopterin dehydratase activity
## 7560 4-hydroxybenzoate decaprenyltransferase activity
## 7561 4-hydroxybenzoate nonaprenyltransferase activity
## 7562 4-hydroxybutyrate receptor activity
## 7563 4alpha-carboxy-4beta-methyl-5alpha-cholesta-8-en-3beta-ol:NAD(P)+ 3-oxidoreductase (decarboxylating) activity
## 7564 4alpha-carboxy-5alpha-cholesta-8-en-3beta-ol:NAD(P)+ 3-dehydrogenase (decarboxylating) activity
## 7565 5-amino-4-imidazole carboxylate lyase activity
## 7566 5-aminolevulinate synthase activity
## 7567 5-hydroxy-6E,8Z,11Z,14Z-icosatetraenoic acid binding
## 7568 5-methylcytosine catabolic process
## 7569 5-oxo-6E,8Z,11Z,14Z-icosatetraenoic acid binding
## 7570 5-oxoprolinase (ATP-hydrolyzing) activity
## 7571 5'-3' DNA/RNA helicase activity
## 7572 5'-3' exoribonuclease activity
## 7573 5'-3' RNA helicase activity
## 7574 5'-deoxynucleotidase activity
## 7575 5(S)-hydroxyperoxy-6E,8Z,11Z,14Z-icosatetraenoic acid binding
## 7576 5alpha-androstane-3beta,17beta-diol dehydrogenase activity
## 7577 6-phosphogluconolactonase activity
## 7578 7-methylguanosine cap hypermethylation
## 7579 7-methylguanosine RNA capping
## 7580 8-hydroxy-dADP phosphatase activity
## 7581 8-oxo-7,8-dihydrodeoxyguanosine triphosphate pyrophosphatase activity
## 7582 8-oxo-7,8-dihydroguanine DNA N-glycosylase activity
## 7583 8-oxo-7,8-dihydroguanosine triphosphate pyrophosphatase activity
## 7584 8-oxo-dGDP phosphatase activity
## 7585 8-oxo-GDP phosphatase activity
## 7586 9+2 motile cilium
## 7587 90S preribosome assembly
## 7588 A2A adenosine receptor binding
## 7589 acetate biosynthetic process
## 7590 acetate CoA-transferase activity
## 7591 acetate ester transport
## 7592 acetoacetyl-CoA hydrolase activity
## 7593 acetolactate synthase activity
## 7594 acetolactate synthase complex
## 7595 acetyl-CoA biosynthetic process from acetate
## 7596 acetyl-CoA biosynthetic process from pyruvate
## 7597 acetyl-CoA carboxylase activity
## 7598 acetyl-CoA transmembrane transporter activity
## 7599 acetyl-CoA transport
## 7600 acetyl-CoA:L-glutamate N-acetyltransferase activity
## 7601 acetylcholine receptor activator activity
## 7602 acetylcholine receptor signaling pathway
## 7603 acetylcholine transmembrane transporter activity
## 7604 acetylesterase activity
## 7605 acetylputrescine deacetylase activity
## 7606 acetylpyruvate hydrolase activity
## 7607 acetylspermidine deacetylase activity
## 7608 acid secretion
## 7609 acid-amino acid ligase activity
## 7610 acid-sensing ion channel activity
## 7611 acid-thiol ligase activity
## 7612 acrosin binding
## 7613 actin cap
## 7614 actin cortical patch localization
## 7615 actin filament branching
## 7616 actin filament bundle
## 7617 actin filament reorganization involved in cell cycle
## 7618 actin filament-based process
## 7619 actin modification
## 7620 actin rod assembly
## 7621 activating MHC class I receptor activity
## 7622 activating signal cointegrator 1 complex
## 7623 activation of blood coagulation via clotting cascade
## 7624 activation of Janus kinase activity
## 7625 activin-activated receptor activity
## 7626 actomyosin contractile ring assembly
## 7627 actomyosin contractile ring contraction
## 7628 acute inflammatory response to antigenic stimulus
## 7629 acyl binding
## 7630 acyl carrier activity
## 7631 acyl-CoA delta5-desaturase activity
## 7632 acylglycerol metabolic process
## 7633 acylglycerol O-acyltransferase activity
## 7634 acylpyruvate hydrolase activity
## 7635 adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## 7636 adaptive thermogenesis
## 7637 adenine binding
## 7638 adenine biosynthetic process
## 7639 adenine metabolic process
## 7640 adenine phosphoribosyltransferase activity
## 7641 adenine salvage
## 7642 adenine transport
## 7643 adenine/guanine mispair binding
## 7644 adenosine 5'-monophosphoramidase activity
## 7645 adenosine receptor binding
## 7646 adenosine transport
## 7647 adenosylmethionine decarboxylase activity
## 7648 adenyl deoxyribonucleotide binding
## 7649 adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## 7650 adenylate cyclase-inhibiting dopamine receptor signaling pathway
## 7651 adenylylsulfate kinase activity
## 7652 adhesion of symbiont to host
## 7653 adipokinetic hormone receptor activity
## 7654 ADP metabolic process
## 7655 ADP-D-ribose binding
## 7656 ADP-dependent NAD(P)H-hydrate dehydratase activity
## 7657 ADP-ribose diphosphatase activity
## 7658 ADP-ribosylserine hydrolase activity
## 7659 ADP-specific glucokinase activity
## 7660 adrenal cortex development
## 7661 adrenergic receptor activity
## 7662 adult behavior
## 7663 AF-2 domain binding
## 7664 aflatoxin catabolic process
## 7665 aggresome assembly
## 7666 agmatine biosynthetic process
## 7667 AIM2 inflammasome complex
## 7668 alanine transmembrane transporter activity
## 7669 alanine-tRNA ligase activity
## 7670 alanyl-tRNA aminoacylation
## 7671 alcohol binding
## 7672 alcohol dehydrogenase (NADP+) activity
## 7673 alcohol dehydrogenase [NAD(P)+] activity
## 7674 alcohol-forming fatty acyl-CoA reductase activity
## 7675 aldehyde dehydrogenase (NAD+) activity
## 7676 aldehyde dehydrogenase (NADP+) activity
## 7677 aldehyde dehydrogenase [NAD(P)+] activity
## 7678 aldo-keto reductase (NADP) activity
## 7679 aldose 1-epimerase activity
## 7680 alkaline phosphatase activity
## 7681 alkylbase DNA N-glycosylase activity
## 7682 alkylglycerone-phosphate synthase activity
## 7683 all-trans-retinol 13,14-reductase activity
## 7684 alpha-(1->6)-fucosyltransferase activity
## 7685 alpha-1,3-mannosylglycoprotein 2-beta-N-acetylglucosaminyltransferase activity
## 7686 alpha-1,3-mannosylglycoprotein 4-beta-N-acetylglucosaminyltransferase activity
## 7687 alpha-1,3-mannosyltransferase activity
## 7688 alpha-1,4-N-acetylgalactosaminyltransferase activity
## 7689 alpha-1,6-mannosylglycoprotein 6-beta-N-acetylglucosaminyltransferase activity
## 7690 alpha-1,6-mannosyltransferase activity
## 7691 alpha-2 macroglobulin receptor activity
## 7692 alpha-2A adrenergic receptor binding
## 7693 alpha-beta T cell activation
## 7694 alpha-beta T cell proliferation
## 7695 alpha-catenin binding
## 7696 alpha-galactosidase activity
## 7697 alpha-ketoacid dehydrogenase activity
## 7698 alpha-ketoglutarate transport
## 7699 alpha-L-fucosidase activity
## 7700 alpha-N-acetylgalactosaminidase activity
## 7701 alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase activity
## 7702 alpha-N-acetylglucosaminidase activity
## 7703 alpha-N-acetylneuraminate alpha-2,8-sialyltransferase activity
## 7704 alpha-tubulin acetylation
## 7705 alpha9-beta1 integrin-ADAM8 complex
## 7706 alpha9-beta1 integrin-vascular cell adhesion molecule-1 complex
## 7707 alphav-beta3 integrin-vitronectin complex
## 7708 amidase activity
## 7709 amide binding
## 7710 amidophosphoribosyltransferase activity
## 7711 amine sulfotransferase activity
## 7712 amine transmembrane transporter activity
## 7713 amine transport
## 7714 amino acid homeostasis
## 7715 amino acid:sodium symporter activity
## 7716 aminoacyl-tRNA hydrolase activity
## 7717 aminomethyltransferase activity
## 7718 aminophospholipid transport
## 7719 ammon gyrus development
## 7720 ammonium import across plasma membrane
## 7721 AMP deaminase activity
## 7722 AMP phosphorylation
## 7723 AMP salvage
## 7724 amphisome
## 7725 amyloid-beta complex
## 7726 anandamide amidohydrolase activity
## 7727 anastral spindle assembly
## 7728 anatomical structure formation involved in morphogenesis
## 7729 anatomical structure regression
## 7730 androgen binding
## 7731 androstan-3-alpha,17-beta-diol dehydrogenase activity
## 7732 angiogenin-PRI complex
## 7733 angiotensin type II receptor activity
## 7734 angiotensin-activated signaling pathway
## 7735 anion:cation symporter activity
## 7736 anterior commissure morphogenesis
## 7737 anterior compartment pattern formation
## 7738 anterior neural tube closure
## 7739 anterior/posterior axon guidance
## 7740 anterograde axonal transport of mitochondrion
## 7741 anterograde dendritic transport
## 7742 anterograde dendritic transport of mitochondrion
## 7743 anterograde dendritic transport of neurotransmitter receptor complex
## 7744 anthranilate metabolic process
## 7745 antibiotic metabolic process
## 7746 antigen processing and presentation of endogenous antigen
## 7747 antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway, TAP-dependent
## 7748 antigen processing and presentation of exogenous antigen
## 7749 antigen processing and presentation of exogenous protein antigen via MHC class Ib, TAP-dependent
## 7750 antigen processing and presentation of peptide antigen
## 7751 AP-1 adaptor complex binding
## 7752 AP-5 adaptor complex
## 7753 apical constriction
## 7754 apical ectoplasmic specialization
## 7755 apical tubulobulbar complex
## 7756 apolipoprotein A-I receptor activity
## 7757 apolipoprotein A-I receptor binding
## 7758 apolipoprotein receptor activity
## 7759 apoptosome
## 7760 apoptotic process involved in embryonic digit morphogenesis
## 7761 arachidonic acid monooxygenase activity
## 7762 ARC complex
## 7763 arginase activity
## 7764 arginine biosynthetic process via ornithine
## 7765 arginine catabolic process to ornithine
## 7766 arginine metabolic process
## 7767 argininosuccinate lyase activity
## 7768 arginyltransferase activity
## 7769 aromatase activity
## 7770 aromatic amino acid family metabolic process
## 7771 aromatic compound catabolic process
## 7772 arsenite transmembrane transporter activity
## 7773 arsenite transport
## 7774 artery smooth muscle contraction
## 7775 articular cartilage development
## 7776 aryl sulfotransferase activity
## 7777 arylamine N-acetyltransferase activity
## 7778 asparaginyl-tRNA synthase (glutamine-hydrolyzing) activity
## 7779 aspartate-tRNA(Asn) ligase activity
## 7780 aspartic-type peptidase activity
## 7781 aspartyl-tRNA aminoacylation
## 7782 astral microtubule nucleation
## 7783 astrocyte differentiation
## 7784 astrocyte end-foot
## 7785 astrocyte fate commitment
## 7786 astrocyte projection
## 7787 asymmetric Golgi ribbon formation
## 7788 asymmetric, glutamatergic, excitatory synapse
## 7789 ATF1-ATF4 transcription factor complex
## 7790 Atg12 activating enzyme activity
## 7791 Atg12-Atg5-Atg16 complex
## 7792 Atg8 activating enzyme activity
## 7793 ATP citrate synthase activity
## 7794 ATP diphosphatase activity
## 7795 ATP generation from ADP
## 7796 ATP generation from poly-ADP-D-ribose
## 7797 ATP transmembrane transporter activity
## 7798 ATP-dependent microtubule motor activity, minus-end-directed
## 7799 ATP-dependent NAD(P)H-hydrate dehydratase activity
## 7800 ATP-dependent polynucleotide kinase activity
## 7801 ATP:3'-cytidine-cytidine-tRNA adenylyltransferase activity
## 7802 ATP:ADP antiporter activity
## 7803 ATPase regulator activity
## 7804 ATPase-coupled bile acid transmembrane transporter activity
## 7805 ATPase-coupled fatty-acyl-CoA transmembrane transporter activity
## 7806 ATPase-coupled polyamine transmembrane transporter activity
## 7807 ATPase-coupled sterol transmembrane transporter activity
## 7808 atrial cardiac muscle cell development
## 7809 atrial cardiac muscle tissue development
## 7810 atrial cardiac muscle tissue morphogenesis
## 7811 atrial septum secundum morphogenesis
## 7812 atrioventricular canal morphogenesis
## 7813 atrioventricular node cell development
## 7814 atrioventricular valve formation
## 7815 autophagosome organization
## 7816 autophagy of nucleus
## 7817 autosome
## 7818 axial mesoderm morphogenesis
## 7819 axon extension involved in axon guidance
## 7820 axon guidance receptor activity
## 7821 axon midline choice point recognition
## 7822 axonal fasciculation
## 7823 axonemal central apparatus
## 7824 B cell affinity maturation
## 7825 B cell chemotaxis
## 7826 B cell costimulation
## 7827 B cell homeostatic proliferation
## 7828 B cell negative selection
## 7829 B cell proliferation involved in immune response
## 7830 B cell receptor apoptotic signaling pathway
## 7831 B cell receptor transport into membrane raft
## 7832 BAK complex
## 7833 barbed-end actin filament uncapping
## 7834 basal body patch
## 7835 basal protein localization
## 7836 basal tubulobulbar complex
## 7837 base conversion or substitution editing
## 7838 base-excision repair, base-free sugar-phosphate removal
## 7839 basophil chemotaxis
## 7840 BAX complex
## 7841 BCOR complex
## 7842 behavior
## 7843 behavioral defense response
## 7844 behavioral response to nicotine
## 7845 behavioral response to nutrient
## 7846 behavioral response to starvation
## 7847 bent DNA binding
## 7848 benzaldehyde dehydrogenase (NAD+) activity
## 7849 benzaldehyde dehydrogenase (NADP+) activity
## 7850 benzodiazepine receptor activity
## 7851 benzodiazepine receptor binding
## 7852 benzylpenicillin metabolic process
## 7853 beta selection
## 7854 beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,3-N-acetylglucosaminyltransferase activity
## 7855 beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase activity
## 7856 beta-alanine biosynthetic process
## 7857 beta-amyrin synthase activity
## 7858 beta-catenin destruction complex binding
## 7859 beta-catenin-TCF7L2 complex
## 7860 beta-endorphin binding
## 7861 beta-galactoside (CMP) alpha-2,3-sialyltransferase activity
## 7862 beta-galactoside alpha-2,6-sialyltransferase activity
## 7863 beta-galactosyl-N-acetylglucosaminylgalactosylglucosyl-ceramide beta-1,3-acetylglucosaminyltransferase activity
## 7864 beta-glucuronidase activity
## 7865 beta-N-acetylglucosaminidase activity
## 7866 beta-N-acetylhexosaminidase activity
## 7867 beta2-adrenergic receptor activity
## 7868 BH domain binding
## 7869 BH2 domain binding
## 7870 bile acid binding
## 7871 bile acid receptor activity
## 7872 bile acid transmembrane transporter activity
## 7873 bile acid:sodium symporter activity
## 7874 biliberdin reductase NAD+ activity
## 7875 bilirubin transmembrane transporter activity
## 7876 bilirubin transport
## 7877 biliverdin reductase (NAD(P)+) activity
## 7878 biliverdin reductase (NADP+) activity
## 7879 biotin import across plasma membrane
## 7880 biotin metabolic process
## 7881 biotin transmembrane transporter activity
## 7882 biotin transport
## 7883 bis(5'-nucleosyl)-tetraphosphatase (asymmetrical) activity
## 7884 bis(5'-nucleosyl)-tetraphosphatase (symmetrical) activity
## 7885 bis(5'-nucleosyl)-tetraphosphatase activity
## 7886 bisphosphoglycerate 2-phosphatase activity
## 7887 BLOC-3 complex
## 7888 blood coagulation, fibrin clot formation
## 7889 blood vessel endothelial cell differentiation
## 7890 blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## 7891 BMP signaling pathway involved in heart development
## 7892 BMP signaling pathway involved in heart induction
## 7893 body fluid secretion
## 7894 bone maturation
## 7895 bone mineralization involved in bone maturation
## 7896 bone sialoprotein binding
## 7897 box C/D snoRNA binding
## 7898 box H/ACA scaRNP complex
## 7899 box H/ACA snoRNA binding
## 7900 box H/ACA snoRNP complex
## 7901 box H/ACA telomerase RNP complex
## 7902 branch elongation involved in mammary gland duct branching
## 7903 branched-chain amino acid biosynthetic process
## 7904 branched-chain amino acid metabolic process
## 7905 branched-chain-amino-acid transaminase activity
## 7906 branching involved in prostate gland morphogenesis
## 7907 BRCA2-MAGE-D1 complex
## 7908 BRE binding
## 7909 brexanolone metabolic process
## 7910 bronchiole development
## 7911 bronchus cartilage development
## 7912 bud elongation involved in lung branching
## 7913 butyrate catabolic process
## 7914 butyrate-CoA ligase activity
## 7915 butyryl-CoA dehydrogenase activity
## 7916 C-3 sterol dehydrogenase (C-4 sterol decarboxylase) activity
## 7917 C-C motif chemokine 19 receptor activity
## 7918 C-C motif chemokine 21 receptor activity
## 7919 C-terminal protein methylation
## 7920 C21-steroid hormone metabolic process
## 7921 cadmium ion transmembrane transporter activity
## 7922 calcineurin-mediated signaling
## 7923 calcitonin gene-related peptide receptor activity
## 7924 calcium activated galactosylceramide scrambling
## 7925 calcium export from the mitochondrion
## 7926 calcium ion import across plasma membrane
## 7927 calcium ion-regulated exocytosis of neurotransmitter
## 7928 calcium ion-transporting ATPase complex
## 7929 calcium- and calmodulin-dependent protein kinase complex
## 7930 calcium- and calmodulin-regulated 3',5'-cyclic-GMP phosphodiesterase activity
## 7931 calcium-dependent ATPase activity
## 7932 calcium-dependent cell-matrix adhesion
## 7933 calcium-dependent protein kinase inhibitor activity
## 7934 calcium-dependent protein serine/threonine kinase activity
## 7935 calcium-dependent protein serine/threonine phosphatase activity
## 7936 calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules
## 7937 calcium-independent cell-matrix adhesion
## 7938 calcium-independent protein kinase C activity
## 7939 calcium-mediated signaling using extracellular calcium source
## 7940 calcium-transporting ATPase activity involved in regulation of cardiac muscle cell membrane potential
## 7941 calcium, potassium:sodium antiporter activity
## 7942 calcium:sodium antiporter activity
## 7943 calcium:sodium antiporter activity involved in regulation of cardiac muscle cell membrane potential
## 7944 calmodulin-dependent cyclic-nucleotide phosphodiesterase activity
## 7945 camera-type eye photoreceptor cell differentiation
## 7946 cAMP biosynthetic process
## 7947 cAMP catabolic process
## 7948 cAMP transport
## 7949 cAMP-dependent protein kinase complex
## 7950 cAMP-dependent protein kinase regulator activity
## 7951 canalicular bile acid transport
## 7952 canonical Wnt signaling pathway involved in metanephric kidney development
## 7953 canonical Wnt signaling pathway involved in negative regulation of apoptotic process
## 7954 canonical Wnt signaling pathway involved in neural crest cell differentiation
## 7955 canonical Wnt signaling pathway involved in positive regulation of cell-cell adhesion
## 7956 canonical Wnt signaling pathway involved in positive regulation of endothelial cell migration
## 7957 canonical Wnt signaling pathway involved in positive regulation of wound healing
## 7958 cap-dependent translational initiation
## 7959 cap-independent translational initiation
## 7960 carbohydrate derivative biosynthetic process
## 7961 carbohydrate derivative metabolic process
## 7962 carbohydrate derivative transport
## 7963 carbohydrate homeostasis
## 7964 carbohydrate transmembrane transport
## 7965 carbohydrate:proton symporter activity
## 7966 carbon-nitrogen ligase activity, with glutamine as amido-N-donor
## 7967 carboxylic acid transmembrane transporter activity
## 7968 cardiac cell development
## 7969 cardiac cell fate determination
## 7970 cardiac muscle cell apoptotic process
## 7971 cardiac muscle cell contraction
## 7972 cardiac muscle cell fate commitment
## 7973 cardiac muscle cell proliferation
## 7974 cardiac muscle hypertrophy
## 7975 cardiac neural crest cell development involved in heart development
## 7976 cardiac neural crest cell development involved in outflow tract morphogenesis
## 7977 cardiac vascular smooth muscle cell development
## 7978 cardiac vascular smooth muscle cell differentiation
## 7979 cardiolipin hydrolase activity
## 7980 cardiolipin metabolic process
## 7981 carnitine metabolic process, CoA-linked
## 7982 carnitine transmembrane transporter activity
## 7983 carnitine transport
## 7984 carnosine metabolic process
## 7985 carnosine N-methyltransferase activity
## 7986 cartilage condensation
## 7987 cartilage homeostasis
## 7988 catabolism by host of symbiont protein
## 7989 catalase activity
## 7990 catechol O-methyltransferase activity
## 7991 catecholamine catabolic process
## 7992 cation channel complex
## 7993 caveola assembly
## 7994 caveola neck
## 7995 caveolar macromolecular signaling complex
## 7996 caveolin-mediated endocytosis
## 7997 CCAAT-binding factor complex
## 7998 CCR3 chemokine receptor binding
## 7999 CCR4-NOT complex binding
## 8000 CD27 receptor binding
## 8001 CD4-positive or CD8-positive, alpha-beta T cell lineage commitment
## 8002 CD4-positive, alpha-beta T cell costimulation
## 8003 CD4-positive, CD25-positive, alpha-beta regulatory T cell lineage commitment
## 8004 CD40 receptor binding
## 8005 CD8 receptor binding
## 8006 CD8-positive, alpha-beta T cell differentiation
## 8007 CD86 biosynthetic process
## 8008 Cdc42 protein signal transduction
## 8009 CDP phosphorylation
## 8010 CDP-diacylglycerol metabolic process
## 8011 CDP-diacylglycerol-inositol 3-phosphatidyltransferase activity
## 8012 CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## 8013 cell activation involved in immune response
## 8014 cell body fiber
## 8015 cell communication by electrical coupling involved in cardiac conduction
## 8016 cell cycle G2/M phase transition
## 8017 cell differentiation in hindbrain
## 8018 cell fate commitment involved in formation of primary germ layer
## 8019 cell gliding
## 8020 cell migration in hindbrain
## 8021 cell migration involved in endocardial cushion formation
## 8022 cell migration involved in vasculogenesis
## 8023 cell morphogenesis involved in differentiation
## 8024 cell pole
## 8025 cell proliferation in forebrain
## 8026 cell proliferation in midbrain
## 8027 cell surface bile acid receptor signaling pathway
## 8028 cell surface pattern recognition receptor signaling pathway
## 8029 cell wall mannoprotein biosynthetic process
## 8030 cell-cell adhesion involved in gastrulation
## 8031 cell-cell adhesion mediated by cadherin
## 8032 cell-cell recognition
## 8033 cell-cell signaling by wnt
## 8034 cell-cell signaling via exosome
## 8035 cell-substrate junction organization
## 8036 cellular amino acid catabolic process
## 8037 cellular aromatic compound metabolic process
## 8038 cellular biosynthetic process
## 8039 cellular carbohydrate metabolic process
## 8040 cellular cation homeostasis
## 8041 cellular component assembly
## 8042 cellular component disassembly involved in execution phase of apoptosis
## 8043 cellular detoxification of methylglyoxal
## 8044 cellular detoxification of nitrogen compound
## 8045 cellular developmental process
## 8046 cellular glucuronidation
## 8047 cellular hypotonic salinity response
## 8048 cellular ketone body metabolic process
## 8049 cellular ketone metabolic process
## 8050 cellular localization
## 8051 cellular macromolecule biosynthetic process
## 8052 cellular macromolecule catabolic process
## 8053 cellular magnesium ion homeostasis
## 8054 cellular metal ion homeostasis
## 8055 cellular organofluorine metabolic process
## 8056 cellular protein complex disassembly
## 8057 cellular response to 2-O-acetyl-1-O-hexadecyl-sn-glycero-3-phosphocholine
## 8058 cellular response to 2,3,7,8-tetrachlorodibenzodioxine
## 8059 cellular response to acetylcholine
## 8060 cellular response to acidic pH
## 8061 cellular response to amine stimulus
## 8062 cellular response to anisomycin
## 8063 cellular response to arsenite ion
## 8064 cellular response to bleomycin
## 8065 cellular response to caloric restriction
## 8066 cellular response to catecholamine stimulus
## 8067 cellular response to cell-matrix adhesion
## 8068 cellular response to chromate
## 8069 cellular response to corticotropin-releasing hormone stimulus
## 8070 cellular response to cytochalasin B
## 8071 cellular response to diamide
## 8072 cellular response to dimethyl sulfoxide
## 8073 cellular response to dsRNA
## 8074 cellular response to endothelin
## 8075 cellular response to erythropoietin
## 8076 cellular response to flavonoid
## 8077 cellular response to folic acid
## 8078 cellular response to glycine
## 8079 cellular response to glyoxal
## 8080 cellular response to gravity
## 8081 cellular response to growth hormone stimulus
## 8082 cellular response to high light intensity
## 8083 cellular response to hyperoxia
## 8084 cellular response to indole-3-methanol
## 8085 cellular response to L-arginine
## 8086 cellular response to lectin
## 8087 cellular response to leptomycin B
## 8088 cellular response to luteinizing hormone stimulus
## 8089 cellular response to menadione
## 8090 cellular response to metal ion
## 8091 cellular response to methyl methanesulfonate
## 8092 cellular response to methylglyoxal
## 8093 cellular response to mineralocorticoid stimulus
## 8094 cellular response to molecule of fungal origin
## 8095 cellular response to nitroglycerin
## 8096 cellular response to nitrosative stress
## 8097 cellular response to norepinephrine stimulus
## 8098 cellular response to parathyroid hormone stimulus
## 8099 cellular response to peptidoglycan
## 8100 cellular response to potassium ion starvation
## 8101 cellular response to prolactin
## 8102 cellular response to puromycin
## 8103 cellular response to putrescine
## 8104 cellular response to sterol
## 8105 cellular response to superoxide
## 8106 cellular response to tetrahydrofolate
## 8107 cellular response to thyroxine stimulus
## 8108 cellular response to toxic substance
## 8109 cellular response to trichostatin A
## 8110 cellular response to triglyceride
## 8111 cellular response to tumor cell
## 8112 cellular response to type I interferon
## 8113 cellular response to vitamin
## 8114 cellular response to vitamin B1
## 8115 cellular response to water deprivation
## 8116 cellular water homeostasis
## 8117 cementum mineralization
## 8118 central element
## 8119 central nervous system myelination
## 8120 central nervous system neuron axonogenesis
## 8121 central nervous system vasculogenesis
## 8122 central region of growth cone
## 8123 centromere complex assembly
## 8124 centrosomal corona
## 8125 centrosome separation
## 8126 ceramidase activity
## 8127 ceramide glucosyltransferase activity
## 8128 ceramide kinase activity
## 8129 ceramide phosphoethanolamine biosynthetic process
## 8130 ceramide-1-phosphate phosphatase activity
## 8131 cerebellar cortex morphogenesis
## 8132 cerebellar granular layer development
## 8133 cerebellar granule cell differentiation
## 8134 cerebellar granule cell precursor proliferation
## 8135 cerebellar granule cell precursor tangential migration
## 8136 cerebellar neuron development
## 8137 cerebellar Purkinje cell layer development
## 8138 cerebellar Purkinje cell layer maturation
## 8139 cerebellar Purkinje cell layer morphogenesis
## 8140 cerebral cortex radially oriented cell migration
## 8141 cerebral cortex tangential migration
## 8142 cerebroside-sulfatase activity
## 8143 cerebrospinal fluid secretion
## 8144 cGMP-inhibited cyclic-nucleotide phosphodiesterase activity
## 8145 cGMP-stimulated cyclic-nucleotide phosphodiesterase activity
## 8146 channel regulator activity
## 8147 chaperone-mediated autophagy translocation complex
## 8148 chemoattraction of axon
## 8149 chemokine (C-C motif) ligand 19 binding
## 8150 chemokine (C-C motif) ligand 19 signaling pathway
## 8151 chemokine (C-C motif) ligand 21 binding
## 8152 chemokine (C-X-C motif) ligand 12 signaling pathway
## 8153 chemokine receptor activity
## 8154 chemokine receptor transport out of membrane raft
## 8155 chemorepulsion involved in interneuron migration from the subpallium to the cortex
## 8156 chemosensory behavior
## 8157 chemotaxis to arachidonic acid
## 8158 chenodeoxycholate 7-alpha-dehydrogenase (NAD+) activity
## 8159 chiasma
## 8160 chitin catabolic process
## 8161 chitinase activity
## 8162 chloride channel regulator activity
## 8163 cholangiocyte apoptotic process
## 8164 cholangiocyte proliferation
## 8165 cholate 7-alpha-dehydrogenase activity
## 8166 cholest-5-ene-3-beta,7-alpha-diol 3-beta-dehydrogenase activity
## 8167 cholestenol delta-isomerase activity
## 8168 cholestenone 5-alpha-reductase activity
## 8169 cholesterol biosynthetic process via 24,25-dihydrolanosterol
## 8170 cholesterol ester hydrolysis involved in cholesterol transport
## 8171 cholesterol transport involved in cholesterol storage
## 8172 choline catabolic process
## 8173 choline kinase activity
## 8174 choline transmembrane transporter activity
## 8175 choline transport
## 8176 choline-phosphate cytidylyltransferase activity
## 8177 choloyl-CoA hydrolase activity
## 8178 chondroblast differentiation
## 8179 chondrocyte differentiation involved in endochondral bone morphogenesis
## 8180 chondrocyte hypertrophy
## 8181 chondroitin 6-sulfotransferase activity
## 8182 chondroitin sulfate metabolic process
## 8183 CHOP-C/EBP complex
## 8184 chorion development
## 8185 chorionic trophoblast cell differentiation
## 8186 chromatin organization involved in regulation of transcription
## 8187 chromosome breakage
## 8188 chronic inflammatory response to antigenic stimulus
## 8189 chylomicron remnant clearance
## 8190 ciliary neurotrophic factor receptor activity
## 8191 ciliary neurotrophic factor receptor complex
## 8192 ciliary neurotrophic factor-mediated signaling pathway
## 8193 ciliary plasm
## 8194 ciliary receptor clustering involved in smoothened signaling pathway
## 8195 circadian temperature homeostasis
## 8196 cis assembly of pre-catalytic spliceosome
## 8197 cis-trans isomerase activity
## 8198 citrate (Si)-synthase activity
## 8199 citrate dehydratase activity
## 8200 citrate secondary active transmembrane transporter activity
## 8201 citrate synthase activity
## 8202 citrate transport
## 8203 citrate-L-glutamate ligase activity
## 8204 citrulline biosynthetic process
## 8205 clathrin coat disassembly
## 8206 clathrin-dependent synaptic vesicle endocytosis
## 8207 clathrin-sculpted acetylcholine transport vesicle membrane
## 8208 cleavage furrow ingression
## 8209 cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 8210 CLOCK-BMAL transcription complex
## 8211 closure of optic fissure
## 8212 clustering of voltage-gated potassium channels
## 8213 CMP catabolic process
## 8214 CMP kinase activity
## 8215 CMP phosphorylation
## 8216 CMP-N-acetylneuraminate biosynthetic process
## 8217 CMP-N-acetylneuraminate transmembrane transport
## 8218 CMP-N-acetylneuraminate transmembrane transporter activity
## 8219 CNTFR-CLCF1 complex
## 8220 CoA-ligase activity
## 8221 CoA-transferase activity
## 8222 coated vesicle membrane
## 8223 cob(I)yrinic acid a,c-diamide adenosyltransferase activity
## 8224 cobalamin biosynthetic process
## 8225 cobalamin transport
## 8226 cobalt ion binding
## 8227 cocaine binding
## 8228 coenzyme A binding
## 8229 cohesin loading
## 8230 collagen receptor activity
## 8231 collagen-activated signaling pathway
## 8232 collateral sprouting in absence of injury
## 8233 colon epithelial cell migration
## 8234 commitment of neuronal cell to specific neuron type in forebrain
## 8235 common bile duct development
## 8236 complement activation, lectin pathway
## 8237 complement component C1 complex
## 8238 complement component C1q complex binding
## 8239 complement component C3a binding
## 8240 complement component C5a receptor activity
## 8241 complement component C5a signaling pathway
## 8242 complement receptor activity
## 8243 complement-mediated synapse pruning
## 8244 concave side of sperm head
## 8245 connexin binding
## 8246 contact inhibition
## 8247 contractile actin filament bundle assembly
## 8248 convergent extension
## 8249 convergent extension involved in axis elongation
## 8250 convergent extension involved in gastrulation
## 8251 conversion of ds siRNA to ss siRNA
## 8252 conversion of ds siRNA to ss siRNA involved in RNA interference
## 8253 copper ion export
## 8254 copper ion import
## 8255 coproporphyrinogen oxidase activity
## 8256 core-binding factor complex
## 8257 coreceptor activity involved in canonical Wnt signaling pathway
## 8258 coreceptor activity involved in Wnt signaling pathway
## 8259 coronary vasculature morphogenesis
## 8260 coronary vein morphogenesis
## 8261 cortical microtubule
## 8262 cortical microtubule cytoskeleton
## 8263 cortical microtubule plus-end
## 8264 corticotropin-releasing hormone receptor 1 binding
## 8265 creatine biosynthetic process
## 8266 creatinine metabolic process
## 8267 CRLF-CLCF1 complex
## 8268 CST complex
## 8269 CTP metabolic process
## 8270 CTP synthase activity
## 8271 CTP:3'-cytidine-tRNA cytidylyltransferase activity
## 8272 CTP:tRNA cytidylyltransferase activity
## 8273 cupric reductase activity
## 8274 CURI complex
## 8275 CUT catabolic process
## 8276 cuticular plate
## 8277 CXCR chemokine receptor binding
## 8278 cyclic purine nucleotide metabolic process
## 8279 cyclic-di-GMP binding
## 8280 cyclic-GMP-AMP transmembrane import across plasma membrane
## 8281 cyclic-GMP-AMP transmembrane transporter activity
## 8282 cyclic-nucleotide-mediated signaling
## 8283 cyclin A1-CDK2 complex
## 8284 cyclin E2-CDK2 complex
## 8285 cyclin-dependent protein kinase activating kinase holoenzyme complex
## 8286 cysteine biosynthetic process
## 8287 cysteine desulfurase activity
## 8288 cysteine metabolic process
## 8289 cysteine transmembrane transport
## 8290 cysteine transmembrane transporter activity
## 8291 cysteine-tRNA ligase activity
## 8292 cysteine-type carboxypeptidase activity
## 8293 cysteinyl-tRNA aminoacylation
## 8294 cytidylate cyclase activity
## 8295 cytidylate kinase activity
## 8296 cytochrome complex assembly
## 8297 cytokinetic process
## 8298 cytolysis by host of symbiont cells
## 8299 cytolytic granule membrane
## 8300 cytoplasm organization
## 8301 cytoplasm protein quality control by the ubiquitin-proteasome system
## 8302 cytoplasmic cyclin-dependent protein kinase holoenzyme complex
## 8303 cytoplasmic microtubule bundle
## 8304 cytoplasmic region
## 8305 cytoplasmic sequestering of CFTR protein
## 8306 cytoplasmic side of dendritic spine plasma membrane
## 8307 cytoplasmic side of early endosome membrane
## 8308 cytoplasmic side of late endosome membrane
## 8309 cytoplasmic side of membrane
## 8310 cytoplasmic translational elongation
## 8311 cytosine C-5 DNA demethylase activity
## 8312 cytosolic calcium signaling involved in initiation of cell movement in glial-mediated radial cell migration
## 8313 cytosolic tRNA wobble base thiouridylase complex
## 8314 D-dopachrome decarboxylase activity
## 8315 D-erythro-sphingosine kinase activity
## 8316 D-glucuronate catabolic process
## 8317 D-glutamate cyclase activity
## 8318 D-loop DNA binding
## 8319 D-phosphoserine phosphatase activity
## 8320 D-serine transport
## 8321 D-xylose metabolic process
## 8322 D-xylulose reductase activity
## 8323 D2 dopamine receptor binding
## 8324 D5 dopamine receptor binding
## 8325 dADP biosynthetic process
## 8326 dADP catabolic process
## 8327 dADP phosphorylation
## 8328 dAMP phosphorylation
## 8329 dATP binding
## 8330 dATP metabolic process
## 8331 dATP pyrophosphohydrolase activity
## 8332 Dbf4-dependent protein kinase complex
## 8333 DBIRD complex
## 8334 dCDP phosphorylation
## 8335 dCMP kinase activity
## 8336 dCMP phosphorylation
## 8337 deaminase activity
## 8338 death domain binding
## 8339 death effector domain binding
## 8340 death receptor activity
## 8341 defense response to nematode
## 8342 dehydrodolichyl diphosphate synthase activity
## 8343 dehydrodolichyl diphosphate synthase complex
## 8344 delta14-sterol reductase activity
## 8345 delta24-sterol reductase activity
## 8346 delta24(24-1) sterol reductase activity
## 8347 delta3,5-delta2,4-dienoyl-CoA isomerase activity
## 8348 demethylase activity
## 8349 denatured protein binding
## 8350 dendritic filopodium
## 8351 dendritic growth cone
## 8352 dendritic spine cytoplasm
## 8353 dendritic spine organization
## 8354 dense core granule cytoskeletal transport
## 8355 dense core granule maturation
## 8356 dense core granule priming
## 8357 dentate gyrus development
## 8358 dentin mineralization
## 8359 deoxycytidine kinase activity
## 8360 deoxycytidyl transferase activity
## 8361 deoxyhypusine synthase activity
## 8362 deoxynucleotide transmembrane transporter activity
## 8363 deoxynucleotide transport
## 8364 deoxyribonuclease activity
## 8365 deoxyribonuclease I activity
## 8366 deoxyribonucleoside 5'-monophosphate N-glycosidase activity
## 8367 deoxyribonucleoside catabolic process
## 8368 deoxyribonucleoside monophosphate catabolic process
## 8369 deoxyribonucleoside triphosphate catabolic process
## 8370 deoxyribonucleotide metabolic process
## 8371 deoxyribose phosphate catabolic process
## 8372 deoxyribose-phosphate aldolase activity
## 8373 dephospho-CoA kinase activity
## 8374 dermatan sulfate biosynthetic process
## 8375 dermatan sulfate catabolic process
## 8376 dermatan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## 8377 dermatan sulfate proteoglycan metabolic process
## 8378 desensitization of G protein-coupled receptor signaling pathway
## 8379 desmosome organization
## 8380 detection of abiotic stimulus
## 8381 detection of biotic stimulus
## 8382 detection of chemical stimulus involved in sensory perception
## 8383 detection of chemical stimulus involved in sensory perception of pain
## 8384 detection of chemical stimulus involved in sensory perception of smell
## 8385 detection of diacyl bacterial lipopeptide
## 8386 detection of DNA damage stimulus involved in DNA damage checkpoint
## 8387 detection of fungus
## 8388 detection of hypoxia
## 8389 detection of light stimulus
## 8390 detection of light stimulus involved in visual perception
## 8391 detection of lipopolysaccharide
## 8392 detection of mechanical stimulus involved in sensory perception
## 8393 detection of mechanical stimulus involved in sensory perception of sound
## 8394 detection of molecule of fungal origin
## 8395 detection of muramyl dipeptide
## 8396 detection of oxidative stress
## 8397 detection of stimulus involved in cell cycle checkpoint
## 8398 detection of stimulus involved in sensory perception
## 8399 detection of temperature stimulus involved in sensory perception
## 8400 detection of triacyl bacterial lipopeptide
## 8401 determination of digestive tract left/right asymmetry
## 8402 determination of heart left/right asymmetry
## 8403 determination of intestine left/right asymmetry
## 8404 determination of pancreatic left/right asymmetry
## 8405 determination of stomach left/right asymmetry
## 8406 detoxification of cadmium ion
## 8407 detoxification of copper ion
## 8408 detoxification of nitrogen compound
## 8409 detoxification of zinc ion
## 8410 deubiquitinase activator activity
## 8411 development of primary female sexual characteristics
## 8412 development of primary male sexual characteristics
## 8413 developmental cell growth
## 8414 dGDP biosynthetic process
## 8415 dGDP catabolic process
## 8416 dGDP phosphorylation
## 8417 dGMP catabolic process
## 8418 dGMP metabolic process
## 8419 dGTP metabolic process
## 8420 diacylglycerol catabolic process
## 8421 diacylglycerol cholinephosphotransferase activity
## 8422 diacylglycerol O-acyltransferase activity
## 8423 diadenosine triphosphate catabolic process
## 8424 diaphragm contraction
## 8425 diaphragm development
## 8426 dicarboxylic acid catabolic process
## 8427 dicarboxylic acid metabolic process
## 8428 dichotomous subdivision of terminal units involved in lung branching
## 8429 digestive system development
## 8430 dihydroceramide glucosyltransferase activity
## 8431 dihydroceramide kinase activity
## 8432 dihydrolipoamide S-acyltransferase activity
## 8433 dihydrolipoyllysine-residue (2-methylpropanoyl)transferase activity
## 8434 dihydrolipoyllysine-residue acetyltransferase activity
## 8435 dihydrolipoyllysine-residue succinyltransferase activity
## 8436 dihydroorotate dehydrogenase activity
## 8437 dihydropyrimidinase activity
## 8438 dihydropyrimidine dehydrogenase (NADP+) activity
## 8439 dihydrotestosterone 17-beta-dehydrogenase activity
## 8440 dimeric IgA immunoglobulin complex
## 8441 dinitrosyl-iron complex binding
## 8442 dinucleotide repeat insertion binding
## 8443 dipeptide transport
## 8444 diphosphate metabolic process
## 8445 diphosphomevalonate decarboxylase activity
## 8446 diphthine methylesterase activity
## 8447 diphthine synthase activity
## 8448 disaccharide binding
## 8449 disaccharide metabolic process
## 8450 distal tubule development
## 8451 dITP diphosphatase activity
## 8452 divalent inorganic cation homeostasis
## 8453 division septum assembly
## 8454 DNA binding domain binding
## 8455 DNA catabolic process
## 8456 DNA damage response, signal transduction resulting in transcription
## 8457 DNA demethylation of male pronucleus
## 8458 DNA end binding
## 8459 DNA endoreduplication
## 8460 DNA ligase III-XRCC1 complex
## 8461 DNA ligase IV complex
## 8462 DNA ligation involved in DNA recombination
## 8463 DNA methylation on adenine
## 8464 DNA methylation on cytosine within a CG sequence
## 8465 DNA modification
## 8466 DNA polymerase complex
## 8467 DNA polymerase III complex
## 8468 DNA primase activity
## 8469 DNA protection
## 8470 DNA recombinase assembly
## 8471 DNA replication proofreading
## 8472 DNA replication-independent nucleosome organization
## 8473 DNA replication, Okazaki fragment processing
## 8474 DNA rewinding
## 8475 DNA strand elongation involved in mitotic DNA replication
## 8476 DNA strand resection involved in replication fork processing
## 8477 DNA synthesis involved in UV-damage excision repair
## 8478 DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activator activity
## 8479 DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activity
## 8480 DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex
## 8481 DNA-3-methyladenine glycosylase activity
## 8482 DNA-3-methylguanine glycosylase activity
## 8483 DNA-7-methyladenine glycosylase activity
## 8484 DNA-7-methylguanine glycosylase activity
## 8485 DNA-dependent protein kinase activity
## 8486 DNA-dependent protein kinase-DNA ligase 4 complex
## 8487 DNA-methyltransferase activity
## 8488 DNA-templated transcription open complex formation
## 8489 DNA-templated transcription, elongation
## 8490 DNA-templated viral transcription
## 8491 docosanoate omega-hydroxylase activity
## 8492 dol-P-Man:Man(5)GlcNAc(2)-PP-Dol alpha-1,3-mannosyltransferase activity
## 8493 dol-P-Man:Man(7)GlcNAc(2)-PP-Dol alpha-1,6-mannosyltransferase activity
## 8494 dolichol kinase activity
## 8495 dolichyl monophosphate biosynthetic process
## 8496 dolichyl pyrophosphate Glc2Man9GlcNAc2 alpha-1,2-glucosyltransferase activity
## 8497 dolichyl-phosphate-mannose-protein mannosyltransferase activity
## 8498 dolichyl-pyrophosphate Man7GlcNAc2 alpha-1,6-mannosyltransferase activity
## 8499 dopamine metabolic process
## 8500 dopamine receptor binding
## 8501 dopamine transport
## 8502 dopamine uptake
## 8503 dopamine uptake involved in synaptic transmission
## 8504 dopamine:sodium symporter activity
## 8505 dopaminergic neuron axon guidance
## 8506 dorsal spinal cord development
## 8507 dorsal/ventral axon guidance
## 8508 dosage compensation
## 8509 double-strand break repair via alternative nonhomologous end joining
## 8510 double-strand break repair via synthesis-dependent strand annealing
## 8511 double-stranded RNA adenosine deaminase activity
## 8512 DRM complex
## 8513 drug export
## 8514 DSIF complex
## 8515 Dsl1/NZR complex
## 8516 dsRNA transport
## 8517 dTDP biosynthetic process
## 8518 dTMP biosynthetic process
## 8519 dUDP biosynthetic process
## 8520 dynein light chain binding
## 8521 early viral transcription
## 8522 ectodermal cell differentiation
## 8523 ectopic germ cell programmed cell death
## 8524 Edg-2 lysophosphatidic acid receptor binding
## 8525 egg coat
## 8526 egg coat formation
## 8527 EH domain binding
## 8528 elastin metabolic process
## 8529 electron transport coupled proton transport
## 8530 embryonic digestive tract development
## 8531 embryonic digestive tract morphogenesis
## 8532 embryonic ectodermal digestive tract development
## 8533 embryonic heart tube left/right pattern formation
## 8534 endocardial cushion cell development
## 8535 endocardial cushion cell fate commitment
## 8536 endocardial cushion fusion
## 8537 endocardium development
## 8538 endochitinase activity
## 8539 endochondral bone morphogenesis
## 8540 endocrine pancreas development
## 8541 endocrine signaling
## 8542 endoderm formation
## 8543 endodermal cell fate specification
## 8544 endomitotic cell cycle
## 8545 endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 8546 endonucleolytic cleavage to generate mature 3'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 8547 endoplasmic reticulum membrane fusion
## 8548 endoplasmic reticulum signal peptide binding
## 8549 endoplasmic reticulum stress-induced pre-emptive quality control
## 8550 endoplasmic reticulum tubular network formation
## 8551 endoplasmic reticulum tubular network membrane
## 8552 endoplasmic reticulum-endosome membrane contact site
## 8553 endoribonuclease activity, cleaving siRNA-paired mRNA
## 8554 endoribonuclease inhibitor activity
## 8555 endosome membrane tubulation
## 8556 endothelial microparticle
## 8557 endothelin receptor signaling pathway
## 8558 energy derivation by oxidation of organic compounds
## 8559 engulfment of target by autophagosome
## 8560 enteric nervous system development
## 8561 enterobactin transmembrane transporter activity
## 8562 enterobactin transport
## 8563 entry into host
## 8564 entry into host cell by a symbiont-containing vacuole
## 8565 entry of bacterium into host cell
## 8566 enucleate erythrocyte development
## 8567 eosinophil fate commitment
## 8568 EP4 subtype prostaglandin E2 receptor binding
## 8569 epiboly involved in gastrulation with mouth forming second
## 8570 epidermal cell differentiation
## 8571 epidermal growth factor receptor signaling pathway via I-kappaB kinase/NF-kappaB cascade
## 8572 epidermal growth factor receptor signaling pathway via MAPK cascade
## 8573 epidermis morphogenesis
## 8574 epididymis development
## 8575 epinephrine transport
## 8576 epithelial cell apoptotic process
## 8577 epithelial cell differentiation involved in mammary gland alveolus development
## 8578 epithelial cell differentiation involved in prostate gland development
## 8579 epithelial cell maturation involved in prostate gland development
## 8580 epithelial cell morphogenesis
## 8581 epithelial cell proliferation involved in lung morphogenesis
## 8582 epithelial cell proliferation involved in mammary gland duct elongation
## 8583 epithelial cell proliferation involved in salivary gland morphogenesis
## 8584 epithelial cilium movement involved in determination of left/right asymmetry
## 8585 epoxide hydrolase activity
## 8586 epoxide metabolic process
## 8587 epoxygenase P450 pathway
## 8588 ER to Golgi ceramide transport
## 8589 ER-dependent peroxisome localization
## 8590 ER-dependent peroxisome organization
## 8591 ER-nucleus signaling pathway
## 8592 ERBB3 signaling pathway
## 8593 ERBB4 signaling pathway
## 8594 ERK5 cascade
## 8595 ESCRT complex disassembly
## 8596 ESCRT III complex assembly
## 8597 establishment of blood-brain barrier
## 8598 establishment of body hair planar orientation
## 8599 establishment of chromosome localization
## 8600 establishment of endothelial blood-brain barrier
## 8601 establishment of localization in cell
## 8602 establishment of mitochondrion localization by microtubule attachment
## 8603 establishment of monopolar cell polarity
## 8604 establishment of natural killer cell polarity
## 8605 establishment of neuroblast polarity
## 8606 establishment of planar polarity of embryonic epithelium
## 8607 establishment of protein localization to endoplasmic reticulum membrane
## 8608 establishment of protein localization to mitochondrial membrane
## 8609 establishment of protein localization to mitochondrial membrane involved in mitochondrial fission
## 8610 establishment of protein localization to peroxisome
## 8611 establishment of spindle localization
## 8612 establishment of synaptic specificity at neuromuscular junction
## 8613 establishment of viral latency
## 8614 establishment or maintenance of apical/basal cell polarity
## 8615 establishment or maintenance of monopolar cell polarity
## 8616 estradiol binding
## 8617 estrogen receptor activity
## 8618 estrogen response element binding
## 8619 ethanol binding
## 8620 ethanol oxidation
## 8621 ethanolamine-phosphate cytidylyltransferase activity
## 8622 ether lipid metabolic process
## 8623 eukaryotic 80S initiation complex
## 8624 eukaryotic initiation factor 4G binding
## 8625 eukaryotic translation initiation factor 2B complex
## 8626 eukaryotic translation initiation factor 3 complex, eIF3e
## 8627 evoked neurotransmitter secretion
## 8628 excitatory chemical synaptic transmission
## 8629 execution phase of necroptosis
## 8630 exocyst localization
## 8631 exodeoxyribonuclease III activity
## 8632 exon-exon junction complex disassembly
## 8633 exosomal secretion
## 8634 extracellular exosome biogenesis
## 8635 extracellular matrix protein binding
## 8636 extracellular matrix-cell signaling
## 8637 extracellular membrane-bounded organelle
## 8638 extracellular transport
## 8639 extracellular vesicle biogenesis
## 8640 extracellularly ATP-gated cation channel activity
## 8641 extrinsic component of autophagosome membrane
## 8642 extrinsic component of endoplasmic reticulum membrane
## 8643 extrinsic component of Golgi membrane
## 8644 extrinsic component of neuronal dense core vesicle membrane
## 8645 extrinsic component of organelle membrane
## 8646 extrinsic component of postsynaptic specialization membrane
## 8647 extrinsic component of presynaptic endocytic zone membrane
## 8648 extrinsic component of presynaptic membrane
## 8649 extrinsic component of synaptic vesicle membrane
## 8650 extrinsic component of vacuolar membrane
## 8651 eye morphogenesis
## 8652 F-box domain binding
## 8653 facial nerve structural organization
## 8654 Factor XII activation
## 8655 FAD biosynthetic process
## 8656 FAD transmembrane transporter activity
## 8657 FAD-AMP lyase (cyclizing) activity
## 8658 farnesyl diphosphate biosynthetic process, mevalonate pathway
## 8659 Fas-activated serine/threonine kinase activity
## 8660 fascia adherens
## 8661 fasciculation of sensory neuron axon
## 8662 fatty acid primary amide biosynthetic process
## 8663 fatty acid synthase activity
## 8664 fatty-acyl-CoA reductase (alcohol-forming) activity
## 8665 fatty-acyl-CoA transport
## 8666 Fc-gamma receptor I complex binding
## 8667 Fc-gamma receptor signaling pathway
## 8668 female genitalia development
## 8669 female germ-line stem cell asymmetric division
## 8670 female gonad morphogenesis
## 8671 female meiosis I
## 8672 ferredoxin-NADP+ reductase activity
## 8673 ferric-chelate reductase (NADPH) activity
## 8674 ferrous iron transmembrane transporter activity
## 8675 ferroxidase activity
## 8676 fibrinogen complex
## 8677 fibroblast activation
## 8678 fibroblast apoptotic process
## 8679 flap endonuclease activity
## 8680 flap-structured DNA binding
## 8681 flavonoid binding
## 8682 flippase activity
## 8683 FMN adenylyltransferase activity
## 8684 folate import into mitochondrion
## 8685 folate transmembrane transport
## 8686 folate:anion antiporter activity
## 8687 folic acid receptor activity
## 8688 folic acid-containing compound biosynthetic process
## 8689 forebrain dorsal/ventral pattern formation
## 8690 forebrain neuroblast division
## 8691 forebrain neuron development
## 8692 forebrain neuron differentiation
## 8693 forebrain regionalization
## 8694 formaldehyde catabolic process
## 8695 formate metabolic process
## 8696 formation of anatomical boundary
## 8697 Formylglycine-generating oxidase activity
## 8698 frontal suture morphogenesis
## 8699 fructokinase activity
## 8700 fructosamine-3-kinase activity
## 8701 fructose 1,6-bisphosphate 1-phosphatase activity
## 8702 fructose 2,6-bisphosphate metabolic process
## 8703 fructose 6-phosphate aldolase activity
## 8704 fructose import across plasma membrane
## 8705 fructose-1-phosphatase activity
## 8706 fructose-2,6-bisphosphate 2-phosphatase activity
## 8707 fructoselysine metabolic process
## 8708 fucokinase activity
## 8709 fucose binding
## 8710 fucose transmembrane transport
## 8711 fucose transmembrane transporter activity
## 8712 fumarylpyruvate hydrolase activity
## 8713 fungal-type cell wall polysaccharide metabolic process
## 8714 fungiform papilla development
## 8715 fusion of sperm to egg plasma membrane involved in single fertilization
## 8716 G protein-coupled ADP receptor activity
## 8717 G protein-coupled bile acid receptor activity
## 8718 G protein-coupled GABA receptor activity
## 8719 G protein-coupled glutamate receptor binding
## 8720 G protein-coupled neurotransmitter receptor activity involved in regulation of postsynaptic membrane potential
## 8721 G protein-coupled receptor dimeric complex
## 8722 G protein-coupled receptor heterodimeric complex
## 8723 G-protein gamma-subunit binding
## 8724 G/U mismatch-specific uracil-DNA glycosylase activity
## 8725 G1 DNA damage checkpoint
## 8726 G2/MI transition of meiotic cell cycle
## 8727 GABA-A receptor activity
## 8728 GABA-A receptor complex
## 8729 GABAergic neuron differentiation
## 8730 GAF domain binding
## 8731 galactitol metabolic process
## 8732 galactoside binding
## 8733 galactosylceramide biosynthetic process
## 8734 galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase activity
## 8735 galactosylxylosylprotein 3-beta-galactosyltransferase activity
## 8736 gall bladder development
## 8737 gamma-catenin binding
## 8738 gamma-delta T cell differentiation
## 8739 gamma-glutamyl carboxylase activity
## 8740 gamma-glutamyl-peptidase activity
## 8741 gamma-glutamylcyclotransferase activity
## 8742 gamma-secretase complex
## 8743 ganglioside galactosyltransferase activity
## 8744 ganglioside GM1 transport to membrane
## 8745 ganglioside GM2 binding
## 8746 ganglioside GM3 binding
## 8747 ganglioside GP1c binding
## 8748 ganglioside GT1b binding
## 8749 ganglioside metabolic process
## 8750 gap junction channel activity
## 8751 GARP complex binding
## 8752 GCN2-mediated signaling
## 8753 GDP biosynthetic process
## 8754 GDP phosphorylation
## 8755 GDP-4-dehydro-D-rhamnose reductase activity
## 8756 GDP-D-glucose phosphorylase activity
## 8757 GDP-dissociation inhibitor binding
## 8758 GDP-fucose import into Golgi lumen
## 8759 GDP-fucose transmembrane transporter activity
## 8760 GDP-L-fucose metabolic process
## 8761 GDP-L-fucose salvage
## 8762 GDP-L-fucose synthase activity
## 8763 GDP-Man:Man3GlcNAc2-PP-Dol alpha-1,2-mannosyltransferase activity
## 8764 GDP-mannose 3,5-epimerase activity
## 8765 GDP-mannose hydrolase activity
## 8766 general transcription initiation factor binding
## 8767 generation of catalytic spliceosome for second transesterification step
## 8768 genetic imprinting
## 8769 gephyrin clustering involved in postsynaptic density assembly
## 8770 germinal vesicle
## 8771 gland development
## 8772 glial cell development
## 8773 glial cell fate commitment
## 8774 glial cell-neuron signaling
## 8775 globoside alpha-N-acetylgalactosaminyltransferase activity
## 8776 glomerular capillary formation
## 8777 glomerular endothelium development
## 8778 glomerular parietal epithelial cell differentiation
## 8779 glomerular visceral epithelial cell differentiation
## 8780 glomerulus development
## 8781 glucocorticoid catabolic process
## 8782 glucokinase activity
## 8783 glucosamine metabolic process
## 8784 glucose 1-phosphate metabolic process
## 8785 glucose catabolic process
## 8786 glucose-6-phosphatase activity
## 8787 glucose-6-phosphate dehydrogenase activity
## 8788 glucose:sodium symporter activity
## 8789 glucosidase activity
## 8790 glucosidase II complex
## 8791 glucosylceramide biosynthetic process
## 8792 glucosyltransferase activity
## 8793 glucuronolactone reductase activity
## 8794 glucuronoside catabolic process
## 8795 glucuronyl-galactosyl-proteoglycan 4-alpha-N-acetylglucosaminyltransferase activity
## 8796 glutamate 5-kinase activity
## 8797 glutamate biosynthetic process
## 8798 glutamate homeostasis
## 8799 glutamate receptor signaling pathway
## 8800 glutamate secretion
## 8801 glutamate-5-semialdehyde dehydrogenase activity
## 8802 glutamate-cysteine ligase activity
## 8803 glutamate-cysteine ligase complex
## 8804 glutamate-tRNA ligase activity
## 8805 glutamine-fructose-6-phosphate transaminase (isomerizing) activity
## 8806 glutamine-tRNA ligase activity
## 8807 glutaminyl-tRNA aminoacylation
## 8808 glutaminyl-tRNA synthase (glutamine-hydrolyzing) activity
## 8809 glutaminyl-tRNAGln biosynthesis via transamidation
## 8810 glutamyl-tRNA aminoacylation
## 8811 glutamyl-tRNA(Gln) amidotransferase complex
## 8812 glutaryl-CoA dehydrogenase activity
## 8813 glutaryl-CoA hydrolase activity
## 8814 glutathione deglycation
## 8815 glutathione dehydrogenase (ascorbate) activity
## 8816 glutathione specific gamma-glutamylcyclotransferase activity
## 8817 glutathione synthase activity
## 8818 glutathione transmembrane transport
## 8819 glutathione transmembrane transporter activity
## 8820 glutathione transport
## 8821 glyceraldehyde oxidoreductase activity
## 8822 glyceraldehyde-3-phosphate dehydrogenase (NAD+) (phosphorylating) activity
## 8823 glycerate dehydrogenase activity
## 8824 glycerate kinase activity
## 8825 glycerol biosynthetic process
## 8826 glycerol biosynthetic process from pyruvate
## 8827 glycerol ether metabolic process
## 8828 glycerol-1-phosphatase activity
## 8829 glycerol-3-phosphatase activity
## 8830 glycerol-3-phosphate catabolic process
## 8831 glycerol-3-phosphate dehydrogenase (quinone) activity
## 8832 glycerol-3-phosphate dehydrogenase [NAD+] activity
## 8833 glycerol-3-phosphate O-acyltransferase activity
## 8834 glycerone kinase activity
## 8835 glycerone-phosphate O-acyltransferase activity
## 8836 glycerophosphate shuttle
## 8837 glycerophosphocholine phosphodiesterase activity
## 8838 glycine betaine transport
## 8839 glycine biosynthetic process from serine
## 8840 glycine catabolic process
## 8841 glycine cleavage complex
## 8842 glycine decarboxylation via glycine cleavage system
## 8843 glycine hydroxymethyltransferase activity
## 8844 glycine import into mitochondrion
## 8845 glycine transmembrane transporter activity
## 8846 glycogen cell differentiation involved in embryonic placenta development
## 8847 glycogen granule
## 8848 glycogen phosphorylase activity
## 8849 glycolate biosynthetic process
## 8850 glycolipid mannosyltransferase activity
## 8851 glycolipid transfer activity
## 8852 glycolysis from storage polysaccharide through glucose-1-phosphate
## 8853 glycolytic process from galactose
## 8854 glycolytic process through glucose-6-phosphate
## 8855 glycoprotein 6-alpha-L-fucosyltransferase activity
## 8856 glycoprotein endo-alpha-1,2-mannosidase activity
## 8857 glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase activity
## 8858 glycosphingolipid binding
## 8859 glycosylceramide catabolic process
## 8860 glycosylceramide flippase activity
## 8861 glycosylceramide metabolic process
## 8862 glycosylphosphatidylinositol phospholipase D activity
## 8863 glycylpeptide N-tetradecanoyltransferase activity
## 8864 glyoxal catabolic process
## 8865 glyoxal metabolic process
## 8866 glyoxalase (glycolic acid-forming) activity
## 8867 glyoxylate cycle
## 8868 glyoxylate metabolic process
## 8869 glyoxylate reductase (NADP) activity
## 8870 GMP 5'-nucleotidase activity
## 8871 GMP binding
## 8872 Golgi calcium ion homeostasis
## 8873 Golgi calcium ion transport
## 8874 Golgi medial cisterna membrane
## 8875 Golgi to plasma membrane CFTR protein transport
## 8876 Golgi to plasma membrane transport vesicle
## 8877 Golgi to secretory granule transport
## 8878 Golgi trans cisterna membrane
## 8879 Golgi vesicle fusion to target membrane
## 8880 gonad development
## 8881 gonadotropin secretion
## 8882 GPI anchor binding
## 8883 GPI anchor release
## 8884 GPI-anchor transamidase activity
## 8885 granular vesicle
## 8886 granulocyte chemotaxis
## 8887 granuloma formation
## 8888 granzyme-mediated apoptotic signaling pathway
## 8889 granzyme-mediated programmed cell death signaling pathway
## 8890 Grb2-EGFR complex
## 8891 Grb2-Sos complex
## 8892 grooming behavior
## 8893 growth hormone-releasing hormone receptor activity
## 8894 growth plate cartilage chondrocyte growth
## 8895 GTP cyclohydrolase binding
## 8896 GTP-dependent protein kinase activity
## 8897 Gtr1-Gtr2 GTPase complex
## 8898 guanidinoacetate N-methyltransferase activity
## 8899 guanine deglycation
## 8900 guanine deglycation, glyoxal removal
## 8901 guanine deglycation, methylglyoxal removal
## 8902 guanine nucleotide transmembrane transport
## 8903 guanine nucleotide transmembrane transporter activity
## 8904 guanosine metabolic process
## 8905 guanosine-5'-triphosphate,3'-diphosphate diphosphatase activity
## 8906 guanylyltransferase activity
## 8907 H2B histone acetyltransferase activity
## 8908 H3K27me3 modified histone binding
## 8909 H4 histone acetyltransferase complex
## 8910 H4/H2A histone acetyltransferase complex
## 8911 H4K20me3 modified histone binding
## 8912 hair cycle process
## 8913 hair follicle morphogenesis
## 8914 hair follicle placode formation
## 8915 Harderian gland development
## 8916 head morphogenesis
## 8917 heart formation
## 8918 heat generation
## 8919 helper T cell diapedesis
## 8920 helper T cell enhancement of adaptive immune response
## 8921 hematopoietic or lymphoid organ development
## 8922 hematopoietic stem cell migration
## 8923 hematopoietic stem cell migration to bone marrow
## 8924 heme metabolic process
## 8925 hemi-methylated DNA-binding
## 8926 heparan sulfate 6-O-sulfotransferase activity
## 8927 heparan sulfate N-deacetylase activity
## 8928 heparan sulfate proteoglycan biosynthetic process, enzymatic modification
## 8929 heparanase activity
## 8930 heparin catabolic process
## 8931 hepatocyte homeostasis
## 8932 hepoxilin biosynthetic process
## 8933 heterochromatin maintenance
## 8934 heterochromatin organization
## 8935 heterochromatin organization involved in chromatin silencing
## 8936 hexokinase activity
## 8937 hexosaminidase activity
## 8938 HFE-transferrin receptor complex
## 8939 high voltage-gated calcium channel activity
## 8940 high-affinity arginine transmembrane transporter activity
## 8941 high-affinity lysine transmembrane transporter activity
## 8942 high-density lipoprotein particle receptor activity
## 8943 hindbrain development
## 8944 hindlimb morphogenesis
## 8945 hippocampal mossy fiber expansion
## 8946 HIR complex
## 8947 histamine catabolic process
## 8948 histamine metabolic process
## 8949 histamine N-methyltransferase activity
## 8950 histamine receptor activity
## 8951 histidine catabolic process to glutamate and formamide
## 8952 histidine catabolic process to glutamate and formate
## 8953 histidine metabolic process
## 8954 histidine transport
## 8955 histidine-tRNA ligase activity
## 8956 histidyl-tRNA aminoacylation
## 8957 histone acetyltransferase activity (H4-K12 specific)
## 8958 histone acetyltransferase regulator activity
## 8959 histone butyryltransferase activity
## 8960 histone crotonyltransferase activity
## 8961 histone demethylase activity (H3-monomethyl-K4 specific)
## 8962 histone demethylase activity (H4-K20 specific)
## 8963 histone glutaryltransferase activity
## 8964 histone H2A K63-linked deubiquitination
## 8965 histone H2A K63-linked ubiquitination
## 8966 histone H2A phosphorylation
## 8967 histone H2A-K13 ubiquitination
## 8968 histone H2A-K15 ubiquitination
## 8969 histone H2A-K5 acetylation
## 8970 histone H2B conserved C-terminal lysine ubiquitination
## 8971 histone H2B-K12 acetylation
## 8972 histone H2B-K5 acetylation
## 8973 histone H3-K14 acetyltransferase complex
## 8974 histone H3-K4 acetylation
## 8975 histone H3-K79 methylation
## 8976 histone H3-K9 dimethylation
## 8977 histone H3-S10 phosphorylation involved in chromosome condensation
## 8978 histone H3-T3 phosphorylation
## 8979 histone H3-T6 phosphorylation
## 8980 histone H3-Y41 phosphorylation
## 8981 histone H4-K20 demethylation
## 8982 histone H4-K20 dimethylation
## 8983 histone kinase activity (H3-S10 specific)
## 8984 histone kinase activity (H3-T3 specific)
## 8985 histone kinase activity (H3-T6 specific)
## 8986 histone kinase activity (H3-Y41 specific)
## 8987 histone locus body
## 8988 histone methyltransferase activity (H3-K79 specific)
## 8989 histone pre-mRNA stem-loop binding
## 8990 histone succinyltransferase activity
## 8991 histone-glutamine methyltransferase activity
## 8992 HLA-A specific activating MHC class I receptor activity
## 8993 HLA-A specific inhibitory MHC class I receptor activity
## 8994 HLA-B specific inhibitory MHC class I receptor activity
## 8995 holo-[acyl-carrier-protein] synthase activity
## 8996 homocysteine metabolic process
## 8997 homologous recombination
## 8998 hormone binding
## 8999 hormone biosynthetic process
## 9000 hormone catabolic process
## 9001 hormone metabolic process
## 9002 hormone receptor binding
## 9003 HRI-mediated signaling
## 9004 Hsp27 protein binding
## 9005 HSP90-CDC37 chaperone complex
## 9006 HULC complex
## 9007 hyaloid vascular plexus regression
## 9008 hyaluronan metabolic process
## 9009 hyaluronoglucuronidase activity
## 9010 hydrogen peroxide metabolic process
## 9011 hydrogen sulfide biosynthetic process
## 9012 hydrogen sulfide metabolic process
## 9013 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in cyclic amides
## 9014 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides
## 9015 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amidines
## 9016 hydroxyapatite binding
## 9017 hydroxylysine biosynthetic process
## 9018 hydroxymethyl-, formyl- and related transferase activity
## 9019 hydroxymethylglutaryl-CoA hydrolase activity
## 9020 hydroxymethylglutaryl-CoA lyase activity
## 9021 hydroxymethylglutaryl-CoA reductase (NADPH) activity
## 9022 hydroxymethylglutaryl-CoA reductase activity
## 9023 hydroxymethylglutaryl-CoA synthase activity
## 9024 hydroxyproline transport
## 9025 hydroxypyruvate reductase activity
## 9026 hypermethylation of CpG island
## 9027 hypochlorous acid biosynthetic process
## 9028 hypoxanthine phosphoribosyltransferase activity
## 9029 hypoxia-inducible factor-asparagine oxygenase activity
## 9030 ICAM-3 receptor activity
## 9031 icosanoid biosynthetic process
## 9032 IgA binding
## 9033 IgE binding
## 9034 IgG immunoglobulin transcytosis in epithelial cells mediated by FcRn immunoglobulin receptor
## 9035 IkappaB kinase complex binding
## 9036 imidazolonepropionase activity
## 9037 immune complex formation
## 9038 immune response in brain or nervous system
## 9039 immune response in nasopharyngeal-associated lymphoid tissue
## 9040 immune response-regulating signaling pathway
## 9041 immunoglobulin complex
## 9042 immunoglobulin complex, circulating
## 9043 immunoglobulin heavy chain V-D-J recombination
## 9044 immunoglobulin V(D)J recombination
## 9045 IMP 5'-nucleotidase activity
## 9046 IMP biosynthetic process
## 9047 IMP catabolic process
## 9048 IMP salvage
## 9049 inactivation of X chromosome by DNA methylation
## 9050 inactivation of X chromosome by genetic imprinting
## 9051 inactivation of X chromosome by heterochromatin assembly
## 9052 induction by virus of host cell-cell fusion
## 9053 induction of bacterial agglutination
## 9054 induction of programmed cell death
## 9055 induction of synaptic vesicle exocytosis by positive regulation of presynaptic cytosolic calcium ion concentration
## 9056 inflammatory cell apoptotic process
## 9057 inhibin binding
## 9058 inhibin-betaglycan-ActRII complex
## 9059 inhibition of cysteine-type endopeptidase activity
## 9060 inhibitory MHC class I receptor activity
## 9061 innate immune response activating cell surface receptor signaling pathway
## 9062 innate immune response-activating signal transduction
## 9063 inner cell mass cell differentiation
## 9064 inner cell mass cell fate commitment
## 9065 inner cell mass cellular morphogenesis
## 9066 inner dense plaque of desmosome
## 9067 inner dynein arm
## 9068 inner ear auditory receptor cell differentiation
## 9069 inner medullary collecting duct development
## 9070 inorganic anion import across plasma membrane
## 9071 inorganic cation import across plasma membrane
## 9072 inorganic cation transmembrane transporter activity
## 9073 inorganic diphosphate transmembrane transporter activity
## 9074 inorganic diphosphate transport
## 9075 inorganic phosphate transmembrane transporter activity
## 9076 inosine-diphosphatase activity
## 9077 inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## 9078 inositol bisphosphate phosphatase activity
## 9079 inositol hexakisphosphate 5-kinase activity
## 9080 inositol hexakisphosphate kinase activity
## 9081 inositol pentakisphosphate 2-kinase activity
## 9082 inositol phosphorylation
## 9083 inositol trisphosphate phosphatase activity
## 9084 inositol-1,3,4-trisphosphate 4-phosphatase activity
## 9085 inositol-3,4-bisphosphate 4-phosphatase activity
## 9086 insulin catabolic process
## 9087 insulin metabolic process
## 9088 insulin receptor complex
## 9089 insulin-activated receptor activity
## 9090 insulin-like growth factor-activated receptor activity
## 9091 integral component of endoplasmic reticulum-Golgi intermediate compartment (ERGIC) membrane
## 9092 integral component of omegasome membrane
## 9093 integral component of postsynaptic specialization membrane
## 9094 integral component of the cytoplasmic side of the plasma membrane
## 9095 integrated stress response signaling
## 9096 integrin activation
## 9097 integrin alpha10-beta1 complex
## 9098 integrin alpha11-beta1 complex
## 9099 integrin alpha2-beta1 complex
## 9100 integrin alpha3-beta1 complex
## 9101 integrin alpha4-beta1 complex
## 9102 integrin alpha5-beta1 complex
## 9103 integrin alpha7-beta1 complex
## 9104 integrin alpha8-beta1 complex
## 9105 integrin alpha9-beta1 complex
## 9106 integrin alphaIIb-beta3 complex
## 9107 integrin alphaL-beta2 complex
## 9108 integrin alphaM-beta2 complex
## 9109 integrin alphav-beta5 complex
## 9110 integrin alphav-beta6 complex
## 9111 integrin alphav-beta8 complex
## 9112 integrin alphaX-beta2 complex
## 9113 interferon-gamma binding
## 9114 interleukin-1 receptor binding
## 9115 interleukin-1, type I receptor binding
## 9116 interleukin-1, type I, activating receptor activity
## 9117 interleukin-1, type II receptor binding
## 9118 interleukin-10 production
## 9119 interleukin-12 receptor complex
## 9120 interleukin-13-mediated signaling pathway
## 9121 interleukin-16 binding
## 9122 interleukin-16 receptor activity
## 9123 interleukin-17 receptor activity
## 9124 interleukin-18 receptor activity
## 9125 interleukin-18 receptor complex
## 9126 interleukin-21 receptor activity
## 9127 interleukin-23 binding
## 9128 interleukin-23 complex
## 9129 interleukin-23 receptor binding
## 9130 interleukin-23 receptor complex
## 9131 interleukin-28 receptor complex
## 9132 interleukin-4 receptor binding
## 9133 interleukin-6 binding
## 9134 interleukin-6 receptor activity
## 9135 interleukin-6 receptor complex
## 9136 Intermediate conductance calcium-activated potassium channel activity
## 9137 intermediate filament-based process
## 9138 internode region of axon
## 9139 interstitial matrix
## 9140 intestinal cholesterol absorption
## 9141 intestinal epithelial cell migration
## 9142 intestinal hexose absorption
## 9143 intestinal lipid absorption
## 9144 intracellular canaliculus
## 9145 intracellular pH reduction
## 9146 intraciliary anterograde transport
## 9147 intraciliary transport particle B binding
## 9148 intrahepatic bile duct development
## 9149 intramanchette transport
## 9150 intramembranous ossification
## 9151 intramolecular transferase activity, phosphotransferases
## 9152 intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## 9153 intrinsic apoptotic signaling pathway in response to osmotic stress
## 9154 intrinsic component of external side of plasma membrane
## 9155 intrinsic component of Golgi membrane
## 9156 intrinsic component of organelle membrane
## 9157 inward rectifier potassium channel activity
## 9158 iodide transport
## 9159 ion binding
## 9160 ion channel regulator activity
## 9161 IRE1-RACK1-PP2A complex
## 9162 IRES-dependent translational initiation of linear mRNA
## 9163 iron import into the mitochondrion
## 9164 iron incorporation into metallo-sulfur cluster
## 9165 iron ion import across cell outer membrane
## 9166 iron ion transmembrane transport
## 9167 iron-cytochrome-c reductase activity
## 9168 isocitrate dehydrogenase (NADP+) activity
## 9169 isocitrate dehydrogenase activity
## 9170 isoleucine biosynthetic process
## 9171 isoleucine metabolic process
## 9172 isopeptide cross-linking via N6-glycyl-L-lysine
## 9173 isoprenoid metabolic process
## 9174 isotype switching to IgG isotypes
## 9175 isoursodeoxycholate 7-beta-dehydrogenase (NAD+) activity
## 9176 ISWI-type complex
## 9177 itaconyl-CoA hydratase activity
## 9178 ITP catabolic process
## 9179 ITP metabolic process
## 9180 JUN kinase activity
## 9181 JUN phosphorylation
## 9182 junctional sarcoplasmic reticulum membrane
## 9183 K11-linked polyubiquitin modification-dependent protein binding
## 9184 katanin complex
## 9185 KDEL sequence binding
## 9186 keratinocyte development
## 9187 ketohexokinase activity
## 9188 ketone body catabolic process
## 9189 ketone catabolic process
## 9190 killing by host of symbiont cells
## 9191 kinase inhibitor activity
## 9192 kinase regulator activity
## 9193 kinesin II complex
## 9194 Kit signaling pathway
## 9195 Krueppel-associated box domain binding
## 9196 L-alanine import across plasma membrane
## 9197 L-alanine transmembrane transporter activity
## 9198 L-alanine transport
## 9199 L-allo-threonine aldolase activity
## 9200 L-arginine import across plasma membrane
## 9201 L-arginine transmembrane transport
## 9202 L-arginine transmembrane transporter activity
## 9203 L-ascorbate:sodium symporter activity
## 9204 L-ascorbic acid biosynthetic process
## 9205 L-ascorbic acid transmembrane transport
## 9206 L-ascorbic acid transmembrane transporter activity
## 9207 L-aspartate import across plasma membrane
## 9208 L-aspartate transmembrane transport
## 9209 L-cysteine desulfurase complex
## 9210 L-cystine transmembrane transporter activity
## 9211 L-cystine transport
## 9212 L-dopa decarboxylase activator activity
## 9213 L-dopa O-methyltransferase activity
## 9214 L-fucose mutarotase activity
## 9215 L-glucuronate reductase activity
## 9216 L-glutamate transmembrane transport
## 9217 L-glutamate transmembrane transporter activity
## 9218 L-gulonate 3-dehydrogenase activity
## 9219 L-histidine import across plasma membrane
## 9220 L-histidine transmembrane export from vacuole
## 9221 L-histidine transmembrane transport
## 9222 L-hydroxyproline transmembrane transporter activity
## 9223 L-iditol 2-dehydrogenase activity
## 9224 L-iduronidase activity
## 9225 L-isoleucine transaminase activity
## 9226 L-leucine transaminase activity
## 9227 L-leucine:2-oxoglutarate aminotransferase activity
## 9228 L-lysine catabolic process
## 9229 L-malate dehydrogenase activity
## 9230 L-methionine-(R)-S-oxide reductase activity
## 9231 L-methionine-(S)-S-oxide reductase activity
## 9232 L-methionine:thioredoxin-disulfide S-oxidoreductase activity
## 9233 L-ornithine transmembrane transport
## 9234 L-ornithine transmembrane transporter activity
## 9235 L-phenylalanine catabolic process
## 9236 L-phenylalanine metabolic process
## 9237 L-phosphoserine phosphatase activity
## 9238 L-proline transmembrane transporter activity
## 9239 L-serine catabolic process
## 9240 L-serine import across plasma membrane
## 9241 L-serine-phosphatidylethanolamine phosphatidyltransferase activity
## 9242 L-seryl-tRNA(Sec) kinase activity
## 9243 L-threonine transmembrane transporter activity
## 9244 L-valine transaminase activity
## 9245 L-xylitol catabolic process
## 9246 L-xylitol metabolic process
## 9247 L-xylulose reductase (NAD+) activity
## 9248 L-xylulose reductase (NADP+) activity
## 9249 labyrinthine layer morphogenesis
## 9250 lactate metabolic process
## 9251 lactic acid secretion
## 9252 lactose binding
## 9253 lactose biosynthetic process
## 9254 lactose synthase activity
## 9255 lamellipodium assembly involved in ameboidal cell migration
## 9256 laminin receptor activity
## 9257 laminin-1 complex
## 9258 laminin-10 complex
## 9259 laminin-11 complex
## 9260 laminin-5 complex
## 9261 lanosterol synthase activity
## 9262 Las1 complex
## 9263 late endosomal microautophagy
## 9264 late recombination nodule
## 9265 lateral attachment of mitotic spindle microtubules to kinetochore
## 9266 lateral cell cortex
## 9267 lathosterol oxidase activity
## 9268 latrotoxin receptor activity
## 9269 leading edge cell differentiation
## 9270 leak channel activity
## 9271 left ventricular cardiac muscle tissue morphogenesis
## 9272 left/right pattern formation
## 9273 LEM domain binding
## 9274 lens fiber cell apoptotic process
## 9275 leptin receptor activity
## 9276 leptin receptor binding
## 9277 leptomycin B binding
## 9278 leucine biosynthetic process
## 9279 leucine metabolic process
## 9280 leucine transport
## 9281 leucine-tRNA ligase activity
## 9282 leucyl-tRNA aminoacylation
## 9283 leukemia inhibitory factor receptor activity
## 9284 leukemia inhibitory factor signaling pathway
## 9285 leukocyte activation
## 9286 leukocyte activation involved in immune response
## 9287 leukocyte aggregation
## 9288 leukocyte degranulation
## 9289 leukocyte mediated cytotoxicity
## 9290 leukotriene B4 catabolic process
## 9291 leukotriene B4 receptor activity
## 9292 leukotriene receptor activity
## 9293 leukotriene signaling pathway
## 9294 leukotriene-B4 20-monooxygenase activity
## 9295 leukotriene-C(4) hydrolase
## 9296 leukotriene-C4 synthase activity
## 9297 Leydig cell differentiation
## 9298 ligand-activated transcription factor activity
## 9299 ligand-gated ion channel activity
## 9300 ligase activity, forming carbon-nitrogen bonds
## 9301 LIM domain binding
## 9302 limb bud formation
## 9303 linear malto-oligosaccharide phosphorylase activity
## 9304 linear polyubiquitin binding
## 9305 linoleic acid binding
## 9306 linoleoyl-CoA desaturase activity
## 9307 lipase inhibitor activity
## 9308 lipid antigen binding
## 9309 lipid hydroperoxide transport
## 9310 lipid oxidation
## 9311 lipid tube
## 9312 lipid tube assembly
## 9313 lipoate biosynthetic process
## 9314 lipoate synthase activity
## 9315 lipoic acid binding
## 9316 lipophagy
## 9317 lipopolysaccharide transport
## 9318 lipoprotein biosynthetic process
## 9319 lipoprotein lipase activity
## 9320 lipoprotein particle binding
## 9321 lipoprotein particle receptor activity
## 9322 lipoprotein particle receptor binding
## 9323 lipoyl synthase activity (acting on glycine-cleavage complex H protein
## 9324 lipoyl synthase activity (acting on pyruvate dehydrogenase E2 protein)
## 9325 lipoyl(octanoyl) transferase activity
## 9326 lipoyltransferase activity
## 9327 lithium ion binding
## 9328 liver morphogenesis
## 9329 localization within membrane
## 9330 locomotion involved in locomotory behavior
## 9331 long-chain acyl-CoA hydrolase activity
## 9332 long-chain fatty acid catabolic process
## 9333 long-chain-3-hydroxyacyl-CoA dehydrogenase activity
## 9334 long-chain-fatty-acyl-CoA reductase activity
## 9335 longitudinal sarcoplasmic reticulum
## 9336 loop of Henle development
## 9337 low voltage-gated calcium channel activity
## 9338 low-density lipoprotein particle mediated signaling
## 9339 lumenal side of Golgi membrane
## 9340 lung lobe morphogenesis
## 9341 lung smooth muscle development
## 9342 luteinizing hormone secretion
## 9343 luteolysis
## 9344 lutropin-choriogonadotropic hormone receptor binding
## 9345 lymph vessel development
## 9346 lymph vessel morphogenesis
## 9347 lymphocyte aggregation
## 9348 lymphocyte migration
## 9349 lymphocyte migration into lymphoid organs
## 9350 lysophosphatidic acid phosphatase activity
## 9351 lysosomal HOPS complex
## 9352 lysosomal lumen pH elevation
## 9353 lysosomal matrix
## 9354 lytic vacuole
## 9355 m-AAA complex
## 9356 macrophage apoptotic process
## 9357 macrophage colony-stimulating factor receptor activity
## 9358 macrophage colony-stimulating factor receptor binding
## 9359 macrophage fusion
## 9360 macrophage homeostasis
## 9361 macrophage migration inhibitory factor binding
## 9362 macrophage migration inhibitory factor receptor complex
## 9363 macrophage migration inhibitory factor signaling pathway
## 9364 maintenance of cell polarity
## 9365 maintenance of DNA repeat elements
## 9366 maintenance of imprinting at mating-type locus
## 9367 maintenance of lens transparency
## 9368 maintenance of postsynaptic density structure
## 9369 maintenance of protein localization in endoplasmic reticulum
## 9370 maintenance of protein location
## 9371 maintenance of protein location in cell
## 9372 maintenance of transcriptional fidelity during DNA-templated transcription elongation from RNA polymerase II promoter
## 9373 maintenance of translational fidelity
## 9374 malate dehydrogenase (NADP+) activity
## 9375 malate dehydrogenase activity
## 9376 malate-aspartate shuttle
## 9377 male gamete generation
## 9378 male genitalia morphogenesis
## 9379 male germ-line stem cell asymmetric division
## 9380 male meiosis chromosome segregation
## 9381 male meiosis chromosome separation
## 9382 maleylacetoacetate isomerase activity
## 9383 malonate catabolic process
## 9384 malonyl-CoA biosynthetic process
## 9385 malonyl-CoA catabolic process
## 9386 malonyl-CoA decarboxylase activity
## 9387 malonyl-CoA synthetase activity
## 9388 MAML1-RBP-Jkappa- ICN1 complex
## 9389 mammalian oogenesis stage
## 9390 mammary gland branching involved in pregnancy
## 9391 mammary gland fat development
## 9392 mammary gland involution
## 9393 manchette assembly
## 9394 manganese ion homeostasis
## 9395 manganese ion transport
## 9396 manganese transmembrane transporter activity, phosphorylative mechanism
## 9397 mannokinase activity
## 9398 mannose to fructose-6-phosphate metabolic process
## 9399 mannose-6-phosphate isomerase activity
## 9400 mannosyl-glycoprotein endo-beta-N-acetylglucosaminidase activity
## 9401 mannosyl-oligosaccharide glucosidase activity
## 9402 mannosyltransferase complex
## 9403 mast cell activation
## 9404 mast cell differentiation
## 9405 mast cell granule
## 9406 mast cell homeostasis
## 9407 mast cell secretory granule organization
## 9408 mating behavior
## 9409 maturation of 5S rRNA
## 9410 mature B cell differentiation
## 9411 mature conventional dendritic cell differentiation
## 9412 MCM complex binding
## 9413 mechanosensory behavior
## 9414 medial motor column neuron differentiation
## 9415 medium-chain acyl-CoA hydrolase activity
## 9416 medium-chain fatty acid biosynthetic process
## 9417 medium-chain fatty acid-CoA ligase activity
## 9418 medium-chain fatty-acyl-CoA metabolic process
## 9419 meiotic cell cycle checkpoint
## 9420 meiotic chromosome separation
## 9421 meiotic DNA double-strand break formation
## 9422 meiotic DNA double-strand break processing involved in reciprocal meiotic recombination
## 9423 meiotic metaphase I plate congression
## 9424 meiotic metaphase plate congression
## 9425 meiotic nuclear division
## 9426 meiotic recombination checkpoint
## 9427 meiotic spindle assembly checkpoint
## 9428 meiotic spindle midzone
## 9429 meiotic spindle pole
## 9430 melanocortin receptor activity
## 9431 melanocyte migration
## 9432 melanocyte-stimulating hormone receptor activity
## 9433 membrane assembly
## 9434 membrane attack complex
## 9435 membrane bending
## 9436 membrane biogenesis
## 9437 membrane depolarization during AV node cell action potential
## 9438 membrane depolarization during bundle of His cell action potential
## 9439 membrane depolarization during Purkinje myocyte cell action potential
## 9440 membrane disruption in other organism
## 9441 membrane lipid metabolic process
## 9442 membrane microdomain
## 9443 membrane protein proteolysis involved in retrograde protein transport, ER to cytosol
## 9444 membrane raft distribution
## 9445 membrane raft organization
## 9446 membrane repolarization during atrial cardiac muscle cell action potential
## 9447 membrane tubulation
## 9448 membrane-bounded organelle
## 9449 memory B cell differentiation
## 9450 memory T cell differentiation
## 9451 memory T cell proliferation
## 9452 menaquinone catabolic process
## 9453 mercury ion transport
## 9454 mesenchymal stem cell differentiation
## 9455 mesenchymal to epithelial transition
## 9456 mesoderm migration involved in gastrulation
## 9457 mesoderm morphogenesis
## 9458 mesonephric duct development
## 9459 mesonephric tubule development
## 9460 messenger ribonucleoprotein complex assembly
## 9461 metabolite repair
## 9462 metallochaperone activity
## 9463 metanephric ascending thin limb development
## 9464 metanephric collecting duct development
## 9465 metanephric cortex development
## 9466 metanephric cortical collecting duct development
## 9467 metanephric distal tubule development
## 9468 metanephric mesenchymal cell differentiation
## 9469 metanephric mesenchymal cell proliferation involved in metanephros development
## 9470 metanephric mesenchyme development
## 9471 metanephric mesenchyme morphogenesis
## 9472 metanephric part of ureteric bud development
## 9473 metanephric S-shaped body morphogenesis
## 9474 metanephric smooth muscle tissue development
## 9475 metencephalon development
## 9476 methione N-acyltransferase activity
## 9477 methionine adenosyltransferase activity
## 9478 methionine adenosyltransferase regulator activity
## 9479 methotrexate transmembrane transporter activity
## 9480 methotrexate transport
## 9481 methylarsonate reductase activity
## 9482 methylated-DNA-[protein]-cysteine S-methyltransferase activity
## 9483 methylcrotonoyl-CoA carboxylase activity
## 9484 methylcrotonoyl-CoA carboxylase complex
## 9485 methylcytosine dioxygenase activity
## 9486 methylenetetrahydrofolate dehydrogenase [NAD(P)+] activity
## 9487 methylglutaconyl-CoA hydratase activity
## 9488 methylglyoxal biosynthetic process
## 9489 methylglyoxal catabolic process to lactate
## 9490 methylglyoxal metabolic process
## 9491 methylglyoxal reductase (NADPH-dependent, acetol producing)
## 9492 methylglyoxal synthase activity
## 9493 methylmalonyl-CoA mutase activity
## 9494 methylthiotransferase activity
## 9495 mevalonate kinase activity
## 9496 mevalonate transmembrane transporter activity
## 9497 mevalonate transport
## 9498 MHC class I protein complex assembly
## 9499 MHC class Ib protein complex assembly
## 9500 MHC class II protein binding, via antigen binding groove
## 9501 MHC class II protein complex assembly
## 9502 microfibril binding
## 9503 microglial cell activation involved in immune response
## 9504 microspike
## 9505 microspike assembly
## 9506 microtubule cytoskeleton organization involved in establishment of planar polarity
## 9507 microtubule end
## 9508 microtubule lateral binding
## 9509 microtubule plus end polymerase
## 9510 microtubule plus-end directed mitotic chromosome migration
## 9511 microtubule sliding
## 9512 microvillus organization
## 9513 midbrain dopaminergic neuron differentiation
## 9514 midbrain-hindbrain boundary development
## 9515 mineralocorticoid receptor signaling pathway
## 9516 minor groove of adenine-thymine-rich DNA binding
## 9517 miRNA transport
## 9518 MIS12/MIND type complex
## 9519 Mis6-Sim4 complex
## 9520 mismatch base pair DNA N-glycosylase activity
## 9521 mismatch repair involved in maintenance of fidelity involved in DNA-dependent DNA replication
## 9522 MIT domain binding
## 9523 mitigation of host defenses by symbiont
## 9524 mitochondria-nucleus signaling pathway
## 9525 mitochondrial acetyl-CoA biosynthetic process from pyruvate
## 9526 mitochondrial ADP transmembrane transport
## 9527 mitochondrial asparaginyl-tRNA aminoacylation
## 9528 mitochondrial ATP transmembrane transport
## 9529 mitochondrial ATP-gated potassium channel complex
## 9530 mitochondrial citrate transmembrane transport
## 9531 mitochondrial crista junction
## 9532 mitochondrial degradosome
## 9533 mitochondrial DNA-directed RNA polymerase complex
## 9534 mitochondrial double-strand break repair via homologous recombination
## 9535 mitochondrial endopeptidase Clp complex
## 9536 mitochondrial FAD transmembrane transport
## 9537 mitochondrial fatty acid beta-oxidation multienzyme complex
## 9538 mitochondrial L-ornithine transmembrane transport
## 9539 mitochondrial membrane fission
## 9540 mitochondrial mRNA catabolic process
## 9541 mitochondrial mRNA polyadenylation
## 9542 mitochondrial mRNA processing
## 9543 mitochondrial NAD transmembrane transport
## 9544 mitochondrial nucleoid organization
## 9545 mitochondrial outer membrane permeabilization involved in programmed cell death
## 9546 mitochondrial phosphate ion transmembrane transport
## 9547 mitochondrial protein catabolic process
## 9548 mitochondrial proton-transporting ATP synthase, stator stalk
## 9549 mitochondrial respirasome assembly
## 9550 mitochondrial ribonuclease P complex
## 9551 mitochondrial RNA 3'-end processing
## 9552 mitochondrial RNA 5'-end processing
## 9553 mitochondrial RNA catabolic process
## 9554 mitochondrial RNA metabolic process
## 9555 mitochondrial RNA processing
## 9556 mitochondrial seryl-tRNA aminoacylation
## 9557 mitochondrial transcription factor activity
## 9558 mitochondrial tRNA 5'-end processing
## 9559 mitochondrial tRNA methylation
## 9560 mitochondrial tRNA processing
## 9561 mitochondrial tRNA pseudouridine synthesis
## 9562 mitochondrial unfolded protein response
## 9563 mitochondrion targeting sequence binding
## 9564 mitochondrion-derived vesicle
## 9565 mitotic cohesin complex
## 9566 mitotic DNA replication
## 9567 mitotic DNA replication preinitiation complex assembly
## 9568 mitotic sister chromatid biorientation
## 9569 mitral valve formation
## 9570 Mo-molybdopterin cofactor biosynthetic process
## 9571 modification by virus of host mRNA processing
## 9572 modification of postsynaptic structure
## 9573 modification of synaptic structure
## 9574 modification of synaptic structure, modulating synaptic transmission
## 9575 modified amino acid binding
## 9576 modulation by host of viral genome replication
## 9577 modulation by host of viral transcription
## 9578 molybdate ion transmembrane transporter activity
## 9579 molybdate ion transport
## 9580 molybdenum ion binding
## 9581 molybdopterin cofactor binding
## 9582 molybdopterin cofactor biosynthetic process
## 9583 monoacylglycerol biosynthetic process
## 9584 monomeric IgA immunoglobulin complex
## 9585 mononuclear cell proliferation
## 9586 monopolar spindle attachment to meiosis I kinetochore
## 9587 monosialoganglioside sialyltransferase activity
## 9588 monounsaturated fatty acid biosynthetic process
## 9589 monovalent inorganic cation transport
## 9590 morphogenesis of a branching epithelium
## 9591 morphogenesis of embryonic epithelium
## 9592 motor neuron migration
## 9593 mRNA (adenine-N1-)-methyltransferase activity
## 9594 mRNA (cytidine-5-)-methyltransferase activity
## 9595 mRNA (N6-adenosine)-methyltransferase activity
## 9596 mRNA 5'-splice site recognition
## 9597 mRNA binding involved in posttranscriptional gene silencing
## 9598 mRNA cap binding complex binding
## 9599 mRNA CDS binding
## 9600 mRNA cleavage involved in gene silencing by siRNA
## 9601 mRNA export from nucleus in response to heat stress
## 9602 mRNA guanylyltransferase activity
## 9603 mRNA localization resulting in posttranscriptional regulation of gene expression
## 9604 mRNA metabolic process
## 9605 MSL complex
## 9606 mucin granule
## 9607 mucus secretion
## 9608 Mullerian duct regression
## 9609 multi-ciliated epithelial cell differentiation
## 9610 multi-eIF complex
## 9611 multi-organism membrane organization
## 9612 multinuclear osteoclast differentiation
## 9613 muramyl dipeptide binding
## 9614 muscle cell projection membrane
## 9615 muscle myosin complex
## 9616 muscle organ morphogenesis
## 9617 muscle thin filament tropomyosin
## 9618 muscle tissue development
## 9619 muscular septum morphogenesis
## 9620 MutLalpha complex
## 9621 MutSbeta complex
## 9622 mycophenolic acid acyl-glucuronide esterase activity
## 9623 myeloid cell development
## 9624 myeloid dendritic cell activation
## 9625 myeloid dendritic cell chemotaxis
## 9626 myeloid leukocyte activation
## 9627 myeloid leukocyte differentiation
## 9628 myo-inositol import across plasma membrane
## 9629 myo-inositol:proton symporter activity
## 9630 myo-inositol:sodium symporter activity
## 9631 myoblast differentiation involved in skeletal muscle regeneration
## 9632 myoblast fate commitment
## 9633 myoblast fusion involved in skeletal muscle regeneration
## 9634 myoblast proliferation
## 9635 myofibroblast contraction
## 9636 myosin filament assembly
## 9637 myosin head/neck binding
## 9638 myosin heavy chain binding
## 9639 myosin I binding
## 9640 myosin II complex
## 9641 myosin II filament
## 9642 myosin light chain kinase activity
## 9643 myosin phosphatase regulator activity
## 9644 myosin tail binding
## 9645 myosin VI binding
## 9646 myotube differentiation involved in skeletal muscle regeneration
## 9647 N-(long-chain-acyl)ethanolamine deacylase activity
## 9648 N-acetyl-beta-D-galactosaminidase activity
## 9649 N-acetyl-L-aspartate-L-glutamate ligase activity
## 9650 N-acetylgalactosamine 4-O-sulfotransferase activity
## 9651 N-acetylgalactosamine kinase activity
## 9652 N-acetylgalactosamine-4-sulfatase activity
## 9653 N-acetylgalactosamine-6-phosphate deacetylase activity
## 9654 N-acetylglucosamine catabolic process
## 9655 N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase activity
## 9656 N-acetylglucosamine-6-phosphate deacetylase activity
## 9657 N-acetylglucosamine-6-sulfatase activity
## 9658 N-acetylmannosamine metabolic process
## 9659 N-acetylneuraminate biosynthetic process
## 9660 N-acetylneuraminate synthase activity
## 9661 N-acylethanolamine metabolic process
## 9662 N-acylglucosamine 2-epimerase activity
## 9663 N-acylmannosamine kinase activity
## 9664 N-acylneuraminate-9-phosphatase activity
## 9665 N-acylneuraminate-9-phosphate synthase activity
## 9666 N-acylsphingosine amidohydrolase activity
## 9667 N-acylsphingosine galactosyltransferase activity
## 9668 N-glycan fucosylation
## 9669 N-glycan processing to lysosome
## 9670 N-sulfoglucosamine sulfohydrolase activity
## 9671 N-terminal myristoylation domain binding
## 9672 N-terminal peptidyl-alanine methylation
## 9673 N-terminal peptidyl-alanine trimethylation
## 9674 N-terminal peptidyl-aspartic acid acetylation
## 9675 N-terminal peptidyl-glycine methylation
## 9676 N-terminal peptidyl-glycine N-myristoylation
## 9677 N-terminal peptidyl-L-cysteine N-palmitoylation
## 9678 N-terminal peptidyl-proline dimethylation
## 9679 N-terminal peptidyl-proline methylation
## 9680 N-terminal peptidyl-serine acetylation
## 9681 N-terminal peptidyl-serine dimethylation
## 9682 N-terminal peptidyl-serine methylation
## 9683 N-terminal peptidyl-serine trimethylation
## 9684 N-terminal protein amino acid methylation
## 9685 N-terminal protein amino acid modification
## 9686 N-terminal protein N-methyltransferase activity
## 9687 N(1),N(12)-diacetylspermine:oxygen oxidoreductase (3-acetamidopropanal-forming) activity
## 9688 N(6)-L-threonylcarbamoyladenine synthase activity
## 9689 N1-acetylspermidine:oxygen oxidoreductase (3-acetamidopropanal-forming) activity
## 9690 N1-acetylspermine:oxygen oxidoreductase (3-acetamidopropanal-forming) activity
## 9691 N6-isopentenyladenosine methylthiotransferase activity
## 9692 NAADP-sensitive calcium-release channel activity
## 9693 NAD catabolic process
## 9694 NAD salvage
## 9695 NAD transmembrane transporter activity
## 9696 NAD-dependent histone deacetylase activity (H3-K18 specific)
## 9697 NAD-dependent histone deacetylase activity (H4-K16 specific)
## 9698 NAD(P)+ transhydrogenase (B-specific) activity
## 9699 NAD(P)+ transhydrogenase activity
## 9700 NAD(P)+-protein-arginine ADP-ribosyltransferase activity
## 9701 NAD(P)H oxidase H2O2-forming activity
## 9702 NAD+ diphosphatase activity
## 9703 NAD+ synthase (glutamine-hydrolyzing) activity
## 9704 NADH binding
## 9705 NADH oxidation
## 9706 NADHX epimerase activity
## 9707 NADP biosynthetic process
## 9708 NADPH dehydrogenase (quinone) activity
## 9709 NADPH oxidation
## 9710 NADPH-adrenodoxin reductase activity
## 9711 NADPHX epimerase activity
## 9712 naphthalene metabolic process
## 9713 natural killer cell activation involved in immune response
## 9714 natural killer cell chemotaxis
## 9715 natural killer cell lectin-like receptor binding
## 9716 natural killer cell tolerance induction
## 9717 ncRNA polyadenylation
## 9718 ncRNA polyadenylation involved in polyadenylation-dependent ncRNA catabolic process
## 9719 ncRNA transcription
## 9720 NEDD8 activating enzyme activity
## 9721 NEDD8 ligase activity
## 9722 NEDD8 transferase activity
## 9723 negative regulation by host of symbiont molecular function
## 9724 negative regulation by host of viral exo-alpha-sialidase activity
## 9725 negative regulation by host of viral glycoprotein metabolic process
## 9726 negative regulation by host of viral release from host cell
## 9727 negative regulation of actin filament bundle assembly
## 9728 negative regulation of actin filament depolymerization
## 9729 negative regulation of actin nucleation
## 9730 negative regulation of activation-induced cell death of T cells
## 9731 negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## 9732 negative regulation of aldosterone biosynthetic process
## 9733 negative regulation of all-trans-retinyl-ester hydrolase, 11-cis retinol forming activity
## 9734 negative regulation of amino acid transport
## 9735 negative regulation of amniotic stem cell differentiation
## 9736 negative regulation of anion channel activity
## 9737 negative regulation of antifungal innate immune response
## 9738 negative regulation of antigen processing and presentation
## 9739 negative regulation of antigen processing and presentation of peptide antigen via MHC class I
## 9740 negative regulation of apolipoprotein binding
## 9741 negative regulation of apoptotic cell clearance
## 9742 negative regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## 9743 negative regulation of asymmetric cell division
## 9744 negative regulation of ATF6-mediated unfolded protein response
## 9745 negative regulation of ATP biosynthetic process
## 9746 negative regulation of ATP citrate synthase activity
## 9747 negative regulation of autophagic cell death
## 9748 negative regulation of autophagy of mitochondrion
## 9749 negative regulation of axon extension involved in regeneration
## 9750 negative regulation of axon regeneration
## 9751 negative regulation of binding of sperm to zona pellucida
## 9752 negative regulation of blood coagulation
## 9753 negative regulation of blood coagulation, intrinsic pathway
## 9754 negative regulation of blood vessel endothelial cell differentiation
## 9755 negative regulation of blood vessel remodeling
## 9756 negative regulation of blood-brain barrier permeability
## 9757 negative regulation of branching involved in lung morphogenesis
## 9758 negative regulation of branching involved in ureteric bud morphogenesis
## 9759 negative regulation of branching morphogenesis of a nerve
## 9760 negative regulation of brown fat cell differentiation
## 9761 negative regulation of calcidiol 1-monooxygenase activity
## 9762 negative regulation of calcium import into the mitochondrion
## 9763 negative regulation of calcium ion import
## 9764 negative regulation of calcium-dependent cell-cell adhesion
## 9765 negative regulation of cardiac muscle cell differentiation
## 9766 negative regulation of cardiac muscle hypertrophy in response to stress
## 9767 negative regulation of cardiac myofibril assembly
## 9768 negative regulation of caveolin-mediated endocytosis
## 9769 negative regulation of CD4 production
## 9770 negative regulation of CD4-positive, alpha-beta T cell activation
## 9771 negative regulation of CD4-positive, alpha-beta T cell costimulation
## 9772 negative regulation of CD4-positive, alpha-beta T cell differentiation
## 9773 negative regulation of CD8-positive, alpha-beta T cell activation
## 9774 negative regulation of CD8-positive, alpha-beta T cell proliferation
## 9775 negative regulation of cell adhesion molecule production
## 9776 negative regulation of cell cycle G2/M phase transition
## 9777 negative regulation of cell cycle process
## 9778 negative regulation of cell proliferation involved in heart valve morphogenesis
## 9779 negative regulation of cell proliferation involved in kidney development
## 9780 negative regulation of cell proliferation involved in mesonephros development
## 9781 negative regulation of cell-cell adhesion mediated by integrin
## 9782 negative regulation of cellular amino acid metabolic process
## 9783 negative regulation of cellular component movement
## 9784 negative regulation of cellular extravasation
## 9785 negative regulation of cellular metabolic process
## 9786 negative regulation of cellular respiration
## 9787 negative regulation of cellular response to insulin stimulus
## 9788 negative regulation of cellular response to testosterone stimulus
## 9789 negative regulation of cellular response to transforming growth factor beta stimulus
## 9790 negative regulation of centriole-centriole cohesion
## 9791 negative regulation of cerebellar granule cell precursor proliferation
## 9792 negative regulation of cGMP-mediated signaling
## 9793 negative regulation of chaperone-mediated autophagy
## 9794 negative regulation of chemokine (C-C motif) ligand 4 production
## 9795 negative regulation of chemokine (C-X-C motif) ligand 9 production
## 9796 negative regulation of chemokine-mediated signaling pathway
## 9797 negative regulation of cholangiocyte apoptotic process
## 9798 negative regulation of chondrocyte proliferation
## 9799 negative regulation of chronic inflammatory response
## 9800 negative regulation of clathrin-dependent endocytosis
## 9801 negative regulation of coagulation
## 9802 negative regulation of collagen biosynthetic process
## 9803 negative regulation of collagen catabolic process
## 9804 negative regulation of constitutive secretory pathway
## 9805 negative regulation of convergent extension involved in axis elongation
## 9806 negative regulation of cortisol biosynthetic process
## 9807 negative regulation of cortisol secretion
## 9808 negative regulation of cyclin-dependent protein kinase activity
## 9809 negative regulation of cytosolic calcium ion concentration
## 9810 negative regulation of cytotoxic T cell differentiation
## 9811 negative regulation of death-inducing signaling complex assembly
## 9812 negative regulation of dendritic cell antigen processing and presentation
## 9813 negative regulation of dendritic spine morphogenesis
## 9814 negative regulation of dense core granule biogenesis
## 9815 negative regulation of dephosphorylation
## 9816 negative regulation of development of symbiont involved in interaction with host
## 9817 negative regulation of DNA duplex unwinding
## 9818 negative regulation of DNA endoreduplication
## 9819 negative regulation of DNA helicase activity
## 9820 negative regulation of DNA repair
## 9821 negative regulation of DNA-dependent DNA replication
## 9822 negative regulation of DNA-templated transcription, elongation
## 9823 negative regulation of double-stranded telomeric DNA binding
## 9824 negative regulation of eating behavior
## 9825 negative regulation of ectoderm development
## 9826 negative regulation of elastin catabolic process
## 9827 negative regulation of electron transfer activity
## 9828 negative regulation of endocytic recycling
## 9829 negative regulation of endoribonuclease activity
## 9830 negative regulation of entry of bacterium into host cell
## 9831 negative regulation of epidermal cell differentiation
## 9832 negative regulation of epithelial cell differentiation
## 9833 negative regulation of ER-associated ubiquitin-dependent protein catabolic process
## 9834 negative regulation of erythrocyte differentiation
## 9835 negative regulation of establishment of endothelial barrier
## 9836 negative regulation of establishment of T cell polarity
## 9837 negative regulation of estrogen receptor binding
## 9838 negative regulation of exo-alpha-sialidase activity
## 9839 negative regulation of extracellular matrix constituent secretion
## 9840 negative regulation of extracellular matrix disassembly
## 9841 negative regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## 9842 negative regulation of fatty acid metabolic process
## 9843 negative regulation of fatty acid transport
## 9844 negative regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## 9845 negative regulation of ferroptosis
## 9846 negative regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## 9847 negative regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## 9848 negative regulation of forebrain neuron differentiation
## 9849 negative regulation of formation of translation preinitiation complex
## 9850 negative regulation of G protein-coupled receptor internalization
## 9851 negative regulation of gene silencing by miRNA
## 9852 negative regulation of germinal center formation
## 9853 negative regulation of glial cell proliferation
## 9854 negative regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## 9855 negative regulation of glomerular filtration
## 9856 negative regulation of glomerular filtration by angiotensin
## 9857 negative regulation of glucocorticoid biosynthetic process
## 9858 negative regulation of glucokinase activity
## 9859 negative regulation of glucose catabolic process to lactate via pyruvate
## 9860 negative regulation of glucosylceramide biosynthetic process
## 9861 negative regulation of glycogen (starch) synthase activity
## 9862 negative regulation of glycoprotein metabolic process
## 9863 negative regulation of Golgi to plasma membrane protein transport
## 9864 negative regulation of growth hormone receptor signaling pathway
## 9865 negative regulation of growth hormone secretion
## 9866 negative regulation of growth rate
## 9867 negative regulation of GTP binding
## 9868 negative regulation of GTP cyclohydrolase I activity
## 9869 negative regulation of guanyl-nucleotide exchange factor activity
## 9870 negative regulation of heart rate
## 9871 negative regulation of helicase activity
## 9872 negative regulation of hematopoietic stem cell differentiation
## 9873 negative regulation of hemoglobin biosynthetic process
## 9874 negative regulation of hepatic stellate cell activation
## 9875 negative regulation of hepatic stellate cell migration
## 9876 negative regulation of hepatocyte proliferation
## 9877 negative regulation of high voltage-gated calcium channel activity
## 9878 negative regulation of histone H3-K14 acetylation
## 9879 negative regulation of histone H3-K36 methylation
## 9880 negative regulation of histone H3-K9 acetylation
## 9881 negative regulation of histone H3-K9 dimethylation
## 9882 negative regulation of histone H3-K9 methylation
## 9883 negative regulation of homotypic cell-cell adhesion
## 9884 negative regulation of hormone secretion
## 9885 negative regulation of humoral immune response mediated by circulating immunoglobulin
## 9886 negative regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## 9887 negative regulation of hydrolase activity
## 9888 negative regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## 9889 negative regulation of immunoglobulin production
## 9890 negative regulation of inositol phosphate biosynthetic process
## 9891 negative regulation of integrin-mediated signaling pathway
## 9892 negative regulation of interferon-alpha production
## 9893 negative regulation of interleukin-1 production
## 9894 negative regulation of interleukin-1-mediated signaling pathway
## 9895 negative regulation of interleukin-18 production
## 9896 negative regulation of interleukin-6-mediated signaling pathway
## 9897 negative regulation of intracellular calcium activated chloride channel activity
## 9898 negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## 9899 negative regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## 9900 negative regulation of iodide transmembrane transport
## 9901 negative regulation of ion transport
## 9902 negative regulation of isotype switching
## 9903 negative regulation of isotype switching to IgA isotypes
## 9904 negative regulation of isotype switching to IgE isotypes
## 9905 negative regulation of lamellipodium assembly
## 9906 negative regulation of late endosome to lysosome transport
## 9907 negative regulation of leucine import
## 9908 negative regulation of leukocyte activation
## 9909 negative regulation of leukocyte migration
## 9910 negative regulation of leukocyte proliferation
## 9911 negative regulation of lipid binding
## 9912 negative regulation of lipid biosynthetic process
## 9913 negative regulation of lipid kinase activity
## 9914 negative regulation of locomotion
## 9915 negative regulation of long-term synaptic depression
## 9916 negative regulation of low-density lipoprotein particle receptor catabolic process
## 9917 negative regulation of lyase activity
## 9918 negative regulation of lymphangiogenesis
## 9919 negative regulation of macrophage apoptotic process
## 9920 negative regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## 9921 negative regulation of mast cell activation
## 9922 negative regulation of mast cell activation involved in immune response
## 9923 negative regulation of mast cell cytokine production
## 9924 negative regulation of mast cell differentiation
## 9925 negative regulation of mature B cell apoptotic process
## 9926 negative regulation of meiotic nuclear division
## 9927 negative regulation of membrane hyperpolarization
## 9928 negative regulation of membrane tubulation
## 9929 negative regulation of mesenchymal cell apoptotic process
## 9930 negative regulation of mesenchymal cell proliferation involved in lung development
## 9931 negative regulation of mesenchymal stem cell differentiation
## 9932 negative regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## 9933 negative regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## 9934 negative regulation of metanephric nephron tubule epithelial cell differentiation
## 9935 negative regulation of microtubule binding
## 9936 negative regulation of mitochondrial membrane permeability
## 9937 negative regulation of mitochondrial membrane permeability involved in apoptotic process
## 9938 negative regulation of mitochondrial translation
## 9939 negative regulation of mitotic cell cycle, embryonic
## 9940 negative regulation of mitotic recombination
## 9941 negative regulation of mitotic sister chromatid separation
## 9942 negative regulation of monocyte activation
## 9943 negative regulation of mononuclear cell proliferation
## 9944 negative regulation of mRNA 3'-end processing
## 9945 negative regulation of mRNA catabolic process
## 9946 negative regulation of muscle atrophy
## 9947 negative regulation of muscle cell apoptotic process
## 9948 negative regulation of MyD88-dependent toll-like receptor signaling pathway
## 9949 negative regulation of myeloid dendritic cell activation
## 9950 negative regulation of myeloid leukocyte differentiation
## 9951 negative regulation of myoblast fusion
## 9952 negative regulation of natural killer cell activation
## 9953 negative regulation of neural crest formation
## 9954 negative regulation of neuron projection regeneration
## 9955 negative regulation of neuron remodeling
## 9956 negative regulation of neuronal action potential
## 9957 negative regulation of neutrophil chemotaxis
## 9958 negative regulation of neutrophil degranulation
## 9959 negative regulation of neutrophil differentiation
## 9960 negative regulation of nitric-oxide synthase biosynthetic process
## 9961 negative regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## 9962 negative regulation of norepinephrine secretion
## 9963 negative regulation of Notch signaling pathway involved in somitogenesis
## 9964 negative regulation of nuclear-transcribed mRNA poly(A) tail shortening
## 9965 negative regulation of oligodendrocyte differentiation
## 9966 negative regulation of oligodendrocyte progenitor proliferation
## 9967 negative regulation of oxidative stress-induced cell death
## 9968 negative regulation of oxidoreductase activity
## 9969 negative regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## 9970 negative regulation of peptide secretion
## 9971 negative regulation of peptidyl-lysine crotonylation
## 9972 negative regulation of peroxidase activity
## 9973 negative regulation of peroxisome proliferator activated receptor signaling pathway
## 9974 negative regulation of phosphatidylcholine biosynthetic process
## 9975 negative regulation of phospholipid biosynthetic process
## 9976 negative regulation of platelet-derived growth factor receptor-alpha signaling pathway
## 9977 negative regulation of polyamine transmembrane transport
## 9978 negative regulation of postsynaptic density organization
## 9979 negative regulation of potassium ion transmembrane transporter activity
## 9980 negative regulation of primary miRNA processing
## 9981 negative regulation of programmed necrotic cell death
## 9982 negative regulation of prostaglandin biosynthetic process
## 9983 negative regulation of proteasomal protein catabolic process
## 9984 negative regulation of protein autoubiquitination
## 9985 negative regulation of protein deubiquitination
## 9986 negative regulation of protein glutathionylation
## 9987 negative regulation of protein homooligomerization
## 9988 negative regulation of protein import into nucleus
## 9989 negative regulation of protein K63-linked ubiquitination
## 9990 negative regulation of protein kinase activity by protein phosphorylation
## 9991 negative regulation of protein lipidation
## 9992 negative regulation of protein localization to cell leading edge
## 9993 negative regulation of protein localization to chromatin
## 9994 negative regulation of protein localization to cilium
## 9995 negative regulation of protein localization to endosome
## 9996 negative regulation of protein localization to kinetochore
## 9997 negative regulation of protein localization to lysosome
## 9998 negative regulation of protein polymerization
## 9999 negative regulation of protein processing involved in protein targeting to mitochondrion
## 10000 negative regulation of protein transport
## 10001 negative regulation of Rac protein signal transduction
## 10002 negative regulation of receptor catabolic process
## 10003 negative regulation of receptor-mediated endocytosis
## 10004 negative regulation of regulatory T cell differentiation
## 10005 negative regulation of relaxation of smooth muscle
## 10006 negative regulation of release of sequestered calcium ion into cytosol
## 10007 negative regulation of renal sodium excretion
## 10008 negative regulation of renin secretion into blood stream
## 10009 negative regulation of respiratory burst involved in inflammatory response
## 10010 negative regulation of response to DNA damage stimulus
## 10011 negative regulation of Rho-dependent protein serine/threonine kinase activity
## 10012 negative regulation of ribosomal DNA heterochromatin assembly
## 10013 negative regulation of ribosome biogenesis
## 10014 negative regulation of ripoptosome assembly involved in necroptotic process
## 10015 negative regulation of RNA catabolic process
## 10016 negative regulation of RNA interference
## 10017 negative regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## 10018 negative regulation of rRNA processing
## 10019 negative regulation of secretion by cell
## 10020 negative regulation of secretion of lysosomal enzymes
## 10021 negative regulation of sequestering of calcium ion
## 10022 negative regulation of serotonin secretion
## 10023 negative regulation of single-species biofilm formation in or on host organism
## 10024 negative regulation of SMAD protein complex assembly
## 10025 negative regulation of smooth muscle cell-matrix adhesion
## 10026 negative regulation of smooth muscle contraction
## 10027 negative regulation of SNARE complex assembly
## 10028 negative regulation of snRNA transcription by RNA polymerase II
## 10029 negative regulation of sodium ion transmembrane transporter activity
## 10030 negative regulation of sodium:proton antiporter activity
## 10031 negative regulation of store-operated calcium channel activity
## 10032 negative regulation of stress granule assembly
## 10033 negative regulation of striated muscle contraction
## 10034 negative regulation of striated muscle tissue development
## 10035 negative regulation of synaptic transmission, dopaminergic
## 10036 negative regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## 10037 negative regulation of T cell extravasation
## 10038 negative regulation of T cell mediated cytotoxicity
## 10039 negative regulation of T cell mediated immunity
## 10040 negative regulation of T-helper 1 cell differentiation
## 10041 negative regulation of T-helper 17 type immune response
## 10042 negative regulation of T-helper 2 cell differentiation
## 10043 negative regulation of T-helper cell differentiation
## 10044 negative regulation of tau-protein kinase activity
## 10045 negative regulation of telomerase RNA reverse transcriptase activity
## 10046 negative regulation of telomere maintenance in response to DNA damage
## 10047 negative regulation of telomeric DNA binding
## 10048 negative regulation of telomeric RNA transcription from RNA pol II promoter
## 10049 negative regulation of the force of heart contraction by chemical signal
## 10050 negative regulation of thioredoxin peroxidase activity by peptidyl-threonine phosphorylation
## 10051 negative regulation of thrombin-activated receptor signaling pathway
## 10052 negative regulation of Toll signaling pathway
## 10053 negative regulation of toll-like receptor 2 signaling pathway
## 10054 negative regulation of tooth mineralization
## 10055 negative regulation of TRAIL-activated apoptotic signaling pathway
## 10056 negative regulation of transcription from RNA polymerase II promoter involved in heart development
## 10057 negative regulation of transforming growth factor beta production
## 10058 negative regulation of transforming growth factor beta3 production
## 10059 negative regulation of translational initiation by iron
## 10060 negative regulation of transport
## 10061 negative regulation of trophoblast cell migration
## 10062 negative regulation of tumor necrosis factor (ligand) superfamily member 11 production
## 10063 negative regulation of type B pancreatic cell proliferation
## 10064 negative regulation of vascular associated smooth muscle cell differentiation
## 10065 negative regulation of vascular associated smooth muscle contraction
## 10066 negative regulation of vascular endothelial cell proliferation
## 10067 negative regulation of vascular endothelial growth factor production
## 10068 negative regulation of vascular endothelial growth factor signaling pathway
## 10069 negative regulation of vasoconstriction
## 10070 negative regulation of ventricular cardiac muscle cell action potential
## 10071 negative regulation of very-low-density lipoprotein particle clearance
## 10072 negative regulation of vesicle fusion
## 10073 negative regulation of viral life cycle
## 10074 negative regulation of viral process
## 10075 negative regulation of vitamin D biosynthetic process
## 10076 negative regulation of voltage-gated potassium channel activity
## 10077 negative regulation of zinc ion transmembrane import
## 10078 nephric duct formation
## 10079 nephric duct morphogenesis
## 10080 nephrogenic mesenchyme morphogenesis
## 10081 nerve development
## 10082 neural fold elevation formation
## 10083 neural plate axis specification
## 10084 neural plate morphogenesis
## 10085 neurofibrillary tangle
## 10086 neurofilament
## 10087 neuron death in response to oxidative stress
## 10088 neuron fate specification
## 10089 neuron projection branch point
## 10090 neuron projection membrane
## 10091 neuron projection regeneration
## 10092 neuron recognition
## 10093 neuron-glial cell signaling
## 10094 neuronal dense core vesicle exocytosis
## 10095 neuronal dense core vesicle lumen
## 10096 neuropeptide catabolic process
## 10097 neuropeptide hormone activity
## 10098 neuropeptide processing
## 10099 neurotransmitter binding
## 10100 neurotransmitter catabolic process
## 10101 neurotransmitter receptor cycle
## 10102 neurotransmitter receptor localization to postsynaptic specialization membrane
## 10103 neurotransmitter receptor metabolic process
## 10104 neurotransmitter receptor transport postsynaptic membrane to endosome
## 10105 neurotransmitter receptor transport, postsynaptic endosome to lysosome
## 10106 neurotrophin TRKA receptor binding
## 10107 neutral sphingomyelin phosphodiesterase activity
## 10108 neutrophil activation
## 10109 neutrophil homeostasis
## 10110 neutrophil migration
## 10111 NF-kappaB complex
## 10112 nicotinate phosphoribosyltransferase activity
## 10113 nitrate catabolic process
## 10114 nitrate reductase activity
## 10115 nitric oxide catabolic process
## 10116 nitric oxide dioxygenase activity
## 10117 nitric oxide homeostasis
## 10118 nitric oxide metabolic process
## 10119 nitric oxide storage
## 10120 nitric oxide-cGMP-mediated signaling pathway
## 10121 nitrite reductase activity
## 10122 nitrobenzene metabolic process
## 10123 nitrogen compound transport
## 10124 NLRP1 inflammasome complex
## 10125 NLS-dependent protein nuclear import complex
## 10126 NMDA selective glutamate receptor signaling pathway
## 10127 Noc1p-Noc2p complex
## 10128 Noc2p-Noc3p complex
## 10129 non-canonical Wnt signaling pathway via JNK cascade
## 10130 non-recombinational repair
## 10131 non-sequence-specific DNA binding, bending
## 10132 nor-spermidine metabolic process
## 10133 norepinephrine binding
## 10134 norepinephrine biosynthetic process
## 10135 norepinephrine secretion
## 10136 norepinephrine transport
## 10137 norepinephrine uptake
## 10138 norepinephrine-epinephrine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## 10139 norepinephrine:sodium symporter activity
## 10140 NOS2-CD74 complex
## 10141 Notch receptor processing, ligand-dependent
## 10142 notochord morphogenesis
## 10143 notochord regression
## 10144 nuclear body organization
## 10145 nuclear cap binding complex
## 10146 nuclear DNA replication
## 10147 nuclear fragmentation involved in apoptotic nuclear change
## 10148 nuclear inner membrane organization
## 10149 nuclear microtubule
## 10150 nuclear migration along microfilament
## 10151 nuclear MIS12/MIND complex
## 10152 nuclear mitotic cohesin complex
## 10153 nuclear polyadenylation-dependent rRNA catabolic process
## 10154 nuclear polyadenylation-dependent tRNA catabolic process
## 10155 nuclear pore localization
## 10156 nuclear pore transmembrane ring
## 10157 nuclear RNA-directed RNA polymerase complex
## 10158 nuclear ubiquitin ligase complex
## 10159 nuclear-transcribed mRNA catabolic process, exonucleolytic
## 10160 nuclear-transcribed mRNA catabolic process, no-go decay
## 10161 nucleic acid transmembrane transporter activity
## 10162 nucleobase-containing compound transport
## 10163 nucleokinesis involved in cell motility in cerebral cortex radial glia guided migration
## 10164 nucleologenesis
## 10165 nucleolus organization
## 10166 nucleolus organizer region
## 10167 nucleoplasmic reticulum
## 10168 nucleoside phosphate metabolic process
## 10169 nucleoside triphosphate catabolic process
## 10170 nucleosome organization
## 10171 nucleotidase activity
## 10172 nucleotide phosphatase activity, acting on free nucleotides
## 10173 nucleotide-excision repair factor 3 complex
## 10174 nucleotide-excision repair, DNA damage removal
## 10175 nucleotide-sugar biosynthetic process
## 10176 nucleotide-sugar metabolic process
## 10177 nucleotide-sugar transmembrane transporter activity
## 10178 nucleus-vacuole junction
## 10179 O-acetyl-ADP-ribose deacetylase activity
## 10180 O-glycan processing, core 1
## 10181 O-phospho-L-serine:2-oxoglutarate aminotransferase activity
## 10182 octanoyl transferase activity (acting on glycine-cleavage complex H protein)
## 10183 octanoyltransferase activity
## 10184 odontoblast differentiation
## 10185 oleamide hydrolase activity
## 10186 oleic acid binding
## 10187 olfactory behavior
## 10188 olfactory bulb interneuron development
## 10189 olfactory bulb interneuron differentiation
## 10190 olfactory nerve development
## 10191 olfactory receptor activity
## 10192 oligopeptidase activity
## 10193 oligopeptide transmembrane transporter activity
## 10194 oligosaccharide-lipid intermediate biosynthetic process
## 10195 oligosaccharyltransferase I complex
## 10196 oligosaccharyltransferase III complex
## 10197 omegasome
## 10198 oncogene-induced cell senescence
## 10199 oncosis
## 10200 oncostatin-M receptor activity
## 10201 oncostatin-M receptor complex
## 10202 oncostatin-M-mediated signaling pathway
## 10203 oocyte growth
## 10204 opioid peptide activity
## 10205 opioid receptor activity
## 10206 opioid receptor signaling pathway
## 10207 opsin binding
## 10208 opsonin binding
## 10209 opsonin receptor activity
## 10210 optic nerve morphogenesis
## 10211 optic nerve structural organization
## 10212 optic placode formation involved in camera-type eye formation
## 10213 orcinol O-methyltransferase activity
## 10214 organ induction
## 10215 organ or tissue specific immune response
## 10216 organelle fusion
## 10217 organelle transport along microtubule
## 10218 organic acid metabolic process
## 10219 organic cyclic compound binding
## 10220 organic substance metabolic process
## 10221 organic substance transport
## 10222 ornithine biosynthetic process
## 10223 ornithine decarboxylase activator activity
## 10224 ornithine decarboxylase activity
## 10225 ornithine decarboxylase inhibitor activity
## 10226 ornithine metabolic process
## 10227 osmosensory signaling pathway
## 10228 osteoclast fusion
## 10229 otic vesicle development
## 10230 outer acrosomal membrane
## 10231 outer dense plaque of desmosome
## 10232 outer dynein arm
## 10233 outer ear morphogenesis
## 10234 outer membrane
## 10235 outer mitochondrial membrane protein complex
## 10236 ovarian cumulus expansion
## 10237 ovarian follicle rupture
## 10238 ovulation cycle
## 10239 ovulation cycle process
## 10240 ovulation from ovarian follicle
## 10241 oxidation-dependent protein catabolic process
## 10242 oxidative DNA demethylase activity
## 10243 oxidative phosphorylation uncoupler activity
## 10244 oxidative single-stranded DNA demethylation
## 10245 oxidative single-stranded RNA demethylation
## 10246 oxidative stress-induced premature senescence
## 10247 oxidized DNA binding
## 10248 oxidized pyrimidine DNA binding
## 10249 oxidoreductase activity, acting on a sulfur group of donors
## 10250 oxidoreductase activity, acting on a sulfur group of donors, NAD(P) as acceptor
## 10251 oxidoreductase activity, acting on other nitrogenous compounds as donors
## 10252 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen
## 10253 oxidoreductase activity, acting on peroxide as acceptor
## 10254 oxo-acid-lyase activity
## 10255 oxoglutarate dehydrogenase (succinyl-transferring) activity
## 10256 oxoglutarate:malate antiporter activity
## 10257 oxygen metabolic process
## 10258 P granule organization
## 10259 P-P-bond-hydrolysis-driven protein transmembrane transporter activity
## 10260 P-TEFb complex binding
## 10261 palmitoleoyltransferase activity
## 10262 palmitoyl-CoA 9-desaturase activity
## 10263 palmitoyl-CoA ligase activity
## 10264 palmitoyl-CoA oxidase activity
## 10265 palmitoyltransferase complex
## 10266 PAM complex, Tim23 associated import motor
## 10267 PAN complex
## 10268 pancreas development
## 10269 pancreatic juice secretion
## 10270 pantetheine hydrolase activity
## 10271 pantetheine-phosphate adenylyltransferase activity
## 10272 pantothenate kinase activity
## 10273 parathyroid hormone secretion
## 10274 paraxial mesoderm development
## 10275 paraxial mesoderm morphogenesis
## 10276 parental behavior
## 10277 Parkin-FBXW7-Cul1 ubiquitin ligase complex
## 10278 parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## 10279 PAS complex
## 10280 patched binding
## 10281 pattern recognition receptor signaling pathway
## 10282 PCNA complex
## 10283 PCNA-p21 complex
## 10284 PCSK9-AnxA2 complex
## 10285 PCSK9-LDLR complex
## 10286 penetration of zona pellucida
## 10287 penile erection
## 10288 pentameric IgM immunoglobulin complex
## 10289 pentose biosynthetic process
## 10290 pentose transmembrane transport
## 10291 pentose transmembrane transporter activity
## 10292 peptide 2-hydroxyisobutyryltransferase activity
## 10293 peptide amidation
## 10294 peptide antigen assembly with MHC class I protein complex
## 10295 peptide antigen stabilization
## 10296 peptide antigen transport
## 10297 peptide biosynthetic process
## 10298 peptide butyryltransferase activity
## 10299 peptide cross-linking via chondroitin 4-sulfate glycosaminoglycan
## 10300 peptide glutaryltransferase activity
## 10301 peptide hormone secretion
## 10302 peptide modification
## 10303 peptide secretion
## 10304 peptide-glutamate-N-acetyltransferase activity
## 10305 peptide-N4-(N-acetyl-beta-glucosaminyl)asparagine amidase activity
## 10306 peptide-serine-N-acetyltransferase activity
## 10307 peptidoglycan glycosyltransferase activity
## 10308 peptidoglycan immune receptor activity
## 10309 peptidyl-arginine deglycation
## 10310 peptidyl-asparagine 3-dioxygenase activity
## 10311 peptidyl-asparagine hydroxylation
## 10312 peptidyl-aspartic acid autophosphorylation
## 10313 peptidyl-aspartic acid hydroxylation
## 10314 peptidyl-cysteine deglycation
## 10315 peptidyl-cysteine methylation
## 10316 peptidyl-cysteine oxidation
## 10317 peptidyl-cysteine S-nitrosylase activity
## 10318 peptidyl-cysteine S-trans-nitrosylation
## 10319 peptidyl-glutamine methylation
## 10320 peptidyl-histidine dephosphorylation
## 10321 peptidyl-histidine dioxygenase activity
## 10322 peptidyl-histidine hydroxylation
## 10323 peptidyl-histidine phosphorylation
## 10324 peptidyl-lysine acetyltransferase activity
## 10325 peptidyl-lysine butyrylation
## 10326 peptidyl-lysine crotonylation
## 10327 peptidyl-lysine deglycation
## 10328 peptidyl-lysine demalonylation
## 10329 peptidyl-lysine dimethylation
## 10330 peptidyl-lysine glutarylation
## 10331 peptidyl-lysine modification to peptidyl-hypusine
## 10332 peptidyl-lysine propionylation
## 10333 peptidyl-methionine modification
## 10334 peptidyl-proline 4-dioxygenase activity
## 10335 peptidyl-proline dioxygenase activity
## 10336 peptidyl-proline hydroxylation
## 10337 peptidyl-proline hydroxylation to 3-hydroxy-L-proline
## 10338 peptidyl-serine ADP-deribosylation
## 10339 peptidyl-tyrosine sulfation
## 10340 peptidylamidoglycolate lyase activity
## 10341 peptidylglycine monooxygenase activity
## 10342 pericentric heterochromatin assembly
## 10343 pericyte cell differentiation
## 10344 perinucleolar chromocenter
## 10345 peripheral nervous system axon regeneration
## 10346 peripheral nervous system myelin formation
## 10347 peristalsis
## 10348 peroxidase inhibitor activity
## 10349 peroxiredoxin activity
## 10350 peroxisomal membrane transport
## 10351 peroxisome matrix targeting signal-1 binding
## 10352 peroxisome membrane class-1 targeting sequence binding
## 10353 peroxisome transport along microtubule
## 10354 peroxynitrite isomerase activity
## 10355 PET complex
## 10356 Peyer's patch development
## 10357 PH domain binding
## 10358 phagolysosome assembly
## 10359 phagolysosome assembly involved in apoptotic cell clearance
## 10360 phagolysosome membrane
## 10361 phagosome-lysosome docking
## 10362 phagosome-lysosome fusion involved in apoptotic cell clearance
## 10363 pharyngeal arch artery morphogenesis
## 10364 pharynx development
## 10365 phenanthrene-9,10-epoxide hydrolase activity
## 10366 phenotypic switching
## 10367 phenylacetate catabolic process
## 10368 phenylalanine 4-monooxygenase activity
## 10369 phenylalanine-tRNA ligase complex
## 10370 phosphate ion transmembrane transporter activity
## 10371 phosphate:proton symporter activity
## 10372 phosphatidate cytidylyltransferase activity
## 10373 phosphatidyl-N-dimethylethanolamine N-methyltransferase activity
## 10374 phosphatidyl-N-methylethanolamine N-methyltransferase activity
## 10375 phosphatidylethanolamine N-methyltransferase activity
## 10376 phosphatidylglycerol binding
## 10377 phosphatidylglycerol metabolic process
## 10378 phosphatidylglycerophosphatase activity
## 10379 phosphatidylinositol 3-kinase complex, class III
## 10380 phosphatidylinositol 3-kinase complex, class III, type I
## 10381 phosphatidylinositol 3-kinase complex, class III, type II
## 10382 phosphatidylinositol 3-kinase regulatory subunit binding
## 10383 phosphatidylinositol bisphosphate phosphatase activity
## 10384 phosphatidylinositol deacylase activity
## 10385 phosphatidylinositol trisphosphate phosphatase activity
## 10386 phosphatidylinositol-3,4-bisphosphate 4-phosphatase activity
## 10387 phosphatidylinositol-3,4,5-trisphosphate 3-phosphatase activity
## 10388 phosphatidylinositol-3,5-bisphosphate phosphatase activity
## 10389 phosphatidylinositol-4,5-bisphosphate phosphatase activity
## 10390 phosphatidylserine catabolic process
## 10391 phosphatidylserine exposure on apoptotic cell surface
## 10392 phosphatidylserine exposure on blood platelet
## 10393 phosphatidylserine floppase activity
## 10394 phosphatidylserine transfer activity
## 10395 phosphoacetylglucosamine mutase activity
## 10396 phosphoanandamide dephosphorylation
## 10397 phosphocreatine biosynthetic process
## 10398 phosphodiesterase decapping endonuclease activity
## 10399 phosphoenolpyruvate carboxykinase (GTP) activity
## 10400 phosphoenolpyruvate carboxykinase activity
## 10401 phosphofructokinase activity
## 10402 phosphoglucomutase activity
## 10403 phosphoglycolate phosphatase activity
## 10404 phospholipase A2 activator activity
## 10405 phospholipase C-activating G protein-coupled acetylcholine receptor signaling pathway
## 10406 phospholipase C-inhibiting G protein-coupled receptor signaling pathway
## 10407 phosphomannomutase activity
## 10408 phosphomevalonate kinase activity
## 10409 phosphopantothenate--cysteine ligase activity
## 10410 phosphopantothenoylcysteine decarboxylase activity
## 10411 phosphopantothenoylcysteine decarboxylase complex
## 10412 phosphorelay signal transduction system
## 10413 phosphoribosylamine-glycine ligase activity
## 10414 phosphoribosylaminoimidazole carboxylase activity
## 10415 phosphoribosylaminoimidazolesuccinocarboxamide synthase activity
## 10416 phosphoribosylformylglycinamidine cyclo-ligase activity
## 10417 phosphoribosylglycinamide formyltransferase activity
## 10418 phosphorylase kinase activity
## 10419 phosphorylated histone binding
## 10420 phosphorylation-dependent protein binding
## 10421 phosphoserine phosphatase activity
## 10422 phosphoserine residue binding
## 10423 phosphothreonine residue binding
## 10424 photoperiodism
## 10425 photoreceptor cell development
## 10426 photoreceptor distal connecting cilium
## 10427 photoreceptor inner segment membrane
## 10428 phototransduction, visible light
## 10429 phytanate-CoA ligase activity
## 10430 phytanoyl-CoA dioxygenase activity
## 10431 pigment granule aggregation in cell center
## 10432 pigment metabolic process involved in pigmentation
## 10433 pinceau fiber
## 10434 pinocytosis
## 10435 piP-body
## 10436 piRNA binding
## 10437 placental growth factor-activated receptor activity
## 10438 planar cell polarity pathway involved in axon guidance
## 10439 plasma cell differentiation
## 10440 plasma kallikrein-kinin cascade
## 10441 plasma lipoprotein particle oxidation
## 10442 plasma membrane ATP synthesis coupled electron transport
## 10443 plasma membrane bounded cell projection
## 10444 plasma membrane bounded cell projection cytoplasm
## 10445 plasma membrane fusion
## 10446 plasma membrane raft organization
## 10447 plasmacytoid dendritic cell differentiation
## 10448 plasmalogen synthase activity
## 10449 plasminogen activation
## 10450 platelet activating factor biosynthetic process
## 10451 platelet activating factor catabolic process
## 10452 platelet activating factor receptor activity
## 10453 platelet activating factor receptor binding
## 10454 platelet dense granule lumen
## 10455 platelet dense tubular network
## 10456 platelet maturation
## 10457 platelet-activating factor acetyltransferase activity
## 10458 platelet-derived growth factor receptor-beta signaling pathway
## 10459 plus-end kinesin complex
## 10460 podosome assembly
## 10461 polar body extrusion after meiotic divisions
## 10462 polar microtubule
## 10463 polarized epithelial cell differentiation
## 10464 pole plasm
## 10465 pole plasm assembly
## 10466 poly-ADP-D-ribose binding
## 10467 poly-gamma-glutamate metabolic process
## 10468 poly-pyrimidine tract binding
## 10469 polyamine catabolic process
## 10470 polyamine deacetylation
## 10471 polyamine homeostasis
## 10472 polyamine oxidase activity
## 10473 polyamine transmembrane transport
## 10474 polycystin complex
## 10475 polynucleotide 3' dephosphorylation
## 10476 polynucleotide 3'-phosphatase activity
## 10477 polynucleotide 5' dephosphorylation
## 10478 polynucleotide 5'-phosphatase activity
## 10479 polyol transmembrane transporter activity
## 10480 polyol transport
## 10481 polyprenol catabolic process
## 10482 polyprenol reductase activity
## 10483 polyribonucleotide nucleotidyltransferase activity
## 10484 polysaccharide biosynthetic process
## 10485 polysaccharide catabolic process
## 10486 polysaccharide digestion
## 10487 polysaccharide metabolic process
## 10488 polysaccharide transport
## 10489 pore formation in membrane of other organism
## 10490 porphyrin-containing compound metabolic process
## 10491 positive regulation blood vessel branching
## 10492 positive regulation by host of symbiont catalytic activity
## 10493 positive regulation by symbiont of host autophagy
## 10494 positive regulation of 1-phosphatidylinositol 4-kinase activity
## 10495 positive regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## 10496 positive regulation of 3'-UTR-mediated mRNA stabilization
## 10497 positive regulation of acetylcholine secretion, neurotransmission
## 10498 positive regulation of acrosomal vesicle exocytosis
## 10499 positive regulation of activated T cell autonomous cell death
## 10500 positive regulation of activation of Janus kinase activity
## 10501 positive regulation of acute inflammatory response to antigenic stimulus
## 10502 positive regulation of acute inflammatory response to non-antigenic stimulus
## 10503 positive regulation of adaptive immune memory response
## 10504 positive regulation of adenosine receptor signaling pathway
## 10505 positive regulation of aggrephagy
## 10506 positive regulation of aldosterone biosynthetic process
## 10507 positive regulation of aldosterone secretion
## 10508 positive regulation of alkaline phosphatase activity
## 10509 positive regulation of alpha-beta T cell activation
## 10510 positive regulation of alpha-beta T cell differentiation
## 10511 positive regulation of amyloid fibril formation
## 10512 positive regulation of amyloid precursor protein biosynthetic process
## 10513 positive regulation of anterograde dense core granule transport
## 10514 positive regulation of antibacterial peptide biosynthetic process
## 10515 positive regulation of antifungal innate immune response
## 10516 positive regulation of antigen processing and presentation
## 10517 positive regulation of antigen processing and presentation of peptide antigen via MHC class II
## 10518 positive regulation of antral ovarian follicle growth
## 10519 positive regulation of aortic smooth muscle cell differentiation
## 10520 positive regulation of apoptotic cell clearance
## 10521 positive regulation of apoptotic process by virus
## 10522 positive regulation of apoptotic process involved in mammary gland involution
## 10523 positive regulation of apoptotic process involved in morphogenesis
## 10524 positive regulation of arachidonic acid secretion
## 10525 positive regulation of aspartate secretion
## 10526 positive regulation of atrial cardiac muscle cell action potential
## 10527 positive regulation of autophagy in response to ER overload
## 10528 positive regulation of axon extension involved in regeneration
## 10529 positive regulation of beta-galactosidase activity
## 10530 positive regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## 10531 positive regulation of blood microparticle formation
## 10532 positive regulation of blood pressure
## 10533 positive regulation of blood-brain barrier permeability
## 10534 positive regulation of bone development
## 10535 positive regulation of bone mineralization involved in bone maturation
## 10536 positive regulation of branching morphogenesis of a nerve
## 10537 positive regulation of calcidiol 1-monooxygenase activity
## 10538 positive regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## 10539 positive regulation of calcium-dependent cell-cell adhesion
## 10540 positive regulation of cap-dependent translational initiation
## 10541 positive regulation of cardiac epithelial to mesenchymal transition
## 10542 positive regulation of cardiac muscle contraction
## 10543 positive regulation of cardiac muscle myoblast proliferation
## 10544 positive regulation of cardiac muscle tissue development
## 10545 positive regulation of cardiac vascular smooth muscle cell differentiation
## 10546 positive regulation of cardioblast differentiation
## 10547 positive regulation of cardiolipin metabolic process
## 10548 positive regulation of caveolin-mediated endocytosis
## 10549 positive regulation of CD4-positive, alpha-beta T cell costimulation
## 10550 positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## 10551 positive regulation of CD8-positive, alpha-beta T cell proliferation
## 10552 positive regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## 10553 positive regulation of cell adhesion molecule production
## 10554 positive regulation of cell aging
## 10555 positive regulation of cell maturation
## 10556 positive regulation of cell migration by vascular endothelial growth factor signaling pathway
## 10557 positive regulation of cell proliferation by VEGF-activated platelet derived growth factor receptor signaling pathway
## 10558 positive regulation of cell proliferation involved in heart morphogenesis
## 10559 positive regulation of cell proliferation involved in heart valve morphogenesis
## 10560 positive regulation of cell size
## 10561 positive regulation of cell volume
## 10562 positive regulation of cell-cell adhesion mediated by cadherin
## 10563 positive regulation of cellular amino acid metabolic process
## 10564 positive regulation of cellular component organization
## 10565 positive regulation of cellular glucuronidation
## 10566 positive regulation of cellular response to macrophage colony-stimulating factor stimulus
## 10567 positive regulation of centriole replication
## 10568 positive regulation of cerebellar granule cell precursor proliferation
## 10569 positive regulation of chaperone-mediated protein complex assembly
## 10570 positive regulation of chaperone-mediated protein folding
## 10571 positive regulation of chemokine (C-C motif) ligand 5 production
## 10572 positive regulation of chemokine (C-X-C motif) ligand 1 production
## 10573 positive regulation of chemokine-mediated signaling pathway
## 10574 positive regulation of cholesterol esterification
## 10575 positive regulation of cholesterol import
## 10576 positive regulation of cholesterol metabolic process
## 10577 positive regulation of chromatin silencing
## 10578 positive regulation of chromatin silencing at telomere
## 10579 positive regulation of chromosome organization
## 10580 positive regulation of circadian sleep/wake cycle, sleep
## 10581 positive regulation of clathrin coat assembly
## 10582 positive regulation of CoA-transferase activity
## 10583 positive regulation of collagen catabolic process
## 10584 positive regulation of collateral sprouting of injured axon
## 10585 positive regulation of complement activation
## 10586 positive regulation of connective tissue growth factor production
## 10587 positive regulation of corticotropin secretion
## 10588 positive regulation of cyclase activity
## 10589 positive regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## 10590 positive regulation of cytoplasmic translational initiation
## 10591 positive regulation of cytotoxic T cell differentiation
## 10592 positive regulation of defense response to bacterium
## 10593 positive regulation of delayed rectifier potassium channel activity
## 10594 positive regulation of dendritic spine maintenance
## 10595 positive regulation of deoxyribonuclease activity
## 10596 positive regulation of determination of dorsal identity
## 10597 positive regulation of developmental growth
## 10598 positive regulation of developmental pigmentation
## 10599 positive regulation of DNA catabolic process
## 10600 positive regulation of DNA damage checkpoint
## 10601 positive regulation of DNA helicase activity
## 10602 positive regulation of DNA ligase activity
## 10603 positive regulation of DNA methylation
## 10604 positive regulation of DNA N-glycosylase activity
## 10605 positive regulation of DNA recombination
## 10606 positive regulation of DNA-dependent DNA replication
## 10607 positive regulation of DNA-dependent DNA replication initiation
## 10608 positive regulation of DNA-templated transcription, termination
## 10609 positive regulation of dopamine biosynthetic process
## 10610 positive regulation of eating behavior
## 10611 positive regulation of endocytic recycling
## 10612 positive regulation of endoplasmic reticulum calcium ion concentration
## 10613 positive regulation of endoplasmic reticulum tubular network organization
## 10614 positive regulation of endoribonuclease activity
## 10615 positive regulation of endosome organization
## 10616 positive regulation of endosome to plasma membrane protein transport
## 10617 positive regulation of endothelial cell chemotaxis to fibroblast growth factor
## 10618 positive regulation of eosinophil degranulation
## 10619 positive regulation of epidermal cell differentiation
## 10620 positive regulation of epidermis development
## 10621 positive regulation of epithelial cell differentiation
## 10622 positive regulation of erythrocyte aggregation
## 10623 positive regulation of establishment of endothelial barrier
## 10624 positive regulation of exoribonuclease activity
## 10625 positive regulation of Fc receptor mediated stimulatory signaling pathway
## 10626 positive regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## 10627 positive regulation of female receptivity
## 10628 positive regulation of ferrous iron binding
## 10629 positive regulation of fertilization
## 10630 positive regulation of fever generation
## 10631 positive regulation of fibrinolysis
## 10632 positive regulation of fibronectin-dependent thymocyte migration
## 10633 positive regulation of follicle-stimulating hormone secretion
## 10634 positive regulation of fractalkine production
## 10635 positive regulation of G0 to G1 transition
## 10636 positive regulation of G1 to G0 transition
## 10637 positive regulation of G2/MI transition of meiotic cell cycle
## 10638 positive regulation of gamma-delta T cell activation
## 10639 positive regulation of gamma-delta T cell activation involved in immune response
## 10640 positive regulation of gastro-intestinal system smooth muscle contraction
## 10641 positive regulation of gastrulation
## 10642 positive regulation of glial cell apoptotic process
## 10643 positive regulation of glial cell migration
## 10644 positive regulation of gliogenesis
## 10645 positive regulation of glomerular mesangial cell proliferation
## 10646 positive regulation of glutamate receptor signaling pathway
## 10647 positive regulation of glutamate uptake involved in transmission of nerve impulse
## 10648 positive regulation of glutathione biosynthetic process
## 10649 positive regulation of glycogen catabolic process
## 10650 positive regulation of glycoprotein biosynthetic process involved in immunological synapse formation
## 10651 positive regulation of granulocyte colony-stimulating factor production
## 10652 positive regulation of granulosa cell apoptotic process
## 10653 positive regulation of granulosa cell proliferation
## 10654 positive regulation of growth rate
## 10655 positive regulation of heart contraction
## 10656 positive regulation of heat generation
## 10657 positive regulation of hematopoietic progenitor cell differentiation
## 10658 positive regulation of heparan sulfate proteoglycan biosynthetic process
## 10659 positive regulation of hepatic stellate cell proliferation
## 10660 positive regulation of heterochromatin assembly
## 10661 positive regulation of hexokinase activity
## 10662 positive regulation of high-density lipoprotein particle clearance
## 10663 positive regulation of hippocampal neuron apoptotic process
## 10664 positive regulation of histone deubiquitination
## 10665 positive regulation of histone H3-K14 acetylation
## 10666 positive regulation of histone H3-K36 methylation
## 10667 positive regulation of histone H3-K36 trimethylation
## 10668 positive regulation of histone H3-K4 trimethylation
## 10669 positive regulation of histone H3-K9 trimethylation
## 10670 positive regulation of histone H4-K16 acetylation
## 10671 positive regulation of histone H4-K20 methylation
## 10672 positive regulation of homocysteine metabolic process
## 10673 positive regulation of homotypic cell-cell adhesion
## 10674 positive regulation of hyaluronan biosynthetic process
## 10675 positive regulation of hydrogen peroxide catabolic process
## 10676 positive regulation of hydrogen sulfide biosynthetic process
## 10677 positive regulation of hydrolase activity
## 10678 positive regulation of hypersensitivity
## 10679 positive regulation of immature T cell proliferation in thymus
## 10680 positive regulation of immunological synapse formation
## 10681 positive regulation of inflammatory response to antigenic stimulus
## 10682 positive regulation of inhibitory postsynaptic potential
## 10683 positive regulation of inhibitory synapse assembly
## 10684 positive regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## 10685 positive regulation of inositol trisphosphate biosynthetic process
## 10686 positive regulation of inositol-polyphosphate 5-phosphatase activity
## 10687 positive regulation of integrin activation by cell surface receptor linked signal transduction
## 10688 positive regulation of interleukin-1 production
## 10689 positive regulation of interleukin-1-mediated signaling pathway
## 10690 positive regulation of interleukin-15 production
## 10691 positive regulation of interleukin-33 production
## 10692 positive regulation of interleukin-4-dependent isotype switching to IgE isotypes
## 10693 positive regulation of interleukin-6-mediated signaling pathway
## 10694 positive regulation of intracellular cholesterol transport
## 10695 positive regulation of intracellular mRNA localization
## 10696 positive regulation of intracellular signal transduction
## 10697 positive regulation of intracellular transport of viral material
## 10698 positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## 10699 positive regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## 10700 positive regulation of ion transport
## 10701 positive regulation of isotype switching to IgE isotypes
## 10702 positive regulation of keratinocyte proliferation
## 10703 positive regulation of L-dopa biosynthetic process
## 10704 positive regulation of L-dopa decarboxylase activity
## 10705 positive regulation of L-glutamate import across plasma membrane
## 10706 positive regulation of lactation
## 10707 positive regulation of late endosome to lysosome transport
## 10708 positive regulation of lateral attachment of mitotic spindle microtubules to kinetochore
## 10709 positive regulation of leukocyte adhesion to arterial endothelial cell
## 10710 positive regulation of leukotriene production involved in inflammatory response
## 10711 positive regulation of ligase activity
## 10712 positive regulation of lipid transport
## 10713 positive regulation of lipoprotein metabolic process
## 10714 positive regulation of long-term neuronal synaptic plasticity
## 10715 positive regulation of long-term synaptic depression
## 10716 positive regulation of low-density lipoprotein particle clearance
## 10717 positive regulation of low-density lipoprotein particle receptor binding
## 10718 positive regulation of luteinizing hormone secretion
## 10719 positive regulation of lymphocyte differentiation
## 10720 positive regulation of lymphocyte proliferation
## 10721 positive regulation of lysosomal membrane permeability
## 10722 positive regulation of macromolecule biosynthetic process
## 10723 positive regulation of macrophage apoptotic process
## 10724 positive regulation of macrophage colony-stimulating factor signaling pathway
## 10725 positive regulation of macrophage migration
## 10726 positive regulation of macrophage migration inhibitory factor signaling pathway
## 10727 positive regulation of macrophage tolerance induction
## 10728 positive regulation of male germ cell proliferation
## 10729 positive regulation of male gonad development
## 10730 positive regulation of mast cell activation
## 10731 positive regulation of mast cell activation involved in immune response
## 10732 positive regulation of maternal process involved in parturition
## 10733 positive regulation of meiotic nuclear division
## 10734 positive regulation of melanocyte differentiation
## 10735 positive regulation of membrane potential
## 10736 positive regulation of membrane tubulation
## 10737 positive regulation of mesenchymal stem cell differentiation
## 10738 positive regulation of mesenchymal stem cell migration
## 10739 positive regulation of metalloendopeptidase activity
## 10740 positive regulation of metallopeptidase activity
## 10741 positive regulation of metanephric cap mesenchymal cell proliferation
## 10742 positive regulation of microglia differentiation
## 10743 positive regulation of microtubule depolymerization
## 10744 positive regulation of mini excitatory postsynaptic potential
## 10745 positive regulation of miRNA catabolic process
## 10746 positive regulation of miRNA metabolic process
## 10747 positive regulation of mismatch repair
## 10748 positive regulation of mitochondrial electron transport, NADH to ubiquinone
## 10749 positive regulation of mitochondrial RNA catabolic process
## 10750 positive regulation of mitophagy
## 10751 positive regulation of mitotic cohesin loading
## 10752 positive regulation of mitotic cytokinetic process
## 10753 positive regulation of mitotic recombination
## 10754 positive regulation of mitotic spindle elongation
## 10755 positive regulation of mononuclear cell proliferation
## 10756 positive regulation of monooxygenase activity
## 10757 positive regulation of mRNA 3'-UTR binding
## 10758 positive regulation of mRNA cleavage
## 10759 positive regulation of muscle contraction
## 10760 positive regulation of muscle hyperplasia
## 10761 positive regulation of myeloid dendritic cell activation
## 10762 positive regulation of myeloid dendritic cell chemotaxis
## 10763 positive regulation of myosin-light-chain-phosphatase activity
## 10764 positive regulation of NAD+ ADP-ribosyltransferase activity
## 10765 positive regulation of natural killer cell chemotaxis
## 10766 positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## 10767 positive regulation of natural killer cell mediated immune response to tumor cell
## 10768 positive regulation of natural killer cell proliferation
## 10769 positive regulation of necroptotic process
## 10770 positive regulation of nephron tubule epithelial cell differentiation
## 10771 positive regulation of neuroinflammatory response
## 10772 positive regulation of neuromuscular junction development
## 10773 positive regulation of neurotrophin TRK receptor signaling pathway
## 10774 positive regulation of neutrophil apoptotic process
## 10775 positive regulation of neutrophil differentiation
## 10776 positive regulation of nitric oxide mediated signal transduction
## 10777 positive regulation of nitrogen compound metabolic process
## 10778 positive regulation of NK T cell activation
## 10779 positive regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## 10780 positive regulation of non-canonical Wnt signaling pathway via JNK cascade
## 10781 positive regulation of norepinephrine secretion
## 10782 positive regulation of norepinephrine uptake
## 10783 positive regulation of nuclease activity
## 10784 positive regulation of odontoblast differentiation
## 10785 positive regulation of odontogenesis
## 10786 positive regulation of odontogenesis of dentin-containing tooth
## 10787 positive regulation of oocyte development
## 10788 positive regulation of organelle assembly
## 10789 positive regulation of ovarian follicle development
## 10790 positive regulation of oxidative phosphorylation
## 10791 positive regulation of oxidative phosphorylation uncoupler activity
## 10792 positive regulation of oxidative stress-induced neuron death
## 10793 positive regulation of oxygen metabolic process
## 10794 positive regulation of pancreatic juice secretion
## 10795 positive regulation of pattern recognition receptor signaling pathway
## 10796 positive regulation of peptidyl-serine phosphorylation of STAT protein
## 10797 positive regulation of peripheral T cell tolerance induction
## 10798 positive regulation of peroxisome proliferator activated receptor signaling pathway
## 10799 positive regulation of phosphatidylcholine biosynthetic process
## 10800 positive regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## 10801 positive regulation of phospholipid biosynthetic process
## 10802 positive regulation of phospholipid translocation
## 10803 positive regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## 10804 positive regulation of plasma cell differentiation
## 10805 positive regulation of platelet activation
## 10806 positive regulation of platelet-derived growth factor receptor-beta signaling pathway
## 10807 positive regulation of polyamine transmembrane transport
## 10808 positive regulation of polysome binding
## 10809 positive regulation of potassium ion import across plasma membrane
## 10810 positive regulation of potassium ion transmembrane transporter activity
## 10811 positive regulation of presynaptic cytosolic calcium concentration
## 10812 positive regulation of pro-B cell differentiation
## 10813 positive regulation of prostaglandin biosynthetic process
## 10814 positive regulation of prostaglandin secretion
## 10815 positive regulation of prostaglandin-endoperoxide synthase activity
## 10816 positive regulation of proteasomal ubiquitin-dependent protein catabolic process involved in cellular response to hypoxia
## 10817 positive regulation of protein catabolic process in the vacuole
## 10818 positive regulation of protein exit from endoplasmic reticulum
## 10819 positive regulation of protein glycosylation
## 10820 positive regulation of protein glycosylation in Golgi
## 10821 positive regulation of protein homooligomerization
## 10822 positive regulation of protein import
## 10823 positive regulation of protein K63-linked deubiquitination
## 10824 positive regulation of protein kinase D signaling
## 10825 positive regulation of protein lipidation
## 10826 positive regulation of protein localization to actin cortical patch
## 10827 positive regulation of protein localization to cell-cell junction
## 10828 positive regulation of protein localization to ciliary membrane
## 10829 positive regulation of protein localization to endoplasmic reticulum
## 10830 positive regulation of protein localization to lysosome
## 10831 positive regulation of protein localization to phagocytic vesicle
## 10832 positive regulation of protein localization to presynapse
## 10833 positive regulation of protein localization to spindle pole body
## 10834 positive regulation of protein O-linked glycosylation
## 10835 positive regulation of protein oxidation
## 10836 positive regulation of protein polymerization
## 10837 positive regulation of protein-glutamine gamma-glutamyltransferase activity
## 10838 positive regulation of proteoglycan biosynthetic process
## 10839 positive regulation of proteolysis involved in cellular protein catabolic process
## 10840 positive regulation of pyrroline-5-carboxylate reductase activity
## 10841 positive regulation of pyruvate dehydrogenase activity
## 10842 positive regulation of receptor localization to synapse
## 10843 positive regulation of receptor signaling pathway via STAT
## 10844 positive regulation of receptor-mediated endocytosis involved in cholesterol transport
## 10845 positive regulation of reciprocal meiotic recombination
## 10846 positive regulation of regulation of vascular associated smooth muscle cell membrane depolarization
## 10847 positive regulation of renal water transport
## 10848 positive regulation of respiratory burst involved in inflammatory response
## 10849 positive regulation of response to oxidative stress
## 10850 positive regulation of retinal ganglion cell axon guidance
## 10851 positive regulation of retinoic acid biosynthetic process
## 10852 positive regulation of retinoic acid receptor signaling pathway
## 10853 positive regulation of reverse cholesterol transport
## 10854 positive regulation of RNA binding
## 10855 positive regulation of Schwann cell differentiation
## 10856 positive regulation of Schwann cell migration
## 10857 positive regulation of secretion of lysosomal enzymes
## 10858 positive regulation of sequestering of calcium ion
## 10859 positive regulation of serine C-palmitoyltransferase activity
## 10860 positive regulation of serotonin secretion
## 10861 positive regulation of single strand break repair
## 10862 positive regulation of single stranded viral RNA replication via double stranded DNA intermediate
## 10863 positive regulation of single-stranded telomeric DNA binding
## 10864 positive regulation of skeletal muscle cell differentiation
## 10865 positive regulation of skeletal muscle cell proliferation
## 10866 positive regulation of skeletal muscle contraction by regulation of release of sequestered calcium ion
## 10867 positive regulation of skeletal muscle hypertrophy
## 10868 positive regulation of skeletal muscle tissue growth
## 10869 positive regulation of skeletal muscle tissue regeneration
## 10870 positive regulation of smooth muscle cell chemotaxis
## 10871 positive regulation of smooth muscle cell-matrix adhesion
## 10872 positive regulation of sodium ion transmembrane transporter activity
## 10873 positive regulation of sodium-dependent phosphate transport
## 10874 positive regulation of sodium:proton antiporter activity
## 10875 positive regulation of spermidine biosynthetic process
## 10876 positive regulation of steroid hormone biosynthetic process
## 10877 positive regulation of steroid metabolic process
## 10878 positive regulation of strand invasion
## 10879 positive regulation of stress granule assembly
## 10880 positive regulation of striated muscle contraction
## 10881 positive regulation of substrate-dependent cell migration, cell attachment to substrate
## 10882 positive regulation of subtelomeric heterochromatin assembly
## 10883 positive regulation of succinate dehydrogenase activity
## 10884 positive regulation of supramolecular fiber organization
## 10885 positive regulation of synapse structural plasticity
## 10886 positive regulation of synaptic transmission, dopaminergic
## 10887 positive regulation of synaptic vesicle exocytosis
## 10888 positive regulation of synaptic vesicle priming
## 10889 positive regulation of synaptic vesicle recycling
## 10890 positive regulation of synoviocyte proliferation
## 10891 positive regulation of T cell apoptotic process
## 10892 positive regulation of T cell mediated cytotoxicity directed against tumor cell target
## 10893 positive regulation of T-helper 1 cell differentiation
## 10894 positive regulation of T-helper 17 cell differentiation
## 10895 positive regulation of T-helper 17 cell lineage commitment
## 10896 positive regulation of T-helper 17 type immune response
## 10897 positive regulation of T-helper cell differentiation
## 10898 positive regulation of telomeric DNA binding
## 10899 positive regulation of telomeric loop disassembly
## 10900 positive regulation of telomeric RNA transcription from RNA pol II promoter
## 10901 positive regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## 10902 positive regulation of thyroid hormone generation
## 10903 positive regulation of timing of anagen
## 10904 positive regulation of tissue remodeling
## 10905 positive regulation of tolerance induction
## 10906 positive regulation of toll-like receptor signaling pathway
## 10907 positive regulation of TRAIL production
## 10908 positive regulation of transcription by glucose
## 10909 positive regulation of transcription by transcription factor localization
## 10910 positive regulation of transcription from RNA polymerase II promoter by galactose
## 10911 positive regulation of transcription from RNA polymerase II promoter by glucose
## 10912 positive regulation of transcription from RNA polymerase II promoter in response to heat stress
## 10913 positive regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## 10914 positive regulation of transcription from RNA polymerase II promoter involved in heart development
## 10915 positive regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## 10916 positive regulation of transcription involved in exit from mitosis
## 10917 positive regulation of transcription involved in G1/S transition of mitotic cell cycle
## 10918 positive regulation of transferrin receptor binding
## 10919 positive regulation of transforming growth factor beta1 production
## 10920 positive regulation of transforming growth factor beta2 production
## 10921 positive regulation of transforming growth factor beta3 production
## 10922 positive regulation of translation in response to stress
## 10923 positive regulation of translation, ncRNA-mediated
## 10924 positive regulation of translational initiation by iron
## 10925 positive regulation of translational initiation in response to starvation
## 10926 positive regulation of triglyceride transport
## 10927 positive regulation of tumor necrosis factor (ligand) superfamily member 11 production
## 10928 positive regulation of type B pancreatic cell apoptotic process
## 10929 positive regulation of type B pancreatic cell development
## 10930 positive regulation of type III interferon production
## 10931 positive regulation of type IV hypersensitivity
## 10932 positive regulation of tyrosine 3-monooxygenase activity
## 10933 positive regulation of ubiquitin-dependent endocytosis
## 10934 positive regulation of ubiquitin-specific protease activity
## 10935 positive regulation of unsaturated fatty acid biosynthetic process
## 10936 positive regulation of ureteric bud formation
## 10937 positive regulation of uterine smooth muscle contraction
## 10938 positive regulation of vacuole organization
## 10939 positive regulation of vascular associated smooth muscle cell differentiation
## 10940 positive regulation of vesicle transport along microtubule
## 10941 positive regulation of viral budding via host ESCRT complex
## 10942 positive regulation of viral process
## 10943 positive regulation of viral translation
## 10944 positive regulation of vitamin D biosynthetic process
## 10945 positive regulation of voltage-gated chloride channel activity
## 10946 positive regulation of voltage-gated potassium channel activity
## 10947 positive regulation of voltage-gated sodium channel activity
## 10948 positive regulation of Wnt protein secretion
## 10949 positive T cell selection
## 10950 post-embryonic camera-type eye morphogenesis
## 10951 post-embryonic cardiac muscle cell growth involved in heart morphogenesis
## 10952 post-embryonic forelimb morphogenesis
## 10953 post-embryonic hemopoiesis
## 10954 post-spliceosomal complex
## 10955 posterior compartment specification
## 10956 postsynaptic actin cytoskeleton
## 10957 postsynaptic early endosome
## 10958 postsynaptic endocytic zone membrane
## 10959 postsynaptic endosome
## 10960 postsynaptic membrane assembly
## 10961 postsynaptic neurotransmitter receptor cycle
## 10962 postsynaptic specialization
## 10963 postsynaptic specialization assembly
## 10964 postsynaptic specialization of symmetric synapse
## 10965 posttranscriptional tethering of RNA polymerase II gene DNA at nuclear periphery
## 10966 posttranslational protein targeting to membrane, translocation
## 10967 potassium channel activator activity
## 10968 potassium ion binding
## 10969 potassium transmembrane transporter activity, phosphorylative mechanism
## 10970 PR-DUB complex
## 10971 pre-B cell allelic exclusion
## 10972 pre-B cell differentiation
## 10973 pre-mRNA 5'-splice site binding
## 10974 pre-mRNA catabolic process
## 10975 pre-mRNA intronic pyrimidine-rich binding
## 10976 presynaptic dense core vesicle exocytosis
## 10977 presynaptic endosome
## 10978 presynaptic membrane assembly
## 10979 primary dendrite
## 10980 primary lung bud formation
## 10981 primary miRNA methylation
## 10982 primary palate development
## 10983 primary ureteric bud growth
## 10984 pristanate-CoA ligase activity
## 10985 procollagen glucosyltransferase activity
## 10986 procollagen-lysine 5-dioxygenase activity
## 10987 procollagen-proline 3-dioxygenase activity
## 10988 procollagen-proline 4-dioxygenase activity
## 10989 proline dipeptidase activity
## 10990 proline transmembrane transport
## 10991 proline transport
## 10992 proline-tRNA ligase activity
## 10993 prolyl-tRNA aminoacylation
## 10994 pronuclear fusion
## 10995 propanoyl-CoA C-acyltransferase activity
## 10996 propionate biosynthetic process
## 10997 propionate catabolic process
## 10998 propionate-CoA ligase activity
## 10999 propionyl-CoA C2-trimethyltridecanoyltransferase activity
## 11000 prostacyclin receptor activity
## 11001 prostaglandin catabolic process
## 11002 prostaglandin H2 endoperoxidase reductase activity
## 11003 prostaglandin secretion
## 11004 prostaglandin transmembrane transporter activity
## 11005 prostaglandin-E synthase activity
## 11006 prostaglandin-endoperoxide synthase activity
## 11007 prostaglandin-F synthase activity
## 11008 prostanoid metabolic process
## 11009 prostate epithelial cord arborization involved in prostate glandular acinus morphogenesis
## 11010 prostate gland epithelium morphogenesis
## 11011 prostate gland stromal morphogenesis
## 11012 proteasome activator complex
## 11013 proteasome core complex, alpha-subunit complex
## 11014 proteasome regulatory particle binding
## 11015 protein acylation
## 11016 protein adenylylation
## 11017 protein adenylyltransferase activity
## 11018 protein alpha-1,2-demannosylation
## 11019 protein amidation
## 11020 protein arginylation
## 11021 protein C-terminal carboxyl O-methyltransferase activity
## 11022 protein C-terminal leucine carboxyl O-methyltransferase activity
## 11023 protein carboxyl O-methyltransferase activity
## 11024 protein catabolic process in the vacuole
## 11025 protein deglycase activity
## 11026 protein deglycation
## 11027 protein deglycation, glyoxal removal
## 11028 protein deglycation, methylglyoxal removal
## 11029 protein delipidation
## 11030 protein demalonylation
## 11031 protein desuccinylation
## 11032 protein geranylgeranylation
## 11033 protein glycosylation in Golgi
## 11034 protein histidine kinase activity
## 11035 protein import into mitochondrial intermembrane space
## 11036 protein import into peroxisome matrix, substrate release
## 11037 protein initiator methionine removal
## 11038 protein K33-linked ubiquitination
## 11039 protein K6-linked deubiquitination
## 11040 protein kinase 5 complex
## 11041 protein kinase CK2 complex
## 11042 protein kinase complex
## 11043 protein lipidation involved in autophagosome assembly
## 11044 protein localization to actin cytoskeleton
## 11045 protein localization to Cajal body
## 11046 protein localization to cell cortex
## 11047 protein localization to cell junction
## 11048 protein localization to cell leading edge
## 11049 protein localization to chromosome
## 11050 protein localization to ciliary transition zone
## 11051 protein localization to cytoskeleton
## 11052 protein localization to endoplasmic reticulum tubular network
## 11053 protein localization to kinetochore involved in kinetochore assembly
## 11054 protein localization to lipid droplet
## 11055 protein localization to M-band
## 11056 protein localization to meiotic spindle midzone
## 11057 protein localization to membrane raft
## 11058 protein localization to microtubule plus-end
## 11059 protein localization to myelin sheath abaxonal region
## 11060 protein localization to non-motile cilium
## 11061 protein localization to nuclear inner membrane
## 11062 protein localization to nuclear pore
## 11063 protein localization to nucleoplasm
## 11064 protein localization to paranode region of axon
## 11065 protein localization to pericentriolar material
## 11066 protein localization to photoreceptor connecting cilium
## 11067 protein localization to plasma membrane raft
## 11068 protein localization to postsynaptic membrane
## 11069 protein localization to T-tubule
## 11070 protein localization to vacuole
## 11071 protein maturation by [2Fe-2S] cluster transfer
## 11072 protein maturation by copper ion transfer
## 11073 protein maturation by protein folding
## 11074 protein modification by small protein removal
## 11075 protein N-acetylglucosaminyltransferase complex
## 11076 protein N-linked glycosylation via arginine
## 11077 protein O-GlcNAcylation via threonine
## 11078 protein O-linked glycosylation via threonine
## 11079 protein palmitoleylation
## 11080 protein polyglycylation
## 11081 protein processing involved in protein targeting to mitochondrion
## 11082 protein propionyltransferase activity
## 11083 protein secretion by platelet
## 11084 protein sialylation
## 11085 protein sulfation
## 11086 protein targeting to lysosome involved in chaperone-mediated autophagy
## 11087 protein targeting to vacuole involved in autophagy
## 11088 protein transport along microtubule
## 11089 protein transport into membrane raft
## 11090 protein transporter activity
## 11091 protein trimerization
## 11092 protein tyrosine kinase inhibitor activity
## 11093 protein tyrosine phosphatase activator activity
## 11094 protein tyrosine/threonine phosphatase activity
## 11095 protein unfolding
## 11096 protein xylosyltransferase activity
## 11097 protein-(glutamine-N5) methyltransferase activity
## 11098 protein-containing complex localization
## 11099 protein-containing complex subunit organization
## 11100 protein-fructosamine 3-kinase activity
## 11101 protein-glucosylgalactosylhydroxylysine glucosidase activity
## 11102 protein-glutamate O-methyltransferase activity
## 11103 protein-glutamine gamma-glutamyltransferase activity
## 11104 protein-glycine ligase activity
## 11105 protein-L-isoaspartate (D-aspartate) O-methyltransferase activity
## 11106 protein-lipid complex
## 11107 protein-malonyllysine demalonylase activity
## 11108 protein-N-terminal asparagine amidohydrolase activity
## 11109 protein-N-terminal glutamine amidohydrolase activity
## 11110 protein-tyrosine sulfotransferase activity
## 11111 proteinase activated receptor binding
## 11112 proton-transporting ATP synthase complex assembly
## 11113 proton-transporting two-sector ATPase complex, proton-transporting domain
## 11114 proton-transporting V-type ATPase complex assembly
## 11115 protoporphyrinogen IX metabolic process
## 11116 proximal dendrite
## 11117 proximal neuron projection
## 11118 proximal tubule development
## 11119 pseudophosphatase activity
## 11120 psychomotor behavior
## 11121 purine deoxyribonucleoside metabolic process
## 11122 purine nucleobase catabolic process
## 11123 purine nucleoside transmembrane transport
## 11124 purine nucleoside transmembrane transporter activity
## 11125 purine nucleotide transmembrane transporter activity
## 11126 purine ribonucleoside catabolic process
## 11127 purine-containing compound transmembrane transport
## 11128 purinergic nucleotide receptor activity
## 11129 putrescine acetylation
## 11130 putrescine binding
## 11131 putrescine catabolic process
## 11132 pyridoxine biosynthetic process
## 11133 pyrimidine deoxyribonucleotide catabolic process
## 11134 pyrimidine nucleobase biosynthetic process
## 11135 pyrimidine nucleobase catabolic process
## 11136 pyrimidine nucleoside biosynthetic process
## 11137 pyrimidine nucleoside transmembrane transporter activity
## 11138 pyrimidine nucleotide metabolic process
## 11139 pyrimidine-nucleoside phosphorylase activity
## 11140 pyrimidine-specific mismatch base pair DNA N-glycosylase activity
## 11141 Pyrin domain binding
## 11142 pyroglutamyl-peptidase activity
## 11143 pyroptosome complex assembly
## 11144 pyruvate secondary active transmembrane transporter activity
## 11145 pyruvate transmembrane transport
## 11146 pyruvate transmembrane transporter activity
## 11147 pyruvate transport
## 11148 quaternary ammonium group transmembrane transporter activity
## 11149 quaternary ammonium group transport
## 11150 queuine tRNA-ribosyltransferase activity
## 11151 quinolinate biosynthetic process
## 11152 quinolinate catabolic process
## 11153 Rab geranylgeranyltransferase activity
## 11154 Rab-protein geranylgeranyltransferase complex
## 11155 racemase and epimerase activity, acting on carbohydrates and derivatives
## 11156 Rad17 RFC-like complex
## 11157 Rad6-Rad18 complex
## 11158 radial glial cell differentiation
## 11159 radial spoke stalk
## 11160 Ran protein signal transduction
## 11161 random inactivation of X chromosome
## 11162 rDNA binding
## 11163 reactive gliosis
## 11164 reactive oxygen species biosynthetic process
## 11165 receptor inhibitor activity
## 11166 receptor internalization involved in canonical Wnt signaling pathway
## 11167 receptor localization to non-motile cilium
## 11168 receptor metabolic process
## 11169 receptor serine/threonine kinase binding
## 11170 receptor signaling protein tyrosine kinase inhibitor activity
## 11171 receptor-mediated virion attachment to host cell
## 11172 receptor-receptor interaction
## 11173 recombinase activity
## 11174 recombinational repair
## 11175 RecQ family helicase-topoisomerase III complex
## 11176 recruitment of 3'-end processing factors to RNA polymerase II holoenzyme complex
## 11177 recycling endosome to Golgi transport
## 11178 reduction of food intake in response to dietary excess
## 11179 reelin receptor activity
## 11180 regulation of acrosome reaction
## 11181 regulation of actin filament depolymerization
## 11182 regulation of actin nucleation
## 11183 regulation of actin phosphorylation
## 11184 regulation of action potential
## 11185 regulation of activated T cell proliferation
## 11186 regulation of activation-induced cell death of T cells
## 11187 regulation of activin receptor signaling pathway
## 11188 regulation of acute inflammatory response
## 11189 regulation of amyloid-beta formation
## 11190 regulation of angiotensin metabolic process
## 11191 regulation of anion transport
## 11192 regulation of arginine biosynthetic process
## 11193 regulation of arginine metabolic process
## 11194 regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## 11195 regulation of asymmetric cell division
## 11196 regulation of ATP metabolic process
## 11197 regulation of atrial cardiac muscle cell membrane repolarization
## 11198 regulation of B cell activation
## 11199 regulation of B cell proliferation
## 11200 regulation of barbed-end actin filament capping
## 11201 regulation of blastocyst development
## 11202 regulation of blood circulation
## 11203 regulation of blood coagulation
## 11204 regulation of blood vessel branching
## 11205 regulation of blood vessel diameter by renin-angiotensin
## 11206 regulation of bone development
## 11207 regulation of branching morphogenesis of a nerve
## 11208 regulation of bundle of His cell action potential
## 11209 regulation of calcineurin-NFAT signaling cascade
## 11210 regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## 11211 regulation of calcium ion-dependent exocytosis of neurotransmitter
## 11212 regulation of CAMKK-AMPK signaling cascade
## 11213 regulation of cAMP-dependent protein kinase activity
## 11214 regulation of carbohydrate metabolic process
## 11215 regulation of carbohydrate utilization
## 11216 regulation of cardiac muscle cell action potential
## 11217 regulation of cardiac muscle cell proliferation
## 11218 regulation of cardiac muscle contraction by calcium ion signaling
## 11219 regulation of cargo loading into COPII-coated vesicle
## 11220 regulation of cation transmembrane transport
## 11221 regulation of CD4-positive, alpha-beta T cell differentiation
## 11222 regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## 11223 regulation of Cdc42 protein signal transduction
## 11224 regulation of cell adhesion molecule production
## 11225 regulation of cell communication by electrical coupling
## 11226 regulation of cell cycle G1/S phase transition
## 11227 regulation of cell cycle phase transition
## 11228 regulation of cell death
## 11229 regulation of cell diameter
## 11230 regulation of cell growth by extracellular stimulus
## 11231 regulation of cell motility involved in somitogenic axis elongation
## 11232 regulation of cell projection organization
## 11233 regulation of cell-cell adhesion mediated by integrin
## 11234 regulation of cell-substrate adhesion
## 11235 regulation of cell-substrate junction organization
## 11236 regulation of cellular carbohydrate catabolic process
## 11237 regulation of cellular component movement
## 11238 regulation of cellular hyperosmotic salinity response
## 11239 regulation of cellular process
## 11240 regulation of cellular protein catabolic process
## 11241 regulation of cellular response to drug
## 11242 regulation of cellular response to gamma radiation
## 11243 regulation of cellular response to hypoxia
## 11244 regulation of cellular response to osmotic stress
## 11245 regulation of cellular response to stress
## 11246 regulation of cellular response to X-ray
## 11247 regulation of centromere complex assembly
## 11248 regulation of centromeric sister chromatid cohesion
## 11249 regulation of ceramide biosynthetic process
## 11250 regulation of cGMP-mediated signaling
## 11251 regulation of chaperone-mediated protein folding
## 11252 regulation of chemokine production
## 11253 regulation of cholesterol import
## 11254 regulation of chondrocyte differentiation
## 11255 regulation of chorionic trophoblast cell proliferation
## 11256 regulation of chromatin assembly
## 11257 regulation of chromatin disassembly
## 11258 regulation of chromatin silencing at telomere
## 11259 regulation of chromosome organization
## 11260 regulation of cilium beat frequency involved in ciliary motility
## 11261 regulation of cilium movement
## 11262 regulation of circadian sleep/wake cycle
## 11263 regulation of circadian sleep/wake cycle, non-REM sleep
## 11264 regulation of collagen catabolic process
## 11265 regulation of cortisol biosynthetic process
## 11266 regulation of cysteine-type endopeptidase activity
## 11267 regulation of cytokine production involved in immune response
## 11268 regulation of cytokinesis, actomyosin contractile ring assembly
## 11269 regulation of cytoplasmic mRNA processing body assembly
## 11270 regulation of D-erythro-sphingosine kinase activity
## 11271 regulation of definitive erythrocyte differentiation
## 11272 regulation of dendritic cell dendrite assembly
## 11273 regulation of dendritic spine maintenance
## 11274 regulation of developmental growth
## 11275 regulation of developmental pigmentation
## 11276 regulation of DNA damage response, signal transduction by p53 class mediator
## 11277 regulation of DNA methylation-dependent heterochromatin assembly
## 11278 regulation of DNA N-glycosylase activity
## 11279 regulation of DNA replication origin binding
## 11280 regulation of DNA stability
## 11281 regulation of DNA-dependent DNA replication
## 11282 regulation of dopamine metabolic process
## 11283 regulation of early endosome to recycling endosome transport
## 11284 regulation of embryonic cell shape
## 11285 regulation of endocytic recycling
## 11286 regulation of endodeoxyribonuclease activity
## 11287 regulation of endopeptidase activity
## 11288 regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## 11289 regulation of endoplasmic reticulum tubular network organization
## 11290 regulation of endoplasmic reticulum unfolded protein response
## 11291 regulation of endosome organization
## 11292 regulation of endosome size
## 11293 regulation of endothelial cell apoptotic process
## 11294 regulation of endothelial cell proliferation
## 11295 regulation of epidermal cell division
## 11296 regulation of ERBB signaling pathway
## 11297 regulation of establishment of planar polarity involved in neural tube closure
## 11298 regulation of estradiol secretion
## 11299 regulation of excretion
## 11300 regulation of extracellular exosome assembly
## 11301 regulation of extracellular matrix constituent secretion
## 11302 regulation of extracellular matrix disassembly
## 11303 regulation of extrathymic T cell differentiation
## 11304 regulation of extrinsic apoptotic signaling pathway
## 11305 regulation of extrinsic apoptotic signaling pathway in absence of ligand
## 11306 regulation of Fas signaling pathway
## 11307 regulation of fat cell apoptotic process
## 11308 regulation of fatty acid oxidation
## 11309 regulation of fatty acid transport
## 11310 regulation of fertilization
## 11311 regulation of fibroblast apoptotic process
## 11312 regulation of fibroblast growth factor receptor signaling pathway
## 11313 regulation of forebrain neuron differentiation
## 11314 regulation of gamma-delta T cell differentiation
## 11315 regulation of gastric motility
## 11316 regulation of glial cell differentiation
## 11317 regulation of glial cell proliferation
## 11318 regulation of glucagon secretion
## 11319 regulation of glucocorticoid metabolic process
## 11320 regulation of glucose transmembrane transport
## 11321 regulation of glutamate uptake involved in transmission of nerve impulse
## 11322 regulation of glycogen (starch) synthase activity
## 11323 regulation of glycogen catabolic process
## 11324 regulation of glycogen metabolic process
## 11325 regulation of granulocyte differentiation
## 11326 regulation of growth hormone secretion
## 11327 regulation of growth plate cartilage chondrocyte proliferation
## 11328 regulation of GTP binding
## 11329 regulation of heart induction by regulation of canonical Wnt signaling pathway
## 11330 regulation of heart rate by chemical signal
## 11331 regulation of hematopoietic stem cell proliferation
## 11332 regulation of hemoglobin biosynthetic process
## 11333 regulation of hemopoiesis
## 11334 regulation of hepatocyte proliferation
## 11335 regulation of high-density lipoprotein particle assembly
## 11336 regulation of histone H2B conserved C-terminal lysine ubiquitination
## 11337 regulation of histone H3-K27 acetylation
## 11338 regulation of histone H3-K27 methylation
## 11339 regulation of histone H3-K36 methylation
## 11340 regulation of histone H3-K36 trimethylation
## 11341 regulation of histone H3-K9 acetylation
## 11342 regulation of histone H3-K9 methylation
## 11343 regulation of histone H3-K9 trimethylation
## 11344 regulation of histone H4-K16 acetylation
## 11345 regulation of histone phosphorylation
## 11346 regulation of histone ubiquitination
## 11347 regulation of hormone biosynthetic process
## 11348 regulation of hormone metabolic process
## 11349 regulation of hyaluronan biosynthetic process
## 11350 regulation of hydrogen peroxide-induced cell death
## 11351 regulation of inclusion body assembly
## 11352 regulation of inner ear auditory receptor cell differentiation
## 11353 regulation of integrin-mediated signaling pathway
## 11354 regulation of interferon-beta production
## 11355 regulation of interleukin-1-mediated signaling pathway
## 11356 regulation of interleukin-10 production
## 11357 regulation of interleukin-18 production
## 11358 regulation of interleukin-2 production
## 11359 regulation of interleukin-23 production
## 11360 regulation of interleukin-4 production
## 11361 regulation of interleukin-8 production
## 11362 regulation of intestinal absorption
## 11363 regulation of intracellular transport
## 11364 regulation of intraciliary retrograde transport
## 11365 regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## 11366 regulation of inward rectifier potassium channel activity
## 11367 regulation of ion transport
## 11368 regulation of iron ion transport
## 11369 regulation of isoprenoid metabolic process
## 11370 regulation of JUN kinase activity
## 11371 regulation of ketone biosynthetic process
## 11372 regulation of kidney size
## 11373 regulation of kinetochore assembly
## 11374 regulation of lactation
## 11375 regulation of leukocyte adhesion to arterial endothelial cell
## 11376 regulation of leukocyte adhesion to vascular endothelial cell
## 11377 regulation of leukocyte tethering or rolling
## 11378 regulation of lipopolysaccharide-mediated signaling pathway
## 11379 regulation of lipoprotein lipase activity
## 11380 regulation of locomotion
## 11381 regulation of locomotor rhythm
## 11382 regulation of long-chain fatty acid import into cell
## 11383 regulation of low-density lipoprotein particle clearance
## 11384 regulation of low-density lipoprotein particle receptor catabolic process
## 11385 regulation of lung blood pressure
## 11386 regulation of lymphocyte chemotaxis
## 11387 regulation of lysosomal membrane permeability
## 11388 regulation of lysosomal protein catabolic process
## 11389 regulation of macrophage derived foam cell differentiation
## 11390 regulation of macrophage migration
## 11391 regulation of MAPK export from nucleus
## 11392 regulation of mast cell activation
## 11393 regulation of mast cell apoptotic process
## 11394 regulation of matrix metallopeptidase secretion
## 11395 regulation of meiotic cell cycle process involved in oocyte maturation
## 11396 regulation of melanin biosynthetic process
## 11397 regulation of melanosome organization
## 11398 regulation of membrane depolarization during cardiac muscle cell action potential
## 11399 regulation of membrane repolarization during atrial cardiac muscle cell action potential
## 11400 regulation of membrane repolarization during cardiac muscle cell action potential
## 11401 regulation of mesenchymal cell proliferation
## 11402 regulation of mesoderm development
## 11403 regulation of microglial cell activation
## 11404 regulation of microglial cell migration
## 11405 regulation of microtubule nucleation by Ran protein signal transduction
## 11406 regulation of microtubule-based movement
## 11407 regulation of microvillus length
## 11408 regulation of mitochondrial ATP synthesis coupled proton transport
## 11409 regulation of mitochondrial DNA replication
## 11410 regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## 11411 regulation of mitotic cell cycle DNA replication
## 11412 regulation of mitotic cell cycle, embryonic
## 11413 regulation of mitotic cytokinesis
## 11414 regulation of mitotic sister chromatid separation
## 11415 regulation of modification of postsynaptic actin cytoskeleton
## 11416 regulation of modification of synaptic structure
## 11417 regulation of molecular function, epigenetic
## 11418 regulation of mRNA 3'-end processing
## 11419 regulation of mRNA stability involved in response to oxidative stress
## 11420 regulation of multivesicular body size
## 11421 regulation of myeloid progenitor cell differentiation
## 11422 regulation of myoblast differentiation
## 11423 regulation of myoblast proliferation
## 11424 regulation of myosin II filament organization
## 11425 regulation of myosin-light-chain-phosphatase activity
## 11426 regulation of myotube differentiation
## 11427 regulation of NADP metabolic process
## 11428 regulation of natural killer cell activation
## 11429 regulation of natural killer cell differentiation
## 11430 regulation of natural killer cell proliferation
## 11431 regulation of nephron tubule epithelial cell differentiation
## 11432 regulation of nervous system process
## 11433 regulation of neuroblast proliferation
## 11434 regulation of neuron maturation
## 11435 regulation of neuronal action potential
## 11436 regulation of neurotransmitter receptor localization to postsynaptic specialization membrane
## 11437 regulation of neutrophil chemotaxis
## 11438 regulation of neutrophil degranulation
## 11439 regulation of neutrophil extravasation
## 11440 regulation of neutrophil migration
## 11441 regulation of nitric oxide biosynthetic process
## 11442 regulation of nitric oxide mediated signal transduction
## 11443 regulation of nitrogen utilization
## 11444 regulation of NK T cell differentiation
## 11445 regulation of NLRP3 inflammasome complex assembly
## 11446 regulation of norepinephrine uptake
## 11447 regulation of nucleic acid-templated transcription
## 11448 regulation of nucleotide-excision repair
## 11449 regulation of nucleus size
## 11450 regulation of odontoblast differentiation
## 11451 regulation of odontogenesis of dentin-containing tooth
## 11452 regulation of oligodendrocyte differentiation
## 11453 regulation of opioid receptor signaling pathway
## 11454 regulation of osteoclast development
## 11455 regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## 11456 regulation of oxidative stress-induced neuron death
## 11457 regulation of oxidoreductase activity
## 11458 regulation of p38MAPK cascade
## 11459 regulation of pathway-restricted SMAD protein phosphorylation
## 11460 regulation of pentose-phosphate shunt
## 11461 regulation of peptide hormone secretion
## 11462 regulation of peroxisome organization
## 11463 regulation of peroxisome proliferator activated receptor signaling pathway
## 11464 regulation of peroxisome size
## 11465 regulation of phagosome maturation
## 11466 regulation of phosphatase activity
## 11467 regulation of phospholipase A2 activity
## 11468 regulation of phospholipid catabolic process
## 11469 regulation of planar cell polarity pathway involved in neural tube closure
## 11470 regulation of plasma membrane sterol distribution
## 11471 regulation of platelet activation
## 11472 regulation of platelet-derived growth factor production
## 11473 regulation of podosome assembly
## 11474 regulation of postsynaptic density protein 95 clustering
## 11475 regulation of potassium ion export across plasma membrane
## 11476 regulation of potassium ion import
## 11477 regulation of potassium ion transmembrane transporter activity
## 11478 regulation of primary metabolic process
## 11479 regulation of primitive erythrocyte differentiation
## 11480 regulation of production of miRNAs involved in gene silencing by miRNA
## 11481 regulation of production of siRNA involved in RNA interference
## 11482 regulation of progesterone biosynthetic process
## 11483 regulation of protein catabolic process at presynapse, modulating synaptic transmission
## 11484 regulation of protein deacetylation
## 11485 regulation of protein dephosphorylation
## 11486 regulation of protein deubiquitination
## 11487 regulation of protein exit from endoplasmic reticulum
## 11488 regulation of protein K48-linked deubiquitination
## 11489 regulation of protein lipidation
## 11490 regulation of protein localization to adherens junction
## 11491 regulation of protein localization to cell cortex
## 11492 regulation of protein monoubiquitination
## 11493 regulation of protein targeting
## 11494 regulation of protein tyrosine kinase activity
## 11495 regulation of protein-containing complex disassembly
## 11496 regulation of pyruvate kinase activity
## 11497 regulation of Ral protein signal transduction
## 11498 regulation of Rap protein signal transduction
## 11499 regulation of receptor internalization
## 11500 regulation of receptor localization to synapse
## 11501 regulation of regulated secretory pathway
## 11502 regulation of relaxation of muscle
## 11503 regulation of release of cytochrome c from mitochondria
## 11504 regulation of respiratory system process
## 11505 regulation of response to DNA damage checkpoint signaling
## 11506 regulation of response to endoplasmic reticulum stress
## 11507 regulation of response to food
## 11508 regulation of response to interferon-gamma
## 11509 regulation of retinal ganglion cell axon guidance
## 11510 regulation of retinoic acid receptor signaling pathway
## 11511 regulation of Rho guanyl-nucleotide exchange factor activity
## 11512 regulation of rhodopsin gene expression
## 11513 regulation of RNA export from nucleus
## 11514 regulation of RNA polymerase II transcription preinitiation complex assembly
## 11515 regulation of rRNA processing
## 11516 regulation of rRNA stability
## 11517 regulation of sarcomere organization
## 11518 regulation of Schwann cell differentiation
## 11519 regulation of sequestering of zinc ion
## 11520 regulation of serotonin uptake
## 11521 regulation of signal transduction involved in mitotic G2 DNA damage checkpoint
## 11522 regulation of signaling receptor activity
## 11523 regulation of sister chromatid cohesion
## 11524 regulation of sister chromatid segregation
## 11525 regulation of skeletal muscle acetylcholine-gated channel clustering
## 11526 regulation of skeletal muscle adaptation
## 11527 regulation of skeletal muscle cell differentiation
## 11528 regulation of skeletal muscle contraction
## 11529 regulation of skeletal muscle fiber development
## 11530 regulation of skeletal muscle tissue development
## 11531 regulation of SMAD protein signal transduction
## 11532 regulation of smooth muscle cell migration
## 11533 regulation of smooth muscle cell proliferation
## 11534 regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## 11535 regulation of SNARE complex assembly
## 11536 regulation of sodium:proton antiporter activity
## 11537 regulation of somatic stem cell population maintenance
## 11538 regulation of somitogenesis
## 11539 regulation of sprouting angiogenesis
## 11540 regulation of stem cell differentiation
## 11541 regulation of steroid metabolic process
## 11542 regulation of store-operated calcium channel activity
## 11543 regulation of stress granule assembly
## 11544 regulation of stress-activated protein kinase signaling cascade
## 11545 regulation of striated muscle contraction
## 11546 regulation of supramolecular fiber organization
## 11547 regulation of synaptic transmission, dopaminergic
## 11548 regulation of synaptic vesicle cycle
## 11549 regulation of synaptic vesicle fusion to presynaptic active zone membrane
## 11550 regulation of synaptic vesicle transport
## 11551 regulation of systemic arterial blood pressure by norepinephrine-epinephrine
## 11552 regulation of systemic arterial blood pressure mediated by a chemical signal
## 11553 regulation of T cell antigen processing and presentation
## 11554 regulation of T cell mediated cytotoxicity
## 11555 regulation of T cell migration
## 11556 regulation of telomere capping
## 11557 regulation of telomere maintenance via telomere lengthening
## 11558 regulation of termination of RNA polymerase I transcription
## 11559 regulation of thalamus size
## 11560 regulation of thymocyte apoptotic process
## 11561 regulation of thyroid hormone mediated signaling pathway
## 11562 regulation of tissue remodeling
## 11563 regulation of transcription by glucose
## 11564 regulation of transcription by RNA polymerase I
## 11565 regulation of transcription from RNA polymerase II promoter by glucose
## 11566 regulation of transcription from RNA polymerase II promoter in response to iron
## 11567 regulation of transcription from RNA polymerase II promoter in response to stress
## 11568 regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## 11569 regulation of transcription from RNA polymerase II promoter involved in spermatogenesis
## 11570 regulation of transcription involved in G2/M transition of mitotic cell cycle
## 11571 regulation of transcription of nucleolar large rRNA by RNA polymerase I
## 11572 regulation of translation at postsynapse, modulating synaptic transmission
## 11573 regulation of translation at presynapse, modulating synaptic transmission
## 11574 regulation of translation at synapse, modulating synaptic transmission
## 11575 regulation of translation in response to stress
## 11576 regulation of translation involved in cellular response to UV
## 11577 regulation of translational initiation by eIF2 alpha dephosphorylation
## 11578 regulation of transmembrane transporter activity
## 11579 regulation of transmission of nerve impulse
## 11580 regulation of transport
## 11581 regulation of triglyceride metabolic process
## 11582 regulation of trophoblast cell migration
## 11583 regulation of type IV hypersensitivity
## 11584 regulation of ubiquinone biosynthetic process
## 11585 regulation of ubiquitin protein ligase activity
## 11586 regulation of ubiquitin-dependent protein catabolic process
## 11587 regulation of ubiquitin-specific protease activity
## 11588 regulation of urine volume
## 11589 regulation of vacuole organization
## 11590 regulation of vascular associated smooth muscle cell dedifferentiation
## 11591 regulation of vascular associated smooth muscle contraction
## 11592 regulation of vascular endothelial growth factor production
## 11593 regulation of vascular endothelial growth factor receptor signaling pathway
## 11594 regulation of vascular permeability involved in acute inflammatory response
## 11595 regulation of vasoconstriction by circulating norepinephrine
## 11596 regulation of ventricular cardiac muscle cell membrane depolarization
## 11597 regulation of vesicle fusion
## 11598 regulation of viral budding via host ESCRT complex
## 11599 regulation of viral release from host cell
## 11600 regulation of viral transcription
## 11601 regulation of voltage-gated calcium channel activity
## 11602 regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## 11603 regulation of water loss via skin
## 11604 regulatory T cell differentiation
## 11605 release from viral latency
## 11606 release of matrix enzymes from mitochondria
## 11607 release of sequestered calcium ion into cytosol by endoplasmic reticulum
## 11608 renal artery morphogenesis
## 11609 renal phosphate ion absorption
## 11610 renal potassium excretion
## 11611 renal sodium ion transport
## 11612 renal tubule development
## 11613 renal tubule morphogenesis
## 11614 renal water absorption
## 11615 renin secretion into blood stream
## 11616 reproduction
## 11617 reproductive system development
## 11618 RES complex
## 11619 resolution of mitotic recombination intermediates
## 11620 resolution of recombination intermediates
## 11621 respiratory system development
## 11622 response to 2-O-acetyl-1-O-hexadecyl-sn-glycero-3-phosphocholine
## 11623 response to 3,3',5-triiodo-L-thyronine
## 11624 response to acetate
## 11625 response to aluminum ion
## 11626 response to ammonium ion
## 11627 response to bacterial lipoprotein
## 11628 response to benzene
## 11629 response to caloric restriction
## 11630 response to camptothecin
## 11631 response to carbohydrate
## 11632 response to carbon monoxide
## 11633 response to cholecystokinin
## 11634 response to cobalamin
## 11635 response to corticosteroid
## 11636 response to corticosterone
## 11637 response to curcumin
## 11638 response to DDT
## 11639 response to dopamine
## 11640 response to dsRNA
## 11641 response to ether
## 11642 response to formaldehyde
## 11643 response to fungus
## 11644 response to G1 DNA damage checkpoint signaling
## 11645 response to glucoside
## 11646 response to glycoside
## 11647 response to gold nanoparticle
## 11648 response to gonadotropin
## 11649 response to histamine
## 11650 response to hydrostatic pressure
## 11651 response to insecticide
## 11652 response to interleukin-12
## 11653 response to iron ion starvation
## 11654 response to iron(II) ion
## 11655 response to iron(III) ion
## 11656 response to kainic acid
## 11657 response to L-arginine
## 11658 response to L-phenylalanine derivative
## 11659 response to light stimulus
## 11660 response to lipid hydroperoxide
## 11661 response to low light intensity stimulus
## 11662 response to manganese-induced endoplasmic reticulum stress
## 11663 response to mercury ion
## 11664 response to mineralocorticoid
## 11665 response to misfolded protein
## 11666 response to muscle activity involved in regulation of muscle adaptation
## 11667 response to nitric oxide
## 11668 response to nitrogen dioxide
## 11669 response to nitrosative stress
## 11670 response to odorant
## 11671 response to oleic acid
## 11672 response to oxygen radical
## 11673 response to parathyroid hormone
## 11674 response to pheromone
## 11675 response to platelet-derived growth factor
## 11676 response to platinum ion
## 11677 response to prostaglandin F
## 11678 response to rapamycin
## 11679 response to rotenone
## 11680 response to salt
## 11681 response to silver ion
## 11682 response to sorbitol
## 11683 response to tellurium ion
## 11684 response to TNF agonist
## 11685 response to tumor cell
## 11686 response to type III interferon
## 11687 response to UV-A
## 11688 response to vitamin B1
## 11689 response to vitamin E
## 11690 retina vasculature morphogenesis in camera-type eye
## 11691 retinal bipolar neuron differentiation
## 11692 retinal cell programmed cell death
## 11693 retinal dehydrogenase activity
## 11694 retinal pigment epithelium development
## 11695 retinal rod cell apoptotic process
## 11696 retinoic acid biosynthetic process
## 11697 retinol isomerase activity
## 11698 retinol O-fatty-acyltransferase activity
## 11699 retrograde axonal protein transport
## 11700 retrograde trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## 11701 retrograde trans-synaptic signaling by trans-synaptic protein complex
## 11702 retrograde transport, vesicle recycling within Golgi
## 11703 retromer, tubulation complex
## 11704 Rho GDP-dissociation inhibitor activity
## 11705 rhythmic synaptic transmission
## 11706 ribbon synapse
## 11707 ribitol 2-dehydrogenase activity
## 11708 riboflavin reductase (NADPH) activity
## 11709 riboflavin transmembrane transporter activity
## 11710 riboflavin transport
## 11711 ribonuclease E activity
## 11712 ribonuclease III activity
## 11713 ribonuclease inhibitor activity
## 11714 ribonuclease MRP activity
## 11715 ribonuclease P complex
## 11716 ribonucleoprotein complex assembly
## 11717 ribonucleoprotein complex biogenesis
## 11718 ribonucleoprotein complex localization
## 11719 ribonucleoside-diphosphate reductase activity
## 11720 RIC1-RGP1 guanyl-nucleotide exchange factor complex
## 11721 RIG-I binding
## 11722 right ventricular compact myocardium morphogenesis
## 11723 RING-like zinc finger domain binding
## 11724 Rix1 complex
## 11725 RNA 5'-methyltransferase activity
## 11726 RNA destabilization
## 11727 RNA folding
## 11728 RNA guanylyltransferase activity
## 11729 RNA import into mitochondrion
## 11730 RNA import into nucleus
## 11731 RNA lariat debranching enzyme activator activity
## 11732 RNA N1-methyladenosine dioxygenase activity
## 11733 RNA polymerase complex
## 11734 RNA polymerase I activity
## 11735 RNA polymerase I cis-regulatory region sequence-specific DNA binding
## 11736 RNA polymerase I core binding
## 11737 RNA polymerase I core factor complex
## 11738 RNA polymerase I general transcription initiation factor binding
## 11739 RNA polymerase II transcription repressor complex
## 11740 RNA polymerase III activity
## 11741 RNA polymerase III core binding
## 11742 RNA polymerase III preinitiation complex assembly
## 11743 RNA polymerase III transcription regulatory region sequence-specific DNA binding
## 11744 RNA transmembrane transporter activity
## 11745 RNA trimethylguanosine synthase activity
## 11746 rod photoreceptor outer segment
## 11747 rough endoplasmic reticulum lumen
## 11748 Roundabout signaling pathway
## 11749 rRNA (adenine-N6,N6-)-dimethyltransferase activity
## 11750 rRNA (guanine-N7)-methylation
## 11751 rRNA (guanine) methyltransferase activity
## 11752 rRNA (pseudouridine) methyltransferase activity
## 11753 rRNA (uridine-2'-O-)-methyltransferase activity
## 11754 rRNA base methylation
## 11755 rRNA export from nucleus
## 11756 rRNA metabolic process
## 11757 rRNA pseudouridine synthesis
## 11758 rRNA transport
## 11759 ryanodine receptor complex
## 11760 ryanodine-sensitive calcium-release channel activity
## 11761 S-adenosyl-L-methionine transmembrane transport
## 11762 S-adenosyl-L-methionine transmembrane transporter activity
## 11763 S-adenosyl-L-methionine transport
## 11764 S-adenosylhomocysteine metabolic process
## 11765 S-adenosylmethioninamine biosynthetic process
## 11766 S-formylglutathione hydrolase activity
## 11767 S-malonyltransferase activity
## 11768 S-nitrosoglutathione binding
## 11769 saccharopine dehydrogenase (NAD+, L-glutamate-forming) activity
## 11770 saccharopine dehydrogenase (NAD+, L-lysine-forming) activity
## 11771 saccharopine dehydrogenase (NADP+, L-lysine-forming) activity
## 11772 saccharopine dehydrogenase activity
## 11773 saliva secretion
## 11774 salivary gland morphogenesis
## 11775 SAM domain binding
## 11776 sarcomerogenesis
## 11777 sarcoplasmic reticulum calcium ion transport
## 11778 satellite cell activation involved in skeletal muscle regeneration
## 11779 satellite DNA binding
## 11780 Scc2-Scc4 cohesin loading complex
## 11781 Schwann cell differentiation
## 11782 Schwann cell microvillus
## 11783 Schwann cell proliferation
## 11784 sclerotome development
## 11785 Scrib-APC-beta-catenin complex
## 11786 sebum secreting cell proliferation
## 11787 Sec61 translocon complex
## 11788 Sec62/Sec63 complex
## 11789 second-messenger-mediated signaling
## 11790 secondary active organic cation transmembrane transporter activity
## 11791 secretion by lung epithelial cell involved in lung growth
## 11792 secretory columnal luminar epithelial cell differentiation involved in prostate glandular acinus development
## 11793 secretory dimeric IgA immunoglobulin complex
## 11794 secretory granule organization
## 11795 secretory IgA immunoglobulin complex
## 11796 secretory vesicle
## 11797 sedoheptulose-7-phosphate:D-glyceraldehyde-3-phosphate glyceronetransferase activity
## 11798 selenide, water dikinase activity
## 11799 selenium compound metabolic process
## 11800 selenocysteine biosynthetic process
## 11801 selenocysteine catabolic process
## 11802 selenocysteine lyase activity
## 11803 semaphorin-plexin signaling pathway involved in bone trabecula morphogenesis
## 11804 semi-lunar valve development
## 11805 semicircular canal development
## 11806 sensory organ development
## 11807 sensory perception of chemical stimulus
## 11808 sensory perception of light stimulus
## 11809 sensory perception of sour taste
## 11810 sensory perception of taste
## 11811 septin cytoskeleton
## 11812 septin cytoskeleton organization
## 11813 sequence-specific single stranded DNA binding
## 11814 sequestering of calcium ion
## 11815 sequestering of extracellular ligand from receptor
## 11816 sequestering of triglyceride
## 11817 sequestering of zinc ion
## 11818 Ser-tRNA(Ala) hydrolase activity
## 11819 serine binding
## 11820 serine family amino acid biosynthetic process
## 11821 serine family amino acid metabolic process
## 11822 serine hydrolase activity
## 11823 serine import across plasma membrane
## 11824 serine import into mitochondrion
## 11825 serine protease inhibitor complex
## 11826 serine transmembrane transporter activity
## 11827 serine-pyruvate aminotransferase complex
## 11828 serotonergic neuron axon guidance
## 11829 serotonergic synapse
## 11830 serotonin binding
## 11831 serotonin transport
## 11832 serotonin:sodium symporter activity
## 11833 Sertoli cell fate commitment
## 11834 serum response element binding
## 11835 sex chromatin
## 11836 SHG alpha-glucan phosphorylase activity
## 11837 short-chain carboxylesterase activity
## 11838 short-chain fatty acid catabolic process
## 11839 sialate 4-O-acetylesterase activity
## 11840 sialate 9-O-acetylesterase activity
## 11841 sialate O-acetylesterase activity
## 11842 sialic acid transmembrane transporter activity
## 11843 sialic acid transport
## 11844 siderophore-dependent iron import into cell
## 11845 signal release
## 11846 signal sequence binding
## 11847 signal transduction involved in mitotic cell cycle checkpoint
## 11848 signal transduction involved in mitotic G2 DNA damage checkpoint
## 11849 single-stranded DNA 3'-5' exodeoxyribonuclease activity
## 11850 single-stranded telomeric DNA binding
## 11851 site-specific DNA-methyltransferase (adenine-specific) activity
## 11852 skeletal muscle atrophy
## 11853 skeletal muscle myosin thick filament assembly
## 11854 skeletal muscle satellite cell activation
## 11855 skeletal muscle satellite cell migration
## 11856 skeletal myofibril assembly
## 11857 Ski complex
## 11858 skin epidermis development
## 11859 skin morphogenesis
## 11860 Slx1-Slx4 complex
## 11861 Sm-like protein family complex
## 11862 small protein activating enzyme binding
## 11863 small RNA 2'-O-methyltransferase
## 11864 small RNA loading onto RISC
## 11865 SMC loading complex
## 11866 smooth endoplasmic reticulum calcium ion homeostasis
## 11867 smooth muscle hyperplasia
## 11868 smooth muscle hypertrophy
## 11869 smoothened signaling pathway involved in regulation of cerebellar granule cell precursor cell proliferation
## 11870 smoothened signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## 11871 sn-1-glycerol-3-phosphate C16:0-DCA-CoA acyl transferase activity
## 11872 sn-glycerol-3-phosphate:ubiquinone oxidoreductase activity
## 11873 sn-glycerol-3-phosphate:ubiquinone-8 oxidoreductase activity
## 11874 snoRNA metabolic process
## 11875 snoRNA polyadenylation
## 11876 snoRNA splicing
## 11877 snRNA (adenine-N6)-methylation
## 11878 snRNA catabolic process
## 11879 snRNA import into nucleus
## 11880 snRNA metabolic process
## 11881 snRNA modification
## 11882 snRNA pseudouridine synthesis
## 11883 snRNA-activating protein complex
## 11884 sodium channel complex
## 11885 sodium ion export across plasma membrane
## 11886 sodium ion homeostasis
## 11887 sodium-independent organic anion transmembrane transporter activity
## 11888 sodium:potassium-exchanging ATPase activity
## 11889 sodium:potassium-exchanging ATPase complex
## 11890 sodium:potassium:chloride symporter activity
## 11891 somatic diversification of immune receptors via somatic mutation
## 11892 somatic diversification of immunoglobulins
## 11893 somatic muscle development
## 11894 somite specification
## 11895 sorbitol biosynthetic process
## 11896 sorbitol catabolic process
## 11897 sorbitol metabolic process
## 11898 specification of axis polarity
## 11899 Spemann organizer formation
## 11900 sperm capacitation
## 11901 sperm connecting piece
## 11902 sperm head
## 11903 sperm head-tail coupling apparatus
## 11904 spermatocyte division
## 11905 spermatogenesis, exchange of chromosomal proteins
## 11906 spermidine acetylation
## 11907 spermidine binding
## 11908 spermidine biosynthetic process
## 11909 spermidine catabolic process
## 11910 spermidine deacetylation
## 11911 spermidine metabolic process
## 11912 spermidine:oxygen oxidoreductase (3-aminopropanal-forming) activity
## 11913 spermine acetylation
## 11914 spermine biosynthetic process
## 11915 spermine catabolic process
## 11916 spermine metabolic process
## 11917 spermine transmembrane transport
## 11918 spermine:oxygen oxidoreductase (spermidine-forming) activity
## 11919 sphinganine biosynthetic process
## 11920 sphinganine kinase activity
## 11921 sphinganine-1-phosphate aldolase activity
## 11922 sphinganine-1-phosphate biosynthetic process
## 11923 sphingolipid delta-4 desaturase activity
## 11924 sphingolipid floppase activity
## 11925 sphingolipid mediated signaling pathway
## 11926 sphingolipid translocation
## 11927 sphingomyelin phosphodiesterase activator activity
## 11928 sphingomyelin transfer activity
## 11929 sphingosine-1-phosphate phosphatase activity
## 11930 spinal cord dorsal/ventral patterning
## 11931 spindle assembly involved in female meiosis
## 11932 spindle matrix
## 11933 spindle midzone assembly
## 11934 spliceosomal complex disassembly
## 11935 spliceosomal snRNP complex
## 11936 spliceosome conformational change to release U4 (or U4atac) and U1 (or U11)
## 11937 spontaneous neurotransmitter secretion
## 11938 spontaneous synaptic transmission
## 11939 SPOTS complex
## 11940 squalene monooxygenase activity
## 11941 SREBP-SCAP-Insig complex
## 11942 SRP-dependent cotranslational protein targeting to membrane, signal sequence recognition
## 11943 starch binding
## 11944 startle response
## 11945 stearoyl-CoA 9-desaturase activity
## 11946 stereocilium base
## 11947 stereocilium coat
## 11948 stereocilium maintenance
## 11949 stereocilium membrane
## 11950 stereocilium shaft
## 11951 steroid dehydrogenase activity
## 11952 steroid receptor RNA activator RNA binding
## 11953 sterol 14-demethylase activity
## 11954 sterol transfer activity
## 11955 sterol-4-alpha-carboxylate 3-dehydrogenase (decarboxylating) activity
## 11956 stilbene catabolic process
## 11957 stimulatory killer cell immunoglobulin-like receptor signaling pathway
## 11958 storage vacuole
## 11959 strand displacement
## 11960 stress granule disassembly
## 11961 stress-induced mitochondrial fusion
## 11962 stress-induced premature senescence
## 11963 striatal medium spiny neuron differentiation
## 11964 striated muscle dense body
## 11965 structural constituent of egg coat
## 11966 structural constituent of myelin sheath
## 11967 structural constituent of postsynapse
## 11968 structural constituent of postsynaptic density
## 11969 structural constituent of presynaptic active zone
## 11970 structural constituent of skin epidermis
## 11971 structural constituent of tooth enamel
## 11972 structural molecule activity conferring elasticity
## 11973 subapical part of cell
## 11974 substrate localization to autophagosome
## 11975 substrate-dependent cell migration, cell attachment to substrate
## 11976 succinate metabolic process
## 11977 succinate-CoA ligase (ADP-forming) activity
## 11978 succinate-CoA ligase (GDP-forming) activity
## 11979 succinate-CoA ligase complex
## 11980 succinyl-CoA hydrolase activity
## 11981 succinyl-CoA pathway
## 11982 sucrose biosynthetic process
## 11983 sucrose metabolic process
## 11984 sucrose transport
## 11985 sucrose:proton symporter activity
## 11986 sulfate adenylyltransferase (ATP) activity
## 11987 sulfate assimilation
## 11988 sulfide oxidation, using sulfide:quinone oxidoreductase
## 11989 sulfur carrier activity
## 11990 sulfur dioxygenase activity
## 11991 sulfur oxidation
## 11992 SUMO-specific isopeptidase activity
## 11993 superoxide dismutase copper chaperone activity
## 11994 suppression by virus of host apoptotic process
## 11995 suppression by virus of host autophagy
## 11996 suppression by virus of host STAT1 activity
## 11997 suppression by virus of host STAT2 activity
## 11998 supraspliceosomal complex
## 11999 swimming
## 12000 symmetric synapse
## 12001 symmetric, GABA-ergic, inhibitory synapse
## 12002 sympathetic ganglion development
## 12003 synapse assembly involved in innervation
## 12004 synapse maturation
## 12005 synaptic cleft
## 12006 synaptic growth at neuromuscular junction
## 12007 synaptic transmission, GABAergic
## 12008 synaptic vesicle clustering
## 12009 synaptic vesicle cycle
## 12010 synaptic vesicle lumen acidification
## 12011 synaptic vesicle recycling via endosome
## 12012 synaptic vesicle targeting
## 12013 synaptic vesicle to endosome fusion
## 12014 synaptonemal complex disassembly
## 12015 syncytiotrophoblast cell differentiation involved in labyrinthine layer development
## 12016 syncytium formation
## 12017 syndecan binding
## 12018 syntaxin-3 binding
## 12019 syntrophin complex
## 12020 T cell homeostatic proliferation
## 12021 T cell meandering migration
## 12022 T-helper 1 cell activation
## 12023 T-helper 1 cell lineage commitment
## 12024 T-helper 17 cell differentiation
## 12025 T-helper 2 cell activation
## 12026 T-helper 2 cell differentiation
## 12027 T-helper cell differentiation
## 12028 T-helper cell lineage commitment
## 12029 t-UTP complex
## 12030 TAP complex binding
## 12031 tapasin binding
## 12032 tarsal gland development
## 12033 taurine metabolic process
## 12034 taurine transmembrane transporter activity
## 12035 taurine:sodium symporter activity
## 12036 TCR signalosome
## 12037 TDP phosphorylation
## 12038 telencephalon cell migration
## 12039 telomerase RNA localization to Cajal body
## 12040 telomerase RNA stabilization
## 12041 telomere formation via telomerase
## 12042 telomere maintenance via base-excision repair
## 12043 telomere maintenance via telomere trimming
## 12044 telomeric loop disassembly
## 12045 telomeric loop formation
## 12046 terminal button organization
## 12047 terminal web
## 12048 termination of mitochondrial transcription
## 12049 testosterone 17-beta-dehydrogenase (NADP+) activity
## 12050 testosterone biosynthetic process
## 12051 tetracycline transmembrane transport
## 12052 tetracycline transmembrane transporter activity
## 12053 tetrahydrofolylpolyglutamate biosynthetic process
## 12054 tetrahydrofolylpolyglutamate metabolic process
## 12055 tetrahydrofolylpolyglutamate synthase activity
## 12056 thalamus development
## 12057 thiamine pyrophosphate transmembrane transport
## 12058 thiamine transmembrane transport
## 12059 thiamine transmembrane transporter activity
## 12060 thiamine-containing compound metabolic process
## 12061 thienylcyclohexylpiperidine binding
## 12062 thigmotaxis
## 12063 thiolester hydrolase activity
## 12064 thiomorpholine-carboxylate dehydrogenase activity
## 12065 thioredoxin peroxidase activity
## 12066 thioredoxin-disulfide reductase activity
## 12067 third ventricle development
## 12068 threonine transport
## 12069 threonine-tRNA ligase activity
## 12070 threonyl-tRNA aminoacylation
## 12071 thrombin-activated receptor activity
## 12072 thymidine biosynthetic process
## 12073 thymidine catabolic process
## 12074 thymidine kinase activity
## 12075 thymidine metabolic process
## 12076 thymidine phosphorylase activity
## 12077 thymidylate kinase activity
## 12078 thymidylate synthase activity
## 12079 thymine catabolic process
## 12080 thymocyte apoptotic process
## 12081 thyroid hormone mediated signaling pathway
## 12082 thyrotropin-releasing hormone receptor binding
## 12083 tight junction assembly
## 12084 TIRAP-dependent toll-like receptor 4 signaling pathway
## 12085 TNFSF11-mediated signaling pathway
## 12086 Toll-like receptor 1-Toll-like receptor 2 protein complex
## 12087 toll-like receptor 10 signaling pathway
## 12088 Toll-like receptor 2 binding
## 12089 Toll-like receptor 4 binding
## 12090 tongue morphogenesis
## 12091 tonic smooth muscle contraction
## 12092 tooth eruption
## 12093 TORC2 complex binding
## 12094 toxin metabolic process
## 12095 trachea cartilage morphogenesis
## 12096 trans-synaptic signaling by endocannabinoid, modulating synaptic transmission
## 12097 trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## 12098 trans-synaptic signaling by trans-synaptic complex, modulating synaptic transmission
## 12099 transcription factor TFIIE complex
## 12100 transcription factor TFIIF complex
## 12101 transcription factor TFIIK complex
## 12102 transcription open complex formation at RNA polymerase II promoter
## 12103 transcription preinitiation complex assembly
## 12104 transcription termination site sequence-specific DNA binding
## 12105 transcriptional activation by promoter-enhancer looping
## 12106 transepithelial ammonium transport
## 12107 transepithelial chloride transport
## 12108 transepithelial L-ascorbic acid transport
## 12109 transferase activity, transferring selenium-containing groups
## 12110 transferase complex
## 12111 transforming growth factor beta activation
## 12112 transforming growth factor beta production
## 12113 transforming growth factor beta receptor signaling pathway involved in heart development
## 12114 transforming growth factor beta1 activation
## 12115 transition between fast and slow fiber
## 12116 transition metal ion binding
## 12117 transketolase activity
## 12118 translation elongation factor binding
## 12119 translational attenuation
## 12120 transmembrane receptor protein tyrosine kinase inhibitor activity
## 12121 transmembrane receptor protein tyrosine phosphatase signaling pathway
## 12122 transport along microtubule
## 12123 transposase activity
## 12124 transposition, DNA-mediated
## 12125 transposition, RNA-mediated
## 12126 TRAPPI protein complex
## 12127 TRC complex
## 12128 trehalose metabolism in response to stress
## 12129 triacyl lipopeptide binding
## 12130 tricellular tight junction
## 12131 tricellular tight junction assembly
## 12132 tricuspid valve formation
## 12133 tricuspid valve morphogenesis
## 12134 trigeminal nerve structural organization
## 12135 triglyceride transport
## 12136 trimming of first mannose on A branch
## 12137 trimming of second mannose on A branch
## 12138 trimming of terminal mannose on B branch
## 12139 triokinase activity
## 12140 triose-phosphate isomerase activity
## 12141 triphosphatase activity
## 12142 triplex DNA binding
## 12143 triterpenoid biosynthetic process
## 12144 tRNA (adenine-N1-)-methyltransferase activity
## 12145 tRNA (guanine-N1-)-methyltransferase activity
## 12146 tRNA (guanine(9)-N(1))-methyltransferase activity
## 12147 tRNA (m1A) methyltransferase complex
## 12148 tRNA 2'-O-methyltransferase activity
## 12149 tRNA 3'-end processing
## 12150 tRNA 3'-terminal CCA addition
## 12151 tRNA 3'-trailer cleavage
## 12152 tRNA 3'-trailer cleavage, endonucleolytic
## 12153 tRNA 5'-end processing
## 12154 tRNA adenylyltransferase activity
## 12155 tRNA C3-cytosine methylation
## 12156 tRNA catabolic process
## 12157 tRNA cytidylyltransferase activity
## 12158 tRNA dimethylallyltransferase activity
## 12159 tRNA guanylyltransferase activity
## 12160 tRNA import into mitochondrion
## 12161 tRNA methylthiolation
## 12162 tRNA N1-guanine methylation
## 12163 tRNA re-export from nucleus
## 12164 tRNA threonylcarbamoyladenosine modification
## 12165 tRNA transcription
## 12166 tRNA transport
## 12167 tRNA wobble base cytosine methylation
## 12168 tRNA-5-taurinomethyluridine 2-sulfurtransferase
## 12169 tRNA-dihydrouridine20 synthase activity
## 12170 tRNA-intron endonuclease activity
## 12171 tRNA-uridine aminocarboxypropyltransferase activity
## 12172 trophectodermal cell proliferation
## 12173 troponin T binding
## 12174 tryptophan catabolic process
## 12175 tryptophan metabolic process
## 12176 tube development
## 12177 tube formation
## 12178 tubular endosome
## 12179 tubulin deacetylase activity
## 12180 tubulobulbar complex
## 12181 tumor necrosis factor receptor superfamily binding
## 12182 type 1 fibroblast growth factor receptor binding
## 12183 type 1 metabotropic glutamate receptor binding
## 12184 type 2 metabotropic glutamate receptor binding
## 12185 type B pancreatic cell apoptotic process
## 12186 type B pancreatic cell differentiation
## 12187 type II activin receptor binding
## 12188 tyrosine 3-monooxygenase activator activity
## 12189 tyrosine catabolic process
## 12190 tyrosine metabolic process
## 12191 U1 snRNA 3'-end processing
## 12192 U2 snRNA 3'-end processing
## 12193 U2 snRNP binding
## 12194 U2-type post-mRNA release spliceosomal complex
## 12195 U5 snRNA 3'-end processing
## 12196 U5 snRNA binding
## 12197 U6 2'-O-snRNA methylation
## 12198 U6 snRNA 3'-end processing
## 12199 U6atac snRNA binding
## 12200 U6atac snRNP
## 12201 ubiquinone metabolic process
## 12202 ubiquitin activating enzyme activity
## 12203 ubiquitin conjugating enzyme complex
## 12204 ubiquitin recycling
## 12205 ubiquitin-dependent endocytosis
## 12206 ubiquitin-dependent glycoprotein ERAD pathway
## 12207 ubiquitin-like protein transferase activity
## 12208 UDP catabolic process
## 12209 UDP phosphorylation
## 12210 UDP-glucose 4-epimerase activity
## 12211 UDP-glucose 6-dehydrogenase activity
## 12212 UDP-glucose catabolic process
## 12213 UDP-glucose metabolic process
## 12214 UDP-glucose:glycoprotein glucosyltransferase activity
## 12215 UDP-glucose:hexose-1-phosphate uridylyltransferase activity
## 12216 UDP-glucosylation
## 12217 UDP-glucosyltransferase activity
## 12218 UDP-glucuronate metabolic process
## 12219 UDP-glucuronic acid transmembrane transport
## 12220 UDP-glucuronic acid transmembrane transporter activity
## 12221 UDP-glycosyltransferase activity
## 12222 UDP-N-acetylgalactosamine diphosphorylase activity
## 12223 UDP-N-acetylgalactosamine transmembrane transport
## 12224 UDP-N-acetylgalactosamine transmembrane transporter activity
## 12225 UDP-N-acetylglucosamine 2-epimerase activity
## 12226 UDP-N-acetylglucosamine 4-epimerase activity
## 12227 UDP-N-acetylglucosamine catabolic process
## 12228 UDP-N-acetylglucosamine diphosphorylase activity
## 12229 UFD1-NPL4 complex
## 12230 UFM1 activating enzyme activity
## 12231 UFM1 ligase activity
## 12232 UFM1 transferase activity
## 12233 UMP biosynthetic process
## 12234 UMP kinase activity
## 12235 uniporter activity
## 12236 uracil binding
## 12237 uracil catabolic process
## 12238 uracil metabolic process
## 12239 urate metabolic process
## 12240 urate transmembrane transporter activity
## 12241 urate transport
## 12242 ureter development
## 12243 ureter maturation
## 12244 ureteric bud formation
## 12245 uridine transmembrane transporter activity
## 12246 uridine transport
## 12247 uridylate kinase activity
## 12248 urinary bladder smooth muscle contraction
## 12249 uropod organization
## 12250 uroporphyrinogen III biosynthetic process
## 12251 uroporphyrinogen-III synthase activity
## 12252 ursodeoxycholate 7-beta-dehydrogenase (NAD+) activity
## 12253 uterine gland development
## 12254 UTP diphosphatase activity
## 12255 UTP metabolic process
## 12256 UTP-C complex
## 12257 V2 vasopressin receptor binding
## 12258 vacuolar protein processing
## 12259 vacuolar sequestering
## 12260 vacuole-isolation membrane contact site
## 12261 vagina development
## 12262 valine metabolic process
## 12263 vascular associated smooth muscle cell differentiation
## 12264 vascular endothelial cell response to fluid shear stress
## 12265 vascular endothelial growth factor receptor-1 signaling pathway
## 12266 vascular endothelial growth factor receptor-2 signaling pathway
## 12267 vasopressin receptor activity
## 12268 VEGF-activated neuropilin signaling pathway
## 12269 ventral midline development
## 12270 ventral spinal cord interneuron differentiation
## 12271 ventricular cardiac muscle tissue development
## 12272 ventricular cardiac muscle tissue morphogenesis
## 12273 vertebrate eye-specific patterning
## 12274 very long-chain fatty-acyl-CoA catabolic process
## 12275 very long-chain fatty-acyl-CoA metabolic process
## 12276 very-long-chain enoyl-CoA reductase activity
## 12277 very-low-density lipoprotein particle assembly
## 12278 very-low-density lipoprotein particle clearance
## 12279 very-low-density lipoprotein particle receptor binding
## 12280 vesicle coat
## 12281 vesicle cytoskeletal trafficking
## 12282 vesicle localization
## 12283 vesicle targeting, trans-Golgi to periciliary membrane compartment
## 12284 vesicle tethering to endoplasmic reticulum
## 12285 vesicle uncoating
## 12286 vesicle-mediated cholesterol transport
## 12287 viral release from host cell
## 12288 viral RNA genome packaging
## 12289 virus maturation
## 12290 visual system development
## 12291 vitamin A metabolic process
## 12292 vitamin B6 binding
## 12293 vitamin D response element binding
## 12294 vitamin K catabolic process
## 12295 vitamin K metabolic process
## 12296 vitamin transmembrane transporter activity
## 12297 vitamin transport
## 12298 vitamin-K-epoxide reductase (warfarin-sensitive) activity
## 12299 vitellogenesis
## 12300 vocalization behavior
## 12301 voltage-gated calcium channel activity involved in positive regulation of presynaptic cytosolic calcium levels
## 12302 voltage-gated potassium channel activity involved in atrial cardiac muscle cell action potential repolarization
## 12303 voltage-gated proton channel activity
## 12304 walking behavior
## 12305 wax biosynthetic process
## 12306 WD40-repeat domain binding
## 12307 wide pore channel activity
## 12308 Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## 12309 Wnt signaling pathway involved in somitogenesis
## 12310 Wnt signalosome assembly
## 12311 Wnt-Frizzled-LRP5/6 complex
## 12312 wound healing involved in inflammatory response
## 12313 XPC complex
## 12314 xylosylprotein 4-beta-galactosyltransferase activity
## 12315 xylulose metabolic process
## 12316 Y chromosome
## 12317 zonula adherens
## 12318 zygote asymmetric cell division
## 12319 zygotic specification of dorsal/ventral axis
## 12320 zymogen granule
## 12321 zymogen granule exocytosis
## n
## 1 4686
## 2 2532
## 3 2521
## 4 2421
## 5 2180
## 6 1750
## 7 1287
## 8 1280
## 9 1180
## 10 754
## 11 737
## 12 730
## 13 721
## 14 715
## 15 640
## 16 609
## 17 593
## 18 580
## 19 547
## 20 526
## 21 524
## 22 502
## 23 403
## 24 403
## 25 402
## 26 397
## 27 375
## 28 367
## 29 361
## 30 356
## 31 327
## 32 320
## 33 313
## 34 312
## 35 302
## 36 302
## 37 298
## 38 292
## 39 285
## 40 285
## 41 285
## 42 281
## 43 279
## 44 274
## 45 271
## 46 271
## 47 269
## 48 265
## 49 264
## 50 261
## 51 260
## 52 255
## 53 250
## 54 250
## 55 243
## 56 243
## 57 238
## 58 233
## 59 233
## 60 232
## 61 221
## 62 220
## 63 213
## 64 210
## 65 203
## 66 201
## 67 200
## 68 194
## 69 193
## 70 193
## 71 191
## 72 190
## 73 188
## 74 185
## 75 183
## 76 181
## 77 180
## 78 177
## 79 176
## 80 173
## 81 172
## 82 171
## 83 170
## 84 170
## 85 169
## 86 168
## 87 167
## 88 165
## 89 162
## 90 162
## 91 160
## 92 159
## 93 159
## 94 156
## 95 149
## 96 149
## 97 148
## 98 147
## 99 145
## 100 144
## 101 143
## 102 141
## 103 140
## 104 139
## 105 134
## 106 134
## 107 134
## 108 134
## 109 133
## 110 133
## 111 132
## 112 132
## 113 130
## 114 130
## 115 128
## 116 128
## 117 128
## 118 128
## 119 127
## 120 127
## 121 127
## 122 126
## 123 126
## 124 125
## 125 123
## 126 123
## 127 121
## 128 121
## 129 121
## 130 119
## 131 119
## 132 118
## 133 117
## 134 116
## 135 115
## 136 114
## 137 113
## 138 113
## 139 111
## 140 111
## 141 111
## 142 110
## 143 109
## 144 109
## 145 107
## 146 106
## 147 106
## 148 104
## 149 104
## 150 103
## 151 102
## 152 102
## 153 100
## 154 98
## 155 98
## 156 97
## 157 96
## 158 94
## 159 94
## 160 94
## 161 93
## 162 93
## 163 93
## 164 91
## 165 91
## 166 90
## 167 90
## 168 90
## 169 90
## 170 89
## 171 89
## 172 89
## 173 89
## 174 89
## 175 89
## 176 89
## 177 89
## 178 88
## 179 87
## 180 86
## 181 85
## 182 84
## 183 84
## 184 84
## 185 84
## 186 83
## 187 83
## 188 82
## 189 82
## 190 81
## 191 81
## 192 81
## 193 81
## 194 80
## 195 80
## 196 80
## 197 80
## 198 80
## 199 80
## 200 79
## 201 79
## 202 79
## 203 79
## 204 79
## 205 79
## 206 78
## 207 78
## 208 77
## 209 77
## 210 76
## 211 76
## 212 76
## 213 76
## 214 75
## 215 75
## 216 75
## 217 75
## 218 75
## 219 74
## 220 73
## 221 72
## 222 72
## 223 71
## 224 71
## 225 71
## 226 71
## 227 70
## 228 70
## 229 70
## 230 70
## 231 70
## 232 70
## 233 69
## 234 69
## 235 68
## 236 67
## 237 66
## 238 66
## 239 66
## 240 66
## 241 65
## 242 65
## 243 65
## 244 64
## 245 63
## 246 63
## 247 63
## 248 62
## 249 62
## 250 62
## 251 62
## 252 62
## 253 61
## 254 61
## 255 61
## 256 61
## 257 61
## 258 60
## 259 60
## 260 60
## 261 60
## 262 59
## 263 59
## 264 59
## 265 58
## 266 58
## 267 58
## 268 57
## 269 57
## 270 57
## 271 57
## 272 57
## 273 57
## 274 56
## 275 56
## 276 56
## 277 56
## 278 55
## 279 55
## 280 55
## 281 55
## 282 55
## 283 54
## 284 54
## 285 54
## 286 54
## 287 54
## 288 54
## 289 53
## 290 53
## 291 53
## 292 52
## 293 52
## 294 52
## 295 52
## 296 52
## 297 52
## 298 52
## 299 51
## 300 51
## 301 51
## 302 51
## 303 51
## 304 51
## 305 50
## 306 50
## 307 50
## 308 50
## 309 50
## 310 50
## 311 50
## 312 50
## 313 50
## 314 49
## 315 49
## 316 49
## 317 49
## 318 49
## 319 49
## 320 49
## 321 49
## 322 49
## 323 48
## 324 48
## 325 48
## 326 48
## 327 48
## 328 48
## 329 47
## 330 47
## 331 47
## 332 47
## 333 47
## 334 47
## 335 47
## 336 47
## 337 47
## 338 46
## 339 46
## 340 46
## 341 46
## 342 46
## 343 46
## 344 46
## 345 46
## 346 45
## 347 45
## 348 45
## 349 44
## 350 44
## 351 44
## 352 44
## 353 44
## 354 44
## 355 43
## 356 43
## 357 43
## 358 43
## 359 43
## 360 43
## 361 43
## 362 43
## 363 43
## 364 42
## 365 42
## 366 42
## 367 42
## 368 42
## 369 42
## 370 42
## 371 41
## 372 41
## 373 41
## 374 41
## 375 41
## 376 41
## 377 41
## 378 41
## 379 41
## 380 40
## 381 40
## 382 40
## 383 40
## 384 40
## 385 40
## 386 40
## 387 40
## 388 40
## 389 40
## 390 40
## 391 40
## 392 39
## 393 39
## 394 39
## 395 39
## 396 39
## 397 39
## 398 39
## 399 39
## 400 39
## 401 39
## 402 39
## 403 39
## 404 38
## 405 38
## 406 38
## 407 38
## 408 38
## 409 38
## 410 38
## 411 38
## 412 38
## 413 38
## 414 38
## 415 37
## 416 37
## 417 37
## 418 37
## 419 37
## 420 37
## 421 37
## 422 37
## 423 37
## 424 37
## 425 37
## 426 37
## 427 37
## 428 37
## 429 36
## 430 36
## 431 36
## 432 36
## 433 36
## 434 36
## 435 36
## 436 36
## 437 36
## 438 36
## 439 36
## 440 36
## 441 36
## 442 36
## 443 36
## 444 35
## 445 35
## 446 35
## 447 35
## 448 35
## 449 35
## 450 35
## 451 35
## 452 35
## 453 35
## 454 35
## 455 35
## 456 35
## 457 35
## 458 34
## 459 34
## 460 34
## 461 34
## 462 34
## 463 34
## 464 34
## 465 34
## 466 34
## 467 34
## 468 34
## 469 34
## 470 34
## 471 33
## 472 33
## 473 33
## 474 33
## 475 33
## 476 33
## 477 33
## 478 33
## 479 33
## 480 33
## 481 33
## 482 32
## 483 32
## 484 32
## 485 32
## 486 32
## 487 32
## 488 32
## 489 32
## 490 32
## 491 32
## 492 32
## 493 32
## 494 32
## 495 32
## 496 31
## 497 31
## 498 31
## 499 31
## 500 31
## 501 31
## 502 31
## 503 31
## 504 31
## 505 31
## 506 31
## 507 31
## 508 31
## 509 31
## 510 31
## 511 31
## 512 31
## 513 30
## 514 30
## 515 30
## 516 30
## 517 30
## 518 30
## 519 30
## 520 30
## 521 30
## 522 30
## 523 30
## 524 30
## 525 30
## 526 30
## 527 30
## 528 30
## 529 30
## 530 30
## 531 30
## 532 30
## 533 29
## 534 29
## 535 29
## 536 29
## 537 29
## 538 29
## 539 29
## 540 29
## 541 29
## 542 29
## 543 29
## 544 29
## 545 29
## 546 29
## 547 29
## 548 29
## 549 29
## 550 29
## 551 29
## 552 29
## 553 28
## 554 28
## 555 28
## 556 28
## 557 28
## 558 28
## 559 28
## 560 28
## 561 28
## 562 28
## 563 28
## 564 28
## 565 28
## 566 28
## 567 28
## 568 28
## 569 28
## 570 28
## 571 28
## 572 28
## 573 28
## 574 28
## 575 28
## 576 28
## 577 28
## 578 28
## 579 27
## 580 27
## 581 27
## 582 27
## 583 27
## 584 27
## 585 27
## 586 27
## 587 27
## 588 27
## 589 27
## 590 27
## 591 27
## 592 27
## 593 27
## 594 27
## 595 27
## 596 27
## 597 27
## 598 27
## 599 27
## 600 27
## 601 27
## 602 26
## 603 26
## 604 26
## 605 26
## 606 26
## 607 26
## 608 26
## 609 26
## 610 26
## 611 26
## 612 26
## 613 26
## 614 26
## 615 26
## 616 26
## 617 26
## 618 26
## 619 26
## 620 26
## 621 26
## 622 26
## 623 26
## 624 26
## 625 26
## 626 26
## 627 26
## 628 26
## 629 26
## 630 26
## 631 25
## 632 25
## 633 25
## 634 25
## 635 25
## 636 25
## 637 25
## 638 25
## 639 25
## 640 25
## 641 25
## 642 25
## 643 25
## 644 25
## 645 25
## 646 25
## 647 25
## 648 25
## 649 25
## 650 25
## 651 25
## 652 25
## 653 25
## 654 25
## 655 25
## 656 25
## 657 25
## 658 25
## 659 25
## 660 25
## 661 25
## 662 25
## 663 25
## 664 25
## 665 25
## 666 25
## 667 25
## 668 25
## 669 25
## 670 25
## 671 25
## 672 25
## 673 24
## 674 24
## 675 24
## 676 24
## 677 24
## 678 24
## 679 24
## 680 24
## 681 24
## 682 24
## 683 24
## 684 24
## 685 24
## 686 24
## 687 24
## 688 24
## 689 24
## 690 24
## 691 24
## 692 24
## 693 24
## 694 23
## 695 23
## 696 23
## 697 23
## 698 23
## 699 23
## 700 23
## 701 23
## 702 23
## 703 23
## 704 23
## 705 23
## 706 23
## 707 23
## 708 23
## 709 23
## 710 23
## 711 23
## 712 23
## 713 23
## 714 23
## 715 23
## 716 23
## 717 23
## 718 23
## 719 23
## 720 23
## 721 22
## 722 22
## 723 22
## 724 22
## 725 22
## 726 22
## 727 22
## 728 22
## 729 22
## 730 22
## 731 22
## 732 22
## 733 22
## 734 22
## 735 22
## 736 22
## 737 22
## 738 22
## 739 22
## 740 22
## 741 22
## 742 22
## 743 22
## 744 22
## 745 22
## 746 22
## 747 22
## 748 22
## 749 22
## 750 22
## 751 22
## 752 22
## 753 22
## 754 22
## 755 22
## 756 22
## 757 22
## 758 22
## 759 22
## 760 22
## 761 22
## 762 21
## 763 21
## 764 21
## 765 21
## 766 21
## 767 21
## 768 21
## 769 21
## 770 21
## 771 21
## 772 21
## 773 21
## 774 21
## 775 21
## 776 21
## 777 21
## 778 21
## 779 21
## 780 21
## 781 21
## 782 21
## 783 21
## 784 21
## 785 21
## 786 21
## 787 21
## 788 21
## 789 20
## 790 20
## 791 20
## 792 20
## 793 20
## 794 20
## 795 20
## 796 20
## 797 20
## 798 20
## 799 20
## 800 20
## 801 20
## 802 20
## 803 20
## 804 20
## 805 20
## 806 20
## 807 20
## 808 20
## 809 20
## 810 20
## 811 20
## 812 20
## 813 20
## 814 20
## 815 20
## 816 20
## 817 20
## 818 20
## 819 20
## 820 20
## 821 20
## 822 20
## 823 20
## 824 20
## 825 20
## 826 20
## 827 20
## 828 20
## 829 20
## 830 20
## 831 20
## 832 20
## 833 20
## 834 20
## 835 20
## 836 20
## 837 20
## 838 20
## 839 20
## 840 20
## 841 20
## 842 20
## 843 20
## 844 20
## 845 20
## 846 19
## 847 19
## 848 19
## 849 19
## 850 19
## 851 19
## 852 19
## 853 19
## 854 19
## 855 19
## 856 19
## 857 19
## 858 19
## 859 19
## 860 19
## 861 19
## 862 19
## 863 19
## 864 19
## 865 19
## 866 19
## 867 19
## 868 19
## 869 19
## 870 19
## 871 19
## 872 19
## 873 19
## 874 19
## 875 19
## 876 19
## 877 19
## 878 19
## 879 19
## 880 19
## 881 19
## 882 19
## 883 19
## 884 19
## 885 19
## 886 19
## 887 19
## 888 19
## 889 19
## 890 19
## 891 19
## 892 19
## 893 19
## 894 19
## 895 18
## 896 18
## 897 18
## 898 18
## 899 18
## 900 18
## 901 18
## 902 18
## 903 18
## 904 18
## 905 18
## 906 18
## 907 18
## 908 18
## 909 18
## 910 18
## 911 18
## 912 18
## 913 18
## 914 18
## 915 18
## 916 18
## 917 18
## 918 18
## 919 18
## 920 18
## 921 18
## 922 18
## 923 18
## 924 18
## 925 18
## 926 18
## 927 18
## 928 18
## 929 18
## 930 18
## 931 18
## 932 18
## 933 18
## 934 18
## 935 18
## 936 18
## 937 18
## 938 18
## 939 18
## 940 18
## 941 18
## 942 18
## 943 17
## 944 17
## 945 17
## 946 17
## 947 17
## 948 17
## 949 17
## 950 17
## 951 17
## 952 17
## 953 17
## 954 17
## 955 17
## 956 17
## 957 17
## 958 17
## 959 17
## 960 17
## 961 17
## 962 17
## 963 17
## 964 17
## 965 17
## 966 17
## 967 17
## 968 17
## 969 17
## 970 17
## 971 17
## 972 17
## 973 17
## 974 17
## 975 17
## 976 17
## 977 17
## 978 17
## 979 17
## 980 17
## 981 17
## 982 17
## 983 17
## 984 17
## 985 17
## 986 17
## 987 17
## 988 17
## 989 17
## 990 17
## 991 16
## 992 16
## 993 16
## 994 16
## 995 16
## 996 16
## 997 16
## 998 16
## 999 16
## 1000 16
## 1001 16
## 1002 16
## 1003 16
## 1004 16
## 1005 16
## 1006 16
## 1007 16
## 1008 16
## 1009 16
## 1010 16
## 1011 16
## 1012 16
## 1013 16
## 1014 16
## 1015 16
## 1016 16
## 1017 16
## 1018 16
## 1019 16
## 1020 16
## 1021 16
## 1022 16
## 1023 16
## 1024 16
## 1025 16
## 1026 16
## 1027 16
## 1028 16
## 1029 16
## 1030 16
## 1031 16
## 1032 16
## 1033 16
## 1034 16
## 1035 16
## 1036 16
## 1037 16
## 1038 16
## 1039 16
## 1040 16
## 1041 15
## 1042 15
## 1043 15
## 1044 15
## 1045 15
## 1046 15
## 1047 15
## 1048 15
## 1049 15
## 1050 15
## 1051 15
## 1052 15
## 1053 15
## 1054 15
## 1055 15
## 1056 15
## 1057 15
## 1058 15
## 1059 15
## 1060 15
## 1061 15
## 1062 15
## 1063 15
## 1064 15
## 1065 15
## 1066 15
## 1067 15
## 1068 15
## 1069 15
## 1070 15
## 1071 15
## 1072 15
## 1073 15
## 1074 15
## 1075 15
## 1076 15
## 1077 15
## 1078 15
## 1079 15
## 1080 15
## 1081 15
## 1082 15
## 1083 15
## 1084 15
## 1085 15
## 1086 15
## 1087 15
## 1088 15
## 1089 15
## 1090 15
## 1091 15
## 1092 15
## 1093 15
## 1094 15
## 1095 15
## 1096 15
## 1097 15
## 1098 15
## 1099 15
## 1100 15
## 1101 15
## 1102 15
## 1103 15
## 1104 15
## 1105 15
## 1106 15
## 1107 15
## 1108 15
## 1109 15
## 1110 15
## 1111 15
## 1112 15
## 1113 15
## 1114 15
## 1115 15
## 1116 15
## 1117 15
## 1118 15
## 1119 15
## 1120 14
## 1121 14
## 1122 14
## 1123 14
## 1124 14
## 1125 14
## 1126 14
## 1127 14
## 1128 14
## 1129 14
## 1130 14
## 1131 14
## 1132 14
## 1133 14
## 1134 14
## 1135 14
## 1136 14
## 1137 14
## 1138 14
## 1139 14
## 1140 14
## 1141 14
## 1142 14
## 1143 14
## 1144 14
## 1145 14
## 1146 14
## 1147 14
## 1148 14
## 1149 14
## 1150 14
## 1151 14
## 1152 14
## 1153 14
## 1154 14
## 1155 14
## 1156 14
## 1157 14
## 1158 14
## 1159 14
## 1160 14
## 1161 14
## 1162 14
## 1163 14
## 1164 14
## 1165 14
## 1166 14
## 1167 14
## 1168 14
## 1169 14
## 1170 14
## 1171 14
## 1172 14
## 1173 14
## 1174 14
## 1175 14
## 1176 14
## 1177 14
## 1178 14
## 1179 14
## 1180 14
## 1181 14
## 1182 14
## 1183 14
## 1184 14
## 1185 14
## 1186 14
## 1187 14
## 1188 14
## 1189 14
## 1190 14
## 1191 14
## 1192 14
## 1193 14
## 1194 14
## 1195 14
## 1196 14
## 1197 14
## 1198 14
## 1199 14
## 1200 13
## 1201 13
## 1202 13
## 1203 13
## 1204 13
## 1205 13
## 1206 13
## 1207 13
## 1208 13
## 1209 13
## 1210 13
## 1211 13
## 1212 13
## 1213 13
## 1214 13
## 1215 13
## 1216 13
## 1217 13
## 1218 13
## 1219 13
## 1220 13
## 1221 13
## 1222 13
## 1223 13
## 1224 13
## 1225 13
## 1226 13
## 1227 13
## 1228 13
## 1229 13
## 1230 13
## 1231 13
## 1232 13
## 1233 13
## 1234 13
## 1235 13
## 1236 13
## 1237 13
## 1238 13
## 1239 13
## 1240 13
## 1241 13
## 1242 13
## 1243 13
## 1244 13
## 1245 13
## 1246 13
## 1247 13
## 1248 13
## 1249 13
## 1250 13
## 1251 13
## 1252 13
## 1253 13
## 1254 13
## 1255 13
## 1256 13
## 1257 13
## 1258 13
## 1259 13
## 1260 13
## 1261 13
## 1262 13
## 1263 13
## 1264 13
## 1265 13
## 1266 13
## 1267 13
## 1268 13
## 1269 13
## 1270 13
## 1271 13
## 1272 13
## 1273 13
## 1274 13
## 1275 13
## 1276 13
## 1277 13
## 1278 13
## 1279 13
## 1280 13
## 1281 13
## 1282 13
## 1283 13
## 1284 13
## 1285 13
## 1286 13
## 1287 13
## 1288 13
## 1289 12
## 1290 12
## 1291 12
## 1292 12
## 1293 12
## 1294 12
## 1295 12
## 1296 12
## 1297 12
## 1298 12
## 1299 12
## 1300 12
## 1301 12
## 1302 12
## 1303 12
## 1304 12
## 1305 12
## 1306 12
## 1307 12
## 1308 12
## 1309 12
## 1310 12
## 1311 12
## 1312 12
## 1313 12
## 1314 12
## 1315 12
## 1316 12
## 1317 12
## 1318 12
## 1319 12
## 1320 12
## 1321 12
## 1322 12
## 1323 12
## 1324 12
## 1325 12
## 1326 12
## 1327 12
## 1328 12
## 1329 12
## 1330 12
## 1331 12
## 1332 12
## 1333 12
## 1334 12
## 1335 12
## 1336 12
## 1337 12
## 1338 12
## 1339 12
## 1340 12
## 1341 12
## 1342 12
## 1343 12
## 1344 12
## 1345 12
## 1346 12
## 1347 12
## 1348 12
## 1349 12
## 1350 12
## 1351 12
## 1352 12
## 1353 12
## 1354 12
## 1355 12
## 1356 12
## 1357 12
## 1358 12
## 1359 12
## 1360 12
## 1361 12
## 1362 12
## 1363 12
## 1364 12
## 1365 12
## 1366 12
## 1367 12
## 1368 12
## 1369 12
## 1370 12
## 1371 12
## 1372 12
## 1373 12
## 1374 12
## 1375 12
## 1376 12
## 1377 12
## 1378 12
## 1379 12
## 1380 12
## 1381 12
## 1382 12
## 1383 12
## 1384 12
## 1385 12
## 1386 12
## 1387 12
## 1388 12
## 1389 12
## 1390 12
## 1391 12
## 1392 12
## 1393 12
## 1394 12
## 1395 12
## 1396 12
## 1397 12
## 1398 12
## 1399 12
## 1400 12
## 1401 12
## 1402 12
## 1403 12
## 1404 12
## 1405 12
## 1406 12
## 1407 12
## 1408 11
## 1409 11
## 1410 11
## 1411 11
## 1412 11
## 1413 11
## 1414 11
## 1415 11
## 1416 11
## 1417 11
## 1418 11
## 1419 11
## 1420 11
## 1421 11
## 1422 11
## 1423 11
## 1424 11
## 1425 11
## 1426 11
## 1427 11
## 1428 11
## 1429 11
## 1430 11
## 1431 11
## 1432 11
## 1433 11
## 1434 11
## 1435 11
## 1436 11
## 1437 11
## 1438 11
## 1439 11
## 1440 11
## 1441 11
## 1442 11
## 1443 11
## 1444 11
## 1445 11
## 1446 11
## 1447 11
## 1448 11
## 1449 11
## 1450 11
## 1451 11
## 1452 11
## 1453 11
## 1454 11
## 1455 11
## 1456 11
## 1457 11
## 1458 11
## 1459 11
## 1460 11
## 1461 11
## 1462 11
## 1463 11
## 1464 11
## 1465 11
## 1466 11
## 1467 11
## 1468 11
## 1469 11
## 1470 11
## 1471 11
## 1472 11
## 1473 11
## 1474 11
## 1475 11
## 1476 11
## 1477 11
## 1478 11
## 1479 11
## 1480 11
## 1481 11
## 1482 11
## 1483 11
## 1484 11
## 1485 11
## 1486 11
## 1487 11
## 1488 11
## 1489 11
## 1490 11
## 1491 11
## 1492 11
## 1493 11
## 1494 11
## 1495 11
## 1496 11
## 1497 11
## 1498 11
## 1499 11
## 1500 11
## 1501 11
## 1502 11
## 1503 11
## 1504 11
## 1505 11
## 1506 11
## 1507 11
## 1508 11
## 1509 11
## 1510 11
## 1511 11
## 1512 11
## 1513 11
## 1514 11
## 1515 11
## 1516 11
## 1517 11
## 1518 11
## 1519 11
## 1520 11
## 1521 11
## 1522 11
## 1523 11
## 1524 11
## 1525 11
## 1526 11
## 1527 11
## 1528 11
## 1529 11
## 1530 11
## 1531 11
## 1532 10
## 1533 10
## 1534 10
## 1535 10
## 1536 10
## 1537 10
## 1538 10
## 1539 10
## 1540 10
## 1541 10
## 1542 10
## 1543 10
## 1544 10
## 1545 10
## 1546 10
## 1547 10
## 1548 10
## 1549 10
## 1550 10
## 1551 10
## 1552 10
## 1553 10
## 1554 10
## 1555 10
## 1556 10
## 1557 10
## 1558 10
## 1559 10
## 1560 10
## 1561 10
## 1562 10
## 1563 10
## 1564 10
## 1565 10
## 1566 10
## 1567 10
## 1568 10
## 1569 10
## 1570 10
## 1571 10
## 1572 10
## 1573 10
## 1574 10
## 1575 10
## 1576 10
## 1577 10
## 1578 10
## 1579 10
## 1580 10
## 1581 10
## 1582 10
## 1583 10
## 1584 10
## 1585 10
## 1586 10
## 1587 10
## 1588 10
## 1589 10
## 1590 10
## 1591 10
## 1592 10
## 1593 10
## 1594 10
## 1595 10
## 1596 10
## 1597 10
## 1598 10
## 1599 10
## 1600 10
## 1601 10
## 1602 10
## 1603 10
## 1604 10
## 1605 10
## 1606 10
## 1607 10
## 1608 10
## 1609 10
## 1610 10
## 1611 10
## 1612 10
## 1613 10
## 1614 10
## 1615 10
## 1616 10
## 1617 10
## 1618 10
## 1619 10
## 1620 10
## 1621 10
## 1622 10
## 1623 10
## 1624 10
## 1625 10
## 1626 10
## 1627 10
## 1628 10
## 1629 10
## 1630 10
## 1631 10
## 1632 10
## 1633 10
## 1634 10
## 1635 10
## 1636 10
## 1637 10
## 1638 10
## 1639 10
## 1640 10
## 1641 10
## 1642 10
## 1643 10
## 1644 10
## 1645 10
## 1646 10
## 1647 10
## 1648 10
## 1649 10
## 1650 10
## 1651 10
## 1652 10
## 1653 10
## 1654 10
## 1655 10
## 1656 10
## 1657 10
## 1658 10
## 1659 10
## 1660 10
## 1661 10
## 1662 10
## 1663 10
## 1664 10
## 1665 10
## 1666 10
## 1667 10
## 1668 10
## 1669 10
## 1670 10
## 1671 10
## 1672 10
## 1673 10
## 1674 10
## 1675 10
## 1676 10
## 1677 10
## 1678 10
## 1679 10
## 1680 10
## 1681 10
## 1682 10
## 1683 10
## 1684 10
## 1685 10
## 1686 10
## 1687 10
## 1688 10
## 1689 10
## 1690 10
## 1691 10
## 1692 10
## 1693 9
## 1694 9
## 1695 9
## 1696 9
## 1697 9
## 1698 9
## 1699 9
## 1700 9
## 1701 9
## 1702 9
## 1703 9
## 1704 9
## 1705 9
## 1706 9
## 1707 9
## 1708 9
## 1709 9
## 1710 9
## 1711 9
## 1712 9
## 1713 9
## 1714 9
## 1715 9
## 1716 9
## 1717 9
## 1718 9
## 1719 9
## 1720 9
## 1721 9
## 1722 9
## 1723 9
## 1724 9
## 1725 9
## 1726 9
## 1727 9
## 1728 9
## 1729 9
## 1730 9
## 1731 9
## 1732 9
## 1733 9
## 1734 9
## 1735 9
## 1736 9
## 1737 9
## 1738 9
## 1739 9
## 1740 9
## 1741 9
## 1742 9
## 1743 9
## 1744 9
## 1745 9
## 1746 9
## 1747 9
## 1748 9
## 1749 9
## 1750 9
## 1751 9
## 1752 9
## 1753 9
## 1754 9
## 1755 9
## 1756 9
## 1757 9
## 1758 9
## 1759 9
## 1760 9
## 1761 9
## 1762 9
## 1763 9
## 1764 9
## 1765 9
## 1766 9
## 1767 9
## 1768 9
## 1769 9
## 1770 9
## 1771 9
## 1772 9
## 1773 9
## 1774 9
## 1775 9
## 1776 9
## 1777 9
## 1778 9
## 1779 9
## 1780 9
## 1781 9
## 1782 9
## 1783 9
## 1784 9
## 1785 9
## 1786 9
## 1787 9
## 1788 9
## 1789 9
## 1790 9
## 1791 9
## 1792 9
## 1793 9
## 1794 9
## 1795 9
## 1796 9
## 1797 9
## 1798 9
## 1799 9
## 1800 9
## 1801 9
## 1802 9
## 1803 9
## 1804 9
## 1805 9
## 1806 9
## 1807 9
## 1808 9
## 1809 9
## 1810 9
## 1811 9
## 1812 9
## 1813 9
## 1814 9
## 1815 9
## 1816 9
## 1817 9
## 1818 9
## 1819 9
## 1820 9
## 1821 9
## 1822 9
## 1823 9
## 1824 9
## 1825 9
## 1826 9
## 1827 9
## 1828 9
## 1829 9
## 1830 9
## 1831 9
## 1832 9
## 1833 9
## 1834 9
## 1835 9
## 1836 9
## 1837 9
## 1838 9
## 1839 9
## 1840 9
## 1841 9
## 1842 9
## 1843 9
## 1844 9
## 1845 9
## 1846 9
## 1847 9
## 1848 9
## 1849 9
## 1850 9
## 1851 9
## 1852 9
## 1853 9
## 1854 9
## 1855 9
## 1856 9
## 1857 9
## 1858 9
## 1859 9
## 1860 9
## 1861 9
## 1862 9
## 1863 9
## 1864 9
## 1865 9
## 1866 9
## 1867 9
## 1868 9
## 1869 9
## 1870 9
## 1871 9
## 1872 9
## 1873 9
## 1874 8
## 1875 8
## 1876 8
## 1877 8
## 1878 8
## 1879 8
## 1880 8
## 1881 8
## 1882 8
## 1883 8
## 1884 8
## 1885 8
## 1886 8
## 1887 8
## 1888 8
## 1889 8
## 1890 8
## 1891 8
## 1892 8
## 1893 8
## 1894 8
## 1895 8
## 1896 8
## 1897 8
## 1898 8
## 1899 8
## 1900 8
## 1901 8
## 1902 8
## 1903 8
## 1904 8
## 1905 8
## 1906 8
## 1907 8
## 1908 8
## 1909 8
## 1910 8
## 1911 8
## 1912 8
## 1913 8
## 1914 8
## 1915 8
## 1916 8
## 1917 8
## 1918 8
## 1919 8
## 1920 8
## 1921 8
## 1922 8
## 1923 8
## 1924 8
## 1925 8
## 1926 8
## 1927 8
## 1928 8
## 1929 8
## 1930 8
## 1931 8
## 1932 8
## 1933 8
## 1934 8
## 1935 8
## 1936 8
## 1937 8
## 1938 8
## 1939 8
## 1940 8
## 1941 8
## 1942 8
## 1943 8
## 1944 8
## 1945 8
## 1946 8
## 1947 8
## 1948 8
## 1949 8
## 1950 8
## 1951 8
## 1952 8
## 1953 8
## 1954 8
## 1955 8
## 1956 8
## 1957 8
## 1958 8
## 1959 8
## 1960 8
## 1961 8
## 1962 8
## 1963 8
## 1964 8
## 1965 8
## 1966 8
## 1967 8
## 1968 8
## 1969 8
## 1970 8
## 1971 8
## 1972 8
## 1973 8
## 1974 8
## 1975 8
## 1976 8
## 1977 8
## 1978 8
## 1979 8
## 1980 8
## 1981 8
## 1982 8
## 1983 8
## 1984 8
## 1985 8
## 1986 8
## 1987 8
## 1988 8
## 1989 8
## 1990 8
## 1991 8
## 1992 8
## 1993 8
## 1994 8
## 1995 8
## 1996 8
## 1997 8
## 1998 8
## 1999 8
## 2000 8
## 2001 8
## 2002 8
## 2003 8
## 2004 8
## 2005 8
## 2006 8
## 2007 8
## 2008 8
## 2009 8
## 2010 8
## 2011 8
## 2012 8
## 2013 8
## 2014 8
## 2015 8
## 2016 8
## 2017 8
## 2018 8
## 2019 8
## 2020 8
## 2021 8
## 2022 8
## 2023 8
## 2024 8
## 2025 8
## 2026 8
## 2027 8
## 2028 8
## 2029 8
## 2030 8
## 2031 8
## 2032 8
## 2033 8
## 2034 8
## 2035 8
## 2036 8
## 2037 8
## 2038 8
## 2039 8
## 2040 8
## 2041 8
## 2042 8
## 2043 8
## 2044 8
## 2045 8
## 2046 8
## 2047 8
## 2048 8
## 2049 8
## 2050 8
## 2051 8
## 2052 8
## 2053 8
## 2054 8
## 2055 8
## 2056 8
## 2057 8
## 2058 8
## 2059 8
## 2060 8
## 2061 8
## 2062 8
## 2063 8
## 2064 8
## 2065 8
## 2066 8
## 2067 8
## 2068 8
## 2069 8
## 2070 8
## 2071 8
## 2072 8
## 2073 8
## 2074 8
## 2075 8
## 2076 8
## 2077 8
## 2078 8
## 2079 8
## 2080 8
## 2081 8
## 2082 8
## 2083 8
## 2084 8
## 2085 8
## 2086 8
## 2087 8
## 2088 8
## 2089 8
## 2090 8
## 2091 8
## 2092 8
## 2093 8
## 2094 8
## 2095 8
## 2096 8
## 2097 8
## 2098 8
## 2099 8
## 2100 8
## 2101 8
## 2102 8
## 2103 8
## 2104 8
## 2105 8
## 2106 8
## 2107 8
## 2108 8
## 2109 8
## 2110 8
## 2111 8
## 2112 8
## 2113 8
## 2114 8
## 2115 8
## 2116 8
## 2117 8
## 2118 8
## 2119 8
## 2120 8
## 2121 8
## 2122 8
## 2123 8
## 2124 8
## 2125 8
## 2126 8
## 2127 8
## 2128 8
## 2129 8
## 2130 8
## 2131 8
## 2132 8
## 2133 7
## 2134 7
## 2135 7
## 2136 7
## 2137 7
## 2138 7
## 2139 7
## 2140 7
## 2141 7
## 2142 7
## 2143 7
## 2144 7
## 2145 7
## 2146 7
## 2147 7
## 2148 7
## 2149 7
## 2150 7
## 2151 7
## 2152 7
## 2153 7
## 2154 7
## 2155 7
## 2156 7
## 2157 7
## 2158 7
## 2159 7
## 2160 7
## 2161 7
## 2162 7
## 2163 7
## 2164 7
## 2165 7
## 2166 7
## 2167 7
## 2168 7
## 2169 7
## 2170 7
## 2171 7
## 2172 7
## 2173 7
## 2174 7
## 2175 7
## 2176 7
## 2177 7
## 2178 7
## 2179 7
## 2180 7
## 2181 7
## 2182 7
## 2183 7
## 2184 7
## 2185 7
## 2186 7
## 2187 7
## 2188 7
## 2189 7
## 2190 7
## 2191 7
## 2192 7
## 2193 7
## 2194 7
## 2195 7
## 2196 7
## 2197 7
## 2198 7
## 2199 7
## 2200 7
## 2201 7
## 2202 7
## 2203 7
## 2204 7
## 2205 7
## 2206 7
## 2207 7
## 2208 7
## 2209 7
## 2210 7
## 2211 7
## 2212 7
## 2213 7
## 2214 7
## 2215 7
## 2216 7
## 2217 7
## 2218 7
## 2219 7
## 2220 7
## 2221 7
## 2222 7
## 2223 7
## 2224 7
## 2225 7
## 2226 7
## 2227 7
## 2228 7
## 2229 7
## 2230 7
## 2231 7
## 2232 7
## 2233 7
## 2234 7
## 2235 7
## 2236 7
## 2237 7
## 2238 7
## 2239 7
## 2240 7
## 2241 7
## 2242 7
## 2243 7
## 2244 7
## 2245 7
## 2246 7
## 2247 7
## 2248 7
## 2249 7
## 2250 7
## 2251 7
## 2252 7
## 2253 7
## 2254 7
## 2255 7
## 2256 7
## 2257 7
## 2258 7
## 2259 7
## 2260 7
## 2261 7
## 2262 7
## 2263 7
## 2264 7
## 2265 7
## 2266 7
## 2267 7
## 2268 7
## 2269 7
## 2270 7
## 2271 7
## 2272 7
## 2273 7
## 2274 7
## 2275 7
## 2276 7
## 2277 7
## 2278 7
## 2279 7
## 2280 7
## 2281 7
## 2282 7
## 2283 7
## 2284 7
## 2285 7
## 2286 7
## 2287 7
## 2288 7
## 2289 7
## 2290 7
## 2291 7
## 2292 7
## 2293 7
## 2294 7
## 2295 7
## 2296 7
## 2297 7
## 2298 7
## 2299 7
## 2300 7
## 2301 7
## 2302 7
## 2303 7
## 2304 7
## 2305 7
## 2306 7
## 2307 7
## 2308 7
## 2309 7
## 2310 7
## 2311 7
## 2312 7
## 2313 7
## 2314 7
## 2315 7
## 2316 7
## 2317 7
## 2318 7
## 2319 7
## 2320 7
## 2321 7
## 2322 7
## 2323 7
## 2324 7
## 2325 7
## 2326 7
## 2327 7
## 2328 7
## 2329 7
## 2330 7
## 2331 7
## 2332 7
## 2333 7
## 2334 7
## 2335 7
## 2336 7
## 2337 7
## 2338 7
## 2339 7
## 2340 7
## 2341 7
## 2342 7
## 2343 7
## 2344 7
## 2345 7
## 2346 7
## 2347 7
## 2348 7
## 2349 7
## 2350 7
## 2351 7
## 2352 7
## 2353 7
## 2354 7
## 2355 7
## 2356 7
## 2357 7
## 2358 7
## 2359 7
## 2360 7
## 2361 7
## 2362 7
## 2363 7
## 2364 7
## 2365 7
## 2366 7
## 2367 7
## 2368 7
## 2369 7
## 2370 7
## 2371 7
## 2372 7
## 2373 7
## 2374 7
## 2375 7
## 2376 7
## 2377 7
## 2378 7
## 2379 7
## 2380 7
## 2381 7
## 2382 7
## 2383 7
## 2384 7
## 2385 7
## 2386 7
## 2387 7
## 2388 7
## 2389 7
## 2390 7
## 2391 7
## 2392 7
## 2393 7
## 2394 7
## 2395 7
## 2396 7
## 2397 7
## 2398 7
## 2399 7
## 2400 7
## 2401 7
## 2402 7
## 2403 7
## 2404 7
## 2405 7
## 2406 7
## 2407 7
## 2408 7
## 2409 7
## 2410 7
## 2411 7
## 2412 7
## 2413 7
## 2414 7
## 2415 7
## 2416 7
## 2417 7
## 2418 7
## 2419 7
## 2420 7
## 2421 7
## 2422 7
## 2423 7
## 2424 7
## 2425 7
## 2426 6
## 2427 6
## 2428 6
## 2429 6
## 2430 6
## 2431 6
## 2432 6
## 2433 6
## 2434 6
## 2435 6
## 2436 6
## 2437 6
## 2438 6
## 2439 6
## 2440 6
## 2441 6
## 2442 6
## 2443 6
## 2444 6
## 2445 6
## 2446 6
## 2447 6
## 2448 6
## 2449 6
## 2450 6
## 2451 6
## 2452 6
## 2453 6
## 2454 6
## 2455 6
## 2456 6
## 2457 6
## 2458 6
## 2459 6
## 2460 6
## 2461 6
## 2462 6
## 2463 6
## 2464 6
## 2465 6
## 2466 6
## 2467 6
## 2468 6
## 2469 6
## 2470 6
## 2471 6
## 2472 6
## 2473 6
## 2474 6
## 2475 6
## 2476 6
## 2477 6
## 2478 6
## 2479 6
## 2480 6
## 2481 6
## 2482 6
## 2483 6
## 2484 6
## 2485 6
## 2486 6
## 2487 6
## 2488 6
## 2489 6
## 2490 6
## 2491 6
## 2492 6
## 2493 6
## 2494 6
## 2495 6
## 2496 6
## 2497 6
## 2498 6
## 2499 6
## 2500 6
## 2501 6
## 2502 6
## 2503 6
## 2504 6
## 2505 6
## 2506 6
## 2507 6
## 2508 6
## 2509 6
## 2510 6
## 2511 6
## 2512 6
## 2513 6
## 2514 6
## 2515 6
## 2516 6
## 2517 6
## 2518 6
## 2519 6
## 2520 6
## 2521 6
## 2522 6
## 2523 6
## 2524 6
## 2525 6
## 2526 6
## 2527 6
## 2528 6
## 2529 6
## 2530 6
## 2531 6
## 2532 6
## 2533 6
## 2534 6
## 2535 6
## 2536 6
## 2537 6
## 2538 6
## 2539 6
## 2540 6
## 2541 6
## 2542 6
## 2543 6
## 2544 6
## 2545 6
## 2546 6
## 2547 6
## 2548 6
## 2549 6
## 2550 6
## 2551 6
## 2552 6
## 2553 6
## 2554 6
## 2555 6
## 2556 6
## 2557 6
## 2558 6
## 2559 6
## 2560 6
## 2561 6
## 2562 6
## 2563 6
## 2564 6
## 2565 6
## 2566 6
## 2567 6
## 2568 6
## 2569 6
## 2570 6
## 2571 6
## 2572 6
## 2573 6
## 2574 6
## 2575 6
## 2576 6
## 2577 6
## 2578 6
## 2579 6
## 2580 6
## 2581 6
## 2582 6
## 2583 6
## 2584 6
## 2585 6
## 2586 6
## 2587 6
## 2588 6
## 2589 6
## 2590 6
## 2591 6
## 2592 6
## 2593 6
## 2594 6
## 2595 6
## 2596 6
## 2597 6
## 2598 6
## 2599 6
## 2600 6
## 2601 6
## 2602 6
## 2603 6
## 2604 6
## 2605 6
## 2606 6
## 2607 6
## 2608 6
## 2609 6
## 2610 6
## 2611 6
## 2612 6
## 2613 6
## 2614 6
## 2615 6
## 2616 6
## 2617 6
## 2618 6
## 2619 6
## 2620 6
## 2621 6
## 2622 6
## 2623 6
## 2624 6
## 2625 6
## 2626 6
## 2627 6
## 2628 6
## 2629 6
## 2630 6
## 2631 6
## 2632 6
## 2633 6
## 2634 6
## 2635 6
## 2636 6
## 2637 6
## 2638 6
## 2639 6
## 2640 6
## 2641 6
## 2642 6
## 2643 6
## 2644 6
## 2645 6
## 2646 6
## 2647 6
## 2648 6
## 2649 6
## 2650 6
## 2651 6
## 2652 6
## 2653 6
## 2654 6
## 2655 6
## 2656 6
## 2657 6
## 2658 6
## 2659 6
## 2660 6
## 2661 6
## 2662 6
## 2663 6
## 2664 6
## 2665 6
## 2666 6
## 2667 6
## 2668 6
## 2669 6
## 2670 6
## 2671 6
## 2672 6
## 2673 6
## 2674 6
## 2675 6
## 2676 6
## 2677 6
## 2678 6
## 2679 6
## 2680 6
## 2681 6
## 2682 6
## 2683 6
## 2684 6
## 2685 6
## 2686 6
## 2687 6
## 2688 6
## 2689 6
## 2690 6
## 2691 6
## 2692 6
## 2693 6
## 2694 6
## 2695 6
## 2696 6
## 2697 6
## 2698 6
## 2699 6
## 2700 6
## 2701 6
## 2702 6
## 2703 6
## 2704 6
## 2705 6
## 2706 6
## 2707 6
## 2708 6
## 2709 6
## 2710 6
## 2711 6
## 2712 6
## 2713 6
## 2714 6
## 2715 6
## 2716 6
## 2717 6
## 2718 6
## 2719 6
## 2720 6
## 2721 6
## 2722 6
## 2723 6
## 2724 6
## 2725 6
## 2726 6
## 2727 6
## 2728 6
## 2729 6
## 2730 6
## 2731 6
## 2732 6
## 2733 6
## 2734 6
## 2735 6
## 2736 6
## 2737 6
## 2738 6
## 2739 6
## 2740 6
## 2741 6
## 2742 6
## 2743 6
## 2744 6
## 2745 6
## 2746 6
## 2747 6
## 2748 6
## 2749 6
## 2750 6
## 2751 6
## 2752 6
## 2753 6
## 2754 6
## 2755 6
## 2756 6
## 2757 6
## 2758 6
## 2759 6
## 2760 6
## 2761 6
## 2762 6
## 2763 6
## 2764 6
## 2765 6
## 2766 6
## 2767 6
## 2768 6
## 2769 6
## 2770 6
## 2771 6
## 2772 6
## 2773 6
## 2774 6
## 2775 6
## 2776 6
## 2777 6
## 2778 6
## 2779 6
## 2780 6
## 2781 6
## 2782 6
## 2783 6
## 2784 6
## 2785 6
## 2786 6
## 2787 6
## 2788 6
## 2789 6
## 2790 6
## 2791 6
## 2792 6
## 2793 6
## 2794 6
## 2795 6
## 2796 6
## 2797 6
## 2798 6
## 2799 6
## 2800 6
## 2801 6
## 2802 6
## 2803 6
## 2804 6
## 2805 6
## 2806 6
## 2807 6
## 2808 6
## 2809 6
## 2810 6
## 2811 6
## 2812 6
## 2813 6
## 2814 6
## 2815 6
## 2816 6
## 2817 6
## 2818 6
## 2819 6
## 2820 6
## 2821 6
## 2822 6
## 2823 6
## 2824 6
## 2825 6
## 2826 6
## 2827 6
## 2828 6
## 2829 6
## 2830 6
## 2831 6
## 2832 6
## 2833 6
## 2834 6
## 2835 6
## 2836 6
## 2837 6
## 2838 6
## 2839 6
## 2840 6
## 2841 6
## 2842 6
## 2843 6
## 2844 6
## 2845 6
## 2846 6
## 2847 6
## 2848 6
## 2849 6
## 2850 6
## 2851 6
## 2852 5
## 2853 5
## 2854 5
## 2855 5
## 2856 5
## 2857 5
## 2858 5
## 2859 5
## 2860 5
## 2861 5
## 2862 5
## 2863 5
## 2864 5
## 2865 5
## 2866 5
## 2867 5
## 2868 5
## 2869 5
## 2870 5
## 2871 5
## 2872 5
## 2873 5
## 2874 5
## 2875 5
## 2876 5
## 2877 5
## 2878 5
## 2879 5
## 2880 5
## 2881 5
## 2882 5
## 2883 5
## 2884 5
## 2885 5
## 2886 5
## 2887 5
## 2888 5
## 2889 5
## 2890 5
## 2891 5
## 2892 5
## 2893 5
## 2894 5
## 2895 5
## 2896 5
## 2897 5
## 2898 5
## 2899 5
## 2900 5
## 2901 5
## 2902 5
## 2903 5
## 2904 5
## 2905 5
## 2906 5
## 2907 5
## 2908 5
## 2909 5
## 2910 5
## 2911 5
## 2912 5
## 2913 5
## 2914 5
## 2915 5
## 2916 5
## 2917 5
## 2918 5
## 2919 5
## 2920 5
## 2921 5
## 2922 5
## 2923 5
## 2924 5
## 2925 5
## 2926 5
## 2927 5
## 2928 5
## 2929 5
## 2930 5
## 2931 5
## 2932 5
## 2933 5
## 2934 5
## 2935 5
## 2936 5
## 2937 5
## 2938 5
## 2939 5
## 2940 5
## 2941 5
## 2942 5
## 2943 5
## 2944 5
## 2945 5
## 2946 5
## 2947 5
## 2948 5
## 2949 5
## 2950 5
## 2951 5
## 2952 5
## 2953 5
## 2954 5
## 2955 5
## 2956 5
## 2957 5
## 2958 5
## 2959 5
## 2960 5
## 2961 5
## 2962 5
## 2963 5
## 2964 5
## 2965 5
## 2966 5
## 2967 5
## 2968 5
## 2969 5
## 2970 5
## 2971 5
## 2972 5
## 2973 5
## 2974 5
## 2975 5
## 2976 5
## 2977 5
## 2978 5
## 2979 5
## 2980 5
## 2981 5
## 2982 5
## 2983 5
## 2984 5
## 2985 5
## 2986 5
## 2987 5
## 2988 5
## 2989 5
## 2990 5
## 2991 5
## 2992 5
## 2993 5
## 2994 5
## 2995 5
## 2996 5
## 2997 5
## 2998 5
## 2999 5
## 3000 5
## 3001 5
## 3002 5
## 3003 5
## 3004 5
## 3005 5
## 3006 5
## 3007 5
## 3008 5
## 3009 5
## 3010 5
## 3011 5
## 3012 5
## 3013 5
## 3014 5
## 3015 5
## 3016 5
## 3017 5
## 3018 5
## 3019 5
## 3020 5
## 3021 5
## 3022 5
## 3023 5
## 3024 5
## 3025 5
## 3026 5
## 3027 5
## 3028 5
## 3029 5
## 3030 5
## 3031 5
## 3032 5
## 3033 5
## 3034 5
## 3035 5
## 3036 5
## 3037 5
## 3038 5
## 3039 5
## 3040 5
## 3041 5
## 3042 5
## 3043 5
## 3044 5
## 3045 5
## 3046 5
## 3047 5
## 3048 5
## 3049 5
## 3050 5
## 3051 5
## 3052 5
## 3053 5
## 3054 5
## 3055 5
## 3056 5
## 3057 5
## 3058 5
## 3059 5
## 3060 5
## 3061 5
## 3062 5
## 3063 5
## 3064 5
## 3065 5
## 3066 5
## 3067 5
## 3068 5
## 3069 5
## 3070 5
## 3071 5
## 3072 5
## 3073 5
## 3074 5
## 3075 5
## 3076 5
## 3077 5
## 3078 5
## 3079 5
## 3080 5
## 3081 5
## 3082 5
## 3083 5
## 3084 5
## 3085 5
## 3086 5
## 3087 5
## 3088 5
## 3089 5
## 3090 5
## 3091 5
## 3092 5
## 3093 5
## 3094 5
## 3095 5
## 3096 5
## 3097 5
## 3098 5
## 3099 5
## 3100 5
## 3101 5
## 3102 5
## 3103 5
## 3104 5
## 3105 5
## 3106 5
## 3107 5
## 3108 5
## 3109 5
## 3110 5
## 3111 5
## 3112 5
## 3113 5
## 3114 5
## 3115 5
## 3116 5
## 3117 5
## 3118 5
## 3119 5
## 3120 5
## 3121 5
## 3122 5
## 3123 5
## 3124 5
## 3125 5
## 3126 5
## 3127 5
## 3128 5
## 3129 5
## 3130 5
## 3131 5
## 3132 5
## 3133 5
## 3134 5
## 3135 5
## 3136 5
## 3137 5
## 3138 5
## 3139 5
## 3140 5
## 3141 5
## 3142 5
## 3143 5
## 3144 5
## 3145 5
## 3146 5
## 3147 5
## 3148 5
## 3149 5
## 3150 5
## 3151 5
## 3152 5
## 3153 5
## 3154 5
## 3155 5
## 3156 5
## 3157 5
## 3158 5
## 3159 5
## 3160 5
## 3161 5
## 3162 5
## 3163 5
## 3164 5
## 3165 5
## 3166 5
## 3167 5
## 3168 5
## 3169 5
## 3170 5
## 3171 5
## 3172 5
## 3173 5
## 3174 5
## 3175 5
## 3176 5
## 3177 5
## 3178 5
## 3179 5
## 3180 5
## 3181 5
## 3182 5
## 3183 5
## 3184 5
## 3185 5
## 3186 5
## 3187 5
## 3188 5
## 3189 5
## 3190 5
## 3191 5
## 3192 5
## 3193 5
## 3194 5
## 3195 5
## 3196 5
## 3197 5
## 3198 5
## 3199 5
## 3200 5
## 3201 5
## 3202 5
## 3203 5
## 3204 5
## 3205 5
## 3206 5
## 3207 5
## 3208 5
## 3209 5
## 3210 5
## 3211 5
## 3212 5
## 3213 5
## 3214 5
## 3215 5
## 3216 5
## 3217 5
## 3218 5
## 3219 5
## 3220 5
## 3221 5
## 3222 5
## 3223 5
## 3224 5
## 3225 5
## 3226 5
## 3227 5
## 3228 5
## 3229 5
## 3230 5
## 3231 5
## 3232 5
## 3233 5
## 3234 5
## 3235 5
## 3236 5
## 3237 5
## 3238 5
## 3239 5
## 3240 5
## 3241 5
## 3242 5
## 3243 5
## 3244 5
## 3245 5
## 3246 5
## 3247 5
## 3248 5
## 3249 5
## 3250 5
## 3251 5
## 3252 5
## 3253 5
## 3254 5
## 3255 5
## 3256 5
## 3257 5
## 3258 5
## 3259 5
## 3260 5
## 3261 5
## 3262 5
## 3263 5
## 3264 5
## 3265 5
## 3266 5
## 3267 5
## 3268 5
## 3269 5
## 3270 5
## 3271 5
## 3272 5
## 3273 5
## 3274 5
## 3275 5
## 3276 5
## 3277 5
## 3278 5
## 3279 5
## 3280 5
## 3281 5
## 3282 5
## 3283 5
## 3284 5
## 3285 5
## 3286 5
## 3287 5
## 3288 5
## 3289 5
## 3290 5
## 3291 5
## 3292 5
## 3293 5
## 3294 5
## 3295 5
## 3296 5
## 3297 5
## 3298 5
## 3299 5
## 3300 5
## 3301 5
## 3302 5
## 3303 5
## 3304 5
## 3305 5
## 3306 5
## 3307 5
## 3308 5
## 3309 5
## 3310 5
## 3311 5
## 3312 5
## 3313 5
## 3314 5
## 3315 5
## 3316 5
## 3317 5
## 3318 5
## 3319 5
## 3320 5
## 3321 5
## 3322 5
## 3323 5
## 3324 5
## 3325 5
## 3326 5
## 3327 5
## 3328 5
## 3329 5
## 3330 5
## 3331 5
## 3332 5
## 3333 5
## 3334 5
## 3335 5
## 3336 5
## 3337 5
## 3338 5
## 3339 5
## 3340 5
## 3341 5
## 3342 5
## 3343 5
## 3344 5
## 3345 5
## 3346 5
## 3347 5
## 3348 5
## 3349 5
## 3350 5
## 3351 5
## 3352 5
## 3353 5
## 3354 5
## 3355 5
## 3356 5
## 3357 5
## 3358 5
## 3359 5
## 3360 5
## 3361 5
## 3362 5
## 3363 5
## 3364 5
## 3365 5
## 3366 5
## 3367 5
## 3368 5
## 3369 5
## 3370 5
## 3371 5
## 3372 5
## 3373 5
## 3374 5
## 3375 5
## 3376 5
## 3377 5
## 3378 5
## 3379 5
## 3380 5
## 3381 5
## 3382 5
## 3383 5
## 3384 5
## 3385 5
## 3386 5
## 3387 5
## 3388 5
## 3389 5
## 3390 5
## 3391 5
## 3392 5
## 3393 5
## 3394 5
## 3395 5
## 3396 4
## 3397 4
## 3398 4
## 3399 4
## 3400 4
## 3401 4
## 3402 4
## 3403 4
## 3404 4
## 3405 4
## 3406 4
## 3407 4
## 3408 4
## 3409 4
## 3410 4
## 3411 4
## 3412 4
## 3413 4
## 3414 4
## 3415 4
## 3416 4
## 3417 4
## 3418 4
## 3419 4
## 3420 4
## 3421 4
## 3422 4
## 3423 4
## 3424 4
## 3425 4
## 3426 4
## 3427 4
## 3428 4
## 3429 4
## 3430 4
## 3431 4
## 3432 4
## 3433 4
## 3434 4
## 3435 4
## 3436 4
## 3437 4
## 3438 4
## 3439 4
## 3440 4
## 3441 4
## 3442 4
## 3443 4
## 3444 4
## 3445 4
## 3446 4
## 3447 4
## 3448 4
## 3449 4
## 3450 4
## 3451 4
## 3452 4
## 3453 4
## 3454 4
## 3455 4
## 3456 4
## 3457 4
## 3458 4
## 3459 4
## 3460 4
## 3461 4
## 3462 4
## 3463 4
## 3464 4
## 3465 4
## 3466 4
## 3467 4
## 3468 4
## 3469 4
## 3470 4
## 3471 4
## 3472 4
## 3473 4
## 3474 4
## 3475 4
## 3476 4
## 3477 4
## 3478 4
## 3479 4
## 3480 4
## 3481 4
## 3482 4
## 3483 4
## 3484 4
## 3485 4
## 3486 4
## 3487 4
## 3488 4
## 3489 4
## 3490 4
## 3491 4
## 3492 4
## 3493 4
## 3494 4
## 3495 4
## 3496 4
## 3497 4
## 3498 4
## 3499 4
## 3500 4
## 3501 4
## 3502 4
## 3503 4
## 3504 4
## 3505 4
## 3506 4
## 3507 4
## 3508 4
## 3509 4
## 3510 4
## 3511 4
## 3512 4
## 3513 4
## 3514 4
## 3515 4
## 3516 4
## 3517 4
## 3518 4
## 3519 4
## 3520 4
## 3521 4
## 3522 4
## 3523 4
## 3524 4
## 3525 4
## 3526 4
## 3527 4
## 3528 4
## 3529 4
## 3530 4
## 3531 4
## 3532 4
## 3533 4
## 3534 4
## 3535 4
## 3536 4
## 3537 4
## 3538 4
## 3539 4
## 3540 4
## 3541 4
## 3542 4
## 3543 4
## 3544 4
## 3545 4
## 3546 4
## 3547 4
## 3548 4
## 3549 4
## 3550 4
## 3551 4
## 3552 4
## 3553 4
## 3554 4
## 3555 4
## 3556 4
## 3557 4
## 3558 4
## 3559 4
## 3560 4
## 3561 4
## 3562 4
## 3563 4
## 3564 4
## 3565 4
## 3566 4
## 3567 4
## 3568 4
## 3569 4
## 3570 4
## 3571 4
## 3572 4
## 3573 4
## 3574 4
## 3575 4
## 3576 4
## 3577 4
## 3578 4
## 3579 4
## 3580 4
## 3581 4
## 3582 4
## 3583 4
## 3584 4
## 3585 4
## 3586 4
## 3587 4
## 3588 4
## 3589 4
## 3590 4
## 3591 4
## 3592 4
## 3593 4
## 3594 4
## 3595 4
## 3596 4
## 3597 4
## 3598 4
## 3599 4
## 3600 4
## 3601 4
## 3602 4
## 3603 4
## 3604 4
## 3605 4
## 3606 4
## 3607 4
## 3608 4
## 3609 4
## 3610 4
## 3611 4
## 3612 4
## 3613 4
## 3614 4
## 3615 4
## 3616 4
## 3617 4
## 3618 4
## 3619 4
## 3620 4
## 3621 4
## 3622 4
## 3623 4
## 3624 4
## 3625 4
## 3626 4
## 3627 4
## 3628 4
## 3629 4
## 3630 4
## 3631 4
## 3632 4
## 3633 4
## 3634 4
## 3635 4
## 3636 4
## 3637 4
## 3638 4
## 3639 4
## 3640 4
## 3641 4
## 3642 4
## 3643 4
## 3644 4
## 3645 4
## 3646 4
## 3647 4
## 3648 4
## 3649 4
## 3650 4
## 3651 4
## 3652 4
## 3653 4
## 3654 4
## 3655 4
## 3656 4
## 3657 4
## 3658 4
## 3659 4
## 3660 4
## 3661 4
## 3662 4
## 3663 4
## 3664 4
## 3665 4
## 3666 4
## 3667 4
## 3668 4
## 3669 4
## 3670 4
## 3671 4
## 3672 4
## 3673 4
## 3674 4
## 3675 4
## 3676 4
## 3677 4
## 3678 4
## 3679 4
## 3680 4
## 3681 4
## 3682 4
## 3683 4
## 3684 4
## 3685 4
## 3686 4
## 3687 4
## 3688 4
## 3689 4
## 3690 4
## 3691 4
## 3692 4
## 3693 4
## 3694 4
## 3695 4
## 3696 4
## 3697 4
## 3698 4
## 3699 4
## 3700 4
## 3701 4
## 3702 4
## 3703 4
## 3704 4
## 3705 4
## 3706 4
## 3707 4
## 3708 4
## 3709 4
## 3710 4
## 3711 4
## 3712 4
## 3713 4
## 3714 4
## 3715 4
## 3716 4
## 3717 4
## 3718 4
## 3719 4
## 3720 4
## 3721 4
## 3722 4
## 3723 4
## 3724 4
## 3725 4
## 3726 4
## 3727 4
## 3728 4
## 3729 4
## 3730 4
## 3731 4
## 3732 4
## 3733 4
## 3734 4
## 3735 4
## 3736 4
## 3737 4
## 3738 4
## 3739 4
## 3740 4
## 3741 4
## 3742 4
## 3743 4
## 3744 4
## 3745 4
## 3746 4
## 3747 4
## 3748 4
## 3749 4
## 3750 4
## 3751 4
## 3752 4
## 3753 4
## 3754 4
## 3755 4
## 3756 4
## 3757 4
## 3758 4
## 3759 4
## 3760 4
## 3761 4
## 3762 4
## 3763 4
## 3764 4
## 3765 4
## 3766 4
## 3767 4
## 3768 4
## 3769 4
## 3770 4
## 3771 4
## 3772 4
## 3773 4
## 3774 4
## 3775 4
## 3776 4
## 3777 4
## 3778 4
## 3779 4
## 3780 4
## 3781 4
## 3782 4
## 3783 4
## 3784 4
## 3785 4
## 3786 4
## 3787 4
## 3788 4
## 3789 4
## 3790 4
## 3791 4
## 3792 4
## 3793 4
## 3794 4
## 3795 4
## 3796 4
## 3797 4
## 3798 4
## 3799 4
## 3800 4
## 3801 4
## 3802 4
## 3803 4
## 3804 4
## 3805 4
## 3806 4
## 3807 4
## 3808 4
## 3809 4
## 3810 4
## 3811 4
## 3812 4
## 3813 4
## 3814 4
## 3815 4
## 3816 4
## 3817 4
## 3818 4
## 3819 4
## 3820 4
## 3821 4
## 3822 4
## 3823 4
## 3824 4
## 3825 4
## 3826 4
## 3827 4
## 3828 4
## 3829 4
## 3830 4
## 3831 4
## 3832 4
## 3833 4
## 3834 4
## 3835 4
## 3836 4
## 3837 4
## 3838 4
## 3839 4
## 3840 4
## 3841 4
## 3842 4
## 3843 4
## 3844 4
## 3845 4
## 3846 4
## 3847 4
## 3848 4
## 3849 4
## 3850 4
## 3851 4
## 3852 4
## 3853 4
## 3854 4
## 3855 4
## 3856 4
## 3857 4
## 3858 4
## 3859 4
## 3860 4
## 3861 4
## 3862 4
## 3863 4
## 3864 4
## 3865 4
## 3866 4
## 3867 4
## 3868 4
## 3869 4
## 3870 4
## 3871 4
## 3872 4
## 3873 4
## 3874 4
## 3875 4
## 3876 4
## 3877 4
## 3878 4
## 3879 4
## 3880 4
## 3881 4
## 3882 4
## 3883 4
## 3884 4
## 3885 4
## 3886 4
## 3887 4
## 3888 4
## 3889 4
## 3890 4
## 3891 4
## 3892 4
## 3893 4
## 3894 4
## 3895 4
## 3896 4
## 3897 4
## 3898 4
## 3899 4
## 3900 4
## 3901 4
## 3902 4
## 3903 4
## 3904 4
## 3905 4
## 3906 4
## 3907 4
## 3908 4
## 3909 4
## 3910 4
## 3911 4
## 3912 4
## 3913 4
## 3914 4
## 3915 4
## 3916 4
## 3917 4
## 3918 4
## 3919 4
## 3920 4
## 3921 4
## 3922 4
## 3923 4
## 3924 4
## 3925 4
## 3926 4
## 3927 4
## 3928 4
## 3929 4
## 3930 4
## 3931 4
## 3932 4
## 3933 4
## 3934 4
## 3935 4
## 3936 4
## 3937 4
## 3938 4
## 3939 4
## 3940 4
## 3941 4
## 3942 4
## 3943 4
## 3944 4
## 3945 4
## 3946 4
## 3947 4
## 3948 4
## 3949 4
## 3950 4
## 3951 4
## 3952 4
## 3953 4
## 3954 4
## 3955 4
## 3956 4
## 3957 4
## 3958 4
## 3959 4
## 3960 4
## 3961 4
## 3962 4
## 3963 4
## 3964 4
## 3965 4
## 3966 4
## 3967 4
## 3968 4
## 3969 4
## 3970 4
## 3971 4
## 3972 4
## 3973 4
## 3974 4
## 3975 4
## 3976 4
## 3977 4
## 3978 4
## 3979 4
## 3980 4
## 3981 4
## 3982 4
## 3983 4
## 3984 4
## 3985 4
## 3986 4
## 3987 4
## 3988 4
## 3989 4
## 3990 4
## 3991 4
## 3992 4
## 3993 4
## 3994 4
## 3995 4
## 3996 4
## 3997 4
## 3998 4
## 3999 4
## 4000 4
## 4001 4
## 4002 4
## 4003 4
## 4004 4
## 4005 4
## 4006 4
## 4007 4
## 4008 4
## 4009 4
## 4010 4
## 4011 4
## 4012 4
## 4013 4
## 4014 4
## 4015 4
## 4016 4
## 4017 4
## 4018 4
## 4019 4
## 4020 4
## 4021 4
## 4022 4
## 4023 4
## 4024 4
## 4025 4
## 4026 4
## 4027 4
## 4028 4
## 4029 4
## 4030 4
## 4031 4
## 4032 4
## 4033 4
## 4034 4
## 4035 4
## 4036 4
## 4037 4
## 4038 4
## 4039 4
## 4040 4
## 4041 4
## 4042 4
## 4043 4
## 4044 4
## 4045 4
## 4046 4
## 4047 4
## 4048 4
## 4049 4
## 4050 4
## 4051 4
## 4052 4
## 4053 4
## 4054 4
## 4055 4
## 4056 4
## 4057 4
## 4058 4
## 4059 4
## 4060 4
## 4061 4
## 4062 4
## 4063 4
## 4064 4
## 4065 4
## 4066 4
## 4067 4
## 4068 4
## 4069 4
## 4070 4
## 4071 4
## 4072 4
## 4073 4
## 4074 4
## 4075 4
## 4076 4
## 4077 4
## 4078 4
## 4079 4
## 4080 4
## 4081 4
## 4082 4
## 4083 4
## 4084 4
## 4085 4
## 4086 4
## 4087 4
## 4088 4
## 4089 4
## 4090 4
## 4091 4
## 4092 4
## 4093 4
## 4094 4
## 4095 4
## 4096 4
## 4097 4
## 4098 4
## 4099 4
## 4100 4
## 4101 4
## 4102 4
## 4103 4
## 4104 4
## 4105 4
## 4106 4
## 4107 4
## 4108 4
## 4109 4
## 4110 4
## 4111 4
## 4112 4
## 4113 4
## 4114 4
## 4115 3
## 4116 3
## 4117 3
## 4118 3
## 4119 3
## 4120 3
## 4121 3
## 4122 3
## 4123 3
## 4124 3
## 4125 3
## 4126 3
## 4127 3
## 4128 3
## 4129 3
## 4130 3
## 4131 3
## 4132 3
## 4133 3
## 4134 3
## 4135 3
## 4136 3
## 4137 3
## 4138 3
## 4139 3
## 4140 3
## 4141 3
## 4142 3
## 4143 3
## 4144 3
## 4145 3
## 4146 3
## 4147 3
## 4148 3
## 4149 3
## 4150 3
## 4151 3
## 4152 3
## 4153 3
## 4154 3
## 4155 3
## 4156 3
## 4157 3
## 4158 3
## 4159 3
## 4160 3
## 4161 3
## 4162 3
## 4163 3
## 4164 3
## 4165 3
## 4166 3
## 4167 3
## 4168 3
## 4169 3
## 4170 3
## 4171 3
## 4172 3
## 4173 3
## 4174 3
## 4175 3
## 4176 3
## 4177 3
## 4178 3
## 4179 3
## 4180 3
## 4181 3
## 4182 3
## 4183 3
## 4184 3
## 4185 3
## 4186 3
## 4187 3
## 4188 3
## 4189 3
## 4190 3
## 4191 3
## 4192 3
## 4193 3
## 4194 3
## 4195 3
## 4196 3
## 4197 3
## 4198 3
## 4199 3
## 4200 3
## 4201 3
## 4202 3
## 4203 3
## 4204 3
## 4205 3
## 4206 3
## 4207 3
## 4208 3
## 4209 3
## 4210 3
## 4211 3
## 4212 3
## 4213 3
## 4214 3
## 4215 3
## 4216 3
## 4217 3
## 4218 3
## 4219 3
## 4220 3
## 4221 3
## 4222 3
## 4223 3
## 4224 3
## 4225 3
## 4226 3
## 4227 3
## 4228 3
## 4229 3
## 4230 3
## 4231 3
## 4232 3
## 4233 3
## 4234 3
## 4235 3
## 4236 3
## 4237 3
## 4238 3
## 4239 3
## 4240 3
## 4241 3
## 4242 3
## 4243 3
## 4244 3
## 4245 3
## 4246 3
## 4247 3
## 4248 3
## 4249 3
## 4250 3
## 4251 3
## 4252 3
## 4253 3
## 4254 3
## 4255 3
## 4256 3
## 4257 3
## 4258 3
## 4259 3
## 4260 3
## 4261 3
## 4262 3
## 4263 3
## 4264 3
## 4265 3
## 4266 3
## 4267 3
## 4268 3
## 4269 3
## 4270 3
## 4271 3
## 4272 3
## 4273 3
## 4274 3
## 4275 3
## 4276 3
## 4277 3
## 4278 3
## 4279 3
## 4280 3
## 4281 3
## 4282 3
## 4283 3
## 4284 3
## 4285 3
## 4286 3
## 4287 3
## 4288 3
## 4289 3
## 4290 3
## 4291 3
## 4292 3
## 4293 3
## 4294 3
## 4295 3
## 4296 3
## 4297 3
## 4298 3
## 4299 3
## 4300 3
## 4301 3
## 4302 3
## 4303 3
## 4304 3
## 4305 3
## 4306 3
## 4307 3
## 4308 3
## 4309 3
## 4310 3
## 4311 3
## 4312 3
## 4313 3
## 4314 3
## 4315 3
## 4316 3
## 4317 3
## 4318 3
## 4319 3
## 4320 3
## 4321 3
## 4322 3
## 4323 3
## 4324 3
## 4325 3
## 4326 3
## 4327 3
## 4328 3
## 4329 3
## 4330 3
## 4331 3
## 4332 3
## 4333 3
## 4334 3
## 4335 3
## 4336 3
## 4337 3
## 4338 3
## 4339 3
## 4340 3
## 4341 3
## 4342 3
## 4343 3
## 4344 3
## 4345 3
## 4346 3
## 4347 3
## 4348 3
## 4349 3
## 4350 3
## 4351 3
## 4352 3
## 4353 3
## 4354 3
## 4355 3
## 4356 3
## 4357 3
## 4358 3
## 4359 3
## 4360 3
## 4361 3
## 4362 3
## 4363 3
## 4364 3
## 4365 3
## 4366 3
## 4367 3
## 4368 3
## 4369 3
## 4370 3
## 4371 3
## 4372 3
## 4373 3
## 4374 3
## 4375 3
## 4376 3
## 4377 3
## 4378 3
## 4379 3
## 4380 3
## 4381 3
## 4382 3
## 4383 3
## 4384 3
## 4385 3
## 4386 3
## 4387 3
## 4388 3
## 4389 3
## 4390 3
## 4391 3
## 4392 3
## 4393 3
## 4394 3
## 4395 3
## 4396 3
## 4397 3
## 4398 3
## 4399 3
## 4400 3
## 4401 3
## 4402 3
## 4403 3
## 4404 3
## 4405 3
## 4406 3
## 4407 3
## 4408 3
## 4409 3
## 4410 3
## 4411 3
## 4412 3
## 4413 3
## 4414 3
## 4415 3
## 4416 3
## 4417 3
## 4418 3
## 4419 3
## 4420 3
## 4421 3
## 4422 3
## 4423 3
## 4424 3
## 4425 3
## 4426 3
## 4427 3
## 4428 3
## 4429 3
## 4430 3
## 4431 3
## 4432 3
## 4433 3
## 4434 3
## 4435 3
## 4436 3
## 4437 3
## 4438 3
## 4439 3
## 4440 3
## 4441 3
## 4442 3
## 4443 3
## 4444 3
## 4445 3
## 4446 3
## 4447 3
## 4448 3
## 4449 3
## 4450 3
## 4451 3
## 4452 3
## 4453 3
## 4454 3
## 4455 3
## 4456 3
## 4457 3
## 4458 3
## 4459 3
## 4460 3
## 4461 3
## 4462 3
## 4463 3
## 4464 3
## 4465 3
## 4466 3
## 4467 3
## 4468 3
## 4469 3
## 4470 3
## 4471 3
## 4472 3
## 4473 3
## 4474 3
## 4475 3
## 4476 3
## 4477 3
## 4478 3
## 4479 3
## 4480 3
## 4481 3
## 4482 3
## 4483 3
## 4484 3
## 4485 3
## 4486 3
## 4487 3
## 4488 3
## 4489 3
## 4490 3
## 4491 3
## 4492 3
## 4493 3
## 4494 3
## 4495 3
## 4496 3
## 4497 3
## 4498 3
## 4499 3
## 4500 3
## 4501 3
## 4502 3
## 4503 3
## 4504 3
## 4505 3
## 4506 3
## 4507 3
## 4508 3
## 4509 3
## 4510 3
## 4511 3
## 4512 3
## 4513 3
## 4514 3
## 4515 3
## 4516 3
## 4517 3
## 4518 3
## 4519 3
## 4520 3
## 4521 3
## 4522 3
## 4523 3
## 4524 3
## 4525 3
## 4526 3
## 4527 3
## 4528 3
## 4529 3
## 4530 3
## 4531 3
## 4532 3
## 4533 3
## 4534 3
## 4535 3
## 4536 3
## 4537 3
## 4538 3
## 4539 3
## 4540 3
## 4541 3
## 4542 3
## 4543 3
## 4544 3
## 4545 3
## 4546 3
## 4547 3
## 4548 3
## 4549 3
## 4550 3
## 4551 3
## 4552 3
## 4553 3
## 4554 3
## 4555 3
## 4556 3
## 4557 3
## 4558 3
## 4559 3
## 4560 3
## 4561 3
## 4562 3
## 4563 3
## 4564 3
## 4565 3
## 4566 3
## 4567 3
## 4568 3
## 4569 3
## 4570 3
## 4571 3
## 4572 3
## 4573 3
## 4574 3
## 4575 3
## 4576 3
## 4577 3
## 4578 3
## 4579 3
## 4580 3
## 4581 3
## 4582 3
## 4583 3
## 4584 3
## 4585 3
## 4586 3
## 4587 3
## 4588 3
## 4589 3
## 4590 3
## 4591 3
## 4592 3
## 4593 3
## 4594 3
## 4595 3
## 4596 3
## 4597 3
## 4598 3
## 4599 3
## 4600 3
## 4601 3
## 4602 3
## 4603 3
## 4604 3
## 4605 3
## 4606 3
## 4607 3
## 4608 3
## 4609 3
## 4610 3
## 4611 3
## 4612 3
## 4613 3
## 4614 3
## 4615 3
## 4616 3
## 4617 3
## 4618 3
## 4619 3
## 4620 3
## 4621 3
## 4622 3
## 4623 3
## 4624 3
## 4625 3
## 4626 3
## 4627 3
## 4628 3
## 4629 3
## 4630 3
## 4631 3
## 4632 3
## 4633 3
## 4634 3
## 4635 3
## 4636 3
## 4637 3
## 4638 3
## 4639 3
## 4640 3
## 4641 3
## 4642 3
## 4643 3
## 4644 3
## 4645 3
## 4646 3
## 4647 3
## 4648 3
## 4649 3
## 4650 3
## 4651 3
## 4652 3
## 4653 3
## 4654 3
## 4655 3
## 4656 3
## 4657 3
## 4658 3
## 4659 3
## 4660 3
## 4661 3
## 4662 3
## 4663 3
## 4664 3
## 4665 3
## 4666 3
## 4667 3
## 4668 3
## 4669 3
## 4670 3
## 4671 3
## 4672 3
## 4673 3
## 4674 3
## 4675 3
## 4676 3
## 4677 3
## 4678 3
## 4679 3
## 4680 3
## 4681 3
## 4682 3
## 4683 3
## 4684 3
## 4685 3
## 4686 3
## 4687 3
## 4688 3
## 4689 3
## 4690 3
## 4691 3
## 4692 3
## 4693 3
## 4694 3
## 4695 3
## 4696 3
## 4697 3
## 4698 3
## 4699 3
## 4700 3
## 4701 3
## 4702 3
## 4703 3
## 4704 3
## 4705 3
## 4706 3
## 4707 3
## 4708 3
## 4709 3
## 4710 3
## 4711 3
## 4712 3
## 4713 3
## 4714 3
## 4715 3
## 4716 3
## 4717 3
## 4718 3
## 4719 3
## 4720 3
## 4721 3
## 4722 3
## 4723 3
## 4724 3
## 4725 3
## 4726 3
## 4727 3
## 4728 3
## 4729 3
## 4730 3
## 4731 3
## 4732 3
## 4733 3
## 4734 3
## 4735 3
## 4736 3
## 4737 3
## 4738 3
## 4739 3
## 4740 3
## 4741 3
## 4742 3
## 4743 3
## 4744 3
## 4745 3
## 4746 3
## 4747 3
## 4748 3
## 4749 3
## 4750 3
## 4751 3
## 4752 3
## 4753 3
## 4754 3
## 4755 3
## 4756 3
## 4757 3
## 4758 3
## 4759 3
## 4760 3
## 4761 3
## 4762 3
## 4763 3
## 4764 3
## 4765 3
## 4766 3
## 4767 3
## 4768 3
## 4769 3
## 4770 3
## 4771 3
## 4772 3
## 4773 3
## 4774 3
## 4775 3
## 4776 3
## 4777 3
## 4778 3
## 4779 3
## 4780 3
## 4781 3
## 4782 3
## 4783 3
## 4784 3
## 4785 3
## 4786 3
## 4787 3
## 4788 3
## 4789 3
## 4790 3
## 4791 3
## 4792 3
## 4793 3
## 4794 3
## 4795 3
## 4796 3
## 4797 3
## 4798 3
## 4799 3
## 4800 3
## 4801 3
## 4802 3
## 4803 3
## 4804 3
## 4805 3
## 4806 3
## 4807 3
## 4808 3
## 4809 3
## 4810 3
## 4811 3
## 4812 3
## 4813 3
## 4814 3
## 4815 3
## 4816 3
## 4817 3
## 4818 3
## 4819 3
## 4820 3
## 4821 3
## 4822 3
## 4823 3
## 4824 3
## 4825 3
## 4826 3
## 4827 3
## 4828 3
## 4829 3
## 4830 3
## 4831 3
## 4832 3
## 4833 3
## 4834 3
## 4835 3
## 4836 3
## 4837 3
## 4838 3
## 4839 3
## 4840 3
## 4841 3
## 4842 3
## 4843 3
## 4844 3
## 4845 3
## 4846 3
## 4847 3
## 4848 3
## 4849 3
## 4850 3
## 4851 3
## 4852 3
## 4853 3
## 4854 3
## 4855 3
## 4856 3
## 4857 3
## 4858 3
## 4859 3
## 4860 3
## 4861 3
## 4862 3
## 4863 3
## 4864 3
## 4865 3
## 4866 3
## 4867 3
## 4868 3
## 4869 3
## 4870 3
## 4871 3
## 4872 3
## 4873 3
## 4874 3
## 4875 3
## 4876 3
## 4877 3
## 4878 3
## 4879 3
## 4880 3
## 4881 3
## 4882 3
## 4883 3
## 4884 3
## 4885 3
## 4886 3
## 4887 3
## 4888 3
## 4889 3
## 4890 3
## 4891 3
## 4892 3
## 4893 3
## 4894 3
## 4895 3
## 4896 3
## 4897 3
## 4898 3
## 4899 3
## 4900 3
## 4901 3
## 4902 3
## 4903 3
## 4904 3
## 4905 3
## 4906 3
## 4907 3
## 4908 3
## 4909 3
## 4910 3
## 4911 3
## 4912 3
## 4913 3
## 4914 3
## 4915 3
## 4916 3
## 4917 3
## 4918 3
## 4919 3
## 4920 3
## 4921 3
## 4922 3
## 4923 3
## 4924 3
## 4925 3
## 4926 3
## 4927 3
## 4928 3
## 4929 3
## 4930 3
## 4931 3
## 4932 3
## 4933 3
## 4934 3
## 4935 3
## 4936 3
## 4937 3
## 4938 3
## 4939 3
## 4940 3
## 4941 3
## 4942 3
## 4943 3
## 4944 3
## 4945 3
## 4946 3
## 4947 3
## 4948 3
## 4949 3
## 4950 3
## 4951 3
## 4952 3
## 4953 3
## 4954 3
## 4955 3
## 4956 3
## 4957 3
## 4958 3
## 4959 3
## 4960 3
## 4961 3
## 4962 3
## 4963 3
## 4964 3
## 4965 3
## 4966 3
## 4967 3
## 4968 3
## 4969 3
## 4970 3
## 4971 3
## 4972 3
## 4973 3
## 4974 3
## 4975 3
## 4976 3
## 4977 3
## 4978 3
## 4979 3
## 4980 3
## 4981 3
## 4982 3
## 4983 3
## 4984 3
## 4985 3
## 4986 3
## 4987 3
## 4988 3
## 4989 3
## 4990 3
## 4991 3
## 4992 3
## 4993 3
## 4994 3
## 4995 3
## 4996 3
## 4997 3
## 4998 3
## 4999 3
## 5000 3
## 5001 3
## 5002 3
## 5003 3
## 5004 3
## 5005 3
## 5006 3
## 5007 3
## 5008 3
## 5009 3
## 5010 3
## 5011 3
## 5012 3
## 5013 3
## 5014 3
## 5015 3
## 5016 3
## 5017 3
## 5018 3
## 5019 3
## 5020 3
## 5021 3
## 5022 3
## 5023 3
## 5024 3
## 5025 3
## 5026 3
## 5027 3
## 5028 3
## 5029 3
## 5030 3
## 5031 3
## 5032 3
## 5033 3
## 5034 3
## 5035 3
## 5036 3
## 5037 3
## 5038 3
## 5039 3
## 5040 3
## 5041 3
## 5042 3
## 5043 3
## 5044 3
## 5045 3
## 5046 3
## 5047 3
## 5048 3
## 5049 3
## 5050 3
## 5051 3
## 5052 3
## 5053 3
## 5054 3
## 5055 3
## 5056 3
## 5057 3
## 5058 3
## 5059 3
## 5060 3
## 5061 3
## 5062 3
## 5063 3
## 5064 3
## 5065 3
## 5066 3
## 5067 3
## 5068 3
## 5069 3
## 5070 3
## 5071 3
## 5072 3
## 5073 3
## 5074 3
## 5075 3
## 5076 3
## 5077 3
## 5078 3
## 5079 3
## 5080 3
## 5081 3
## 5082 3
## 5083 3
## 5084 3
## 5085 3
## 5086 3
## 5087 3
## 5088 3
## 5089 3
## 5090 3
## 5091 3
## 5092 3
## 5093 3
## 5094 3
## 5095 3
## 5096 3
## 5097 3
## 5098 3
## 5099 3
## 5100 3
## 5101 3
## 5102 3
## 5103 3
## 5104 3
## 5105 3
## 5106 3
## 5107 3
## 5108 3
## 5109 3
## 5110 3
## 5111 3
## 5112 3
## 5113 3
## 5114 3
## 5115 3
## 5116 3
## 5117 3
## 5118 3
## 5119 3
## 5120 3
## 5121 3
## 5122 3
## 5123 3
## 5124 3
## 5125 3
## 5126 3
## 5127 3
## 5128 3
## 5129 3
## 5130 3
## 5131 3
## 5132 3
## 5133 3
## 5134 3
## 5135 3
## 5136 3
## 5137 3
## 5138 3
## 5139 3
## 5140 3
## 5141 3
## 5142 3
## 5143 3
## 5144 3
## 5145 3
## 5146 3
## 5147 3
## 5148 3
## 5149 3
## 5150 3
## 5151 3
## 5152 3
## 5153 3
## 5154 3
## 5155 3
## 5156 3
## 5157 3
## 5158 3
## 5159 3
## 5160 3
## 5161 3
## 5162 3
## 5163 3
## 5164 3
## 5165 3
## 5166 3
## 5167 3
## 5168 3
## 5169 3
## 5170 3
## 5171 3
## 5172 3
## 5173 3
## 5174 3
## 5175 3
## 5176 3
## 5177 3
## 5178 3
## 5179 3
## 5180 3
## 5181 3
## 5182 3
## 5183 3
## 5184 3
## 5185 3
## 5186 3
## 5187 3
## 5188 3
## 5189 3
## 5190 3
## 5191 3
## 5192 3
## 5193 3
## 5194 3
## 5195 3
## 5196 3
## 5197 3
## 5198 3
## 5199 3
## 5200 3
## 5201 3
## 5202 3
## 5203 3
## 5204 3
## 5205 3
## 5206 3
## 5207 3
## 5208 3
## 5209 3
## 5210 3
## 5211 3
## 5212 3
## 5213 3
## 5214 3
## 5215 3
## 5216 3
## 5217 3
## 5218 3
## 5219 3
## 5220 3
## 5221 3
## 5222 3
## 5223 3
## 5224 3
## 5225 3
## 5226 3
## 5227 3
## 5228 3
## 5229 3
## 5230 3
## 5231 3
## 5232 3
## 5233 3
## 5234 3
## 5235 3
## 5236 3
## 5237 3
## 5238 3
## 5239 3
## 5240 3
## 5241 3
## 5242 3
## 5243 3
## 5244 3
## 5245 3
## 5246 3
## 5247 3
## 5248 3
## 5249 3
## 5250 3
## 5251 3
## 5252 3
## 5253 3
## 5254 3
## 5255 3
## 5256 3
## 5257 3
## 5258 3
## 5259 3
## 5260 3
## 5261 3
## 5262 3
## 5263 3
## 5264 3
## 5265 3
## 5266 3
## 5267 3
## 5268 3
## 5269 3
## 5270 3
## 5271 3
## 5272 3
## 5273 3
## 5274 3
## 5275 3
## 5276 3
## 5277 3
## 5278 3
## 5279 3
## 5280 3
## 5281 3
## 5282 3
## 5283 3
## 5284 3
## 5285 3
## 5286 3
## 5287 3
## 5288 3
## 5289 3
## 5290 3
## 5291 3
## 5292 3
## 5293 3
## 5294 3
## 5295 3
## 5296 3
## 5297 3
## 5298 3
## 5299 3
## 5300 3
## 5301 3
## 5302 3
## 5303 3
## 5304 3
## 5305 3
## 5306 3
## 5307 3
## 5308 3
## 5309 3
## 5310 3
## 5311 3
## 5312 3
## 5313 3
## 5314 3
## 5315 3
## 5316 3
## 5317 3
## 5318 3
## 5319 3
## 5320 3
## 5321 3
## 5322 3
## 5323 3
## 5324 3
## 5325 3
## 5326 3
## 5327 3
## 5328 3
## 5329 3
## 5330 3
## 5331 3
## 5332 3
## 5333 3
## 5334 3
## 5335 3
## 5336 3
## 5337 3
## 5338 3
## 5339 3
## 5340 3
## 5341 3
## 5342 3
## 5343 3
## 5344 3
## 5345 3
## 5346 3
## 5347 3
## 5348 3
## 5349 3
## 5350 3
## 5351 3
## 5352 3
## 5353 3
## 5354 3
## 5355 2
## 5356 2
## 5357 2
## 5358 2
## 5359 2
## 5360 2
## 5361 2
## 5362 2
## 5363 2
## 5364 2
## 5365 2
## 5366 2
## 5367 2
## 5368 2
## 5369 2
## 5370 2
## 5371 2
## 5372 2
## 5373 2
## 5374 2
## 5375 2
## 5376 2
## 5377 2
## 5378 2
## 5379 2
## 5380 2
## 5381 2
## 5382 2
## 5383 2
## 5384 2
## 5385 2
## 5386 2
## 5387 2
## 5388 2
## 5389 2
## 5390 2
## 5391 2
## 5392 2
## 5393 2
## 5394 2
## 5395 2
## 5396 2
## 5397 2
## 5398 2
## 5399 2
## 5400 2
## 5401 2
## 5402 2
## 5403 2
## 5404 2
## 5405 2
## 5406 2
## 5407 2
## 5408 2
## 5409 2
## 5410 2
## 5411 2
## 5412 2
## 5413 2
## 5414 2
## 5415 2
## 5416 2
## 5417 2
## 5418 2
## 5419 2
## 5420 2
## 5421 2
## 5422 2
## 5423 2
## 5424 2
## 5425 2
## 5426 2
## 5427 2
## 5428 2
## 5429 2
## 5430 2
## 5431 2
## 5432 2
## 5433 2
## 5434 2
## 5435 2
## 5436 2
## 5437 2
## 5438 2
## 5439 2
## 5440 2
## 5441 2
## 5442 2
## 5443 2
## 5444 2
## 5445 2
## 5446 2
## 5447 2
## 5448 2
## 5449 2
## 5450 2
## 5451 2
## 5452 2
## 5453 2
## 5454 2
## 5455 2
## 5456 2
## 5457 2
## 5458 2
## 5459 2
## 5460 2
## 5461 2
## 5462 2
## 5463 2
## 5464 2
## 5465 2
## 5466 2
## 5467 2
## 5468 2
## 5469 2
## 5470 2
## 5471 2
## 5472 2
## 5473 2
## 5474 2
## 5475 2
## 5476 2
## 5477 2
## 5478 2
## 5479 2
## 5480 2
## 5481 2
## 5482 2
## 5483 2
## 5484 2
## 5485 2
## 5486 2
## 5487 2
## 5488 2
## 5489 2
## 5490 2
## 5491 2
## 5492 2
## 5493 2
## 5494 2
## 5495 2
## 5496 2
## 5497 2
## 5498 2
## 5499 2
## 5500 2
## 5501 2
## 5502 2
## 5503 2
## 5504 2
## 5505 2
## 5506 2
## 5507 2
## 5508 2
## 5509 2
## 5510 2
## 5511 2
## 5512 2
## 5513 2
## 5514 2
## 5515 2
## 5516 2
## 5517 2
## 5518 2
## 5519 2
## 5520 2
## 5521 2
## 5522 2
## 5523 2
## 5524 2
## 5525 2
## 5526 2
## 5527 2
## 5528 2
## 5529 2
## 5530 2
## 5531 2
## 5532 2
## 5533 2
## 5534 2
## 5535 2
## 5536 2
## 5537 2
## 5538 2
## 5539 2
## 5540 2
## 5541 2
## 5542 2
## 5543 2
## 5544 2
## 5545 2
## 5546 2
## 5547 2
## 5548 2
## 5549 2
## 5550 2
## 5551 2
## 5552 2
## 5553 2
## 5554 2
## 5555 2
## 5556 2
## 5557 2
## 5558 2
## 5559 2
## 5560 2
## 5561 2
## 5562 2
## 5563 2
## 5564 2
## 5565 2
## 5566 2
## 5567 2
## 5568 2
## 5569 2
## 5570 2
## 5571 2
## 5572 2
## 5573 2
## 5574 2
## 5575 2
## 5576 2
## 5577 2
## 5578 2
## 5579 2
## 5580 2
## 5581 2
## 5582 2
## 5583 2
## 5584 2
## 5585 2
## 5586 2
## 5587 2
## 5588 2
## 5589 2
## 5590 2
## 5591 2
## 5592 2
## 5593 2
## 5594 2
## 5595 2
## 5596 2
## 5597 2
## 5598 2
## 5599 2
## 5600 2
## 5601 2
## 5602 2
## 5603 2
## 5604 2
## 5605 2
## 5606 2
## 5607 2
## 5608 2
## 5609 2
## 5610 2
## 5611 2
## 5612 2
## 5613 2
## 5614 2
## 5615 2
## 5616 2
## 5617 2
## 5618 2
## 5619 2
## 5620 2
## 5621 2
## 5622 2
## 5623 2
## 5624 2
## 5625 2
## 5626 2
## 5627 2
## 5628 2
## 5629 2
## 5630 2
## 5631 2
## 5632 2
## 5633 2
## 5634 2
## 5635 2
## 5636 2
## 5637 2
## 5638 2
## 5639 2
## 5640 2
## 5641 2
## 5642 2
## 5643 2
## 5644 2
## 5645 2
## 5646 2
## 5647 2
## 5648 2
## 5649 2
## 5650 2
## 5651 2
## 5652 2
## 5653 2
## 5654 2
## 5655 2
## 5656 2
## 5657 2
## 5658 2
## 5659 2
## 5660 2
## 5661 2
## 5662 2
## 5663 2
## 5664 2
## 5665 2
## 5666 2
## 5667 2
## 5668 2
## 5669 2
## 5670 2
## 5671 2
## 5672 2
## 5673 2
## 5674 2
## 5675 2
## 5676 2
## 5677 2
## 5678 2
## 5679 2
## 5680 2
## 5681 2
## 5682 2
## 5683 2
## 5684 2
## 5685 2
## 5686 2
## 5687 2
## 5688 2
## 5689 2
## 5690 2
## 5691 2
## 5692 2
## 5693 2
## 5694 2
## 5695 2
## 5696 2
## 5697 2
## 5698 2
## 5699 2
## 5700 2
## 5701 2
## 5702 2
## 5703 2
## 5704 2
## 5705 2
## 5706 2
## 5707 2
## 5708 2
## 5709 2
## 5710 2
## 5711 2
## 5712 2
## 5713 2
## 5714 2
## 5715 2
## 5716 2
## 5717 2
## 5718 2
## 5719 2
## 5720 2
## 5721 2
## 5722 2
## 5723 2
## 5724 2
## 5725 2
## 5726 2
## 5727 2
## 5728 2
## 5729 2
## 5730 2
## 5731 2
## 5732 2
## 5733 2
## 5734 2
## 5735 2
## 5736 2
## 5737 2
## 5738 2
## 5739 2
## 5740 2
## 5741 2
## 5742 2
## 5743 2
## 5744 2
## 5745 2
## 5746 2
## 5747 2
## 5748 2
## 5749 2
## 5750 2
## 5751 2
## 5752 2
## 5753 2
## 5754 2
## 5755 2
## 5756 2
## 5757 2
## 5758 2
## 5759 2
## 5760 2
## 5761 2
## 5762 2
## 5763 2
## 5764 2
## 5765 2
## 5766 2
## 5767 2
## 5768 2
## 5769 2
## 5770 2
## 5771 2
## 5772 2
## 5773 2
## 5774 2
## 5775 2
## 5776 2
## 5777 2
## 5778 2
## 5779 2
## 5780 2
## 5781 2
## 5782 2
## 5783 2
## 5784 2
## 5785 2
## 5786 2
## 5787 2
## 5788 2
## 5789 2
## 5790 2
## 5791 2
## 5792 2
## 5793 2
## 5794 2
## 5795 2
## 5796 2
## 5797 2
## 5798 2
## 5799 2
## 5800 2
## 5801 2
## 5802 2
## 5803 2
## 5804 2
## 5805 2
## 5806 2
## 5807 2
## 5808 2
## 5809 2
## 5810 2
## 5811 2
## 5812 2
## 5813 2
## 5814 2
## 5815 2
## 5816 2
## 5817 2
## 5818 2
## 5819 2
## 5820 2
## 5821 2
## 5822 2
## 5823 2
## 5824 2
## 5825 2
## 5826 2
## 5827 2
## 5828 2
## 5829 2
## 5830 2
## 5831 2
## 5832 2
## 5833 2
## 5834 2
## 5835 2
## 5836 2
## 5837 2
## 5838 2
## 5839 2
## 5840 2
## 5841 2
## 5842 2
## 5843 2
## 5844 2
## 5845 2
## 5846 2
## 5847 2
## 5848 2
## 5849 2
## 5850 2
## 5851 2
## 5852 2
## 5853 2
## 5854 2
## 5855 2
## 5856 2
## 5857 2
## 5858 2
## 5859 2
## 5860 2
## 5861 2
## 5862 2
## 5863 2
## 5864 2
## 5865 2
## 5866 2
## 5867 2
## 5868 2
## 5869 2
## 5870 2
## 5871 2
## 5872 2
## 5873 2
## 5874 2
## 5875 2
## 5876 2
## 5877 2
## 5878 2
## 5879 2
## 5880 2
## 5881 2
## 5882 2
## 5883 2
## 5884 2
## 5885 2
## 5886 2
## 5887 2
## 5888 2
## 5889 2
## 5890 2
## 5891 2
## 5892 2
## 5893 2
## 5894 2
## 5895 2
## 5896 2
## 5897 2
## 5898 2
## 5899 2
## 5900 2
## 5901 2
## 5902 2
## 5903 2
## 5904 2
## 5905 2
## 5906 2
## 5907 2
## 5908 2
## 5909 2
## 5910 2
## 5911 2
## 5912 2
## 5913 2
## 5914 2
## 5915 2
## 5916 2
## 5917 2
## 5918 2
## 5919 2
## 5920 2
## 5921 2
## 5922 2
## 5923 2
## 5924 2
## 5925 2
## 5926 2
## 5927 2
## 5928 2
## 5929 2
## 5930 2
## 5931 2
## 5932 2
## 5933 2
## 5934 2
## 5935 2
## 5936 2
## 5937 2
## 5938 2
## 5939 2
## 5940 2
## 5941 2
## 5942 2
## 5943 2
## 5944 2
## 5945 2
## 5946 2
## 5947 2
## 5948 2
## 5949 2
## 5950 2
## 5951 2
## 5952 2
## 5953 2
## 5954 2
## 5955 2
## 5956 2
## 5957 2
## 5958 2
## 5959 2
## 5960 2
## 5961 2
## 5962 2
## 5963 2
## 5964 2
## 5965 2
## 5966 2
## 5967 2
## 5968 2
## 5969 2
## 5970 2
## 5971 2
## 5972 2
## 5973 2
## 5974 2
## 5975 2
## 5976 2
## 5977 2
## 5978 2
## 5979 2
## 5980 2
## 5981 2
## 5982 2
## 5983 2
## 5984 2
## 5985 2
## 5986 2
## 5987 2
## 5988 2
## 5989 2
## 5990 2
## 5991 2
## 5992 2
## 5993 2
## 5994 2
## 5995 2
## 5996 2
## 5997 2
## 5998 2
## 5999 2
## 6000 2
## 6001 2
## 6002 2
## 6003 2
## 6004 2
## 6005 2
## 6006 2
## 6007 2
## 6008 2
## 6009 2
## 6010 2
## 6011 2
## 6012 2
## 6013 2
## 6014 2
## 6015 2
## 6016 2
## 6017 2
## 6018 2
## 6019 2
## 6020 2
## 6021 2
## 6022 2
## 6023 2
## 6024 2
## 6025 2
## 6026 2
## 6027 2
## 6028 2
## 6029 2
## 6030 2
## 6031 2
## 6032 2
## 6033 2
## 6034 2
## 6035 2
## 6036 2
## 6037 2
## 6038 2
## 6039 2
## 6040 2
## 6041 2
## 6042 2
## 6043 2
## 6044 2
## 6045 2
## 6046 2
## 6047 2
## 6048 2
## 6049 2
## 6050 2
## 6051 2
## 6052 2
## 6053 2
## 6054 2
## 6055 2
## 6056 2
## 6057 2
## 6058 2
## 6059 2
## 6060 2
## 6061 2
## 6062 2
## 6063 2
## 6064 2
## 6065 2
## 6066 2
## 6067 2
## 6068 2
## 6069 2
## 6070 2
## 6071 2
## 6072 2
## 6073 2
## 6074 2
## 6075 2
## 6076 2
## 6077 2
## 6078 2
## 6079 2
## 6080 2
## 6081 2
## 6082 2
## 6083 2
## 6084 2
## 6085 2
## 6086 2
## 6087 2
## 6088 2
## 6089 2
## 6090 2
## 6091 2
## 6092 2
## 6093 2
## 6094 2
## 6095 2
## 6096 2
## 6097 2
## 6098 2
## 6099 2
## 6100 2
## 6101 2
## 6102 2
## 6103 2
## 6104 2
## 6105 2
## 6106 2
## 6107 2
## 6108 2
## 6109 2
## 6110 2
## 6111 2
## 6112 2
## 6113 2
## 6114 2
## 6115 2
## 6116 2
## 6117 2
## 6118 2
## 6119 2
## 6120 2
## 6121 2
## 6122 2
## 6123 2
## 6124 2
## 6125 2
## 6126 2
## 6127 2
## 6128 2
## 6129 2
## 6130 2
## 6131 2
## 6132 2
## 6133 2
## 6134 2
## 6135 2
## 6136 2
## 6137 2
## 6138 2
## 6139 2
## 6140 2
## 6141 2
## 6142 2
## 6143 2
## 6144 2
## 6145 2
## 6146 2
## 6147 2
## 6148 2
## 6149 2
## 6150 2
## 6151 2
## 6152 2
## 6153 2
## 6154 2
## 6155 2
## 6156 2
## 6157 2
## 6158 2
## 6159 2
## 6160 2
## 6161 2
## 6162 2
## 6163 2
## 6164 2
## 6165 2
## 6166 2
## 6167 2
## 6168 2
## 6169 2
## 6170 2
## 6171 2
## 6172 2
## 6173 2
## 6174 2
## 6175 2
## 6176 2
## 6177 2
## 6178 2
## 6179 2
## 6180 2
## 6181 2
## 6182 2
## 6183 2
## 6184 2
## 6185 2
## 6186 2
## 6187 2
## 6188 2
## 6189 2
## 6190 2
## 6191 2
## 6192 2
## 6193 2
## 6194 2
## 6195 2
## 6196 2
## 6197 2
## 6198 2
## 6199 2
## 6200 2
## 6201 2
## 6202 2
## 6203 2
## 6204 2
## 6205 2
## 6206 2
## 6207 2
## 6208 2
## 6209 2
## 6210 2
## 6211 2
## 6212 2
## 6213 2
## 6214 2
## 6215 2
## 6216 2
## 6217 2
## 6218 2
## 6219 2
## 6220 2
## 6221 2
## 6222 2
## 6223 2
## 6224 2
## 6225 2
## 6226 2
## 6227 2
## 6228 2
## 6229 2
## 6230 2
## 6231 2
## 6232 2
## 6233 2
## 6234 2
## 6235 2
## 6236 2
## 6237 2
## 6238 2
## 6239 2
## 6240 2
## 6241 2
## 6242 2
## 6243 2
## 6244 2
## 6245 2
## 6246 2
## 6247 2
## 6248 2
## 6249 2
## 6250 2
## 6251 2
## 6252 2
## 6253 2
## 6254 2
## 6255 2
## 6256 2
## 6257 2
## 6258 2
## 6259 2
## 6260 2
## 6261 2
## 6262 2
## 6263 2
## 6264 2
## 6265 2
## 6266 2
## 6267 2
## 6268 2
## 6269 2
## 6270 2
## 6271 2
## 6272 2
## 6273 2
## 6274 2
## 6275 2
## 6276 2
## 6277 2
## 6278 2
## 6279 2
## 6280 2
## 6281 2
## 6282 2
## 6283 2
## 6284 2
## 6285 2
## 6286 2
## 6287 2
## 6288 2
## 6289 2
## 6290 2
## 6291 2
## 6292 2
## 6293 2
## 6294 2
## 6295 2
## 6296 2
## 6297 2
## 6298 2
## 6299 2
## 6300 2
## 6301 2
## 6302 2
## 6303 2
## 6304 2
## 6305 2
## 6306 2
## 6307 2
## 6308 2
## 6309 2
## 6310 2
## 6311 2
## 6312 2
## 6313 2
## 6314 2
## 6315 2
## 6316 2
## 6317 2
## 6318 2
## 6319 2
## 6320 2
## 6321 2
## 6322 2
## 6323 2
## 6324 2
## 6325 2
## 6326 2
## 6327 2
## 6328 2
## 6329 2
## 6330 2
## 6331 2
## 6332 2
## 6333 2
## 6334 2
## 6335 2
## 6336 2
## 6337 2
## 6338 2
## 6339 2
## 6340 2
## 6341 2
## 6342 2
## 6343 2
## 6344 2
## 6345 2
## 6346 2
## 6347 2
## 6348 2
## 6349 2
## 6350 2
## 6351 2
## 6352 2
## 6353 2
## 6354 2
## 6355 2
## 6356 2
## 6357 2
## 6358 2
## 6359 2
## 6360 2
## 6361 2
## 6362 2
## 6363 2
## 6364 2
## 6365 2
## 6366 2
## 6367 2
## 6368 2
## 6369 2
## 6370 2
## 6371 2
## 6372 2
## 6373 2
## 6374 2
## 6375 2
## 6376 2
## 6377 2
## 6378 2
## 6379 2
## 6380 2
## 6381 2
## 6382 2
## 6383 2
## 6384 2
## 6385 2
## 6386 2
## 6387 2
## 6388 2
## 6389 2
## 6390 2
## 6391 2
## 6392 2
## 6393 2
## 6394 2
## 6395 2
## 6396 2
## 6397 2
## 6398 2
## 6399 2
## 6400 2
## 6401 2
## 6402 2
## 6403 2
## 6404 2
## 6405 2
## 6406 2
## 6407 2
## 6408 2
## 6409 2
## 6410 2
## 6411 2
## 6412 2
## 6413 2
## 6414 2
## 6415 2
## 6416 2
## 6417 2
## 6418 2
## 6419 2
## 6420 2
## 6421 2
## 6422 2
## 6423 2
## 6424 2
## 6425 2
## 6426 2
## 6427 2
## 6428 2
## 6429 2
## 6430 2
## 6431 2
## 6432 2
## 6433 2
## 6434 2
## 6435 2
## 6436 2
## 6437 2
## 6438 2
## 6439 2
## 6440 2
## 6441 2
## 6442 2
## 6443 2
## 6444 2
## 6445 2
## 6446 2
## 6447 2
## 6448 2
## 6449 2
## 6450 2
## 6451 2
## 6452 2
## 6453 2
## 6454 2
## 6455 2
## 6456 2
## 6457 2
## 6458 2
## 6459 2
## 6460 2
## 6461 2
## 6462 2
## 6463 2
## 6464 2
## 6465 2
## 6466 2
## 6467 2
## 6468 2
## 6469 2
## 6470 2
## 6471 2
## 6472 2
## 6473 2
## 6474 2
## 6475 2
## 6476 2
## 6477 2
## 6478 2
## 6479 2
## 6480 2
## 6481 2
## 6482 2
## 6483 2
## 6484 2
## 6485 2
## 6486 2
## 6487 2
## 6488 2
## 6489 2
## 6490 2
## 6491 2
## 6492 2
## 6493 2
## 6494 2
## 6495 2
## 6496 2
## 6497 2
## 6498 2
## 6499 2
## 6500 2
## 6501 2
## 6502 2
## 6503 2
## 6504 2
## 6505 2
## 6506 2
## 6507 2
## 6508 2
## 6509 2
## 6510 2
## 6511 2
## 6512 2
## 6513 2
## 6514 2
## 6515 2
## 6516 2
## 6517 2
## 6518 2
## 6519 2
## 6520 2
## 6521 2
## 6522 2
## 6523 2
## 6524 2
## 6525 2
## 6526 2
## 6527 2
## 6528 2
## 6529 2
## 6530 2
## 6531 2
## 6532 2
## 6533 2
## 6534 2
## 6535 2
## 6536 2
## 6537 2
## 6538 2
## 6539 2
## 6540 2
## 6541 2
## 6542 2
## 6543 2
## 6544 2
## 6545 2
## 6546 2
## 6547 2
## 6548 2
## 6549 2
## 6550 2
## 6551 2
## 6552 2
## 6553 2
## 6554 2
## 6555 2
## 6556 2
## 6557 2
## 6558 2
## 6559 2
## 6560 2
## 6561 2
## 6562 2
## 6563 2
## 6564 2
## 6565 2
## 6566 2
## 6567 2
## 6568 2
## 6569 2
## 6570 2
## 6571 2
## 6572 2
## 6573 2
## 6574 2
## 6575 2
## 6576 2
## 6577 2
## 6578 2
## 6579 2
## 6580 2
## 6581 2
## 6582 2
## 6583 2
## 6584 2
## 6585 2
## 6586 2
## 6587 2
## 6588 2
## 6589 2
## 6590 2
## 6591 2
## 6592 2
## 6593 2
## 6594 2
## 6595 2
## 6596 2
## 6597 2
## 6598 2
## 6599 2
## 6600 2
## 6601 2
## 6602 2
## 6603 2
## 6604 2
## 6605 2
## 6606 2
## 6607 2
## 6608 2
## 6609 2
## 6610 2
## 6611 2
## 6612 2
## 6613 2
## 6614 2
## 6615 2
## 6616 2
## 6617 2
## 6618 2
## 6619 2
## 6620 2
## 6621 2
## 6622 2
## 6623 2
## 6624 2
## 6625 2
## 6626 2
## 6627 2
## 6628 2
## 6629 2
## 6630 2
## 6631 2
## 6632 2
## 6633 2
## 6634 2
## 6635 2
## 6636 2
## 6637 2
## 6638 2
## 6639 2
## 6640 2
## 6641 2
## 6642 2
## 6643 2
## 6644 2
## 6645 2
## 6646 2
## 6647 2
## 6648 2
## 6649 2
## 6650 2
## 6651 2
## 6652 2
## 6653 2
## 6654 2
## 6655 2
## 6656 2
## 6657 2
## 6658 2
## 6659 2
## 6660 2
## 6661 2
## 6662 2
## 6663 2
## 6664 2
## 6665 2
## 6666 2
## 6667 2
## 6668 2
## 6669 2
## 6670 2
## 6671 2
## 6672 2
## 6673 2
## 6674 2
## 6675 2
## 6676 2
## 6677 2
## 6678 2
## 6679 2
## 6680 2
## 6681 2
## 6682 2
## 6683 2
## 6684 2
## 6685 2
## 6686 2
## 6687 2
## 6688 2
## 6689 2
## 6690 2
## 6691 2
## 6692 2
## 6693 2
## 6694 2
## 6695 2
## 6696 2
## 6697 2
## 6698 2
## 6699 2
## 6700 2
## 6701 2
## 6702 2
## 6703 2
## 6704 2
## 6705 2
## 6706 2
## 6707 2
## 6708 2
## 6709 2
## 6710 2
## 6711 2
## 6712 2
## 6713 2
## 6714 2
## 6715 2
## 6716 2
## 6717 2
## 6718 2
## 6719 2
## 6720 2
## 6721 2
## 6722 2
## 6723 2
## 6724 2
## 6725 2
## 6726 2
## 6727 2
## 6728 2
## 6729 2
## 6730 2
## 6731 2
## 6732 2
## 6733 2
## 6734 2
## 6735 2
## 6736 2
## 6737 2
## 6738 2
## 6739 2
## 6740 2
## 6741 2
## 6742 2
## 6743 2
## 6744 2
## 6745 2
## 6746 2
## 6747 2
## 6748 2
## 6749 2
## 6750 2
## 6751 2
## 6752 2
## 6753 2
## 6754 2
## 6755 2
## 6756 2
## 6757 2
## 6758 2
## 6759 2
## 6760 2
## 6761 2
## 6762 2
## 6763 2
## 6764 2
## 6765 2
## 6766 2
## 6767 2
## 6768 2
## 6769 2
## 6770 2
## 6771 2
## 6772 2
## 6773 2
## 6774 2
## 6775 2
## 6776 2
## 6777 2
## 6778 2
## 6779 2
## 6780 2
## 6781 2
## 6782 2
## 6783 2
## 6784 2
## 6785 2
## 6786 2
## 6787 2
## 6788 2
## 6789 2
## 6790 2
## 6791 2
## 6792 2
## 6793 2
## 6794 2
## 6795 2
## 6796 2
## 6797 2
## 6798 2
## 6799 2
## 6800 2
## 6801 2
## 6802 2
## 6803 2
## 6804 2
## 6805 2
## 6806 2
## 6807 2
## 6808 2
## 6809 2
## 6810 2
## 6811 2
## 6812 2
## 6813 2
## 6814 2
## 6815 2
## 6816 2
## 6817 2
## 6818 2
## 6819 2
## 6820 2
## 6821 2
## 6822 2
## 6823 2
## 6824 2
## 6825 2
## 6826 2
## 6827 2
## 6828 2
## 6829 2
## 6830 2
## 6831 2
## 6832 2
## 6833 2
## 6834 2
## 6835 2
## 6836 2
## 6837 2
## 6838 2
## 6839 2
## 6840 2
## 6841 2
## 6842 2
## 6843 2
## 6844 2
## 6845 2
## 6846 2
## 6847 2
## 6848 2
## 6849 2
## 6850 2
## 6851 2
## 6852 2
## 6853 2
## 6854 2
## 6855 2
## 6856 2
## 6857 2
## 6858 2
## 6859 2
## 6860 2
## 6861 2
## 6862 2
## 6863 2
## 6864 2
## 6865 2
## 6866 2
## 6867 2
## 6868 2
## 6869 2
## 6870 2
## 6871 2
## 6872 2
## 6873 2
## 6874 2
## 6875 2
## 6876 2
## 6877 2
## 6878 2
## 6879 2
## 6880 2
## 6881 2
## 6882 2
## 6883 2
## 6884 2
## 6885 2
## 6886 2
## 6887 2
## 6888 2
## 6889 2
## 6890 2
## 6891 2
## 6892 2
## 6893 2
## 6894 2
## 6895 2
## 6896 2
## 6897 2
## 6898 2
## 6899 2
## 6900 2
## 6901 2
## 6902 2
## 6903 2
## 6904 2
## 6905 2
## 6906 2
## 6907 2
## 6908 2
## 6909 2
## 6910 2
## 6911 2
## 6912 2
## 6913 2
## 6914 2
## 6915 2
## 6916 2
## 6917 2
## 6918 2
## 6919 2
## 6920 2
## 6921 2
## 6922 2
## 6923 2
## 6924 2
## 6925 2
## 6926 2
## 6927 2
## 6928 2
## 6929 2
## 6930 2
## 6931 2
## 6932 2
## 6933 2
## 6934 2
## 6935 2
## 6936 2
## 6937 2
## 6938 2
## 6939 2
## 6940 2
## 6941 2
## 6942 2
## 6943 2
## 6944 2
## 6945 2
## 6946 2
## 6947 2
## 6948 2
## 6949 2
## 6950 2
## 6951 2
## 6952 2
## 6953 2
## 6954 2
## 6955 2
## 6956 2
## 6957 2
## 6958 2
## 6959 2
## 6960 2
## 6961 2
## 6962 2
## 6963 2
## 6964 2
## 6965 2
## 6966 2
## 6967 2
## 6968 2
## 6969 2
## 6970 2
## 6971 2
## 6972 2
## 6973 2
## 6974 2
## 6975 2
## 6976 2
## 6977 2
## 6978 2
## 6979 2
## 6980 2
## 6981 2
## 6982 2
## 6983 2
## 6984 2
## 6985 2
## 6986 2
## 6987 2
## 6988 2
## 6989 2
## 6990 2
## 6991 2
## 6992 2
## 6993 2
## 6994 2
## 6995 2
## 6996 2
## 6997 2
## 6998 2
## 6999 2
## 7000 2
## 7001 2
## 7002 2
## 7003 2
## 7004 2
## 7005 2
## 7006 2
## 7007 2
## 7008 2
## 7009 2
## 7010 2
## 7011 2
## 7012 2
## 7013 2
## 7014 2
## 7015 2
## 7016 2
## 7017 2
## 7018 2
## 7019 2
## 7020 2
## 7021 2
## 7022 2
## 7023 2
## 7024 2
## 7025 2
## 7026 2
## 7027 2
## 7028 2
## 7029 2
## 7030 2
## 7031 2
## 7032 2
## 7033 2
## 7034 2
## 7035 2
## 7036 2
## 7037 2
## 7038 2
## 7039 2
## 7040 2
## 7041 2
## 7042 2
## 7043 2
## 7044 2
## 7045 2
## 7046 2
## 7047 2
## 7048 2
## 7049 2
## 7050 2
## 7051 2
## 7052 2
## 7053 2
## 7054 2
## 7055 2
## 7056 2
## 7057 2
## 7058 2
## 7059 2
## 7060 2
## 7061 2
## 7062 2
## 7063 2
## 7064 2
## 7065 2
## 7066 2
## 7067 2
## 7068 2
## 7069 2
## 7070 2
## 7071 2
## 7072 2
## 7073 2
## 7074 2
## 7075 2
## 7076 2
## 7077 2
## 7078 2
## 7079 2
## 7080 2
## 7081 2
## 7082 2
## 7083 2
## 7084 2
## 7085 2
## 7086 2
## 7087 2
## 7088 2
## 7089 2
## 7090 2
## 7091 2
## 7092 2
## 7093 2
## 7094 2
## 7095 2
## 7096 2
## 7097 2
## 7098 2
## 7099 2
## 7100 2
## 7101 2
## 7102 2
## 7103 2
## 7104 2
## 7105 2
## 7106 2
## 7107 2
## 7108 2
## 7109 2
## 7110 2
## 7111 2
## 7112 2
## 7113 2
## 7114 2
## 7115 2
## 7116 2
## 7117 2
## 7118 2
## 7119 2
## 7120 2
## 7121 2
## 7122 2
## 7123 2
## 7124 2
## 7125 2
## 7126 2
## 7127 2
## 7128 2
## 7129 2
## 7130 2
## 7131 2
## 7132 2
## 7133 2
## 7134 2
## 7135 2
## 7136 2
## 7137 2
## 7138 2
## 7139 2
## 7140 2
## 7141 2
## 7142 2
## 7143 2
## 7144 2
## 7145 2
## 7146 2
## 7147 2
## 7148 2
## 7149 2
## 7150 2
## 7151 2
## 7152 2
## 7153 2
## 7154 2
## 7155 2
## 7156 2
## 7157 2
## 7158 2
## 7159 2
## 7160 2
## 7161 2
## 7162 2
## 7163 2
## 7164 2
## 7165 2
## 7166 2
## 7167 2
## 7168 2
## 7169 2
## 7170 2
## 7171 2
## 7172 2
## 7173 2
## 7174 2
## 7175 2
## 7176 2
## 7177 2
## 7178 2
## 7179 2
## 7180 2
## 7181 2
## 7182 2
## 7183 2
## 7184 2
## 7185 2
## 7186 2
## 7187 2
## 7188 2
## 7189 2
## 7190 2
## 7191 2
## 7192 2
## 7193 2
## 7194 2
## 7195 2
## 7196 2
## 7197 2
## 7198 2
## 7199 2
## 7200 2
## 7201 2
## 7202 2
## 7203 2
## 7204 2
## 7205 2
## 7206 2
## 7207 2
## 7208 2
## 7209 2
## 7210 2
## 7211 2
## 7212 2
## 7213 2
## 7214 2
## 7215 2
## 7216 2
## 7217 2
## 7218 2
## 7219 2
## 7220 2
## 7221 2
## 7222 2
## 7223 2
## 7224 2
## 7225 2
## 7226 2
## 7227 2
## 7228 2
## 7229 2
## 7230 2
## 7231 2
## 7232 2
## 7233 2
## 7234 2
## 7235 2
## 7236 2
## 7237 2
## 7238 2
## 7239 2
## 7240 2
## 7241 2
## 7242 2
## 7243 2
## 7244 2
## 7245 2
## 7246 2
## 7247 2
## 7248 2
## 7249 2
## 7250 2
## 7251 2
## 7252 2
## 7253 2
## 7254 2
## 7255 2
## 7256 2
## 7257 2
## 7258 2
## 7259 2
## 7260 2
## 7261 2
## 7262 2
## 7263 2
## 7264 2
## 7265 2
## 7266 2
## 7267 2
## 7268 2
## 7269 2
## 7270 2
## 7271 2
## 7272 2
## 7273 2
## 7274 2
## 7275 2
## 7276 2
## 7277 2
## 7278 2
## 7279 2
## 7280 2
## 7281 2
## 7282 2
## 7283 2
## 7284 2
## 7285 2
## 7286 2
## 7287 2
## 7288 2
## 7289 2
## 7290 2
## 7291 2
## 7292 2
## 7293 2
## 7294 2
## 7295 2
## 7296 2
## 7297 2
## 7298 2
## 7299 2
## 7300 2
## 7301 2
## 7302 2
## 7303 2
## 7304 2
## 7305 2
## 7306 2
## 7307 2
## 7308 2
## 7309 2
## 7310 2
## 7311 2
## 7312 2
## 7313 2
## 7314 2
## 7315 2
## 7316 2
## 7317 2
## 7318 2
## 7319 2
## 7320 2
## 7321 2
## 7322 2
## 7323 2
## 7324 2
## 7325 2
## 7326 2
## 7327 2
## 7328 2
## 7329 2
## 7330 2
## 7331 2
## 7332 2
## 7333 2
## 7334 2
## 7335 2
## 7336 2
## 7337 2
## 7338 2
## 7339 2
## 7340 2
## 7341 2
## 7342 2
## 7343 2
## 7344 2
## 7345 2
## 7346 2
## 7347 2
## 7348 2
## 7349 2
## 7350 2
## 7351 2
## 7352 2
## 7353 2
## 7354 2
## 7355 2
## 7356 2
## 7357 2
## 7358 2
## 7359 2
## 7360 2
## 7361 2
## 7362 2
## 7363 2
## 7364 2
## 7365 2
## 7366 2
## 7367 2
## 7368 2
## 7369 2
## 7370 2
## 7371 2
## 7372 2
## 7373 2
## 7374 2
## 7375 2
## 7376 2
## 7377 2
## 7378 2
## 7379 2
## 7380 2
## 7381 2
## 7382 2
## 7383 2
## 7384 2
## 7385 2
## 7386 2
## 7387 2
## 7388 2
## 7389 2
## 7390 2
## 7391 2
## 7392 2
## 7393 2
## 7394 2
## 7395 2
## 7396 2
## 7397 2
## 7398 2
## 7399 2
## 7400 2
## 7401 2
## 7402 2
## 7403 2
## 7404 2
## 7405 2
## 7406 2
## 7407 2
## 7408 2
## 7409 2
## 7410 2
## 7411 2
## 7412 2
## 7413 2
## 7414 2
## 7415 2
## 7416 2
## 7417 2
## 7418 2
## 7419 2
## 7420 2
## 7421 2
## 7422 2
## 7423 2
## 7424 2
## 7425 2
## 7426 2
## 7427 2
## 7428 2
## 7429 2
## 7430 2
## 7431 2
## 7432 2
## 7433 2
## 7434 2
## 7435 2
## 7436 2
## 7437 2
## 7438 2
## 7439 2
## 7440 2
## 7441 2
## 7442 2
## 7443 2
## 7444 2
## 7445 2
## 7446 2
## 7447 2
## 7448 2
## 7449 2
## 7450 2
## 7451 2
## 7452 2
## 7453 2
## 7454 2
## 7455 2
## 7456 2
## 7457 2
## 7458 2
## 7459 2
## 7460 2
## 7461 2
## 7462 2
## 7463 2
## 7464 2
## 7465 2
## 7466 2
## 7467 2
## 7468 2
## 7469 2
## 7470 2
## 7471 2
## 7472 2
## 7473 2
## 7474 2
## 7475 2
## 7476 2
## 7477 2
## 7478 2
## 7479 2
## 7480 2
## 7481 2
## 7482 2
## 7483 2
## 7484 2
## 7485 2
## 7486 2
## 7487 2
## 7488 2
## 7489 2
## 7490 2
## 7491 2
## 7492 1
## 7493 1
## 7494 1
## 7495 1
## 7496 1
## 7497 1
## 7498 1
## 7499 1
## 7500 1
## 7501 1
## 7502 1
## 7503 1
## 7504 1
## 7505 1
## 7506 1
## 7507 1
## 7508 1
## 7509 1
## 7510 1
## 7511 1
## 7512 1
## 7513 1
## 7514 1
## 7515 1
## 7516 1
## 7517 1
## 7518 1
## 7519 1
## 7520 1
## 7521 1
## 7522 1
## 7523 1
## 7524 1
## 7525 1
## 7526 1
## 7527 1
## 7528 1
## 7529 1
## 7530 1
## 7531 1
## 7532 1
## 7533 1
## 7534 1
## 7535 1
## 7536 1
## 7537 1
## 7538 1
## 7539 1
## 7540 1
## 7541 1
## 7542 1
## 7543 1
## 7544 1
## 7545 1
## 7546 1
## 7547 1
## 7548 1
## 7549 1
## 7550 1
## 7551 1
## 7552 1
## 7553 1
## 7554 1
## 7555 1
## 7556 1
## 7557 1
## 7558 1
## 7559 1
## 7560 1
## 7561 1
## 7562 1
## 7563 1
## 7564 1
## 7565 1
## 7566 1
## 7567 1
## 7568 1
## 7569 1
## 7570 1
## 7571 1
## 7572 1
## 7573 1
## 7574 1
## 7575 1
## 7576 1
## 7577 1
## 7578 1
## 7579 1
## 7580 1
## 7581 1
## 7582 1
## 7583 1
## 7584 1
## 7585 1
## 7586 1
## 7587 1
## 7588 1
## 7589 1
## 7590 1
## 7591 1
## 7592 1
## 7593 1
## 7594 1
## 7595 1
## 7596 1
## 7597 1
## 7598 1
## 7599 1
## 7600 1
## 7601 1
## 7602 1
## 7603 1
## 7604 1
## 7605 1
## 7606 1
## 7607 1
## 7608 1
## 7609 1
## 7610 1
## 7611 1
## 7612 1
## 7613 1
## 7614 1
## 7615 1
## 7616 1
## 7617 1
## 7618 1
## 7619 1
## 7620 1
## 7621 1
## 7622 1
## 7623 1
## 7624 1
## 7625 1
## 7626 1
## 7627 1
## 7628 1
## 7629 1
## 7630 1
## 7631 1
## 7632 1
## 7633 1
## 7634 1
## 7635 1
## 7636 1
## 7637 1
## 7638 1
## 7639 1
## 7640 1
## 7641 1
## 7642 1
## 7643 1
## 7644 1
## 7645 1
## 7646 1
## 7647 1
## 7648 1
## 7649 1
## 7650 1
## 7651 1
## 7652 1
## 7653 1
## 7654 1
## 7655 1
## 7656 1
## 7657 1
## 7658 1
## 7659 1
## 7660 1
## 7661 1
## 7662 1
## 7663 1
## 7664 1
## 7665 1
## 7666 1
## 7667 1
## 7668 1
## 7669 1
## 7670 1
## 7671 1
## 7672 1
## 7673 1
## 7674 1
## 7675 1
## 7676 1
## 7677 1
## 7678 1
## 7679 1
## 7680 1
## 7681 1
## 7682 1
## 7683 1
## 7684 1
## 7685 1
## 7686 1
## 7687 1
## 7688 1
## 7689 1
## 7690 1
## 7691 1
## 7692 1
## 7693 1
## 7694 1
## 7695 1
## 7696 1
## 7697 1
## 7698 1
## 7699 1
## 7700 1
## 7701 1
## 7702 1
## 7703 1
## 7704 1
## 7705 1
## 7706 1
## 7707 1
## 7708 1
## 7709 1
## 7710 1
## 7711 1
## 7712 1
## 7713 1
## 7714 1
## 7715 1
## 7716 1
## 7717 1
## 7718 1
## 7719 1
## 7720 1
## 7721 1
## 7722 1
## 7723 1
## 7724 1
## 7725 1
## 7726 1
## 7727 1
## 7728 1
## 7729 1
## 7730 1
## 7731 1
## 7732 1
## 7733 1
## 7734 1
## 7735 1
## 7736 1
## 7737 1
## 7738 1
## 7739 1
## 7740 1
## 7741 1
## 7742 1
## 7743 1
## 7744 1
## 7745 1
## 7746 1
## 7747 1
## 7748 1
## 7749 1
## 7750 1
## 7751 1
## 7752 1
## 7753 1
## 7754 1
## 7755 1
## 7756 1
## 7757 1
## 7758 1
## 7759 1
## 7760 1
## 7761 1
## 7762 1
## 7763 1
## 7764 1
## 7765 1
## 7766 1
## 7767 1
## 7768 1
## 7769 1
## 7770 1
## 7771 1
## 7772 1
## 7773 1
## 7774 1
## 7775 1
## 7776 1
## 7777 1
## 7778 1
## 7779 1
## 7780 1
## 7781 1
## 7782 1
## 7783 1
## 7784 1
## 7785 1
## 7786 1
## 7787 1
## 7788 1
## 7789 1
## 7790 1
## 7791 1
## 7792 1
## 7793 1
## 7794 1
## 7795 1
## 7796 1
## 7797 1
## 7798 1
## 7799 1
## 7800 1
## 7801 1
## 7802 1
## 7803 1
## 7804 1
## 7805 1
## 7806 1
## 7807 1
## 7808 1
## 7809 1
## 7810 1
## 7811 1
## 7812 1
## 7813 1
## 7814 1
## 7815 1
## 7816 1
## 7817 1
## 7818 1
## 7819 1
## 7820 1
## 7821 1
## 7822 1
## 7823 1
## 7824 1
## 7825 1
## 7826 1
## 7827 1
## 7828 1
## 7829 1
## 7830 1
## 7831 1
## 7832 1
## 7833 1
## 7834 1
## 7835 1
## 7836 1
## 7837 1
## 7838 1
## 7839 1
## 7840 1
## 7841 1
## 7842 1
## 7843 1
## 7844 1
## 7845 1
## 7846 1
## 7847 1
## 7848 1
## 7849 1
## 7850 1
## 7851 1
## 7852 1
## 7853 1
## 7854 1
## 7855 1
## 7856 1
## 7857 1
## 7858 1
## 7859 1
## 7860 1
## 7861 1
## 7862 1
## 7863 1
## 7864 1
## 7865 1
## 7866 1
## 7867 1
## 7868 1
## 7869 1
## 7870 1
## 7871 1
## 7872 1
## 7873 1
## 7874 1
## 7875 1
## 7876 1
## 7877 1
## 7878 1
## 7879 1
## 7880 1
## 7881 1
## 7882 1
## 7883 1
## 7884 1
## 7885 1
## 7886 1
## 7887 1
## 7888 1
## 7889 1
## 7890 1
## 7891 1
## 7892 1
## 7893 1
## 7894 1
## 7895 1
## 7896 1
## 7897 1
## 7898 1
## 7899 1
## 7900 1
## 7901 1
## 7902 1
## 7903 1
## 7904 1
## 7905 1
## 7906 1
## 7907 1
## 7908 1
## 7909 1
## 7910 1
## 7911 1
## 7912 1
## 7913 1
## 7914 1
## 7915 1
## 7916 1
## 7917 1
## 7918 1
## 7919 1
## 7920 1
## 7921 1
## 7922 1
## 7923 1
## 7924 1
## 7925 1
## 7926 1
## 7927 1
## 7928 1
## 7929 1
## 7930 1
## 7931 1
## 7932 1
## 7933 1
## 7934 1
## 7935 1
## 7936 1
## 7937 1
## 7938 1
## 7939 1
## 7940 1
## 7941 1
## 7942 1
## 7943 1
## 7944 1
## 7945 1
## 7946 1
## 7947 1
## 7948 1
## 7949 1
## 7950 1
## 7951 1
## 7952 1
## 7953 1
## 7954 1
## 7955 1
## 7956 1
## 7957 1
## 7958 1
## 7959 1
## 7960 1
## 7961 1
## 7962 1
## 7963 1
## 7964 1
## 7965 1
## 7966 1
## 7967 1
## 7968 1
## 7969 1
## 7970 1
## 7971 1
## 7972 1
## 7973 1
## 7974 1
## 7975 1
## 7976 1
## 7977 1
## 7978 1
## 7979 1
## 7980 1
## 7981 1
## 7982 1
## 7983 1
## 7984 1
## 7985 1
## 7986 1
## 7987 1
## 7988 1
## 7989 1
## 7990 1
## 7991 1
## 7992 1
## 7993 1
## 7994 1
## 7995 1
## 7996 1
## 7997 1
## 7998 1
## 7999 1
## 8000 1
## 8001 1
## 8002 1
## 8003 1
## 8004 1
## 8005 1
## 8006 1
## 8007 1
## 8008 1
## 8009 1
## 8010 1
## 8011 1
## 8012 1
## 8013 1
## 8014 1
## 8015 1
## 8016 1
## 8017 1
## 8018 1
## 8019 1
## 8020 1
## 8021 1
## 8022 1
## 8023 1
## 8024 1
## 8025 1
## 8026 1
## 8027 1
## 8028 1
## 8029 1
## 8030 1
## 8031 1
## 8032 1
## 8033 1
## 8034 1
## 8035 1
## 8036 1
## 8037 1
## 8038 1
## 8039 1
## 8040 1
## 8041 1
## 8042 1
## 8043 1
## 8044 1
## 8045 1
## 8046 1
## 8047 1
## 8048 1
## 8049 1
## 8050 1
## 8051 1
## 8052 1
## 8053 1
## 8054 1
## 8055 1
## 8056 1
## 8057 1
## 8058 1
## 8059 1
## 8060 1
## 8061 1
## 8062 1
## 8063 1
## 8064 1
## 8065 1
## 8066 1
## 8067 1
## 8068 1
## 8069 1
## 8070 1
## 8071 1
## 8072 1
## 8073 1
## 8074 1
## 8075 1
## 8076 1
## 8077 1
## 8078 1
## 8079 1
## 8080 1
## 8081 1
## 8082 1
## 8083 1
## 8084 1
## 8085 1
## 8086 1
## 8087 1
## 8088 1
## 8089 1
## 8090 1
## 8091 1
## 8092 1
## 8093 1
## 8094 1
## 8095 1
## 8096 1
## 8097 1
## 8098 1
## 8099 1
## 8100 1
## 8101 1
## 8102 1
## 8103 1
## 8104 1
## 8105 1
## 8106 1
## 8107 1
## 8108 1
## 8109 1
## 8110 1
## 8111 1
## 8112 1
## 8113 1
## 8114 1
## 8115 1
## 8116 1
## 8117 1
## 8118 1
## 8119 1
## 8120 1
## 8121 1
## 8122 1
## 8123 1
## 8124 1
## 8125 1
## 8126 1
## 8127 1
## 8128 1
## 8129 1
## 8130 1
## 8131 1
## 8132 1
## 8133 1
## 8134 1
## 8135 1
## 8136 1
## 8137 1
## 8138 1
## 8139 1
## 8140 1
## 8141 1
## 8142 1
## 8143 1
## 8144 1
## 8145 1
## 8146 1
## 8147 1
## 8148 1
## 8149 1
## 8150 1
## 8151 1
## 8152 1
## 8153 1
## 8154 1
## 8155 1
## 8156 1
## 8157 1
## 8158 1
## 8159 1
## 8160 1
## 8161 1
## 8162 1
## 8163 1
## 8164 1
## 8165 1
## 8166 1
## 8167 1
## 8168 1
## 8169 1
## 8170 1
## 8171 1
## 8172 1
## 8173 1
## 8174 1
## 8175 1
## 8176 1
## 8177 1
## 8178 1
## 8179 1
## 8180 1
## 8181 1
## 8182 1
## 8183 1
## 8184 1
## 8185 1
## 8186 1
## 8187 1
## 8188 1
## 8189 1
## 8190 1
## 8191 1
## 8192 1
## 8193 1
## 8194 1
## 8195 1
## 8196 1
## 8197 1
## 8198 1
## 8199 1
## 8200 1
## 8201 1
## 8202 1
## 8203 1
## 8204 1
## 8205 1
## 8206 1
## 8207 1
## 8208 1
## 8209 1
## 8210 1
## 8211 1
## 8212 1
## 8213 1
## 8214 1
## 8215 1
## 8216 1
## 8217 1
## 8218 1
## 8219 1
## 8220 1
## 8221 1
## 8222 1
## 8223 1
## 8224 1
## 8225 1
## 8226 1
## 8227 1
## 8228 1
## 8229 1
## 8230 1
## 8231 1
## 8232 1
## 8233 1
## 8234 1
## 8235 1
## 8236 1
## 8237 1
## 8238 1
## 8239 1
## 8240 1
## 8241 1
## 8242 1
## 8243 1
## 8244 1
## 8245 1
## 8246 1
## 8247 1
## 8248 1
## 8249 1
## 8250 1
## 8251 1
## 8252 1
## 8253 1
## 8254 1
## 8255 1
## 8256 1
## 8257 1
## 8258 1
## 8259 1
## 8260 1
## 8261 1
## 8262 1
## 8263 1
## 8264 1
## 8265 1
## 8266 1
## 8267 1
## 8268 1
## 8269 1
## 8270 1
## 8271 1
## 8272 1
## 8273 1
## 8274 1
## 8275 1
## 8276 1
## 8277 1
## 8278 1
## 8279 1
## 8280 1
## 8281 1
## 8282 1
## 8283 1
## 8284 1
## 8285 1
## 8286 1
## 8287 1
## 8288 1
## 8289 1
## 8290 1
## 8291 1
## 8292 1
## 8293 1
## 8294 1
## 8295 1
## 8296 1
## 8297 1
## 8298 1
## 8299 1
## 8300 1
## 8301 1
## 8302 1
## 8303 1
## 8304 1
## 8305 1
## 8306 1
## 8307 1
## 8308 1
## 8309 1
## 8310 1
## 8311 1
## 8312 1
## 8313 1
## 8314 1
## 8315 1
## 8316 1
## 8317 1
## 8318 1
## 8319 1
## 8320 1
## 8321 1
## 8322 1
## 8323 1
## 8324 1
## 8325 1
## 8326 1
## 8327 1
## 8328 1
## 8329 1
## 8330 1
## 8331 1
## 8332 1
## 8333 1
## 8334 1
## 8335 1
## 8336 1
## 8337 1
## 8338 1
## 8339 1
## 8340 1
## 8341 1
## 8342 1
## 8343 1
## 8344 1
## 8345 1
## 8346 1
## 8347 1
## 8348 1
## 8349 1
## 8350 1
## 8351 1
## 8352 1
## 8353 1
## 8354 1
## 8355 1
## 8356 1
## 8357 1
## 8358 1
## 8359 1
## 8360 1
## 8361 1
## 8362 1
## 8363 1
## 8364 1
## 8365 1
## 8366 1
## 8367 1
## 8368 1
## 8369 1
## 8370 1
## 8371 1
## 8372 1
## 8373 1
## 8374 1
## 8375 1
## 8376 1
## 8377 1
## 8378 1
## 8379 1
## 8380 1
## 8381 1
## 8382 1
## 8383 1
## 8384 1
## 8385 1
## 8386 1
## 8387 1
## 8388 1
## 8389 1
## 8390 1
## 8391 1
## 8392 1
## 8393 1
## 8394 1
## 8395 1
## 8396 1
## 8397 1
## 8398 1
## 8399 1
## 8400 1
## 8401 1
## 8402 1
## 8403 1
## 8404 1
## 8405 1
## 8406 1
## 8407 1
## 8408 1
## 8409 1
## 8410 1
## 8411 1
## 8412 1
## 8413 1
## 8414 1
## 8415 1
## 8416 1
## 8417 1
## 8418 1
## 8419 1
## 8420 1
## 8421 1
## 8422 1
## 8423 1
## 8424 1
## 8425 1
## 8426 1
## 8427 1
## 8428 1
## 8429 1
## 8430 1
## 8431 1
## 8432 1
## 8433 1
## 8434 1
## 8435 1
## 8436 1
## 8437 1
## 8438 1
## 8439 1
## 8440 1
## 8441 1
## 8442 1
## 8443 1
## 8444 1
## 8445 1
## 8446 1
## 8447 1
## 8448 1
## 8449 1
## 8450 1
## 8451 1
## 8452 1
## 8453 1
## 8454 1
## 8455 1
## 8456 1
## 8457 1
## 8458 1
## 8459 1
## 8460 1
## 8461 1
## 8462 1
## 8463 1
## 8464 1
## 8465 1
## 8466 1
## 8467 1
## 8468 1
## 8469 1
## 8470 1
## 8471 1
## 8472 1
## 8473 1
## 8474 1
## 8475 1
## 8476 1
## 8477 1
## 8478 1
## 8479 1
## 8480 1
## 8481 1
## 8482 1
## 8483 1
## 8484 1
## 8485 1
## 8486 1
## 8487 1
## 8488 1
## 8489 1
## 8490 1
## 8491 1
## 8492 1
## 8493 1
## 8494 1
## 8495 1
## 8496 1
## 8497 1
## 8498 1
## 8499 1
## 8500 1
## 8501 1
## 8502 1
## 8503 1
## 8504 1
## 8505 1
## 8506 1
## 8507 1
## 8508 1
## 8509 1
## 8510 1
## 8511 1
## 8512 1
## 8513 1
## 8514 1
## 8515 1
## 8516 1
## 8517 1
## 8518 1
## 8519 1
## 8520 1
## 8521 1
## 8522 1
## 8523 1
## 8524 1
## 8525 1
## 8526 1
## 8527 1
## 8528 1
## 8529 1
## 8530 1
## 8531 1
## 8532 1
## 8533 1
## 8534 1
## 8535 1
## 8536 1
## 8537 1
## 8538 1
## 8539 1
## 8540 1
## 8541 1
## 8542 1
## 8543 1
## 8544 1
## 8545 1
## 8546 1
## 8547 1
## 8548 1
## 8549 1
## 8550 1
## 8551 1
## 8552 1
## 8553 1
## 8554 1
## 8555 1
## 8556 1
## 8557 1
## 8558 1
## 8559 1
## 8560 1
## 8561 1
## 8562 1
## 8563 1
## 8564 1
## 8565 1
## 8566 1
## 8567 1
## 8568 1
## 8569 1
## 8570 1
## 8571 1
## 8572 1
## 8573 1
## 8574 1
## 8575 1
## 8576 1
## 8577 1
## 8578 1
## 8579 1
## 8580 1
## 8581 1
## 8582 1
## 8583 1
## 8584 1
## 8585 1
## 8586 1
## 8587 1
## 8588 1
## 8589 1
## 8590 1
## 8591 1
## 8592 1
## 8593 1
## 8594 1
## 8595 1
## 8596 1
## 8597 1
## 8598 1
## 8599 1
## 8600 1
## 8601 1
## 8602 1
## 8603 1
## 8604 1
## 8605 1
## 8606 1
## 8607 1
## 8608 1
## 8609 1
## 8610 1
## 8611 1
## 8612 1
## 8613 1
## 8614 1
## 8615 1
## 8616 1
## 8617 1
## 8618 1
## 8619 1
## 8620 1
## 8621 1
## 8622 1
## 8623 1
## 8624 1
## 8625 1
## 8626 1
## 8627 1
## 8628 1
## 8629 1
## 8630 1
## 8631 1
## 8632 1
## 8633 1
## 8634 1
## 8635 1
## 8636 1
## 8637 1
## 8638 1
## 8639 1
## 8640 1
## 8641 1
## 8642 1
## 8643 1
## 8644 1
## 8645 1
## 8646 1
## 8647 1
## 8648 1
## 8649 1
## 8650 1
## 8651 1
## 8652 1
## 8653 1
## 8654 1
## 8655 1
## 8656 1
## 8657 1
## 8658 1
## 8659 1
## 8660 1
## 8661 1
## 8662 1
## 8663 1
## 8664 1
## 8665 1
## 8666 1
## 8667 1
## 8668 1
## 8669 1
## 8670 1
## 8671 1
## 8672 1
## 8673 1
## 8674 1
## 8675 1
## 8676 1
## 8677 1
## 8678 1
## 8679 1
## 8680 1
## 8681 1
## 8682 1
## 8683 1
## 8684 1
## 8685 1
## 8686 1
## 8687 1
## 8688 1
## 8689 1
## 8690 1
## 8691 1
## 8692 1
## 8693 1
## 8694 1
## 8695 1
## 8696 1
## 8697 1
## 8698 1
## 8699 1
## 8700 1
## 8701 1
## 8702 1
## 8703 1
## 8704 1
## 8705 1
## 8706 1
## 8707 1
## 8708 1
## 8709 1
## 8710 1
## 8711 1
## 8712 1
## 8713 1
## 8714 1
## 8715 1
## 8716 1
## 8717 1
## 8718 1
## 8719 1
## 8720 1
## 8721 1
## 8722 1
## 8723 1
## 8724 1
## 8725 1
## 8726 1
## 8727 1
## 8728 1
## 8729 1
## 8730 1
## 8731 1
## 8732 1
## 8733 1
## 8734 1
## 8735 1
## 8736 1
## 8737 1
## 8738 1
## 8739 1
## 8740 1
## 8741 1
## 8742 1
## 8743 1
## 8744 1
## 8745 1
## 8746 1
## 8747 1
## 8748 1
## 8749 1
## 8750 1
## 8751 1
## 8752 1
## 8753 1
## 8754 1
## 8755 1
## 8756 1
## 8757 1
## 8758 1
## 8759 1
## 8760 1
## 8761 1
## 8762 1
## 8763 1
## 8764 1
## 8765 1
## 8766 1
## 8767 1
## 8768 1
## 8769 1
## 8770 1
## 8771 1
## 8772 1
## 8773 1
## 8774 1
## 8775 1
## 8776 1
## 8777 1
## 8778 1
## 8779 1
## 8780 1
## 8781 1
## 8782 1
## 8783 1
## 8784 1
## 8785 1
## 8786 1
## 8787 1
## 8788 1
## 8789 1
## 8790 1
## 8791 1
## 8792 1
## 8793 1
## 8794 1
## 8795 1
## 8796 1
## 8797 1
## 8798 1
## 8799 1
## 8800 1
## 8801 1
## 8802 1
## 8803 1
## 8804 1
## 8805 1
## 8806 1
## 8807 1
## 8808 1
## 8809 1
## 8810 1
## 8811 1
## 8812 1
## 8813 1
## 8814 1
## 8815 1
## 8816 1
## 8817 1
## 8818 1
## 8819 1
## 8820 1
## 8821 1
## 8822 1
## 8823 1
## 8824 1
## 8825 1
## 8826 1
## 8827 1
## 8828 1
## 8829 1
## 8830 1
## 8831 1
## 8832 1
## 8833 1
## 8834 1
## 8835 1
## 8836 1
## 8837 1
## 8838 1
## 8839 1
## 8840 1
## 8841 1
## 8842 1
## 8843 1
## 8844 1
## 8845 1
## 8846 1
## 8847 1
## 8848 1
## 8849 1
## 8850 1
## 8851 1
## 8852 1
## 8853 1
## 8854 1
## 8855 1
## 8856 1
## 8857 1
## 8858 1
## 8859 1
## 8860 1
## 8861 1
## 8862 1
## 8863 1
## 8864 1
## 8865 1
## 8866 1
## 8867 1
## 8868 1
## 8869 1
## 8870 1
## 8871 1
## 8872 1
## 8873 1
## 8874 1
## 8875 1
## 8876 1
## 8877 1
## 8878 1
## 8879 1
## 8880 1
## 8881 1
## 8882 1
## 8883 1
## 8884 1
## 8885 1
## 8886 1
## 8887 1
## 8888 1
## 8889 1
## 8890 1
## 8891 1
## 8892 1
## 8893 1
## 8894 1
## 8895 1
## 8896 1
## 8897 1
## 8898 1
## 8899 1
## 8900 1
## 8901 1
## 8902 1
## 8903 1
## 8904 1
## 8905 1
## 8906 1
## 8907 1
## 8908 1
## 8909 1
## 8910 1
## 8911 1
## 8912 1
## 8913 1
## 8914 1
## 8915 1
## 8916 1
## 8917 1
## 8918 1
## 8919 1
## 8920 1
## 8921 1
## 8922 1
## 8923 1
## 8924 1
## 8925 1
## 8926 1
## 8927 1
## 8928 1
## 8929 1
## 8930 1
## 8931 1
## 8932 1
## 8933 1
## 8934 1
## 8935 1
## 8936 1
## 8937 1
## 8938 1
## 8939 1
## 8940 1
## 8941 1
## 8942 1
## 8943 1
## 8944 1
## 8945 1
## 8946 1
## 8947 1
## 8948 1
## 8949 1
## 8950 1
## 8951 1
## 8952 1
## 8953 1
## 8954 1
## 8955 1
## 8956 1
## 8957 1
## 8958 1
## 8959 1
## 8960 1
## 8961 1
## 8962 1
## 8963 1
## 8964 1
## 8965 1
## 8966 1
## 8967 1
## 8968 1
## 8969 1
## 8970 1
## 8971 1
## 8972 1
## 8973 1
## 8974 1
## 8975 1
## 8976 1
## 8977 1
## 8978 1
## 8979 1
## 8980 1
## 8981 1
## 8982 1
## 8983 1
## 8984 1
## 8985 1
## 8986 1
## 8987 1
## 8988 1
## 8989 1
## 8990 1
## 8991 1
## 8992 1
## 8993 1
## 8994 1
## 8995 1
## 8996 1
## 8997 1
## 8998 1
## 8999 1
## 9000 1
## 9001 1
## 9002 1
## 9003 1
## 9004 1
## 9005 1
## 9006 1
## 9007 1
## 9008 1
## 9009 1
## 9010 1
## 9011 1
## 9012 1
## 9013 1
## 9014 1
## 9015 1
## 9016 1
## 9017 1
## 9018 1
## 9019 1
## 9020 1
## 9021 1
## 9022 1
## 9023 1
## 9024 1
## 9025 1
## 9026 1
## 9027 1
## 9028 1
## 9029 1
## 9030 1
## 9031 1
## 9032 1
## 9033 1
## 9034 1
## 9035 1
## 9036 1
## 9037 1
## 9038 1
## 9039 1
## 9040 1
## 9041 1
## 9042 1
## 9043 1
## 9044 1
## 9045 1
## 9046 1
## 9047 1
## 9048 1
## 9049 1
## 9050 1
## 9051 1
## 9052 1
## 9053 1
## 9054 1
## 9055 1
## 9056 1
## 9057 1
## 9058 1
## 9059 1
## 9060 1
## 9061 1
## 9062 1
## 9063 1
## 9064 1
## 9065 1
## 9066 1
## 9067 1
## 9068 1
## 9069 1
## 9070 1
## 9071 1
## 9072 1
## 9073 1
## 9074 1
## 9075 1
## 9076 1
## 9077 1
## 9078 1
## 9079 1
## 9080 1
## 9081 1
## 9082 1
## 9083 1
## 9084 1
## 9085 1
## 9086 1
## 9087 1
## 9088 1
## 9089 1
## 9090 1
## 9091 1
## 9092 1
## 9093 1
## 9094 1
## 9095 1
## 9096 1
## 9097 1
## 9098 1
## 9099 1
## 9100 1
## 9101 1
## 9102 1
## 9103 1
## 9104 1
## 9105 1
## 9106 1
## 9107 1
## 9108 1
## 9109 1
## 9110 1
## 9111 1
## 9112 1
## 9113 1
## 9114 1
## 9115 1
## 9116 1
## 9117 1
## 9118 1
## 9119 1
## 9120 1
## 9121 1
## 9122 1
## 9123 1
## 9124 1
## 9125 1
## 9126 1
## 9127 1
## 9128 1
## 9129 1
## 9130 1
## 9131 1
## 9132 1
## 9133 1
## 9134 1
## 9135 1
## 9136 1
## 9137 1
## 9138 1
## 9139 1
## 9140 1
## 9141 1
## 9142 1
## 9143 1
## 9144 1
## 9145 1
## 9146 1
## 9147 1
## 9148 1
## 9149 1
## 9150 1
## 9151 1
## 9152 1
## 9153 1
## 9154 1
## 9155 1
## 9156 1
## 9157 1
## 9158 1
## 9159 1
## 9160 1
## 9161 1
## 9162 1
## 9163 1
## 9164 1
## 9165 1
## 9166 1
## 9167 1
## 9168 1
## 9169 1
## 9170 1
## 9171 1
## 9172 1
## 9173 1
## 9174 1
## 9175 1
## 9176 1
## 9177 1
## 9178 1
## 9179 1
## 9180 1
## 9181 1
## 9182 1
## 9183 1
## 9184 1
## 9185 1
## 9186 1
## 9187 1
## 9188 1
## 9189 1
## 9190 1
## 9191 1
## 9192 1
## 9193 1
## 9194 1
## 9195 1
## 9196 1
## 9197 1
## 9198 1
## 9199 1
## 9200 1
## 9201 1
## 9202 1
## 9203 1
## 9204 1
## 9205 1
## 9206 1
## 9207 1
## 9208 1
## 9209 1
## 9210 1
## 9211 1
## 9212 1
## 9213 1
## 9214 1
## 9215 1
## 9216 1
## 9217 1
## 9218 1
## 9219 1
## 9220 1
## 9221 1
## 9222 1
## 9223 1
## 9224 1
## 9225 1
## 9226 1
## 9227 1
## 9228 1
## 9229 1
## 9230 1
## 9231 1
## 9232 1
## 9233 1
## 9234 1
## 9235 1
## 9236 1
## 9237 1
## 9238 1
## 9239 1
## 9240 1
## 9241 1
## 9242 1
## 9243 1
## 9244 1
## 9245 1
## 9246 1
## 9247 1
## 9248 1
## 9249 1
## 9250 1
## 9251 1
## 9252 1
## 9253 1
## 9254 1
## 9255 1
## 9256 1
## 9257 1
## 9258 1
## 9259 1
## 9260 1
## 9261 1
## 9262 1
## 9263 1
## 9264 1
## 9265 1
## 9266 1
## 9267 1
## 9268 1
## 9269 1
## 9270 1
## 9271 1
## 9272 1
## 9273 1
## 9274 1
## 9275 1
## 9276 1
## 9277 1
## 9278 1
## 9279 1
## 9280 1
## 9281 1
## 9282 1
## 9283 1
## 9284 1
## 9285 1
## 9286 1
## 9287 1
## 9288 1
## 9289 1
## 9290 1
## 9291 1
## 9292 1
## 9293 1
## 9294 1
## 9295 1
## 9296 1
## 9297 1
## 9298 1
## 9299 1
## 9300 1
## 9301 1
## 9302 1
## 9303 1
## 9304 1
## 9305 1
## 9306 1
## 9307 1
## 9308 1
## 9309 1
## 9310 1
## 9311 1
## 9312 1
## 9313 1
## 9314 1
## 9315 1
## 9316 1
## 9317 1
## 9318 1
## 9319 1
## 9320 1
## 9321 1
## 9322 1
## 9323 1
## 9324 1
## 9325 1
## 9326 1
## 9327 1
## 9328 1
## 9329 1
## 9330 1
## 9331 1
## 9332 1
## 9333 1
## 9334 1
## 9335 1
## 9336 1
## 9337 1
## 9338 1
## 9339 1
## 9340 1
## 9341 1
## 9342 1
## 9343 1
## 9344 1
## 9345 1
## 9346 1
## 9347 1
## 9348 1
## 9349 1
## 9350 1
## 9351 1
## 9352 1
## 9353 1
## 9354 1
## 9355 1
## 9356 1
## 9357 1
## 9358 1
## 9359 1
## 9360 1
## 9361 1
## 9362 1
## 9363 1
## 9364 1
## 9365 1
## 9366 1
## 9367 1
## 9368 1
## 9369 1
## 9370 1
## 9371 1
## 9372 1
## 9373 1
## 9374 1
## 9375 1
## 9376 1
## 9377 1
## 9378 1
## 9379 1
## 9380 1
## 9381 1
## 9382 1
## 9383 1
## 9384 1
## 9385 1
## 9386 1
## 9387 1
## 9388 1
## 9389 1
## 9390 1
## 9391 1
## 9392 1
## 9393 1
## 9394 1
## 9395 1
## 9396 1
## 9397 1
## 9398 1
## 9399 1
## 9400 1
## 9401 1
## 9402 1
## 9403 1
## 9404 1
## 9405 1
## 9406 1
## 9407 1
## 9408 1
## 9409 1
## 9410 1
## 9411 1
## 9412 1
## 9413 1
## 9414 1
## 9415 1
## 9416 1
## 9417 1
## 9418 1
## 9419 1
## 9420 1
## 9421 1
## 9422 1
## 9423 1
## 9424 1
## 9425 1
## 9426 1
## 9427 1
## 9428 1
## 9429 1
## 9430 1
## 9431 1
## 9432 1
## 9433 1
## 9434 1
## 9435 1
## 9436 1
## 9437 1
## 9438 1
## 9439 1
## 9440 1
## 9441 1
## 9442 1
## 9443 1
## 9444 1
## 9445 1
## 9446 1
## 9447 1
## 9448 1
## 9449 1
## 9450 1
## 9451 1
## 9452 1
## 9453 1
## 9454 1
## 9455 1
## 9456 1
## 9457 1
## 9458 1
## 9459 1
## 9460 1
## 9461 1
## 9462 1
## 9463 1
## 9464 1
## 9465 1
## 9466 1
## 9467 1
## 9468 1
## 9469 1
## 9470 1
## 9471 1
## 9472 1
## 9473 1
## 9474 1
## 9475 1
## 9476 1
## 9477 1
## 9478 1
## 9479 1
## 9480 1
## 9481 1
## 9482 1
## 9483 1
## 9484 1
## 9485 1
## 9486 1
## 9487 1
## 9488 1
## 9489 1
## 9490 1
## 9491 1
## 9492 1
## 9493 1
## 9494 1
## 9495 1
## 9496 1
## 9497 1
## 9498 1
## 9499 1
## 9500 1
## 9501 1
## 9502 1
## 9503 1
## 9504 1
## 9505 1
## 9506 1
## 9507 1
## 9508 1
## 9509 1
## 9510 1
## 9511 1
## 9512 1
## 9513 1
## 9514 1
## 9515 1
## 9516 1
## 9517 1
## 9518 1
## 9519 1
## 9520 1
## 9521 1
## 9522 1
## 9523 1
## 9524 1
## 9525 1
## 9526 1
## 9527 1
## 9528 1
## 9529 1
## 9530 1
## 9531 1
## 9532 1
## 9533 1
## 9534 1
## 9535 1
## 9536 1
## 9537 1
## 9538 1
## 9539 1
## 9540 1
## 9541 1
## 9542 1
## 9543 1
## 9544 1
## 9545 1
## 9546 1
## 9547 1
## 9548 1
## 9549 1
## 9550 1
## 9551 1
## 9552 1
## 9553 1
## 9554 1
## 9555 1
## 9556 1
## 9557 1
## 9558 1
## 9559 1
## 9560 1
## 9561 1
## 9562 1
## 9563 1
## 9564 1
## 9565 1
## 9566 1
## 9567 1
## 9568 1
## 9569 1
## 9570 1
## 9571 1
## 9572 1
## 9573 1
## 9574 1
## 9575 1
## 9576 1
## 9577 1
## 9578 1
## 9579 1
## 9580 1
## 9581 1
## 9582 1
## 9583 1
## 9584 1
## 9585 1
## 9586 1
## 9587 1
## 9588 1
## 9589 1
## 9590 1
## 9591 1
## 9592 1
## 9593 1
## 9594 1
## 9595 1
## 9596 1
## 9597 1
## 9598 1
## 9599 1
## 9600 1
## 9601 1
## 9602 1
## 9603 1
## 9604 1
## 9605 1
## 9606 1
## 9607 1
## 9608 1
## 9609 1
## 9610 1
## 9611 1
## 9612 1
## 9613 1
## 9614 1
## 9615 1
## 9616 1
## 9617 1
## 9618 1
## 9619 1
## 9620 1
## 9621 1
## 9622 1
## 9623 1
## 9624 1
## 9625 1
## 9626 1
## 9627 1
## 9628 1
## 9629 1
## 9630 1
## 9631 1
## 9632 1
## 9633 1
## 9634 1
## 9635 1
## 9636 1
## 9637 1
## 9638 1
## 9639 1
## 9640 1
## 9641 1
## 9642 1
## 9643 1
## 9644 1
## 9645 1
## 9646 1
## 9647 1
## 9648 1
## 9649 1
## 9650 1
## 9651 1
## 9652 1
## 9653 1
## 9654 1
## 9655 1
## 9656 1
## 9657 1
## 9658 1
## 9659 1
## 9660 1
## 9661 1
## 9662 1
## 9663 1
## 9664 1
## 9665 1
## 9666 1
## 9667 1
## 9668 1
## 9669 1
## 9670 1
## 9671 1
## 9672 1
## 9673 1
## 9674 1
## 9675 1
## 9676 1
## 9677 1
## 9678 1
## 9679 1
## 9680 1
## 9681 1
## 9682 1
## 9683 1
## 9684 1
## 9685 1
## 9686 1
## 9687 1
## 9688 1
## 9689 1
## 9690 1
## 9691 1
## 9692 1
## 9693 1
## 9694 1
## 9695 1
## 9696 1
## 9697 1
## 9698 1
## 9699 1
## 9700 1
## 9701 1
## 9702 1
## 9703 1
## 9704 1
## 9705 1
## 9706 1
## 9707 1
## 9708 1
## 9709 1
## 9710 1
## 9711 1
## 9712 1
## 9713 1
## 9714 1
## 9715 1
## 9716 1
## 9717 1
## 9718 1
## 9719 1
## 9720 1
## 9721 1
## 9722 1
## 9723 1
## 9724 1
## 9725 1
## 9726 1
## 9727 1
## 9728 1
## 9729 1
## 9730 1
## 9731 1
## 9732 1
## 9733 1
## 9734 1
## 9735 1
## 9736 1
## 9737 1
## 9738 1
## 9739 1
## 9740 1
## 9741 1
## 9742 1
## 9743 1
## 9744 1
## 9745 1
## 9746 1
## 9747 1
## 9748 1
## 9749 1
## 9750 1
## 9751 1
## 9752 1
## 9753 1
## 9754 1
## 9755 1
## 9756 1
## 9757 1
## 9758 1
## 9759 1
## 9760 1
## 9761 1
## 9762 1
## 9763 1
## 9764 1
## 9765 1
## 9766 1
## 9767 1
## 9768 1
## 9769 1
## 9770 1
## 9771 1
## 9772 1
## 9773 1
## 9774 1
## 9775 1
## 9776 1
## 9777 1
## 9778 1
## 9779 1
## 9780 1
## 9781 1
## 9782 1
## 9783 1
## 9784 1
## 9785 1
## 9786 1
## 9787 1
## 9788 1
## 9789 1
## 9790 1
## 9791 1
## 9792 1
## 9793 1
## 9794 1
## 9795 1
## 9796 1
## 9797 1
## 9798 1
## 9799 1
## 9800 1
## 9801 1
## 9802 1
## 9803 1
## 9804 1
## 9805 1
## 9806 1
## 9807 1
## 9808 1
## 9809 1
## 9810 1
## 9811 1
## 9812 1
## 9813 1
## 9814 1
## 9815 1
## 9816 1
## 9817 1
## 9818 1
## 9819 1
## 9820 1
## 9821 1
## 9822 1
## 9823 1
## 9824 1
## 9825 1
## 9826 1
## 9827 1
## 9828 1
## 9829 1
## 9830 1
## 9831 1
## 9832 1
## 9833 1
## 9834 1
## 9835 1
## 9836 1
## 9837 1
## 9838 1
## 9839 1
## 9840 1
## 9841 1
## 9842 1
## 9843 1
## 9844 1
## 9845 1
## 9846 1
## 9847 1
## 9848 1
## 9849 1
## 9850 1
## 9851 1
## 9852 1
## 9853 1
## 9854 1
## 9855 1
## 9856 1
## 9857 1
## 9858 1
## 9859 1
## 9860 1
## 9861 1
## 9862 1
## 9863 1
## 9864 1
## 9865 1
## 9866 1
## 9867 1
## 9868 1
## 9869 1
## 9870 1
## 9871 1
## 9872 1
## 9873 1
## 9874 1
## 9875 1
## 9876 1
## 9877 1
## 9878 1
## 9879 1
## 9880 1
## 9881 1
## 9882 1
## 9883 1
## 9884 1
## 9885 1
## 9886 1
## 9887 1
## 9888 1
## 9889 1
## 9890 1
## 9891 1
## 9892 1
## 9893 1
## 9894 1
## 9895 1
## 9896 1
## 9897 1
## 9898 1
## 9899 1
## 9900 1
## 9901 1
## 9902 1
## 9903 1
## 9904 1
## 9905 1
## 9906 1
## 9907 1
## 9908 1
## 9909 1
## 9910 1
## 9911 1
## 9912 1
## 9913 1
## 9914 1
## 9915 1
## 9916 1
## 9917 1
## 9918 1
## 9919 1
## 9920 1
## 9921 1
## 9922 1
## 9923 1
## 9924 1
## 9925 1
## 9926 1
## 9927 1
## 9928 1
## 9929 1
## 9930 1
## 9931 1
## 9932 1
## 9933 1
## 9934 1
## 9935 1
## 9936 1
## 9937 1
## 9938 1
## 9939 1
## 9940 1
## 9941 1
## 9942 1
## 9943 1
## 9944 1
## 9945 1
## 9946 1
## 9947 1
## 9948 1
## 9949 1
## 9950 1
## 9951 1
## 9952 1
## 9953 1
## 9954 1
## 9955 1
## 9956 1
## 9957 1
## 9958 1
## 9959 1
## 9960 1
## 9961 1
## 9962 1
## 9963 1
## 9964 1
## 9965 1
## 9966 1
## 9967 1
## 9968 1
## 9969 1
## 9970 1
## 9971 1
## 9972 1
## 9973 1
## 9974 1
## 9975 1
## 9976 1
## 9977 1
## 9978 1
## 9979 1
## 9980 1
## 9981 1
## 9982 1
## 9983 1
## 9984 1
## 9985 1
## 9986 1
## 9987 1
## 9988 1
## 9989 1
## 9990 1
## 9991 1
## 9992 1
## 9993 1
## 9994 1
## 9995 1
## 9996 1
## 9997 1
## 9998 1
## 9999 1
## 10000 1
## 10001 1
## 10002 1
## 10003 1
## 10004 1
## 10005 1
## 10006 1
## 10007 1
## 10008 1
## 10009 1
## 10010 1
## 10011 1
## 10012 1
## 10013 1
## 10014 1
## 10015 1
## 10016 1
## 10017 1
## 10018 1
## 10019 1
## 10020 1
## 10021 1
## 10022 1
## 10023 1
## 10024 1
## 10025 1
## 10026 1
## 10027 1
## 10028 1
## 10029 1
## 10030 1
## 10031 1
## 10032 1
## 10033 1
## 10034 1
## 10035 1
## 10036 1
## 10037 1
## 10038 1
## 10039 1
## 10040 1
## 10041 1
## 10042 1
## 10043 1
## 10044 1
## 10045 1
## 10046 1
## 10047 1
## 10048 1
## 10049 1
## 10050 1
## 10051 1
## 10052 1
## 10053 1
## 10054 1
## 10055 1
## 10056 1
## 10057 1
## 10058 1
## 10059 1
## 10060 1
## 10061 1
## 10062 1
## 10063 1
## 10064 1
## 10065 1
## 10066 1
## 10067 1
## 10068 1
## 10069 1
## 10070 1
## 10071 1
## 10072 1
## 10073 1
## 10074 1
## 10075 1
## 10076 1
## 10077 1
## 10078 1
## 10079 1
## 10080 1
## 10081 1
## 10082 1
## 10083 1
## 10084 1
## 10085 1
## 10086 1
## 10087 1
## 10088 1
## 10089 1
## 10090 1
## 10091 1
## 10092 1
## 10093 1
## 10094 1
## 10095 1
## 10096 1
## 10097 1
## 10098 1
## 10099 1
## 10100 1
## 10101 1
## 10102 1
## 10103 1
## 10104 1
## 10105 1
## 10106 1
## 10107 1
## 10108 1
## 10109 1
## 10110 1
## 10111 1
## 10112 1
## 10113 1
## 10114 1
## 10115 1
## 10116 1
## 10117 1
## 10118 1
## 10119 1
## 10120 1
## 10121 1
## 10122 1
## 10123 1
## 10124 1
## 10125 1
## 10126 1
## 10127 1
## 10128 1
## 10129 1
## 10130 1
## 10131 1
## 10132 1
## 10133 1
## 10134 1
## 10135 1
## 10136 1
## 10137 1
## 10138 1
## 10139 1
## 10140 1
## 10141 1
## 10142 1
## 10143 1
## 10144 1
## 10145 1
## 10146 1
## 10147 1
## 10148 1
## 10149 1
## 10150 1
## 10151 1
## 10152 1
## 10153 1
## 10154 1
## 10155 1
## 10156 1
## 10157 1
## 10158 1
## 10159 1
## 10160 1
## 10161 1
## 10162 1
## 10163 1
## 10164 1
## 10165 1
## 10166 1
## 10167 1
## 10168 1
## 10169 1
## 10170 1
## 10171 1
## 10172 1
## 10173 1
## 10174 1
## 10175 1
## 10176 1
## 10177 1
## 10178 1
## 10179 1
## 10180 1
## 10181 1
## 10182 1
## 10183 1
## 10184 1
## 10185 1
## 10186 1
## 10187 1
## 10188 1
## 10189 1
## 10190 1
## 10191 1
## 10192 1
## 10193 1
## 10194 1
## 10195 1
## 10196 1
## 10197 1
## 10198 1
## 10199 1
## 10200 1
## 10201 1
## 10202 1
## 10203 1
## 10204 1
## 10205 1
## 10206 1
## 10207 1
## 10208 1
## 10209 1
## 10210 1
## 10211 1
## 10212 1
## 10213 1
## 10214 1
## 10215 1
## 10216 1
## 10217 1
## 10218 1
## 10219 1
## 10220 1
## 10221 1
## 10222 1
## 10223 1
## 10224 1
## 10225 1
## 10226 1
## 10227 1
## 10228 1
## 10229 1
## 10230 1
## 10231 1
## 10232 1
## 10233 1
## 10234 1
## 10235 1
## 10236 1
## 10237 1
## 10238 1
## 10239 1
## 10240 1
## 10241 1
## 10242 1
## 10243 1
## 10244 1
## 10245 1
## 10246 1
## 10247 1
## 10248 1
## 10249 1
## 10250 1
## 10251 1
## 10252 1
## 10253 1
## 10254 1
## 10255 1
## 10256 1
## 10257 1
## 10258 1
## 10259 1
## 10260 1
## 10261 1
## 10262 1
## 10263 1
## 10264 1
## 10265 1
## 10266 1
## 10267 1
## 10268 1
## 10269 1
## 10270 1
## 10271 1
## 10272 1
## 10273 1
## 10274 1
## 10275 1
## 10276 1
## 10277 1
## 10278 1
## 10279 1
## 10280 1
## 10281 1
## 10282 1
## 10283 1
## 10284 1
## 10285 1
## 10286 1
## 10287 1
## 10288 1
## 10289 1
## 10290 1
## 10291 1
## 10292 1
## 10293 1
## 10294 1
## 10295 1
## 10296 1
## 10297 1
## 10298 1
## 10299 1
## 10300 1
## 10301 1
## 10302 1
## 10303 1
## 10304 1
## 10305 1
## 10306 1
## 10307 1
## 10308 1
## 10309 1
## 10310 1
## 10311 1
## 10312 1
## 10313 1
## 10314 1
## 10315 1
## 10316 1
## 10317 1
## 10318 1
## 10319 1
## 10320 1
## 10321 1
## 10322 1
## 10323 1
## 10324 1
## 10325 1
## 10326 1
## 10327 1
## 10328 1
## 10329 1
## 10330 1
## 10331 1
## 10332 1
## 10333 1
## 10334 1
## 10335 1
## 10336 1
## 10337 1
## 10338 1
## 10339 1
## 10340 1
## 10341 1
## 10342 1
## 10343 1
## 10344 1
## 10345 1
## 10346 1
## 10347 1
## 10348 1
## 10349 1
## 10350 1
## 10351 1
## 10352 1
## 10353 1
## 10354 1
## 10355 1
## 10356 1
## 10357 1
## 10358 1
## 10359 1
## 10360 1
## 10361 1
## 10362 1
## 10363 1
## 10364 1
## 10365 1
## 10366 1
## 10367 1
## 10368 1
## 10369 1
## 10370 1
## 10371 1
## 10372 1
## 10373 1
## 10374 1
## 10375 1
## 10376 1
## 10377 1
## 10378 1
## 10379 1
## 10380 1
## 10381 1
## 10382 1
## 10383 1
## 10384 1
## 10385 1
## 10386 1
## 10387 1
## 10388 1
## 10389 1
## 10390 1
## 10391 1
## 10392 1
## 10393 1
## 10394 1
## 10395 1
## 10396 1
## 10397 1
## 10398 1
## 10399 1
## 10400 1
## 10401 1
## 10402 1
## 10403 1
## 10404 1
## 10405 1
## 10406 1
## 10407 1
## 10408 1
## 10409 1
## 10410 1
## 10411 1
## 10412 1
## 10413 1
## 10414 1
## 10415 1
## 10416 1
## 10417 1
## 10418 1
## 10419 1
## 10420 1
## 10421 1
## 10422 1
## 10423 1
## 10424 1
## 10425 1
## 10426 1
## 10427 1
## 10428 1
## 10429 1
## 10430 1
## 10431 1
## 10432 1
## 10433 1
## 10434 1
## 10435 1
## 10436 1
## 10437 1
## 10438 1
## 10439 1
## 10440 1
## 10441 1
## 10442 1
## 10443 1
## 10444 1
## 10445 1
## 10446 1
## 10447 1
## 10448 1
## 10449 1
## 10450 1
## 10451 1
## 10452 1
## 10453 1
## 10454 1
## 10455 1
## 10456 1
## 10457 1
## 10458 1
## 10459 1
## 10460 1
## 10461 1
## 10462 1
## 10463 1
## 10464 1
## 10465 1
## 10466 1
## 10467 1
## 10468 1
## 10469 1
## 10470 1
## 10471 1
## 10472 1
## 10473 1
## 10474 1
## 10475 1
## 10476 1
## 10477 1
## 10478 1
## 10479 1
## 10480 1
## 10481 1
## 10482 1
## 10483 1
## 10484 1
## 10485 1
## 10486 1
## 10487 1
## 10488 1
## 10489 1
## 10490 1
## 10491 1
## 10492 1
## 10493 1
## 10494 1
## 10495 1
## 10496 1
## 10497 1
## 10498 1
## 10499 1
## 10500 1
## 10501 1
## 10502 1
## 10503 1
## 10504 1
## 10505 1
## 10506 1
## 10507 1
## 10508 1
## 10509 1
## 10510 1
## 10511 1
## 10512 1
## 10513 1
## 10514 1
## 10515 1
## 10516 1
## 10517 1
## 10518 1
## 10519 1
## 10520 1
## 10521 1
## 10522 1
## 10523 1
## 10524 1
## 10525 1
## 10526 1
## 10527 1
## 10528 1
## 10529 1
## 10530 1
## 10531 1
## 10532 1
## 10533 1
## 10534 1
## 10535 1
## 10536 1
## 10537 1
## 10538 1
## 10539 1
## 10540 1
## 10541 1
## 10542 1
## 10543 1
## 10544 1
## 10545 1
## 10546 1
## 10547 1
## 10548 1
## 10549 1
## 10550 1
## 10551 1
## 10552 1
## 10553 1
## 10554 1
## 10555 1
## 10556 1
## 10557 1
## 10558 1
## 10559 1
## 10560 1
## 10561 1
## 10562 1
## 10563 1
## 10564 1
## 10565 1
## 10566 1
## 10567 1
## 10568 1
## 10569 1
## 10570 1
## 10571 1
## 10572 1
## 10573 1
## 10574 1
## 10575 1
## 10576 1
## 10577 1
## 10578 1
## 10579 1
## 10580 1
## 10581 1
## 10582 1
## 10583 1
## 10584 1
## 10585 1
## 10586 1
## 10587 1
## 10588 1
## 10589 1
## 10590 1
## 10591 1
## 10592 1
## 10593 1
## 10594 1
## 10595 1
## 10596 1
## 10597 1
## 10598 1
## 10599 1
## 10600 1
## 10601 1
## 10602 1
## 10603 1
## 10604 1
## 10605 1
## 10606 1
## 10607 1
## 10608 1
## 10609 1
## 10610 1
## 10611 1
## 10612 1
## 10613 1
## 10614 1
## 10615 1
## 10616 1
## 10617 1
## 10618 1
## 10619 1
## 10620 1
## 10621 1
## 10622 1
## 10623 1
## 10624 1
## 10625 1
## 10626 1
## 10627 1
## 10628 1
## 10629 1
## 10630 1
## 10631 1
## 10632 1
## 10633 1
## 10634 1
## 10635 1
## 10636 1
## 10637 1
## 10638 1
## 10639 1
## 10640 1
## 10641 1
## 10642 1
## 10643 1
## 10644 1
## 10645 1
## 10646 1
## 10647 1
## 10648 1
## 10649 1
## 10650 1
## 10651 1
## 10652 1
## 10653 1
## 10654 1
## 10655 1
## 10656 1
## 10657 1
## 10658 1
## 10659 1
## 10660 1
## 10661 1
## 10662 1
## 10663 1
## 10664 1
## 10665 1
## 10666 1
## 10667 1
## 10668 1
## 10669 1
## 10670 1
## 10671 1
## 10672 1
## 10673 1
## 10674 1
## 10675 1
## 10676 1
## 10677 1
## 10678 1
## 10679 1
## 10680 1
## 10681 1
## 10682 1
## 10683 1
## 10684 1
## 10685 1
## 10686 1
## 10687 1
## 10688 1
## 10689 1
## 10690 1
## 10691 1
## 10692 1
## 10693 1
## 10694 1
## 10695 1
## 10696 1
## 10697 1
## 10698 1
## 10699 1
## 10700 1
## 10701 1
## 10702 1
## 10703 1
## 10704 1
## 10705 1
## 10706 1
## 10707 1
## 10708 1
## 10709 1
## 10710 1
## 10711 1
## 10712 1
## 10713 1
## 10714 1
## 10715 1
## 10716 1
## 10717 1
## 10718 1
## 10719 1
## 10720 1
## 10721 1
## 10722 1
## 10723 1
## 10724 1
## 10725 1
## 10726 1
## 10727 1
## 10728 1
## 10729 1
## 10730 1
## 10731 1
## 10732 1
## 10733 1
## 10734 1
## 10735 1
## 10736 1
## 10737 1
## 10738 1
## 10739 1
## 10740 1
## 10741 1
## 10742 1
## 10743 1
## 10744 1
## 10745 1
## 10746 1
## 10747 1
## 10748 1
## 10749 1
## 10750 1
## 10751 1
## 10752 1
## 10753 1
## 10754 1
## 10755 1
## 10756 1
## 10757 1
## 10758 1
## 10759 1
## 10760 1
## 10761 1
## 10762 1
## 10763 1
## 10764 1
## 10765 1
## 10766 1
## 10767 1
## 10768 1
## 10769 1
## 10770 1
## 10771 1
## 10772 1
## 10773 1
## 10774 1
## 10775 1
## 10776 1
## 10777 1
## 10778 1
## 10779 1
## 10780 1
## 10781 1
## 10782 1
## 10783 1
## 10784 1
## 10785 1
## 10786 1
## 10787 1
## 10788 1
## 10789 1
## 10790 1
## 10791 1
## 10792 1
## 10793 1
## 10794 1
## 10795 1
## 10796 1
## 10797 1
## 10798 1
## 10799 1
## 10800 1
## 10801 1
## 10802 1
## 10803 1
## 10804 1
## 10805 1
## 10806 1
## 10807 1
## 10808 1
## 10809 1
## 10810 1
## 10811 1
## 10812 1
## 10813 1
## 10814 1
## 10815 1
## 10816 1
## 10817 1
## 10818 1
## 10819 1
## 10820 1
## 10821 1
## 10822 1
## 10823 1
## 10824 1
## 10825 1
## 10826 1
## 10827 1
## 10828 1
## 10829 1
## 10830 1
## 10831 1
## 10832 1
## 10833 1
## 10834 1
## 10835 1
## 10836 1
## 10837 1
## 10838 1
## 10839 1
## 10840 1
## 10841 1
## 10842 1
## 10843 1
## 10844 1
## 10845 1
## 10846 1
## 10847 1
## 10848 1
## 10849 1
## 10850 1
## 10851 1
## 10852 1
## 10853 1
## 10854 1
## 10855 1
## 10856 1
## 10857 1
## 10858 1
## 10859 1
## 10860 1
## 10861 1
## 10862 1
## 10863 1
## 10864 1
## 10865 1
## 10866 1
## 10867 1
## 10868 1
## 10869 1
## 10870 1
## 10871 1
## 10872 1
## 10873 1
## 10874 1
## 10875 1
## 10876 1
## 10877 1
## 10878 1
## 10879 1
## 10880 1
## 10881 1
## 10882 1
## 10883 1
## 10884 1
## 10885 1
## 10886 1
## 10887 1
## 10888 1
## 10889 1
## 10890 1
## 10891 1
## 10892 1
## 10893 1
## 10894 1
## 10895 1
## 10896 1
## 10897 1
## 10898 1
## 10899 1
## 10900 1
## 10901 1
## 10902 1
## 10903 1
## 10904 1
## 10905 1
## 10906 1
## 10907 1
## 10908 1
## 10909 1
## 10910 1
## 10911 1
## 10912 1
## 10913 1
## 10914 1
## 10915 1
## 10916 1
## 10917 1
## 10918 1
## 10919 1
## 10920 1
## 10921 1
## 10922 1
## 10923 1
## 10924 1
## 10925 1
## 10926 1
## 10927 1
## 10928 1
## 10929 1
## 10930 1
## 10931 1
## 10932 1
## 10933 1
## 10934 1
## 10935 1
## 10936 1
## 10937 1
## 10938 1
## 10939 1
## 10940 1
## 10941 1
## 10942 1
## 10943 1
## 10944 1
## 10945 1
## 10946 1
## 10947 1
## 10948 1
## 10949 1
## 10950 1
## 10951 1
## 10952 1
## 10953 1
## 10954 1
## 10955 1
## 10956 1
## 10957 1
## 10958 1
## 10959 1
## 10960 1
## 10961 1
## 10962 1
## 10963 1
## 10964 1
## 10965 1
## 10966 1
## 10967 1
## 10968 1
## 10969 1
## 10970 1
## 10971 1
## 10972 1
## 10973 1
## 10974 1
## 10975 1
## 10976 1
## 10977 1
## 10978 1
## 10979 1
## 10980 1
## 10981 1
## 10982 1
## 10983 1
## 10984 1
## 10985 1
## 10986 1
## 10987 1
## 10988 1
## 10989 1
## 10990 1
## 10991 1
## 10992 1
## 10993 1
## 10994 1
## 10995 1
## 10996 1
## 10997 1
## 10998 1
## 10999 1
## 11000 1
## 11001 1
## 11002 1
## 11003 1
## 11004 1
## 11005 1
## 11006 1
## 11007 1
## 11008 1
## 11009 1
## 11010 1
## 11011 1
## 11012 1
## 11013 1
## 11014 1
## 11015 1
## 11016 1
## 11017 1
## 11018 1
## 11019 1
## 11020 1
## 11021 1
## 11022 1
## 11023 1
## 11024 1
## 11025 1
## 11026 1
## 11027 1
## 11028 1
## 11029 1
## 11030 1
## 11031 1
## 11032 1
## 11033 1
## 11034 1
## 11035 1
## 11036 1
## 11037 1
## 11038 1
## 11039 1
## 11040 1
## 11041 1
## 11042 1
## 11043 1
## 11044 1
## 11045 1
## 11046 1
## 11047 1
## 11048 1
## 11049 1
## 11050 1
## 11051 1
## 11052 1
## 11053 1
## 11054 1
## 11055 1
## 11056 1
## 11057 1
## 11058 1
## 11059 1
## 11060 1
## 11061 1
## 11062 1
## 11063 1
## 11064 1
## 11065 1
## 11066 1
## 11067 1
## 11068 1
## 11069 1
## 11070 1
## 11071 1
## 11072 1
## 11073 1
## 11074 1
## 11075 1
## 11076 1
## 11077 1
## 11078 1
## 11079 1
## 11080 1
## 11081 1
## 11082 1
## 11083 1
## 11084 1
## 11085 1
## 11086 1
## 11087 1
## 11088 1
## 11089 1
## 11090 1
## 11091 1
## 11092 1
## 11093 1
## 11094 1
## 11095 1
## 11096 1
## 11097 1
## 11098 1
## 11099 1
## 11100 1
## 11101 1
## 11102 1
## 11103 1
## 11104 1
## 11105 1
## 11106 1
## 11107 1
## 11108 1
## 11109 1
## 11110 1
## 11111 1
## 11112 1
## 11113 1
## 11114 1
## 11115 1
## 11116 1
## 11117 1
## 11118 1
## 11119 1
## 11120 1
## 11121 1
## 11122 1
## 11123 1
## 11124 1
## 11125 1
## 11126 1
## 11127 1
## 11128 1
## 11129 1
## 11130 1
## 11131 1
## 11132 1
## 11133 1
## 11134 1
## 11135 1
## 11136 1
## 11137 1
## 11138 1
## 11139 1
## 11140 1
## 11141 1
## 11142 1
## 11143 1
## 11144 1
## 11145 1
## 11146 1
## 11147 1
## 11148 1
## 11149 1
## 11150 1
## 11151 1
## 11152 1
## 11153 1
## 11154 1
## 11155 1
## 11156 1
## 11157 1
## 11158 1
## 11159 1
## 11160 1
## 11161 1
## 11162 1
## 11163 1
## 11164 1
## 11165 1
## 11166 1
## 11167 1
## 11168 1
## 11169 1
## 11170 1
## 11171 1
## 11172 1
## 11173 1
## 11174 1
## 11175 1
## 11176 1
## 11177 1
## 11178 1
## 11179 1
## 11180 1
## 11181 1
## 11182 1
## 11183 1
## 11184 1
## 11185 1
## 11186 1
## 11187 1
## 11188 1
## 11189 1
## 11190 1
## 11191 1
## 11192 1
## 11193 1
## 11194 1
## 11195 1
## 11196 1
## 11197 1
## 11198 1
## 11199 1
## 11200 1
## 11201 1
## 11202 1
## 11203 1
## 11204 1
## 11205 1
## 11206 1
## 11207 1
## 11208 1
## 11209 1
## 11210 1
## 11211 1
## 11212 1
## 11213 1
## 11214 1
## 11215 1
## 11216 1
## 11217 1
## 11218 1
## 11219 1
## 11220 1
## 11221 1
## 11222 1
## 11223 1
## 11224 1
## 11225 1
## 11226 1
## 11227 1
## 11228 1
## 11229 1
## 11230 1
## 11231 1
## 11232 1
## 11233 1
## 11234 1
## 11235 1
## 11236 1
## 11237 1
## 11238 1
## 11239 1
## 11240 1
## 11241 1
## 11242 1
## 11243 1
## 11244 1
## 11245 1
## 11246 1
## 11247 1
## 11248 1
## 11249 1
## 11250 1
## 11251 1
## 11252 1
## 11253 1
## 11254 1
## 11255 1
## 11256 1
## 11257 1
## 11258 1
## 11259 1
## 11260 1
## 11261 1
## 11262 1
## 11263 1
## 11264 1
## 11265 1
## 11266 1
## 11267 1
## 11268 1
## 11269 1
## 11270 1
## 11271 1
## 11272 1
## 11273 1
## 11274 1
## 11275 1
## 11276 1
## 11277 1
## 11278 1
## 11279 1
## 11280 1
## 11281 1
## 11282 1
## 11283 1
## 11284 1
## 11285 1
## 11286 1
## 11287 1
## 11288 1
## 11289 1
## 11290 1
## 11291 1
## 11292 1
## 11293 1
## 11294 1
## 11295 1
## 11296 1
## 11297 1
## 11298 1
## 11299 1
## 11300 1
## 11301 1
## 11302 1
## 11303 1
## 11304 1
## 11305 1
## 11306 1
## 11307 1
## 11308 1
## 11309 1
## 11310 1
## 11311 1
## 11312 1
## 11313 1
## 11314 1
## 11315 1
## 11316 1
## 11317 1
## 11318 1
## 11319 1
## 11320 1
## 11321 1
## 11322 1
## 11323 1
## 11324 1
## 11325 1
## 11326 1
## 11327 1
## 11328 1
## 11329 1
## 11330 1
## 11331 1
## 11332 1
## 11333 1
## 11334 1
## 11335 1
## 11336 1
## 11337 1
## 11338 1
## 11339 1
## 11340 1
## 11341 1
## 11342 1
## 11343 1
## 11344 1
## 11345 1
## 11346 1
## 11347 1
## 11348 1
## 11349 1
## 11350 1
## 11351 1
## 11352 1
## 11353 1
## 11354 1
## 11355 1
## 11356 1
## 11357 1
## 11358 1
## 11359 1
## 11360 1
## 11361 1
## 11362 1
## 11363 1
## 11364 1
## 11365 1
## 11366 1
## 11367 1
## 11368 1
## 11369 1
## 11370 1
## 11371 1
## 11372 1
## 11373 1
## 11374 1
## 11375 1
## 11376 1
## 11377 1
## 11378 1
## 11379 1
## 11380 1
## 11381 1
## 11382 1
## 11383 1
## 11384 1
## 11385 1
## 11386 1
## 11387 1
## 11388 1
## 11389 1
## 11390 1
## 11391 1
## 11392 1
## 11393 1
## 11394 1
## 11395 1
## 11396 1
## 11397 1
## 11398 1
## 11399 1
## 11400 1
## 11401 1
## 11402 1
## 11403 1
## 11404 1
## 11405 1
## 11406 1
## 11407 1
## 11408 1
## 11409 1
## 11410 1
## 11411 1
## 11412 1
## 11413 1
## 11414 1
## 11415 1
## 11416 1
## 11417 1
## 11418 1
## 11419 1
## 11420 1
## 11421 1
## 11422 1
## 11423 1
## 11424 1
## 11425 1
## 11426 1
## 11427 1
## 11428 1
## 11429 1
## 11430 1
## 11431 1
## 11432 1
## 11433 1
## 11434 1
## 11435 1
## 11436 1
## 11437 1
## 11438 1
## 11439 1
## 11440 1
## 11441 1
## 11442 1
## 11443 1
## 11444 1
## 11445 1
## 11446 1
## 11447 1
## 11448 1
## 11449 1
## 11450 1
## 11451 1
## 11452 1
## 11453 1
## 11454 1
## 11455 1
## 11456 1
## 11457 1
## 11458 1
## 11459 1
## 11460 1
## 11461 1
## 11462 1
## 11463 1
## 11464 1
## 11465 1
## 11466 1
## 11467 1
## 11468 1
## 11469 1
## 11470 1
## 11471 1
## 11472 1
## 11473 1
## 11474 1
## 11475 1
## 11476 1
## 11477 1
## 11478 1
## 11479 1
## 11480 1
## 11481 1
## 11482 1
## 11483 1
## 11484 1
## 11485 1
## 11486 1
## 11487 1
## 11488 1
## 11489 1
## 11490 1
## 11491 1
## 11492 1
## 11493 1
## 11494 1
## 11495 1
## 11496 1
## 11497 1
## 11498 1
## 11499 1
## 11500 1
## 11501 1
## 11502 1
## 11503 1
## 11504 1
## 11505 1
## 11506 1
## 11507 1
## 11508 1
## 11509 1
## 11510 1
## 11511 1
## 11512 1
## 11513 1
## 11514 1
## 11515 1
## 11516 1
## 11517 1
## 11518 1
## 11519 1
## 11520 1
## 11521 1
## 11522 1
## 11523 1
## 11524 1
## 11525 1
## 11526 1
## 11527 1
## 11528 1
## 11529 1
## 11530 1
## 11531 1
## 11532 1
## 11533 1
## 11534 1
## 11535 1
## 11536 1
## 11537 1
## 11538 1
## 11539 1
## 11540 1
## 11541 1
## 11542 1
## 11543 1
## 11544 1
## 11545 1
## 11546 1
## 11547 1
## 11548 1
## 11549 1
## 11550 1
## 11551 1
## 11552 1
## 11553 1
## 11554 1
## 11555 1
## 11556 1
## 11557 1
## 11558 1
## 11559 1
## 11560 1
## 11561 1
## 11562 1
## 11563 1
## 11564 1
## 11565 1
## 11566 1
## 11567 1
## 11568 1
## 11569 1
## 11570 1
## 11571 1
## 11572 1
## 11573 1
## 11574 1
## 11575 1
## 11576 1
## 11577 1
## 11578 1
## 11579 1
## 11580 1
## 11581 1
## 11582 1
## 11583 1
## 11584 1
## 11585 1
## 11586 1
## 11587 1
## 11588 1
## 11589 1
## 11590 1
## 11591 1
## 11592 1
## 11593 1
## 11594 1
## 11595 1
## 11596 1
## 11597 1
## 11598 1
## 11599 1
## 11600 1
## 11601 1
## 11602 1
## 11603 1
## 11604 1
## 11605 1
## 11606 1
## 11607 1
## 11608 1
## 11609 1
## 11610 1
## 11611 1
## 11612 1
## 11613 1
## 11614 1
## 11615 1
## 11616 1
## 11617 1
## 11618 1
## 11619 1
## 11620 1
## 11621 1
## 11622 1
## 11623 1
## 11624 1
## 11625 1
## 11626 1
## 11627 1
## 11628 1
## 11629 1
## 11630 1
## 11631 1
## 11632 1
## 11633 1
## 11634 1
## 11635 1
## 11636 1
## 11637 1
## 11638 1
## 11639 1
## 11640 1
## 11641 1
## 11642 1
## 11643 1
## 11644 1
## 11645 1
## 11646 1
## 11647 1
## 11648 1
## 11649 1
## 11650 1
## 11651 1
## 11652 1
## 11653 1
## 11654 1
## 11655 1
## 11656 1
## 11657 1
## 11658 1
## 11659 1
## 11660 1
## 11661 1
## 11662 1
## 11663 1
## 11664 1
## 11665 1
## 11666 1
## 11667 1
## 11668 1
## 11669 1
## 11670 1
## 11671 1
## 11672 1
## 11673 1
## 11674 1
## 11675 1
## 11676 1
## 11677 1
## 11678 1
## 11679 1
## 11680 1
## 11681 1
## 11682 1
## 11683 1
## 11684 1
## 11685 1
## 11686 1
## 11687 1
## 11688 1
## 11689 1
## 11690 1
## 11691 1
## 11692 1
## 11693 1
## 11694 1
## 11695 1
## 11696 1
## 11697 1
## 11698 1
## 11699 1
## 11700 1
## 11701 1
## 11702 1
## 11703 1
## 11704 1
## 11705 1
## 11706 1
## 11707 1
## 11708 1
## 11709 1
## 11710 1
## 11711 1
## 11712 1
## 11713 1
## 11714 1
## 11715 1
## 11716 1
## 11717 1
## 11718 1
## 11719 1
## 11720 1
## 11721 1
## 11722 1
## 11723 1
## 11724 1
## 11725 1
## 11726 1
## 11727 1
## 11728 1
## 11729 1
## 11730 1
## 11731 1
## 11732 1
## 11733 1
## 11734 1
## 11735 1
## 11736 1
## 11737 1
## 11738 1
## 11739 1
## 11740 1
## 11741 1
## 11742 1
## 11743 1
## 11744 1
## 11745 1
## 11746 1
## 11747 1
## 11748 1
## 11749 1
## 11750 1
## 11751 1
## 11752 1
## 11753 1
## 11754 1
## 11755 1
## 11756 1
## 11757 1
## 11758 1
## 11759 1
## 11760 1
## 11761 1
## 11762 1
## 11763 1
## 11764 1
## 11765 1
## 11766 1
## 11767 1
## 11768 1
## 11769 1
## 11770 1
## 11771 1
## 11772 1
## 11773 1
## 11774 1
## 11775 1
## 11776 1
## 11777 1
## 11778 1
## 11779 1
## 11780 1
## 11781 1
## 11782 1
## 11783 1
## 11784 1
## 11785 1
## 11786 1
## 11787 1
## 11788 1
## 11789 1
## 11790 1
## 11791 1
## 11792 1
## 11793 1
## 11794 1
## 11795 1
## 11796 1
## 11797 1
## 11798 1
## 11799 1
## 11800 1
## 11801 1
## 11802 1
## 11803 1
## 11804 1
## 11805 1
## 11806 1
## 11807 1
## 11808 1
## 11809 1
## 11810 1
## 11811 1
## 11812 1
## 11813 1
## 11814 1
## 11815 1
## 11816 1
## 11817 1
## 11818 1
## 11819 1
## 11820 1
## 11821 1
## 11822 1
## 11823 1
## 11824 1
## 11825 1
## 11826 1
## 11827 1
## 11828 1
## 11829 1
## 11830 1
## 11831 1
## 11832 1
## 11833 1
## 11834 1
## 11835 1
## 11836 1
## 11837 1
## 11838 1
## 11839 1
## 11840 1
## 11841 1
## 11842 1
## 11843 1
## 11844 1
## 11845 1
## 11846 1
## 11847 1
## 11848 1
## 11849 1
## 11850 1
## 11851 1
## 11852 1
## 11853 1
## 11854 1
## 11855 1
## 11856 1
## 11857 1
## 11858 1
## 11859 1
## 11860 1
## 11861 1
## 11862 1
## 11863 1
## 11864 1
## 11865 1
## 11866 1
## 11867 1
## 11868 1
## 11869 1
## 11870 1
## 11871 1
## 11872 1
## 11873 1
## 11874 1
## 11875 1
## 11876 1
## 11877 1
## 11878 1
## 11879 1
## 11880 1
## 11881 1
## 11882 1
## 11883 1
## 11884 1
## 11885 1
## 11886 1
## 11887 1
## 11888 1
## 11889 1
## 11890 1
## 11891 1
## 11892 1
## 11893 1
## 11894 1
## 11895 1
## 11896 1
## 11897 1
## 11898 1
## 11899 1
## 11900 1
## 11901 1
## 11902 1
## 11903 1
## 11904 1
## 11905 1
## 11906 1
## 11907 1
## 11908 1
## 11909 1
## 11910 1
## 11911 1
## 11912 1
## 11913 1
## 11914 1
## 11915 1
## 11916 1
## 11917 1
## 11918 1
## 11919 1
## 11920 1
## 11921 1
## 11922 1
## 11923 1
## 11924 1
## 11925 1
## 11926 1
## 11927 1
## 11928 1
## 11929 1
## 11930 1
## 11931 1
## 11932 1
## 11933 1
## 11934 1
## 11935 1
## 11936 1
## 11937 1
## 11938 1
## 11939 1
## 11940 1
## 11941 1
## 11942 1
## 11943 1
## 11944 1
## 11945 1
## 11946 1
## 11947 1
## 11948 1
## 11949 1
## 11950 1
## 11951 1
## 11952 1
## 11953 1
## 11954 1
## 11955 1
## 11956 1
## 11957 1
## 11958 1
## 11959 1
## 11960 1
## 11961 1
## 11962 1
## 11963 1
## 11964 1
## 11965 1
## 11966 1
## 11967 1
## 11968 1
## 11969 1
## 11970 1
## 11971 1
## 11972 1
## 11973 1
## 11974 1
## 11975 1
## 11976 1
## 11977 1
## 11978 1
## 11979 1
## 11980 1
## 11981 1
## 11982 1
## 11983 1
## 11984 1
## 11985 1
## 11986 1
## 11987 1
## 11988 1
## 11989 1
## 11990 1
## 11991 1
## 11992 1
## 11993 1
## 11994 1
## 11995 1
## 11996 1
## 11997 1
## 11998 1
## 11999 1
## 12000 1
## 12001 1
## 12002 1
## 12003 1
## 12004 1
## 12005 1
## 12006 1
## 12007 1
## 12008 1
## 12009 1
## 12010 1
## 12011 1
## 12012 1
## 12013 1
## 12014 1
## 12015 1
## 12016 1
## 12017 1
## 12018 1
## 12019 1
## 12020 1
## 12021 1
## 12022 1
## 12023 1
## 12024 1
## 12025 1
## 12026 1
## 12027 1
## 12028 1
## 12029 1
## 12030 1
## 12031 1
## 12032 1
## 12033 1
## 12034 1
## 12035 1
## 12036 1
## 12037 1
## 12038 1
## 12039 1
## 12040 1
## 12041 1
## 12042 1
## 12043 1
## 12044 1
## 12045 1
## 12046 1
## 12047 1
## 12048 1
## 12049 1
## 12050 1
## 12051 1
## 12052 1
## 12053 1
## 12054 1
## 12055 1
## 12056 1
## 12057 1
## 12058 1
## 12059 1
## 12060 1
## 12061 1
## 12062 1
## 12063 1
## 12064 1
## 12065 1
## 12066 1
## 12067 1
## 12068 1
## 12069 1
## 12070 1
## 12071 1
## 12072 1
## 12073 1
## 12074 1
## 12075 1
## 12076 1
## 12077 1
## 12078 1
## 12079 1
## 12080 1
## 12081 1
## 12082 1
## 12083 1
## 12084 1
## 12085 1
## 12086 1
## 12087 1
## 12088 1
## 12089 1
## 12090 1
## 12091 1
## 12092 1
## 12093 1
## 12094 1
## 12095 1
## 12096 1
## 12097 1
## 12098 1
## 12099 1
## 12100 1
## 12101 1
## 12102 1
## 12103 1
## 12104 1
## 12105 1
## 12106 1
## 12107 1
## 12108 1
## 12109 1
## 12110 1
## 12111 1
## 12112 1
## 12113 1
## 12114 1
## 12115 1
## 12116 1
## 12117 1
## 12118 1
## 12119 1
## 12120 1
## 12121 1
## 12122 1
## 12123 1
## 12124 1
## 12125 1
## 12126 1
## 12127 1
## 12128 1
## 12129 1
## 12130 1
## 12131 1
## 12132 1
## 12133 1
## 12134 1
## 12135 1
## 12136 1
## 12137 1
## 12138 1
## 12139 1
## 12140 1
## 12141 1
## 12142 1
## 12143 1
## 12144 1
## 12145 1
## 12146 1
## 12147 1
## 12148 1
## 12149 1
## 12150 1
## 12151 1
## 12152 1
## 12153 1
## 12154 1
## 12155 1
## 12156 1
## 12157 1
## 12158 1
## 12159 1
## 12160 1
## 12161 1
## 12162 1
## 12163 1
## 12164 1
## 12165 1
## 12166 1
## 12167 1
## 12168 1
## 12169 1
## 12170 1
## 12171 1
## 12172 1
## 12173 1
## 12174 1
## 12175 1
## 12176 1
## 12177 1
## 12178 1
## 12179 1
## 12180 1
## 12181 1
## 12182 1
## 12183 1
## 12184 1
## 12185 1
## 12186 1
## 12187 1
## 12188 1
## 12189 1
## 12190 1
## 12191 1
## 12192 1
## 12193 1
## 12194 1
## 12195 1
## 12196 1
## 12197 1
## 12198 1
## 12199 1
## 12200 1
## 12201 1
## 12202 1
## 12203 1
## 12204 1
## 12205 1
## 12206 1
## 12207 1
## 12208 1
## 12209 1
## 12210 1
## 12211 1
## 12212 1
## 12213 1
## 12214 1
## 12215 1
## 12216 1
## 12217 1
## 12218 1
## 12219 1
## 12220 1
## 12221 1
## 12222 1
## 12223 1
## 12224 1
## 12225 1
## 12226 1
## 12227 1
## 12228 1
## 12229 1
## 12230 1
## 12231 1
## 12232 1
## 12233 1
## 12234 1
## 12235 1
## 12236 1
## 12237 1
## 12238 1
## 12239 1
## 12240 1
## 12241 1
## 12242 1
## 12243 1
## 12244 1
## 12245 1
## 12246 1
## 12247 1
## 12248 1
## 12249 1
## 12250 1
## 12251 1
## 12252 1
## 12253 1
## 12254 1
## 12255 1
## 12256 1
## 12257 1
## 12258 1
## 12259 1
## 12260 1
## 12261 1
## 12262 1
## 12263 1
## 12264 1
## 12265 1
## 12266 1
## 12267 1
## 12268 1
## 12269 1
## 12270 1
## 12271 1
## 12272 1
## 12273 1
## 12274 1
## 12275 1
## 12276 1
## 12277 1
## 12278 1
## 12279 1
## 12280 1
## 12281 1
## 12282 1
## 12283 1
## 12284 1
## 12285 1
## 12286 1
## 12287 1
## 12288 1
## 12289 1
## 12290 1
## 12291 1
## 12292 1
## 12293 1
## 12294 1
## 12295 1
## 12296 1
## 12297 1
## 12298 1
## 12299 1
## 12300 1
## 12301 1
## 12302 1
## 12303 1
## 12304 1
## 12305 1
## 12306 1
## 12307 1
## 12308 1
## 12309 1
## 12310 1
## 12311 1
## 12312 1
## 12313 1
## 12314 1
## 12315 1
## 12316 1
## 12317 1
## 12318 1
## 12319 1
## 12320 1
## 12321 1
go_plot$total <- 5134
go_plot <- go_plot[-1,]
go_plot <- go_plot %>%
mutate(perc = (n/total)*100) %>%
dplyr::arrange()
go_plot## name_1006
## 1 nucleus
## 2 cytoplasm
## 3 membrane
## 4 cytosol
## 5 nucleoplasm
## 6 integral component of membrane
## 7 metal ion binding
## 8 plasma membrane
## 9 DNA binding
## 10 transferase activity
## 11 nucleotide binding
## 12 RNA binding
## 13 extracellular exosome
## 14 mitochondrion
## 15 ATP binding
## 16 identical protein binding
## 17 hydrolase activity
## 18 endoplasmic reticulum
## 19 cytoskeleton
## 20 Golgi apparatus
## 21 regulation of transcription by RNA polymerase II
## 22 nucleolus
## 23 signal transduction
## 24 positive regulation of transcription by RNA polymerase II
## 25 regulation of transcription, DNA-templated
## 26 endoplasmic reticulum membrane
## 27 intracellular membrane-bounded organelle
## 28 extracellular region
## 29 cell cycle
## 30 RNA polymerase II cis-regulatory region sequence-specific DNA binding
## 31 negative regulation of transcription by RNA polymerase II
## 32 cell projection
## 33 protein transport
## 34 DNA-binding transcription factor activity, RNA polymerase II-specific
## 35 phosphorylation
## 36 kinase activity
## 37 endosome
## 38 perinuclear region of cytoplasm
## 39 protein-containing complex
## 40 viral process
## 41 cellular response to DNA damage stimulus
## 42 chromatin
## 43 chromosome
## 44 cytoplasmic vesicle
## 45 zinc ion binding
## 46 positive regulation of transcription, DNA-templated
## 47 Golgi membrane
## 48 extracellular space
## 49 integral component of plasma membrane
## 50 protein phosphorylation
## 51 centrosome
## 52 protein homodimerization activity
## 53 protein ubiquitination
## 54 multicellular organism development
## 55 nucleic acid binding
## 56 apoptotic process
## 57 cell division
## 58 DNA repair
## 59 cell differentiation
## 60 cell junction
## 61 protein kinase activity
## 62 immune system process
## 63 negative regulation of transcription, DNA-templated
## 64 microtubule organizing center
## 65 molecular_function
## 66 synapse
## 67 mitochondrial inner membrane
## 68 nuclear speck
## 69 protein serine/threonine kinase activity
## 70 neutrophil degranulation
## 71 lipid metabolic process
## 72 chromatin binding
## 73 translation
## 74 protein kinase binding
## 75 oxidoreductase activity
## 76 lysosome
## 77 DNA-binding transcription factor activity
## 78 mRNA processing
## 79 nuclear body
## 80 focal adhesion
## 81 mitochondrial matrix
## 82 protein serine kinase activity
## 83 protein threonine kinase activity
## 84 negative regulation of apoptotic process
## 85 ATPase activity
## 86 chromatin organization
## 87 intracellular signal transduction
## 88 biological_process
## 89 enzyme binding
## 90 transmembrane transport
## 91 protein-containing complex binding
## 92 proteolysis
## 93 innate immune response
## 94 catalytic activity
## 95 positive regulation of gene expression
## 96 lysosomal membrane
## 97 calcium ion binding
## 98 intracellular protein transport
## 99 RNA splicing
## 100 positive regulation of cell population proliferation
## 101 cadherin binding
## 102 ion transport
## 103 positive regulation of GTPase activity
## 104 cell surface
## 105 endosome membrane
## 106 ribosome
## 107 rRNA processing
## 108 microtubule
## 109 protein deubiquitination
## 110 peptidase activity
## 111 small GTPase binding
## 112 mRNA splicing, via spliceosome
## 113 sequence-specific double-stranded DNA binding
## 114 DNA-binding transcription activator activity, RNA polymerase II-specific
## 115 oxidation-reduction process
## 116 sequence-specific DNA binding
## 117 ubiquitin-dependent protein catabolic process
## 118 negative regulation of cell population proliferation
## 119 positive regulation of apoptotic process
## 120 transcription factor binding
## 121 nervous system development
## 122 vesicle-mediated transport
## 123 post-translational protein modification
## 124 actin binding
## 125 ubiquitin protein ligase binding
## 126 dendrite
## 127 GTP binding
## 128 spindle
## 129 spermatogenesis
## 130 structural constituent of ribosome
## 131 protein polyubiquitination
## 132 lipid binding
## 133 cellular_component
## 134 ubiquitin protein ligase activity
## 135 GTPase activator activity
## 136 G protein-coupled receptor signaling pathway
## 137 ubiquitin-protein transferase activity
## 138 cell adhesion
## 139 early endosome
## 140 regulation of catalytic activity
## 141 translational initiation
## 142 axon
## 143 protein domain specific binding
## 144 nuclear membrane
## 145 inflammatory response
## 146 neuron projection
## 147 regulation of gene expression
## 148 transcription coactivator activity
## 149 MAPK cascade
## 150 chromosome, centromeric region
## 151 signaling receptor binding
## 152 DNA-binding transcription repressor activity, RNA polymerase II-specific
## 153 endocytosis
## 154 negative regulation of gene expression
## 155 neuronal cell body
## 156 immune response
## 157 DNA replication
## 158 postsynaptic density
## 159 protein heterodimerization activity
## 160 nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## 161 RNA polymerase II transcription regulatory region sequence-specific DNA binding
## 162 viral transcription
## 163 actin cytoskeleton
## 164 protein C-terminus binding
## 165 GTPase activity
## 166 microtubule binding
## 167 regulation of apoptotic process
## 168 trans-Golgi network
## 169 guanyl-nucleotide exchange factor activity
## 170 kinetochore
## 171 magnesium ion binding
## 172 midbody
## 173 mRNA binding
## 174 proteasome-mediated ubiquitin-dependent protein catabolic process
## 175 response to drug
## 176 transcription corepressor activity
## 177 transcription by RNA polymerase II
## 178 carbohydrate metabolic process
## 179 nuclear envelope
## 180 glutamatergic synapse
## 181 in utero embryonic development
## 182 protein stabilization
## 183 regulation of cell cycle
## 184 transcription regulatory region sequence-specific DNA binding
## 185 protein phosphopantetheinylation
## 186 SRP-dependent cotranslational protein targeting to membrane
## 187 autophagy
## 188 helicase activity
## 189 apical plasma membrane
## 190 cilium
## 191 cytokine-mediated signaling pathway
## 192 cytoplasmic translation
## 193 defense response to virus
## 194 histone binding
## 195 membrane raft
## 196 protein autophosphorylation
## 197 regulation of signal transduction by p53 class mediator
## 198 T cell receptor signaling pathway
## 199 adaptive immune response
## 200 chromosome, telomeric region
## 201 endoplasmic reticulum to Golgi vesicle-mediated transport
## 202 microtubule cytoskeleton
## 203 spliceosomal complex
## 204 transferase activity, transferring glycosyl groups
## 205 brain development
## 206 ribonucleoprotein complex
## 207 mitotic spindle organization
## 208 positive regulation of cell migration
## 209 heart development
## 210 lamellipodium
## 211 spindle pole
## 212 transcription regulator complex
## 213 cytosolic ribosome
## 214 peptidyl-serine phosphorylation
## 215 positive regulation of I-kappaB kinase/NF-kappaB signaling
## 216 protein dephosphorylation
## 217 Wnt signaling pathway
## 218 methylation
## 219 cell projection organization
## 220 cell migration
## 221 mitotic cell cycle
## 222 cilium assembly
## 223 condensed chromosome kinetochore
## 224 endoplasmic reticulum lumen
## 225 vesicle
## 226 methyltransferase activity
## 227 mitochondrial outer membrane
## 228 positive regulation of protein phosphorylation
## 229 regulation of translation
## 230 transcription coregulator activity
## 231 transferase activity, transferring acyl groups
## 232 G2/M transition of mitotic cell cycle
## 233 metabolic process
## 234 cell population proliferation
## 235 dephosphorylation
## 236 angiogenesis
## 237 centriole
## 238 early endosome membrane
## 239 external side of plasma membrane
## 240 endomembrane system
## 241 positive regulation of NF-kappaB transcription factor activity
## 242 protein glycosylation
## 243 fatty acid metabolic process
## 244 actin cytoskeleton organization
## 245 protein folding
## 246 ubiquitin ligase complex
## 247 cell cortex
## 248 fibrillar center
## 249 late endosome membrane
## 250 protein localization
## 251 rhythmic process
## 252 actin filament binding
## 253 chromosome segregation
## 254 cysteine-type peptidase activity
## 255 mitotic spindle
## 256 regulation of cell population proliferation
## 257 negative regulation of canonical Wnt signaling pathway
## 258 nuclease activity
## 259 phosphatase activity
## 260 transcription initiation from RNA polymerase II promoter
## 261 DNA recombination
## 262 double-stranded DNA binding
## 263 protein localization to plasma membrane
## 264 cytoplasmic vesicle membrane
## 265 integral component of endoplasmic reticulum membrane
## 266 transcription, DNA-templated
## 267 cell surface receptor signaling pathway
## 268 late endosome
## 269 mitochondrial membrane
## 270 nucleic acid phosphodiester bond hydrolysis
## 271 protein-containing complex assembly
## 272 response to hypoxia
## 273 isomerase activity
## 274 membrane organization
## 275 peptidyl-tyrosine phosphorylation
## 276 phosphoprotein phosphatase activity
## 277 chromatin remodeling
## 278 Golgi organization
## 279 ligase activity
## 280 protein dimerization activity
## 281 protein N-terminus binding
## 282 basolateral plasma membrane
## 283 centriolar satellite
## 284 ion transmembrane transport
## 285 lyase activity
## 286 positive regulation of canonical Wnt signaling pathway
## 287 signaling receptor activity
## 288 growth cone
## 289 PML body
## 290 presynapse
## 291 aging
## 292 ciliary basal body
## 293 ficolin-1-rich granule lumen
## 294 microtubule cytoskeleton organization
## 295 peroxisome
## 296 positive regulation of ERK1 and ERK2 cascade
## 297 regulation of cell shape
## 298 cell cycle arrest
## 299 cell-cell junction
## 300 double-strand break repair
## 301 histone deacetylase binding
## 302 SH3 domain binding
## 303 tumor necrosis factor-mediated signaling pathway
## 304 calmodulin binding
## 305 collagen-containing extracellular matrix
## 306 DNA duplex unwinding
## 307 endosomal transport
## 308 Fc-epsilon receptor signaling pathway
## 309 mitochondrial translational termination
## 310 recycling endosome
## 311 regulation of small GTPase mediated signal transduction
## 312 single-stranded DNA binding
## 313 antigen processing and presentation of exogenous peptide antigen via MHC class II
## 314 lipid transport
## 315 mitochondrion organization
## 316 mRNA export from nucleus
## 317 protein tyrosine kinase activity
## 318 regulation of mRNA stability
## 319 response to oxidative stress
## 320 transmembrane signaling receptor activity
## 321 transmembrane transporter activity
## 322 cytoskeleton organization
## 323 cytosolic large ribosomal subunit
## 324 mitochondrial translational elongation
## 325 nuclear matrix
## 326 snRNA transcription by RNA polymerase II
## 327 trans-Golgi network membrane
## 328 activation of MAPK activity
## 329 adherens junction
## 330 cellular response to hypoxia
## 331 cellular response to lipopolysaccharide
## 332 ciliary basal body-plasma membrane docking
## 333 dendritic spine
## 334 positive regulation of protein kinase B signaling
## 335 response to lipopolysaccharide
## 336 response to virus
## 337 anaphase-promoting complex-dependent catabolic process
## 338 axon guidance
## 339 blood coagulation
## 340 carbohydrate binding
## 341 cellular response to oxidative stress
## 342 kinase binding
## 343 thiol-dependent ubiquitin-specific protease activity
## 344 transcription-coupled nucleotide-excision repair
## 345 interleukin-1-mediated signaling pathway
## 346 protein serine/threonine phosphatase activity
## 347 retrograde vesicle-mediated transport, Golgi to endoplasmic reticulum
## 348 ion channel binding
## 349 macroautophagy
## 350 negative regulation of translation
## 351 regulation of mitotic cell cycle phase transition
## 352 ribosome biogenesis
## 353 stimulatory C-type lectin receptor signaling pathway
## 354 actin filament organization
## 355 exocytosis
## 356 negative regulation of cell growth
## 357 nucleotidyltransferase activity
## 358 phosphatidylinositol binding
## 359 positive regulation of neuron projection development
## 360 SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## 361 small GTPase mediated signal transduction
## 362 tRNA processing
## 363 double-strand break repair via homologous recombination
## 364 endoplasmic reticulum-Golgi intermediate compartment
## 365 methylated histone binding
## 366 mRNA transport
## 367 platelet degranulation
## 368 secretory granule lumen
## 369 ubiquitin binding
## 370 cytoplasmic ribonucleoprotein granule
## 371 endonuclease activity
## 372 P-body
## 373 protein phosphatase binding
## 374 regulation of GTPase activity
## 375 regulation of immune response
## 376 ruffle
## 377 transmembrane receptor protein tyrosine kinase activity
## 378 transport vesicle
## 379 cellular protein modification process
## 380 cytoplasmic stress granule
## 381 double-stranded RNA binding
## 382 Golgi cisterna membrane
## 383 meiotic cell cycle
## 384 molecular adaptor activity
## 385 receptor-mediated endocytosis
## 386 regulation of protein stability
## 387 retrograde transport, endosome to Golgi
## 388 secretory granule membrane
## 389 transcription elongation from RNA polymerase II promoter
## 390 tRNA binding
## 391 activation of GTPase activity
## 392 cytosolic small ribosomal subunit
## 393 DNA helicase activity
## 394 intercellular bridge
## 395 perikaryon
## 396 phosphatidylinositol biosynthetic process
## 397 positive regulation of proteasomal ubiquitin-dependent protein catabolic process
## 398 regulation of G2/M transition of mitotic cell cycle
## 399 regulation of lipid metabolic process
## 400 RNA processing
## 401 synaptic vesicle
## 402 Wnt signaling pathway, planar cell polarity pathway
## 403 catalytic step 2 spliceosome
## 404 chaperone binding
## 405 damaged DNA binding
## 406 extracellular matrix organization
## 407 neuron projection development
## 408 positive regulation of DNA-binding transcription factor activity
## 409 positive regulation of tumor necrosis factor production
## 410 RNA helicase activity
## 411 ruffle membrane
## 412 transforming growth factor beta receptor signaling pathway
## 413 unfolded protein binding
## 414 clathrin-coated vesicle
## 415 G protein-coupled receptor activity
## 416 G1/S transition of mitotic cell cycle
## 417 leukocyte migration
## 418 lipid droplet
## 419 multicellular organism growth
## 420 positive regulation of angiogenesis
## 421 postsynapse
## 422 postsynaptic membrane
## 423 regulation of cellular response to heat
## 424 site of double-strand break
## 425 specific granule membrane
## 426 structural molecule activity
## 427 viral life cycle
## 428 cellular response to insulin stimulus
## 429 cellular response to tumor necrosis factor
## 430 melanosome
## 431 mitochondrial intermembrane space
## 432 negative regulation of cell migration
## 433 negative regulation of neuron apoptotic process
## 434 negative regulation of NF-kappaB transcription factor activity
## 435 neural tube closure
## 436 platelet activation
## 437 pre-replicative complex assembly
## 438 protease binding
## 439 protein import into nucleus
## 440 protein-macromolecule adaptor activity
## 441 receptor complex
## 442 transmembrane receptor protein tyrosine kinase signaling pathway
## 443 animal organ morphogenesis
## 444 cell-cell adhesion
## 445 cholesterol metabolic process
## 446 endoplasmic reticulum-Golgi intermediate compartment membrane
## 447 liver development
## 448 metallopeptidase activity
## 449 mitochondrial respiratory chain complex I assembly
## 450 negative regulation of protein kinase activity
## 451 positive regulation of interleukin-6 production
## 452 positive regulation of MAPK cascade
## 453 post-Golgi vesicle-mediated transport
## 454 Ras protein signal transduction
## 455 response to organic cyclic compound
## 456 visual perception
## 457 calcium ion transport
## 458 double-strand break repair via nonhomologous end joining
## 459 interstrand cross-link repair
## 460 iron-sulfur cluster binding
## 461 negative regulation of protein binding
## 462 NIK/NF-kappaB signaling
## 463 protein homooligomerization
## 464 proton transmembrane transport
## 465 regulation of autophagy
## 466 regulation of transcription from RNA polymerase II promoter in response to hypoxia
## 467 SCF ubiquitin ligase complex
## 468 ubiquitin-dependent ERAD pathway
## 469 wound healing
## 470 apoptotic signaling pathway
## 471 azurophil granule lumen
## 472 hydrolase activity, acting on glycosyl bonds
## 473 I-kappaB kinase/NF-kappaB signaling
## 474 mRNA 3'-UTR binding
## 475 Notch signaling pathway
## 476 nuclear pore
## 477 positive regulation of translation
## 478 protein serine phosphatase activity
## 479 protein threonine phosphatase activity
## 480 respirasome
## 481 cellular response to organic cyclic compound
## 482 cysteine-type endopeptidase activity
## 483 dioxygenase activity
## 484 extracellular matrix
## 485 interferon-gamma-mediated signaling pathway
## 486 intracellular receptor signaling pathway
## 487 lipid catabolic process
## 488 mitochondrial large ribosomal subunit
## 489 phospholipid binding
## 490 regulation of hematopoietic stem cell differentiation
## 491 response to estradiol
## 492 response to ethanol
## 493 RNA phosphodiester bond hydrolysis, endonucleolytic
## 494 steroid metabolic process
## 495 antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-dependent
## 496 cellular response to UV
## 497 chemical synaptic transmission
## 498 chemotaxis
## 499 circadian rhythm
## 500 clathrin-coated pit
## 501 COPII vesicle coating
## 502 mitotic nuclear envelope reassembly
## 503 neuron differentiation
## 504 osteoblast differentiation
## 505 peptidyl-tyrosine dephosphorylation
## 506 phagocytic vesicle
## 507 positive regulation of autophagy
## 508 positive regulation of peptidyl-tyrosine phosphorylation
## 509 proteasome complex
## 510 RNA polymerase II transcription regulator complex
## 511 viral entry into host cell
## 512 activation of cysteine-type endopeptidase activity involved in apoptotic process
## 513 bicellular tight junction
## 514 calcium ion transmembrane transport
## 515 cleavage furrow
## 516 glucose homeostasis
## 517 insulin receptor signaling pathway
## 518 manganese ion binding
## 519 mitotic cytokinesis
## 520 peroxisomal membrane
## 521 polysomal ribosome
## 522 positive regulation of interferon-gamma production
## 523 positive regulation of JNK cascade
## 524 positive regulation of protein catabolic process
## 525 protein tyrosine phosphatase activity
## 526 regulation of cell growth
## 527 regulation of gene silencing by miRNA
## 528 regulation of growth
## 529 ribosome binding
## 530 U2-type precatalytic spliceosome
## 531 vascular endothelial growth factor receptor signaling pathway
## 532 autophagosome
## 533 cellular protein metabolic process
## 534 cellular response to mechanical stimulus
## 535 DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest
## 536 electron transport chain
## 537 endocytic recycling
## 538 ER to Golgi transport vesicle membrane
## 539 fatty acid biosynthetic process
## 540 integral component of Golgi membrane
## 541 kidney development
## 542 mRNA 3'-end processing
## 543 negative regulation of G2/M transition of mitotic cell cycle
## 544 p53 binding
## 545 peptidyl-threonine phosphorylation
## 546 positive regulation of inflammatory response
## 547 positive regulation of peptidyl-serine phosphorylation
## 548 positive regulation of protein binding
## 549 response to unfolded protein
## 550 response to UV
## 551 rough endoplasmic reticulum
## 552 actin filament
## 553 Cajal body
## 554 cellular response to leukemia inhibitory factor
## 555 cerebral cortex development
## 556 cytokine activity
## 557 defense response to bacterium
## 558 endopeptidase activity
## 559 ephrin receptor signaling pathway
## 560 fibroblast growth factor receptor signaling pathway
## 561 JNK cascade
## 562 negative regulation of inflammatory response
## 563 negative regulation of protein phosphorylation
## 564 negative regulation of protein ubiquitination
## 565 nucleosome assembly
## 566 phagocytosis
## 567 positive regulation of cytosolic calcium ion concentration
## 568 positive regulation of protein ubiquitination
## 569 positive regulation of type I interferon production
## 570 protein autoubiquitination
## 571 protein K48-linked ubiquitination
## 572 recycling endosome membrane
## 573 response to endoplasmic reticulum stress
## 574 response to organic substance
## 575 response to toxic substance
## 576 rRNA binding
## 577 tubulin binding
## 578 cell body
## 579 cellular response to amino acid starvation
## 580 cellular response to hydrogen peroxide
## 581 defense response
## 582 Fc-gamma receptor signaling pathway involved in phagocytosis
## 583 gene silencing by RNA
## 584 host cell
## 585 integrin-mediated signaling pathway
## 586 lateral plasma membrane
## 587 lysosomal lumen
## 588 negative regulation of neuron projection development
## 589 negative regulation of transforming growth factor beta receptor signaling pathway
## 590 neuron migration
## 591 phagocytic vesicle membrane
## 592 positive regulation of NIK/NF-kappaB signaling
## 593 post-embryonic development
## 594 potassium ion transmembrane transport
## 595 regulation of actin cytoskeleton organization
## 596 regulation of inflammatory response
## 597 regulation of protein localization
## 598 response to nutrient
## 599 response to nutrient levels
## 600 tertiary granule membrane
## 601 4 iron, 4 sulfur cluster binding
## 602 activation of protein kinase activity
## 603 axon cytoplasm
## 604 axonogenesis
## 605 cellular response to interferon-gamma
## 606 centrosome cycle
## 607 fat cell differentiation
## 608 integrin binding
## 609 mitotic spindle assembly
## 610 negative regulation of catalytic activity
## 611 negative regulation of cysteine-type endopeptidase activity involved in apoptotic process
## 612 ossification
## 613 phosphatidylinositol phosphorylation
## 614 phosphatidylinositol-4,5-bisphosphate binding
## 615 positive regulation of cold-induced thermogenesis
## 616 potassium ion transport
## 617 protein sumoylation
## 618 regulation of cyclin-dependent protein serine/threonine kinase activity
## 619 ribonucleoprotein complex binding
## 620 secretory granule
## 621 sensory perception of sound
## 622 skeletal system development
## 623 small ribosomal subunit
## 624 stem cell population maintenance
## 625 steroid biosynthetic process
## 626 symporter activity
## 627 telomere maintenance
## 628 transcription repressor complex
## 629 transport across blood-brain barrier
## 630 ATPase binding
## 631 cell-cell signaling
## 632 cellular iron ion homeostasis
## 633 central nervous system development
## 634 cis-Golgi network
## 635 cis-regulatory region sequence-specific DNA binding
## 636 clathrin-coated endocytic vesicle membrane
## 637 defense response to Gram-positive bacterium
## 638 DNA replication initiation
## 639 endocytic vesicle
## 640 endocytic vesicle membrane
## 641 heme binding
## 642 hemopoiesis
## 643 IRE1-mediated unfolded protein response
## 644 iron ion binding
## 645 lysosome organization
## 646 male gonad development
## 647 mediator complex
## 648 mitochondrial electron transport, NADH to ubiquinone
## 649 mitochondrial respiratory chain complex I
## 650 mitochondrial translation
## 651 mitotic metaphase plate congression
## 652 muscle contraction
## 653 muscle organ development
## 654 nuclear receptor transcription coactivator activity
## 655 PDZ domain binding
## 656 peroxisomal matrix
## 657 phospholipid biosynthetic process
## 658 positive regulation of endothelial cell proliferation
## 659 positive regulation of interleukin-8 production
## 660 positive regulation of phosphatidylinositol 3-kinase signaling
## 661 positive regulation of protein-containing complex assembly
## 662 promoter-specific chromatin binding
## 663 regulation of macroautophagy
## 664 regulation of protein phosphorylation
## 665 regulation of transcription initiation from RNA polymerase II promoter
## 666 response to bacterium
## 667 sarcolemma
## 668 specific granule lumen
## 669 spindle microtubule
## 670 stress fiber
## 671 translation initiation factor activity
## 672 activation of MAPKK activity
## 673 amyloid-beta binding
## 674 azurophil granule membrane
## 675 cell leading edge
## 676 cholesterol homeostasis
## 677 cytoskeletal protein binding
## 678 DNA damage response, detection of DNA damage
## 679 exonuclease activity
## 680 extrinsic component of cytoplasmic side of plasma membrane
## 681 glucose metabolic process
## 682 heat shock protein binding
## 683 intracellular transport of virus
## 684 negative regulation of G0 to G1 transition
## 685 negative regulation of neuron death
## 686 nucleobase-containing compound metabolic process
## 687 polysome
## 688 positive regulation of cell growth
## 689 protein kinase C binding
## 690 regulation of circadian rhythm
## 691 regulation of mitotic cell cycle
## 692 type I interferon signaling pathway
## 693 beta-catenin binding
## 694 cell periphery
## 695 cellular calcium ion homeostasis
## 696 cellular protein localization
## 697 cellular response to cytokine stimulus
## 698 cellular response to glucose stimulus
## 699 circadian regulation of gene expression
## 700 COPII-coated ER to Golgi transport vesicle
## 701 extrinsic component of membrane
## 702 fatty acid beta-oxidation
## 703 filopodium
## 704 lung development
## 705 motor activity
## 706 neuron projection morphogenesis
## 707 non-membrane spanning protein tyrosine kinase activity
## 708 phosphatidic acid biosynthetic process
## 709 positive regulation of gene expression, epigenetic
## 710 regulation of alternative mRNA splicing, via spliceosome
## 711 regulation of cytokinesis
## 712 response to hydrogen peroxide
## 713 response to ischemia
## 714 RNA metabolic process
## 715 syntaxin binding
## 716 T cell activation
## 717 tau protein binding
## 718 virus receptor activity
## 719 Z disc
## 720 anatomical structure morphogenesis
## 721 anchored component of membrane
## 722 autophagosome assembly
## 723 BMP signaling pathway
## 724 cellular response to starvation
## 725 chromatin DNA binding
## 726 DNA-dependent ATPase activity
## 727 electron transfer activity
## 728 estrogen receptor binding
## 729 heparin binding
## 730 histone acetylation
## 731 histone deacetylation
## 732 ion channel activity
## 733 mitotic sister chromatid segregation
## 734 NADH dehydrogenase (ubiquinone) activity
## 735 negative regulation of endopeptidase activity
## 736 negative regulation of G1/S transition of mitotic cell cycle
## 737 nucleosome
## 738 nucleotide-excision repair, DNA incision
## 739 nucleotide-excision repair, DNA incision, 5'-to lesion
## 740 positive regulation of actin filament polymerization
## 741 positive regulation of cysteine-type endopeptidase activity involved in apoptotic process
## 742 positive regulation of cytokine production
## 743 positive regulation of interferon-beta production
## 744 positive regulation of protein localization to plasma membrane
## 745 positive regulation of protein serine/threonine kinase activity
## 746 positive regulation of T cell proliferation
## 747 regulation of cell migration
## 748 regulation of cellular amino acid metabolic process
## 749 regulation of glycolytic process
## 750 regulation of ion transmembrane transport
## 751 regulation of transcription involved in G1/S transition of mitotic cell cycle
## 752 Rho protein signal transduction
## 753 scaffold protein binding
## 754 Schaffer collateral - CA1 synapse
## 755 SNARE binding
## 756 sphingolipid biosynthetic process
## 757 synaptic vesicle membrane
## 758 termination of RNA polymerase II transcription
## 759 tertiary granule lumen
## 760 voltage-gated ion channel activity
## 761 antiporter activity
## 762 ATP-dependent chromatin remodeling
## 763 axoneme
## 764 B cell differentiation
## 765 calcium-dependent protein binding
## 766 cellular response to drug
## 767 cytoplasmic microtubule
## 768 cytoplasmic side of plasma membrane
## 769 DNA-directed 5'-3' RNA polymerase activity
## 770 flavin adenine dinucleotide binding
## 771 GDP binding
## 772 microtubule-based movement
## 773 negative regulation of angiogenesis
## 774 negative regulation of cell death
## 775 negative regulation of DNA-binding transcription factor activity
## 776 negative regulation of tumor necrosis factor production
## 777 nuclear inner membrane
## 778 platelet aggregation
## 779 positive regulation of MAP kinase activity
## 780 positive regulation of neuron apoptotic process
## 781 protein N-linked glycosylation
## 782 regulation of exit from mitosis
## 783 regulation of phosphoprotein phosphatase activity
## 784 replication fork processing
## 785 response to hormone
## 786 ribosomal large subunit biogenesis
## 787 spermatid development
## 788 bone development
## 789 calcium channel activity
## 790 cation transport
## 791 cell morphogenesis
## 792 cell-matrix adhesion
## 793 cellular oxidant detoxification
## 794 cellular response to interleukin-1
## 795 CENP-A containing nucleosome assembly
## 796 cholesterol biosynthetic process
## 797 condensed nuclear chromosome
## 798 DNA damage checkpoint
## 799 endoplasmic reticulum unfolded protein response
## 800 endosome to lysosome transport
## 801 enzyme activator activity
## 802 epithelial cell differentiation
## 803 erythrocyte differentiation
## 804 exonucleolytic catabolism of deadenylated mRNA
## 805 ficolin-1-rich granule membrane
## 806 growth factor activity
## 807 heterochromatin
## 808 histone H3 acetylation
## 809 intermembrane lipid transfer
## 810 intrinsic apoptotic signaling pathway in response to DNA damage
## 811 membrane coat
## 812 metalloendopeptidase activity
## 813 miRNA binding
## 814 mitochondrial nucleoid
## 815 mitotic spindle assembly checkpoint
## 816 modulation of chemical synaptic transmission
## 817 multivesicular body assembly
## 818 negative regulation of autophagy
## 819 negative regulation of ERK1 and ERK2 cascade
## 820 negative regulation of inflammatory response to antigenic stimulus
## 821 nucleosome-dependent ATPase activity
## 822 phosphatase binding
## 823 positive regulation of osteoblast differentiation
## 824 positive regulation of protein kinase activity
## 825 positive regulation of smooth muscle cell proliferation
## 826 presynaptic membrane
## 827 protein K63-linked ubiquitination
## 828 protein phosphatase regulator activity
## 829 protein processing
## 830 protein self-association
## 831 response to cytokine
## 832 response to insulin
## 833 response to stimulus
## 834 RNA export from nucleus
## 835 single-stranded RNA binding
## 836 SNARE complex
## 837 sphingolipid metabolic process
## 838 spindle assembly
## 839 T cell costimulation
## 840 thyroid hormone receptor binding
## 841 transcription initiation from RNA polymerase I promoter
## 842 translational elongation
## 843 translesion synthesis
## 844 U4/U6 x U5 tri-snRNP complex
## 845 7-methylguanosine mRNA capping
## 846 amino acid transport
## 847 aminoacyl-tRNA ligase activity
## 848 apical part of cell
## 849 base-excision repair, gap-filling
## 850 blood microparticle
## 851 brush border
## 852 cartilage development
## 853 caveola
## 854 cell adhesion molecule binding
## 855 cellular response to growth factor stimulus
## 856 cellular response to ionizing radiation
## 857 cyclin-dependent protein serine/threonine kinase activity
## 858 DNA biosynthetic process
## 859 endoplasmic reticulum organization
## 860 endosome organization
## 861 extrinsic apoptotic signaling pathway
## 862 female pregnancy
## 863 G protein-coupled receptor binding
## 864 glutathione metabolic process
## 865 Hsp90 protein binding
## 866 intrinsic apoptotic signaling pathway
## 867 lipopolysaccharide-mediated signaling pathway
## 868 microtubule associated complex
## 869 mitotic spindle pole
## 870 negative regulation of GTPase activity
## 871 negative regulation of protein kinase B signaling
## 872 oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor
## 873 phosphatidylinositol-mediated signaling
## 874 phospholipid transport
## 875 platelet alpha granule lumen
## 876 polyubiquitin modification-dependent protein binding
## 877 positive regulation of endothelial cell migration
## 878 positive regulation of neuron differentiation
## 879 protein catabolic process
## 880 protein homotetramerization
## 881 protein K48-linked deubiquitination
## 882 protein targeting to mitochondrion
## 883 regulation of RNA splicing
## 884 response to ionizing radiation
## 885 RNA polymerase II general transcription initiation factor activity
## 886 SMAD binding
## 887 sodium ion transport
## 888 structural constituent of cytoskeleton
## 889 synaptic vesicle endocytosis
## 890 telomere maintenance via semi-conservative replication
## 891 termination of RNA polymerase I transcription
## 892 tRNA aminoacylation for protein translation
## 893 vesicle membrane
## 894 acrosomal vesicle
## 895 activation of JUN kinase activity
## 896 anion transmembrane transport
## 897 antigen processing and presentation
## 898 cellular response to calcium ion
## 899 condensed chromosome
## 900 establishment or maintenance of cell polarity
## 901 Golgi stack
## 902 hippocampus development
## 903 histone deacetylase complex
## 904 immunological synapse
## 905 integral component of mitochondrial inner membrane
## 906 kinesin binding
## 907 lysosome localization
## 908 microtubule motor activity
## 909 microvillus
## 910 mitotic chromosome condensation
## 911 motile cilium
## 912 negative regulation of cell cycle
## 913 negative regulation of epithelial cell proliferation
## 914 negative regulation of proteasomal ubiquitin-dependent protein catabolic process
## 915 negative regulation of signal transduction
## 916 NF-kappaB binding
## 917 nucleus organization
## 918 phosphatidylinositol-3-phosphate binding
## 919 positive regulation of DNA repair
## 920 positive regulation of insulin secretion involved in cellular response to glucose stimulus
## 921 positive regulation of interleukin-1 beta production
## 922 positive regulation of kinase activity
## 923 positive regulation of protein secretion
## 924 positive regulation of stress fiber assembly
## 925 positive regulation of viral transcription
## 926 protein targeting to membrane
## 927 proteolysis involved in cellular protein catabolic process
## 928 receptor tyrosine kinase binding
## 929 regulation of endocytosis
## 930 regulation of G protein-coupled receptor signaling pathway
## 931 repressing transcription factor binding
## 932 response to glucose
## 933 response to retinoic acid
## 934 response to wounding
## 935 retina development in camera-type eye
## 936 RNA polymerase II repressing transcription factor binding
## 937 serine-type endopeptidase activity
## 938 smoothened signaling pathway
## 939 spliceosomal snRNP assembly
## 940 translation elongation factor activity
## 941 voltage-gated potassium channel complex
## 942 ADP binding
## 943 amyloid fibril formation
## 944 calcium-mediated signaling
## 945 canonical Wnt signaling pathway
## 946 cation transmembrane transport
## 947 cellular response to reactive oxygen species
## 948 cellular response to retinoic acid
## 949 cholesterol binding
## 950 chromosome organization
## 951 cortical actin cytoskeleton
## 952 defense response to Gram-negative bacterium
## 953 endoribonuclease activity
## 954 enzyme inhibitor activity
## 955 hematopoietic progenitor cell differentiation
## 956 histone acetyltransferase activity
## 957 histone H4 acetylation
## 958 intermediate filament
## 959 kinesin complex
## 960 lamellipodium assembly
## 961 learning
## 962 mRNA 5'-UTR binding
## 963 multivesicular body
## 964 negative regulation of I-kappaB kinase/NF-kappaB signaling
## 965 negative regulation of interleukin-6 production
## 966 neuromuscular junction
## 967 nucleotide-excision repair
## 968 peptidyl-prolyl cis-trans isomerase activity
## 969 phosphatidylinositol dephosphorylation
## 970 phosphatidylserine binding
## 971 positive regulation of blood vessel endothelial cell migration
## 972 positive regulation of protein import into nucleus
## 973 protein destabilization
## 974 protein N-linked glycosylation via asparagine
## 975 protein O-linked glycosylation
## 976 protein peptidyl-prolyl isomerization
## 977 protein secretion
## 978 protein targeting
## 979 regulation of cell differentiation
## 980 regulation of defense response to virus by virus
## 981 regulation of megakaryocyte differentiation
## 982 ribosomal large subunit assembly
## 983 RNA polymerase II activating transcription factor binding
## 984 small-subunit processome
## 985 SNAP receptor activity
## 986 sodium ion transmembrane transport
## 987 tRNA modification
## 988 tumor necrosis factor receptor binding
## 989 viral protein processing
## 990 14-3-3 protein binding
## 991 aminopeptidase activity
## 992 ATPase-coupled transmembrane transporter activity
## 993 autophagosome membrane
## 994 basal plasma membrane
## 995 bicellular tight junction assembly
## 996 carbohydrate transport
## 997 cell redox homeostasis
## 998 cellular response to amino acid stimulus
## 999 cellular response to virus
## 1000 chloride transport
## 1001 cytoplasmic microtubule organization
## 1002 determination of left/right symmetry
## 1003 DNA replication origin binding
## 1004 DNA-dependent DNA replication
## 1005 embryonic organ development
## 1006 epidermal growth factor receptor signaling pathway
## 1007 generation of precursor metabolites and energy
## 1008 GTPase binding
## 1009 heart morphogenesis
## 1010 histone methyltransferase complex
## 1011 inositol phosphate metabolic process
## 1012 interleukin-12-mediated signaling pathway
## 1013 lipid homeostasis
## 1014 mitochondrial small ribosomal subunit
## 1015 mRNA polyadenylation
## 1016 MyD88-dependent toll-like receptor signaling pathway
## 1017 NAD binding
## 1018 NAD+ ADP-ribosyltransferase activity
## 1019 neurogenesis
## 1020 neuron apoptotic process
## 1021 neurotransmitter transport
## 1022 non-motile cilium assembly
## 1023 nuclear receptor activity
## 1024 phosphatidylinositol-3,4,5-trisphosphate binding
## 1025 phosphoprotein binding
## 1026 phosphotyrosine residue binding
## 1027 positive regulation of interleukin-12 production
## 1028 positive regulation of viral genome replication
## 1029 preribosome, large subunit precursor
## 1030 protein serine/threonine/tyrosine kinase activity
## 1031 regulation of tumor necrosis factor-mediated signaling pathway
## 1032 replication fork
## 1033 response to estrogen
## 1034 serine-type peptidase activity
## 1035 SH2 domain binding
## 1036 sterol biosynthetic process
## 1037 stress-activated MAPK cascade
## 1038 transcription factor TFIID complex
## 1039 vesicle fusion
## 1040 adenylate cyclase-activating G protein-coupled receptor signaling pathway
## 1041 ATP metabolic process
## 1042 ATP-dependent microtubule motor activity
## 1043 base-excision repair
## 1044 basement membrane
## 1045 cellular response to epidermal growth factor stimulus
## 1046 cellular response to nerve growth factor stimulus
## 1047 clathrin binding
## 1048 clathrin-dependent endocytosis
## 1049 cognition
## 1050 Cul3-RING ubiquitin ligase complex
## 1051 cyclin binding
## 1052 dendrite cytoplasm
## 1053 DNA-templated transcription, initiation
## 1054 E-box binding
## 1055 extracellular matrix structural constituent
## 1056 Flemming body
## 1057 germ cell development
## 1058 global genome nucleotide-excision repair
## 1059 gluconeogenesis
## 1060 histone acetyltransferase binding
## 1061 histone acetyltransferase complex
## 1062 Hsp70 protein binding
## 1063 integrator complex
## 1064 intermediate filament cytoskeleton
## 1065 intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## 1066 keratinocyte differentiation
## 1067 liver regeneration
## 1068 maturation of SSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 1069 microtubule bundle formation
## 1070 MLL1 complex
## 1071 NADP binding
## 1072 negative regulation of cell adhesion
## 1073 negative regulation of fat cell differentiation
## 1074 negative regulation of neuron differentiation
## 1075 negative regulation of Notch signaling pathway
## 1076 negative regulation of phosphatase activity
## 1077 negative regulation of phosphoprotein phosphatase activity
## 1078 negative regulation of protein catabolic process
## 1079 negative regulation of viral genome replication
## 1080 nuclear chromosome
## 1081 nucleosome binding
## 1082 nucleotide-excision repair, DNA gap filling
## 1083 pericentric heterochromatin
## 1084 phosphatidylinositol 3-kinase signaling
## 1085 phospholipid metabolic process
## 1086 phosphoric diester hydrolase activity
## 1087 positive regulation of cell adhesion
## 1088 positive regulation of chemokine production
## 1089 positive regulation of cytokinesis
## 1090 positive regulation of DNA replication
## 1091 positive regulation of erythrocyte differentiation
## 1092 positive regulation of G1/S transition of mitotic cell cycle
## 1093 positive regulation of telomere maintenance via telomerase
## 1094 positive regulation of TOR signaling
## 1095 positive regulation of tyrosine phosphorylation of STAT protein
## 1096 protein insertion into ER membrane
## 1097 protein K63-linked deubiquitination
## 1098 protein phosphatase 2A binding
## 1099 protein serine/threonine kinase activator activity
## 1100 protein tyrosine/serine/threonine phosphatase activity
## 1101 regulation of cell motility
## 1102 regulation of DNA replication
## 1103 regulation of I-kappaB kinase/NF-kappaB signaling
## 1104 regulation of synaptic vesicle exocytosis
## 1105 RNA polymerase II complex binding
## 1106 RNA polymerase II transcription factor binding
## 1107 site of DNA damage
## 1108 somatic stem cell population maintenance
## 1109 spinal cord development
## 1110 T cell differentiation
## 1111 telomere maintenance via telomerase
## 1112 thymus development
## 1113 translation initiation factor binding
## 1114 tricarboxylic acid cycle
## 1115 tRNA export from nucleus
## 1116 U12-type spliceosomal complex
## 1117 visual learning
## 1118 xenobiotic metabolic process
## 1119 actin cytoskeleton reorganization
## 1120 actin filament polymerization
## 1121 antigen processing and presentation of peptide antigen via MHC class I
## 1122 antimicrobial humoral immune response mediated by antimicrobial peptide
## 1123 B cell receptor signaling pathway
## 1124 beta-tubulin binding
## 1125 carboxylic ester hydrolase activity
## 1126 cell motility
## 1127 cellular response to cAMP
## 1128 cellular response to gamma radiation
## 1129 cellular response to heat
## 1130 centrosome duplication
## 1131 ciliary tip
## 1132 collagen binding
## 1133 collagen fibril organization
## 1134 condensed chromosome, centromeric region
## 1135 cyclin-dependent protein kinase holoenzyme complex
## 1136 dendrite morphogenesis
## 1137 disordered domain specific binding
## 1138 DNA metabolic process
## 1139 embryonic placenta development
## 1140 error-free translesion synthesis
## 1141 error-prone translesion synthesis
## 1142 extracellular matrix disassembly
## 1143 extracellular vesicle
## 1144 flagellated sperm motility
## 1145 forebrain development
## 1146 gene expression
## 1147 glycosphingolipid metabolic process
## 1148 GTP-dependent protein binding
## 1149 humoral immune response
## 1150 intra-Golgi vesicle-mediated transport
## 1151 lactation
## 1152 limb development
## 1153 locomotory behavior
## 1154 microtubule plus-end binding
## 1155 mitochondrial cytochrome c oxidase assembly
## 1156 negative regulation of BMP signaling pathway
## 1157 negative regulation of cold-induced thermogenesis
## 1158 negative regulation of cyclin-dependent protein serine/threonine kinase activity
## 1159 negative regulation of TOR signaling
## 1160 negative regulation of type I interferon production
## 1161 negative regulation of Wnt signaling pathway
## 1162 neuron development
## 1163 nucleotide-binding oligomerization domain containing signaling pathway
## 1164 O-glycan processing
## 1165 one-carbon metabolic process
## 1166 peptidase inhibitor activity
## 1167 peptide binding
## 1168 phosphatidylinositol metabolic process
## 1169 pigmentation
## 1170 positive regulation of axon extension
## 1171 positive regulation of fat cell differentiation
## 1172 positive regulation of fibroblast proliferation
## 1173 positive regulation of insulin secretion
## 1174 positive regulation of interferon-alpha production
## 1175 positive regulation of neuron death
## 1176 positive regulation of protein localization to nucleus
## 1177 positive regulation of transforming growth factor beta receptor signaling pathway
## 1178 posttranscriptional regulation of gene expression
## 1179 potassium channel activity
## 1180 protein ADP-ribosylation
## 1181 protein localization to nucleus
## 1182 protein phosphatase inhibitor activity
## 1183 reciprocal meiotic recombination
## 1184 regulation of actin filament polymerization
## 1185 regulation of cytokine production
## 1186 regulation of synaptic plasticity
## 1187 response to activity
## 1188 response to glucocorticoid
## 1189 response to heat
## 1190 response to interleukin-1
## 1191 ribosomal small subunit biogenesis
## 1192 RNA phosphodiester bond hydrolysis, exonucleolytic
## 1193 signaling receptor complex adaptor activity
## 1194 single fertilization
## 1195 spindle midzone
## 1196 substantia nigra development
## 1197 TRIF-dependent toll-like receptor signaling pathway
## 1198 ubiquitin-like protein ligase binding
## 1199 acetylglucosaminyltransferase activity
## 1200 actin polymerization or depolymerization
## 1201 aerobic respiration
## 1202 anaphase-promoting complex
## 1203 androgen receptor binding
## 1204 anterior/posterior pattern specification
## 1205 B cell activation
## 1206 calcium-dependent phospholipid binding
## 1207 cellular defense response
## 1208 centriole replication
## 1209 cerebellum development
## 1210 chaperone cofactor-dependent protein refolding
## 1211 chloride channel activity
## 1212 COP9 signalosome
## 1213 cyclin-dependent protein serine/threonine kinase regulator activity
## 1214 DNA-directed DNA polymerase activity
## 1215 endoplasmic reticulum quality control compartment
## 1216 epidermis development
## 1217 ERBB2 signaling pathway
## 1218 establishment of protein localization
## 1219 euchromatin
## 1220 eukaryotic translation initiation factor 3 complex
## 1221 extrinsic apoptotic signaling pathway via death domain receptors
## 1222 glycogen metabolic process
## 1223 GPI anchor biosynthetic process
## 1224 granulocyte differentiation
## 1225 histone deacetylase activity
## 1226 histone-lysine N-methyltransferase activity
## 1227 hydrolase activity, hydrolyzing O-glycosyl compounds
## 1228 integral component of lumenal side of endoplasmic reticulum membrane
## 1229 intraciliary transport involved in cilium assembly
## 1230 K63-linked polyubiquitin modification-dependent protein binding
## 1231 lysosomal transport
## 1232 membrane fusion
## 1233 memory
## 1234 methyl-CpG binding
## 1235 microtubule nucleation
## 1236 microtubule plus-end
## 1237 mRNA catabolic process
## 1238 mRNA stabilization
## 1239 negative regulation of DNA binding
## 1240 negative regulation of DNA recombination at telomere
## 1241 negative regulation of extrinsic apoptotic signaling pathway via death domain receptors
## 1242 negative regulation of fibroblast proliferation
## 1243 negative regulation of peptidase activity
## 1244 negative regulation of T cell proliferation
## 1245 nuclear envelope organization
## 1246 nuclear hormone receptor binding
## 1247 nucleobase-containing small molecule interconversion
## 1248 nucleotide metabolic process
## 1249 nucleotide-excision repair, preincision complex assembly
## 1250 outflow tract morphogenesis
## 1251 oxidative phosphorylation
## 1252 peroxisome organization
## 1253 positive regulation of cell cycle
## 1254 positive regulation of defense response to virus by host
## 1255 positive regulation of interleukin-10 production
## 1256 positive regulation of intrinsic apoptotic signaling pathway
## 1257 positive regulation of macroautophagy
## 1258 positive regulation of microtubule polymerization
## 1259 positive regulation of mitotic cell cycle
## 1260 positive regulation of neurogenesis
## 1261 positive regulation of nitric oxide biosynthetic process
## 1262 positive regulation of Notch signaling pathway
## 1263 positive regulation of pri-miRNA transcription by RNA polymerase II
## 1264 positive regulation of protein tyrosine kinase activity
## 1265 positive regulation of Ras protein signal transduction
## 1266 positive regulation of telomerase activity
## 1267 potassium channel regulator activity
## 1268 protein kinase B signaling
## 1269 protein methylation
## 1270 protein-DNA complex
## 1271 receptor internalization
## 1272 regulation of cell adhesion
## 1273 regulation of metabolic process
## 1274 response to calcium ion
## 1275 response to gamma radiation
## 1276 response to peptide hormone
## 1277 RNA catabolic process
## 1278 RNA methylation
## 1279 sarcoplasmic reticulum
## 1280 signaling adaptor activity
## 1281 spindle organization
## 1282 stress granule assembly
## 1283 substrate adhesion-dependent cell spreading
## 1284 SWI/SNF complex
## 1285 synapse organization
## 1286 transcription by RNA polymerase III
## 1287 U2-type catalytic step 2 spliceosome
## 1288 3'-5'-exoribonuclease activity
## 1289 acetyltransferase activity
## 1290 actin monomer binding
## 1291 activating transcription factor binding
## 1292 aggresome
## 1293 anterograde axonal transport
## 1294 beta-catenin-TCF complex assembly
## 1295 brush border membrane
## 1296 cation channel activity
## 1297 cell chemotaxis
## 1298 cellular response to estradiol stimulus
## 1299 cellular response to glucose starvation
## 1300 chloride transmembrane transport
## 1301 chromosome condensation
## 1302 clathrin adaptor activity
## 1303 collagen trimer
## 1304 copper ion binding
## 1305 cortical actin cytoskeleton organization
## 1306 cytoplasmic translational initiation
## 1307 DNA methylation
## 1308 epidermal growth factor receptor binding
## 1309 epithelial to mesenchymal transition
## 1310 eukaryotic 43S preinitiation complex
## 1311 fatty-acyl-CoA binding
## 1312 formation of cytoplasmic translation initiation complex
## 1313 four-way junction DNA binding
## 1314 GABA-ergic synapse
## 1315 gamma-tubulin binding
## 1316 Golgi to endosome transport
## 1317 Golgi to plasma membrane transport
## 1318 growth factor binding
## 1319 heart looping
## 1320 histone lysine methylation
## 1321 homophilic cell adhesion via plasma membrane adhesion molecules
## 1322 Ino80 complex
## 1323 intrinsic apoptotic signaling pathway by p53 class mediator
## 1324 iron ion homeostasis
## 1325 learning or memory
## 1326 lung alveolus development
## 1327 lysine-acetylated histone binding
## 1328 MAP kinase kinase kinase activity
## 1329 mitochondrial calcium ion transmembrane transport
## 1330 mitotic G2 DNA damage checkpoint
## 1331 negative regulation of cell differentiation
## 1332 negative regulation of extrinsic apoptotic signaling pathway
## 1333 negative regulation of gene expression, epigenetic
## 1334 negative regulation of insulin receptor signaling pathway
## 1335 negative regulation of MAP kinase activity
## 1336 negative regulation of microtubule depolymerization
## 1337 negative regulation of osteoblast differentiation
## 1338 negative regulation of protein-containing complex assembly
## 1339 negative regulation of stress fiber assembly
## 1340 negative regulation of T cell receptor signaling pathway
## 1341 negative regulation of type I interferon-mediated signaling pathway
## 1342 neutrophil chemotaxis
## 1343 nuclear import signal receptor activity
## 1344 nucleocytoplasmic transport
## 1345 nucleosomal DNA binding
## 1346 nucleotide-excision repair, DNA damage recognition
## 1347 nucleotide-excision repair, DNA duplex unwinding
## 1348 oogenesis
## 1349 osteoclast differentiation
## 1350 ovarian follicle development
## 1351 PcG protein complex
## 1352 phosphatidylinositol-4-phosphate binding
## 1353 photoreceptor cell maintenance
## 1354 photoreceptor outer segment
## 1355 placenta development
## 1356 podosome
## 1357 positive regulation of ATPase activity
## 1358 positive regulation of axonogenesis
## 1359 positive regulation of B cell proliferation
## 1360 positive regulation of BMP signaling pathway
## 1361 positive regulation of cell cycle arrest
## 1362 positive regulation of cyclin-dependent protein serine/threonine kinase activity
## 1363 positive regulation of epithelial cell migration
## 1364 positive regulation of epithelial cell proliferation
## 1365 positive regulation of extrinsic apoptotic signaling pathway
## 1366 positive regulation of glucose import
## 1367 positive regulation of JUN kinase activity
## 1368 positive regulation of pathway-restricted SMAD protein phosphorylation
## 1369 positive regulation of phagocytosis
## 1370 positive regulation of protein dephosphorylation
## 1371 positive regulation of protein targeting to mitochondrion
## 1372 positive regulation of substrate adhesion-dependent cell spreading
## 1373 protein import into peroxisome membrane
## 1374 protein K11-linked ubiquitination
## 1375 protein kinase inhibitor activity
## 1376 protein maturation
## 1377 protein phosphatase 1 binding
## 1378 protein-cysteine S-palmitoyltransferase activity
## 1379 purine nucleotide biosynthetic process
## 1380 Rac protein signal transduction
## 1381 regulation of blood pressure
## 1382 regulation of cytoskeleton organization
## 1383 regulation of DNA-binding transcription factor activity
## 1384 regulation of exocytosis
## 1385 regulation of focal adhesion assembly
## 1386 regulation of insulin secretion
## 1387 regulation of mitotic spindle assembly
## 1388 regulation of protein kinase activity
## 1389 regulation of translational initiation
## 1390 response to axon injury
## 1391 response to cadmium ion
## 1392 response to progesterone
## 1393 RNA phosphodiester bond hydrolysis
## 1394 semaphorin-plexin signaling pathway
## 1395 snRNA processing
## 1396 somitogenesis
## 1397 spliceosomal complex assembly
## 1398 T cell homeostasis
## 1399 telomeric DNA binding
## 1400 TOR signaling
## 1401 transport vesicle membrane
## 1402 TRAPP complex
## 1403 U1 snRNP
## 1404 vesicle budding from membrane
## 1405 viral budding via host ESCRT complex
## 1406 Wnt signaling pathway, calcium modulating pathway
## 1407 3'-5' DNA helicase activity
## 1408 actomyosin structure organization
## 1409 adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway
## 1410 adipose tissue development
## 1411 adult locomotory behavior
## 1412 antibacterial humoral response
## 1413 aorta development
## 1414 autophagosome maturation
## 1415 axon terminus
## 1416 axonal growth cone
## 1417 barbed-end actin filament capping
## 1418 blood vessel development
## 1419 camera-type eye development
## 1420 cardiac muscle contraction
## 1421 cellular protein-containing complex assembly
## 1422 cellular response to fatty acid
## 1423 cellular response to interferon-beta
## 1424 cellular response to interleukin-4
## 1425 cellular response to transforming growth factor beta stimulus
## 1426 chaperone-mediated protein folding
## 1427 chromatin silencing
## 1428 ciliary transition zone
## 1429 clathrin coat assembly
## 1430 COPII-coated vesicle cargo loading
## 1431 cristae formation
## 1432 Cul4-RING E3 ubiquitin ligase complex
## 1433 dendrite development
## 1434 determination of adult lifespan
## 1435 DNA double-strand break processing
## 1436 DNA polymerase binding
## 1437 early endosome to late endosome transport
## 1438 embryonic digit morphogenesis
## 1439 endoplasmic reticulum exit site
## 1440 establishment of mitotic spindle orientation
## 1441 eukaryotic 48S preinitiation complex
## 1442 execution phase of apoptosis
## 1443 FAD binding
## 1444 filamentous actin
## 1445 folic acid metabolic process
## 1446 gamete generation
## 1447 glycolytic process
## 1448 Golgi to plasma membrane protein transport
## 1449 histone H3 deacetylation
## 1450 homeostasis of number of cells
## 1451 innate immune response in mucosa
## 1452 interleukin-27-mediated signaling pathway
## 1453 kinetochore assembly
## 1454 lipopolysaccharide binding
## 1455 megakaryocyte development
## 1456 melanosome organization
## 1457 mesoderm development
## 1458 metalloaminopeptidase activity
## 1459 MHC class II protein complex
## 1460 mismatch repair
## 1461 mitochondrial ribosome
## 1462 myelination
## 1463 myeloid cell differentiation
## 1464 N-acetyltransferase activity
## 1465 N-glycan processing
## 1466 negative regulation of double-strand break repair via homologous recombination
## 1467 negative regulation of interferon-gamma production
## 1468 negative regulation of intrinsic apoptotic signaling pathway
## 1469 negative regulation of mitotic cell cycle
## 1470 negative regulation of NIK/NF-kappaB signaling
## 1471 negative regulation of ubiquitin protein ligase activity
## 1472 neural crest cell migration
## 1473 neural tube development
## 1474 NuA4 histone acetyltransferase complex
## 1475 nuclear receptor binding
## 1476 nuclear-transcribed mRNA poly(A) tail shortening
## 1477 palmitoyltransferase activity
## 1478 peptide antigen binding
## 1479 phosphatidic acid binding
## 1480 phosphatidylcholine acyl-chain remodeling
## 1481 phosphatidylcholine binding
## 1482 phosphatidylcholine biosynthetic process
## 1483 phosphatidylinositol 3-kinase complex
## 1484 poly(U) RNA binding
## 1485 positive regulation of calcium ion transport
## 1486 positive regulation of catalytic activity
## 1487 positive regulation of cell death
## 1488 positive regulation of cell differentiation
## 1489 positive regulation of DNA binding
## 1490 positive regulation of exocytosis
## 1491 positive regulation of filopodium assembly
## 1492 positive regulation of histone acetylation
## 1493 positive regulation of innate immune response
## 1494 positive regulation of receptor internalization
## 1495 positive regulation of transcription initiation from RNA polymerase II promoter
## 1496 presynaptic active zone
## 1497 production of miRNAs involved in gene silencing by miRNA
## 1498 protein ADP-ribosylase activity
## 1499 protein kinase C-activating G protein-coupled receptor signaling pathway
## 1500 protein palmitoylation
## 1501 protein targeting to lysosome
## 1502 regulation of actin cytoskeleton reorganization
## 1503 regulation of cell morphogenesis
## 1504 regulation of cell size
## 1505 regulation of centrosome duplication
## 1506 regulation of membrane potential
## 1507 regulation of mitochondrion organization
## 1508 regulation of neurogenesis
## 1509 regulation of protein localization to plasma membrane
## 1510 regulation of transforming growth factor beta receptor signaling pathway
## 1511 response to antibiotic
## 1512 response to mechanical stimulus
## 1513 sarcomere
## 1514 sarcoplasmic reticulum membrane
## 1515 sister chromatid cohesion
## 1516 skeletal muscle cell differentiation
## 1517 SMAD protein signal transduction
## 1518 stereocilium
## 1519 structural constituent of nuclear pore
## 1520 synapse assembly
## 1521 synaptic membrane
## 1522 TBP-class protein binding
## 1523 toll-like receptor signaling pathway
## 1524 toxin transport
## 1525 transcription elongation factor complex
## 1526 transferrin transport
## 1527 U2 snRNP
## 1528 ubiquitin conjugating enzyme activity
## 1529 ubiquitin conjugating enzyme binding
## 1530 vasculogenesis
## 1531 2-oxoglutarate-dependent dioxygenase activity
## 1532 activation of protein kinase B activity
## 1533 aggrephagy
## 1534 anatomical structure development
## 1535 animal organ regeneration
## 1536 antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## 1537 ATP biosynthetic process
## 1538 axon extension
## 1539 B cell homeostasis
## 1540 beta-catenin destruction complex disassembly
## 1541 bile acid and bile salt transport
## 1542 bile acid biosynthetic process
## 1543 binding of sperm to zona pellucida
## 1544 biosynthetic process
## 1545 blastocyst development
## 1546 blastocyst formation
## 1547 camera-type eye morphogenesis
## 1548 cAMP response element binding
## 1549 carbohydrate phosphorylation
## 1550 carboxy-lyase activity
## 1551 cell aging
## 1552 cell death
## 1553 cellular amino acid biosynthetic process
## 1554 cellular response to BMP stimulus
## 1555 cellular response to low-density lipoprotein particle stimulus
## 1556 centrosome localization
## 1557 ceramide biosynthetic process
## 1558 clathrin-coated vesicle membrane
## 1559 condensed nuclear chromosome kinetochore
## 1560 COPI-coated vesicle membrane
## 1561 coreceptor activity
## 1562 cytokine binding
## 1563 dendritic shaft
## 1564 DNA strand elongation involved in DNA replication
## 1565 endoplasmic reticulum mannose trimming
## 1566 energy homeostasis
## 1567 ERK1 and ERK2 cascade
## 1568 establishment of cell polarity
## 1569 excitatory postsynaptic potential
## 1570 gastrulation
## 1571 histone H3-K4 methylation
## 1572 histone methylation
## 1573 homeostasis of number of cells within a tissue
## 1574 hormone-mediated signaling pathway
## 1575 inner cell mass cell proliferation
## 1576 inorganic anion transport
## 1577 inositol phosphate dephosphorylation
## 1578 interleukin-6-mediated signaling pathway
## 1579 intracellular transport
## 1580 intrinsic component of plasma membrane
## 1581 iron-sulfur cluster assembly
## 1582 lamellipodium membrane
## 1583 large ribosomal subunit
## 1584 low-density lipoprotein particle clearance
## 1585 lysophospholipase activity
## 1586 maintenance of blood-brain barrier
## 1587 maturation of SSU-rRNA
## 1588 MHC class II protein complex binding
## 1589 microtubule-based process
## 1590 midbody abscission
## 1591 mitochondrial fusion
## 1592 mitogen-activated protein kinase binding
## 1593 mitotic sister chromatid cohesion
## 1594 mRNA cleavage and polyadenylation specificity factor complex
## 1595 mRNA destabilization
## 1596 mRNA splice site selection
## 1597 myosin complex
## 1598 negative chemotaxis
## 1599 negative regulation of cytokine production involved in inflammatory response
## 1600 negative regulation of endothelial cell apoptotic process
## 1601 negative regulation of epidermal growth factor receptor signaling pathway
## 1602 negative regulation of Ras protein signal transduction
## 1603 negative regulation of toll-like receptor signaling pathway
## 1604 nuclear localization sequence binding
## 1605 nuclear replication fork
## 1606 nucleotide-excision repair, DNA incision, 3'-to lesion
## 1607 nucleotide-excision repair, preincision complex stabilization
## 1608 oxidoreductase activity, acting on the CH-CH group of donors
## 1609 pattern specification process
## 1610 peptidyl-L-cysteine S-palmitoylation
## 1611 pericentriolar material
## 1612 phagocytic cup
## 1613 phosphatidylinositol phosphate binding
## 1614 phosphatidylinositol-3-phosphatase activity
## 1615 phosphatidylinositol-3,4-bisphosphate binding
## 1616 phospholipid translocation
## 1617 photoreceptor connecting cilium
## 1618 positive regulation of cell-substrate adhesion
## 1619 positive regulation of cholesterol efflux
## 1620 positive regulation of cytokine production involved in inflammatory response
## 1621 positive regulation of dendrite morphogenesis
## 1622 positive regulation of DNA-templated transcription, elongation
## 1623 positive regulation of double-strand break repair via nonhomologous end joining
## 1624 positive regulation of epidermal growth factor receptor signaling pathway
## 1625 positive regulation of glial cell proliferation
## 1626 positive regulation of interleukin-2 production
## 1627 positive regulation of interleukin-4 production
## 1628 positive regulation of lamellipodium assembly
## 1629 positive regulation of mRNA splicing, via spliceosome
## 1630 positive regulation of nitric-oxide synthase activity
## 1631 positive regulation of potassium ion transmembrane transport
## 1632 positive regulation of protein export from nucleus
## 1633 positive regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## 1634 positive regulation of proteolysis
## 1635 positive regulation of smoothened signaling pathway
## 1636 positive regulation of stress-activated MAPK cascade
## 1637 positive regulation of T cell activation
## 1638 positive regulation of transcription of Notch receptor target
## 1639 positive regulation of translational initiation
## 1640 positive regulation of triglyceride biosynthetic process
## 1641 positive regulation of vascular associated smooth muscle cell proliferation
## 1642 precatalytic spliceosome
## 1643 proteasome assembly
## 1644 proteasome binding
## 1645 protein folding chaperone
## 1646 protein import into mitochondrial matrix
## 1647 protein kinase A regulatory subunit binding
## 1648 protein phosphatase type 2A complex
## 1649 protein tyrosine kinase binding
## 1650 receptor signaling pathway via JAK-STAT
## 1651 regulation of calcium ion transport
## 1652 regulation of double-strand break repair via homologous recombination
## 1653 regulation of embryonic development
## 1654 regulation of glucose metabolic process
## 1655 regulation of microtubule cytoskeleton organization
## 1656 regulation of mitochondrial membrane potential
## 1657 regulation of mitotic nuclear division
## 1658 regulation of myelination
## 1659 regulation of protein catabolic process
## 1660 regulation of signal transduction
## 1661 release of sequestered calcium ion into cytosol
## 1662 response to exogenous dsRNA
## 1663 response to radiation
## 1664 response to tumor necrosis factor
## 1665 response to X-ray
## 1666 retinoid X receptor binding
## 1667 ribosomal small subunit assembly
## 1668 RNA polymerase binding
## 1669 RNA polymerase II core promoter sequence-specific DNA binding
## 1670 RNA polymerase II transcription corepressor binding
## 1671 RNA polymerase II, core complex
## 1672 RNA polymerase III complex
## 1673 roof of mouth development
## 1674 rRNA catabolic process
## 1675 scavenger receptor activity
## 1676 small nuclear ribonucleoprotein complex
## 1677 snoRNA binding
## 1678 T cell differentiation in thymus
## 1679 T cell proliferation
## 1680 tau-protein kinase activity
## 1681 telomerase RNA binding
## 1682 transcription coactivator binding
## 1683 transforming growth factor beta binding
## 1684 translation regulator activity
## 1685 U2-type prespliceosome
## 1686 U6 snRNA binding
## 1687 ubiquitin-ubiquitin ligase activity
## 1688 vasculature development
## 1689 ventricular septum development
## 1690 vesicle docking
## 1691 vesicle docking involved in exocytosis
## 1692 3'-5' exonuclease activity
## 1693 acetylgalactosaminyltransferase activity
## 1694 actin filament bundle assembly
## 1695 activation of innate immune response
## 1696 alpha-tubulin binding
## 1697 anterograde synaptic vesicle transport
## 1698 antigen binding
## 1699 apoptotic cell clearance
## 1700 arachidonic acid metabolic process
## 1701 bHLH transcription factor binding
## 1702 bicarbonate transport
## 1703 blastocyst hatching
## 1704 BLOC-1 complex
## 1705 blood circulation
## 1706 bone mineralization
## 1707 branched-chain amino acid catabolic process
## 1708 branching involved in blood vessel morphogenesis
## 1709 canonical glycolysis
## 1710 cardiac conduction
## 1711 cargo receptor activity
## 1712 cation binding
## 1713 cell maturation
## 1714 cellular lipid metabolic process
## 1715 cellular response to cadmium ion
## 1716 cellular response to hormone stimulus
## 1717 cellular response to peptide
## 1718 chaperone-mediated protein complex assembly
## 1719 chondrocyte differentiation
## 1720 ciliary membrane
## 1721 clathrin-coated endocytic vesicle
## 1722 COPI vesicle coat
## 1723 COPII vesicle coat
## 1724 cullin family protein binding
## 1725 cytoskeleton-dependent cytokinesis
## 1726 defense response to protozoan
## 1727 double-strand break repair via break-induced replication
## 1728 dynein complex binding
## 1729 embryonic limb morphogenesis
## 1730 entrainment of circadian clock by photoperiod
## 1731 extrinsic component of plasma membrane
## 1732 eye development
## 1733 face development
## 1734 Fanconi anaemia nuclear complex
## 1735 ferrous iron binding
## 1736 fertilization
## 1737 fibroblast growth factor binding
## 1738 filopodium tip
## 1739 Golgi vesicle transport
## 1740 Golgi-associated vesicle
## 1741 hemostasis
## 1742 hippo signaling
## 1743 hippocampal mossy fiber to CA3 synapse
## 1744 histone demethylase activity
## 1745 import into nucleus
## 1746 inclusion body
## 1747 integral component of mitochondrial outer membrane
## 1748 intracellular cholesterol transport
## 1749 L-ascorbic acid binding
## 1750 lipid biosynthetic process
## 1751 long-term memory
## 1752 M band
## 1753 macrophage differentiation
## 1754 MAP kinase kinase activity
## 1755 maturation of LSU-rRNA
## 1756 metal ion transport
## 1757 MHC class I protein binding
## 1758 microtubule depolymerization
## 1759 misfolded protein binding
## 1760 mitochondria-associated endoplasmic reticulum membrane
## 1761 mitotic nuclear envelope disassembly
## 1762 muscle cell cellular homeostasis
## 1763 negative regulation of apoptotic signaling pathway
## 1764 negative regulation of cell cycle arrest
## 1765 negative regulation of cytokine production
## 1766 negative regulation of endothelial cell proliferation
## 1767 negative regulation of interferon-beta production
## 1768 negative regulation of interleukin-2 production
## 1769 negative regulation of JNK cascade
## 1770 negative regulation of macroautophagy
## 1771 negative regulation of mRNA splicing, via spliceosome
## 1772 negative regulation of protein serine/threonine kinase activity
## 1773 negative regulation of smoothened signaling pathway
## 1774 negative regulation of viral entry into host cell
## 1775 neuromuscular junction development
## 1776 neuromuscular process controlling balance
## 1777 neurotransmitter secretion
## 1778 nuclear-transcribed mRNA catabolic process
## 1779 oocyte maturation
## 1780 P-body assembly
## 1781 phagophore assembly site
## 1782 phospholipase A2 activity
## 1783 platelet-derived growth factor receptor signaling pathway
## 1784 positive regulation of activated T cell proliferation
## 1785 positive regulation of bone mineralization
## 1786 positive regulation of cell-matrix adhesion
## 1787 positive regulation of collagen biosynthetic process
## 1788 positive regulation of dendritic spine development
## 1789 positive regulation of double-strand break repair via homologous recombination
## 1790 positive regulation of focal adhesion assembly
## 1791 positive regulation of G2/M transition of mitotic cell cycle
## 1792 positive regulation of intracellular protein transport
## 1793 positive regulation of long-term synaptic potentiation
## 1794 positive regulation of phosphatidylinositol 3-kinase activity
## 1795 positive regulation of protein autophosphorylation
## 1796 positive regulation of protein targeting to membrane
## 1797 positive regulation of release of cytochrome c from mitochondria
## 1798 positive regulation of telomere capping
## 1799 positive regulation of TORC1 signaling
## 1800 positive regulation of ubiquitin protein ligase activity
## 1801 proline-rich region binding
## 1802 proteasome accessory complex
## 1803 protein acetylation
## 1804 protein deacetylation
## 1805 protein export from nucleus
## 1806 protein localization to cell surface
## 1807 protein localization to centrosome
## 1808 protein localization to chromatin
## 1809 protein localization to chromosome, telomeric region
## 1810 protein monoubiquitination
## 1811 protein targeting to vacuole
## 1812 protein transmembrane transporter activity
## 1813 pseudouridine synthase activity
## 1814 pseudouridine synthesis
## 1815 purine ribonucleoside monophosphate biosynthetic process
## 1816 purinergic nucleotide receptor signaling pathway
## 1817 pyridoxal phosphate binding
## 1818 pyruvate metabolic process
## 1819 receptor recycling
## 1820 regulation of androgen receptor signaling pathway
## 1821 regulation of dendritic spine morphogenesis
## 1822 regulation of establishment of cell polarity
## 1823 regulation of gene expression, epigenetic
## 1824 regulation of gluconeogenesis
## 1825 regulation of innate immune response
## 1826 regulation of multicellular organism growth
## 1827 regulation of necroptotic process
## 1828 regulation of neuron differentiation
## 1829 regulation of Notch signaling pathway
## 1830 regulation of phosphatidylinositol 3-kinase activity
## 1831 regulation of proteasomal ubiquitin-dependent protein catabolic process
## 1832 regulation of protein-containing complex assembly
## 1833 release of cytochrome c from mitochondria
## 1834 resolution of meiotic recombination intermediates
## 1835 response to amino acid
## 1836 response to cAMP
## 1837 response to cocaine
## 1838 response to cold
## 1839 response to electrical stimulus
## 1840 response to zinc ion
## 1841 retromer complex
## 1842 RISC complex
## 1843 RNA cap binding
## 1844 RNA modification
## 1845 RNA stem-loop binding
## 1846 S-adenosylmethionine-dependent methyltransferase activity
## 1847 serine-type endopeptidase inhibitor activity
## 1848 single-stranded DNA helicase activity
## 1849 skeletal muscle fiber development
## 1850 skeletal muscle tissue development
## 1851 skeletal muscle tissue regeneration
## 1852 spindle pole centrosome
## 1853 stem cell differentiation
## 1854 stress-activated protein kinase signaling cascade
## 1855 syntaxin-1 binding
## 1856 tail-anchored membrane protein insertion into ER membrane
## 1857 telomerase holoenzyme complex
## 1858 terminal bouton
## 1859 tissue development
## 1860 translation repressor activity, mRNA regulatory element binding
## 1861 triglyceride lipase activity
## 1862 tRNA methylation
## 1863 U5 snRNP
## 1864 unsaturated fatty acid biosynthetic process
## 1865 UV protection
## 1866 vacuolar transport
## 1867 vesicle organization
## 1868 vesicle transport along microtubule
## 1869 voltage-gated potassium channel activity
## 1870 WASH complex
## 1871 WW domain binding
## 1872 zinc ion transport
## 1873 1-phosphatidylinositol binding
## 1874 2 iron, 2 sulfur cluster binding
## 1875 5S rRNA binding
## 1876 7SK snRNA binding
## 1877 90S preribosome
## 1878 activation of phospholipase C activity
## 1879 acyl-CoA metabolic process
## 1880 Ada2/Gcn5/Ada3 transcription activator complex
## 1881 adenylate cyclase-modulating G protein-coupled receptor signaling pathway
## 1882 alpha-linolenic acid metabolic process
## 1883 anoikis
## 1884 ATPase-coupled intramembrane lipid transporter activity
## 1885 attachment of mitotic spindle microtubules to kinetochore
## 1886 blood vessel remodeling
## 1887 bone morphogenesis
## 1888 calcium channel complex
## 1889 calcium-dependent protein kinase C activity
## 1890 carboxylic acid metabolic process
## 1891 cardiac septum development
## 1892 CCR4-NOT complex
## 1893 cell fate commitment
## 1894 cell junction assembly
## 1895 cell-cell contact zone
## 1896 cell-substrate adhesion
## 1897 cellular response to angiotensin
## 1898 cellular response to cholesterol
## 1899 cellular response to dexamethasone stimulus
## 1900 cellular response to ethanol
## 1901 cellular response to hydroxyurea
## 1902 cellular response to organic substance
## 1903 cellular response to peptide hormone stimulus
## 1904 cellular response to vascular endothelial growth factor stimulus
## 1905 cellular senescence
## 1906 cellular zinc ion homeostasis
## 1907 cholesterol transfer activity
## 1908 cholesterol transport
## 1909 chondroitin sulfate biosynthetic process
## 1910 chromatin silencing complex
## 1911 clathrin adaptor complex
## 1912 CMG complex
## 1913 condensed chromosome outer kinetochore
## 1914 COPI-coated vesicle
## 1915 coronary vasculature development
## 1916 cortical cytoskeleton
## 1917 cysteine-type endopeptidase activator activity involved in apoptotic process
## 1918 cytochrome-c oxidase activity
## 1919 cytokine receptor activity
## 1920 desmosome
## 1921 developmental growth
## 1922 DNA replication checkpoint
## 1923 DNA synthesis involved in DNA repair
## 1924 DNA unwinding involved in DNA replication
## 1925 dynein intermediate chain binding
## 1926 embryonic morphogenesis
## 1927 endochondral ossification
## 1928 endopeptidase inhibitor activity
## 1929 endothelial cell migration
## 1930 enzyme regulator activity
## 1931 ESC/E(Z) complex
## 1932 exit from mitosis
## 1933 exocyst
## 1934 exon-exon junction complex
## 1935 exosome (RNase complex)
## 1936 face morphogenesis
## 1937 G-quadruplex DNA binding
## 1938 glucocorticoid receptor binding
## 1939 glutathione biosynthetic process
## 1940 glycosaminoglycan biosynthetic process
## 1941 Golgi cisterna
## 1942 Golgi lumen
## 1943 Golgi to lysosome transport
## 1944 GTPase inhibitor activity
## 1945 GTPase regulator activity
## 1946 hair follicle development
## 1947 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules
## 1948 heterotypic cell-cell adhesion
## 1949 histone H3-K4 trimethylation
## 1950 histone methyltransferase activity
## 1951 histone phosphorylation
## 1952 homologous chromosome pairing at meiosis
## 1953 immunological synapse formation
## 1954 inner ear development
## 1955 integral component of peroxisomal membrane
## 1956 integral component of postsynaptic density membrane
## 1957 integral component of synaptic vesicle membrane
## 1958 intercalated disc
## 1959 intra-S DNA damage checkpoint
## 1960 intraciliary transport
## 1961 intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## 1962 labyrinthine layer blood vessel development
## 1963 long-chain fatty-acyl-CoA biosynthetic process
## 1964 low-density lipoprotein particle receptor binding
## 1965 lymph node development
## 1966 Lys48-specific deubiquitinase activity
## 1967 macropinosome
## 1968 maternal process involved in female pregnancy
## 1969 maturation of LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 1970 MCM complex
## 1971 melanosome transport
## 1972 mesoderm formation
## 1973 metaphase plate congression
## 1974 microvillus assembly
## 1975 microvillus membrane
## 1976 midbrain development
## 1977 mitochondrial electron transport, cytochrome c to oxygen
## 1978 mitochondrial electron transport, ubiquinol to cytochrome c
## 1979 mitochondrion morphogenesis
## 1980 mitotic cell cycle checkpoint
## 1981 mitotic cell cycle phase transition
## 1982 monocyte differentiation
## 1983 mRNA 3'-UTR AU-rich region binding
## 1984 mRNA methylation
## 1985 MyD88-independent toll-like receptor signaling pathway
## 1986 myelin sheath
## 1987 myeloid dendritic cell differentiation
## 1988 myoblast differentiation
## 1989 myosin V binding
## 1990 NAD+ binding
## 1991 negative regulation of actin filament polymerization
## 1992 negative regulation of axon extension
## 1993 negative regulation of DNA replication
## 1994 negative regulation of extrinsic apoptotic signaling pathway in absence of ligand
## 1995 negative regulation of interleukin-12 production
## 1996 negative regulation of macrophage derived foam cell differentiation
## 1997 negative regulation of MAPK cascade
## 1998 negative regulation of peptidyl-serine phosphorylation
## 1999 negative regulation of protein localization to plasma membrane
## 2000 negative regulation of proteolysis
## 2001 negative regulation of reactive oxygen species metabolic process
## 2002 negative regulation of release of cytochrome c from mitochondria
## 2003 negative regulation of Rho protein signal transduction
## 2004 negative regulation of signaling receptor activity
## 2005 negative regulation of smooth muscle cell proliferation
## 2006 negative regulation of telomere maintenance via telomerase
## 2007 negative regulation of transcription elongation from RNA polymerase II promoter
## 2008 negative regulation of translational initiation
## 2009 neuron cellular homeostasis
## 2010 nuclear inclusion body
## 2011 nuclear periphery
## 2012 nucleoside diphosphate kinase activity
## 2013 nucleoside diphosphate phosphorylation
## 2014 nucleoside metabolic process
## 2015 nucleosome disassembly
## 2016 odontogenesis of dentin-containing tooth
## 2017 oligosaccharide biosynthetic process
## 2018 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen
## 2019 peptidyl-threonine dephosphorylation
## 2020 peroxidase activity
## 2021 phagocytosis, engulfment
## 2022 phosphatidylinositol phospholipase C activity
## 2023 phosphatidylinositol-4,5-bisphosphate 5-phosphatase activity
## 2024 phospholipase A2 activity (consuming 1,2-dipalmitoylphosphatidylcholine)
## 2025 phospholipase A2 activity consuming 1,2-dioleoylphosphatidylethanolamine)
## 2026 phospholipase activity
## 2027 plasma membrane raft
## 2028 platelet alpha granule membrane
## 2029 platelet formation
## 2030 positive chemotaxis
## 2031 positive regulation by host of viral transcription
## 2032 positive regulation of apoptotic signaling pathway
## 2033 positive regulation of dendritic spine morphogenesis
## 2034 positive regulation of glycolytic process
## 2035 positive regulation of mitochondrial membrane potential
## 2036 positive regulation of neuron migration
## 2037 positive regulation of p38MAPK cascade
## 2038 positive regulation of peptidyl-threonine phosphorylation
## 2039 positive regulation of proteasomal protein catabolic process
## 2040 positive regulation of protein localization to cell surface
## 2041 positive regulation of SMAD protein signal transduction
## 2042 positive regulation of superoxide anion generation
## 2043 positive regulation of T cell receptor signaling pathway
## 2044 positive regulation of telomere maintenance
## 2045 positive regulation of ubiquitin-protein transferase activity
## 2046 positive regulation of vascular endothelial growth factor production
## 2047 positive regulation of viral entry into host cell
## 2048 positive regulation of wound healing
## 2049 pre-miRNA processing
## 2050 preassembly of GPI anchor in ER membrane
## 2051 programmed cell death
## 2052 proteasomal ubiquitin-independent protein catabolic process
## 2053 protein disulfide isomerase activity
## 2054 protein kinase A binding
## 2055 protein kinase C activity
## 2056 protein localization to cilium
## 2057 protein localization to Golgi apparatus
## 2058 protein localization to membrane
## 2059 protein localization to organelle
## 2060 protein mono-ADP-ribosylation
## 2061 protein quality control for misfolded or incompletely synthesized proteins
## 2062 protein targeting to ER
## 2063 proton transmembrane transporter activity
## 2064 R-SMAD binding
## 2065 reactive oxygen species metabolic process
## 2066 receptor clustering
## 2067 receptor ligand activity
## 2068 regulated exocytosis
## 2069 regulation of angiogenesis
## 2070 regulation of canonical Wnt signaling pathway
## 2071 regulation of chromosome segregation
## 2072 regulation of DNA methylation
## 2073 regulation of extrinsic apoptotic signaling pathway via death domain receptors
## 2074 regulation of fat cell differentiation
## 2075 regulation of intracellular estrogen receptor signaling pathway
## 2076 regulation of intracellular pH
## 2077 regulation of mRNA splicing, via spliceosome
## 2078 regulation of neuron apoptotic process
## 2079 regulation of ossification
## 2080 regulation of phosphatidylinositol 3-kinase signaling
## 2081 regulation of protein binding
## 2082 regulation of smoothened signaling pathway
## 2083 regulation of TOR signaling
## 2084 regulation of Wnt signaling pathway
## 2085 replication fork protection
## 2086 replicative senescence
## 2087 respiratory gaseous exchange by respiratory system
## 2088 response to organonitrogen compound
## 2089 response to starvation
## 2090 reticulophagy
## 2091 retinoic acid receptor binding
## 2092 retinol metabolic process
## 2093 ribonuclease activity
## 2094 ribosomal large subunit binding
## 2095 RNA methyltransferase activity
## 2096 RNA polymerase I complex
## 2097 RNA polymerase II CTD heptapeptide repeat kinase activity
## 2098 RNA splicing, via transesterification reactions
## 2099 ruffle organization
## 2100 sensory perception of pain
## 2101 signal transduction involved in G2 DNA damage checkpoint
## 2102 skeletal system morphogenesis
## 2103 SMN-Sm protein complex
## 2104 smooth endoplasmic reticulum
## 2105 social behavior
## 2106 spliceosomal tri-snRNP complex assembly
## 2107 sterol binding
## 2108 sterol transport
## 2109 striated muscle cell differentiation
## 2110 structural constituent of muscle
## 2111 surfactant homeostasis
## 2112 synaptonemal complex
## 2113 T cell mediated immunity
## 2114 T-tubule
## 2115 toll-like receptor 9 signaling pathway
## 2116 transcription export complex
## 2117 transcription factor TFIIH holo complex
## 2118 transferase activity, transferring acyl groups other than amino-acyl groups
## 2119 transferase activity, transferring hexosyl groups
## 2120 translation factor activity, RNA binding
## 2121 transporter activity
## 2122 ubiquitin ligase inhibitor activity
## 2123 ubiquitin-specific protease binding
## 2124 ubiquitinyl hydrolase activity
## 2125 vacuolar acidification
## 2126 vacuolar membrane
## 2127 vacuole
## 2128 ventricular septum morphogenesis
## 2129 very long-chain fatty acid biosynthetic process
## 2130 virion assembly
## 2131 vitamin D receptor binding
## 2132 1-phosphatidylinositol-3-kinase regulator activity
## 2133 3',5'-cyclic-nucleotide phosphodiesterase activity
## 2134 actin filament severing
## 2135 action potential
## 2136 activation of NF-kappaB-inducing kinase activity
## 2137 adenyl-nucleotide exchange factor activity
## 2138 alpha-mannosidase activity
## 2139 alternative mRNA splicing, via spliceosome
## 2140 amyloid-beta clearance
## 2141 anion transport
## 2142 aortic valve morphogenesis
## 2143 apolipoprotein binding
## 2144 apoptotic mitochondrial changes
## 2145 armadillo repeat domain binding
## 2146 aspartic-type endopeptidase activity
## 2147 ATP synthesis coupled proton transport
## 2148 ATPase activator activity
## 2149 autophagy of mitochondrion
## 2150 blood vessel morphogenesis
## 2151 bone remodeling
## 2152 branching morphogenesis of an epithelial tube
## 2153 cadherin binding involved in cell-cell adhesion
## 2154 calcium ion import
## 2155 calcium-ion regulated exocytosis
## 2156 cAMP-mediated signaling
## 2157 cardiac muscle cell differentiation
## 2158 CD40 receptor complex
## 2159 cell development
## 2160 cell migration involved in sprouting angiogenesis
## 2161 cell projection assembly
## 2162 cell-cell junction organization
## 2163 cellular glucose homeostasis
## 2164 cellular response to ATP
## 2165 cellular response to chemokine
## 2166 cellular response to exogenous dsRNA
## 2167 cellular response to fibroblast growth factor stimulus
## 2168 cellular response to hepatocyte growth factor stimulus
## 2169 cellular response to unfolded protein
## 2170 centriolar subdistal appendage
## 2171 centriole-centriole cohesion
## 2172 chaperone complex
## 2173 chloride channel complex
## 2174 chondrocyte development
## 2175 chromatin-mediated maintenance of transcription
## 2176 chromocenter
## 2177 cochlea development
## 2178 condensin complex
## 2179 core promoter sequence-specific DNA binding
## 2180 cornification
## 2181 cyclin/CDK positive transcription elongation factor complex
## 2182 cytoplasmic pattern recognition receptor signaling pathway
## 2183 cytoskeleton-dependent intracellular transport
## 2184 decidualization
## 2185 definitive hemopoiesis
## 2186 detection of calcium ion
## 2187 diacylglycerol binding
## 2188 dynein light intermediate chain binding
## 2189 embryo implantation
## 2190 embryonic cranial skeleton morphogenesis
## 2191 embryonic pattern specification
## 2192 endoderm development
## 2193 endolysosome membrane
## 2194 endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 2195 enoyl-CoA hydratase activity
## 2196 ephrin receptor binding
## 2197 ESCRT III complex
## 2198 establishment of protein localization to membrane
## 2199 eukaryotic translation initiation factor 3 complex, eIF3m
## 2200 eukaryotic translation initiation factor 4F complex
## 2201 extracellular matrix binding
## 2202 extrinsic apoptotic signaling pathway in absence of ligand
## 2203 fatty acid beta-oxidation using acyl-CoA oxidase
## 2204 fatty acid catabolic process
## 2205 fatty acid homeostasis
## 2206 focal adhesion assembly
## 2207 G-protein alpha-subunit binding
## 2208 gamma-tubulin complex
## 2209 gastrulation with mouth forming second
## 2210 Gemini of coiled bodies
## 2211 glutathione derivative biosynthetic process
## 2212 glycogen biosynthetic process
## 2213 glycogen catabolic process
## 2214 glycosaminoglycan binding
## 2215 Golgi cis cisterna
## 2216 Golgi ribbon formation
## 2217 GTPase activating protein binding
## 2218 hematopoietic stem cell differentiation
## 2219 heterotrimeric G-protein complex
## 2220 histone H2A acetylation
## 2221 histone H3-K9 demethylation
## 2222 histone methyltransferase activity (H3-K4 specific)
## 2223 histone mRNA metabolic process
## 2224 hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides
## 2225 hydrolase activity, acting on ester bonds
## 2226 inactivation of MAPK activity
## 2227 inner mitochondrial membrane organization
## 2228 integral component of postsynaptic membrane
## 2229 interleukin-35-mediated signaling pathway
## 2230 interleukin-7-mediated signaling pathway
## 2231 intermediate filament cytoskeleton organization
## 2232 intrinsic apoptotic signaling pathway in response to oxidative stress
## 2233 isotype switching
## 2234 keratan sulfate biosynthetic process
## 2235 keratin filament
## 2236 killing of cells of other organism
## 2237 late endosome to vacuole transport via multivesicular body sorting pathway
## 2238 lateral element
## 2239 leukocyte cell-cell adhesion
## 2240 lipid droplet organization
## 2241 long-term synaptic potentiation
## 2242 lung morphogenesis
## 2243 maintenance of protein location in nucleus
## 2244 mannosyltransferase activity
## 2245 MDM2/MDM4 family protein binding
## 2246 meiotic spindle
## 2247 methylosome
## 2248 MHC class II receptor activity
## 2249 microglial cell activation
## 2250 microtubule anchoring
## 2251 microtubule organizing center organization
## 2252 miRNA mediated inhibition of translation
## 2253 mitochondrial calcium ion homeostasis
## 2254 mitochondrial fission
## 2255 mitochondrial respiratory chain complex III
## 2256 monooxygenase activity
## 2257 multivesicular body membrane
## 2258 multivesicular body sorting pathway
## 2259 myofibril
## 2260 NAD+ kinase activity
## 2261 natural killer cell activation
## 2262 necroptotic process
## 2263 negative regulation of activated T cell proliferation
## 2264 negative regulation of androgen receptor signaling pathway
## 2265 negative regulation of autophagosome assembly
## 2266 negative regulation of B cell proliferation
## 2267 negative regulation of cardiac muscle cell apoptotic process
## 2268 negative regulation of cell motility
## 2269 negative regulation of cell-cell adhesion
## 2270 negative regulation of cellular senescence
## 2271 negative regulation of cholesterol storage
## 2272 negative regulation of cilium assembly
## 2273 negative regulation of glycolytic process
## 2274 negative regulation of hippo signaling
## 2275 negative regulation of insulin secretion
## 2276 negative regulation of interleukin-1 beta production
## 2277 negative regulation of neurogenesis
## 2278 negative regulation of osteoclast differentiation
## 2279 negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## 2280 negative regulation of phagocytosis
## 2281 negative regulation of phosphorylation
## 2282 negative regulation of reactive oxygen species biosynthetic process
## 2283 negative regulation of T cell activation
## 2284 negative regulation of ubiquitin-dependent protein catabolic process
## 2285 neuroblast proliferation
## 2286 neuronal action potential
## 2287 neuronal stem cell population maintenance
## 2288 NLS-bearing protein import into nucleus
## 2289 non-motile cilium
## 2290 nuclear exosome (RNase complex)
## 2291 nuclear migration
## 2292 nuclear origin of replication recognition complex
## 2293 nuclear pore complex assembly
## 2294 NuRD complex
## 2295 obsolete small monomeric GTPase activity
## 2296 odontogenesis
## 2297 palmitoyl-(protein) hydrolase activity
## 2298 pattern recognition receptor activity
## 2299 peptide alpha-N-acetyltransferase activity
## 2300 peptidyl-serine dephosphorylation
## 2301 phagosome acidification
## 2302 phosphate-containing compound metabolic process
## 2303 phosphatidylinositol 3-kinase binding
## 2304 phosphatidylinositol-3,5-bisphosphate binding
## 2305 phospholipase binding
## 2306 photoreceptor inner segment
## 2307 poly(A) binding
## 2308 poly(A)+ mRNA export from nucleus
## 2309 positive regulation of amyloid-beta formation
## 2310 positive regulation of Arp2/3 complex-mediated actin nucleation
## 2311 positive regulation of B cell activation
## 2312 positive regulation of cell migration involved in sprouting angiogenesis
## 2313 positive regulation of chondrocyte differentiation
## 2314 positive regulation of cilium assembly
## 2315 positive regulation of double-strand break repair
## 2316 positive regulation of epithelial to mesenchymal transition
## 2317 positive regulation of exosomal secretion
## 2318 positive regulation of histone H3-K4 methylation
## 2319 positive regulation of immunoglobulin production
## 2320 positive regulation of megakaryocyte differentiation
## 2321 positive regulation of mitochondrial fission
## 2322 positive regulation of mitotic nuclear division
## 2323 positive regulation of monocyte differentiation
## 2324 positive regulation of multicellular organism growth
## 2325 positive regulation of nitric-oxide synthase biosynthetic process
## 2326 positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## 2327 positive regulation of nuclear-transcribed mRNA poly(A) tail shortening
## 2328 positive regulation of osteoclast differentiation
## 2329 positive regulation of peptidase activity
## 2330 positive regulation of phosphoprotein phosphatase activity
## 2331 positive regulation of protein acetylation
## 2332 positive regulation of regulatory T cell differentiation
## 2333 positive regulation of RIG-I signaling pathway
## 2334 positive regulation of RNA splicing
## 2335 positive regulation of ruffle assembly
## 2336 positive regulation of signal transduction by p53 class mediator
## 2337 positive regulation of T cell migration
## 2338 positive regulation of tumor necrosis factor-mediated signaling pathway
## 2339 positive thymic T cell selection
## 2340 postsynaptic cytosol
## 2341 postsynaptic density membrane
## 2342 pre-mRNA cleavage required for polyadenylation
## 2343 proteasome core complex
## 2344 protein auto-ADP-ribosylation
## 2345 protein complex oligomerization
## 2346 protein deacetylase activity
## 2347 protein deglycosylation
## 2348 protein depalmitoylation
## 2349 protein import into peroxisome matrix
## 2350 protein kinase activator activity
## 2351 protein localization to kinetochore
## 2352 protein localization to phagophore assembly site
## 2353 protein tag
## 2354 protein tetramerization
## 2355 proteoglycan biosynthetic process
## 2356 proton-transporting ATPase activity, rotational mechanism
## 2357 pseudopodium
## 2358 rDNA heterochromatin assembly
## 2359 receptor catabolic process
## 2360 regulation of ARF protein signal transduction
## 2361 regulation of cardiac conduction
## 2362 regulation of cellular senescence
## 2363 regulation of centriole replication
## 2364 regulation of complement activation
## 2365 regulation of ERK1 and ERK2 cascade
## 2366 regulation of fibroblast migration
## 2367 regulation of G1/S transition of mitotic cell cycle
## 2368 regulation of immunoglobulin production
## 2369 regulation of microtubule polymerization or depolymerization
## 2370 regulation of mitotic spindle organization
## 2371 regulation of neuron death
## 2372 regulation of osteoblast differentiation
## 2373 regulation of phosphorylation
## 2374 regulation of protein complex stability
## 2375 regulation of protein secretion
## 2376 regulation of protein ubiquitination
## 2377 regulation of reactive oxygen species metabolic process
## 2378 regulation of Rho protein signal transduction
## 2379 regulation of sodium ion transport
## 2380 regulation of stress fiber assembly
## 2381 regulation of T cell activation
## 2382 regulation of telomere maintenance
## 2383 regulation of type I interferon production
## 2384 response to amphetamine
## 2385 response to lipid
## 2386 response to steroid hormone
## 2387 response to testosterone
## 2388 retina homeostasis
## 2389 retrograde protein transport, ER to cytosol
## 2390 RNA N6-methyladenosine methyltransferase complex
## 2391 RNA polymerase I preinitiation complex assembly
## 2392 RNA secondary structure unwinding
## 2393 skin development
## 2394 small ribosomal subunit rRNA binding
## 2395 snRNA 3'-end processing
## 2396 specific granule
## 2397 sperm flagellum
## 2398 spleen development
## 2399 sprouting angiogenesis
## 2400 steroid hormone mediated signaling pathway
## 2401 steroid hormone receptor activity
## 2402 sulfotransferase activity
## 2403 Swr1 complex
## 2404 synaptic transmission, glutamatergic
## 2405 synaptic vesicle transport
## 2406 T cell receptor complex
## 2407 t-circle formation
## 2408 TORC1 complex
## 2409 TORC2 complex
## 2410 transcription factor TFIIH core complex
## 2411 transcriptionally active chromatin
## 2412 triglyceride metabolic process
## 2413 tRNA aminoacylation
## 2414 tRNA splicing, via endonucleolytic cleavage and ligation
## 2415 U4 snRNP
## 2416 U6 snRNP
## 2417 ubiquinone biosynthetic process
## 2418 UV-damage excision repair
## 2419 vasodilation
## 2420 ventricular system development
## 2421 very long-chain fatty acid metabolic process
## 2422 voltage-gated calcium channel activity
## 2423 Wnt-protein binding
## 2424 zinc ion transmembrane transport
## 2425 17-beta-hydroxysteroid dehydrogenase (NAD+) activity
## 2426 5'-3' DNA helicase activity
## 2427 5'-3' exonuclease activity
## 2428 acrosome assembly
## 2429 actin filament capping
## 2430 actin filament depolymerization
## 2431 actin filament-based movement
## 2432 actin-dependent ATPase activity
## 2433 activation of adenylate cyclase activity
## 2434 adherens junction assembly
## 2435 adult walking behavior
## 2436 amino acid transmembrane transporter activity
## 2437 aminoacyl-tRNA synthetase multienzyme complex
## 2438 AMP binding
## 2439 amyloid precursor protein catabolic process
## 2440 anchored component of plasma membrane
## 2441 antigen processing and presentation of endogenous peptide antigen via MHC class I
## 2442 antioxidant activity
## 2443 AP-1 adaptor complex
## 2444 AP-2 adaptor complex
## 2445 apical junction complex
## 2446 Arp2/3 complex-mediated actin nucleation
## 2447 artery morphogenesis
## 2448 aryl hydrocarbon receptor binding
## 2449 astral microtubule organization
## 2450 ATP-dependent microtubule motor activity, plus-end-directed
## 2451 ATP-dependent peptidase activity
## 2452 attachment of spindle microtubules to kinetochore
## 2453 auditory receptor cell stereocilium organization
## 2454 autolysosome
## 2455 brain morphogenesis
## 2456 brown fat cell differentiation
## 2457 calcium channel regulator activity
## 2458 calcium import into the mitochondrion
## 2459 calcium-dependent cysteine-type endopeptidase activity
## 2460 calyx of Held
## 2461 carboxypeptidase activity
## 2462 cation transmembrane transporter activity
## 2463 CD40 signaling pathway
## 2464 cell activation
## 2465 cell adhesion mediated by integrin
## 2466 cell cortex region
## 2467 cell division site
## 2468 cell volume homeostasis
## 2469 cellular amino acid metabolic process
## 2470 cellular response to amyloid-beta
## 2471 cellular response to estrogen stimulus
## 2472 cellular response to interferon-alpha
## 2473 cellular response to interleukin-7
## 2474 cellular response to laminar fluid shear stress
## 2475 cellular response to platelet-derived growth factor stimulus
## 2476 cellular response to prostaglandin E stimulus
## 2477 cellular response to zinc ion
## 2478 ceramide metabolic process
## 2479 chemorepellent activity
## 2480 chromatoid body
## 2481 ciliary base
## 2482 cilium organization
## 2483 clathrin coat of coated pit
## 2484 clathrin heavy chain binding
## 2485 clathrin vesicle coat
## 2486 collagen catabolic process
## 2487 complement activation
## 2488 cotranslational protein targeting to membrane
## 2489 cullin-RING ubiquitin ligase complex
## 2490 cysteine-type endopeptidase activity involved in apoptotic process
## 2491 cysteine-type endopeptidase inhibitor activity
## 2492 cytoskeletal anchor activity
## 2493 deacetylase activity
## 2494 delayed rectifier potassium channel activity
## 2495 dendritic spine development
## 2496 depurination
## 2497 digestive tract development
## 2498 DNA clamp loader activity
## 2499 DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## 2500 DNA dealkylation involved in DNA repair
## 2501 DNA methylation involved in gamete generation
## 2502 DNA replication-independent nucleosome assembly
## 2503 DNA topological change
## 2504 DNA-binding transcription activator activity
## 2505 dynein complex
## 2506 early endosome to Golgi transport
## 2507 embryonic camera-type eye morphogenesis
## 2508 embryonic hemopoiesis
## 2509 embryonic skeletal system development
## 2510 endodermal cell differentiation
## 2511 endosome transport via multivesicular body sorting pathway
## 2512 endothelial cell proliferation
## 2513 erythrocyte development
## 2514 erythrocyte maturation
## 2515 ESCRT III complex disassembly
## 2516 establishment of centrosome localization
## 2517 establishment of skin barrier
## 2518 establishment or maintenance of epithelial cell apical/basal polarity
## 2519 estradiol 17-beta-dehydrogenase activity
## 2520 fatty acid elongation
## 2521 fatty acid oxidation
## 2522 fatty-acyl-CoA biosynthetic process
## 2523 female gonad development
## 2524 fibronectin binding
## 2525 filopodium membrane
## 2526 FMN binding
## 2527 frizzled binding
## 2528 fructose 1,6-bisphosphate metabolic process
## 2529 fructose 6-phosphate metabolic process
## 2530 galactose metabolic process
## 2531 gene silencing by miRNA
## 2532 glucose transmembrane transport
## 2533 glutamate metabolic process
## 2534 glutamine family amino acid metabolic process
## 2535 glutathione peroxidase activity
## 2536 glycoprotein metabolic process
## 2537 glycosaminoglycan catabolic process
## 2538 glycosaminoglycan metabolic process
## 2539 glycosylation
## 2540 Golgi to vacuole transport
## 2541 Golgi trans cisterna
## 2542 head development
## 2543 heparan sulfate proteoglycan biosynthetic process
## 2544 histone demethylase activity (H3-K36 specific)
## 2545 histone demethylase activity (H3-K9 specific)
## 2546 histone deubiquitination
## 2547 histone H2A monoubiquitination
## 2548 histone H3-K36 demethylation
## 2549 histone H4 deacetylation
## 2550 histone H4-K5 acetylation
## 2551 histone H4-K8 acetylation
## 2552 histone methyltransferase activity (H3-K36 specific)
## 2553 histone methyltransferase binding
## 2554 histone modification
## 2555 histone monoubiquitination
## 2556 homologous chromosome segregation
## 2557 HOPS complex
## 2558 hydrogen peroxide catabolic process
## 2559 I band
## 2560 inflammatory response to antigenic stimulus
## 2561 insulin secretion
## 2562 insulin-like growth factor receptor signaling pathway
## 2563 integral component of mitochondrial membrane
## 2564 integral component of presynaptic membrane
## 2565 integrin complex
## 2566 internal peptidyl-lysine acetylation
## 2567 intracellular organelle
## 2568 ionotropic glutamate receptor binding
## 2569 IRES-dependent viral translational initiation
## 2570 iron ion transport
## 2571 isopeptidase activity
## 2572 isoprenoid biosynthetic process
## 2573 JUN kinase binding
## 2574 lamin binding
## 2575 lens development in camera-type eye
## 2576 lens fiber cell differentiation
## 2577 leucine zipper domain binding
## 2578 leukocyte tethering or rolling
## 2579 lipid phosphorylation
## 2580 lipid translocation
## 2581 lipoprotein transport
## 2582 long-chain fatty acid biosynthetic process
## 2583 long-chain fatty acid metabolic process
## 2584 long-chain fatty acid transporter activity
## 2585 low-density lipoprotein particle receptor activity
## 2586 low-density lipoprotein particle receptor catabolic process
## 2587 Lsm2-8 complex
## 2588 Lys63-specific deubiquitinase activity
## 2589 maintenance of DNA methylation
## 2590 male meiosis I
## 2591 male meiotic nuclear division
## 2592 mannose metabolic process
## 2593 mannosyl-oligosaccharide 1,2-alpha-mannosidase activity
## 2594 mannosylation
## 2595 MAP kinase activity
## 2596 maturation of 5.8S rRNA
## 2597 meiosis I
## 2598 membrane insertase activity
## 2599 membrane protein intracellular domain proteolysis
## 2600 membrane protein proteolysis
## 2601 messenger ribonucleoprotein complex
## 2602 metal ion transmembrane transporter activity
## 2603 metalloexopeptidase activity
## 2604 microfilament motor activity
## 2605 microtubule minus-end binding
## 2606 microtubule polymerization
## 2607 miRNA loading onto RISC involved in gene silencing by miRNA
## 2608 miRNA metabolic process
## 2609 mitochondrial outer membrane translocase complex
## 2610 mitogen-activated protein kinase kinase binding
## 2611 mitotic DNA replication checkpoint
## 2612 mitotic spindle microtubule
## 2613 mitotic spindle midzone
## 2614 MLL3/4 complex
## 2615 monoubiquitinated protein deubiquitination
## 2616 MOZ/MORF histone acetyltransferase complex
## 2617 mRNA cis splicing, via spliceosome
## 2618 muscle filament sliding
## 2619 MutLalpha complex binding
## 2620 MutSalpha complex binding
## 2621 myosin binding
## 2622 N-acetylglucosamine metabolic process
## 2623 N-terminal protein amino acid acetylation
## 2624 NADH dehydrogenase activity
## 2625 NADPH binding
## 2626 nBAF complex
## 2627 negative regulation by host of viral transcription
## 2628 negative regulation of axon extension involved in axon guidance
## 2629 negative regulation of DNA damage response, signal transduction by p53 class mediator
## 2630 negative regulation of DNA recombination
## 2631 negative regulation of endocytosis
## 2632 negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## 2633 negative regulation of endothelial cell migration
## 2634 negative regulation of epidermal growth factor-activated receptor activity
## 2635 negative regulation of epithelial cell migration
## 2636 negative regulation of focal adhesion assembly
## 2637 negative regulation of gluconeogenesis
## 2638 negative regulation of insulin secretion involved in cellular response to glucose stimulus
## 2639 negative regulation of interleukin-10 production
## 2640 negative regulation of interleukin-17 production
## 2641 negative regulation of interleukin-8 production
## 2642 negative regulation of intracellular estrogen receptor signaling pathway
## 2643 negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## 2644 negative regulation of myeloid cell differentiation
## 2645 negative regulation of oxidative stress-induced neuron death
## 2646 negative regulation of pri-miRNA transcription by RNA polymerase II
## 2647 negative regulation of protein localization to cell surface
## 2648 negative regulation of protein tyrosine kinase activity
## 2649 negative regulation of receptor internalization
## 2650 negative regulation of telomerase activity
## 2651 negative regulation of telomere maintenance via telomere lengthening
## 2652 negative regulation of vascular associated smooth muscle cell proliferation
## 2653 negative regulation of viral release from host cell
## 2654 neural crest cell development
## 2655 neurotrophin TRK receptor signaling pathway
## 2656 nitric-oxide synthase binding
## 2657 Notch binding
## 2658 npBAF complex
## 2659 nuclear export
## 2660 nuclear pore outer ring
## 2661 nucleoside triphosphate biosynthetic process
## 2662 O-acyltransferase activity
## 2663 oligodendrocyte development
## 2664 oligosaccharide metabolic process
## 2665 oligosaccharyltransferase complex
## 2666 organelle membrane
## 2667 organelle organization
## 2668 peptide catabolic process
## 2669 peptide transport
## 2670 peptide-lysine-N-acetyltransferase activity
## 2671 peptidyl-lysine acetylation
## 2672 perinuclear endoplasmic reticulum
## 2673 peripheral nervous system myelin maintenance
## 2674 phagophore assembly site membrane
## 2675 phosphatase regulator activity
## 2676 phosphate ion binding
## 2677 phosphate ion transmembrane transport
## 2678 phosphatidyl phospholipase B activity
## 2679 phosphatidylethanolamine acyl-chain remodeling
## 2680 phosphatidylethanolamine biosynthetic process
## 2681 phosphatidylinositol-3-phosphate biosynthetic process
## 2682 phospholipase C-activating G protein-coupled receptor signaling pathway
## 2683 phosphotransferase activity, alcohol group as acceptor
## 2684 plasma membrane tubulation
## 2685 platelet dense granule organization
## 2686 positive regulation of actin cytoskeleton reorganization
## 2687 positive regulation of adaptive immune response
## 2688 positive regulation of blood coagulation
## 2689 positive regulation of bone resorption
## 2690 positive regulation of calcineurin-NFAT signaling cascade
## 2691 positive regulation of calcium-mediated signaling
## 2692 positive regulation of cardiac muscle hypertrophy
## 2693 positive regulation of cell cycle G1/S phase transition
## 2694 positive regulation of cell division
## 2695 positive regulation of cellular senescence
## 2696 positive regulation of ceramide biosynthetic process
## 2697 positive regulation of circadian rhythm
## 2698 positive regulation of CREB transcription factor activity
## 2699 positive regulation of cytokine production involved in immune response
## 2700 positive regulation of DNA-directed DNA polymerase activity
## 2701 positive regulation of endothelial cell apoptotic process
## 2702 positive regulation of gene silencing by miRNA
## 2703 positive regulation of histone deacetylation
## 2704 positive regulation of histone phosphorylation
## 2705 positive regulation of insulin receptor signaling pathway
## 2706 positive regulation of interleukin-13 production
## 2707 positive regulation of isotype switching
## 2708 positive regulation of keratinocyte differentiation
## 2709 positive regulation of leukocyte adhesion to vascular endothelial cell
## 2710 positive regulation of lipid biosynthetic process
## 2711 positive regulation of membrane protein ectodomain proteolysis
## 2712 positive regulation of mitochondrial calcium ion concentration
## 2713 positive regulation of mitochondrial translation
## 2714 positive regulation of mitotic metaphase/anaphase transition
## 2715 positive regulation of mRNA catabolic process
## 2716 positive regulation of muscle cell differentiation
## 2717 positive regulation of neutrophil chemotaxis
## 2718 positive regulation of protein localization to early endosome
## 2719 positive regulation of reactive oxygen species metabolic process
## 2720 positive regulation of receptor recycling
## 2721 positive regulation of receptor signaling pathway via JAK-STAT
## 2722 positive regulation of receptor-mediated endocytosis
## 2723 positive regulation of Rho protein signal transduction
## 2724 positive regulation of RNA polymerase II transcription preinitiation complex assembly
## 2725 positive regulation of T cell cytokine production
## 2726 positive regulation of T cell differentiation
## 2727 positive regulation of T cell mediated cytotoxicity
## 2728 positive regulation of toll-like receptor 4 signaling pathway
## 2729 positive regulation of transcription by RNA polymerase III
## 2730 positive regulation of transcription elongation from RNA polymerase II promoter
## 2731 positive regulation of type I interferon-mediated signaling pathway
## 2732 positive regulation of ubiquitin-dependent protein catabolic process
## 2733 positive regulation of vascular associated smooth muscle cell migration
## 2734 positive regulation of vascular endothelial cell proliferation
## 2735 positive regulation of vascular endothelial growth factor receptor signaling pathway
## 2736 positive regulation of vasoconstriction
## 2737 positive regulation of Wnt signaling pathway
## 2738 post-mRNA release spliceosomal complex
## 2739 postreplication repair
## 2740 PRC1 complex
## 2741 prostaglandin biosynthetic process
## 2742 prostaglandin metabolic process
## 2743 proteasomal protein catabolic process
## 2744 proteasome regulatory particle
## 2745 proteasome regulatory particle, base subcomplex
## 2746 proteasome regulatory particle, lid subcomplex
## 2747 protein disulfide oxidoreductase activity
## 2748 protein heterotetramerization
## 2749 protein K6-linked ubiquitination
## 2750 protein localization to chromosome, centromeric region
## 2751 protein methyltransferase activity
## 2752 protein phosphatase activator activity
## 2753 protein phosphatase type 1 complex
## 2754 protein poly-ADP-ribosylation
## 2755 protein refolding
## 2756 protein targeting to peroxisome
## 2757 protein tyrosine kinase activator activity
## 2758 protein-lysine N-methyltransferase activity
## 2759 purine nucleotide binding
## 2760 pyrimidine nucleoside salvage
## 2761 regulation of attachment of spindle microtubules to kinetochore
## 2762 regulation of autophagosome assembly
## 2763 regulation of autophagy of mitochondrion
## 2764 regulation of cholesterol metabolic process
## 2765 regulation of cilium assembly
## 2766 regulation of cysteine-type endopeptidase activity involved in apoptotic process
## 2767 regulation of cytosolic calcium ion concentration
## 2768 regulation of dendrite development
## 2769 regulation of dendrite morphogenesis
## 2770 regulation of DNA-templated transcription, elongation
## 2771 regulation of gene expression by genetic imprinting
## 2772 regulation of Golgi organization
## 2773 regulation of heart contraction
## 2774 regulation of heart rate
## 2775 regulation of histone acetylation
## 2776 regulation of insulin secretion involved in cellular response to glucose stimulus
## 2777 regulation of JNK cascade
## 2778 regulation of lamellipodium assembly
## 2779 regulation of mast cell degranulation
## 2780 regulation of mitotic metaphase/anaphase transition
## 2781 regulation of mRNA processing
## 2782 regulation of neuron projection development
## 2783 regulation of nitric-oxide synthase activity
## 2784 regulation of osteoclast differentiation
## 2785 regulation of peptidyl-tyrosine phosphorylation
## 2786 regulation of proteasomal protein catabolic process
## 2787 regulation of rhodopsin mediated signaling pathway
## 2788 regulation of synapse organization
## 2789 regulation of T cell differentiation
## 2790 renal water homeostasis
## 2791 respiratory system process
## 2792 response to copper ion
## 2793 response to fatty acid
## 2794 response to food
## 2795 response to hydroperoxide
## 2796 response to interferon-gamma
## 2797 response to muscle activity
## 2798 response to osmotic stress
## 2799 response to reactive oxygen species
## 2800 retinoic acid receptor signaling pathway
## 2801 retinoid metabolic process
## 2802 RISC-loading complex
## 2803 RNA 3'-end processing
## 2804 RNA 7-methylguanosine cap binding
## 2805 RNA polymerase I core promoter sequence-specific DNA binding
## 2806 RNA polymerase II CTD heptapeptide repeat phosphatase activity
## 2807 rRNA methylation
## 2808 rRNA transcription
## 2809 S-adenosyl-L-methionine binding
## 2810 sarcomere organization
## 2811 SCAR complex
## 2812 selenocysteine incorporation
## 2813 semaphorin receptor binding
## 2814 septin complex
## 2815 septin ring
## 2816 Sin3 complex
## 2817 single-stranded DNA endodeoxyribonuclease activity
## 2818 SNARE complex assembly
## 2819 snRNA binding
## 2820 sodium channel regulator activity
## 2821 sphingosine-1-phosphate receptor signaling pathway
## 2822 sterol metabolic process
## 2823 sulfate transport
## 2824 SUMO transferase activity
## 2825 superoxide metabolic process
## 2826 synaptic vesicle exocytosis
## 2827 synaptonemal complex assembly
## 2828 T cell receptor binding
## 2829 telomere maintenance via recombination
## 2830 tetrahydrofolate interconversion
## 2831 thyroid gland development
## 2832 tissue homeostasis
## 2833 tissue regeneration
## 2834 toll-like receptor 3 signaling pathway
## 2835 transcription factor TFTC complex
## 2836 transcription initiation from RNA polymerase III promoter
## 2837 transcription preinitiation complex
## 2838 translation repressor activity
## 2839 transmembrane receptor protein serine/threonine kinase signaling pathway
## 2840 tRNA 5'-leader removal
## 2841 tRNA wobble uridine modification
## 2842 U2-type spliceosomal complex
## 2843 ubiquitin ligase-substrate adaptor activity
## 2844 ubiquitin-dependent protein binding
## 2845 ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## 2846 ureteric bud development
## 2847 vacuolar proton-transporting V-type ATPase complex
## 2848 vascular endothelial growth factor signaling pathway
## 2849 vesicle transport along actin filament
## 2850 zinc ion transmembrane transporter activity
## 2851 1-acylglycerol-3-phosphate O-acyltransferase activity
## 2852 1-phosphatidylinositol-3-kinase activity
## 2853 17-beta-hydroxysteroid dehydrogenase (NADP+) activity
## 2854 2-oxoglutarate metabolic process
## 2855 3-hydroxyacyl-CoA dehydrogenase activity
## 2856 3'-UTR-mediated mRNA stabilization
## 2857 3',5'-cyclic-GMP phosphodiesterase activity
## 2858 5'-flap endonuclease activity
## 2859 5'-nucleotidase activity
## 2860 A band
## 2861 acrosomal membrane
## 2862 activation of cysteine-type endopeptidase activity
## 2863 activation of JNKK activity
## 2864 activation of MAPKKK activity
## 2865 activin binding
## 2866 acute-phase response
## 2867 acyl-CoA dehydrogenase activity
## 2868 adenylate kinase activity
## 2869 adiponectin-activated signaling pathway
## 2870 amyloid-beta clearance by transcytosis
## 2871 anaphase-promoting complex binding
## 2872 angiogenesis involved in wound healing
## 2873 anion transmembrane transporter activity
## 2874 anion:anion antiporter activity
## 2875 anterograde axonal protein transport
## 2876 antiviral innate immune response
## 2877 aorta morphogenesis
## 2878 AP-3 adaptor complex
## 2879 apical protein localization
## 2880 apoptotic DNA fragmentation
## 2881 Arp2/3 complex binding
## 2882 arrestin family protein binding
## 2883 asymmetric synapse
## 2884 Atg1/ULK1 kinase complex
## 2885 Bergmann glial cell differentiation
## 2886 beta-catenin destruction complex
## 2887 biomineral tissue development
## 2888 bone resorption
## 2889 BORC complex
## 2890 branching involved in ureteric bud morphogenesis
## 2891 BRCA1-A complex
## 2892 C21-steroid hormone biosynthetic process
## 2893 calcium channel inhibitor activity
## 2894 calcium-activated potassium channel activity
## 2895 cAMP response element binding protein binding
## 2896 cardiac septum morphogenesis
## 2897 cardiolipin binding
## 2898 cardiolipin biosynthetic process
## 2899 cargo adaptor activity
## 2900 catalytic complex
## 2901 CD4 receptor binding
## 2902 CDP-diacylglycerol biosynthetic process
## 2903 cell fate determination
## 2904 cell recognition
## 2905 cellular process
## 2906 cellular respiration
## 2907 cellular response to arsenic-containing substance
## 2908 cellular response to extracellular stimulus
## 2909 cellular response to fluid shear stress
## 2910 cellular response to granulocyte macrophage colony-stimulating factor stimulus
## 2911 cellular response to increased oxygen levels
## 2912 cellular response to leucine
## 2913 cellular response to muramyl dipeptide
## 2914 cellular response to nitric oxide
## 2915 cellular response to osmotic stress
## 2916 cellular response to oxidised low-density lipoprotein particle stimulus
## 2917 cellular response to X-ray
## 2918 chemoattractant activity
## 2919 chemokine-mediated signaling pathway
## 2920 cholesterol efflux
## 2921 chondroitin sulfate proteoglycan biosynthetic process
## 2922 chordate embryonic development
## 2923 chromatin assembly or disassembly
## 2924 chromatin silencing at telomere
## 2925 chromosome organization involved in meiotic cell cycle
## 2926 chromosome passenger complex
## 2927 clathrin coat of trans-Golgi network vesicle
## 2928 cohesin complex
## 2929 cortical cytoskeleton organization
## 2930 Cul2-RING ubiquitin ligase complex
## 2931 cyclin-dependent protein serine/threonine kinase inhibitor activity
## 2932 cysteine-type endopeptidase activity involved in execution phase of apoptosis
## 2933 cysteine-type endopeptidase inhibitor activity involved in apoptotic process
## 2934 cytoplasmic dynein complex
## 2935 cytoplasmic exosome (RNase complex)
## 2936 cytoplasmic sequestering of transcription factor
## 2937 cytosolic proteasome complex
## 2938 death receptor binding
## 2939 dendritic cell differentiation
## 2940 dendritic spine head
## 2941 diacylglycerol metabolic process
## 2942 DNA binding, bending
## 2943 DNA damage response, signal transduction by p53 class mediator
## 2944 DNA demethylation
## 2945 DNA-(apurinic or apyrimidinic site) endonuclease activity
## 2946 DNA-binding transcription factor binding
## 2947 DNA-templated transcription, termination
## 2948 dolichol-linked oligosaccharide biosynthetic process
## 2949 dopamine receptor signaling pathway
## 2950 dorsal/ventral pattern formation
## 2951 dosage compensation by inactivation of X chromosome
## 2952 double-stranded telomeric DNA binding
## 2953 drug binding
## 2954 dystrophin-associated glycoprotein complex
## 2955 embryonic brain development
## 2956 embryonic camera-type eye development
## 2957 embryonic viscerocranium morphogenesis
## 2958 endocardial cushion morphogenesis
## 2959 endodeoxyribonuclease activity
## 2960 endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 2961 endoplasmic reticulum calcium ion homeostasis
## 2962 endoplasmic reticulum tubular network
## 2963 endosomal vesicle fusion
## 2964 endosome lumen
## 2965 endosome to melanosome transport
## 2966 endothelial tube morphogenesis
## 2967 epithelial structure maintenance
## 2968 ERAD pathway
## 2969 erythrocyte homeostasis
## 2970 establishment of endothelial barrier
## 2971 establishment of mitotic spindle localization
## 2972 establishment of protein localization to chromatin
## 2973 establishment of protein localization to organelle
## 2974 estrogen biosynthetic process
## 2975 estrogen metabolic process
## 2976 excretion
## 2977 extrinsic component of mitochondrial inner membrane
## 2978 fatty acid beta-oxidation using acyl-CoA dehydrogenase
## 2979 fatty acid binding
## 2980 fatty acid transport
## 2981 female gamete generation
## 2982 female pronucleus
## 2983 filopodium assembly
## 2984 FK506 binding
## 2985 folic acid binding
## 2986 four-way junction helicase activity
## 2987 fucosylation
## 2988 G-protein beta/gamma-subunit complex binding
## 2989 G-quadruplex DNA unwinding
## 2990 G-quadruplex RNA binding
## 2991 GABA receptor binding
## 2992 gamma-aminobutyric acid signaling pathway
## 2993 gamma-tubulin ring complex
## 2994 glutamine metabolic process
## 2995 glutathione transferase activity
## 2996 glycerolipid metabolic process
## 2997 glycerophospholipid biosynthetic process
## 2998 glycerophospholipid metabolic process
## 2999 glycoprotein biosynthetic process
## 3000 Golgi disassembly
## 3001 Golgi localization
## 3002 Golgi medial cisterna
## 3003 GTP biosynthetic process
## 3004 GTP metabolic process
## 3005 H4 histone acetyltransferase activity
## 3006 heart valve development
## 3007 hematopoietic stem cell homeostasis
## 3008 heme biosynthetic process
## 3009 hepatocyte apoptotic process
## 3010 histone exchange
## 3011 histone H3-K14 acetylation
## 3012 histone H3-K4 demethylation
## 3013 histone H4-K16 acetylation
## 3014 HMG box domain binding
## 3015 hydro-lyase activity
## 3016 hydrolase activity, hydrolyzing N-glycosyl compounds
## 3017 hyperosmotic response
## 3018 I-SMAD binding
## 3019 IkappaB kinase complex
## 3020 importin-alpha family protein binding
## 3021 inner ear morphogenesis
## 3022 inositol-1,4,5-trisphosphate 5-phosphatase activity
## 3023 insulin receptor substrate binding
## 3024 insulin-like growth factor I binding
## 3025 insulin-like growth factor receptor binding
## 3026 integral component of organelle membrane
## 3027 intestinal absorption
## 3028 intestinal epithelial cell development
## 3029 intracellular calcium activated chloride channel activity
## 3030 intracellular distribution of mitochondria
## 3031 intracellular estrogen receptor signaling pathway
## 3032 intraciliary retrograde transport
## 3033 intrinsic component of membrane
## 3034 K48-linked polyubiquitin modification-dependent protein binding
## 3035 keratinization
## 3036 kinetochore binding
## 3037 kinetochore microtubule
## 3038 kinetochore organization
## 3039 laminin binding
## 3040 large ribosomal subunit rRNA binding
## 3041 late endosome to vacuole transport
## 3042 limb morphogenesis
## 3043 linoleic acid metabolic process
## 3044 lipid storage
## 3045 lipoprotein metabolic process
## 3046 low-density lipoprotein particle binding
## 3047 lysosomal lumen acidification
## 3048 lysosomal protein catabolic process
## 3049 macropinocytosis
## 3050 magnesium ion transmembrane transport
## 3051 magnesium ion transmembrane transporter activity
## 3052 male pronucleus
## 3053 mammary gland development
## 3054 mammary gland epithelial cell differentiation
## 3055 mannose binding
## 3056 MAP-kinase scaffold activity
## 3057 maternal placenta development
## 3058 meiotic chromosome condensation
## 3059 meiotic chromosome segregation
## 3060 membrane invagination
## 3061 membrane protein ectodomain proteolysis
## 3062 metanephros development
## 3063 metaphase/anaphase transition of mitotic cell cycle
## 3064 microtubule severing
## 3065 mitochondrial ATP synthesis coupled electron transport
## 3066 mitochondrial ATP synthesis coupled proton transport
## 3067 mitochondrial envelope
## 3068 mitochondrial respirasome
## 3069 mitochondrial respiratory chain complex III assembly
## 3070 mitochondrial transport
## 3071 mitochondrion localization
## 3072 mitogen-activated protein kinase kinase kinase binding
## 3073 mitotic DNA replication initiation
## 3074 mitotic G1 DNA damage checkpoint
## 3075 modulation by symbiont of host defense response
## 3076 modulation by virus of host cellular process
## 3077 monosaccharide binding
## 3078 morphogenesis of an epithelial sheet
## 3079 motile cilium assembly
## 3080 motor neuron axon guidance
## 3081 mRNA cap binding complex
## 3082 mRNA cleavage
## 3083 mRNA transcription by RNA polymerase II
## 3084 multimeric ribonuclease P complex
## 3085 muscle alpha-actinin binding
## 3086 myelination in peripheral nervous system
## 3087 myosin II binding
## 3088 N-terminal peptidyl-methionine acetylation
## 3089 NAD metabolic process
## 3090 NAD(P)+ nucleosidase activity
## 3091 NAD+ nucleosidase activity
## 3092 NAD+ nucleotidase, cyclic ADP-ribose generating
## 3093 NADH metabolic process
## 3094 natural killer cell mediated cytotoxicity
## 3095 negative regulation of amyloid-beta clearance
## 3096 negative regulation of amyloid-beta formation
## 3097 negative regulation of bone mineralization
## 3098 negative regulation of bone resorption
## 3099 negative regulation of calcineurin-NFAT signaling cascade
## 3100 negative regulation of cardiac muscle cell proliferation
## 3101 negative regulation of cell division
## 3102 negative regulation of cell growth involved in cardiac muscle cell development
## 3103 negative regulation of cell size
## 3104 negative regulation of cell-cell adhesion mediated by cadherin
## 3105 negative regulation of cell-matrix adhesion
## 3106 negative regulation of centriole replication
## 3107 negative regulation of cytoplasmic translation
## 3108 negative regulation of endoplasmic reticulum calcium ion concentration
## 3109 negative regulation of fat cell proliferation
## 3110 negative regulation of glucose import
## 3111 negative regulation of growth
## 3112 negative regulation of histone acetylation
## 3113 negative regulation of inclusion body assembly
## 3114 negative regulation of innate immune response
## 3115 negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## 3116 negative regulation of lipopolysaccharide-mediated signaling pathway
## 3117 negative regulation of monocyte differentiation
## 3118 negative regulation of mRNA polyadenylation
## 3119 negative regulation of peptidyl-threonine phosphorylation
## 3120 negative regulation of phosphatidylinositol 3-kinase signaling
## 3121 negative regulation of production of miRNAs involved in gene silencing by miRNA
## 3122 negative regulation of protein export from nucleus
## 3123 negative regulation of protein localization to nucleus
## 3124 negative regulation of protein secretion
## 3125 negative regulation of protein sumoylation
## 3126 negative regulation of RNA splicing
## 3127 negative regulation of smooth muscle cell migration
## 3128 negative regulation of stem cell differentiation
## 3129 negative regulation of stress-activated MAPK cascade
## 3130 negative regulation of tumor necrosis factor-mediated signaling pathway
## 3131 negative regulation of viral transcription
## 3132 negative thymic T cell selection
## 3133 neuromuscular process
## 3134 neuron projection extension
## 3135 neuron projection maintenance
## 3136 neuronal cell body membrane
## 3137 NF-kappaB-inducing kinase activity
## 3138 nitric oxide biosynthetic process
## 3139 nitrogen compound metabolic process
## 3140 NSL complex
## 3141 nuclear envelope reassembly
## 3142 nuclear outer membrane
## 3143 nuclear pore nuclear basket
## 3144 nucleobase-containing compound kinase activity
## 3145 nucleobase-containing small molecule catabolic process
## 3146 nucleoside monophosphate phosphorylation
## 3147 nucleoside-triphosphatase activity
## 3148 nucleosomal histone binding
## 3149 nucleosome positioning
## 3150 NURF complex
## 3151 O-methyltransferase activity
## 3152 olfactory bulb development
## 3153 origin recognition complex
## 3154 oxidoreductase activity, acting on NAD(P)H
## 3155 pentose-phosphate shunt
## 3156 peptidyl-arginine methylation
## 3157 peptidyl-arginine N-methylation
## 3158 peptidyl-serine autophosphorylation
## 3159 peroxisome fission
## 3160 peroxisome proliferator activated receptor binding
## 3161 phagosome maturation
## 3162 phosphatidylethanolamine binding
## 3163 phosphatidylglycerol acyl-chain remodeling
## 3164 phosphatidylinositol kinase activity
## 3165 phosphatidylinositol-3,5-bisphosphate 3-phosphatase activity
## 3166 phosphatidylinositol-4,5-bisphosphate 3-kinase activity
## 3167 phosphatidylinositol-5-phosphate binding
## 3168 phospholipase D activity
## 3169 phospholipid homeostasis
## 3170 phosphorylation of RNA polymerase II C-terminal domain
## 3171 photoreceptor outer segment membrane
## 3172 phototransduction
## 3173 placenta blood vessel development
## 3174 plasma membrane protein complex
## 3175 poly(G) binding
## 3176 polyamine biosynthetic process
## 3177 polynucleotide adenylyltransferase activity
## 3178 polypeptide N-acetylgalactosaminyltransferase activity
## 3179 pore complex
## 3180 pore complex assembly
## 3181 positive regulation of ATP biosynthetic process
## 3182 positive regulation of B cell differentiation
## 3183 positive regulation of cardiac muscle cell apoptotic process
## 3184 positive regulation of cell motility
## 3185 positive regulation of cellular protein metabolic process
## 3186 positive regulation of chemotaxis
## 3187 positive regulation of cholesterol biosynthetic process
## 3188 positive regulation of chromatin binding
## 3189 positive regulation of chromosome segregation
## 3190 positive regulation of DNA biosynthetic process
## 3191 positive regulation of early endosome to late endosome transport
## 3192 positive regulation of embryonic development
## 3193 positive regulation of endocytosis
## 3194 positive regulation of endopeptidase activity
## 3195 positive regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## 3196 positive regulation of ER-associated ubiquitin-dependent protein catabolic process
## 3197 positive regulation of excitatory postsynaptic potential
## 3198 positive regulation of fibroblast migration
## 3199 positive regulation of G protein-coupled receptor signaling pathway
## 3200 positive regulation of gluconeogenesis
## 3201 positive regulation of histone H3-K9 acetylation
## 3202 positive regulation of histone H3-K9 methylation
## 3203 positive regulation of interleukin-17 production
## 3204 positive regulation of macrophage chemotaxis
## 3205 positive regulation of macrophage cytokine production
## 3206 positive regulation of memory T cell differentiation
## 3207 positive regulation of microtubule nucleation
## 3208 positive regulation of miRNA mediated inhibition of translation
## 3209 positive regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## 3210 positive regulation of monocyte chemotactic protein-1 production
## 3211 positive regulation of monocyte chemotaxis
## 3212 positive regulation of myotube differentiation
## 3213 positive regulation of natural killer cell mediated cytotoxicity
## 3214 positive regulation of neuroblast proliferation
## 3215 positive regulation of nuclear cell cycle DNA replication
## 3216 positive regulation of ossification
## 3217 positive regulation of phospholipase C activity
## 3218 positive regulation of phosphorylation
## 3219 positive regulation of protein kinase C signaling
## 3220 positive regulation of protein metabolic process
## 3221 positive regulation of protein sumoylation
## 3222 positive regulation of release of sequestered calcium ion into cytosol
## 3223 positive regulation of response to DNA damage stimulus
## 3224 positive regulation of synapse assembly
## 3225 positive regulation of synaptic vesicle endocytosis
## 3226 positive regulation of T cell chemotaxis
## 3227 positive regulation of transcription of nucleolar large rRNA by RNA polymerase I
## 3228 positive regulation of transcription regulatory region DNA binding
## 3229 post-anal tail morphogenesis
## 3230 post-transcriptional gene silencing by RNA
## 3231 postsynapse to nucleus signaling pathway
## 3232 posttranslational protein targeting to endoplasmic reticulum membrane
## 3233 potassium ion export across plasma membrane
## 3234 pre-mRNA binding
## 3235 pre-mRNA intronic binding
## 3236 pre-replicative complex assembly involved in nuclear cell cycle DNA replication
## 3237 preribosome, small subunit precursor
## 3238 presynaptic cytosol
## 3239 primary miRNA processing
## 3240 proteasome core complex, beta-subunit complex
## 3241 protein autoprocessing
## 3242 protein demethylation
## 3243 protein deneddylation
## 3244 protein insertion into mitochondrial inner membrane
## 3245 protein kinase B binding
## 3246 protein kinase regulator activity
## 3247 protein lipidation
## 3248 protein lipoylation
## 3249 protein localization to cytoplasmic stress granule
## 3250 protein localization to endoplasmic reticulum exit site
## 3251 protein localization to nucleolus
## 3252 protein maturation by iron-sulfur cluster transfer
## 3253 protein metabolic process
## 3254 protein neddylation
## 3255 protein O-linked mannosylation
## 3256 protein transport to vacuole involved in ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## 3257 protein-arginine N-methyltransferase activity
## 3258 proton-transporting ATP synthase activity, rotational mechanism
## 3259 proton-transporting V-type ATPase, V0 domain
## 3260 purine nucleotide catabolic process
## 3261 Rab protein signal transduction
## 3262 receptor antagonist activity
## 3263 reelin-mediated signaling pathway
## 3264 regulation of adaptive immune response
## 3265 regulation of aerobic respiration
## 3266 regulation of cell adhesion mediated by integrin
## 3267 regulation of cell cycle arrest
## 3268 regulation of cell cycle process
## 3269 regulation of cell division
## 3270 regulation of cellular protein localization
## 3271 regulation of cholesterol biosynthetic process
## 3272 regulation of chromatin organization
## 3273 regulation of cytokine-mediated signaling pathway
## 3274 regulation of DNA repair
## 3275 regulation of epidermal growth factor receptor signaling pathway
## 3276 regulation of establishment of endothelial barrier
## 3277 regulation of fatty acid beta-oxidation
## 3278 regulation of glycogen biosynthetic process
## 3279 regulation of heart rate by cardiac conduction
## 3280 regulation of histone H3-K4 methylation
## 3281 regulation of interferon-gamma-mediated signaling pathway
## 3282 regulation of interleukin-6 production
## 3283 regulation of intrinsic apoptotic signaling pathway
## 3284 regulation of MAPK cascade
## 3285 regulation of mitochondrial fission
## 3286 regulation of muscle contraction
## 3287 regulation of myeloid cell differentiation
## 3288 regulation of NIK/NF-kappaB signaling
## 3289 regulation of pH
## 3290 regulation of postsynaptic membrane potential
## 3291 regulation of protein export from nucleus
## 3292 regulation of protein kinase B signaling
## 3293 regulation of protein localization to nucleus
## 3294 regulation of proteolysis
## 3295 regulation of Rab protein signal transduction
## 3296 regulation of Rac protein signal transduction
## 3297 regulation of Ras protein signal transduction
## 3298 regulation of regulatory T cell differentiation
## 3299 regulation of release of sequestered calcium ion into cytosol
## 3300 regulation of sodium ion transmembrane transporter activity
## 3301 regulation of stem cell population maintenance
## 3302 regulation of stress-activated MAPK cascade
## 3303 regulation of synaptic transmission, glutamatergic
## 3304 regulation of synaptic vesicle endocytosis
## 3305 regulation of T cell differentiation in thymus
## 3306 regulation of T cell proliferation
## 3307 regulation of ventricular cardiac muscle cell membrane repolarization
## 3308 regulation of viral entry into host cell
## 3309 replication-born double-strand break repair via sister chromatid exchange
## 3310 rescue of stalled ribosome
## 3311 respiratory burst
## 3312 response to arsenic-containing substance
## 3313 response to cholesterol
## 3314 response to glucagon
## 3315 response to immobilization stress
## 3316 response to interferon-beta
## 3317 response to iron ion
## 3318 response to lead ion
## 3319 response to morphine
## 3320 response to muramyl dipeptide
## 3321 response to pH
## 3322 response to transforming growth factor beta
## 3323 response to UV-C
## 3324 response to xenobiotic stimulus
## 3325 reverse cholesterol transport
## 3326 ribonuclease MRP complex
## 3327 ribonuclease P activity
## 3328 ribonuclease P RNA binding
## 3329 ribonucleoprotein granule
## 3330 ribosomal small subunit binding
## 3331 RIG-I signaling pathway
## 3332 RNA polymerase II, holoenzyme
## 3333 RNA transport
## 3334 rough endoplasmic reticulum membrane
## 3335 S100 protein binding
## 3336 Schmidt-Lanterman incisure
## 3337 seminiferous tubule development
## 3338 sensory perception of smell
## 3339 sequence-specific mRNA binding
## 3340 sialic acid binding
## 3341 signal complex assembly
## 3342 signaling
## 3343 siRNA binding
## 3344 skeletal muscle contraction
## 3345 SMN complex
## 3346 sperm midpiece
## 3347 SREBP signaling pathway
## 3348 steroid binding
## 3349 sterol transporter activity
## 3350 striated muscle contraction
## 3351 suckling behavior
## 3352 sulfate transmembrane transport
## 3353 sulfate transmembrane transporter activity
## 3354 SUMO binding
## 3355 synaptic vesicle maturation
## 3356 T-helper 1 type immune response
## 3357 telomere capping
## 3358 tetrahydrofolate metabolic process
## 3359 TFIID-class transcription factor complex binding
## 3360 thioesterase binding
## 3361 threonine-type endopeptidase activity
## 3362 TIM23 mitochondrial import inner membrane translocase complex
## 3363 toll-like receptor 4 signaling pathway
## 3364 TORC1 signaling
## 3365 TPR domain binding
## 3366 trans-Golgi network transport vesicle
## 3367 transcription by RNA polymerase I
## 3368 transcription corepressor binding
## 3369 transferase activity, transferring phosphorus-containing groups
## 3370 transforming growth factor beta receptor binding
## 3371 transforming growth factor beta-activated receptor activity
## 3372 translational termination
## 3373 transmembrane receptor protein tyrosine kinase adaptor activity
## 3374 trophectodermal cell differentiation
## 3375 tropomyosin binding
## 3376 U1 snRNA binding
## 3377 U2-type catalytic step 1 spliceosome
## 3378 U3 snoRNA binding
## 3379 U4 snRNA binding
## 3380 U7 snRNP
## 3381 ubiquinol-cytochrome-c reductase activity
## 3382 ubiquitin-protein transferase activator activity
## 3383 UDP-N-acetylglucosamine biosynthetic process
## 3384 UDP-N-acetylglucosamine metabolic process
## 3385 urea cycle
## 3386 uropod
## 3387 very long-chain fatty acid-CoA ligase activity
## 3388 vesicle-mediated transport in synapse
## 3389 viral mRNA export from host cell nucleus
## 3390 viral translational termination-reinitiation
## 3391 voluntary musculoskeletal movement
## 3392 xenobiotic transport
## 3393 Y-form DNA binding
## 3394 zymogen activation
## 3395 1-phosphatidylinositol-4-phosphate 3-kinase activity
## 3396 1-phosphatidylinositol-4-phosphate 5-kinase activity
## 3397 2'-5'-oligoadenylate synthetase activity
## 3398 3-keto sterol reductase activity
## 3399 3-oxo-arachidoyl-CoA synthase activity
## 3400 3-oxo-cerotoyl-CoA synthase activity
## 3401 3-oxo-lignoceronyl-CoA synthase activity
## 3402 3'-phosphoadenosine 5'-phosphosulfate metabolic process
## 3403 3'-UTR-mediated mRNA destabilization
## 3404 3',5'-cyclic-AMP phosphodiesterase activity
## 3405 acetyl-CoA biosynthetic process
## 3406 acetyl-CoA C-acyltransferase activity
## 3407 actin cortical patch
## 3408 actin nucleation
## 3409 actinin binding
## 3410 activation of cysteine-type endopeptidase activity involved in apoptotic process by cytochrome c
## 3411 activation of transmembrane receptor protein tyrosine kinase activity
## 3412 activin receptor signaling pathway
## 3413 actomyosin
## 3414 acute inflammatory response
## 3415 ADP biosynthetic process
## 3416 adrenal gland development
## 3417 adrenergic receptor signaling pathway
## 3418 alpha DNA polymerase:primase complex
## 3419 alpha-(1->3)-fucosyltransferase activity
## 3420 amino acid binding
## 3421 amino acid transmembrane transport
## 3422 aminoacyl-tRNA metabolism involved in translational fidelity
## 3423 AMP metabolic process
## 3424 AMPA glutamate receptor complex
## 3425 amyloid-beta clearance by cellular catabolic process
## 3426 anchored component of external side of plasma membrane
## 3427 androgen metabolic process
## 3428 ankyrin binding
## 3429 annealing helicase activity
## 3430 annulate lamellae
## 3431 anterior/posterior axis specification
## 3432 antigen processing and presentation, exogenous lipid antigen via MHC class Ib
## 3433 AP-2 adaptor complex binding
## 3434 apical dendrite
## 3435 apical junction assembly
## 3436 aryl hydrocarbon receptor complex
## 3437 associative learning
## 3438 astrocyte activation
## 3439 ATF6-mediated unfolded protein response
## 3440 ATP-dependent protein binding
## 3441 atrioventricular valve morphogenesis
## 3442 autophagosome membrane docking
## 3443 autophagosome-lysosome fusion
## 3444 autophagy of peroxisome
## 3445 axon initial segment
## 3446 axon regeneration
## 3447 B cell proliferation
## 3448 basement membrane organization
## 3449 basic amino acid transmembrane transporter activity
## 3450 behavioral response to pain
## 3451 beta-catenin-TCF complex
## 3452 bile acid metabolic process
## 3453 bile acid signaling pathway
## 3454 bleb
## 3455 box C/D snoRNP assembly
## 3456 branching involved in mammary gland duct morphogenesis
## 3457 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules
## 3458 carboxylic acid binding
## 3459 cardiac muscle tissue development
## 3460 cardiolipin acyl-chain remodeling
## 3461 CCR4-NOT core complex
## 3462 CCR5 chemokine receptor binding
## 3463 cell communication
## 3464 cell fate specification
## 3465 cell morphogenesis involved in neuron differentiation
## 3466 cell projection membrane
## 3467 cell-cell adhesion via plasma-membrane adhesion molecules
## 3468 cell-cell junction assembly
## 3469 cellular copper ion homeostasis
## 3470 cellular hypotonic response
## 3471 cellular metabolic process
## 3472 cellular protein-containing complex localization
## 3473 cellular response to cGMP
## 3474 cellular response to dopamine
## 3475 cellular response to electrical stimulus
## 3476 cellular response to insulin-like growth factor stimulus
## 3477 cellular response to macrophage colony-stimulating factor stimulus
## 3478 cellular response to manganese ion
## 3479 cellular response to misfolded protein
## 3480 cellular response to nutrient
## 3481 cellular response to nutrient levels
## 3482 cellular response to UV-B
## 3483 centromeric DNA binding
## 3484 ceramide binding
## 3485 ceramide transport
## 3486 cerebellar Purkinje cell differentiation
## 3487 cerebral cortex neuron differentiation
## 3488 cGMP-mediated signaling
## 3489 chaperone-mediated autophagy
## 3490 chaperone-mediated protein transport
## 3491 chloride channel inhibitor activity
## 3492 cholesterol import
## 3493 chromatin assembly
## 3494 chromo shadow domain binding
## 3495 chromosome separation
## 3496 ciliary rootlet
## 3497 ciliary transition fiber
## 3498 cilium movement
## 3499 circulatory system development
## 3500 citrate metabolic process
## 3501 clathrin coat
## 3502 cobalamin metabolic process
## 3503 cochlea morphogenesis
## 3504 coenzyme A biosynthetic process
## 3505 collagen biosynthetic process
## 3506 collagen metabolic process
## 3507 complement activation, classical pathway
## 3508 condensed nuclear chromosome outer kinetochore
## 3509 contractile fiber
## 3510 contractile ring
## 3511 COPII-coated vesicle budding
## 3512 core mediator complex
## 3513 cortical endoplasmic reticulum
## 3514 Ctf18 RFC-like complex
## 3515 CTP biosynthetic process
## 3516 cyclin-dependent protein serine/threonine kinase activator activity
## 3517 cytoplasmic sequestering of protein
## 3518 cytoplasmic side of rough endoplasmic reticulum membrane
## 3519 D-threo-aldose 1-dehydrogenase activity
## 3520 deadenylation-dependent decapping of nuclear-transcribed mRNA
## 3521 deadenylation-independent decapping of nuclear-transcribed mRNA
## 3522 death-inducing signaling complex assembly
## 3523 defense response to fungus
## 3524 dendrite membrane
## 3525 dendritic cell chemotaxis
## 3526 dendritic spine membrane
## 3527 dendritic spine morphogenesis
## 3528 dephosphorylation of RNA polymerase II C-terminal domain
## 3529 diacylglycerol biosynthetic process
## 3530 diacylglycerol kinase activity
## 3531 dipeptidase activity
## 3532 DNA catabolic process, exonucleolytic
## 3533 DNA ligation
## 3534 DNA replication factor A complex
## 3535 DNA replication factor C complex
## 3536 DNA replication-dependent nucleosome assembly
## 3537 DNA replication, synthesis of RNA primer
## 3538 DNA strand renaturation
## 3539 DNA topoisomerase activity
## 3540 DNA translocase activity
## 3541 DNA-binding transcription repressor activity
## 3542 dolichyl diphosphate biosynthetic process
## 3543 double-strand break repair via classical nonhomologous end joining
## 3544 dynactin binding
## 3545 dynactin complex
## 3546 dynamin family protein polymerization involved in mitochondrial fission
## 3547 dystroglycan binding
## 3548 ectoderm development
## 3549 EKC/KEOPS complex
## 3550 elastic fiber assembly
## 3551 embryonic cleavage
## 3552 embryonic forelimb morphogenesis
## 3553 embryonic hindlimb morphogenesis
## 3554 embryonic neurocranium morphogenesis
## 3555 embryonic skeletal system morphogenesis
## 3556 enamel mineralization
## 3557 endocytic vesicle lumen
## 3558 endonucleolytic cleavage to generate mature 5'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 3559 endopeptidase activator activity
## 3560 endoplasmic reticulum membrane organization
## 3561 endoplasmic reticulum-plasma membrane tethering
## 3562 endoribonuclease activity, producing 5'-phosphomonoesters
## 3563 endothelial cell apoptotic process
## 3564 endothelial cell differentiation
## 3565 endothelial cell morphogenesis
## 3566 energy reserve metabolic process
## 3567 enzyme-directed rRNA pseudouridine synthesis
## 3568 ER-associated misfolded protein catabolic process
## 3569 ESCRT I complex
## 3570 establishment of endothelial intestinal barrier
## 3571 establishment of epithelial cell apical/basal polarity
## 3572 establishment of epithelial cell polarity
## 3573 establishment of Golgi localization
## 3574 establishment of planar polarity
## 3575 establishment of spindle orientation
## 3576 establishment of vesicle localization
## 3577 estrous cycle
## 3578 eukaryotic initiation factor 4E binding
## 3579 eukaryotic translation initiation factor 2alpha kinase activity
## 3580 extrinsic component of endosome membrane
## 3581 fatty acid alpha-oxidation
## 3582 fatty acid elongase activity
## 3583 fatty acid elongation, monounsaturated fatty acid
## 3584 fatty acid elongation, polyunsaturated fatty acid
## 3585 fatty acid elongation, saturated fatty acid
## 3586 female meiotic nuclear division
## 3587 ferric iron binding
## 3588 fibrinolysis
## 3589 fibroblast migration
## 3590 fructose binding
## 3591 fructose metabolic process
## 3592 fucosyltransferase activity
## 3593 galactose binding
## 3594 galactosyltransferase activity
## 3595 GARP complex
## 3596 GDP metabolic process
## 3597 GINS complex
## 3598 glial cell projection
## 3599 gliogenesis
## 3600 glucose transmembrane transporter activity
## 3601 glucuronate catabolic process to xylulose 5-phosphate
## 3602 glucuronosyl-N-acetylgalactosaminyl-proteoglycan 4-beta-N-acetylgalactosaminyltransferase activity
## 3603 glutamine transport
## 3604 glycoprotein catabolic process
## 3605 GMP metabolic process
## 3606 Golgi transport complex
## 3607 Golgi-associated vesicle membrane
## 3608 growth hormone receptor signaling pathway
## 3609 growth plate cartilage development
## 3610 guanyl nucleotide binding
## 3611 guanylate kinase activity
## 3612 HAUS complex
## 3613 heme catabolic process
## 3614 heparin biosynthetic process
## 3615 hexose transmembrane transport
## 3616 high-density lipoprotein particle binding
## 3617 histone H2B ubiquitination
## 3618 histone H3-K36 methylation
## 3619 histone H3-K4 demethylation, trimethyl-H3-K4-specific
## 3620 histone H3-K4 monomethylation
## 3621 histone methyltransferase activity (H3-K9 specific)
## 3622 histone mRNA catabolic process
## 3623 histone pre-mRNA 3'end processing complex
## 3624 histone pre-mRNA DCP binding
## 3625 hormone activity
## 3626 Hrd1p ubiquitin ligase ERAD-L complex
## 3627 hyaluronic acid binding
## 3628 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds
## 3629 I-kappaB phosphorylation
## 3630 inner ear receptor cell stereocilium organization
## 3631 inorganic diphosphatase activity
## 3632 inositol-polyphosphate 5-phosphatase activity
## 3633 insulin receptor binding
## 3634 insulin secretion involved in cellular response to glucose stimulus
## 3635 insulin-like growth factor II binding
## 3636 integral component of nuclear inner membrane
## 3637 interleukin-15-mediated signaling pathway
## 3638 interleukin-17-mediated signaling pathway
## 3639 interleukin-21-mediated signaling pathway
## 3640 interleukin-23-mediated signaling pathway
## 3641 interleukin-6 receptor binding
## 3642 interleukin-9-mediated signaling pathway
## 3643 intraciliary transport particle A
## 3644 intrinsic component of endoplasmic reticulum membrane
## 3645 ion homeostasis
## 3646 ion transmembrane transporter activity
## 3647 L-amino acid transport
## 3648 L-ascorbic acid metabolic process
## 3649 L-fucose catabolic process
## 3650 L-glutamine transmembrane transporter activity
## 3651 L-proline biosynthetic process
## 3652 lamellipodium morphogenesis
## 3653 lateral loop
## 3654 layer formation in cerebral cortex
## 3655 leptin-mediated signaling pathway
## 3656 leucine catabolic process
## 3657 lipid droplet formation
## 3658 lipopeptide binding
## 3659 locomotor rhythm
## 3660 long-chain fatty acid import into cell
## 3661 long-chain fatty acid-CoA ligase activity
## 3662 long-term synaptic depression
## 3663 low-density lipoprotein particle
## 3664 lymphocyte differentiation
## 3665 lymphocyte homeostasis
## 3666 lysine catabolic process
## 3667 macrophage activation involved in immune response
## 3668 main axon
## 3669 maintenance of centrosome location
## 3670 manchette
## 3671 mannose trimming involved in glycoprotein ERAD pathway
## 3672 marginal zone B cell differentiation
## 3673 megakaryocyte differentiation
## 3674 melanocyte differentiation
## 3675 membrane depolarization
## 3676 membrane raft assembly
## 3677 membrane repolarization
## 3678 membrane repolarization during cardiac muscle cell action potential
## 3679 metallocarboxypeptidase activity
## 3680 methylenetetrahydrofolate dehydrogenase (NADP+) activity
## 3681 MHC class I peptide loading complex
## 3682 MHC class Ib protein binding
## 3683 MIB complex
## 3684 microfibril
## 3685 microglia development
## 3686 microtubule anchoring at centrosome
## 3687 microtubule minus-end
## 3688 mismatched DNA binding
## 3689 mitochondrial fragmentation involved in apoptotic process
## 3690 mitochondrial genome maintenance
## 3691 mitochondrial outer membrane permeabilization
## 3692 mitochondrial proton-transporting ATP synthase complex
## 3693 mitochondrial respiratory chain complex IV
## 3694 mitochondrial transcription
## 3695 mitochondrion transport along microtubule
## 3696 mitochondrion-endoplasmic reticulum membrane tethering
## 3697 mitotic cell cycle arrest
## 3698 mitotic chromosome movement towards spindle pole
## 3699 mitotic spindle midzone assembly
## 3700 modification of postsynaptic actin cytoskeleton
## 3701 modification-dependent protein catabolic process
## 3702 modulation by virus of host process
## 3703 modulation of age-related behavioral decline
## 3704 modulation of excitatory postsynaptic potential
## 3705 monocyte chemotaxis
## 3706 morphogenesis of a branching structure
## 3707 morphogenesis of an epithelium
## 3708 Mre11 complex
## 3709 mRNA 3'-end processing by stem-loop binding and cleavage
## 3710 mRNA pseudouridine synthesis
## 3711 multicellular organism aging
## 3712 muscle cell differentiation
## 3713 myofibril assembly
## 3714 myristoyl-CoA hydrolase activity
## 3715 N-acetylneuraminate metabolic process
## 3716 NAD biosynthesis via nicotinamide riboside salvage pathway
## 3717 NAD biosynthetic process
## 3718 NAD-dependent histone deacetylase activity (H3-K14 specific)
## 3719 NAD-dependent protein deacetylase activity
## 3720 NADH pyrophosphatase activity
## 3721 NADP-retinol dehydrogenase activity
## 3722 NatA complex
## 3723 natural killer cell differentiation
## 3724 Ndc80 complex
## 3725 negative regulation of anoikis
## 3726 negative regulation of ATPase activity
## 3727 negative regulation of blood vessel endothelial cell migration
## 3728 negative regulation of cardiac muscle hypertrophy
## 3729 negative regulation of CD4-positive, alpha-beta T cell proliferation
## 3730 negative regulation of cell aging
## 3731 negative regulation of cell-substrate adhesion
## 3732 negative regulation of chemokine production
## 3733 negative regulation of chromatin binding
## 3734 negative regulation of double-strand break repair
## 3735 negative regulation of double-strand break repair via nonhomologous end joining
## 3736 negative regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## 3737 negative regulation of endothelial cell differentiation
## 3738 negative regulation of epithelial to mesenchymal transition
## 3739 negative regulation of execution phase of apoptosis
## 3740 negative regulation of fibroblast apoptotic process
## 3741 negative regulation of fibroblast migration
## 3742 negative regulation of granulocyte differentiation
## 3743 negative regulation of histone H3-K9 trimethylation
## 3744 negative regulation of hydrogen peroxide-induced cell death
## 3745 negative regulation of immune response
## 3746 negative regulation of kinase activity
## 3747 negative regulation of leukocyte cell-cell adhesion
## 3748 negative regulation of lipid storage
## 3749 negative regulation of lipid transport
## 3750 negative regulation of megakaryocyte differentiation
## 3751 negative regulation of microtubule polymerization
## 3752 negative regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## 3753 negative regulation of myoblast differentiation
## 3754 negative regulation of neural precursor cell proliferation
## 3755 negative regulation of nitric oxide biosynthetic process
## 3756 negative regulation of organ growth
## 3757 negative regulation of pathway-restricted SMAD protein phosphorylation
## 3758 negative regulation of programmed cell death
## 3759 negative regulation of protein autophosphorylation
## 3760 negative regulation of protein kinase activity by regulation of protein phosphorylation
## 3761 negative regulation of protein localization to microtubule
## 3762 negative regulation of protein neddylation
## 3763 negative regulation of retrograde protein transport, ER to cytosol
## 3764 negative regulation of ruffle assembly
## 3765 negative regulation of ryanodine-sensitive calcium-release channel activity
## 3766 negative regulation of sequestering of triglyceride
## 3767 negative regulation of single stranded viral RNA replication via double stranded DNA intermediate
## 3768 negative regulation of telomere capping
## 3769 negative regulation of transcription by competitive promoter binding
## 3770 negative regulation of tyrosine phosphorylation of STAT protein
## 3771 negative regulation of ubiquitin-protein transferase activity
## 3772 nephron development
## 3773 neural retina development
## 3774 neuromuscular synaptic transmission
## 3775 neuron projection terminus
## 3776 neuropeptide signaling pathway
## 3777 neurotransmitter transmembrane transporter activity
## 3778 NLRP3 inflammasome complex
## 3779 non-membrane spanning protein tyrosine phosphatase activity
## 3780 nuclear envelope disassembly
## 3781 nuclear export signal receptor activity
## 3782 nuclear lamina
## 3783 nuclear mRNA surveillance
## 3784 nuclear stress granule
## 3785 nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## 3786 nuclear-transcribed mRNA catabolic process, exonucleolytic, 3'-5'
## 3787 nucleoside-diphosphatase activity
## 3788 oligodendrocyte differentiation
## 3789 oocyte development
## 3790 organ growth
## 3791 osteoblast proliferation
## 3792 outflow tract septum morphogenesis
## 3793 outward rectifier potassium channel activity
## 3794 oxidized purine DNA binding
## 3795 oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor
## 3796 oxygen transport
## 3797 P granule
## 3798 palmitoyl-CoA hydrolase activity
## 3799 peptidase activator activity
## 3800 peptide antigen assembly with MHC class II protein complex
## 3801 peptide metabolic process
## 3802 peptidyl-diphthamide biosynthetic process from peptidyl-histidine
## 3803 peptidyl-tyrosine autophosphorylation
## 3804 peripheral nervous system development
## 3805 phagocytosis, recognition
## 3806 phagosome-lysosome fusion
## 3807 phosphatidic acid transfer activity
## 3808 phosphatidylcholine catabolic process
## 3809 phosphatidylcholine metabolic process
## 3810 phosphatidylglycerol biosynthetic process
## 3811 phosphatidylinositol 3-kinase activity
## 3812 phosphatidylinositol 3-kinase complex, class IB
## 3813 phosphatidylinositol bisphosphate binding
## 3814 phosphatidylinositol phosphate kinase activity
## 3815 phosphatidylinositol transfer activity
## 3816 phosphatidylinositol-3,4-bisphosphate 5-kinase activity
## 3817 phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## 3818 phosphatidylserine acyl-chain remodeling
## 3819 phospholipase activator activity
## 3820 phospholipase C activity
## 3821 phospholipid scramblase activity
## 3822 phospholipid transporter activity
## 3823 phosphoric ester hydrolase activity
## 3824 phosphorus-oxygen lyase activity
## 3825 photoreceptor cell outer segment organization
## 3826 Piccolo NuA4 histone acetyltransferase complex
## 3827 pICln-Sm protein complex
## 3828 piecemeal microautophagy of the nucleus
## 3829 piRNA metabolic process
## 3830 planar cell polarity pathway involved in neural tube closure
## 3831 plasma membrane organization
## 3832 plasma membrane to endosome transport
## 3833 platelet dense tubular network membrane
## 3834 poly(A)-specific ribonuclease activity
## 3835 positive regulation by host of viral process
## 3836 positive regulation of actin filament bundle assembly
## 3837 positive regulation of astrocyte differentiation
## 3838 positive regulation of autophagosome assembly
## 3839 positive regulation of autophagosome maturation
## 3840 positive regulation of B cell receptor signaling pathway
## 3841 positive regulation of calcium ion import
## 3842 positive regulation of cardiac muscle cell proliferation
## 3843 positive regulation of cartilage development
## 3844 positive regulation of cell adhesion mediated by integrin
## 3845 positive regulation of cell growth involved in cardiac muscle cell development
## 3846 positive regulation of cellular component movement
## 3847 positive regulation of cellular protein localization
## 3848 positive regulation of cellular respiration
## 3849 positive regulation of chemokine (C-X-C motif) ligand 2 production
## 3850 positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G protein-coupled signaling pathway
## 3851 positive regulation of dendrite development
## 3852 positive regulation of DNA methylation-dependent heterochromatin assembly
## 3853 positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## 3854 positive regulation of ERAD pathway
## 3855 positive regulation of establishment of protein localization
## 3856 positive regulation of exit from mitosis
## 3857 positive regulation of extracellular matrix disassembly
## 3858 positive regulation of fatty acid beta-oxidation
## 3859 positive regulation of glucose metabolic process
## 3860 positive regulation of Golgi to plasma membrane protein transport
## 3861 positive regulation of hair follicle development
## 3862 positive regulation of heterotypic cell-cell adhesion
## 3863 positive regulation of histone deacetylase activity
## 3864 positive regulation of histone exchange
## 3865 positive regulation of humoral immune response mediated by circulating immunoglobulin
## 3866 positive regulation of I-kappaB phosphorylation
## 3867 positive regulation of intracellular transport
## 3868 positive regulation of isotype switching to IgA isotypes
## 3869 positive regulation of isotype switching to IgG isotypes
## 3870 positive regulation of keratinocyte migration
## 3871 positive regulation of lipid storage
## 3872 positive regulation of mesenchymal cell proliferation
## 3873 positive regulation of microglial cell migration
## 3874 positive regulation of mitotic cell cycle spindle assembly checkpoint
## 3875 positive regulation of mRNA 3'-end processing
## 3876 positive regulation of myelination
## 3877 positive regulation of myeloid dendritic cell cytokine production
## 3878 positive regulation of myoblast differentiation
## 3879 positive regulation of myoblast fusion
## 3880 positive regulation of natural killer cell activation
## 3881 positive regulation of neural precursor cell proliferation
## 3882 positive regulation of neuron projection arborization
## 3883 positive regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## 3884 positive regulation of oxidoreductase activity
## 3885 positive regulation of phagocytosis, engulfment
## 3886 positive regulation of podosome assembly
## 3887 positive regulation of protein K63-linked ubiquitination
## 3888 positive regulation of protein localization to Cajal body
## 3889 positive regulation of protein localization to kinetochore
## 3890 positive regulation of pseudopodium assembly
## 3891 positive regulation of Rac protein signal transduction
## 3892 positive regulation of reactive oxygen species biosynthetic process
## 3893 positive regulation of rRNA processing
## 3894 positive regulation of smooth muscle cell differentiation
## 3895 positive regulation of sprouting angiogenesis
## 3896 positive regulation of synaptic transmission, GABAergic
## 3897 positive regulation of T cell anergy
## 3898 positive regulation of telomerase RNA localization to Cajal body
## 3899 positive regulation of toll-like receptor 3 signaling pathway
## 3900 positive regulation of transcription by RNA polymerase I
## 3901 positive regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## 3902 positive regulation of transforming growth factor beta production
## 3903 positive regulation of urine volume
## 3904 positive regulation of vascular permeability
## 3905 positive regulation of vesicle fusion
## 3906 positive regulation of xenophagy
## 3907 postsynaptic actin cytoskeleton organization
## 3908 postsynaptic density, intracellular component
## 3909 posttranscriptional gene silencing
## 3910 potassium ion import across plasma membrane
## 3911 prenyltransferase activity
## 3912 presynaptic endocytic zone membrane
## 3913 primary miRNA binding
## 3914 production of siRNA involved in RNA interference
## 3915 profilin binding
## 3916 proline biosynthetic process
## 3917 pronucleus
## 3918 protein desumoylation
## 3919 protein heterooligomerization
## 3920 protein hexamerization
## 3921 protein localization to cell-cell junction
## 3922 protein localization to site of double-strand break
## 3923 protein maturation by [4Fe-4S] cluster transfer
## 3924 protein modification by small protein conjugation
## 3925 protein polymerization
## 3926 protein retention in Golgi apparatus
## 3927 protein sequestering activity
## 3928 protein ufmylation
## 3929 protein-DNA covalent cross-linking repair
## 3930 protein-membrane adaptor activity
## 3931 Prp19 complex
## 3932 PTW/PP1 phosphatase complex
## 3933 purine nucleobase biosynthetic process
## 3934 purine-containing compound salvage
## 3935 pyrimidine dimer repair
## 3936 pyrimidine nucleoside catabolic process
## 3937 quinone binding
## 3938 Ragulator complex
## 3939 Rap protein signal transduction
## 3940 rDNA heterochromatin
## 3941 regulation of acetyl-CoA biosynthetic process from pyruvate
## 3942 regulation of actin polymerization or depolymerization
## 3943 regulation of ATPase activity
## 3944 regulation of B cell receptor signaling pathway
## 3945 regulation of blood vessel diameter
## 3946 regulation of cardiac muscle contraction
## 3947 regulation of cell-cell adhesion
## 3948 regulation of cell-matrix adhesion
## 3949 regulation of cellular localization
## 3950 regulation of cellular respiration
## 3951 regulation of clathrin-dependent endocytosis
## 3952 regulation of DNA binding
## 3953 regulation of DNA damage checkpoint
## 3954 regulation of early endosome to late endosome transport
## 3955 regulation of erythrocyte differentiation
## 3956 regulation of establishment of protein localization
## 3957 regulation of fatty acid biosynthetic process
## 3958 regulation of fatty acid metabolic process
## 3959 regulation of insulin receptor signaling pathway
## 3960 regulation of interleukin-1 beta production
## 3961 regulation of intracellular signal transduction
## 3962 regulation of lipid storage
## 3963 regulation of long-term neuronal synaptic plasticity
## 3964 regulation of meiotic nuclear division
## 3965 regulation of mitochondrial mRNA stability
## 3966 regulation of mitotic centrosome separation
## 3967 regulation of mRNA export from nucleus
## 3968 regulation of neuron migration
## 3969 regulation of neurotransmitter secretion
## 3970 regulation of organ growth
## 3971 regulation of peptidyl-serine phosphorylation
## 3972 regulation of phosphatidylinositol dephosphorylation
## 3973 regulation of postsynapse organization
## 3974 regulation of postsynaptic density assembly
## 3975 regulation of postsynaptic membrane neurotransmitter receptor levels
## 3976 regulation of postsynaptic neurotransmitter receptor activity
## 3977 regulation of postsynaptic neurotransmitter receptor internalization
## 3978 regulation of presynapse assembly
## 3979 regulation of pro-B cell differentiation
## 3980 regulation of protein autophosphorylation
## 3981 regulation of protein kinase A signaling
## 3982 regulation of protein localization to cell surface
## 3983 regulation of protein metabolic process
## 3984 regulation of protein neddylation
## 3985 regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## 3986 regulation of ribonuclease activity
## 3987 regulation of RNA biosynthetic process
## 3988 regulation of synaptic transmission, GABAergic
## 3989 regulation of synaptic vesicle priming
## 3990 regulation of telomerase activity
## 3991 regulation of the force of heart contraction
## 3992 regulation of TORC1 signaling
## 3993 regulation of transcription by RNA polymerase III
## 3994 regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## 3995 regulation of translational initiation by eIF2 alpha phosphorylation
## 3996 regulation of type B pancreatic cell proliferation
## 3997 regulation of type I interferon-mediated signaling pathway
## 3998 regulation of vesicle-mediated transport
## 3999 relaxation of cardiac muscle
## 4000 respiratory electron transport chain
## 4001 response to alkaloid
## 4002 response to ATP
## 4003 response to auditory stimulus
## 4004 response to caffeine
## 4005 response to fructose
## 4006 response to growth factor
## 4007 response to growth hormone
## 4008 response to interferon-alpha
## 4009 response to isolation stress
## 4010 response to laminar fluid shear stress
## 4011 response to leptin
## 4012 response to magnesium ion
## 4013 response to metal ion
## 4014 response to molecule of bacterial origin
## 4015 response to nicotine
## 4016 response to peptide
## 4017 response to peptidoglycan
## 4018 response to type I interferon
## 4019 response to vitamin A
## 4020 response to vitamin D
## 4021 retina vasculature development in camera-type eye
## 4022 retrograde axonal transport
## 4023 ribosomal protein S6 kinase activity
## 4024 ribosome assembly
## 4025 RNA polyadenylation
## 4026 RNA polymerase II C-terminal domain phosphoserine binding
## 4027 RNA polymerase III general transcription initiation factor activity
## 4028 SAGA complex
## 4029 SAM complex
## 4030 secretion
## 4031 selenocysteine insertion sequence binding
## 4032 selenocysteinyl-tRNA(Sec) biosynthetic process
## 4033 semaphorin receptor activity
## 4034 semaphorin receptor complex
## 4035 semaphorin-plexin signaling pathway involved in axon guidance
## 4036 sequestering of actin monomers
## 4037 Set1C/COMPASS complex
## 4038 sialylation
## 4039 sialyltransferase activity
## 4040 signal peptide processing
## 4041 single strand break repair
## 4042 Smc5-Smc6 complex
## 4043 smooth muscle tissue development
## 4044 sodium ion import across plasma membrane
## 4045 solute:proton antiporter activity
## 4046 somatic hypermutation of immunoglobulin genes
## 4047 somite rostral/caudal axis specification
## 4048 spanning component of membrane
## 4049 spanning component of plasma membrane
## 4050 spectrin binding
## 4051 sperm axoneme assembly
## 4052 sperm-egg recognition
## 4053 spermatid nucleus differentiation
## 4054 sphingomyelin biosynthetic process
## 4055 spliceosomal tri-snRNP complex
## 4056 SRP-dependent cotranslational protein targeting to membrane, translocation
## 4057 stabilization of membrane potential
## 4058 STAGA complex
## 4059 STAT family protein binding
## 4060 sterol homeostasis
## 4061 stress fiber assembly
## 4062 striated muscle thin filament
## 4063 sulfuric ester hydrolase activity
## 4064 SUMO ligase activity
## 4065 superoxide anion generation
## 4066 synaptic membrane adhesion
## 4067 synaptic transmission, cholinergic
## 4068 synaptic vesicle fusion to presynaptic active zone membrane
## 4069 telomerase inhibitor activity
## 4070 telomere maintenance via telomere lengthening
## 4071 telomere organization
## 4072 telomeric 3' overhang formation
## 4073 thiol oxidase activity
## 4074 THO complex
## 4075 THO complex part of transcription export complex
## 4076 thrombin-activated receptor signaling pathway
## 4077 toll-like receptor 2 signaling pathway
## 4078 transcription cofactor binding
## 4079 transferrin receptor binding
## 4080 translation activator activity
## 4081 transmembrane receptor protein serine/threonine kinase activity
## 4082 tRNA pseudouridine synthesis
## 4083 tRNA transcription by RNA polymerase III
## 4084 tRNA-splicing ligase complex
## 4085 tubulin complex assembly
## 4086 type 1 angiotensin receptor binding
## 4087 type B pancreatic cell development
## 4088 ubiquitin-dependent SMAD protein catabolic process
## 4089 ubiquitin-like modifier activating enzyme activity
## 4090 uniplex complex
## 4091 unmethylated CpG binding
## 4092 urogenital system development
## 4093 vascular wound healing
## 4094 VCP-NPL4-UFD1 AAA ATPase complex
## 4095 ventricular cardiac muscle cell action potential
## 4096 ventricular cardiac muscle cell development
## 4097 ventricular trabecula myocardium morphogenesis
## 4098 very long-chain fatty acid catabolic process
## 4099 very-long-chain 3-ketoacyl-CoA synthase activity
## 4100 vesicle cargo loading
## 4101 vesicle fusion with endoplasmic reticulum-Golgi intermediate compartment (ERGIC) membrane
## 4102 vesicle fusion with Golgi apparatus
## 4103 viral budding
## 4104 viral genome replication
## 4105 viral translation
## 4106 virion binding
## 4107 voltage-gated sodium channel activity
## 4108 white fat cell differentiation
## 4109 Wnt signalosome
## 4110 Wnt-activated receptor activity
## 4111 wound healing, spreading of cells
## 4112 XY body
## 4113 zymogen granule membrane
## 4114 'de novo' IMP biosynthetic process
## 4115 [2Fe-2S] cluster assembly
## 4116 1-acyl-2-lysophosphatidylserine acylhydrolase activity
## 4117 1-acylglycerophosphocholine O-acyltransferase activity
## 4118 1-alkyl-2-acetylglycerophosphocholine esterase activity
## 4119 3-hydroxy-arachidoyl-CoA dehydratase activity
## 4120 3-hydroxy-behenoyl-CoA dehydratase activity
## 4121 3-hydroxy-lignoceroyl-CoA dehydratase activity
## 4122 3-hydroxyacyl-CoA dehydratase activity
## 4123 3' overhang single-stranded DNA endodeoxyribonuclease activity
## 4124 3'-5'-exodeoxyribonuclease activity
## 4125 3'-phosphoadenosine 5'-phosphosulfate biosynthetic process
## 4126 5S class rRNA transcription by RNA polymerase III
## 4127 7SK snRNP
## 4128 abscission
## 4129 acetyl-CoA C-acetyltransferase activity
## 4130 acetylcholine receptor binding
## 4131 acid phosphatase activity
## 4132 actin crosslink formation
## 4133 actin filament network formation
## 4134 actin filament reorganization
## 4135 activation of protein kinase A activity
## 4136 activation-induced cell death of T cells
## 4137 acyl carnitine transmembrane transport
## 4138 acyl-CoA hydrolase activity
## 4139 acylglycerol lipase activity
## 4140 adenylate cyclase activator activity
## 4141 adenylate cyclase binding
## 4142 adenylate cyclase-activating adrenergic receptor signaling pathway
## 4143 aflatoxin metabolic process
## 4144 alditol:NADP+ 1-oxidoreductase activity
## 4145 alpha-actinin binding
## 4146 alpha-beta T cell receptor complex
## 4147 alveolar lamellar body
## 4148 amelogenesis
## 4149 aminoacyl-tRNA editing activity
## 4150 aminophospholipid translocation
## 4151 ammonium transmembrane transporter activity
## 4152 AMP biosynthetic process
## 4153 amyloid precursor protein metabolic process
## 4154 amyloid-beta metabolic process
## 4155 anchored component of synaptic vesicle membrane
## 4156 androgen biosynthetic process
## 4157 androgen receptor signaling pathway
## 4158 angiotensin maturation
## 4159 animal organ development
## 4160 antigen receptor-mediated signaling pathway
## 4161 antimicrobial humoral response
## 4162 AP-4 adaptor complex
## 4163 AP-type membrane coat adaptor complex
## 4164 apolipoprotein A-I binding
## 4165 apolipoprotein A-I-mediated signaling pathway
## 4166 apoptotic nuclear changes
## 4167 apoptotic process involved in morphogenesis
## 4168 arachidonate-CoA ligase activity
## 4169 arginine binding
## 4170 arginine transport
## 4171 Arp2/3 protein complex
## 4172 aspartic-type endopeptidase inhibitor activity
## 4173 astrocyte cell migration
## 4174 astrocyte development
## 4175 ATPase inhibitor activity
## 4176 ATPase-coupled cation transmembrane transporter activity
## 4177 ATPase-coupled glutathione S-conjugate transmembrane transporter activity
## 4178 ATPase-coupled peptide antigen transmembrane transporter activity
## 4179 ATPase-coupled xenobiotic transmembrane transporter activity
## 4180 atrial septum development
## 4181 atrial septum morphogenesis
## 4182 atrioventricular canal development
## 4183 attachment of GPI anchor to protein
## 4184 autophagic cell death
## 4185 axolemma
## 4186 axon development
## 4187 axon ensheathment
## 4188 axon hillock
## 4189 axonal transport of mitochondrion
## 4190 axoneme assembly
## 4191 azurophil granule
## 4192 B cell apoptotic process
## 4193 B cell mediated immunity
## 4194 B cell receptor complex
## 4195 basal cortex
## 4196 basement membrane assembly
## 4197 basic amino acid transmembrane transport
## 4198 behavioral fear response
## 4199 beta-1 adrenergic receptor binding
## 4200 beta-2-microglobulin binding
## 4201 beta-adrenergic receptor kinase activity
## 4202 beta-catenin destruction complex assembly
## 4203 bleb assembly
## 4204 BLOC-2 complex
## 4205 blood coagulation, intrinsic pathway
## 4206 blood vessel maturation
## 4207 BMP receptor activity
## 4208 BMP receptor binding
## 4209 box C/D snoRNP complex
## 4210 bradykinin catabolic process
## 4211 BRCA1-BARD1 complex
## 4212 BRISC complex
## 4213 bubble DNA binding
## 4214 C-X3-C chemokine binding
## 4215 C2H2 zinc finger domain binding
## 4216 calcium activated cation channel activity
## 4217 calcium activated phospholipid scrambling
## 4218 calcium ion homeostasis
## 4219 calcium transmembrane transporter activity, phosphorylative mechanism
## 4220 calcium-independent phospholipase A2 activity
## 4221 calcium-mediated signaling using intracellular calcium source
## 4222 calmodulin-dependent protein kinase activity
## 4223 cAMP binding
## 4224 carbohydrate biosynthetic process
## 4225 carbonate dehydratase activity
## 4226 carbonyl reductase (NADPH) activity
## 4227 CARD domain binding
## 4228 cardiac conduction system development
## 4229 cardiac muscle fiber development
## 4230 cardiac muscle hypertrophy in response to stress
## 4231 carnitine shuttle
## 4232 catecholamine metabolic process
## 4233 cation:chloride symporter activity
## 4234 Cdc73/Paf1 complex
## 4235 CDP-choline pathway
## 4236 cell cycle phase transition
## 4237 cell growth involved in cardiac muscle cell development
## 4238 cell-cell adhesion mediated by integrin
## 4239 cell-cell adhesion mediator activity
## 4240 cell-cell junction maintenance
## 4241 cellular aldehyde metabolic process
## 4242 cellular chloride ion homeostasis
## 4243 cellular extravasation
## 4244 cellular heat acclimation
## 4245 cellular homeostasis
## 4246 cellular lipid catabolic process
## 4247 cellular phosphate ion homeostasis
## 4248 cellular response to brain-derived neurotrophic factor stimulus
## 4249 cellular response to caffeine
## 4250 cellular response to camptothecin
## 4251 cellular response to cisplatin
## 4252 cellular response to copper ion
## 4253 cellular response to cycloheximide
## 4254 cellular response to decreased oxygen levels
## 4255 cellular response to follicle-stimulating hormone stimulus
## 4256 cellular response to glucagon stimulus
## 4257 cellular response to glucocorticoid stimulus
## 4258 cellular response to hydroperoxide
## 4259 cellular response to hydrostatic pressure
## 4260 cellular response to L-glutamate
## 4261 cellular response to leucine starvation
## 4262 cellular response to lipid
## 4263 cellular response to lipoteichoic acid
## 4264 cellular response to lithium ion
## 4265 cellular response to magnesium ion
## 4266 cellular response to molecule of bacterial origin
## 4267 cellular response to morphine
## 4268 cellular response to nicotine
## 4269 cellular response to nitrogen starvation
## 4270 cellular response to pH
## 4271 cellular response to phorbol 13-acetate 12-myristate
## 4272 cellular response to potassium ion
## 4273 cellular response to staurosporine
## 4274 cellular response to testosterone stimulus
## 4275 cellular response to thyroid hormone stimulus
## 4276 cellular response to xenobiotic stimulus
## 4277 central nervous system neuron development
## 4278 centralspindlin complex
## 4279 centriole assembly
## 4280 ceramide 1-phosphate binding
## 4281 ceramide 1-phosphate transfer activity
## 4282 ceramide 1-phosphate transport
## 4283 cerebellar cortex formation
## 4284 cerebellum morphogenesis
## 4285 cerebrospinal fluid circulation
## 4286 cGMP binding
## 4287 channel activity
## 4288 chemokine (C-C motif) ligand 21 signaling pathway
## 4289 chemokine activity
## 4290 chloride ion homeostasis
## 4291 chloride transmembrane transporter activity
## 4292 cholinergic synapse
## 4293 chondrocyte proliferation
## 4294 chromatin insulator sequence binding
## 4295 CIA complex
## 4296 class I DNA-(apurinic or apyrimidinic site) endonuclease activity
## 4297 clathrin complex
## 4298 clathrin light chain binding
## 4299 cleavage involved in rRNA processing
## 4300 co-SMAD binding
## 4301 coated vesicle
## 4302 cobalamin binding
## 4303 coenzyme A metabolic process
## 4304 complement activation, alternative pathway
## 4305 connective tissue replacement involved in inflammatory response wound healing
## 4306 constitutive secretory pathway
## 4307 COP9 signalosome assembly
## 4308 COPI coating of Golgi vesicle
## 4309 copper ion transport
## 4310 coronary artery morphogenesis
## 4311 corpus callosum morphogenesis
## 4312 CORVET complex
## 4313 costamere
## 4314 cranial skeletal system development
## 4315 craniofacial suture morphogenesis
## 4316 CTP salvage
## 4317 Cul4A-RING E3 ubiquitin ligase complex
## 4318 cupric ion binding
## 4319 cuprous ion binding
## 4320 cyclic nucleotide biosynthetic process
## 4321 cyclin-dependent protein kinase activity
## 4322 cyclosporin A binding
## 4323 cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## 4324 cytochrome-b5 reductase activity, acting on NAD(P)H
## 4325 cytolysis
## 4326 cytoplasmic sequestering of NF-kappaB
## 4327 D1 dopamine receptor binding
## 4328 daunorubicin metabolic process
## 4329 de novo centriole assembly involved in multi-ciliated epithelial cell differentiation
## 4330 DEAD/H-box RNA helicase binding
## 4331 death-inducing signaling complex
## 4332 defense response to tumor cell
## 4333 delta DNA polymerase complex
## 4334 demethylation
## 4335 dendrite extension
## 4336 dendrite self-avoidance
## 4337 dendritic spine maintenance
## 4338 dendritic spine neck
## 4339 dense body
## 4340 deoxyribonucleoside monophosphate biosynthetic process
## 4341 Derlin-1 retrotranslocation complex
## 4342 dermatan sulfate proteoglycan biosynthetic process
## 4343 detection of bacterium
## 4344 detection of temperature stimulus involved in sensory perception of pain
## 4345 detection of virus
## 4346 deuterosome
## 4347 developmental pigmentation
## 4348 developmental process
## 4349 developmental process involved in reproduction
## 4350 digestive tract morphogenesis
## 4351 dipeptide import across plasma membrane
## 4352 dipeptide transmembrane transporter activity
## 4353 dipeptidyl-peptidase activity
## 4354 DNA catabolic process, endonucleolytic
## 4355 DNA damage induced protein phosphorylation
## 4356 DNA methylation-dependent heterochromatin assembly
## 4357 DNA N-glycosylase activity
## 4358 DNA repair complex
## 4359 DNA replication, removal of RNA primer
## 4360 DNA topoisomerase type I (single strand cut, ATP-independent) activity
## 4361 dolichyl-diphosphooligosaccharide-protein glycotransferase activity
## 4362 dopaminergic neuron differentiation
## 4363 dorsal aorta morphogenesis
## 4364 doxorubicin metabolic process
## 4365 dTTP biosynthetic process
## 4366 early phagosome
## 4367 EARP complex
## 4368 eating behavior
## 4369 efflux transmembrane transporter activity
## 4370 Elg1 RFC-like complex
## 4371 embryo development ending in birth or egg hatching
## 4372 embryonic body morphogenesis
## 4373 embryonic placenta morphogenesis
## 4374 embryonic retina morphogenesis in camera-type eye
## 4375 endoplasmic reticulum tubular network organization
## 4376 endoplasmic reticulum-plasma membrane contact site
## 4377 endosome to lysosome transport via multivesicular body sorting pathway
## 4378 endothelial cell chemotaxis
## 4379 endothelial cell development
## 4380 endothelial to hematopoietic transition
## 4381 engulfment of apoptotic cell
## 4382 eosinophil degranulation
## 4383 epithelial cell development
## 4384 epithelial cilium movement involved in extracellular fluid movement
## 4385 equatorial microtubule organizing center
## 4386 ER membrane protein complex
## 4387 ER overload response
## 4388 ERBB signaling pathway
## 4389 ErbB-2 class receptor binding
## 4390 ERCC4-ERCC1 complex
## 4391 ESCRT II complex
## 4392 ESCRT-0 complex
## 4393 establishment of apical/basal cell polarity
## 4394 establishment of integrated proviral latency
## 4395 establishment of T cell polarity
## 4396 establishment or maintenance of microtubule cytoskeleton polarity
## 4397 establishment or maintenance of transmembrane electrochemical gradient
## 4398 ether lipid biosynthetic process
## 4399 eukaryotic initiation factor eIF2 binding
## 4400 eukaryotic translation elongation factor 1 complex
## 4401 exocytic vesicle
## 4402 exonucleolytic trimming to generate mature 3'-end of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 4403 exopeptidase activity
## 4404 export across plasma membrane
## 4405 extracellular ligand-gated ion channel activity
## 4406 extracellular matrix assembly
## 4407 extracellular matrix constituent conferring elasticity
## 4408 eye photoreceptor cell development
## 4409 F-actin capping protein complex
## 4410 FANCM-MHF complex
## 4411 FAR/SIN/STRIPAK complex
## 4412 fatty acid transmembrane transporter activity
## 4413 Fc receptor mediated inhibitory signaling pathway
## 4414 female meiosis chromosome segregation
## 4415 flavonoid metabolic process
## 4416 folic acid transport
## 4417 forebrain morphogenesis
## 4418 formation of translation preinitiation complex
## 4419 fructose catabolic process to hydroxyacetone phosphate and glyceraldehyde-3-phosphate
## 4420 fructose transmembrane transport
## 4421 fructose transmembrane transporter activity
## 4422 fucose metabolic process
## 4423 G protein-coupled adenosine receptor signaling pathway
## 4424 G protein-coupled glutamate receptor signaling pathway
## 4425 G protein-coupled peptide receptor activity
## 4426 G protein-coupled receptor internalization
## 4427 G protein-coupled receptor kinase activity
## 4428 G-protein beta-subunit binding
## 4429 GAIT complex
## 4430 galactose catabolic process
## 4431 galactose catabolic process via UDP-galactose
## 4432 gamma-tubulin small complex
## 4433 ganglioside biosynthetic process
## 4434 GATOR2 complex
## 4435 general transcription initiation factor activity
## 4436 generation of catalytic spliceosome for first transesterification step
## 4437 generation of neurons
## 4438 genitalia development
## 4439 germinal center B cell differentiation
## 4440 germinal center formation
## 4441 GET complex
## 4442 GID complex
## 4443 gland morphogenesis
## 4444 glial cell apoptotic process
## 4445 glucose 6-phosphate metabolic process
## 4446 glucose binding
## 4447 glucose-6-phosphate transport
## 4448 glucuronosyltransferase activity
## 4449 glucuronylgalactosylproteoglycan 4-beta-N-acetylgalactosaminyltransferase activity
## 4450 glutathione binding
## 4451 glutathione catabolic process
## 4452 glutathione hydrolase activity
## 4453 glycerol catabolic process
## 4454 glycerol-3-phosphate metabolic process
## 4455 glycerophospholipid catabolic process
## 4456 glycine biosynthetic process
## 4457 glycolipid binding
## 4458 glycolipid biosynthetic process
## 4459 glycolipid transport
## 4460 glycoprotein transport
## 4461 glycosylphosphatidylinositol-N-acetylglucosaminyltransferase (GPI-GnT) complex
## 4462 Golgi apparatus mannose trimming
## 4463 Golgi vesicle budding
## 4464 GPI anchor metabolic process
## 4465 growth cone filopodium
## 4466 growth hormone receptor binding
## 4467 growth hormone receptor signaling pathway via JAK-STAT
## 4468 growth hormone secretion
## 4469 guanine/thymine mispair binding
## 4470 guanosine-diphosphatase activity
## 4471 guanyl-nucleotide exchange factor complex
## 4472 H3 histone acetyltransferase activity
## 4473 hard palate development
## 4474 heart contraction
## 4475 heart valve morphogenesis
## 4476 hematopoietic stem cell proliferation
## 4477 hemidesmosome assembly
## 4478 hemoglobin complex
## 4479 hepatocyte differentiation
## 4480 hepatocyte proliferation
## 4481 heterochromatin assembly
## 4482 heteromeric SMAD protein complex
## 4483 high-density lipoprotein particle assembly
## 4484 high-density lipoprotein particle clearance
## 4485 high-density lipoprotein particle remodeling
## 4486 histidine catabolic process
## 4487 histone acetyltransferase activity (H3-K23 specific)
## 4488 histone demethylase activity (H3-dimethyl-K4 specific)
## 4489 histone demethylase activity (H3-K4 specific)
## 4490 histone demethylase activity (H3-trimethyl-K4 specific)
## 4491 histone demethylation
## 4492 histone glutamine methylation
## 4493 histone H2A ubiquitination
## 4494 histone H2A-K119 monoubiquitination
## 4495 histone H2B acetylation
## 4496 histone H2B conserved C-terminal lysine deubiquitination
## 4497 histone H3-K23 acetylation
## 4498 histone H3-K27 methylation
## 4499 histone H3-K9 methylation
## 4500 histone H4-K12 acetylation
## 4501 histone H4-R3 methylation
## 4502 histone kinase activity
## 4503 histone methyltransferase activity (H3-K27 specific)
## 4504 histone serine kinase activity
## 4505 histone ubiquitination
## 4506 hyalurononglucosaminidase activity
## 4507 hypoglycin A gamma-glutamyl transpeptidase activity
## 4508 hypomethylation of CpG island
## 4509 hypothalamus development
## 4510 IgG binding
## 4511 immune response-activating cell surface receptor signaling pathway
## 4512 immune response-regulating cell surface receptor signaling pathway
## 4513 immunoglobulin mediated immune response
## 4514 immunoglobulin receptor binding
## 4515 IMP metabolic process
## 4516 import across plasma membrane
## 4517 induction of positive chemotaxis
## 4518 inflammasome complex
## 4519 inner dynein arm assembly
## 4520 inorganic anion exchanger activity
## 4521 inorganic cation transmembrane transport
## 4522 inositol 1,3,4,5 tetrakisphosphate binding
## 4523 inositol 1,4,5 trisphosphate binding
## 4524 inositol lipid-mediated signaling
## 4525 inositol metabolic process
## 4526 inositol-1,3,4,5-tetrakisphosphate 5-phosphatase activity
## 4527 insulin receptor signaling pathway via phosphatidylinositol 3-kinase
## 4528 insulin-like growth factor binding
## 4529 insulin-responsive compartment
## 4530 integral component of cytoplasmic side of endoplasmic reticulum membrane
## 4531 integral component of lysosomal membrane
## 4532 integral component of presynaptic active zone membrane
## 4533 interchromatin granule
## 4534 interkinetic nuclear migration
## 4535 interleukin-18-mediated signaling pathway
## 4536 intermediate filament organization
## 4537 intestinal epithelial cell differentiation
## 4538 intracellular anatomical structure
## 4539 intracellular protein transmembrane transport
## 4540 intracellular sequestering of iron ion
## 4541 intracellular vesicle
## 4542 intraciliary transport particle B
## 4543 ion channel complex
## 4544 ionotropic glutamate receptor complex
## 4545 ionotropic glutamate receptor signaling pathway
## 4546 iris morphogenesis
## 4547 ISG15 transferase activity
## 4548 ISG15-protein conjugation
## 4549 isocitrate metabolic process
## 4550 isoleucine catabolic process
## 4551 isopentenyl diphosphate biosynthetic process, mevalonate pathway
## 4552 JUN kinase kinase kinase activity
## 4553 juxtaparanode region of axon
## 4554 keratin filament binding
## 4555 kidney morphogenesis
## 4556 L-alpha-amino acid transmembrane transport
## 4557 L-amino acid transmembrane transporter activity
## 4558 L-lysine transmembrane transport
## 4559 L-serine biosynthetic process
## 4560 labyrinthine layer development
## 4561 lactate transmembrane transport
## 4562 lactate transmembrane transporter activity
## 4563 lamin filament
## 4564 late endosome to lysosome transport
## 4565 leukocyte chemotaxis
## 4566 leukocyte migration involved in inflammatory response
## 4567 leukotriene C4 gamma-glutamyl transferase activity
## 4568 leukotriene D4 biosynthetic process
## 4569 leukotriene metabolic process
## 4570 leukotriene transport
## 4571 lipase activity
## 4572 lipase binding
## 4573 lipid glycosylation
## 4574 lipid kinase activity
## 4575 lipid phosphatase activity
## 4576 lipid transfer activity
## 4577 lipid transporter activity
## 4578 lipopolysaccharide immune receptor activity
## 4579 lipoprotein catabolic process
## 4580 locomotory exploration behavior
## 4581 long-chain fatty acyl-CoA binding
## 4582 low-density lipoprotein particle remodeling
## 4583 LRR domain binding
## 4584 Lsm1-7-Pat1 complex
## 4585 LUBAC complex
## 4586 lymphocyte chemotaxis
## 4587 lymphocyte proliferation
## 4588 lysophosphatidic acid acyltransferase activity
## 4589 macrophage colony-stimulating factor signaling pathway
## 4590 magnesium ion transport
## 4591 maintenance of mitotic sister chromatid cohesion
## 4592 malate metabolic process
## 4593 male genitalia development
## 4594 male germ cell nucleus
## 4595 mammary gland alveolus development
## 4596 mammary gland branching involved in thelarche
## 4597 mammary gland epithelial cell proliferation
## 4598 mannosidase activity
## 4599 mast cell degranulation
## 4600 maturation of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 4601 MDA-5 signaling pathway
## 4602 mechanosensitive ion channel activity
## 4603 mediator complex binding
## 4604 medium-chain fatty acid metabolic process
## 4605 meiotic sister chromatid cohesion, centromeric
## 4606 meiotic spindle organization
## 4607 melanin biosynthetic process
## 4608 melanosome membrane
## 4609 membrane depolarization during action potential
## 4610 membrane raft polarization
## 4611 mercury ion binding
## 4612 mesodermal cell differentiation
## 4613 methenyltetrahydrofolate cyclohydrolase activity
## 4614 methylenetetrahydrofolate dehydrogenase (NAD+) activity
## 4615 methylumbelliferyl-acetate deacetylase activity
## 4616 MHC class I receptor activity
## 4617 MHC class II protein binding
## 4618 MHC protein binding
## 4619 MICOS complex
## 4620 microtubule-severing ATPase activity
## 4621 miRNA catabolic process
## 4622 mismatch repair complex
## 4623 mitochondrial alpha-ketoglutarate dehydrogenase complex
## 4624 mitochondrial crista
## 4625 mitochondrial intermembrane space protein transporter complex
## 4626 mitochondrial membrane organization
## 4627 mitochondrial promoter sequence-specific DNA binding
## 4628 mitochondrial pyruvate dehydrogenase complex
## 4629 mitochondrial transmembrane transport
## 4630 mitochondrion distribution
## 4631 mitogen-activated protein kinase p38 binding
## 4632 mitophagy
## 4633 mitotic centrosome separation
## 4634 mitotic cytokinesis checkpoint
## 4635 mitotic G2/M transition checkpoint
## 4636 mitotic recombination
## 4637 mitotic sister chromatid cohesion, centromeric
## 4638 mitotic telomere maintenance via semi-conservative replication
## 4639 MKS complex
## 4640 MMXD complex
## 4641 modulation by host of viral RNA genome replication
## 4642 monoamine transport
## 4643 monocarboxylic acid transmembrane transporter activity
## 4644 monocarboxylic acid transport
## 4645 monocyte activation
## 4646 monoubiquitinated histone H2A deubiquitination
## 4647 MPP7-DLG1-LIN7 complex
## 4648 mRNA (2'-O-methyladenosine-N6-)-methyltransferase activity
## 4649 mRNA 3'-splice site recognition
## 4650 mRNA cleavage factor complex
## 4651 mu-type opioid receptor binding
## 4652 mucosal immune response
## 4653 muscle structure development
## 4654 Myb complex
## 4655 myelin assembly
## 4656 myelin sheath abaxonal region
## 4657 myelin sheath adaxonal region
## 4658 myeloid cell homeostasis
## 4659 myoblast fusion
## 4660 myoblast migration
## 4661 N-acetyllactosamine synthase activity
## 4662 N-acylphosphatidylethanolamine metabolic process
## 4663 N-acyltransferase activity
## 4664 N-methyltransferase activity
## 4665 N-terminal peptidyl-lysine acetylation
## 4666 N-terminal protein myristoylation
## 4667 NAD-dependent histone deacetylase activity
## 4668 NADP metabolic process
## 4669 NADPH oxidase complex
## 4670 NADPH regeneration
## 4671 NatC complex
## 4672 natural killer cell degranulation
## 4673 negative regulation by host of viral genome replication
## 4674 negative regulation of adenylate cyclase activity
## 4675 negative regulation of adherens junction organization
## 4676 negative regulation of amyloid fibril formation
## 4677 negative regulation of amyloid precursor protein biosynthetic process
## 4678 negative regulation of appetite
## 4679 negative regulation of Arp2/3 complex-mediated actin nucleation
## 4680 negative regulation of autophagosome maturation
## 4681 negative regulation of axonogenesis
## 4682 negative regulation of B cell activation
## 4683 negative regulation of B cell receptor signaling pathway
## 4684 negative regulation of barbed-end actin filament capping
## 4685 negative regulation of bicellular tight junction assembly
## 4686 negative regulation of biomineral tissue development
## 4687 negative regulation of blood pressure
## 4688 negative regulation of calcium ion transport
## 4689 negative regulation of calcium ion-dependent exocytosis
## 4690 negative regulation of calcium-mediated signaling
## 4691 negative regulation of cAMP-dependent protein kinase activity
## 4692 negative regulation of cAMP-mediated signaling
## 4693 negative regulation of cellular protein catabolic process
## 4694 negative regulation of chemokine (C-X-C motif) ligand 2 production
## 4695 negative regulation of cholesterol biosynthetic process
## 4696 negative regulation of chondrocyte differentiation
## 4697 negative regulation of chromatin silencing
## 4698 negative regulation of cyclic-nucleotide phosphodiesterase activity
## 4699 negative regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## 4700 negative regulation of cytokinesis
## 4701 negative regulation of defense response to virus
## 4702 negative regulation of dendritic spine development
## 4703 negative regulation of DNA biosynthetic process
## 4704 negative regulation of DNA damage checkpoint
## 4705 negative regulation of endoplasmic reticulum unfolded protein response
## 4706 negative regulation of epithelial cell proliferation involved in prostate gland development
## 4707 negative regulation of ERBB signaling pathway
## 4708 negative regulation of excitatory postsynaptic potential
## 4709 negative regulation of fatty acid biosynthetic process
## 4710 negative regulation of glucocorticoid receptor signaling pathway
## 4711 negative regulation of heart contraction
## 4712 negative regulation of heterotypic cell-cell adhesion
## 4713 negative regulation of histone H2A K63-linked ubiquitination
## 4714 negative regulation of interferon-gamma-mediated signaling pathway
## 4715 negative regulation of IP-10 production
## 4716 negative regulation of IRE1-mediated unfolded protein response
## 4717 negative regulation of keratinocyte proliferation
## 4718 negative regulation of lipid catabolic process
## 4719 negative regulation of lymphocyte migration
## 4720 negative regulation of macrophage chemotaxis
## 4721 negative regulation of mammary gland epithelial cell proliferation
## 4722 negative regulation of mesenchymal cell proliferation
## 4723 negative regulation of microglial cell activation
## 4724 negative regulation of mitotic nuclear division
## 4725 negative regulation of monocyte chemotactic protein-1 production
## 4726 negative regulation of multicellular organism growth
## 4727 negative regulation of myelination
## 4728 negative regulation of myosin-light-chain-phosphatase activity
## 4729 negative regulation of natural killer cell mediated cytotoxicity
## 4730 negative regulation of neuron migration
## 4731 negative regulation of ossification
## 4732 negative regulation of p38MAPK cascade
## 4733 negative regulation of peptidyl-cysteine S-nitrosylation
## 4734 negative regulation of PERK-mediated unfolded protein response
## 4735 negative regulation of plasminogen activation
## 4736 negative regulation of platelet-derived growth factor receptor signaling pathway
## 4737 negative regulation of protection from non-homologous end joining at telomere
## 4738 negative regulation of protein ADP-ribosylation
## 4739 negative regulation of protein dephosphorylation
## 4740 negative regulation of protein refolding
## 4741 negative regulation of protein targeting to mitochondrion
## 4742 negative regulation of receptor binding
## 4743 negative regulation of receptor signaling pathway via JAK-STAT
## 4744 negative regulation of response to cytokine stimulus
## 4745 negative regulation of retinoic acid receptor signaling pathway
## 4746 negative regulation of RIG-I signaling pathway
## 4747 negative regulation of signal transduction by p53 class mediator
## 4748 negative regulation of SMAD protein signal transduction
## 4749 negative regulation of smooth muscle cell chemotaxis
## 4750 negative regulation of sprouting angiogenesis
## 4751 negative regulation of striated muscle cell apoptotic process
## 4752 negative regulation of substrate adhesion-dependent cell spreading
## 4753 negative regulation of superoxide anion generation
## 4754 negative regulation of T-helper 17 cell differentiation
## 4755 negative regulation of TORC1 signaling
## 4756 negative regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## 4757 negative regulation of transcription regulatory region DNA binding
## 4758 negative regulation of transforming growth factor beta1 production
## 4759 negative regulation of transposition
## 4760 negative regulation of triglyceride catabolic process
## 4761 negative regulation of vascular endothelial growth factor receptor signaling pathway
## 4762 negative regulation of vascular permeability
## 4763 negative regulation of vascular wound healing
## 4764 nerve growth factor signaling pathway
## 4765 nervous system process
## 4766 netrin-activated signaling pathway
## 4767 neural crest formation
## 4768 neural precursor cell proliferation
## 4769 neurexin family protein binding
## 4770 neuron cell-cell adhesion
## 4771 neuron fate commitment
## 4772 neuronal ribonucleoprotein granule
## 4773 neurotransmitter biosynthetic process
## 4774 neurotransmitter receptor activity
## 4775 neurotransmitter receptor transport, endosome to postsynaptic membrane
## 4776 neutral amino acid transmembrane transporter activity
## 4777 neutral amino acid transport
## 4778 neutrophil extravasation
## 4779 NFAT protein binding
## 4780 nitric-oxide synthase regulator activity
## 4781 non-canonical Wnt signaling pathway
## 4782 nonhomologous end joining complex
## 4783 nose development
## 4784 nuclear envelope lumen
## 4785 nuclear membrane organization
## 4786 nuclear pore cytoplasmic filaments
## 4787 nuclear pore organization
## 4788 nuclear telomere cap complex
## 4789 nuclear transport
## 4790 nucleolar large rRNA transcription by RNA polymerase I
## 4791 nucleoside diphosphate catabolic process
## 4792 nucleoside-triphosphate diphosphatase activity
## 4793 nucleosome mobilization
## 4794 nucleotide biosynthetic process
## 4795 nucleotide-excision repair complex
## 4796 nucleotide-excision repair factor 1 complex
## 4797 O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase activity
## 4798 oligosaccharide catabolic process
## 4799 organic acid binding
## 4800 organic anion transmembrane transporter activity
## 4801 organic cation transport
## 4802 osteoblast development
## 4803 outer dynein arm assembly
## 4804 ovulation
## 4805 oxaloacetate decarboxylase activity
## 4806 oxaloacetate metabolic process
## 4807 oxidative demethylation
## 4808 oxidative DNA demethylation
## 4809 oxidoreductase activity, acting on NAD(P)H, quinone or similar compound as acceptor
## 4810 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, NAD(P)H as one donor, and incorporation of one atom of oxygen
## 4811 oxidoreductase activity, acting on the CH-CH group of donors, NAD or NADP as acceptor
## 4812 oxygen homeostasis
## 4813 oxygen sensor activity
## 4814 paranodal junction
## 4815 pathway-restricted SMAD protein phosphorylation
## 4816 PCAF complex
## 4817 PeBoW complex
## 4818 peptidase activator activity involved in apoptotic process
## 4819 peptide cross-linking
## 4820 peptide hormone binding
## 4821 peptidoglycan binding
## 4822 peptidoglycan transport
## 4823 peptidyl-arginine methylation, to symmetrical-dimethyl arginine
## 4824 peptidyl-arginine omega-N-methylation
## 4825 peptidyl-lysine deacetylation
## 4826 peptidyl-lysine trimethylation
## 4827 pericardium development
## 4828 perichromatin fibrils
## 4829 PERK-mediated unfolded protein response
## 4830 pexophagy
## 4831 phagocytic vesicle lumen
## 4832 phagolysosome
## 4833 phenylalanine-tRNA ligase activity
## 4834 phosphatase activator activity
## 4835 phosphatase inhibitor activity
## 4836 phosphatidylinositol acyl-chain remodeling
## 4837 phosphatidylinositol phosphate 5-phosphatase activity
## 4838 phosphatidylserine 1-acylhydrolase activity
## 4839 phosphatidylserine biosynthetic process
## 4840 phosphatidylserine flippase activity
## 4841 phosphatidylserine metabolic process
## 4842 phospholipase A1 activity
## 4843 phospholipid catabolic process
## 4844 phospholipid-translocating ATPase complex
## 4845 phosphotransferase activity, for other substituted phosphate groups
## 4846 photoreceptor disc membrane
## 4847 pituitary gland development
## 4848 plasma membrane phospholipid scrambling
## 4849 plasma membrane repair
## 4850 platelet activating factor metabolic process
## 4851 platelet alpha granule
## 4852 platelet dense granule membrane
## 4853 platelet-derived growth factor receptor binding
## 4854 pointed-end actin filament capping
## 4855 poly-N-acetyllactosamine biosynthetic process
## 4856 polyamine metabolic process
## 4857 polysaccharide binding
## 4858 porin activity
## 4859 positive regulation by virus of viral protein levels in host cell
## 4860 positive regulation of acute inflammatory response
## 4861 positive regulation of adenylate cyclase activity
## 4862 positive regulation of alpha-beta T cell proliferation
## 4863 positive regulation of amyloid-beta clearance
## 4864 positive regulation of anoikis
## 4865 positive regulation of apoptotic DNA fragmentation
## 4866 positive regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## 4867 positive regulation of axon extension involved in axon guidance
## 4868 positive regulation of binding
## 4869 positive regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## 4870 positive regulation of calcium ion-dependent exocytosis
## 4871 positive regulation of cAMP-dependent protein kinase activity
## 4872 positive regulation of cap-independent translational initiation
## 4873 positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## 4874 positive regulation of cell activation
## 4875 positive regulation of cell-cell adhesion mediated by integrin
## 4876 positive regulation of cellular protein catabolic process
## 4877 positive regulation of centriole elongation
## 4878 positive regulation of centrosome duplication
## 4879 positive regulation of cholesterol storage
## 4880 positive regulation of cholesterol transport
## 4881 positive regulation of chondrocyte proliferation
## 4882 positive regulation of clathrin-dependent endocytosis
## 4883 positive regulation of collagen fibril organization
## 4884 positive regulation of cysteine-type endopeptidase activity
## 4885 positive regulation of cytokine-mediated signaling pathway
## 4886 positive regulation of cytoplasmic mRNA processing body assembly
## 4887 positive regulation of cytoplasmic translation
## 4888 positive regulation of dendrite extension
## 4889 positive regulation of dendritic cell antigen processing and presentation
## 4890 positive regulation of DNA demethylation
## 4891 positive regulation of DNA-templated transcription, initiation
## 4892 positive regulation of endothelial cell chemotaxis
## 4893 positive regulation of endothelial cell chemotaxis by VEGF-activated vascular endothelial growth factor receptor signaling pathway
## 4894 positive regulation of endothelial cell differentiation
## 4895 positive regulation of endothelial cell-matrix adhesion via fibronectin
## 4896 positive regulation of epidermal growth factor-activated receptor activity
## 4897 positive regulation of epithelial cell apoptotic process
## 4898 positive regulation of ER to Golgi vesicle-mediated transport
## 4899 positive regulation of establishment of protein localization to telomere
## 4900 positive regulation of extrinsic apoptotic signaling pathway in absence of ligand
## 4901 positive regulation of extrinsic apoptotic signaling pathway via death domain receptors
## 4902 positive regulation of fatty acid biosynthetic process
## 4903 positive regulation of fatty acid oxidation
## 4904 positive regulation of fibroblast growth factor receptor signaling pathway
## 4905 positive regulation of glucokinase activity
## 4906 positive regulation of glycogen biosynthetic process
## 4907 positive regulation of granulocyte differentiation
## 4908 positive regulation of granulocyte macrophage colony-stimulating factor production
## 4909 positive regulation of heart rate
## 4910 positive regulation of helicase activity
## 4911 positive regulation of hepatocyte proliferation
## 4912 positive regulation of histone H3-K27 methylation
## 4913 positive regulation of histone methylation
## 4914 positive regulation of inclusion body assembly
## 4915 positive regulation of insulin-like growth factor receptor signaling pathway
## 4916 positive regulation of integrin activation
## 4917 positive regulation of integrin-mediated signaling pathway
## 4918 positive regulation of interferon-gamma-mediated signaling pathway
## 4919 positive regulation of intracellular estrogen receptor signaling pathway
## 4920 positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## 4921 positive regulation of lamellipodium morphogenesis
## 4922 positive regulation of leukocyte cell-cell adhesion
## 4923 positive regulation of leukocyte chemotaxis
## 4924 positive regulation of leukocyte migration
## 4925 positive regulation of leukocyte tethering or rolling
## 4926 positive regulation of lipophagy
## 4927 positive regulation of lipopolysaccharide-mediated signaling pathway
## 4928 positive regulation of lipoprotein lipase activity
## 4929 positive regulation of macrophage activation
## 4930 positive regulation of macrophage differentiation
## 4931 positive regulation of macrophage proliferation
## 4932 positive regulation of maintenance of mitotic sister chromatid cohesion
## 4933 positive regulation of melanin biosynthetic process
## 4934 positive regulation of MHC class II biosynthetic process
## 4935 positive regulation of microglial cell activation
## 4936 positive regulation of mitochondrial depolarization
## 4937 positive regulation of mitochondrial fusion
## 4938 positive regulation of mononuclear cell migration
## 4939 positive regulation of mRNA binding
## 4940 positive regulation of mRNA polyadenylation
## 4941 positive regulation of NAD(P)H oxidase activity
## 4942 positive regulation of natural killer cell degranulation
## 4943 positive regulation of necrotic cell death
## 4944 positive regulation of neuron maturation
## 4945 positive regulation of neurotransmitter secretion
## 4946 positive regulation of neutrophil extravasation
## 4947 positive regulation of NK T cell differentiation
## 4948 positive regulation of non-motile cilium assembly
## 4949 positive regulation of oligodendrocyte differentiation
## 4950 positive regulation of osteoblast proliferation
## 4951 positive regulation of osteoclast development
## 4952 positive regulation of peptidyl-lysine acetylation
## 4953 positive regulation of phospholipase activity
## 4954 positive regulation of phospholipid transport
## 4955 positive regulation of positive chemotaxis
## 4956 positive regulation of potassium ion transport
## 4957 positive regulation of programmed cell death
## 4958 positive regulation of protein kinase A signaling
## 4959 positive regulation of protein monoubiquitination
## 4960 positive regulation of protein processing
## 4961 positive regulation of protein transport
## 4962 positive regulation of receptor catabolic process
## 4963 positive regulation of respiratory burst
## 4964 positive regulation of response to cytokine stimulus
## 4965 positive regulation of RNA export from nucleus
## 4966 positive regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## 4967 positive regulation of sequestering of triglyceride
## 4968 positive regulation of signal transduction
## 4969 positive regulation of signaling receptor activity
## 4970 positive regulation of smooth muscle cell apoptotic process
## 4971 positive regulation of smooth muscle contraction
## 4972 positive regulation of snRNA transcription by RNA polymerase II
## 4973 positive regulation of synapse maturation
## 4974 positive regulation of synaptic plasticity
## 4975 positive regulation of synaptic transmission
## 4976 positive regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## 4977 positive regulation of T cell mediated immune response to tumor cell
## 4978 positive regulation of T-helper 1 type immune response
## 4979 positive regulation of T-helper 2 cell cytokine production
## 4980 positive regulation of telomere maintenance via telomere lengthening
## 4981 positive regulation of toll-like receptor 7 signaling pathway
## 4982 positive regulation of transcription factor catabolic process
## 4983 positive regulation of transcription from RNA polymerase II promoter in response to hypoxia
## 4984 positive regulation of transcription from RNA polymerase II promoter in response to stress
## 4985 positive regulation of transcription from RNA polymerase II promoter involved in cellular response to chemical stimulus
## 4986 positive regulation of transcription from RNA polymerase II promoter involved in unfolded protein response
## 4987 positive regulation of translation in response to endoplasmic reticulum stress
## 4988 positive regulation of translational elongation
## 4989 positive regulation of translational termination
## 4990 positive regulation of triglyceride catabolic process
## 4991 positive regulation of trophoblast cell migration
## 4992 positive regulation of type 2 immune response
## 4993 positive regulation of vascular associated smooth muscle cell apoptotic process
## 4994 positive regulation of vasculogenesis
## 4995 positive regulation of viral life cycle
## 4996 positive regulation of viral release from host cell
## 4997 positive regulation of Wnt signaling pathway, planar cell polarity pathway
## 4998 post-chaperonin tubulin folding pathway
## 4999 postsynaptic neurotransmitter receptor internalization
## 5000 potassium ion homeostasis
## 5001 potassium ion leak channel activity
## 5002 potassium:chloride symporter activity
## 5003 potassium:proton antiporter activity
## 5004 pre-miRNA binding
## 5005 prefoldin complex
## 5006 prenylated protein catabolic process
## 5007 prepulse inhibition
## 5008 preribosome
## 5009 presynaptic active zone cytoplasmic component
## 5010 programmed necrotic cell death
## 5011 proteasome-activating ATPase activity
## 5012 protection from non-homologous end joining at telomere
## 5013 protein C-linked glycosylation via 2'-alpha-mannosyl-L-tryptophan
## 5014 protein exit from endoplasmic reticulum
## 5015 protein folding in endoplasmic reticulum
## 5016 protein homotrimerization
## 5017 protein hydroxylation
## 5018 protein import into peroxisome matrix, docking
## 5019 protein import into peroxisome matrix, translocation
## 5020 protein insertion into ER membrane by stop-transfer membrane-anchor sequence
## 5021 protein insertion into mitochondrial inner membrane from matrix
## 5022 protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## 5023 protein insertion into mitochondrial outer membrane
## 5024 protein K11-linked deubiquitination
## 5025 protein K27-linked ubiquitination
## 5026 protein K29-linked ubiquitination
## 5027 protein K69-linked ufmylation
## 5028 protein kinase A catalytic subunit binding
## 5029 protein kinase C inhibitor activity
## 5030 protein localization to adherens junction
## 5031 protein localization to ciliary membrane
## 5032 protein localization to endosome
## 5033 protein localization to lysosome
## 5034 protein localization to microtubule
## 5035 protein localization to mitochondrion
## 5036 protein localization to nuclear envelope
## 5037 protein N-acetylglucosaminyltransferase activity
## 5038 protein prenylation
## 5039 protein retention in ER lumen
## 5040 protein serine/threonine kinase inhibitor activity
## 5041 protein transmembrane transport
## 5042 protein urmylation
## 5043 protein-arginine omega-N monomethyltransferase activity
## 5044 protein-arginine omega-N symmetric methyltransferase activity
## 5045 protein-cysteine S-stearoyltransferase activity
## 5046 proteoglycan metabolic process
## 5047 proton-exporting ATPase activity, phosphorylative mechanism
## 5048 proton-transporting ATP synthase complex, catalytic core F(1)
## 5049 proton-transporting two-sector ATPase complex
## 5050 proton-transporting V-type ATPase, V1 domain
## 5051 protoporphyrinogen IX biosynthetic process
## 5052 pulmonary valve morphogenesis
## 5053 pyridine nucleotide biosynthetic process
## 5054 pyrimidine nucleobase metabolic process
## 5055 pyrimidine nucleotide biosynthetic process
## 5056 pyrimidine nucleotide-sugar transmembrane transport
## 5057 pyrimidine nucleotide-sugar transmembrane transporter activity
## 5058 pyrroline-5-carboxylate reductase activity
## 5059 pyruvate dehydrogenase (acetyl-transferring) kinase activity
## 5060 R-loop disassembly
## 5061 RAVE complex
## 5062 receptor-mediated endocytosis of virus by host cell
## 5063 recognition of apoptotic cell
## 5064 regulation of Arp2/3 complex-mediated actin nucleation
## 5065 regulation of axon extension
## 5066 regulation of axon regeneration
## 5067 regulation of axonogenesis
## 5068 regulation of bicellular tight junction assembly
## 5069 regulation of bile acid secretion
## 5070 regulation of binding
## 5071 regulation of blood vessel endothelial cell migration
## 5072 regulation of bone mineralization
## 5073 regulation of bone resorption
## 5074 regulation of cardiac muscle cell action potential involved in regulation of contraction
## 5075 regulation of cardiac muscle cell membrane potential
## 5076 regulation of cardiac muscle contraction by regulation of the release of sequestered calcium ion
## 5077 regulation of cartilage development
## 5078 regulation of cell cycle G2/M phase transition
## 5079 regulation of cell junction assembly
## 5080 regulation of cellular ketone metabolic process
## 5081 regulation of cellular metabolic process
## 5082 regulation of cholesterol efflux
## 5083 regulation of cohesin loading
## 5084 regulation of cytochrome-c oxidase activity
## 5085 regulation of defense response to virus
## 5086 regulation of dendritic spine development
## 5087 regulation of dephosphorylation
## 5088 regulation of DNA recombination
## 5089 regulation of DNA-dependent DNA replication initiation
## 5090 regulation of dopamine secretion
## 5091 regulation of double-strand break repair
## 5092 regulation of double-strand break repair via nonhomologous end joining
## 5093 regulation of epithelial cell differentiation
## 5094 regulation of epithelial cell migration
## 5095 regulation of epithelial to mesenchymal transition
## 5096 regulation of feeding behavior
## 5097 regulation of filopodium assembly
## 5098 regulation of gastrulation
## 5099 regulation of genetic imprinting
## 5100 regulation of glucose import
## 5101 regulation of Golgi inheritance
## 5102 regulation of hair cycle
## 5103 regulation of hippo signaling
## 5104 regulation of histone modification
## 5105 regulation of insulin-like growth factor receptor signaling pathway
## 5106 regulation of isotype switching to IgG isotypes
## 5107 regulation of keratinocyte differentiation
## 5108 regulation of leukocyte migration
## 5109 regulation of lipid kinase activity
## 5110 regulation of lysosomal lumen pH
## 5111 regulation of lysosome organization
## 5112 regulation of macrophage activation
## 5113 regulation of mammary gland epithelial cell proliferation
## 5114 regulation of MAP kinase activity
## 5115 regulation of membrane repolarization
## 5116 regulation of metaphase plate congression
## 5117 regulation of microtubule motor activity
## 5118 regulation of microtubule polymerization
## 5119 regulation of microtubule-based process
## 5120 regulation of microvillus assembly
## 5121 regulation of mitochondrial depolarization
## 5122 regulation of mitochondrial membrane permeability
## 5123 regulation of mitochondrial translation
## 5124 regulation of mitotic cell cycle spindle assembly checkpoint
## 5125 regulation of muscle cell differentiation
## 5126 regulation of neural precursor cell proliferation
## 5127 regulation of neuronal synaptic plasticity
## 5128 regulation of NMDA receptor activity
## 5129 regulation of nuclear cell cycle DNA replication
## 5130 regulation of nucleocytoplasmic transport
## 5131 regulation of nucleotide-binding oligomerization domain containing signaling pathway
## 5132 regulation of oxidative phosphorylation
## 5133 regulation of phagocytosis
## 5134 regulation of potassium ion transmembrane transport
## 5135 regulation of protein ADP-ribosylation
## 5136 regulation of protein processing
## 5137 regulation of protein targeting to mitochondrion
## 5138 regulation of reactive oxygen species biosynthetic process
## 5139 regulation of receptor signaling pathway via JAK-STAT
## 5140 regulation of removal of superoxide radicals
## 5141 regulation of respiratory gaseous exchange by nervous system process
## 5142 regulation of response to DNA damage stimulus
## 5143 regulation of ruffle assembly
## 5144 regulation of sensory perception of pain
## 5145 regulation of short-term neuronal synaptic plasticity
## 5146 regulation of skeletal muscle satellite cell proliferation
## 5147 regulation of smooth muscle contraction
## 5148 regulation of sodium ion transmembrane transport
## 5149 regulation of spontaneous synaptic transmission
## 5150 regulation of stem cell division
## 5151 regulation of stem cell proliferation
## 5152 regulation of store-operated calcium entry
## 5153 regulation of striated muscle tissue development
## 5154 regulation of substrate adhesion-dependent cell spreading
## 5155 regulation of systemic arterial blood pressure
## 5156 regulation of T-helper cell differentiation
## 5157 regulation of telomere maintenance via telomerase
## 5158 regulation of Toll signaling pathway
## 5159 regulation of translational fidelity
## 5160 regulation of tumor necrosis factor production
## 5161 regulation of type B pancreatic cell development
## 5162 regulation of ubiquitin-protein transferase activity
## 5163 regulation of vesicle size
## 5164 release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## 5165 removal of superoxide radicals
## 5166 renal absorption
## 5167 renal system process
## 5168 replication fork arrest
## 5169 replication fork reversal
## 5170 respiratory chain complex IV
## 5171 respiratory chain complex IV assembly
## 5172 response to amine
## 5173 response to antineoplastic agent
## 5174 response to cobalt ion
## 5175 response to dexamethasone
## 5176 response to folic acid
## 5177 response to hypobaric hypoxia
## 5178 response to inorganic substance
## 5179 response to intra-S DNA damage checkpoint signaling
## 5180 response to L-glutamate
## 5181 response to manganese ion
## 5182 response to organophosphorus
## 5183 response to redox state
## 5184 response to sucrose
## 5185 response to superoxide
## 5186 retina layer formation
## 5187 retinal ganglion cell axon guidance
## 5188 retinal rod cell development
## 5189 retinoic acid binding
## 5190 retromer complex binding
## 5191 riboflavin metabolic process
## 5192 ribosomal small subunit export from nucleus
## 5193 ribosomal subunit export from nucleus
## 5194 ripoptosome
## 5195 RNA 3' uridylation
## 5196 RNA adenylyltransferase activity
## 5197 RNA polymerase I general transcription initiation factor activity
## 5198 RNA polymerase II preinitiation complex assembly
## 5199 RNA polymerase II-specific DNA-binding transcription factor binding
## 5200 RNA polymerase III type 3 promoter sequence-specific DNA binding
## 5201 RNA uridylyltransferase activity
## 5202 RNA-dependent ATPase activity
## 5203 RNA-DNA hybrid ribonuclease activity
## 5204 RQC complex
## 5205 rRNA 2'-O-methylation
## 5206 ruffle assembly
## 5207 sarcoplasm
## 5208 SCF complex assembly
## 5209 Schwann cell development
## 5210 sebaceous gland development
## 5211 secondary active sulfate transmembrane transporter activity
## 5212 secondary palate development
## 5213 secretion of lysosomal enzymes
## 5214 selenium binding
## 5215 sensory perception
## 5216 sequestering of TGFbeta in extracellular matrix
## 5217 Sertoli cell development
## 5218 Sertoli cell proliferation
## 5219 short-term memory
## 5220 signal peptidase complex
## 5221 signal recognition particle binding
## 5222 signal transduction in response to DNA damage
## 5223 Sin3-type complex
## 5224 siRNA loading onto RISC involved in RNA interference
## 5225 site of polarized growth
## 5226 sleep
## 5227 SMAD protein complex
## 5228 small molecule binding
## 5229 small nucleolar ribonucleoprotein complex
## 5230 smooth muscle cell differentiation
## 5231 smooth muscle contraction
## 5232 snoRNA localization
## 5233 snRNA transcription by RNA polymerase III
## 5234 sodium ion binding
## 5235 sodium:proton antiporter activity
## 5236 somatic recombination of immunoglobulin gene segments
## 5237 somatodendritic compartment
## 5238 somite development
## 5239 sorting endosome
## 5240 spectrin
## 5241 sperm annulus
## 5242 sperm principal piece
## 5243 sphingosine biosynthetic process
## 5244 sphingosine metabolic process
## 5245 sphingosine-1-phosphate receptor activity
## 5246 spinal cord motor neuron differentiation
## 5247 spindle assembly involved in female meiosis I
## 5248 spindle assembly involved in meiosis
## 5249 spongiotrophoblast layer development
## 5250 stereocilium tip
## 5251 sterol esterase activity
## 5252 store-operated calcium entry
## 5253 strand invasion
## 5254 substrate-dependent cell migration, cell extension
## 5255 sulfatide binding
## 5256 sulfur amino acid catabolic process
## 5257 sulfurtransferase activity
## 5258 super elongation complex
## 5259 supercoiled DNA binding
## 5260 superoxide-generating NAD(P)H oxidase activity
## 5261 synaptic transmission, dopaminergic
## 5262 synaptic vesicle priming
## 5263 synaptic vesicle recycling
## 5264 synaptic vesicle uncoating
## 5265 synaptobrevin 2-SNAP-25-syntaxin-1a complex
## 5266 T cell activation involved in immune response
## 5267 T cell chemotaxis
## 5268 T cell migration
## 5269 T cell selection
## 5270 T-helper 1 cell differentiation
## 5271 tangential migration from the subventricular zone to the olfactory bulb
## 5272 TAP1 binding
## 5273 targeting of mRNA for destruction involved in RNA interference
## 5274 Tat protein binding
## 5275 telomeric D-loop disassembly
## 5276 telomeric DNA-containing double minutes formation
## 5277 temperature homeostasis
## 5278 tertiary granule
## 5279 testosterone dehydrogenase (NAD+) activity
## 5280 tetrahydrobiopterin metabolic process
## 5281 tetrahydrofolate biosynthetic process
## 5282 tetraspanin-enriched microdomain
## 5283 thiamine pyrophosphate binding
## 5284 tissue morphogenesis
## 5285 tissue remodeling
## 5286 Toll signaling pathway
## 5287 Toll-like receptor binding
## 5288 toxin transmembrane transporter activity
## 5289 trachea cartilage development
## 5290 TRAIL-activated apoptotic signaling pathway
## 5291 transaminase activity
## 5292 transcription elongation from RNA polymerase I promoter
## 5293 transcription factor TFIIA complex
## 5294 transcription factor TFIIIC complex
## 5295 transcytosis
## 5296 transferase activity, transferring pentosyl groups
## 5297 transformation of host cell by virus
## 5298 transmembrane receptor protein tyrosine kinase activator activity
## 5299 transmembrane receptor protein tyrosine phosphatase activity
## 5300 transmembrane-ephrin receptor activity
## 5301 transmitter-gated ion channel activity involved in regulation of postsynaptic membrane potential
## 5302 transsulfuration
## 5303 traversing start control point of mitotic cell cycle
## 5304 triglyceride biosynthetic process
## 5305 triglyceride catabolic process
## 5306 triglyceride homeostasis
## 5307 tRNA (cytosine-5-)-methyltransferase activity
## 5308 tRNA dihydrouridine synthase activity
## 5309 tRNA dihydrouridine synthesis
## 5310 tRNA pseudouridine synthase activity
## 5311 tRNA thio-modification
## 5312 tRNA wobble position uridine thiolation
## 5313 trophoblast giant cell differentiation
## 5314 tumor necrosis factor binding
## 5315 tumor necrosis factor receptor superfamily complex
## 5316 tumor necrosis factor-activated receptor activity
## 5317 type 5 metabotropic glutamate receptor binding
## 5318 type B pancreatic cell proliferation
## 5319 tyrosine phosphorylation of STAT protein
## 5320 U1 snRNP binding
## 5321 U2 snRNA binding
## 5322 U4 snRNA 3'-end processing
## 5323 U4/U6 snRNP
## 5324 U7 snRNA binding
## 5325 ubiquitin ligase activator activity
## 5326 ubiquitin-dependent protein catabolic process via the N-end rule pathway
## 5327 ubiquitin-like protein conjugating enzyme binding
## 5328 UDP-N-acetylgalactosamine metabolic process
## 5329 UMP salvage
## 5330 unconventional myosin complex
## 5331 uridine kinase activity
## 5332 uridine-diphosphatase activity
## 5333 uterus morphogenesis
## 5334 UTP biosynthetic process
## 5335 V(D)J recombination
## 5336 vacuolar proton-transporting V-type ATPase, V0 domain
## 5337 vacuole organization
## 5338 varicosity
## 5339 vascular endothelial growth factor receptor binding
## 5340 VCB complex
## 5341 very-long-chain 3-hydroxyacyl-CoA dehydratase activity
## 5342 very-long-chain-acyl-CoA dehydrogenase activity
## 5343 very-low-density lipoprotein particle
## 5344 very-low-density lipoprotein particle receptor activity
## 5345 vesicle tethering to Golgi
## 5346 vinculin binding
## 5347 voltage-gated chloride channel activity
## 5348 voltage-gated potassium channel activity involved in cardiac muscle cell action potential repolarization
## 5349 volume-sensitive chloride channel activity
## 5350 xenobiotic catabolic process
## 5351 xenobiotic detoxification by transmembrane export across the plasma membrane
## 5352 xenobiotic transmembrane transporter activity
## 5353 zeta DNA polymerase complex
## 5354 'de novo' AMP biosynthetic process
## 5355 'de novo' posttranslational protein folding
## 5356 'de novo' pyrimidine nucleobase biosynthetic process
## 5357 (1->3)-beta-D-glucan binding
## 5358 1-alkyl-2-acetylglycerophosphocholine esterase complex
## 5359 1-alkylglycerophosphocholine O-acetyltransferase activity
## 5360 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate biosynthetic process
## 5361 1-phosphatidylinositol 4-kinase activity
## 5362 1-phosphatidylinositol-5-phosphate 4-kinase activity
## 5363 1,4-alpha-oligoglucan phosphorylase activity
## 5364 10-formyltetrahydrofolate biosynthetic process
## 5365 2-(3-amino-3-carboxypropyl)histidine synthase activity
## 5366 3-beta-hydroxy-delta5-steroid dehydrogenase activity
## 5367 3'-5' RNA helicase activity
## 5368 3M complex
## 5369 4-galactosyl-N-acetylglucosaminide 3-alpha-L-fucosyltransferase activity
## 5370 5-phosphoribose 1-diphosphate biosynthetic process
## 5371 5.8S rRNA binding
## 5372 5'-3' exodeoxyribonuclease activity
## 5373 5'-deoxyribose-5-phosphate lyase activity
## 5374 6-phosphofructokinase activity
## 5375 6-phosphofructokinase complex
## 5376 7S RNA binding
## 5377 8-hydroxy-2'-deoxyguanosine DNA binding
## 5378 9+0 non-motile cilium
## 5379 A-type (transient outward) potassium channel activity
## 5380 abortive mitotic cell cycle
## 5381 acetate-CoA ligase activity
## 5382 acetyl-CoA binding
## 5383 acetyl-CoA C-myristoyltransferase activity
## 5384 acetyl-CoA hydrolase activity
## 5385 acetyl-CoA metabolic process
## 5386 acetylcholine receptor activity
## 5387 acetylcholine-gated cation-selective channel activity
## 5388 acetylcholine-gated channel complex
## 5389 aconitate hydratase activity
## 5390 acrosomal vesicle exocytosis
## 5391 actin filament fragmentation
## 5392 activated T cell proliferation
## 5393 activation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## 5394 activation of immune response
## 5395 activation of phospholipase D activity
## 5396 activation of protein kinase C activity
## 5397 activation of store-operated calcium channel activity
## 5398 activin receptor activity, type I
## 5399 activin receptor complex
## 5400 activin responsive factor complex
## 5401 acyl carnitine transmembrane transporter activity
## 5402 acyl carnitine transport
## 5403 acylglycerol acyl-chain remodeling
## 5404 acylglycerol catabolic process
## 5405 adenosine 5'-(hexahydrogen pentaphosphate) catabolic process
## 5406 adenosine deaminase activity
## 5407 adenosine metabolic process
## 5408 adenosine to inosine editing
## 5409 adenylate cyclase activity
## 5410 adenylate cyclase-activating dopamine receptor signaling pathway
## 5411 adenylosuccinate synthase activity
## 5412 adherens junction organization
## 5413 adiponectin binding
## 5414 adult heart development
## 5415 alanine transport
## 5416 alcohol metabolic process
## 5417 aldehyde catabolic process
## 5418 alkenylglycerophosphocholine hydrolase activity
## 5419 alkenylglycerophosphoethanolamine hydrolase activity
## 5420 allyl-alcohol dehydrogenase activity
## 5421 alpha-1,2-mannosyltransferase activity
## 5422 alpha-1,4-glucosidase activity
## 5423 alpha-1A adrenergic receptor binding
## 5424 alpha-1B adrenergic receptor binding
## 5425 alpha-beta T cell differentiation
## 5426 alpha-glucosidase activity
## 5427 alphav-beta3 integrin-HMGB1 complex
## 5428 alphav-beta3 integrin-IGF-1-IGF1R complex
## 5429 alphav-beta3 integrin-PKCalpha complex
## 5430 ameboidal-type cell migration
## 5431 amino acid import across plasma membrane
## 5432 aminoacylase activity
## 5433 ammonium transmembrane transport
## 5434 ammonium transport
## 5435 AMP-activated protein kinase activity
## 5436 amyloid-beta formation
## 5437 anchored component of postsynaptic density membrane
## 5438 anchored component of postsynaptic recycling endosome membrane
## 5439 anchored component of presynaptic active zone membrane
## 5440 angiotensin receptor binding
## 5441 ankyrin repeat binding
## 5442 anterior/posterior axis specification, embryo
## 5443 anterograde neuronal dense core vesicle transport
## 5444 antifungal humoral response
## 5445 antigen processing and presentation of endogenous peptide antigen via MHC class II
## 5446 antigen processing and presentation of exogenous peptide antigen via MHC class I
## 5447 antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-independent
## 5448 antigen processing and presentation, endogenous lipid antigen via MHC class Ib
## 5449 AnxA2-p11 complex
## 5450 aorta smooth muscle tissue morphogenesis
## 5451 aortic valve development
## 5452 apical cortex
## 5453 apoptotic chromosome condensation
## 5454 apoptotic process involved in blood vessel morphogenesis
## 5455 apoptotic process involved in development
## 5456 arachidonic acid secretion
## 5457 arginine biosynthetic process
## 5458 arginine transmembrane transport
## 5459 arginine transmembrane transporter activity
## 5460 arginine-tRNA ligase activity
## 5461 arginyl-tRNA aminoacylation
## 5462 artery development
## 5463 arylsulfatase activity
## 5464 ASAP complex
## 5465 asialoglycoprotein receptor activity
## 5466 aspartate metabolic process
## 5467 aspartate transmembrane transport
## 5468 aspartate-tRNA ligase activity
## 5469 aspartic endopeptidase activity, intramembrane cleaving
## 5470 assembly of large subunit precursor of preribosome
## 5471 ASTRA complex
## 5472 astral microtubule
## 5473 astrocyte activation involved in immune response
## 5474 asymmetric cell division
## 5475 ATF4-CREB1 transcription factor complex
## 5476 ATP synthesis coupled electron transport
## 5477 ATP transport
## 5478 ATP-binding cassette (ABC) transporter complex
## 5479 ATP-dependent polydeoxyribonucleotide 5'-hydroxyl-kinase activity
## 5480 ATPase-coupled ion transmembrane transporter activity
## 5481 ATPase-coupled peptide transmembrane transporter activity
## 5482 atrial cardiac muscle cell action potential
## 5483 atrial septum primum morphogenesis
## 5484 atrioventricular node development
## 5485 auditory receptor cell development
## 5486 auditory receptor cell morphogenesis
## 5487 autocrine signaling
## 5488 axial mesoderm development
## 5489 axis elongation involved in somitogenesis
## 5490 axo-dendritic transport
## 5491 axonal spine
## 5492 axonemal dynein complex
## 5493 axonemal dynein complex assembly
## 5494 axonemal microtubule
## 5495 B-1 B cell homeostasis
## 5496 B-1a B cell differentiation
## 5497 Barr body
## 5498 basal part of cell
## 5499 base-excision repair, AP site formation
## 5500 base-excision repair, DNA ligation
## 5501 BAT3 complex
## 5502 BAT3 complex binding
## 5503 BBSome
## 5504 Bcl-2 family protein complex
## 5505 behavioral response to cocaine
## 5506 beta-2 adrenergic receptor binding
## 5507 beta-N-acetylglucosaminylglycopeptide beta-1,4-galactosyltransferase activity
## 5508 BH3 domain binding
## 5509 bicarbonate transmembrane transporter activity
## 5510 bile acid secretion
## 5511 bis(5'-adenosyl)-hexaphosphatase activity
## 5512 bis(5'-adenosyl)-pentaphosphatase activity
## 5513 bis(5'-adenosyl)-triphosphatase activity
## 5514 blastocyst growth
## 5515 blood vessel endothelial cell migration
## 5516 BMP binding
## 5517 BMP receptor complex
## 5518 bone growth
## 5519 bone trabecula formation
## 5520 box C/D snoRNA 3'-end processing
## 5521 brahma complex
## 5522 brain-derived neurotrophic factor receptor signaling pathway
## 5523 brainstem development
## 5524 branching involved in labyrinthine layer morphogenesis
## 5525 branchiomotor neuron axon guidance
## 5526 C-4 methylsterol oxidase activity
## 5527 C-5 sterol desaturase activity
## 5528 C-C chemokine binding
## 5529 C-C chemokine receptor activity
## 5530 C-terminal protein lipidation
## 5531 C-X-C chemokine receptor activity
## 5532 C3HC4-type RING finger domain binding
## 5533 C5-methylcytidine-containing RNA binding
## 5534 CAAX-box protein processing
## 5535 cadmium ion transmembrane transport
## 5536 CAF-1 complex
## 5537 Cajal body organization
## 5538 CAK-ERCC2 complex
## 5539 calcineurin-NFAT signaling cascade
## 5540 calcium activated phosphatidylcholine scrambling
## 5541 calcium activated phosphatidylserine scrambling
## 5542 calcium ion import into sarcoplasmic reticulum
## 5543 calcium ion transmembrane transporter activity
## 5544 calcium ion transport from cytosol to endoplasmic reticulum
## 5545 calcium-dependent phospholipase A2 activity
## 5546 calcium-induced calcium release activity
## 5547 calcium-release channel activity
## 5548 calmodulin-dependent protein phosphatase activity
## 5549 CAMKK-AMPK signaling cascade
## 5550 cAMP-dependent protein kinase activity
## 5551 cAMP-dependent protein kinase inhibitor activity
## 5552 canonical Wnt signaling pathway involved in regulation of cell proliferation
## 5553 carbohydrate catabolic process
## 5554 carbohydrate derivative binding
## 5555 carbohydrate mediated signaling
## 5556 carboxylic acid transmembrane transport
## 5557 cardiac atrium morphogenesis
## 5558 cardiac muscle cell action potential involved in contraction
## 5559 cardiac muscle cell development
## 5560 cardiac muscle cell myoblast differentiation
## 5561 cardiac muscle tissue morphogenesis
## 5562 cardiac myofibril assembly
## 5563 cardiac right ventricle morphogenesis
## 5564 cardiac ventricle development
## 5565 cardiac ventricle morphogenesis
## 5566 carnitine biosynthetic process
## 5567 carnitine metabolic process
## 5568 carnitine transmembrane transport
## 5569 caspase binding
## 5570 catabolic process
## 5571 catenin complex
## 5572 CatSper complex
## 5573 CCR chemokine receptor binding
## 5574 CCR1 chemokine receptor binding
## 5575 CD4-positive, alpha-beta T cell differentiation
## 5576 CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## 5577 CD95 death-inducing signaling complex
## 5578 cell adhesion molecule production
## 5579 cell body membrane
## 5580 cell cycle G1/S phase transition
## 5581 cell dedifferentiation
## 5582 cell differentiation involved in embryonic placenta development
## 5583 cell migration involved in gastrulation
## 5584 cell tip
## 5585 cell-substrate junction
## 5586 cellular component organization
## 5587 cellular detoxification of aldehyde
## 5588 cellular hyperosmotic salinity response
## 5589 cellular potassium ion homeostasis
## 5590 cellular protein catabolic process
## 5591 cellular response to actinomycin D
## 5592 cellular response to alkaloid
## 5593 cellular response to antibiotic
## 5594 cellular response to arsenite(3-)
## 5595 cellular response to bacterial lipopeptide
## 5596 cellular response to bile acid
## 5597 cellular response to carbohydrate stimulus
## 5598 cellular response to cobalt ion
## 5599 cellular response to cocaine
## 5600 cellular response to cold
## 5601 cellular response to diacyl bacterial lipopeptide
## 5602 cellular response to dsDNA
## 5603 cellular response to epinephrine stimulus
## 5604 cellular response to fructose stimulus
## 5605 cellular response to gonadotropin stimulus
## 5606 cellular response to high density lipoprotein particle stimulus
## 5607 cellular response to interleukin-6
## 5608 cellular response to iron ion
## 5609 cellular response to iron(III) ion
## 5610 cellular response to L-glutamine
## 5611 cellular response to leptin stimulus
## 5612 cellular response to organonitrogen compound
## 5613 cellular response to oxygen-glucose deprivation
## 5614 cellular response to phosphate starvation
## 5615 cellular response to radiation
## 5616 cellular response to rapamycin
## 5617 cellular response to redox state
## 5618 cellular response to sodium arsenite
## 5619 cellular response to sorbitol
## 5620 cellular response to steroid hormone stimulus
## 5621 cellular response to thapsigargin
## 5622 cellular response to Thyroglobulin triiodothyronine
## 5623 cellular response to triacyl bacterial lipopeptide
## 5624 cellular response to UV-A
## 5625 cellular response to UV-C
## 5626 cellular response to vasopressin
## 5627 cellular response to vitamin D
## 5628 cellular sodium ion homeostasis
## 5629 cellular stress response to acid chemical
## 5630 cellular triglyceride homeostasis
## 5631 central nervous system myelin formation
## 5632 central nervous system projection neuron axonogenesis
## 5633 centriole elongation
## 5634 centrosome-templated microtubule nucleation
## 5635 ceramide cholinephosphotransferase activity
## 5636 ceramide phosphoethanolamine synthase activity
## 5637 cerebellar cortex development
## 5638 cerebral cortex cell migration
## 5639 cGMP biosynthetic process
## 5640 cGMP catabolic process
## 5641 chaperonin-containing T-complex
## 5642 chiasma assembly
## 5643 chitin binding
## 5644 chloride ion binding
## 5645 cholate-CoA ligase activity
## 5646 cholesterol biosynthetic process via desmosterol
## 5647 cholesterol biosynthetic process via lathosterol
## 5648 cholesterol catabolic process
## 5649 chondrocyte development involved in endochondral bone morphogenesis
## 5650 chondroitin sulfate binding
## 5651 chondroitin sulfate catabolic process
## 5652 chondroitin sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## 5653 chromaffin granule membrane
## 5654 chromosome, subtelomeric region
## 5655 chylomicron
## 5656 ciliary basal body organization
## 5657 ciliary body morphogenesis
## 5658 ciliary inversin compartment
## 5659 ciliary neurotrophic factor receptor binding
## 5660 ciliary pocket membrane
## 5661 cilium-dependent cell motility
## 5662 circadian regulation of translation
## 5663 cis-Golgi network membrane
## 5664 citrate transmembrane transporter activity
## 5665 clathrin-coated pit assembly
## 5666 clathrin-sculpted gamma-aminobutyric acid transport vesicle membrane
## 5667 clathrin-sculpted glutamate transport vesicle membrane
## 5668 clathrin-sculpted monoamine transport vesicle membrane
## 5669 cleavage furrow formation
## 5670 co-receptor binding
## 5671 co-translational protein modification
## 5672 cobalt ion transport
## 5673 cochlear nucleus development
## 5674 cold acclimation
## 5675 collagen binding involved in cell-matrix adhesion
## 5676 collateral sprouting
## 5677 commissural neuron axon guidance
## 5678 commitment complex
## 5679 common myeloid progenitor cell proliferation
## 5680 common-partner SMAD protein phosphorylation
## 5681 complement component C3b binding
## 5682 complement receptor mediated signaling pathway
## 5683 condensed chromosome inner kinetochore
## 5684 condensed nuclear chromosome inner kinetochore
## 5685 connective tissue development
## 5686 convergent extension involved in neural plate elongation
## 5687 convergent extension involved in organogenesis
## 5688 copper chaperone activity
## 5689 copper-dependent protein binding
## 5690 core TFIIH complex portion of holo TFIIH complex
## 5691 cornified envelope
## 5692 cornified envelope assembly
## 5693 corpus callosum development
## 5694 cortical microtubule organization
## 5695 corticospinal tract morphogenesis
## 5696 covalent chromatin modification
## 5697 cranial nerve development
## 5698 CRD-mediated mRNA stability complex
## 5699 CRD-mediated mRNA stabilization
## 5700 creatine kinase activity
## 5701 creatine metabolic process
## 5702 crossover junction endodeoxyribonuclease activity
## 5703 crotonyl-CoA hydratase activity
## 5704 CSF1-CSF1R complex
## 5705 CTPase activity
## 5706 Cul4B-RING E3 ubiquitin ligase complex
## 5707 Cul5-RING ubiquitin ligase complex
## 5708 Cul7-RING ubiquitin ligase complex
## 5709 cyanate catabolic process
## 5710 cyclic-GMP-AMP binding
## 5711 cyclin A2-CDK2 complex
## 5712 cyclin B1-CDK1 complex
## 5713 cyclin D2-CDK4 complex
## 5714 cyclin E1-CDK2 complex
## 5715 cyclin K-CDK12 complex
## 5716 cyclin K-CDK13 complex
## 5717 cyclooxygenase pathway
## 5718 cysteine-type exopeptidase activity
## 5719 cytidine-diphosphatase activity
## 5720 cytokine receptor binding
## 5721 cytolytic granule
## 5722 cytoophidium
## 5723 cytoplasmic pattern recognition receptor signaling pathway in response to virus
## 5724 cytoplasmic periphery of the nuclear pore complex
## 5725 cytoplasmic side of lysosomal membrane
## 5726 cytoplasmic side of mitochondrial outer membrane
## 5727 cytoskeleton of presynaptic active zone
## 5728 cytoskeleton-nuclear membrane anchor activity
## 5729 cytosol to endoplasmic reticulum transport
## 5730 dAMP biosynthetic process
## 5731 dCMP catabolic process
## 5732 deactivation of mitotic spindle assembly checkpoint
## 5733 definitive erythrocyte differentiation
## 5734 dehydroascorbic acid transmembrane transporter activity
## 5735 dehydroascorbic acid transport
## 5736 dendritic branch
## 5737 dendritic cell migration
## 5738 dendritic cell proliferation
## 5739 dendritic microtubule
## 5740 dendritic transport of mitochondrion
## 5741 dense core granule
## 5742 dense core granule membrane
## 5743 dense fibrillar component
## 5744 dentinogenesis
## 5745 deoxyadenosine kinase activity
## 5746 deoxyguanosine kinase activity
## 5747 deoxynucleoside kinase activity
## 5748 deoxyribonucleotide biosynthetic process
## 5749 deoxyribonucleotide catabolic process
## 5750 depyrimidination
## 5751 desensitization of G protein-coupled receptor signaling pathway by arrestin
## 5752 detection of mechanical stimulus
## 5753 detection of mechanical stimulus involved in sensory perception of pain
## 5754 detection of muscle stretch
## 5755 detection of nodal flow
## 5756 determination of liver left/right asymmetry
## 5757 detoxification of mercury ion
## 5758 development of secondary sexual characteristics
## 5759 diadenosine hexaphosphate catabolic process
## 5760 diadenosine pentaphosphate catabolic process
## 5761 diapedesis
## 5762 dichotomous subdivision of terminal units involved in salivary gland branching
## 5763 diet induced thermogenesis
## 5764 dihydrofolate metabolic process
## 5765 dihydrofolate reductase activity
## 5766 dinucleotide insertion or deletion binding
## 5767 diphosphoinositol polyphosphate metabolic process
## 5768 diphosphoinositol-polyphosphate diphosphatase activity
## 5769 disulfide oxidoreductase activity
## 5770 DNA ADP-ribosylation
## 5771 DNA clamp unloader activity
## 5772 DNA clamp unloading
## 5773 DNA deamination
## 5774 DNA double-strand break attachment to nuclear envelope
## 5775 DNA double-strand break processing involved in repair via single-strand annealing
## 5776 DNA geometric change
## 5777 DNA integration
## 5778 DNA ligase (ATP) activity
## 5779 DNA ligase activity
## 5780 DNA ligation involved in DNA repair
## 5781 DNA methylation involved in embryo development
## 5782 DNA packaging
## 5783 DNA polymerase activity
## 5784 DNA polymerase processivity factor activity
## 5785 DNA replication preinitiation complex
## 5786 DNA replication preinitiation complex assembly
## 5787 DNA secondary structure binding
## 5788 DNA topoisomerase binding
## 5789 DNA-binding transcription factor inhibitor activity
## 5790 DNA-dependent protein kinase complex
## 5791 DNA-N1-methyladenine dioxygenase activity
## 5792 dodecenoyl-CoA delta-isomerase activity
## 5793 dolichol biosynthetic process
## 5794 dolichol metabolic process
## 5795 dolichol-phosphate-mannose synthase complex
## 5796 dopachrome isomerase activity
## 5797 dopamine catabolic process
## 5798 dorsal/ventral neural tube patterning
## 5799 double-strand break repair involved in meiotic recombination
## 5800 double-strand/single-strand DNA junction binding
## 5801 double-stranded DNA 3'-5' exodeoxyribonuclease activity
## 5802 double-stranded DNA exodeoxyribonuclease activity
## 5803 double-stranded DNA helicase activity
## 5804 double-stranded methylated DNA binding
## 5805 drug metabolic process
## 5806 drug transmembrane transport
## 5807 dTMP catabolic process
## 5808 dTTP diphosphatase activity
## 5809 dUMP catabolic process
## 5810 dynein heavy chain binding
## 5811 ear development
## 5812 ear morphogenesis
## 5813 early endosome lumen
## 5814 early endosome to recycling endosome transport
## 5815 early phagosome membrane
## 5816 eiF2alpha phosphorylation in response to endoplasmic reticulum stress
## 5817 elastic fiber
## 5818 Elongator holoenzyme complex
## 5819 elongin complex
## 5820 embryonic axis specification
## 5821 embryonic eye morphogenesis
## 5822 embryonic foregut morphogenesis
## 5823 embryonic heart tube development
## 5824 embryonic heart tube morphogenesis
## 5825 embryonic liver development
## 5826 embryonic process involved in female pregnancy
## 5827 endocannabinoid signaling pathway
## 5828 endocardial cell differentiation
## 5829 endocardial cushion development
## 5830 endodeoxyribonuclease activity, producing 5'-phosphomonoesters
## 5831 endodermal cell fate commitment
## 5832 endogenous lipid antigen binding
## 5833 endomembrane system organization
## 5834 endopeptidase Clp complex
## 5835 endoplasmic reticulum chaperone complex
## 5836 endoplasmic reticulum tubular network membrane organization
## 5837 endoplasmic reticulum-Golgi intermediate compartment organization
## 5838 endopolyphosphatase activity
## 5839 endoribonuclease activity, cleaving miRNA-paired mRNA
## 5840 endosomal lumen acidification
## 5841 endosome fission
## 5842 endosome to plasma membrane transport vesicle
## 5843 endothelial cell activation
## 5844 entrainment of circadian clock
## 5845 entry of viral genome into host nucleus through nuclear pore complex via importin
## 5846 enucleate erythrocyte differentiation
## 5847 enzyme linked receptor protein signaling pathway
## 5848 eosinophil chemotaxis
## 5849 ephrin receptor activity
## 5850 epithelial cell maturation
## 5851 epithelial cell migration
## 5852 epithelial cell morphogenesis involved in placental branching
## 5853 epithelial cell proliferation
## 5854 epithelial cell-cell adhesion
## 5855 epithelial to mesenchymal transition involved in endocardial cushion formation
## 5856 epithelial tube branching involved in lung morphogenesis
## 5857 epithelium development
## 5858 epsilon DNA polymerase complex
## 5859 ER retention sequence binding
## 5860 ErbB-3 class receptor binding
## 5861 establishment of mitotic sister chromatid cohesion
## 5862 establishment of organelle localization
## 5863 establishment of protein localization to mitochondrion
## 5864 establishment of protein localization to telomere
## 5865 establishment of protein-containing complex localization to telomere
## 5866 establishment of RNA localization to telomere
## 5867 establishment of Sertoli cell barrier
## 5868 ethanol catabolic process
## 5869 ethanolamine kinase activity
## 5870 ethanolaminephosphotransferase activity
## 5871 excitatory synapse
## 5872 excitatory synapse assembly
## 5873 exocrine pancreas development
## 5874 exocytic insertion of neurotransmitter receptor to postsynaptic membrane
## 5875 exogenous lipid antigen binding
## 5876 exopolyphosphatase activity
## 5877 exoribonuclease activity
## 5878 exploration behavior
## 5879 extension of a leading process involved in cell motility in cerebral cortex radial glia guided migration
## 5880 external genitalia morphogenesis
## 5881 external side of apical plasma membrane
## 5882 extracellular matrix constituent secretion
## 5883 extracellular matrix structural constituent conferring tensile strength
## 5884 extracellular negative regulation of signal transduction
## 5885 extrinsic component of external side of plasma membrane
## 5886 extrinsic component of postsynaptic density membrane
## 5887 extrinsic component of postsynaptic membrane
## 5888 eye photoreceptor cell differentiation
## 5889 eyelid development in camera-type eye
## 5890 FACT complex
## 5891 fat pad development
## 5892 fatty acid amide hydrolase activity
## 5893 fatty acid elongase complex
## 5894 FBXO family protein binding
## 5895 feeding behavior
## 5896 ferredoxin metabolic process
## 5897 FFAT motif binding
## 5898 FHF complex
## 5899 fibroblast growth factor receptor binding
## 5900 fibroblast growth factor-activated receptor activity
## 5901 flavin-linked sulfhydryl oxidase activity
## 5902 floor plate development
## 5903 floppase activity
## 5904 flotillin complex
## 5905 folate import across plasma membrane
## 5906 folic acid transmembrane transporter activity
## 5907 folic acid-containing compound metabolic process
## 5908 follicle-stimulating hormone receptor binding
## 5909 follicle-stimulating hormone signaling pathway
## 5910 follicular B cell differentiation
## 5911 forebrain astrocyte development
## 5912 forebrain radial glial cell differentiation
## 5913 forelimb morphogenesis
## 5914 forked DNA-dependent helicase activity
## 5915 formate-tetrahydrofolate ligase activity
## 5916 formation of radial glial scaffolds
## 5917 free ubiquitin chain polymerization
## 5918 fructosamine metabolic process
## 5919 fructose biosynthetic process
## 5920 fructose-6-phosphate binding
## 5921 fructose-bisphosphate aldolase activity
## 5922 fusion of virus membrane with host plasma membrane
## 5923 G protein-coupled acetylcholine receptor signaling pathway
## 5924 G protein-coupled adenosine receptor activity
## 5925 G protein-coupled purinergic nucleotide receptor activity
## 5926 G protein-coupled purinergic nucleotide receptor signaling pathway
## 5927 G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger
## 5928 G-protein beta/gamma-subunit complex
## 5929 G0 to G1 transition
## 5930 G1 to G0 transition
## 5931 galactokinase activity
## 5932 gamma DNA polymerase complex
## 5933 gamma-aminobutyric acid import
## 5934 gamma-aminobutyric acid transmembrane transporter activity
## 5935 gamma-delta T cell activation
## 5936 ganglioside biosynthetic process via lactosylceramide
## 5937 ganglioside GM1 binding
## 5938 gap junction
## 5939 GATOR1 complex
## 5940 GDP catabolic process
## 5941 GDP-dissociation inhibitor activity
## 5942 GDP-mannose biosynthetic process
## 5943 GDP-mannose metabolic process
## 5944 gene silencing
## 5945 germ cell migration
## 5946 glandular epithelial cell development
## 5947 glial cell differentiation
## 5948 glial cell migration
## 5949 glial cell proliferation
## 5950 glomerular filtration
## 5951 glomerular visceral epithelial cell development
## 5952 glomerular visceral epithelial cell migration
## 5953 glucocorticoid receptor signaling pathway
## 5954 glucose 6-phosphate:inorganic phosphate antiporter activity
## 5955 glucose import
## 5956 glucose import in response to insulin stimulus
## 5957 glutamate binding
## 5958 glutaminase activity
## 5959 glutamine catabolic process
## 5960 glyceraldehyde-3-phosphate biosynthetic process
## 5961 glyceraldehyde-3-phosphate metabolic process
## 5962 glycerol dehydrogenase [NADP+] activity
## 5963 glycerol metabolic process
## 5964 glycerol-3-phosphate dehydrogenase complex
## 5965 glycine binding
## 5966 glycine metabolic process
## 5967 glycogen binding
## 5968 glycolipid catabolic process
## 5969 glycolytic process through fructose-6-phosphate
## 5970 glycophagy
## 5971 glycoside catabolic process
## 5972 GMP biosynthetic process
## 5973 Golgi reassembly
## 5974 Golgi vesicle docking
## 5975 GPI-anchor transamidase complex
## 5976 granular component
## 5977 growth cone lamellipodium
## 5978 growth cone membrane
## 5979 growth factor receptor binding
## 5980 growth plate cartilage chondrocyte differentiation
## 5981 guanylate cyclase activity
## 5982 guanylate cyclase complex, soluble
## 5983 hair cell differentiation
## 5984 hair follicle maturation
## 5985 haptoglobin binding
## 5986 haptoglobin-hemoglobin complex
## 5987 heart process
## 5988 heart trabecula formation
## 5989 heart trabecula morphogenesis
## 5990 heme oxidation
## 5991 heme oxygenase (decyclizing) activity
## 5992 heme transmembrane transporter activity
## 5993 heme transport
## 5994 hemidesmosome
## 5995 hemoglobin biosynthetic process
## 5996 heparan sulfate proteoglycan binding
## 5997 heparan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## 5998 heparan sulfate proteoglycan catabolic process
## 5999 hepatocyte growth factor receptor signaling pathway
## 6000 heterochromatin assembly by small RNA
## 6001 heterocyclic compound binding
## 6002 hexose metabolic process
## 6003 high-density lipoprotein particle
## 6004 histidine biosynthetic process
## 6005 histone arginine methylation
## 6006 histone demethylase activity (H3-K27 specific)
## 6007 histone dephosphorylation
## 6008 histone H3-K27 demethylation
## 6009 histone H3-K27 trimethylation
## 6010 histone H3-K36 dimethylation
## 6011 histone H3-K36 trimethylation
## 6012 histone H3-K4 dimethylation
## 6013 histone H3-K9 acetylation
## 6014 histone H3-K9 deacetylation
## 6015 histone H3-K9 modification
## 6016 histone H3-K9 trimethylation
## 6017 histone H3-S10 phosphorylation
## 6018 histone H3-S28 phosphorylation
## 6019 histone H3-T11 phosphorylation
## 6020 histone H4-K20 methylation
## 6021 histone H4-K20 trimethylation
## 6022 histone kinase activity (H3-T11 specific)
## 6023 histone methyltransferase activity (H4-K20 specific)
## 6024 histone methyltransferase activity (H4-R3 specific)
## 6025 histone succinylation
## 6026 histone-arginine N-methyltransferase activity
## 6027 histone-serine phosphorylation
## 6028 HLH domain binding
## 6029 Holliday junction resolvase complex
## 6030 homeostatic process
## 6031 homotypic cell-cell adhesion
## 6032 hormone secretion
## 6033 Hrd1p ubiquitin ligase complex
## 6034 humoral immune response mediated by circulating immunoglobulin
## 6035 hyaluronan catabolic process
## 6036 hydrogen peroxide biosynthetic process
## 6037 hydroxyacylglutathione hydrolase activity
## 6038 hypoxia-inducible factor-1alpha signaling pathway
## 6039 icosanoid metabolic process
## 6040 IgM binding
## 6041 IkappaB kinase activity
## 6042 immature B cell differentiation
## 6043 immune response-inhibiting cell surface receptor signaling pathway
## 6044 immune system development
## 6045 IMP dehydrogenase activity
## 6046 induction by virus of host autophagy
## 6047 inhibitory postsynaptic potential
## 6048 inhibitory synapse
## 6049 inner acrosomal membrane
## 6050 inner ear receptor cell development
## 6051 inner mitochondrial membrane protein complex
## 6052 innervation
## 6053 inositol biosynthetic process
## 6054 inositol diphosphate pentakisphosphate diphosphatase activity
## 6055 inositol diphosphate tetrakisphosphate diphosphatase activity
## 6056 inositol hexakisphosphate binding
## 6057 inositol monophosphate 1-phosphatase activity
## 6058 inositol monophosphate 3-phosphatase activity
## 6059 inositol monophosphate 4-phosphatase activity
## 6060 inositol monophosphate phosphatase activity
## 6061 inositol phosphate biosynthetic process
## 6062 inositol phosphate phosphatase activity
## 6063 inositol phosphate-mediated signaling
## 6064 inositol trisphosphate biosynthetic process
## 6065 insulin binding
## 6066 integral component of autophagosome membrane
## 6067 integral component of endosome membrane
## 6068 integral component of synaptic membrane
## 6069 integrin alpha1-beta1 complex
## 6070 integrin alphav-beta3 complex
## 6071 interaction with symbiont
## 6072 intercellular canaliculus
## 6073 interleukin-1 binding
## 6074 interleukin-1 receptor activity
## 6075 interleukin-10-mediated signaling pathway
## 6076 interleukin-11 binding
## 6077 interleukin-11 receptor activity
## 6078 interleukin-11-mediated signaling pathway
## 6079 interleukin-12 receptor binding
## 6080 interleukin-18 binding
## 6081 interleukin-2 receptor binding
## 6082 interleukin-2-mediated signaling pathway
## 6083 interleukin-27 receptor activity
## 6084 intermediate filament binding
## 6085 internal protein amino acid acetylation
## 6086 intestinal epithelial cell maturation
## 6087 intracellular ferritin complex
## 6088 intracellular steroid hormone receptor signaling pathway
## 6089 intracellular sterol transport
## 6090 intramolecular oxidoreductase activity, transposing C=C bonds
## 6091 intramolecular transferase activity
## 6092 intrinsic component of mitochondrial outer membrane
## 6093 ion channel inhibitor activity
## 6094 IRE1-TRAF2-ASK1 complex
## 6095 iron import into cell
## 6096 iron ion transmembrane transporter activity
## 6097 iron-responsive element binding
## 6098 isocitrate dehydrogenase (NAD+) activity
## 6099 isoleucine-tRNA ligase activity
## 6100 isoleucyl-tRNA aminoacylation
## 6101 JUN kinase kinase activity
## 6102 K6-linked polyubiquitin modification-dependent protein binding
## 6103 keratinocyte migration
## 6104 keratinocyte proliferation
## 6105 ketone body biosynthetic process
## 6106 kinase activator activity
## 6107 Ku70:Ku80 complex
## 6108 L-aspartate transmembrane transporter activity
## 6109 L-histidine transmembrane transporter activity
## 6110 L-lysine catabolic process to acetyl-CoA via saccharopine
## 6111 L-lysine transmembrane transporter activity
## 6112 L-serine metabolic process
## 6113 L-serine transmembrane transporter activity
## 6114 L-serine transport
## 6115 L27 domain binding
## 6116 lactate biosynthetic process
## 6117 lagging strand elongation
## 6118 laminin complex
## 6119 late endosome to Golgi transport
## 6120 late nucleophagy
## 6121 late viral transcription
## 6122 lateral ventricle development
## 6123 LBD domain binding
## 6124 lead ion binding
## 6125 leading edge membrane
## 6126 leading strand elongation
## 6127 left/right axis specification
## 6128 lens fiber cell development
## 6129 lens fiber cell morphogenesis
## 6130 lens induction in camera-type eye
## 6131 lens morphogenesis in camera-type eye
## 6132 leucine binding
## 6133 leukocyte apoptotic process
## 6134 leukocyte differentiation
## 6135 leukocyte homeostasis
## 6136 leukocyte migration involved in immune response
## 6137 Lewy body
## 6138 ligand-gated calcium channel activity
## 6139 ligand-gated sodium channel activity
## 6140 lipid localization
## 6141 lipid modification
## 6142 lipid transport across blood-brain barrier
## 6143 lipopolysaccharide receptor complex
## 6144 lipoteichoic acid binding
## 6145 lipoxygenase pathway
## 6146 long-chain fatty acid import across plasma membrane
## 6147 long-chain fatty acid import into peroxisome
## 6148 long-chain fatty acid transport
## 6149 long-chain fatty-acyl-CoA metabolic process
## 6150 long-chain-acyl-CoA dehydrogenase activity
## 6151 long-chain-enoyl-CoA hydratase activity
## 6152 lung epithelial cell differentiation
## 6153 lung epithelium development
## 6154 lung saccule development
## 6155 lymphangiogenesis
## 6156 lymphatic endothelial cell differentiation
## 6157 lymphocyte activation
## 6158 lymphocyte migration into lymph node
## 6159 lymphoid progenitor cell differentiation
## 6160 lysine biosynthetic process via aminoadipic acid
## 6161 lysine N-acetyltransferase activity, acting on acetyl phosphate as donor
## 6162 lysine transport
## 6163 lysophosphatidic acid binding
## 6164 lysophosphatidic acid receptor activity
## 6165 lysophospholipid acyltransferase activity
## 6166 m7G(5')pppN diphosphatase activity
## 6167 macrophage chemotaxis
## 6168 macrophage derived foam cell differentiation
## 6169 maintenance of animal organ identity
## 6170 maintenance of epithelial cell apical/basal polarity
## 6171 maintenance of gastrointestinal epithelium
## 6172 maintenance of Golgi location
## 6173 maintenance of presynaptic active zone structure
## 6174 maintenance of protein location in mitochondrion
## 6175 maintenance of rDNA
## 6176 maintenance of synapse structure
## 6177 maintenance of unfolded protein involved in ERAD pathway
## 6178 malate dehydrogenase (decarboxylating) (NAD+) activity
## 6179 malate dehydrogenase (decarboxylating) (NADP+) activity
## 6180 malate transmembrane transport
## 6181 malate transmembrane transporter activity
## 6182 male mating behavior
## 6183 malic enzyme activity
## 6184 maltose alpha-glucosidase activity
## 6185 maltose metabolic process
## 6186 mammary duct terminal end bud growth
## 6187 mammary gland duct morphogenesis
## 6188 mammary gland epithelium development
## 6189 manganese ion transmembrane transport
## 6190 manganese ion transmembrane transporter activity
## 6191 mannose-ethanolamine phosphotransferase activity
## 6192 mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase activity
## 6193 MAP kinase kinase kinase kinase activity
## 6194 MAP kinase tyrosine/serine/threonine phosphatase activity
## 6195 matrix side of mitochondrial inner membrane
## 6196 mature ribosome assembly
## 6197 MCM8-MCM9 complex
## 6198 medium-chain fatty acid catabolic process
## 6199 medium-chain fatty acid transport
## 6200 medium-chain-acyl-CoA dehydrogenase activity
## 6201 meiotic cohesin complex
## 6202 meiotic mismatch repair
## 6203 meiotic nuclear membrane microtubule tethering complex
## 6204 meiotic sister chromatid cohesion
## 6205 meiotic spindle midzone assembly
## 6206 meiotic telomere clustering
## 6207 melanosome assembly
## 6208 melanosome localization
## 6209 membrane curvature sensor activity
## 6210 membrane fission
## 6211 membrane hyperpolarization
## 6212 membrane repolarization during action potential
## 6213 membrane repolarization during ventricular cardiac muscle cell action potential
## 6214 membrane to membrane docking
## 6215 membranous septum morphogenesis
## 6216 memory T cell activation
## 6217 mesendoderm development
## 6218 mesonephros development
## 6219 metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## 6220 metalloendopeptidase inhibitor activity
## 6221 methionine adenosyltransferase complex
## 6222 methionine biosynthetic process
## 6223 methionine metabolic process
## 6224 methionine-tRNA ligase activity
## 6225 methionyl-tRNA aminoacylation
## 6226 methotrexate binding
## 6227 methyl indole-3-acetate esterase activity
## 6228 methyl-branched fatty acid metabolic process
## 6229 methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione
## 6230 MHC class I protein complex
## 6231 MHC class I protein complex binding
## 6232 MHC class Ib protein complex binding
## 6233 MHC class Ib receptor activity
## 6234 microglial cell migration
## 6235 microglial cell proliferation
## 6236 microtubule bundle
## 6237 microtubule cytoskeleton organization involved in mitosis
## 6238 microtubule-based peroxisome localization
## 6239 midbrain morphogenesis
## 6240 middle ear morphogenesis
## 6241 minus-end-directed organelle transport along microtubule
## 6242 mitigation of host immune response by virus
## 6243 mitochondrial DNA metabolic process
## 6244 mitochondrial DNA repair
## 6245 mitochondrial DNA replication
## 6246 mitochondrial large ribosomal subunit assembly
## 6247 mitochondrial membrane fusion
## 6248 mitochondrial permeability transition pore complex
## 6249 mitochondrial prohibitin complex
## 6250 mitochondrial protein processing
## 6251 mitochondrial proton-transporting ATP synthase complex assembly
## 6252 mitochondrial proton-transporting ATP synthase complex, catalytic sector F(1)
## 6253 mitochondrial proton-transporting ATP synthase complex, coupling factor F(o)
## 6254 mitochondrial respiratory chain complex assembly
## 6255 mitochondrial respiratory chain complex II assembly
## 6256 mitochondrial ribosome assembly
## 6257 mitochondrial ribosome binding
## 6258 mitochondrial tRNA 3'-end processing
## 6259 mitochondrial tRNA modification
## 6260 mitotic nuclear division
## 6261 mitotic recombination-dependent replication fork processing
## 6262 mitotic spindle astral microtubule
## 6263 mitotic spindle elongation
## 6264 mitral valve morphogenesis
## 6265 modification-dependent protein binding
## 6266 modulation by symbiont of host process
## 6267 Mon1-Ccz1 complex
## 6268 monoacylglycerol catabolic process
## 6269 monoamine transmembrane transporter activity
## 6270 monocyte extravasation
## 6271 monosaccharide metabolic process
## 6272 morphogenesis of a polarized epithelium
## 6273 motor behavior
## 6274 motor learning
## 6275 Mpp10 complex
## 6276 MRF binding
## 6277 mRNA alternative polyadenylation
## 6278 mRNA cap binding
## 6279 mRNA cleavage involved in gene silencing by miRNA
## 6280 mRNA transcription
## 6281 mucociliary clearance
## 6282 multicellular organismal iron ion homeostasis
## 6283 multicellular organismal reproductive process
## 6284 multicellular organismal response to stress
## 6285 multivesicular body lumen
## 6286 multivesicular body, internal vesicle
## 6287 musculoskeletal movement
## 6288 MutLbeta complex binding
## 6289 MutSalpha complex
## 6290 MutSbeta complex binding
## 6291 myelin maintenance
## 6292 myeloid dendritic cell activation involved in immune response
## 6293 myeloid dendritic cell antigen processing and presentation
## 6294 myeloid progenitor cell differentiation
## 6295 myo-inositol transmembrane transporter activity
## 6296 myo-inositol transport
## 6297 myoblast migration involved in skeletal muscle regeneration
## 6298 myotube differentiation
## 6299 N-acetylgalactosaminyl-proteoglycan 3-beta-glucuronosyltransferase activity
## 6300 N-acetylglucosamine 6-O-sulfotransferase activity
## 6301 N-acetylglucosamine biosynthetic process
## 6302 N-acetyllactosaminide beta-1,3-N-acetylglucosaminyltransferase activity
## 6303 N-acetylneuraminate catabolic process
## 6304 N-acylneuraminate cytidylyltransferase activity
## 6305 N-acylphosphatidylethanolamine-specific phospholipase D activity
## 6306 N-terminal peptidyl-glutamic acid acetylation
## 6307 N6-methyladenosine-containing RNA binding
## 6308 NAD DNA ADP-ribosyltransferase activity
## 6309 NAD-dependent histone deacetylase activity (H3-K9 specific)
## 6310 NADP catabolic process
## 6311 NADP+ binding
## 6312 NADPH-hemoprotein reductase activity
## 6313 nascent polypeptide-associated complex
## 6314 necroptotic signaling pathway
## 6315 NEDD8-specific protease activity
## 6316 negative cofactor 2 complex
## 6317 negative regulation by host of viral process
## 6318 negative regulation by symbiont of host apoptotic process
## 6319 negative regulation by virus of viral protein levels in host cell
## 6320 negative regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## 6321 negative regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## 6322 negative regulation of activin receptor signaling pathway
## 6323 negative regulation of acute inflammatory response
## 6324 negative regulation of adaptive immune memory response
## 6325 negative regulation of adiponectin secretion
## 6326 negative regulation of adipose tissue development
## 6327 negative regulation of alkaline phosphatase activity
## 6328 negative regulation of alpha-beta T cell activation
## 6329 negative regulation of alpha-beta T cell proliferation
## 6330 negative regulation of amyloid precursor protein catabolic process
## 6331 negative regulation of antigen processing and presentation of peptide antigen via MHC class II
## 6332 negative regulation of apoptotic process in bone marrow cell
## 6333 negative regulation of astrocyte activation
## 6334 negative regulation of astrocyte differentiation
## 6335 negative regulation of ATP metabolic process
## 6336 negative regulation of B cell apoptotic process
## 6337 negative regulation of biosynthetic process
## 6338 negative regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## 6339 negative regulation of cardiac muscle contraction
## 6340 negative regulation of cartilage development
## 6341 negative regulation of cell adhesion mediated by integrin
## 6342 negative regulation of cell cycle G1/S phase transition
## 6343 negative regulation of cell migration involved in sprouting angiogenesis
## 6344 negative regulation of cell volume
## 6345 negative regulation of cellular response to oxidative stress
## 6346 negative regulation of centriole elongation
## 6347 negative regulation of centrosome duplication
## 6348 negative regulation of chemokine (C-C motif) ligand 5 production
## 6349 negative regulation of cholesterol efflux
## 6350 negative regulation of circadian rhythm
## 6351 negative regulation of collateral sprouting
## 6352 negative regulation of CREB transcription factor activity
## 6353 negative regulation of cysteine-type endopeptidase activity
## 6354 negative regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## 6355 negative regulation of cytokine production involved in immune response
## 6356 negative regulation of cytokine-mediated signaling pathway
## 6357 negative regulation of cytoplasmic mRNA processing body assembly
## 6358 negative regulation of cytoplasmic translational elongation
## 6359 negative regulation of defense response to bacterium
## 6360 negative regulation of defense response to virus by host
## 6361 negative regulation of delayed rectifier potassium channel activity
## 6362 negative regulation of dendrite development
## 6363 negative regulation of dendrite extension
## 6364 negative regulation of dendrite morphogenesis
## 6365 negative regulation of dendritic cell apoptotic process
## 6366 negative regulation of dendritic cell differentiation
## 6367 negative regulation of DNA demethylation
## 6368 negative regulation of dopamine metabolic process
## 6369 negative regulation of epithelial cell apoptotic process
## 6370 negative regulation of ERAD pathway
## 6371 negative regulation of fatty acid beta-oxidation
## 6372 negative regulation of fatty acid oxidation
## 6373 negative regulation of fibrinolysis
## 6374 negative regulation of filopodium assembly
## 6375 negative regulation of G protein-coupled receptor signaling pathway
## 6376 negative regulation of glial cell apoptotic process
## 6377 negative regulation of glucose transmembrane transport
## 6378 negative regulation of glycogen biosynthetic process
## 6379 negative regulation of hematopoietic progenitor cell differentiation
## 6380 negative regulation of hepatocyte apoptotic process
## 6381 negative regulation of histone deacetylase activity
## 6382 negative regulation of histone deacetylation
## 6383 negative regulation of histone H3-K27 methylation
## 6384 negative regulation of histone H3-K4 methylation
## 6385 negative regulation of histone H4 acetylation
## 6386 negative regulation of histone H4-K16 acetylation
## 6387 negative regulation of histone methylation
## 6388 negative regulation of hyaluronan biosynthetic process
## 6389 negative regulation of hydrogen peroxide biosynthetic process
## 6390 negative regulation of hydrogen peroxide-induced neuron death
## 6391 negative regulation of inflammatory response to wounding
## 6392 negative regulation of interleukin-13 production
## 6393 negative regulation of interleukin-4 production
## 6394 negative regulation of interleukin-5 production
## 6395 negative regulation of JUN kinase activity
## 6396 negative regulation of lipase activity
## 6397 negative regulation of lipoprotein metabolic process
## 6398 negative regulation of long-chain fatty acid import across plasma membrane
## 6399 negative regulation of long-term synaptic potentiation
## 6400 negative regulation of low-density lipoprotein particle clearance
## 6401 negative regulation of low-density lipoprotein receptor activity
## 6402 negative regulation of lymphocyte proliferation
## 6403 negative regulation of lysosomal protein catabolic process
## 6404 negative regulation of macrophage activation
## 6405 negative regulation of macrophage cytokine production
## 6406 negative regulation of macrophage differentiation
## 6407 negative regulation of macrophage inflammatory protein 1 alpha production
## 6408 negative regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## 6409 negative regulation of mast cell degranulation
## 6410 negative regulation of MDA-5 signaling pathway
## 6411 negative regulation of melanin biosynthetic process
## 6412 negative regulation of membrane protein ectodomain proteolysis
## 6413 negative regulation of metallopeptidase activity
## 6414 negative regulation of MHC class II biosynthetic process
## 6415 negative regulation of microtubule polymerization or depolymerization
## 6416 negative regulation of mitochondrial DNA replication
## 6417 negative regulation of mitochondrial fusion
## 6418 negative regulation of mitochondrial membrane potential
## 6419 negative regulation of mitochondrion organization
## 6420 negative regulation of mitophagy
## 6421 negative regulation of mitotic metaphase/anaphase transition
## 6422 negative regulation of motor neuron apoptotic process
## 6423 negative regulation of muscle cell differentiation
## 6424 negative regulation of MyD88-independent toll-like receptor signaling pathway
## 6425 negative regulation of myofibroblast differentiation
## 6426 negative regulation of myotube differentiation
## 6427 negative regulation of necroptotic process
## 6428 negative regulation of neuroblast proliferation
## 6429 negative regulation of neuroinflammatory response
## 6430 negative regulation of neurotransmitter secretion
## 6431 negative regulation of nitric-oxide synthase activity
## 6432 negative regulation of NLRP3 inflammasome complex assembly
## 6433 negative regulation of non-canonical Wnt signaling pathway
## 6434 negative regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## 6435 negative regulation of nucleic acid-templated transcription
## 6436 negative regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## 6437 negative regulation of osteoblast proliferation
## 6438 negative regulation of osteoclast development
## 6439 negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## 6440 negative regulation of pancreatic juice secretion
## 6441 negative regulation of peptidyl-lysine acetylation
## 6442 negative regulation of peptidyl-tyrosine phosphorylation
## 6443 negative regulation of phosphatidylinositol 3-kinase activity
## 6444 negative regulation of pinocytosis
## 6445 negative regulation of platelet-derived growth factor receptor-beta signaling pathway
## 6446 negative regulation of post-translational protein modification
## 6447 negative regulation of potassium ion transmembrane transport
## 6448 negative regulation of protein acetylation
## 6449 negative regulation of protein K48-linked deubiquitination
## 6450 negative regulation of protein kinase C signaling
## 6451 negative regulation of protein metabolic process
## 6452 negative regulation of protein processing
## 6453 negative regulation of protein targeting to membrane
## 6454 negative regulation of protein tyrosine phosphatase activity
## 6455 negative regulation of protein-containing complex disassembly
## 6456 negative regulation of response to endoplasmic reticulum stress
## 6457 negative regulation of response to oxidative stress
## 6458 negative regulation of Rho guanyl-nucleotide exchange factor activity
## 6459 negative regulation of RNA export from nucleus
## 6460 negative regulation of satellite cell differentiation
## 6461 negative regulation of Schwann cell proliferation
## 6462 negative regulation of secretion
## 6463 negative regulation of sister chromatid cohesion
## 6464 negative regulation of skeletal muscle satellite cell proliferation
## 6465 negative regulation of small GTPase mediated signal transduction
## 6466 negative regulation of smooth muscle cell apoptotic process
## 6467 negative regulation of smooth muscle cell differentiation
## 6468 negative regulation of sodium ion transport
## 6469 negative regulation of striated muscle cell differentiation
## 6470 negative regulation of synapse assembly
## 6471 negative regulation of synaptic plasticity
## 6472 negative regulation of synaptic transmission
## 6473 negative regulation of synaptic transmission, glutamatergic
## 6474 negative regulation of synaptic vesicle exocytosis
## 6475 negative regulation of systemic arterial blood pressure
## 6476 negative regulation of T cell apoptotic process
## 6477 negative regulation of T cell costimulation
## 6478 negative regulation of T cell cytokine production
## 6479 negative regulation of T cell differentiation
## 6480 negative regulation of T cell migration
## 6481 negative regulation of t-circle formation
## 6482 negative regulation of telomere maintenance
## 6483 negative regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## 6484 negative regulation of thymocyte apoptotic process
## 6485 negative regulation of toll-like receptor 4 signaling pathway
## 6486 negative regulation of toll-like receptor 9 signaling pathway
## 6487 negative regulation of transcription by RNA polymerase I
## 6488 negative regulation of transcription by RNA polymerase III
## 6489 negative regulation of transcription from RNA polymerase II promoter in response to hypoxia
## 6490 negative regulation of transcription from RNA polymerase II promoter in response to stress
## 6491 negative regulation of transcription initiation from RNA polymerase II promoter
## 6492 negative regulation of transcription involved in G1/S transition of mitotic cell cycle
## 6493 negative regulation of transcription of nucleolar large rRNA by RNA polymerase I
## 6494 negative regulation of translation in response to stress
## 6495 negative regulation of translational initiation in response to stress
## 6496 negative regulation of transposition, RNA-mediated
## 6497 negative regulation of tubulin deacetylation
## 6498 negative regulation of type 2 immune response
## 6499 negative regulation of ubiquitin-specific protease activity
## 6500 negative regulation of vascular associated smooth muscle cell migration
## 6501 negative regulation of voltage-gated calcium channel activity
## 6502 negative regulation of wound healing
## 6503 negative regulation of wound healing, spreading of epidermal cells
## 6504 negative stranded viral RNA replication
## 6505 NELF complex
## 6506 Nem1-Spo7 phosphatase complex
## 6507 netrin receptor activity
## 6508 neural crest cell differentiation
## 6509 neural tube formation
## 6510 neural tube patterning
## 6511 neuregulin binding
## 6512 neurofilament cytoskeleton organization
## 6513 neuromuscular process controlling posture
## 6514 neuron death
## 6515 neuron maturation
## 6516 neuron projection arborization
## 6517 neuron projection guidance
## 6518 neuron remodeling
## 6519 neuron-neuron synaptic transmission
## 6520 neuronal dense core vesicle
## 6521 neuronal ion channel clustering
## 6522 neuropilin binding
## 6523 neurotransmitter metabolic process
## 6524 neurotransmitter reuptake
## 6525 neurotransmitter uptake
## 6526 neutral amino acid:sodium symporter activity
## 6527 neutrophil activation involved in immune response
## 6528 neutrophil mediated immunity
## 6529 nicotinamide nucleotide metabolic process
## 6530 nicotinate-nucleotide diphosphorylase (carboxylating) activity
## 6531 nitrate metabolic process
## 6532 nitric oxide binding
## 6533 nitric oxide mediated signal transduction
## 6534 nitric-oxide synthase complex
## 6535 nitrite reductase (NO-forming) activity
## 6536 Noc4p-Nop14p complex
## 6537 nodal signaling pathway
## 6538 node of Ranvier
## 6539 norepinephrine metabolic process
## 6540 Notch receptor processing
## 6541 Notch signaling involved in heart development
## 6542 notochord development
## 6543 nuclear cyclin-dependent protein kinase holoenzyme complex
## 6544 nuclear lumen
## 6545 nuclear matrix anchoring at nuclear membrane
## 6546 nuclear meiotic cohesin complex
## 6547 nuclear outer membrane-endoplasmic reticulum membrane network
## 6548 nuclear polyadenylation-dependent mRNA catabolic process
## 6549 nuclear pore inner ring
## 6550 nuclear pre-replicative complex
## 6551 nuclear proteasome complex
## 6552 nuclear speck organization
## 6553 nucleolar ribonuclease P complex
## 6554 nucleoside kinase activity
## 6555 nucleoside monophosphate kinase activity
## 6556 nucleoside transmembrane transport
## 6557 nucleoside transmembrane transporter activity
## 6558 nucleoside transport
## 6559 nucleoside triphosphate adenylate kinase activity
## 6560 nucleotide diphosphatase activity
## 6561 nucleotide phosphorylation
## 6562 nucleotide transport
## 6563 nucleotide-activated protein kinase complex
## 6564 nucleotide-binding oligomerization domain containing 2 signaling pathway
## 6565 nucleotide-excision repair involved in interstrand cross-link repair
## 6566 nucleus localization
## 6567 oleate transmembrane transporter activity
## 6568 oleoyl-CoA ligase activity
## 6569 olfactory lobe development
## 6570 oligopeptide transport
## 6571 oligosaccharide binding
## 6572 oligosaccharyl transferase activity
## 6573 omega peptidase activity
## 6574 opsonization
## 6575 optic nerve development
## 6576 organelle assembly
## 6577 organelle localization by membrane tethering
## 6578 organelle membrane contact site
## 6579 organic anion transport
## 6580 organic cation transmembrane transporter activity
## 6581 ornithine transport
## 6582 ossification involved in bone maturation
## 6583 osteoblast fate commitment
## 6584 osteoclast development
## 6585 osteoclast proliferation
## 6586 outer dense fiber
## 6587 oxalate transmembrane transporter activity
## 6588 oxalate transport
## 6589 oxaloacetate transmembrane transporter activity
## 6590 oxaloacetate transport
## 6591 oxaloacetate(2-) transmembrane transport
## 6592 oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor
## 6593 oxidoreductase activity, acting on a sulfur group of donors, oxygen as acceptor
## 6594 oxidoreductase activity, acting on CH-OH group of donors
## 6595 oxidoreductase activity, acting on paired donors, with oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water
## 6596 oxidoreductase activity, acting on the aldehyde or oxo group of donors, disulfide as acceptor
## 6597 oxoglutarate dehydrogenase complex
## 6598 oxygen binding
## 6599 oxygen carrier activity
## 6600 oxysterol binding
## 6601 P-TEFb complex
## 6602 p38MAPK cascade
## 6603 pantothenate metabolic process
## 6604 parallel actin filament bundle assembly
## 6605 parallel fiber to Purkinje cell synapse
## 6606 paranodal junction assembly
## 6607 paranode region of axon
## 6608 paraspeckles
## 6609 parathyroid gland development
## 6610 parturition
## 6611 pentose-phosphate shunt, non-oxidative branch
## 6612 pentose-phosphate shunt, oxidative branch
## 6613 peptide disulfide oxidoreductase activity
## 6614 peptide hormone receptor binding
## 6615 peptide transmembrane transporter activity
## 6616 peptide-methionine (R)-S-oxide reductase activity
## 6617 peptide-methionine (S)-S-oxide reductase activity
## 6618 peptide:proton symporter activity
## 6619 peptidoglycan transmembrane transporter activity
## 6620 peptidyl-arginine methylation, to asymmetrical-dimethyl arginine
## 6621 peptidyl-glutamic acid carboxylation
## 6622 peptidyl-lysine deglutarylation
## 6623 peptidyl-lysine desuccinylation
## 6624 peptidyl-lysine hydroxylation
## 6625 peptidyl-lysine methylation
## 6626 peptidyl-lysine monomethylation
## 6627 peptidyl-proline hydroxylation to 4-hydroxy-L-proline
## 6628 peptidyl-serine ADP-ribosylation
## 6629 peptidyltransferase activity
## 6630 pericardium morphogenesis
## 6631 periciliary membrane compartment
## 6632 perinucleolar compartment
## 6633 peroxisomal importomer complex
## 6634 peroxisome membrane biogenesis
## 6635 peroxisome membrane targeting sequence binding
## 6636 peroxisome proliferator activated receptor signaling pathway
## 6637 peroxisome targeting sequence binding
## 6638 pH reduction
## 6639 pharyngeal system development
## 6640 phenylalanyl-tRNA aminoacylation
## 6641 phenylpyruvate tautomerase activity
## 6642 phosphate ion transport
## 6643 phosphatidate phosphatase activity
## 6644 phosphatidic acid metabolic process
## 6645 phosphatidylcholine floppase activity
## 6646 phosphatidylcholine transfer activity
## 6647 phosphatidylcholine transporter activity
## 6648 phosphatidylethanolamine catabolic process
## 6649 phosphatidylethanolamine flippase activity
## 6650 phosphatidylinositol 3-kinase complex, class IA
## 6651 phosphatidylinositol 3-kinase regulator activity
## 6652 phosphatidylinositol 5-phosphate metabolic process
## 6653 phosphatidylinositol N-acetylglucosaminyltransferase activity
## 6654 phosphatidylinositol phosphate phosphatase activity
## 6655 phosphatidylinositol-4-phosphate phosphatase activity
## 6656 phosphatidylinositol-4,5-bisphosphate 4-phosphatase activity
## 6657 phosphodiesterase I activity
## 6658 phospholipase A2 inhibitor activity
## 6659 phospholipase C-activating dopamine receptor signaling pathway
## 6660 phospholipase inhibitor activity
## 6661 phospholipid dephosphorylation
## 6662 phospholipid efflux
## 6663 phospholipid-hydroperoxide glutathione peroxidase activity
## 6664 phosphopyruvate hydratase activity
## 6665 phosphopyruvate hydratase complex
## 6666 phosphorylase kinase complex
## 6667 phosphotransferase activity, phosphate group as acceptor
## 6668 photoreceptor cell cilium
## 6669 photoreceptor cell morphogenesis
## 6670 phylloquinone catabolic process
## 6671 plasma lipoprotein particle clearance
## 6672 plasma membrane lactate transport
## 6673 plasma membrane proton-transporting V-type ATPase complex
## 6674 plus-end-directed vesicle transport along microtubule
## 6675 PML body organization
## 6676 poly(ADP-ribose) glycohydrolase activity
## 6677 polyadenylation-dependent snoRNA 3'-end processing
## 6678 polyphosphate catabolic process
## 6679 polysome binding
## 6680 polyuridylation-dependent mRNA catabolic process
## 6681 porphyrin-containing compound biosynthetic process
## 6682 positive regulation by host of viral genome replication
## 6683 positive regulation by host of viral release from host cell
## 6684 positive regulation of acrosome reaction
## 6685 positive regulation of actin filament depolymerization
## 6686 positive regulation of actin nucleation
## 6687 positive regulation of activin receptor signaling pathway
## 6688 positive regulation of adipose tissue development
## 6689 positive regulation of AMPA glutamate receptor clustering
## 6690 positive regulation of AMPA receptor activity
## 6691 positive regulation of amyloid precursor protein catabolic process
## 6692 positive regulation of anaphase-promoting complex-dependent catabolic process
## 6693 positive regulation of androgen receptor activity
## 6694 positive regulation of ARF protein signal transduction
## 6695 positive regulation of ATP-dependent microtubule motor activity, plus-end-directed
## 6696 positive regulation of attachment of spindle microtubules to kinetochore
## 6697 positive regulation of autophagy of mitochondrion
## 6698 positive regulation of axon regeneration
## 6699 positive regulation of B cell apoptotic process
## 6700 positive regulation of base-excision repair
## 6701 positive regulation of basement membrane assembly involved in embryonic body morphogenesis
## 6702 positive regulation of bile acid biosynthetic process
## 6703 positive regulation of biomineral tissue development
## 6704 positive regulation of branching involved in ureteric bud morphogenesis
## 6705 positive regulation of brown fat cell differentiation
## 6706 positive regulation of calcium ion transport into cytosol
## 6707 positive regulation of cAMP-mediated signaling
## 6708 positive regulation of cardiac muscle cell differentiation
## 6709 positive regulation of catecholamine secretion
## 6710 positive regulation of CD4-positive, alpha-beta T cell activation
## 6711 positive regulation of CD4-positive, alpha-beta T cell differentiation
## 6712 positive regulation of CD4-positive, alpha-beta T cell proliferation
## 6713 positive regulation of CD8-positive, alpha-beta T cell differentiation
## 6714 positive regulation of cell cycle G2/M phase transition
## 6715 positive regulation of cell killing
## 6716 positive regulation of cell projection organization
## 6717 positive regulation of cell-cell adhesion
## 6718 positive regulation of cellular extravasation
## 6719 positive regulation of cellular metabolic process
## 6720 positive regulation of cellular response to insulin stimulus
## 6721 positive regulation of cholangiocyte proliferation
## 6722 positive regulation of chromosome separation
## 6723 positive regulation of chronic inflammatory response to antigenic stimulus
## 6724 positive regulation of collateral sprouting
## 6725 positive regulation of connective tissue replacement
## 6726 positive regulation of cristae formation
## 6727 positive regulation of cyclic-nucleotide phosphodiesterase activity
## 6728 positive regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## 6729 positive regulation of cytochrome-c oxidase activity
## 6730 positive regulation of cytoskeleton organization
## 6731 positive regulation of dendritic cell apoptotic process
## 6732 positive regulation of dendritic cell chemotaxis
## 6733 positive regulation of dendritic cell cytokine production
## 6734 positive regulation of dendritic cell differentiation
## 6735 positive regulation of DNA damage response, signal transduction by p53 class mediator
## 6736 positive regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## 6737 positive regulation of DNA ligation
## 6738 positive regulation of dopamine receptor signaling pathway
## 6739 positive regulation of endodeoxyribonuclease activity
## 6740 positive regulation of endoplasmic reticulum unfolded protein response
## 6741 positive regulation of eosinophil migration
## 6742 positive regulation of epithelial cell proliferation involved in wound healing
## 6743 positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## 6744 positive regulation of epithelial tube formation
## 6745 positive regulation of establishment of T cell polarity
## 6746 positive regulation of execution phase of apoptosis
## 6747 positive regulation of extracellular matrix organization
## 6748 positive regulation of fatty acid metabolic process
## 6749 positive regulation of fibroblast apoptotic process
## 6750 positive regulation of fibroblast growth factor production
## 6751 positive regulation of focal adhesion disassembly
## 6752 positive regulation of glucose mediated signaling pathway
## 6753 positive regulation of glucose transmembrane transport
## 6754 positive regulation of glutamate secretion
## 6755 positive regulation of glycoprotein metabolic process
## 6756 positive regulation of granzyme B production
## 6757 positive regulation of growth
## 6758 positive regulation of growth factor dependent skeletal muscle satellite cell proliferation
## 6759 positive regulation of growth hormone receptor signaling pathway
## 6760 positive regulation of hematopoietic stem cell proliferation
## 6761 positive regulation of hemoglobin biosynthetic process
## 6762 positive regulation of hepatic stellate cell activation
## 6763 positive regulation of high-density lipoprotein particle assembly
## 6764 positive regulation of histamine secretion by mast cell
## 6765 positive regulation of histone H2B ubiquitination
## 6766 positive regulation of histone H4 acetylation
## 6767 positive regulation of hormone biosynthetic process
## 6768 positive regulation of hormone secretion
## 6769 positive regulation of humoral immune response
## 6770 positive regulation of hydrogen peroxide-mediated programmed cell death
## 6771 positive regulation of immunoglobulin mediated immune response
## 6772 positive regulation of inositol phosphate biosynthetic process
## 6773 positive regulation of interleukin-1 alpha production
## 6774 positive regulation of interleukin-18 production
## 6775 positive regulation of interleukin-4-mediated signaling pathway
## 6776 positive regulation of interleukin-5 production
## 6777 positive regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## 6778 positive regulation of ion transmembrane transport
## 6779 positive regulation of IRE1-mediated unfolded protein response
## 6780 positive regulation of killing of cells of other organism
## 6781 positive regulation of lamellipodium organization
## 6782 positive regulation of lipase activity
## 6783 positive regulation of lipid catabolic process
## 6784 positive regulation of low-density lipoprotein receptor activity
## 6785 positive regulation of lymphocyte activation
## 6786 positive regulation of lysosomal protein catabolic process
## 6787 positive regulation of macrophage derived foam cell differentiation
## 6788 positive regulation of macrophage fusion
## 6789 positive regulation of macropinocytosis
## 6790 positive regulation of mammary gland epithelial cell proliferation
## 6791 positive regulation of mast cell chemotaxis
## 6792 positive regulation of mast cell degranulation
## 6793 positive regulation of matrix metallopeptidase secretion
## 6794 positive regulation of MDA-5 signaling pathway
## 6795 positive regulation of mesenchymal stem cell proliferation
## 6796 positive regulation of MHC class I biosynthetic process
## 6797 positive regulation of microglial cell mediated cytotoxicity
## 6798 positive regulation of microtubule binding
## 6799 positive regulation of mitochondrial ATP synthesis coupled electron transport
## 6800 positive regulation of mitochondrial membrane permeability involved in apoptotic process
## 6801 positive regulation of mitochondrial transcription
## 6802 positive regulation of mitophagy in response to mitochondrial depolarization
## 6803 positive regulation of mitotic cell cycle phase transition
## 6804 positive regulation of mucus secretion
## 6805 positive regulation of myeloid cell differentiation
## 6806 positive regulation of myoblast proliferation
## 6807 positive regulation of natural killer cell cytokine production
## 6808 positive regulation of neutrophil degranulation
## 6809 positive regulation of NK T cell proliferation
## 6810 positive regulation of NLRP3 inflammasome complex assembly
## 6811 positive regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## 6812 positive regulation of oocyte maturation
## 6813 positive regulation of organ growth
## 6814 positive regulation of organelle organization
## 6815 positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## 6816 positive regulation of peptidyl-tyrosine autophosphorylation
## 6817 positive regulation of phosphatase activity
## 6818 positive regulation of pinocytosis
## 6819 positive regulation of plasminogen activation
## 6820 positive regulation of potassium ion export across plasma membrane
## 6821 positive regulation of production of miRNAs involved in gene silencing by miRNA
## 6822 positive regulation of prostaglandin-E synthase activity
## 6823 positive regulation of protein autoubiquitination
## 6824 positive regulation of protein deacetylation
## 6825 positive regulation of protein deubiquitination
## 6826 positive regulation of protein K48-linked ubiquitination
## 6827 positive regulation of protein localization to cell cortex
## 6828 positive regulation of protein localization to centrosome
## 6829 positive regulation of protein localization to chromosome, telomeric region
## 6830 positive regulation of protein localization to cilium
## 6831 positive regulation of protein localization to endosome
## 6832 positive regulation of protein localization to membrane
## 6833 positive regulation of protein localization to nucleolus
## 6834 positive regulation of protein modification process
## 6835 positive regulation of protein neddylation
## 6836 positive regulation of protein polyubiquitination
## 6837 positive regulation of protein-containing complex disassembly
## 6838 positive regulation of receptor binding
## 6839 positive regulation of receptor clustering
## 6840 positive regulation of regulated secretory pathway
## 6841 positive regulation of renal sodium excretion
## 6842 positive regulation of retrograde protein transport, ER to cytosol
## 6843 positive regulation of ryanodine-sensitive calcium-release channel activity
## 6844 positive regulation of secretion
## 6845 positive regulation of secretory granule organization
## 6846 positive regulation of sensory perception of pain
## 6847 positive regulation of sister chromatid cohesion
## 6848 positive regulation of skeletal muscle fiber development
## 6849 positive regulation of skeletal muscle tissue development
## 6850 positive regulation of small GTPase mediated signal transduction
## 6851 positive regulation of smooth muscle cell migration
## 6852 positive regulation of sodium ion transport
## 6853 positive regulation of spindle assembly
## 6854 positive regulation of stem cell differentiation
## 6855 positive regulation of stem cell population maintenance
## 6856 positive regulation of striated muscle cell differentiation
## 6857 positive regulation of superoxide dismutase activity
## 6858 positive regulation of synaptic transmission, glutamatergic
## 6859 positive regulation of syncytium formation by plasma membrane fusion
## 6860 positive regulation of systemic arterial blood pressure
## 6861 positive regulation of T cell costimulation
## 6862 positive regulation of T cell differentiation in thymus
## 6863 positive regulation of T cell tolerance induction
## 6864 positive regulation of t-circle formation
## 6865 positive regulation of T-helper 1 cell cytokine production
## 6866 positive regulation of T-helper 2 cell differentiation
## 6867 positive regulation of telomerase catalytic core complex assembly
## 6868 positive regulation of testosterone secretion
## 6869 positive regulation of thymocyte apoptotic process
## 6870 positive regulation of toll-like receptor 2 signaling pathway
## 6871 positive regulation of toll-like receptor 8 signaling pathway
## 6872 positive regulation of toll-like receptor 9 signaling pathway
## 6873 positive regulation of TORC2 signaling
## 6874 positive regulation of transcription via serum response element binding
## 6875 positive regulation of transcytosis
## 6876 positive regulation of translational fidelity
## 6877 positive regulation of vascular wound healing
## 6878 positive regulation of voltage-gated calcium channel activity
## 6879 positive regulation of wound healing, spreading of epidermal cells
## 6880 post-embryonic camera-type eye development
## 6881 post-translational protein acetylation
## 6882 postsynapse organization
## 6883 postsynaptic endocytic zone cytoplasmic component
## 6884 postsynaptic recycling endosome
## 6885 potassium channel complex
## 6886 potassium channel inhibitor activity
## 6887 potassium ion transmembrane transporter activity
## 6888 POZ domain binding
## 6889 pre-mRNA 3'-splice site binding
## 6890 pre-snoRNP complex
## 6891 prenylcysteine catabolic process
## 6892 prenylcysteine oxidase activity
## 6893 presynapse assembly
## 6894 presynaptic active zone membrane
## 6895 presynaptic modulation of chemical synaptic transmission
## 6896 primitive erythrocyte differentiation
## 6897 primitive hemopoiesis
## 6898 primitive streak formation
## 6899 pro-B cell differentiation
## 6900 pro-T cell differentiation
## 6901 procollagen galactosyltransferase activity
## 6902 progesterone biosynthetic process
## 6903 progesterone receptor binding
## 6904 progesterone receptor signaling pathway
## 6905 prostaglandin transport
## 6906 prostate gland development
## 6907 prostate gland growth
## 6908 proteasome regulatory particle assembly
## 6909 protein antigen binding
## 6910 protein deglutarylation
## 6911 protein depropionylation
## 6912 protein deubiquitination involved in ubiquitin-dependent protein catabolic process
## 6913 protein histidine phosphatase activity
## 6914 protein import
## 6915 protein insertion into membrane
## 6916 protein insertion into mitochondrial membrane
## 6917 protein K27-linked deubiquitination
## 6918 protein K29-linked deubiquitination
## 6919 protein K33-linked deubiquitination
## 6920 protein kinase A signaling
## 6921 protein kinase C signaling
## 6922 protein kinase D signaling
## 6923 protein linear deubiquitination
## 6924 protein linear polyubiquitination
## 6925 protein localization to axon
## 6926 protein localization to basolateral plasma membrane
## 6927 protein localization to bicellular tight junction
## 6928 protein localization to cell periphery
## 6929 protein localization to cytosolic proteasome complex involved in ERAD pathway
## 6930 protein localization to endoplasmic reticulum
## 6931 protein localization to Golgi membrane
## 6932 protein localization to perinuclear region of cytoplasm
## 6933 protein localization to photoreceptor outer segment
## 6934 protein localization to synapse
## 6935 protein localization to tricellular tight junction
## 6936 protein mannosylation
## 6937 protein O-GlcNAc transferase activity
## 6938 protein O-linked fucosylation
## 6939 protein O-linked glycosylation via serine
## 6940 protein oxidation
## 6941 protein phosphatase 2B binding
## 6942 protein phosphatase 4 complex
## 6943 protein phosphorylated amino acid binding
## 6944 protein polyglutamylation
## 6945 protein prenyltransferase activity
## 6946 protein repair
## 6947 protein serine/threonine phosphatase complex
## 6948 protein serine/threonine phosphatase inhibitor activity
## 6949 protein to membrane docking
## 6950 protein-arginine omega-N asymmetric methyltransferase activity
## 6951 protein-cysteine S-myristoyltransferase activity
## 6952 protein-DNA complex assembly
## 6953 protein-DNA complex disassembly
## 6954 protein-glutaryllysine deglutarylase activity
## 6955 protein-propionyllysine depropionylase activity
## 6956 protein-ribulosamine 3-kinase activity
## 6957 protein-succinyllysine desuccinylase activity
## 6958 proton-transporting ATP synthase complex, coupling factor F(o)
## 6959 proximal/distal pattern formation
## 6960 PTB domain binding
## 6961 pulmonary artery morphogenesis
## 6962 pulmonary valve development
## 6963 purine nucleotide metabolic process
## 6964 purine ribonucleoside salvage
## 6965 purine-rich negative regulatory element binding
## 6966 purine-specific mismatch base pair DNA N-glycosylase activity
## 6967 putrescine biosynthetic process
## 6968 putrescine biosynthetic process from ornithine
## 6969 Pwp2p-containing subcomplex of 90S preribosome
## 6970 pyramidal neuron development
## 6971 pyrimidine dimer repair by nucleotide-excision repair
## 6972 pyrimidine nucleoside metabolic process
## 6973 pyrimidine nucleotide binding
## 6974 pyrimidine ribonucleotide biosynthetic process
## 6975 pyrimidine-containing compound transmembrane transport
## 6976 pyrophosphatase activity
## 6977 pyroptosis
## 6978 pyruvate dehydrogenase (NAD+) activity
## 6979 pyruvate dehydrogenase complex
## 6980 quinolinate metabolic process
## 6981 R2TP complex
## 6982 Rad51B-Rad51C-Rad51D-XRCC2 complex
## 6983 RAGE receptor binding
## 6984 Rb-E2F complex
## 6985 re-entry into mitotic cell cycle
## 6986 receptor localization to synapse
## 6987 receptor transactivation
## 6988 receptor-mediated endocytosis involved in cholesterol transport
## 6989 recombinational interstrand cross-link repair
## 6990 regulation of actin filament bundle assembly
## 6991 regulation of actin filament organization
## 6992 regulation of actin filament-based process
## 6993 regulation of AMPA receptor activity
## 6994 regulation of amyloid precursor protein biosynthetic process
## 6995 regulation of angiotensin-activated signaling pathway
## 6996 regulation of ATP biosynthetic process
## 6997 regulation of autophagosome maturation
## 6998 regulation of autophagosome size
## 6999 regulation of axon guidance
## 7000 regulation of B cell differentiation
## 7001 regulation of behavior
## 7002 regulation of bile acid biosynthetic process
## 7003 regulation of BMP signaling pathway
## 7004 regulation of bone remodeling
## 7005 regulation of branching involved in mammary gland duct morphogenesis
## 7006 regulation of branching involved in salivary gland morphogenesis
## 7007 regulation of brown fat cell differentiation
## 7008 regulation of calcium ion import
## 7009 regulation of calcium ion transmembrane transport
## 7010 regulation of calcium-mediated signaling
## 7011 regulation of cAMP-mediated signaling
## 7012 regulation of cardiac muscle cell contraction
## 7013 regulation of cardiolipin metabolic process
## 7014 regulation of CD40 signaling pathway
## 7015 regulation of cell communication by electrical coupling involved in cardiac conduction
## 7016 regulation of cell differentiation involved in embryonic placenta development
## 7017 regulation of cellular pH
## 7018 regulation of cellular protein metabolic process
## 7019 regulation of cellular response to insulin stimulus
## 7020 regulation of cellular response to oxidative stress
## 7021 regulation of centrosome cycle
## 7022 regulation of chaperone-mediated autophagy
## 7023 regulation of chemotaxis
## 7024 regulation of cholesterol esterification
## 7025 regulation of cholesterol transport
## 7026 regulation of chromatin assembly or disassembly
## 7027 regulation of chromosome condensation
## 7028 regulation of collagen fibril organization
## 7029 regulation of cytokine production involved in inflammatory response
## 7030 regulation of cytoplasmic translation
## 7031 regulation of defense response to virus by host
## 7032 regulation of delayed rectifier potassium channel activity
## 7033 regulation of dendritic cell differentiation
## 7034 regulation of developmental process
## 7035 regulation of DNA biosynthetic process
## 7036 regulation of DNA double-strand break processing
## 7037 regulation of DNA-templated transcription in response to stress
## 7038 regulation of dopamine receptor signaling pathway
## 7039 regulation of eIF2 alpha phosphorylation by heme
## 7040 regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## 7041 regulation of endothelial cell migration
## 7042 regulation of entry of bacterium into host cell
## 7043 regulation of epidermal cell differentiation
## 7044 regulation of epidermal growth factor-activated receptor activity
## 7045 regulation of epidermis development
## 7046 regulation of epithelial cell proliferation
## 7047 regulation of ER to Golgi vesicle-mediated transport
## 7048 regulation of establishment or maintenance of cell polarity
## 7049 regulation of Fc receptor mediated stimulatory signaling pathway
## 7050 regulation of fibroblast proliferation
## 7051 regulation of gastric acid secretion
## 7052 regulation of gene silencing
## 7053 regulation of germinal center formation
## 7054 regulation of gliogenesis
## 7055 regulation of glucosylceramidase activity
## 7056 regulation of growth rate
## 7057 regulation of hair follicle development
## 7058 regulation of hematopoietic progenitor cell differentiation
## 7059 regulation of high voltage-gated calcium channel activity
## 7060 regulation of histone deacetylation
## 7061 regulation of histone H4 acetylation
## 7062 regulation of histone methylation
## 7063 regulation of hormone levels
## 7064 regulation of immune system process
## 7065 regulation of interferon-gamma production
## 7066 regulation of intracellular cholesterol transport
## 7067 regulation of intracellular protein transport
## 7068 regulation of kainate selective glutamate receptor activity
## 7069 regulation of kinase activity
## 7070 regulation of leukocyte cell-cell adhesion
## 7071 regulation of lipid biosynthetic process
## 7072 regulation of long-term synaptic potentiation
## 7073 regulation of lymphocyte activation
## 7074 regulation of lymphocyte migration
## 7075 regulation of meiotic cell cycle
## 7076 regulation of membrane depolarization
## 7077 regulation of membrane lipid distribution
## 7078 regulation of membrane permeability
## 7079 regulation of microtubule depolymerization
## 7080 regulation of miRNA metabolic process
## 7081 regulation of mitochondrial membrane permeability involved in apoptotic process
## 7082 regulation of mitochondrial membrane permeability involved in programmed necrotic cell death
## 7083 regulation of mitochondrial transcription
## 7084 regulation of mitotic recombination
## 7085 regulation of natural killer cell mediated cytotoxicity
## 7086 regulation of neuroinflammatory response
## 7087 regulation of neuron projection arborization
## 7088 regulation of neurotransmitter levels
## 7089 regulation of neurotrophin TRK receptor signaling pathway
## 7090 regulation of norepinephrine secretion
## 7091 regulation of organelle assembly
## 7092 regulation of organelle transport along microtubule
## 7093 regulation of phosphatidylcholine catabolic process
## 7094 regulation of phospholipid biosynthetic process
## 7095 regulation of plasma membrane repair
## 7096 regulation of protein catabolic process at postsynapse, modulating synaptic transmission
## 7097 regulation of protein import into nucleus
## 7098 regulation of protein localization to chromatin
## 7099 regulation of protein localization to synapse
## 7100 regulation of protein serine/threonine kinase activity
## 7101 regulation of protein transport
## 7102 regulation of proton transport
## 7103 regulation of receptor recycling
## 7104 regulation of receptor-mediated endocytosis
## 7105 regulation of respiratory gaseous exchange
## 7106 regulation of resting membrane potential
## 7107 regulation of retrograde transport, endosome to Golgi
## 7108 regulation of retrograde vesicle-mediated transport, Golgi to ER
## 7109 regulation of RIG-I signaling pathway
## 7110 regulation of RNA metabolic process
## 7111 regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## 7112 regulation of ryanodine-sensitive calcium-release channel activity
## 7113 regulation of smooth muscle cell apoptotic process
## 7114 regulation of smooth muscle cell differentiation
## 7115 regulation of SREBP signaling pathway
## 7116 regulation of steroid biosynthetic process
## 7117 regulation of synapse assembly
## 7118 regulation of synapse structure or activity
## 7119 regulation of synaptic vesicle recycling
## 7120 regulation of T cell anergy
## 7121 regulation of T cell cytokine production
## 7122 regulation of T cell receptor signaling pathway
## 7123 regulation of toll-like receptor 4 signaling pathway
## 7124 regulation of toll-like receptor signaling pathway
## 7125 regulation of transcription elongation from RNA polymerase II promoter
## 7126 regulation of transcription regulatory region DNA binding
## 7127 regulation of transepithelial transport
## 7128 regulation of transforming growth factor beta activation
## 7129 regulation of transforming growth factor beta2 production
## 7130 regulation of translational termination
## 7131 regulation of tubulin deacetylation
## 7132 regulation of type III interferon production
## 7133 regulation of tyrosine phosphorylation of STAT protein
## 7134 regulation of vacuole fusion, non-autophagic
## 7135 regulation of vasoconstriction
## 7136 regulation of ventricular cardiac muscle cell action potential
## 7137 regulation of viral process
## 7138 regulation of vitamin D receptor signaling pathway
## 7139 regulation of Wnt signaling pathway, planar cell polarity pathway
## 7140 regulatory region nucleic acid binding
## 7141 regulatory region RNA binding
## 7142 relaxation of vascular associated smooth muscle
## 7143 replication fork protection complex
## 7144 replisome
## 7145 reproductive structure development
## 7146 respiratory burst after phagocytosis
## 7147 respiratory burst involved in defense response
## 7148 respiratory tube development
## 7149 response to 17alpha-ethynylestradiol
## 7150 response to acidic pH
## 7151 response to aldosterone
## 7152 response to amino acid starvation
## 7153 response to angiotensin
## 7154 response to antipsychotic drug
## 7155 response to cisplatin
## 7156 response to clozapine
## 7157 response to denervation involved in regulation of muscle adaptation
## 7158 response to dietary excess
## 7159 response to DNA damage checkpoint signaling
## 7160 response to epidermal growth factor
## 7161 response to extracellular stimulus
## 7162 response to fibroblast growth factor
## 7163 response to flavonoid
## 7164 response to fluid shear stress
## 7165 response to fluoride
## 7166 response to fungicide
## 7167 response to gravity
## 7168 response to human chorionic gonadotropin
## 7169 response to insulin-like growth factor stimulus
## 7170 response to L-ascorbic acid
## 7171 response to lithium ion
## 7172 response to methotrexate
## 7173 response to methylmercury
## 7174 response to mitochondrial depolarisation
## 7175 response to muscle stretch
## 7176 response to other organism
## 7177 response to pain
## 7178 response to prostaglandin E
## 7179 response to psychosocial stress
## 7180 response to purine-containing compound
## 7181 response to salt stress
## 7182 response to selenium ion
## 7183 response to symbiotic bacterium
## 7184 response to temperature stimulus
## 7185 response to tetrachloromethane
## 7186 response to thyroid hormone
## 7187 response to UV-B
## 7188 response to vitamin
## 7189 response to water deprivation
## 7190 response to water-immersion restraint stress
## 7191 response to yeast
## 7192 retina morphogenesis in camera-type eye
## 7193 retinal cone cell development
## 7194 retinal metabolic process
## 7195 retinoic acid-responsive element binding
## 7196 retinol dehydrogenase activity
## 7197 retinyl-palmitate esterase activity
## 7198 retrograde neuronal dense core vesicle transport
## 7199 retrograde trans-synaptic signaling by endocannabinoid
## 7200 Rho-dependent protein serine/threonine kinase activity
## 7201 rhodopsin mediated signaling pathway
## 7202 ribonuclease A activity
## 7203 ribonucleoside binding
## 7204 ribonucleoside monophosphate biosynthetic process
## 7205 ribonucleoside-diphosphate reductase activity, thioredoxin disulfide as acceptor
## 7206 ribonucleoside-diphosphate reductase complex
## 7207 ribose phosphate biosynthetic process
## 7208 ribose phosphate diphosphokinase activity
## 7209 ribose phosphate diphosphokinase complex
## 7210 ribose phosphate metabolic process
## 7211 ribosomal large subunit export from nucleus
## 7212 ribosomal protein import into nucleus
## 7213 ribosome disassembly
## 7214 ribosome-associated ubiquitin-dependent protein catabolic process
## 7215 RISC complex binding
## 7216 RNA biosynthetic process
## 7217 RNA cap binding complex
## 7218 RNA interference
## 7219 RNA localization
## 7220 RNA polymerase core enzyme binding
## 7221 RNA polymerase II C-terminal domain binding
## 7222 RNA polymerase II general transcription initiation factor binding
## 7223 RNA polymerase II intronic transcription regulatory region sequence-specific DNA binding
## 7224 RNA polymerase II transcription coactivator binding
## 7225 RNA polymerase III type 1 promoter sequence-specific DNA binding
## 7226 RNA polymerase III type 2 promoter sequence-specific DNA binding
## 7227 RNA polymerase transcription factor SL1 complex
## 7228 RNA strand annealing activity
## 7229 Roundabout binding
## 7230 rRNA (guanosine-2'-O-)-methyltransferase activity
## 7231 rRNA import into mitochondrion
## 7232 rRNA methyltransferase activity
## 7233 rRNA modification
## 7234 rRNA primary transcript binding
## 7235 RSC-type complex
## 7236 RSF complex
## 7237 RZZ complex
## 7238 S-adenosylmethionine biosynthetic process
## 7239 S-adenosylmethionine metabolic process
## 7240 SAGA-type complex
## 7241 sarcoplasmic reticulum lumen
## 7242 scaRNA localization to Cajal body
## 7243 secretion by cell
## 7244 secretory granule localization
## 7245 segment specification
## 7246 segmentation
## 7247 selenocysteine metabolic process
## 7248 self proteolysis
## 7249 semicircular canal morphogenesis
## 7250 sensory perception of touch
## 7251 serine C-palmitoyltransferase activity
## 7252 serine C-palmitoyltransferase complex
## 7253 serine phosphorylation of STAT protein
## 7254 serine-tRNA ligase activity
## 7255 serine-type carboxypeptidase activity
## 7256 serotonin uptake
## 7257 seryl-tRNA aminoacylation
## 7258 sex chromosome
## 7259 sex differentiation
## 7260 sexual reproduction
## 7261 shelterin complex
## 7262 Shu complex
## 7263 signal recognition particle
## 7264 signal recognition particle receptor complex
## 7265 signal recognition particle, endoplasmic reticulum targeting
## 7266 signal transduction involved in DNA damage checkpoint
## 7267 signal transduction involved in regulation of gene expression
## 7268 signaling receptor activator activity
## 7269 single guanine insertion binding
## 7270 single thymine insertion binding
## 7271 single-stranded 3'-5' DNA helicase activity
## 7272 single-stranded DNA 5'-3' exodeoxyribonuclease activity
## 7273 sister chromatid biorientation
## 7274 sister chromatid segregation
## 7275 site-specific endodeoxyribonuclease activity, specific for altered base
## 7276 skeletal muscle acetylcholine-gated channel clustering
## 7277 skeletal muscle satellite cell differentiation
## 7278 skeletal muscle satellite cell maintenance involved in skeletal muscle regeneration
## 7279 skeletal muscle thin filament assembly
## 7280 SMAD protein complex assembly
## 7281 small conductance calcium-activated potassium channel activity
## 7282 small-subunit processome assembly
## 7283 smooth endoplasmic reticulum membrane
## 7284 smooth muscle cell migration
## 7285 smooth muscle cell proliferation
## 7286 SNARE complex disassembly
## 7287 snRNA transcription
## 7288 snRNP binding
## 7289 sodium channel activity
## 7290 sodium-independent organic anion transport
## 7291 sodium:bicarbonate symporter activity
## 7292 soluble NSF attachment protein activity
## 7293 solute:proton symporter activity
## 7294 somatic recombination of immunoglobulin genes involved in immune response
## 7295 spectrin-associated cytoskeleton
## 7296 sperm ejaculation
## 7297 sperm mitochondrion organization
## 7298 spermatid differentiation
## 7299 spermatogonial cell division
## 7300 spermatoproteasome complex
## 7301 sphingolipid binding
## 7302 sphingolipid catabolic process
## 7303 sphingomyelin catabolic process
## 7304 sphingomyelin metabolic process
## 7305 sphingomyelin phosphodiesterase activity
## 7306 sphingomyelin synthase activity
## 7307 sphingosine N-acyltransferase activity
## 7308 spindle localization
## 7309 splicing factor binding
## 7310 spongiotrophoblast differentiation
## 7311 stem cell development
## 7312 stem cell division
## 7313 stereocilium bundle
## 7314 steroid hormone binding
## 7315 sterol response element binding
## 7316 store-operated calcium channel activity
## 7317 striatum development
## 7318 structural constituent of eye lens
## 7319 structural constituent of postsynaptic actin cytoskeleton
## 7320 succinate transmembrane transport
## 7321 succinate transmembrane transporter activity
## 7322 succinyl-CoA metabolic process
## 7323 sulfate binding
## 7324 sulfation
## 7325 sulfur compound metabolic process
## 7326 SUMO polymer binding
## 7327 SUMO-specific endopeptidase activity
## 7328 superoxide dismutase activity
## 7329 superoxide-generating NADPH oxidase activator activity
## 7330 supramolecular fiber organization
## 7331 sympathetic nervous system development
## 7332 synapse pruning
## 7333 synaptic vesicle budding from endosome
## 7334 synaptic vesicle budding from presynaptic endocytic zone membrane
## 7335 synaptic vesicle docking
## 7336 synaptic vesicle membrane organization
## 7337 synaptobrevin 2-SNAP-25-syntaxin-1a-complexin I complex
## 7338 synaptobrevin 2-SNAP-25-syntaxin-1a-complexin II complex
## 7339 T cell aggregation
## 7340 T cell antigen processing and presentation
## 7341 T cell apoptotic process
## 7342 T cell mediated cytotoxicity
## 7343 T cell proliferation involved in immune response
## 7344 T cell receptor V(D)J recombination
## 7345 T follicular helper cell differentiation
## 7346 T-helper 17 cell lineage commitment
## 7347 T-helper 17 type immune response
## 7348 T-tubule organization
## 7349 tachykinin receptor signaling pathway
## 7350 TAP complex
## 7351 TAP2 binding
## 7352 taurine transport
## 7353 telencephalon development
## 7354 telethonin binding
## 7355 telomere assembly
## 7356 telomere maintenance in response to DNA damage
## 7357 telomeric D-loop binding
## 7358 telomeric G-quadruplex DNA binding
## 7359 terminal cisterna
## 7360 testosterone dehydrogenase [NAD(P)] activity
## 7361 tetrahydrobiopterin biosynthetic process
## 7362 tetrapyrrole biosynthetic process
## 7363 TFIIB-class transcription factor binding
## 7364 TFIIF-class transcription factor complex binding
## 7365 TFIIIC-class transcription factor complex binding
## 7366 thiosulfate sulfurtransferase activity
## 7367 thiosulfate transmembrane transporter activity
## 7368 thiosulfate transport
## 7369 thrombopoietin-mediated signaling pathway
## 7370 thymic T cell selection
## 7371 thyroid hormone binding
## 7372 thyroid hormone generation
## 7373 thyroid hormone metabolic process
## 7374 thyroid hormone transport
## 7375 tight junction
## 7376 titin binding
## 7377 tolerance induction
## 7378 tolerance induction to self antigen
## 7379 toll-like receptor 7 signaling pathway
## 7380 toll-like receptor TLR1:TLR2 signaling pathway
## 7381 toll-like receptor TLR6:TLR2 signaling pathway
## 7382 TORC2 signaling
## 7383 toxic substance binding
## 7384 trachea formation
## 7385 TRAF2-GSTP1 complex
## 7386 TRAIL binding
## 7387 TRAM-dependent toll-like receptor 4 signaling pathway
## 7388 TRAMP complex
## 7389 trans-2-enoyl-CoA reductase (NADPH) activity
## 7390 trans-Golgi network membrane organization
## 7391 transcription elongation regulator activity
## 7392 transcription factor AP-1 complex
## 7393 transcription factor catabolic process
## 7394 transcription factor TFIIIB complex
## 7395 transcription initiation from mitochondrial promoter
## 7396 transcription-dependent tethering of RNA polymerase II gene DNA at nuclear periphery
## 7397 transepithelial transport
## 7398 transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer
## 7399 transferase activity, transferring alkyl or aryl (other than methyl) groups
## 7400 transforming growth factor beta receptor activity, type I
## 7401 translation reinitiation
## 7402 translation release factor activity
## 7403 transmission of nerve impulse
## 7404 TRAPPII protein complex
## 7405 TRAPPIII protein complex
## 7406 triglyceride mobilization
## 7407 trimming of terminal mannose on C branch
## 7408 tripeptidyl-peptidase activity
## 7409 tRNA (guanine-N2-)-methyltransferase activity
## 7410 tRNA 2'-phosphotransferase activity
## 7411 tRNA methyltransferase activity
## 7412 tRNA N2-guanine methylation
## 7413 tRNA stabilization
## 7414 tRNA threonylcarbamoyladenosine metabolic process
## 7415 tRNA-guanine transglycosylation
## 7416 tRNA-intron endonuclease complex
## 7417 tRNA-specific adenosine deaminase activity
## 7418 tRNA-type intron splice site recognition and cleavage
## 7419 troponin complex
## 7420 TSC1-TSC2 complex
## 7421 tubulin deacetylation
## 7422 tubulin-glutamic acid ligase activity
## 7423 type 2A serotonin receptor binding
## 7424 type 3 metabotropic glutamate receptor binding
## 7425 type I pneumocyte differentiation
## 7426 type I transforming growth factor beta receptor binding
## 7427 type II transforming growth factor beta receptor binding
## 7428 type IV hypersensitivity
## 7429 U12 snRNA binding
## 7430 U2-type prespliceosome assembly
## 7431 U2AF complex
## 7432 U4atac snRNA binding
## 7433 U4atac snRNP
## 7434 ubiquinone binding
## 7435 ubiquitin modification-dependent histone binding
## 7436 ubiquitin-independent protein catabolic process via the multivesicular body sorting pathway
## 7437 ubiquitin-like protein binding
## 7438 ubiquitin-like protein-specific protease activity
## 7439 UDP-galactose transmembrane transport
## 7440 UDP-galactose transmembrane transporter activity
## 7441 UDP-galactose:beta-N-acetylglucosamine beta-1,3-galactosyltransferase activity
## 7442 UDP-galactose:glucosylceramide beta-1,4-galactosyltransferase activity
## 7443 UDP-galactosyltransferase activity
## 7444 UDP-glucuronate biosynthetic process
## 7445 UDP-N-acetylglucosamine transmembrane transport
## 7446 UDP-N-acetylglucosamine transmembrane transporter activity
## 7447 UDP-N-acetylglucosamine-lysosomal-enzyme N-acetylglucosaminephosphotransferase activity
## 7448 UDP-sugar diphosphatase activity
## 7449 UDP-xylosyltransferase activity
## 7450 UMP catabolic process
## 7451 unidimensional cell growth
## 7452 uracil DNA N-glycosylase activity
## 7453 ureter morphogenesis
## 7454 uridylyltransferase activity
## 7455 uterus development
## 7456 vacuolar proton-transporting V-type ATPase complex assembly
## 7457 valine biosynthetic process
## 7458 valine catabolic process
## 7459 vascular associated smooth muscle cell development
## 7460 vascular associated smooth muscle contraction
## 7461 vascular endothelial growth factor production
## 7462 vascular endothelial growth factor receptor 1 binding
## 7463 vascular endothelial growth factor receptor 2 binding
## 7464 vascular endothelial growth factor-activated receptor activity
## 7465 vasoconstriction
## 7466 venous blood vessel development
## 7467 venous blood vessel morphogenesis
## 7468 ventral spinal cord development
## 7469 ventricular cardiac muscle cell differentiation
## 7470 vesicle targeting
## 7471 viral penetration into host nucleus
## 7472 viral RNA genome replication
## 7473 vitamin binding
## 7474 vitamin transmembrane transport
## 7475 voltage-gated anion channel activity
## 7476 voltage-gated calcium channel complex
## 7477 voltage-gated cation channel activity
## 7478 voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## 7479 voltage-gated sodium channel complex
## 7480 volume-sensitive anion channel activity
## 7481 Weibel-Palade body
## 7482 Wnt protein secretion
## 7483 wound healing, spreading of epidermal cells
## 7484 X chromosome
## 7485 xenobiotic transport across blood-brain barrier
## 7486 xenophagy
## 7487 xylulose biosynthetic process
## 7488 zinc ion homeostasis
## 7489 zinc ion import across plasma membrane
## 7490 zona pellucida receptor complex
## 7491 'de novo' CTP biosynthetic process
## 7492 'de novo' GDP-L-fucose biosynthetic process
## 7493 'de novo' NAD biosynthetic process
## 7494 'de novo' NAD biosynthetic process from tryptophan
## 7495 'de novo' protein folding
## 7496 'de novo' UMP biosynthetic process
## 7497 (R,R)-butanediol dehydrogenase activity
## 7498 (R)-2-hydroxyglutarate dehydrogenase activity
## 7499 [3-methyl-2-oxobutanoate dehydrogenase (acetyl-transferring)] kinase activity
## 7500 [acetyl-CoA carboxylase] kinase activity
## 7501 [acyl-carrier-protein] S-malonyltransferase activity
## 7502 [heparan sulfate]-glucosamine N-sulfotransferase activity
## 7503 [hydroxymethylglutaryl-CoA reductase (NADPH)] kinase activity
## 7504 [myelin basic protein]-arginine N-methyltransferase activity
## 7505 [protein]-3-O-(N-acetyl-D-glucosaminyl)-L-serine O-N-acetyl-alpha-D-glucosaminase activity
## 7506 [protein]-3-O-(N-acetyl-D-glucosaminyl)-L-serine/L-threonine O-N-acetyl-alpha-D-glucosaminase activity
## 7507 [protein]-3-O-(N-acetyl-D-glucosaminyl)-L-threonine O-N-acetyl-alpha-D-glucosaminase activity
## 7508 [pyruvate dehydrogenase (lipoamide)] phosphatase activity
## 7509 1-acylglycerophosphoethanolamine O-acyltransferase activity
## 7510 1-acylglycerophosphoserine O-acyltransferase activity
## 7511 1-alkenylglycerophosphocholine O-acyltransferase activity
## 7512 1-alkenylglycerophosphoethanolamine O-acyltransferase activity
## 7513 1-alkylglycerophosphocholine O-acyltransferase activity
## 7514 1-ethyladenine demethylase activity
## 7515 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate metabolic process
## 7516 1-phosphatidylinositol-3-phosphate 5-kinase activity
## 7517 1-phosphatidylinositol-5-kinase activity
## 7518 1,4-alpha-glucan branching enzyme activity
## 7519 1,4-alpha-glucan branching enzyme activity (using a glucosylated glycogenin as primer for glycogen synthesis)
## 7520 10-formyltetrahydrofolate metabolic process
## 7521 10-hydroxy-9-(phosphonooxy)octadecanoate phosphatase activity
## 7522 12-hydroxyheptadecatrienoic acid synthase activity
## 7523 15-hydroxyprostaglandin dehydrogenase (NAD+) activity
## 7524 17-beta-ketosteroid reductase activity
## 7525 18S rRNA (adenine(1779)-N(6)/adenine(1780)-N(6))-dimethyltransferase activity
## 7526 2-acylglycerol O-acyltransferase activity
## 7527 2-hydroxyacylsphingosine 1-beta-galactosyltransferase activity
## 7528 2-oxobutyrate catabolic process
## 7529 2,4-dienoyl-CoA reductase (NADPH) activity
## 7530 3 iron, 4 sulfur cluster binding
## 7531 3-beta-hydroxysteroid dehydrogenase/C4-decarboxylase activity
## 7532 3-chloroallyl aldehyde dehydrogenase activity
## 7533 3-hydroxy-2-methylbutyryl-CoA dehydrogenase activity
## 7534 3-hydroxyanthranilate 3,4-dioxygenase activity
## 7535 3-hydroxyisobutyryl-CoA hydrolase activity
## 7536 3-hydroxypropionyl-CoA dehydratase activity
## 7537 3-mercaptopyruvate sulfurtransferase activity
## 7538 3-methyl-2-oxobutanoate dehydrogenase (2-methylpropanoyl-transferring) activity
## 7539 3-methylcrotonyl-CoA carboxylase complex, mitochondrial
## 7540 3-oxo-5-alpha-steroid 4-dehydrogenase activity
## 7541 3-oxo-arachidoyl-CoA reductase activity
## 7542 3-oxo-behenoyl-CoA reductase activity
## 7543 3-oxo-cerotoyl-CoA reductase activity
## 7544 3-oxo-lignoceroyl-CoA reductase activity
## 7545 3-oxoacid CoA-transferase activity
## 7546 3-oxoacyl-[acyl-carrier-protein] reductase (NADH) activity
## 7547 3-phosphoinositide-dependent protein kinase activity
## 7548 3'-5' DNA/RNA helicase activity
## 7549 3'-flap endonuclease activity
## 7550 3'-flap-structured DNA binding
## 7551 3'-nucleotidase activity
## 7552 3'-phospho-5'-adenylyl sulfate transmembrane transport
## 7553 3'-phosphoadenosine 5'-phosphosulfate transmembrane transporter activity
## 7554 3'-tRNA processing endoribonuclease activity
## 7555 3',5'-nucleotide bisphosphate phosphatase activity
## 7556 3'(2'),5'-bisphosphate nucleotidase activity
## 7557 3alpha,7alpha,12alpha-trihydroxy-5beta-cholest-24-enoyl-CoA hydratase activity
## 7558 4-alpha-hydroxytetrahydrobiopterin dehydratase activity
## 7559 4-hydroxybenzoate decaprenyltransferase activity
## 7560 4-hydroxybenzoate nonaprenyltransferase activity
## 7561 4-hydroxybutyrate receptor activity
## 7562 4alpha-carboxy-4beta-methyl-5alpha-cholesta-8-en-3beta-ol:NAD(P)+ 3-oxidoreductase (decarboxylating) activity
## 7563 4alpha-carboxy-5alpha-cholesta-8-en-3beta-ol:NAD(P)+ 3-dehydrogenase (decarboxylating) activity
## 7564 5-amino-4-imidazole carboxylate lyase activity
## 7565 5-aminolevulinate synthase activity
## 7566 5-hydroxy-6E,8Z,11Z,14Z-icosatetraenoic acid binding
## 7567 5-methylcytosine catabolic process
## 7568 5-oxo-6E,8Z,11Z,14Z-icosatetraenoic acid binding
## 7569 5-oxoprolinase (ATP-hydrolyzing) activity
## 7570 5'-3' DNA/RNA helicase activity
## 7571 5'-3' exoribonuclease activity
## 7572 5'-3' RNA helicase activity
## 7573 5'-deoxynucleotidase activity
## 7574 5(S)-hydroxyperoxy-6E,8Z,11Z,14Z-icosatetraenoic acid binding
## 7575 5alpha-androstane-3beta,17beta-diol dehydrogenase activity
## 7576 6-phosphogluconolactonase activity
## 7577 7-methylguanosine cap hypermethylation
## 7578 7-methylguanosine RNA capping
## 7579 8-hydroxy-dADP phosphatase activity
## 7580 8-oxo-7,8-dihydrodeoxyguanosine triphosphate pyrophosphatase activity
## 7581 8-oxo-7,8-dihydroguanine DNA N-glycosylase activity
## 7582 8-oxo-7,8-dihydroguanosine triphosphate pyrophosphatase activity
## 7583 8-oxo-dGDP phosphatase activity
## 7584 8-oxo-GDP phosphatase activity
## 7585 9+2 motile cilium
## 7586 90S preribosome assembly
## 7587 A2A adenosine receptor binding
## 7588 acetate biosynthetic process
## 7589 acetate CoA-transferase activity
## 7590 acetate ester transport
## 7591 acetoacetyl-CoA hydrolase activity
## 7592 acetolactate synthase activity
## 7593 acetolactate synthase complex
## 7594 acetyl-CoA biosynthetic process from acetate
## 7595 acetyl-CoA biosynthetic process from pyruvate
## 7596 acetyl-CoA carboxylase activity
## 7597 acetyl-CoA transmembrane transporter activity
## 7598 acetyl-CoA transport
## 7599 acetyl-CoA:L-glutamate N-acetyltransferase activity
## 7600 acetylcholine receptor activator activity
## 7601 acetylcholine receptor signaling pathway
## 7602 acetylcholine transmembrane transporter activity
## 7603 acetylesterase activity
## 7604 acetylputrescine deacetylase activity
## 7605 acetylpyruvate hydrolase activity
## 7606 acetylspermidine deacetylase activity
## 7607 acid secretion
## 7608 acid-amino acid ligase activity
## 7609 acid-sensing ion channel activity
## 7610 acid-thiol ligase activity
## 7611 acrosin binding
## 7612 actin cap
## 7613 actin cortical patch localization
## 7614 actin filament branching
## 7615 actin filament bundle
## 7616 actin filament reorganization involved in cell cycle
## 7617 actin filament-based process
## 7618 actin modification
## 7619 actin rod assembly
## 7620 activating MHC class I receptor activity
## 7621 activating signal cointegrator 1 complex
## 7622 activation of blood coagulation via clotting cascade
## 7623 activation of Janus kinase activity
## 7624 activin-activated receptor activity
## 7625 actomyosin contractile ring assembly
## 7626 actomyosin contractile ring contraction
## 7627 acute inflammatory response to antigenic stimulus
## 7628 acyl binding
## 7629 acyl carrier activity
## 7630 acyl-CoA delta5-desaturase activity
## 7631 acylglycerol metabolic process
## 7632 acylglycerol O-acyltransferase activity
## 7633 acylpyruvate hydrolase activity
## 7634 adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## 7635 adaptive thermogenesis
## 7636 adenine binding
## 7637 adenine biosynthetic process
## 7638 adenine metabolic process
## 7639 adenine phosphoribosyltransferase activity
## 7640 adenine salvage
## 7641 adenine transport
## 7642 adenine/guanine mispair binding
## 7643 adenosine 5'-monophosphoramidase activity
## 7644 adenosine receptor binding
## 7645 adenosine transport
## 7646 adenosylmethionine decarboxylase activity
## 7647 adenyl deoxyribonucleotide binding
## 7648 adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## 7649 adenylate cyclase-inhibiting dopamine receptor signaling pathway
## 7650 adenylylsulfate kinase activity
## 7651 adhesion of symbiont to host
## 7652 adipokinetic hormone receptor activity
## 7653 ADP metabolic process
## 7654 ADP-D-ribose binding
## 7655 ADP-dependent NAD(P)H-hydrate dehydratase activity
## 7656 ADP-ribose diphosphatase activity
## 7657 ADP-ribosylserine hydrolase activity
## 7658 ADP-specific glucokinase activity
## 7659 adrenal cortex development
## 7660 adrenergic receptor activity
## 7661 adult behavior
## 7662 AF-2 domain binding
## 7663 aflatoxin catabolic process
## 7664 aggresome assembly
## 7665 agmatine biosynthetic process
## 7666 AIM2 inflammasome complex
## 7667 alanine transmembrane transporter activity
## 7668 alanine-tRNA ligase activity
## 7669 alanyl-tRNA aminoacylation
## 7670 alcohol binding
## 7671 alcohol dehydrogenase (NADP+) activity
## 7672 alcohol dehydrogenase [NAD(P)+] activity
## 7673 alcohol-forming fatty acyl-CoA reductase activity
## 7674 aldehyde dehydrogenase (NAD+) activity
## 7675 aldehyde dehydrogenase (NADP+) activity
## 7676 aldehyde dehydrogenase [NAD(P)+] activity
## 7677 aldo-keto reductase (NADP) activity
## 7678 aldose 1-epimerase activity
## 7679 alkaline phosphatase activity
## 7680 alkylbase DNA N-glycosylase activity
## 7681 alkylglycerone-phosphate synthase activity
## 7682 all-trans-retinol 13,14-reductase activity
## 7683 alpha-(1->6)-fucosyltransferase activity
## 7684 alpha-1,3-mannosylglycoprotein 2-beta-N-acetylglucosaminyltransferase activity
## 7685 alpha-1,3-mannosylglycoprotein 4-beta-N-acetylglucosaminyltransferase activity
## 7686 alpha-1,3-mannosyltransferase activity
## 7687 alpha-1,4-N-acetylgalactosaminyltransferase activity
## 7688 alpha-1,6-mannosylglycoprotein 6-beta-N-acetylglucosaminyltransferase activity
## 7689 alpha-1,6-mannosyltransferase activity
## 7690 alpha-2 macroglobulin receptor activity
## 7691 alpha-2A adrenergic receptor binding
## 7692 alpha-beta T cell activation
## 7693 alpha-beta T cell proliferation
## 7694 alpha-catenin binding
## 7695 alpha-galactosidase activity
## 7696 alpha-ketoacid dehydrogenase activity
## 7697 alpha-ketoglutarate transport
## 7698 alpha-L-fucosidase activity
## 7699 alpha-N-acetylgalactosaminidase activity
## 7700 alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase activity
## 7701 alpha-N-acetylglucosaminidase activity
## 7702 alpha-N-acetylneuraminate alpha-2,8-sialyltransferase activity
## 7703 alpha-tubulin acetylation
## 7704 alpha9-beta1 integrin-ADAM8 complex
## 7705 alpha9-beta1 integrin-vascular cell adhesion molecule-1 complex
## 7706 alphav-beta3 integrin-vitronectin complex
## 7707 amidase activity
## 7708 amide binding
## 7709 amidophosphoribosyltransferase activity
## 7710 amine sulfotransferase activity
## 7711 amine transmembrane transporter activity
## 7712 amine transport
## 7713 amino acid homeostasis
## 7714 amino acid:sodium symporter activity
## 7715 aminoacyl-tRNA hydrolase activity
## 7716 aminomethyltransferase activity
## 7717 aminophospholipid transport
## 7718 ammon gyrus development
## 7719 ammonium import across plasma membrane
## 7720 AMP deaminase activity
## 7721 AMP phosphorylation
## 7722 AMP salvage
## 7723 amphisome
## 7724 amyloid-beta complex
## 7725 anandamide amidohydrolase activity
## 7726 anastral spindle assembly
## 7727 anatomical structure formation involved in morphogenesis
## 7728 anatomical structure regression
## 7729 androgen binding
## 7730 androstan-3-alpha,17-beta-diol dehydrogenase activity
## 7731 angiogenin-PRI complex
## 7732 angiotensin type II receptor activity
## 7733 angiotensin-activated signaling pathway
## 7734 anion:cation symporter activity
## 7735 anterior commissure morphogenesis
## 7736 anterior compartment pattern formation
## 7737 anterior neural tube closure
## 7738 anterior/posterior axon guidance
## 7739 anterograde axonal transport of mitochondrion
## 7740 anterograde dendritic transport
## 7741 anterograde dendritic transport of mitochondrion
## 7742 anterograde dendritic transport of neurotransmitter receptor complex
## 7743 anthranilate metabolic process
## 7744 antibiotic metabolic process
## 7745 antigen processing and presentation of endogenous antigen
## 7746 antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway, TAP-dependent
## 7747 antigen processing and presentation of exogenous antigen
## 7748 antigen processing and presentation of exogenous protein antigen via MHC class Ib, TAP-dependent
## 7749 antigen processing and presentation of peptide antigen
## 7750 AP-1 adaptor complex binding
## 7751 AP-5 adaptor complex
## 7752 apical constriction
## 7753 apical ectoplasmic specialization
## 7754 apical tubulobulbar complex
## 7755 apolipoprotein A-I receptor activity
## 7756 apolipoprotein A-I receptor binding
## 7757 apolipoprotein receptor activity
## 7758 apoptosome
## 7759 apoptotic process involved in embryonic digit morphogenesis
## 7760 arachidonic acid monooxygenase activity
## 7761 ARC complex
## 7762 arginase activity
## 7763 arginine biosynthetic process via ornithine
## 7764 arginine catabolic process to ornithine
## 7765 arginine metabolic process
## 7766 argininosuccinate lyase activity
## 7767 arginyltransferase activity
## 7768 aromatase activity
## 7769 aromatic amino acid family metabolic process
## 7770 aromatic compound catabolic process
## 7771 arsenite transmembrane transporter activity
## 7772 arsenite transport
## 7773 artery smooth muscle contraction
## 7774 articular cartilage development
## 7775 aryl sulfotransferase activity
## 7776 arylamine N-acetyltransferase activity
## 7777 asparaginyl-tRNA synthase (glutamine-hydrolyzing) activity
## 7778 aspartate-tRNA(Asn) ligase activity
## 7779 aspartic-type peptidase activity
## 7780 aspartyl-tRNA aminoacylation
## 7781 astral microtubule nucleation
## 7782 astrocyte differentiation
## 7783 astrocyte end-foot
## 7784 astrocyte fate commitment
## 7785 astrocyte projection
## 7786 asymmetric Golgi ribbon formation
## 7787 asymmetric, glutamatergic, excitatory synapse
## 7788 ATF1-ATF4 transcription factor complex
## 7789 Atg12 activating enzyme activity
## 7790 Atg12-Atg5-Atg16 complex
## 7791 Atg8 activating enzyme activity
## 7792 ATP citrate synthase activity
## 7793 ATP diphosphatase activity
## 7794 ATP generation from ADP
## 7795 ATP generation from poly-ADP-D-ribose
## 7796 ATP transmembrane transporter activity
## 7797 ATP-dependent microtubule motor activity, minus-end-directed
## 7798 ATP-dependent NAD(P)H-hydrate dehydratase activity
## 7799 ATP-dependent polynucleotide kinase activity
## 7800 ATP:3'-cytidine-cytidine-tRNA adenylyltransferase activity
## 7801 ATP:ADP antiporter activity
## 7802 ATPase regulator activity
## 7803 ATPase-coupled bile acid transmembrane transporter activity
## 7804 ATPase-coupled fatty-acyl-CoA transmembrane transporter activity
## 7805 ATPase-coupled polyamine transmembrane transporter activity
## 7806 ATPase-coupled sterol transmembrane transporter activity
## 7807 atrial cardiac muscle cell development
## 7808 atrial cardiac muscle tissue development
## 7809 atrial cardiac muscle tissue morphogenesis
## 7810 atrial septum secundum morphogenesis
## 7811 atrioventricular canal morphogenesis
## 7812 atrioventricular node cell development
## 7813 atrioventricular valve formation
## 7814 autophagosome organization
## 7815 autophagy of nucleus
## 7816 autosome
## 7817 axial mesoderm morphogenesis
## 7818 axon extension involved in axon guidance
## 7819 axon guidance receptor activity
## 7820 axon midline choice point recognition
## 7821 axonal fasciculation
## 7822 axonemal central apparatus
## 7823 B cell affinity maturation
## 7824 B cell chemotaxis
## 7825 B cell costimulation
## 7826 B cell homeostatic proliferation
## 7827 B cell negative selection
## 7828 B cell proliferation involved in immune response
## 7829 B cell receptor apoptotic signaling pathway
## 7830 B cell receptor transport into membrane raft
## 7831 BAK complex
## 7832 barbed-end actin filament uncapping
## 7833 basal body patch
## 7834 basal protein localization
## 7835 basal tubulobulbar complex
## 7836 base conversion or substitution editing
## 7837 base-excision repair, base-free sugar-phosphate removal
## 7838 basophil chemotaxis
## 7839 BAX complex
## 7840 BCOR complex
## 7841 behavior
## 7842 behavioral defense response
## 7843 behavioral response to nicotine
## 7844 behavioral response to nutrient
## 7845 behavioral response to starvation
## 7846 bent DNA binding
## 7847 benzaldehyde dehydrogenase (NAD+) activity
## 7848 benzaldehyde dehydrogenase (NADP+) activity
## 7849 benzodiazepine receptor activity
## 7850 benzodiazepine receptor binding
## 7851 benzylpenicillin metabolic process
## 7852 beta selection
## 7853 beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,3-N-acetylglucosaminyltransferase activity
## 7854 beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase activity
## 7855 beta-alanine biosynthetic process
## 7856 beta-amyrin synthase activity
## 7857 beta-catenin destruction complex binding
## 7858 beta-catenin-TCF7L2 complex
## 7859 beta-endorphin binding
## 7860 beta-galactoside (CMP) alpha-2,3-sialyltransferase activity
## 7861 beta-galactoside alpha-2,6-sialyltransferase activity
## 7862 beta-galactosyl-N-acetylglucosaminylgalactosylglucosyl-ceramide beta-1,3-acetylglucosaminyltransferase activity
## 7863 beta-glucuronidase activity
## 7864 beta-N-acetylglucosaminidase activity
## 7865 beta-N-acetylhexosaminidase activity
## 7866 beta2-adrenergic receptor activity
## 7867 BH domain binding
## 7868 BH2 domain binding
## 7869 bile acid binding
## 7870 bile acid receptor activity
## 7871 bile acid transmembrane transporter activity
## 7872 bile acid:sodium symporter activity
## 7873 biliberdin reductase NAD+ activity
## 7874 bilirubin transmembrane transporter activity
## 7875 bilirubin transport
## 7876 biliverdin reductase (NAD(P)+) activity
## 7877 biliverdin reductase (NADP+) activity
## 7878 biotin import across plasma membrane
## 7879 biotin metabolic process
## 7880 biotin transmembrane transporter activity
## 7881 biotin transport
## 7882 bis(5'-nucleosyl)-tetraphosphatase (asymmetrical) activity
## 7883 bis(5'-nucleosyl)-tetraphosphatase (symmetrical) activity
## 7884 bis(5'-nucleosyl)-tetraphosphatase activity
## 7885 bisphosphoglycerate 2-phosphatase activity
## 7886 BLOC-3 complex
## 7887 blood coagulation, fibrin clot formation
## 7888 blood vessel endothelial cell differentiation
## 7889 blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## 7890 BMP signaling pathway involved in heart development
## 7891 BMP signaling pathway involved in heart induction
## 7892 body fluid secretion
## 7893 bone maturation
## 7894 bone mineralization involved in bone maturation
## 7895 bone sialoprotein binding
## 7896 box C/D snoRNA binding
## 7897 box H/ACA scaRNP complex
## 7898 box H/ACA snoRNA binding
## 7899 box H/ACA snoRNP complex
## 7900 box H/ACA telomerase RNP complex
## 7901 branch elongation involved in mammary gland duct branching
## 7902 branched-chain amino acid biosynthetic process
## 7903 branched-chain amino acid metabolic process
## 7904 branched-chain-amino-acid transaminase activity
## 7905 branching involved in prostate gland morphogenesis
## 7906 BRCA2-MAGE-D1 complex
## 7907 BRE binding
## 7908 brexanolone metabolic process
## 7909 bronchiole development
## 7910 bronchus cartilage development
## 7911 bud elongation involved in lung branching
## 7912 butyrate catabolic process
## 7913 butyrate-CoA ligase activity
## 7914 butyryl-CoA dehydrogenase activity
## 7915 C-3 sterol dehydrogenase (C-4 sterol decarboxylase) activity
## 7916 C-C motif chemokine 19 receptor activity
## 7917 C-C motif chemokine 21 receptor activity
## 7918 C-terminal protein methylation
## 7919 C21-steroid hormone metabolic process
## 7920 cadmium ion transmembrane transporter activity
## 7921 calcineurin-mediated signaling
## 7922 calcitonin gene-related peptide receptor activity
## 7923 calcium activated galactosylceramide scrambling
## 7924 calcium export from the mitochondrion
## 7925 calcium ion import across plasma membrane
## 7926 calcium ion-regulated exocytosis of neurotransmitter
## 7927 calcium ion-transporting ATPase complex
## 7928 calcium- and calmodulin-dependent protein kinase complex
## 7929 calcium- and calmodulin-regulated 3',5'-cyclic-GMP phosphodiesterase activity
## 7930 calcium-dependent ATPase activity
## 7931 calcium-dependent cell-matrix adhesion
## 7932 calcium-dependent protein kinase inhibitor activity
## 7933 calcium-dependent protein serine/threonine kinase activity
## 7934 calcium-dependent protein serine/threonine phosphatase activity
## 7935 calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules
## 7936 calcium-independent cell-matrix adhesion
## 7937 calcium-independent protein kinase C activity
## 7938 calcium-mediated signaling using extracellular calcium source
## 7939 calcium-transporting ATPase activity involved in regulation of cardiac muscle cell membrane potential
## 7940 calcium, potassium:sodium antiporter activity
## 7941 calcium:sodium antiporter activity
## 7942 calcium:sodium antiporter activity involved in regulation of cardiac muscle cell membrane potential
## 7943 calmodulin-dependent cyclic-nucleotide phosphodiesterase activity
## 7944 camera-type eye photoreceptor cell differentiation
## 7945 cAMP biosynthetic process
## 7946 cAMP catabolic process
## 7947 cAMP transport
## 7948 cAMP-dependent protein kinase complex
## 7949 cAMP-dependent protein kinase regulator activity
## 7950 canalicular bile acid transport
## 7951 canonical Wnt signaling pathway involved in metanephric kidney development
## 7952 canonical Wnt signaling pathway involved in negative regulation of apoptotic process
## 7953 canonical Wnt signaling pathway involved in neural crest cell differentiation
## 7954 canonical Wnt signaling pathway involved in positive regulation of cell-cell adhesion
## 7955 canonical Wnt signaling pathway involved in positive regulation of endothelial cell migration
## 7956 canonical Wnt signaling pathway involved in positive regulation of wound healing
## 7957 cap-dependent translational initiation
## 7958 cap-independent translational initiation
## 7959 carbohydrate derivative biosynthetic process
## 7960 carbohydrate derivative metabolic process
## 7961 carbohydrate derivative transport
## 7962 carbohydrate homeostasis
## 7963 carbohydrate transmembrane transport
## 7964 carbohydrate:proton symporter activity
## 7965 carbon-nitrogen ligase activity, with glutamine as amido-N-donor
## 7966 carboxylic acid transmembrane transporter activity
## 7967 cardiac cell development
## 7968 cardiac cell fate determination
## 7969 cardiac muscle cell apoptotic process
## 7970 cardiac muscle cell contraction
## 7971 cardiac muscle cell fate commitment
## 7972 cardiac muscle cell proliferation
## 7973 cardiac muscle hypertrophy
## 7974 cardiac neural crest cell development involved in heart development
## 7975 cardiac neural crest cell development involved in outflow tract morphogenesis
## 7976 cardiac vascular smooth muscle cell development
## 7977 cardiac vascular smooth muscle cell differentiation
## 7978 cardiolipin hydrolase activity
## 7979 cardiolipin metabolic process
## 7980 carnitine metabolic process, CoA-linked
## 7981 carnitine transmembrane transporter activity
## 7982 carnitine transport
## 7983 carnosine metabolic process
## 7984 carnosine N-methyltransferase activity
## 7985 cartilage condensation
## 7986 cartilage homeostasis
## 7987 catabolism by host of symbiont protein
## 7988 catalase activity
## 7989 catechol O-methyltransferase activity
## 7990 catecholamine catabolic process
## 7991 cation channel complex
## 7992 caveola assembly
## 7993 caveola neck
## 7994 caveolar macromolecular signaling complex
## 7995 caveolin-mediated endocytosis
## 7996 CCAAT-binding factor complex
## 7997 CCR3 chemokine receptor binding
## 7998 CCR4-NOT complex binding
## 7999 CD27 receptor binding
## 8000 CD4-positive or CD8-positive, alpha-beta T cell lineage commitment
## 8001 CD4-positive, alpha-beta T cell costimulation
## 8002 CD4-positive, CD25-positive, alpha-beta regulatory T cell lineage commitment
## 8003 CD40 receptor binding
## 8004 CD8 receptor binding
## 8005 CD8-positive, alpha-beta T cell differentiation
## 8006 CD86 biosynthetic process
## 8007 Cdc42 protein signal transduction
## 8008 CDP phosphorylation
## 8009 CDP-diacylglycerol metabolic process
## 8010 CDP-diacylglycerol-inositol 3-phosphatidyltransferase activity
## 8011 CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## 8012 cell activation involved in immune response
## 8013 cell body fiber
## 8014 cell communication by electrical coupling involved in cardiac conduction
## 8015 cell cycle G2/M phase transition
## 8016 cell differentiation in hindbrain
## 8017 cell fate commitment involved in formation of primary germ layer
## 8018 cell gliding
## 8019 cell migration in hindbrain
## 8020 cell migration involved in endocardial cushion formation
## 8021 cell migration involved in vasculogenesis
## 8022 cell morphogenesis involved in differentiation
## 8023 cell pole
## 8024 cell proliferation in forebrain
## 8025 cell proliferation in midbrain
## 8026 cell surface bile acid receptor signaling pathway
## 8027 cell surface pattern recognition receptor signaling pathway
## 8028 cell wall mannoprotein biosynthetic process
## 8029 cell-cell adhesion involved in gastrulation
## 8030 cell-cell adhesion mediated by cadherin
## 8031 cell-cell recognition
## 8032 cell-cell signaling by wnt
## 8033 cell-cell signaling via exosome
## 8034 cell-substrate junction organization
## 8035 cellular amino acid catabolic process
## 8036 cellular aromatic compound metabolic process
## 8037 cellular biosynthetic process
## 8038 cellular carbohydrate metabolic process
## 8039 cellular cation homeostasis
## 8040 cellular component assembly
## 8041 cellular component disassembly involved in execution phase of apoptosis
## 8042 cellular detoxification of methylglyoxal
## 8043 cellular detoxification of nitrogen compound
## 8044 cellular developmental process
## 8045 cellular glucuronidation
## 8046 cellular hypotonic salinity response
## 8047 cellular ketone body metabolic process
## 8048 cellular ketone metabolic process
## 8049 cellular localization
## 8050 cellular macromolecule biosynthetic process
## 8051 cellular macromolecule catabolic process
## 8052 cellular magnesium ion homeostasis
## 8053 cellular metal ion homeostasis
## 8054 cellular organofluorine metabolic process
## 8055 cellular protein complex disassembly
## 8056 cellular response to 2-O-acetyl-1-O-hexadecyl-sn-glycero-3-phosphocholine
## 8057 cellular response to 2,3,7,8-tetrachlorodibenzodioxine
## 8058 cellular response to acetylcholine
## 8059 cellular response to acidic pH
## 8060 cellular response to amine stimulus
## 8061 cellular response to anisomycin
## 8062 cellular response to arsenite ion
## 8063 cellular response to bleomycin
## 8064 cellular response to caloric restriction
## 8065 cellular response to catecholamine stimulus
## 8066 cellular response to cell-matrix adhesion
## 8067 cellular response to chromate
## 8068 cellular response to corticotropin-releasing hormone stimulus
## 8069 cellular response to cytochalasin B
## 8070 cellular response to diamide
## 8071 cellular response to dimethyl sulfoxide
## 8072 cellular response to dsRNA
## 8073 cellular response to endothelin
## 8074 cellular response to erythropoietin
## 8075 cellular response to flavonoid
## 8076 cellular response to folic acid
## 8077 cellular response to glycine
## 8078 cellular response to glyoxal
## 8079 cellular response to gravity
## 8080 cellular response to growth hormone stimulus
## 8081 cellular response to high light intensity
## 8082 cellular response to hyperoxia
## 8083 cellular response to indole-3-methanol
## 8084 cellular response to L-arginine
## 8085 cellular response to lectin
## 8086 cellular response to leptomycin B
## 8087 cellular response to luteinizing hormone stimulus
## 8088 cellular response to menadione
## 8089 cellular response to metal ion
## 8090 cellular response to methyl methanesulfonate
## 8091 cellular response to methylglyoxal
## 8092 cellular response to mineralocorticoid stimulus
## 8093 cellular response to molecule of fungal origin
## 8094 cellular response to nitroglycerin
## 8095 cellular response to nitrosative stress
## 8096 cellular response to norepinephrine stimulus
## 8097 cellular response to parathyroid hormone stimulus
## 8098 cellular response to peptidoglycan
## 8099 cellular response to potassium ion starvation
## 8100 cellular response to prolactin
## 8101 cellular response to puromycin
## 8102 cellular response to putrescine
## 8103 cellular response to sterol
## 8104 cellular response to superoxide
## 8105 cellular response to tetrahydrofolate
## 8106 cellular response to thyroxine stimulus
## 8107 cellular response to toxic substance
## 8108 cellular response to trichostatin A
## 8109 cellular response to triglyceride
## 8110 cellular response to tumor cell
## 8111 cellular response to type I interferon
## 8112 cellular response to vitamin
## 8113 cellular response to vitamin B1
## 8114 cellular response to water deprivation
## 8115 cellular water homeostasis
## 8116 cementum mineralization
## 8117 central element
## 8118 central nervous system myelination
## 8119 central nervous system neuron axonogenesis
## 8120 central nervous system vasculogenesis
## 8121 central region of growth cone
## 8122 centromere complex assembly
## 8123 centrosomal corona
## 8124 centrosome separation
## 8125 ceramidase activity
## 8126 ceramide glucosyltransferase activity
## 8127 ceramide kinase activity
## 8128 ceramide phosphoethanolamine biosynthetic process
## 8129 ceramide-1-phosphate phosphatase activity
## 8130 cerebellar cortex morphogenesis
## 8131 cerebellar granular layer development
## 8132 cerebellar granule cell differentiation
## 8133 cerebellar granule cell precursor proliferation
## 8134 cerebellar granule cell precursor tangential migration
## 8135 cerebellar neuron development
## 8136 cerebellar Purkinje cell layer development
## 8137 cerebellar Purkinje cell layer maturation
## 8138 cerebellar Purkinje cell layer morphogenesis
## 8139 cerebral cortex radially oriented cell migration
## 8140 cerebral cortex tangential migration
## 8141 cerebroside-sulfatase activity
## 8142 cerebrospinal fluid secretion
## 8143 cGMP-inhibited cyclic-nucleotide phosphodiesterase activity
## 8144 cGMP-stimulated cyclic-nucleotide phosphodiesterase activity
## 8145 channel regulator activity
## 8146 chaperone-mediated autophagy translocation complex
## 8147 chemoattraction of axon
## 8148 chemokine (C-C motif) ligand 19 binding
## 8149 chemokine (C-C motif) ligand 19 signaling pathway
## 8150 chemokine (C-C motif) ligand 21 binding
## 8151 chemokine (C-X-C motif) ligand 12 signaling pathway
## 8152 chemokine receptor activity
## 8153 chemokine receptor transport out of membrane raft
## 8154 chemorepulsion involved in interneuron migration from the subpallium to the cortex
## 8155 chemosensory behavior
## 8156 chemotaxis to arachidonic acid
## 8157 chenodeoxycholate 7-alpha-dehydrogenase (NAD+) activity
## 8158 chiasma
## 8159 chitin catabolic process
## 8160 chitinase activity
## 8161 chloride channel regulator activity
## 8162 cholangiocyte apoptotic process
## 8163 cholangiocyte proliferation
## 8164 cholate 7-alpha-dehydrogenase activity
## 8165 cholest-5-ene-3-beta,7-alpha-diol 3-beta-dehydrogenase activity
## 8166 cholestenol delta-isomerase activity
## 8167 cholestenone 5-alpha-reductase activity
## 8168 cholesterol biosynthetic process via 24,25-dihydrolanosterol
## 8169 cholesterol ester hydrolysis involved in cholesterol transport
## 8170 cholesterol transport involved in cholesterol storage
## 8171 choline catabolic process
## 8172 choline kinase activity
## 8173 choline transmembrane transporter activity
## 8174 choline transport
## 8175 choline-phosphate cytidylyltransferase activity
## 8176 choloyl-CoA hydrolase activity
## 8177 chondroblast differentiation
## 8178 chondrocyte differentiation involved in endochondral bone morphogenesis
## 8179 chondrocyte hypertrophy
## 8180 chondroitin 6-sulfotransferase activity
## 8181 chondroitin sulfate metabolic process
## 8182 CHOP-C/EBP complex
## 8183 chorion development
## 8184 chorionic trophoblast cell differentiation
## 8185 chromatin organization involved in regulation of transcription
## 8186 chromosome breakage
## 8187 chronic inflammatory response to antigenic stimulus
## 8188 chylomicron remnant clearance
## 8189 ciliary neurotrophic factor receptor activity
## 8190 ciliary neurotrophic factor receptor complex
## 8191 ciliary neurotrophic factor-mediated signaling pathway
## 8192 ciliary plasm
## 8193 ciliary receptor clustering involved in smoothened signaling pathway
## 8194 circadian temperature homeostasis
## 8195 cis assembly of pre-catalytic spliceosome
## 8196 cis-trans isomerase activity
## 8197 citrate (Si)-synthase activity
## 8198 citrate dehydratase activity
## 8199 citrate secondary active transmembrane transporter activity
## 8200 citrate synthase activity
## 8201 citrate transport
## 8202 citrate-L-glutamate ligase activity
## 8203 citrulline biosynthetic process
## 8204 clathrin coat disassembly
## 8205 clathrin-dependent synaptic vesicle endocytosis
## 8206 clathrin-sculpted acetylcholine transport vesicle membrane
## 8207 cleavage furrow ingression
## 8208 cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 8209 CLOCK-BMAL transcription complex
## 8210 closure of optic fissure
## 8211 clustering of voltage-gated potassium channels
## 8212 CMP catabolic process
## 8213 CMP kinase activity
## 8214 CMP phosphorylation
## 8215 CMP-N-acetylneuraminate biosynthetic process
## 8216 CMP-N-acetylneuraminate transmembrane transport
## 8217 CMP-N-acetylneuraminate transmembrane transporter activity
## 8218 CNTFR-CLCF1 complex
## 8219 CoA-ligase activity
## 8220 CoA-transferase activity
## 8221 coated vesicle membrane
## 8222 cob(I)yrinic acid a,c-diamide adenosyltransferase activity
## 8223 cobalamin biosynthetic process
## 8224 cobalamin transport
## 8225 cobalt ion binding
## 8226 cocaine binding
## 8227 coenzyme A binding
## 8228 cohesin loading
## 8229 collagen receptor activity
## 8230 collagen-activated signaling pathway
## 8231 collateral sprouting in absence of injury
## 8232 colon epithelial cell migration
## 8233 commitment of neuronal cell to specific neuron type in forebrain
## 8234 common bile duct development
## 8235 complement activation, lectin pathway
## 8236 complement component C1 complex
## 8237 complement component C1q complex binding
## 8238 complement component C3a binding
## 8239 complement component C5a receptor activity
## 8240 complement component C5a signaling pathway
## 8241 complement receptor activity
## 8242 complement-mediated synapse pruning
## 8243 concave side of sperm head
## 8244 connexin binding
## 8245 contact inhibition
## 8246 contractile actin filament bundle assembly
## 8247 convergent extension
## 8248 convergent extension involved in axis elongation
## 8249 convergent extension involved in gastrulation
## 8250 conversion of ds siRNA to ss siRNA
## 8251 conversion of ds siRNA to ss siRNA involved in RNA interference
## 8252 copper ion export
## 8253 copper ion import
## 8254 coproporphyrinogen oxidase activity
## 8255 core-binding factor complex
## 8256 coreceptor activity involved in canonical Wnt signaling pathway
## 8257 coreceptor activity involved in Wnt signaling pathway
## 8258 coronary vasculature morphogenesis
## 8259 coronary vein morphogenesis
## 8260 cortical microtubule
## 8261 cortical microtubule cytoskeleton
## 8262 cortical microtubule plus-end
## 8263 corticotropin-releasing hormone receptor 1 binding
## 8264 creatine biosynthetic process
## 8265 creatinine metabolic process
## 8266 CRLF-CLCF1 complex
## 8267 CST complex
## 8268 CTP metabolic process
## 8269 CTP synthase activity
## 8270 CTP:3'-cytidine-tRNA cytidylyltransferase activity
## 8271 CTP:tRNA cytidylyltransferase activity
## 8272 cupric reductase activity
## 8273 CURI complex
## 8274 CUT catabolic process
## 8275 cuticular plate
## 8276 CXCR chemokine receptor binding
## 8277 cyclic purine nucleotide metabolic process
## 8278 cyclic-di-GMP binding
## 8279 cyclic-GMP-AMP transmembrane import across plasma membrane
## 8280 cyclic-GMP-AMP transmembrane transporter activity
## 8281 cyclic-nucleotide-mediated signaling
## 8282 cyclin A1-CDK2 complex
## 8283 cyclin E2-CDK2 complex
## 8284 cyclin-dependent protein kinase activating kinase holoenzyme complex
## 8285 cysteine biosynthetic process
## 8286 cysteine desulfurase activity
## 8287 cysteine metabolic process
## 8288 cysteine transmembrane transport
## 8289 cysteine transmembrane transporter activity
## 8290 cysteine-tRNA ligase activity
## 8291 cysteine-type carboxypeptidase activity
## 8292 cysteinyl-tRNA aminoacylation
## 8293 cytidylate cyclase activity
## 8294 cytidylate kinase activity
## 8295 cytochrome complex assembly
## 8296 cytokinetic process
## 8297 cytolysis by host of symbiont cells
## 8298 cytolytic granule membrane
## 8299 cytoplasm organization
## 8300 cytoplasm protein quality control by the ubiquitin-proteasome system
## 8301 cytoplasmic cyclin-dependent protein kinase holoenzyme complex
## 8302 cytoplasmic microtubule bundle
## 8303 cytoplasmic region
## 8304 cytoplasmic sequestering of CFTR protein
## 8305 cytoplasmic side of dendritic spine plasma membrane
## 8306 cytoplasmic side of early endosome membrane
## 8307 cytoplasmic side of late endosome membrane
## 8308 cytoplasmic side of membrane
## 8309 cytoplasmic translational elongation
## 8310 cytosine C-5 DNA demethylase activity
## 8311 cytosolic calcium signaling involved in initiation of cell movement in glial-mediated radial cell migration
## 8312 cytosolic tRNA wobble base thiouridylase complex
## 8313 D-dopachrome decarboxylase activity
## 8314 D-erythro-sphingosine kinase activity
## 8315 D-glucuronate catabolic process
## 8316 D-glutamate cyclase activity
## 8317 D-loop DNA binding
## 8318 D-phosphoserine phosphatase activity
## 8319 D-serine transport
## 8320 D-xylose metabolic process
## 8321 D-xylulose reductase activity
## 8322 D2 dopamine receptor binding
## 8323 D5 dopamine receptor binding
## 8324 dADP biosynthetic process
## 8325 dADP catabolic process
## 8326 dADP phosphorylation
## 8327 dAMP phosphorylation
## 8328 dATP binding
## 8329 dATP metabolic process
## 8330 dATP pyrophosphohydrolase activity
## 8331 Dbf4-dependent protein kinase complex
## 8332 DBIRD complex
## 8333 dCDP phosphorylation
## 8334 dCMP kinase activity
## 8335 dCMP phosphorylation
## 8336 deaminase activity
## 8337 death domain binding
## 8338 death effector domain binding
## 8339 death receptor activity
## 8340 defense response to nematode
## 8341 dehydrodolichyl diphosphate synthase activity
## 8342 dehydrodolichyl diphosphate synthase complex
## 8343 delta14-sterol reductase activity
## 8344 delta24-sterol reductase activity
## 8345 delta24(24-1) sterol reductase activity
## 8346 delta3,5-delta2,4-dienoyl-CoA isomerase activity
## 8347 demethylase activity
## 8348 denatured protein binding
## 8349 dendritic filopodium
## 8350 dendritic growth cone
## 8351 dendritic spine cytoplasm
## 8352 dendritic spine organization
## 8353 dense core granule cytoskeletal transport
## 8354 dense core granule maturation
## 8355 dense core granule priming
## 8356 dentate gyrus development
## 8357 dentin mineralization
## 8358 deoxycytidine kinase activity
## 8359 deoxycytidyl transferase activity
## 8360 deoxyhypusine synthase activity
## 8361 deoxynucleotide transmembrane transporter activity
## 8362 deoxynucleotide transport
## 8363 deoxyribonuclease activity
## 8364 deoxyribonuclease I activity
## 8365 deoxyribonucleoside 5'-monophosphate N-glycosidase activity
## 8366 deoxyribonucleoside catabolic process
## 8367 deoxyribonucleoside monophosphate catabolic process
## 8368 deoxyribonucleoside triphosphate catabolic process
## 8369 deoxyribonucleotide metabolic process
## 8370 deoxyribose phosphate catabolic process
## 8371 deoxyribose-phosphate aldolase activity
## 8372 dephospho-CoA kinase activity
## 8373 dermatan sulfate biosynthetic process
## 8374 dermatan sulfate catabolic process
## 8375 dermatan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## 8376 dermatan sulfate proteoglycan metabolic process
## 8377 desensitization of G protein-coupled receptor signaling pathway
## 8378 desmosome organization
## 8379 detection of abiotic stimulus
## 8380 detection of biotic stimulus
## 8381 detection of chemical stimulus involved in sensory perception
## 8382 detection of chemical stimulus involved in sensory perception of pain
## 8383 detection of chemical stimulus involved in sensory perception of smell
## 8384 detection of diacyl bacterial lipopeptide
## 8385 detection of DNA damage stimulus involved in DNA damage checkpoint
## 8386 detection of fungus
## 8387 detection of hypoxia
## 8388 detection of light stimulus
## 8389 detection of light stimulus involved in visual perception
## 8390 detection of lipopolysaccharide
## 8391 detection of mechanical stimulus involved in sensory perception
## 8392 detection of mechanical stimulus involved in sensory perception of sound
## 8393 detection of molecule of fungal origin
## 8394 detection of muramyl dipeptide
## 8395 detection of oxidative stress
## 8396 detection of stimulus involved in cell cycle checkpoint
## 8397 detection of stimulus involved in sensory perception
## 8398 detection of temperature stimulus involved in sensory perception
## 8399 detection of triacyl bacterial lipopeptide
## 8400 determination of digestive tract left/right asymmetry
## 8401 determination of heart left/right asymmetry
## 8402 determination of intestine left/right asymmetry
## 8403 determination of pancreatic left/right asymmetry
## 8404 determination of stomach left/right asymmetry
## 8405 detoxification of cadmium ion
## 8406 detoxification of copper ion
## 8407 detoxification of nitrogen compound
## 8408 detoxification of zinc ion
## 8409 deubiquitinase activator activity
## 8410 development of primary female sexual characteristics
## 8411 development of primary male sexual characteristics
## 8412 developmental cell growth
## 8413 dGDP biosynthetic process
## 8414 dGDP catabolic process
## 8415 dGDP phosphorylation
## 8416 dGMP catabolic process
## 8417 dGMP metabolic process
## 8418 dGTP metabolic process
## 8419 diacylglycerol catabolic process
## 8420 diacylglycerol cholinephosphotransferase activity
## 8421 diacylglycerol O-acyltransferase activity
## 8422 diadenosine triphosphate catabolic process
## 8423 diaphragm contraction
## 8424 diaphragm development
## 8425 dicarboxylic acid catabolic process
## 8426 dicarboxylic acid metabolic process
## 8427 dichotomous subdivision of terminal units involved in lung branching
## 8428 digestive system development
## 8429 dihydroceramide glucosyltransferase activity
## 8430 dihydroceramide kinase activity
## 8431 dihydrolipoamide S-acyltransferase activity
## 8432 dihydrolipoyllysine-residue (2-methylpropanoyl)transferase activity
## 8433 dihydrolipoyllysine-residue acetyltransferase activity
## 8434 dihydrolipoyllysine-residue succinyltransferase activity
## 8435 dihydroorotate dehydrogenase activity
## 8436 dihydropyrimidinase activity
## 8437 dihydropyrimidine dehydrogenase (NADP+) activity
## 8438 dihydrotestosterone 17-beta-dehydrogenase activity
## 8439 dimeric IgA immunoglobulin complex
## 8440 dinitrosyl-iron complex binding
## 8441 dinucleotide repeat insertion binding
## 8442 dipeptide transport
## 8443 diphosphate metabolic process
## 8444 diphosphomevalonate decarboxylase activity
## 8445 diphthine methylesterase activity
## 8446 diphthine synthase activity
## 8447 disaccharide binding
## 8448 disaccharide metabolic process
## 8449 distal tubule development
## 8450 dITP diphosphatase activity
## 8451 divalent inorganic cation homeostasis
## 8452 division septum assembly
## 8453 DNA binding domain binding
## 8454 DNA catabolic process
## 8455 DNA damage response, signal transduction resulting in transcription
## 8456 DNA demethylation of male pronucleus
## 8457 DNA end binding
## 8458 DNA endoreduplication
## 8459 DNA ligase III-XRCC1 complex
## 8460 DNA ligase IV complex
## 8461 DNA ligation involved in DNA recombination
## 8462 DNA methylation on adenine
## 8463 DNA methylation on cytosine within a CG sequence
## 8464 DNA modification
## 8465 DNA polymerase complex
## 8466 DNA polymerase III complex
## 8467 DNA primase activity
## 8468 DNA protection
## 8469 DNA recombinase assembly
## 8470 DNA replication proofreading
## 8471 DNA replication-independent nucleosome organization
## 8472 DNA replication, Okazaki fragment processing
## 8473 DNA rewinding
## 8474 DNA strand elongation involved in mitotic DNA replication
## 8475 DNA strand resection involved in replication fork processing
## 8476 DNA synthesis involved in UV-damage excision repair
## 8477 DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activator activity
## 8478 DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activity
## 8479 DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex
## 8480 DNA-3-methyladenine glycosylase activity
## 8481 DNA-3-methylguanine glycosylase activity
## 8482 DNA-7-methyladenine glycosylase activity
## 8483 DNA-7-methylguanine glycosylase activity
## 8484 DNA-dependent protein kinase activity
## 8485 DNA-dependent protein kinase-DNA ligase 4 complex
## 8486 DNA-methyltransferase activity
## 8487 DNA-templated transcription open complex formation
## 8488 DNA-templated transcription, elongation
## 8489 DNA-templated viral transcription
## 8490 docosanoate omega-hydroxylase activity
## 8491 dol-P-Man:Man(5)GlcNAc(2)-PP-Dol alpha-1,3-mannosyltransferase activity
## 8492 dol-P-Man:Man(7)GlcNAc(2)-PP-Dol alpha-1,6-mannosyltransferase activity
## 8493 dolichol kinase activity
## 8494 dolichyl monophosphate biosynthetic process
## 8495 dolichyl pyrophosphate Glc2Man9GlcNAc2 alpha-1,2-glucosyltransferase activity
## 8496 dolichyl-phosphate-mannose-protein mannosyltransferase activity
## 8497 dolichyl-pyrophosphate Man7GlcNAc2 alpha-1,6-mannosyltransferase activity
## 8498 dopamine metabolic process
## 8499 dopamine receptor binding
## 8500 dopamine transport
## 8501 dopamine uptake
## 8502 dopamine uptake involved in synaptic transmission
## 8503 dopamine:sodium symporter activity
## 8504 dopaminergic neuron axon guidance
## 8505 dorsal spinal cord development
## 8506 dorsal/ventral axon guidance
## 8507 dosage compensation
## 8508 double-strand break repair via alternative nonhomologous end joining
## 8509 double-strand break repair via synthesis-dependent strand annealing
## 8510 double-stranded RNA adenosine deaminase activity
## 8511 DRM complex
## 8512 drug export
## 8513 DSIF complex
## 8514 Dsl1/NZR complex
## 8515 dsRNA transport
## 8516 dTDP biosynthetic process
## 8517 dTMP biosynthetic process
## 8518 dUDP biosynthetic process
## 8519 dynein light chain binding
## 8520 early viral transcription
## 8521 ectodermal cell differentiation
## 8522 ectopic germ cell programmed cell death
## 8523 Edg-2 lysophosphatidic acid receptor binding
## 8524 egg coat
## 8525 egg coat formation
## 8526 EH domain binding
## 8527 elastin metabolic process
## 8528 electron transport coupled proton transport
## 8529 embryonic digestive tract development
## 8530 embryonic digestive tract morphogenesis
## 8531 embryonic ectodermal digestive tract development
## 8532 embryonic heart tube left/right pattern formation
## 8533 endocardial cushion cell development
## 8534 endocardial cushion cell fate commitment
## 8535 endocardial cushion fusion
## 8536 endocardium development
## 8537 endochitinase activity
## 8538 endochondral bone morphogenesis
## 8539 endocrine pancreas development
## 8540 endocrine signaling
## 8541 endoderm formation
## 8542 endodermal cell fate specification
## 8543 endomitotic cell cycle
## 8544 endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 8545 endonucleolytic cleavage to generate mature 3'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 8546 endoplasmic reticulum membrane fusion
## 8547 endoplasmic reticulum signal peptide binding
## 8548 endoplasmic reticulum stress-induced pre-emptive quality control
## 8549 endoplasmic reticulum tubular network formation
## 8550 endoplasmic reticulum tubular network membrane
## 8551 endoplasmic reticulum-endosome membrane contact site
## 8552 endoribonuclease activity, cleaving siRNA-paired mRNA
## 8553 endoribonuclease inhibitor activity
## 8554 endosome membrane tubulation
## 8555 endothelial microparticle
## 8556 endothelin receptor signaling pathway
## 8557 energy derivation by oxidation of organic compounds
## 8558 engulfment of target by autophagosome
## 8559 enteric nervous system development
## 8560 enterobactin transmembrane transporter activity
## 8561 enterobactin transport
## 8562 entry into host
## 8563 entry into host cell by a symbiont-containing vacuole
## 8564 entry of bacterium into host cell
## 8565 enucleate erythrocyte development
## 8566 eosinophil fate commitment
## 8567 EP4 subtype prostaglandin E2 receptor binding
## 8568 epiboly involved in gastrulation with mouth forming second
## 8569 epidermal cell differentiation
## 8570 epidermal growth factor receptor signaling pathway via I-kappaB kinase/NF-kappaB cascade
## 8571 epidermal growth factor receptor signaling pathway via MAPK cascade
## 8572 epidermis morphogenesis
## 8573 epididymis development
## 8574 epinephrine transport
## 8575 epithelial cell apoptotic process
## 8576 epithelial cell differentiation involved in mammary gland alveolus development
## 8577 epithelial cell differentiation involved in prostate gland development
## 8578 epithelial cell maturation involved in prostate gland development
## 8579 epithelial cell morphogenesis
## 8580 epithelial cell proliferation involved in lung morphogenesis
## 8581 epithelial cell proliferation involved in mammary gland duct elongation
## 8582 epithelial cell proliferation involved in salivary gland morphogenesis
## 8583 epithelial cilium movement involved in determination of left/right asymmetry
## 8584 epoxide hydrolase activity
## 8585 epoxide metabolic process
## 8586 epoxygenase P450 pathway
## 8587 ER to Golgi ceramide transport
## 8588 ER-dependent peroxisome localization
## 8589 ER-dependent peroxisome organization
## 8590 ER-nucleus signaling pathway
## 8591 ERBB3 signaling pathway
## 8592 ERBB4 signaling pathway
## 8593 ERK5 cascade
## 8594 ESCRT complex disassembly
## 8595 ESCRT III complex assembly
## 8596 establishment of blood-brain barrier
## 8597 establishment of body hair planar orientation
## 8598 establishment of chromosome localization
## 8599 establishment of endothelial blood-brain barrier
## 8600 establishment of localization in cell
## 8601 establishment of mitochondrion localization by microtubule attachment
## 8602 establishment of monopolar cell polarity
## 8603 establishment of natural killer cell polarity
## 8604 establishment of neuroblast polarity
## 8605 establishment of planar polarity of embryonic epithelium
## 8606 establishment of protein localization to endoplasmic reticulum membrane
## 8607 establishment of protein localization to mitochondrial membrane
## 8608 establishment of protein localization to mitochondrial membrane involved in mitochondrial fission
## 8609 establishment of protein localization to peroxisome
## 8610 establishment of spindle localization
## 8611 establishment of synaptic specificity at neuromuscular junction
## 8612 establishment of viral latency
## 8613 establishment or maintenance of apical/basal cell polarity
## 8614 establishment or maintenance of monopolar cell polarity
## 8615 estradiol binding
## 8616 estrogen receptor activity
## 8617 estrogen response element binding
## 8618 ethanol binding
## 8619 ethanol oxidation
## 8620 ethanolamine-phosphate cytidylyltransferase activity
## 8621 ether lipid metabolic process
## 8622 eukaryotic 80S initiation complex
## 8623 eukaryotic initiation factor 4G binding
## 8624 eukaryotic translation initiation factor 2B complex
## 8625 eukaryotic translation initiation factor 3 complex, eIF3e
## 8626 evoked neurotransmitter secretion
## 8627 excitatory chemical synaptic transmission
## 8628 execution phase of necroptosis
## 8629 exocyst localization
## 8630 exodeoxyribonuclease III activity
## 8631 exon-exon junction complex disassembly
## 8632 exosomal secretion
## 8633 extracellular exosome biogenesis
## 8634 extracellular matrix protein binding
## 8635 extracellular matrix-cell signaling
## 8636 extracellular membrane-bounded organelle
## 8637 extracellular transport
## 8638 extracellular vesicle biogenesis
## 8639 extracellularly ATP-gated cation channel activity
## 8640 extrinsic component of autophagosome membrane
## 8641 extrinsic component of endoplasmic reticulum membrane
## 8642 extrinsic component of Golgi membrane
## 8643 extrinsic component of neuronal dense core vesicle membrane
## 8644 extrinsic component of organelle membrane
## 8645 extrinsic component of postsynaptic specialization membrane
## 8646 extrinsic component of presynaptic endocytic zone membrane
## 8647 extrinsic component of presynaptic membrane
## 8648 extrinsic component of synaptic vesicle membrane
## 8649 extrinsic component of vacuolar membrane
## 8650 eye morphogenesis
## 8651 F-box domain binding
## 8652 facial nerve structural organization
## 8653 Factor XII activation
## 8654 FAD biosynthetic process
## 8655 FAD transmembrane transporter activity
## 8656 FAD-AMP lyase (cyclizing) activity
## 8657 farnesyl diphosphate biosynthetic process, mevalonate pathway
## 8658 Fas-activated serine/threonine kinase activity
## 8659 fascia adherens
## 8660 fasciculation of sensory neuron axon
## 8661 fatty acid primary amide biosynthetic process
## 8662 fatty acid synthase activity
## 8663 fatty-acyl-CoA reductase (alcohol-forming) activity
## 8664 fatty-acyl-CoA transport
## 8665 Fc-gamma receptor I complex binding
## 8666 Fc-gamma receptor signaling pathway
## 8667 female genitalia development
## 8668 female germ-line stem cell asymmetric division
## 8669 female gonad morphogenesis
## 8670 female meiosis I
## 8671 ferredoxin-NADP+ reductase activity
## 8672 ferric-chelate reductase (NADPH) activity
## 8673 ferrous iron transmembrane transporter activity
## 8674 ferroxidase activity
## 8675 fibrinogen complex
## 8676 fibroblast activation
## 8677 fibroblast apoptotic process
## 8678 flap endonuclease activity
## 8679 flap-structured DNA binding
## 8680 flavonoid binding
## 8681 flippase activity
## 8682 FMN adenylyltransferase activity
## 8683 folate import into mitochondrion
## 8684 folate transmembrane transport
## 8685 folate:anion antiporter activity
## 8686 folic acid receptor activity
## 8687 folic acid-containing compound biosynthetic process
## 8688 forebrain dorsal/ventral pattern formation
## 8689 forebrain neuroblast division
## 8690 forebrain neuron development
## 8691 forebrain neuron differentiation
## 8692 forebrain regionalization
## 8693 formaldehyde catabolic process
## 8694 formate metabolic process
## 8695 formation of anatomical boundary
## 8696 Formylglycine-generating oxidase activity
## 8697 frontal suture morphogenesis
## 8698 fructokinase activity
## 8699 fructosamine-3-kinase activity
## 8700 fructose 1,6-bisphosphate 1-phosphatase activity
## 8701 fructose 2,6-bisphosphate metabolic process
## 8702 fructose 6-phosphate aldolase activity
## 8703 fructose import across plasma membrane
## 8704 fructose-1-phosphatase activity
## 8705 fructose-2,6-bisphosphate 2-phosphatase activity
## 8706 fructoselysine metabolic process
## 8707 fucokinase activity
## 8708 fucose binding
## 8709 fucose transmembrane transport
## 8710 fucose transmembrane transporter activity
## 8711 fumarylpyruvate hydrolase activity
## 8712 fungal-type cell wall polysaccharide metabolic process
## 8713 fungiform papilla development
## 8714 fusion of sperm to egg plasma membrane involved in single fertilization
## 8715 G protein-coupled ADP receptor activity
## 8716 G protein-coupled bile acid receptor activity
## 8717 G protein-coupled GABA receptor activity
## 8718 G protein-coupled glutamate receptor binding
## 8719 G protein-coupled neurotransmitter receptor activity involved in regulation of postsynaptic membrane potential
## 8720 G protein-coupled receptor dimeric complex
## 8721 G protein-coupled receptor heterodimeric complex
## 8722 G-protein gamma-subunit binding
## 8723 G/U mismatch-specific uracil-DNA glycosylase activity
## 8724 G1 DNA damage checkpoint
## 8725 G2/MI transition of meiotic cell cycle
## 8726 GABA-A receptor activity
## 8727 GABA-A receptor complex
## 8728 GABAergic neuron differentiation
## 8729 GAF domain binding
## 8730 galactitol metabolic process
## 8731 galactoside binding
## 8732 galactosylceramide biosynthetic process
## 8733 galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase activity
## 8734 galactosylxylosylprotein 3-beta-galactosyltransferase activity
## 8735 gall bladder development
## 8736 gamma-catenin binding
## 8737 gamma-delta T cell differentiation
## 8738 gamma-glutamyl carboxylase activity
## 8739 gamma-glutamyl-peptidase activity
## 8740 gamma-glutamylcyclotransferase activity
## 8741 gamma-secretase complex
## 8742 ganglioside galactosyltransferase activity
## 8743 ganglioside GM1 transport to membrane
## 8744 ganglioside GM2 binding
## 8745 ganglioside GM3 binding
## 8746 ganglioside GP1c binding
## 8747 ganglioside GT1b binding
## 8748 ganglioside metabolic process
## 8749 gap junction channel activity
## 8750 GARP complex binding
## 8751 GCN2-mediated signaling
## 8752 GDP biosynthetic process
## 8753 GDP phosphorylation
## 8754 GDP-4-dehydro-D-rhamnose reductase activity
## 8755 GDP-D-glucose phosphorylase activity
## 8756 GDP-dissociation inhibitor binding
## 8757 GDP-fucose import into Golgi lumen
## 8758 GDP-fucose transmembrane transporter activity
## 8759 GDP-L-fucose metabolic process
## 8760 GDP-L-fucose salvage
## 8761 GDP-L-fucose synthase activity
## 8762 GDP-Man:Man3GlcNAc2-PP-Dol alpha-1,2-mannosyltransferase activity
## 8763 GDP-mannose 3,5-epimerase activity
## 8764 GDP-mannose hydrolase activity
## 8765 general transcription initiation factor binding
## 8766 generation of catalytic spliceosome for second transesterification step
## 8767 genetic imprinting
## 8768 gephyrin clustering involved in postsynaptic density assembly
## 8769 germinal vesicle
## 8770 gland development
## 8771 glial cell development
## 8772 glial cell fate commitment
## 8773 glial cell-neuron signaling
## 8774 globoside alpha-N-acetylgalactosaminyltransferase activity
## 8775 glomerular capillary formation
## 8776 glomerular endothelium development
## 8777 glomerular parietal epithelial cell differentiation
## 8778 glomerular visceral epithelial cell differentiation
## 8779 glomerulus development
## 8780 glucocorticoid catabolic process
## 8781 glucokinase activity
## 8782 glucosamine metabolic process
## 8783 glucose 1-phosphate metabolic process
## 8784 glucose catabolic process
## 8785 glucose-6-phosphatase activity
## 8786 glucose-6-phosphate dehydrogenase activity
## 8787 glucose:sodium symporter activity
## 8788 glucosidase activity
## 8789 glucosidase II complex
## 8790 glucosylceramide biosynthetic process
## 8791 glucosyltransferase activity
## 8792 glucuronolactone reductase activity
## 8793 glucuronoside catabolic process
## 8794 glucuronyl-galactosyl-proteoglycan 4-alpha-N-acetylglucosaminyltransferase activity
## 8795 glutamate 5-kinase activity
## 8796 glutamate biosynthetic process
## 8797 glutamate homeostasis
## 8798 glutamate receptor signaling pathway
## 8799 glutamate secretion
## 8800 glutamate-5-semialdehyde dehydrogenase activity
## 8801 glutamate-cysteine ligase activity
## 8802 glutamate-cysteine ligase complex
## 8803 glutamate-tRNA ligase activity
## 8804 glutamine-fructose-6-phosphate transaminase (isomerizing) activity
## 8805 glutamine-tRNA ligase activity
## 8806 glutaminyl-tRNA aminoacylation
## 8807 glutaminyl-tRNA synthase (glutamine-hydrolyzing) activity
## 8808 glutaminyl-tRNAGln biosynthesis via transamidation
## 8809 glutamyl-tRNA aminoacylation
## 8810 glutamyl-tRNA(Gln) amidotransferase complex
## 8811 glutaryl-CoA dehydrogenase activity
## 8812 glutaryl-CoA hydrolase activity
## 8813 glutathione deglycation
## 8814 glutathione dehydrogenase (ascorbate) activity
## 8815 glutathione specific gamma-glutamylcyclotransferase activity
## 8816 glutathione synthase activity
## 8817 glutathione transmembrane transport
## 8818 glutathione transmembrane transporter activity
## 8819 glutathione transport
## 8820 glyceraldehyde oxidoreductase activity
## 8821 glyceraldehyde-3-phosphate dehydrogenase (NAD+) (phosphorylating) activity
## 8822 glycerate dehydrogenase activity
## 8823 glycerate kinase activity
## 8824 glycerol biosynthetic process
## 8825 glycerol biosynthetic process from pyruvate
## 8826 glycerol ether metabolic process
## 8827 glycerol-1-phosphatase activity
## 8828 glycerol-3-phosphatase activity
## 8829 glycerol-3-phosphate catabolic process
## 8830 glycerol-3-phosphate dehydrogenase (quinone) activity
## 8831 glycerol-3-phosphate dehydrogenase [NAD+] activity
## 8832 glycerol-3-phosphate O-acyltransferase activity
## 8833 glycerone kinase activity
## 8834 glycerone-phosphate O-acyltransferase activity
## 8835 glycerophosphate shuttle
## 8836 glycerophosphocholine phosphodiesterase activity
## 8837 glycine betaine transport
## 8838 glycine biosynthetic process from serine
## 8839 glycine catabolic process
## 8840 glycine cleavage complex
## 8841 glycine decarboxylation via glycine cleavage system
## 8842 glycine hydroxymethyltransferase activity
## 8843 glycine import into mitochondrion
## 8844 glycine transmembrane transporter activity
## 8845 glycogen cell differentiation involved in embryonic placenta development
## 8846 glycogen granule
## 8847 glycogen phosphorylase activity
## 8848 glycolate biosynthetic process
## 8849 glycolipid mannosyltransferase activity
## 8850 glycolipid transfer activity
## 8851 glycolysis from storage polysaccharide through glucose-1-phosphate
## 8852 glycolytic process from galactose
## 8853 glycolytic process through glucose-6-phosphate
## 8854 glycoprotein 6-alpha-L-fucosyltransferase activity
## 8855 glycoprotein endo-alpha-1,2-mannosidase activity
## 8856 glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase activity
## 8857 glycosphingolipid binding
## 8858 glycosylceramide catabolic process
## 8859 glycosylceramide flippase activity
## 8860 glycosylceramide metabolic process
## 8861 glycosylphosphatidylinositol phospholipase D activity
## 8862 glycylpeptide N-tetradecanoyltransferase activity
## 8863 glyoxal catabolic process
## 8864 glyoxal metabolic process
## 8865 glyoxalase (glycolic acid-forming) activity
## 8866 glyoxylate cycle
## 8867 glyoxylate metabolic process
## 8868 glyoxylate reductase (NADP) activity
## 8869 GMP 5'-nucleotidase activity
## 8870 GMP binding
## 8871 Golgi calcium ion homeostasis
## 8872 Golgi calcium ion transport
## 8873 Golgi medial cisterna membrane
## 8874 Golgi to plasma membrane CFTR protein transport
## 8875 Golgi to plasma membrane transport vesicle
## 8876 Golgi to secretory granule transport
## 8877 Golgi trans cisterna membrane
## 8878 Golgi vesicle fusion to target membrane
## 8879 gonad development
## 8880 gonadotropin secretion
## 8881 GPI anchor binding
## 8882 GPI anchor release
## 8883 GPI-anchor transamidase activity
## 8884 granular vesicle
## 8885 granulocyte chemotaxis
## 8886 granuloma formation
## 8887 granzyme-mediated apoptotic signaling pathway
## 8888 granzyme-mediated programmed cell death signaling pathway
## 8889 Grb2-EGFR complex
## 8890 Grb2-Sos complex
## 8891 grooming behavior
## 8892 growth hormone-releasing hormone receptor activity
## 8893 growth plate cartilage chondrocyte growth
## 8894 GTP cyclohydrolase binding
## 8895 GTP-dependent protein kinase activity
## 8896 Gtr1-Gtr2 GTPase complex
## 8897 guanidinoacetate N-methyltransferase activity
## 8898 guanine deglycation
## 8899 guanine deglycation, glyoxal removal
## 8900 guanine deglycation, methylglyoxal removal
## 8901 guanine nucleotide transmembrane transport
## 8902 guanine nucleotide transmembrane transporter activity
## 8903 guanosine metabolic process
## 8904 guanosine-5'-triphosphate,3'-diphosphate diphosphatase activity
## 8905 guanylyltransferase activity
## 8906 H2B histone acetyltransferase activity
## 8907 H3K27me3 modified histone binding
## 8908 H4 histone acetyltransferase complex
## 8909 H4/H2A histone acetyltransferase complex
## 8910 H4K20me3 modified histone binding
## 8911 hair cycle process
## 8912 hair follicle morphogenesis
## 8913 hair follicle placode formation
## 8914 Harderian gland development
## 8915 head morphogenesis
## 8916 heart formation
## 8917 heat generation
## 8918 helper T cell diapedesis
## 8919 helper T cell enhancement of adaptive immune response
## 8920 hematopoietic or lymphoid organ development
## 8921 hematopoietic stem cell migration
## 8922 hematopoietic stem cell migration to bone marrow
## 8923 heme metabolic process
## 8924 hemi-methylated DNA-binding
## 8925 heparan sulfate 6-O-sulfotransferase activity
## 8926 heparan sulfate N-deacetylase activity
## 8927 heparan sulfate proteoglycan biosynthetic process, enzymatic modification
## 8928 heparanase activity
## 8929 heparin catabolic process
## 8930 hepatocyte homeostasis
## 8931 hepoxilin biosynthetic process
## 8932 heterochromatin maintenance
## 8933 heterochromatin organization
## 8934 heterochromatin organization involved in chromatin silencing
## 8935 hexokinase activity
## 8936 hexosaminidase activity
## 8937 HFE-transferrin receptor complex
## 8938 high voltage-gated calcium channel activity
## 8939 high-affinity arginine transmembrane transporter activity
## 8940 high-affinity lysine transmembrane transporter activity
## 8941 high-density lipoprotein particle receptor activity
## 8942 hindbrain development
## 8943 hindlimb morphogenesis
## 8944 hippocampal mossy fiber expansion
## 8945 HIR complex
## 8946 histamine catabolic process
## 8947 histamine metabolic process
## 8948 histamine N-methyltransferase activity
## 8949 histamine receptor activity
## 8950 histidine catabolic process to glutamate and formamide
## 8951 histidine catabolic process to glutamate and formate
## 8952 histidine metabolic process
## 8953 histidine transport
## 8954 histidine-tRNA ligase activity
## 8955 histidyl-tRNA aminoacylation
## 8956 histone acetyltransferase activity (H4-K12 specific)
## 8957 histone acetyltransferase regulator activity
## 8958 histone butyryltransferase activity
## 8959 histone crotonyltransferase activity
## 8960 histone demethylase activity (H3-monomethyl-K4 specific)
## 8961 histone demethylase activity (H4-K20 specific)
## 8962 histone glutaryltransferase activity
## 8963 histone H2A K63-linked deubiquitination
## 8964 histone H2A K63-linked ubiquitination
## 8965 histone H2A phosphorylation
## 8966 histone H2A-K13 ubiquitination
## 8967 histone H2A-K15 ubiquitination
## 8968 histone H2A-K5 acetylation
## 8969 histone H2B conserved C-terminal lysine ubiquitination
## 8970 histone H2B-K12 acetylation
## 8971 histone H2B-K5 acetylation
## 8972 histone H3-K14 acetyltransferase complex
## 8973 histone H3-K4 acetylation
## 8974 histone H3-K79 methylation
## 8975 histone H3-K9 dimethylation
## 8976 histone H3-S10 phosphorylation involved in chromosome condensation
## 8977 histone H3-T3 phosphorylation
## 8978 histone H3-T6 phosphorylation
## 8979 histone H3-Y41 phosphorylation
## 8980 histone H4-K20 demethylation
## 8981 histone H4-K20 dimethylation
## 8982 histone kinase activity (H3-S10 specific)
## 8983 histone kinase activity (H3-T3 specific)
## 8984 histone kinase activity (H3-T6 specific)
## 8985 histone kinase activity (H3-Y41 specific)
## 8986 histone locus body
## 8987 histone methyltransferase activity (H3-K79 specific)
## 8988 histone pre-mRNA stem-loop binding
## 8989 histone succinyltransferase activity
## 8990 histone-glutamine methyltransferase activity
## 8991 HLA-A specific activating MHC class I receptor activity
## 8992 HLA-A specific inhibitory MHC class I receptor activity
## 8993 HLA-B specific inhibitory MHC class I receptor activity
## 8994 holo-[acyl-carrier-protein] synthase activity
## 8995 homocysteine metabolic process
## 8996 homologous recombination
## 8997 hormone binding
## 8998 hormone biosynthetic process
## 8999 hormone catabolic process
## 9000 hormone metabolic process
## 9001 hormone receptor binding
## 9002 HRI-mediated signaling
## 9003 Hsp27 protein binding
## 9004 HSP90-CDC37 chaperone complex
## 9005 HULC complex
## 9006 hyaloid vascular plexus regression
## 9007 hyaluronan metabolic process
## 9008 hyaluronoglucuronidase activity
## 9009 hydrogen peroxide metabolic process
## 9010 hydrogen sulfide biosynthetic process
## 9011 hydrogen sulfide metabolic process
## 9012 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in cyclic amides
## 9013 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides
## 9014 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amidines
## 9015 hydroxyapatite binding
## 9016 hydroxylysine biosynthetic process
## 9017 hydroxymethyl-, formyl- and related transferase activity
## 9018 hydroxymethylglutaryl-CoA hydrolase activity
## 9019 hydroxymethylglutaryl-CoA lyase activity
## 9020 hydroxymethylglutaryl-CoA reductase (NADPH) activity
## 9021 hydroxymethylglutaryl-CoA reductase activity
## 9022 hydroxymethylglutaryl-CoA synthase activity
## 9023 hydroxyproline transport
## 9024 hydroxypyruvate reductase activity
## 9025 hypermethylation of CpG island
## 9026 hypochlorous acid biosynthetic process
## 9027 hypoxanthine phosphoribosyltransferase activity
## 9028 hypoxia-inducible factor-asparagine oxygenase activity
## 9029 ICAM-3 receptor activity
## 9030 icosanoid biosynthetic process
## 9031 IgA binding
## 9032 IgE binding
## 9033 IgG immunoglobulin transcytosis in epithelial cells mediated by FcRn immunoglobulin receptor
## 9034 IkappaB kinase complex binding
## 9035 imidazolonepropionase activity
## 9036 immune complex formation
## 9037 immune response in brain or nervous system
## 9038 immune response in nasopharyngeal-associated lymphoid tissue
## 9039 immune response-regulating signaling pathway
## 9040 immunoglobulin complex
## 9041 immunoglobulin complex, circulating
## 9042 immunoglobulin heavy chain V-D-J recombination
## 9043 immunoglobulin V(D)J recombination
## 9044 IMP 5'-nucleotidase activity
## 9045 IMP biosynthetic process
## 9046 IMP catabolic process
## 9047 IMP salvage
## 9048 inactivation of X chromosome by DNA methylation
## 9049 inactivation of X chromosome by genetic imprinting
## 9050 inactivation of X chromosome by heterochromatin assembly
## 9051 induction by virus of host cell-cell fusion
## 9052 induction of bacterial agglutination
## 9053 induction of programmed cell death
## 9054 induction of synaptic vesicle exocytosis by positive regulation of presynaptic cytosolic calcium ion concentration
## 9055 inflammatory cell apoptotic process
## 9056 inhibin binding
## 9057 inhibin-betaglycan-ActRII complex
## 9058 inhibition of cysteine-type endopeptidase activity
## 9059 inhibitory MHC class I receptor activity
## 9060 innate immune response activating cell surface receptor signaling pathway
## 9061 innate immune response-activating signal transduction
## 9062 inner cell mass cell differentiation
## 9063 inner cell mass cell fate commitment
## 9064 inner cell mass cellular morphogenesis
## 9065 inner dense plaque of desmosome
## 9066 inner dynein arm
## 9067 inner ear auditory receptor cell differentiation
## 9068 inner medullary collecting duct development
## 9069 inorganic anion import across plasma membrane
## 9070 inorganic cation import across plasma membrane
## 9071 inorganic cation transmembrane transporter activity
## 9072 inorganic diphosphate transmembrane transporter activity
## 9073 inorganic diphosphate transport
## 9074 inorganic phosphate transmembrane transporter activity
## 9075 inosine-diphosphatase activity
## 9076 inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## 9077 inositol bisphosphate phosphatase activity
## 9078 inositol hexakisphosphate 5-kinase activity
## 9079 inositol hexakisphosphate kinase activity
## 9080 inositol pentakisphosphate 2-kinase activity
## 9081 inositol phosphorylation
## 9082 inositol trisphosphate phosphatase activity
## 9083 inositol-1,3,4-trisphosphate 4-phosphatase activity
## 9084 inositol-3,4-bisphosphate 4-phosphatase activity
## 9085 insulin catabolic process
## 9086 insulin metabolic process
## 9087 insulin receptor complex
## 9088 insulin-activated receptor activity
## 9089 insulin-like growth factor-activated receptor activity
## 9090 integral component of endoplasmic reticulum-Golgi intermediate compartment (ERGIC) membrane
## 9091 integral component of omegasome membrane
## 9092 integral component of postsynaptic specialization membrane
## 9093 integral component of the cytoplasmic side of the plasma membrane
## 9094 integrated stress response signaling
## 9095 integrin activation
## 9096 integrin alpha10-beta1 complex
## 9097 integrin alpha11-beta1 complex
## 9098 integrin alpha2-beta1 complex
## 9099 integrin alpha3-beta1 complex
## 9100 integrin alpha4-beta1 complex
## 9101 integrin alpha5-beta1 complex
## 9102 integrin alpha7-beta1 complex
## 9103 integrin alpha8-beta1 complex
## 9104 integrin alpha9-beta1 complex
## 9105 integrin alphaIIb-beta3 complex
## 9106 integrin alphaL-beta2 complex
## 9107 integrin alphaM-beta2 complex
## 9108 integrin alphav-beta5 complex
## 9109 integrin alphav-beta6 complex
## 9110 integrin alphav-beta8 complex
## 9111 integrin alphaX-beta2 complex
## 9112 interferon-gamma binding
## 9113 interleukin-1 receptor binding
## 9114 interleukin-1, type I receptor binding
## 9115 interleukin-1, type I, activating receptor activity
## 9116 interleukin-1, type II receptor binding
## 9117 interleukin-10 production
## 9118 interleukin-12 receptor complex
## 9119 interleukin-13-mediated signaling pathway
## 9120 interleukin-16 binding
## 9121 interleukin-16 receptor activity
## 9122 interleukin-17 receptor activity
## 9123 interleukin-18 receptor activity
## 9124 interleukin-18 receptor complex
## 9125 interleukin-21 receptor activity
## 9126 interleukin-23 binding
## 9127 interleukin-23 complex
## 9128 interleukin-23 receptor binding
## 9129 interleukin-23 receptor complex
## 9130 interleukin-28 receptor complex
## 9131 interleukin-4 receptor binding
## 9132 interleukin-6 binding
## 9133 interleukin-6 receptor activity
## 9134 interleukin-6 receptor complex
## 9135 Intermediate conductance calcium-activated potassium channel activity
## 9136 intermediate filament-based process
## 9137 internode region of axon
## 9138 interstitial matrix
## 9139 intestinal cholesterol absorption
## 9140 intestinal epithelial cell migration
## 9141 intestinal hexose absorption
## 9142 intestinal lipid absorption
## 9143 intracellular canaliculus
## 9144 intracellular pH reduction
## 9145 intraciliary anterograde transport
## 9146 intraciliary transport particle B binding
## 9147 intrahepatic bile duct development
## 9148 intramanchette transport
## 9149 intramembranous ossification
## 9150 intramolecular transferase activity, phosphotransferases
## 9151 intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## 9152 intrinsic apoptotic signaling pathway in response to osmotic stress
## 9153 intrinsic component of external side of plasma membrane
## 9154 intrinsic component of Golgi membrane
## 9155 intrinsic component of organelle membrane
## 9156 inward rectifier potassium channel activity
## 9157 iodide transport
## 9158 ion binding
## 9159 ion channel regulator activity
## 9160 IRE1-RACK1-PP2A complex
## 9161 IRES-dependent translational initiation of linear mRNA
## 9162 iron import into the mitochondrion
## 9163 iron incorporation into metallo-sulfur cluster
## 9164 iron ion import across cell outer membrane
## 9165 iron ion transmembrane transport
## 9166 iron-cytochrome-c reductase activity
## 9167 isocitrate dehydrogenase (NADP+) activity
## 9168 isocitrate dehydrogenase activity
## 9169 isoleucine biosynthetic process
## 9170 isoleucine metabolic process
## 9171 isopeptide cross-linking via N6-glycyl-L-lysine
## 9172 isoprenoid metabolic process
## 9173 isotype switching to IgG isotypes
## 9174 isoursodeoxycholate 7-beta-dehydrogenase (NAD+) activity
## 9175 ISWI-type complex
## 9176 itaconyl-CoA hydratase activity
## 9177 ITP catabolic process
## 9178 ITP metabolic process
## 9179 JUN kinase activity
## 9180 JUN phosphorylation
## 9181 junctional sarcoplasmic reticulum membrane
## 9182 K11-linked polyubiquitin modification-dependent protein binding
## 9183 katanin complex
## 9184 KDEL sequence binding
## 9185 keratinocyte development
## 9186 ketohexokinase activity
## 9187 ketone body catabolic process
## 9188 ketone catabolic process
## 9189 killing by host of symbiont cells
## 9190 kinase inhibitor activity
## 9191 kinase regulator activity
## 9192 kinesin II complex
## 9193 Kit signaling pathway
## 9194 Krueppel-associated box domain binding
## 9195 L-alanine import across plasma membrane
## 9196 L-alanine transmembrane transporter activity
## 9197 L-alanine transport
## 9198 L-allo-threonine aldolase activity
## 9199 L-arginine import across plasma membrane
## 9200 L-arginine transmembrane transport
## 9201 L-arginine transmembrane transporter activity
## 9202 L-ascorbate:sodium symporter activity
## 9203 L-ascorbic acid biosynthetic process
## 9204 L-ascorbic acid transmembrane transport
## 9205 L-ascorbic acid transmembrane transporter activity
## 9206 L-aspartate import across plasma membrane
## 9207 L-aspartate transmembrane transport
## 9208 L-cysteine desulfurase complex
## 9209 L-cystine transmembrane transporter activity
## 9210 L-cystine transport
## 9211 L-dopa decarboxylase activator activity
## 9212 L-dopa O-methyltransferase activity
## 9213 L-fucose mutarotase activity
## 9214 L-glucuronate reductase activity
## 9215 L-glutamate transmembrane transport
## 9216 L-glutamate transmembrane transporter activity
## 9217 L-gulonate 3-dehydrogenase activity
## 9218 L-histidine import across plasma membrane
## 9219 L-histidine transmembrane export from vacuole
## 9220 L-histidine transmembrane transport
## 9221 L-hydroxyproline transmembrane transporter activity
## 9222 L-iditol 2-dehydrogenase activity
## 9223 L-iduronidase activity
## 9224 L-isoleucine transaminase activity
## 9225 L-leucine transaminase activity
## 9226 L-leucine:2-oxoglutarate aminotransferase activity
## 9227 L-lysine catabolic process
## 9228 L-malate dehydrogenase activity
## 9229 L-methionine-(R)-S-oxide reductase activity
## 9230 L-methionine-(S)-S-oxide reductase activity
## 9231 L-methionine:thioredoxin-disulfide S-oxidoreductase activity
## 9232 L-ornithine transmembrane transport
## 9233 L-ornithine transmembrane transporter activity
## 9234 L-phenylalanine catabolic process
## 9235 L-phenylalanine metabolic process
## 9236 L-phosphoserine phosphatase activity
## 9237 L-proline transmembrane transporter activity
## 9238 L-serine catabolic process
## 9239 L-serine import across plasma membrane
## 9240 L-serine-phosphatidylethanolamine phosphatidyltransferase activity
## 9241 L-seryl-tRNA(Sec) kinase activity
## 9242 L-threonine transmembrane transporter activity
## 9243 L-valine transaminase activity
## 9244 L-xylitol catabolic process
## 9245 L-xylitol metabolic process
## 9246 L-xylulose reductase (NAD+) activity
## 9247 L-xylulose reductase (NADP+) activity
## 9248 labyrinthine layer morphogenesis
## 9249 lactate metabolic process
## 9250 lactic acid secretion
## 9251 lactose binding
## 9252 lactose biosynthetic process
## 9253 lactose synthase activity
## 9254 lamellipodium assembly involved in ameboidal cell migration
## 9255 laminin receptor activity
## 9256 laminin-1 complex
## 9257 laminin-10 complex
## 9258 laminin-11 complex
## 9259 laminin-5 complex
## 9260 lanosterol synthase activity
## 9261 Las1 complex
## 9262 late endosomal microautophagy
## 9263 late recombination nodule
## 9264 lateral attachment of mitotic spindle microtubules to kinetochore
## 9265 lateral cell cortex
## 9266 lathosterol oxidase activity
## 9267 latrotoxin receptor activity
## 9268 leading edge cell differentiation
## 9269 leak channel activity
## 9270 left ventricular cardiac muscle tissue morphogenesis
## 9271 left/right pattern formation
## 9272 LEM domain binding
## 9273 lens fiber cell apoptotic process
## 9274 leptin receptor activity
## 9275 leptin receptor binding
## 9276 leptomycin B binding
## 9277 leucine biosynthetic process
## 9278 leucine metabolic process
## 9279 leucine transport
## 9280 leucine-tRNA ligase activity
## 9281 leucyl-tRNA aminoacylation
## 9282 leukemia inhibitory factor receptor activity
## 9283 leukemia inhibitory factor signaling pathway
## 9284 leukocyte activation
## 9285 leukocyte activation involved in immune response
## 9286 leukocyte aggregation
## 9287 leukocyte degranulation
## 9288 leukocyte mediated cytotoxicity
## 9289 leukotriene B4 catabolic process
## 9290 leukotriene B4 receptor activity
## 9291 leukotriene receptor activity
## 9292 leukotriene signaling pathway
## 9293 leukotriene-B4 20-monooxygenase activity
## 9294 leukotriene-C(4) hydrolase
## 9295 leukotriene-C4 synthase activity
## 9296 Leydig cell differentiation
## 9297 ligand-activated transcription factor activity
## 9298 ligand-gated ion channel activity
## 9299 ligase activity, forming carbon-nitrogen bonds
## 9300 LIM domain binding
## 9301 limb bud formation
## 9302 linear malto-oligosaccharide phosphorylase activity
## 9303 linear polyubiquitin binding
## 9304 linoleic acid binding
## 9305 linoleoyl-CoA desaturase activity
## 9306 lipase inhibitor activity
## 9307 lipid antigen binding
## 9308 lipid hydroperoxide transport
## 9309 lipid oxidation
## 9310 lipid tube
## 9311 lipid tube assembly
## 9312 lipoate biosynthetic process
## 9313 lipoate synthase activity
## 9314 lipoic acid binding
## 9315 lipophagy
## 9316 lipopolysaccharide transport
## 9317 lipoprotein biosynthetic process
## 9318 lipoprotein lipase activity
## 9319 lipoprotein particle binding
## 9320 lipoprotein particle receptor activity
## 9321 lipoprotein particle receptor binding
## 9322 lipoyl synthase activity (acting on glycine-cleavage complex H protein
## 9323 lipoyl synthase activity (acting on pyruvate dehydrogenase E2 protein)
## 9324 lipoyl(octanoyl) transferase activity
## 9325 lipoyltransferase activity
## 9326 lithium ion binding
## 9327 liver morphogenesis
## 9328 localization within membrane
## 9329 locomotion involved in locomotory behavior
## 9330 long-chain acyl-CoA hydrolase activity
## 9331 long-chain fatty acid catabolic process
## 9332 long-chain-3-hydroxyacyl-CoA dehydrogenase activity
## 9333 long-chain-fatty-acyl-CoA reductase activity
## 9334 longitudinal sarcoplasmic reticulum
## 9335 loop of Henle development
## 9336 low voltage-gated calcium channel activity
## 9337 low-density lipoprotein particle mediated signaling
## 9338 lumenal side of Golgi membrane
## 9339 lung lobe morphogenesis
## 9340 lung smooth muscle development
## 9341 luteinizing hormone secretion
## 9342 luteolysis
## 9343 lutropin-choriogonadotropic hormone receptor binding
## 9344 lymph vessel development
## 9345 lymph vessel morphogenesis
## 9346 lymphocyte aggregation
## 9347 lymphocyte migration
## 9348 lymphocyte migration into lymphoid organs
## 9349 lysophosphatidic acid phosphatase activity
## 9350 lysosomal HOPS complex
## 9351 lysosomal lumen pH elevation
## 9352 lysosomal matrix
## 9353 lytic vacuole
## 9354 m-AAA complex
## 9355 macrophage apoptotic process
## 9356 macrophage colony-stimulating factor receptor activity
## 9357 macrophage colony-stimulating factor receptor binding
## 9358 macrophage fusion
## 9359 macrophage homeostasis
## 9360 macrophage migration inhibitory factor binding
## 9361 macrophage migration inhibitory factor receptor complex
## 9362 macrophage migration inhibitory factor signaling pathway
## 9363 maintenance of cell polarity
## 9364 maintenance of DNA repeat elements
## 9365 maintenance of imprinting at mating-type locus
## 9366 maintenance of lens transparency
## 9367 maintenance of postsynaptic density structure
## 9368 maintenance of protein localization in endoplasmic reticulum
## 9369 maintenance of protein location
## 9370 maintenance of protein location in cell
## 9371 maintenance of transcriptional fidelity during DNA-templated transcription elongation from RNA polymerase II promoter
## 9372 maintenance of translational fidelity
## 9373 malate dehydrogenase (NADP+) activity
## 9374 malate dehydrogenase activity
## 9375 malate-aspartate shuttle
## 9376 male gamete generation
## 9377 male genitalia morphogenesis
## 9378 male germ-line stem cell asymmetric division
## 9379 male meiosis chromosome segregation
## 9380 male meiosis chromosome separation
## 9381 maleylacetoacetate isomerase activity
## 9382 malonate catabolic process
## 9383 malonyl-CoA biosynthetic process
## 9384 malonyl-CoA catabolic process
## 9385 malonyl-CoA decarboxylase activity
## 9386 malonyl-CoA synthetase activity
## 9387 MAML1-RBP-Jkappa- ICN1 complex
## 9388 mammalian oogenesis stage
## 9389 mammary gland branching involved in pregnancy
## 9390 mammary gland fat development
## 9391 mammary gland involution
## 9392 manchette assembly
## 9393 manganese ion homeostasis
## 9394 manganese ion transport
## 9395 manganese transmembrane transporter activity, phosphorylative mechanism
## 9396 mannokinase activity
## 9397 mannose to fructose-6-phosphate metabolic process
## 9398 mannose-6-phosphate isomerase activity
## 9399 mannosyl-glycoprotein endo-beta-N-acetylglucosaminidase activity
## 9400 mannosyl-oligosaccharide glucosidase activity
## 9401 mannosyltransferase complex
## 9402 mast cell activation
## 9403 mast cell differentiation
## 9404 mast cell granule
## 9405 mast cell homeostasis
## 9406 mast cell secretory granule organization
## 9407 mating behavior
## 9408 maturation of 5S rRNA
## 9409 mature B cell differentiation
## 9410 mature conventional dendritic cell differentiation
## 9411 MCM complex binding
## 9412 mechanosensory behavior
## 9413 medial motor column neuron differentiation
## 9414 medium-chain acyl-CoA hydrolase activity
## 9415 medium-chain fatty acid biosynthetic process
## 9416 medium-chain fatty acid-CoA ligase activity
## 9417 medium-chain fatty-acyl-CoA metabolic process
## 9418 meiotic cell cycle checkpoint
## 9419 meiotic chromosome separation
## 9420 meiotic DNA double-strand break formation
## 9421 meiotic DNA double-strand break processing involved in reciprocal meiotic recombination
## 9422 meiotic metaphase I plate congression
## 9423 meiotic metaphase plate congression
## 9424 meiotic nuclear division
## 9425 meiotic recombination checkpoint
## 9426 meiotic spindle assembly checkpoint
## 9427 meiotic spindle midzone
## 9428 meiotic spindle pole
## 9429 melanocortin receptor activity
## 9430 melanocyte migration
## 9431 melanocyte-stimulating hormone receptor activity
## 9432 membrane assembly
## 9433 membrane attack complex
## 9434 membrane bending
## 9435 membrane biogenesis
## 9436 membrane depolarization during AV node cell action potential
## 9437 membrane depolarization during bundle of His cell action potential
## 9438 membrane depolarization during Purkinje myocyte cell action potential
## 9439 membrane disruption in other organism
## 9440 membrane lipid metabolic process
## 9441 membrane microdomain
## 9442 membrane protein proteolysis involved in retrograde protein transport, ER to cytosol
## 9443 membrane raft distribution
## 9444 membrane raft organization
## 9445 membrane repolarization during atrial cardiac muscle cell action potential
## 9446 membrane tubulation
## 9447 membrane-bounded organelle
## 9448 memory B cell differentiation
## 9449 memory T cell differentiation
## 9450 memory T cell proliferation
## 9451 menaquinone catabolic process
## 9452 mercury ion transport
## 9453 mesenchymal stem cell differentiation
## 9454 mesenchymal to epithelial transition
## 9455 mesoderm migration involved in gastrulation
## 9456 mesoderm morphogenesis
## 9457 mesonephric duct development
## 9458 mesonephric tubule development
## 9459 messenger ribonucleoprotein complex assembly
## 9460 metabolite repair
## 9461 metallochaperone activity
## 9462 metanephric ascending thin limb development
## 9463 metanephric collecting duct development
## 9464 metanephric cortex development
## 9465 metanephric cortical collecting duct development
## 9466 metanephric distal tubule development
## 9467 metanephric mesenchymal cell differentiation
## 9468 metanephric mesenchymal cell proliferation involved in metanephros development
## 9469 metanephric mesenchyme development
## 9470 metanephric mesenchyme morphogenesis
## 9471 metanephric part of ureteric bud development
## 9472 metanephric S-shaped body morphogenesis
## 9473 metanephric smooth muscle tissue development
## 9474 metencephalon development
## 9475 methione N-acyltransferase activity
## 9476 methionine adenosyltransferase activity
## 9477 methionine adenosyltransferase regulator activity
## 9478 methotrexate transmembrane transporter activity
## 9479 methotrexate transport
## 9480 methylarsonate reductase activity
## 9481 methylated-DNA-[protein]-cysteine S-methyltransferase activity
## 9482 methylcrotonoyl-CoA carboxylase activity
## 9483 methylcrotonoyl-CoA carboxylase complex
## 9484 methylcytosine dioxygenase activity
## 9485 methylenetetrahydrofolate dehydrogenase [NAD(P)+] activity
## 9486 methylglutaconyl-CoA hydratase activity
## 9487 methylglyoxal biosynthetic process
## 9488 methylglyoxal catabolic process to lactate
## 9489 methylglyoxal metabolic process
## 9490 methylglyoxal reductase (NADPH-dependent, acetol producing)
## 9491 methylglyoxal synthase activity
## 9492 methylmalonyl-CoA mutase activity
## 9493 methylthiotransferase activity
## 9494 mevalonate kinase activity
## 9495 mevalonate transmembrane transporter activity
## 9496 mevalonate transport
## 9497 MHC class I protein complex assembly
## 9498 MHC class Ib protein complex assembly
## 9499 MHC class II protein binding, via antigen binding groove
## 9500 MHC class II protein complex assembly
## 9501 microfibril binding
## 9502 microglial cell activation involved in immune response
## 9503 microspike
## 9504 microspike assembly
## 9505 microtubule cytoskeleton organization involved in establishment of planar polarity
## 9506 microtubule end
## 9507 microtubule lateral binding
## 9508 microtubule plus end polymerase
## 9509 microtubule plus-end directed mitotic chromosome migration
## 9510 microtubule sliding
## 9511 microvillus organization
## 9512 midbrain dopaminergic neuron differentiation
## 9513 midbrain-hindbrain boundary development
## 9514 mineralocorticoid receptor signaling pathway
## 9515 minor groove of adenine-thymine-rich DNA binding
## 9516 miRNA transport
## 9517 MIS12/MIND type complex
## 9518 Mis6-Sim4 complex
## 9519 mismatch base pair DNA N-glycosylase activity
## 9520 mismatch repair involved in maintenance of fidelity involved in DNA-dependent DNA replication
## 9521 MIT domain binding
## 9522 mitigation of host defenses by symbiont
## 9523 mitochondria-nucleus signaling pathway
## 9524 mitochondrial acetyl-CoA biosynthetic process from pyruvate
## 9525 mitochondrial ADP transmembrane transport
## 9526 mitochondrial asparaginyl-tRNA aminoacylation
## 9527 mitochondrial ATP transmembrane transport
## 9528 mitochondrial ATP-gated potassium channel complex
## 9529 mitochondrial citrate transmembrane transport
## 9530 mitochondrial crista junction
## 9531 mitochondrial degradosome
## 9532 mitochondrial DNA-directed RNA polymerase complex
## 9533 mitochondrial double-strand break repair via homologous recombination
## 9534 mitochondrial endopeptidase Clp complex
## 9535 mitochondrial FAD transmembrane transport
## 9536 mitochondrial fatty acid beta-oxidation multienzyme complex
## 9537 mitochondrial L-ornithine transmembrane transport
## 9538 mitochondrial membrane fission
## 9539 mitochondrial mRNA catabolic process
## 9540 mitochondrial mRNA polyadenylation
## 9541 mitochondrial mRNA processing
## 9542 mitochondrial NAD transmembrane transport
## 9543 mitochondrial nucleoid organization
## 9544 mitochondrial outer membrane permeabilization involved in programmed cell death
## 9545 mitochondrial phosphate ion transmembrane transport
## 9546 mitochondrial protein catabolic process
## 9547 mitochondrial proton-transporting ATP synthase, stator stalk
## 9548 mitochondrial respirasome assembly
## 9549 mitochondrial ribonuclease P complex
## 9550 mitochondrial RNA 3'-end processing
## 9551 mitochondrial RNA 5'-end processing
## 9552 mitochondrial RNA catabolic process
## 9553 mitochondrial RNA metabolic process
## 9554 mitochondrial RNA processing
## 9555 mitochondrial seryl-tRNA aminoacylation
## 9556 mitochondrial transcription factor activity
## 9557 mitochondrial tRNA 5'-end processing
## 9558 mitochondrial tRNA methylation
## 9559 mitochondrial tRNA processing
## 9560 mitochondrial tRNA pseudouridine synthesis
## 9561 mitochondrial unfolded protein response
## 9562 mitochondrion targeting sequence binding
## 9563 mitochondrion-derived vesicle
## 9564 mitotic cohesin complex
## 9565 mitotic DNA replication
## 9566 mitotic DNA replication preinitiation complex assembly
## 9567 mitotic sister chromatid biorientation
## 9568 mitral valve formation
## 9569 Mo-molybdopterin cofactor biosynthetic process
## 9570 modification by virus of host mRNA processing
## 9571 modification of postsynaptic structure
## 9572 modification of synaptic structure
## 9573 modification of synaptic structure, modulating synaptic transmission
## 9574 modified amino acid binding
## 9575 modulation by host of viral genome replication
## 9576 modulation by host of viral transcription
## 9577 molybdate ion transmembrane transporter activity
## 9578 molybdate ion transport
## 9579 molybdenum ion binding
## 9580 molybdopterin cofactor binding
## 9581 molybdopterin cofactor biosynthetic process
## 9582 monoacylglycerol biosynthetic process
## 9583 monomeric IgA immunoglobulin complex
## 9584 mononuclear cell proliferation
## 9585 monopolar spindle attachment to meiosis I kinetochore
## 9586 monosialoganglioside sialyltransferase activity
## 9587 monounsaturated fatty acid biosynthetic process
## 9588 monovalent inorganic cation transport
## 9589 morphogenesis of a branching epithelium
## 9590 morphogenesis of embryonic epithelium
## 9591 motor neuron migration
## 9592 mRNA (adenine-N1-)-methyltransferase activity
## 9593 mRNA (cytidine-5-)-methyltransferase activity
## 9594 mRNA (N6-adenosine)-methyltransferase activity
## 9595 mRNA 5'-splice site recognition
## 9596 mRNA binding involved in posttranscriptional gene silencing
## 9597 mRNA cap binding complex binding
## 9598 mRNA CDS binding
## 9599 mRNA cleavage involved in gene silencing by siRNA
## 9600 mRNA export from nucleus in response to heat stress
## 9601 mRNA guanylyltransferase activity
## 9602 mRNA localization resulting in posttranscriptional regulation of gene expression
## 9603 mRNA metabolic process
## 9604 MSL complex
## 9605 mucin granule
## 9606 mucus secretion
## 9607 Mullerian duct regression
## 9608 multi-ciliated epithelial cell differentiation
## 9609 multi-eIF complex
## 9610 multi-organism membrane organization
## 9611 multinuclear osteoclast differentiation
## 9612 muramyl dipeptide binding
## 9613 muscle cell projection membrane
## 9614 muscle myosin complex
## 9615 muscle organ morphogenesis
## 9616 muscle thin filament tropomyosin
## 9617 muscle tissue development
## 9618 muscular septum morphogenesis
## 9619 MutLalpha complex
## 9620 MutSbeta complex
## 9621 mycophenolic acid acyl-glucuronide esterase activity
## 9622 myeloid cell development
## 9623 myeloid dendritic cell activation
## 9624 myeloid dendritic cell chemotaxis
## 9625 myeloid leukocyte activation
## 9626 myeloid leukocyte differentiation
## 9627 myo-inositol import across plasma membrane
## 9628 myo-inositol:proton symporter activity
## 9629 myo-inositol:sodium symporter activity
## 9630 myoblast differentiation involved in skeletal muscle regeneration
## 9631 myoblast fate commitment
## 9632 myoblast fusion involved in skeletal muscle regeneration
## 9633 myoblast proliferation
## 9634 myofibroblast contraction
## 9635 myosin filament assembly
## 9636 myosin head/neck binding
## 9637 myosin heavy chain binding
## 9638 myosin I binding
## 9639 myosin II complex
## 9640 myosin II filament
## 9641 myosin light chain kinase activity
## 9642 myosin phosphatase regulator activity
## 9643 myosin tail binding
## 9644 myosin VI binding
## 9645 myotube differentiation involved in skeletal muscle regeneration
## 9646 N-(long-chain-acyl)ethanolamine deacylase activity
## 9647 N-acetyl-beta-D-galactosaminidase activity
## 9648 N-acetyl-L-aspartate-L-glutamate ligase activity
## 9649 N-acetylgalactosamine 4-O-sulfotransferase activity
## 9650 N-acetylgalactosamine kinase activity
## 9651 N-acetylgalactosamine-4-sulfatase activity
## 9652 N-acetylgalactosamine-6-phosphate deacetylase activity
## 9653 N-acetylglucosamine catabolic process
## 9654 N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase activity
## 9655 N-acetylglucosamine-6-phosphate deacetylase activity
## 9656 N-acetylglucosamine-6-sulfatase activity
## 9657 N-acetylmannosamine metabolic process
## 9658 N-acetylneuraminate biosynthetic process
## 9659 N-acetylneuraminate synthase activity
## 9660 N-acylethanolamine metabolic process
## 9661 N-acylglucosamine 2-epimerase activity
## 9662 N-acylmannosamine kinase activity
## 9663 N-acylneuraminate-9-phosphatase activity
## 9664 N-acylneuraminate-9-phosphate synthase activity
## 9665 N-acylsphingosine amidohydrolase activity
## 9666 N-acylsphingosine galactosyltransferase activity
## 9667 N-glycan fucosylation
## 9668 N-glycan processing to lysosome
## 9669 N-sulfoglucosamine sulfohydrolase activity
## 9670 N-terminal myristoylation domain binding
## 9671 N-terminal peptidyl-alanine methylation
## 9672 N-terminal peptidyl-alanine trimethylation
## 9673 N-terminal peptidyl-aspartic acid acetylation
## 9674 N-terminal peptidyl-glycine methylation
## 9675 N-terminal peptidyl-glycine N-myristoylation
## 9676 N-terminal peptidyl-L-cysteine N-palmitoylation
## 9677 N-terminal peptidyl-proline dimethylation
## 9678 N-terminal peptidyl-proline methylation
## 9679 N-terminal peptidyl-serine acetylation
## 9680 N-terminal peptidyl-serine dimethylation
## 9681 N-terminal peptidyl-serine methylation
## 9682 N-terminal peptidyl-serine trimethylation
## 9683 N-terminal protein amino acid methylation
## 9684 N-terminal protein amino acid modification
## 9685 N-terminal protein N-methyltransferase activity
## 9686 N(1),N(12)-diacetylspermine:oxygen oxidoreductase (3-acetamidopropanal-forming) activity
## 9687 N(6)-L-threonylcarbamoyladenine synthase activity
## 9688 N1-acetylspermidine:oxygen oxidoreductase (3-acetamidopropanal-forming) activity
## 9689 N1-acetylspermine:oxygen oxidoreductase (3-acetamidopropanal-forming) activity
## 9690 N6-isopentenyladenosine methylthiotransferase activity
## 9691 NAADP-sensitive calcium-release channel activity
## 9692 NAD catabolic process
## 9693 NAD salvage
## 9694 NAD transmembrane transporter activity
## 9695 NAD-dependent histone deacetylase activity (H3-K18 specific)
## 9696 NAD-dependent histone deacetylase activity (H4-K16 specific)
## 9697 NAD(P)+ transhydrogenase (B-specific) activity
## 9698 NAD(P)+ transhydrogenase activity
## 9699 NAD(P)+-protein-arginine ADP-ribosyltransferase activity
## 9700 NAD(P)H oxidase H2O2-forming activity
## 9701 NAD+ diphosphatase activity
## 9702 NAD+ synthase (glutamine-hydrolyzing) activity
## 9703 NADH binding
## 9704 NADH oxidation
## 9705 NADHX epimerase activity
## 9706 NADP biosynthetic process
## 9707 NADPH dehydrogenase (quinone) activity
## 9708 NADPH oxidation
## 9709 NADPH-adrenodoxin reductase activity
## 9710 NADPHX epimerase activity
## 9711 naphthalene metabolic process
## 9712 natural killer cell activation involved in immune response
## 9713 natural killer cell chemotaxis
## 9714 natural killer cell lectin-like receptor binding
## 9715 natural killer cell tolerance induction
## 9716 ncRNA polyadenylation
## 9717 ncRNA polyadenylation involved in polyadenylation-dependent ncRNA catabolic process
## 9718 ncRNA transcription
## 9719 NEDD8 activating enzyme activity
## 9720 NEDD8 ligase activity
## 9721 NEDD8 transferase activity
## 9722 negative regulation by host of symbiont molecular function
## 9723 negative regulation by host of viral exo-alpha-sialidase activity
## 9724 negative regulation by host of viral glycoprotein metabolic process
## 9725 negative regulation by host of viral release from host cell
## 9726 negative regulation of actin filament bundle assembly
## 9727 negative regulation of actin filament depolymerization
## 9728 negative regulation of actin nucleation
## 9729 negative regulation of activation-induced cell death of T cells
## 9730 negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## 9731 negative regulation of aldosterone biosynthetic process
## 9732 negative regulation of all-trans-retinyl-ester hydrolase, 11-cis retinol forming activity
## 9733 negative regulation of amino acid transport
## 9734 negative regulation of amniotic stem cell differentiation
## 9735 negative regulation of anion channel activity
## 9736 negative regulation of antifungal innate immune response
## 9737 negative regulation of antigen processing and presentation
## 9738 negative regulation of antigen processing and presentation of peptide antigen via MHC class I
## 9739 negative regulation of apolipoprotein binding
## 9740 negative regulation of apoptotic cell clearance
## 9741 negative regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## 9742 negative regulation of asymmetric cell division
## 9743 negative regulation of ATF6-mediated unfolded protein response
## 9744 negative regulation of ATP biosynthetic process
## 9745 negative regulation of ATP citrate synthase activity
## 9746 negative regulation of autophagic cell death
## 9747 negative regulation of autophagy of mitochondrion
## 9748 negative regulation of axon extension involved in regeneration
## 9749 negative regulation of axon regeneration
## 9750 negative regulation of binding of sperm to zona pellucida
## 9751 negative regulation of blood coagulation
## 9752 negative regulation of blood coagulation, intrinsic pathway
## 9753 negative regulation of blood vessel endothelial cell differentiation
## 9754 negative regulation of blood vessel remodeling
## 9755 negative regulation of blood-brain barrier permeability
## 9756 negative regulation of branching involved in lung morphogenesis
## 9757 negative regulation of branching involved in ureteric bud morphogenesis
## 9758 negative regulation of branching morphogenesis of a nerve
## 9759 negative regulation of brown fat cell differentiation
## 9760 negative regulation of calcidiol 1-monooxygenase activity
## 9761 negative regulation of calcium import into the mitochondrion
## 9762 negative regulation of calcium ion import
## 9763 negative regulation of calcium-dependent cell-cell adhesion
## 9764 negative regulation of cardiac muscle cell differentiation
## 9765 negative regulation of cardiac muscle hypertrophy in response to stress
## 9766 negative regulation of cardiac myofibril assembly
## 9767 negative regulation of caveolin-mediated endocytosis
## 9768 negative regulation of CD4 production
## 9769 negative regulation of CD4-positive, alpha-beta T cell activation
## 9770 negative regulation of CD4-positive, alpha-beta T cell costimulation
## 9771 negative regulation of CD4-positive, alpha-beta T cell differentiation
## 9772 negative regulation of CD8-positive, alpha-beta T cell activation
## 9773 negative regulation of CD8-positive, alpha-beta T cell proliferation
## 9774 negative regulation of cell adhesion molecule production
## 9775 negative regulation of cell cycle G2/M phase transition
## 9776 negative regulation of cell cycle process
## 9777 negative regulation of cell proliferation involved in heart valve morphogenesis
## 9778 negative regulation of cell proliferation involved in kidney development
## 9779 negative regulation of cell proliferation involved in mesonephros development
## 9780 negative regulation of cell-cell adhesion mediated by integrin
## 9781 negative regulation of cellular amino acid metabolic process
## 9782 negative regulation of cellular component movement
## 9783 negative regulation of cellular extravasation
## 9784 negative regulation of cellular metabolic process
## 9785 negative regulation of cellular respiration
## 9786 negative regulation of cellular response to insulin stimulus
## 9787 negative regulation of cellular response to testosterone stimulus
## 9788 negative regulation of cellular response to transforming growth factor beta stimulus
## 9789 negative regulation of centriole-centriole cohesion
## 9790 negative regulation of cerebellar granule cell precursor proliferation
## 9791 negative regulation of cGMP-mediated signaling
## 9792 negative regulation of chaperone-mediated autophagy
## 9793 negative regulation of chemokine (C-C motif) ligand 4 production
## 9794 negative regulation of chemokine (C-X-C motif) ligand 9 production
## 9795 negative regulation of chemokine-mediated signaling pathway
## 9796 negative regulation of cholangiocyte apoptotic process
## 9797 negative regulation of chondrocyte proliferation
## 9798 negative regulation of chronic inflammatory response
## 9799 negative regulation of clathrin-dependent endocytosis
## 9800 negative regulation of coagulation
## 9801 negative regulation of collagen biosynthetic process
## 9802 negative regulation of collagen catabolic process
## 9803 negative regulation of constitutive secretory pathway
## 9804 negative regulation of convergent extension involved in axis elongation
## 9805 negative regulation of cortisol biosynthetic process
## 9806 negative regulation of cortisol secretion
## 9807 negative regulation of cyclin-dependent protein kinase activity
## 9808 negative regulation of cytosolic calcium ion concentration
## 9809 negative regulation of cytotoxic T cell differentiation
## 9810 negative regulation of death-inducing signaling complex assembly
## 9811 negative regulation of dendritic cell antigen processing and presentation
## 9812 negative regulation of dendritic spine morphogenesis
## 9813 negative regulation of dense core granule biogenesis
## 9814 negative regulation of dephosphorylation
## 9815 negative regulation of development of symbiont involved in interaction with host
## 9816 negative regulation of DNA duplex unwinding
## 9817 negative regulation of DNA endoreduplication
## 9818 negative regulation of DNA helicase activity
## 9819 negative regulation of DNA repair
## 9820 negative regulation of DNA-dependent DNA replication
## 9821 negative regulation of DNA-templated transcription, elongation
## 9822 negative regulation of double-stranded telomeric DNA binding
## 9823 negative regulation of eating behavior
## 9824 negative regulation of ectoderm development
## 9825 negative regulation of elastin catabolic process
## 9826 negative regulation of electron transfer activity
## 9827 negative regulation of endocytic recycling
## 9828 negative regulation of endoribonuclease activity
## 9829 negative regulation of entry of bacterium into host cell
## 9830 negative regulation of epidermal cell differentiation
## 9831 negative regulation of epithelial cell differentiation
## 9832 negative regulation of ER-associated ubiquitin-dependent protein catabolic process
## 9833 negative regulation of erythrocyte differentiation
## 9834 negative regulation of establishment of endothelial barrier
## 9835 negative regulation of establishment of T cell polarity
## 9836 negative regulation of estrogen receptor binding
## 9837 negative regulation of exo-alpha-sialidase activity
## 9838 negative regulation of extracellular matrix constituent secretion
## 9839 negative regulation of extracellular matrix disassembly
## 9840 negative regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## 9841 negative regulation of fatty acid metabolic process
## 9842 negative regulation of fatty acid transport
## 9843 negative regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## 9844 negative regulation of ferroptosis
## 9845 negative regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## 9846 negative regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## 9847 negative regulation of forebrain neuron differentiation
## 9848 negative regulation of formation of translation preinitiation complex
## 9849 negative regulation of G protein-coupled receptor internalization
## 9850 negative regulation of gene silencing by miRNA
## 9851 negative regulation of germinal center formation
## 9852 negative regulation of glial cell proliferation
## 9853 negative regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## 9854 negative regulation of glomerular filtration
## 9855 negative regulation of glomerular filtration by angiotensin
## 9856 negative regulation of glucocorticoid biosynthetic process
## 9857 negative regulation of glucokinase activity
## 9858 negative regulation of glucose catabolic process to lactate via pyruvate
## 9859 negative regulation of glucosylceramide biosynthetic process
## 9860 negative regulation of glycogen (starch) synthase activity
## 9861 negative regulation of glycoprotein metabolic process
## 9862 negative regulation of Golgi to plasma membrane protein transport
## 9863 negative regulation of growth hormone receptor signaling pathway
## 9864 negative regulation of growth hormone secretion
## 9865 negative regulation of growth rate
## 9866 negative regulation of GTP binding
## 9867 negative regulation of GTP cyclohydrolase I activity
## 9868 negative regulation of guanyl-nucleotide exchange factor activity
## 9869 negative regulation of heart rate
## 9870 negative regulation of helicase activity
## 9871 negative regulation of hematopoietic stem cell differentiation
## 9872 negative regulation of hemoglobin biosynthetic process
## 9873 negative regulation of hepatic stellate cell activation
## 9874 negative regulation of hepatic stellate cell migration
## 9875 negative regulation of hepatocyte proliferation
## 9876 negative regulation of high voltage-gated calcium channel activity
## 9877 negative regulation of histone H3-K14 acetylation
## 9878 negative regulation of histone H3-K36 methylation
## 9879 negative regulation of histone H3-K9 acetylation
## 9880 negative regulation of histone H3-K9 dimethylation
## 9881 negative regulation of histone H3-K9 methylation
## 9882 negative regulation of homotypic cell-cell adhesion
## 9883 negative regulation of hormone secretion
## 9884 negative regulation of humoral immune response mediated by circulating immunoglobulin
## 9885 negative regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## 9886 negative regulation of hydrolase activity
## 9887 negative regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## 9888 negative regulation of immunoglobulin production
## 9889 negative regulation of inositol phosphate biosynthetic process
## 9890 negative regulation of integrin-mediated signaling pathway
## 9891 negative regulation of interferon-alpha production
## 9892 negative regulation of interleukin-1 production
## 9893 negative regulation of interleukin-1-mediated signaling pathway
## 9894 negative regulation of interleukin-18 production
## 9895 negative regulation of interleukin-6-mediated signaling pathway
## 9896 negative regulation of intracellular calcium activated chloride channel activity
## 9897 negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## 9898 negative regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## 9899 negative regulation of iodide transmembrane transport
## 9900 negative regulation of ion transport
## 9901 negative regulation of isotype switching
## 9902 negative regulation of isotype switching to IgA isotypes
## 9903 negative regulation of isotype switching to IgE isotypes
## 9904 negative regulation of lamellipodium assembly
## 9905 negative regulation of late endosome to lysosome transport
## 9906 negative regulation of leucine import
## 9907 negative regulation of leukocyte activation
## 9908 negative regulation of leukocyte migration
## 9909 negative regulation of leukocyte proliferation
## 9910 negative regulation of lipid binding
## 9911 negative regulation of lipid biosynthetic process
## 9912 negative regulation of lipid kinase activity
## 9913 negative regulation of locomotion
## 9914 negative regulation of long-term synaptic depression
## 9915 negative regulation of low-density lipoprotein particle receptor catabolic process
## 9916 negative regulation of lyase activity
## 9917 negative regulation of lymphangiogenesis
## 9918 negative regulation of macrophage apoptotic process
## 9919 negative regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## 9920 negative regulation of mast cell activation
## 9921 negative regulation of mast cell activation involved in immune response
## 9922 negative regulation of mast cell cytokine production
## 9923 negative regulation of mast cell differentiation
## 9924 negative regulation of mature B cell apoptotic process
## 9925 negative regulation of meiotic nuclear division
## 9926 negative regulation of membrane hyperpolarization
## 9927 negative regulation of membrane tubulation
## 9928 negative regulation of mesenchymal cell apoptotic process
## 9929 negative regulation of mesenchymal cell proliferation involved in lung development
## 9930 negative regulation of mesenchymal stem cell differentiation
## 9931 negative regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## 9932 negative regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## 9933 negative regulation of metanephric nephron tubule epithelial cell differentiation
## 9934 negative regulation of microtubule binding
## 9935 negative regulation of mitochondrial membrane permeability
## 9936 negative regulation of mitochondrial membrane permeability involved in apoptotic process
## 9937 negative regulation of mitochondrial translation
## 9938 negative regulation of mitotic cell cycle, embryonic
## 9939 negative regulation of mitotic recombination
## 9940 negative regulation of mitotic sister chromatid separation
## 9941 negative regulation of monocyte activation
## 9942 negative regulation of mononuclear cell proliferation
## 9943 negative regulation of mRNA 3'-end processing
## 9944 negative regulation of mRNA catabolic process
## 9945 negative regulation of muscle atrophy
## 9946 negative regulation of muscle cell apoptotic process
## 9947 negative regulation of MyD88-dependent toll-like receptor signaling pathway
## 9948 negative regulation of myeloid dendritic cell activation
## 9949 negative regulation of myeloid leukocyte differentiation
## 9950 negative regulation of myoblast fusion
## 9951 negative regulation of natural killer cell activation
## 9952 negative regulation of neural crest formation
## 9953 negative regulation of neuron projection regeneration
## 9954 negative regulation of neuron remodeling
## 9955 negative regulation of neuronal action potential
## 9956 negative regulation of neutrophil chemotaxis
## 9957 negative regulation of neutrophil degranulation
## 9958 negative regulation of neutrophil differentiation
## 9959 negative regulation of nitric-oxide synthase biosynthetic process
## 9960 negative regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## 9961 negative regulation of norepinephrine secretion
## 9962 negative regulation of Notch signaling pathway involved in somitogenesis
## 9963 negative regulation of nuclear-transcribed mRNA poly(A) tail shortening
## 9964 negative regulation of oligodendrocyte differentiation
## 9965 negative regulation of oligodendrocyte progenitor proliferation
## 9966 negative regulation of oxidative stress-induced cell death
## 9967 negative regulation of oxidoreductase activity
## 9968 negative regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## 9969 negative regulation of peptide secretion
## 9970 negative regulation of peptidyl-lysine crotonylation
## 9971 negative regulation of peroxidase activity
## 9972 negative regulation of peroxisome proliferator activated receptor signaling pathway
## 9973 negative regulation of phosphatidylcholine biosynthetic process
## 9974 negative regulation of phospholipid biosynthetic process
## 9975 negative regulation of platelet-derived growth factor receptor-alpha signaling pathway
## 9976 negative regulation of polyamine transmembrane transport
## 9977 negative regulation of postsynaptic density organization
## 9978 negative regulation of potassium ion transmembrane transporter activity
## 9979 negative regulation of primary miRNA processing
## 9980 negative regulation of programmed necrotic cell death
## 9981 negative regulation of prostaglandin biosynthetic process
## 9982 negative regulation of proteasomal protein catabolic process
## 9983 negative regulation of protein autoubiquitination
## 9984 negative regulation of protein deubiquitination
## 9985 negative regulation of protein glutathionylation
## 9986 negative regulation of protein homooligomerization
## 9987 negative regulation of protein import into nucleus
## 9988 negative regulation of protein K63-linked ubiquitination
## 9989 negative regulation of protein kinase activity by protein phosphorylation
## 9990 negative regulation of protein lipidation
## 9991 negative regulation of protein localization to cell leading edge
## 9992 negative regulation of protein localization to chromatin
## 9993 negative regulation of protein localization to cilium
## 9994 negative regulation of protein localization to endosome
## 9995 negative regulation of protein localization to kinetochore
## 9996 negative regulation of protein localization to lysosome
## 9997 negative regulation of protein polymerization
## 9998 negative regulation of protein processing involved in protein targeting to mitochondrion
## 9999 negative regulation of protein transport
## 10000 negative regulation of Rac protein signal transduction
## 10001 negative regulation of receptor catabolic process
## 10002 negative regulation of receptor-mediated endocytosis
## 10003 negative regulation of regulatory T cell differentiation
## 10004 negative regulation of relaxation of smooth muscle
## 10005 negative regulation of release of sequestered calcium ion into cytosol
## 10006 negative regulation of renal sodium excretion
## 10007 negative regulation of renin secretion into blood stream
## 10008 negative regulation of respiratory burst involved in inflammatory response
## 10009 negative regulation of response to DNA damage stimulus
## 10010 negative regulation of Rho-dependent protein serine/threonine kinase activity
## 10011 negative regulation of ribosomal DNA heterochromatin assembly
## 10012 negative regulation of ribosome biogenesis
## 10013 negative regulation of ripoptosome assembly involved in necroptotic process
## 10014 negative regulation of RNA catabolic process
## 10015 negative regulation of RNA interference
## 10016 negative regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## 10017 negative regulation of rRNA processing
## 10018 negative regulation of secretion by cell
## 10019 negative regulation of secretion of lysosomal enzymes
## 10020 negative regulation of sequestering of calcium ion
## 10021 negative regulation of serotonin secretion
## 10022 negative regulation of single-species biofilm formation in or on host organism
## 10023 negative regulation of SMAD protein complex assembly
## 10024 negative regulation of smooth muscle cell-matrix adhesion
## 10025 negative regulation of smooth muscle contraction
## 10026 negative regulation of SNARE complex assembly
## 10027 negative regulation of snRNA transcription by RNA polymerase II
## 10028 negative regulation of sodium ion transmembrane transporter activity
## 10029 negative regulation of sodium:proton antiporter activity
## 10030 negative regulation of store-operated calcium channel activity
## 10031 negative regulation of stress granule assembly
## 10032 negative regulation of striated muscle contraction
## 10033 negative regulation of striated muscle tissue development
## 10034 negative regulation of synaptic transmission, dopaminergic
## 10035 negative regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## 10036 negative regulation of T cell extravasation
## 10037 negative regulation of T cell mediated cytotoxicity
## 10038 negative regulation of T cell mediated immunity
## 10039 negative regulation of T-helper 1 cell differentiation
## 10040 negative regulation of T-helper 17 type immune response
## 10041 negative regulation of T-helper 2 cell differentiation
## 10042 negative regulation of T-helper cell differentiation
## 10043 negative regulation of tau-protein kinase activity
## 10044 negative regulation of telomerase RNA reverse transcriptase activity
## 10045 negative regulation of telomere maintenance in response to DNA damage
## 10046 negative regulation of telomeric DNA binding
## 10047 negative regulation of telomeric RNA transcription from RNA pol II promoter
## 10048 negative regulation of the force of heart contraction by chemical signal
## 10049 negative regulation of thioredoxin peroxidase activity by peptidyl-threonine phosphorylation
## 10050 negative regulation of thrombin-activated receptor signaling pathway
## 10051 negative regulation of Toll signaling pathway
## 10052 negative regulation of toll-like receptor 2 signaling pathway
## 10053 negative regulation of tooth mineralization
## 10054 negative regulation of TRAIL-activated apoptotic signaling pathway
## 10055 negative regulation of transcription from RNA polymerase II promoter involved in heart development
## 10056 negative regulation of transforming growth factor beta production
## 10057 negative regulation of transforming growth factor beta3 production
## 10058 negative regulation of translational initiation by iron
## 10059 negative regulation of transport
## 10060 negative regulation of trophoblast cell migration
## 10061 negative regulation of tumor necrosis factor (ligand) superfamily member 11 production
## 10062 negative regulation of type B pancreatic cell proliferation
## 10063 negative regulation of vascular associated smooth muscle cell differentiation
## 10064 negative regulation of vascular associated smooth muscle contraction
## 10065 negative regulation of vascular endothelial cell proliferation
## 10066 negative regulation of vascular endothelial growth factor production
## 10067 negative regulation of vascular endothelial growth factor signaling pathway
## 10068 negative regulation of vasoconstriction
## 10069 negative regulation of ventricular cardiac muscle cell action potential
## 10070 negative regulation of very-low-density lipoprotein particle clearance
## 10071 negative regulation of vesicle fusion
## 10072 negative regulation of viral life cycle
## 10073 negative regulation of viral process
## 10074 negative regulation of vitamin D biosynthetic process
## 10075 negative regulation of voltage-gated potassium channel activity
## 10076 negative regulation of zinc ion transmembrane import
## 10077 nephric duct formation
## 10078 nephric duct morphogenesis
## 10079 nephrogenic mesenchyme morphogenesis
## 10080 nerve development
## 10081 neural fold elevation formation
## 10082 neural plate axis specification
## 10083 neural plate morphogenesis
## 10084 neurofibrillary tangle
## 10085 neurofilament
## 10086 neuron death in response to oxidative stress
## 10087 neuron fate specification
## 10088 neuron projection branch point
## 10089 neuron projection membrane
## 10090 neuron projection regeneration
## 10091 neuron recognition
## 10092 neuron-glial cell signaling
## 10093 neuronal dense core vesicle exocytosis
## 10094 neuronal dense core vesicle lumen
## 10095 neuropeptide catabolic process
## 10096 neuropeptide hormone activity
## 10097 neuropeptide processing
## 10098 neurotransmitter binding
## 10099 neurotransmitter catabolic process
## 10100 neurotransmitter receptor cycle
## 10101 neurotransmitter receptor localization to postsynaptic specialization membrane
## 10102 neurotransmitter receptor metabolic process
## 10103 neurotransmitter receptor transport postsynaptic membrane to endosome
## 10104 neurotransmitter receptor transport, postsynaptic endosome to lysosome
## 10105 neurotrophin TRKA receptor binding
## 10106 neutral sphingomyelin phosphodiesterase activity
## 10107 neutrophil activation
## 10108 neutrophil homeostasis
## 10109 neutrophil migration
## 10110 NF-kappaB complex
## 10111 nicotinate phosphoribosyltransferase activity
## 10112 nitrate catabolic process
## 10113 nitrate reductase activity
## 10114 nitric oxide catabolic process
## 10115 nitric oxide dioxygenase activity
## 10116 nitric oxide homeostasis
## 10117 nitric oxide metabolic process
## 10118 nitric oxide storage
## 10119 nitric oxide-cGMP-mediated signaling pathway
## 10120 nitrite reductase activity
## 10121 nitrobenzene metabolic process
## 10122 nitrogen compound transport
## 10123 NLRP1 inflammasome complex
## 10124 NLS-dependent protein nuclear import complex
## 10125 NMDA selective glutamate receptor signaling pathway
## 10126 Noc1p-Noc2p complex
## 10127 Noc2p-Noc3p complex
## 10128 non-canonical Wnt signaling pathway via JNK cascade
## 10129 non-recombinational repair
## 10130 non-sequence-specific DNA binding, bending
## 10131 nor-spermidine metabolic process
## 10132 norepinephrine binding
## 10133 norepinephrine biosynthetic process
## 10134 norepinephrine secretion
## 10135 norepinephrine transport
## 10136 norepinephrine uptake
## 10137 norepinephrine-epinephrine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## 10138 norepinephrine:sodium symporter activity
## 10139 NOS2-CD74 complex
## 10140 Notch receptor processing, ligand-dependent
## 10141 notochord morphogenesis
## 10142 notochord regression
## 10143 nuclear body organization
## 10144 nuclear cap binding complex
## 10145 nuclear DNA replication
## 10146 nuclear fragmentation involved in apoptotic nuclear change
## 10147 nuclear inner membrane organization
## 10148 nuclear microtubule
## 10149 nuclear migration along microfilament
## 10150 nuclear MIS12/MIND complex
## 10151 nuclear mitotic cohesin complex
## 10152 nuclear polyadenylation-dependent rRNA catabolic process
## 10153 nuclear polyadenylation-dependent tRNA catabolic process
## 10154 nuclear pore localization
## 10155 nuclear pore transmembrane ring
## 10156 nuclear RNA-directed RNA polymerase complex
## 10157 nuclear ubiquitin ligase complex
## 10158 nuclear-transcribed mRNA catabolic process, exonucleolytic
## 10159 nuclear-transcribed mRNA catabolic process, no-go decay
## 10160 nucleic acid transmembrane transporter activity
## 10161 nucleobase-containing compound transport
## 10162 nucleokinesis involved in cell motility in cerebral cortex radial glia guided migration
## 10163 nucleologenesis
## 10164 nucleolus organization
## 10165 nucleolus organizer region
## 10166 nucleoplasmic reticulum
## 10167 nucleoside phosphate metabolic process
## 10168 nucleoside triphosphate catabolic process
## 10169 nucleosome organization
## 10170 nucleotidase activity
## 10171 nucleotide phosphatase activity, acting on free nucleotides
## 10172 nucleotide-excision repair factor 3 complex
## 10173 nucleotide-excision repair, DNA damage removal
## 10174 nucleotide-sugar biosynthetic process
## 10175 nucleotide-sugar metabolic process
## 10176 nucleotide-sugar transmembrane transporter activity
## 10177 nucleus-vacuole junction
## 10178 O-acetyl-ADP-ribose deacetylase activity
## 10179 O-glycan processing, core 1
## 10180 O-phospho-L-serine:2-oxoglutarate aminotransferase activity
## 10181 octanoyl transferase activity (acting on glycine-cleavage complex H protein)
## 10182 octanoyltransferase activity
## 10183 odontoblast differentiation
## 10184 oleamide hydrolase activity
## 10185 oleic acid binding
## 10186 olfactory behavior
## 10187 olfactory bulb interneuron development
## 10188 olfactory bulb interneuron differentiation
## 10189 olfactory nerve development
## 10190 olfactory receptor activity
## 10191 oligopeptidase activity
## 10192 oligopeptide transmembrane transporter activity
## 10193 oligosaccharide-lipid intermediate biosynthetic process
## 10194 oligosaccharyltransferase I complex
## 10195 oligosaccharyltransferase III complex
## 10196 omegasome
## 10197 oncogene-induced cell senescence
## 10198 oncosis
## 10199 oncostatin-M receptor activity
## 10200 oncostatin-M receptor complex
## 10201 oncostatin-M-mediated signaling pathway
## 10202 oocyte growth
## 10203 opioid peptide activity
## 10204 opioid receptor activity
## 10205 opioid receptor signaling pathway
## 10206 opsin binding
## 10207 opsonin binding
## 10208 opsonin receptor activity
## 10209 optic nerve morphogenesis
## 10210 optic nerve structural organization
## 10211 optic placode formation involved in camera-type eye formation
## 10212 orcinol O-methyltransferase activity
## 10213 organ induction
## 10214 organ or tissue specific immune response
## 10215 organelle fusion
## 10216 organelle transport along microtubule
## 10217 organic acid metabolic process
## 10218 organic cyclic compound binding
## 10219 organic substance metabolic process
## 10220 organic substance transport
## 10221 ornithine biosynthetic process
## 10222 ornithine decarboxylase activator activity
## 10223 ornithine decarboxylase activity
## 10224 ornithine decarboxylase inhibitor activity
## 10225 ornithine metabolic process
## 10226 osmosensory signaling pathway
## 10227 osteoclast fusion
## 10228 otic vesicle development
## 10229 outer acrosomal membrane
## 10230 outer dense plaque of desmosome
## 10231 outer dynein arm
## 10232 outer ear morphogenesis
## 10233 outer membrane
## 10234 outer mitochondrial membrane protein complex
## 10235 ovarian cumulus expansion
## 10236 ovarian follicle rupture
## 10237 ovulation cycle
## 10238 ovulation cycle process
## 10239 ovulation from ovarian follicle
## 10240 oxidation-dependent protein catabolic process
## 10241 oxidative DNA demethylase activity
## 10242 oxidative phosphorylation uncoupler activity
## 10243 oxidative single-stranded DNA demethylation
## 10244 oxidative single-stranded RNA demethylation
## 10245 oxidative stress-induced premature senescence
## 10246 oxidized DNA binding
## 10247 oxidized pyrimidine DNA binding
## 10248 oxidoreductase activity, acting on a sulfur group of donors
## 10249 oxidoreductase activity, acting on a sulfur group of donors, NAD(P) as acceptor
## 10250 oxidoreductase activity, acting on other nitrogenous compounds as donors
## 10251 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen
## 10252 oxidoreductase activity, acting on peroxide as acceptor
## 10253 oxo-acid-lyase activity
## 10254 oxoglutarate dehydrogenase (succinyl-transferring) activity
## 10255 oxoglutarate:malate antiporter activity
## 10256 oxygen metabolic process
## 10257 P granule organization
## 10258 P-P-bond-hydrolysis-driven protein transmembrane transporter activity
## 10259 P-TEFb complex binding
## 10260 palmitoleoyltransferase activity
## 10261 palmitoyl-CoA 9-desaturase activity
## 10262 palmitoyl-CoA ligase activity
## 10263 palmitoyl-CoA oxidase activity
## 10264 palmitoyltransferase complex
## 10265 PAM complex, Tim23 associated import motor
## 10266 PAN complex
## 10267 pancreas development
## 10268 pancreatic juice secretion
## 10269 pantetheine hydrolase activity
## 10270 pantetheine-phosphate adenylyltransferase activity
## 10271 pantothenate kinase activity
## 10272 parathyroid hormone secretion
## 10273 paraxial mesoderm development
## 10274 paraxial mesoderm morphogenesis
## 10275 parental behavior
## 10276 Parkin-FBXW7-Cul1 ubiquitin ligase complex
## 10277 parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## 10278 PAS complex
## 10279 patched binding
## 10280 pattern recognition receptor signaling pathway
## 10281 PCNA complex
## 10282 PCNA-p21 complex
## 10283 PCSK9-AnxA2 complex
## 10284 PCSK9-LDLR complex
## 10285 penetration of zona pellucida
## 10286 penile erection
## 10287 pentameric IgM immunoglobulin complex
## 10288 pentose biosynthetic process
## 10289 pentose transmembrane transport
## 10290 pentose transmembrane transporter activity
## 10291 peptide 2-hydroxyisobutyryltransferase activity
## 10292 peptide amidation
## 10293 peptide antigen assembly with MHC class I protein complex
## 10294 peptide antigen stabilization
## 10295 peptide antigen transport
## 10296 peptide biosynthetic process
## 10297 peptide butyryltransferase activity
## 10298 peptide cross-linking via chondroitin 4-sulfate glycosaminoglycan
## 10299 peptide glutaryltransferase activity
## 10300 peptide hormone secretion
## 10301 peptide modification
## 10302 peptide secretion
## 10303 peptide-glutamate-N-acetyltransferase activity
## 10304 peptide-N4-(N-acetyl-beta-glucosaminyl)asparagine amidase activity
## 10305 peptide-serine-N-acetyltransferase activity
## 10306 peptidoglycan glycosyltransferase activity
## 10307 peptidoglycan immune receptor activity
## 10308 peptidyl-arginine deglycation
## 10309 peptidyl-asparagine 3-dioxygenase activity
## 10310 peptidyl-asparagine hydroxylation
## 10311 peptidyl-aspartic acid autophosphorylation
## 10312 peptidyl-aspartic acid hydroxylation
## 10313 peptidyl-cysteine deglycation
## 10314 peptidyl-cysteine methylation
## 10315 peptidyl-cysteine oxidation
## 10316 peptidyl-cysteine S-nitrosylase activity
## 10317 peptidyl-cysteine S-trans-nitrosylation
## 10318 peptidyl-glutamine methylation
## 10319 peptidyl-histidine dephosphorylation
## 10320 peptidyl-histidine dioxygenase activity
## 10321 peptidyl-histidine hydroxylation
## 10322 peptidyl-histidine phosphorylation
## 10323 peptidyl-lysine acetyltransferase activity
## 10324 peptidyl-lysine butyrylation
## 10325 peptidyl-lysine crotonylation
## 10326 peptidyl-lysine deglycation
## 10327 peptidyl-lysine demalonylation
## 10328 peptidyl-lysine dimethylation
## 10329 peptidyl-lysine glutarylation
## 10330 peptidyl-lysine modification to peptidyl-hypusine
## 10331 peptidyl-lysine propionylation
## 10332 peptidyl-methionine modification
## 10333 peptidyl-proline 4-dioxygenase activity
## 10334 peptidyl-proline dioxygenase activity
## 10335 peptidyl-proline hydroxylation
## 10336 peptidyl-proline hydroxylation to 3-hydroxy-L-proline
## 10337 peptidyl-serine ADP-deribosylation
## 10338 peptidyl-tyrosine sulfation
## 10339 peptidylamidoglycolate lyase activity
## 10340 peptidylglycine monooxygenase activity
## 10341 pericentric heterochromatin assembly
## 10342 pericyte cell differentiation
## 10343 perinucleolar chromocenter
## 10344 peripheral nervous system axon regeneration
## 10345 peripheral nervous system myelin formation
## 10346 peristalsis
## 10347 peroxidase inhibitor activity
## 10348 peroxiredoxin activity
## 10349 peroxisomal membrane transport
## 10350 peroxisome matrix targeting signal-1 binding
## 10351 peroxisome membrane class-1 targeting sequence binding
## 10352 peroxisome transport along microtubule
## 10353 peroxynitrite isomerase activity
## 10354 PET complex
## 10355 Peyer's patch development
## 10356 PH domain binding
## 10357 phagolysosome assembly
## 10358 phagolysosome assembly involved in apoptotic cell clearance
## 10359 phagolysosome membrane
## 10360 phagosome-lysosome docking
## 10361 phagosome-lysosome fusion involved in apoptotic cell clearance
## 10362 pharyngeal arch artery morphogenesis
## 10363 pharynx development
## 10364 phenanthrene-9,10-epoxide hydrolase activity
## 10365 phenotypic switching
## 10366 phenylacetate catabolic process
## 10367 phenylalanine 4-monooxygenase activity
## 10368 phenylalanine-tRNA ligase complex
## 10369 phosphate ion transmembrane transporter activity
## 10370 phosphate:proton symporter activity
## 10371 phosphatidate cytidylyltransferase activity
## 10372 phosphatidyl-N-dimethylethanolamine N-methyltransferase activity
## 10373 phosphatidyl-N-methylethanolamine N-methyltransferase activity
## 10374 phosphatidylethanolamine N-methyltransferase activity
## 10375 phosphatidylglycerol binding
## 10376 phosphatidylglycerol metabolic process
## 10377 phosphatidylglycerophosphatase activity
## 10378 phosphatidylinositol 3-kinase complex, class III
## 10379 phosphatidylinositol 3-kinase complex, class III, type I
## 10380 phosphatidylinositol 3-kinase complex, class III, type II
## 10381 phosphatidylinositol 3-kinase regulatory subunit binding
## 10382 phosphatidylinositol bisphosphate phosphatase activity
## 10383 phosphatidylinositol deacylase activity
## 10384 phosphatidylinositol trisphosphate phosphatase activity
## 10385 phosphatidylinositol-3,4-bisphosphate 4-phosphatase activity
## 10386 phosphatidylinositol-3,4,5-trisphosphate 3-phosphatase activity
## 10387 phosphatidylinositol-3,5-bisphosphate phosphatase activity
## 10388 phosphatidylinositol-4,5-bisphosphate phosphatase activity
## 10389 phosphatidylserine catabolic process
## 10390 phosphatidylserine exposure on apoptotic cell surface
## 10391 phosphatidylserine exposure on blood platelet
## 10392 phosphatidylserine floppase activity
## 10393 phosphatidylserine transfer activity
## 10394 phosphoacetylglucosamine mutase activity
## 10395 phosphoanandamide dephosphorylation
## 10396 phosphocreatine biosynthetic process
## 10397 phosphodiesterase decapping endonuclease activity
## 10398 phosphoenolpyruvate carboxykinase (GTP) activity
## 10399 phosphoenolpyruvate carboxykinase activity
## 10400 phosphofructokinase activity
## 10401 phosphoglucomutase activity
## 10402 phosphoglycolate phosphatase activity
## 10403 phospholipase A2 activator activity
## 10404 phospholipase C-activating G protein-coupled acetylcholine receptor signaling pathway
## 10405 phospholipase C-inhibiting G protein-coupled receptor signaling pathway
## 10406 phosphomannomutase activity
## 10407 phosphomevalonate kinase activity
## 10408 phosphopantothenate--cysteine ligase activity
## 10409 phosphopantothenoylcysteine decarboxylase activity
## 10410 phosphopantothenoylcysteine decarboxylase complex
## 10411 phosphorelay signal transduction system
## 10412 phosphoribosylamine-glycine ligase activity
## 10413 phosphoribosylaminoimidazole carboxylase activity
## 10414 phosphoribosylaminoimidazolesuccinocarboxamide synthase activity
## 10415 phosphoribosylformylglycinamidine cyclo-ligase activity
## 10416 phosphoribosylglycinamide formyltransferase activity
## 10417 phosphorylase kinase activity
## 10418 phosphorylated histone binding
## 10419 phosphorylation-dependent protein binding
## 10420 phosphoserine phosphatase activity
## 10421 phosphoserine residue binding
## 10422 phosphothreonine residue binding
## 10423 photoperiodism
## 10424 photoreceptor cell development
## 10425 photoreceptor distal connecting cilium
## 10426 photoreceptor inner segment membrane
## 10427 phototransduction, visible light
## 10428 phytanate-CoA ligase activity
## 10429 phytanoyl-CoA dioxygenase activity
## 10430 pigment granule aggregation in cell center
## 10431 pigment metabolic process involved in pigmentation
## 10432 pinceau fiber
## 10433 pinocytosis
## 10434 piP-body
## 10435 piRNA binding
## 10436 placental growth factor-activated receptor activity
## 10437 planar cell polarity pathway involved in axon guidance
## 10438 plasma cell differentiation
## 10439 plasma kallikrein-kinin cascade
## 10440 plasma lipoprotein particle oxidation
## 10441 plasma membrane ATP synthesis coupled electron transport
## 10442 plasma membrane bounded cell projection
## 10443 plasma membrane bounded cell projection cytoplasm
## 10444 plasma membrane fusion
## 10445 plasma membrane raft organization
## 10446 plasmacytoid dendritic cell differentiation
## 10447 plasmalogen synthase activity
## 10448 plasminogen activation
## 10449 platelet activating factor biosynthetic process
## 10450 platelet activating factor catabolic process
## 10451 platelet activating factor receptor activity
## 10452 platelet activating factor receptor binding
## 10453 platelet dense granule lumen
## 10454 platelet dense tubular network
## 10455 platelet maturation
## 10456 platelet-activating factor acetyltransferase activity
## 10457 platelet-derived growth factor receptor-beta signaling pathway
## 10458 plus-end kinesin complex
## 10459 podosome assembly
## 10460 polar body extrusion after meiotic divisions
## 10461 polar microtubule
## 10462 polarized epithelial cell differentiation
## 10463 pole plasm
## 10464 pole plasm assembly
## 10465 poly-ADP-D-ribose binding
## 10466 poly-gamma-glutamate metabolic process
## 10467 poly-pyrimidine tract binding
## 10468 polyamine catabolic process
## 10469 polyamine deacetylation
## 10470 polyamine homeostasis
## 10471 polyamine oxidase activity
## 10472 polyamine transmembrane transport
## 10473 polycystin complex
## 10474 polynucleotide 3' dephosphorylation
## 10475 polynucleotide 3'-phosphatase activity
## 10476 polynucleotide 5' dephosphorylation
## 10477 polynucleotide 5'-phosphatase activity
## 10478 polyol transmembrane transporter activity
## 10479 polyol transport
## 10480 polyprenol catabolic process
## 10481 polyprenol reductase activity
## 10482 polyribonucleotide nucleotidyltransferase activity
## 10483 polysaccharide biosynthetic process
## 10484 polysaccharide catabolic process
## 10485 polysaccharide digestion
## 10486 polysaccharide metabolic process
## 10487 polysaccharide transport
## 10488 pore formation in membrane of other organism
## 10489 porphyrin-containing compound metabolic process
## 10490 positive regulation blood vessel branching
## 10491 positive regulation by host of symbiont catalytic activity
## 10492 positive regulation by symbiont of host autophagy
## 10493 positive regulation of 1-phosphatidylinositol 4-kinase activity
## 10494 positive regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## 10495 positive regulation of 3'-UTR-mediated mRNA stabilization
## 10496 positive regulation of acetylcholine secretion, neurotransmission
## 10497 positive regulation of acrosomal vesicle exocytosis
## 10498 positive regulation of activated T cell autonomous cell death
## 10499 positive regulation of activation of Janus kinase activity
## 10500 positive regulation of acute inflammatory response to antigenic stimulus
## 10501 positive regulation of acute inflammatory response to non-antigenic stimulus
## 10502 positive regulation of adaptive immune memory response
## 10503 positive regulation of adenosine receptor signaling pathway
## 10504 positive regulation of aggrephagy
## 10505 positive regulation of aldosterone biosynthetic process
## 10506 positive regulation of aldosterone secretion
## 10507 positive regulation of alkaline phosphatase activity
## 10508 positive regulation of alpha-beta T cell activation
## 10509 positive regulation of alpha-beta T cell differentiation
## 10510 positive regulation of amyloid fibril formation
## 10511 positive regulation of amyloid precursor protein biosynthetic process
## 10512 positive regulation of anterograde dense core granule transport
## 10513 positive regulation of antibacterial peptide biosynthetic process
## 10514 positive regulation of antifungal innate immune response
## 10515 positive regulation of antigen processing and presentation
## 10516 positive regulation of antigen processing and presentation of peptide antigen via MHC class II
## 10517 positive regulation of antral ovarian follicle growth
## 10518 positive regulation of aortic smooth muscle cell differentiation
## 10519 positive regulation of apoptotic cell clearance
## 10520 positive regulation of apoptotic process by virus
## 10521 positive regulation of apoptotic process involved in mammary gland involution
## 10522 positive regulation of apoptotic process involved in morphogenesis
## 10523 positive regulation of arachidonic acid secretion
## 10524 positive regulation of aspartate secretion
## 10525 positive regulation of atrial cardiac muscle cell action potential
## 10526 positive regulation of autophagy in response to ER overload
## 10527 positive regulation of axon extension involved in regeneration
## 10528 positive regulation of beta-galactosidase activity
## 10529 positive regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## 10530 positive regulation of blood microparticle formation
## 10531 positive regulation of blood pressure
## 10532 positive regulation of blood-brain barrier permeability
## 10533 positive regulation of bone development
## 10534 positive regulation of bone mineralization involved in bone maturation
## 10535 positive regulation of branching morphogenesis of a nerve
## 10536 positive regulation of calcidiol 1-monooxygenase activity
## 10537 positive regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## 10538 positive regulation of calcium-dependent cell-cell adhesion
## 10539 positive regulation of cap-dependent translational initiation
## 10540 positive regulation of cardiac epithelial to mesenchymal transition
## 10541 positive regulation of cardiac muscle contraction
## 10542 positive regulation of cardiac muscle myoblast proliferation
## 10543 positive regulation of cardiac muscle tissue development
## 10544 positive regulation of cardiac vascular smooth muscle cell differentiation
## 10545 positive regulation of cardioblast differentiation
## 10546 positive regulation of cardiolipin metabolic process
## 10547 positive regulation of caveolin-mediated endocytosis
## 10548 positive regulation of CD4-positive, alpha-beta T cell costimulation
## 10549 positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## 10550 positive regulation of CD8-positive, alpha-beta T cell proliferation
## 10551 positive regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## 10552 positive regulation of cell adhesion molecule production
## 10553 positive regulation of cell aging
## 10554 positive regulation of cell maturation
## 10555 positive regulation of cell migration by vascular endothelial growth factor signaling pathway
## 10556 positive regulation of cell proliferation by VEGF-activated platelet derived growth factor receptor signaling pathway
## 10557 positive regulation of cell proliferation involved in heart morphogenesis
## 10558 positive regulation of cell proliferation involved in heart valve morphogenesis
## 10559 positive regulation of cell size
## 10560 positive regulation of cell volume
## 10561 positive regulation of cell-cell adhesion mediated by cadherin
## 10562 positive regulation of cellular amino acid metabolic process
## 10563 positive regulation of cellular component organization
## 10564 positive regulation of cellular glucuronidation
## 10565 positive regulation of cellular response to macrophage colony-stimulating factor stimulus
## 10566 positive regulation of centriole replication
## 10567 positive regulation of cerebellar granule cell precursor proliferation
## 10568 positive regulation of chaperone-mediated protein complex assembly
## 10569 positive regulation of chaperone-mediated protein folding
## 10570 positive regulation of chemokine (C-C motif) ligand 5 production
## 10571 positive regulation of chemokine (C-X-C motif) ligand 1 production
## 10572 positive regulation of chemokine-mediated signaling pathway
## 10573 positive regulation of cholesterol esterification
## 10574 positive regulation of cholesterol import
## 10575 positive regulation of cholesterol metabolic process
## 10576 positive regulation of chromatin silencing
## 10577 positive regulation of chromatin silencing at telomere
## 10578 positive regulation of chromosome organization
## 10579 positive regulation of circadian sleep/wake cycle, sleep
## 10580 positive regulation of clathrin coat assembly
## 10581 positive regulation of CoA-transferase activity
## 10582 positive regulation of collagen catabolic process
## 10583 positive regulation of collateral sprouting of injured axon
## 10584 positive regulation of complement activation
## 10585 positive regulation of connective tissue growth factor production
## 10586 positive regulation of corticotropin secretion
## 10587 positive regulation of cyclase activity
## 10588 positive regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## 10589 positive regulation of cytoplasmic translational initiation
## 10590 positive regulation of cytotoxic T cell differentiation
## 10591 positive regulation of defense response to bacterium
## 10592 positive regulation of delayed rectifier potassium channel activity
## 10593 positive regulation of dendritic spine maintenance
## 10594 positive regulation of deoxyribonuclease activity
## 10595 positive regulation of determination of dorsal identity
## 10596 positive regulation of developmental growth
## 10597 positive regulation of developmental pigmentation
## 10598 positive regulation of DNA catabolic process
## 10599 positive regulation of DNA damage checkpoint
## 10600 positive regulation of DNA helicase activity
## 10601 positive regulation of DNA ligase activity
## 10602 positive regulation of DNA methylation
## 10603 positive regulation of DNA N-glycosylase activity
## 10604 positive regulation of DNA recombination
## 10605 positive regulation of DNA-dependent DNA replication
## 10606 positive regulation of DNA-dependent DNA replication initiation
## 10607 positive regulation of DNA-templated transcription, termination
## 10608 positive regulation of dopamine biosynthetic process
## 10609 positive regulation of eating behavior
## 10610 positive regulation of endocytic recycling
## 10611 positive regulation of endoplasmic reticulum calcium ion concentration
## 10612 positive regulation of endoplasmic reticulum tubular network organization
## 10613 positive regulation of endoribonuclease activity
## 10614 positive regulation of endosome organization
## 10615 positive regulation of endosome to plasma membrane protein transport
## 10616 positive regulation of endothelial cell chemotaxis to fibroblast growth factor
## 10617 positive regulation of eosinophil degranulation
## 10618 positive regulation of epidermal cell differentiation
## 10619 positive regulation of epidermis development
## 10620 positive regulation of epithelial cell differentiation
## 10621 positive regulation of erythrocyte aggregation
## 10622 positive regulation of establishment of endothelial barrier
## 10623 positive regulation of exoribonuclease activity
## 10624 positive regulation of Fc receptor mediated stimulatory signaling pathway
## 10625 positive regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## 10626 positive regulation of female receptivity
## 10627 positive regulation of ferrous iron binding
## 10628 positive regulation of fertilization
## 10629 positive regulation of fever generation
## 10630 positive regulation of fibrinolysis
## 10631 positive regulation of fibronectin-dependent thymocyte migration
## 10632 positive regulation of follicle-stimulating hormone secretion
## 10633 positive regulation of fractalkine production
## 10634 positive regulation of G0 to G1 transition
## 10635 positive regulation of G1 to G0 transition
## 10636 positive regulation of G2/MI transition of meiotic cell cycle
## 10637 positive regulation of gamma-delta T cell activation
## 10638 positive regulation of gamma-delta T cell activation involved in immune response
## 10639 positive regulation of gastro-intestinal system smooth muscle contraction
## 10640 positive regulation of gastrulation
## 10641 positive regulation of glial cell apoptotic process
## 10642 positive regulation of glial cell migration
## 10643 positive regulation of gliogenesis
## 10644 positive regulation of glomerular mesangial cell proliferation
## 10645 positive regulation of glutamate receptor signaling pathway
## 10646 positive regulation of glutamate uptake involved in transmission of nerve impulse
## 10647 positive regulation of glutathione biosynthetic process
## 10648 positive regulation of glycogen catabolic process
## 10649 positive regulation of glycoprotein biosynthetic process involved in immunological synapse formation
## 10650 positive regulation of granulocyte colony-stimulating factor production
## 10651 positive regulation of granulosa cell apoptotic process
## 10652 positive regulation of granulosa cell proliferation
## 10653 positive regulation of growth rate
## 10654 positive regulation of heart contraction
## 10655 positive regulation of heat generation
## 10656 positive regulation of hematopoietic progenitor cell differentiation
## 10657 positive regulation of heparan sulfate proteoglycan biosynthetic process
## 10658 positive regulation of hepatic stellate cell proliferation
## 10659 positive regulation of heterochromatin assembly
## 10660 positive regulation of hexokinase activity
## 10661 positive regulation of high-density lipoprotein particle clearance
## 10662 positive regulation of hippocampal neuron apoptotic process
## 10663 positive regulation of histone deubiquitination
## 10664 positive regulation of histone H3-K14 acetylation
## 10665 positive regulation of histone H3-K36 methylation
## 10666 positive regulation of histone H3-K36 trimethylation
## 10667 positive regulation of histone H3-K4 trimethylation
## 10668 positive regulation of histone H3-K9 trimethylation
## 10669 positive regulation of histone H4-K16 acetylation
## 10670 positive regulation of histone H4-K20 methylation
## 10671 positive regulation of homocysteine metabolic process
## 10672 positive regulation of homotypic cell-cell adhesion
## 10673 positive regulation of hyaluronan biosynthetic process
## 10674 positive regulation of hydrogen peroxide catabolic process
## 10675 positive regulation of hydrogen sulfide biosynthetic process
## 10676 positive regulation of hydrolase activity
## 10677 positive regulation of hypersensitivity
## 10678 positive regulation of immature T cell proliferation in thymus
## 10679 positive regulation of immunological synapse formation
## 10680 positive regulation of inflammatory response to antigenic stimulus
## 10681 positive regulation of inhibitory postsynaptic potential
## 10682 positive regulation of inhibitory synapse assembly
## 10683 positive regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## 10684 positive regulation of inositol trisphosphate biosynthetic process
## 10685 positive regulation of inositol-polyphosphate 5-phosphatase activity
## 10686 positive regulation of integrin activation by cell surface receptor linked signal transduction
## 10687 positive regulation of interleukin-1 production
## 10688 positive regulation of interleukin-1-mediated signaling pathway
## 10689 positive regulation of interleukin-15 production
## 10690 positive regulation of interleukin-33 production
## 10691 positive regulation of interleukin-4-dependent isotype switching to IgE isotypes
## 10692 positive regulation of interleukin-6-mediated signaling pathway
## 10693 positive regulation of intracellular cholesterol transport
## 10694 positive regulation of intracellular mRNA localization
## 10695 positive regulation of intracellular signal transduction
## 10696 positive regulation of intracellular transport of viral material
## 10697 positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## 10698 positive regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## 10699 positive regulation of ion transport
## 10700 positive regulation of isotype switching to IgE isotypes
## 10701 positive regulation of keratinocyte proliferation
## 10702 positive regulation of L-dopa biosynthetic process
## 10703 positive regulation of L-dopa decarboxylase activity
## 10704 positive regulation of L-glutamate import across plasma membrane
## 10705 positive regulation of lactation
## 10706 positive regulation of late endosome to lysosome transport
## 10707 positive regulation of lateral attachment of mitotic spindle microtubules to kinetochore
## 10708 positive regulation of leukocyte adhesion to arterial endothelial cell
## 10709 positive regulation of leukotriene production involved in inflammatory response
## 10710 positive regulation of ligase activity
## 10711 positive regulation of lipid transport
## 10712 positive regulation of lipoprotein metabolic process
## 10713 positive regulation of long-term neuronal synaptic plasticity
## 10714 positive regulation of long-term synaptic depression
## 10715 positive regulation of low-density lipoprotein particle clearance
## 10716 positive regulation of low-density lipoprotein particle receptor binding
## 10717 positive regulation of luteinizing hormone secretion
## 10718 positive regulation of lymphocyte differentiation
## 10719 positive regulation of lymphocyte proliferation
## 10720 positive regulation of lysosomal membrane permeability
## 10721 positive regulation of macromolecule biosynthetic process
## 10722 positive regulation of macrophage apoptotic process
## 10723 positive regulation of macrophage colony-stimulating factor signaling pathway
## 10724 positive regulation of macrophage migration
## 10725 positive regulation of macrophage migration inhibitory factor signaling pathway
## 10726 positive regulation of macrophage tolerance induction
## 10727 positive regulation of male germ cell proliferation
## 10728 positive regulation of male gonad development
## 10729 positive regulation of mast cell activation
## 10730 positive regulation of mast cell activation involved in immune response
## 10731 positive regulation of maternal process involved in parturition
## 10732 positive regulation of meiotic nuclear division
## 10733 positive regulation of melanocyte differentiation
## 10734 positive regulation of membrane potential
## 10735 positive regulation of membrane tubulation
## 10736 positive regulation of mesenchymal stem cell differentiation
## 10737 positive regulation of mesenchymal stem cell migration
## 10738 positive regulation of metalloendopeptidase activity
## 10739 positive regulation of metallopeptidase activity
## 10740 positive regulation of metanephric cap mesenchymal cell proliferation
## 10741 positive regulation of microglia differentiation
## 10742 positive regulation of microtubule depolymerization
## 10743 positive regulation of mini excitatory postsynaptic potential
## 10744 positive regulation of miRNA catabolic process
## 10745 positive regulation of miRNA metabolic process
## 10746 positive regulation of mismatch repair
## 10747 positive regulation of mitochondrial electron transport, NADH to ubiquinone
## 10748 positive regulation of mitochondrial RNA catabolic process
## 10749 positive regulation of mitophagy
## 10750 positive regulation of mitotic cohesin loading
## 10751 positive regulation of mitotic cytokinetic process
## 10752 positive regulation of mitotic recombination
## 10753 positive regulation of mitotic spindle elongation
## 10754 positive regulation of mononuclear cell proliferation
## 10755 positive regulation of monooxygenase activity
## 10756 positive regulation of mRNA 3'-UTR binding
## 10757 positive regulation of mRNA cleavage
## 10758 positive regulation of muscle contraction
## 10759 positive regulation of muscle hyperplasia
## 10760 positive regulation of myeloid dendritic cell activation
## 10761 positive regulation of myeloid dendritic cell chemotaxis
## 10762 positive regulation of myosin-light-chain-phosphatase activity
## 10763 positive regulation of NAD+ ADP-ribosyltransferase activity
## 10764 positive regulation of natural killer cell chemotaxis
## 10765 positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## 10766 positive regulation of natural killer cell mediated immune response to tumor cell
## 10767 positive regulation of natural killer cell proliferation
## 10768 positive regulation of necroptotic process
## 10769 positive regulation of nephron tubule epithelial cell differentiation
## 10770 positive regulation of neuroinflammatory response
## 10771 positive regulation of neuromuscular junction development
## 10772 positive regulation of neurotrophin TRK receptor signaling pathway
## 10773 positive regulation of neutrophil apoptotic process
## 10774 positive regulation of neutrophil differentiation
## 10775 positive regulation of nitric oxide mediated signal transduction
## 10776 positive regulation of nitrogen compound metabolic process
## 10777 positive regulation of NK T cell activation
## 10778 positive regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## 10779 positive regulation of non-canonical Wnt signaling pathway via JNK cascade
## 10780 positive regulation of norepinephrine secretion
## 10781 positive regulation of norepinephrine uptake
## 10782 positive regulation of nuclease activity
## 10783 positive regulation of odontoblast differentiation
## 10784 positive regulation of odontogenesis
## 10785 positive regulation of odontogenesis of dentin-containing tooth
## 10786 positive regulation of oocyte development
## 10787 positive regulation of organelle assembly
## 10788 positive regulation of ovarian follicle development
## 10789 positive regulation of oxidative phosphorylation
## 10790 positive regulation of oxidative phosphorylation uncoupler activity
## 10791 positive regulation of oxidative stress-induced neuron death
## 10792 positive regulation of oxygen metabolic process
## 10793 positive regulation of pancreatic juice secretion
## 10794 positive regulation of pattern recognition receptor signaling pathway
## 10795 positive regulation of peptidyl-serine phosphorylation of STAT protein
## 10796 positive regulation of peripheral T cell tolerance induction
## 10797 positive regulation of peroxisome proliferator activated receptor signaling pathway
## 10798 positive regulation of phosphatidylcholine biosynthetic process
## 10799 positive regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## 10800 positive regulation of phospholipid biosynthetic process
## 10801 positive regulation of phospholipid translocation
## 10802 positive regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## 10803 positive regulation of plasma cell differentiation
## 10804 positive regulation of platelet activation
## 10805 positive regulation of platelet-derived growth factor receptor-beta signaling pathway
## 10806 positive regulation of polyamine transmembrane transport
## 10807 positive regulation of polysome binding
## 10808 positive regulation of potassium ion import across plasma membrane
## 10809 positive regulation of potassium ion transmembrane transporter activity
## 10810 positive regulation of presynaptic cytosolic calcium concentration
## 10811 positive regulation of pro-B cell differentiation
## 10812 positive regulation of prostaglandin biosynthetic process
## 10813 positive regulation of prostaglandin secretion
## 10814 positive regulation of prostaglandin-endoperoxide synthase activity
## 10815 positive regulation of proteasomal ubiquitin-dependent protein catabolic process involved in cellular response to hypoxia
## 10816 positive regulation of protein catabolic process in the vacuole
## 10817 positive regulation of protein exit from endoplasmic reticulum
## 10818 positive regulation of protein glycosylation
## 10819 positive regulation of protein glycosylation in Golgi
## 10820 positive regulation of protein homooligomerization
## 10821 positive regulation of protein import
## 10822 positive regulation of protein K63-linked deubiquitination
## 10823 positive regulation of protein kinase D signaling
## 10824 positive regulation of protein lipidation
## 10825 positive regulation of protein localization to actin cortical patch
## 10826 positive regulation of protein localization to cell-cell junction
## 10827 positive regulation of protein localization to ciliary membrane
## 10828 positive regulation of protein localization to endoplasmic reticulum
## 10829 positive regulation of protein localization to lysosome
## 10830 positive regulation of protein localization to phagocytic vesicle
## 10831 positive regulation of protein localization to presynapse
## 10832 positive regulation of protein localization to spindle pole body
## 10833 positive regulation of protein O-linked glycosylation
## 10834 positive regulation of protein oxidation
## 10835 positive regulation of protein polymerization
## 10836 positive regulation of protein-glutamine gamma-glutamyltransferase activity
## 10837 positive regulation of proteoglycan biosynthetic process
## 10838 positive regulation of proteolysis involved in cellular protein catabolic process
## 10839 positive regulation of pyrroline-5-carboxylate reductase activity
## 10840 positive regulation of pyruvate dehydrogenase activity
## 10841 positive regulation of receptor localization to synapse
## 10842 positive regulation of receptor signaling pathway via STAT
## 10843 positive regulation of receptor-mediated endocytosis involved in cholesterol transport
## 10844 positive regulation of reciprocal meiotic recombination
## 10845 positive regulation of regulation of vascular associated smooth muscle cell membrane depolarization
## 10846 positive regulation of renal water transport
## 10847 positive regulation of respiratory burst involved in inflammatory response
## 10848 positive regulation of response to oxidative stress
## 10849 positive regulation of retinal ganglion cell axon guidance
## 10850 positive regulation of retinoic acid biosynthetic process
## 10851 positive regulation of retinoic acid receptor signaling pathway
## 10852 positive regulation of reverse cholesterol transport
## 10853 positive regulation of RNA binding
## 10854 positive regulation of Schwann cell differentiation
## 10855 positive regulation of Schwann cell migration
## 10856 positive regulation of secretion of lysosomal enzymes
## 10857 positive regulation of sequestering of calcium ion
## 10858 positive regulation of serine C-palmitoyltransferase activity
## 10859 positive regulation of serotonin secretion
## 10860 positive regulation of single strand break repair
## 10861 positive regulation of single stranded viral RNA replication via double stranded DNA intermediate
## 10862 positive regulation of single-stranded telomeric DNA binding
## 10863 positive regulation of skeletal muscle cell differentiation
## 10864 positive regulation of skeletal muscle cell proliferation
## 10865 positive regulation of skeletal muscle contraction by regulation of release of sequestered calcium ion
## 10866 positive regulation of skeletal muscle hypertrophy
## 10867 positive regulation of skeletal muscle tissue growth
## 10868 positive regulation of skeletal muscle tissue regeneration
## 10869 positive regulation of smooth muscle cell chemotaxis
## 10870 positive regulation of smooth muscle cell-matrix adhesion
## 10871 positive regulation of sodium ion transmembrane transporter activity
## 10872 positive regulation of sodium-dependent phosphate transport
## 10873 positive regulation of sodium:proton antiporter activity
## 10874 positive regulation of spermidine biosynthetic process
## 10875 positive regulation of steroid hormone biosynthetic process
## 10876 positive regulation of steroid metabolic process
## 10877 positive regulation of strand invasion
## 10878 positive regulation of stress granule assembly
## 10879 positive regulation of striated muscle contraction
## 10880 positive regulation of substrate-dependent cell migration, cell attachment to substrate
## 10881 positive regulation of subtelomeric heterochromatin assembly
## 10882 positive regulation of succinate dehydrogenase activity
## 10883 positive regulation of supramolecular fiber organization
## 10884 positive regulation of synapse structural plasticity
## 10885 positive regulation of synaptic transmission, dopaminergic
## 10886 positive regulation of synaptic vesicle exocytosis
## 10887 positive regulation of synaptic vesicle priming
## 10888 positive regulation of synaptic vesicle recycling
## 10889 positive regulation of synoviocyte proliferation
## 10890 positive regulation of T cell apoptotic process
## 10891 positive regulation of T cell mediated cytotoxicity directed against tumor cell target
## 10892 positive regulation of T-helper 1 cell differentiation
## 10893 positive regulation of T-helper 17 cell differentiation
## 10894 positive regulation of T-helper 17 cell lineage commitment
## 10895 positive regulation of T-helper 17 type immune response
## 10896 positive regulation of T-helper cell differentiation
## 10897 positive regulation of telomeric DNA binding
## 10898 positive regulation of telomeric loop disassembly
## 10899 positive regulation of telomeric RNA transcription from RNA pol II promoter
## 10900 positive regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## 10901 positive regulation of thyroid hormone generation
## 10902 positive regulation of timing of anagen
## 10903 positive regulation of tissue remodeling
## 10904 positive regulation of tolerance induction
## 10905 positive regulation of toll-like receptor signaling pathway
## 10906 positive regulation of TRAIL production
## 10907 positive regulation of transcription by glucose
## 10908 positive regulation of transcription by transcription factor localization
## 10909 positive regulation of transcription from RNA polymerase II promoter by galactose
## 10910 positive regulation of transcription from RNA polymerase II promoter by glucose
## 10911 positive regulation of transcription from RNA polymerase II promoter in response to heat stress
## 10912 positive regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## 10913 positive regulation of transcription from RNA polymerase II promoter involved in heart development
## 10914 positive regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## 10915 positive regulation of transcription involved in exit from mitosis
## 10916 positive regulation of transcription involved in G1/S transition of mitotic cell cycle
## 10917 positive regulation of transferrin receptor binding
## 10918 positive regulation of transforming growth factor beta1 production
## 10919 positive regulation of transforming growth factor beta2 production
## 10920 positive regulation of transforming growth factor beta3 production
## 10921 positive regulation of translation in response to stress
## 10922 positive regulation of translation, ncRNA-mediated
## 10923 positive regulation of translational initiation by iron
## 10924 positive regulation of translational initiation in response to starvation
## 10925 positive regulation of triglyceride transport
## 10926 positive regulation of tumor necrosis factor (ligand) superfamily member 11 production
## 10927 positive regulation of type B pancreatic cell apoptotic process
## 10928 positive regulation of type B pancreatic cell development
## 10929 positive regulation of type III interferon production
## 10930 positive regulation of type IV hypersensitivity
## 10931 positive regulation of tyrosine 3-monooxygenase activity
## 10932 positive regulation of ubiquitin-dependent endocytosis
## 10933 positive regulation of ubiquitin-specific protease activity
## 10934 positive regulation of unsaturated fatty acid biosynthetic process
## 10935 positive regulation of ureteric bud formation
## 10936 positive regulation of uterine smooth muscle contraction
## 10937 positive regulation of vacuole organization
## 10938 positive regulation of vascular associated smooth muscle cell differentiation
## 10939 positive regulation of vesicle transport along microtubule
## 10940 positive regulation of viral budding via host ESCRT complex
## 10941 positive regulation of viral process
## 10942 positive regulation of viral translation
## 10943 positive regulation of vitamin D biosynthetic process
## 10944 positive regulation of voltage-gated chloride channel activity
## 10945 positive regulation of voltage-gated potassium channel activity
## 10946 positive regulation of voltage-gated sodium channel activity
## 10947 positive regulation of Wnt protein secretion
## 10948 positive T cell selection
## 10949 post-embryonic camera-type eye morphogenesis
## 10950 post-embryonic cardiac muscle cell growth involved in heart morphogenesis
## 10951 post-embryonic forelimb morphogenesis
## 10952 post-embryonic hemopoiesis
## 10953 post-spliceosomal complex
## 10954 posterior compartment specification
## 10955 postsynaptic actin cytoskeleton
## 10956 postsynaptic early endosome
## 10957 postsynaptic endocytic zone membrane
## 10958 postsynaptic endosome
## 10959 postsynaptic membrane assembly
## 10960 postsynaptic neurotransmitter receptor cycle
## 10961 postsynaptic specialization
## 10962 postsynaptic specialization assembly
## 10963 postsynaptic specialization of symmetric synapse
## 10964 posttranscriptional tethering of RNA polymerase II gene DNA at nuclear periphery
## 10965 posttranslational protein targeting to membrane, translocation
## 10966 potassium channel activator activity
## 10967 potassium ion binding
## 10968 potassium transmembrane transporter activity, phosphorylative mechanism
## 10969 PR-DUB complex
## 10970 pre-B cell allelic exclusion
## 10971 pre-B cell differentiation
## 10972 pre-mRNA 5'-splice site binding
## 10973 pre-mRNA catabolic process
## 10974 pre-mRNA intronic pyrimidine-rich binding
## 10975 presynaptic dense core vesicle exocytosis
## 10976 presynaptic endosome
## 10977 presynaptic membrane assembly
## 10978 primary dendrite
## 10979 primary lung bud formation
## 10980 primary miRNA methylation
## 10981 primary palate development
## 10982 primary ureteric bud growth
## 10983 pristanate-CoA ligase activity
## 10984 procollagen glucosyltransferase activity
## 10985 procollagen-lysine 5-dioxygenase activity
## 10986 procollagen-proline 3-dioxygenase activity
## 10987 procollagen-proline 4-dioxygenase activity
## 10988 proline dipeptidase activity
## 10989 proline transmembrane transport
## 10990 proline transport
## 10991 proline-tRNA ligase activity
## 10992 prolyl-tRNA aminoacylation
## 10993 pronuclear fusion
## 10994 propanoyl-CoA C-acyltransferase activity
## 10995 propionate biosynthetic process
## 10996 propionate catabolic process
## 10997 propionate-CoA ligase activity
## 10998 propionyl-CoA C2-trimethyltridecanoyltransferase activity
## 10999 prostacyclin receptor activity
## 11000 prostaglandin catabolic process
## 11001 prostaglandin H2 endoperoxidase reductase activity
## 11002 prostaglandin secretion
## 11003 prostaglandin transmembrane transporter activity
## 11004 prostaglandin-E synthase activity
## 11005 prostaglandin-endoperoxide synthase activity
## 11006 prostaglandin-F synthase activity
## 11007 prostanoid metabolic process
## 11008 prostate epithelial cord arborization involved in prostate glandular acinus morphogenesis
## 11009 prostate gland epithelium morphogenesis
## 11010 prostate gland stromal morphogenesis
## 11011 proteasome activator complex
## 11012 proteasome core complex, alpha-subunit complex
## 11013 proteasome regulatory particle binding
## 11014 protein acylation
## 11015 protein adenylylation
## 11016 protein adenylyltransferase activity
## 11017 protein alpha-1,2-demannosylation
## 11018 protein amidation
## 11019 protein arginylation
## 11020 protein C-terminal carboxyl O-methyltransferase activity
## 11021 protein C-terminal leucine carboxyl O-methyltransferase activity
## 11022 protein carboxyl O-methyltransferase activity
## 11023 protein catabolic process in the vacuole
## 11024 protein deglycase activity
## 11025 protein deglycation
## 11026 protein deglycation, glyoxal removal
## 11027 protein deglycation, methylglyoxal removal
## 11028 protein delipidation
## 11029 protein demalonylation
## 11030 protein desuccinylation
## 11031 protein geranylgeranylation
## 11032 protein glycosylation in Golgi
## 11033 protein histidine kinase activity
## 11034 protein import into mitochondrial intermembrane space
## 11035 protein import into peroxisome matrix, substrate release
## 11036 protein initiator methionine removal
## 11037 protein K33-linked ubiquitination
## 11038 protein K6-linked deubiquitination
## 11039 protein kinase 5 complex
## 11040 protein kinase CK2 complex
## 11041 protein kinase complex
## 11042 protein lipidation involved in autophagosome assembly
## 11043 protein localization to actin cytoskeleton
## 11044 protein localization to Cajal body
## 11045 protein localization to cell cortex
## 11046 protein localization to cell junction
## 11047 protein localization to cell leading edge
## 11048 protein localization to chromosome
## 11049 protein localization to ciliary transition zone
## 11050 protein localization to cytoskeleton
## 11051 protein localization to endoplasmic reticulum tubular network
## 11052 protein localization to kinetochore involved in kinetochore assembly
## 11053 protein localization to lipid droplet
## 11054 protein localization to M-band
## 11055 protein localization to meiotic spindle midzone
## 11056 protein localization to membrane raft
## 11057 protein localization to microtubule plus-end
## 11058 protein localization to myelin sheath abaxonal region
## 11059 protein localization to non-motile cilium
## 11060 protein localization to nuclear inner membrane
## 11061 protein localization to nuclear pore
## 11062 protein localization to nucleoplasm
## 11063 protein localization to paranode region of axon
## 11064 protein localization to pericentriolar material
## 11065 protein localization to photoreceptor connecting cilium
## 11066 protein localization to plasma membrane raft
## 11067 protein localization to postsynaptic membrane
## 11068 protein localization to T-tubule
## 11069 protein localization to vacuole
## 11070 protein maturation by [2Fe-2S] cluster transfer
## 11071 protein maturation by copper ion transfer
## 11072 protein maturation by protein folding
## 11073 protein modification by small protein removal
## 11074 protein N-acetylglucosaminyltransferase complex
## 11075 protein N-linked glycosylation via arginine
## 11076 protein O-GlcNAcylation via threonine
## 11077 protein O-linked glycosylation via threonine
## 11078 protein palmitoleylation
## 11079 protein polyglycylation
## 11080 protein processing involved in protein targeting to mitochondrion
## 11081 protein propionyltransferase activity
## 11082 protein secretion by platelet
## 11083 protein sialylation
## 11084 protein sulfation
## 11085 protein targeting to lysosome involved in chaperone-mediated autophagy
## 11086 protein targeting to vacuole involved in autophagy
## 11087 protein transport along microtubule
## 11088 protein transport into membrane raft
## 11089 protein transporter activity
## 11090 protein trimerization
## 11091 protein tyrosine kinase inhibitor activity
## 11092 protein tyrosine phosphatase activator activity
## 11093 protein tyrosine/threonine phosphatase activity
## 11094 protein unfolding
## 11095 protein xylosyltransferase activity
## 11096 protein-(glutamine-N5) methyltransferase activity
## 11097 protein-containing complex localization
## 11098 protein-containing complex subunit organization
## 11099 protein-fructosamine 3-kinase activity
## 11100 protein-glucosylgalactosylhydroxylysine glucosidase activity
## 11101 protein-glutamate O-methyltransferase activity
## 11102 protein-glutamine gamma-glutamyltransferase activity
## 11103 protein-glycine ligase activity
## 11104 protein-L-isoaspartate (D-aspartate) O-methyltransferase activity
## 11105 protein-lipid complex
## 11106 protein-malonyllysine demalonylase activity
## 11107 protein-N-terminal asparagine amidohydrolase activity
## 11108 protein-N-terminal glutamine amidohydrolase activity
## 11109 protein-tyrosine sulfotransferase activity
## 11110 proteinase activated receptor binding
## 11111 proton-transporting ATP synthase complex assembly
## 11112 proton-transporting two-sector ATPase complex, proton-transporting domain
## 11113 proton-transporting V-type ATPase complex assembly
## 11114 protoporphyrinogen IX metabolic process
## 11115 proximal dendrite
## 11116 proximal neuron projection
## 11117 proximal tubule development
## 11118 pseudophosphatase activity
## 11119 psychomotor behavior
## 11120 purine deoxyribonucleoside metabolic process
## 11121 purine nucleobase catabolic process
## 11122 purine nucleoside transmembrane transport
## 11123 purine nucleoside transmembrane transporter activity
## 11124 purine nucleotide transmembrane transporter activity
## 11125 purine ribonucleoside catabolic process
## 11126 purine-containing compound transmembrane transport
## 11127 purinergic nucleotide receptor activity
## 11128 putrescine acetylation
## 11129 putrescine binding
## 11130 putrescine catabolic process
## 11131 pyridoxine biosynthetic process
## 11132 pyrimidine deoxyribonucleotide catabolic process
## 11133 pyrimidine nucleobase biosynthetic process
## 11134 pyrimidine nucleobase catabolic process
## 11135 pyrimidine nucleoside biosynthetic process
## 11136 pyrimidine nucleoside transmembrane transporter activity
## 11137 pyrimidine nucleotide metabolic process
## 11138 pyrimidine-nucleoside phosphorylase activity
## 11139 pyrimidine-specific mismatch base pair DNA N-glycosylase activity
## 11140 Pyrin domain binding
## 11141 pyroglutamyl-peptidase activity
## 11142 pyroptosome complex assembly
## 11143 pyruvate secondary active transmembrane transporter activity
## 11144 pyruvate transmembrane transport
## 11145 pyruvate transmembrane transporter activity
## 11146 pyruvate transport
## 11147 quaternary ammonium group transmembrane transporter activity
## 11148 quaternary ammonium group transport
## 11149 queuine tRNA-ribosyltransferase activity
## 11150 quinolinate biosynthetic process
## 11151 quinolinate catabolic process
## 11152 Rab geranylgeranyltransferase activity
## 11153 Rab-protein geranylgeranyltransferase complex
## 11154 racemase and epimerase activity, acting on carbohydrates and derivatives
## 11155 Rad17 RFC-like complex
## 11156 Rad6-Rad18 complex
## 11157 radial glial cell differentiation
## 11158 radial spoke stalk
## 11159 Ran protein signal transduction
## 11160 random inactivation of X chromosome
## 11161 rDNA binding
## 11162 reactive gliosis
## 11163 reactive oxygen species biosynthetic process
## 11164 receptor inhibitor activity
## 11165 receptor internalization involved in canonical Wnt signaling pathway
## 11166 receptor localization to non-motile cilium
## 11167 receptor metabolic process
## 11168 receptor serine/threonine kinase binding
## 11169 receptor signaling protein tyrosine kinase inhibitor activity
## 11170 receptor-mediated virion attachment to host cell
## 11171 receptor-receptor interaction
## 11172 recombinase activity
## 11173 recombinational repair
## 11174 RecQ family helicase-topoisomerase III complex
## 11175 recruitment of 3'-end processing factors to RNA polymerase II holoenzyme complex
## 11176 recycling endosome to Golgi transport
## 11177 reduction of food intake in response to dietary excess
## 11178 reelin receptor activity
## 11179 regulation of acrosome reaction
## 11180 regulation of actin filament depolymerization
## 11181 regulation of actin nucleation
## 11182 regulation of actin phosphorylation
## 11183 regulation of action potential
## 11184 regulation of activated T cell proliferation
## 11185 regulation of activation-induced cell death of T cells
## 11186 regulation of activin receptor signaling pathway
## 11187 regulation of acute inflammatory response
## 11188 regulation of amyloid-beta formation
## 11189 regulation of angiotensin metabolic process
## 11190 regulation of anion transport
## 11191 regulation of arginine biosynthetic process
## 11192 regulation of arginine metabolic process
## 11193 regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## 11194 regulation of asymmetric cell division
## 11195 regulation of ATP metabolic process
## 11196 regulation of atrial cardiac muscle cell membrane repolarization
## 11197 regulation of B cell activation
## 11198 regulation of B cell proliferation
## 11199 regulation of barbed-end actin filament capping
## 11200 regulation of blastocyst development
## 11201 regulation of blood circulation
## 11202 regulation of blood coagulation
## 11203 regulation of blood vessel branching
## 11204 regulation of blood vessel diameter by renin-angiotensin
## 11205 regulation of bone development
## 11206 regulation of branching morphogenesis of a nerve
## 11207 regulation of bundle of His cell action potential
## 11208 regulation of calcineurin-NFAT signaling cascade
## 11209 regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## 11210 regulation of calcium ion-dependent exocytosis of neurotransmitter
## 11211 regulation of CAMKK-AMPK signaling cascade
## 11212 regulation of cAMP-dependent protein kinase activity
## 11213 regulation of carbohydrate metabolic process
## 11214 regulation of carbohydrate utilization
## 11215 regulation of cardiac muscle cell action potential
## 11216 regulation of cardiac muscle cell proliferation
## 11217 regulation of cardiac muscle contraction by calcium ion signaling
## 11218 regulation of cargo loading into COPII-coated vesicle
## 11219 regulation of cation transmembrane transport
## 11220 regulation of CD4-positive, alpha-beta T cell differentiation
## 11221 regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## 11222 regulation of Cdc42 protein signal transduction
## 11223 regulation of cell adhesion molecule production
## 11224 regulation of cell communication by electrical coupling
## 11225 regulation of cell cycle G1/S phase transition
## 11226 regulation of cell cycle phase transition
## 11227 regulation of cell death
## 11228 regulation of cell diameter
## 11229 regulation of cell growth by extracellular stimulus
## 11230 regulation of cell motility involved in somitogenic axis elongation
## 11231 regulation of cell projection organization
## 11232 regulation of cell-cell adhesion mediated by integrin
## 11233 regulation of cell-substrate adhesion
## 11234 regulation of cell-substrate junction organization
## 11235 regulation of cellular carbohydrate catabolic process
## 11236 regulation of cellular component movement
## 11237 regulation of cellular hyperosmotic salinity response
## 11238 regulation of cellular process
## 11239 regulation of cellular protein catabolic process
## 11240 regulation of cellular response to drug
## 11241 regulation of cellular response to gamma radiation
## 11242 regulation of cellular response to hypoxia
## 11243 regulation of cellular response to osmotic stress
## 11244 regulation of cellular response to stress
## 11245 regulation of cellular response to X-ray
## 11246 regulation of centromere complex assembly
## 11247 regulation of centromeric sister chromatid cohesion
## 11248 regulation of ceramide biosynthetic process
## 11249 regulation of cGMP-mediated signaling
## 11250 regulation of chaperone-mediated protein folding
## 11251 regulation of chemokine production
## 11252 regulation of cholesterol import
## 11253 regulation of chondrocyte differentiation
## 11254 regulation of chorionic trophoblast cell proliferation
## 11255 regulation of chromatin assembly
## 11256 regulation of chromatin disassembly
## 11257 regulation of chromatin silencing at telomere
## 11258 regulation of chromosome organization
## 11259 regulation of cilium beat frequency involved in ciliary motility
## 11260 regulation of cilium movement
## 11261 regulation of circadian sleep/wake cycle
## 11262 regulation of circadian sleep/wake cycle, non-REM sleep
## 11263 regulation of collagen catabolic process
## 11264 regulation of cortisol biosynthetic process
## 11265 regulation of cysteine-type endopeptidase activity
## 11266 regulation of cytokine production involved in immune response
## 11267 regulation of cytokinesis, actomyosin contractile ring assembly
## 11268 regulation of cytoplasmic mRNA processing body assembly
## 11269 regulation of D-erythro-sphingosine kinase activity
## 11270 regulation of definitive erythrocyte differentiation
## 11271 regulation of dendritic cell dendrite assembly
## 11272 regulation of dendritic spine maintenance
## 11273 regulation of developmental growth
## 11274 regulation of developmental pigmentation
## 11275 regulation of DNA damage response, signal transduction by p53 class mediator
## 11276 regulation of DNA methylation-dependent heterochromatin assembly
## 11277 regulation of DNA N-glycosylase activity
## 11278 regulation of DNA replication origin binding
## 11279 regulation of DNA stability
## 11280 regulation of DNA-dependent DNA replication
## 11281 regulation of dopamine metabolic process
## 11282 regulation of early endosome to recycling endosome transport
## 11283 regulation of embryonic cell shape
## 11284 regulation of endocytic recycling
## 11285 regulation of endodeoxyribonuclease activity
## 11286 regulation of endopeptidase activity
## 11287 regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## 11288 regulation of endoplasmic reticulum tubular network organization
## 11289 regulation of endoplasmic reticulum unfolded protein response
## 11290 regulation of endosome organization
## 11291 regulation of endosome size
## 11292 regulation of endothelial cell apoptotic process
## 11293 regulation of endothelial cell proliferation
## 11294 regulation of epidermal cell division
## 11295 regulation of ERBB signaling pathway
## 11296 regulation of establishment of planar polarity involved in neural tube closure
## 11297 regulation of estradiol secretion
## 11298 regulation of excretion
## 11299 regulation of extracellular exosome assembly
## 11300 regulation of extracellular matrix constituent secretion
## 11301 regulation of extracellular matrix disassembly
## 11302 regulation of extrathymic T cell differentiation
## 11303 regulation of extrinsic apoptotic signaling pathway
## 11304 regulation of extrinsic apoptotic signaling pathway in absence of ligand
## 11305 regulation of Fas signaling pathway
## 11306 regulation of fat cell apoptotic process
## 11307 regulation of fatty acid oxidation
## 11308 regulation of fatty acid transport
## 11309 regulation of fertilization
## 11310 regulation of fibroblast apoptotic process
## 11311 regulation of fibroblast growth factor receptor signaling pathway
## 11312 regulation of forebrain neuron differentiation
## 11313 regulation of gamma-delta T cell differentiation
## 11314 regulation of gastric motility
## 11315 regulation of glial cell differentiation
## 11316 regulation of glial cell proliferation
## 11317 regulation of glucagon secretion
## 11318 regulation of glucocorticoid metabolic process
## 11319 regulation of glucose transmembrane transport
## 11320 regulation of glutamate uptake involved in transmission of nerve impulse
## 11321 regulation of glycogen (starch) synthase activity
## 11322 regulation of glycogen catabolic process
## 11323 regulation of glycogen metabolic process
## 11324 regulation of granulocyte differentiation
## 11325 regulation of growth hormone secretion
## 11326 regulation of growth plate cartilage chondrocyte proliferation
## 11327 regulation of GTP binding
## 11328 regulation of heart induction by regulation of canonical Wnt signaling pathway
## 11329 regulation of heart rate by chemical signal
## 11330 regulation of hematopoietic stem cell proliferation
## 11331 regulation of hemoglobin biosynthetic process
## 11332 regulation of hemopoiesis
## 11333 regulation of hepatocyte proliferation
## 11334 regulation of high-density lipoprotein particle assembly
## 11335 regulation of histone H2B conserved C-terminal lysine ubiquitination
## 11336 regulation of histone H3-K27 acetylation
## 11337 regulation of histone H3-K27 methylation
## 11338 regulation of histone H3-K36 methylation
## 11339 regulation of histone H3-K36 trimethylation
## 11340 regulation of histone H3-K9 acetylation
## 11341 regulation of histone H3-K9 methylation
## 11342 regulation of histone H3-K9 trimethylation
## 11343 regulation of histone H4-K16 acetylation
## 11344 regulation of histone phosphorylation
## 11345 regulation of histone ubiquitination
## 11346 regulation of hormone biosynthetic process
## 11347 regulation of hormone metabolic process
## 11348 regulation of hyaluronan biosynthetic process
## 11349 regulation of hydrogen peroxide-induced cell death
## 11350 regulation of inclusion body assembly
## 11351 regulation of inner ear auditory receptor cell differentiation
## 11352 regulation of integrin-mediated signaling pathway
## 11353 regulation of interferon-beta production
## 11354 regulation of interleukin-1-mediated signaling pathway
## 11355 regulation of interleukin-10 production
## 11356 regulation of interleukin-18 production
## 11357 regulation of interleukin-2 production
## 11358 regulation of interleukin-23 production
## 11359 regulation of interleukin-4 production
## 11360 regulation of interleukin-8 production
## 11361 regulation of intestinal absorption
## 11362 regulation of intracellular transport
## 11363 regulation of intraciliary retrograde transport
## 11364 regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## 11365 regulation of inward rectifier potassium channel activity
## 11366 regulation of ion transport
## 11367 regulation of iron ion transport
## 11368 regulation of isoprenoid metabolic process
## 11369 regulation of JUN kinase activity
## 11370 regulation of ketone biosynthetic process
## 11371 regulation of kidney size
## 11372 regulation of kinetochore assembly
## 11373 regulation of lactation
## 11374 regulation of leukocyte adhesion to arterial endothelial cell
## 11375 regulation of leukocyte adhesion to vascular endothelial cell
## 11376 regulation of leukocyte tethering or rolling
## 11377 regulation of lipopolysaccharide-mediated signaling pathway
## 11378 regulation of lipoprotein lipase activity
## 11379 regulation of locomotion
## 11380 regulation of locomotor rhythm
## 11381 regulation of long-chain fatty acid import into cell
## 11382 regulation of low-density lipoprotein particle clearance
## 11383 regulation of low-density lipoprotein particle receptor catabolic process
## 11384 regulation of lung blood pressure
## 11385 regulation of lymphocyte chemotaxis
## 11386 regulation of lysosomal membrane permeability
## 11387 regulation of lysosomal protein catabolic process
## 11388 regulation of macrophage derived foam cell differentiation
## 11389 regulation of macrophage migration
## 11390 regulation of MAPK export from nucleus
## 11391 regulation of mast cell activation
## 11392 regulation of mast cell apoptotic process
## 11393 regulation of matrix metallopeptidase secretion
## 11394 regulation of meiotic cell cycle process involved in oocyte maturation
## 11395 regulation of melanin biosynthetic process
## 11396 regulation of melanosome organization
## 11397 regulation of membrane depolarization during cardiac muscle cell action potential
## 11398 regulation of membrane repolarization during atrial cardiac muscle cell action potential
## 11399 regulation of membrane repolarization during cardiac muscle cell action potential
## 11400 regulation of mesenchymal cell proliferation
## 11401 regulation of mesoderm development
## 11402 regulation of microglial cell activation
## 11403 regulation of microglial cell migration
## 11404 regulation of microtubule nucleation by Ran protein signal transduction
## 11405 regulation of microtubule-based movement
## 11406 regulation of microvillus length
## 11407 regulation of mitochondrial ATP synthesis coupled proton transport
## 11408 regulation of mitochondrial DNA replication
## 11409 regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## 11410 regulation of mitotic cell cycle DNA replication
## 11411 regulation of mitotic cell cycle, embryonic
## 11412 regulation of mitotic cytokinesis
## 11413 regulation of mitotic sister chromatid separation
## 11414 regulation of modification of postsynaptic actin cytoskeleton
## 11415 regulation of modification of synaptic structure
## 11416 regulation of molecular function, epigenetic
## 11417 regulation of mRNA 3'-end processing
## 11418 regulation of mRNA stability involved in response to oxidative stress
## 11419 regulation of multivesicular body size
## 11420 regulation of myeloid progenitor cell differentiation
## 11421 regulation of myoblast differentiation
## 11422 regulation of myoblast proliferation
## 11423 regulation of myosin II filament organization
## 11424 regulation of myosin-light-chain-phosphatase activity
## 11425 regulation of myotube differentiation
## 11426 regulation of NADP metabolic process
## 11427 regulation of natural killer cell activation
## 11428 regulation of natural killer cell differentiation
## 11429 regulation of natural killer cell proliferation
## 11430 regulation of nephron tubule epithelial cell differentiation
## 11431 regulation of nervous system process
## 11432 regulation of neuroblast proliferation
## 11433 regulation of neuron maturation
## 11434 regulation of neuronal action potential
## 11435 regulation of neurotransmitter receptor localization to postsynaptic specialization membrane
## 11436 regulation of neutrophil chemotaxis
## 11437 regulation of neutrophil degranulation
## 11438 regulation of neutrophil extravasation
## 11439 regulation of neutrophil migration
## 11440 regulation of nitric oxide biosynthetic process
## 11441 regulation of nitric oxide mediated signal transduction
## 11442 regulation of nitrogen utilization
## 11443 regulation of NK T cell differentiation
## 11444 regulation of NLRP3 inflammasome complex assembly
## 11445 regulation of norepinephrine uptake
## 11446 regulation of nucleic acid-templated transcription
## 11447 regulation of nucleotide-excision repair
## 11448 regulation of nucleus size
## 11449 regulation of odontoblast differentiation
## 11450 regulation of odontogenesis of dentin-containing tooth
## 11451 regulation of oligodendrocyte differentiation
## 11452 regulation of opioid receptor signaling pathway
## 11453 regulation of osteoclast development
## 11454 regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## 11455 regulation of oxidative stress-induced neuron death
## 11456 regulation of oxidoreductase activity
## 11457 regulation of p38MAPK cascade
## 11458 regulation of pathway-restricted SMAD protein phosphorylation
## 11459 regulation of pentose-phosphate shunt
## 11460 regulation of peptide hormone secretion
## 11461 regulation of peroxisome organization
## 11462 regulation of peroxisome proliferator activated receptor signaling pathway
## 11463 regulation of peroxisome size
## 11464 regulation of phagosome maturation
## 11465 regulation of phosphatase activity
## 11466 regulation of phospholipase A2 activity
## 11467 regulation of phospholipid catabolic process
## 11468 regulation of planar cell polarity pathway involved in neural tube closure
## 11469 regulation of plasma membrane sterol distribution
## 11470 regulation of platelet activation
## 11471 regulation of platelet-derived growth factor production
## 11472 regulation of podosome assembly
## 11473 regulation of postsynaptic density protein 95 clustering
## 11474 regulation of potassium ion export across plasma membrane
## 11475 regulation of potassium ion import
## 11476 regulation of potassium ion transmembrane transporter activity
## 11477 regulation of primary metabolic process
## 11478 regulation of primitive erythrocyte differentiation
## 11479 regulation of production of miRNAs involved in gene silencing by miRNA
## 11480 regulation of production of siRNA involved in RNA interference
## 11481 regulation of progesterone biosynthetic process
## 11482 regulation of protein catabolic process at presynapse, modulating synaptic transmission
## 11483 regulation of protein deacetylation
## 11484 regulation of protein dephosphorylation
## 11485 regulation of protein deubiquitination
## 11486 regulation of protein exit from endoplasmic reticulum
## 11487 regulation of protein K48-linked deubiquitination
## 11488 regulation of protein lipidation
## 11489 regulation of protein localization to adherens junction
## 11490 regulation of protein localization to cell cortex
## 11491 regulation of protein monoubiquitination
## 11492 regulation of protein targeting
## 11493 regulation of protein tyrosine kinase activity
## 11494 regulation of protein-containing complex disassembly
## 11495 regulation of pyruvate kinase activity
## 11496 regulation of Ral protein signal transduction
## 11497 regulation of Rap protein signal transduction
## 11498 regulation of receptor internalization
## 11499 regulation of receptor localization to synapse
## 11500 regulation of regulated secretory pathway
## 11501 regulation of relaxation of muscle
## 11502 regulation of release of cytochrome c from mitochondria
## 11503 regulation of respiratory system process
## 11504 regulation of response to DNA damage checkpoint signaling
## 11505 regulation of response to endoplasmic reticulum stress
## 11506 regulation of response to food
## 11507 regulation of response to interferon-gamma
## 11508 regulation of retinal ganglion cell axon guidance
## 11509 regulation of retinoic acid receptor signaling pathway
## 11510 regulation of Rho guanyl-nucleotide exchange factor activity
## 11511 regulation of rhodopsin gene expression
## 11512 regulation of RNA export from nucleus
## 11513 regulation of RNA polymerase II transcription preinitiation complex assembly
## 11514 regulation of rRNA processing
## 11515 regulation of rRNA stability
## 11516 regulation of sarcomere organization
## 11517 regulation of Schwann cell differentiation
## 11518 regulation of sequestering of zinc ion
## 11519 regulation of serotonin uptake
## 11520 regulation of signal transduction involved in mitotic G2 DNA damage checkpoint
## 11521 regulation of signaling receptor activity
## 11522 regulation of sister chromatid cohesion
## 11523 regulation of sister chromatid segregation
## 11524 regulation of skeletal muscle acetylcholine-gated channel clustering
## 11525 regulation of skeletal muscle adaptation
## 11526 regulation of skeletal muscle cell differentiation
## 11527 regulation of skeletal muscle contraction
## 11528 regulation of skeletal muscle fiber development
## 11529 regulation of skeletal muscle tissue development
## 11530 regulation of SMAD protein signal transduction
## 11531 regulation of smooth muscle cell migration
## 11532 regulation of smooth muscle cell proliferation
## 11533 regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## 11534 regulation of SNARE complex assembly
## 11535 regulation of sodium:proton antiporter activity
## 11536 regulation of somatic stem cell population maintenance
## 11537 regulation of somitogenesis
## 11538 regulation of sprouting angiogenesis
## 11539 regulation of stem cell differentiation
## 11540 regulation of steroid metabolic process
## 11541 regulation of store-operated calcium channel activity
## 11542 regulation of stress granule assembly
## 11543 regulation of stress-activated protein kinase signaling cascade
## 11544 regulation of striated muscle contraction
## 11545 regulation of supramolecular fiber organization
## 11546 regulation of synaptic transmission, dopaminergic
## 11547 regulation of synaptic vesicle cycle
## 11548 regulation of synaptic vesicle fusion to presynaptic active zone membrane
## 11549 regulation of synaptic vesicle transport
## 11550 regulation of systemic arterial blood pressure by norepinephrine-epinephrine
## 11551 regulation of systemic arterial blood pressure mediated by a chemical signal
## 11552 regulation of T cell antigen processing and presentation
## 11553 regulation of T cell mediated cytotoxicity
## 11554 regulation of T cell migration
## 11555 regulation of telomere capping
## 11556 regulation of telomere maintenance via telomere lengthening
## 11557 regulation of termination of RNA polymerase I transcription
## 11558 regulation of thalamus size
## 11559 regulation of thymocyte apoptotic process
## 11560 regulation of thyroid hormone mediated signaling pathway
## 11561 regulation of tissue remodeling
## 11562 regulation of transcription by glucose
## 11563 regulation of transcription by RNA polymerase I
## 11564 regulation of transcription from RNA polymerase II promoter by glucose
## 11565 regulation of transcription from RNA polymerase II promoter in response to iron
## 11566 regulation of transcription from RNA polymerase II promoter in response to stress
## 11567 regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## 11568 regulation of transcription from RNA polymerase II promoter involved in spermatogenesis
## 11569 regulation of transcription involved in G2/M transition of mitotic cell cycle
## 11570 regulation of transcription of nucleolar large rRNA by RNA polymerase I
## 11571 regulation of translation at postsynapse, modulating synaptic transmission
## 11572 regulation of translation at presynapse, modulating synaptic transmission
## 11573 regulation of translation at synapse, modulating synaptic transmission
## 11574 regulation of translation in response to stress
## 11575 regulation of translation involved in cellular response to UV
## 11576 regulation of translational initiation by eIF2 alpha dephosphorylation
## 11577 regulation of transmembrane transporter activity
## 11578 regulation of transmission of nerve impulse
## 11579 regulation of transport
## 11580 regulation of triglyceride metabolic process
## 11581 regulation of trophoblast cell migration
## 11582 regulation of type IV hypersensitivity
## 11583 regulation of ubiquinone biosynthetic process
## 11584 regulation of ubiquitin protein ligase activity
## 11585 regulation of ubiquitin-dependent protein catabolic process
## 11586 regulation of ubiquitin-specific protease activity
## 11587 regulation of urine volume
## 11588 regulation of vacuole organization
## 11589 regulation of vascular associated smooth muscle cell dedifferentiation
## 11590 regulation of vascular associated smooth muscle contraction
## 11591 regulation of vascular endothelial growth factor production
## 11592 regulation of vascular endothelial growth factor receptor signaling pathway
## 11593 regulation of vascular permeability involved in acute inflammatory response
## 11594 regulation of vasoconstriction by circulating norepinephrine
## 11595 regulation of ventricular cardiac muscle cell membrane depolarization
## 11596 regulation of vesicle fusion
## 11597 regulation of viral budding via host ESCRT complex
## 11598 regulation of viral release from host cell
## 11599 regulation of viral transcription
## 11600 regulation of voltage-gated calcium channel activity
## 11601 regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## 11602 regulation of water loss via skin
## 11603 regulatory T cell differentiation
## 11604 release from viral latency
## 11605 release of matrix enzymes from mitochondria
## 11606 release of sequestered calcium ion into cytosol by endoplasmic reticulum
## 11607 renal artery morphogenesis
## 11608 renal phosphate ion absorption
## 11609 renal potassium excretion
## 11610 renal sodium ion transport
## 11611 renal tubule development
## 11612 renal tubule morphogenesis
## 11613 renal water absorption
## 11614 renin secretion into blood stream
## 11615 reproduction
## 11616 reproductive system development
## 11617 RES complex
## 11618 resolution of mitotic recombination intermediates
## 11619 resolution of recombination intermediates
## 11620 respiratory system development
## 11621 response to 2-O-acetyl-1-O-hexadecyl-sn-glycero-3-phosphocholine
## 11622 response to 3,3',5-triiodo-L-thyronine
## 11623 response to acetate
## 11624 response to aluminum ion
## 11625 response to ammonium ion
## 11626 response to bacterial lipoprotein
## 11627 response to benzene
## 11628 response to caloric restriction
## 11629 response to camptothecin
## 11630 response to carbohydrate
## 11631 response to carbon monoxide
## 11632 response to cholecystokinin
## 11633 response to cobalamin
## 11634 response to corticosteroid
## 11635 response to corticosterone
## 11636 response to curcumin
## 11637 response to DDT
## 11638 response to dopamine
## 11639 response to dsRNA
## 11640 response to ether
## 11641 response to formaldehyde
## 11642 response to fungus
## 11643 response to G1 DNA damage checkpoint signaling
## 11644 response to glucoside
## 11645 response to glycoside
## 11646 response to gold nanoparticle
## 11647 response to gonadotropin
## 11648 response to histamine
## 11649 response to hydrostatic pressure
## 11650 response to insecticide
## 11651 response to interleukin-12
## 11652 response to iron ion starvation
## 11653 response to iron(II) ion
## 11654 response to iron(III) ion
## 11655 response to kainic acid
## 11656 response to L-arginine
## 11657 response to L-phenylalanine derivative
## 11658 response to light stimulus
## 11659 response to lipid hydroperoxide
## 11660 response to low light intensity stimulus
## 11661 response to manganese-induced endoplasmic reticulum stress
## 11662 response to mercury ion
## 11663 response to mineralocorticoid
## 11664 response to misfolded protein
## 11665 response to muscle activity involved in regulation of muscle adaptation
## 11666 response to nitric oxide
## 11667 response to nitrogen dioxide
## 11668 response to nitrosative stress
## 11669 response to odorant
## 11670 response to oleic acid
## 11671 response to oxygen radical
## 11672 response to parathyroid hormone
## 11673 response to pheromone
## 11674 response to platelet-derived growth factor
## 11675 response to platinum ion
## 11676 response to prostaglandin F
## 11677 response to rapamycin
## 11678 response to rotenone
## 11679 response to salt
## 11680 response to silver ion
## 11681 response to sorbitol
## 11682 response to tellurium ion
## 11683 response to TNF agonist
## 11684 response to tumor cell
## 11685 response to type III interferon
## 11686 response to UV-A
## 11687 response to vitamin B1
## 11688 response to vitamin E
## 11689 retina vasculature morphogenesis in camera-type eye
## 11690 retinal bipolar neuron differentiation
## 11691 retinal cell programmed cell death
## 11692 retinal dehydrogenase activity
## 11693 retinal pigment epithelium development
## 11694 retinal rod cell apoptotic process
## 11695 retinoic acid biosynthetic process
## 11696 retinol isomerase activity
## 11697 retinol O-fatty-acyltransferase activity
## 11698 retrograde axonal protein transport
## 11699 retrograde trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## 11700 retrograde trans-synaptic signaling by trans-synaptic protein complex
## 11701 retrograde transport, vesicle recycling within Golgi
## 11702 retromer, tubulation complex
## 11703 Rho GDP-dissociation inhibitor activity
## 11704 rhythmic synaptic transmission
## 11705 ribbon synapse
## 11706 ribitol 2-dehydrogenase activity
## 11707 riboflavin reductase (NADPH) activity
## 11708 riboflavin transmembrane transporter activity
## 11709 riboflavin transport
## 11710 ribonuclease E activity
## 11711 ribonuclease III activity
## 11712 ribonuclease inhibitor activity
## 11713 ribonuclease MRP activity
## 11714 ribonuclease P complex
## 11715 ribonucleoprotein complex assembly
## 11716 ribonucleoprotein complex biogenesis
## 11717 ribonucleoprotein complex localization
## 11718 ribonucleoside-diphosphate reductase activity
## 11719 RIC1-RGP1 guanyl-nucleotide exchange factor complex
## 11720 RIG-I binding
## 11721 right ventricular compact myocardium morphogenesis
## 11722 RING-like zinc finger domain binding
## 11723 Rix1 complex
## 11724 RNA 5'-methyltransferase activity
## 11725 RNA destabilization
## 11726 RNA folding
## 11727 RNA guanylyltransferase activity
## 11728 RNA import into mitochondrion
## 11729 RNA import into nucleus
## 11730 RNA lariat debranching enzyme activator activity
## 11731 RNA N1-methyladenosine dioxygenase activity
## 11732 RNA polymerase complex
## 11733 RNA polymerase I activity
## 11734 RNA polymerase I cis-regulatory region sequence-specific DNA binding
## 11735 RNA polymerase I core binding
## 11736 RNA polymerase I core factor complex
## 11737 RNA polymerase I general transcription initiation factor binding
## 11738 RNA polymerase II transcription repressor complex
## 11739 RNA polymerase III activity
## 11740 RNA polymerase III core binding
## 11741 RNA polymerase III preinitiation complex assembly
## 11742 RNA polymerase III transcription regulatory region sequence-specific DNA binding
## 11743 RNA transmembrane transporter activity
## 11744 RNA trimethylguanosine synthase activity
## 11745 rod photoreceptor outer segment
## 11746 rough endoplasmic reticulum lumen
## 11747 Roundabout signaling pathway
## 11748 rRNA (adenine-N6,N6-)-dimethyltransferase activity
## 11749 rRNA (guanine-N7)-methylation
## 11750 rRNA (guanine) methyltransferase activity
## 11751 rRNA (pseudouridine) methyltransferase activity
## 11752 rRNA (uridine-2'-O-)-methyltransferase activity
## 11753 rRNA base methylation
## 11754 rRNA export from nucleus
## 11755 rRNA metabolic process
## 11756 rRNA pseudouridine synthesis
## 11757 rRNA transport
## 11758 ryanodine receptor complex
## 11759 ryanodine-sensitive calcium-release channel activity
## 11760 S-adenosyl-L-methionine transmembrane transport
## 11761 S-adenosyl-L-methionine transmembrane transporter activity
## 11762 S-adenosyl-L-methionine transport
## 11763 S-adenosylhomocysteine metabolic process
## 11764 S-adenosylmethioninamine biosynthetic process
## 11765 S-formylglutathione hydrolase activity
## 11766 S-malonyltransferase activity
## 11767 S-nitrosoglutathione binding
## 11768 saccharopine dehydrogenase (NAD+, L-glutamate-forming) activity
## 11769 saccharopine dehydrogenase (NAD+, L-lysine-forming) activity
## 11770 saccharopine dehydrogenase (NADP+, L-lysine-forming) activity
## 11771 saccharopine dehydrogenase activity
## 11772 saliva secretion
## 11773 salivary gland morphogenesis
## 11774 SAM domain binding
## 11775 sarcomerogenesis
## 11776 sarcoplasmic reticulum calcium ion transport
## 11777 satellite cell activation involved in skeletal muscle regeneration
## 11778 satellite DNA binding
## 11779 Scc2-Scc4 cohesin loading complex
## 11780 Schwann cell differentiation
## 11781 Schwann cell microvillus
## 11782 Schwann cell proliferation
## 11783 sclerotome development
## 11784 Scrib-APC-beta-catenin complex
## 11785 sebum secreting cell proliferation
## 11786 Sec61 translocon complex
## 11787 Sec62/Sec63 complex
## 11788 second-messenger-mediated signaling
## 11789 secondary active organic cation transmembrane transporter activity
## 11790 secretion by lung epithelial cell involved in lung growth
## 11791 secretory columnal luminar epithelial cell differentiation involved in prostate glandular acinus development
## 11792 secretory dimeric IgA immunoglobulin complex
## 11793 secretory granule organization
## 11794 secretory IgA immunoglobulin complex
## 11795 secretory vesicle
## 11796 sedoheptulose-7-phosphate:D-glyceraldehyde-3-phosphate glyceronetransferase activity
## 11797 selenide, water dikinase activity
## 11798 selenium compound metabolic process
## 11799 selenocysteine biosynthetic process
## 11800 selenocysteine catabolic process
## 11801 selenocysteine lyase activity
## 11802 semaphorin-plexin signaling pathway involved in bone trabecula morphogenesis
## 11803 semi-lunar valve development
## 11804 semicircular canal development
## 11805 sensory organ development
## 11806 sensory perception of chemical stimulus
## 11807 sensory perception of light stimulus
## 11808 sensory perception of sour taste
## 11809 sensory perception of taste
## 11810 septin cytoskeleton
## 11811 septin cytoskeleton organization
## 11812 sequence-specific single stranded DNA binding
## 11813 sequestering of calcium ion
## 11814 sequestering of extracellular ligand from receptor
## 11815 sequestering of triglyceride
## 11816 sequestering of zinc ion
## 11817 Ser-tRNA(Ala) hydrolase activity
## 11818 serine binding
## 11819 serine family amino acid biosynthetic process
## 11820 serine family amino acid metabolic process
## 11821 serine hydrolase activity
## 11822 serine import across plasma membrane
## 11823 serine import into mitochondrion
## 11824 serine protease inhibitor complex
## 11825 serine transmembrane transporter activity
## 11826 serine-pyruvate aminotransferase complex
## 11827 serotonergic neuron axon guidance
## 11828 serotonergic synapse
## 11829 serotonin binding
## 11830 serotonin transport
## 11831 serotonin:sodium symporter activity
## 11832 Sertoli cell fate commitment
## 11833 serum response element binding
## 11834 sex chromatin
## 11835 SHG alpha-glucan phosphorylase activity
## 11836 short-chain carboxylesterase activity
## 11837 short-chain fatty acid catabolic process
## 11838 sialate 4-O-acetylesterase activity
## 11839 sialate 9-O-acetylesterase activity
## 11840 sialate O-acetylesterase activity
## 11841 sialic acid transmembrane transporter activity
## 11842 sialic acid transport
## 11843 siderophore-dependent iron import into cell
## 11844 signal release
## 11845 signal sequence binding
## 11846 signal transduction involved in mitotic cell cycle checkpoint
## 11847 signal transduction involved in mitotic G2 DNA damage checkpoint
## 11848 single-stranded DNA 3'-5' exodeoxyribonuclease activity
## 11849 single-stranded telomeric DNA binding
## 11850 site-specific DNA-methyltransferase (adenine-specific) activity
## 11851 skeletal muscle atrophy
## 11852 skeletal muscle myosin thick filament assembly
## 11853 skeletal muscle satellite cell activation
## 11854 skeletal muscle satellite cell migration
## 11855 skeletal myofibril assembly
## 11856 Ski complex
## 11857 skin epidermis development
## 11858 skin morphogenesis
## 11859 Slx1-Slx4 complex
## 11860 Sm-like protein family complex
## 11861 small protein activating enzyme binding
## 11862 small RNA 2'-O-methyltransferase
## 11863 small RNA loading onto RISC
## 11864 SMC loading complex
## 11865 smooth endoplasmic reticulum calcium ion homeostasis
## 11866 smooth muscle hyperplasia
## 11867 smooth muscle hypertrophy
## 11868 smoothened signaling pathway involved in regulation of cerebellar granule cell precursor cell proliferation
## 11869 smoothened signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## 11870 sn-1-glycerol-3-phosphate C16:0-DCA-CoA acyl transferase activity
## 11871 sn-glycerol-3-phosphate:ubiquinone oxidoreductase activity
## 11872 sn-glycerol-3-phosphate:ubiquinone-8 oxidoreductase activity
## 11873 snoRNA metabolic process
## 11874 snoRNA polyadenylation
## 11875 snoRNA splicing
## 11876 snRNA (adenine-N6)-methylation
## 11877 snRNA catabolic process
## 11878 snRNA import into nucleus
## 11879 snRNA metabolic process
## 11880 snRNA modification
## 11881 snRNA pseudouridine synthesis
## 11882 snRNA-activating protein complex
## 11883 sodium channel complex
## 11884 sodium ion export across plasma membrane
## 11885 sodium ion homeostasis
## 11886 sodium-independent organic anion transmembrane transporter activity
## 11887 sodium:potassium-exchanging ATPase activity
## 11888 sodium:potassium-exchanging ATPase complex
## 11889 sodium:potassium:chloride symporter activity
## 11890 somatic diversification of immune receptors via somatic mutation
## 11891 somatic diversification of immunoglobulins
## 11892 somatic muscle development
## 11893 somite specification
## 11894 sorbitol biosynthetic process
## 11895 sorbitol catabolic process
## 11896 sorbitol metabolic process
## 11897 specification of axis polarity
## 11898 Spemann organizer formation
## 11899 sperm capacitation
## 11900 sperm connecting piece
## 11901 sperm head
## 11902 sperm head-tail coupling apparatus
## 11903 spermatocyte division
## 11904 spermatogenesis, exchange of chromosomal proteins
## 11905 spermidine acetylation
## 11906 spermidine binding
## 11907 spermidine biosynthetic process
## 11908 spermidine catabolic process
## 11909 spermidine deacetylation
## 11910 spermidine metabolic process
## 11911 spermidine:oxygen oxidoreductase (3-aminopropanal-forming) activity
## 11912 spermine acetylation
## 11913 spermine biosynthetic process
## 11914 spermine catabolic process
## 11915 spermine metabolic process
## 11916 spermine transmembrane transport
## 11917 spermine:oxygen oxidoreductase (spermidine-forming) activity
## 11918 sphinganine biosynthetic process
## 11919 sphinganine kinase activity
## 11920 sphinganine-1-phosphate aldolase activity
## 11921 sphinganine-1-phosphate biosynthetic process
## 11922 sphingolipid delta-4 desaturase activity
## 11923 sphingolipid floppase activity
## 11924 sphingolipid mediated signaling pathway
## 11925 sphingolipid translocation
## 11926 sphingomyelin phosphodiesterase activator activity
## 11927 sphingomyelin transfer activity
## 11928 sphingosine-1-phosphate phosphatase activity
## 11929 spinal cord dorsal/ventral patterning
## 11930 spindle assembly involved in female meiosis
## 11931 spindle matrix
## 11932 spindle midzone assembly
## 11933 spliceosomal complex disassembly
## 11934 spliceosomal snRNP complex
## 11935 spliceosome conformational change to release U4 (or U4atac) and U1 (or U11)
## 11936 spontaneous neurotransmitter secretion
## 11937 spontaneous synaptic transmission
## 11938 SPOTS complex
## 11939 squalene monooxygenase activity
## 11940 SREBP-SCAP-Insig complex
## 11941 SRP-dependent cotranslational protein targeting to membrane, signal sequence recognition
## 11942 starch binding
## 11943 startle response
## 11944 stearoyl-CoA 9-desaturase activity
## 11945 stereocilium base
## 11946 stereocilium coat
## 11947 stereocilium maintenance
## 11948 stereocilium membrane
## 11949 stereocilium shaft
## 11950 steroid dehydrogenase activity
## 11951 steroid receptor RNA activator RNA binding
## 11952 sterol 14-demethylase activity
## 11953 sterol transfer activity
## 11954 sterol-4-alpha-carboxylate 3-dehydrogenase (decarboxylating) activity
## 11955 stilbene catabolic process
## 11956 stimulatory killer cell immunoglobulin-like receptor signaling pathway
## 11957 storage vacuole
## 11958 strand displacement
## 11959 stress granule disassembly
## 11960 stress-induced mitochondrial fusion
## 11961 stress-induced premature senescence
## 11962 striatal medium spiny neuron differentiation
## 11963 striated muscle dense body
## 11964 structural constituent of egg coat
## 11965 structural constituent of myelin sheath
## 11966 structural constituent of postsynapse
## 11967 structural constituent of postsynaptic density
## 11968 structural constituent of presynaptic active zone
## 11969 structural constituent of skin epidermis
## 11970 structural constituent of tooth enamel
## 11971 structural molecule activity conferring elasticity
## 11972 subapical part of cell
## 11973 substrate localization to autophagosome
## 11974 substrate-dependent cell migration, cell attachment to substrate
## 11975 succinate metabolic process
## 11976 succinate-CoA ligase (ADP-forming) activity
## 11977 succinate-CoA ligase (GDP-forming) activity
## 11978 succinate-CoA ligase complex
## 11979 succinyl-CoA hydrolase activity
## 11980 succinyl-CoA pathway
## 11981 sucrose biosynthetic process
## 11982 sucrose metabolic process
## 11983 sucrose transport
## 11984 sucrose:proton symporter activity
## 11985 sulfate adenylyltransferase (ATP) activity
## 11986 sulfate assimilation
## 11987 sulfide oxidation, using sulfide:quinone oxidoreductase
## 11988 sulfur carrier activity
## 11989 sulfur dioxygenase activity
## 11990 sulfur oxidation
## 11991 SUMO-specific isopeptidase activity
## 11992 superoxide dismutase copper chaperone activity
## 11993 suppression by virus of host apoptotic process
## 11994 suppression by virus of host autophagy
## 11995 suppression by virus of host STAT1 activity
## 11996 suppression by virus of host STAT2 activity
## 11997 supraspliceosomal complex
## 11998 swimming
## 11999 symmetric synapse
## 12000 symmetric, GABA-ergic, inhibitory synapse
## 12001 sympathetic ganglion development
## 12002 synapse assembly involved in innervation
## 12003 synapse maturation
## 12004 synaptic cleft
## 12005 synaptic growth at neuromuscular junction
## 12006 synaptic transmission, GABAergic
## 12007 synaptic vesicle clustering
## 12008 synaptic vesicle cycle
## 12009 synaptic vesicle lumen acidification
## 12010 synaptic vesicle recycling via endosome
## 12011 synaptic vesicle targeting
## 12012 synaptic vesicle to endosome fusion
## 12013 synaptonemal complex disassembly
## 12014 syncytiotrophoblast cell differentiation involved in labyrinthine layer development
## 12015 syncytium formation
## 12016 syndecan binding
## 12017 syntaxin-3 binding
## 12018 syntrophin complex
## 12019 T cell homeostatic proliferation
## 12020 T cell meandering migration
## 12021 T-helper 1 cell activation
## 12022 T-helper 1 cell lineage commitment
## 12023 T-helper 17 cell differentiation
## 12024 T-helper 2 cell activation
## 12025 T-helper 2 cell differentiation
## 12026 T-helper cell differentiation
## 12027 T-helper cell lineage commitment
## 12028 t-UTP complex
## 12029 TAP complex binding
## 12030 tapasin binding
## 12031 tarsal gland development
## 12032 taurine metabolic process
## 12033 taurine transmembrane transporter activity
## 12034 taurine:sodium symporter activity
## 12035 TCR signalosome
## 12036 TDP phosphorylation
## 12037 telencephalon cell migration
## 12038 telomerase RNA localization to Cajal body
## 12039 telomerase RNA stabilization
## 12040 telomere formation via telomerase
## 12041 telomere maintenance via base-excision repair
## 12042 telomere maintenance via telomere trimming
## 12043 telomeric loop disassembly
## 12044 telomeric loop formation
## 12045 terminal button organization
## 12046 terminal web
## 12047 termination of mitochondrial transcription
## 12048 testosterone 17-beta-dehydrogenase (NADP+) activity
## 12049 testosterone biosynthetic process
## 12050 tetracycline transmembrane transport
## 12051 tetracycline transmembrane transporter activity
## 12052 tetrahydrofolylpolyglutamate biosynthetic process
## 12053 tetrahydrofolylpolyglutamate metabolic process
## 12054 tetrahydrofolylpolyglutamate synthase activity
## 12055 thalamus development
## 12056 thiamine pyrophosphate transmembrane transport
## 12057 thiamine transmembrane transport
## 12058 thiamine transmembrane transporter activity
## 12059 thiamine-containing compound metabolic process
## 12060 thienylcyclohexylpiperidine binding
## 12061 thigmotaxis
## 12062 thiolester hydrolase activity
## 12063 thiomorpholine-carboxylate dehydrogenase activity
## 12064 thioredoxin peroxidase activity
## 12065 thioredoxin-disulfide reductase activity
## 12066 third ventricle development
## 12067 threonine transport
## 12068 threonine-tRNA ligase activity
## 12069 threonyl-tRNA aminoacylation
## 12070 thrombin-activated receptor activity
## 12071 thymidine biosynthetic process
## 12072 thymidine catabolic process
## 12073 thymidine kinase activity
## 12074 thymidine metabolic process
## 12075 thymidine phosphorylase activity
## 12076 thymidylate kinase activity
## 12077 thymidylate synthase activity
## 12078 thymine catabolic process
## 12079 thymocyte apoptotic process
## 12080 thyroid hormone mediated signaling pathway
## 12081 thyrotropin-releasing hormone receptor binding
## 12082 tight junction assembly
## 12083 TIRAP-dependent toll-like receptor 4 signaling pathway
## 12084 TNFSF11-mediated signaling pathway
## 12085 Toll-like receptor 1-Toll-like receptor 2 protein complex
## 12086 toll-like receptor 10 signaling pathway
## 12087 Toll-like receptor 2 binding
## 12088 Toll-like receptor 4 binding
## 12089 tongue morphogenesis
## 12090 tonic smooth muscle contraction
## 12091 tooth eruption
## 12092 TORC2 complex binding
## 12093 toxin metabolic process
## 12094 trachea cartilage morphogenesis
## 12095 trans-synaptic signaling by endocannabinoid, modulating synaptic transmission
## 12096 trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## 12097 trans-synaptic signaling by trans-synaptic complex, modulating synaptic transmission
## 12098 transcription factor TFIIE complex
## 12099 transcription factor TFIIF complex
## 12100 transcription factor TFIIK complex
## 12101 transcription open complex formation at RNA polymerase II promoter
## 12102 transcription preinitiation complex assembly
## 12103 transcription termination site sequence-specific DNA binding
## 12104 transcriptional activation by promoter-enhancer looping
## 12105 transepithelial ammonium transport
## 12106 transepithelial chloride transport
## 12107 transepithelial L-ascorbic acid transport
## 12108 transferase activity, transferring selenium-containing groups
## 12109 transferase complex
## 12110 transforming growth factor beta activation
## 12111 transforming growth factor beta production
## 12112 transforming growth factor beta receptor signaling pathway involved in heart development
## 12113 transforming growth factor beta1 activation
## 12114 transition between fast and slow fiber
## 12115 transition metal ion binding
## 12116 transketolase activity
## 12117 translation elongation factor binding
## 12118 translational attenuation
## 12119 transmembrane receptor protein tyrosine kinase inhibitor activity
## 12120 transmembrane receptor protein tyrosine phosphatase signaling pathway
## 12121 transport along microtubule
## 12122 transposase activity
## 12123 transposition, DNA-mediated
## 12124 transposition, RNA-mediated
## 12125 TRAPPI protein complex
## 12126 TRC complex
## 12127 trehalose metabolism in response to stress
## 12128 triacyl lipopeptide binding
## 12129 tricellular tight junction
## 12130 tricellular tight junction assembly
## 12131 tricuspid valve formation
## 12132 tricuspid valve morphogenesis
## 12133 trigeminal nerve structural organization
## 12134 triglyceride transport
## 12135 trimming of first mannose on A branch
## 12136 trimming of second mannose on A branch
## 12137 trimming of terminal mannose on B branch
## 12138 triokinase activity
## 12139 triose-phosphate isomerase activity
## 12140 triphosphatase activity
## 12141 triplex DNA binding
## 12142 triterpenoid biosynthetic process
## 12143 tRNA (adenine-N1-)-methyltransferase activity
## 12144 tRNA (guanine-N1-)-methyltransferase activity
## 12145 tRNA (guanine(9)-N(1))-methyltransferase activity
## 12146 tRNA (m1A) methyltransferase complex
## 12147 tRNA 2'-O-methyltransferase activity
## 12148 tRNA 3'-end processing
## 12149 tRNA 3'-terminal CCA addition
## 12150 tRNA 3'-trailer cleavage
## 12151 tRNA 3'-trailer cleavage, endonucleolytic
## 12152 tRNA 5'-end processing
## 12153 tRNA adenylyltransferase activity
## 12154 tRNA C3-cytosine methylation
## 12155 tRNA catabolic process
## 12156 tRNA cytidylyltransferase activity
## 12157 tRNA dimethylallyltransferase activity
## 12158 tRNA guanylyltransferase activity
## 12159 tRNA import into mitochondrion
## 12160 tRNA methylthiolation
## 12161 tRNA N1-guanine methylation
## 12162 tRNA re-export from nucleus
## 12163 tRNA threonylcarbamoyladenosine modification
## 12164 tRNA transcription
## 12165 tRNA transport
## 12166 tRNA wobble base cytosine methylation
## 12167 tRNA-5-taurinomethyluridine 2-sulfurtransferase
## 12168 tRNA-dihydrouridine20 synthase activity
## 12169 tRNA-intron endonuclease activity
## 12170 tRNA-uridine aminocarboxypropyltransferase activity
## 12171 trophectodermal cell proliferation
## 12172 troponin T binding
## 12173 tryptophan catabolic process
## 12174 tryptophan metabolic process
## 12175 tube development
## 12176 tube formation
## 12177 tubular endosome
## 12178 tubulin deacetylase activity
## 12179 tubulobulbar complex
## 12180 tumor necrosis factor receptor superfamily binding
## 12181 type 1 fibroblast growth factor receptor binding
## 12182 type 1 metabotropic glutamate receptor binding
## 12183 type 2 metabotropic glutamate receptor binding
## 12184 type B pancreatic cell apoptotic process
## 12185 type B pancreatic cell differentiation
## 12186 type II activin receptor binding
## 12187 tyrosine 3-monooxygenase activator activity
## 12188 tyrosine catabolic process
## 12189 tyrosine metabolic process
## 12190 U1 snRNA 3'-end processing
## 12191 U2 snRNA 3'-end processing
## 12192 U2 snRNP binding
## 12193 U2-type post-mRNA release spliceosomal complex
## 12194 U5 snRNA 3'-end processing
## 12195 U5 snRNA binding
## 12196 U6 2'-O-snRNA methylation
## 12197 U6 snRNA 3'-end processing
## 12198 U6atac snRNA binding
## 12199 U6atac snRNP
## 12200 ubiquinone metabolic process
## 12201 ubiquitin activating enzyme activity
## 12202 ubiquitin conjugating enzyme complex
## 12203 ubiquitin recycling
## 12204 ubiquitin-dependent endocytosis
## 12205 ubiquitin-dependent glycoprotein ERAD pathway
## 12206 ubiquitin-like protein transferase activity
## 12207 UDP catabolic process
## 12208 UDP phosphorylation
## 12209 UDP-glucose 4-epimerase activity
## 12210 UDP-glucose 6-dehydrogenase activity
## 12211 UDP-glucose catabolic process
## 12212 UDP-glucose metabolic process
## 12213 UDP-glucose:glycoprotein glucosyltransferase activity
## 12214 UDP-glucose:hexose-1-phosphate uridylyltransferase activity
## 12215 UDP-glucosylation
## 12216 UDP-glucosyltransferase activity
## 12217 UDP-glucuronate metabolic process
## 12218 UDP-glucuronic acid transmembrane transport
## 12219 UDP-glucuronic acid transmembrane transporter activity
## 12220 UDP-glycosyltransferase activity
## 12221 UDP-N-acetylgalactosamine diphosphorylase activity
## 12222 UDP-N-acetylgalactosamine transmembrane transport
## 12223 UDP-N-acetylgalactosamine transmembrane transporter activity
## 12224 UDP-N-acetylglucosamine 2-epimerase activity
## 12225 UDP-N-acetylglucosamine 4-epimerase activity
## 12226 UDP-N-acetylglucosamine catabolic process
## 12227 UDP-N-acetylglucosamine diphosphorylase activity
## 12228 UFD1-NPL4 complex
## 12229 UFM1 activating enzyme activity
## 12230 UFM1 ligase activity
## 12231 UFM1 transferase activity
## 12232 UMP biosynthetic process
## 12233 UMP kinase activity
## 12234 uniporter activity
## 12235 uracil binding
## 12236 uracil catabolic process
## 12237 uracil metabolic process
## 12238 urate metabolic process
## 12239 urate transmembrane transporter activity
## 12240 urate transport
## 12241 ureter development
## 12242 ureter maturation
## 12243 ureteric bud formation
## 12244 uridine transmembrane transporter activity
## 12245 uridine transport
## 12246 uridylate kinase activity
## 12247 urinary bladder smooth muscle contraction
## 12248 uropod organization
## 12249 uroporphyrinogen III biosynthetic process
## 12250 uroporphyrinogen-III synthase activity
## 12251 ursodeoxycholate 7-beta-dehydrogenase (NAD+) activity
## 12252 uterine gland development
## 12253 UTP diphosphatase activity
## 12254 UTP metabolic process
## 12255 UTP-C complex
## 12256 V2 vasopressin receptor binding
## 12257 vacuolar protein processing
## 12258 vacuolar sequestering
## 12259 vacuole-isolation membrane contact site
## 12260 vagina development
## 12261 valine metabolic process
## 12262 vascular associated smooth muscle cell differentiation
## 12263 vascular endothelial cell response to fluid shear stress
## 12264 vascular endothelial growth factor receptor-1 signaling pathway
## 12265 vascular endothelial growth factor receptor-2 signaling pathway
## 12266 vasopressin receptor activity
## 12267 VEGF-activated neuropilin signaling pathway
## 12268 ventral midline development
## 12269 ventral spinal cord interneuron differentiation
## 12270 ventricular cardiac muscle tissue development
## 12271 ventricular cardiac muscle tissue morphogenesis
## 12272 vertebrate eye-specific patterning
## 12273 very long-chain fatty-acyl-CoA catabolic process
## 12274 very long-chain fatty-acyl-CoA metabolic process
## 12275 very-long-chain enoyl-CoA reductase activity
## 12276 very-low-density lipoprotein particle assembly
## 12277 very-low-density lipoprotein particle clearance
## 12278 very-low-density lipoprotein particle receptor binding
## 12279 vesicle coat
## 12280 vesicle cytoskeletal trafficking
## 12281 vesicle localization
## 12282 vesicle targeting, trans-Golgi to periciliary membrane compartment
## 12283 vesicle tethering to endoplasmic reticulum
## 12284 vesicle uncoating
## 12285 vesicle-mediated cholesterol transport
## 12286 viral release from host cell
## 12287 viral RNA genome packaging
## 12288 virus maturation
## 12289 visual system development
## 12290 vitamin A metabolic process
## 12291 vitamin B6 binding
## 12292 vitamin D response element binding
## 12293 vitamin K catabolic process
## 12294 vitamin K metabolic process
## 12295 vitamin transmembrane transporter activity
## 12296 vitamin transport
## 12297 vitamin-K-epoxide reductase (warfarin-sensitive) activity
## 12298 vitellogenesis
## 12299 vocalization behavior
## 12300 voltage-gated calcium channel activity involved in positive regulation of presynaptic cytosolic calcium levels
## 12301 voltage-gated potassium channel activity involved in atrial cardiac muscle cell action potential repolarization
## 12302 voltage-gated proton channel activity
## 12303 walking behavior
## 12304 wax biosynthetic process
## 12305 WD40-repeat domain binding
## 12306 wide pore channel activity
## 12307 Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## 12308 Wnt signaling pathway involved in somitogenesis
## 12309 Wnt signalosome assembly
## 12310 Wnt-Frizzled-LRP5/6 complex
## 12311 wound healing involved in inflammatory response
## 12312 XPC complex
## 12313 xylosylprotein 4-beta-galactosyltransferase activity
## 12314 xylulose metabolic process
## 12315 Y chromosome
## 12316 zonula adherens
## 12317 zygote asymmetric cell division
## 12318 zygotic specification of dorsal/ventral axis
## 12319 zymogen granule
## 12320 zymogen granule exocytosis
## n total perc
## 1 2532 5134 49.31827035
## 2 2521 5134 49.10401247
## 3 2421 5134 47.15621348
## 4 2180 5134 42.46201792
## 5 1750 5134 34.08648228
## 6 1287 5134 25.06817296
## 7 1280 5134 24.93182704
## 8 1180 5134 22.98402805
## 9 754 5134 14.68640436
## 10 737 5134 14.35527854
## 11 730 5134 14.21893261
## 12 721 5134 14.04363070
## 13 715 5134 13.92676276
## 14 640 5134 12.46591352
## 15 609 5134 11.86209583
## 16 593 5134 11.55044799
## 17 580 5134 11.29723413
## 18 547 5134 10.65446046
## 19 526 5134 10.24542267
## 20 524 5134 10.20646669
## 21 502 5134 9.77795092
## 22 403 5134 7.84962992
## 23 403 5134 7.84962992
## 24 402 5134 7.83015193
## 25 397 5134 7.73276198
## 26 375 5134 7.30424620
## 27 367 5134 7.14842228
## 28 361 5134 7.03155434
## 29 356 5134 6.93416439
## 30 327 5134 6.36930269
## 31 320 5134 6.23295676
## 32 313 5134 6.09661083
## 33 312 5134 6.07713284
## 34 302 5134 5.88235294
## 35 302 5134 5.88235294
## 36 298 5134 5.80444098
## 37 292 5134 5.68757304
## 38 285 5134 5.55122711
## 39 285 5134 5.55122711
## 40 285 5134 5.55122711
## 41 281 5134 5.47331515
## 42 279 5134 5.43435917
## 43 274 5134 5.33696922
## 44 271 5134 5.27853526
## 45 271 5134 5.27853526
## 46 269 5134 5.23957928
## 47 265 5134 5.16166732
## 48 264 5134 5.14218933
## 49 261 5134 5.08375536
## 50 260 5134 5.06427737
## 51 255 5134 4.96688742
## 52 250 5134 4.86949747
## 53 250 5134 4.86949747
## 54 243 5134 4.73315154
## 55 243 5134 4.73315154
## 56 238 5134 4.63576159
## 57 233 5134 4.53837164
## 58 233 5134 4.53837164
## 59 232 5134 4.51889365
## 60 221 5134 4.30463576
## 61 220 5134 4.28515777
## 62 213 5134 4.14881184
## 63 210 5134 4.09037787
## 64 203 5134 3.95403194
## 65 201 5134 3.91507596
## 66 200 5134 3.89559797
## 67 194 5134 3.77873004
## 68 193 5134 3.75925205
## 69 193 5134 3.75925205
## 70 191 5134 3.72029607
## 71 190 5134 3.70081808
## 72 188 5134 3.66186210
## 73 185 5134 3.60342813
## 74 183 5134 3.56447215
## 75 181 5134 3.52551617
## 76 180 5134 3.50603818
## 77 177 5134 3.44760421
## 78 176 5134 3.42812622
## 79 173 5134 3.36969225
## 80 172 5134 3.35021426
## 81 171 5134 3.33073627
## 82 170 5134 3.31125828
## 83 170 5134 3.31125828
## 84 169 5134 3.29178029
## 85 168 5134 3.27230230
## 86 167 5134 3.25282431
## 87 165 5134 3.21386833
## 88 162 5134 3.15543436
## 89 162 5134 3.15543436
## 90 160 5134 3.11647838
## 91 159 5134 3.09700039
## 92 159 5134 3.09700039
## 93 156 5134 3.03856642
## 94 149 5134 2.90222049
## 95 149 5134 2.90222049
## 96 148 5134 2.88274250
## 97 147 5134 2.86326451
## 98 145 5134 2.82430853
## 99 144 5134 2.80483054
## 100 143 5134 2.78535255
## 101 141 5134 2.74639657
## 102 140 5134 2.72691858
## 103 139 5134 2.70744059
## 104 134 5134 2.61005064
## 105 134 5134 2.61005064
## 106 134 5134 2.61005064
## 107 134 5134 2.61005064
## 108 133 5134 2.59057265
## 109 133 5134 2.59057265
## 110 132 5134 2.57109466
## 111 132 5134 2.57109466
## 112 130 5134 2.53213868
## 113 130 5134 2.53213868
## 114 128 5134 2.49318270
## 115 128 5134 2.49318270
## 116 128 5134 2.49318270
## 117 128 5134 2.49318270
## 118 127 5134 2.47370471
## 119 127 5134 2.47370471
## 120 127 5134 2.47370471
## 121 126 5134 2.45422672
## 122 126 5134 2.45422672
## 123 125 5134 2.43474873
## 124 123 5134 2.39579275
## 125 123 5134 2.39579275
## 126 121 5134 2.35683677
## 127 121 5134 2.35683677
## 128 121 5134 2.35683677
## 129 119 5134 2.31788079
## 130 119 5134 2.31788079
## 131 118 5134 2.29840280
## 132 117 5134 2.27892481
## 133 116 5134 2.25944683
## 134 115 5134 2.23996884
## 135 114 5134 2.22049085
## 136 113 5134 2.20101286
## 137 113 5134 2.20101286
## 138 111 5134 2.16205688
## 139 111 5134 2.16205688
## 140 111 5134 2.16205688
## 141 110 5134 2.14257889
## 142 109 5134 2.12310090
## 143 109 5134 2.12310090
## 144 107 5134 2.08414492
## 145 106 5134 2.06466693
## 146 106 5134 2.06466693
## 147 104 5134 2.02571095
## 148 104 5134 2.02571095
## 149 103 5134 2.00623296
## 150 102 5134 1.98675497
## 151 102 5134 1.98675497
## 152 100 5134 1.94779899
## 153 98 5134 1.90884301
## 154 98 5134 1.90884301
## 155 97 5134 1.88936502
## 156 96 5134 1.86988703
## 157 94 5134 1.83093105
## 158 94 5134 1.83093105
## 159 94 5134 1.83093105
## 160 93 5134 1.81145306
## 161 93 5134 1.81145306
## 162 93 5134 1.81145306
## 163 91 5134 1.77249708
## 164 91 5134 1.77249708
## 165 90 5134 1.75301909
## 166 90 5134 1.75301909
## 167 90 5134 1.75301909
## 168 90 5134 1.75301909
## 169 89 5134 1.73354110
## 170 89 5134 1.73354110
## 171 89 5134 1.73354110
## 172 89 5134 1.73354110
## 173 89 5134 1.73354110
## 174 89 5134 1.73354110
## 175 89 5134 1.73354110
## 176 89 5134 1.73354110
## 177 88 5134 1.71406311
## 178 87 5134 1.69458512
## 179 86 5134 1.67510713
## 180 85 5134 1.65562914
## 181 84 5134 1.63615115
## 182 84 5134 1.63615115
## 183 84 5134 1.63615115
## 184 84 5134 1.63615115
## 185 83 5134 1.61667316
## 186 83 5134 1.61667316
## 187 82 5134 1.59719517
## 188 82 5134 1.59719517
## 189 81 5134 1.57771718
## 190 81 5134 1.57771718
## 191 81 5134 1.57771718
## 192 81 5134 1.57771718
## 193 80 5134 1.55823919
## 194 80 5134 1.55823919
## 195 80 5134 1.55823919
## 196 80 5134 1.55823919
## 197 80 5134 1.55823919
## 198 80 5134 1.55823919
## 199 79 5134 1.53876120
## 200 79 5134 1.53876120
## 201 79 5134 1.53876120
## 202 79 5134 1.53876120
## 203 79 5134 1.53876120
## 204 79 5134 1.53876120
## 205 78 5134 1.51928321
## 206 78 5134 1.51928321
## 207 77 5134 1.49980522
## 208 77 5134 1.49980522
## 209 76 5134 1.48032723
## 210 76 5134 1.48032723
## 211 76 5134 1.48032723
## 212 76 5134 1.48032723
## 213 75 5134 1.46084924
## 214 75 5134 1.46084924
## 215 75 5134 1.46084924
## 216 75 5134 1.46084924
## 217 75 5134 1.46084924
## 218 74 5134 1.44137125
## 219 73 5134 1.42189326
## 220 72 5134 1.40241527
## 221 72 5134 1.40241527
## 222 71 5134 1.38293728
## 223 71 5134 1.38293728
## 224 71 5134 1.38293728
## 225 71 5134 1.38293728
## 226 70 5134 1.36345929
## 227 70 5134 1.36345929
## 228 70 5134 1.36345929
## 229 70 5134 1.36345929
## 230 70 5134 1.36345929
## 231 70 5134 1.36345929
## 232 69 5134 1.34398130
## 233 69 5134 1.34398130
## 234 68 5134 1.32450331
## 235 67 5134 1.30502532
## 236 66 5134 1.28554733
## 237 66 5134 1.28554733
## 238 66 5134 1.28554733
## 239 66 5134 1.28554733
## 240 65 5134 1.26606934
## 241 65 5134 1.26606934
## 242 65 5134 1.26606934
## 243 64 5134 1.24659135
## 244 63 5134 1.22711336
## 245 63 5134 1.22711336
## 246 63 5134 1.22711336
## 247 62 5134 1.20763537
## 248 62 5134 1.20763537
## 249 62 5134 1.20763537
## 250 62 5134 1.20763537
## 251 62 5134 1.20763537
## 252 61 5134 1.18815738
## 253 61 5134 1.18815738
## 254 61 5134 1.18815738
## 255 61 5134 1.18815738
## 256 61 5134 1.18815738
## 257 60 5134 1.16867939
## 258 60 5134 1.16867939
## 259 60 5134 1.16867939
## 260 60 5134 1.16867939
## 261 59 5134 1.14920140
## 262 59 5134 1.14920140
## 263 59 5134 1.14920140
## 264 58 5134 1.12972341
## 265 58 5134 1.12972341
## 266 58 5134 1.12972341
## 267 57 5134 1.11024542
## 268 57 5134 1.11024542
## 269 57 5134 1.11024542
## 270 57 5134 1.11024542
## 271 57 5134 1.11024542
## 272 57 5134 1.11024542
## 273 56 5134 1.09076743
## 274 56 5134 1.09076743
## 275 56 5134 1.09076743
## 276 56 5134 1.09076743
## 277 55 5134 1.07128944
## 278 55 5134 1.07128944
## 279 55 5134 1.07128944
## 280 55 5134 1.07128944
## 281 55 5134 1.07128944
## 282 54 5134 1.05181145
## 283 54 5134 1.05181145
## 284 54 5134 1.05181145
## 285 54 5134 1.05181145
## 286 54 5134 1.05181145
## 287 54 5134 1.05181145
## 288 53 5134 1.03233346
## 289 53 5134 1.03233346
## 290 53 5134 1.03233346
## 291 52 5134 1.01285547
## 292 52 5134 1.01285547
## 293 52 5134 1.01285547
## 294 52 5134 1.01285547
## 295 52 5134 1.01285547
## 296 52 5134 1.01285547
## 297 52 5134 1.01285547
## 298 51 5134 0.99337748
## 299 51 5134 0.99337748
## 300 51 5134 0.99337748
## 301 51 5134 0.99337748
## 302 51 5134 0.99337748
## 303 51 5134 0.99337748
## 304 50 5134 0.97389949
## 305 50 5134 0.97389949
## 306 50 5134 0.97389949
## 307 50 5134 0.97389949
## 308 50 5134 0.97389949
## 309 50 5134 0.97389949
## 310 50 5134 0.97389949
## 311 50 5134 0.97389949
## 312 50 5134 0.97389949
## 313 49 5134 0.95442150
## 314 49 5134 0.95442150
## 315 49 5134 0.95442150
## 316 49 5134 0.95442150
## 317 49 5134 0.95442150
## 318 49 5134 0.95442150
## 319 49 5134 0.95442150
## 320 49 5134 0.95442150
## 321 49 5134 0.95442150
## 322 48 5134 0.93494351
## 323 48 5134 0.93494351
## 324 48 5134 0.93494351
## 325 48 5134 0.93494351
## 326 48 5134 0.93494351
## 327 48 5134 0.93494351
## 328 47 5134 0.91546552
## 329 47 5134 0.91546552
## 330 47 5134 0.91546552
## 331 47 5134 0.91546552
## 332 47 5134 0.91546552
## 333 47 5134 0.91546552
## 334 47 5134 0.91546552
## 335 47 5134 0.91546552
## 336 47 5134 0.91546552
## 337 46 5134 0.89598753
## 338 46 5134 0.89598753
## 339 46 5134 0.89598753
## 340 46 5134 0.89598753
## 341 46 5134 0.89598753
## 342 46 5134 0.89598753
## 343 46 5134 0.89598753
## 344 46 5134 0.89598753
## 345 45 5134 0.87650954
## 346 45 5134 0.87650954
## 347 45 5134 0.87650954
## 348 44 5134 0.85703155
## 349 44 5134 0.85703155
## 350 44 5134 0.85703155
## 351 44 5134 0.85703155
## 352 44 5134 0.85703155
## 353 44 5134 0.85703155
## 354 43 5134 0.83755356
## 355 43 5134 0.83755356
## 356 43 5134 0.83755356
## 357 43 5134 0.83755356
## 358 43 5134 0.83755356
## 359 43 5134 0.83755356
## 360 43 5134 0.83755356
## 361 43 5134 0.83755356
## 362 43 5134 0.83755356
## 363 42 5134 0.81807557
## 364 42 5134 0.81807557
## 365 42 5134 0.81807557
## 366 42 5134 0.81807557
## 367 42 5134 0.81807557
## 368 42 5134 0.81807557
## 369 42 5134 0.81807557
## 370 41 5134 0.79859758
## 371 41 5134 0.79859758
## 372 41 5134 0.79859758
## 373 41 5134 0.79859758
## 374 41 5134 0.79859758
## 375 41 5134 0.79859758
## 376 41 5134 0.79859758
## 377 41 5134 0.79859758
## 378 41 5134 0.79859758
## 379 40 5134 0.77911959
## 380 40 5134 0.77911959
## 381 40 5134 0.77911959
## 382 40 5134 0.77911959
## 383 40 5134 0.77911959
## 384 40 5134 0.77911959
## 385 40 5134 0.77911959
## 386 40 5134 0.77911959
## 387 40 5134 0.77911959
## 388 40 5134 0.77911959
## 389 40 5134 0.77911959
## 390 40 5134 0.77911959
## 391 39 5134 0.75964160
## 392 39 5134 0.75964160
## 393 39 5134 0.75964160
## 394 39 5134 0.75964160
## 395 39 5134 0.75964160
## 396 39 5134 0.75964160
## 397 39 5134 0.75964160
## 398 39 5134 0.75964160
## 399 39 5134 0.75964160
## 400 39 5134 0.75964160
## 401 39 5134 0.75964160
## 402 39 5134 0.75964160
## 403 38 5134 0.74016362
## 404 38 5134 0.74016362
## 405 38 5134 0.74016362
## 406 38 5134 0.74016362
## 407 38 5134 0.74016362
## 408 38 5134 0.74016362
## 409 38 5134 0.74016362
## 410 38 5134 0.74016362
## 411 38 5134 0.74016362
## 412 38 5134 0.74016362
## 413 38 5134 0.74016362
## 414 37 5134 0.72068563
## 415 37 5134 0.72068563
## 416 37 5134 0.72068563
## 417 37 5134 0.72068563
## 418 37 5134 0.72068563
## 419 37 5134 0.72068563
## 420 37 5134 0.72068563
## 421 37 5134 0.72068563
## 422 37 5134 0.72068563
## 423 37 5134 0.72068563
## 424 37 5134 0.72068563
## 425 37 5134 0.72068563
## 426 37 5134 0.72068563
## 427 37 5134 0.72068563
## 428 36 5134 0.70120764
## 429 36 5134 0.70120764
## 430 36 5134 0.70120764
## 431 36 5134 0.70120764
## 432 36 5134 0.70120764
## 433 36 5134 0.70120764
## 434 36 5134 0.70120764
## 435 36 5134 0.70120764
## 436 36 5134 0.70120764
## 437 36 5134 0.70120764
## 438 36 5134 0.70120764
## 439 36 5134 0.70120764
## 440 36 5134 0.70120764
## 441 36 5134 0.70120764
## 442 36 5134 0.70120764
## 443 35 5134 0.68172965
## 444 35 5134 0.68172965
## 445 35 5134 0.68172965
## 446 35 5134 0.68172965
## 447 35 5134 0.68172965
## 448 35 5134 0.68172965
## 449 35 5134 0.68172965
## 450 35 5134 0.68172965
## 451 35 5134 0.68172965
## 452 35 5134 0.68172965
## 453 35 5134 0.68172965
## 454 35 5134 0.68172965
## 455 35 5134 0.68172965
## 456 35 5134 0.68172965
## 457 34 5134 0.66225166
## 458 34 5134 0.66225166
## 459 34 5134 0.66225166
## 460 34 5134 0.66225166
## 461 34 5134 0.66225166
## 462 34 5134 0.66225166
## 463 34 5134 0.66225166
## 464 34 5134 0.66225166
## 465 34 5134 0.66225166
## 466 34 5134 0.66225166
## 467 34 5134 0.66225166
## 468 34 5134 0.66225166
## 469 34 5134 0.66225166
## 470 33 5134 0.64277367
## 471 33 5134 0.64277367
## 472 33 5134 0.64277367
## 473 33 5134 0.64277367
## 474 33 5134 0.64277367
## 475 33 5134 0.64277367
## 476 33 5134 0.64277367
## 477 33 5134 0.64277367
## 478 33 5134 0.64277367
## 479 33 5134 0.64277367
## 480 33 5134 0.64277367
## 481 32 5134 0.62329568
## 482 32 5134 0.62329568
## 483 32 5134 0.62329568
## 484 32 5134 0.62329568
## 485 32 5134 0.62329568
## 486 32 5134 0.62329568
## 487 32 5134 0.62329568
## 488 32 5134 0.62329568
## 489 32 5134 0.62329568
## 490 32 5134 0.62329568
## 491 32 5134 0.62329568
## 492 32 5134 0.62329568
## 493 32 5134 0.62329568
## 494 32 5134 0.62329568
## 495 31 5134 0.60381769
## 496 31 5134 0.60381769
## 497 31 5134 0.60381769
## 498 31 5134 0.60381769
## 499 31 5134 0.60381769
## 500 31 5134 0.60381769
## 501 31 5134 0.60381769
## 502 31 5134 0.60381769
## 503 31 5134 0.60381769
## 504 31 5134 0.60381769
## 505 31 5134 0.60381769
## 506 31 5134 0.60381769
## 507 31 5134 0.60381769
## 508 31 5134 0.60381769
## 509 31 5134 0.60381769
## 510 31 5134 0.60381769
## 511 31 5134 0.60381769
## 512 30 5134 0.58433970
## 513 30 5134 0.58433970
## 514 30 5134 0.58433970
## 515 30 5134 0.58433970
## 516 30 5134 0.58433970
## 517 30 5134 0.58433970
## 518 30 5134 0.58433970
## 519 30 5134 0.58433970
## 520 30 5134 0.58433970
## 521 30 5134 0.58433970
## 522 30 5134 0.58433970
## 523 30 5134 0.58433970
## 524 30 5134 0.58433970
## 525 30 5134 0.58433970
## 526 30 5134 0.58433970
## 527 30 5134 0.58433970
## 528 30 5134 0.58433970
## 529 30 5134 0.58433970
## 530 30 5134 0.58433970
## 531 30 5134 0.58433970
## 532 29 5134 0.56486171
## 533 29 5134 0.56486171
## 534 29 5134 0.56486171
## 535 29 5134 0.56486171
## 536 29 5134 0.56486171
## 537 29 5134 0.56486171
## 538 29 5134 0.56486171
## 539 29 5134 0.56486171
## 540 29 5134 0.56486171
## 541 29 5134 0.56486171
## 542 29 5134 0.56486171
## 543 29 5134 0.56486171
## 544 29 5134 0.56486171
## 545 29 5134 0.56486171
## 546 29 5134 0.56486171
## 547 29 5134 0.56486171
## 548 29 5134 0.56486171
## 549 29 5134 0.56486171
## 550 29 5134 0.56486171
## 551 29 5134 0.56486171
## 552 28 5134 0.54538372
## 553 28 5134 0.54538372
## 554 28 5134 0.54538372
## 555 28 5134 0.54538372
## 556 28 5134 0.54538372
## 557 28 5134 0.54538372
## 558 28 5134 0.54538372
## 559 28 5134 0.54538372
## 560 28 5134 0.54538372
## 561 28 5134 0.54538372
## 562 28 5134 0.54538372
## 563 28 5134 0.54538372
## 564 28 5134 0.54538372
## 565 28 5134 0.54538372
## 566 28 5134 0.54538372
## 567 28 5134 0.54538372
## 568 28 5134 0.54538372
## 569 28 5134 0.54538372
## 570 28 5134 0.54538372
## 571 28 5134 0.54538372
## 572 28 5134 0.54538372
## 573 28 5134 0.54538372
## 574 28 5134 0.54538372
## 575 28 5134 0.54538372
## 576 28 5134 0.54538372
## 577 28 5134 0.54538372
## 578 27 5134 0.52590573
## 579 27 5134 0.52590573
## 580 27 5134 0.52590573
## 581 27 5134 0.52590573
## 582 27 5134 0.52590573
## 583 27 5134 0.52590573
## 584 27 5134 0.52590573
## 585 27 5134 0.52590573
## 586 27 5134 0.52590573
## 587 27 5134 0.52590573
## 588 27 5134 0.52590573
## 589 27 5134 0.52590573
## 590 27 5134 0.52590573
## 591 27 5134 0.52590573
## 592 27 5134 0.52590573
## 593 27 5134 0.52590573
## 594 27 5134 0.52590573
## 595 27 5134 0.52590573
## 596 27 5134 0.52590573
## 597 27 5134 0.52590573
## 598 27 5134 0.52590573
## 599 27 5134 0.52590573
## 600 27 5134 0.52590573
## 601 26 5134 0.50642774
## 602 26 5134 0.50642774
## 603 26 5134 0.50642774
## 604 26 5134 0.50642774
## 605 26 5134 0.50642774
## 606 26 5134 0.50642774
## 607 26 5134 0.50642774
## 608 26 5134 0.50642774
## 609 26 5134 0.50642774
## 610 26 5134 0.50642774
## 611 26 5134 0.50642774
## 612 26 5134 0.50642774
## 613 26 5134 0.50642774
## 614 26 5134 0.50642774
## 615 26 5134 0.50642774
## 616 26 5134 0.50642774
## 617 26 5134 0.50642774
## 618 26 5134 0.50642774
## 619 26 5134 0.50642774
## 620 26 5134 0.50642774
## 621 26 5134 0.50642774
## 622 26 5134 0.50642774
## 623 26 5134 0.50642774
## 624 26 5134 0.50642774
## 625 26 5134 0.50642774
## 626 26 5134 0.50642774
## 627 26 5134 0.50642774
## 628 26 5134 0.50642774
## 629 26 5134 0.50642774
## 630 25 5134 0.48694975
## 631 25 5134 0.48694975
## 632 25 5134 0.48694975
## 633 25 5134 0.48694975
## 634 25 5134 0.48694975
## 635 25 5134 0.48694975
## 636 25 5134 0.48694975
## 637 25 5134 0.48694975
## 638 25 5134 0.48694975
## 639 25 5134 0.48694975
## 640 25 5134 0.48694975
## 641 25 5134 0.48694975
## 642 25 5134 0.48694975
## 643 25 5134 0.48694975
## 644 25 5134 0.48694975
## 645 25 5134 0.48694975
## 646 25 5134 0.48694975
## 647 25 5134 0.48694975
## 648 25 5134 0.48694975
## 649 25 5134 0.48694975
## 650 25 5134 0.48694975
## 651 25 5134 0.48694975
## 652 25 5134 0.48694975
## 653 25 5134 0.48694975
## 654 25 5134 0.48694975
## 655 25 5134 0.48694975
## 656 25 5134 0.48694975
## 657 25 5134 0.48694975
## 658 25 5134 0.48694975
## 659 25 5134 0.48694975
## 660 25 5134 0.48694975
## 661 25 5134 0.48694975
## 662 25 5134 0.48694975
## 663 25 5134 0.48694975
## 664 25 5134 0.48694975
## 665 25 5134 0.48694975
## 666 25 5134 0.48694975
## 667 25 5134 0.48694975
## 668 25 5134 0.48694975
## 669 25 5134 0.48694975
## 670 25 5134 0.48694975
## 671 25 5134 0.48694975
## 672 24 5134 0.46747176
## 673 24 5134 0.46747176
## 674 24 5134 0.46747176
## 675 24 5134 0.46747176
## 676 24 5134 0.46747176
## 677 24 5134 0.46747176
## 678 24 5134 0.46747176
## 679 24 5134 0.46747176
## 680 24 5134 0.46747176
## 681 24 5134 0.46747176
## 682 24 5134 0.46747176
## 683 24 5134 0.46747176
## 684 24 5134 0.46747176
## 685 24 5134 0.46747176
## 686 24 5134 0.46747176
## 687 24 5134 0.46747176
## 688 24 5134 0.46747176
## 689 24 5134 0.46747176
## 690 24 5134 0.46747176
## 691 24 5134 0.46747176
## 692 24 5134 0.46747176
## 693 23 5134 0.44799377
## 694 23 5134 0.44799377
## 695 23 5134 0.44799377
## 696 23 5134 0.44799377
## 697 23 5134 0.44799377
## 698 23 5134 0.44799377
## 699 23 5134 0.44799377
## 700 23 5134 0.44799377
## 701 23 5134 0.44799377
## 702 23 5134 0.44799377
## 703 23 5134 0.44799377
## 704 23 5134 0.44799377
## 705 23 5134 0.44799377
## 706 23 5134 0.44799377
## 707 23 5134 0.44799377
## 708 23 5134 0.44799377
## 709 23 5134 0.44799377
## 710 23 5134 0.44799377
## 711 23 5134 0.44799377
## 712 23 5134 0.44799377
## 713 23 5134 0.44799377
## 714 23 5134 0.44799377
## 715 23 5134 0.44799377
## 716 23 5134 0.44799377
## 717 23 5134 0.44799377
## 718 23 5134 0.44799377
## 719 23 5134 0.44799377
## 720 22 5134 0.42851578
## 721 22 5134 0.42851578
## 722 22 5134 0.42851578
## 723 22 5134 0.42851578
## 724 22 5134 0.42851578
## 725 22 5134 0.42851578
## 726 22 5134 0.42851578
## 727 22 5134 0.42851578
## 728 22 5134 0.42851578
## 729 22 5134 0.42851578
## 730 22 5134 0.42851578
## 731 22 5134 0.42851578
## 732 22 5134 0.42851578
## 733 22 5134 0.42851578
## 734 22 5134 0.42851578
## 735 22 5134 0.42851578
## 736 22 5134 0.42851578
## 737 22 5134 0.42851578
## 738 22 5134 0.42851578
## 739 22 5134 0.42851578
## 740 22 5134 0.42851578
## 741 22 5134 0.42851578
## 742 22 5134 0.42851578
## 743 22 5134 0.42851578
## 744 22 5134 0.42851578
## 745 22 5134 0.42851578
## 746 22 5134 0.42851578
## 747 22 5134 0.42851578
## 748 22 5134 0.42851578
## 749 22 5134 0.42851578
## 750 22 5134 0.42851578
## 751 22 5134 0.42851578
## 752 22 5134 0.42851578
## 753 22 5134 0.42851578
## 754 22 5134 0.42851578
## 755 22 5134 0.42851578
## 756 22 5134 0.42851578
## 757 22 5134 0.42851578
## 758 22 5134 0.42851578
## 759 22 5134 0.42851578
## 760 22 5134 0.42851578
## 761 21 5134 0.40903779
## 762 21 5134 0.40903779
## 763 21 5134 0.40903779
## 764 21 5134 0.40903779
## 765 21 5134 0.40903779
## 766 21 5134 0.40903779
## 767 21 5134 0.40903779
## 768 21 5134 0.40903779
## 769 21 5134 0.40903779
## 770 21 5134 0.40903779
## 771 21 5134 0.40903779
## 772 21 5134 0.40903779
## 773 21 5134 0.40903779
## 774 21 5134 0.40903779
## 775 21 5134 0.40903779
## 776 21 5134 0.40903779
## 777 21 5134 0.40903779
## 778 21 5134 0.40903779
## 779 21 5134 0.40903779
## 780 21 5134 0.40903779
## 781 21 5134 0.40903779
## 782 21 5134 0.40903779
## 783 21 5134 0.40903779
## 784 21 5134 0.40903779
## 785 21 5134 0.40903779
## 786 21 5134 0.40903779
## 787 21 5134 0.40903779
## 788 20 5134 0.38955980
## 789 20 5134 0.38955980
## 790 20 5134 0.38955980
## 791 20 5134 0.38955980
## 792 20 5134 0.38955980
## 793 20 5134 0.38955980
## 794 20 5134 0.38955980
## 795 20 5134 0.38955980
## 796 20 5134 0.38955980
## 797 20 5134 0.38955980
## 798 20 5134 0.38955980
## 799 20 5134 0.38955980
## 800 20 5134 0.38955980
## 801 20 5134 0.38955980
## 802 20 5134 0.38955980
## 803 20 5134 0.38955980
## 804 20 5134 0.38955980
## 805 20 5134 0.38955980
## 806 20 5134 0.38955980
## 807 20 5134 0.38955980
## 808 20 5134 0.38955980
## 809 20 5134 0.38955980
## 810 20 5134 0.38955980
## 811 20 5134 0.38955980
## 812 20 5134 0.38955980
## 813 20 5134 0.38955980
## 814 20 5134 0.38955980
## 815 20 5134 0.38955980
## 816 20 5134 0.38955980
## 817 20 5134 0.38955980
## 818 20 5134 0.38955980
## 819 20 5134 0.38955980
## 820 20 5134 0.38955980
## 821 20 5134 0.38955980
## 822 20 5134 0.38955980
## 823 20 5134 0.38955980
## 824 20 5134 0.38955980
## 825 20 5134 0.38955980
## 826 20 5134 0.38955980
## 827 20 5134 0.38955980
## 828 20 5134 0.38955980
## 829 20 5134 0.38955980
## 830 20 5134 0.38955980
## 831 20 5134 0.38955980
## 832 20 5134 0.38955980
## 833 20 5134 0.38955980
## 834 20 5134 0.38955980
## 835 20 5134 0.38955980
## 836 20 5134 0.38955980
## 837 20 5134 0.38955980
## 838 20 5134 0.38955980
## 839 20 5134 0.38955980
## 840 20 5134 0.38955980
## 841 20 5134 0.38955980
## 842 20 5134 0.38955980
## 843 20 5134 0.38955980
## 844 20 5134 0.38955980
## 845 19 5134 0.37008181
## 846 19 5134 0.37008181
## 847 19 5134 0.37008181
## 848 19 5134 0.37008181
## 849 19 5134 0.37008181
## 850 19 5134 0.37008181
## 851 19 5134 0.37008181
## 852 19 5134 0.37008181
## 853 19 5134 0.37008181
## 854 19 5134 0.37008181
## 855 19 5134 0.37008181
## 856 19 5134 0.37008181
## 857 19 5134 0.37008181
## 858 19 5134 0.37008181
## 859 19 5134 0.37008181
## 860 19 5134 0.37008181
## 861 19 5134 0.37008181
## 862 19 5134 0.37008181
## 863 19 5134 0.37008181
## 864 19 5134 0.37008181
## 865 19 5134 0.37008181
## 866 19 5134 0.37008181
## 867 19 5134 0.37008181
## 868 19 5134 0.37008181
## 869 19 5134 0.37008181
## 870 19 5134 0.37008181
## 871 19 5134 0.37008181
## 872 19 5134 0.37008181
## 873 19 5134 0.37008181
## 874 19 5134 0.37008181
## 875 19 5134 0.37008181
## 876 19 5134 0.37008181
## 877 19 5134 0.37008181
## 878 19 5134 0.37008181
## 879 19 5134 0.37008181
## 880 19 5134 0.37008181
## 881 19 5134 0.37008181
## 882 19 5134 0.37008181
## 883 19 5134 0.37008181
## 884 19 5134 0.37008181
## 885 19 5134 0.37008181
## 886 19 5134 0.37008181
## 887 19 5134 0.37008181
## 888 19 5134 0.37008181
## 889 19 5134 0.37008181
## 890 19 5134 0.37008181
## 891 19 5134 0.37008181
## 892 19 5134 0.37008181
## 893 19 5134 0.37008181
## 894 18 5134 0.35060382
## 895 18 5134 0.35060382
## 896 18 5134 0.35060382
## 897 18 5134 0.35060382
## 898 18 5134 0.35060382
## 899 18 5134 0.35060382
## 900 18 5134 0.35060382
## 901 18 5134 0.35060382
## 902 18 5134 0.35060382
## 903 18 5134 0.35060382
## 904 18 5134 0.35060382
## 905 18 5134 0.35060382
## 906 18 5134 0.35060382
## 907 18 5134 0.35060382
## 908 18 5134 0.35060382
## 909 18 5134 0.35060382
## 910 18 5134 0.35060382
## 911 18 5134 0.35060382
## 912 18 5134 0.35060382
## 913 18 5134 0.35060382
## 914 18 5134 0.35060382
## 915 18 5134 0.35060382
## 916 18 5134 0.35060382
## 917 18 5134 0.35060382
## 918 18 5134 0.35060382
## 919 18 5134 0.35060382
## 920 18 5134 0.35060382
## 921 18 5134 0.35060382
## 922 18 5134 0.35060382
## 923 18 5134 0.35060382
## 924 18 5134 0.35060382
## 925 18 5134 0.35060382
## 926 18 5134 0.35060382
## 927 18 5134 0.35060382
## 928 18 5134 0.35060382
## 929 18 5134 0.35060382
## 930 18 5134 0.35060382
## 931 18 5134 0.35060382
## 932 18 5134 0.35060382
## 933 18 5134 0.35060382
## 934 18 5134 0.35060382
## 935 18 5134 0.35060382
## 936 18 5134 0.35060382
## 937 18 5134 0.35060382
## 938 18 5134 0.35060382
## 939 18 5134 0.35060382
## 940 18 5134 0.35060382
## 941 18 5134 0.35060382
## 942 17 5134 0.33112583
## 943 17 5134 0.33112583
## 944 17 5134 0.33112583
## 945 17 5134 0.33112583
## 946 17 5134 0.33112583
## 947 17 5134 0.33112583
## 948 17 5134 0.33112583
## 949 17 5134 0.33112583
## 950 17 5134 0.33112583
## 951 17 5134 0.33112583
## 952 17 5134 0.33112583
## 953 17 5134 0.33112583
## 954 17 5134 0.33112583
## 955 17 5134 0.33112583
## 956 17 5134 0.33112583
## 957 17 5134 0.33112583
## 958 17 5134 0.33112583
## 959 17 5134 0.33112583
## 960 17 5134 0.33112583
## 961 17 5134 0.33112583
## 962 17 5134 0.33112583
## 963 17 5134 0.33112583
## 964 17 5134 0.33112583
## 965 17 5134 0.33112583
## 966 17 5134 0.33112583
## 967 17 5134 0.33112583
## 968 17 5134 0.33112583
## 969 17 5134 0.33112583
## 970 17 5134 0.33112583
## 971 17 5134 0.33112583
## 972 17 5134 0.33112583
## 973 17 5134 0.33112583
## 974 17 5134 0.33112583
## 975 17 5134 0.33112583
## 976 17 5134 0.33112583
## 977 17 5134 0.33112583
## 978 17 5134 0.33112583
## 979 17 5134 0.33112583
## 980 17 5134 0.33112583
## 981 17 5134 0.33112583
## 982 17 5134 0.33112583
## 983 17 5134 0.33112583
## 984 17 5134 0.33112583
## 985 17 5134 0.33112583
## 986 17 5134 0.33112583
## 987 17 5134 0.33112583
## 988 17 5134 0.33112583
## 989 17 5134 0.33112583
## 990 16 5134 0.31164784
## 991 16 5134 0.31164784
## 992 16 5134 0.31164784
## 993 16 5134 0.31164784
## 994 16 5134 0.31164784
## 995 16 5134 0.31164784
## 996 16 5134 0.31164784
## 997 16 5134 0.31164784
## 998 16 5134 0.31164784
## 999 16 5134 0.31164784
## 1000 16 5134 0.31164784
## 1001 16 5134 0.31164784
## 1002 16 5134 0.31164784
## 1003 16 5134 0.31164784
## 1004 16 5134 0.31164784
## 1005 16 5134 0.31164784
## 1006 16 5134 0.31164784
## 1007 16 5134 0.31164784
## 1008 16 5134 0.31164784
## 1009 16 5134 0.31164784
## 1010 16 5134 0.31164784
## 1011 16 5134 0.31164784
## 1012 16 5134 0.31164784
## 1013 16 5134 0.31164784
## 1014 16 5134 0.31164784
## 1015 16 5134 0.31164784
## 1016 16 5134 0.31164784
## 1017 16 5134 0.31164784
## 1018 16 5134 0.31164784
## 1019 16 5134 0.31164784
## 1020 16 5134 0.31164784
## 1021 16 5134 0.31164784
## 1022 16 5134 0.31164784
## 1023 16 5134 0.31164784
## 1024 16 5134 0.31164784
## 1025 16 5134 0.31164784
## 1026 16 5134 0.31164784
## 1027 16 5134 0.31164784
## 1028 16 5134 0.31164784
## 1029 16 5134 0.31164784
## 1030 16 5134 0.31164784
## 1031 16 5134 0.31164784
## 1032 16 5134 0.31164784
## 1033 16 5134 0.31164784
## 1034 16 5134 0.31164784
## 1035 16 5134 0.31164784
## 1036 16 5134 0.31164784
## 1037 16 5134 0.31164784
## 1038 16 5134 0.31164784
## 1039 16 5134 0.31164784
## 1040 15 5134 0.29216985
## 1041 15 5134 0.29216985
## 1042 15 5134 0.29216985
## 1043 15 5134 0.29216985
## 1044 15 5134 0.29216985
## 1045 15 5134 0.29216985
## 1046 15 5134 0.29216985
## 1047 15 5134 0.29216985
## 1048 15 5134 0.29216985
## 1049 15 5134 0.29216985
## 1050 15 5134 0.29216985
## 1051 15 5134 0.29216985
## 1052 15 5134 0.29216985
## 1053 15 5134 0.29216985
## 1054 15 5134 0.29216985
## 1055 15 5134 0.29216985
## 1056 15 5134 0.29216985
## 1057 15 5134 0.29216985
## 1058 15 5134 0.29216985
## 1059 15 5134 0.29216985
## 1060 15 5134 0.29216985
## 1061 15 5134 0.29216985
## 1062 15 5134 0.29216985
## 1063 15 5134 0.29216985
## 1064 15 5134 0.29216985
## 1065 15 5134 0.29216985
## 1066 15 5134 0.29216985
## 1067 15 5134 0.29216985
## 1068 15 5134 0.29216985
## 1069 15 5134 0.29216985
## 1070 15 5134 0.29216985
## 1071 15 5134 0.29216985
## 1072 15 5134 0.29216985
## 1073 15 5134 0.29216985
## 1074 15 5134 0.29216985
## 1075 15 5134 0.29216985
## 1076 15 5134 0.29216985
## 1077 15 5134 0.29216985
## 1078 15 5134 0.29216985
## 1079 15 5134 0.29216985
## 1080 15 5134 0.29216985
## 1081 15 5134 0.29216985
## 1082 15 5134 0.29216985
## 1083 15 5134 0.29216985
## 1084 15 5134 0.29216985
## 1085 15 5134 0.29216985
## 1086 15 5134 0.29216985
## 1087 15 5134 0.29216985
## 1088 15 5134 0.29216985
## 1089 15 5134 0.29216985
## 1090 15 5134 0.29216985
## 1091 15 5134 0.29216985
## 1092 15 5134 0.29216985
## 1093 15 5134 0.29216985
## 1094 15 5134 0.29216985
## 1095 15 5134 0.29216985
## 1096 15 5134 0.29216985
## 1097 15 5134 0.29216985
## 1098 15 5134 0.29216985
## 1099 15 5134 0.29216985
## 1100 15 5134 0.29216985
## 1101 15 5134 0.29216985
## 1102 15 5134 0.29216985
## 1103 15 5134 0.29216985
## 1104 15 5134 0.29216985
## 1105 15 5134 0.29216985
## 1106 15 5134 0.29216985
## 1107 15 5134 0.29216985
## 1108 15 5134 0.29216985
## 1109 15 5134 0.29216985
## 1110 15 5134 0.29216985
## 1111 15 5134 0.29216985
## 1112 15 5134 0.29216985
## 1113 15 5134 0.29216985
## 1114 15 5134 0.29216985
## 1115 15 5134 0.29216985
## 1116 15 5134 0.29216985
## 1117 15 5134 0.29216985
## 1118 15 5134 0.29216985
## 1119 14 5134 0.27269186
## 1120 14 5134 0.27269186
## 1121 14 5134 0.27269186
## 1122 14 5134 0.27269186
## 1123 14 5134 0.27269186
## 1124 14 5134 0.27269186
## 1125 14 5134 0.27269186
## 1126 14 5134 0.27269186
## 1127 14 5134 0.27269186
## 1128 14 5134 0.27269186
## 1129 14 5134 0.27269186
## 1130 14 5134 0.27269186
## 1131 14 5134 0.27269186
## 1132 14 5134 0.27269186
## 1133 14 5134 0.27269186
## 1134 14 5134 0.27269186
## 1135 14 5134 0.27269186
## 1136 14 5134 0.27269186
## 1137 14 5134 0.27269186
## 1138 14 5134 0.27269186
## 1139 14 5134 0.27269186
## 1140 14 5134 0.27269186
## 1141 14 5134 0.27269186
## 1142 14 5134 0.27269186
## 1143 14 5134 0.27269186
## 1144 14 5134 0.27269186
## 1145 14 5134 0.27269186
## 1146 14 5134 0.27269186
## 1147 14 5134 0.27269186
## 1148 14 5134 0.27269186
## 1149 14 5134 0.27269186
## 1150 14 5134 0.27269186
## 1151 14 5134 0.27269186
## 1152 14 5134 0.27269186
## 1153 14 5134 0.27269186
## 1154 14 5134 0.27269186
## 1155 14 5134 0.27269186
## 1156 14 5134 0.27269186
## 1157 14 5134 0.27269186
## 1158 14 5134 0.27269186
## 1159 14 5134 0.27269186
## 1160 14 5134 0.27269186
## 1161 14 5134 0.27269186
## 1162 14 5134 0.27269186
## 1163 14 5134 0.27269186
## 1164 14 5134 0.27269186
## 1165 14 5134 0.27269186
## 1166 14 5134 0.27269186
## 1167 14 5134 0.27269186
## 1168 14 5134 0.27269186
## 1169 14 5134 0.27269186
## 1170 14 5134 0.27269186
## 1171 14 5134 0.27269186
## 1172 14 5134 0.27269186
## 1173 14 5134 0.27269186
## 1174 14 5134 0.27269186
## 1175 14 5134 0.27269186
## 1176 14 5134 0.27269186
## 1177 14 5134 0.27269186
## 1178 14 5134 0.27269186
## 1179 14 5134 0.27269186
## 1180 14 5134 0.27269186
## 1181 14 5134 0.27269186
## 1182 14 5134 0.27269186
## 1183 14 5134 0.27269186
## 1184 14 5134 0.27269186
## 1185 14 5134 0.27269186
## 1186 14 5134 0.27269186
## 1187 14 5134 0.27269186
## 1188 14 5134 0.27269186
## 1189 14 5134 0.27269186
## 1190 14 5134 0.27269186
## 1191 14 5134 0.27269186
## 1192 14 5134 0.27269186
## 1193 14 5134 0.27269186
## 1194 14 5134 0.27269186
## 1195 14 5134 0.27269186
## 1196 14 5134 0.27269186
## 1197 14 5134 0.27269186
## 1198 14 5134 0.27269186
## 1199 13 5134 0.25321387
## 1200 13 5134 0.25321387
## 1201 13 5134 0.25321387
## 1202 13 5134 0.25321387
## 1203 13 5134 0.25321387
## 1204 13 5134 0.25321387
## 1205 13 5134 0.25321387
## 1206 13 5134 0.25321387
## 1207 13 5134 0.25321387
## 1208 13 5134 0.25321387
## 1209 13 5134 0.25321387
## 1210 13 5134 0.25321387
## 1211 13 5134 0.25321387
## 1212 13 5134 0.25321387
## 1213 13 5134 0.25321387
## 1214 13 5134 0.25321387
## 1215 13 5134 0.25321387
## 1216 13 5134 0.25321387
## 1217 13 5134 0.25321387
## 1218 13 5134 0.25321387
## 1219 13 5134 0.25321387
## 1220 13 5134 0.25321387
## 1221 13 5134 0.25321387
## 1222 13 5134 0.25321387
## 1223 13 5134 0.25321387
## 1224 13 5134 0.25321387
## 1225 13 5134 0.25321387
## 1226 13 5134 0.25321387
## 1227 13 5134 0.25321387
## 1228 13 5134 0.25321387
## 1229 13 5134 0.25321387
## 1230 13 5134 0.25321387
## 1231 13 5134 0.25321387
## 1232 13 5134 0.25321387
## 1233 13 5134 0.25321387
## 1234 13 5134 0.25321387
## 1235 13 5134 0.25321387
## 1236 13 5134 0.25321387
## 1237 13 5134 0.25321387
## 1238 13 5134 0.25321387
## 1239 13 5134 0.25321387
## 1240 13 5134 0.25321387
## 1241 13 5134 0.25321387
## 1242 13 5134 0.25321387
## 1243 13 5134 0.25321387
## 1244 13 5134 0.25321387
## 1245 13 5134 0.25321387
## 1246 13 5134 0.25321387
## 1247 13 5134 0.25321387
## 1248 13 5134 0.25321387
## 1249 13 5134 0.25321387
## 1250 13 5134 0.25321387
## 1251 13 5134 0.25321387
## 1252 13 5134 0.25321387
## 1253 13 5134 0.25321387
## 1254 13 5134 0.25321387
## 1255 13 5134 0.25321387
## 1256 13 5134 0.25321387
## 1257 13 5134 0.25321387
## 1258 13 5134 0.25321387
## 1259 13 5134 0.25321387
## 1260 13 5134 0.25321387
## 1261 13 5134 0.25321387
## 1262 13 5134 0.25321387
## 1263 13 5134 0.25321387
## 1264 13 5134 0.25321387
## 1265 13 5134 0.25321387
## 1266 13 5134 0.25321387
## 1267 13 5134 0.25321387
## 1268 13 5134 0.25321387
## 1269 13 5134 0.25321387
## 1270 13 5134 0.25321387
## 1271 13 5134 0.25321387
## 1272 13 5134 0.25321387
## 1273 13 5134 0.25321387
## 1274 13 5134 0.25321387
## 1275 13 5134 0.25321387
## 1276 13 5134 0.25321387
## 1277 13 5134 0.25321387
## 1278 13 5134 0.25321387
## 1279 13 5134 0.25321387
## 1280 13 5134 0.25321387
## 1281 13 5134 0.25321387
## 1282 13 5134 0.25321387
## 1283 13 5134 0.25321387
## 1284 13 5134 0.25321387
## 1285 13 5134 0.25321387
## 1286 13 5134 0.25321387
## 1287 13 5134 0.25321387
## 1288 12 5134 0.23373588
## 1289 12 5134 0.23373588
## 1290 12 5134 0.23373588
## 1291 12 5134 0.23373588
## 1292 12 5134 0.23373588
## 1293 12 5134 0.23373588
## 1294 12 5134 0.23373588
## 1295 12 5134 0.23373588
## 1296 12 5134 0.23373588
## 1297 12 5134 0.23373588
## 1298 12 5134 0.23373588
## 1299 12 5134 0.23373588
## 1300 12 5134 0.23373588
## 1301 12 5134 0.23373588
## 1302 12 5134 0.23373588
## 1303 12 5134 0.23373588
## 1304 12 5134 0.23373588
## 1305 12 5134 0.23373588
## 1306 12 5134 0.23373588
## 1307 12 5134 0.23373588
## 1308 12 5134 0.23373588
## 1309 12 5134 0.23373588
## 1310 12 5134 0.23373588
## 1311 12 5134 0.23373588
## 1312 12 5134 0.23373588
## 1313 12 5134 0.23373588
## 1314 12 5134 0.23373588
## 1315 12 5134 0.23373588
## 1316 12 5134 0.23373588
## 1317 12 5134 0.23373588
## 1318 12 5134 0.23373588
## 1319 12 5134 0.23373588
## 1320 12 5134 0.23373588
## 1321 12 5134 0.23373588
## 1322 12 5134 0.23373588
## 1323 12 5134 0.23373588
## 1324 12 5134 0.23373588
## 1325 12 5134 0.23373588
## 1326 12 5134 0.23373588
## 1327 12 5134 0.23373588
## 1328 12 5134 0.23373588
## 1329 12 5134 0.23373588
## 1330 12 5134 0.23373588
## 1331 12 5134 0.23373588
## 1332 12 5134 0.23373588
## 1333 12 5134 0.23373588
## 1334 12 5134 0.23373588
## 1335 12 5134 0.23373588
## 1336 12 5134 0.23373588
## 1337 12 5134 0.23373588
## 1338 12 5134 0.23373588
## 1339 12 5134 0.23373588
## 1340 12 5134 0.23373588
## 1341 12 5134 0.23373588
## 1342 12 5134 0.23373588
## 1343 12 5134 0.23373588
## 1344 12 5134 0.23373588
## 1345 12 5134 0.23373588
## 1346 12 5134 0.23373588
## 1347 12 5134 0.23373588
## 1348 12 5134 0.23373588
## 1349 12 5134 0.23373588
## 1350 12 5134 0.23373588
## 1351 12 5134 0.23373588
## 1352 12 5134 0.23373588
## 1353 12 5134 0.23373588
## 1354 12 5134 0.23373588
## 1355 12 5134 0.23373588
## 1356 12 5134 0.23373588
## 1357 12 5134 0.23373588
## 1358 12 5134 0.23373588
## 1359 12 5134 0.23373588
## 1360 12 5134 0.23373588
## 1361 12 5134 0.23373588
## 1362 12 5134 0.23373588
## 1363 12 5134 0.23373588
## 1364 12 5134 0.23373588
## 1365 12 5134 0.23373588
## 1366 12 5134 0.23373588
## 1367 12 5134 0.23373588
## 1368 12 5134 0.23373588
## 1369 12 5134 0.23373588
## 1370 12 5134 0.23373588
## 1371 12 5134 0.23373588
## 1372 12 5134 0.23373588
## 1373 12 5134 0.23373588
## 1374 12 5134 0.23373588
## 1375 12 5134 0.23373588
## 1376 12 5134 0.23373588
## 1377 12 5134 0.23373588
## 1378 12 5134 0.23373588
## 1379 12 5134 0.23373588
## 1380 12 5134 0.23373588
## 1381 12 5134 0.23373588
## 1382 12 5134 0.23373588
## 1383 12 5134 0.23373588
## 1384 12 5134 0.23373588
## 1385 12 5134 0.23373588
## 1386 12 5134 0.23373588
## 1387 12 5134 0.23373588
## 1388 12 5134 0.23373588
## 1389 12 5134 0.23373588
## 1390 12 5134 0.23373588
## 1391 12 5134 0.23373588
## 1392 12 5134 0.23373588
## 1393 12 5134 0.23373588
## 1394 12 5134 0.23373588
## 1395 12 5134 0.23373588
## 1396 12 5134 0.23373588
## 1397 12 5134 0.23373588
## 1398 12 5134 0.23373588
## 1399 12 5134 0.23373588
## 1400 12 5134 0.23373588
## 1401 12 5134 0.23373588
## 1402 12 5134 0.23373588
## 1403 12 5134 0.23373588
## 1404 12 5134 0.23373588
## 1405 12 5134 0.23373588
## 1406 12 5134 0.23373588
## 1407 11 5134 0.21425789
## 1408 11 5134 0.21425789
## 1409 11 5134 0.21425789
## 1410 11 5134 0.21425789
## 1411 11 5134 0.21425789
## 1412 11 5134 0.21425789
## 1413 11 5134 0.21425789
## 1414 11 5134 0.21425789
## 1415 11 5134 0.21425789
## 1416 11 5134 0.21425789
## 1417 11 5134 0.21425789
## 1418 11 5134 0.21425789
## 1419 11 5134 0.21425789
## 1420 11 5134 0.21425789
## 1421 11 5134 0.21425789
## 1422 11 5134 0.21425789
## 1423 11 5134 0.21425789
## 1424 11 5134 0.21425789
## 1425 11 5134 0.21425789
## 1426 11 5134 0.21425789
## 1427 11 5134 0.21425789
## 1428 11 5134 0.21425789
## 1429 11 5134 0.21425789
## 1430 11 5134 0.21425789
## 1431 11 5134 0.21425789
## 1432 11 5134 0.21425789
## 1433 11 5134 0.21425789
## 1434 11 5134 0.21425789
## 1435 11 5134 0.21425789
## 1436 11 5134 0.21425789
## 1437 11 5134 0.21425789
## 1438 11 5134 0.21425789
## 1439 11 5134 0.21425789
## 1440 11 5134 0.21425789
## 1441 11 5134 0.21425789
## 1442 11 5134 0.21425789
## 1443 11 5134 0.21425789
## 1444 11 5134 0.21425789
## 1445 11 5134 0.21425789
## 1446 11 5134 0.21425789
## 1447 11 5134 0.21425789
## 1448 11 5134 0.21425789
## 1449 11 5134 0.21425789
## 1450 11 5134 0.21425789
## 1451 11 5134 0.21425789
## 1452 11 5134 0.21425789
## 1453 11 5134 0.21425789
## 1454 11 5134 0.21425789
## 1455 11 5134 0.21425789
## 1456 11 5134 0.21425789
## 1457 11 5134 0.21425789
## 1458 11 5134 0.21425789
## 1459 11 5134 0.21425789
## 1460 11 5134 0.21425789
## 1461 11 5134 0.21425789
## 1462 11 5134 0.21425789
## 1463 11 5134 0.21425789
## 1464 11 5134 0.21425789
## 1465 11 5134 0.21425789
## 1466 11 5134 0.21425789
## 1467 11 5134 0.21425789
## 1468 11 5134 0.21425789
## 1469 11 5134 0.21425789
## 1470 11 5134 0.21425789
## 1471 11 5134 0.21425789
## 1472 11 5134 0.21425789
## 1473 11 5134 0.21425789
## 1474 11 5134 0.21425789
## 1475 11 5134 0.21425789
## 1476 11 5134 0.21425789
## 1477 11 5134 0.21425789
## 1478 11 5134 0.21425789
## 1479 11 5134 0.21425789
## 1480 11 5134 0.21425789
## 1481 11 5134 0.21425789
## 1482 11 5134 0.21425789
## 1483 11 5134 0.21425789
## 1484 11 5134 0.21425789
## 1485 11 5134 0.21425789
## 1486 11 5134 0.21425789
## 1487 11 5134 0.21425789
## 1488 11 5134 0.21425789
## 1489 11 5134 0.21425789
## 1490 11 5134 0.21425789
## 1491 11 5134 0.21425789
## 1492 11 5134 0.21425789
## 1493 11 5134 0.21425789
## 1494 11 5134 0.21425789
## 1495 11 5134 0.21425789
## 1496 11 5134 0.21425789
## 1497 11 5134 0.21425789
## 1498 11 5134 0.21425789
## 1499 11 5134 0.21425789
## 1500 11 5134 0.21425789
## 1501 11 5134 0.21425789
## 1502 11 5134 0.21425789
## 1503 11 5134 0.21425789
## 1504 11 5134 0.21425789
## 1505 11 5134 0.21425789
## 1506 11 5134 0.21425789
## 1507 11 5134 0.21425789
## 1508 11 5134 0.21425789
## 1509 11 5134 0.21425789
## 1510 11 5134 0.21425789
## 1511 11 5134 0.21425789
## 1512 11 5134 0.21425789
## 1513 11 5134 0.21425789
## 1514 11 5134 0.21425789
## 1515 11 5134 0.21425789
## 1516 11 5134 0.21425789
## 1517 11 5134 0.21425789
## 1518 11 5134 0.21425789
## 1519 11 5134 0.21425789
## 1520 11 5134 0.21425789
## 1521 11 5134 0.21425789
## 1522 11 5134 0.21425789
## 1523 11 5134 0.21425789
## 1524 11 5134 0.21425789
## 1525 11 5134 0.21425789
## 1526 11 5134 0.21425789
## 1527 11 5134 0.21425789
## 1528 11 5134 0.21425789
## 1529 11 5134 0.21425789
## 1530 11 5134 0.21425789
## 1531 10 5134 0.19477990
## 1532 10 5134 0.19477990
## 1533 10 5134 0.19477990
## 1534 10 5134 0.19477990
## 1535 10 5134 0.19477990
## 1536 10 5134 0.19477990
## 1537 10 5134 0.19477990
## 1538 10 5134 0.19477990
## 1539 10 5134 0.19477990
## 1540 10 5134 0.19477990
## 1541 10 5134 0.19477990
## 1542 10 5134 0.19477990
## 1543 10 5134 0.19477990
## 1544 10 5134 0.19477990
## 1545 10 5134 0.19477990
## 1546 10 5134 0.19477990
## 1547 10 5134 0.19477990
## 1548 10 5134 0.19477990
## 1549 10 5134 0.19477990
## 1550 10 5134 0.19477990
## 1551 10 5134 0.19477990
## 1552 10 5134 0.19477990
## 1553 10 5134 0.19477990
## 1554 10 5134 0.19477990
## 1555 10 5134 0.19477990
## 1556 10 5134 0.19477990
## 1557 10 5134 0.19477990
## 1558 10 5134 0.19477990
## 1559 10 5134 0.19477990
## 1560 10 5134 0.19477990
## 1561 10 5134 0.19477990
## 1562 10 5134 0.19477990
## 1563 10 5134 0.19477990
## 1564 10 5134 0.19477990
## 1565 10 5134 0.19477990
## 1566 10 5134 0.19477990
## 1567 10 5134 0.19477990
## 1568 10 5134 0.19477990
## 1569 10 5134 0.19477990
## 1570 10 5134 0.19477990
## 1571 10 5134 0.19477990
## 1572 10 5134 0.19477990
## 1573 10 5134 0.19477990
## 1574 10 5134 0.19477990
## 1575 10 5134 0.19477990
## 1576 10 5134 0.19477990
## 1577 10 5134 0.19477990
## 1578 10 5134 0.19477990
## 1579 10 5134 0.19477990
## 1580 10 5134 0.19477990
## 1581 10 5134 0.19477990
## 1582 10 5134 0.19477990
## 1583 10 5134 0.19477990
## 1584 10 5134 0.19477990
## 1585 10 5134 0.19477990
## 1586 10 5134 0.19477990
## 1587 10 5134 0.19477990
## 1588 10 5134 0.19477990
## 1589 10 5134 0.19477990
## 1590 10 5134 0.19477990
## 1591 10 5134 0.19477990
## 1592 10 5134 0.19477990
## 1593 10 5134 0.19477990
## 1594 10 5134 0.19477990
## 1595 10 5134 0.19477990
## 1596 10 5134 0.19477990
## 1597 10 5134 0.19477990
## 1598 10 5134 0.19477990
## 1599 10 5134 0.19477990
## 1600 10 5134 0.19477990
## 1601 10 5134 0.19477990
## 1602 10 5134 0.19477990
## 1603 10 5134 0.19477990
## 1604 10 5134 0.19477990
## 1605 10 5134 0.19477990
## 1606 10 5134 0.19477990
## 1607 10 5134 0.19477990
## 1608 10 5134 0.19477990
## 1609 10 5134 0.19477990
## 1610 10 5134 0.19477990
## 1611 10 5134 0.19477990
## 1612 10 5134 0.19477990
## 1613 10 5134 0.19477990
## 1614 10 5134 0.19477990
## 1615 10 5134 0.19477990
## 1616 10 5134 0.19477990
## 1617 10 5134 0.19477990
## 1618 10 5134 0.19477990
## 1619 10 5134 0.19477990
## 1620 10 5134 0.19477990
## 1621 10 5134 0.19477990
## 1622 10 5134 0.19477990
## 1623 10 5134 0.19477990
## 1624 10 5134 0.19477990
## 1625 10 5134 0.19477990
## 1626 10 5134 0.19477990
## 1627 10 5134 0.19477990
## 1628 10 5134 0.19477990
## 1629 10 5134 0.19477990
## 1630 10 5134 0.19477990
## 1631 10 5134 0.19477990
## 1632 10 5134 0.19477990
## 1633 10 5134 0.19477990
## 1634 10 5134 0.19477990
## 1635 10 5134 0.19477990
## 1636 10 5134 0.19477990
## 1637 10 5134 0.19477990
## 1638 10 5134 0.19477990
## 1639 10 5134 0.19477990
## 1640 10 5134 0.19477990
## 1641 10 5134 0.19477990
## 1642 10 5134 0.19477990
## 1643 10 5134 0.19477990
## 1644 10 5134 0.19477990
## 1645 10 5134 0.19477990
## 1646 10 5134 0.19477990
## 1647 10 5134 0.19477990
## 1648 10 5134 0.19477990
## 1649 10 5134 0.19477990
## 1650 10 5134 0.19477990
## 1651 10 5134 0.19477990
## 1652 10 5134 0.19477990
## 1653 10 5134 0.19477990
## 1654 10 5134 0.19477990
## 1655 10 5134 0.19477990
## 1656 10 5134 0.19477990
## 1657 10 5134 0.19477990
## 1658 10 5134 0.19477990
## 1659 10 5134 0.19477990
## 1660 10 5134 0.19477990
## 1661 10 5134 0.19477990
## 1662 10 5134 0.19477990
## 1663 10 5134 0.19477990
## 1664 10 5134 0.19477990
## 1665 10 5134 0.19477990
## 1666 10 5134 0.19477990
## 1667 10 5134 0.19477990
## 1668 10 5134 0.19477990
## 1669 10 5134 0.19477990
## 1670 10 5134 0.19477990
## 1671 10 5134 0.19477990
## 1672 10 5134 0.19477990
## 1673 10 5134 0.19477990
## 1674 10 5134 0.19477990
## 1675 10 5134 0.19477990
## 1676 10 5134 0.19477990
## 1677 10 5134 0.19477990
## 1678 10 5134 0.19477990
## 1679 10 5134 0.19477990
## 1680 10 5134 0.19477990
## 1681 10 5134 0.19477990
## 1682 10 5134 0.19477990
## 1683 10 5134 0.19477990
## 1684 10 5134 0.19477990
## 1685 10 5134 0.19477990
## 1686 10 5134 0.19477990
## 1687 10 5134 0.19477990
## 1688 10 5134 0.19477990
## 1689 10 5134 0.19477990
## 1690 10 5134 0.19477990
## 1691 10 5134 0.19477990
## 1692 9 5134 0.17530191
## 1693 9 5134 0.17530191
## 1694 9 5134 0.17530191
## 1695 9 5134 0.17530191
## 1696 9 5134 0.17530191
## 1697 9 5134 0.17530191
## 1698 9 5134 0.17530191
## 1699 9 5134 0.17530191
## 1700 9 5134 0.17530191
## 1701 9 5134 0.17530191
## 1702 9 5134 0.17530191
## 1703 9 5134 0.17530191
## 1704 9 5134 0.17530191
## 1705 9 5134 0.17530191
## 1706 9 5134 0.17530191
## 1707 9 5134 0.17530191
## 1708 9 5134 0.17530191
## 1709 9 5134 0.17530191
## 1710 9 5134 0.17530191
## 1711 9 5134 0.17530191
## 1712 9 5134 0.17530191
## 1713 9 5134 0.17530191
## 1714 9 5134 0.17530191
## 1715 9 5134 0.17530191
## 1716 9 5134 0.17530191
## 1717 9 5134 0.17530191
## 1718 9 5134 0.17530191
## 1719 9 5134 0.17530191
## 1720 9 5134 0.17530191
## 1721 9 5134 0.17530191
## 1722 9 5134 0.17530191
## 1723 9 5134 0.17530191
## 1724 9 5134 0.17530191
## 1725 9 5134 0.17530191
## 1726 9 5134 0.17530191
## 1727 9 5134 0.17530191
## 1728 9 5134 0.17530191
## 1729 9 5134 0.17530191
## 1730 9 5134 0.17530191
## 1731 9 5134 0.17530191
## 1732 9 5134 0.17530191
## 1733 9 5134 0.17530191
## 1734 9 5134 0.17530191
## 1735 9 5134 0.17530191
## 1736 9 5134 0.17530191
## 1737 9 5134 0.17530191
## 1738 9 5134 0.17530191
## 1739 9 5134 0.17530191
## 1740 9 5134 0.17530191
## 1741 9 5134 0.17530191
## 1742 9 5134 0.17530191
## 1743 9 5134 0.17530191
## 1744 9 5134 0.17530191
## 1745 9 5134 0.17530191
## 1746 9 5134 0.17530191
## 1747 9 5134 0.17530191
## 1748 9 5134 0.17530191
## 1749 9 5134 0.17530191
## 1750 9 5134 0.17530191
## 1751 9 5134 0.17530191
## 1752 9 5134 0.17530191
## 1753 9 5134 0.17530191
## 1754 9 5134 0.17530191
## 1755 9 5134 0.17530191
## 1756 9 5134 0.17530191
## 1757 9 5134 0.17530191
## 1758 9 5134 0.17530191
## 1759 9 5134 0.17530191
## 1760 9 5134 0.17530191
## 1761 9 5134 0.17530191
## 1762 9 5134 0.17530191
## 1763 9 5134 0.17530191
## 1764 9 5134 0.17530191
## 1765 9 5134 0.17530191
## 1766 9 5134 0.17530191
## 1767 9 5134 0.17530191
## 1768 9 5134 0.17530191
## 1769 9 5134 0.17530191
## 1770 9 5134 0.17530191
## 1771 9 5134 0.17530191
## 1772 9 5134 0.17530191
## 1773 9 5134 0.17530191
## 1774 9 5134 0.17530191
## 1775 9 5134 0.17530191
## 1776 9 5134 0.17530191
## 1777 9 5134 0.17530191
## 1778 9 5134 0.17530191
## 1779 9 5134 0.17530191
## 1780 9 5134 0.17530191
## 1781 9 5134 0.17530191
## 1782 9 5134 0.17530191
## 1783 9 5134 0.17530191
## 1784 9 5134 0.17530191
## 1785 9 5134 0.17530191
## 1786 9 5134 0.17530191
## 1787 9 5134 0.17530191
## 1788 9 5134 0.17530191
## 1789 9 5134 0.17530191
## 1790 9 5134 0.17530191
## 1791 9 5134 0.17530191
## 1792 9 5134 0.17530191
## 1793 9 5134 0.17530191
## 1794 9 5134 0.17530191
## 1795 9 5134 0.17530191
## 1796 9 5134 0.17530191
## 1797 9 5134 0.17530191
## 1798 9 5134 0.17530191
## 1799 9 5134 0.17530191
## 1800 9 5134 0.17530191
## 1801 9 5134 0.17530191
## 1802 9 5134 0.17530191
## 1803 9 5134 0.17530191
## 1804 9 5134 0.17530191
## 1805 9 5134 0.17530191
## 1806 9 5134 0.17530191
## 1807 9 5134 0.17530191
## 1808 9 5134 0.17530191
## 1809 9 5134 0.17530191
## 1810 9 5134 0.17530191
## 1811 9 5134 0.17530191
## 1812 9 5134 0.17530191
## 1813 9 5134 0.17530191
## 1814 9 5134 0.17530191
## 1815 9 5134 0.17530191
## 1816 9 5134 0.17530191
## 1817 9 5134 0.17530191
## 1818 9 5134 0.17530191
## 1819 9 5134 0.17530191
## 1820 9 5134 0.17530191
## 1821 9 5134 0.17530191
## 1822 9 5134 0.17530191
## 1823 9 5134 0.17530191
## 1824 9 5134 0.17530191
## 1825 9 5134 0.17530191
## 1826 9 5134 0.17530191
## 1827 9 5134 0.17530191
## 1828 9 5134 0.17530191
## 1829 9 5134 0.17530191
## 1830 9 5134 0.17530191
## 1831 9 5134 0.17530191
## 1832 9 5134 0.17530191
## 1833 9 5134 0.17530191
## 1834 9 5134 0.17530191
## 1835 9 5134 0.17530191
## 1836 9 5134 0.17530191
## 1837 9 5134 0.17530191
## 1838 9 5134 0.17530191
## 1839 9 5134 0.17530191
## 1840 9 5134 0.17530191
## 1841 9 5134 0.17530191
## 1842 9 5134 0.17530191
## 1843 9 5134 0.17530191
## 1844 9 5134 0.17530191
## 1845 9 5134 0.17530191
## 1846 9 5134 0.17530191
## 1847 9 5134 0.17530191
## 1848 9 5134 0.17530191
## 1849 9 5134 0.17530191
## 1850 9 5134 0.17530191
## 1851 9 5134 0.17530191
## 1852 9 5134 0.17530191
## 1853 9 5134 0.17530191
## 1854 9 5134 0.17530191
## 1855 9 5134 0.17530191
## 1856 9 5134 0.17530191
## 1857 9 5134 0.17530191
## 1858 9 5134 0.17530191
## 1859 9 5134 0.17530191
## 1860 9 5134 0.17530191
## 1861 9 5134 0.17530191
## 1862 9 5134 0.17530191
## 1863 9 5134 0.17530191
## 1864 9 5134 0.17530191
## 1865 9 5134 0.17530191
## 1866 9 5134 0.17530191
## 1867 9 5134 0.17530191
## 1868 9 5134 0.17530191
## 1869 9 5134 0.17530191
## 1870 9 5134 0.17530191
## 1871 9 5134 0.17530191
## 1872 9 5134 0.17530191
## 1873 8 5134 0.15582392
## 1874 8 5134 0.15582392
## 1875 8 5134 0.15582392
## 1876 8 5134 0.15582392
## 1877 8 5134 0.15582392
## 1878 8 5134 0.15582392
## 1879 8 5134 0.15582392
## 1880 8 5134 0.15582392
## 1881 8 5134 0.15582392
## 1882 8 5134 0.15582392
## 1883 8 5134 0.15582392
## 1884 8 5134 0.15582392
## 1885 8 5134 0.15582392
## 1886 8 5134 0.15582392
## 1887 8 5134 0.15582392
## 1888 8 5134 0.15582392
## 1889 8 5134 0.15582392
## 1890 8 5134 0.15582392
## 1891 8 5134 0.15582392
## 1892 8 5134 0.15582392
## 1893 8 5134 0.15582392
## 1894 8 5134 0.15582392
## 1895 8 5134 0.15582392
## 1896 8 5134 0.15582392
## 1897 8 5134 0.15582392
## 1898 8 5134 0.15582392
## 1899 8 5134 0.15582392
## 1900 8 5134 0.15582392
## 1901 8 5134 0.15582392
## 1902 8 5134 0.15582392
## 1903 8 5134 0.15582392
## 1904 8 5134 0.15582392
## 1905 8 5134 0.15582392
## 1906 8 5134 0.15582392
## 1907 8 5134 0.15582392
## 1908 8 5134 0.15582392
## 1909 8 5134 0.15582392
## 1910 8 5134 0.15582392
## 1911 8 5134 0.15582392
## 1912 8 5134 0.15582392
## 1913 8 5134 0.15582392
## 1914 8 5134 0.15582392
## 1915 8 5134 0.15582392
## 1916 8 5134 0.15582392
## 1917 8 5134 0.15582392
## 1918 8 5134 0.15582392
## 1919 8 5134 0.15582392
## 1920 8 5134 0.15582392
## 1921 8 5134 0.15582392
## 1922 8 5134 0.15582392
## 1923 8 5134 0.15582392
## 1924 8 5134 0.15582392
## 1925 8 5134 0.15582392
## 1926 8 5134 0.15582392
## 1927 8 5134 0.15582392
## 1928 8 5134 0.15582392
## 1929 8 5134 0.15582392
## 1930 8 5134 0.15582392
## 1931 8 5134 0.15582392
## 1932 8 5134 0.15582392
## 1933 8 5134 0.15582392
## 1934 8 5134 0.15582392
## 1935 8 5134 0.15582392
## 1936 8 5134 0.15582392
## 1937 8 5134 0.15582392
## 1938 8 5134 0.15582392
## 1939 8 5134 0.15582392
## 1940 8 5134 0.15582392
## 1941 8 5134 0.15582392
## 1942 8 5134 0.15582392
## 1943 8 5134 0.15582392
## 1944 8 5134 0.15582392
## 1945 8 5134 0.15582392
## 1946 8 5134 0.15582392
## 1947 8 5134 0.15582392
## 1948 8 5134 0.15582392
## 1949 8 5134 0.15582392
## 1950 8 5134 0.15582392
## 1951 8 5134 0.15582392
## 1952 8 5134 0.15582392
## 1953 8 5134 0.15582392
## 1954 8 5134 0.15582392
## 1955 8 5134 0.15582392
## 1956 8 5134 0.15582392
## 1957 8 5134 0.15582392
## 1958 8 5134 0.15582392
## 1959 8 5134 0.15582392
## 1960 8 5134 0.15582392
## 1961 8 5134 0.15582392
## 1962 8 5134 0.15582392
## 1963 8 5134 0.15582392
## 1964 8 5134 0.15582392
## 1965 8 5134 0.15582392
## 1966 8 5134 0.15582392
## 1967 8 5134 0.15582392
## 1968 8 5134 0.15582392
## 1969 8 5134 0.15582392
## 1970 8 5134 0.15582392
## 1971 8 5134 0.15582392
## 1972 8 5134 0.15582392
## 1973 8 5134 0.15582392
## 1974 8 5134 0.15582392
## 1975 8 5134 0.15582392
## 1976 8 5134 0.15582392
## 1977 8 5134 0.15582392
## 1978 8 5134 0.15582392
## 1979 8 5134 0.15582392
## 1980 8 5134 0.15582392
## 1981 8 5134 0.15582392
## 1982 8 5134 0.15582392
## 1983 8 5134 0.15582392
## 1984 8 5134 0.15582392
## 1985 8 5134 0.15582392
## 1986 8 5134 0.15582392
## 1987 8 5134 0.15582392
## 1988 8 5134 0.15582392
## 1989 8 5134 0.15582392
## 1990 8 5134 0.15582392
## 1991 8 5134 0.15582392
## 1992 8 5134 0.15582392
## 1993 8 5134 0.15582392
## 1994 8 5134 0.15582392
## 1995 8 5134 0.15582392
## 1996 8 5134 0.15582392
## 1997 8 5134 0.15582392
## 1998 8 5134 0.15582392
## 1999 8 5134 0.15582392
## 2000 8 5134 0.15582392
## 2001 8 5134 0.15582392
## 2002 8 5134 0.15582392
## 2003 8 5134 0.15582392
## 2004 8 5134 0.15582392
## 2005 8 5134 0.15582392
## 2006 8 5134 0.15582392
## 2007 8 5134 0.15582392
## 2008 8 5134 0.15582392
## 2009 8 5134 0.15582392
## 2010 8 5134 0.15582392
## 2011 8 5134 0.15582392
## 2012 8 5134 0.15582392
## 2013 8 5134 0.15582392
## 2014 8 5134 0.15582392
## 2015 8 5134 0.15582392
## 2016 8 5134 0.15582392
## 2017 8 5134 0.15582392
## 2018 8 5134 0.15582392
## 2019 8 5134 0.15582392
## 2020 8 5134 0.15582392
## 2021 8 5134 0.15582392
## 2022 8 5134 0.15582392
## 2023 8 5134 0.15582392
## 2024 8 5134 0.15582392
## 2025 8 5134 0.15582392
## 2026 8 5134 0.15582392
## 2027 8 5134 0.15582392
## 2028 8 5134 0.15582392
## 2029 8 5134 0.15582392
## 2030 8 5134 0.15582392
## 2031 8 5134 0.15582392
## 2032 8 5134 0.15582392
## 2033 8 5134 0.15582392
## 2034 8 5134 0.15582392
## 2035 8 5134 0.15582392
## 2036 8 5134 0.15582392
## 2037 8 5134 0.15582392
## 2038 8 5134 0.15582392
## 2039 8 5134 0.15582392
## 2040 8 5134 0.15582392
## 2041 8 5134 0.15582392
## 2042 8 5134 0.15582392
## 2043 8 5134 0.15582392
## 2044 8 5134 0.15582392
## 2045 8 5134 0.15582392
## 2046 8 5134 0.15582392
## 2047 8 5134 0.15582392
## 2048 8 5134 0.15582392
## 2049 8 5134 0.15582392
## 2050 8 5134 0.15582392
## 2051 8 5134 0.15582392
## 2052 8 5134 0.15582392
## 2053 8 5134 0.15582392
## 2054 8 5134 0.15582392
## 2055 8 5134 0.15582392
## 2056 8 5134 0.15582392
## 2057 8 5134 0.15582392
## 2058 8 5134 0.15582392
## 2059 8 5134 0.15582392
## 2060 8 5134 0.15582392
## 2061 8 5134 0.15582392
## 2062 8 5134 0.15582392
## 2063 8 5134 0.15582392
## 2064 8 5134 0.15582392
## 2065 8 5134 0.15582392
## 2066 8 5134 0.15582392
## 2067 8 5134 0.15582392
## 2068 8 5134 0.15582392
## 2069 8 5134 0.15582392
## 2070 8 5134 0.15582392
## 2071 8 5134 0.15582392
## 2072 8 5134 0.15582392
## 2073 8 5134 0.15582392
## 2074 8 5134 0.15582392
## 2075 8 5134 0.15582392
## 2076 8 5134 0.15582392
## 2077 8 5134 0.15582392
## 2078 8 5134 0.15582392
## 2079 8 5134 0.15582392
## 2080 8 5134 0.15582392
## 2081 8 5134 0.15582392
## 2082 8 5134 0.15582392
## 2083 8 5134 0.15582392
## 2084 8 5134 0.15582392
## 2085 8 5134 0.15582392
## 2086 8 5134 0.15582392
## 2087 8 5134 0.15582392
## 2088 8 5134 0.15582392
## 2089 8 5134 0.15582392
## 2090 8 5134 0.15582392
## 2091 8 5134 0.15582392
## 2092 8 5134 0.15582392
## 2093 8 5134 0.15582392
## 2094 8 5134 0.15582392
## 2095 8 5134 0.15582392
## 2096 8 5134 0.15582392
## 2097 8 5134 0.15582392
## 2098 8 5134 0.15582392
## 2099 8 5134 0.15582392
## 2100 8 5134 0.15582392
## 2101 8 5134 0.15582392
## 2102 8 5134 0.15582392
## 2103 8 5134 0.15582392
## 2104 8 5134 0.15582392
## 2105 8 5134 0.15582392
## 2106 8 5134 0.15582392
## 2107 8 5134 0.15582392
## 2108 8 5134 0.15582392
## 2109 8 5134 0.15582392
## 2110 8 5134 0.15582392
## 2111 8 5134 0.15582392
## 2112 8 5134 0.15582392
## 2113 8 5134 0.15582392
## 2114 8 5134 0.15582392
## 2115 8 5134 0.15582392
## 2116 8 5134 0.15582392
## 2117 8 5134 0.15582392
## 2118 8 5134 0.15582392
## 2119 8 5134 0.15582392
## 2120 8 5134 0.15582392
## 2121 8 5134 0.15582392
## 2122 8 5134 0.15582392
## 2123 8 5134 0.15582392
## 2124 8 5134 0.15582392
## 2125 8 5134 0.15582392
## 2126 8 5134 0.15582392
## 2127 8 5134 0.15582392
## 2128 8 5134 0.15582392
## 2129 8 5134 0.15582392
## 2130 8 5134 0.15582392
## 2131 8 5134 0.15582392
## 2132 7 5134 0.13634593
## 2133 7 5134 0.13634593
## 2134 7 5134 0.13634593
## 2135 7 5134 0.13634593
## 2136 7 5134 0.13634593
## 2137 7 5134 0.13634593
## 2138 7 5134 0.13634593
## 2139 7 5134 0.13634593
## 2140 7 5134 0.13634593
## 2141 7 5134 0.13634593
## 2142 7 5134 0.13634593
## 2143 7 5134 0.13634593
## 2144 7 5134 0.13634593
## 2145 7 5134 0.13634593
## 2146 7 5134 0.13634593
## 2147 7 5134 0.13634593
## 2148 7 5134 0.13634593
## 2149 7 5134 0.13634593
## 2150 7 5134 0.13634593
## 2151 7 5134 0.13634593
## 2152 7 5134 0.13634593
## 2153 7 5134 0.13634593
## 2154 7 5134 0.13634593
## 2155 7 5134 0.13634593
## 2156 7 5134 0.13634593
## 2157 7 5134 0.13634593
## 2158 7 5134 0.13634593
## 2159 7 5134 0.13634593
## 2160 7 5134 0.13634593
## 2161 7 5134 0.13634593
## 2162 7 5134 0.13634593
## 2163 7 5134 0.13634593
## 2164 7 5134 0.13634593
## 2165 7 5134 0.13634593
## 2166 7 5134 0.13634593
## 2167 7 5134 0.13634593
## 2168 7 5134 0.13634593
## 2169 7 5134 0.13634593
## 2170 7 5134 0.13634593
## 2171 7 5134 0.13634593
## 2172 7 5134 0.13634593
## 2173 7 5134 0.13634593
## 2174 7 5134 0.13634593
## 2175 7 5134 0.13634593
## 2176 7 5134 0.13634593
## 2177 7 5134 0.13634593
## 2178 7 5134 0.13634593
## 2179 7 5134 0.13634593
## 2180 7 5134 0.13634593
## 2181 7 5134 0.13634593
## 2182 7 5134 0.13634593
## 2183 7 5134 0.13634593
## 2184 7 5134 0.13634593
## 2185 7 5134 0.13634593
## 2186 7 5134 0.13634593
## 2187 7 5134 0.13634593
## 2188 7 5134 0.13634593
## 2189 7 5134 0.13634593
## 2190 7 5134 0.13634593
## 2191 7 5134 0.13634593
## 2192 7 5134 0.13634593
## 2193 7 5134 0.13634593
## 2194 7 5134 0.13634593
## 2195 7 5134 0.13634593
## 2196 7 5134 0.13634593
## 2197 7 5134 0.13634593
## 2198 7 5134 0.13634593
## 2199 7 5134 0.13634593
## 2200 7 5134 0.13634593
## 2201 7 5134 0.13634593
## 2202 7 5134 0.13634593
## 2203 7 5134 0.13634593
## 2204 7 5134 0.13634593
## 2205 7 5134 0.13634593
## 2206 7 5134 0.13634593
## 2207 7 5134 0.13634593
## 2208 7 5134 0.13634593
## 2209 7 5134 0.13634593
## 2210 7 5134 0.13634593
## 2211 7 5134 0.13634593
## 2212 7 5134 0.13634593
## 2213 7 5134 0.13634593
## 2214 7 5134 0.13634593
## 2215 7 5134 0.13634593
## 2216 7 5134 0.13634593
## 2217 7 5134 0.13634593
## 2218 7 5134 0.13634593
## 2219 7 5134 0.13634593
## 2220 7 5134 0.13634593
## 2221 7 5134 0.13634593
## 2222 7 5134 0.13634593
## 2223 7 5134 0.13634593
## 2224 7 5134 0.13634593
## 2225 7 5134 0.13634593
## 2226 7 5134 0.13634593
## 2227 7 5134 0.13634593
## 2228 7 5134 0.13634593
## 2229 7 5134 0.13634593
## 2230 7 5134 0.13634593
## 2231 7 5134 0.13634593
## 2232 7 5134 0.13634593
## 2233 7 5134 0.13634593
## 2234 7 5134 0.13634593
## 2235 7 5134 0.13634593
## 2236 7 5134 0.13634593
## 2237 7 5134 0.13634593
## 2238 7 5134 0.13634593
## 2239 7 5134 0.13634593
## 2240 7 5134 0.13634593
## 2241 7 5134 0.13634593
## 2242 7 5134 0.13634593
## 2243 7 5134 0.13634593
## 2244 7 5134 0.13634593
## 2245 7 5134 0.13634593
## 2246 7 5134 0.13634593
## 2247 7 5134 0.13634593
## 2248 7 5134 0.13634593
## 2249 7 5134 0.13634593
## 2250 7 5134 0.13634593
## 2251 7 5134 0.13634593
## 2252 7 5134 0.13634593
## 2253 7 5134 0.13634593
## 2254 7 5134 0.13634593
## 2255 7 5134 0.13634593
## 2256 7 5134 0.13634593
## 2257 7 5134 0.13634593
## 2258 7 5134 0.13634593
## 2259 7 5134 0.13634593
## 2260 7 5134 0.13634593
## 2261 7 5134 0.13634593
## 2262 7 5134 0.13634593
## 2263 7 5134 0.13634593
## 2264 7 5134 0.13634593
## 2265 7 5134 0.13634593
## 2266 7 5134 0.13634593
## 2267 7 5134 0.13634593
## 2268 7 5134 0.13634593
## 2269 7 5134 0.13634593
## 2270 7 5134 0.13634593
## 2271 7 5134 0.13634593
## 2272 7 5134 0.13634593
## 2273 7 5134 0.13634593
## 2274 7 5134 0.13634593
## 2275 7 5134 0.13634593
## 2276 7 5134 0.13634593
## 2277 7 5134 0.13634593
## 2278 7 5134 0.13634593
## 2279 7 5134 0.13634593
## 2280 7 5134 0.13634593
## 2281 7 5134 0.13634593
## 2282 7 5134 0.13634593
## 2283 7 5134 0.13634593
## 2284 7 5134 0.13634593
## 2285 7 5134 0.13634593
## 2286 7 5134 0.13634593
## 2287 7 5134 0.13634593
## 2288 7 5134 0.13634593
## 2289 7 5134 0.13634593
## 2290 7 5134 0.13634593
## 2291 7 5134 0.13634593
## 2292 7 5134 0.13634593
## 2293 7 5134 0.13634593
## 2294 7 5134 0.13634593
## 2295 7 5134 0.13634593
## 2296 7 5134 0.13634593
## 2297 7 5134 0.13634593
## 2298 7 5134 0.13634593
## 2299 7 5134 0.13634593
## 2300 7 5134 0.13634593
## 2301 7 5134 0.13634593
## 2302 7 5134 0.13634593
## 2303 7 5134 0.13634593
## 2304 7 5134 0.13634593
## 2305 7 5134 0.13634593
## 2306 7 5134 0.13634593
## 2307 7 5134 0.13634593
## 2308 7 5134 0.13634593
## 2309 7 5134 0.13634593
## 2310 7 5134 0.13634593
## 2311 7 5134 0.13634593
## 2312 7 5134 0.13634593
## 2313 7 5134 0.13634593
## 2314 7 5134 0.13634593
## 2315 7 5134 0.13634593
## 2316 7 5134 0.13634593
## 2317 7 5134 0.13634593
## 2318 7 5134 0.13634593
## 2319 7 5134 0.13634593
## 2320 7 5134 0.13634593
## 2321 7 5134 0.13634593
## 2322 7 5134 0.13634593
## 2323 7 5134 0.13634593
## 2324 7 5134 0.13634593
## 2325 7 5134 0.13634593
## 2326 7 5134 0.13634593
## 2327 7 5134 0.13634593
## 2328 7 5134 0.13634593
## 2329 7 5134 0.13634593
## 2330 7 5134 0.13634593
## 2331 7 5134 0.13634593
## 2332 7 5134 0.13634593
## 2333 7 5134 0.13634593
## 2334 7 5134 0.13634593
## 2335 7 5134 0.13634593
## 2336 7 5134 0.13634593
## 2337 7 5134 0.13634593
## 2338 7 5134 0.13634593
## 2339 7 5134 0.13634593
## 2340 7 5134 0.13634593
## 2341 7 5134 0.13634593
## 2342 7 5134 0.13634593
## 2343 7 5134 0.13634593
## 2344 7 5134 0.13634593
## 2345 7 5134 0.13634593
## 2346 7 5134 0.13634593
## 2347 7 5134 0.13634593
## 2348 7 5134 0.13634593
## 2349 7 5134 0.13634593
## 2350 7 5134 0.13634593
## 2351 7 5134 0.13634593
## 2352 7 5134 0.13634593
## 2353 7 5134 0.13634593
## 2354 7 5134 0.13634593
## 2355 7 5134 0.13634593
## 2356 7 5134 0.13634593
## 2357 7 5134 0.13634593
## 2358 7 5134 0.13634593
## 2359 7 5134 0.13634593
## 2360 7 5134 0.13634593
## 2361 7 5134 0.13634593
## 2362 7 5134 0.13634593
## 2363 7 5134 0.13634593
## 2364 7 5134 0.13634593
## 2365 7 5134 0.13634593
## 2366 7 5134 0.13634593
## 2367 7 5134 0.13634593
## 2368 7 5134 0.13634593
## 2369 7 5134 0.13634593
## 2370 7 5134 0.13634593
## 2371 7 5134 0.13634593
## 2372 7 5134 0.13634593
## 2373 7 5134 0.13634593
## 2374 7 5134 0.13634593
## 2375 7 5134 0.13634593
## 2376 7 5134 0.13634593
## 2377 7 5134 0.13634593
## 2378 7 5134 0.13634593
## 2379 7 5134 0.13634593
## 2380 7 5134 0.13634593
## 2381 7 5134 0.13634593
## 2382 7 5134 0.13634593
## 2383 7 5134 0.13634593
## 2384 7 5134 0.13634593
## 2385 7 5134 0.13634593
## 2386 7 5134 0.13634593
## 2387 7 5134 0.13634593
## 2388 7 5134 0.13634593
## 2389 7 5134 0.13634593
## 2390 7 5134 0.13634593
## 2391 7 5134 0.13634593
## 2392 7 5134 0.13634593
## 2393 7 5134 0.13634593
## 2394 7 5134 0.13634593
## 2395 7 5134 0.13634593
## 2396 7 5134 0.13634593
## 2397 7 5134 0.13634593
## 2398 7 5134 0.13634593
## 2399 7 5134 0.13634593
## 2400 7 5134 0.13634593
## 2401 7 5134 0.13634593
## 2402 7 5134 0.13634593
## 2403 7 5134 0.13634593
## 2404 7 5134 0.13634593
## 2405 7 5134 0.13634593
## 2406 7 5134 0.13634593
## 2407 7 5134 0.13634593
## 2408 7 5134 0.13634593
## 2409 7 5134 0.13634593
## 2410 7 5134 0.13634593
## 2411 7 5134 0.13634593
## 2412 7 5134 0.13634593
## 2413 7 5134 0.13634593
## 2414 7 5134 0.13634593
## 2415 7 5134 0.13634593
## 2416 7 5134 0.13634593
## 2417 7 5134 0.13634593
## 2418 7 5134 0.13634593
## 2419 7 5134 0.13634593
## 2420 7 5134 0.13634593
## 2421 7 5134 0.13634593
## 2422 7 5134 0.13634593
## 2423 7 5134 0.13634593
## 2424 7 5134 0.13634593
## 2425 6 5134 0.11686794
## 2426 6 5134 0.11686794
## 2427 6 5134 0.11686794
## 2428 6 5134 0.11686794
## 2429 6 5134 0.11686794
## 2430 6 5134 0.11686794
## 2431 6 5134 0.11686794
## 2432 6 5134 0.11686794
## 2433 6 5134 0.11686794
## 2434 6 5134 0.11686794
## 2435 6 5134 0.11686794
## 2436 6 5134 0.11686794
## 2437 6 5134 0.11686794
## 2438 6 5134 0.11686794
## 2439 6 5134 0.11686794
## 2440 6 5134 0.11686794
## 2441 6 5134 0.11686794
## 2442 6 5134 0.11686794
## 2443 6 5134 0.11686794
## 2444 6 5134 0.11686794
## 2445 6 5134 0.11686794
## 2446 6 5134 0.11686794
## 2447 6 5134 0.11686794
## 2448 6 5134 0.11686794
## 2449 6 5134 0.11686794
## 2450 6 5134 0.11686794
## 2451 6 5134 0.11686794
## 2452 6 5134 0.11686794
## 2453 6 5134 0.11686794
## 2454 6 5134 0.11686794
## 2455 6 5134 0.11686794
## 2456 6 5134 0.11686794
## 2457 6 5134 0.11686794
## 2458 6 5134 0.11686794
## 2459 6 5134 0.11686794
## 2460 6 5134 0.11686794
## 2461 6 5134 0.11686794
## 2462 6 5134 0.11686794
## 2463 6 5134 0.11686794
## 2464 6 5134 0.11686794
## 2465 6 5134 0.11686794
## 2466 6 5134 0.11686794
## 2467 6 5134 0.11686794
## 2468 6 5134 0.11686794
## 2469 6 5134 0.11686794
## 2470 6 5134 0.11686794
## 2471 6 5134 0.11686794
## 2472 6 5134 0.11686794
## 2473 6 5134 0.11686794
## 2474 6 5134 0.11686794
## 2475 6 5134 0.11686794
## 2476 6 5134 0.11686794
## 2477 6 5134 0.11686794
## 2478 6 5134 0.11686794
## 2479 6 5134 0.11686794
## 2480 6 5134 0.11686794
## 2481 6 5134 0.11686794
## 2482 6 5134 0.11686794
## 2483 6 5134 0.11686794
## 2484 6 5134 0.11686794
## 2485 6 5134 0.11686794
## 2486 6 5134 0.11686794
## 2487 6 5134 0.11686794
## 2488 6 5134 0.11686794
## 2489 6 5134 0.11686794
## 2490 6 5134 0.11686794
## 2491 6 5134 0.11686794
## 2492 6 5134 0.11686794
## 2493 6 5134 0.11686794
## 2494 6 5134 0.11686794
## 2495 6 5134 0.11686794
## 2496 6 5134 0.11686794
## 2497 6 5134 0.11686794
## 2498 6 5134 0.11686794
## 2499 6 5134 0.11686794
## 2500 6 5134 0.11686794
## 2501 6 5134 0.11686794
## 2502 6 5134 0.11686794
## 2503 6 5134 0.11686794
## 2504 6 5134 0.11686794
## 2505 6 5134 0.11686794
## 2506 6 5134 0.11686794
## 2507 6 5134 0.11686794
## 2508 6 5134 0.11686794
## 2509 6 5134 0.11686794
## 2510 6 5134 0.11686794
## 2511 6 5134 0.11686794
## 2512 6 5134 0.11686794
## 2513 6 5134 0.11686794
## 2514 6 5134 0.11686794
## 2515 6 5134 0.11686794
## 2516 6 5134 0.11686794
## 2517 6 5134 0.11686794
## 2518 6 5134 0.11686794
## 2519 6 5134 0.11686794
## 2520 6 5134 0.11686794
## 2521 6 5134 0.11686794
## 2522 6 5134 0.11686794
## 2523 6 5134 0.11686794
## 2524 6 5134 0.11686794
## 2525 6 5134 0.11686794
## 2526 6 5134 0.11686794
## 2527 6 5134 0.11686794
## 2528 6 5134 0.11686794
## 2529 6 5134 0.11686794
## 2530 6 5134 0.11686794
## 2531 6 5134 0.11686794
## 2532 6 5134 0.11686794
## 2533 6 5134 0.11686794
## 2534 6 5134 0.11686794
## 2535 6 5134 0.11686794
## 2536 6 5134 0.11686794
## 2537 6 5134 0.11686794
## 2538 6 5134 0.11686794
## 2539 6 5134 0.11686794
## 2540 6 5134 0.11686794
## 2541 6 5134 0.11686794
## 2542 6 5134 0.11686794
## 2543 6 5134 0.11686794
## 2544 6 5134 0.11686794
## 2545 6 5134 0.11686794
## 2546 6 5134 0.11686794
## 2547 6 5134 0.11686794
## 2548 6 5134 0.11686794
## 2549 6 5134 0.11686794
## 2550 6 5134 0.11686794
## 2551 6 5134 0.11686794
## 2552 6 5134 0.11686794
## 2553 6 5134 0.11686794
## 2554 6 5134 0.11686794
## 2555 6 5134 0.11686794
## 2556 6 5134 0.11686794
## 2557 6 5134 0.11686794
## 2558 6 5134 0.11686794
## 2559 6 5134 0.11686794
## 2560 6 5134 0.11686794
## 2561 6 5134 0.11686794
## 2562 6 5134 0.11686794
## 2563 6 5134 0.11686794
## 2564 6 5134 0.11686794
## 2565 6 5134 0.11686794
## 2566 6 5134 0.11686794
## 2567 6 5134 0.11686794
## 2568 6 5134 0.11686794
## 2569 6 5134 0.11686794
## 2570 6 5134 0.11686794
## 2571 6 5134 0.11686794
## 2572 6 5134 0.11686794
## 2573 6 5134 0.11686794
## 2574 6 5134 0.11686794
## 2575 6 5134 0.11686794
## 2576 6 5134 0.11686794
## 2577 6 5134 0.11686794
## 2578 6 5134 0.11686794
## 2579 6 5134 0.11686794
## 2580 6 5134 0.11686794
## 2581 6 5134 0.11686794
## 2582 6 5134 0.11686794
## 2583 6 5134 0.11686794
## 2584 6 5134 0.11686794
## 2585 6 5134 0.11686794
## 2586 6 5134 0.11686794
## 2587 6 5134 0.11686794
## 2588 6 5134 0.11686794
## 2589 6 5134 0.11686794
## 2590 6 5134 0.11686794
## 2591 6 5134 0.11686794
## 2592 6 5134 0.11686794
## 2593 6 5134 0.11686794
## 2594 6 5134 0.11686794
## 2595 6 5134 0.11686794
## 2596 6 5134 0.11686794
## 2597 6 5134 0.11686794
## 2598 6 5134 0.11686794
## 2599 6 5134 0.11686794
## 2600 6 5134 0.11686794
## 2601 6 5134 0.11686794
## 2602 6 5134 0.11686794
## 2603 6 5134 0.11686794
## 2604 6 5134 0.11686794
## 2605 6 5134 0.11686794
## 2606 6 5134 0.11686794
## 2607 6 5134 0.11686794
## 2608 6 5134 0.11686794
## 2609 6 5134 0.11686794
## 2610 6 5134 0.11686794
## 2611 6 5134 0.11686794
## 2612 6 5134 0.11686794
## 2613 6 5134 0.11686794
## 2614 6 5134 0.11686794
## 2615 6 5134 0.11686794
## 2616 6 5134 0.11686794
## 2617 6 5134 0.11686794
## 2618 6 5134 0.11686794
## 2619 6 5134 0.11686794
## 2620 6 5134 0.11686794
## 2621 6 5134 0.11686794
## 2622 6 5134 0.11686794
## 2623 6 5134 0.11686794
## 2624 6 5134 0.11686794
## 2625 6 5134 0.11686794
## 2626 6 5134 0.11686794
## 2627 6 5134 0.11686794
## 2628 6 5134 0.11686794
## 2629 6 5134 0.11686794
## 2630 6 5134 0.11686794
## 2631 6 5134 0.11686794
## 2632 6 5134 0.11686794
## 2633 6 5134 0.11686794
## 2634 6 5134 0.11686794
## 2635 6 5134 0.11686794
## 2636 6 5134 0.11686794
## 2637 6 5134 0.11686794
## 2638 6 5134 0.11686794
## 2639 6 5134 0.11686794
## 2640 6 5134 0.11686794
## 2641 6 5134 0.11686794
## 2642 6 5134 0.11686794
## 2643 6 5134 0.11686794
## 2644 6 5134 0.11686794
## 2645 6 5134 0.11686794
## 2646 6 5134 0.11686794
## 2647 6 5134 0.11686794
## 2648 6 5134 0.11686794
## 2649 6 5134 0.11686794
## 2650 6 5134 0.11686794
## 2651 6 5134 0.11686794
## 2652 6 5134 0.11686794
## 2653 6 5134 0.11686794
## 2654 6 5134 0.11686794
## 2655 6 5134 0.11686794
## 2656 6 5134 0.11686794
## 2657 6 5134 0.11686794
## 2658 6 5134 0.11686794
## 2659 6 5134 0.11686794
## 2660 6 5134 0.11686794
## 2661 6 5134 0.11686794
## 2662 6 5134 0.11686794
## 2663 6 5134 0.11686794
## 2664 6 5134 0.11686794
## 2665 6 5134 0.11686794
## 2666 6 5134 0.11686794
## 2667 6 5134 0.11686794
## 2668 6 5134 0.11686794
## 2669 6 5134 0.11686794
## 2670 6 5134 0.11686794
## 2671 6 5134 0.11686794
## 2672 6 5134 0.11686794
## 2673 6 5134 0.11686794
## 2674 6 5134 0.11686794
## 2675 6 5134 0.11686794
## 2676 6 5134 0.11686794
## 2677 6 5134 0.11686794
## 2678 6 5134 0.11686794
## 2679 6 5134 0.11686794
## 2680 6 5134 0.11686794
## 2681 6 5134 0.11686794
## 2682 6 5134 0.11686794
## 2683 6 5134 0.11686794
## 2684 6 5134 0.11686794
## 2685 6 5134 0.11686794
## 2686 6 5134 0.11686794
## 2687 6 5134 0.11686794
## 2688 6 5134 0.11686794
## 2689 6 5134 0.11686794
## 2690 6 5134 0.11686794
## 2691 6 5134 0.11686794
## 2692 6 5134 0.11686794
## 2693 6 5134 0.11686794
## 2694 6 5134 0.11686794
## 2695 6 5134 0.11686794
## 2696 6 5134 0.11686794
## 2697 6 5134 0.11686794
## 2698 6 5134 0.11686794
## 2699 6 5134 0.11686794
## 2700 6 5134 0.11686794
## 2701 6 5134 0.11686794
## 2702 6 5134 0.11686794
## 2703 6 5134 0.11686794
## 2704 6 5134 0.11686794
## 2705 6 5134 0.11686794
## 2706 6 5134 0.11686794
## 2707 6 5134 0.11686794
## 2708 6 5134 0.11686794
## 2709 6 5134 0.11686794
## 2710 6 5134 0.11686794
## 2711 6 5134 0.11686794
## 2712 6 5134 0.11686794
## 2713 6 5134 0.11686794
## 2714 6 5134 0.11686794
## 2715 6 5134 0.11686794
## 2716 6 5134 0.11686794
## 2717 6 5134 0.11686794
## 2718 6 5134 0.11686794
## 2719 6 5134 0.11686794
## 2720 6 5134 0.11686794
## 2721 6 5134 0.11686794
## 2722 6 5134 0.11686794
## 2723 6 5134 0.11686794
## 2724 6 5134 0.11686794
## 2725 6 5134 0.11686794
## 2726 6 5134 0.11686794
## 2727 6 5134 0.11686794
## 2728 6 5134 0.11686794
## 2729 6 5134 0.11686794
## 2730 6 5134 0.11686794
## 2731 6 5134 0.11686794
## 2732 6 5134 0.11686794
## 2733 6 5134 0.11686794
## 2734 6 5134 0.11686794
## 2735 6 5134 0.11686794
## 2736 6 5134 0.11686794
## 2737 6 5134 0.11686794
## 2738 6 5134 0.11686794
## 2739 6 5134 0.11686794
## 2740 6 5134 0.11686794
## 2741 6 5134 0.11686794
## 2742 6 5134 0.11686794
## 2743 6 5134 0.11686794
## 2744 6 5134 0.11686794
## 2745 6 5134 0.11686794
## 2746 6 5134 0.11686794
## 2747 6 5134 0.11686794
## 2748 6 5134 0.11686794
## 2749 6 5134 0.11686794
## 2750 6 5134 0.11686794
## 2751 6 5134 0.11686794
## 2752 6 5134 0.11686794
## 2753 6 5134 0.11686794
## 2754 6 5134 0.11686794
## 2755 6 5134 0.11686794
## 2756 6 5134 0.11686794
## 2757 6 5134 0.11686794
## 2758 6 5134 0.11686794
## 2759 6 5134 0.11686794
## 2760 6 5134 0.11686794
## 2761 6 5134 0.11686794
## 2762 6 5134 0.11686794
## 2763 6 5134 0.11686794
## 2764 6 5134 0.11686794
## 2765 6 5134 0.11686794
## 2766 6 5134 0.11686794
## 2767 6 5134 0.11686794
## 2768 6 5134 0.11686794
## 2769 6 5134 0.11686794
## 2770 6 5134 0.11686794
## 2771 6 5134 0.11686794
## 2772 6 5134 0.11686794
## 2773 6 5134 0.11686794
## 2774 6 5134 0.11686794
## 2775 6 5134 0.11686794
## 2776 6 5134 0.11686794
## 2777 6 5134 0.11686794
## 2778 6 5134 0.11686794
## 2779 6 5134 0.11686794
## 2780 6 5134 0.11686794
## 2781 6 5134 0.11686794
## 2782 6 5134 0.11686794
## 2783 6 5134 0.11686794
## 2784 6 5134 0.11686794
## 2785 6 5134 0.11686794
## 2786 6 5134 0.11686794
## 2787 6 5134 0.11686794
## 2788 6 5134 0.11686794
## 2789 6 5134 0.11686794
## 2790 6 5134 0.11686794
## 2791 6 5134 0.11686794
## 2792 6 5134 0.11686794
## 2793 6 5134 0.11686794
## 2794 6 5134 0.11686794
## 2795 6 5134 0.11686794
## 2796 6 5134 0.11686794
## 2797 6 5134 0.11686794
## 2798 6 5134 0.11686794
## 2799 6 5134 0.11686794
## 2800 6 5134 0.11686794
## 2801 6 5134 0.11686794
## 2802 6 5134 0.11686794
## 2803 6 5134 0.11686794
## 2804 6 5134 0.11686794
## 2805 6 5134 0.11686794
## 2806 6 5134 0.11686794
## 2807 6 5134 0.11686794
## 2808 6 5134 0.11686794
## 2809 6 5134 0.11686794
## 2810 6 5134 0.11686794
## 2811 6 5134 0.11686794
## 2812 6 5134 0.11686794
## 2813 6 5134 0.11686794
## 2814 6 5134 0.11686794
## 2815 6 5134 0.11686794
## 2816 6 5134 0.11686794
## 2817 6 5134 0.11686794
## 2818 6 5134 0.11686794
## 2819 6 5134 0.11686794
## 2820 6 5134 0.11686794
## 2821 6 5134 0.11686794
## 2822 6 5134 0.11686794
## 2823 6 5134 0.11686794
## 2824 6 5134 0.11686794
## 2825 6 5134 0.11686794
## 2826 6 5134 0.11686794
## 2827 6 5134 0.11686794
## 2828 6 5134 0.11686794
## 2829 6 5134 0.11686794
## 2830 6 5134 0.11686794
## 2831 6 5134 0.11686794
## 2832 6 5134 0.11686794
## 2833 6 5134 0.11686794
## 2834 6 5134 0.11686794
## 2835 6 5134 0.11686794
## 2836 6 5134 0.11686794
## 2837 6 5134 0.11686794
## 2838 6 5134 0.11686794
## 2839 6 5134 0.11686794
## 2840 6 5134 0.11686794
## 2841 6 5134 0.11686794
## 2842 6 5134 0.11686794
## 2843 6 5134 0.11686794
## 2844 6 5134 0.11686794
## 2845 6 5134 0.11686794
## 2846 6 5134 0.11686794
## 2847 6 5134 0.11686794
## 2848 6 5134 0.11686794
## 2849 6 5134 0.11686794
## 2850 6 5134 0.11686794
## 2851 5 5134 0.09738995
## 2852 5 5134 0.09738995
## 2853 5 5134 0.09738995
## 2854 5 5134 0.09738995
## 2855 5 5134 0.09738995
## 2856 5 5134 0.09738995
## 2857 5 5134 0.09738995
## 2858 5 5134 0.09738995
## 2859 5 5134 0.09738995
## 2860 5 5134 0.09738995
## 2861 5 5134 0.09738995
## 2862 5 5134 0.09738995
## 2863 5 5134 0.09738995
## 2864 5 5134 0.09738995
## 2865 5 5134 0.09738995
## 2866 5 5134 0.09738995
## 2867 5 5134 0.09738995
## 2868 5 5134 0.09738995
## 2869 5 5134 0.09738995
## 2870 5 5134 0.09738995
## 2871 5 5134 0.09738995
## 2872 5 5134 0.09738995
## 2873 5 5134 0.09738995
## 2874 5 5134 0.09738995
## 2875 5 5134 0.09738995
## 2876 5 5134 0.09738995
## 2877 5 5134 0.09738995
## 2878 5 5134 0.09738995
## 2879 5 5134 0.09738995
## 2880 5 5134 0.09738995
## 2881 5 5134 0.09738995
## 2882 5 5134 0.09738995
## 2883 5 5134 0.09738995
## 2884 5 5134 0.09738995
## 2885 5 5134 0.09738995
## 2886 5 5134 0.09738995
## 2887 5 5134 0.09738995
## 2888 5 5134 0.09738995
## 2889 5 5134 0.09738995
## 2890 5 5134 0.09738995
## 2891 5 5134 0.09738995
## 2892 5 5134 0.09738995
## 2893 5 5134 0.09738995
## 2894 5 5134 0.09738995
## 2895 5 5134 0.09738995
## 2896 5 5134 0.09738995
## 2897 5 5134 0.09738995
## 2898 5 5134 0.09738995
## 2899 5 5134 0.09738995
## 2900 5 5134 0.09738995
## 2901 5 5134 0.09738995
## 2902 5 5134 0.09738995
## 2903 5 5134 0.09738995
## 2904 5 5134 0.09738995
## 2905 5 5134 0.09738995
## 2906 5 5134 0.09738995
## 2907 5 5134 0.09738995
## 2908 5 5134 0.09738995
## 2909 5 5134 0.09738995
## 2910 5 5134 0.09738995
## 2911 5 5134 0.09738995
## 2912 5 5134 0.09738995
## 2913 5 5134 0.09738995
## 2914 5 5134 0.09738995
## 2915 5 5134 0.09738995
## 2916 5 5134 0.09738995
## 2917 5 5134 0.09738995
## 2918 5 5134 0.09738995
## 2919 5 5134 0.09738995
## 2920 5 5134 0.09738995
## 2921 5 5134 0.09738995
## 2922 5 5134 0.09738995
## 2923 5 5134 0.09738995
## 2924 5 5134 0.09738995
## 2925 5 5134 0.09738995
## 2926 5 5134 0.09738995
## 2927 5 5134 0.09738995
## 2928 5 5134 0.09738995
## 2929 5 5134 0.09738995
## 2930 5 5134 0.09738995
## 2931 5 5134 0.09738995
## 2932 5 5134 0.09738995
## 2933 5 5134 0.09738995
## 2934 5 5134 0.09738995
## 2935 5 5134 0.09738995
## 2936 5 5134 0.09738995
## 2937 5 5134 0.09738995
## 2938 5 5134 0.09738995
## 2939 5 5134 0.09738995
## 2940 5 5134 0.09738995
## 2941 5 5134 0.09738995
## 2942 5 5134 0.09738995
## 2943 5 5134 0.09738995
## 2944 5 5134 0.09738995
## 2945 5 5134 0.09738995
## 2946 5 5134 0.09738995
## 2947 5 5134 0.09738995
## 2948 5 5134 0.09738995
## 2949 5 5134 0.09738995
## 2950 5 5134 0.09738995
## 2951 5 5134 0.09738995
## 2952 5 5134 0.09738995
## 2953 5 5134 0.09738995
## 2954 5 5134 0.09738995
## 2955 5 5134 0.09738995
## 2956 5 5134 0.09738995
## 2957 5 5134 0.09738995
## 2958 5 5134 0.09738995
## 2959 5 5134 0.09738995
## 2960 5 5134 0.09738995
## 2961 5 5134 0.09738995
## 2962 5 5134 0.09738995
## 2963 5 5134 0.09738995
## 2964 5 5134 0.09738995
## 2965 5 5134 0.09738995
## 2966 5 5134 0.09738995
## 2967 5 5134 0.09738995
## 2968 5 5134 0.09738995
## 2969 5 5134 0.09738995
## 2970 5 5134 0.09738995
## 2971 5 5134 0.09738995
## 2972 5 5134 0.09738995
## 2973 5 5134 0.09738995
## 2974 5 5134 0.09738995
## 2975 5 5134 0.09738995
## 2976 5 5134 0.09738995
## 2977 5 5134 0.09738995
## 2978 5 5134 0.09738995
## 2979 5 5134 0.09738995
## 2980 5 5134 0.09738995
## 2981 5 5134 0.09738995
## 2982 5 5134 0.09738995
## 2983 5 5134 0.09738995
## 2984 5 5134 0.09738995
## 2985 5 5134 0.09738995
## 2986 5 5134 0.09738995
## 2987 5 5134 0.09738995
## 2988 5 5134 0.09738995
## 2989 5 5134 0.09738995
## 2990 5 5134 0.09738995
## 2991 5 5134 0.09738995
## 2992 5 5134 0.09738995
## 2993 5 5134 0.09738995
## 2994 5 5134 0.09738995
## 2995 5 5134 0.09738995
## 2996 5 5134 0.09738995
## 2997 5 5134 0.09738995
## 2998 5 5134 0.09738995
## 2999 5 5134 0.09738995
## 3000 5 5134 0.09738995
## 3001 5 5134 0.09738995
## 3002 5 5134 0.09738995
## 3003 5 5134 0.09738995
## 3004 5 5134 0.09738995
## 3005 5 5134 0.09738995
## 3006 5 5134 0.09738995
## 3007 5 5134 0.09738995
## 3008 5 5134 0.09738995
## 3009 5 5134 0.09738995
## 3010 5 5134 0.09738995
## 3011 5 5134 0.09738995
## 3012 5 5134 0.09738995
## 3013 5 5134 0.09738995
## 3014 5 5134 0.09738995
## 3015 5 5134 0.09738995
## 3016 5 5134 0.09738995
## 3017 5 5134 0.09738995
## 3018 5 5134 0.09738995
## 3019 5 5134 0.09738995
## 3020 5 5134 0.09738995
## 3021 5 5134 0.09738995
## 3022 5 5134 0.09738995
## 3023 5 5134 0.09738995
## 3024 5 5134 0.09738995
## 3025 5 5134 0.09738995
## 3026 5 5134 0.09738995
## 3027 5 5134 0.09738995
## 3028 5 5134 0.09738995
## 3029 5 5134 0.09738995
## 3030 5 5134 0.09738995
## 3031 5 5134 0.09738995
## 3032 5 5134 0.09738995
## 3033 5 5134 0.09738995
## 3034 5 5134 0.09738995
## 3035 5 5134 0.09738995
## 3036 5 5134 0.09738995
## 3037 5 5134 0.09738995
## 3038 5 5134 0.09738995
## 3039 5 5134 0.09738995
## 3040 5 5134 0.09738995
## 3041 5 5134 0.09738995
## 3042 5 5134 0.09738995
## 3043 5 5134 0.09738995
## 3044 5 5134 0.09738995
## 3045 5 5134 0.09738995
## 3046 5 5134 0.09738995
## 3047 5 5134 0.09738995
## 3048 5 5134 0.09738995
## 3049 5 5134 0.09738995
## 3050 5 5134 0.09738995
## 3051 5 5134 0.09738995
## 3052 5 5134 0.09738995
## 3053 5 5134 0.09738995
## 3054 5 5134 0.09738995
## 3055 5 5134 0.09738995
## 3056 5 5134 0.09738995
## 3057 5 5134 0.09738995
## 3058 5 5134 0.09738995
## 3059 5 5134 0.09738995
## 3060 5 5134 0.09738995
## 3061 5 5134 0.09738995
## 3062 5 5134 0.09738995
## 3063 5 5134 0.09738995
## 3064 5 5134 0.09738995
## 3065 5 5134 0.09738995
## 3066 5 5134 0.09738995
## 3067 5 5134 0.09738995
## 3068 5 5134 0.09738995
## 3069 5 5134 0.09738995
## 3070 5 5134 0.09738995
## 3071 5 5134 0.09738995
## 3072 5 5134 0.09738995
## 3073 5 5134 0.09738995
## 3074 5 5134 0.09738995
## 3075 5 5134 0.09738995
## 3076 5 5134 0.09738995
## 3077 5 5134 0.09738995
## 3078 5 5134 0.09738995
## 3079 5 5134 0.09738995
## 3080 5 5134 0.09738995
## 3081 5 5134 0.09738995
## 3082 5 5134 0.09738995
## 3083 5 5134 0.09738995
## 3084 5 5134 0.09738995
## 3085 5 5134 0.09738995
## 3086 5 5134 0.09738995
## 3087 5 5134 0.09738995
## 3088 5 5134 0.09738995
## 3089 5 5134 0.09738995
## 3090 5 5134 0.09738995
## 3091 5 5134 0.09738995
## 3092 5 5134 0.09738995
## 3093 5 5134 0.09738995
## 3094 5 5134 0.09738995
## 3095 5 5134 0.09738995
## 3096 5 5134 0.09738995
## 3097 5 5134 0.09738995
## 3098 5 5134 0.09738995
## 3099 5 5134 0.09738995
## 3100 5 5134 0.09738995
## 3101 5 5134 0.09738995
## 3102 5 5134 0.09738995
## 3103 5 5134 0.09738995
## 3104 5 5134 0.09738995
## 3105 5 5134 0.09738995
## 3106 5 5134 0.09738995
## 3107 5 5134 0.09738995
## 3108 5 5134 0.09738995
## 3109 5 5134 0.09738995
## 3110 5 5134 0.09738995
## 3111 5 5134 0.09738995
## 3112 5 5134 0.09738995
## 3113 5 5134 0.09738995
## 3114 5 5134 0.09738995
## 3115 5 5134 0.09738995
## 3116 5 5134 0.09738995
## 3117 5 5134 0.09738995
## 3118 5 5134 0.09738995
## 3119 5 5134 0.09738995
## 3120 5 5134 0.09738995
## 3121 5 5134 0.09738995
## 3122 5 5134 0.09738995
## 3123 5 5134 0.09738995
## 3124 5 5134 0.09738995
## 3125 5 5134 0.09738995
## 3126 5 5134 0.09738995
## 3127 5 5134 0.09738995
## 3128 5 5134 0.09738995
## 3129 5 5134 0.09738995
## 3130 5 5134 0.09738995
## 3131 5 5134 0.09738995
## 3132 5 5134 0.09738995
## 3133 5 5134 0.09738995
## 3134 5 5134 0.09738995
## 3135 5 5134 0.09738995
## 3136 5 5134 0.09738995
## 3137 5 5134 0.09738995
## 3138 5 5134 0.09738995
## 3139 5 5134 0.09738995
## 3140 5 5134 0.09738995
## 3141 5 5134 0.09738995
## 3142 5 5134 0.09738995
## 3143 5 5134 0.09738995
## 3144 5 5134 0.09738995
## 3145 5 5134 0.09738995
## 3146 5 5134 0.09738995
## 3147 5 5134 0.09738995
## 3148 5 5134 0.09738995
## 3149 5 5134 0.09738995
## 3150 5 5134 0.09738995
## 3151 5 5134 0.09738995
## 3152 5 5134 0.09738995
## 3153 5 5134 0.09738995
## 3154 5 5134 0.09738995
## 3155 5 5134 0.09738995
## 3156 5 5134 0.09738995
## 3157 5 5134 0.09738995
## 3158 5 5134 0.09738995
## 3159 5 5134 0.09738995
## 3160 5 5134 0.09738995
## 3161 5 5134 0.09738995
## 3162 5 5134 0.09738995
## 3163 5 5134 0.09738995
## 3164 5 5134 0.09738995
## 3165 5 5134 0.09738995
## 3166 5 5134 0.09738995
## 3167 5 5134 0.09738995
## 3168 5 5134 0.09738995
## 3169 5 5134 0.09738995
## 3170 5 5134 0.09738995
## 3171 5 5134 0.09738995
## 3172 5 5134 0.09738995
## 3173 5 5134 0.09738995
## 3174 5 5134 0.09738995
## 3175 5 5134 0.09738995
## 3176 5 5134 0.09738995
## 3177 5 5134 0.09738995
## 3178 5 5134 0.09738995
## 3179 5 5134 0.09738995
## 3180 5 5134 0.09738995
## 3181 5 5134 0.09738995
## 3182 5 5134 0.09738995
## 3183 5 5134 0.09738995
## 3184 5 5134 0.09738995
## 3185 5 5134 0.09738995
## 3186 5 5134 0.09738995
## 3187 5 5134 0.09738995
## 3188 5 5134 0.09738995
## 3189 5 5134 0.09738995
## 3190 5 5134 0.09738995
## 3191 5 5134 0.09738995
## 3192 5 5134 0.09738995
## 3193 5 5134 0.09738995
## 3194 5 5134 0.09738995
## 3195 5 5134 0.09738995
## 3196 5 5134 0.09738995
## 3197 5 5134 0.09738995
## 3198 5 5134 0.09738995
## 3199 5 5134 0.09738995
## 3200 5 5134 0.09738995
## 3201 5 5134 0.09738995
## 3202 5 5134 0.09738995
## 3203 5 5134 0.09738995
## 3204 5 5134 0.09738995
## 3205 5 5134 0.09738995
## 3206 5 5134 0.09738995
## 3207 5 5134 0.09738995
## 3208 5 5134 0.09738995
## 3209 5 5134 0.09738995
## 3210 5 5134 0.09738995
## 3211 5 5134 0.09738995
## 3212 5 5134 0.09738995
## 3213 5 5134 0.09738995
## 3214 5 5134 0.09738995
## 3215 5 5134 0.09738995
## 3216 5 5134 0.09738995
## 3217 5 5134 0.09738995
## 3218 5 5134 0.09738995
## 3219 5 5134 0.09738995
## 3220 5 5134 0.09738995
## 3221 5 5134 0.09738995
## 3222 5 5134 0.09738995
## 3223 5 5134 0.09738995
## 3224 5 5134 0.09738995
## 3225 5 5134 0.09738995
## 3226 5 5134 0.09738995
## 3227 5 5134 0.09738995
## 3228 5 5134 0.09738995
## 3229 5 5134 0.09738995
## 3230 5 5134 0.09738995
## 3231 5 5134 0.09738995
## 3232 5 5134 0.09738995
## 3233 5 5134 0.09738995
## 3234 5 5134 0.09738995
## 3235 5 5134 0.09738995
## 3236 5 5134 0.09738995
## 3237 5 5134 0.09738995
## 3238 5 5134 0.09738995
## 3239 5 5134 0.09738995
## 3240 5 5134 0.09738995
## 3241 5 5134 0.09738995
## 3242 5 5134 0.09738995
## 3243 5 5134 0.09738995
## 3244 5 5134 0.09738995
## 3245 5 5134 0.09738995
## 3246 5 5134 0.09738995
## 3247 5 5134 0.09738995
## 3248 5 5134 0.09738995
## 3249 5 5134 0.09738995
## 3250 5 5134 0.09738995
## 3251 5 5134 0.09738995
## 3252 5 5134 0.09738995
## 3253 5 5134 0.09738995
## 3254 5 5134 0.09738995
## 3255 5 5134 0.09738995
## 3256 5 5134 0.09738995
## 3257 5 5134 0.09738995
## 3258 5 5134 0.09738995
## 3259 5 5134 0.09738995
## 3260 5 5134 0.09738995
## 3261 5 5134 0.09738995
## 3262 5 5134 0.09738995
## 3263 5 5134 0.09738995
## 3264 5 5134 0.09738995
## 3265 5 5134 0.09738995
## 3266 5 5134 0.09738995
## 3267 5 5134 0.09738995
## 3268 5 5134 0.09738995
## 3269 5 5134 0.09738995
## 3270 5 5134 0.09738995
## 3271 5 5134 0.09738995
## 3272 5 5134 0.09738995
## 3273 5 5134 0.09738995
## 3274 5 5134 0.09738995
## 3275 5 5134 0.09738995
## 3276 5 5134 0.09738995
## 3277 5 5134 0.09738995
## 3278 5 5134 0.09738995
## 3279 5 5134 0.09738995
## 3280 5 5134 0.09738995
## 3281 5 5134 0.09738995
## 3282 5 5134 0.09738995
## 3283 5 5134 0.09738995
## 3284 5 5134 0.09738995
## 3285 5 5134 0.09738995
## 3286 5 5134 0.09738995
## 3287 5 5134 0.09738995
## 3288 5 5134 0.09738995
## 3289 5 5134 0.09738995
## 3290 5 5134 0.09738995
## 3291 5 5134 0.09738995
## 3292 5 5134 0.09738995
## 3293 5 5134 0.09738995
## 3294 5 5134 0.09738995
## 3295 5 5134 0.09738995
## 3296 5 5134 0.09738995
## 3297 5 5134 0.09738995
## 3298 5 5134 0.09738995
## 3299 5 5134 0.09738995
## 3300 5 5134 0.09738995
## 3301 5 5134 0.09738995
## 3302 5 5134 0.09738995
## 3303 5 5134 0.09738995
## 3304 5 5134 0.09738995
## 3305 5 5134 0.09738995
## 3306 5 5134 0.09738995
## 3307 5 5134 0.09738995
## 3308 5 5134 0.09738995
## 3309 5 5134 0.09738995
## 3310 5 5134 0.09738995
## 3311 5 5134 0.09738995
## 3312 5 5134 0.09738995
## 3313 5 5134 0.09738995
## 3314 5 5134 0.09738995
## 3315 5 5134 0.09738995
## 3316 5 5134 0.09738995
## 3317 5 5134 0.09738995
## 3318 5 5134 0.09738995
## 3319 5 5134 0.09738995
## 3320 5 5134 0.09738995
## 3321 5 5134 0.09738995
## 3322 5 5134 0.09738995
## 3323 5 5134 0.09738995
## 3324 5 5134 0.09738995
## 3325 5 5134 0.09738995
## 3326 5 5134 0.09738995
## 3327 5 5134 0.09738995
## 3328 5 5134 0.09738995
## 3329 5 5134 0.09738995
## 3330 5 5134 0.09738995
## 3331 5 5134 0.09738995
## 3332 5 5134 0.09738995
## 3333 5 5134 0.09738995
## 3334 5 5134 0.09738995
## 3335 5 5134 0.09738995
## 3336 5 5134 0.09738995
## 3337 5 5134 0.09738995
## 3338 5 5134 0.09738995
## 3339 5 5134 0.09738995
## 3340 5 5134 0.09738995
## 3341 5 5134 0.09738995
## 3342 5 5134 0.09738995
## 3343 5 5134 0.09738995
## 3344 5 5134 0.09738995
## 3345 5 5134 0.09738995
## 3346 5 5134 0.09738995
## 3347 5 5134 0.09738995
## 3348 5 5134 0.09738995
## 3349 5 5134 0.09738995
## 3350 5 5134 0.09738995
## 3351 5 5134 0.09738995
## 3352 5 5134 0.09738995
## 3353 5 5134 0.09738995
## 3354 5 5134 0.09738995
## 3355 5 5134 0.09738995
## 3356 5 5134 0.09738995
## 3357 5 5134 0.09738995
## 3358 5 5134 0.09738995
## 3359 5 5134 0.09738995
## 3360 5 5134 0.09738995
## 3361 5 5134 0.09738995
## 3362 5 5134 0.09738995
## 3363 5 5134 0.09738995
## 3364 5 5134 0.09738995
## 3365 5 5134 0.09738995
## 3366 5 5134 0.09738995
## 3367 5 5134 0.09738995
## 3368 5 5134 0.09738995
## 3369 5 5134 0.09738995
## 3370 5 5134 0.09738995
## 3371 5 5134 0.09738995
## 3372 5 5134 0.09738995
## 3373 5 5134 0.09738995
## 3374 5 5134 0.09738995
## 3375 5 5134 0.09738995
## 3376 5 5134 0.09738995
## 3377 5 5134 0.09738995
## 3378 5 5134 0.09738995
## 3379 5 5134 0.09738995
## 3380 5 5134 0.09738995
## 3381 5 5134 0.09738995
## 3382 5 5134 0.09738995
## 3383 5 5134 0.09738995
## 3384 5 5134 0.09738995
## 3385 5 5134 0.09738995
## 3386 5 5134 0.09738995
## 3387 5 5134 0.09738995
## 3388 5 5134 0.09738995
## 3389 5 5134 0.09738995
## 3390 5 5134 0.09738995
## 3391 5 5134 0.09738995
## 3392 5 5134 0.09738995
## 3393 5 5134 0.09738995
## 3394 5 5134 0.09738995
## 3395 4 5134 0.07791196
## 3396 4 5134 0.07791196
## 3397 4 5134 0.07791196
## 3398 4 5134 0.07791196
## 3399 4 5134 0.07791196
## 3400 4 5134 0.07791196
## 3401 4 5134 0.07791196
## 3402 4 5134 0.07791196
## 3403 4 5134 0.07791196
## 3404 4 5134 0.07791196
## 3405 4 5134 0.07791196
## 3406 4 5134 0.07791196
## 3407 4 5134 0.07791196
## 3408 4 5134 0.07791196
## 3409 4 5134 0.07791196
## 3410 4 5134 0.07791196
## 3411 4 5134 0.07791196
## 3412 4 5134 0.07791196
## 3413 4 5134 0.07791196
## 3414 4 5134 0.07791196
## 3415 4 5134 0.07791196
## 3416 4 5134 0.07791196
## 3417 4 5134 0.07791196
## 3418 4 5134 0.07791196
## 3419 4 5134 0.07791196
## 3420 4 5134 0.07791196
## 3421 4 5134 0.07791196
## 3422 4 5134 0.07791196
## 3423 4 5134 0.07791196
## 3424 4 5134 0.07791196
## 3425 4 5134 0.07791196
## 3426 4 5134 0.07791196
## 3427 4 5134 0.07791196
## 3428 4 5134 0.07791196
## 3429 4 5134 0.07791196
## 3430 4 5134 0.07791196
## 3431 4 5134 0.07791196
## 3432 4 5134 0.07791196
## 3433 4 5134 0.07791196
## 3434 4 5134 0.07791196
## 3435 4 5134 0.07791196
## 3436 4 5134 0.07791196
## 3437 4 5134 0.07791196
## 3438 4 5134 0.07791196
## 3439 4 5134 0.07791196
## 3440 4 5134 0.07791196
## 3441 4 5134 0.07791196
## 3442 4 5134 0.07791196
## 3443 4 5134 0.07791196
## 3444 4 5134 0.07791196
## 3445 4 5134 0.07791196
## 3446 4 5134 0.07791196
## 3447 4 5134 0.07791196
## 3448 4 5134 0.07791196
## 3449 4 5134 0.07791196
## 3450 4 5134 0.07791196
## 3451 4 5134 0.07791196
## 3452 4 5134 0.07791196
## 3453 4 5134 0.07791196
## 3454 4 5134 0.07791196
## 3455 4 5134 0.07791196
## 3456 4 5134 0.07791196
## 3457 4 5134 0.07791196
## 3458 4 5134 0.07791196
## 3459 4 5134 0.07791196
## 3460 4 5134 0.07791196
## 3461 4 5134 0.07791196
## 3462 4 5134 0.07791196
## 3463 4 5134 0.07791196
## 3464 4 5134 0.07791196
## 3465 4 5134 0.07791196
## 3466 4 5134 0.07791196
## 3467 4 5134 0.07791196
## 3468 4 5134 0.07791196
## 3469 4 5134 0.07791196
## 3470 4 5134 0.07791196
## 3471 4 5134 0.07791196
## 3472 4 5134 0.07791196
## 3473 4 5134 0.07791196
## 3474 4 5134 0.07791196
## 3475 4 5134 0.07791196
## 3476 4 5134 0.07791196
## 3477 4 5134 0.07791196
## 3478 4 5134 0.07791196
## 3479 4 5134 0.07791196
## 3480 4 5134 0.07791196
## 3481 4 5134 0.07791196
## 3482 4 5134 0.07791196
## 3483 4 5134 0.07791196
## 3484 4 5134 0.07791196
## 3485 4 5134 0.07791196
## 3486 4 5134 0.07791196
## 3487 4 5134 0.07791196
## 3488 4 5134 0.07791196
## 3489 4 5134 0.07791196
## 3490 4 5134 0.07791196
## 3491 4 5134 0.07791196
## 3492 4 5134 0.07791196
## 3493 4 5134 0.07791196
## 3494 4 5134 0.07791196
## 3495 4 5134 0.07791196
## 3496 4 5134 0.07791196
## 3497 4 5134 0.07791196
## 3498 4 5134 0.07791196
## 3499 4 5134 0.07791196
## 3500 4 5134 0.07791196
## 3501 4 5134 0.07791196
## 3502 4 5134 0.07791196
## 3503 4 5134 0.07791196
## 3504 4 5134 0.07791196
## 3505 4 5134 0.07791196
## 3506 4 5134 0.07791196
## 3507 4 5134 0.07791196
## 3508 4 5134 0.07791196
## 3509 4 5134 0.07791196
## 3510 4 5134 0.07791196
## 3511 4 5134 0.07791196
## 3512 4 5134 0.07791196
## 3513 4 5134 0.07791196
## 3514 4 5134 0.07791196
## 3515 4 5134 0.07791196
## 3516 4 5134 0.07791196
## 3517 4 5134 0.07791196
## 3518 4 5134 0.07791196
## 3519 4 5134 0.07791196
## 3520 4 5134 0.07791196
## 3521 4 5134 0.07791196
## 3522 4 5134 0.07791196
## 3523 4 5134 0.07791196
## 3524 4 5134 0.07791196
## 3525 4 5134 0.07791196
## 3526 4 5134 0.07791196
## 3527 4 5134 0.07791196
## 3528 4 5134 0.07791196
## 3529 4 5134 0.07791196
## 3530 4 5134 0.07791196
## 3531 4 5134 0.07791196
## 3532 4 5134 0.07791196
## 3533 4 5134 0.07791196
## 3534 4 5134 0.07791196
## 3535 4 5134 0.07791196
## 3536 4 5134 0.07791196
## 3537 4 5134 0.07791196
## 3538 4 5134 0.07791196
## 3539 4 5134 0.07791196
## 3540 4 5134 0.07791196
## 3541 4 5134 0.07791196
## 3542 4 5134 0.07791196
## 3543 4 5134 0.07791196
## 3544 4 5134 0.07791196
## 3545 4 5134 0.07791196
## 3546 4 5134 0.07791196
## 3547 4 5134 0.07791196
## 3548 4 5134 0.07791196
## 3549 4 5134 0.07791196
## 3550 4 5134 0.07791196
## 3551 4 5134 0.07791196
## 3552 4 5134 0.07791196
## 3553 4 5134 0.07791196
## 3554 4 5134 0.07791196
## 3555 4 5134 0.07791196
## 3556 4 5134 0.07791196
## 3557 4 5134 0.07791196
## 3558 4 5134 0.07791196
## 3559 4 5134 0.07791196
## 3560 4 5134 0.07791196
## 3561 4 5134 0.07791196
## 3562 4 5134 0.07791196
## 3563 4 5134 0.07791196
## 3564 4 5134 0.07791196
## 3565 4 5134 0.07791196
## 3566 4 5134 0.07791196
## 3567 4 5134 0.07791196
## 3568 4 5134 0.07791196
## 3569 4 5134 0.07791196
## 3570 4 5134 0.07791196
## 3571 4 5134 0.07791196
## 3572 4 5134 0.07791196
## 3573 4 5134 0.07791196
## 3574 4 5134 0.07791196
## 3575 4 5134 0.07791196
## 3576 4 5134 0.07791196
## 3577 4 5134 0.07791196
## 3578 4 5134 0.07791196
## 3579 4 5134 0.07791196
## 3580 4 5134 0.07791196
## 3581 4 5134 0.07791196
## 3582 4 5134 0.07791196
## 3583 4 5134 0.07791196
## 3584 4 5134 0.07791196
## 3585 4 5134 0.07791196
## 3586 4 5134 0.07791196
## 3587 4 5134 0.07791196
## 3588 4 5134 0.07791196
## 3589 4 5134 0.07791196
## 3590 4 5134 0.07791196
## 3591 4 5134 0.07791196
## 3592 4 5134 0.07791196
## 3593 4 5134 0.07791196
## 3594 4 5134 0.07791196
## 3595 4 5134 0.07791196
## 3596 4 5134 0.07791196
## 3597 4 5134 0.07791196
## 3598 4 5134 0.07791196
## 3599 4 5134 0.07791196
## 3600 4 5134 0.07791196
## 3601 4 5134 0.07791196
## 3602 4 5134 0.07791196
## 3603 4 5134 0.07791196
## 3604 4 5134 0.07791196
## 3605 4 5134 0.07791196
## 3606 4 5134 0.07791196
## 3607 4 5134 0.07791196
## 3608 4 5134 0.07791196
## 3609 4 5134 0.07791196
## 3610 4 5134 0.07791196
## 3611 4 5134 0.07791196
## 3612 4 5134 0.07791196
## 3613 4 5134 0.07791196
## 3614 4 5134 0.07791196
## 3615 4 5134 0.07791196
## 3616 4 5134 0.07791196
## 3617 4 5134 0.07791196
## 3618 4 5134 0.07791196
## 3619 4 5134 0.07791196
## 3620 4 5134 0.07791196
## 3621 4 5134 0.07791196
## 3622 4 5134 0.07791196
## 3623 4 5134 0.07791196
## 3624 4 5134 0.07791196
## 3625 4 5134 0.07791196
## 3626 4 5134 0.07791196
## 3627 4 5134 0.07791196
## 3628 4 5134 0.07791196
## 3629 4 5134 0.07791196
## 3630 4 5134 0.07791196
## 3631 4 5134 0.07791196
## 3632 4 5134 0.07791196
## 3633 4 5134 0.07791196
## 3634 4 5134 0.07791196
## 3635 4 5134 0.07791196
## 3636 4 5134 0.07791196
## 3637 4 5134 0.07791196
## 3638 4 5134 0.07791196
## 3639 4 5134 0.07791196
## 3640 4 5134 0.07791196
## 3641 4 5134 0.07791196
## 3642 4 5134 0.07791196
## 3643 4 5134 0.07791196
## 3644 4 5134 0.07791196
## 3645 4 5134 0.07791196
## 3646 4 5134 0.07791196
## 3647 4 5134 0.07791196
## 3648 4 5134 0.07791196
## 3649 4 5134 0.07791196
## 3650 4 5134 0.07791196
## 3651 4 5134 0.07791196
## 3652 4 5134 0.07791196
## 3653 4 5134 0.07791196
## 3654 4 5134 0.07791196
## 3655 4 5134 0.07791196
## 3656 4 5134 0.07791196
## 3657 4 5134 0.07791196
## 3658 4 5134 0.07791196
## 3659 4 5134 0.07791196
## 3660 4 5134 0.07791196
## 3661 4 5134 0.07791196
## 3662 4 5134 0.07791196
## 3663 4 5134 0.07791196
## 3664 4 5134 0.07791196
## 3665 4 5134 0.07791196
## 3666 4 5134 0.07791196
## 3667 4 5134 0.07791196
## 3668 4 5134 0.07791196
## 3669 4 5134 0.07791196
## 3670 4 5134 0.07791196
## 3671 4 5134 0.07791196
## 3672 4 5134 0.07791196
## 3673 4 5134 0.07791196
## 3674 4 5134 0.07791196
## 3675 4 5134 0.07791196
## 3676 4 5134 0.07791196
## 3677 4 5134 0.07791196
## 3678 4 5134 0.07791196
## 3679 4 5134 0.07791196
## 3680 4 5134 0.07791196
## 3681 4 5134 0.07791196
## 3682 4 5134 0.07791196
## 3683 4 5134 0.07791196
## 3684 4 5134 0.07791196
## 3685 4 5134 0.07791196
## 3686 4 5134 0.07791196
## 3687 4 5134 0.07791196
## 3688 4 5134 0.07791196
## 3689 4 5134 0.07791196
## 3690 4 5134 0.07791196
## 3691 4 5134 0.07791196
## 3692 4 5134 0.07791196
## 3693 4 5134 0.07791196
## 3694 4 5134 0.07791196
## 3695 4 5134 0.07791196
## 3696 4 5134 0.07791196
## 3697 4 5134 0.07791196
## 3698 4 5134 0.07791196
## 3699 4 5134 0.07791196
## 3700 4 5134 0.07791196
## 3701 4 5134 0.07791196
## 3702 4 5134 0.07791196
## 3703 4 5134 0.07791196
## 3704 4 5134 0.07791196
## 3705 4 5134 0.07791196
## 3706 4 5134 0.07791196
## 3707 4 5134 0.07791196
## 3708 4 5134 0.07791196
## 3709 4 5134 0.07791196
## 3710 4 5134 0.07791196
## 3711 4 5134 0.07791196
## 3712 4 5134 0.07791196
## 3713 4 5134 0.07791196
## 3714 4 5134 0.07791196
## 3715 4 5134 0.07791196
## 3716 4 5134 0.07791196
## 3717 4 5134 0.07791196
## 3718 4 5134 0.07791196
## 3719 4 5134 0.07791196
## 3720 4 5134 0.07791196
## 3721 4 5134 0.07791196
## 3722 4 5134 0.07791196
## 3723 4 5134 0.07791196
## 3724 4 5134 0.07791196
## 3725 4 5134 0.07791196
## 3726 4 5134 0.07791196
## 3727 4 5134 0.07791196
## 3728 4 5134 0.07791196
## 3729 4 5134 0.07791196
## 3730 4 5134 0.07791196
## 3731 4 5134 0.07791196
## 3732 4 5134 0.07791196
## 3733 4 5134 0.07791196
## 3734 4 5134 0.07791196
## 3735 4 5134 0.07791196
## 3736 4 5134 0.07791196
## 3737 4 5134 0.07791196
## 3738 4 5134 0.07791196
## 3739 4 5134 0.07791196
## 3740 4 5134 0.07791196
## 3741 4 5134 0.07791196
## 3742 4 5134 0.07791196
## 3743 4 5134 0.07791196
## 3744 4 5134 0.07791196
## 3745 4 5134 0.07791196
## 3746 4 5134 0.07791196
## 3747 4 5134 0.07791196
## 3748 4 5134 0.07791196
## 3749 4 5134 0.07791196
## 3750 4 5134 0.07791196
## 3751 4 5134 0.07791196
## 3752 4 5134 0.07791196
## 3753 4 5134 0.07791196
## 3754 4 5134 0.07791196
## 3755 4 5134 0.07791196
## 3756 4 5134 0.07791196
## 3757 4 5134 0.07791196
## 3758 4 5134 0.07791196
## 3759 4 5134 0.07791196
## 3760 4 5134 0.07791196
## 3761 4 5134 0.07791196
## 3762 4 5134 0.07791196
## 3763 4 5134 0.07791196
## 3764 4 5134 0.07791196
## 3765 4 5134 0.07791196
## 3766 4 5134 0.07791196
## 3767 4 5134 0.07791196
## 3768 4 5134 0.07791196
## 3769 4 5134 0.07791196
## 3770 4 5134 0.07791196
## 3771 4 5134 0.07791196
## 3772 4 5134 0.07791196
## 3773 4 5134 0.07791196
## 3774 4 5134 0.07791196
## 3775 4 5134 0.07791196
## 3776 4 5134 0.07791196
## 3777 4 5134 0.07791196
## 3778 4 5134 0.07791196
## 3779 4 5134 0.07791196
## 3780 4 5134 0.07791196
## 3781 4 5134 0.07791196
## 3782 4 5134 0.07791196
## 3783 4 5134 0.07791196
## 3784 4 5134 0.07791196
## 3785 4 5134 0.07791196
## 3786 4 5134 0.07791196
## 3787 4 5134 0.07791196
## 3788 4 5134 0.07791196
## 3789 4 5134 0.07791196
## 3790 4 5134 0.07791196
## 3791 4 5134 0.07791196
## 3792 4 5134 0.07791196
## 3793 4 5134 0.07791196
## 3794 4 5134 0.07791196
## 3795 4 5134 0.07791196
## 3796 4 5134 0.07791196
## 3797 4 5134 0.07791196
## 3798 4 5134 0.07791196
## 3799 4 5134 0.07791196
## 3800 4 5134 0.07791196
## 3801 4 5134 0.07791196
## 3802 4 5134 0.07791196
## 3803 4 5134 0.07791196
## 3804 4 5134 0.07791196
## 3805 4 5134 0.07791196
## 3806 4 5134 0.07791196
## 3807 4 5134 0.07791196
## 3808 4 5134 0.07791196
## 3809 4 5134 0.07791196
## 3810 4 5134 0.07791196
## 3811 4 5134 0.07791196
## 3812 4 5134 0.07791196
## 3813 4 5134 0.07791196
## 3814 4 5134 0.07791196
## 3815 4 5134 0.07791196
## 3816 4 5134 0.07791196
## 3817 4 5134 0.07791196
## 3818 4 5134 0.07791196
## 3819 4 5134 0.07791196
## 3820 4 5134 0.07791196
## 3821 4 5134 0.07791196
## 3822 4 5134 0.07791196
## 3823 4 5134 0.07791196
## 3824 4 5134 0.07791196
## 3825 4 5134 0.07791196
## 3826 4 5134 0.07791196
## 3827 4 5134 0.07791196
## 3828 4 5134 0.07791196
## 3829 4 5134 0.07791196
## 3830 4 5134 0.07791196
## 3831 4 5134 0.07791196
## 3832 4 5134 0.07791196
## 3833 4 5134 0.07791196
## 3834 4 5134 0.07791196
## 3835 4 5134 0.07791196
## 3836 4 5134 0.07791196
## 3837 4 5134 0.07791196
## 3838 4 5134 0.07791196
## 3839 4 5134 0.07791196
## 3840 4 5134 0.07791196
## 3841 4 5134 0.07791196
## 3842 4 5134 0.07791196
## 3843 4 5134 0.07791196
## 3844 4 5134 0.07791196
## 3845 4 5134 0.07791196
## 3846 4 5134 0.07791196
## 3847 4 5134 0.07791196
## 3848 4 5134 0.07791196
## 3849 4 5134 0.07791196
## 3850 4 5134 0.07791196
## 3851 4 5134 0.07791196
## 3852 4 5134 0.07791196
## 3853 4 5134 0.07791196
## 3854 4 5134 0.07791196
## 3855 4 5134 0.07791196
## 3856 4 5134 0.07791196
## 3857 4 5134 0.07791196
## 3858 4 5134 0.07791196
## 3859 4 5134 0.07791196
## 3860 4 5134 0.07791196
## 3861 4 5134 0.07791196
## 3862 4 5134 0.07791196
## 3863 4 5134 0.07791196
## 3864 4 5134 0.07791196
## 3865 4 5134 0.07791196
## 3866 4 5134 0.07791196
## 3867 4 5134 0.07791196
## 3868 4 5134 0.07791196
## 3869 4 5134 0.07791196
## 3870 4 5134 0.07791196
## 3871 4 5134 0.07791196
## 3872 4 5134 0.07791196
## 3873 4 5134 0.07791196
## 3874 4 5134 0.07791196
## 3875 4 5134 0.07791196
## 3876 4 5134 0.07791196
## 3877 4 5134 0.07791196
## 3878 4 5134 0.07791196
## 3879 4 5134 0.07791196
## 3880 4 5134 0.07791196
## 3881 4 5134 0.07791196
## 3882 4 5134 0.07791196
## 3883 4 5134 0.07791196
## 3884 4 5134 0.07791196
## 3885 4 5134 0.07791196
## 3886 4 5134 0.07791196
## 3887 4 5134 0.07791196
## 3888 4 5134 0.07791196
## 3889 4 5134 0.07791196
## 3890 4 5134 0.07791196
## 3891 4 5134 0.07791196
## 3892 4 5134 0.07791196
## 3893 4 5134 0.07791196
## 3894 4 5134 0.07791196
## 3895 4 5134 0.07791196
## 3896 4 5134 0.07791196
## 3897 4 5134 0.07791196
## 3898 4 5134 0.07791196
## 3899 4 5134 0.07791196
## 3900 4 5134 0.07791196
## 3901 4 5134 0.07791196
## 3902 4 5134 0.07791196
## 3903 4 5134 0.07791196
## 3904 4 5134 0.07791196
## 3905 4 5134 0.07791196
## 3906 4 5134 0.07791196
## 3907 4 5134 0.07791196
## 3908 4 5134 0.07791196
## 3909 4 5134 0.07791196
## 3910 4 5134 0.07791196
## 3911 4 5134 0.07791196
## 3912 4 5134 0.07791196
## 3913 4 5134 0.07791196
## 3914 4 5134 0.07791196
## 3915 4 5134 0.07791196
## 3916 4 5134 0.07791196
## 3917 4 5134 0.07791196
## 3918 4 5134 0.07791196
## 3919 4 5134 0.07791196
## 3920 4 5134 0.07791196
## 3921 4 5134 0.07791196
## 3922 4 5134 0.07791196
## 3923 4 5134 0.07791196
## 3924 4 5134 0.07791196
## 3925 4 5134 0.07791196
## 3926 4 5134 0.07791196
## 3927 4 5134 0.07791196
## 3928 4 5134 0.07791196
## 3929 4 5134 0.07791196
## 3930 4 5134 0.07791196
## 3931 4 5134 0.07791196
## 3932 4 5134 0.07791196
## 3933 4 5134 0.07791196
## 3934 4 5134 0.07791196
## 3935 4 5134 0.07791196
## 3936 4 5134 0.07791196
## 3937 4 5134 0.07791196
## 3938 4 5134 0.07791196
## 3939 4 5134 0.07791196
## 3940 4 5134 0.07791196
## 3941 4 5134 0.07791196
## 3942 4 5134 0.07791196
## 3943 4 5134 0.07791196
## 3944 4 5134 0.07791196
## 3945 4 5134 0.07791196
## 3946 4 5134 0.07791196
## 3947 4 5134 0.07791196
## 3948 4 5134 0.07791196
## 3949 4 5134 0.07791196
## 3950 4 5134 0.07791196
## 3951 4 5134 0.07791196
## 3952 4 5134 0.07791196
## 3953 4 5134 0.07791196
## 3954 4 5134 0.07791196
## 3955 4 5134 0.07791196
## 3956 4 5134 0.07791196
## 3957 4 5134 0.07791196
## 3958 4 5134 0.07791196
## 3959 4 5134 0.07791196
## 3960 4 5134 0.07791196
## 3961 4 5134 0.07791196
## 3962 4 5134 0.07791196
## 3963 4 5134 0.07791196
## 3964 4 5134 0.07791196
## 3965 4 5134 0.07791196
## 3966 4 5134 0.07791196
## 3967 4 5134 0.07791196
## 3968 4 5134 0.07791196
## 3969 4 5134 0.07791196
## 3970 4 5134 0.07791196
## 3971 4 5134 0.07791196
## 3972 4 5134 0.07791196
## 3973 4 5134 0.07791196
## 3974 4 5134 0.07791196
## 3975 4 5134 0.07791196
## 3976 4 5134 0.07791196
## 3977 4 5134 0.07791196
## 3978 4 5134 0.07791196
## 3979 4 5134 0.07791196
## 3980 4 5134 0.07791196
## 3981 4 5134 0.07791196
## 3982 4 5134 0.07791196
## 3983 4 5134 0.07791196
## 3984 4 5134 0.07791196
## 3985 4 5134 0.07791196
## 3986 4 5134 0.07791196
## 3987 4 5134 0.07791196
## 3988 4 5134 0.07791196
## 3989 4 5134 0.07791196
## 3990 4 5134 0.07791196
## 3991 4 5134 0.07791196
## 3992 4 5134 0.07791196
## 3993 4 5134 0.07791196
## 3994 4 5134 0.07791196
## 3995 4 5134 0.07791196
## 3996 4 5134 0.07791196
## 3997 4 5134 0.07791196
## 3998 4 5134 0.07791196
## 3999 4 5134 0.07791196
## 4000 4 5134 0.07791196
## 4001 4 5134 0.07791196
## 4002 4 5134 0.07791196
## 4003 4 5134 0.07791196
## 4004 4 5134 0.07791196
## 4005 4 5134 0.07791196
## 4006 4 5134 0.07791196
## 4007 4 5134 0.07791196
## 4008 4 5134 0.07791196
## 4009 4 5134 0.07791196
## 4010 4 5134 0.07791196
## 4011 4 5134 0.07791196
## 4012 4 5134 0.07791196
## 4013 4 5134 0.07791196
## 4014 4 5134 0.07791196
## 4015 4 5134 0.07791196
## 4016 4 5134 0.07791196
## 4017 4 5134 0.07791196
## 4018 4 5134 0.07791196
## 4019 4 5134 0.07791196
## 4020 4 5134 0.07791196
## 4021 4 5134 0.07791196
## 4022 4 5134 0.07791196
## 4023 4 5134 0.07791196
## 4024 4 5134 0.07791196
## 4025 4 5134 0.07791196
## 4026 4 5134 0.07791196
## 4027 4 5134 0.07791196
## 4028 4 5134 0.07791196
## 4029 4 5134 0.07791196
## 4030 4 5134 0.07791196
## 4031 4 5134 0.07791196
## 4032 4 5134 0.07791196
## 4033 4 5134 0.07791196
## 4034 4 5134 0.07791196
## 4035 4 5134 0.07791196
## 4036 4 5134 0.07791196
## 4037 4 5134 0.07791196
## 4038 4 5134 0.07791196
## 4039 4 5134 0.07791196
## 4040 4 5134 0.07791196
## 4041 4 5134 0.07791196
## 4042 4 5134 0.07791196
## 4043 4 5134 0.07791196
## 4044 4 5134 0.07791196
## 4045 4 5134 0.07791196
## 4046 4 5134 0.07791196
## 4047 4 5134 0.07791196
## 4048 4 5134 0.07791196
## 4049 4 5134 0.07791196
## 4050 4 5134 0.07791196
## 4051 4 5134 0.07791196
## 4052 4 5134 0.07791196
## 4053 4 5134 0.07791196
## 4054 4 5134 0.07791196
## 4055 4 5134 0.07791196
## 4056 4 5134 0.07791196
## 4057 4 5134 0.07791196
## 4058 4 5134 0.07791196
## 4059 4 5134 0.07791196
## 4060 4 5134 0.07791196
## 4061 4 5134 0.07791196
## 4062 4 5134 0.07791196
## 4063 4 5134 0.07791196
## 4064 4 5134 0.07791196
## 4065 4 5134 0.07791196
## 4066 4 5134 0.07791196
## 4067 4 5134 0.07791196
## 4068 4 5134 0.07791196
## 4069 4 5134 0.07791196
## 4070 4 5134 0.07791196
## 4071 4 5134 0.07791196
## 4072 4 5134 0.07791196
## 4073 4 5134 0.07791196
## 4074 4 5134 0.07791196
## 4075 4 5134 0.07791196
## 4076 4 5134 0.07791196
## 4077 4 5134 0.07791196
## 4078 4 5134 0.07791196
## 4079 4 5134 0.07791196
## 4080 4 5134 0.07791196
## 4081 4 5134 0.07791196
## 4082 4 5134 0.07791196
## 4083 4 5134 0.07791196
## 4084 4 5134 0.07791196
## 4085 4 5134 0.07791196
## 4086 4 5134 0.07791196
## 4087 4 5134 0.07791196
## 4088 4 5134 0.07791196
## 4089 4 5134 0.07791196
## 4090 4 5134 0.07791196
## 4091 4 5134 0.07791196
## 4092 4 5134 0.07791196
## 4093 4 5134 0.07791196
## 4094 4 5134 0.07791196
## 4095 4 5134 0.07791196
## 4096 4 5134 0.07791196
## 4097 4 5134 0.07791196
## 4098 4 5134 0.07791196
## 4099 4 5134 0.07791196
## 4100 4 5134 0.07791196
## 4101 4 5134 0.07791196
## 4102 4 5134 0.07791196
## 4103 4 5134 0.07791196
## 4104 4 5134 0.07791196
## 4105 4 5134 0.07791196
## 4106 4 5134 0.07791196
## 4107 4 5134 0.07791196
## 4108 4 5134 0.07791196
## 4109 4 5134 0.07791196
## 4110 4 5134 0.07791196
## 4111 4 5134 0.07791196
## 4112 4 5134 0.07791196
## 4113 4 5134 0.07791196
## 4114 3 5134 0.05843397
## 4115 3 5134 0.05843397
## 4116 3 5134 0.05843397
## 4117 3 5134 0.05843397
## 4118 3 5134 0.05843397
## 4119 3 5134 0.05843397
## 4120 3 5134 0.05843397
## 4121 3 5134 0.05843397
## 4122 3 5134 0.05843397
## 4123 3 5134 0.05843397
## 4124 3 5134 0.05843397
## 4125 3 5134 0.05843397
## 4126 3 5134 0.05843397
## 4127 3 5134 0.05843397
## 4128 3 5134 0.05843397
## 4129 3 5134 0.05843397
## 4130 3 5134 0.05843397
## 4131 3 5134 0.05843397
## 4132 3 5134 0.05843397
## 4133 3 5134 0.05843397
## 4134 3 5134 0.05843397
## 4135 3 5134 0.05843397
## 4136 3 5134 0.05843397
## 4137 3 5134 0.05843397
## 4138 3 5134 0.05843397
## 4139 3 5134 0.05843397
## 4140 3 5134 0.05843397
## 4141 3 5134 0.05843397
## 4142 3 5134 0.05843397
## 4143 3 5134 0.05843397
## 4144 3 5134 0.05843397
## 4145 3 5134 0.05843397
## 4146 3 5134 0.05843397
## 4147 3 5134 0.05843397
## 4148 3 5134 0.05843397
## 4149 3 5134 0.05843397
## 4150 3 5134 0.05843397
## 4151 3 5134 0.05843397
## 4152 3 5134 0.05843397
## 4153 3 5134 0.05843397
## 4154 3 5134 0.05843397
## 4155 3 5134 0.05843397
## 4156 3 5134 0.05843397
## 4157 3 5134 0.05843397
## 4158 3 5134 0.05843397
## 4159 3 5134 0.05843397
## 4160 3 5134 0.05843397
## 4161 3 5134 0.05843397
## 4162 3 5134 0.05843397
## 4163 3 5134 0.05843397
## 4164 3 5134 0.05843397
## 4165 3 5134 0.05843397
## 4166 3 5134 0.05843397
## 4167 3 5134 0.05843397
## 4168 3 5134 0.05843397
## 4169 3 5134 0.05843397
## 4170 3 5134 0.05843397
## 4171 3 5134 0.05843397
## 4172 3 5134 0.05843397
## 4173 3 5134 0.05843397
## 4174 3 5134 0.05843397
## 4175 3 5134 0.05843397
## 4176 3 5134 0.05843397
## 4177 3 5134 0.05843397
## 4178 3 5134 0.05843397
## 4179 3 5134 0.05843397
## 4180 3 5134 0.05843397
## 4181 3 5134 0.05843397
## 4182 3 5134 0.05843397
## 4183 3 5134 0.05843397
## 4184 3 5134 0.05843397
## 4185 3 5134 0.05843397
## 4186 3 5134 0.05843397
## 4187 3 5134 0.05843397
## 4188 3 5134 0.05843397
## 4189 3 5134 0.05843397
## 4190 3 5134 0.05843397
## 4191 3 5134 0.05843397
## 4192 3 5134 0.05843397
## 4193 3 5134 0.05843397
## 4194 3 5134 0.05843397
## 4195 3 5134 0.05843397
## 4196 3 5134 0.05843397
## 4197 3 5134 0.05843397
## 4198 3 5134 0.05843397
## 4199 3 5134 0.05843397
## 4200 3 5134 0.05843397
## 4201 3 5134 0.05843397
## 4202 3 5134 0.05843397
## 4203 3 5134 0.05843397
## 4204 3 5134 0.05843397
## 4205 3 5134 0.05843397
## 4206 3 5134 0.05843397
## 4207 3 5134 0.05843397
## 4208 3 5134 0.05843397
## 4209 3 5134 0.05843397
## 4210 3 5134 0.05843397
## 4211 3 5134 0.05843397
## 4212 3 5134 0.05843397
## 4213 3 5134 0.05843397
## 4214 3 5134 0.05843397
## 4215 3 5134 0.05843397
## 4216 3 5134 0.05843397
## 4217 3 5134 0.05843397
## 4218 3 5134 0.05843397
## 4219 3 5134 0.05843397
## 4220 3 5134 0.05843397
## 4221 3 5134 0.05843397
## 4222 3 5134 0.05843397
## 4223 3 5134 0.05843397
## 4224 3 5134 0.05843397
## 4225 3 5134 0.05843397
## 4226 3 5134 0.05843397
## 4227 3 5134 0.05843397
## 4228 3 5134 0.05843397
## 4229 3 5134 0.05843397
## 4230 3 5134 0.05843397
## 4231 3 5134 0.05843397
## 4232 3 5134 0.05843397
## 4233 3 5134 0.05843397
## 4234 3 5134 0.05843397
## 4235 3 5134 0.05843397
## 4236 3 5134 0.05843397
## 4237 3 5134 0.05843397
## 4238 3 5134 0.05843397
## 4239 3 5134 0.05843397
## 4240 3 5134 0.05843397
## 4241 3 5134 0.05843397
## 4242 3 5134 0.05843397
## 4243 3 5134 0.05843397
## 4244 3 5134 0.05843397
## 4245 3 5134 0.05843397
## 4246 3 5134 0.05843397
## 4247 3 5134 0.05843397
## 4248 3 5134 0.05843397
## 4249 3 5134 0.05843397
## 4250 3 5134 0.05843397
## 4251 3 5134 0.05843397
## 4252 3 5134 0.05843397
## 4253 3 5134 0.05843397
## 4254 3 5134 0.05843397
## 4255 3 5134 0.05843397
## 4256 3 5134 0.05843397
## 4257 3 5134 0.05843397
## 4258 3 5134 0.05843397
## 4259 3 5134 0.05843397
## 4260 3 5134 0.05843397
## 4261 3 5134 0.05843397
## 4262 3 5134 0.05843397
## 4263 3 5134 0.05843397
## 4264 3 5134 0.05843397
## 4265 3 5134 0.05843397
## 4266 3 5134 0.05843397
## 4267 3 5134 0.05843397
## 4268 3 5134 0.05843397
## 4269 3 5134 0.05843397
## 4270 3 5134 0.05843397
## 4271 3 5134 0.05843397
## 4272 3 5134 0.05843397
## 4273 3 5134 0.05843397
## 4274 3 5134 0.05843397
## 4275 3 5134 0.05843397
## 4276 3 5134 0.05843397
## 4277 3 5134 0.05843397
## 4278 3 5134 0.05843397
## 4279 3 5134 0.05843397
## 4280 3 5134 0.05843397
## 4281 3 5134 0.05843397
## 4282 3 5134 0.05843397
## 4283 3 5134 0.05843397
## 4284 3 5134 0.05843397
## 4285 3 5134 0.05843397
## 4286 3 5134 0.05843397
## 4287 3 5134 0.05843397
## 4288 3 5134 0.05843397
## 4289 3 5134 0.05843397
## 4290 3 5134 0.05843397
## 4291 3 5134 0.05843397
## 4292 3 5134 0.05843397
## 4293 3 5134 0.05843397
## 4294 3 5134 0.05843397
## 4295 3 5134 0.05843397
## 4296 3 5134 0.05843397
## 4297 3 5134 0.05843397
## 4298 3 5134 0.05843397
## 4299 3 5134 0.05843397
## 4300 3 5134 0.05843397
## 4301 3 5134 0.05843397
## 4302 3 5134 0.05843397
## 4303 3 5134 0.05843397
## 4304 3 5134 0.05843397
## 4305 3 5134 0.05843397
## 4306 3 5134 0.05843397
## 4307 3 5134 0.05843397
## 4308 3 5134 0.05843397
## 4309 3 5134 0.05843397
## 4310 3 5134 0.05843397
## 4311 3 5134 0.05843397
## 4312 3 5134 0.05843397
## 4313 3 5134 0.05843397
## 4314 3 5134 0.05843397
## 4315 3 5134 0.05843397
## 4316 3 5134 0.05843397
## 4317 3 5134 0.05843397
## 4318 3 5134 0.05843397
## 4319 3 5134 0.05843397
## 4320 3 5134 0.05843397
## 4321 3 5134 0.05843397
## 4322 3 5134 0.05843397
## 4323 3 5134 0.05843397
## 4324 3 5134 0.05843397
## 4325 3 5134 0.05843397
## 4326 3 5134 0.05843397
## 4327 3 5134 0.05843397
## 4328 3 5134 0.05843397
## 4329 3 5134 0.05843397
## 4330 3 5134 0.05843397
## 4331 3 5134 0.05843397
## 4332 3 5134 0.05843397
## 4333 3 5134 0.05843397
## 4334 3 5134 0.05843397
## 4335 3 5134 0.05843397
## 4336 3 5134 0.05843397
## 4337 3 5134 0.05843397
## 4338 3 5134 0.05843397
## 4339 3 5134 0.05843397
## 4340 3 5134 0.05843397
## 4341 3 5134 0.05843397
## 4342 3 5134 0.05843397
## 4343 3 5134 0.05843397
## 4344 3 5134 0.05843397
## 4345 3 5134 0.05843397
## 4346 3 5134 0.05843397
## 4347 3 5134 0.05843397
## 4348 3 5134 0.05843397
## 4349 3 5134 0.05843397
## 4350 3 5134 0.05843397
## 4351 3 5134 0.05843397
## 4352 3 5134 0.05843397
## 4353 3 5134 0.05843397
## 4354 3 5134 0.05843397
## 4355 3 5134 0.05843397
## 4356 3 5134 0.05843397
## 4357 3 5134 0.05843397
## 4358 3 5134 0.05843397
## 4359 3 5134 0.05843397
## 4360 3 5134 0.05843397
## 4361 3 5134 0.05843397
## 4362 3 5134 0.05843397
## 4363 3 5134 0.05843397
## 4364 3 5134 0.05843397
## 4365 3 5134 0.05843397
## 4366 3 5134 0.05843397
## 4367 3 5134 0.05843397
## 4368 3 5134 0.05843397
## 4369 3 5134 0.05843397
## 4370 3 5134 0.05843397
## 4371 3 5134 0.05843397
## 4372 3 5134 0.05843397
## 4373 3 5134 0.05843397
## 4374 3 5134 0.05843397
## 4375 3 5134 0.05843397
## 4376 3 5134 0.05843397
## 4377 3 5134 0.05843397
## 4378 3 5134 0.05843397
## 4379 3 5134 0.05843397
## 4380 3 5134 0.05843397
## 4381 3 5134 0.05843397
## 4382 3 5134 0.05843397
## 4383 3 5134 0.05843397
## 4384 3 5134 0.05843397
## 4385 3 5134 0.05843397
## 4386 3 5134 0.05843397
## 4387 3 5134 0.05843397
## 4388 3 5134 0.05843397
## 4389 3 5134 0.05843397
## 4390 3 5134 0.05843397
## 4391 3 5134 0.05843397
## 4392 3 5134 0.05843397
## 4393 3 5134 0.05843397
## 4394 3 5134 0.05843397
## 4395 3 5134 0.05843397
## 4396 3 5134 0.05843397
## 4397 3 5134 0.05843397
## 4398 3 5134 0.05843397
## 4399 3 5134 0.05843397
## 4400 3 5134 0.05843397
## 4401 3 5134 0.05843397
## 4402 3 5134 0.05843397
## 4403 3 5134 0.05843397
## 4404 3 5134 0.05843397
## 4405 3 5134 0.05843397
## 4406 3 5134 0.05843397
## 4407 3 5134 0.05843397
## 4408 3 5134 0.05843397
## 4409 3 5134 0.05843397
## 4410 3 5134 0.05843397
## 4411 3 5134 0.05843397
## 4412 3 5134 0.05843397
## 4413 3 5134 0.05843397
## 4414 3 5134 0.05843397
## 4415 3 5134 0.05843397
## 4416 3 5134 0.05843397
## 4417 3 5134 0.05843397
## 4418 3 5134 0.05843397
## 4419 3 5134 0.05843397
## 4420 3 5134 0.05843397
## 4421 3 5134 0.05843397
## 4422 3 5134 0.05843397
## 4423 3 5134 0.05843397
## 4424 3 5134 0.05843397
## 4425 3 5134 0.05843397
## 4426 3 5134 0.05843397
## 4427 3 5134 0.05843397
## 4428 3 5134 0.05843397
## 4429 3 5134 0.05843397
## 4430 3 5134 0.05843397
## 4431 3 5134 0.05843397
## 4432 3 5134 0.05843397
## 4433 3 5134 0.05843397
## 4434 3 5134 0.05843397
## 4435 3 5134 0.05843397
## 4436 3 5134 0.05843397
## 4437 3 5134 0.05843397
## 4438 3 5134 0.05843397
## 4439 3 5134 0.05843397
## 4440 3 5134 0.05843397
## 4441 3 5134 0.05843397
## 4442 3 5134 0.05843397
## 4443 3 5134 0.05843397
## 4444 3 5134 0.05843397
## 4445 3 5134 0.05843397
## 4446 3 5134 0.05843397
## 4447 3 5134 0.05843397
## 4448 3 5134 0.05843397
## 4449 3 5134 0.05843397
## 4450 3 5134 0.05843397
## 4451 3 5134 0.05843397
## 4452 3 5134 0.05843397
## 4453 3 5134 0.05843397
## 4454 3 5134 0.05843397
## 4455 3 5134 0.05843397
## 4456 3 5134 0.05843397
## 4457 3 5134 0.05843397
## 4458 3 5134 0.05843397
## 4459 3 5134 0.05843397
## 4460 3 5134 0.05843397
## 4461 3 5134 0.05843397
## 4462 3 5134 0.05843397
## 4463 3 5134 0.05843397
## 4464 3 5134 0.05843397
## 4465 3 5134 0.05843397
## 4466 3 5134 0.05843397
## 4467 3 5134 0.05843397
## 4468 3 5134 0.05843397
## 4469 3 5134 0.05843397
## 4470 3 5134 0.05843397
## 4471 3 5134 0.05843397
## 4472 3 5134 0.05843397
## 4473 3 5134 0.05843397
## 4474 3 5134 0.05843397
## 4475 3 5134 0.05843397
## 4476 3 5134 0.05843397
## 4477 3 5134 0.05843397
## 4478 3 5134 0.05843397
## 4479 3 5134 0.05843397
## 4480 3 5134 0.05843397
## 4481 3 5134 0.05843397
## 4482 3 5134 0.05843397
## 4483 3 5134 0.05843397
## 4484 3 5134 0.05843397
## 4485 3 5134 0.05843397
## 4486 3 5134 0.05843397
## 4487 3 5134 0.05843397
## 4488 3 5134 0.05843397
## 4489 3 5134 0.05843397
## 4490 3 5134 0.05843397
## 4491 3 5134 0.05843397
## 4492 3 5134 0.05843397
## 4493 3 5134 0.05843397
## 4494 3 5134 0.05843397
## 4495 3 5134 0.05843397
## 4496 3 5134 0.05843397
## 4497 3 5134 0.05843397
## 4498 3 5134 0.05843397
## 4499 3 5134 0.05843397
## 4500 3 5134 0.05843397
## 4501 3 5134 0.05843397
## 4502 3 5134 0.05843397
## 4503 3 5134 0.05843397
## 4504 3 5134 0.05843397
## 4505 3 5134 0.05843397
## 4506 3 5134 0.05843397
## 4507 3 5134 0.05843397
## 4508 3 5134 0.05843397
## 4509 3 5134 0.05843397
## 4510 3 5134 0.05843397
## 4511 3 5134 0.05843397
## 4512 3 5134 0.05843397
## 4513 3 5134 0.05843397
## 4514 3 5134 0.05843397
## 4515 3 5134 0.05843397
## 4516 3 5134 0.05843397
## 4517 3 5134 0.05843397
## 4518 3 5134 0.05843397
## 4519 3 5134 0.05843397
## 4520 3 5134 0.05843397
## 4521 3 5134 0.05843397
## 4522 3 5134 0.05843397
## 4523 3 5134 0.05843397
## 4524 3 5134 0.05843397
## 4525 3 5134 0.05843397
## 4526 3 5134 0.05843397
## 4527 3 5134 0.05843397
## 4528 3 5134 0.05843397
## 4529 3 5134 0.05843397
## 4530 3 5134 0.05843397
## 4531 3 5134 0.05843397
## 4532 3 5134 0.05843397
## 4533 3 5134 0.05843397
## 4534 3 5134 0.05843397
## 4535 3 5134 0.05843397
## 4536 3 5134 0.05843397
## 4537 3 5134 0.05843397
## 4538 3 5134 0.05843397
## 4539 3 5134 0.05843397
## 4540 3 5134 0.05843397
## 4541 3 5134 0.05843397
## 4542 3 5134 0.05843397
## 4543 3 5134 0.05843397
## 4544 3 5134 0.05843397
## 4545 3 5134 0.05843397
## 4546 3 5134 0.05843397
## 4547 3 5134 0.05843397
## 4548 3 5134 0.05843397
## 4549 3 5134 0.05843397
## 4550 3 5134 0.05843397
## 4551 3 5134 0.05843397
## 4552 3 5134 0.05843397
## 4553 3 5134 0.05843397
## 4554 3 5134 0.05843397
## 4555 3 5134 0.05843397
## 4556 3 5134 0.05843397
## 4557 3 5134 0.05843397
## 4558 3 5134 0.05843397
## 4559 3 5134 0.05843397
## 4560 3 5134 0.05843397
## 4561 3 5134 0.05843397
## 4562 3 5134 0.05843397
## 4563 3 5134 0.05843397
## 4564 3 5134 0.05843397
## 4565 3 5134 0.05843397
## 4566 3 5134 0.05843397
## 4567 3 5134 0.05843397
## 4568 3 5134 0.05843397
## 4569 3 5134 0.05843397
## 4570 3 5134 0.05843397
## 4571 3 5134 0.05843397
## 4572 3 5134 0.05843397
## 4573 3 5134 0.05843397
## 4574 3 5134 0.05843397
## 4575 3 5134 0.05843397
## 4576 3 5134 0.05843397
## 4577 3 5134 0.05843397
## 4578 3 5134 0.05843397
## 4579 3 5134 0.05843397
## 4580 3 5134 0.05843397
## 4581 3 5134 0.05843397
## 4582 3 5134 0.05843397
## 4583 3 5134 0.05843397
## 4584 3 5134 0.05843397
## 4585 3 5134 0.05843397
## 4586 3 5134 0.05843397
## 4587 3 5134 0.05843397
## 4588 3 5134 0.05843397
## 4589 3 5134 0.05843397
## 4590 3 5134 0.05843397
## 4591 3 5134 0.05843397
## 4592 3 5134 0.05843397
## 4593 3 5134 0.05843397
## 4594 3 5134 0.05843397
## 4595 3 5134 0.05843397
## 4596 3 5134 0.05843397
## 4597 3 5134 0.05843397
## 4598 3 5134 0.05843397
## 4599 3 5134 0.05843397
## 4600 3 5134 0.05843397
## 4601 3 5134 0.05843397
## 4602 3 5134 0.05843397
## 4603 3 5134 0.05843397
## 4604 3 5134 0.05843397
## 4605 3 5134 0.05843397
## 4606 3 5134 0.05843397
## 4607 3 5134 0.05843397
## 4608 3 5134 0.05843397
## 4609 3 5134 0.05843397
## 4610 3 5134 0.05843397
## 4611 3 5134 0.05843397
## 4612 3 5134 0.05843397
## 4613 3 5134 0.05843397
## 4614 3 5134 0.05843397
## 4615 3 5134 0.05843397
## 4616 3 5134 0.05843397
## 4617 3 5134 0.05843397
## 4618 3 5134 0.05843397
## 4619 3 5134 0.05843397
## 4620 3 5134 0.05843397
## 4621 3 5134 0.05843397
## 4622 3 5134 0.05843397
## 4623 3 5134 0.05843397
## 4624 3 5134 0.05843397
## 4625 3 5134 0.05843397
## 4626 3 5134 0.05843397
## 4627 3 5134 0.05843397
## 4628 3 5134 0.05843397
## 4629 3 5134 0.05843397
## 4630 3 5134 0.05843397
## 4631 3 5134 0.05843397
## 4632 3 5134 0.05843397
## 4633 3 5134 0.05843397
## 4634 3 5134 0.05843397
## 4635 3 5134 0.05843397
## 4636 3 5134 0.05843397
## 4637 3 5134 0.05843397
## 4638 3 5134 0.05843397
## 4639 3 5134 0.05843397
## 4640 3 5134 0.05843397
## 4641 3 5134 0.05843397
## 4642 3 5134 0.05843397
## 4643 3 5134 0.05843397
## 4644 3 5134 0.05843397
## 4645 3 5134 0.05843397
## 4646 3 5134 0.05843397
## 4647 3 5134 0.05843397
## 4648 3 5134 0.05843397
## 4649 3 5134 0.05843397
## 4650 3 5134 0.05843397
## 4651 3 5134 0.05843397
## 4652 3 5134 0.05843397
## 4653 3 5134 0.05843397
## 4654 3 5134 0.05843397
## 4655 3 5134 0.05843397
## 4656 3 5134 0.05843397
## 4657 3 5134 0.05843397
## 4658 3 5134 0.05843397
## 4659 3 5134 0.05843397
## 4660 3 5134 0.05843397
## 4661 3 5134 0.05843397
## 4662 3 5134 0.05843397
## 4663 3 5134 0.05843397
## 4664 3 5134 0.05843397
## 4665 3 5134 0.05843397
## 4666 3 5134 0.05843397
## 4667 3 5134 0.05843397
## 4668 3 5134 0.05843397
## 4669 3 5134 0.05843397
## 4670 3 5134 0.05843397
## 4671 3 5134 0.05843397
## 4672 3 5134 0.05843397
## 4673 3 5134 0.05843397
## 4674 3 5134 0.05843397
## 4675 3 5134 0.05843397
## 4676 3 5134 0.05843397
## 4677 3 5134 0.05843397
## 4678 3 5134 0.05843397
## 4679 3 5134 0.05843397
## 4680 3 5134 0.05843397
## 4681 3 5134 0.05843397
## 4682 3 5134 0.05843397
## 4683 3 5134 0.05843397
## 4684 3 5134 0.05843397
## 4685 3 5134 0.05843397
## 4686 3 5134 0.05843397
## 4687 3 5134 0.05843397
## 4688 3 5134 0.05843397
## 4689 3 5134 0.05843397
## 4690 3 5134 0.05843397
## 4691 3 5134 0.05843397
## 4692 3 5134 0.05843397
## 4693 3 5134 0.05843397
## 4694 3 5134 0.05843397
## 4695 3 5134 0.05843397
## 4696 3 5134 0.05843397
## 4697 3 5134 0.05843397
## 4698 3 5134 0.05843397
## 4699 3 5134 0.05843397
## 4700 3 5134 0.05843397
## 4701 3 5134 0.05843397
## 4702 3 5134 0.05843397
## 4703 3 5134 0.05843397
## 4704 3 5134 0.05843397
## 4705 3 5134 0.05843397
## 4706 3 5134 0.05843397
## 4707 3 5134 0.05843397
## 4708 3 5134 0.05843397
## 4709 3 5134 0.05843397
## 4710 3 5134 0.05843397
## 4711 3 5134 0.05843397
## 4712 3 5134 0.05843397
## 4713 3 5134 0.05843397
## 4714 3 5134 0.05843397
## 4715 3 5134 0.05843397
## 4716 3 5134 0.05843397
## 4717 3 5134 0.05843397
## 4718 3 5134 0.05843397
## 4719 3 5134 0.05843397
## 4720 3 5134 0.05843397
## 4721 3 5134 0.05843397
## 4722 3 5134 0.05843397
## 4723 3 5134 0.05843397
## 4724 3 5134 0.05843397
## 4725 3 5134 0.05843397
## 4726 3 5134 0.05843397
## 4727 3 5134 0.05843397
## 4728 3 5134 0.05843397
## 4729 3 5134 0.05843397
## 4730 3 5134 0.05843397
## 4731 3 5134 0.05843397
## 4732 3 5134 0.05843397
## 4733 3 5134 0.05843397
## 4734 3 5134 0.05843397
## 4735 3 5134 0.05843397
## 4736 3 5134 0.05843397
## 4737 3 5134 0.05843397
## 4738 3 5134 0.05843397
## 4739 3 5134 0.05843397
## 4740 3 5134 0.05843397
## 4741 3 5134 0.05843397
## 4742 3 5134 0.05843397
## 4743 3 5134 0.05843397
## 4744 3 5134 0.05843397
## 4745 3 5134 0.05843397
## 4746 3 5134 0.05843397
## 4747 3 5134 0.05843397
## 4748 3 5134 0.05843397
## 4749 3 5134 0.05843397
## 4750 3 5134 0.05843397
## 4751 3 5134 0.05843397
## 4752 3 5134 0.05843397
## 4753 3 5134 0.05843397
## 4754 3 5134 0.05843397
## 4755 3 5134 0.05843397
## 4756 3 5134 0.05843397
## 4757 3 5134 0.05843397
## 4758 3 5134 0.05843397
## 4759 3 5134 0.05843397
## 4760 3 5134 0.05843397
## 4761 3 5134 0.05843397
## 4762 3 5134 0.05843397
## 4763 3 5134 0.05843397
## 4764 3 5134 0.05843397
## 4765 3 5134 0.05843397
## 4766 3 5134 0.05843397
## 4767 3 5134 0.05843397
## 4768 3 5134 0.05843397
## 4769 3 5134 0.05843397
## 4770 3 5134 0.05843397
## 4771 3 5134 0.05843397
## 4772 3 5134 0.05843397
## 4773 3 5134 0.05843397
## 4774 3 5134 0.05843397
## 4775 3 5134 0.05843397
## 4776 3 5134 0.05843397
## 4777 3 5134 0.05843397
## 4778 3 5134 0.05843397
## 4779 3 5134 0.05843397
## 4780 3 5134 0.05843397
## 4781 3 5134 0.05843397
## 4782 3 5134 0.05843397
## 4783 3 5134 0.05843397
## 4784 3 5134 0.05843397
## 4785 3 5134 0.05843397
## 4786 3 5134 0.05843397
## 4787 3 5134 0.05843397
## 4788 3 5134 0.05843397
## 4789 3 5134 0.05843397
## 4790 3 5134 0.05843397
## 4791 3 5134 0.05843397
## 4792 3 5134 0.05843397
## 4793 3 5134 0.05843397
## 4794 3 5134 0.05843397
## 4795 3 5134 0.05843397
## 4796 3 5134 0.05843397
## 4797 3 5134 0.05843397
## 4798 3 5134 0.05843397
## 4799 3 5134 0.05843397
## 4800 3 5134 0.05843397
## 4801 3 5134 0.05843397
## 4802 3 5134 0.05843397
## 4803 3 5134 0.05843397
## 4804 3 5134 0.05843397
## 4805 3 5134 0.05843397
## 4806 3 5134 0.05843397
## 4807 3 5134 0.05843397
## 4808 3 5134 0.05843397
## 4809 3 5134 0.05843397
## 4810 3 5134 0.05843397
## 4811 3 5134 0.05843397
## 4812 3 5134 0.05843397
## 4813 3 5134 0.05843397
## 4814 3 5134 0.05843397
## 4815 3 5134 0.05843397
## 4816 3 5134 0.05843397
## 4817 3 5134 0.05843397
## 4818 3 5134 0.05843397
## 4819 3 5134 0.05843397
## 4820 3 5134 0.05843397
## 4821 3 5134 0.05843397
## 4822 3 5134 0.05843397
## 4823 3 5134 0.05843397
## 4824 3 5134 0.05843397
## 4825 3 5134 0.05843397
## 4826 3 5134 0.05843397
## 4827 3 5134 0.05843397
## 4828 3 5134 0.05843397
## 4829 3 5134 0.05843397
## 4830 3 5134 0.05843397
## 4831 3 5134 0.05843397
## 4832 3 5134 0.05843397
## 4833 3 5134 0.05843397
## 4834 3 5134 0.05843397
## 4835 3 5134 0.05843397
## 4836 3 5134 0.05843397
## 4837 3 5134 0.05843397
## 4838 3 5134 0.05843397
## 4839 3 5134 0.05843397
## 4840 3 5134 0.05843397
## 4841 3 5134 0.05843397
## 4842 3 5134 0.05843397
## 4843 3 5134 0.05843397
## 4844 3 5134 0.05843397
## 4845 3 5134 0.05843397
## 4846 3 5134 0.05843397
## 4847 3 5134 0.05843397
## 4848 3 5134 0.05843397
## 4849 3 5134 0.05843397
## 4850 3 5134 0.05843397
## 4851 3 5134 0.05843397
## 4852 3 5134 0.05843397
## 4853 3 5134 0.05843397
## 4854 3 5134 0.05843397
## 4855 3 5134 0.05843397
## 4856 3 5134 0.05843397
## 4857 3 5134 0.05843397
## 4858 3 5134 0.05843397
## 4859 3 5134 0.05843397
## 4860 3 5134 0.05843397
## 4861 3 5134 0.05843397
## 4862 3 5134 0.05843397
## 4863 3 5134 0.05843397
## 4864 3 5134 0.05843397
## 4865 3 5134 0.05843397
## 4866 3 5134 0.05843397
## 4867 3 5134 0.05843397
## 4868 3 5134 0.05843397
## 4869 3 5134 0.05843397
## 4870 3 5134 0.05843397
## 4871 3 5134 0.05843397
## 4872 3 5134 0.05843397
## 4873 3 5134 0.05843397
## 4874 3 5134 0.05843397
## 4875 3 5134 0.05843397
## 4876 3 5134 0.05843397
## 4877 3 5134 0.05843397
## 4878 3 5134 0.05843397
## 4879 3 5134 0.05843397
## 4880 3 5134 0.05843397
## 4881 3 5134 0.05843397
## 4882 3 5134 0.05843397
## 4883 3 5134 0.05843397
## 4884 3 5134 0.05843397
## 4885 3 5134 0.05843397
## 4886 3 5134 0.05843397
## 4887 3 5134 0.05843397
## 4888 3 5134 0.05843397
## 4889 3 5134 0.05843397
## 4890 3 5134 0.05843397
## 4891 3 5134 0.05843397
## 4892 3 5134 0.05843397
## 4893 3 5134 0.05843397
## 4894 3 5134 0.05843397
## 4895 3 5134 0.05843397
## 4896 3 5134 0.05843397
## 4897 3 5134 0.05843397
## 4898 3 5134 0.05843397
## 4899 3 5134 0.05843397
## 4900 3 5134 0.05843397
## 4901 3 5134 0.05843397
## 4902 3 5134 0.05843397
## 4903 3 5134 0.05843397
## 4904 3 5134 0.05843397
## 4905 3 5134 0.05843397
## 4906 3 5134 0.05843397
## 4907 3 5134 0.05843397
## 4908 3 5134 0.05843397
## 4909 3 5134 0.05843397
## 4910 3 5134 0.05843397
## 4911 3 5134 0.05843397
## 4912 3 5134 0.05843397
## 4913 3 5134 0.05843397
## 4914 3 5134 0.05843397
## 4915 3 5134 0.05843397
## 4916 3 5134 0.05843397
## 4917 3 5134 0.05843397
## 4918 3 5134 0.05843397
## 4919 3 5134 0.05843397
## 4920 3 5134 0.05843397
## 4921 3 5134 0.05843397
## 4922 3 5134 0.05843397
## 4923 3 5134 0.05843397
## 4924 3 5134 0.05843397
## 4925 3 5134 0.05843397
## 4926 3 5134 0.05843397
## 4927 3 5134 0.05843397
## 4928 3 5134 0.05843397
## 4929 3 5134 0.05843397
## 4930 3 5134 0.05843397
## 4931 3 5134 0.05843397
## 4932 3 5134 0.05843397
## 4933 3 5134 0.05843397
## 4934 3 5134 0.05843397
## 4935 3 5134 0.05843397
## 4936 3 5134 0.05843397
## 4937 3 5134 0.05843397
## 4938 3 5134 0.05843397
## 4939 3 5134 0.05843397
## 4940 3 5134 0.05843397
## 4941 3 5134 0.05843397
## 4942 3 5134 0.05843397
## 4943 3 5134 0.05843397
## 4944 3 5134 0.05843397
## 4945 3 5134 0.05843397
## 4946 3 5134 0.05843397
## 4947 3 5134 0.05843397
## 4948 3 5134 0.05843397
## 4949 3 5134 0.05843397
## 4950 3 5134 0.05843397
## 4951 3 5134 0.05843397
## 4952 3 5134 0.05843397
## 4953 3 5134 0.05843397
## 4954 3 5134 0.05843397
## 4955 3 5134 0.05843397
## 4956 3 5134 0.05843397
## 4957 3 5134 0.05843397
## 4958 3 5134 0.05843397
## 4959 3 5134 0.05843397
## 4960 3 5134 0.05843397
## 4961 3 5134 0.05843397
## 4962 3 5134 0.05843397
## 4963 3 5134 0.05843397
## 4964 3 5134 0.05843397
## 4965 3 5134 0.05843397
## 4966 3 5134 0.05843397
## 4967 3 5134 0.05843397
## 4968 3 5134 0.05843397
## 4969 3 5134 0.05843397
## 4970 3 5134 0.05843397
## 4971 3 5134 0.05843397
## 4972 3 5134 0.05843397
## 4973 3 5134 0.05843397
## 4974 3 5134 0.05843397
## 4975 3 5134 0.05843397
## 4976 3 5134 0.05843397
## 4977 3 5134 0.05843397
## 4978 3 5134 0.05843397
## 4979 3 5134 0.05843397
## 4980 3 5134 0.05843397
## 4981 3 5134 0.05843397
## 4982 3 5134 0.05843397
## 4983 3 5134 0.05843397
## 4984 3 5134 0.05843397
## 4985 3 5134 0.05843397
## 4986 3 5134 0.05843397
## 4987 3 5134 0.05843397
## 4988 3 5134 0.05843397
## 4989 3 5134 0.05843397
## 4990 3 5134 0.05843397
## 4991 3 5134 0.05843397
## 4992 3 5134 0.05843397
## 4993 3 5134 0.05843397
## 4994 3 5134 0.05843397
## 4995 3 5134 0.05843397
## 4996 3 5134 0.05843397
## 4997 3 5134 0.05843397
## 4998 3 5134 0.05843397
## 4999 3 5134 0.05843397
## 5000 3 5134 0.05843397
## 5001 3 5134 0.05843397
## 5002 3 5134 0.05843397
## 5003 3 5134 0.05843397
## 5004 3 5134 0.05843397
## 5005 3 5134 0.05843397
## 5006 3 5134 0.05843397
## 5007 3 5134 0.05843397
## 5008 3 5134 0.05843397
## 5009 3 5134 0.05843397
## 5010 3 5134 0.05843397
## 5011 3 5134 0.05843397
## 5012 3 5134 0.05843397
## 5013 3 5134 0.05843397
## 5014 3 5134 0.05843397
## 5015 3 5134 0.05843397
## 5016 3 5134 0.05843397
## 5017 3 5134 0.05843397
## 5018 3 5134 0.05843397
## 5019 3 5134 0.05843397
## 5020 3 5134 0.05843397
## 5021 3 5134 0.05843397
## 5022 3 5134 0.05843397
## 5023 3 5134 0.05843397
## 5024 3 5134 0.05843397
## 5025 3 5134 0.05843397
## 5026 3 5134 0.05843397
## 5027 3 5134 0.05843397
## 5028 3 5134 0.05843397
## 5029 3 5134 0.05843397
## 5030 3 5134 0.05843397
## 5031 3 5134 0.05843397
## 5032 3 5134 0.05843397
## 5033 3 5134 0.05843397
## 5034 3 5134 0.05843397
## 5035 3 5134 0.05843397
## 5036 3 5134 0.05843397
## 5037 3 5134 0.05843397
## 5038 3 5134 0.05843397
## 5039 3 5134 0.05843397
## 5040 3 5134 0.05843397
## 5041 3 5134 0.05843397
## 5042 3 5134 0.05843397
## 5043 3 5134 0.05843397
## 5044 3 5134 0.05843397
## 5045 3 5134 0.05843397
## 5046 3 5134 0.05843397
## 5047 3 5134 0.05843397
## 5048 3 5134 0.05843397
## 5049 3 5134 0.05843397
## 5050 3 5134 0.05843397
## 5051 3 5134 0.05843397
## 5052 3 5134 0.05843397
## 5053 3 5134 0.05843397
## 5054 3 5134 0.05843397
## 5055 3 5134 0.05843397
## 5056 3 5134 0.05843397
## 5057 3 5134 0.05843397
## 5058 3 5134 0.05843397
## 5059 3 5134 0.05843397
## 5060 3 5134 0.05843397
## 5061 3 5134 0.05843397
## 5062 3 5134 0.05843397
## 5063 3 5134 0.05843397
## 5064 3 5134 0.05843397
## 5065 3 5134 0.05843397
## 5066 3 5134 0.05843397
## 5067 3 5134 0.05843397
## 5068 3 5134 0.05843397
## 5069 3 5134 0.05843397
## 5070 3 5134 0.05843397
## 5071 3 5134 0.05843397
## 5072 3 5134 0.05843397
## 5073 3 5134 0.05843397
## 5074 3 5134 0.05843397
## 5075 3 5134 0.05843397
## 5076 3 5134 0.05843397
## 5077 3 5134 0.05843397
## 5078 3 5134 0.05843397
## 5079 3 5134 0.05843397
## 5080 3 5134 0.05843397
## 5081 3 5134 0.05843397
## 5082 3 5134 0.05843397
## 5083 3 5134 0.05843397
## 5084 3 5134 0.05843397
## 5085 3 5134 0.05843397
## 5086 3 5134 0.05843397
## 5087 3 5134 0.05843397
## 5088 3 5134 0.05843397
## 5089 3 5134 0.05843397
## 5090 3 5134 0.05843397
## 5091 3 5134 0.05843397
## 5092 3 5134 0.05843397
## 5093 3 5134 0.05843397
## 5094 3 5134 0.05843397
## 5095 3 5134 0.05843397
## 5096 3 5134 0.05843397
## 5097 3 5134 0.05843397
## 5098 3 5134 0.05843397
## 5099 3 5134 0.05843397
## 5100 3 5134 0.05843397
## 5101 3 5134 0.05843397
## 5102 3 5134 0.05843397
## 5103 3 5134 0.05843397
## 5104 3 5134 0.05843397
## 5105 3 5134 0.05843397
## 5106 3 5134 0.05843397
## 5107 3 5134 0.05843397
## 5108 3 5134 0.05843397
## 5109 3 5134 0.05843397
## 5110 3 5134 0.05843397
## 5111 3 5134 0.05843397
## 5112 3 5134 0.05843397
## 5113 3 5134 0.05843397
## 5114 3 5134 0.05843397
## 5115 3 5134 0.05843397
## 5116 3 5134 0.05843397
## 5117 3 5134 0.05843397
## 5118 3 5134 0.05843397
## 5119 3 5134 0.05843397
## 5120 3 5134 0.05843397
## 5121 3 5134 0.05843397
## 5122 3 5134 0.05843397
## 5123 3 5134 0.05843397
## 5124 3 5134 0.05843397
## 5125 3 5134 0.05843397
## 5126 3 5134 0.05843397
## 5127 3 5134 0.05843397
## 5128 3 5134 0.05843397
## 5129 3 5134 0.05843397
## 5130 3 5134 0.05843397
## 5131 3 5134 0.05843397
## 5132 3 5134 0.05843397
## 5133 3 5134 0.05843397
## 5134 3 5134 0.05843397
## 5135 3 5134 0.05843397
## 5136 3 5134 0.05843397
## 5137 3 5134 0.05843397
## 5138 3 5134 0.05843397
## 5139 3 5134 0.05843397
## 5140 3 5134 0.05843397
## 5141 3 5134 0.05843397
## 5142 3 5134 0.05843397
## 5143 3 5134 0.05843397
## 5144 3 5134 0.05843397
## 5145 3 5134 0.05843397
## 5146 3 5134 0.05843397
## 5147 3 5134 0.05843397
## 5148 3 5134 0.05843397
## 5149 3 5134 0.05843397
## 5150 3 5134 0.05843397
## 5151 3 5134 0.05843397
## 5152 3 5134 0.05843397
## 5153 3 5134 0.05843397
## 5154 3 5134 0.05843397
## 5155 3 5134 0.05843397
## 5156 3 5134 0.05843397
## 5157 3 5134 0.05843397
## 5158 3 5134 0.05843397
## 5159 3 5134 0.05843397
## 5160 3 5134 0.05843397
## 5161 3 5134 0.05843397
## 5162 3 5134 0.05843397
## 5163 3 5134 0.05843397
## 5164 3 5134 0.05843397
## 5165 3 5134 0.05843397
## 5166 3 5134 0.05843397
## 5167 3 5134 0.05843397
## 5168 3 5134 0.05843397
## 5169 3 5134 0.05843397
## 5170 3 5134 0.05843397
## 5171 3 5134 0.05843397
## 5172 3 5134 0.05843397
## 5173 3 5134 0.05843397
## 5174 3 5134 0.05843397
## 5175 3 5134 0.05843397
## 5176 3 5134 0.05843397
## 5177 3 5134 0.05843397
## 5178 3 5134 0.05843397
## 5179 3 5134 0.05843397
## 5180 3 5134 0.05843397
## 5181 3 5134 0.05843397
## 5182 3 5134 0.05843397
## 5183 3 5134 0.05843397
## 5184 3 5134 0.05843397
## 5185 3 5134 0.05843397
## 5186 3 5134 0.05843397
## 5187 3 5134 0.05843397
## 5188 3 5134 0.05843397
## 5189 3 5134 0.05843397
## 5190 3 5134 0.05843397
## 5191 3 5134 0.05843397
## 5192 3 5134 0.05843397
## 5193 3 5134 0.05843397
## 5194 3 5134 0.05843397
## 5195 3 5134 0.05843397
## 5196 3 5134 0.05843397
## 5197 3 5134 0.05843397
## 5198 3 5134 0.05843397
## 5199 3 5134 0.05843397
## 5200 3 5134 0.05843397
## 5201 3 5134 0.05843397
## 5202 3 5134 0.05843397
## 5203 3 5134 0.05843397
## 5204 3 5134 0.05843397
## 5205 3 5134 0.05843397
## 5206 3 5134 0.05843397
## 5207 3 5134 0.05843397
## 5208 3 5134 0.05843397
## 5209 3 5134 0.05843397
## 5210 3 5134 0.05843397
## 5211 3 5134 0.05843397
## 5212 3 5134 0.05843397
## 5213 3 5134 0.05843397
## 5214 3 5134 0.05843397
## 5215 3 5134 0.05843397
## 5216 3 5134 0.05843397
## 5217 3 5134 0.05843397
## 5218 3 5134 0.05843397
## 5219 3 5134 0.05843397
## 5220 3 5134 0.05843397
## 5221 3 5134 0.05843397
## 5222 3 5134 0.05843397
## 5223 3 5134 0.05843397
## 5224 3 5134 0.05843397
## 5225 3 5134 0.05843397
## 5226 3 5134 0.05843397
## 5227 3 5134 0.05843397
## 5228 3 5134 0.05843397
## 5229 3 5134 0.05843397
## 5230 3 5134 0.05843397
## 5231 3 5134 0.05843397
## 5232 3 5134 0.05843397
## 5233 3 5134 0.05843397
## 5234 3 5134 0.05843397
## 5235 3 5134 0.05843397
## 5236 3 5134 0.05843397
## 5237 3 5134 0.05843397
## 5238 3 5134 0.05843397
## 5239 3 5134 0.05843397
## 5240 3 5134 0.05843397
## 5241 3 5134 0.05843397
## 5242 3 5134 0.05843397
## 5243 3 5134 0.05843397
## 5244 3 5134 0.05843397
## 5245 3 5134 0.05843397
## 5246 3 5134 0.05843397
## 5247 3 5134 0.05843397
## 5248 3 5134 0.05843397
## 5249 3 5134 0.05843397
## 5250 3 5134 0.05843397
## 5251 3 5134 0.05843397
## 5252 3 5134 0.05843397
## 5253 3 5134 0.05843397
## 5254 3 5134 0.05843397
## 5255 3 5134 0.05843397
## 5256 3 5134 0.05843397
## 5257 3 5134 0.05843397
## 5258 3 5134 0.05843397
## 5259 3 5134 0.05843397
## 5260 3 5134 0.05843397
## 5261 3 5134 0.05843397
## 5262 3 5134 0.05843397
## 5263 3 5134 0.05843397
## 5264 3 5134 0.05843397
## 5265 3 5134 0.05843397
## 5266 3 5134 0.05843397
## 5267 3 5134 0.05843397
## 5268 3 5134 0.05843397
## 5269 3 5134 0.05843397
## 5270 3 5134 0.05843397
## 5271 3 5134 0.05843397
## 5272 3 5134 0.05843397
## 5273 3 5134 0.05843397
## 5274 3 5134 0.05843397
## 5275 3 5134 0.05843397
## 5276 3 5134 0.05843397
## 5277 3 5134 0.05843397
## 5278 3 5134 0.05843397
## 5279 3 5134 0.05843397
## 5280 3 5134 0.05843397
## 5281 3 5134 0.05843397
## 5282 3 5134 0.05843397
## 5283 3 5134 0.05843397
## 5284 3 5134 0.05843397
## 5285 3 5134 0.05843397
## 5286 3 5134 0.05843397
## 5287 3 5134 0.05843397
## 5288 3 5134 0.05843397
## 5289 3 5134 0.05843397
## 5290 3 5134 0.05843397
## 5291 3 5134 0.05843397
## 5292 3 5134 0.05843397
## 5293 3 5134 0.05843397
## 5294 3 5134 0.05843397
## 5295 3 5134 0.05843397
## 5296 3 5134 0.05843397
## 5297 3 5134 0.05843397
## 5298 3 5134 0.05843397
## 5299 3 5134 0.05843397
## 5300 3 5134 0.05843397
## 5301 3 5134 0.05843397
## 5302 3 5134 0.05843397
## 5303 3 5134 0.05843397
## 5304 3 5134 0.05843397
## 5305 3 5134 0.05843397
## 5306 3 5134 0.05843397
## 5307 3 5134 0.05843397
## 5308 3 5134 0.05843397
## 5309 3 5134 0.05843397
## 5310 3 5134 0.05843397
## 5311 3 5134 0.05843397
## 5312 3 5134 0.05843397
## 5313 3 5134 0.05843397
## 5314 3 5134 0.05843397
## 5315 3 5134 0.05843397
## 5316 3 5134 0.05843397
## 5317 3 5134 0.05843397
## 5318 3 5134 0.05843397
## 5319 3 5134 0.05843397
## 5320 3 5134 0.05843397
## 5321 3 5134 0.05843397
## 5322 3 5134 0.05843397
## 5323 3 5134 0.05843397
## 5324 3 5134 0.05843397
## 5325 3 5134 0.05843397
## 5326 3 5134 0.05843397
## 5327 3 5134 0.05843397
## 5328 3 5134 0.05843397
## 5329 3 5134 0.05843397
## 5330 3 5134 0.05843397
## 5331 3 5134 0.05843397
## 5332 3 5134 0.05843397
## 5333 3 5134 0.05843397
## 5334 3 5134 0.05843397
## 5335 3 5134 0.05843397
## 5336 3 5134 0.05843397
## 5337 3 5134 0.05843397
## 5338 3 5134 0.05843397
## 5339 3 5134 0.05843397
## 5340 3 5134 0.05843397
## 5341 3 5134 0.05843397
## 5342 3 5134 0.05843397
## 5343 3 5134 0.05843397
## 5344 3 5134 0.05843397
## 5345 3 5134 0.05843397
## 5346 3 5134 0.05843397
## 5347 3 5134 0.05843397
## 5348 3 5134 0.05843397
## 5349 3 5134 0.05843397
## 5350 3 5134 0.05843397
## 5351 3 5134 0.05843397
## 5352 3 5134 0.05843397
## 5353 3 5134 0.05843397
## 5354 2 5134 0.03895598
## 5355 2 5134 0.03895598
## 5356 2 5134 0.03895598
## 5357 2 5134 0.03895598
## 5358 2 5134 0.03895598
## 5359 2 5134 0.03895598
## 5360 2 5134 0.03895598
## 5361 2 5134 0.03895598
## 5362 2 5134 0.03895598
## 5363 2 5134 0.03895598
## 5364 2 5134 0.03895598
## 5365 2 5134 0.03895598
## 5366 2 5134 0.03895598
## 5367 2 5134 0.03895598
## 5368 2 5134 0.03895598
## 5369 2 5134 0.03895598
## 5370 2 5134 0.03895598
## 5371 2 5134 0.03895598
## 5372 2 5134 0.03895598
## 5373 2 5134 0.03895598
## 5374 2 5134 0.03895598
## 5375 2 5134 0.03895598
## 5376 2 5134 0.03895598
## 5377 2 5134 0.03895598
## 5378 2 5134 0.03895598
## 5379 2 5134 0.03895598
## 5380 2 5134 0.03895598
## 5381 2 5134 0.03895598
## 5382 2 5134 0.03895598
## 5383 2 5134 0.03895598
## 5384 2 5134 0.03895598
## 5385 2 5134 0.03895598
## 5386 2 5134 0.03895598
## 5387 2 5134 0.03895598
## 5388 2 5134 0.03895598
## 5389 2 5134 0.03895598
## 5390 2 5134 0.03895598
## 5391 2 5134 0.03895598
## 5392 2 5134 0.03895598
## 5393 2 5134 0.03895598
## 5394 2 5134 0.03895598
## 5395 2 5134 0.03895598
## 5396 2 5134 0.03895598
## 5397 2 5134 0.03895598
## 5398 2 5134 0.03895598
## 5399 2 5134 0.03895598
## 5400 2 5134 0.03895598
## 5401 2 5134 0.03895598
## 5402 2 5134 0.03895598
## 5403 2 5134 0.03895598
## 5404 2 5134 0.03895598
## 5405 2 5134 0.03895598
## 5406 2 5134 0.03895598
## 5407 2 5134 0.03895598
## 5408 2 5134 0.03895598
## 5409 2 5134 0.03895598
## 5410 2 5134 0.03895598
## 5411 2 5134 0.03895598
## 5412 2 5134 0.03895598
## 5413 2 5134 0.03895598
## 5414 2 5134 0.03895598
## 5415 2 5134 0.03895598
## 5416 2 5134 0.03895598
## 5417 2 5134 0.03895598
## 5418 2 5134 0.03895598
## 5419 2 5134 0.03895598
## 5420 2 5134 0.03895598
## 5421 2 5134 0.03895598
## 5422 2 5134 0.03895598
## 5423 2 5134 0.03895598
## 5424 2 5134 0.03895598
## 5425 2 5134 0.03895598
## 5426 2 5134 0.03895598
## 5427 2 5134 0.03895598
## 5428 2 5134 0.03895598
## 5429 2 5134 0.03895598
## 5430 2 5134 0.03895598
## 5431 2 5134 0.03895598
## 5432 2 5134 0.03895598
## 5433 2 5134 0.03895598
## 5434 2 5134 0.03895598
## 5435 2 5134 0.03895598
## 5436 2 5134 0.03895598
## 5437 2 5134 0.03895598
## 5438 2 5134 0.03895598
## 5439 2 5134 0.03895598
## 5440 2 5134 0.03895598
## 5441 2 5134 0.03895598
## 5442 2 5134 0.03895598
## 5443 2 5134 0.03895598
## 5444 2 5134 0.03895598
## 5445 2 5134 0.03895598
## 5446 2 5134 0.03895598
## 5447 2 5134 0.03895598
## 5448 2 5134 0.03895598
## 5449 2 5134 0.03895598
## 5450 2 5134 0.03895598
## 5451 2 5134 0.03895598
## 5452 2 5134 0.03895598
## 5453 2 5134 0.03895598
## 5454 2 5134 0.03895598
## 5455 2 5134 0.03895598
## 5456 2 5134 0.03895598
## 5457 2 5134 0.03895598
## 5458 2 5134 0.03895598
## 5459 2 5134 0.03895598
## 5460 2 5134 0.03895598
## 5461 2 5134 0.03895598
## 5462 2 5134 0.03895598
## 5463 2 5134 0.03895598
## 5464 2 5134 0.03895598
## 5465 2 5134 0.03895598
## 5466 2 5134 0.03895598
## 5467 2 5134 0.03895598
## 5468 2 5134 0.03895598
## 5469 2 5134 0.03895598
## 5470 2 5134 0.03895598
## 5471 2 5134 0.03895598
## 5472 2 5134 0.03895598
## 5473 2 5134 0.03895598
## 5474 2 5134 0.03895598
## 5475 2 5134 0.03895598
## 5476 2 5134 0.03895598
## 5477 2 5134 0.03895598
## 5478 2 5134 0.03895598
## 5479 2 5134 0.03895598
## 5480 2 5134 0.03895598
## 5481 2 5134 0.03895598
## 5482 2 5134 0.03895598
## 5483 2 5134 0.03895598
## 5484 2 5134 0.03895598
## 5485 2 5134 0.03895598
## 5486 2 5134 0.03895598
## 5487 2 5134 0.03895598
## 5488 2 5134 0.03895598
## 5489 2 5134 0.03895598
## 5490 2 5134 0.03895598
## 5491 2 5134 0.03895598
## 5492 2 5134 0.03895598
## 5493 2 5134 0.03895598
## 5494 2 5134 0.03895598
## 5495 2 5134 0.03895598
## 5496 2 5134 0.03895598
## 5497 2 5134 0.03895598
## 5498 2 5134 0.03895598
## 5499 2 5134 0.03895598
## 5500 2 5134 0.03895598
## 5501 2 5134 0.03895598
## 5502 2 5134 0.03895598
## 5503 2 5134 0.03895598
## 5504 2 5134 0.03895598
## 5505 2 5134 0.03895598
## 5506 2 5134 0.03895598
## 5507 2 5134 0.03895598
## 5508 2 5134 0.03895598
## 5509 2 5134 0.03895598
## 5510 2 5134 0.03895598
## 5511 2 5134 0.03895598
## 5512 2 5134 0.03895598
## 5513 2 5134 0.03895598
## 5514 2 5134 0.03895598
## 5515 2 5134 0.03895598
## 5516 2 5134 0.03895598
## 5517 2 5134 0.03895598
## 5518 2 5134 0.03895598
## 5519 2 5134 0.03895598
## 5520 2 5134 0.03895598
## 5521 2 5134 0.03895598
## 5522 2 5134 0.03895598
## 5523 2 5134 0.03895598
## 5524 2 5134 0.03895598
## 5525 2 5134 0.03895598
## 5526 2 5134 0.03895598
## 5527 2 5134 0.03895598
## 5528 2 5134 0.03895598
## 5529 2 5134 0.03895598
## 5530 2 5134 0.03895598
## 5531 2 5134 0.03895598
## 5532 2 5134 0.03895598
## 5533 2 5134 0.03895598
## 5534 2 5134 0.03895598
## 5535 2 5134 0.03895598
## 5536 2 5134 0.03895598
## 5537 2 5134 0.03895598
## 5538 2 5134 0.03895598
## 5539 2 5134 0.03895598
## 5540 2 5134 0.03895598
## 5541 2 5134 0.03895598
## 5542 2 5134 0.03895598
## 5543 2 5134 0.03895598
## 5544 2 5134 0.03895598
## 5545 2 5134 0.03895598
## 5546 2 5134 0.03895598
## 5547 2 5134 0.03895598
## 5548 2 5134 0.03895598
## 5549 2 5134 0.03895598
## 5550 2 5134 0.03895598
## 5551 2 5134 0.03895598
## 5552 2 5134 0.03895598
## 5553 2 5134 0.03895598
## 5554 2 5134 0.03895598
## 5555 2 5134 0.03895598
## 5556 2 5134 0.03895598
## 5557 2 5134 0.03895598
## 5558 2 5134 0.03895598
## 5559 2 5134 0.03895598
## 5560 2 5134 0.03895598
## 5561 2 5134 0.03895598
## 5562 2 5134 0.03895598
## 5563 2 5134 0.03895598
## 5564 2 5134 0.03895598
## 5565 2 5134 0.03895598
## 5566 2 5134 0.03895598
## 5567 2 5134 0.03895598
## 5568 2 5134 0.03895598
## 5569 2 5134 0.03895598
## 5570 2 5134 0.03895598
## 5571 2 5134 0.03895598
## 5572 2 5134 0.03895598
## 5573 2 5134 0.03895598
## 5574 2 5134 0.03895598
## 5575 2 5134 0.03895598
## 5576 2 5134 0.03895598
## 5577 2 5134 0.03895598
## 5578 2 5134 0.03895598
## 5579 2 5134 0.03895598
## 5580 2 5134 0.03895598
## 5581 2 5134 0.03895598
## 5582 2 5134 0.03895598
## 5583 2 5134 0.03895598
## 5584 2 5134 0.03895598
## 5585 2 5134 0.03895598
## 5586 2 5134 0.03895598
## 5587 2 5134 0.03895598
## 5588 2 5134 0.03895598
## 5589 2 5134 0.03895598
## 5590 2 5134 0.03895598
## 5591 2 5134 0.03895598
## 5592 2 5134 0.03895598
## 5593 2 5134 0.03895598
## 5594 2 5134 0.03895598
## 5595 2 5134 0.03895598
## 5596 2 5134 0.03895598
## 5597 2 5134 0.03895598
## 5598 2 5134 0.03895598
## 5599 2 5134 0.03895598
## 5600 2 5134 0.03895598
## 5601 2 5134 0.03895598
## 5602 2 5134 0.03895598
## 5603 2 5134 0.03895598
## 5604 2 5134 0.03895598
## 5605 2 5134 0.03895598
## 5606 2 5134 0.03895598
## 5607 2 5134 0.03895598
## 5608 2 5134 0.03895598
## 5609 2 5134 0.03895598
## 5610 2 5134 0.03895598
## 5611 2 5134 0.03895598
## 5612 2 5134 0.03895598
## 5613 2 5134 0.03895598
## 5614 2 5134 0.03895598
## 5615 2 5134 0.03895598
## 5616 2 5134 0.03895598
## 5617 2 5134 0.03895598
## 5618 2 5134 0.03895598
## 5619 2 5134 0.03895598
## 5620 2 5134 0.03895598
## 5621 2 5134 0.03895598
## 5622 2 5134 0.03895598
## 5623 2 5134 0.03895598
## 5624 2 5134 0.03895598
## 5625 2 5134 0.03895598
## 5626 2 5134 0.03895598
## 5627 2 5134 0.03895598
## 5628 2 5134 0.03895598
## 5629 2 5134 0.03895598
## 5630 2 5134 0.03895598
## 5631 2 5134 0.03895598
## 5632 2 5134 0.03895598
## 5633 2 5134 0.03895598
## 5634 2 5134 0.03895598
## 5635 2 5134 0.03895598
## 5636 2 5134 0.03895598
## 5637 2 5134 0.03895598
## 5638 2 5134 0.03895598
## 5639 2 5134 0.03895598
## 5640 2 5134 0.03895598
## 5641 2 5134 0.03895598
## 5642 2 5134 0.03895598
## 5643 2 5134 0.03895598
## 5644 2 5134 0.03895598
## 5645 2 5134 0.03895598
## 5646 2 5134 0.03895598
## 5647 2 5134 0.03895598
## 5648 2 5134 0.03895598
## 5649 2 5134 0.03895598
## 5650 2 5134 0.03895598
## 5651 2 5134 0.03895598
## 5652 2 5134 0.03895598
## 5653 2 5134 0.03895598
## 5654 2 5134 0.03895598
## 5655 2 5134 0.03895598
## 5656 2 5134 0.03895598
## 5657 2 5134 0.03895598
## 5658 2 5134 0.03895598
## 5659 2 5134 0.03895598
## 5660 2 5134 0.03895598
## 5661 2 5134 0.03895598
## 5662 2 5134 0.03895598
## 5663 2 5134 0.03895598
## 5664 2 5134 0.03895598
## 5665 2 5134 0.03895598
## 5666 2 5134 0.03895598
## 5667 2 5134 0.03895598
## 5668 2 5134 0.03895598
## 5669 2 5134 0.03895598
## 5670 2 5134 0.03895598
## 5671 2 5134 0.03895598
## 5672 2 5134 0.03895598
## 5673 2 5134 0.03895598
## 5674 2 5134 0.03895598
## 5675 2 5134 0.03895598
## 5676 2 5134 0.03895598
## 5677 2 5134 0.03895598
## 5678 2 5134 0.03895598
## 5679 2 5134 0.03895598
## 5680 2 5134 0.03895598
## 5681 2 5134 0.03895598
## 5682 2 5134 0.03895598
## 5683 2 5134 0.03895598
## 5684 2 5134 0.03895598
## 5685 2 5134 0.03895598
## 5686 2 5134 0.03895598
## 5687 2 5134 0.03895598
## 5688 2 5134 0.03895598
## 5689 2 5134 0.03895598
## 5690 2 5134 0.03895598
## 5691 2 5134 0.03895598
## 5692 2 5134 0.03895598
## 5693 2 5134 0.03895598
## 5694 2 5134 0.03895598
## 5695 2 5134 0.03895598
## 5696 2 5134 0.03895598
## 5697 2 5134 0.03895598
## 5698 2 5134 0.03895598
## 5699 2 5134 0.03895598
## 5700 2 5134 0.03895598
## 5701 2 5134 0.03895598
## 5702 2 5134 0.03895598
## 5703 2 5134 0.03895598
## 5704 2 5134 0.03895598
## 5705 2 5134 0.03895598
## 5706 2 5134 0.03895598
## 5707 2 5134 0.03895598
## 5708 2 5134 0.03895598
## 5709 2 5134 0.03895598
## 5710 2 5134 0.03895598
## 5711 2 5134 0.03895598
## 5712 2 5134 0.03895598
## 5713 2 5134 0.03895598
## 5714 2 5134 0.03895598
## 5715 2 5134 0.03895598
## 5716 2 5134 0.03895598
## 5717 2 5134 0.03895598
## 5718 2 5134 0.03895598
## 5719 2 5134 0.03895598
## 5720 2 5134 0.03895598
## 5721 2 5134 0.03895598
## 5722 2 5134 0.03895598
## 5723 2 5134 0.03895598
## 5724 2 5134 0.03895598
## 5725 2 5134 0.03895598
## 5726 2 5134 0.03895598
## 5727 2 5134 0.03895598
## 5728 2 5134 0.03895598
## 5729 2 5134 0.03895598
## 5730 2 5134 0.03895598
## 5731 2 5134 0.03895598
## 5732 2 5134 0.03895598
## 5733 2 5134 0.03895598
## 5734 2 5134 0.03895598
## 5735 2 5134 0.03895598
## 5736 2 5134 0.03895598
## 5737 2 5134 0.03895598
## 5738 2 5134 0.03895598
## 5739 2 5134 0.03895598
## 5740 2 5134 0.03895598
## 5741 2 5134 0.03895598
## 5742 2 5134 0.03895598
## 5743 2 5134 0.03895598
## 5744 2 5134 0.03895598
## 5745 2 5134 0.03895598
## 5746 2 5134 0.03895598
## 5747 2 5134 0.03895598
## 5748 2 5134 0.03895598
## 5749 2 5134 0.03895598
## 5750 2 5134 0.03895598
## 5751 2 5134 0.03895598
## 5752 2 5134 0.03895598
## 5753 2 5134 0.03895598
## 5754 2 5134 0.03895598
## 5755 2 5134 0.03895598
## 5756 2 5134 0.03895598
## 5757 2 5134 0.03895598
## 5758 2 5134 0.03895598
## 5759 2 5134 0.03895598
## 5760 2 5134 0.03895598
## 5761 2 5134 0.03895598
## 5762 2 5134 0.03895598
## 5763 2 5134 0.03895598
## 5764 2 5134 0.03895598
## 5765 2 5134 0.03895598
## 5766 2 5134 0.03895598
## 5767 2 5134 0.03895598
## 5768 2 5134 0.03895598
## 5769 2 5134 0.03895598
## 5770 2 5134 0.03895598
## 5771 2 5134 0.03895598
## 5772 2 5134 0.03895598
## 5773 2 5134 0.03895598
## 5774 2 5134 0.03895598
## 5775 2 5134 0.03895598
## 5776 2 5134 0.03895598
## 5777 2 5134 0.03895598
## 5778 2 5134 0.03895598
## 5779 2 5134 0.03895598
## 5780 2 5134 0.03895598
## 5781 2 5134 0.03895598
## 5782 2 5134 0.03895598
## 5783 2 5134 0.03895598
## 5784 2 5134 0.03895598
## 5785 2 5134 0.03895598
## 5786 2 5134 0.03895598
## 5787 2 5134 0.03895598
## 5788 2 5134 0.03895598
## 5789 2 5134 0.03895598
## 5790 2 5134 0.03895598
## 5791 2 5134 0.03895598
## 5792 2 5134 0.03895598
## 5793 2 5134 0.03895598
## 5794 2 5134 0.03895598
## 5795 2 5134 0.03895598
## 5796 2 5134 0.03895598
## 5797 2 5134 0.03895598
## 5798 2 5134 0.03895598
## 5799 2 5134 0.03895598
## 5800 2 5134 0.03895598
## 5801 2 5134 0.03895598
## 5802 2 5134 0.03895598
## 5803 2 5134 0.03895598
## 5804 2 5134 0.03895598
## 5805 2 5134 0.03895598
## 5806 2 5134 0.03895598
## 5807 2 5134 0.03895598
## 5808 2 5134 0.03895598
## 5809 2 5134 0.03895598
## 5810 2 5134 0.03895598
## 5811 2 5134 0.03895598
## 5812 2 5134 0.03895598
## 5813 2 5134 0.03895598
## 5814 2 5134 0.03895598
## 5815 2 5134 0.03895598
## 5816 2 5134 0.03895598
## 5817 2 5134 0.03895598
## 5818 2 5134 0.03895598
## 5819 2 5134 0.03895598
## 5820 2 5134 0.03895598
## 5821 2 5134 0.03895598
## 5822 2 5134 0.03895598
## 5823 2 5134 0.03895598
## 5824 2 5134 0.03895598
## 5825 2 5134 0.03895598
## 5826 2 5134 0.03895598
## 5827 2 5134 0.03895598
## 5828 2 5134 0.03895598
## 5829 2 5134 0.03895598
## 5830 2 5134 0.03895598
## 5831 2 5134 0.03895598
## 5832 2 5134 0.03895598
## 5833 2 5134 0.03895598
## 5834 2 5134 0.03895598
## 5835 2 5134 0.03895598
## 5836 2 5134 0.03895598
## 5837 2 5134 0.03895598
## 5838 2 5134 0.03895598
## 5839 2 5134 0.03895598
## 5840 2 5134 0.03895598
## 5841 2 5134 0.03895598
## 5842 2 5134 0.03895598
## 5843 2 5134 0.03895598
## 5844 2 5134 0.03895598
## 5845 2 5134 0.03895598
## 5846 2 5134 0.03895598
## 5847 2 5134 0.03895598
## 5848 2 5134 0.03895598
## 5849 2 5134 0.03895598
## 5850 2 5134 0.03895598
## 5851 2 5134 0.03895598
## 5852 2 5134 0.03895598
## 5853 2 5134 0.03895598
## 5854 2 5134 0.03895598
## 5855 2 5134 0.03895598
## 5856 2 5134 0.03895598
## 5857 2 5134 0.03895598
## 5858 2 5134 0.03895598
## 5859 2 5134 0.03895598
## 5860 2 5134 0.03895598
## 5861 2 5134 0.03895598
## 5862 2 5134 0.03895598
## 5863 2 5134 0.03895598
## 5864 2 5134 0.03895598
## 5865 2 5134 0.03895598
## 5866 2 5134 0.03895598
## 5867 2 5134 0.03895598
## 5868 2 5134 0.03895598
## 5869 2 5134 0.03895598
## 5870 2 5134 0.03895598
## 5871 2 5134 0.03895598
## 5872 2 5134 0.03895598
## 5873 2 5134 0.03895598
## 5874 2 5134 0.03895598
## 5875 2 5134 0.03895598
## 5876 2 5134 0.03895598
## 5877 2 5134 0.03895598
## 5878 2 5134 0.03895598
## 5879 2 5134 0.03895598
## 5880 2 5134 0.03895598
## 5881 2 5134 0.03895598
## 5882 2 5134 0.03895598
## 5883 2 5134 0.03895598
## 5884 2 5134 0.03895598
## 5885 2 5134 0.03895598
## 5886 2 5134 0.03895598
## 5887 2 5134 0.03895598
## 5888 2 5134 0.03895598
## 5889 2 5134 0.03895598
## 5890 2 5134 0.03895598
## 5891 2 5134 0.03895598
## 5892 2 5134 0.03895598
## 5893 2 5134 0.03895598
## 5894 2 5134 0.03895598
## 5895 2 5134 0.03895598
## 5896 2 5134 0.03895598
## 5897 2 5134 0.03895598
## 5898 2 5134 0.03895598
## 5899 2 5134 0.03895598
## 5900 2 5134 0.03895598
## 5901 2 5134 0.03895598
## 5902 2 5134 0.03895598
## 5903 2 5134 0.03895598
## 5904 2 5134 0.03895598
## 5905 2 5134 0.03895598
## 5906 2 5134 0.03895598
## 5907 2 5134 0.03895598
## 5908 2 5134 0.03895598
## 5909 2 5134 0.03895598
## 5910 2 5134 0.03895598
## 5911 2 5134 0.03895598
## 5912 2 5134 0.03895598
## 5913 2 5134 0.03895598
## 5914 2 5134 0.03895598
## 5915 2 5134 0.03895598
## 5916 2 5134 0.03895598
## 5917 2 5134 0.03895598
## 5918 2 5134 0.03895598
## 5919 2 5134 0.03895598
## 5920 2 5134 0.03895598
## 5921 2 5134 0.03895598
## 5922 2 5134 0.03895598
## 5923 2 5134 0.03895598
## 5924 2 5134 0.03895598
## 5925 2 5134 0.03895598
## 5926 2 5134 0.03895598
## 5927 2 5134 0.03895598
## 5928 2 5134 0.03895598
## 5929 2 5134 0.03895598
## 5930 2 5134 0.03895598
## 5931 2 5134 0.03895598
## 5932 2 5134 0.03895598
## 5933 2 5134 0.03895598
## 5934 2 5134 0.03895598
## 5935 2 5134 0.03895598
## 5936 2 5134 0.03895598
## 5937 2 5134 0.03895598
## 5938 2 5134 0.03895598
## 5939 2 5134 0.03895598
## 5940 2 5134 0.03895598
## 5941 2 5134 0.03895598
## 5942 2 5134 0.03895598
## 5943 2 5134 0.03895598
## 5944 2 5134 0.03895598
## 5945 2 5134 0.03895598
## 5946 2 5134 0.03895598
## 5947 2 5134 0.03895598
## 5948 2 5134 0.03895598
## 5949 2 5134 0.03895598
## 5950 2 5134 0.03895598
## 5951 2 5134 0.03895598
## 5952 2 5134 0.03895598
## 5953 2 5134 0.03895598
## 5954 2 5134 0.03895598
## 5955 2 5134 0.03895598
## 5956 2 5134 0.03895598
## 5957 2 5134 0.03895598
## 5958 2 5134 0.03895598
## 5959 2 5134 0.03895598
## 5960 2 5134 0.03895598
## 5961 2 5134 0.03895598
## 5962 2 5134 0.03895598
## 5963 2 5134 0.03895598
## 5964 2 5134 0.03895598
## 5965 2 5134 0.03895598
## 5966 2 5134 0.03895598
## 5967 2 5134 0.03895598
## 5968 2 5134 0.03895598
## 5969 2 5134 0.03895598
## 5970 2 5134 0.03895598
## 5971 2 5134 0.03895598
## 5972 2 5134 0.03895598
## 5973 2 5134 0.03895598
## 5974 2 5134 0.03895598
## 5975 2 5134 0.03895598
## 5976 2 5134 0.03895598
## 5977 2 5134 0.03895598
## 5978 2 5134 0.03895598
## 5979 2 5134 0.03895598
## 5980 2 5134 0.03895598
## 5981 2 5134 0.03895598
## 5982 2 5134 0.03895598
## 5983 2 5134 0.03895598
## 5984 2 5134 0.03895598
## 5985 2 5134 0.03895598
## 5986 2 5134 0.03895598
## 5987 2 5134 0.03895598
## 5988 2 5134 0.03895598
## 5989 2 5134 0.03895598
## 5990 2 5134 0.03895598
## 5991 2 5134 0.03895598
## 5992 2 5134 0.03895598
## 5993 2 5134 0.03895598
## 5994 2 5134 0.03895598
## 5995 2 5134 0.03895598
## 5996 2 5134 0.03895598
## 5997 2 5134 0.03895598
## 5998 2 5134 0.03895598
## 5999 2 5134 0.03895598
## 6000 2 5134 0.03895598
## 6001 2 5134 0.03895598
## 6002 2 5134 0.03895598
## 6003 2 5134 0.03895598
## 6004 2 5134 0.03895598
## 6005 2 5134 0.03895598
## 6006 2 5134 0.03895598
## 6007 2 5134 0.03895598
## 6008 2 5134 0.03895598
## 6009 2 5134 0.03895598
## 6010 2 5134 0.03895598
## 6011 2 5134 0.03895598
## 6012 2 5134 0.03895598
## 6013 2 5134 0.03895598
## 6014 2 5134 0.03895598
## 6015 2 5134 0.03895598
## 6016 2 5134 0.03895598
## 6017 2 5134 0.03895598
## 6018 2 5134 0.03895598
## 6019 2 5134 0.03895598
## 6020 2 5134 0.03895598
## 6021 2 5134 0.03895598
## 6022 2 5134 0.03895598
## 6023 2 5134 0.03895598
## 6024 2 5134 0.03895598
## 6025 2 5134 0.03895598
## 6026 2 5134 0.03895598
## 6027 2 5134 0.03895598
## 6028 2 5134 0.03895598
## 6029 2 5134 0.03895598
## 6030 2 5134 0.03895598
## 6031 2 5134 0.03895598
## 6032 2 5134 0.03895598
## 6033 2 5134 0.03895598
## 6034 2 5134 0.03895598
## 6035 2 5134 0.03895598
## 6036 2 5134 0.03895598
## 6037 2 5134 0.03895598
## 6038 2 5134 0.03895598
## 6039 2 5134 0.03895598
## 6040 2 5134 0.03895598
## 6041 2 5134 0.03895598
## 6042 2 5134 0.03895598
## 6043 2 5134 0.03895598
## 6044 2 5134 0.03895598
## 6045 2 5134 0.03895598
## 6046 2 5134 0.03895598
## 6047 2 5134 0.03895598
## 6048 2 5134 0.03895598
## 6049 2 5134 0.03895598
## 6050 2 5134 0.03895598
## 6051 2 5134 0.03895598
## 6052 2 5134 0.03895598
## 6053 2 5134 0.03895598
## 6054 2 5134 0.03895598
## 6055 2 5134 0.03895598
## 6056 2 5134 0.03895598
## 6057 2 5134 0.03895598
## 6058 2 5134 0.03895598
## 6059 2 5134 0.03895598
## 6060 2 5134 0.03895598
## 6061 2 5134 0.03895598
## 6062 2 5134 0.03895598
## 6063 2 5134 0.03895598
## 6064 2 5134 0.03895598
## 6065 2 5134 0.03895598
## 6066 2 5134 0.03895598
## 6067 2 5134 0.03895598
## 6068 2 5134 0.03895598
## 6069 2 5134 0.03895598
## 6070 2 5134 0.03895598
## 6071 2 5134 0.03895598
## 6072 2 5134 0.03895598
## 6073 2 5134 0.03895598
## 6074 2 5134 0.03895598
## 6075 2 5134 0.03895598
## 6076 2 5134 0.03895598
## 6077 2 5134 0.03895598
## 6078 2 5134 0.03895598
## 6079 2 5134 0.03895598
## 6080 2 5134 0.03895598
## 6081 2 5134 0.03895598
## 6082 2 5134 0.03895598
## 6083 2 5134 0.03895598
## 6084 2 5134 0.03895598
## 6085 2 5134 0.03895598
## 6086 2 5134 0.03895598
## 6087 2 5134 0.03895598
## 6088 2 5134 0.03895598
## 6089 2 5134 0.03895598
## 6090 2 5134 0.03895598
## 6091 2 5134 0.03895598
## 6092 2 5134 0.03895598
## 6093 2 5134 0.03895598
## 6094 2 5134 0.03895598
## 6095 2 5134 0.03895598
## 6096 2 5134 0.03895598
## 6097 2 5134 0.03895598
## 6098 2 5134 0.03895598
## 6099 2 5134 0.03895598
## 6100 2 5134 0.03895598
## 6101 2 5134 0.03895598
## 6102 2 5134 0.03895598
## 6103 2 5134 0.03895598
## 6104 2 5134 0.03895598
## 6105 2 5134 0.03895598
## 6106 2 5134 0.03895598
## 6107 2 5134 0.03895598
## 6108 2 5134 0.03895598
## 6109 2 5134 0.03895598
## 6110 2 5134 0.03895598
## 6111 2 5134 0.03895598
## 6112 2 5134 0.03895598
## 6113 2 5134 0.03895598
## 6114 2 5134 0.03895598
## 6115 2 5134 0.03895598
## 6116 2 5134 0.03895598
## 6117 2 5134 0.03895598
## 6118 2 5134 0.03895598
## 6119 2 5134 0.03895598
## 6120 2 5134 0.03895598
## 6121 2 5134 0.03895598
## 6122 2 5134 0.03895598
## 6123 2 5134 0.03895598
## 6124 2 5134 0.03895598
## 6125 2 5134 0.03895598
## 6126 2 5134 0.03895598
## 6127 2 5134 0.03895598
## 6128 2 5134 0.03895598
## 6129 2 5134 0.03895598
## 6130 2 5134 0.03895598
## 6131 2 5134 0.03895598
## 6132 2 5134 0.03895598
## 6133 2 5134 0.03895598
## 6134 2 5134 0.03895598
## 6135 2 5134 0.03895598
## 6136 2 5134 0.03895598
## 6137 2 5134 0.03895598
## 6138 2 5134 0.03895598
## 6139 2 5134 0.03895598
## 6140 2 5134 0.03895598
## 6141 2 5134 0.03895598
## 6142 2 5134 0.03895598
## 6143 2 5134 0.03895598
## 6144 2 5134 0.03895598
## 6145 2 5134 0.03895598
## 6146 2 5134 0.03895598
## 6147 2 5134 0.03895598
## 6148 2 5134 0.03895598
## 6149 2 5134 0.03895598
## 6150 2 5134 0.03895598
## 6151 2 5134 0.03895598
## 6152 2 5134 0.03895598
## 6153 2 5134 0.03895598
## 6154 2 5134 0.03895598
## 6155 2 5134 0.03895598
## 6156 2 5134 0.03895598
## 6157 2 5134 0.03895598
## 6158 2 5134 0.03895598
## 6159 2 5134 0.03895598
## 6160 2 5134 0.03895598
## 6161 2 5134 0.03895598
## 6162 2 5134 0.03895598
## 6163 2 5134 0.03895598
## 6164 2 5134 0.03895598
## 6165 2 5134 0.03895598
## 6166 2 5134 0.03895598
## 6167 2 5134 0.03895598
## 6168 2 5134 0.03895598
## 6169 2 5134 0.03895598
## 6170 2 5134 0.03895598
## 6171 2 5134 0.03895598
## 6172 2 5134 0.03895598
## 6173 2 5134 0.03895598
## 6174 2 5134 0.03895598
## 6175 2 5134 0.03895598
## 6176 2 5134 0.03895598
## 6177 2 5134 0.03895598
## 6178 2 5134 0.03895598
## 6179 2 5134 0.03895598
## 6180 2 5134 0.03895598
## 6181 2 5134 0.03895598
## 6182 2 5134 0.03895598
## 6183 2 5134 0.03895598
## 6184 2 5134 0.03895598
## 6185 2 5134 0.03895598
## 6186 2 5134 0.03895598
## 6187 2 5134 0.03895598
## 6188 2 5134 0.03895598
## 6189 2 5134 0.03895598
## 6190 2 5134 0.03895598
## 6191 2 5134 0.03895598
## 6192 2 5134 0.03895598
## 6193 2 5134 0.03895598
## 6194 2 5134 0.03895598
## 6195 2 5134 0.03895598
## 6196 2 5134 0.03895598
## 6197 2 5134 0.03895598
## 6198 2 5134 0.03895598
## 6199 2 5134 0.03895598
## 6200 2 5134 0.03895598
## 6201 2 5134 0.03895598
## 6202 2 5134 0.03895598
## 6203 2 5134 0.03895598
## 6204 2 5134 0.03895598
## 6205 2 5134 0.03895598
## 6206 2 5134 0.03895598
## 6207 2 5134 0.03895598
## 6208 2 5134 0.03895598
## 6209 2 5134 0.03895598
## 6210 2 5134 0.03895598
## 6211 2 5134 0.03895598
## 6212 2 5134 0.03895598
## 6213 2 5134 0.03895598
## 6214 2 5134 0.03895598
## 6215 2 5134 0.03895598
## 6216 2 5134 0.03895598
## 6217 2 5134 0.03895598
## 6218 2 5134 0.03895598
## 6219 2 5134 0.03895598
## 6220 2 5134 0.03895598
## 6221 2 5134 0.03895598
## 6222 2 5134 0.03895598
## 6223 2 5134 0.03895598
## 6224 2 5134 0.03895598
## 6225 2 5134 0.03895598
## 6226 2 5134 0.03895598
## 6227 2 5134 0.03895598
## 6228 2 5134 0.03895598
## 6229 2 5134 0.03895598
## 6230 2 5134 0.03895598
## 6231 2 5134 0.03895598
## 6232 2 5134 0.03895598
## 6233 2 5134 0.03895598
## 6234 2 5134 0.03895598
## 6235 2 5134 0.03895598
## 6236 2 5134 0.03895598
## 6237 2 5134 0.03895598
## 6238 2 5134 0.03895598
## 6239 2 5134 0.03895598
## 6240 2 5134 0.03895598
## 6241 2 5134 0.03895598
## 6242 2 5134 0.03895598
## 6243 2 5134 0.03895598
## 6244 2 5134 0.03895598
## 6245 2 5134 0.03895598
## 6246 2 5134 0.03895598
## 6247 2 5134 0.03895598
## 6248 2 5134 0.03895598
## 6249 2 5134 0.03895598
## 6250 2 5134 0.03895598
## 6251 2 5134 0.03895598
## 6252 2 5134 0.03895598
## 6253 2 5134 0.03895598
## 6254 2 5134 0.03895598
## 6255 2 5134 0.03895598
## 6256 2 5134 0.03895598
## 6257 2 5134 0.03895598
## 6258 2 5134 0.03895598
## 6259 2 5134 0.03895598
## 6260 2 5134 0.03895598
## 6261 2 5134 0.03895598
## 6262 2 5134 0.03895598
## 6263 2 5134 0.03895598
## 6264 2 5134 0.03895598
## 6265 2 5134 0.03895598
## 6266 2 5134 0.03895598
## 6267 2 5134 0.03895598
## 6268 2 5134 0.03895598
## 6269 2 5134 0.03895598
## 6270 2 5134 0.03895598
## 6271 2 5134 0.03895598
## 6272 2 5134 0.03895598
## 6273 2 5134 0.03895598
## 6274 2 5134 0.03895598
## 6275 2 5134 0.03895598
## 6276 2 5134 0.03895598
## 6277 2 5134 0.03895598
## 6278 2 5134 0.03895598
## 6279 2 5134 0.03895598
## 6280 2 5134 0.03895598
## 6281 2 5134 0.03895598
## 6282 2 5134 0.03895598
## 6283 2 5134 0.03895598
## 6284 2 5134 0.03895598
## 6285 2 5134 0.03895598
## 6286 2 5134 0.03895598
## 6287 2 5134 0.03895598
## 6288 2 5134 0.03895598
## 6289 2 5134 0.03895598
## 6290 2 5134 0.03895598
## 6291 2 5134 0.03895598
## 6292 2 5134 0.03895598
## 6293 2 5134 0.03895598
## 6294 2 5134 0.03895598
## 6295 2 5134 0.03895598
## 6296 2 5134 0.03895598
## 6297 2 5134 0.03895598
## 6298 2 5134 0.03895598
## 6299 2 5134 0.03895598
## 6300 2 5134 0.03895598
## 6301 2 5134 0.03895598
## 6302 2 5134 0.03895598
## 6303 2 5134 0.03895598
## 6304 2 5134 0.03895598
## 6305 2 5134 0.03895598
## 6306 2 5134 0.03895598
## 6307 2 5134 0.03895598
## 6308 2 5134 0.03895598
## 6309 2 5134 0.03895598
## 6310 2 5134 0.03895598
## 6311 2 5134 0.03895598
## 6312 2 5134 0.03895598
## 6313 2 5134 0.03895598
## 6314 2 5134 0.03895598
## 6315 2 5134 0.03895598
## 6316 2 5134 0.03895598
## 6317 2 5134 0.03895598
## 6318 2 5134 0.03895598
## 6319 2 5134 0.03895598
## 6320 2 5134 0.03895598
## 6321 2 5134 0.03895598
## 6322 2 5134 0.03895598
## 6323 2 5134 0.03895598
## 6324 2 5134 0.03895598
## 6325 2 5134 0.03895598
## 6326 2 5134 0.03895598
## 6327 2 5134 0.03895598
## 6328 2 5134 0.03895598
## 6329 2 5134 0.03895598
## 6330 2 5134 0.03895598
## 6331 2 5134 0.03895598
## 6332 2 5134 0.03895598
## 6333 2 5134 0.03895598
## 6334 2 5134 0.03895598
## 6335 2 5134 0.03895598
## 6336 2 5134 0.03895598
## 6337 2 5134 0.03895598
## 6338 2 5134 0.03895598
## 6339 2 5134 0.03895598
## 6340 2 5134 0.03895598
## 6341 2 5134 0.03895598
## 6342 2 5134 0.03895598
## 6343 2 5134 0.03895598
## 6344 2 5134 0.03895598
## 6345 2 5134 0.03895598
## 6346 2 5134 0.03895598
## 6347 2 5134 0.03895598
## 6348 2 5134 0.03895598
## 6349 2 5134 0.03895598
## 6350 2 5134 0.03895598
## 6351 2 5134 0.03895598
## 6352 2 5134 0.03895598
## 6353 2 5134 0.03895598
## 6354 2 5134 0.03895598
## 6355 2 5134 0.03895598
## 6356 2 5134 0.03895598
## 6357 2 5134 0.03895598
## 6358 2 5134 0.03895598
## 6359 2 5134 0.03895598
## 6360 2 5134 0.03895598
## 6361 2 5134 0.03895598
## 6362 2 5134 0.03895598
## 6363 2 5134 0.03895598
## 6364 2 5134 0.03895598
## 6365 2 5134 0.03895598
## 6366 2 5134 0.03895598
## 6367 2 5134 0.03895598
## 6368 2 5134 0.03895598
## 6369 2 5134 0.03895598
## 6370 2 5134 0.03895598
## 6371 2 5134 0.03895598
## 6372 2 5134 0.03895598
## 6373 2 5134 0.03895598
## 6374 2 5134 0.03895598
## 6375 2 5134 0.03895598
## 6376 2 5134 0.03895598
## 6377 2 5134 0.03895598
## 6378 2 5134 0.03895598
## 6379 2 5134 0.03895598
## 6380 2 5134 0.03895598
## 6381 2 5134 0.03895598
## 6382 2 5134 0.03895598
## 6383 2 5134 0.03895598
## 6384 2 5134 0.03895598
## 6385 2 5134 0.03895598
## 6386 2 5134 0.03895598
## 6387 2 5134 0.03895598
## 6388 2 5134 0.03895598
## 6389 2 5134 0.03895598
## 6390 2 5134 0.03895598
## 6391 2 5134 0.03895598
## 6392 2 5134 0.03895598
## 6393 2 5134 0.03895598
## 6394 2 5134 0.03895598
## 6395 2 5134 0.03895598
## 6396 2 5134 0.03895598
## 6397 2 5134 0.03895598
## 6398 2 5134 0.03895598
## 6399 2 5134 0.03895598
## 6400 2 5134 0.03895598
## 6401 2 5134 0.03895598
## 6402 2 5134 0.03895598
## 6403 2 5134 0.03895598
## 6404 2 5134 0.03895598
## 6405 2 5134 0.03895598
## 6406 2 5134 0.03895598
## 6407 2 5134 0.03895598
## 6408 2 5134 0.03895598
## 6409 2 5134 0.03895598
## 6410 2 5134 0.03895598
## 6411 2 5134 0.03895598
## 6412 2 5134 0.03895598
## 6413 2 5134 0.03895598
## 6414 2 5134 0.03895598
## 6415 2 5134 0.03895598
## 6416 2 5134 0.03895598
## 6417 2 5134 0.03895598
## 6418 2 5134 0.03895598
## 6419 2 5134 0.03895598
## 6420 2 5134 0.03895598
## 6421 2 5134 0.03895598
## 6422 2 5134 0.03895598
## 6423 2 5134 0.03895598
## 6424 2 5134 0.03895598
## 6425 2 5134 0.03895598
## 6426 2 5134 0.03895598
## 6427 2 5134 0.03895598
## 6428 2 5134 0.03895598
## 6429 2 5134 0.03895598
## 6430 2 5134 0.03895598
## 6431 2 5134 0.03895598
## 6432 2 5134 0.03895598
## 6433 2 5134 0.03895598
## 6434 2 5134 0.03895598
## 6435 2 5134 0.03895598
## 6436 2 5134 0.03895598
## 6437 2 5134 0.03895598
## 6438 2 5134 0.03895598
## 6439 2 5134 0.03895598
## 6440 2 5134 0.03895598
## 6441 2 5134 0.03895598
## 6442 2 5134 0.03895598
## 6443 2 5134 0.03895598
## 6444 2 5134 0.03895598
## 6445 2 5134 0.03895598
## 6446 2 5134 0.03895598
## 6447 2 5134 0.03895598
## 6448 2 5134 0.03895598
## 6449 2 5134 0.03895598
## 6450 2 5134 0.03895598
## 6451 2 5134 0.03895598
## 6452 2 5134 0.03895598
## 6453 2 5134 0.03895598
## 6454 2 5134 0.03895598
## 6455 2 5134 0.03895598
## 6456 2 5134 0.03895598
## 6457 2 5134 0.03895598
## 6458 2 5134 0.03895598
## 6459 2 5134 0.03895598
## 6460 2 5134 0.03895598
## 6461 2 5134 0.03895598
## 6462 2 5134 0.03895598
## 6463 2 5134 0.03895598
## 6464 2 5134 0.03895598
## 6465 2 5134 0.03895598
## 6466 2 5134 0.03895598
## 6467 2 5134 0.03895598
## 6468 2 5134 0.03895598
## 6469 2 5134 0.03895598
## 6470 2 5134 0.03895598
## 6471 2 5134 0.03895598
## 6472 2 5134 0.03895598
## 6473 2 5134 0.03895598
## 6474 2 5134 0.03895598
## 6475 2 5134 0.03895598
## 6476 2 5134 0.03895598
## 6477 2 5134 0.03895598
## 6478 2 5134 0.03895598
## 6479 2 5134 0.03895598
## 6480 2 5134 0.03895598
## 6481 2 5134 0.03895598
## 6482 2 5134 0.03895598
## 6483 2 5134 0.03895598
## 6484 2 5134 0.03895598
## 6485 2 5134 0.03895598
## 6486 2 5134 0.03895598
## 6487 2 5134 0.03895598
## 6488 2 5134 0.03895598
## 6489 2 5134 0.03895598
## 6490 2 5134 0.03895598
## 6491 2 5134 0.03895598
## 6492 2 5134 0.03895598
## 6493 2 5134 0.03895598
## 6494 2 5134 0.03895598
## 6495 2 5134 0.03895598
## 6496 2 5134 0.03895598
## 6497 2 5134 0.03895598
## 6498 2 5134 0.03895598
## 6499 2 5134 0.03895598
## 6500 2 5134 0.03895598
## 6501 2 5134 0.03895598
## 6502 2 5134 0.03895598
## 6503 2 5134 0.03895598
## 6504 2 5134 0.03895598
## 6505 2 5134 0.03895598
## 6506 2 5134 0.03895598
## 6507 2 5134 0.03895598
## 6508 2 5134 0.03895598
## 6509 2 5134 0.03895598
## 6510 2 5134 0.03895598
## 6511 2 5134 0.03895598
## 6512 2 5134 0.03895598
## 6513 2 5134 0.03895598
## 6514 2 5134 0.03895598
## 6515 2 5134 0.03895598
## 6516 2 5134 0.03895598
## 6517 2 5134 0.03895598
## 6518 2 5134 0.03895598
## 6519 2 5134 0.03895598
## 6520 2 5134 0.03895598
## 6521 2 5134 0.03895598
## 6522 2 5134 0.03895598
## 6523 2 5134 0.03895598
## 6524 2 5134 0.03895598
## 6525 2 5134 0.03895598
## 6526 2 5134 0.03895598
## 6527 2 5134 0.03895598
## 6528 2 5134 0.03895598
## 6529 2 5134 0.03895598
## 6530 2 5134 0.03895598
## 6531 2 5134 0.03895598
## 6532 2 5134 0.03895598
## 6533 2 5134 0.03895598
## 6534 2 5134 0.03895598
## 6535 2 5134 0.03895598
## 6536 2 5134 0.03895598
## 6537 2 5134 0.03895598
## 6538 2 5134 0.03895598
## 6539 2 5134 0.03895598
## 6540 2 5134 0.03895598
## 6541 2 5134 0.03895598
## 6542 2 5134 0.03895598
## 6543 2 5134 0.03895598
## 6544 2 5134 0.03895598
## 6545 2 5134 0.03895598
## 6546 2 5134 0.03895598
## 6547 2 5134 0.03895598
## 6548 2 5134 0.03895598
## 6549 2 5134 0.03895598
## 6550 2 5134 0.03895598
## 6551 2 5134 0.03895598
## 6552 2 5134 0.03895598
## 6553 2 5134 0.03895598
## 6554 2 5134 0.03895598
## 6555 2 5134 0.03895598
## 6556 2 5134 0.03895598
## 6557 2 5134 0.03895598
## 6558 2 5134 0.03895598
## 6559 2 5134 0.03895598
## 6560 2 5134 0.03895598
## 6561 2 5134 0.03895598
## 6562 2 5134 0.03895598
## 6563 2 5134 0.03895598
## 6564 2 5134 0.03895598
## 6565 2 5134 0.03895598
## 6566 2 5134 0.03895598
## 6567 2 5134 0.03895598
## 6568 2 5134 0.03895598
## 6569 2 5134 0.03895598
## 6570 2 5134 0.03895598
## 6571 2 5134 0.03895598
## 6572 2 5134 0.03895598
## 6573 2 5134 0.03895598
## 6574 2 5134 0.03895598
## 6575 2 5134 0.03895598
## 6576 2 5134 0.03895598
## 6577 2 5134 0.03895598
## 6578 2 5134 0.03895598
## 6579 2 5134 0.03895598
## 6580 2 5134 0.03895598
## 6581 2 5134 0.03895598
## 6582 2 5134 0.03895598
## 6583 2 5134 0.03895598
## 6584 2 5134 0.03895598
## 6585 2 5134 0.03895598
## 6586 2 5134 0.03895598
## 6587 2 5134 0.03895598
## 6588 2 5134 0.03895598
## 6589 2 5134 0.03895598
## 6590 2 5134 0.03895598
## 6591 2 5134 0.03895598
## 6592 2 5134 0.03895598
## 6593 2 5134 0.03895598
## 6594 2 5134 0.03895598
## 6595 2 5134 0.03895598
## 6596 2 5134 0.03895598
## 6597 2 5134 0.03895598
## 6598 2 5134 0.03895598
## 6599 2 5134 0.03895598
## 6600 2 5134 0.03895598
## 6601 2 5134 0.03895598
## 6602 2 5134 0.03895598
## 6603 2 5134 0.03895598
## 6604 2 5134 0.03895598
## 6605 2 5134 0.03895598
## 6606 2 5134 0.03895598
## 6607 2 5134 0.03895598
## 6608 2 5134 0.03895598
## 6609 2 5134 0.03895598
## 6610 2 5134 0.03895598
## 6611 2 5134 0.03895598
## 6612 2 5134 0.03895598
## 6613 2 5134 0.03895598
## 6614 2 5134 0.03895598
## 6615 2 5134 0.03895598
## 6616 2 5134 0.03895598
## 6617 2 5134 0.03895598
## 6618 2 5134 0.03895598
## 6619 2 5134 0.03895598
## 6620 2 5134 0.03895598
## 6621 2 5134 0.03895598
## 6622 2 5134 0.03895598
## 6623 2 5134 0.03895598
## 6624 2 5134 0.03895598
## 6625 2 5134 0.03895598
## 6626 2 5134 0.03895598
## 6627 2 5134 0.03895598
## 6628 2 5134 0.03895598
## 6629 2 5134 0.03895598
## 6630 2 5134 0.03895598
## 6631 2 5134 0.03895598
## 6632 2 5134 0.03895598
## 6633 2 5134 0.03895598
## 6634 2 5134 0.03895598
## 6635 2 5134 0.03895598
## 6636 2 5134 0.03895598
## 6637 2 5134 0.03895598
## 6638 2 5134 0.03895598
## 6639 2 5134 0.03895598
## 6640 2 5134 0.03895598
## 6641 2 5134 0.03895598
## 6642 2 5134 0.03895598
## 6643 2 5134 0.03895598
## 6644 2 5134 0.03895598
## 6645 2 5134 0.03895598
## 6646 2 5134 0.03895598
## 6647 2 5134 0.03895598
## 6648 2 5134 0.03895598
## 6649 2 5134 0.03895598
## 6650 2 5134 0.03895598
## 6651 2 5134 0.03895598
## 6652 2 5134 0.03895598
## 6653 2 5134 0.03895598
## 6654 2 5134 0.03895598
## 6655 2 5134 0.03895598
## 6656 2 5134 0.03895598
## 6657 2 5134 0.03895598
## 6658 2 5134 0.03895598
## 6659 2 5134 0.03895598
## 6660 2 5134 0.03895598
## 6661 2 5134 0.03895598
## 6662 2 5134 0.03895598
## 6663 2 5134 0.03895598
## 6664 2 5134 0.03895598
## 6665 2 5134 0.03895598
## 6666 2 5134 0.03895598
## 6667 2 5134 0.03895598
## 6668 2 5134 0.03895598
## 6669 2 5134 0.03895598
## 6670 2 5134 0.03895598
## 6671 2 5134 0.03895598
## 6672 2 5134 0.03895598
## 6673 2 5134 0.03895598
## 6674 2 5134 0.03895598
## 6675 2 5134 0.03895598
## 6676 2 5134 0.03895598
## 6677 2 5134 0.03895598
## 6678 2 5134 0.03895598
## 6679 2 5134 0.03895598
## 6680 2 5134 0.03895598
## 6681 2 5134 0.03895598
## 6682 2 5134 0.03895598
## 6683 2 5134 0.03895598
## 6684 2 5134 0.03895598
## 6685 2 5134 0.03895598
## 6686 2 5134 0.03895598
## 6687 2 5134 0.03895598
## 6688 2 5134 0.03895598
## 6689 2 5134 0.03895598
## 6690 2 5134 0.03895598
## 6691 2 5134 0.03895598
## 6692 2 5134 0.03895598
## 6693 2 5134 0.03895598
## 6694 2 5134 0.03895598
## 6695 2 5134 0.03895598
## 6696 2 5134 0.03895598
## 6697 2 5134 0.03895598
## 6698 2 5134 0.03895598
## 6699 2 5134 0.03895598
## 6700 2 5134 0.03895598
## 6701 2 5134 0.03895598
## 6702 2 5134 0.03895598
## 6703 2 5134 0.03895598
## 6704 2 5134 0.03895598
## 6705 2 5134 0.03895598
## 6706 2 5134 0.03895598
## 6707 2 5134 0.03895598
## 6708 2 5134 0.03895598
## 6709 2 5134 0.03895598
## 6710 2 5134 0.03895598
## 6711 2 5134 0.03895598
## 6712 2 5134 0.03895598
## 6713 2 5134 0.03895598
## 6714 2 5134 0.03895598
## 6715 2 5134 0.03895598
## 6716 2 5134 0.03895598
## 6717 2 5134 0.03895598
## 6718 2 5134 0.03895598
## 6719 2 5134 0.03895598
## 6720 2 5134 0.03895598
## 6721 2 5134 0.03895598
## 6722 2 5134 0.03895598
## 6723 2 5134 0.03895598
## 6724 2 5134 0.03895598
## 6725 2 5134 0.03895598
## 6726 2 5134 0.03895598
## 6727 2 5134 0.03895598
## 6728 2 5134 0.03895598
## 6729 2 5134 0.03895598
## 6730 2 5134 0.03895598
## 6731 2 5134 0.03895598
## 6732 2 5134 0.03895598
## 6733 2 5134 0.03895598
## 6734 2 5134 0.03895598
## 6735 2 5134 0.03895598
## 6736 2 5134 0.03895598
## 6737 2 5134 0.03895598
## 6738 2 5134 0.03895598
## 6739 2 5134 0.03895598
## 6740 2 5134 0.03895598
## 6741 2 5134 0.03895598
## 6742 2 5134 0.03895598
## 6743 2 5134 0.03895598
## 6744 2 5134 0.03895598
## 6745 2 5134 0.03895598
## 6746 2 5134 0.03895598
## 6747 2 5134 0.03895598
## 6748 2 5134 0.03895598
## 6749 2 5134 0.03895598
## 6750 2 5134 0.03895598
## 6751 2 5134 0.03895598
## 6752 2 5134 0.03895598
## 6753 2 5134 0.03895598
## 6754 2 5134 0.03895598
## 6755 2 5134 0.03895598
## 6756 2 5134 0.03895598
## 6757 2 5134 0.03895598
## 6758 2 5134 0.03895598
## 6759 2 5134 0.03895598
## 6760 2 5134 0.03895598
## 6761 2 5134 0.03895598
## 6762 2 5134 0.03895598
## 6763 2 5134 0.03895598
## 6764 2 5134 0.03895598
## 6765 2 5134 0.03895598
## 6766 2 5134 0.03895598
## 6767 2 5134 0.03895598
## 6768 2 5134 0.03895598
## 6769 2 5134 0.03895598
## 6770 2 5134 0.03895598
## 6771 2 5134 0.03895598
## 6772 2 5134 0.03895598
## 6773 2 5134 0.03895598
## 6774 2 5134 0.03895598
## 6775 2 5134 0.03895598
## 6776 2 5134 0.03895598
## 6777 2 5134 0.03895598
## 6778 2 5134 0.03895598
## 6779 2 5134 0.03895598
## 6780 2 5134 0.03895598
## 6781 2 5134 0.03895598
## 6782 2 5134 0.03895598
## 6783 2 5134 0.03895598
## 6784 2 5134 0.03895598
## 6785 2 5134 0.03895598
## 6786 2 5134 0.03895598
## 6787 2 5134 0.03895598
## 6788 2 5134 0.03895598
## 6789 2 5134 0.03895598
## 6790 2 5134 0.03895598
## 6791 2 5134 0.03895598
## 6792 2 5134 0.03895598
## 6793 2 5134 0.03895598
## 6794 2 5134 0.03895598
## 6795 2 5134 0.03895598
## 6796 2 5134 0.03895598
## 6797 2 5134 0.03895598
## 6798 2 5134 0.03895598
## 6799 2 5134 0.03895598
## 6800 2 5134 0.03895598
## 6801 2 5134 0.03895598
## 6802 2 5134 0.03895598
## 6803 2 5134 0.03895598
## 6804 2 5134 0.03895598
## 6805 2 5134 0.03895598
## 6806 2 5134 0.03895598
## 6807 2 5134 0.03895598
## 6808 2 5134 0.03895598
## 6809 2 5134 0.03895598
## 6810 2 5134 0.03895598
## 6811 2 5134 0.03895598
## 6812 2 5134 0.03895598
## 6813 2 5134 0.03895598
## 6814 2 5134 0.03895598
## 6815 2 5134 0.03895598
## 6816 2 5134 0.03895598
## 6817 2 5134 0.03895598
## 6818 2 5134 0.03895598
## 6819 2 5134 0.03895598
## 6820 2 5134 0.03895598
## 6821 2 5134 0.03895598
## 6822 2 5134 0.03895598
## 6823 2 5134 0.03895598
## 6824 2 5134 0.03895598
## 6825 2 5134 0.03895598
## 6826 2 5134 0.03895598
## 6827 2 5134 0.03895598
## 6828 2 5134 0.03895598
## 6829 2 5134 0.03895598
## 6830 2 5134 0.03895598
## 6831 2 5134 0.03895598
## 6832 2 5134 0.03895598
## 6833 2 5134 0.03895598
## 6834 2 5134 0.03895598
## 6835 2 5134 0.03895598
## 6836 2 5134 0.03895598
## 6837 2 5134 0.03895598
## 6838 2 5134 0.03895598
## 6839 2 5134 0.03895598
## 6840 2 5134 0.03895598
## 6841 2 5134 0.03895598
## 6842 2 5134 0.03895598
## 6843 2 5134 0.03895598
## 6844 2 5134 0.03895598
## 6845 2 5134 0.03895598
## 6846 2 5134 0.03895598
## 6847 2 5134 0.03895598
## 6848 2 5134 0.03895598
## 6849 2 5134 0.03895598
## 6850 2 5134 0.03895598
## 6851 2 5134 0.03895598
## 6852 2 5134 0.03895598
## 6853 2 5134 0.03895598
## 6854 2 5134 0.03895598
## 6855 2 5134 0.03895598
## 6856 2 5134 0.03895598
## 6857 2 5134 0.03895598
## 6858 2 5134 0.03895598
## 6859 2 5134 0.03895598
## 6860 2 5134 0.03895598
## 6861 2 5134 0.03895598
## 6862 2 5134 0.03895598
## 6863 2 5134 0.03895598
## 6864 2 5134 0.03895598
## 6865 2 5134 0.03895598
## 6866 2 5134 0.03895598
## 6867 2 5134 0.03895598
## 6868 2 5134 0.03895598
## 6869 2 5134 0.03895598
## 6870 2 5134 0.03895598
## 6871 2 5134 0.03895598
## 6872 2 5134 0.03895598
## 6873 2 5134 0.03895598
## 6874 2 5134 0.03895598
## 6875 2 5134 0.03895598
## 6876 2 5134 0.03895598
## 6877 2 5134 0.03895598
## 6878 2 5134 0.03895598
## 6879 2 5134 0.03895598
## 6880 2 5134 0.03895598
## 6881 2 5134 0.03895598
## 6882 2 5134 0.03895598
## 6883 2 5134 0.03895598
## 6884 2 5134 0.03895598
## 6885 2 5134 0.03895598
## 6886 2 5134 0.03895598
## 6887 2 5134 0.03895598
## 6888 2 5134 0.03895598
## 6889 2 5134 0.03895598
## 6890 2 5134 0.03895598
## 6891 2 5134 0.03895598
## 6892 2 5134 0.03895598
## 6893 2 5134 0.03895598
## 6894 2 5134 0.03895598
## 6895 2 5134 0.03895598
## 6896 2 5134 0.03895598
## 6897 2 5134 0.03895598
## 6898 2 5134 0.03895598
## 6899 2 5134 0.03895598
## 6900 2 5134 0.03895598
## 6901 2 5134 0.03895598
## 6902 2 5134 0.03895598
## 6903 2 5134 0.03895598
## 6904 2 5134 0.03895598
## 6905 2 5134 0.03895598
## 6906 2 5134 0.03895598
## 6907 2 5134 0.03895598
## 6908 2 5134 0.03895598
## 6909 2 5134 0.03895598
## 6910 2 5134 0.03895598
## 6911 2 5134 0.03895598
## 6912 2 5134 0.03895598
## 6913 2 5134 0.03895598
## 6914 2 5134 0.03895598
## 6915 2 5134 0.03895598
## 6916 2 5134 0.03895598
## 6917 2 5134 0.03895598
## 6918 2 5134 0.03895598
## 6919 2 5134 0.03895598
## 6920 2 5134 0.03895598
## 6921 2 5134 0.03895598
## 6922 2 5134 0.03895598
## 6923 2 5134 0.03895598
## 6924 2 5134 0.03895598
## 6925 2 5134 0.03895598
## 6926 2 5134 0.03895598
## 6927 2 5134 0.03895598
## 6928 2 5134 0.03895598
## 6929 2 5134 0.03895598
## 6930 2 5134 0.03895598
## 6931 2 5134 0.03895598
## 6932 2 5134 0.03895598
## 6933 2 5134 0.03895598
## 6934 2 5134 0.03895598
## 6935 2 5134 0.03895598
## 6936 2 5134 0.03895598
## 6937 2 5134 0.03895598
## 6938 2 5134 0.03895598
## 6939 2 5134 0.03895598
## 6940 2 5134 0.03895598
## 6941 2 5134 0.03895598
## 6942 2 5134 0.03895598
## 6943 2 5134 0.03895598
## 6944 2 5134 0.03895598
## 6945 2 5134 0.03895598
## 6946 2 5134 0.03895598
## 6947 2 5134 0.03895598
## 6948 2 5134 0.03895598
## 6949 2 5134 0.03895598
## 6950 2 5134 0.03895598
## 6951 2 5134 0.03895598
## 6952 2 5134 0.03895598
## 6953 2 5134 0.03895598
## 6954 2 5134 0.03895598
## 6955 2 5134 0.03895598
## 6956 2 5134 0.03895598
## 6957 2 5134 0.03895598
## 6958 2 5134 0.03895598
## 6959 2 5134 0.03895598
## 6960 2 5134 0.03895598
## 6961 2 5134 0.03895598
## 6962 2 5134 0.03895598
## 6963 2 5134 0.03895598
## 6964 2 5134 0.03895598
## 6965 2 5134 0.03895598
## 6966 2 5134 0.03895598
## 6967 2 5134 0.03895598
## 6968 2 5134 0.03895598
## 6969 2 5134 0.03895598
## 6970 2 5134 0.03895598
## 6971 2 5134 0.03895598
## 6972 2 5134 0.03895598
## 6973 2 5134 0.03895598
## 6974 2 5134 0.03895598
## 6975 2 5134 0.03895598
## 6976 2 5134 0.03895598
## 6977 2 5134 0.03895598
## 6978 2 5134 0.03895598
## 6979 2 5134 0.03895598
## 6980 2 5134 0.03895598
## 6981 2 5134 0.03895598
## 6982 2 5134 0.03895598
## 6983 2 5134 0.03895598
## 6984 2 5134 0.03895598
## 6985 2 5134 0.03895598
## 6986 2 5134 0.03895598
## 6987 2 5134 0.03895598
## 6988 2 5134 0.03895598
## 6989 2 5134 0.03895598
## 6990 2 5134 0.03895598
## 6991 2 5134 0.03895598
## 6992 2 5134 0.03895598
## 6993 2 5134 0.03895598
## 6994 2 5134 0.03895598
## 6995 2 5134 0.03895598
## 6996 2 5134 0.03895598
## 6997 2 5134 0.03895598
## 6998 2 5134 0.03895598
## 6999 2 5134 0.03895598
## 7000 2 5134 0.03895598
## 7001 2 5134 0.03895598
## 7002 2 5134 0.03895598
## 7003 2 5134 0.03895598
## 7004 2 5134 0.03895598
## 7005 2 5134 0.03895598
## 7006 2 5134 0.03895598
## 7007 2 5134 0.03895598
## 7008 2 5134 0.03895598
## 7009 2 5134 0.03895598
## 7010 2 5134 0.03895598
## 7011 2 5134 0.03895598
## 7012 2 5134 0.03895598
## 7013 2 5134 0.03895598
## 7014 2 5134 0.03895598
## 7015 2 5134 0.03895598
## 7016 2 5134 0.03895598
## 7017 2 5134 0.03895598
## 7018 2 5134 0.03895598
## 7019 2 5134 0.03895598
## 7020 2 5134 0.03895598
## 7021 2 5134 0.03895598
## 7022 2 5134 0.03895598
## 7023 2 5134 0.03895598
## 7024 2 5134 0.03895598
## 7025 2 5134 0.03895598
## 7026 2 5134 0.03895598
## 7027 2 5134 0.03895598
## 7028 2 5134 0.03895598
## 7029 2 5134 0.03895598
## 7030 2 5134 0.03895598
## 7031 2 5134 0.03895598
## 7032 2 5134 0.03895598
## 7033 2 5134 0.03895598
## 7034 2 5134 0.03895598
## 7035 2 5134 0.03895598
## 7036 2 5134 0.03895598
## 7037 2 5134 0.03895598
## 7038 2 5134 0.03895598
## 7039 2 5134 0.03895598
## 7040 2 5134 0.03895598
## 7041 2 5134 0.03895598
## 7042 2 5134 0.03895598
## 7043 2 5134 0.03895598
## 7044 2 5134 0.03895598
## 7045 2 5134 0.03895598
## 7046 2 5134 0.03895598
## 7047 2 5134 0.03895598
## 7048 2 5134 0.03895598
## 7049 2 5134 0.03895598
## 7050 2 5134 0.03895598
## 7051 2 5134 0.03895598
## 7052 2 5134 0.03895598
## 7053 2 5134 0.03895598
## 7054 2 5134 0.03895598
## 7055 2 5134 0.03895598
## 7056 2 5134 0.03895598
## 7057 2 5134 0.03895598
## 7058 2 5134 0.03895598
## 7059 2 5134 0.03895598
## 7060 2 5134 0.03895598
## 7061 2 5134 0.03895598
## 7062 2 5134 0.03895598
## 7063 2 5134 0.03895598
## 7064 2 5134 0.03895598
## 7065 2 5134 0.03895598
## 7066 2 5134 0.03895598
## 7067 2 5134 0.03895598
## 7068 2 5134 0.03895598
## 7069 2 5134 0.03895598
## 7070 2 5134 0.03895598
## 7071 2 5134 0.03895598
## 7072 2 5134 0.03895598
## 7073 2 5134 0.03895598
## 7074 2 5134 0.03895598
## 7075 2 5134 0.03895598
## 7076 2 5134 0.03895598
## 7077 2 5134 0.03895598
## 7078 2 5134 0.03895598
## 7079 2 5134 0.03895598
## 7080 2 5134 0.03895598
## 7081 2 5134 0.03895598
## 7082 2 5134 0.03895598
## 7083 2 5134 0.03895598
## 7084 2 5134 0.03895598
## 7085 2 5134 0.03895598
## 7086 2 5134 0.03895598
## 7087 2 5134 0.03895598
## 7088 2 5134 0.03895598
## 7089 2 5134 0.03895598
## 7090 2 5134 0.03895598
## 7091 2 5134 0.03895598
## 7092 2 5134 0.03895598
## 7093 2 5134 0.03895598
## 7094 2 5134 0.03895598
## 7095 2 5134 0.03895598
## 7096 2 5134 0.03895598
## 7097 2 5134 0.03895598
## 7098 2 5134 0.03895598
## 7099 2 5134 0.03895598
## 7100 2 5134 0.03895598
## 7101 2 5134 0.03895598
## 7102 2 5134 0.03895598
## 7103 2 5134 0.03895598
## 7104 2 5134 0.03895598
## 7105 2 5134 0.03895598
## 7106 2 5134 0.03895598
## 7107 2 5134 0.03895598
## 7108 2 5134 0.03895598
## 7109 2 5134 0.03895598
## 7110 2 5134 0.03895598
## 7111 2 5134 0.03895598
## 7112 2 5134 0.03895598
## 7113 2 5134 0.03895598
## 7114 2 5134 0.03895598
## 7115 2 5134 0.03895598
## 7116 2 5134 0.03895598
## 7117 2 5134 0.03895598
## 7118 2 5134 0.03895598
## 7119 2 5134 0.03895598
## 7120 2 5134 0.03895598
## 7121 2 5134 0.03895598
## 7122 2 5134 0.03895598
## 7123 2 5134 0.03895598
## 7124 2 5134 0.03895598
## 7125 2 5134 0.03895598
## 7126 2 5134 0.03895598
## 7127 2 5134 0.03895598
## 7128 2 5134 0.03895598
## 7129 2 5134 0.03895598
## 7130 2 5134 0.03895598
## 7131 2 5134 0.03895598
## 7132 2 5134 0.03895598
## 7133 2 5134 0.03895598
## 7134 2 5134 0.03895598
## 7135 2 5134 0.03895598
## 7136 2 5134 0.03895598
## 7137 2 5134 0.03895598
## 7138 2 5134 0.03895598
## 7139 2 5134 0.03895598
## 7140 2 5134 0.03895598
## 7141 2 5134 0.03895598
## 7142 2 5134 0.03895598
## 7143 2 5134 0.03895598
## 7144 2 5134 0.03895598
## 7145 2 5134 0.03895598
## 7146 2 5134 0.03895598
## 7147 2 5134 0.03895598
## 7148 2 5134 0.03895598
## 7149 2 5134 0.03895598
## 7150 2 5134 0.03895598
## 7151 2 5134 0.03895598
## 7152 2 5134 0.03895598
## 7153 2 5134 0.03895598
## 7154 2 5134 0.03895598
## 7155 2 5134 0.03895598
## 7156 2 5134 0.03895598
## 7157 2 5134 0.03895598
## 7158 2 5134 0.03895598
## 7159 2 5134 0.03895598
## 7160 2 5134 0.03895598
## 7161 2 5134 0.03895598
## 7162 2 5134 0.03895598
## 7163 2 5134 0.03895598
## 7164 2 5134 0.03895598
## 7165 2 5134 0.03895598
## 7166 2 5134 0.03895598
## 7167 2 5134 0.03895598
## 7168 2 5134 0.03895598
## 7169 2 5134 0.03895598
## 7170 2 5134 0.03895598
## 7171 2 5134 0.03895598
## 7172 2 5134 0.03895598
## 7173 2 5134 0.03895598
## 7174 2 5134 0.03895598
## 7175 2 5134 0.03895598
## 7176 2 5134 0.03895598
## 7177 2 5134 0.03895598
## 7178 2 5134 0.03895598
## 7179 2 5134 0.03895598
## 7180 2 5134 0.03895598
## 7181 2 5134 0.03895598
## 7182 2 5134 0.03895598
## 7183 2 5134 0.03895598
## 7184 2 5134 0.03895598
## 7185 2 5134 0.03895598
## 7186 2 5134 0.03895598
## 7187 2 5134 0.03895598
## 7188 2 5134 0.03895598
## 7189 2 5134 0.03895598
## 7190 2 5134 0.03895598
## 7191 2 5134 0.03895598
## 7192 2 5134 0.03895598
## 7193 2 5134 0.03895598
## 7194 2 5134 0.03895598
## 7195 2 5134 0.03895598
## 7196 2 5134 0.03895598
## 7197 2 5134 0.03895598
## 7198 2 5134 0.03895598
## 7199 2 5134 0.03895598
## 7200 2 5134 0.03895598
## 7201 2 5134 0.03895598
## 7202 2 5134 0.03895598
## 7203 2 5134 0.03895598
## 7204 2 5134 0.03895598
## 7205 2 5134 0.03895598
## 7206 2 5134 0.03895598
## 7207 2 5134 0.03895598
## 7208 2 5134 0.03895598
## 7209 2 5134 0.03895598
## 7210 2 5134 0.03895598
## 7211 2 5134 0.03895598
## 7212 2 5134 0.03895598
## 7213 2 5134 0.03895598
## 7214 2 5134 0.03895598
## 7215 2 5134 0.03895598
## 7216 2 5134 0.03895598
## 7217 2 5134 0.03895598
## 7218 2 5134 0.03895598
## 7219 2 5134 0.03895598
## 7220 2 5134 0.03895598
## 7221 2 5134 0.03895598
## 7222 2 5134 0.03895598
## 7223 2 5134 0.03895598
## 7224 2 5134 0.03895598
## 7225 2 5134 0.03895598
## 7226 2 5134 0.03895598
## 7227 2 5134 0.03895598
## 7228 2 5134 0.03895598
## 7229 2 5134 0.03895598
## 7230 2 5134 0.03895598
## 7231 2 5134 0.03895598
## 7232 2 5134 0.03895598
## 7233 2 5134 0.03895598
## 7234 2 5134 0.03895598
## 7235 2 5134 0.03895598
## 7236 2 5134 0.03895598
## 7237 2 5134 0.03895598
## 7238 2 5134 0.03895598
## 7239 2 5134 0.03895598
## 7240 2 5134 0.03895598
## 7241 2 5134 0.03895598
## 7242 2 5134 0.03895598
## 7243 2 5134 0.03895598
## 7244 2 5134 0.03895598
## 7245 2 5134 0.03895598
## 7246 2 5134 0.03895598
## 7247 2 5134 0.03895598
## 7248 2 5134 0.03895598
## 7249 2 5134 0.03895598
## 7250 2 5134 0.03895598
## 7251 2 5134 0.03895598
## 7252 2 5134 0.03895598
## 7253 2 5134 0.03895598
## 7254 2 5134 0.03895598
## 7255 2 5134 0.03895598
## 7256 2 5134 0.03895598
## 7257 2 5134 0.03895598
## 7258 2 5134 0.03895598
## 7259 2 5134 0.03895598
## 7260 2 5134 0.03895598
## 7261 2 5134 0.03895598
## 7262 2 5134 0.03895598
## 7263 2 5134 0.03895598
## 7264 2 5134 0.03895598
## 7265 2 5134 0.03895598
## 7266 2 5134 0.03895598
## 7267 2 5134 0.03895598
## 7268 2 5134 0.03895598
## 7269 2 5134 0.03895598
## 7270 2 5134 0.03895598
## 7271 2 5134 0.03895598
## 7272 2 5134 0.03895598
## 7273 2 5134 0.03895598
## 7274 2 5134 0.03895598
## 7275 2 5134 0.03895598
## 7276 2 5134 0.03895598
## 7277 2 5134 0.03895598
## 7278 2 5134 0.03895598
## 7279 2 5134 0.03895598
## 7280 2 5134 0.03895598
## 7281 2 5134 0.03895598
## 7282 2 5134 0.03895598
## 7283 2 5134 0.03895598
## 7284 2 5134 0.03895598
## 7285 2 5134 0.03895598
## 7286 2 5134 0.03895598
## 7287 2 5134 0.03895598
## 7288 2 5134 0.03895598
## 7289 2 5134 0.03895598
## 7290 2 5134 0.03895598
## 7291 2 5134 0.03895598
## 7292 2 5134 0.03895598
## 7293 2 5134 0.03895598
## 7294 2 5134 0.03895598
## 7295 2 5134 0.03895598
## 7296 2 5134 0.03895598
## 7297 2 5134 0.03895598
## 7298 2 5134 0.03895598
## 7299 2 5134 0.03895598
## 7300 2 5134 0.03895598
## 7301 2 5134 0.03895598
## 7302 2 5134 0.03895598
## 7303 2 5134 0.03895598
## 7304 2 5134 0.03895598
## 7305 2 5134 0.03895598
## 7306 2 5134 0.03895598
## 7307 2 5134 0.03895598
## 7308 2 5134 0.03895598
## 7309 2 5134 0.03895598
## 7310 2 5134 0.03895598
## 7311 2 5134 0.03895598
## 7312 2 5134 0.03895598
## 7313 2 5134 0.03895598
## 7314 2 5134 0.03895598
## 7315 2 5134 0.03895598
## 7316 2 5134 0.03895598
## 7317 2 5134 0.03895598
## 7318 2 5134 0.03895598
## 7319 2 5134 0.03895598
## 7320 2 5134 0.03895598
## 7321 2 5134 0.03895598
## 7322 2 5134 0.03895598
## 7323 2 5134 0.03895598
## 7324 2 5134 0.03895598
## 7325 2 5134 0.03895598
## 7326 2 5134 0.03895598
## 7327 2 5134 0.03895598
## 7328 2 5134 0.03895598
## 7329 2 5134 0.03895598
## 7330 2 5134 0.03895598
## 7331 2 5134 0.03895598
## 7332 2 5134 0.03895598
## 7333 2 5134 0.03895598
## 7334 2 5134 0.03895598
## 7335 2 5134 0.03895598
## 7336 2 5134 0.03895598
## 7337 2 5134 0.03895598
## 7338 2 5134 0.03895598
## 7339 2 5134 0.03895598
## 7340 2 5134 0.03895598
## 7341 2 5134 0.03895598
## 7342 2 5134 0.03895598
## 7343 2 5134 0.03895598
## 7344 2 5134 0.03895598
## 7345 2 5134 0.03895598
## 7346 2 5134 0.03895598
## 7347 2 5134 0.03895598
## 7348 2 5134 0.03895598
## 7349 2 5134 0.03895598
## 7350 2 5134 0.03895598
## 7351 2 5134 0.03895598
## 7352 2 5134 0.03895598
## 7353 2 5134 0.03895598
## 7354 2 5134 0.03895598
## 7355 2 5134 0.03895598
## 7356 2 5134 0.03895598
## 7357 2 5134 0.03895598
## 7358 2 5134 0.03895598
## 7359 2 5134 0.03895598
## 7360 2 5134 0.03895598
## 7361 2 5134 0.03895598
## 7362 2 5134 0.03895598
## 7363 2 5134 0.03895598
## 7364 2 5134 0.03895598
## 7365 2 5134 0.03895598
## 7366 2 5134 0.03895598
## 7367 2 5134 0.03895598
## 7368 2 5134 0.03895598
## 7369 2 5134 0.03895598
## 7370 2 5134 0.03895598
## 7371 2 5134 0.03895598
## 7372 2 5134 0.03895598
## 7373 2 5134 0.03895598
## 7374 2 5134 0.03895598
## 7375 2 5134 0.03895598
## 7376 2 5134 0.03895598
## 7377 2 5134 0.03895598
## 7378 2 5134 0.03895598
## 7379 2 5134 0.03895598
## 7380 2 5134 0.03895598
## 7381 2 5134 0.03895598
## 7382 2 5134 0.03895598
## 7383 2 5134 0.03895598
## 7384 2 5134 0.03895598
## 7385 2 5134 0.03895598
## 7386 2 5134 0.03895598
## 7387 2 5134 0.03895598
## 7388 2 5134 0.03895598
## 7389 2 5134 0.03895598
## 7390 2 5134 0.03895598
## 7391 2 5134 0.03895598
## 7392 2 5134 0.03895598
## 7393 2 5134 0.03895598
## 7394 2 5134 0.03895598
## 7395 2 5134 0.03895598
## 7396 2 5134 0.03895598
## 7397 2 5134 0.03895598
## 7398 2 5134 0.03895598
## 7399 2 5134 0.03895598
## 7400 2 5134 0.03895598
## 7401 2 5134 0.03895598
## 7402 2 5134 0.03895598
## 7403 2 5134 0.03895598
## 7404 2 5134 0.03895598
## 7405 2 5134 0.03895598
## 7406 2 5134 0.03895598
## 7407 2 5134 0.03895598
## 7408 2 5134 0.03895598
## 7409 2 5134 0.03895598
## 7410 2 5134 0.03895598
## 7411 2 5134 0.03895598
## 7412 2 5134 0.03895598
## 7413 2 5134 0.03895598
## 7414 2 5134 0.03895598
## 7415 2 5134 0.03895598
## 7416 2 5134 0.03895598
## 7417 2 5134 0.03895598
## 7418 2 5134 0.03895598
## 7419 2 5134 0.03895598
## 7420 2 5134 0.03895598
## 7421 2 5134 0.03895598
## 7422 2 5134 0.03895598
## 7423 2 5134 0.03895598
## 7424 2 5134 0.03895598
## 7425 2 5134 0.03895598
## 7426 2 5134 0.03895598
## 7427 2 5134 0.03895598
## 7428 2 5134 0.03895598
## 7429 2 5134 0.03895598
## 7430 2 5134 0.03895598
## 7431 2 5134 0.03895598
## 7432 2 5134 0.03895598
## 7433 2 5134 0.03895598
## 7434 2 5134 0.03895598
## 7435 2 5134 0.03895598
## 7436 2 5134 0.03895598
## 7437 2 5134 0.03895598
## 7438 2 5134 0.03895598
## 7439 2 5134 0.03895598
## 7440 2 5134 0.03895598
## 7441 2 5134 0.03895598
## 7442 2 5134 0.03895598
## 7443 2 5134 0.03895598
## 7444 2 5134 0.03895598
## 7445 2 5134 0.03895598
## 7446 2 5134 0.03895598
## 7447 2 5134 0.03895598
## 7448 2 5134 0.03895598
## 7449 2 5134 0.03895598
## 7450 2 5134 0.03895598
## 7451 2 5134 0.03895598
## 7452 2 5134 0.03895598
## 7453 2 5134 0.03895598
## 7454 2 5134 0.03895598
## 7455 2 5134 0.03895598
## 7456 2 5134 0.03895598
## 7457 2 5134 0.03895598
## 7458 2 5134 0.03895598
## 7459 2 5134 0.03895598
## 7460 2 5134 0.03895598
## 7461 2 5134 0.03895598
## 7462 2 5134 0.03895598
## 7463 2 5134 0.03895598
## 7464 2 5134 0.03895598
## 7465 2 5134 0.03895598
## 7466 2 5134 0.03895598
## 7467 2 5134 0.03895598
## 7468 2 5134 0.03895598
## 7469 2 5134 0.03895598
## 7470 2 5134 0.03895598
## 7471 2 5134 0.03895598
## 7472 2 5134 0.03895598
## 7473 2 5134 0.03895598
## 7474 2 5134 0.03895598
## 7475 2 5134 0.03895598
## 7476 2 5134 0.03895598
## 7477 2 5134 0.03895598
## 7478 2 5134 0.03895598
## 7479 2 5134 0.03895598
## 7480 2 5134 0.03895598
## 7481 2 5134 0.03895598
## 7482 2 5134 0.03895598
## 7483 2 5134 0.03895598
## 7484 2 5134 0.03895598
## 7485 2 5134 0.03895598
## 7486 2 5134 0.03895598
## 7487 2 5134 0.03895598
## 7488 2 5134 0.03895598
## 7489 2 5134 0.03895598
## 7490 2 5134 0.03895598
## 7491 1 5134 0.01947799
## 7492 1 5134 0.01947799
## 7493 1 5134 0.01947799
## 7494 1 5134 0.01947799
## 7495 1 5134 0.01947799
## 7496 1 5134 0.01947799
## 7497 1 5134 0.01947799
## 7498 1 5134 0.01947799
## 7499 1 5134 0.01947799
## 7500 1 5134 0.01947799
## 7501 1 5134 0.01947799
## 7502 1 5134 0.01947799
## 7503 1 5134 0.01947799
## 7504 1 5134 0.01947799
## 7505 1 5134 0.01947799
## 7506 1 5134 0.01947799
## 7507 1 5134 0.01947799
## 7508 1 5134 0.01947799
## 7509 1 5134 0.01947799
## 7510 1 5134 0.01947799
## 7511 1 5134 0.01947799
## 7512 1 5134 0.01947799
## 7513 1 5134 0.01947799
## 7514 1 5134 0.01947799
## 7515 1 5134 0.01947799
## 7516 1 5134 0.01947799
## 7517 1 5134 0.01947799
## 7518 1 5134 0.01947799
## 7519 1 5134 0.01947799
## 7520 1 5134 0.01947799
## 7521 1 5134 0.01947799
## 7522 1 5134 0.01947799
## 7523 1 5134 0.01947799
## 7524 1 5134 0.01947799
## 7525 1 5134 0.01947799
## 7526 1 5134 0.01947799
## 7527 1 5134 0.01947799
## 7528 1 5134 0.01947799
## 7529 1 5134 0.01947799
## 7530 1 5134 0.01947799
## 7531 1 5134 0.01947799
## 7532 1 5134 0.01947799
## 7533 1 5134 0.01947799
## 7534 1 5134 0.01947799
## 7535 1 5134 0.01947799
## 7536 1 5134 0.01947799
## 7537 1 5134 0.01947799
## 7538 1 5134 0.01947799
## 7539 1 5134 0.01947799
## 7540 1 5134 0.01947799
## 7541 1 5134 0.01947799
## 7542 1 5134 0.01947799
## 7543 1 5134 0.01947799
## 7544 1 5134 0.01947799
## 7545 1 5134 0.01947799
## 7546 1 5134 0.01947799
## 7547 1 5134 0.01947799
## 7548 1 5134 0.01947799
## 7549 1 5134 0.01947799
## 7550 1 5134 0.01947799
## 7551 1 5134 0.01947799
## 7552 1 5134 0.01947799
## 7553 1 5134 0.01947799
## 7554 1 5134 0.01947799
## 7555 1 5134 0.01947799
## 7556 1 5134 0.01947799
## 7557 1 5134 0.01947799
## 7558 1 5134 0.01947799
## 7559 1 5134 0.01947799
## 7560 1 5134 0.01947799
## 7561 1 5134 0.01947799
## 7562 1 5134 0.01947799
## 7563 1 5134 0.01947799
## 7564 1 5134 0.01947799
## 7565 1 5134 0.01947799
## 7566 1 5134 0.01947799
## 7567 1 5134 0.01947799
## 7568 1 5134 0.01947799
## 7569 1 5134 0.01947799
## 7570 1 5134 0.01947799
## 7571 1 5134 0.01947799
## 7572 1 5134 0.01947799
## 7573 1 5134 0.01947799
## 7574 1 5134 0.01947799
## 7575 1 5134 0.01947799
## 7576 1 5134 0.01947799
## 7577 1 5134 0.01947799
## 7578 1 5134 0.01947799
## 7579 1 5134 0.01947799
## 7580 1 5134 0.01947799
## 7581 1 5134 0.01947799
## 7582 1 5134 0.01947799
## 7583 1 5134 0.01947799
## 7584 1 5134 0.01947799
## 7585 1 5134 0.01947799
## 7586 1 5134 0.01947799
## 7587 1 5134 0.01947799
## 7588 1 5134 0.01947799
## 7589 1 5134 0.01947799
## 7590 1 5134 0.01947799
## 7591 1 5134 0.01947799
## 7592 1 5134 0.01947799
## 7593 1 5134 0.01947799
## 7594 1 5134 0.01947799
## 7595 1 5134 0.01947799
## 7596 1 5134 0.01947799
## 7597 1 5134 0.01947799
## 7598 1 5134 0.01947799
## 7599 1 5134 0.01947799
## 7600 1 5134 0.01947799
## 7601 1 5134 0.01947799
## 7602 1 5134 0.01947799
## 7603 1 5134 0.01947799
## 7604 1 5134 0.01947799
## 7605 1 5134 0.01947799
## 7606 1 5134 0.01947799
## 7607 1 5134 0.01947799
## 7608 1 5134 0.01947799
## 7609 1 5134 0.01947799
## 7610 1 5134 0.01947799
## 7611 1 5134 0.01947799
## 7612 1 5134 0.01947799
## 7613 1 5134 0.01947799
## 7614 1 5134 0.01947799
## 7615 1 5134 0.01947799
## 7616 1 5134 0.01947799
## 7617 1 5134 0.01947799
## 7618 1 5134 0.01947799
## 7619 1 5134 0.01947799
## 7620 1 5134 0.01947799
## 7621 1 5134 0.01947799
## 7622 1 5134 0.01947799
## 7623 1 5134 0.01947799
## 7624 1 5134 0.01947799
## 7625 1 5134 0.01947799
## 7626 1 5134 0.01947799
## 7627 1 5134 0.01947799
## 7628 1 5134 0.01947799
## 7629 1 5134 0.01947799
## 7630 1 5134 0.01947799
## 7631 1 5134 0.01947799
## 7632 1 5134 0.01947799
## 7633 1 5134 0.01947799
## 7634 1 5134 0.01947799
## 7635 1 5134 0.01947799
## 7636 1 5134 0.01947799
## 7637 1 5134 0.01947799
## 7638 1 5134 0.01947799
## 7639 1 5134 0.01947799
## 7640 1 5134 0.01947799
## 7641 1 5134 0.01947799
## 7642 1 5134 0.01947799
## 7643 1 5134 0.01947799
## 7644 1 5134 0.01947799
## 7645 1 5134 0.01947799
## 7646 1 5134 0.01947799
## 7647 1 5134 0.01947799
## 7648 1 5134 0.01947799
## 7649 1 5134 0.01947799
## 7650 1 5134 0.01947799
## 7651 1 5134 0.01947799
## 7652 1 5134 0.01947799
## 7653 1 5134 0.01947799
## 7654 1 5134 0.01947799
## 7655 1 5134 0.01947799
## 7656 1 5134 0.01947799
## 7657 1 5134 0.01947799
## 7658 1 5134 0.01947799
## 7659 1 5134 0.01947799
## 7660 1 5134 0.01947799
## 7661 1 5134 0.01947799
## 7662 1 5134 0.01947799
## 7663 1 5134 0.01947799
## 7664 1 5134 0.01947799
## 7665 1 5134 0.01947799
## 7666 1 5134 0.01947799
## 7667 1 5134 0.01947799
## 7668 1 5134 0.01947799
## 7669 1 5134 0.01947799
## 7670 1 5134 0.01947799
## 7671 1 5134 0.01947799
## 7672 1 5134 0.01947799
## 7673 1 5134 0.01947799
## 7674 1 5134 0.01947799
## 7675 1 5134 0.01947799
## 7676 1 5134 0.01947799
## 7677 1 5134 0.01947799
## 7678 1 5134 0.01947799
## 7679 1 5134 0.01947799
## 7680 1 5134 0.01947799
## 7681 1 5134 0.01947799
## 7682 1 5134 0.01947799
## 7683 1 5134 0.01947799
## 7684 1 5134 0.01947799
## 7685 1 5134 0.01947799
## 7686 1 5134 0.01947799
## 7687 1 5134 0.01947799
## 7688 1 5134 0.01947799
## 7689 1 5134 0.01947799
## 7690 1 5134 0.01947799
## 7691 1 5134 0.01947799
## 7692 1 5134 0.01947799
## 7693 1 5134 0.01947799
## 7694 1 5134 0.01947799
## 7695 1 5134 0.01947799
## 7696 1 5134 0.01947799
## 7697 1 5134 0.01947799
## 7698 1 5134 0.01947799
## 7699 1 5134 0.01947799
## 7700 1 5134 0.01947799
## 7701 1 5134 0.01947799
## 7702 1 5134 0.01947799
## 7703 1 5134 0.01947799
## 7704 1 5134 0.01947799
## 7705 1 5134 0.01947799
## 7706 1 5134 0.01947799
## 7707 1 5134 0.01947799
## 7708 1 5134 0.01947799
## 7709 1 5134 0.01947799
## 7710 1 5134 0.01947799
## 7711 1 5134 0.01947799
## 7712 1 5134 0.01947799
## 7713 1 5134 0.01947799
## 7714 1 5134 0.01947799
## 7715 1 5134 0.01947799
## 7716 1 5134 0.01947799
## 7717 1 5134 0.01947799
## 7718 1 5134 0.01947799
## 7719 1 5134 0.01947799
## 7720 1 5134 0.01947799
## 7721 1 5134 0.01947799
## 7722 1 5134 0.01947799
## 7723 1 5134 0.01947799
## 7724 1 5134 0.01947799
## 7725 1 5134 0.01947799
## 7726 1 5134 0.01947799
## 7727 1 5134 0.01947799
## 7728 1 5134 0.01947799
## 7729 1 5134 0.01947799
## 7730 1 5134 0.01947799
## 7731 1 5134 0.01947799
## 7732 1 5134 0.01947799
## 7733 1 5134 0.01947799
## 7734 1 5134 0.01947799
## 7735 1 5134 0.01947799
## 7736 1 5134 0.01947799
## 7737 1 5134 0.01947799
## 7738 1 5134 0.01947799
## 7739 1 5134 0.01947799
## 7740 1 5134 0.01947799
## 7741 1 5134 0.01947799
## 7742 1 5134 0.01947799
## 7743 1 5134 0.01947799
## 7744 1 5134 0.01947799
## 7745 1 5134 0.01947799
## 7746 1 5134 0.01947799
## 7747 1 5134 0.01947799
## 7748 1 5134 0.01947799
## 7749 1 5134 0.01947799
## 7750 1 5134 0.01947799
## 7751 1 5134 0.01947799
## 7752 1 5134 0.01947799
## 7753 1 5134 0.01947799
## 7754 1 5134 0.01947799
## 7755 1 5134 0.01947799
## 7756 1 5134 0.01947799
## 7757 1 5134 0.01947799
## 7758 1 5134 0.01947799
## 7759 1 5134 0.01947799
## 7760 1 5134 0.01947799
## 7761 1 5134 0.01947799
## 7762 1 5134 0.01947799
## 7763 1 5134 0.01947799
## 7764 1 5134 0.01947799
## 7765 1 5134 0.01947799
## 7766 1 5134 0.01947799
## 7767 1 5134 0.01947799
## 7768 1 5134 0.01947799
## 7769 1 5134 0.01947799
## 7770 1 5134 0.01947799
## 7771 1 5134 0.01947799
## 7772 1 5134 0.01947799
## 7773 1 5134 0.01947799
## 7774 1 5134 0.01947799
## 7775 1 5134 0.01947799
## 7776 1 5134 0.01947799
## 7777 1 5134 0.01947799
## 7778 1 5134 0.01947799
## 7779 1 5134 0.01947799
## 7780 1 5134 0.01947799
## 7781 1 5134 0.01947799
## 7782 1 5134 0.01947799
## 7783 1 5134 0.01947799
## 7784 1 5134 0.01947799
## 7785 1 5134 0.01947799
## 7786 1 5134 0.01947799
## 7787 1 5134 0.01947799
## 7788 1 5134 0.01947799
## 7789 1 5134 0.01947799
## 7790 1 5134 0.01947799
## 7791 1 5134 0.01947799
## 7792 1 5134 0.01947799
## 7793 1 5134 0.01947799
## 7794 1 5134 0.01947799
## 7795 1 5134 0.01947799
## 7796 1 5134 0.01947799
## 7797 1 5134 0.01947799
## 7798 1 5134 0.01947799
## 7799 1 5134 0.01947799
## 7800 1 5134 0.01947799
## 7801 1 5134 0.01947799
## 7802 1 5134 0.01947799
## 7803 1 5134 0.01947799
## 7804 1 5134 0.01947799
## 7805 1 5134 0.01947799
## 7806 1 5134 0.01947799
## 7807 1 5134 0.01947799
## 7808 1 5134 0.01947799
## 7809 1 5134 0.01947799
## 7810 1 5134 0.01947799
## 7811 1 5134 0.01947799
## 7812 1 5134 0.01947799
## 7813 1 5134 0.01947799
## 7814 1 5134 0.01947799
## 7815 1 5134 0.01947799
## 7816 1 5134 0.01947799
## 7817 1 5134 0.01947799
## 7818 1 5134 0.01947799
## 7819 1 5134 0.01947799
## 7820 1 5134 0.01947799
## 7821 1 5134 0.01947799
## 7822 1 5134 0.01947799
## 7823 1 5134 0.01947799
## 7824 1 5134 0.01947799
## 7825 1 5134 0.01947799
## 7826 1 5134 0.01947799
## 7827 1 5134 0.01947799
## 7828 1 5134 0.01947799
## 7829 1 5134 0.01947799
## 7830 1 5134 0.01947799
## 7831 1 5134 0.01947799
## 7832 1 5134 0.01947799
## 7833 1 5134 0.01947799
## 7834 1 5134 0.01947799
## 7835 1 5134 0.01947799
## 7836 1 5134 0.01947799
## 7837 1 5134 0.01947799
## 7838 1 5134 0.01947799
## 7839 1 5134 0.01947799
## 7840 1 5134 0.01947799
## 7841 1 5134 0.01947799
## 7842 1 5134 0.01947799
## 7843 1 5134 0.01947799
## 7844 1 5134 0.01947799
## 7845 1 5134 0.01947799
## 7846 1 5134 0.01947799
## 7847 1 5134 0.01947799
## 7848 1 5134 0.01947799
## 7849 1 5134 0.01947799
## 7850 1 5134 0.01947799
## 7851 1 5134 0.01947799
## 7852 1 5134 0.01947799
## 7853 1 5134 0.01947799
## 7854 1 5134 0.01947799
## 7855 1 5134 0.01947799
## 7856 1 5134 0.01947799
## 7857 1 5134 0.01947799
## 7858 1 5134 0.01947799
## 7859 1 5134 0.01947799
## 7860 1 5134 0.01947799
## 7861 1 5134 0.01947799
## 7862 1 5134 0.01947799
## 7863 1 5134 0.01947799
## 7864 1 5134 0.01947799
## 7865 1 5134 0.01947799
## 7866 1 5134 0.01947799
## 7867 1 5134 0.01947799
## 7868 1 5134 0.01947799
## 7869 1 5134 0.01947799
## 7870 1 5134 0.01947799
## 7871 1 5134 0.01947799
## 7872 1 5134 0.01947799
## 7873 1 5134 0.01947799
## 7874 1 5134 0.01947799
## 7875 1 5134 0.01947799
## 7876 1 5134 0.01947799
## 7877 1 5134 0.01947799
## 7878 1 5134 0.01947799
## 7879 1 5134 0.01947799
## 7880 1 5134 0.01947799
## 7881 1 5134 0.01947799
## 7882 1 5134 0.01947799
## 7883 1 5134 0.01947799
## 7884 1 5134 0.01947799
## 7885 1 5134 0.01947799
## 7886 1 5134 0.01947799
## 7887 1 5134 0.01947799
## 7888 1 5134 0.01947799
## 7889 1 5134 0.01947799
## 7890 1 5134 0.01947799
## 7891 1 5134 0.01947799
## 7892 1 5134 0.01947799
## 7893 1 5134 0.01947799
## 7894 1 5134 0.01947799
## 7895 1 5134 0.01947799
## 7896 1 5134 0.01947799
## 7897 1 5134 0.01947799
## 7898 1 5134 0.01947799
## 7899 1 5134 0.01947799
## 7900 1 5134 0.01947799
## 7901 1 5134 0.01947799
## 7902 1 5134 0.01947799
## 7903 1 5134 0.01947799
## 7904 1 5134 0.01947799
## 7905 1 5134 0.01947799
## 7906 1 5134 0.01947799
## 7907 1 5134 0.01947799
## 7908 1 5134 0.01947799
## 7909 1 5134 0.01947799
## 7910 1 5134 0.01947799
## 7911 1 5134 0.01947799
## 7912 1 5134 0.01947799
## 7913 1 5134 0.01947799
## 7914 1 5134 0.01947799
## 7915 1 5134 0.01947799
## 7916 1 5134 0.01947799
## 7917 1 5134 0.01947799
## 7918 1 5134 0.01947799
## 7919 1 5134 0.01947799
## 7920 1 5134 0.01947799
## 7921 1 5134 0.01947799
## 7922 1 5134 0.01947799
## 7923 1 5134 0.01947799
## 7924 1 5134 0.01947799
## 7925 1 5134 0.01947799
## 7926 1 5134 0.01947799
## 7927 1 5134 0.01947799
## 7928 1 5134 0.01947799
## 7929 1 5134 0.01947799
## 7930 1 5134 0.01947799
## 7931 1 5134 0.01947799
## 7932 1 5134 0.01947799
## 7933 1 5134 0.01947799
## 7934 1 5134 0.01947799
## 7935 1 5134 0.01947799
## 7936 1 5134 0.01947799
## 7937 1 5134 0.01947799
## 7938 1 5134 0.01947799
## 7939 1 5134 0.01947799
## 7940 1 5134 0.01947799
## 7941 1 5134 0.01947799
## 7942 1 5134 0.01947799
## 7943 1 5134 0.01947799
## 7944 1 5134 0.01947799
## 7945 1 5134 0.01947799
## 7946 1 5134 0.01947799
## 7947 1 5134 0.01947799
## 7948 1 5134 0.01947799
## 7949 1 5134 0.01947799
## 7950 1 5134 0.01947799
## 7951 1 5134 0.01947799
## 7952 1 5134 0.01947799
## 7953 1 5134 0.01947799
## 7954 1 5134 0.01947799
## 7955 1 5134 0.01947799
## 7956 1 5134 0.01947799
## 7957 1 5134 0.01947799
## 7958 1 5134 0.01947799
## 7959 1 5134 0.01947799
## 7960 1 5134 0.01947799
## 7961 1 5134 0.01947799
## 7962 1 5134 0.01947799
## 7963 1 5134 0.01947799
## 7964 1 5134 0.01947799
## 7965 1 5134 0.01947799
## 7966 1 5134 0.01947799
## 7967 1 5134 0.01947799
## 7968 1 5134 0.01947799
## 7969 1 5134 0.01947799
## 7970 1 5134 0.01947799
## 7971 1 5134 0.01947799
## 7972 1 5134 0.01947799
## 7973 1 5134 0.01947799
## 7974 1 5134 0.01947799
## 7975 1 5134 0.01947799
## 7976 1 5134 0.01947799
## 7977 1 5134 0.01947799
## 7978 1 5134 0.01947799
## 7979 1 5134 0.01947799
## 7980 1 5134 0.01947799
## 7981 1 5134 0.01947799
## 7982 1 5134 0.01947799
## 7983 1 5134 0.01947799
## 7984 1 5134 0.01947799
## 7985 1 5134 0.01947799
## 7986 1 5134 0.01947799
## 7987 1 5134 0.01947799
## 7988 1 5134 0.01947799
## 7989 1 5134 0.01947799
## 7990 1 5134 0.01947799
## 7991 1 5134 0.01947799
## 7992 1 5134 0.01947799
## 7993 1 5134 0.01947799
## 7994 1 5134 0.01947799
## 7995 1 5134 0.01947799
## 7996 1 5134 0.01947799
## 7997 1 5134 0.01947799
## 7998 1 5134 0.01947799
## 7999 1 5134 0.01947799
## 8000 1 5134 0.01947799
## 8001 1 5134 0.01947799
## 8002 1 5134 0.01947799
## 8003 1 5134 0.01947799
## 8004 1 5134 0.01947799
## 8005 1 5134 0.01947799
## 8006 1 5134 0.01947799
## 8007 1 5134 0.01947799
## 8008 1 5134 0.01947799
## 8009 1 5134 0.01947799
## 8010 1 5134 0.01947799
## 8011 1 5134 0.01947799
## 8012 1 5134 0.01947799
## 8013 1 5134 0.01947799
## 8014 1 5134 0.01947799
## 8015 1 5134 0.01947799
## 8016 1 5134 0.01947799
## 8017 1 5134 0.01947799
## 8018 1 5134 0.01947799
## 8019 1 5134 0.01947799
## 8020 1 5134 0.01947799
## 8021 1 5134 0.01947799
## 8022 1 5134 0.01947799
## 8023 1 5134 0.01947799
## 8024 1 5134 0.01947799
## 8025 1 5134 0.01947799
## 8026 1 5134 0.01947799
## 8027 1 5134 0.01947799
## 8028 1 5134 0.01947799
## 8029 1 5134 0.01947799
## 8030 1 5134 0.01947799
## 8031 1 5134 0.01947799
## 8032 1 5134 0.01947799
## 8033 1 5134 0.01947799
## 8034 1 5134 0.01947799
## 8035 1 5134 0.01947799
## 8036 1 5134 0.01947799
## 8037 1 5134 0.01947799
## 8038 1 5134 0.01947799
## 8039 1 5134 0.01947799
## 8040 1 5134 0.01947799
## 8041 1 5134 0.01947799
## 8042 1 5134 0.01947799
## 8043 1 5134 0.01947799
## 8044 1 5134 0.01947799
## 8045 1 5134 0.01947799
## 8046 1 5134 0.01947799
## 8047 1 5134 0.01947799
## 8048 1 5134 0.01947799
## 8049 1 5134 0.01947799
## 8050 1 5134 0.01947799
## 8051 1 5134 0.01947799
## 8052 1 5134 0.01947799
## 8053 1 5134 0.01947799
## 8054 1 5134 0.01947799
## 8055 1 5134 0.01947799
## 8056 1 5134 0.01947799
## 8057 1 5134 0.01947799
## 8058 1 5134 0.01947799
## 8059 1 5134 0.01947799
## 8060 1 5134 0.01947799
## 8061 1 5134 0.01947799
## 8062 1 5134 0.01947799
## 8063 1 5134 0.01947799
## 8064 1 5134 0.01947799
## 8065 1 5134 0.01947799
## 8066 1 5134 0.01947799
## 8067 1 5134 0.01947799
## 8068 1 5134 0.01947799
## 8069 1 5134 0.01947799
## 8070 1 5134 0.01947799
## 8071 1 5134 0.01947799
## 8072 1 5134 0.01947799
## 8073 1 5134 0.01947799
## 8074 1 5134 0.01947799
## 8075 1 5134 0.01947799
## 8076 1 5134 0.01947799
## 8077 1 5134 0.01947799
## 8078 1 5134 0.01947799
## 8079 1 5134 0.01947799
## 8080 1 5134 0.01947799
## 8081 1 5134 0.01947799
## 8082 1 5134 0.01947799
## 8083 1 5134 0.01947799
## 8084 1 5134 0.01947799
## 8085 1 5134 0.01947799
## 8086 1 5134 0.01947799
## 8087 1 5134 0.01947799
## 8088 1 5134 0.01947799
## 8089 1 5134 0.01947799
## 8090 1 5134 0.01947799
## 8091 1 5134 0.01947799
## 8092 1 5134 0.01947799
## 8093 1 5134 0.01947799
## 8094 1 5134 0.01947799
## 8095 1 5134 0.01947799
## 8096 1 5134 0.01947799
## 8097 1 5134 0.01947799
## 8098 1 5134 0.01947799
## 8099 1 5134 0.01947799
## 8100 1 5134 0.01947799
## 8101 1 5134 0.01947799
## 8102 1 5134 0.01947799
## 8103 1 5134 0.01947799
## 8104 1 5134 0.01947799
## 8105 1 5134 0.01947799
## 8106 1 5134 0.01947799
## 8107 1 5134 0.01947799
## 8108 1 5134 0.01947799
## 8109 1 5134 0.01947799
## 8110 1 5134 0.01947799
## 8111 1 5134 0.01947799
## 8112 1 5134 0.01947799
## 8113 1 5134 0.01947799
## 8114 1 5134 0.01947799
## 8115 1 5134 0.01947799
## 8116 1 5134 0.01947799
## 8117 1 5134 0.01947799
## 8118 1 5134 0.01947799
## 8119 1 5134 0.01947799
## 8120 1 5134 0.01947799
## 8121 1 5134 0.01947799
## 8122 1 5134 0.01947799
## 8123 1 5134 0.01947799
## 8124 1 5134 0.01947799
## 8125 1 5134 0.01947799
## 8126 1 5134 0.01947799
## 8127 1 5134 0.01947799
## 8128 1 5134 0.01947799
## 8129 1 5134 0.01947799
## 8130 1 5134 0.01947799
## 8131 1 5134 0.01947799
## 8132 1 5134 0.01947799
## 8133 1 5134 0.01947799
## 8134 1 5134 0.01947799
## 8135 1 5134 0.01947799
## 8136 1 5134 0.01947799
## 8137 1 5134 0.01947799
## 8138 1 5134 0.01947799
## 8139 1 5134 0.01947799
## 8140 1 5134 0.01947799
## 8141 1 5134 0.01947799
## 8142 1 5134 0.01947799
## 8143 1 5134 0.01947799
## 8144 1 5134 0.01947799
## 8145 1 5134 0.01947799
## 8146 1 5134 0.01947799
## 8147 1 5134 0.01947799
## 8148 1 5134 0.01947799
## 8149 1 5134 0.01947799
## 8150 1 5134 0.01947799
## 8151 1 5134 0.01947799
## 8152 1 5134 0.01947799
## 8153 1 5134 0.01947799
## 8154 1 5134 0.01947799
## 8155 1 5134 0.01947799
## 8156 1 5134 0.01947799
## 8157 1 5134 0.01947799
## 8158 1 5134 0.01947799
## 8159 1 5134 0.01947799
## 8160 1 5134 0.01947799
## 8161 1 5134 0.01947799
## 8162 1 5134 0.01947799
## 8163 1 5134 0.01947799
## 8164 1 5134 0.01947799
## 8165 1 5134 0.01947799
## 8166 1 5134 0.01947799
## 8167 1 5134 0.01947799
## 8168 1 5134 0.01947799
## 8169 1 5134 0.01947799
## 8170 1 5134 0.01947799
## 8171 1 5134 0.01947799
## 8172 1 5134 0.01947799
## 8173 1 5134 0.01947799
## 8174 1 5134 0.01947799
## 8175 1 5134 0.01947799
## 8176 1 5134 0.01947799
## 8177 1 5134 0.01947799
## 8178 1 5134 0.01947799
## 8179 1 5134 0.01947799
## 8180 1 5134 0.01947799
## 8181 1 5134 0.01947799
## 8182 1 5134 0.01947799
## 8183 1 5134 0.01947799
## 8184 1 5134 0.01947799
## 8185 1 5134 0.01947799
## 8186 1 5134 0.01947799
## 8187 1 5134 0.01947799
## 8188 1 5134 0.01947799
## 8189 1 5134 0.01947799
## 8190 1 5134 0.01947799
## 8191 1 5134 0.01947799
## 8192 1 5134 0.01947799
## 8193 1 5134 0.01947799
## 8194 1 5134 0.01947799
## 8195 1 5134 0.01947799
## 8196 1 5134 0.01947799
## 8197 1 5134 0.01947799
## 8198 1 5134 0.01947799
## 8199 1 5134 0.01947799
## 8200 1 5134 0.01947799
## 8201 1 5134 0.01947799
## 8202 1 5134 0.01947799
## 8203 1 5134 0.01947799
## 8204 1 5134 0.01947799
## 8205 1 5134 0.01947799
## 8206 1 5134 0.01947799
## 8207 1 5134 0.01947799
## 8208 1 5134 0.01947799
## 8209 1 5134 0.01947799
## 8210 1 5134 0.01947799
## 8211 1 5134 0.01947799
## 8212 1 5134 0.01947799
## 8213 1 5134 0.01947799
## 8214 1 5134 0.01947799
## 8215 1 5134 0.01947799
## 8216 1 5134 0.01947799
## 8217 1 5134 0.01947799
## 8218 1 5134 0.01947799
## 8219 1 5134 0.01947799
## 8220 1 5134 0.01947799
## 8221 1 5134 0.01947799
## 8222 1 5134 0.01947799
## 8223 1 5134 0.01947799
## 8224 1 5134 0.01947799
## 8225 1 5134 0.01947799
## 8226 1 5134 0.01947799
## 8227 1 5134 0.01947799
## 8228 1 5134 0.01947799
## 8229 1 5134 0.01947799
## 8230 1 5134 0.01947799
## 8231 1 5134 0.01947799
## 8232 1 5134 0.01947799
## 8233 1 5134 0.01947799
## 8234 1 5134 0.01947799
## 8235 1 5134 0.01947799
## 8236 1 5134 0.01947799
## 8237 1 5134 0.01947799
## 8238 1 5134 0.01947799
## 8239 1 5134 0.01947799
## 8240 1 5134 0.01947799
## 8241 1 5134 0.01947799
## 8242 1 5134 0.01947799
## 8243 1 5134 0.01947799
## 8244 1 5134 0.01947799
## 8245 1 5134 0.01947799
## 8246 1 5134 0.01947799
## 8247 1 5134 0.01947799
## 8248 1 5134 0.01947799
## 8249 1 5134 0.01947799
## 8250 1 5134 0.01947799
## 8251 1 5134 0.01947799
## 8252 1 5134 0.01947799
## 8253 1 5134 0.01947799
## 8254 1 5134 0.01947799
## 8255 1 5134 0.01947799
## 8256 1 5134 0.01947799
## 8257 1 5134 0.01947799
## 8258 1 5134 0.01947799
## 8259 1 5134 0.01947799
## 8260 1 5134 0.01947799
## 8261 1 5134 0.01947799
## 8262 1 5134 0.01947799
## 8263 1 5134 0.01947799
## 8264 1 5134 0.01947799
## 8265 1 5134 0.01947799
## 8266 1 5134 0.01947799
## 8267 1 5134 0.01947799
## 8268 1 5134 0.01947799
## 8269 1 5134 0.01947799
## 8270 1 5134 0.01947799
## 8271 1 5134 0.01947799
## 8272 1 5134 0.01947799
## 8273 1 5134 0.01947799
## 8274 1 5134 0.01947799
## 8275 1 5134 0.01947799
## 8276 1 5134 0.01947799
## 8277 1 5134 0.01947799
## 8278 1 5134 0.01947799
## 8279 1 5134 0.01947799
## 8280 1 5134 0.01947799
## 8281 1 5134 0.01947799
## 8282 1 5134 0.01947799
## 8283 1 5134 0.01947799
## 8284 1 5134 0.01947799
## 8285 1 5134 0.01947799
## 8286 1 5134 0.01947799
## 8287 1 5134 0.01947799
## 8288 1 5134 0.01947799
## 8289 1 5134 0.01947799
## 8290 1 5134 0.01947799
## 8291 1 5134 0.01947799
## 8292 1 5134 0.01947799
## 8293 1 5134 0.01947799
## 8294 1 5134 0.01947799
## 8295 1 5134 0.01947799
## 8296 1 5134 0.01947799
## 8297 1 5134 0.01947799
## 8298 1 5134 0.01947799
## 8299 1 5134 0.01947799
## 8300 1 5134 0.01947799
## 8301 1 5134 0.01947799
## 8302 1 5134 0.01947799
## 8303 1 5134 0.01947799
## 8304 1 5134 0.01947799
## 8305 1 5134 0.01947799
## 8306 1 5134 0.01947799
## 8307 1 5134 0.01947799
## 8308 1 5134 0.01947799
## 8309 1 5134 0.01947799
## 8310 1 5134 0.01947799
## 8311 1 5134 0.01947799
## 8312 1 5134 0.01947799
## 8313 1 5134 0.01947799
## 8314 1 5134 0.01947799
## 8315 1 5134 0.01947799
## 8316 1 5134 0.01947799
## 8317 1 5134 0.01947799
## 8318 1 5134 0.01947799
## 8319 1 5134 0.01947799
## 8320 1 5134 0.01947799
## 8321 1 5134 0.01947799
## 8322 1 5134 0.01947799
## 8323 1 5134 0.01947799
## 8324 1 5134 0.01947799
## 8325 1 5134 0.01947799
## 8326 1 5134 0.01947799
## 8327 1 5134 0.01947799
## 8328 1 5134 0.01947799
## 8329 1 5134 0.01947799
## 8330 1 5134 0.01947799
## 8331 1 5134 0.01947799
## 8332 1 5134 0.01947799
## 8333 1 5134 0.01947799
## 8334 1 5134 0.01947799
## 8335 1 5134 0.01947799
## 8336 1 5134 0.01947799
## 8337 1 5134 0.01947799
## 8338 1 5134 0.01947799
## 8339 1 5134 0.01947799
## 8340 1 5134 0.01947799
## 8341 1 5134 0.01947799
## 8342 1 5134 0.01947799
## 8343 1 5134 0.01947799
## 8344 1 5134 0.01947799
## 8345 1 5134 0.01947799
## 8346 1 5134 0.01947799
## 8347 1 5134 0.01947799
## 8348 1 5134 0.01947799
## 8349 1 5134 0.01947799
## 8350 1 5134 0.01947799
## 8351 1 5134 0.01947799
## 8352 1 5134 0.01947799
## 8353 1 5134 0.01947799
## 8354 1 5134 0.01947799
## 8355 1 5134 0.01947799
## 8356 1 5134 0.01947799
## 8357 1 5134 0.01947799
## 8358 1 5134 0.01947799
## 8359 1 5134 0.01947799
## 8360 1 5134 0.01947799
## 8361 1 5134 0.01947799
## 8362 1 5134 0.01947799
## 8363 1 5134 0.01947799
## 8364 1 5134 0.01947799
## 8365 1 5134 0.01947799
## 8366 1 5134 0.01947799
## 8367 1 5134 0.01947799
## 8368 1 5134 0.01947799
## 8369 1 5134 0.01947799
## 8370 1 5134 0.01947799
## 8371 1 5134 0.01947799
## 8372 1 5134 0.01947799
## 8373 1 5134 0.01947799
## 8374 1 5134 0.01947799
## 8375 1 5134 0.01947799
## 8376 1 5134 0.01947799
## 8377 1 5134 0.01947799
## 8378 1 5134 0.01947799
## 8379 1 5134 0.01947799
## 8380 1 5134 0.01947799
## 8381 1 5134 0.01947799
## 8382 1 5134 0.01947799
## 8383 1 5134 0.01947799
## 8384 1 5134 0.01947799
## 8385 1 5134 0.01947799
## 8386 1 5134 0.01947799
## 8387 1 5134 0.01947799
## 8388 1 5134 0.01947799
## 8389 1 5134 0.01947799
## 8390 1 5134 0.01947799
## 8391 1 5134 0.01947799
## 8392 1 5134 0.01947799
## 8393 1 5134 0.01947799
## 8394 1 5134 0.01947799
## 8395 1 5134 0.01947799
## 8396 1 5134 0.01947799
## 8397 1 5134 0.01947799
## 8398 1 5134 0.01947799
## 8399 1 5134 0.01947799
## 8400 1 5134 0.01947799
## 8401 1 5134 0.01947799
## 8402 1 5134 0.01947799
## 8403 1 5134 0.01947799
## 8404 1 5134 0.01947799
## 8405 1 5134 0.01947799
## 8406 1 5134 0.01947799
## 8407 1 5134 0.01947799
## 8408 1 5134 0.01947799
## 8409 1 5134 0.01947799
## 8410 1 5134 0.01947799
## 8411 1 5134 0.01947799
## 8412 1 5134 0.01947799
## 8413 1 5134 0.01947799
## 8414 1 5134 0.01947799
## 8415 1 5134 0.01947799
## 8416 1 5134 0.01947799
## 8417 1 5134 0.01947799
## 8418 1 5134 0.01947799
## 8419 1 5134 0.01947799
## 8420 1 5134 0.01947799
## 8421 1 5134 0.01947799
## 8422 1 5134 0.01947799
## 8423 1 5134 0.01947799
## 8424 1 5134 0.01947799
## 8425 1 5134 0.01947799
## 8426 1 5134 0.01947799
## 8427 1 5134 0.01947799
## 8428 1 5134 0.01947799
## 8429 1 5134 0.01947799
## 8430 1 5134 0.01947799
## 8431 1 5134 0.01947799
## 8432 1 5134 0.01947799
## 8433 1 5134 0.01947799
## 8434 1 5134 0.01947799
## 8435 1 5134 0.01947799
## 8436 1 5134 0.01947799
## 8437 1 5134 0.01947799
## 8438 1 5134 0.01947799
## 8439 1 5134 0.01947799
## 8440 1 5134 0.01947799
## 8441 1 5134 0.01947799
## 8442 1 5134 0.01947799
## 8443 1 5134 0.01947799
## 8444 1 5134 0.01947799
## 8445 1 5134 0.01947799
## 8446 1 5134 0.01947799
## 8447 1 5134 0.01947799
## 8448 1 5134 0.01947799
## 8449 1 5134 0.01947799
## 8450 1 5134 0.01947799
## 8451 1 5134 0.01947799
## 8452 1 5134 0.01947799
## 8453 1 5134 0.01947799
## 8454 1 5134 0.01947799
## 8455 1 5134 0.01947799
## 8456 1 5134 0.01947799
## 8457 1 5134 0.01947799
## 8458 1 5134 0.01947799
## 8459 1 5134 0.01947799
## 8460 1 5134 0.01947799
## 8461 1 5134 0.01947799
## 8462 1 5134 0.01947799
## 8463 1 5134 0.01947799
## 8464 1 5134 0.01947799
## 8465 1 5134 0.01947799
## 8466 1 5134 0.01947799
## 8467 1 5134 0.01947799
## 8468 1 5134 0.01947799
## 8469 1 5134 0.01947799
## 8470 1 5134 0.01947799
## 8471 1 5134 0.01947799
## 8472 1 5134 0.01947799
## 8473 1 5134 0.01947799
## 8474 1 5134 0.01947799
## 8475 1 5134 0.01947799
## 8476 1 5134 0.01947799
## 8477 1 5134 0.01947799
## 8478 1 5134 0.01947799
## 8479 1 5134 0.01947799
## 8480 1 5134 0.01947799
## 8481 1 5134 0.01947799
## 8482 1 5134 0.01947799
## 8483 1 5134 0.01947799
## 8484 1 5134 0.01947799
## 8485 1 5134 0.01947799
## 8486 1 5134 0.01947799
## 8487 1 5134 0.01947799
## 8488 1 5134 0.01947799
## 8489 1 5134 0.01947799
## 8490 1 5134 0.01947799
## 8491 1 5134 0.01947799
## 8492 1 5134 0.01947799
## 8493 1 5134 0.01947799
## 8494 1 5134 0.01947799
## 8495 1 5134 0.01947799
## 8496 1 5134 0.01947799
## 8497 1 5134 0.01947799
## 8498 1 5134 0.01947799
## 8499 1 5134 0.01947799
## 8500 1 5134 0.01947799
## 8501 1 5134 0.01947799
## 8502 1 5134 0.01947799
## 8503 1 5134 0.01947799
## 8504 1 5134 0.01947799
## 8505 1 5134 0.01947799
## 8506 1 5134 0.01947799
## 8507 1 5134 0.01947799
## 8508 1 5134 0.01947799
## 8509 1 5134 0.01947799
## 8510 1 5134 0.01947799
## 8511 1 5134 0.01947799
## 8512 1 5134 0.01947799
## 8513 1 5134 0.01947799
## 8514 1 5134 0.01947799
## 8515 1 5134 0.01947799
## 8516 1 5134 0.01947799
## 8517 1 5134 0.01947799
## 8518 1 5134 0.01947799
## 8519 1 5134 0.01947799
## 8520 1 5134 0.01947799
## 8521 1 5134 0.01947799
## 8522 1 5134 0.01947799
## 8523 1 5134 0.01947799
## 8524 1 5134 0.01947799
## 8525 1 5134 0.01947799
## 8526 1 5134 0.01947799
## 8527 1 5134 0.01947799
## 8528 1 5134 0.01947799
## 8529 1 5134 0.01947799
## 8530 1 5134 0.01947799
## 8531 1 5134 0.01947799
## 8532 1 5134 0.01947799
## 8533 1 5134 0.01947799
## 8534 1 5134 0.01947799
## 8535 1 5134 0.01947799
## 8536 1 5134 0.01947799
## 8537 1 5134 0.01947799
## 8538 1 5134 0.01947799
## 8539 1 5134 0.01947799
## 8540 1 5134 0.01947799
## 8541 1 5134 0.01947799
## 8542 1 5134 0.01947799
## 8543 1 5134 0.01947799
## 8544 1 5134 0.01947799
## 8545 1 5134 0.01947799
## 8546 1 5134 0.01947799
## 8547 1 5134 0.01947799
## 8548 1 5134 0.01947799
## 8549 1 5134 0.01947799
## 8550 1 5134 0.01947799
## 8551 1 5134 0.01947799
## 8552 1 5134 0.01947799
## 8553 1 5134 0.01947799
## 8554 1 5134 0.01947799
## 8555 1 5134 0.01947799
## 8556 1 5134 0.01947799
## 8557 1 5134 0.01947799
## 8558 1 5134 0.01947799
## 8559 1 5134 0.01947799
## 8560 1 5134 0.01947799
## 8561 1 5134 0.01947799
## 8562 1 5134 0.01947799
## 8563 1 5134 0.01947799
## 8564 1 5134 0.01947799
## 8565 1 5134 0.01947799
## 8566 1 5134 0.01947799
## 8567 1 5134 0.01947799
## 8568 1 5134 0.01947799
## 8569 1 5134 0.01947799
## 8570 1 5134 0.01947799
## 8571 1 5134 0.01947799
## 8572 1 5134 0.01947799
## 8573 1 5134 0.01947799
## 8574 1 5134 0.01947799
## 8575 1 5134 0.01947799
## 8576 1 5134 0.01947799
## 8577 1 5134 0.01947799
## 8578 1 5134 0.01947799
## 8579 1 5134 0.01947799
## 8580 1 5134 0.01947799
## 8581 1 5134 0.01947799
## 8582 1 5134 0.01947799
## 8583 1 5134 0.01947799
## 8584 1 5134 0.01947799
## 8585 1 5134 0.01947799
## 8586 1 5134 0.01947799
## 8587 1 5134 0.01947799
## 8588 1 5134 0.01947799
## 8589 1 5134 0.01947799
## 8590 1 5134 0.01947799
## 8591 1 5134 0.01947799
## 8592 1 5134 0.01947799
## 8593 1 5134 0.01947799
## 8594 1 5134 0.01947799
## 8595 1 5134 0.01947799
## 8596 1 5134 0.01947799
## 8597 1 5134 0.01947799
## 8598 1 5134 0.01947799
## 8599 1 5134 0.01947799
## 8600 1 5134 0.01947799
## 8601 1 5134 0.01947799
## 8602 1 5134 0.01947799
## 8603 1 5134 0.01947799
## 8604 1 5134 0.01947799
## 8605 1 5134 0.01947799
## 8606 1 5134 0.01947799
## 8607 1 5134 0.01947799
## 8608 1 5134 0.01947799
## 8609 1 5134 0.01947799
## 8610 1 5134 0.01947799
## 8611 1 5134 0.01947799
## 8612 1 5134 0.01947799
## 8613 1 5134 0.01947799
## 8614 1 5134 0.01947799
## 8615 1 5134 0.01947799
## 8616 1 5134 0.01947799
## 8617 1 5134 0.01947799
## 8618 1 5134 0.01947799
## 8619 1 5134 0.01947799
## 8620 1 5134 0.01947799
## 8621 1 5134 0.01947799
## 8622 1 5134 0.01947799
## 8623 1 5134 0.01947799
## 8624 1 5134 0.01947799
## 8625 1 5134 0.01947799
## 8626 1 5134 0.01947799
## 8627 1 5134 0.01947799
## 8628 1 5134 0.01947799
## 8629 1 5134 0.01947799
## 8630 1 5134 0.01947799
## 8631 1 5134 0.01947799
## 8632 1 5134 0.01947799
## 8633 1 5134 0.01947799
## 8634 1 5134 0.01947799
## 8635 1 5134 0.01947799
## 8636 1 5134 0.01947799
## 8637 1 5134 0.01947799
## 8638 1 5134 0.01947799
## 8639 1 5134 0.01947799
## 8640 1 5134 0.01947799
## 8641 1 5134 0.01947799
## 8642 1 5134 0.01947799
## 8643 1 5134 0.01947799
## 8644 1 5134 0.01947799
## 8645 1 5134 0.01947799
## 8646 1 5134 0.01947799
## 8647 1 5134 0.01947799
## 8648 1 5134 0.01947799
## 8649 1 5134 0.01947799
## 8650 1 5134 0.01947799
## 8651 1 5134 0.01947799
## 8652 1 5134 0.01947799
## 8653 1 5134 0.01947799
## 8654 1 5134 0.01947799
## 8655 1 5134 0.01947799
## 8656 1 5134 0.01947799
## 8657 1 5134 0.01947799
## 8658 1 5134 0.01947799
## 8659 1 5134 0.01947799
## 8660 1 5134 0.01947799
## 8661 1 5134 0.01947799
## 8662 1 5134 0.01947799
## 8663 1 5134 0.01947799
## 8664 1 5134 0.01947799
## 8665 1 5134 0.01947799
## 8666 1 5134 0.01947799
## 8667 1 5134 0.01947799
## 8668 1 5134 0.01947799
## 8669 1 5134 0.01947799
## 8670 1 5134 0.01947799
## 8671 1 5134 0.01947799
## 8672 1 5134 0.01947799
## 8673 1 5134 0.01947799
## 8674 1 5134 0.01947799
## 8675 1 5134 0.01947799
## 8676 1 5134 0.01947799
## 8677 1 5134 0.01947799
## 8678 1 5134 0.01947799
## 8679 1 5134 0.01947799
## 8680 1 5134 0.01947799
## 8681 1 5134 0.01947799
## 8682 1 5134 0.01947799
## 8683 1 5134 0.01947799
## 8684 1 5134 0.01947799
## 8685 1 5134 0.01947799
## 8686 1 5134 0.01947799
## 8687 1 5134 0.01947799
## 8688 1 5134 0.01947799
## 8689 1 5134 0.01947799
## 8690 1 5134 0.01947799
## 8691 1 5134 0.01947799
## 8692 1 5134 0.01947799
## 8693 1 5134 0.01947799
## 8694 1 5134 0.01947799
## 8695 1 5134 0.01947799
## 8696 1 5134 0.01947799
## 8697 1 5134 0.01947799
## 8698 1 5134 0.01947799
## 8699 1 5134 0.01947799
## 8700 1 5134 0.01947799
## 8701 1 5134 0.01947799
## 8702 1 5134 0.01947799
## 8703 1 5134 0.01947799
## 8704 1 5134 0.01947799
## 8705 1 5134 0.01947799
## 8706 1 5134 0.01947799
## 8707 1 5134 0.01947799
## 8708 1 5134 0.01947799
## 8709 1 5134 0.01947799
## 8710 1 5134 0.01947799
## 8711 1 5134 0.01947799
## 8712 1 5134 0.01947799
## 8713 1 5134 0.01947799
## 8714 1 5134 0.01947799
## 8715 1 5134 0.01947799
## 8716 1 5134 0.01947799
## 8717 1 5134 0.01947799
## 8718 1 5134 0.01947799
## 8719 1 5134 0.01947799
## 8720 1 5134 0.01947799
## 8721 1 5134 0.01947799
## 8722 1 5134 0.01947799
## 8723 1 5134 0.01947799
## 8724 1 5134 0.01947799
## 8725 1 5134 0.01947799
## 8726 1 5134 0.01947799
## 8727 1 5134 0.01947799
## 8728 1 5134 0.01947799
## 8729 1 5134 0.01947799
## 8730 1 5134 0.01947799
## 8731 1 5134 0.01947799
## 8732 1 5134 0.01947799
## 8733 1 5134 0.01947799
## 8734 1 5134 0.01947799
## 8735 1 5134 0.01947799
## 8736 1 5134 0.01947799
## 8737 1 5134 0.01947799
## 8738 1 5134 0.01947799
## 8739 1 5134 0.01947799
## 8740 1 5134 0.01947799
## 8741 1 5134 0.01947799
## 8742 1 5134 0.01947799
## 8743 1 5134 0.01947799
## 8744 1 5134 0.01947799
## 8745 1 5134 0.01947799
## 8746 1 5134 0.01947799
## 8747 1 5134 0.01947799
## 8748 1 5134 0.01947799
## 8749 1 5134 0.01947799
## 8750 1 5134 0.01947799
## 8751 1 5134 0.01947799
## 8752 1 5134 0.01947799
## 8753 1 5134 0.01947799
## 8754 1 5134 0.01947799
## 8755 1 5134 0.01947799
## 8756 1 5134 0.01947799
## 8757 1 5134 0.01947799
## 8758 1 5134 0.01947799
## 8759 1 5134 0.01947799
## 8760 1 5134 0.01947799
## 8761 1 5134 0.01947799
## 8762 1 5134 0.01947799
## 8763 1 5134 0.01947799
## 8764 1 5134 0.01947799
## 8765 1 5134 0.01947799
## 8766 1 5134 0.01947799
## 8767 1 5134 0.01947799
## 8768 1 5134 0.01947799
## 8769 1 5134 0.01947799
## 8770 1 5134 0.01947799
## 8771 1 5134 0.01947799
## 8772 1 5134 0.01947799
## 8773 1 5134 0.01947799
## 8774 1 5134 0.01947799
## 8775 1 5134 0.01947799
## 8776 1 5134 0.01947799
## 8777 1 5134 0.01947799
## 8778 1 5134 0.01947799
## 8779 1 5134 0.01947799
## 8780 1 5134 0.01947799
## 8781 1 5134 0.01947799
## 8782 1 5134 0.01947799
## 8783 1 5134 0.01947799
## 8784 1 5134 0.01947799
## 8785 1 5134 0.01947799
## 8786 1 5134 0.01947799
## 8787 1 5134 0.01947799
## 8788 1 5134 0.01947799
## 8789 1 5134 0.01947799
## 8790 1 5134 0.01947799
## 8791 1 5134 0.01947799
## 8792 1 5134 0.01947799
## 8793 1 5134 0.01947799
## 8794 1 5134 0.01947799
## 8795 1 5134 0.01947799
## 8796 1 5134 0.01947799
## 8797 1 5134 0.01947799
## 8798 1 5134 0.01947799
## 8799 1 5134 0.01947799
## 8800 1 5134 0.01947799
## 8801 1 5134 0.01947799
## 8802 1 5134 0.01947799
## 8803 1 5134 0.01947799
## 8804 1 5134 0.01947799
## 8805 1 5134 0.01947799
## 8806 1 5134 0.01947799
## 8807 1 5134 0.01947799
## 8808 1 5134 0.01947799
## 8809 1 5134 0.01947799
## 8810 1 5134 0.01947799
## 8811 1 5134 0.01947799
## 8812 1 5134 0.01947799
## 8813 1 5134 0.01947799
## 8814 1 5134 0.01947799
## 8815 1 5134 0.01947799
## 8816 1 5134 0.01947799
## 8817 1 5134 0.01947799
## 8818 1 5134 0.01947799
## 8819 1 5134 0.01947799
## 8820 1 5134 0.01947799
## 8821 1 5134 0.01947799
## 8822 1 5134 0.01947799
## 8823 1 5134 0.01947799
## 8824 1 5134 0.01947799
## 8825 1 5134 0.01947799
## 8826 1 5134 0.01947799
## 8827 1 5134 0.01947799
## 8828 1 5134 0.01947799
## 8829 1 5134 0.01947799
## 8830 1 5134 0.01947799
## 8831 1 5134 0.01947799
## 8832 1 5134 0.01947799
## 8833 1 5134 0.01947799
## 8834 1 5134 0.01947799
## 8835 1 5134 0.01947799
## 8836 1 5134 0.01947799
## 8837 1 5134 0.01947799
## 8838 1 5134 0.01947799
## 8839 1 5134 0.01947799
## 8840 1 5134 0.01947799
## 8841 1 5134 0.01947799
## 8842 1 5134 0.01947799
## 8843 1 5134 0.01947799
## 8844 1 5134 0.01947799
## 8845 1 5134 0.01947799
## 8846 1 5134 0.01947799
## 8847 1 5134 0.01947799
## 8848 1 5134 0.01947799
## 8849 1 5134 0.01947799
## 8850 1 5134 0.01947799
## 8851 1 5134 0.01947799
## 8852 1 5134 0.01947799
## 8853 1 5134 0.01947799
## 8854 1 5134 0.01947799
## 8855 1 5134 0.01947799
## 8856 1 5134 0.01947799
## 8857 1 5134 0.01947799
## 8858 1 5134 0.01947799
## 8859 1 5134 0.01947799
## 8860 1 5134 0.01947799
## 8861 1 5134 0.01947799
## 8862 1 5134 0.01947799
## 8863 1 5134 0.01947799
## 8864 1 5134 0.01947799
## 8865 1 5134 0.01947799
## 8866 1 5134 0.01947799
## 8867 1 5134 0.01947799
## 8868 1 5134 0.01947799
## 8869 1 5134 0.01947799
## 8870 1 5134 0.01947799
## 8871 1 5134 0.01947799
## 8872 1 5134 0.01947799
## 8873 1 5134 0.01947799
## 8874 1 5134 0.01947799
## 8875 1 5134 0.01947799
## 8876 1 5134 0.01947799
## 8877 1 5134 0.01947799
## 8878 1 5134 0.01947799
## 8879 1 5134 0.01947799
## 8880 1 5134 0.01947799
## 8881 1 5134 0.01947799
## 8882 1 5134 0.01947799
## 8883 1 5134 0.01947799
## 8884 1 5134 0.01947799
## 8885 1 5134 0.01947799
## 8886 1 5134 0.01947799
## 8887 1 5134 0.01947799
## 8888 1 5134 0.01947799
## 8889 1 5134 0.01947799
## 8890 1 5134 0.01947799
## 8891 1 5134 0.01947799
## 8892 1 5134 0.01947799
## 8893 1 5134 0.01947799
## 8894 1 5134 0.01947799
## 8895 1 5134 0.01947799
## 8896 1 5134 0.01947799
## 8897 1 5134 0.01947799
## 8898 1 5134 0.01947799
## 8899 1 5134 0.01947799
## 8900 1 5134 0.01947799
## 8901 1 5134 0.01947799
## 8902 1 5134 0.01947799
## 8903 1 5134 0.01947799
## 8904 1 5134 0.01947799
## 8905 1 5134 0.01947799
## 8906 1 5134 0.01947799
## 8907 1 5134 0.01947799
## 8908 1 5134 0.01947799
## 8909 1 5134 0.01947799
## 8910 1 5134 0.01947799
## 8911 1 5134 0.01947799
## 8912 1 5134 0.01947799
## 8913 1 5134 0.01947799
## 8914 1 5134 0.01947799
## 8915 1 5134 0.01947799
## 8916 1 5134 0.01947799
## 8917 1 5134 0.01947799
## 8918 1 5134 0.01947799
## 8919 1 5134 0.01947799
## 8920 1 5134 0.01947799
## 8921 1 5134 0.01947799
## 8922 1 5134 0.01947799
## 8923 1 5134 0.01947799
## 8924 1 5134 0.01947799
## 8925 1 5134 0.01947799
## 8926 1 5134 0.01947799
## 8927 1 5134 0.01947799
## 8928 1 5134 0.01947799
## 8929 1 5134 0.01947799
## 8930 1 5134 0.01947799
## 8931 1 5134 0.01947799
## 8932 1 5134 0.01947799
## 8933 1 5134 0.01947799
## 8934 1 5134 0.01947799
## 8935 1 5134 0.01947799
## 8936 1 5134 0.01947799
## 8937 1 5134 0.01947799
## 8938 1 5134 0.01947799
## 8939 1 5134 0.01947799
## 8940 1 5134 0.01947799
## 8941 1 5134 0.01947799
## 8942 1 5134 0.01947799
## 8943 1 5134 0.01947799
## 8944 1 5134 0.01947799
## 8945 1 5134 0.01947799
## 8946 1 5134 0.01947799
## 8947 1 5134 0.01947799
## 8948 1 5134 0.01947799
## 8949 1 5134 0.01947799
## 8950 1 5134 0.01947799
## 8951 1 5134 0.01947799
## 8952 1 5134 0.01947799
## 8953 1 5134 0.01947799
## 8954 1 5134 0.01947799
## 8955 1 5134 0.01947799
## 8956 1 5134 0.01947799
## 8957 1 5134 0.01947799
## 8958 1 5134 0.01947799
## 8959 1 5134 0.01947799
## 8960 1 5134 0.01947799
## 8961 1 5134 0.01947799
## 8962 1 5134 0.01947799
## 8963 1 5134 0.01947799
## 8964 1 5134 0.01947799
## 8965 1 5134 0.01947799
## 8966 1 5134 0.01947799
## 8967 1 5134 0.01947799
## 8968 1 5134 0.01947799
## 8969 1 5134 0.01947799
## 8970 1 5134 0.01947799
## 8971 1 5134 0.01947799
## 8972 1 5134 0.01947799
## 8973 1 5134 0.01947799
## 8974 1 5134 0.01947799
## 8975 1 5134 0.01947799
## 8976 1 5134 0.01947799
## 8977 1 5134 0.01947799
## 8978 1 5134 0.01947799
## 8979 1 5134 0.01947799
## 8980 1 5134 0.01947799
## 8981 1 5134 0.01947799
## 8982 1 5134 0.01947799
## 8983 1 5134 0.01947799
## 8984 1 5134 0.01947799
## 8985 1 5134 0.01947799
## 8986 1 5134 0.01947799
## 8987 1 5134 0.01947799
## 8988 1 5134 0.01947799
## 8989 1 5134 0.01947799
## 8990 1 5134 0.01947799
## 8991 1 5134 0.01947799
## 8992 1 5134 0.01947799
## 8993 1 5134 0.01947799
## 8994 1 5134 0.01947799
## 8995 1 5134 0.01947799
## 8996 1 5134 0.01947799
## 8997 1 5134 0.01947799
## 8998 1 5134 0.01947799
## 8999 1 5134 0.01947799
## 9000 1 5134 0.01947799
## 9001 1 5134 0.01947799
## 9002 1 5134 0.01947799
## 9003 1 5134 0.01947799
## 9004 1 5134 0.01947799
## 9005 1 5134 0.01947799
## 9006 1 5134 0.01947799
## 9007 1 5134 0.01947799
## 9008 1 5134 0.01947799
## 9009 1 5134 0.01947799
## 9010 1 5134 0.01947799
## 9011 1 5134 0.01947799
## 9012 1 5134 0.01947799
## 9013 1 5134 0.01947799
## 9014 1 5134 0.01947799
## 9015 1 5134 0.01947799
## 9016 1 5134 0.01947799
## 9017 1 5134 0.01947799
## 9018 1 5134 0.01947799
## 9019 1 5134 0.01947799
## 9020 1 5134 0.01947799
## 9021 1 5134 0.01947799
## 9022 1 5134 0.01947799
## 9023 1 5134 0.01947799
## 9024 1 5134 0.01947799
## 9025 1 5134 0.01947799
## 9026 1 5134 0.01947799
## 9027 1 5134 0.01947799
## 9028 1 5134 0.01947799
## 9029 1 5134 0.01947799
## 9030 1 5134 0.01947799
## 9031 1 5134 0.01947799
## 9032 1 5134 0.01947799
## 9033 1 5134 0.01947799
## 9034 1 5134 0.01947799
## 9035 1 5134 0.01947799
## 9036 1 5134 0.01947799
## 9037 1 5134 0.01947799
## 9038 1 5134 0.01947799
## 9039 1 5134 0.01947799
## 9040 1 5134 0.01947799
## 9041 1 5134 0.01947799
## 9042 1 5134 0.01947799
## 9043 1 5134 0.01947799
## 9044 1 5134 0.01947799
## 9045 1 5134 0.01947799
## 9046 1 5134 0.01947799
## 9047 1 5134 0.01947799
## 9048 1 5134 0.01947799
## 9049 1 5134 0.01947799
## 9050 1 5134 0.01947799
## 9051 1 5134 0.01947799
## 9052 1 5134 0.01947799
## 9053 1 5134 0.01947799
## 9054 1 5134 0.01947799
## 9055 1 5134 0.01947799
## 9056 1 5134 0.01947799
## 9057 1 5134 0.01947799
## 9058 1 5134 0.01947799
## 9059 1 5134 0.01947799
## 9060 1 5134 0.01947799
## 9061 1 5134 0.01947799
## 9062 1 5134 0.01947799
## 9063 1 5134 0.01947799
## 9064 1 5134 0.01947799
## 9065 1 5134 0.01947799
## 9066 1 5134 0.01947799
## 9067 1 5134 0.01947799
## 9068 1 5134 0.01947799
## 9069 1 5134 0.01947799
## 9070 1 5134 0.01947799
## 9071 1 5134 0.01947799
## 9072 1 5134 0.01947799
## 9073 1 5134 0.01947799
## 9074 1 5134 0.01947799
## 9075 1 5134 0.01947799
## 9076 1 5134 0.01947799
## 9077 1 5134 0.01947799
## 9078 1 5134 0.01947799
## 9079 1 5134 0.01947799
## 9080 1 5134 0.01947799
## 9081 1 5134 0.01947799
## 9082 1 5134 0.01947799
## 9083 1 5134 0.01947799
## 9084 1 5134 0.01947799
## 9085 1 5134 0.01947799
## 9086 1 5134 0.01947799
## 9087 1 5134 0.01947799
## 9088 1 5134 0.01947799
## 9089 1 5134 0.01947799
## 9090 1 5134 0.01947799
## 9091 1 5134 0.01947799
## 9092 1 5134 0.01947799
## 9093 1 5134 0.01947799
## 9094 1 5134 0.01947799
## 9095 1 5134 0.01947799
## 9096 1 5134 0.01947799
## 9097 1 5134 0.01947799
## 9098 1 5134 0.01947799
## 9099 1 5134 0.01947799
## 9100 1 5134 0.01947799
## 9101 1 5134 0.01947799
## 9102 1 5134 0.01947799
## 9103 1 5134 0.01947799
## 9104 1 5134 0.01947799
## 9105 1 5134 0.01947799
## 9106 1 5134 0.01947799
## 9107 1 5134 0.01947799
## 9108 1 5134 0.01947799
## 9109 1 5134 0.01947799
## 9110 1 5134 0.01947799
## 9111 1 5134 0.01947799
## 9112 1 5134 0.01947799
## 9113 1 5134 0.01947799
## 9114 1 5134 0.01947799
## 9115 1 5134 0.01947799
## 9116 1 5134 0.01947799
## 9117 1 5134 0.01947799
## 9118 1 5134 0.01947799
## 9119 1 5134 0.01947799
## 9120 1 5134 0.01947799
## 9121 1 5134 0.01947799
## 9122 1 5134 0.01947799
## 9123 1 5134 0.01947799
## 9124 1 5134 0.01947799
## 9125 1 5134 0.01947799
## 9126 1 5134 0.01947799
## 9127 1 5134 0.01947799
## 9128 1 5134 0.01947799
## 9129 1 5134 0.01947799
## 9130 1 5134 0.01947799
## 9131 1 5134 0.01947799
## 9132 1 5134 0.01947799
## 9133 1 5134 0.01947799
## 9134 1 5134 0.01947799
## 9135 1 5134 0.01947799
## 9136 1 5134 0.01947799
## 9137 1 5134 0.01947799
## 9138 1 5134 0.01947799
## 9139 1 5134 0.01947799
## 9140 1 5134 0.01947799
## 9141 1 5134 0.01947799
## 9142 1 5134 0.01947799
## 9143 1 5134 0.01947799
## 9144 1 5134 0.01947799
## 9145 1 5134 0.01947799
## 9146 1 5134 0.01947799
## 9147 1 5134 0.01947799
## 9148 1 5134 0.01947799
## 9149 1 5134 0.01947799
## 9150 1 5134 0.01947799
## 9151 1 5134 0.01947799
## 9152 1 5134 0.01947799
## 9153 1 5134 0.01947799
## 9154 1 5134 0.01947799
## 9155 1 5134 0.01947799
## 9156 1 5134 0.01947799
## 9157 1 5134 0.01947799
## 9158 1 5134 0.01947799
## 9159 1 5134 0.01947799
## 9160 1 5134 0.01947799
## 9161 1 5134 0.01947799
## 9162 1 5134 0.01947799
## 9163 1 5134 0.01947799
## 9164 1 5134 0.01947799
## 9165 1 5134 0.01947799
## 9166 1 5134 0.01947799
## 9167 1 5134 0.01947799
## 9168 1 5134 0.01947799
## 9169 1 5134 0.01947799
## 9170 1 5134 0.01947799
## 9171 1 5134 0.01947799
## 9172 1 5134 0.01947799
## 9173 1 5134 0.01947799
## 9174 1 5134 0.01947799
## 9175 1 5134 0.01947799
## 9176 1 5134 0.01947799
## 9177 1 5134 0.01947799
## 9178 1 5134 0.01947799
## 9179 1 5134 0.01947799
## 9180 1 5134 0.01947799
## 9181 1 5134 0.01947799
## 9182 1 5134 0.01947799
## 9183 1 5134 0.01947799
## 9184 1 5134 0.01947799
## 9185 1 5134 0.01947799
## 9186 1 5134 0.01947799
## 9187 1 5134 0.01947799
## 9188 1 5134 0.01947799
## 9189 1 5134 0.01947799
## 9190 1 5134 0.01947799
## 9191 1 5134 0.01947799
## 9192 1 5134 0.01947799
## 9193 1 5134 0.01947799
## 9194 1 5134 0.01947799
## 9195 1 5134 0.01947799
## 9196 1 5134 0.01947799
## 9197 1 5134 0.01947799
## 9198 1 5134 0.01947799
## 9199 1 5134 0.01947799
## 9200 1 5134 0.01947799
## 9201 1 5134 0.01947799
## 9202 1 5134 0.01947799
## 9203 1 5134 0.01947799
## 9204 1 5134 0.01947799
## 9205 1 5134 0.01947799
## 9206 1 5134 0.01947799
## 9207 1 5134 0.01947799
## 9208 1 5134 0.01947799
## 9209 1 5134 0.01947799
## 9210 1 5134 0.01947799
## 9211 1 5134 0.01947799
## 9212 1 5134 0.01947799
## 9213 1 5134 0.01947799
## 9214 1 5134 0.01947799
## 9215 1 5134 0.01947799
## 9216 1 5134 0.01947799
## 9217 1 5134 0.01947799
## 9218 1 5134 0.01947799
## 9219 1 5134 0.01947799
## 9220 1 5134 0.01947799
## 9221 1 5134 0.01947799
## 9222 1 5134 0.01947799
## 9223 1 5134 0.01947799
## 9224 1 5134 0.01947799
## 9225 1 5134 0.01947799
## 9226 1 5134 0.01947799
## 9227 1 5134 0.01947799
## 9228 1 5134 0.01947799
## 9229 1 5134 0.01947799
## 9230 1 5134 0.01947799
## 9231 1 5134 0.01947799
## 9232 1 5134 0.01947799
## 9233 1 5134 0.01947799
## 9234 1 5134 0.01947799
## 9235 1 5134 0.01947799
## 9236 1 5134 0.01947799
## 9237 1 5134 0.01947799
## 9238 1 5134 0.01947799
## 9239 1 5134 0.01947799
## 9240 1 5134 0.01947799
## 9241 1 5134 0.01947799
## 9242 1 5134 0.01947799
## 9243 1 5134 0.01947799
## 9244 1 5134 0.01947799
## 9245 1 5134 0.01947799
## 9246 1 5134 0.01947799
## 9247 1 5134 0.01947799
## 9248 1 5134 0.01947799
## 9249 1 5134 0.01947799
## 9250 1 5134 0.01947799
## 9251 1 5134 0.01947799
## 9252 1 5134 0.01947799
## 9253 1 5134 0.01947799
## 9254 1 5134 0.01947799
## 9255 1 5134 0.01947799
## 9256 1 5134 0.01947799
## 9257 1 5134 0.01947799
## 9258 1 5134 0.01947799
## 9259 1 5134 0.01947799
## 9260 1 5134 0.01947799
## 9261 1 5134 0.01947799
## 9262 1 5134 0.01947799
## 9263 1 5134 0.01947799
## 9264 1 5134 0.01947799
## 9265 1 5134 0.01947799
## 9266 1 5134 0.01947799
## 9267 1 5134 0.01947799
## 9268 1 5134 0.01947799
## 9269 1 5134 0.01947799
## 9270 1 5134 0.01947799
## 9271 1 5134 0.01947799
## 9272 1 5134 0.01947799
## 9273 1 5134 0.01947799
## 9274 1 5134 0.01947799
## 9275 1 5134 0.01947799
## 9276 1 5134 0.01947799
## 9277 1 5134 0.01947799
## 9278 1 5134 0.01947799
## 9279 1 5134 0.01947799
## 9280 1 5134 0.01947799
## 9281 1 5134 0.01947799
## 9282 1 5134 0.01947799
## 9283 1 5134 0.01947799
## 9284 1 5134 0.01947799
## 9285 1 5134 0.01947799
## 9286 1 5134 0.01947799
## 9287 1 5134 0.01947799
## 9288 1 5134 0.01947799
## 9289 1 5134 0.01947799
## 9290 1 5134 0.01947799
## 9291 1 5134 0.01947799
## 9292 1 5134 0.01947799
## 9293 1 5134 0.01947799
## 9294 1 5134 0.01947799
## 9295 1 5134 0.01947799
## 9296 1 5134 0.01947799
## 9297 1 5134 0.01947799
## 9298 1 5134 0.01947799
## 9299 1 5134 0.01947799
## 9300 1 5134 0.01947799
## 9301 1 5134 0.01947799
## 9302 1 5134 0.01947799
## 9303 1 5134 0.01947799
## 9304 1 5134 0.01947799
## 9305 1 5134 0.01947799
## 9306 1 5134 0.01947799
## 9307 1 5134 0.01947799
## 9308 1 5134 0.01947799
## 9309 1 5134 0.01947799
## 9310 1 5134 0.01947799
## 9311 1 5134 0.01947799
## 9312 1 5134 0.01947799
## 9313 1 5134 0.01947799
## 9314 1 5134 0.01947799
## 9315 1 5134 0.01947799
## 9316 1 5134 0.01947799
## 9317 1 5134 0.01947799
## 9318 1 5134 0.01947799
## 9319 1 5134 0.01947799
## 9320 1 5134 0.01947799
## 9321 1 5134 0.01947799
## 9322 1 5134 0.01947799
## 9323 1 5134 0.01947799
## 9324 1 5134 0.01947799
## 9325 1 5134 0.01947799
## 9326 1 5134 0.01947799
## 9327 1 5134 0.01947799
## 9328 1 5134 0.01947799
## 9329 1 5134 0.01947799
## 9330 1 5134 0.01947799
## 9331 1 5134 0.01947799
## 9332 1 5134 0.01947799
## 9333 1 5134 0.01947799
## 9334 1 5134 0.01947799
## 9335 1 5134 0.01947799
## 9336 1 5134 0.01947799
## 9337 1 5134 0.01947799
## 9338 1 5134 0.01947799
## 9339 1 5134 0.01947799
## 9340 1 5134 0.01947799
## 9341 1 5134 0.01947799
## 9342 1 5134 0.01947799
## 9343 1 5134 0.01947799
## 9344 1 5134 0.01947799
## 9345 1 5134 0.01947799
## 9346 1 5134 0.01947799
## 9347 1 5134 0.01947799
## 9348 1 5134 0.01947799
## 9349 1 5134 0.01947799
## 9350 1 5134 0.01947799
## 9351 1 5134 0.01947799
## 9352 1 5134 0.01947799
## 9353 1 5134 0.01947799
## 9354 1 5134 0.01947799
## 9355 1 5134 0.01947799
## 9356 1 5134 0.01947799
## 9357 1 5134 0.01947799
## 9358 1 5134 0.01947799
## 9359 1 5134 0.01947799
## 9360 1 5134 0.01947799
## 9361 1 5134 0.01947799
## 9362 1 5134 0.01947799
## 9363 1 5134 0.01947799
## 9364 1 5134 0.01947799
## 9365 1 5134 0.01947799
## 9366 1 5134 0.01947799
## 9367 1 5134 0.01947799
## 9368 1 5134 0.01947799
## 9369 1 5134 0.01947799
## 9370 1 5134 0.01947799
## 9371 1 5134 0.01947799
## 9372 1 5134 0.01947799
## 9373 1 5134 0.01947799
## 9374 1 5134 0.01947799
## 9375 1 5134 0.01947799
## 9376 1 5134 0.01947799
## 9377 1 5134 0.01947799
## 9378 1 5134 0.01947799
## 9379 1 5134 0.01947799
## 9380 1 5134 0.01947799
## 9381 1 5134 0.01947799
## 9382 1 5134 0.01947799
## 9383 1 5134 0.01947799
## 9384 1 5134 0.01947799
## 9385 1 5134 0.01947799
## 9386 1 5134 0.01947799
## 9387 1 5134 0.01947799
## 9388 1 5134 0.01947799
## 9389 1 5134 0.01947799
## 9390 1 5134 0.01947799
## 9391 1 5134 0.01947799
## 9392 1 5134 0.01947799
## 9393 1 5134 0.01947799
## 9394 1 5134 0.01947799
## 9395 1 5134 0.01947799
## 9396 1 5134 0.01947799
## 9397 1 5134 0.01947799
## 9398 1 5134 0.01947799
## 9399 1 5134 0.01947799
## 9400 1 5134 0.01947799
## 9401 1 5134 0.01947799
## 9402 1 5134 0.01947799
## 9403 1 5134 0.01947799
## 9404 1 5134 0.01947799
## 9405 1 5134 0.01947799
## 9406 1 5134 0.01947799
## 9407 1 5134 0.01947799
## 9408 1 5134 0.01947799
## 9409 1 5134 0.01947799
## 9410 1 5134 0.01947799
## 9411 1 5134 0.01947799
## 9412 1 5134 0.01947799
## 9413 1 5134 0.01947799
## 9414 1 5134 0.01947799
## 9415 1 5134 0.01947799
## 9416 1 5134 0.01947799
## 9417 1 5134 0.01947799
## 9418 1 5134 0.01947799
## 9419 1 5134 0.01947799
## 9420 1 5134 0.01947799
## 9421 1 5134 0.01947799
## 9422 1 5134 0.01947799
## 9423 1 5134 0.01947799
## 9424 1 5134 0.01947799
## 9425 1 5134 0.01947799
## 9426 1 5134 0.01947799
## 9427 1 5134 0.01947799
## 9428 1 5134 0.01947799
## 9429 1 5134 0.01947799
## 9430 1 5134 0.01947799
## 9431 1 5134 0.01947799
## 9432 1 5134 0.01947799
## 9433 1 5134 0.01947799
## 9434 1 5134 0.01947799
## 9435 1 5134 0.01947799
## 9436 1 5134 0.01947799
## 9437 1 5134 0.01947799
## 9438 1 5134 0.01947799
## 9439 1 5134 0.01947799
## 9440 1 5134 0.01947799
## 9441 1 5134 0.01947799
## 9442 1 5134 0.01947799
## 9443 1 5134 0.01947799
## 9444 1 5134 0.01947799
## 9445 1 5134 0.01947799
## 9446 1 5134 0.01947799
## 9447 1 5134 0.01947799
## 9448 1 5134 0.01947799
## 9449 1 5134 0.01947799
## 9450 1 5134 0.01947799
## 9451 1 5134 0.01947799
## 9452 1 5134 0.01947799
## 9453 1 5134 0.01947799
## 9454 1 5134 0.01947799
## 9455 1 5134 0.01947799
## 9456 1 5134 0.01947799
## 9457 1 5134 0.01947799
## 9458 1 5134 0.01947799
## 9459 1 5134 0.01947799
## 9460 1 5134 0.01947799
## 9461 1 5134 0.01947799
## 9462 1 5134 0.01947799
## 9463 1 5134 0.01947799
## 9464 1 5134 0.01947799
## 9465 1 5134 0.01947799
## 9466 1 5134 0.01947799
## 9467 1 5134 0.01947799
## 9468 1 5134 0.01947799
## 9469 1 5134 0.01947799
## 9470 1 5134 0.01947799
## 9471 1 5134 0.01947799
## 9472 1 5134 0.01947799
## 9473 1 5134 0.01947799
## 9474 1 5134 0.01947799
## 9475 1 5134 0.01947799
## 9476 1 5134 0.01947799
## 9477 1 5134 0.01947799
## 9478 1 5134 0.01947799
## 9479 1 5134 0.01947799
## 9480 1 5134 0.01947799
## 9481 1 5134 0.01947799
## 9482 1 5134 0.01947799
## 9483 1 5134 0.01947799
## 9484 1 5134 0.01947799
## 9485 1 5134 0.01947799
## 9486 1 5134 0.01947799
## 9487 1 5134 0.01947799
## 9488 1 5134 0.01947799
## 9489 1 5134 0.01947799
## 9490 1 5134 0.01947799
## 9491 1 5134 0.01947799
## 9492 1 5134 0.01947799
## 9493 1 5134 0.01947799
## 9494 1 5134 0.01947799
## 9495 1 5134 0.01947799
## 9496 1 5134 0.01947799
## 9497 1 5134 0.01947799
## 9498 1 5134 0.01947799
## 9499 1 5134 0.01947799
## 9500 1 5134 0.01947799
## 9501 1 5134 0.01947799
## 9502 1 5134 0.01947799
## 9503 1 5134 0.01947799
## 9504 1 5134 0.01947799
## 9505 1 5134 0.01947799
## 9506 1 5134 0.01947799
## 9507 1 5134 0.01947799
## 9508 1 5134 0.01947799
## 9509 1 5134 0.01947799
## 9510 1 5134 0.01947799
## 9511 1 5134 0.01947799
## 9512 1 5134 0.01947799
## 9513 1 5134 0.01947799
## 9514 1 5134 0.01947799
## 9515 1 5134 0.01947799
## 9516 1 5134 0.01947799
## 9517 1 5134 0.01947799
## 9518 1 5134 0.01947799
## 9519 1 5134 0.01947799
## 9520 1 5134 0.01947799
## 9521 1 5134 0.01947799
## 9522 1 5134 0.01947799
## 9523 1 5134 0.01947799
## 9524 1 5134 0.01947799
## 9525 1 5134 0.01947799
## 9526 1 5134 0.01947799
## 9527 1 5134 0.01947799
## 9528 1 5134 0.01947799
## 9529 1 5134 0.01947799
## 9530 1 5134 0.01947799
## 9531 1 5134 0.01947799
## 9532 1 5134 0.01947799
## 9533 1 5134 0.01947799
## 9534 1 5134 0.01947799
## 9535 1 5134 0.01947799
## 9536 1 5134 0.01947799
## 9537 1 5134 0.01947799
## 9538 1 5134 0.01947799
## 9539 1 5134 0.01947799
## 9540 1 5134 0.01947799
## 9541 1 5134 0.01947799
## 9542 1 5134 0.01947799
## 9543 1 5134 0.01947799
## 9544 1 5134 0.01947799
## 9545 1 5134 0.01947799
## 9546 1 5134 0.01947799
## 9547 1 5134 0.01947799
## 9548 1 5134 0.01947799
## 9549 1 5134 0.01947799
## 9550 1 5134 0.01947799
## 9551 1 5134 0.01947799
## 9552 1 5134 0.01947799
## 9553 1 5134 0.01947799
## 9554 1 5134 0.01947799
## 9555 1 5134 0.01947799
## 9556 1 5134 0.01947799
## 9557 1 5134 0.01947799
## 9558 1 5134 0.01947799
## 9559 1 5134 0.01947799
## 9560 1 5134 0.01947799
## 9561 1 5134 0.01947799
## 9562 1 5134 0.01947799
## 9563 1 5134 0.01947799
## 9564 1 5134 0.01947799
## 9565 1 5134 0.01947799
## 9566 1 5134 0.01947799
## 9567 1 5134 0.01947799
## 9568 1 5134 0.01947799
## 9569 1 5134 0.01947799
## 9570 1 5134 0.01947799
## 9571 1 5134 0.01947799
## 9572 1 5134 0.01947799
## 9573 1 5134 0.01947799
## 9574 1 5134 0.01947799
## 9575 1 5134 0.01947799
## 9576 1 5134 0.01947799
## 9577 1 5134 0.01947799
## 9578 1 5134 0.01947799
## 9579 1 5134 0.01947799
## 9580 1 5134 0.01947799
## 9581 1 5134 0.01947799
## 9582 1 5134 0.01947799
## 9583 1 5134 0.01947799
## 9584 1 5134 0.01947799
## 9585 1 5134 0.01947799
## 9586 1 5134 0.01947799
## 9587 1 5134 0.01947799
## 9588 1 5134 0.01947799
## 9589 1 5134 0.01947799
## 9590 1 5134 0.01947799
## 9591 1 5134 0.01947799
## 9592 1 5134 0.01947799
## 9593 1 5134 0.01947799
## 9594 1 5134 0.01947799
## 9595 1 5134 0.01947799
## 9596 1 5134 0.01947799
## 9597 1 5134 0.01947799
## 9598 1 5134 0.01947799
## 9599 1 5134 0.01947799
## 9600 1 5134 0.01947799
## 9601 1 5134 0.01947799
## 9602 1 5134 0.01947799
## 9603 1 5134 0.01947799
## 9604 1 5134 0.01947799
## 9605 1 5134 0.01947799
## 9606 1 5134 0.01947799
## 9607 1 5134 0.01947799
## 9608 1 5134 0.01947799
## 9609 1 5134 0.01947799
## 9610 1 5134 0.01947799
## 9611 1 5134 0.01947799
## 9612 1 5134 0.01947799
## 9613 1 5134 0.01947799
## 9614 1 5134 0.01947799
## 9615 1 5134 0.01947799
## 9616 1 5134 0.01947799
## 9617 1 5134 0.01947799
## 9618 1 5134 0.01947799
## 9619 1 5134 0.01947799
## 9620 1 5134 0.01947799
## 9621 1 5134 0.01947799
## 9622 1 5134 0.01947799
## 9623 1 5134 0.01947799
## 9624 1 5134 0.01947799
## 9625 1 5134 0.01947799
## 9626 1 5134 0.01947799
## 9627 1 5134 0.01947799
## 9628 1 5134 0.01947799
## 9629 1 5134 0.01947799
## 9630 1 5134 0.01947799
## 9631 1 5134 0.01947799
## 9632 1 5134 0.01947799
## 9633 1 5134 0.01947799
## 9634 1 5134 0.01947799
## 9635 1 5134 0.01947799
## 9636 1 5134 0.01947799
## 9637 1 5134 0.01947799
## 9638 1 5134 0.01947799
## 9639 1 5134 0.01947799
## 9640 1 5134 0.01947799
## 9641 1 5134 0.01947799
## 9642 1 5134 0.01947799
## 9643 1 5134 0.01947799
## 9644 1 5134 0.01947799
## 9645 1 5134 0.01947799
## 9646 1 5134 0.01947799
## 9647 1 5134 0.01947799
## 9648 1 5134 0.01947799
## 9649 1 5134 0.01947799
## 9650 1 5134 0.01947799
## 9651 1 5134 0.01947799
## 9652 1 5134 0.01947799
## 9653 1 5134 0.01947799
## 9654 1 5134 0.01947799
## 9655 1 5134 0.01947799
## 9656 1 5134 0.01947799
## 9657 1 5134 0.01947799
## 9658 1 5134 0.01947799
## 9659 1 5134 0.01947799
## 9660 1 5134 0.01947799
## 9661 1 5134 0.01947799
## 9662 1 5134 0.01947799
## 9663 1 5134 0.01947799
## 9664 1 5134 0.01947799
## 9665 1 5134 0.01947799
## 9666 1 5134 0.01947799
## 9667 1 5134 0.01947799
## 9668 1 5134 0.01947799
## 9669 1 5134 0.01947799
## 9670 1 5134 0.01947799
## 9671 1 5134 0.01947799
## 9672 1 5134 0.01947799
## 9673 1 5134 0.01947799
## 9674 1 5134 0.01947799
## 9675 1 5134 0.01947799
## 9676 1 5134 0.01947799
## 9677 1 5134 0.01947799
## 9678 1 5134 0.01947799
## 9679 1 5134 0.01947799
## 9680 1 5134 0.01947799
## 9681 1 5134 0.01947799
## 9682 1 5134 0.01947799
## 9683 1 5134 0.01947799
## 9684 1 5134 0.01947799
## 9685 1 5134 0.01947799
## 9686 1 5134 0.01947799
## 9687 1 5134 0.01947799
## 9688 1 5134 0.01947799
## 9689 1 5134 0.01947799
## 9690 1 5134 0.01947799
## 9691 1 5134 0.01947799
## 9692 1 5134 0.01947799
## 9693 1 5134 0.01947799
## 9694 1 5134 0.01947799
## 9695 1 5134 0.01947799
## 9696 1 5134 0.01947799
## 9697 1 5134 0.01947799
## 9698 1 5134 0.01947799
## 9699 1 5134 0.01947799
## 9700 1 5134 0.01947799
## 9701 1 5134 0.01947799
## 9702 1 5134 0.01947799
## 9703 1 5134 0.01947799
## 9704 1 5134 0.01947799
## 9705 1 5134 0.01947799
## 9706 1 5134 0.01947799
## 9707 1 5134 0.01947799
## 9708 1 5134 0.01947799
## 9709 1 5134 0.01947799
## 9710 1 5134 0.01947799
## 9711 1 5134 0.01947799
## 9712 1 5134 0.01947799
## 9713 1 5134 0.01947799
## 9714 1 5134 0.01947799
## 9715 1 5134 0.01947799
## 9716 1 5134 0.01947799
## 9717 1 5134 0.01947799
## 9718 1 5134 0.01947799
## 9719 1 5134 0.01947799
## 9720 1 5134 0.01947799
## 9721 1 5134 0.01947799
## 9722 1 5134 0.01947799
## 9723 1 5134 0.01947799
## 9724 1 5134 0.01947799
## 9725 1 5134 0.01947799
## 9726 1 5134 0.01947799
## 9727 1 5134 0.01947799
## 9728 1 5134 0.01947799
## 9729 1 5134 0.01947799
## 9730 1 5134 0.01947799
## 9731 1 5134 0.01947799
## 9732 1 5134 0.01947799
## 9733 1 5134 0.01947799
## 9734 1 5134 0.01947799
## 9735 1 5134 0.01947799
## 9736 1 5134 0.01947799
## 9737 1 5134 0.01947799
## 9738 1 5134 0.01947799
## 9739 1 5134 0.01947799
## 9740 1 5134 0.01947799
## 9741 1 5134 0.01947799
## 9742 1 5134 0.01947799
## 9743 1 5134 0.01947799
## 9744 1 5134 0.01947799
## 9745 1 5134 0.01947799
## 9746 1 5134 0.01947799
## 9747 1 5134 0.01947799
## 9748 1 5134 0.01947799
## 9749 1 5134 0.01947799
## 9750 1 5134 0.01947799
## 9751 1 5134 0.01947799
## 9752 1 5134 0.01947799
## 9753 1 5134 0.01947799
## 9754 1 5134 0.01947799
## 9755 1 5134 0.01947799
## 9756 1 5134 0.01947799
## 9757 1 5134 0.01947799
## 9758 1 5134 0.01947799
## 9759 1 5134 0.01947799
## 9760 1 5134 0.01947799
## 9761 1 5134 0.01947799
## 9762 1 5134 0.01947799
## 9763 1 5134 0.01947799
## 9764 1 5134 0.01947799
## 9765 1 5134 0.01947799
## 9766 1 5134 0.01947799
## 9767 1 5134 0.01947799
## 9768 1 5134 0.01947799
## 9769 1 5134 0.01947799
## 9770 1 5134 0.01947799
## 9771 1 5134 0.01947799
## 9772 1 5134 0.01947799
## 9773 1 5134 0.01947799
## 9774 1 5134 0.01947799
## 9775 1 5134 0.01947799
## 9776 1 5134 0.01947799
## 9777 1 5134 0.01947799
## 9778 1 5134 0.01947799
## 9779 1 5134 0.01947799
## 9780 1 5134 0.01947799
## 9781 1 5134 0.01947799
## 9782 1 5134 0.01947799
## 9783 1 5134 0.01947799
## 9784 1 5134 0.01947799
## 9785 1 5134 0.01947799
## 9786 1 5134 0.01947799
## 9787 1 5134 0.01947799
## 9788 1 5134 0.01947799
## 9789 1 5134 0.01947799
## 9790 1 5134 0.01947799
## 9791 1 5134 0.01947799
## 9792 1 5134 0.01947799
## 9793 1 5134 0.01947799
## 9794 1 5134 0.01947799
## 9795 1 5134 0.01947799
## 9796 1 5134 0.01947799
## 9797 1 5134 0.01947799
## 9798 1 5134 0.01947799
## 9799 1 5134 0.01947799
## 9800 1 5134 0.01947799
## 9801 1 5134 0.01947799
## 9802 1 5134 0.01947799
## 9803 1 5134 0.01947799
## 9804 1 5134 0.01947799
## 9805 1 5134 0.01947799
## 9806 1 5134 0.01947799
## 9807 1 5134 0.01947799
## 9808 1 5134 0.01947799
## 9809 1 5134 0.01947799
## 9810 1 5134 0.01947799
## 9811 1 5134 0.01947799
## 9812 1 5134 0.01947799
## 9813 1 5134 0.01947799
## 9814 1 5134 0.01947799
## 9815 1 5134 0.01947799
## 9816 1 5134 0.01947799
## 9817 1 5134 0.01947799
## 9818 1 5134 0.01947799
## 9819 1 5134 0.01947799
## 9820 1 5134 0.01947799
## 9821 1 5134 0.01947799
## 9822 1 5134 0.01947799
## 9823 1 5134 0.01947799
## 9824 1 5134 0.01947799
## 9825 1 5134 0.01947799
## 9826 1 5134 0.01947799
## 9827 1 5134 0.01947799
## 9828 1 5134 0.01947799
## 9829 1 5134 0.01947799
## 9830 1 5134 0.01947799
## 9831 1 5134 0.01947799
## 9832 1 5134 0.01947799
## 9833 1 5134 0.01947799
## 9834 1 5134 0.01947799
## 9835 1 5134 0.01947799
## 9836 1 5134 0.01947799
## 9837 1 5134 0.01947799
## 9838 1 5134 0.01947799
## 9839 1 5134 0.01947799
## 9840 1 5134 0.01947799
## 9841 1 5134 0.01947799
## 9842 1 5134 0.01947799
## 9843 1 5134 0.01947799
## 9844 1 5134 0.01947799
## 9845 1 5134 0.01947799
## 9846 1 5134 0.01947799
## 9847 1 5134 0.01947799
## 9848 1 5134 0.01947799
## 9849 1 5134 0.01947799
## 9850 1 5134 0.01947799
## 9851 1 5134 0.01947799
## 9852 1 5134 0.01947799
## 9853 1 5134 0.01947799
## 9854 1 5134 0.01947799
## 9855 1 5134 0.01947799
## 9856 1 5134 0.01947799
## 9857 1 5134 0.01947799
## 9858 1 5134 0.01947799
## 9859 1 5134 0.01947799
## 9860 1 5134 0.01947799
## 9861 1 5134 0.01947799
## 9862 1 5134 0.01947799
## 9863 1 5134 0.01947799
## 9864 1 5134 0.01947799
## 9865 1 5134 0.01947799
## 9866 1 5134 0.01947799
## 9867 1 5134 0.01947799
## 9868 1 5134 0.01947799
## 9869 1 5134 0.01947799
## 9870 1 5134 0.01947799
## 9871 1 5134 0.01947799
## 9872 1 5134 0.01947799
## 9873 1 5134 0.01947799
## 9874 1 5134 0.01947799
## 9875 1 5134 0.01947799
## 9876 1 5134 0.01947799
## 9877 1 5134 0.01947799
## 9878 1 5134 0.01947799
## 9879 1 5134 0.01947799
## 9880 1 5134 0.01947799
## 9881 1 5134 0.01947799
## 9882 1 5134 0.01947799
## 9883 1 5134 0.01947799
## 9884 1 5134 0.01947799
## 9885 1 5134 0.01947799
## 9886 1 5134 0.01947799
## 9887 1 5134 0.01947799
## 9888 1 5134 0.01947799
## 9889 1 5134 0.01947799
## 9890 1 5134 0.01947799
## 9891 1 5134 0.01947799
## 9892 1 5134 0.01947799
## 9893 1 5134 0.01947799
## 9894 1 5134 0.01947799
## 9895 1 5134 0.01947799
## 9896 1 5134 0.01947799
## 9897 1 5134 0.01947799
## 9898 1 5134 0.01947799
## 9899 1 5134 0.01947799
## 9900 1 5134 0.01947799
## 9901 1 5134 0.01947799
## 9902 1 5134 0.01947799
## 9903 1 5134 0.01947799
## 9904 1 5134 0.01947799
## 9905 1 5134 0.01947799
## 9906 1 5134 0.01947799
## 9907 1 5134 0.01947799
## 9908 1 5134 0.01947799
## 9909 1 5134 0.01947799
## 9910 1 5134 0.01947799
## 9911 1 5134 0.01947799
## 9912 1 5134 0.01947799
## 9913 1 5134 0.01947799
## 9914 1 5134 0.01947799
## 9915 1 5134 0.01947799
## 9916 1 5134 0.01947799
## 9917 1 5134 0.01947799
## 9918 1 5134 0.01947799
## 9919 1 5134 0.01947799
## 9920 1 5134 0.01947799
## 9921 1 5134 0.01947799
## 9922 1 5134 0.01947799
## 9923 1 5134 0.01947799
## 9924 1 5134 0.01947799
## 9925 1 5134 0.01947799
## 9926 1 5134 0.01947799
## 9927 1 5134 0.01947799
## 9928 1 5134 0.01947799
## 9929 1 5134 0.01947799
## 9930 1 5134 0.01947799
## 9931 1 5134 0.01947799
## 9932 1 5134 0.01947799
## 9933 1 5134 0.01947799
## 9934 1 5134 0.01947799
## 9935 1 5134 0.01947799
## 9936 1 5134 0.01947799
## 9937 1 5134 0.01947799
## 9938 1 5134 0.01947799
## 9939 1 5134 0.01947799
## 9940 1 5134 0.01947799
## 9941 1 5134 0.01947799
## 9942 1 5134 0.01947799
## 9943 1 5134 0.01947799
## 9944 1 5134 0.01947799
## 9945 1 5134 0.01947799
## 9946 1 5134 0.01947799
## 9947 1 5134 0.01947799
## 9948 1 5134 0.01947799
## 9949 1 5134 0.01947799
## 9950 1 5134 0.01947799
## 9951 1 5134 0.01947799
## 9952 1 5134 0.01947799
## 9953 1 5134 0.01947799
## 9954 1 5134 0.01947799
## 9955 1 5134 0.01947799
## 9956 1 5134 0.01947799
## 9957 1 5134 0.01947799
## 9958 1 5134 0.01947799
## 9959 1 5134 0.01947799
## 9960 1 5134 0.01947799
## 9961 1 5134 0.01947799
## 9962 1 5134 0.01947799
## 9963 1 5134 0.01947799
## 9964 1 5134 0.01947799
## 9965 1 5134 0.01947799
## 9966 1 5134 0.01947799
## 9967 1 5134 0.01947799
## 9968 1 5134 0.01947799
## 9969 1 5134 0.01947799
## 9970 1 5134 0.01947799
## 9971 1 5134 0.01947799
## 9972 1 5134 0.01947799
## 9973 1 5134 0.01947799
## 9974 1 5134 0.01947799
## 9975 1 5134 0.01947799
## 9976 1 5134 0.01947799
## 9977 1 5134 0.01947799
## 9978 1 5134 0.01947799
## 9979 1 5134 0.01947799
## 9980 1 5134 0.01947799
## 9981 1 5134 0.01947799
## 9982 1 5134 0.01947799
## 9983 1 5134 0.01947799
## 9984 1 5134 0.01947799
## 9985 1 5134 0.01947799
## 9986 1 5134 0.01947799
## 9987 1 5134 0.01947799
## 9988 1 5134 0.01947799
## 9989 1 5134 0.01947799
## 9990 1 5134 0.01947799
## 9991 1 5134 0.01947799
## 9992 1 5134 0.01947799
## 9993 1 5134 0.01947799
## 9994 1 5134 0.01947799
## 9995 1 5134 0.01947799
## 9996 1 5134 0.01947799
## 9997 1 5134 0.01947799
## 9998 1 5134 0.01947799
## 9999 1 5134 0.01947799
## 10000 1 5134 0.01947799
## 10001 1 5134 0.01947799
## 10002 1 5134 0.01947799
## 10003 1 5134 0.01947799
## 10004 1 5134 0.01947799
## 10005 1 5134 0.01947799
## 10006 1 5134 0.01947799
## 10007 1 5134 0.01947799
## 10008 1 5134 0.01947799
## 10009 1 5134 0.01947799
## 10010 1 5134 0.01947799
## 10011 1 5134 0.01947799
## 10012 1 5134 0.01947799
## 10013 1 5134 0.01947799
## 10014 1 5134 0.01947799
## 10015 1 5134 0.01947799
## 10016 1 5134 0.01947799
## 10017 1 5134 0.01947799
## 10018 1 5134 0.01947799
## 10019 1 5134 0.01947799
## 10020 1 5134 0.01947799
## 10021 1 5134 0.01947799
## 10022 1 5134 0.01947799
## 10023 1 5134 0.01947799
## 10024 1 5134 0.01947799
## 10025 1 5134 0.01947799
## 10026 1 5134 0.01947799
## 10027 1 5134 0.01947799
## 10028 1 5134 0.01947799
## 10029 1 5134 0.01947799
## 10030 1 5134 0.01947799
## 10031 1 5134 0.01947799
## 10032 1 5134 0.01947799
## 10033 1 5134 0.01947799
## 10034 1 5134 0.01947799
## 10035 1 5134 0.01947799
## 10036 1 5134 0.01947799
## 10037 1 5134 0.01947799
## 10038 1 5134 0.01947799
## 10039 1 5134 0.01947799
## 10040 1 5134 0.01947799
## 10041 1 5134 0.01947799
## 10042 1 5134 0.01947799
## 10043 1 5134 0.01947799
## 10044 1 5134 0.01947799
## 10045 1 5134 0.01947799
## 10046 1 5134 0.01947799
## 10047 1 5134 0.01947799
## 10048 1 5134 0.01947799
## 10049 1 5134 0.01947799
## 10050 1 5134 0.01947799
## 10051 1 5134 0.01947799
## 10052 1 5134 0.01947799
## 10053 1 5134 0.01947799
## 10054 1 5134 0.01947799
## 10055 1 5134 0.01947799
## 10056 1 5134 0.01947799
## 10057 1 5134 0.01947799
## 10058 1 5134 0.01947799
## 10059 1 5134 0.01947799
## 10060 1 5134 0.01947799
## 10061 1 5134 0.01947799
## 10062 1 5134 0.01947799
## 10063 1 5134 0.01947799
## 10064 1 5134 0.01947799
## 10065 1 5134 0.01947799
## 10066 1 5134 0.01947799
## 10067 1 5134 0.01947799
## 10068 1 5134 0.01947799
## 10069 1 5134 0.01947799
## 10070 1 5134 0.01947799
## 10071 1 5134 0.01947799
## 10072 1 5134 0.01947799
## 10073 1 5134 0.01947799
## 10074 1 5134 0.01947799
## 10075 1 5134 0.01947799
## 10076 1 5134 0.01947799
## 10077 1 5134 0.01947799
## 10078 1 5134 0.01947799
## 10079 1 5134 0.01947799
## 10080 1 5134 0.01947799
## 10081 1 5134 0.01947799
## 10082 1 5134 0.01947799
## 10083 1 5134 0.01947799
## 10084 1 5134 0.01947799
## 10085 1 5134 0.01947799
## 10086 1 5134 0.01947799
## 10087 1 5134 0.01947799
## 10088 1 5134 0.01947799
## 10089 1 5134 0.01947799
## 10090 1 5134 0.01947799
## 10091 1 5134 0.01947799
## 10092 1 5134 0.01947799
## 10093 1 5134 0.01947799
## 10094 1 5134 0.01947799
## 10095 1 5134 0.01947799
## 10096 1 5134 0.01947799
## 10097 1 5134 0.01947799
## 10098 1 5134 0.01947799
## 10099 1 5134 0.01947799
## 10100 1 5134 0.01947799
## 10101 1 5134 0.01947799
## 10102 1 5134 0.01947799
## 10103 1 5134 0.01947799
## 10104 1 5134 0.01947799
## 10105 1 5134 0.01947799
## 10106 1 5134 0.01947799
## 10107 1 5134 0.01947799
## 10108 1 5134 0.01947799
## 10109 1 5134 0.01947799
## 10110 1 5134 0.01947799
## 10111 1 5134 0.01947799
## 10112 1 5134 0.01947799
## 10113 1 5134 0.01947799
## 10114 1 5134 0.01947799
## 10115 1 5134 0.01947799
## 10116 1 5134 0.01947799
## 10117 1 5134 0.01947799
## 10118 1 5134 0.01947799
## 10119 1 5134 0.01947799
## 10120 1 5134 0.01947799
## 10121 1 5134 0.01947799
## 10122 1 5134 0.01947799
## 10123 1 5134 0.01947799
## 10124 1 5134 0.01947799
## 10125 1 5134 0.01947799
## 10126 1 5134 0.01947799
## 10127 1 5134 0.01947799
## 10128 1 5134 0.01947799
## 10129 1 5134 0.01947799
## 10130 1 5134 0.01947799
## 10131 1 5134 0.01947799
## 10132 1 5134 0.01947799
## 10133 1 5134 0.01947799
## 10134 1 5134 0.01947799
## 10135 1 5134 0.01947799
## 10136 1 5134 0.01947799
## 10137 1 5134 0.01947799
## 10138 1 5134 0.01947799
## 10139 1 5134 0.01947799
## 10140 1 5134 0.01947799
## 10141 1 5134 0.01947799
## 10142 1 5134 0.01947799
## 10143 1 5134 0.01947799
## 10144 1 5134 0.01947799
## 10145 1 5134 0.01947799
## 10146 1 5134 0.01947799
## 10147 1 5134 0.01947799
## 10148 1 5134 0.01947799
## 10149 1 5134 0.01947799
## 10150 1 5134 0.01947799
## 10151 1 5134 0.01947799
## 10152 1 5134 0.01947799
## 10153 1 5134 0.01947799
## 10154 1 5134 0.01947799
## 10155 1 5134 0.01947799
## 10156 1 5134 0.01947799
## 10157 1 5134 0.01947799
## 10158 1 5134 0.01947799
## 10159 1 5134 0.01947799
## 10160 1 5134 0.01947799
## 10161 1 5134 0.01947799
## 10162 1 5134 0.01947799
## 10163 1 5134 0.01947799
## 10164 1 5134 0.01947799
## 10165 1 5134 0.01947799
## 10166 1 5134 0.01947799
## 10167 1 5134 0.01947799
## 10168 1 5134 0.01947799
## 10169 1 5134 0.01947799
## 10170 1 5134 0.01947799
## 10171 1 5134 0.01947799
## 10172 1 5134 0.01947799
## 10173 1 5134 0.01947799
## 10174 1 5134 0.01947799
## 10175 1 5134 0.01947799
## 10176 1 5134 0.01947799
## 10177 1 5134 0.01947799
## 10178 1 5134 0.01947799
## 10179 1 5134 0.01947799
## 10180 1 5134 0.01947799
## 10181 1 5134 0.01947799
## 10182 1 5134 0.01947799
## 10183 1 5134 0.01947799
## 10184 1 5134 0.01947799
## 10185 1 5134 0.01947799
## 10186 1 5134 0.01947799
## 10187 1 5134 0.01947799
## 10188 1 5134 0.01947799
## 10189 1 5134 0.01947799
## 10190 1 5134 0.01947799
## 10191 1 5134 0.01947799
## 10192 1 5134 0.01947799
## 10193 1 5134 0.01947799
## 10194 1 5134 0.01947799
## 10195 1 5134 0.01947799
## 10196 1 5134 0.01947799
## 10197 1 5134 0.01947799
## 10198 1 5134 0.01947799
## 10199 1 5134 0.01947799
## 10200 1 5134 0.01947799
## 10201 1 5134 0.01947799
## 10202 1 5134 0.01947799
## 10203 1 5134 0.01947799
## 10204 1 5134 0.01947799
## 10205 1 5134 0.01947799
## 10206 1 5134 0.01947799
## 10207 1 5134 0.01947799
## 10208 1 5134 0.01947799
## 10209 1 5134 0.01947799
## 10210 1 5134 0.01947799
## 10211 1 5134 0.01947799
## 10212 1 5134 0.01947799
## 10213 1 5134 0.01947799
## 10214 1 5134 0.01947799
## 10215 1 5134 0.01947799
## 10216 1 5134 0.01947799
## 10217 1 5134 0.01947799
## 10218 1 5134 0.01947799
## 10219 1 5134 0.01947799
## 10220 1 5134 0.01947799
## 10221 1 5134 0.01947799
## 10222 1 5134 0.01947799
## 10223 1 5134 0.01947799
## 10224 1 5134 0.01947799
## 10225 1 5134 0.01947799
## 10226 1 5134 0.01947799
## 10227 1 5134 0.01947799
## 10228 1 5134 0.01947799
## 10229 1 5134 0.01947799
## 10230 1 5134 0.01947799
## 10231 1 5134 0.01947799
## 10232 1 5134 0.01947799
## 10233 1 5134 0.01947799
## 10234 1 5134 0.01947799
## 10235 1 5134 0.01947799
## 10236 1 5134 0.01947799
## 10237 1 5134 0.01947799
## 10238 1 5134 0.01947799
## 10239 1 5134 0.01947799
## 10240 1 5134 0.01947799
## 10241 1 5134 0.01947799
## 10242 1 5134 0.01947799
## 10243 1 5134 0.01947799
## 10244 1 5134 0.01947799
## 10245 1 5134 0.01947799
## 10246 1 5134 0.01947799
## 10247 1 5134 0.01947799
## 10248 1 5134 0.01947799
## 10249 1 5134 0.01947799
## 10250 1 5134 0.01947799
## 10251 1 5134 0.01947799
## 10252 1 5134 0.01947799
## 10253 1 5134 0.01947799
## 10254 1 5134 0.01947799
## 10255 1 5134 0.01947799
## 10256 1 5134 0.01947799
## 10257 1 5134 0.01947799
## 10258 1 5134 0.01947799
## 10259 1 5134 0.01947799
## 10260 1 5134 0.01947799
## 10261 1 5134 0.01947799
## 10262 1 5134 0.01947799
## 10263 1 5134 0.01947799
## 10264 1 5134 0.01947799
## 10265 1 5134 0.01947799
## 10266 1 5134 0.01947799
## 10267 1 5134 0.01947799
## 10268 1 5134 0.01947799
## 10269 1 5134 0.01947799
## 10270 1 5134 0.01947799
## 10271 1 5134 0.01947799
## 10272 1 5134 0.01947799
## 10273 1 5134 0.01947799
## 10274 1 5134 0.01947799
## 10275 1 5134 0.01947799
## 10276 1 5134 0.01947799
## 10277 1 5134 0.01947799
## 10278 1 5134 0.01947799
## 10279 1 5134 0.01947799
## 10280 1 5134 0.01947799
## 10281 1 5134 0.01947799
## 10282 1 5134 0.01947799
## 10283 1 5134 0.01947799
## 10284 1 5134 0.01947799
## 10285 1 5134 0.01947799
## 10286 1 5134 0.01947799
## 10287 1 5134 0.01947799
## 10288 1 5134 0.01947799
## 10289 1 5134 0.01947799
## 10290 1 5134 0.01947799
## 10291 1 5134 0.01947799
## 10292 1 5134 0.01947799
## 10293 1 5134 0.01947799
## 10294 1 5134 0.01947799
## 10295 1 5134 0.01947799
## 10296 1 5134 0.01947799
## 10297 1 5134 0.01947799
## 10298 1 5134 0.01947799
## 10299 1 5134 0.01947799
## 10300 1 5134 0.01947799
## 10301 1 5134 0.01947799
## 10302 1 5134 0.01947799
## 10303 1 5134 0.01947799
## 10304 1 5134 0.01947799
## 10305 1 5134 0.01947799
## 10306 1 5134 0.01947799
## 10307 1 5134 0.01947799
## 10308 1 5134 0.01947799
## 10309 1 5134 0.01947799
## 10310 1 5134 0.01947799
## 10311 1 5134 0.01947799
## 10312 1 5134 0.01947799
## 10313 1 5134 0.01947799
## 10314 1 5134 0.01947799
## 10315 1 5134 0.01947799
## 10316 1 5134 0.01947799
## 10317 1 5134 0.01947799
## 10318 1 5134 0.01947799
## 10319 1 5134 0.01947799
## 10320 1 5134 0.01947799
## 10321 1 5134 0.01947799
## 10322 1 5134 0.01947799
## 10323 1 5134 0.01947799
## 10324 1 5134 0.01947799
## 10325 1 5134 0.01947799
## 10326 1 5134 0.01947799
## 10327 1 5134 0.01947799
## 10328 1 5134 0.01947799
## 10329 1 5134 0.01947799
## 10330 1 5134 0.01947799
## 10331 1 5134 0.01947799
## 10332 1 5134 0.01947799
## 10333 1 5134 0.01947799
## 10334 1 5134 0.01947799
## 10335 1 5134 0.01947799
## 10336 1 5134 0.01947799
## 10337 1 5134 0.01947799
## 10338 1 5134 0.01947799
## 10339 1 5134 0.01947799
## 10340 1 5134 0.01947799
## 10341 1 5134 0.01947799
## 10342 1 5134 0.01947799
## 10343 1 5134 0.01947799
## 10344 1 5134 0.01947799
## 10345 1 5134 0.01947799
## 10346 1 5134 0.01947799
## 10347 1 5134 0.01947799
## 10348 1 5134 0.01947799
## 10349 1 5134 0.01947799
## 10350 1 5134 0.01947799
## 10351 1 5134 0.01947799
## 10352 1 5134 0.01947799
## 10353 1 5134 0.01947799
## 10354 1 5134 0.01947799
## 10355 1 5134 0.01947799
## 10356 1 5134 0.01947799
## 10357 1 5134 0.01947799
## 10358 1 5134 0.01947799
## 10359 1 5134 0.01947799
## 10360 1 5134 0.01947799
## 10361 1 5134 0.01947799
## 10362 1 5134 0.01947799
## 10363 1 5134 0.01947799
## 10364 1 5134 0.01947799
## 10365 1 5134 0.01947799
## 10366 1 5134 0.01947799
## 10367 1 5134 0.01947799
## 10368 1 5134 0.01947799
## 10369 1 5134 0.01947799
## 10370 1 5134 0.01947799
## 10371 1 5134 0.01947799
## 10372 1 5134 0.01947799
## 10373 1 5134 0.01947799
## 10374 1 5134 0.01947799
## 10375 1 5134 0.01947799
## 10376 1 5134 0.01947799
## 10377 1 5134 0.01947799
## 10378 1 5134 0.01947799
## 10379 1 5134 0.01947799
## 10380 1 5134 0.01947799
## 10381 1 5134 0.01947799
## 10382 1 5134 0.01947799
## 10383 1 5134 0.01947799
## 10384 1 5134 0.01947799
## 10385 1 5134 0.01947799
## 10386 1 5134 0.01947799
## 10387 1 5134 0.01947799
## 10388 1 5134 0.01947799
## 10389 1 5134 0.01947799
## 10390 1 5134 0.01947799
## 10391 1 5134 0.01947799
## 10392 1 5134 0.01947799
## 10393 1 5134 0.01947799
## 10394 1 5134 0.01947799
## 10395 1 5134 0.01947799
## 10396 1 5134 0.01947799
## 10397 1 5134 0.01947799
## 10398 1 5134 0.01947799
## 10399 1 5134 0.01947799
## 10400 1 5134 0.01947799
## 10401 1 5134 0.01947799
## 10402 1 5134 0.01947799
## 10403 1 5134 0.01947799
## 10404 1 5134 0.01947799
## 10405 1 5134 0.01947799
## 10406 1 5134 0.01947799
## 10407 1 5134 0.01947799
## 10408 1 5134 0.01947799
## 10409 1 5134 0.01947799
## 10410 1 5134 0.01947799
## 10411 1 5134 0.01947799
## 10412 1 5134 0.01947799
## 10413 1 5134 0.01947799
## 10414 1 5134 0.01947799
## 10415 1 5134 0.01947799
## 10416 1 5134 0.01947799
## 10417 1 5134 0.01947799
## 10418 1 5134 0.01947799
## 10419 1 5134 0.01947799
## 10420 1 5134 0.01947799
## 10421 1 5134 0.01947799
## 10422 1 5134 0.01947799
## 10423 1 5134 0.01947799
## 10424 1 5134 0.01947799
## 10425 1 5134 0.01947799
## 10426 1 5134 0.01947799
## 10427 1 5134 0.01947799
## 10428 1 5134 0.01947799
## 10429 1 5134 0.01947799
## 10430 1 5134 0.01947799
## 10431 1 5134 0.01947799
## 10432 1 5134 0.01947799
## 10433 1 5134 0.01947799
## 10434 1 5134 0.01947799
## 10435 1 5134 0.01947799
## 10436 1 5134 0.01947799
## 10437 1 5134 0.01947799
## 10438 1 5134 0.01947799
## 10439 1 5134 0.01947799
## 10440 1 5134 0.01947799
## 10441 1 5134 0.01947799
## 10442 1 5134 0.01947799
## 10443 1 5134 0.01947799
## 10444 1 5134 0.01947799
## 10445 1 5134 0.01947799
## 10446 1 5134 0.01947799
## 10447 1 5134 0.01947799
## 10448 1 5134 0.01947799
## 10449 1 5134 0.01947799
## 10450 1 5134 0.01947799
## 10451 1 5134 0.01947799
## 10452 1 5134 0.01947799
## 10453 1 5134 0.01947799
## 10454 1 5134 0.01947799
## 10455 1 5134 0.01947799
## 10456 1 5134 0.01947799
## 10457 1 5134 0.01947799
## 10458 1 5134 0.01947799
## 10459 1 5134 0.01947799
## 10460 1 5134 0.01947799
## 10461 1 5134 0.01947799
## 10462 1 5134 0.01947799
## 10463 1 5134 0.01947799
## 10464 1 5134 0.01947799
## 10465 1 5134 0.01947799
## 10466 1 5134 0.01947799
## 10467 1 5134 0.01947799
## 10468 1 5134 0.01947799
## 10469 1 5134 0.01947799
## 10470 1 5134 0.01947799
## 10471 1 5134 0.01947799
## 10472 1 5134 0.01947799
## 10473 1 5134 0.01947799
## 10474 1 5134 0.01947799
## 10475 1 5134 0.01947799
## 10476 1 5134 0.01947799
## 10477 1 5134 0.01947799
## 10478 1 5134 0.01947799
## 10479 1 5134 0.01947799
## 10480 1 5134 0.01947799
## 10481 1 5134 0.01947799
## 10482 1 5134 0.01947799
## 10483 1 5134 0.01947799
## 10484 1 5134 0.01947799
## 10485 1 5134 0.01947799
## 10486 1 5134 0.01947799
## 10487 1 5134 0.01947799
## 10488 1 5134 0.01947799
## 10489 1 5134 0.01947799
## 10490 1 5134 0.01947799
## 10491 1 5134 0.01947799
## 10492 1 5134 0.01947799
## 10493 1 5134 0.01947799
## 10494 1 5134 0.01947799
## 10495 1 5134 0.01947799
## 10496 1 5134 0.01947799
## 10497 1 5134 0.01947799
## 10498 1 5134 0.01947799
## 10499 1 5134 0.01947799
## 10500 1 5134 0.01947799
## 10501 1 5134 0.01947799
## 10502 1 5134 0.01947799
## 10503 1 5134 0.01947799
## 10504 1 5134 0.01947799
## 10505 1 5134 0.01947799
## 10506 1 5134 0.01947799
## 10507 1 5134 0.01947799
## 10508 1 5134 0.01947799
## 10509 1 5134 0.01947799
## 10510 1 5134 0.01947799
## 10511 1 5134 0.01947799
## 10512 1 5134 0.01947799
## 10513 1 5134 0.01947799
## 10514 1 5134 0.01947799
## 10515 1 5134 0.01947799
## 10516 1 5134 0.01947799
## 10517 1 5134 0.01947799
## 10518 1 5134 0.01947799
## 10519 1 5134 0.01947799
## 10520 1 5134 0.01947799
## 10521 1 5134 0.01947799
## 10522 1 5134 0.01947799
## 10523 1 5134 0.01947799
## 10524 1 5134 0.01947799
## 10525 1 5134 0.01947799
## 10526 1 5134 0.01947799
## 10527 1 5134 0.01947799
## 10528 1 5134 0.01947799
## 10529 1 5134 0.01947799
## 10530 1 5134 0.01947799
## 10531 1 5134 0.01947799
## 10532 1 5134 0.01947799
## 10533 1 5134 0.01947799
## 10534 1 5134 0.01947799
## 10535 1 5134 0.01947799
## 10536 1 5134 0.01947799
## 10537 1 5134 0.01947799
## 10538 1 5134 0.01947799
## 10539 1 5134 0.01947799
## 10540 1 5134 0.01947799
## 10541 1 5134 0.01947799
## 10542 1 5134 0.01947799
## 10543 1 5134 0.01947799
## 10544 1 5134 0.01947799
## 10545 1 5134 0.01947799
## 10546 1 5134 0.01947799
## 10547 1 5134 0.01947799
## 10548 1 5134 0.01947799
## 10549 1 5134 0.01947799
## 10550 1 5134 0.01947799
## 10551 1 5134 0.01947799
## 10552 1 5134 0.01947799
## 10553 1 5134 0.01947799
## 10554 1 5134 0.01947799
## 10555 1 5134 0.01947799
## 10556 1 5134 0.01947799
## 10557 1 5134 0.01947799
## 10558 1 5134 0.01947799
## 10559 1 5134 0.01947799
## 10560 1 5134 0.01947799
## 10561 1 5134 0.01947799
## 10562 1 5134 0.01947799
## 10563 1 5134 0.01947799
## 10564 1 5134 0.01947799
## 10565 1 5134 0.01947799
## 10566 1 5134 0.01947799
## 10567 1 5134 0.01947799
## 10568 1 5134 0.01947799
## 10569 1 5134 0.01947799
## 10570 1 5134 0.01947799
## 10571 1 5134 0.01947799
## 10572 1 5134 0.01947799
## 10573 1 5134 0.01947799
## 10574 1 5134 0.01947799
## 10575 1 5134 0.01947799
## 10576 1 5134 0.01947799
## 10577 1 5134 0.01947799
## 10578 1 5134 0.01947799
## 10579 1 5134 0.01947799
## 10580 1 5134 0.01947799
## 10581 1 5134 0.01947799
## 10582 1 5134 0.01947799
## 10583 1 5134 0.01947799
## 10584 1 5134 0.01947799
## 10585 1 5134 0.01947799
## 10586 1 5134 0.01947799
## 10587 1 5134 0.01947799
## 10588 1 5134 0.01947799
## 10589 1 5134 0.01947799
## 10590 1 5134 0.01947799
## 10591 1 5134 0.01947799
## 10592 1 5134 0.01947799
## 10593 1 5134 0.01947799
## 10594 1 5134 0.01947799
## 10595 1 5134 0.01947799
## 10596 1 5134 0.01947799
## 10597 1 5134 0.01947799
## 10598 1 5134 0.01947799
## 10599 1 5134 0.01947799
## 10600 1 5134 0.01947799
## 10601 1 5134 0.01947799
## 10602 1 5134 0.01947799
## 10603 1 5134 0.01947799
## 10604 1 5134 0.01947799
## 10605 1 5134 0.01947799
## 10606 1 5134 0.01947799
## 10607 1 5134 0.01947799
## 10608 1 5134 0.01947799
## 10609 1 5134 0.01947799
## 10610 1 5134 0.01947799
## 10611 1 5134 0.01947799
## 10612 1 5134 0.01947799
## 10613 1 5134 0.01947799
## 10614 1 5134 0.01947799
## 10615 1 5134 0.01947799
## 10616 1 5134 0.01947799
## 10617 1 5134 0.01947799
## 10618 1 5134 0.01947799
## 10619 1 5134 0.01947799
## 10620 1 5134 0.01947799
## 10621 1 5134 0.01947799
## 10622 1 5134 0.01947799
## 10623 1 5134 0.01947799
## 10624 1 5134 0.01947799
## 10625 1 5134 0.01947799
## 10626 1 5134 0.01947799
## 10627 1 5134 0.01947799
## 10628 1 5134 0.01947799
## 10629 1 5134 0.01947799
## 10630 1 5134 0.01947799
## 10631 1 5134 0.01947799
## 10632 1 5134 0.01947799
## 10633 1 5134 0.01947799
## 10634 1 5134 0.01947799
## 10635 1 5134 0.01947799
## 10636 1 5134 0.01947799
## 10637 1 5134 0.01947799
## 10638 1 5134 0.01947799
## 10639 1 5134 0.01947799
## 10640 1 5134 0.01947799
## 10641 1 5134 0.01947799
## 10642 1 5134 0.01947799
## 10643 1 5134 0.01947799
## 10644 1 5134 0.01947799
## 10645 1 5134 0.01947799
## 10646 1 5134 0.01947799
## 10647 1 5134 0.01947799
## 10648 1 5134 0.01947799
## 10649 1 5134 0.01947799
## 10650 1 5134 0.01947799
## 10651 1 5134 0.01947799
## 10652 1 5134 0.01947799
## 10653 1 5134 0.01947799
## 10654 1 5134 0.01947799
## 10655 1 5134 0.01947799
## 10656 1 5134 0.01947799
## 10657 1 5134 0.01947799
## 10658 1 5134 0.01947799
## 10659 1 5134 0.01947799
## 10660 1 5134 0.01947799
## 10661 1 5134 0.01947799
## 10662 1 5134 0.01947799
## 10663 1 5134 0.01947799
## 10664 1 5134 0.01947799
## 10665 1 5134 0.01947799
## 10666 1 5134 0.01947799
## 10667 1 5134 0.01947799
## 10668 1 5134 0.01947799
## 10669 1 5134 0.01947799
## 10670 1 5134 0.01947799
## 10671 1 5134 0.01947799
## 10672 1 5134 0.01947799
## 10673 1 5134 0.01947799
## 10674 1 5134 0.01947799
## 10675 1 5134 0.01947799
## 10676 1 5134 0.01947799
## 10677 1 5134 0.01947799
## 10678 1 5134 0.01947799
## 10679 1 5134 0.01947799
## 10680 1 5134 0.01947799
## 10681 1 5134 0.01947799
## 10682 1 5134 0.01947799
## 10683 1 5134 0.01947799
## 10684 1 5134 0.01947799
## 10685 1 5134 0.01947799
## 10686 1 5134 0.01947799
## 10687 1 5134 0.01947799
## 10688 1 5134 0.01947799
## 10689 1 5134 0.01947799
## 10690 1 5134 0.01947799
## 10691 1 5134 0.01947799
## 10692 1 5134 0.01947799
## 10693 1 5134 0.01947799
## 10694 1 5134 0.01947799
## 10695 1 5134 0.01947799
## 10696 1 5134 0.01947799
## 10697 1 5134 0.01947799
## 10698 1 5134 0.01947799
## 10699 1 5134 0.01947799
## 10700 1 5134 0.01947799
## 10701 1 5134 0.01947799
## 10702 1 5134 0.01947799
## 10703 1 5134 0.01947799
## 10704 1 5134 0.01947799
## 10705 1 5134 0.01947799
## 10706 1 5134 0.01947799
## 10707 1 5134 0.01947799
## 10708 1 5134 0.01947799
## 10709 1 5134 0.01947799
## 10710 1 5134 0.01947799
## 10711 1 5134 0.01947799
## 10712 1 5134 0.01947799
## 10713 1 5134 0.01947799
## 10714 1 5134 0.01947799
## 10715 1 5134 0.01947799
## 10716 1 5134 0.01947799
## 10717 1 5134 0.01947799
## 10718 1 5134 0.01947799
## 10719 1 5134 0.01947799
## 10720 1 5134 0.01947799
## 10721 1 5134 0.01947799
## 10722 1 5134 0.01947799
## 10723 1 5134 0.01947799
## 10724 1 5134 0.01947799
## 10725 1 5134 0.01947799
## 10726 1 5134 0.01947799
## 10727 1 5134 0.01947799
## 10728 1 5134 0.01947799
## 10729 1 5134 0.01947799
## 10730 1 5134 0.01947799
## 10731 1 5134 0.01947799
## 10732 1 5134 0.01947799
## 10733 1 5134 0.01947799
## 10734 1 5134 0.01947799
## 10735 1 5134 0.01947799
## 10736 1 5134 0.01947799
## 10737 1 5134 0.01947799
## 10738 1 5134 0.01947799
## 10739 1 5134 0.01947799
## 10740 1 5134 0.01947799
## 10741 1 5134 0.01947799
## 10742 1 5134 0.01947799
## 10743 1 5134 0.01947799
## 10744 1 5134 0.01947799
## 10745 1 5134 0.01947799
## 10746 1 5134 0.01947799
## 10747 1 5134 0.01947799
## 10748 1 5134 0.01947799
## 10749 1 5134 0.01947799
## 10750 1 5134 0.01947799
## 10751 1 5134 0.01947799
## 10752 1 5134 0.01947799
## 10753 1 5134 0.01947799
## 10754 1 5134 0.01947799
## 10755 1 5134 0.01947799
## 10756 1 5134 0.01947799
## 10757 1 5134 0.01947799
## 10758 1 5134 0.01947799
## 10759 1 5134 0.01947799
## 10760 1 5134 0.01947799
## 10761 1 5134 0.01947799
## 10762 1 5134 0.01947799
## 10763 1 5134 0.01947799
## 10764 1 5134 0.01947799
## 10765 1 5134 0.01947799
## 10766 1 5134 0.01947799
## 10767 1 5134 0.01947799
## 10768 1 5134 0.01947799
## 10769 1 5134 0.01947799
## 10770 1 5134 0.01947799
## 10771 1 5134 0.01947799
## 10772 1 5134 0.01947799
## 10773 1 5134 0.01947799
## 10774 1 5134 0.01947799
## 10775 1 5134 0.01947799
## 10776 1 5134 0.01947799
## 10777 1 5134 0.01947799
## 10778 1 5134 0.01947799
## 10779 1 5134 0.01947799
## 10780 1 5134 0.01947799
## 10781 1 5134 0.01947799
## 10782 1 5134 0.01947799
## 10783 1 5134 0.01947799
## 10784 1 5134 0.01947799
## 10785 1 5134 0.01947799
## 10786 1 5134 0.01947799
## 10787 1 5134 0.01947799
## 10788 1 5134 0.01947799
## 10789 1 5134 0.01947799
## 10790 1 5134 0.01947799
## 10791 1 5134 0.01947799
## 10792 1 5134 0.01947799
## 10793 1 5134 0.01947799
## 10794 1 5134 0.01947799
## 10795 1 5134 0.01947799
## 10796 1 5134 0.01947799
## 10797 1 5134 0.01947799
## 10798 1 5134 0.01947799
## 10799 1 5134 0.01947799
## 10800 1 5134 0.01947799
## 10801 1 5134 0.01947799
## 10802 1 5134 0.01947799
## 10803 1 5134 0.01947799
## 10804 1 5134 0.01947799
## 10805 1 5134 0.01947799
## 10806 1 5134 0.01947799
## 10807 1 5134 0.01947799
## 10808 1 5134 0.01947799
## 10809 1 5134 0.01947799
## 10810 1 5134 0.01947799
## 10811 1 5134 0.01947799
## 10812 1 5134 0.01947799
## 10813 1 5134 0.01947799
## 10814 1 5134 0.01947799
## 10815 1 5134 0.01947799
## 10816 1 5134 0.01947799
## 10817 1 5134 0.01947799
## 10818 1 5134 0.01947799
## 10819 1 5134 0.01947799
## 10820 1 5134 0.01947799
## 10821 1 5134 0.01947799
## 10822 1 5134 0.01947799
## 10823 1 5134 0.01947799
## 10824 1 5134 0.01947799
## 10825 1 5134 0.01947799
## 10826 1 5134 0.01947799
## 10827 1 5134 0.01947799
## 10828 1 5134 0.01947799
## 10829 1 5134 0.01947799
## 10830 1 5134 0.01947799
## 10831 1 5134 0.01947799
## 10832 1 5134 0.01947799
## 10833 1 5134 0.01947799
## 10834 1 5134 0.01947799
## 10835 1 5134 0.01947799
## 10836 1 5134 0.01947799
## 10837 1 5134 0.01947799
## 10838 1 5134 0.01947799
## 10839 1 5134 0.01947799
## 10840 1 5134 0.01947799
## 10841 1 5134 0.01947799
## 10842 1 5134 0.01947799
## 10843 1 5134 0.01947799
## 10844 1 5134 0.01947799
## 10845 1 5134 0.01947799
## 10846 1 5134 0.01947799
## 10847 1 5134 0.01947799
## 10848 1 5134 0.01947799
## 10849 1 5134 0.01947799
## 10850 1 5134 0.01947799
## 10851 1 5134 0.01947799
## 10852 1 5134 0.01947799
## 10853 1 5134 0.01947799
## 10854 1 5134 0.01947799
## 10855 1 5134 0.01947799
## 10856 1 5134 0.01947799
## 10857 1 5134 0.01947799
## 10858 1 5134 0.01947799
## 10859 1 5134 0.01947799
## 10860 1 5134 0.01947799
## 10861 1 5134 0.01947799
## 10862 1 5134 0.01947799
## 10863 1 5134 0.01947799
## 10864 1 5134 0.01947799
## 10865 1 5134 0.01947799
## 10866 1 5134 0.01947799
## 10867 1 5134 0.01947799
## 10868 1 5134 0.01947799
## 10869 1 5134 0.01947799
## 10870 1 5134 0.01947799
## 10871 1 5134 0.01947799
## 10872 1 5134 0.01947799
## 10873 1 5134 0.01947799
## 10874 1 5134 0.01947799
## 10875 1 5134 0.01947799
## 10876 1 5134 0.01947799
## 10877 1 5134 0.01947799
## 10878 1 5134 0.01947799
## 10879 1 5134 0.01947799
## 10880 1 5134 0.01947799
## 10881 1 5134 0.01947799
## 10882 1 5134 0.01947799
## 10883 1 5134 0.01947799
## 10884 1 5134 0.01947799
## 10885 1 5134 0.01947799
## 10886 1 5134 0.01947799
## 10887 1 5134 0.01947799
## 10888 1 5134 0.01947799
## 10889 1 5134 0.01947799
## 10890 1 5134 0.01947799
## 10891 1 5134 0.01947799
## 10892 1 5134 0.01947799
## 10893 1 5134 0.01947799
## 10894 1 5134 0.01947799
## 10895 1 5134 0.01947799
## 10896 1 5134 0.01947799
## 10897 1 5134 0.01947799
## 10898 1 5134 0.01947799
## 10899 1 5134 0.01947799
## 10900 1 5134 0.01947799
## 10901 1 5134 0.01947799
## 10902 1 5134 0.01947799
## 10903 1 5134 0.01947799
## 10904 1 5134 0.01947799
## 10905 1 5134 0.01947799
## 10906 1 5134 0.01947799
## 10907 1 5134 0.01947799
## 10908 1 5134 0.01947799
## 10909 1 5134 0.01947799
## 10910 1 5134 0.01947799
## 10911 1 5134 0.01947799
## 10912 1 5134 0.01947799
## 10913 1 5134 0.01947799
## 10914 1 5134 0.01947799
## 10915 1 5134 0.01947799
## 10916 1 5134 0.01947799
## 10917 1 5134 0.01947799
## 10918 1 5134 0.01947799
## 10919 1 5134 0.01947799
## 10920 1 5134 0.01947799
## 10921 1 5134 0.01947799
## 10922 1 5134 0.01947799
## 10923 1 5134 0.01947799
## 10924 1 5134 0.01947799
## 10925 1 5134 0.01947799
## 10926 1 5134 0.01947799
## 10927 1 5134 0.01947799
## 10928 1 5134 0.01947799
## 10929 1 5134 0.01947799
## 10930 1 5134 0.01947799
## 10931 1 5134 0.01947799
## 10932 1 5134 0.01947799
## 10933 1 5134 0.01947799
## 10934 1 5134 0.01947799
## 10935 1 5134 0.01947799
## 10936 1 5134 0.01947799
## 10937 1 5134 0.01947799
## 10938 1 5134 0.01947799
## 10939 1 5134 0.01947799
## 10940 1 5134 0.01947799
## 10941 1 5134 0.01947799
## 10942 1 5134 0.01947799
## 10943 1 5134 0.01947799
## 10944 1 5134 0.01947799
## 10945 1 5134 0.01947799
## 10946 1 5134 0.01947799
## 10947 1 5134 0.01947799
## 10948 1 5134 0.01947799
## 10949 1 5134 0.01947799
## 10950 1 5134 0.01947799
## 10951 1 5134 0.01947799
## 10952 1 5134 0.01947799
## 10953 1 5134 0.01947799
## 10954 1 5134 0.01947799
## 10955 1 5134 0.01947799
## 10956 1 5134 0.01947799
## 10957 1 5134 0.01947799
## 10958 1 5134 0.01947799
## 10959 1 5134 0.01947799
## 10960 1 5134 0.01947799
## 10961 1 5134 0.01947799
## 10962 1 5134 0.01947799
## 10963 1 5134 0.01947799
## 10964 1 5134 0.01947799
## 10965 1 5134 0.01947799
## 10966 1 5134 0.01947799
## 10967 1 5134 0.01947799
## 10968 1 5134 0.01947799
## 10969 1 5134 0.01947799
## 10970 1 5134 0.01947799
## 10971 1 5134 0.01947799
## 10972 1 5134 0.01947799
## 10973 1 5134 0.01947799
## 10974 1 5134 0.01947799
## 10975 1 5134 0.01947799
## 10976 1 5134 0.01947799
## 10977 1 5134 0.01947799
## 10978 1 5134 0.01947799
## 10979 1 5134 0.01947799
## 10980 1 5134 0.01947799
## 10981 1 5134 0.01947799
## 10982 1 5134 0.01947799
## 10983 1 5134 0.01947799
## 10984 1 5134 0.01947799
## 10985 1 5134 0.01947799
## 10986 1 5134 0.01947799
## 10987 1 5134 0.01947799
## 10988 1 5134 0.01947799
## 10989 1 5134 0.01947799
## 10990 1 5134 0.01947799
## 10991 1 5134 0.01947799
## 10992 1 5134 0.01947799
## 10993 1 5134 0.01947799
## 10994 1 5134 0.01947799
## 10995 1 5134 0.01947799
## 10996 1 5134 0.01947799
## 10997 1 5134 0.01947799
## 10998 1 5134 0.01947799
## 10999 1 5134 0.01947799
## 11000 1 5134 0.01947799
## 11001 1 5134 0.01947799
## 11002 1 5134 0.01947799
## 11003 1 5134 0.01947799
## 11004 1 5134 0.01947799
## 11005 1 5134 0.01947799
## 11006 1 5134 0.01947799
## 11007 1 5134 0.01947799
## 11008 1 5134 0.01947799
## 11009 1 5134 0.01947799
## 11010 1 5134 0.01947799
## 11011 1 5134 0.01947799
## 11012 1 5134 0.01947799
## 11013 1 5134 0.01947799
## 11014 1 5134 0.01947799
## 11015 1 5134 0.01947799
## 11016 1 5134 0.01947799
## 11017 1 5134 0.01947799
## 11018 1 5134 0.01947799
## 11019 1 5134 0.01947799
## 11020 1 5134 0.01947799
## 11021 1 5134 0.01947799
## 11022 1 5134 0.01947799
## 11023 1 5134 0.01947799
## 11024 1 5134 0.01947799
## 11025 1 5134 0.01947799
## 11026 1 5134 0.01947799
## 11027 1 5134 0.01947799
## 11028 1 5134 0.01947799
## 11029 1 5134 0.01947799
## 11030 1 5134 0.01947799
## 11031 1 5134 0.01947799
## 11032 1 5134 0.01947799
## 11033 1 5134 0.01947799
## 11034 1 5134 0.01947799
## 11035 1 5134 0.01947799
## 11036 1 5134 0.01947799
## 11037 1 5134 0.01947799
## 11038 1 5134 0.01947799
## 11039 1 5134 0.01947799
## 11040 1 5134 0.01947799
## 11041 1 5134 0.01947799
## 11042 1 5134 0.01947799
## 11043 1 5134 0.01947799
## 11044 1 5134 0.01947799
## 11045 1 5134 0.01947799
## 11046 1 5134 0.01947799
## 11047 1 5134 0.01947799
## 11048 1 5134 0.01947799
## 11049 1 5134 0.01947799
## 11050 1 5134 0.01947799
## 11051 1 5134 0.01947799
## 11052 1 5134 0.01947799
## 11053 1 5134 0.01947799
## 11054 1 5134 0.01947799
## 11055 1 5134 0.01947799
## 11056 1 5134 0.01947799
## 11057 1 5134 0.01947799
## 11058 1 5134 0.01947799
## 11059 1 5134 0.01947799
## 11060 1 5134 0.01947799
## 11061 1 5134 0.01947799
## 11062 1 5134 0.01947799
## 11063 1 5134 0.01947799
## 11064 1 5134 0.01947799
## 11065 1 5134 0.01947799
## 11066 1 5134 0.01947799
## 11067 1 5134 0.01947799
## 11068 1 5134 0.01947799
## 11069 1 5134 0.01947799
## 11070 1 5134 0.01947799
## 11071 1 5134 0.01947799
## 11072 1 5134 0.01947799
## 11073 1 5134 0.01947799
## 11074 1 5134 0.01947799
## 11075 1 5134 0.01947799
## 11076 1 5134 0.01947799
## 11077 1 5134 0.01947799
## 11078 1 5134 0.01947799
## 11079 1 5134 0.01947799
## 11080 1 5134 0.01947799
## 11081 1 5134 0.01947799
## 11082 1 5134 0.01947799
## 11083 1 5134 0.01947799
## 11084 1 5134 0.01947799
## 11085 1 5134 0.01947799
## 11086 1 5134 0.01947799
## 11087 1 5134 0.01947799
## 11088 1 5134 0.01947799
## 11089 1 5134 0.01947799
## 11090 1 5134 0.01947799
## 11091 1 5134 0.01947799
## 11092 1 5134 0.01947799
## 11093 1 5134 0.01947799
## 11094 1 5134 0.01947799
## 11095 1 5134 0.01947799
## 11096 1 5134 0.01947799
## 11097 1 5134 0.01947799
## 11098 1 5134 0.01947799
## 11099 1 5134 0.01947799
## 11100 1 5134 0.01947799
## 11101 1 5134 0.01947799
## 11102 1 5134 0.01947799
## 11103 1 5134 0.01947799
## 11104 1 5134 0.01947799
## 11105 1 5134 0.01947799
## 11106 1 5134 0.01947799
## 11107 1 5134 0.01947799
## 11108 1 5134 0.01947799
## 11109 1 5134 0.01947799
## 11110 1 5134 0.01947799
## 11111 1 5134 0.01947799
## 11112 1 5134 0.01947799
## 11113 1 5134 0.01947799
## 11114 1 5134 0.01947799
## 11115 1 5134 0.01947799
## 11116 1 5134 0.01947799
## 11117 1 5134 0.01947799
## 11118 1 5134 0.01947799
## 11119 1 5134 0.01947799
## 11120 1 5134 0.01947799
## 11121 1 5134 0.01947799
## 11122 1 5134 0.01947799
## 11123 1 5134 0.01947799
## 11124 1 5134 0.01947799
## 11125 1 5134 0.01947799
## 11126 1 5134 0.01947799
## 11127 1 5134 0.01947799
## 11128 1 5134 0.01947799
## 11129 1 5134 0.01947799
## 11130 1 5134 0.01947799
## 11131 1 5134 0.01947799
## 11132 1 5134 0.01947799
## 11133 1 5134 0.01947799
## 11134 1 5134 0.01947799
## 11135 1 5134 0.01947799
## 11136 1 5134 0.01947799
## 11137 1 5134 0.01947799
## 11138 1 5134 0.01947799
## 11139 1 5134 0.01947799
## 11140 1 5134 0.01947799
## 11141 1 5134 0.01947799
## 11142 1 5134 0.01947799
## 11143 1 5134 0.01947799
## 11144 1 5134 0.01947799
## 11145 1 5134 0.01947799
## 11146 1 5134 0.01947799
## 11147 1 5134 0.01947799
## 11148 1 5134 0.01947799
## 11149 1 5134 0.01947799
## 11150 1 5134 0.01947799
## 11151 1 5134 0.01947799
## 11152 1 5134 0.01947799
## 11153 1 5134 0.01947799
## 11154 1 5134 0.01947799
## 11155 1 5134 0.01947799
## 11156 1 5134 0.01947799
## 11157 1 5134 0.01947799
## 11158 1 5134 0.01947799
## 11159 1 5134 0.01947799
## 11160 1 5134 0.01947799
## 11161 1 5134 0.01947799
## 11162 1 5134 0.01947799
## 11163 1 5134 0.01947799
## 11164 1 5134 0.01947799
## 11165 1 5134 0.01947799
## 11166 1 5134 0.01947799
## 11167 1 5134 0.01947799
## 11168 1 5134 0.01947799
## 11169 1 5134 0.01947799
## 11170 1 5134 0.01947799
## 11171 1 5134 0.01947799
## 11172 1 5134 0.01947799
## 11173 1 5134 0.01947799
## 11174 1 5134 0.01947799
## 11175 1 5134 0.01947799
## 11176 1 5134 0.01947799
## 11177 1 5134 0.01947799
## 11178 1 5134 0.01947799
## 11179 1 5134 0.01947799
## 11180 1 5134 0.01947799
## 11181 1 5134 0.01947799
## 11182 1 5134 0.01947799
## 11183 1 5134 0.01947799
## 11184 1 5134 0.01947799
## 11185 1 5134 0.01947799
## 11186 1 5134 0.01947799
## 11187 1 5134 0.01947799
## 11188 1 5134 0.01947799
## 11189 1 5134 0.01947799
## 11190 1 5134 0.01947799
## 11191 1 5134 0.01947799
## 11192 1 5134 0.01947799
## 11193 1 5134 0.01947799
## 11194 1 5134 0.01947799
## 11195 1 5134 0.01947799
## 11196 1 5134 0.01947799
## 11197 1 5134 0.01947799
## 11198 1 5134 0.01947799
## 11199 1 5134 0.01947799
## 11200 1 5134 0.01947799
## 11201 1 5134 0.01947799
## 11202 1 5134 0.01947799
## 11203 1 5134 0.01947799
## 11204 1 5134 0.01947799
## 11205 1 5134 0.01947799
## 11206 1 5134 0.01947799
## 11207 1 5134 0.01947799
## 11208 1 5134 0.01947799
## 11209 1 5134 0.01947799
## 11210 1 5134 0.01947799
## 11211 1 5134 0.01947799
## 11212 1 5134 0.01947799
## 11213 1 5134 0.01947799
## 11214 1 5134 0.01947799
## 11215 1 5134 0.01947799
## 11216 1 5134 0.01947799
## 11217 1 5134 0.01947799
## 11218 1 5134 0.01947799
## 11219 1 5134 0.01947799
## 11220 1 5134 0.01947799
## 11221 1 5134 0.01947799
## 11222 1 5134 0.01947799
## 11223 1 5134 0.01947799
## 11224 1 5134 0.01947799
## 11225 1 5134 0.01947799
## 11226 1 5134 0.01947799
## 11227 1 5134 0.01947799
## 11228 1 5134 0.01947799
## 11229 1 5134 0.01947799
## 11230 1 5134 0.01947799
## 11231 1 5134 0.01947799
## 11232 1 5134 0.01947799
## 11233 1 5134 0.01947799
## 11234 1 5134 0.01947799
## 11235 1 5134 0.01947799
## 11236 1 5134 0.01947799
## 11237 1 5134 0.01947799
## 11238 1 5134 0.01947799
## 11239 1 5134 0.01947799
## 11240 1 5134 0.01947799
## 11241 1 5134 0.01947799
## 11242 1 5134 0.01947799
## 11243 1 5134 0.01947799
## 11244 1 5134 0.01947799
## 11245 1 5134 0.01947799
## 11246 1 5134 0.01947799
## 11247 1 5134 0.01947799
## 11248 1 5134 0.01947799
## 11249 1 5134 0.01947799
## 11250 1 5134 0.01947799
## 11251 1 5134 0.01947799
## 11252 1 5134 0.01947799
## 11253 1 5134 0.01947799
## 11254 1 5134 0.01947799
## 11255 1 5134 0.01947799
## 11256 1 5134 0.01947799
## 11257 1 5134 0.01947799
## 11258 1 5134 0.01947799
## 11259 1 5134 0.01947799
## 11260 1 5134 0.01947799
## 11261 1 5134 0.01947799
## 11262 1 5134 0.01947799
## 11263 1 5134 0.01947799
## 11264 1 5134 0.01947799
## 11265 1 5134 0.01947799
## 11266 1 5134 0.01947799
## 11267 1 5134 0.01947799
## 11268 1 5134 0.01947799
## 11269 1 5134 0.01947799
## 11270 1 5134 0.01947799
## 11271 1 5134 0.01947799
## 11272 1 5134 0.01947799
## 11273 1 5134 0.01947799
## 11274 1 5134 0.01947799
## 11275 1 5134 0.01947799
## 11276 1 5134 0.01947799
## 11277 1 5134 0.01947799
## 11278 1 5134 0.01947799
## 11279 1 5134 0.01947799
## 11280 1 5134 0.01947799
## 11281 1 5134 0.01947799
## 11282 1 5134 0.01947799
## 11283 1 5134 0.01947799
## 11284 1 5134 0.01947799
## 11285 1 5134 0.01947799
## 11286 1 5134 0.01947799
## 11287 1 5134 0.01947799
## 11288 1 5134 0.01947799
## 11289 1 5134 0.01947799
## 11290 1 5134 0.01947799
## 11291 1 5134 0.01947799
## 11292 1 5134 0.01947799
## 11293 1 5134 0.01947799
## 11294 1 5134 0.01947799
## 11295 1 5134 0.01947799
## 11296 1 5134 0.01947799
## 11297 1 5134 0.01947799
## 11298 1 5134 0.01947799
## 11299 1 5134 0.01947799
## 11300 1 5134 0.01947799
## 11301 1 5134 0.01947799
## 11302 1 5134 0.01947799
## 11303 1 5134 0.01947799
## 11304 1 5134 0.01947799
## 11305 1 5134 0.01947799
## 11306 1 5134 0.01947799
## 11307 1 5134 0.01947799
## 11308 1 5134 0.01947799
## 11309 1 5134 0.01947799
## 11310 1 5134 0.01947799
## 11311 1 5134 0.01947799
## 11312 1 5134 0.01947799
## 11313 1 5134 0.01947799
## 11314 1 5134 0.01947799
## 11315 1 5134 0.01947799
## 11316 1 5134 0.01947799
## 11317 1 5134 0.01947799
## 11318 1 5134 0.01947799
## 11319 1 5134 0.01947799
## 11320 1 5134 0.01947799
## 11321 1 5134 0.01947799
## 11322 1 5134 0.01947799
## 11323 1 5134 0.01947799
## 11324 1 5134 0.01947799
## 11325 1 5134 0.01947799
## 11326 1 5134 0.01947799
## 11327 1 5134 0.01947799
## 11328 1 5134 0.01947799
## 11329 1 5134 0.01947799
## 11330 1 5134 0.01947799
## 11331 1 5134 0.01947799
## 11332 1 5134 0.01947799
## 11333 1 5134 0.01947799
## 11334 1 5134 0.01947799
## 11335 1 5134 0.01947799
## 11336 1 5134 0.01947799
## 11337 1 5134 0.01947799
## 11338 1 5134 0.01947799
## 11339 1 5134 0.01947799
## 11340 1 5134 0.01947799
## 11341 1 5134 0.01947799
## 11342 1 5134 0.01947799
## 11343 1 5134 0.01947799
## 11344 1 5134 0.01947799
## 11345 1 5134 0.01947799
## 11346 1 5134 0.01947799
## 11347 1 5134 0.01947799
## 11348 1 5134 0.01947799
## 11349 1 5134 0.01947799
## 11350 1 5134 0.01947799
## 11351 1 5134 0.01947799
## 11352 1 5134 0.01947799
## 11353 1 5134 0.01947799
## 11354 1 5134 0.01947799
## 11355 1 5134 0.01947799
## 11356 1 5134 0.01947799
## 11357 1 5134 0.01947799
## 11358 1 5134 0.01947799
## 11359 1 5134 0.01947799
## 11360 1 5134 0.01947799
## 11361 1 5134 0.01947799
## 11362 1 5134 0.01947799
## 11363 1 5134 0.01947799
## 11364 1 5134 0.01947799
## 11365 1 5134 0.01947799
## 11366 1 5134 0.01947799
## 11367 1 5134 0.01947799
## 11368 1 5134 0.01947799
## 11369 1 5134 0.01947799
## 11370 1 5134 0.01947799
## 11371 1 5134 0.01947799
## 11372 1 5134 0.01947799
## 11373 1 5134 0.01947799
## 11374 1 5134 0.01947799
## 11375 1 5134 0.01947799
## 11376 1 5134 0.01947799
## 11377 1 5134 0.01947799
## 11378 1 5134 0.01947799
## 11379 1 5134 0.01947799
## 11380 1 5134 0.01947799
## 11381 1 5134 0.01947799
## 11382 1 5134 0.01947799
## 11383 1 5134 0.01947799
## 11384 1 5134 0.01947799
## 11385 1 5134 0.01947799
## 11386 1 5134 0.01947799
## 11387 1 5134 0.01947799
## 11388 1 5134 0.01947799
## 11389 1 5134 0.01947799
## 11390 1 5134 0.01947799
## 11391 1 5134 0.01947799
## 11392 1 5134 0.01947799
## 11393 1 5134 0.01947799
## 11394 1 5134 0.01947799
## 11395 1 5134 0.01947799
## 11396 1 5134 0.01947799
## 11397 1 5134 0.01947799
## 11398 1 5134 0.01947799
## 11399 1 5134 0.01947799
## 11400 1 5134 0.01947799
## 11401 1 5134 0.01947799
## 11402 1 5134 0.01947799
## 11403 1 5134 0.01947799
## 11404 1 5134 0.01947799
## 11405 1 5134 0.01947799
## 11406 1 5134 0.01947799
## 11407 1 5134 0.01947799
## 11408 1 5134 0.01947799
## 11409 1 5134 0.01947799
## 11410 1 5134 0.01947799
## 11411 1 5134 0.01947799
## 11412 1 5134 0.01947799
## 11413 1 5134 0.01947799
## 11414 1 5134 0.01947799
## 11415 1 5134 0.01947799
## 11416 1 5134 0.01947799
## 11417 1 5134 0.01947799
## 11418 1 5134 0.01947799
## 11419 1 5134 0.01947799
## 11420 1 5134 0.01947799
## 11421 1 5134 0.01947799
## 11422 1 5134 0.01947799
## 11423 1 5134 0.01947799
## 11424 1 5134 0.01947799
## 11425 1 5134 0.01947799
## 11426 1 5134 0.01947799
## 11427 1 5134 0.01947799
## 11428 1 5134 0.01947799
## 11429 1 5134 0.01947799
## 11430 1 5134 0.01947799
## 11431 1 5134 0.01947799
## 11432 1 5134 0.01947799
## 11433 1 5134 0.01947799
## 11434 1 5134 0.01947799
## 11435 1 5134 0.01947799
## 11436 1 5134 0.01947799
## 11437 1 5134 0.01947799
## 11438 1 5134 0.01947799
## 11439 1 5134 0.01947799
## 11440 1 5134 0.01947799
## 11441 1 5134 0.01947799
## 11442 1 5134 0.01947799
## 11443 1 5134 0.01947799
## 11444 1 5134 0.01947799
## 11445 1 5134 0.01947799
## 11446 1 5134 0.01947799
## 11447 1 5134 0.01947799
## 11448 1 5134 0.01947799
## 11449 1 5134 0.01947799
## 11450 1 5134 0.01947799
## 11451 1 5134 0.01947799
## 11452 1 5134 0.01947799
## 11453 1 5134 0.01947799
## 11454 1 5134 0.01947799
## 11455 1 5134 0.01947799
## 11456 1 5134 0.01947799
## 11457 1 5134 0.01947799
## 11458 1 5134 0.01947799
## 11459 1 5134 0.01947799
## 11460 1 5134 0.01947799
## 11461 1 5134 0.01947799
## 11462 1 5134 0.01947799
## 11463 1 5134 0.01947799
## 11464 1 5134 0.01947799
## 11465 1 5134 0.01947799
## 11466 1 5134 0.01947799
## 11467 1 5134 0.01947799
## 11468 1 5134 0.01947799
## 11469 1 5134 0.01947799
## 11470 1 5134 0.01947799
## 11471 1 5134 0.01947799
## 11472 1 5134 0.01947799
## 11473 1 5134 0.01947799
## 11474 1 5134 0.01947799
## 11475 1 5134 0.01947799
## 11476 1 5134 0.01947799
## 11477 1 5134 0.01947799
## 11478 1 5134 0.01947799
## 11479 1 5134 0.01947799
## 11480 1 5134 0.01947799
## 11481 1 5134 0.01947799
## 11482 1 5134 0.01947799
## 11483 1 5134 0.01947799
## 11484 1 5134 0.01947799
## 11485 1 5134 0.01947799
## 11486 1 5134 0.01947799
## 11487 1 5134 0.01947799
## 11488 1 5134 0.01947799
## 11489 1 5134 0.01947799
## 11490 1 5134 0.01947799
## 11491 1 5134 0.01947799
## 11492 1 5134 0.01947799
## 11493 1 5134 0.01947799
## 11494 1 5134 0.01947799
## 11495 1 5134 0.01947799
## 11496 1 5134 0.01947799
## 11497 1 5134 0.01947799
## 11498 1 5134 0.01947799
## 11499 1 5134 0.01947799
## 11500 1 5134 0.01947799
## 11501 1 5134 0.01947799
## 11502 1 5134 0.01947799
## 11503 1 5134 0.01947799
## 11504 1 5134 0.01947799
## 11505 1 5134 0.01947799
## 11506 1 5134 0.01947799
## 11507 1 5134 0.01947799
## 11508 1 5134 0.01947799
## 11509 1 5134 0.01947799
## 11510 1 5134 0.01947799
## 11511 1 5134 0.01947799
## 11512 1 5134 0.01947799
## 11513 1 5134 0.01947799
## 11514 1 5134 0.01947799
## 11515 1 5134 0.01947799
## 11516 1 5134 0.01947799
## 11517 1 5134 0.01947799
## 11518 1 5134 0.01947799
## 11519 1 5134 0.01947799
## 11520 1 5134 0.01947799
## 11521 1 5134 0.01947799
## 11522 1 5134 0.01947799
## 11523 1 5134 0.01947799
## 11524 1 5134 0.01947799
## 11525 1 5134 0.01947799
## 11526 1 5134 0.01947799
## 11527 1 5134 0.01947799
## 11528 1 5134 0.01947799
## 11529 1 5134 0.01947799
## 11530 1 5134 0.01947799
## 11531 1 5134 0.01947799
## 11532 1 5134 0.01947799
## 11533 1 5134 0.01947799
## 11534 1 5134 0.01947799
## 11535 1 5134 0.01947799
## 11536 1 5134 0.01947799
## 11537 1 5134 0.01947799
## 11538 1 5134 0.01947799
## 11539 1 5134 0.01947799
## 11540 1 5134 0.01947799
## 11541 1 5134 0.01947799
## 11542 1 5134 0.01947799
## 11543 1 5134 0.01947799
## 11544 1 5134 0.01947799
## 11545 1 5134 0.01947799
## 11546 1 5134 0.01947799
## 11547 1 5134 0.01947799
## 11548 1 5134 0.01947799
## 11549 1 5134 0.01947799
## 11550 1 5134 0.01947799
## 11551 1 5134 0.01947799
## 11552 1 5134 0.01947799
## 11553 1 5134 0.01947799
## 11554 1 5134 0.01947799
## 11555 1 5134 0.01947799
## 11556 1 5134 0.01947799
## 11557 1 5134 0.01947799
## 11558 1 5134 0.01947799
## 11559 1 5134 0.01947799
## 11560 1 5134 0.01947799
## 11561 1 5134 0.01947799
## 11562 1 5134 0.01947799
## 11563 1 5134 0.01947799
## 11564 1 5134 0.01947799
## 11565 1 5134 0.01947799
## 11566 1 5134 0.01947799
## 11567 1 5134 0.01947799
## 11568 1 5134 0.01947799
## 11569 1 5134 0.01947799
## 11570 1 5134 0.01947799
## 11571 1 5134 0.01947799
## 11572 1 5134 0.01947799
## 11573 1 5134 0.01947799
## 11574 1 5134 0.01947799
## 11575 1 5134 0.01947799
## 11576 1 5134 0.01947799
## 11577 1 5134 0.01947799
## 11578 1 5134 0.01947799
## 11579 1 5134 0.01947799
## 11580 1 5134 0.01947799
## 11581 1 5134 0.01947799
## 11582 1 5134 0.01947799
## 11583 1 5134 0.01947799
## 11584 1 5134 0.01947799
## 11585 1 5134 0.01947799
## 11586 1 5134 0.01947799
## 11587 1 5134 0.01947799
## 11588 1 5134 0.01947799
## 11589 1 5134 0.01947799
## 11590 1 5134 0.01947799
## 11591 1 5134 0.01947799
## 11592 1 5134 0.01947799
## 11593 1 5134 0.01947799
## 11594 1 5134 0.01947799
## 11595 1 5134 0.01947799
## 11596 1 5134 0.01947799
## 11597 1 5134 0.01947799
## 11598 1 5134 0.01947799
## 11599 1 5134 0.01947799
## 11600 1 5134 0.01947799
## 11601 1 5134 0.01947799
## 11602 1 5134 0.01947799
## 11603 1 5134 0.01947799
## 11604 1 5134 0.01947799
## 11605 1 5134 0.01947799
## 11606 1 5134 0.01947799
## 11607 1 5134 0.01947799
## 11608 1 5134 0.01947799
## 11609 1 5134 0.01947799
## 11610 1 5134 0.01947799
## 11611 1 5134 0.01947799
## 11612 1 5134 0.01947799
## 11613 1 5134 0.01947799
## 11614 1 5134 0.01947799
## 11615 1 5134 0.01947799
## 11616 1 5134 0.01947799
## 11617 1 5134 0.01947799
## 11618 1 5134 0.01947799
## 11619 1 5134 0.01947799
## 11620 1 5134 0.01947799
## 11621 1 5134 0.01947799
## 11622 1 5134 0.01947799
## 11623 1 5134 0.01947799
## 11624 1 5134 0.01947799
## 11625 1 5134 0.01947799
## 11626 1 5134 0.01947799
## 11627 1 5134 0.01947799
## 11628 1 5134 0.01947799
## 11629 1 5134 0.01947799
## 11630 1 5134 0.01947799
## 11631 1 5134 0.01947799
## 11632 1 5134 0.01947799
## 11633 1 5134 0.01947799
## 11634 1 5134 0.01947799
## 11635 1 5134 0.01947799
## 11636 1 5134 0.01947799
## 11637 1 5134 0.01947799
## 11638 1 5134 0.01947799
## 11639 1 5134 0.01947799
## 11640 1 5134 0.01947799
## 11641 1 5134 0.01947799
## 11642 1 5134 0.01947799
## 11643 1 5134 0.01947799
## 11644 1 5134 0.01947799
## 11645 1 5134 0.01947799
## 11646 1 5134 0.01947799
## 11647 1 5134 0.01947799
## 11648 1 5134 0.01947799
## 11649 1 5134 0.01947799
## 11650 1 5134 0.01947799
## 11651 1 5134 0.01947799
## 11652 1 5134 0.01947799
## 11653 1 5134 0.01947799
## 11654 1 5134 0.01947799
## 11655 1 5134 0.01947799
## 11656 1 5134 0.01947799
## 11657 1 5134 0.01947799
## 11658 1 5134 0.01947799
## 11659 1 5134 0.01947799
## 11660 1 5134 0.01947799
## 11661 1 5134 0.01947799
## 11662 1 5134 0.01947799
## 11663 1 5134 0.01947799
## 11664 1 5134 0.01947799
## 11665 1 5134 0.01947799
## 11666 1 5134 0.01947799
## 11667 1 5134 0.01947799
## 11668 1 5134 0.01947799
## 11669 1 5134 0.01947799
## 11670 1 5134 0.01947799
## 11671 1 5134 0.01947799
## 11672 1 5134 0.01947799
## 11673 1 5134 0.01947799
## 11674 1 5134 0.01947799
## 11675 1 5134 0.01947799
## 11676 1 5134 0.01947799
## 11677 1 5134 0.01947799
## 11678 1 5134 0.01947799
## 11679 1 5134 0.01947799
## 11680 1 5134 0.01947799
## 11681 1 5134 0.01947799
## 11682 1 5134 0.01947799
## 11683 1 5134 0.01947799
## 11684 1 5134 0.01947799
## 11685 1 5134 0.01947799
## 11686 1 5134 0.01947799
## 11687 1 5134 0.01947799
## 11688 1 5134 0.01947799
## 11689 1 5134 0.01947799
## 11690 1 5134 0.01947799
## 11691 1 5134 0.01947799
## 11692 1 5134 0.01947799
## 11693 1 5134 0.01947799
## 11694 1 5134 0.01947799
## 11695 1 5134 0.01947799
## 11696 1 5134 0.01947799
## 11697 1 5134 0.01947799
## 11698 1 5134 0.01947799
## 11699 1 5134 0.01947799
## 11700 1 5134 0.01947799
## 11701 1 5134 0.01947799
## 11702 1 5134 0.01947799
## 11703 1 5134 0.01947799
## 11704 1 5134 0.01947799
## 11705 1 5134 0.01947799
## 11706 1 5134 0.01947799
## 11707 1 5134 0.01947799
## 11708 1 5134 0.01947799
## 11709 1 5134 0.01947799
## 11710 1 5134 0.01947799
## 11711 1 5134 0.01947799
## 11712 1 5134 0.01947799
## 11713 1 5134 0.01947799
## 11714 1 5134 0.01947799
## 11715 1 5134 0.01947799
## 11716 1 5134 0.01947799
## 11717 1 5134 0.01947799
## 11718 1 5134 0.01947799
## 11719 1 5134 0.01947799
## 11720 1 5134 0.01947799
## 11721 1 5134 0.01947799
## 11722 1 5134 0.01947799
## 11723 1 5134 0.01947799
## 11724 1 5134 0.01947799
## 11725 1 5134 0.01947799
## 11726 1 5134 0.01947799
## 11727 1 5134 0.01947799
## 11728 1 5134 0.01947799
## 11729 1 5134 0.01947799
## 11730 1 5134 0.01947799
## 11731 1 5134 0.01947799
## 11732 1 5134 0.01947799
## 11733 1 5134 0.01947799
## 11734 1 5134 0.01947799
## 11735 1 5134 0.01947799
## 11736 1 5134 0.01947799
## 11737 1 5134 0.01947799
## 11738 1 5134 0.01947799
## 11739 1 5134 0.01947799
## 11740 1 5134 0.01947799
## 11741 1 5134 0.01947799
## 11742 1 5134 0.01947799
## 11743 1 5134 0.01947799
## 11744 1 5134 0.01947799
## 11745 1 5134 0.01947799
## 11746 1 5134 0.01947799
## 11747 1 5134 0.01947799
## 11748 1 5134 0.01947799
## 11749 1 5134 0.01947799
## 11750 1 5134 0.01947799
## 11751 1 5134 0.01947799
## 11752 1 5134 0.01947799
## 11753 1 5134 0.01947799
## 11754 1 5134 0.01947799
## 11755 1 5134 0.01947799
## 11756 1 5134 0.01947799
## 11757 1 5134 0.01947799
## 11758 1 5134 0.01947799
## 11759 1 5134 0.01947799
## 11760 1 5134 0.01947799
## 11761 1 5134 0.01947799
## 11762 1 5134 0.01947799
## 11763 1 5134 0.01947799
## 11764 1 5134 0.01947799
## 11765 1 5134 0.01947799
## 11766 1 5134 0.01947799
## 11767 1 5134 0.01947799
## 11768 1 5134 0.01947799
## 11769 1 5134 0.01947799
## 11770 1 5134 0.01947799
## 11771 1 5134 0.01947799
## 11772 1 5134 0.01947799
## 11773 1 5134 0.01947799
## 11774 1 5134 0.01947799
## 11775 1 5134 0.01947799
## 11776 1 5134 0.01947799
## 11777 1 5134 0.01947799
## 11778 1 5134 0.01947799
## 11779 1 5134 0.01947799
## 11780 1 5134 0.01947799
## 11781 1 5134 0.01947799
## 11782 1 5134 0.01947799
## 11783 1 5134 0.01947799
## 11784 1 5134 0.01947799
## 11785 1 5134 0.01947799
## 11786 1 5134 0.01947799
## 11787 1 5134 0.01947799
## 11788 1 5134 0.01947799
## 11789 1 5134 0.01947799
## 11790 1 5134 0.01947799
## 11791 1 5134 0.01947799
## 11792 1 5134 0.01947799
## 11793 1 5134 0.01947799
## 11794 1 5134 0.01947799
## 11795 1 5134 0.01947799
## 11796 1 5134 0.01947799
## 11797 1 5134 0.01947799
## 11798 1 5134 0.01947799
## 11799 1 5134 0.01947799
## 11800 1 5134 0.01947799
## 11801 1 5134 0.01947799
## 11802 1 5134 0.01947799
## 11803 1 5134 0.01947799
## 11804 1 5134 0.01947799
## 11805 1 5134 0.01947799
## 11806 1 5134 0.01947799
## 11807 1 5134 0.01947799
## 11808 1 5134 0.01947799
## 11809 1 5134 0.01947799
## 11810 1 5134 0.01947799
## 11811 1 5134 0.01947799
## 11812 1 5134 0.01947799
## 11813 1 5134 0.01947799
## 11814 1 5134 0.01947799
## 11815 1 5134 0.01947799
## 11816 1 5134 0.01947799
## 11817 1 5134 0.01947799
## 11818 1 5134 0.01947799
## 11819 1 5134 0.01947799
## 11820 1 5134 0.01947799
## 11821 1 5134 0.01947799
## 11822 1 5134 0.01947799
## 11823 1 5134 0.01947799
## 11824 1 5134 0.01947799
## 11825 1 5134 0.01947799
## 11826 1 5134 0.01947799
## 11827 1 5134 0.01947799
## 11828 1 5134 0.01947799
## 11829 1 5134 0.01947799
## 11830 1 5134 0.01947799
## 11831 1 5134 0.01947799
## 11832 1 5134 0.01947799
## 11833 1 5134 0.01947799
## 11834 1 5134 0.01947799
## 11835 1 5134 0.01947799
## 11836 1 5134 0.01947799
## 11837 1 5134 0.01947799
## 11838 1 5134 0.01947799
## 11839 1 5134 0.01947799
## 11840 1 5134 0.01947799
## 11841 1 5134 0.01947799
## 11842 1 5134 0.01947799
## 11843 1 5134 0.01947799
## 11844 1 5134 0.01947799
## 11845 1 5134 0.01947799
## 11846 1 5134 0.01947799
## 11847 1 5134 0.01947799
## 11848 1 5134 0.01947799
## 11849 1 5134 0.01947799
## 11850 1 5134 0.01947799
## 11851 1 5134 0.01947799
## 11852 1 5134 0.01947799
## 11853 1 5134 0.01947799
## 11854 1 5134 0.01947799
## 11855 1 5134 0.01947799
## 11856 1 5134 0.01947799
## 11857 1 5134 0.01947799
## 11858 1 5134 0.01947799
## 11859 1 5134 0.01947799
## 11860 1 5134 0.01947799
## 11861 1 5134 0.01947799
## 11862 1 5134 0.01947799
## 11863 1 5134 0.01947799
## 11864 1 5134 0.01947799
## 11865 1 5134 0.01947799
## 11866 1 5134 0.01947799
## 11867 1 5134 0.01947799
## 11868 1 5134 0.01947799
## 11869 1 5134 0.01947799
## 11870 1 5134 0.01947799
## 11871 1 5134 0.01947799
## 11872 1 5134 0.01947799
## 11873 1 5134 0.01947799
## 11874 1 5134 0.01947799
## 11875 1 5134 0.01947799
## 11876 1 5134 0.01947799
## 11877 1 5134 0.01947799
## 11878 1 5134 0.01947799
## 11879 1 5134 0.01947799
## 11880 1 5134 0.01947799
## 11881 1 5134 0.01947799
## 11882 1 5134 0.01947799
## 11883 1 5134 0.01947799
## 11884 1 5134 0.01947799
## 11885 1 5134 0.01947799
## 11886 1 5134 0.01947799
## 11887 1 5134 0.01947799
## 11888 1 5134 0.01947799
## 11889 1 5134 0.01947799
## 11890 1 5134 0.01947799
## 11891 1 5134 0.01947799
## 11892 1 5134 0.01947799
## 11893 1 5134 0.01947799
## 11894 1 5134 0.01947799
## 11895 1 5134 0.01947799
## 11896 1 5134 0.01947799
## 11897 1 5134 0.01947799
## 11898 1 5134 0.01947799
## 11899 1 5134 0.01947799
## 11900 1 5134 0.01947799
## 11901 1 5134 0.01947799
## 11902 1 5134 0.01947799
## 11903 1 5134 0.01947799
## 11904 1 5134 0.01947799
## 11905 1 5134 0.01947799
## 11906 1 5134 0.01947799
## 11907 1 5134 0.01947799
## 11908 1 5134 0.01947799
## 11909 1 5134 0.01947799
## 11910 1 5134 0.01947799
## 11911 1 5134 0.01947799
## 11912 1 5134 0.01947799
## 11913 1 5134 0.01947799
## 11914 1 5134 0.01947799
## 11915 1 5134 0.01947799
## 11916 1 5134 0.01947799
## 11917 1 5134 0.01947799
## 11918 1 5134 0.01947799
## 11919 1 5134 0.01947799
## 11920 1 5134 0.01947799
## 11921 1 5134 0.01947799
## 11922 1 5134 0.01947799
## 11923 1 5134 0.01947799
## 11924 1 5134 0.01947799
## 11925 1 5134 0.01947799
## 11926 1 5134 0.01947799
## 11927 1 5134 0.01947799
## 11928 1 5134 0.01947799
## 11929 1 5134 0.01947799
## 11930 1 5134 0.01947799
## 11931 1 5134 0.01947799
## 11932 1 5134 0.01947799
## 11933 1 5134 0.01947799
## 11934 1 5134 0.01947799
## 11935 1 5134 0.01947799
## 11936 1 5134 0.01947799
## 11937 1 5134 0.01947799
## 11938 1 5134 0.01947799
## 11939 1 5134 0.01947799
## 11940 1 5134 0.01947799
## 11941 1 5134 0.01947799
## 11942 1 5134 0.01947799
## 11943 1 5134 0.01947799
## 11944 1 5134 0.01947799
## 11945 1 5134 0.01947799
## 11946 1 5134 0.01947799
## 11947 1 5134 0.01947799
## 11948 1 5134 0.01947799
## 11949 1 5134 0.01947799
## 11950 1 5134 0.01947799
## 11951 1 5134 0.01947799
## 11952 1 5134 0.01947799
## 11953 1 5134 0.01947799
## 11954 1 5134 0.01947799
## 11955 1 5134 0.01947799
## 11956 1 5134 0.01947799
## 11957 1 5134 0.01947799
## 11958 1 5134 0.01947799
## 11959 1 5134 0.01947799
## 11960 1 5134 0.01947799
## 11961 1 5134 0.01947799
## 11962 1 5134 0.01947799
## 11963 1 5134 0.01947799
## 11964 1 5134 0.01947799
## 11965 1 5134 0.01947799
## 11966 1 5134 0.01947799
## 11967 1 5134 0.01947799
## 11968 1 5134 0.01947799
## 11969 1 5134 0.01947799
## 11970 1 5134 0.01947799
## 11971 1 5134 0.01947799
## 11972 1 5134 0.01947799
## 11973 1 5134 0.01947799
## 11974 1 5134 0.01947799
## 11975 1 5134 0.01947799
## 11976 1 5134 0.01947799
## 11977 1 5134 0.01947799
## 11978 1 5134 0.01947799
## 11979 1 5134 0.01947799
## 11980 1 5134 0.01947799
## 11981 1 5134 0.01947799
## 11982 1 5134 0.01947799
## 11983 1 5134 0.01947799
## 11984 1 5134 0.01947799
## 11985 1 5134 0.01947799
## 11986 1 5134 0.01947799
## 11987 1 5134 0.01947799
## 11988 1 5134 0.01947799
## 11989 1 5134 0.01947799
## 11990 1 5134 0.01947799
## 11991 1 5134 0.01947799
## 11992 1 5134 0.01947799
## 11993 1 5134 0.01947799
## 11994 1 5134 0.01947799
## 11995 1 5134 0.01947799
## 11996 1 5134 0.01947799
## 11997 1 5134 0.01947799
## 11998 1 5134 0.01947799
## 11999 1 5134 0.01947799
## 12000 1 5134 0.01947799
## 12001 1 5134 0.01947799
## 12002 1 5134 0.01947799
## 12003 1 5134 0.01947799
## 12004 1 5134 0.01947799
## 12005 1 5134 0.01947799
## 12006 1 5134 0.01947799
## 12007 1 5134 0.01947799
## 12008 1 5134 0.01947799
## 12009 1 5134 0.01947799
## 12010 1 5134 0.01947799
## 12011 1 5134 0.01947799
## 12012 1 5134 0.01947799
## 12013 1 5134 0.01947799
## 12014 1 5134 0.01947799
## 12015 1 5134 0.01947799
## 12016 1 5134 0.01947799
## 12017 1 5134 0.01947799
## 12018 1 5134 0.01947799
## 12019 1 5134 0.01947799
## 12020 1 5134 0.01947799
## 12021 1 5134 0.01947799
## 12022 1 5134 0.01947799
## 12023 1 5134 0.01947799
## 12024 1 5134 0.01947799
## 12025 1 5134 0.01947799
## 12026 1 5134 0.01947799
## 12027 1 5134 0.01947799
## 12028 1 5134 0.01947799
## 12029 1 5134 0.01947799
## 12030 1 5134 0.01947799
## 12031 1 5134 0.01947799
## 12032 1 5134 0.01947799
## 12033 1 5134 0.01947799
## 12034 1 5134 0.01947799
## 12035 1 5134 0.01947799
## 12036 1 5134 0.01947799
## 12037 1 5134 0.01947799
## 12038 1 5134 0.01947799
## 12039 1 5134 0.01947799
## 12040 1 5134 0.01947799
## 12041 1 5134 0.01947799
## 12042 1 5134 0.01947799
## 12043 1 5134 0.01947799
## 12044 1 5134 0.01947799
## 12045 1 5134 0.01947799
## 12046 1 5134 0.01947799
## 12047 1 5134 0.01947799
## 12048 1 5134 0.01947799
## 12049 1 5134 0.01947799
## 12050 1 5134 0.01947799
## 12051 1 5134 0.01947799
## 12052 1 5134 0.01947799
## 12053 1 5134 0.01947799
## 12054 1 5134 0.01947799
## 12055 1 5134 0.01947799
## 12056 1 5134 0.01947799
## 12057 1 5134 0.01947799
## 12058 1 5134 0.01947799
## 12059 1 5134 0.01947799
## 12060 1 5134 0.01947799
## 12061 1 5134 0.01947799
## 12062 1 5134 0.01947799
## 12063 1 5134 0.01947799
## 12064 1 5134 0.01947799
## 12065 1 5134 0.01947799
## 12066 1 5134 0.01947799
## 12067 1 5134 0.01947799
## 12068 1 5134 0.01947799
## 12069 1 5134 0.01947799
## 12070 1 5134 0.01947799
## 12071 1 5134 0.01947799
## 12072 1 5134 0.01947799
## 12073 1 5134 0.01947799
## 12074 1 5134 0.01947799
## 12075 1 5134 0.01947799
## 12076 1 5134 0.01947799
## 12077 1 5134 0.01947799
## 12078 1 5134 0.01947799
## 12079 1 5134 0.01947799
## 12080 1 5134 0.01947799
## 12081 1 5134 0.01947799
## 12082 1 5134 0.01947799
## 12083 1 5134 0.01947799
## 12084 1 5134 0.01947799
## 12085 1 5134 0.01947799
## 12086 1 5134 0.01947799
## 12087 1 5134 0.01947799
## 12088 1 5134 0.01947799
## 12089 1 5134 0.01947799
## 12090 1 5134 0.01947799
## 12091 1 5134 0.01947799
## 12092 1 5134 0.01947799
## 12093 1 5134 0.01947799
## 12094 1 5134 0.01947799
## 12095 1 5134 0.01947799
## 12096 1 5134 0.01947799
## 12097 1 5134 0.01947799
## 12098 1 5134 0.01947799
## 12099 1 5134 0.01947799
## 12100 1 5134 0.01947799
## 12101 1 5134 0.01947799
## 12102 1 5134 0.01947799
## 12103 1 5134 0.01947799
## 12104 1 5134 0.01947799
## 12105 1 5134 0.01947799
## 12106 1 5134 0.01947799
## 12107 1 5134 0.01947799
## 12108 1 5134 0.01947799
## 12109 1 5134 0.01947799
## 12110 1 5134 0.01947799
## 12111 1 5134 0.01947799
## 12112 1 5134 0.01947799
## 12113 1 5134 0.01947799
## 12114 1 5134 0.01947799
## 12115 1 5134 0.01947799
## 12116 1 5134 0.01947799
## 12117 1 5134 0.01947799
## 12118 1 5134 0.01947799
## 12119 1 5134 0.01947799
## 12120 1 5134 0.01947799
## 12121 1 5134 0.01947799
## 12122 1 5134 0.01947799
## 12123 1 5134 0.01947799
## 12124 1 5134 0.01947799
## 12125 1 5134 0.01947799
## 12126 1 5134 0.01947799
## 12127 1 5134 0.01947799
## 12128 1 5134 0.01947799
## 12129 1 5134 0.01947799
## 12130 1 5134 0.01947799
## 12131 1 5134 0.01947799
## 12132 1 5134 0.01947799
## 12133 1 5134 0.01947799
## 12134 1 5134 0.01947799
## 12135 1 5134 0.01947799
## 12136 1 5134 0.01947799
## 12137 1 5134 0.01947799
## 12138 1 5134 0.01947799
## 12139 1 5134 0.01947799
## 12140 1 5134 0.01947799
## 12141 1 5134 0.01947799
## 12142 1 5134 0.01947799
## 12143 1 5134 0.01947799
## 12144 1 5134 0.01947799
## 12145 1 5134 0.01947799
## 12146 1 5134 0.01947799
## 12147 1 5134 0.01947799
## 12148 1 5134 0.01947799
## 12149 1 5134 0.01947799
## 12150 1 5134 0.01947799
## 12151 1 5134 0.01947799
## 12152 1 5134 0.01947799
## 12153 1 5134 0.01947799
## 12154 1 5134 0.01947799
## 12155 1 5134 0.01947799
## 12156 1 5134 0.01947799
## 12157 1 5134 0.01947799
## 12158 1 5134 0.01947799
## 12159 1 5134 0.01947799
## 12160 1 5134 0.01947799
## 12161 1 5134 0.01947799
## 12162 1 5134 0.01947799
## 12163 1 5134 0.01947799
## 12164 1 5134 0.01947799
## 12165 1 5134 0.01947799
## 12166 1 5134 0.01947799
## 12167 1 5134 0.01947799
## 12168 1 5134 0.01947799
## 12169 1 5134 0.01947799
## 12170 1 5134 0.01947799
## 12171 1 5134 0.01947799
## 12172 1 5134 0.01947799
## 12173 1 5134 0.01947799
## 12174 1 5134 0.01947799
## 12175 1 5134 0.01947799
## 12176 1 5134 0.01947799
## 12177 1 5134 0.01947799
## 12178 1 5134 0.01947799
## 12179 1 5134 0.01947799
## 12180 1 5134 0.01947799
## 12181 1 5134 0.01947799
## 12182 1 5134 0.01947799
## 12183 1 5134 0.01947799
## 12184 1 5134 0.01947799
## 12185 1 5134 0.01947799
## 12186 1 5134 0.01947799
## 12187 1 5134 0.01947799
## 12188 1 5134 0.01947799
## 12189 1 5134 0.01947799
## 12190 1 5134 0.01947799
## 12191 1 5134 0.01947799
## 12192 1 5134 0.01947799
## 12193 1 5134 0.01947799
## 12194 1 5134 0.01947799
## 12195 1 5134 0.01947799
## 12196 1 5134 0.01947799
## 12197 1 5134 0.01947799
## 12198 1 5134 0.01947799
## 12199 1 5134 0.01947799
## 12200 1 5134 0.01947799
## 12201 1 5134 0.01947799
## 12202 1 5134 0.01947799
## 12203 1 5134 0.01947799
## 12204 1 5134 0.01947799
## 12205 1 5134 0.01947799
## 12206 1 5134 0.01947799
## 12207 1 5134 0.01947799
## 12208 1 5134 0.01947799
## 12209 1 5134 0.01947799
## 12210 1 5134 0.01947799
## 12211 1 5134 0.01947799
## 12212 1 5134 0.01947799
## 12213 1 5134 0.01947799
## 12214 1 5134 0.01947799
## 12215 1 5134 0.01947799
## 12216 1 5134 0.01947799
## 12217 1 5134 0.01947799
## 12218 1 5134 0.01947799
## 12219 1 5134 0.01947799
## 12220 1 5134 0.01947799
## 12221 1 5134 0.01947799
## 12222 1 5134 0.01947799
## 12223 1 5134 0.01947799
## 12224 1 5134 0.01947799
## 12225 1 5134 0.01947799
## 12226 1 5134 0.01947799
## 12227 1 5134 0.01947799
## 12228 1 5134 0.01947799
## 12229 1 5134 0.01947799
## 12230 1 5134 0.01947799
## 12231 1 5134 0.01947799
## 12232 1 5134 0.01947799
## 12233 1 5134 0.01947799
## 12234 1 5134 0.01947799
## 12235 1 5134 0.01947799
## 12236 1 5134 0.01947799
## 12237 1 5134 0.01947799
## 12238 1 5134 0.01947799
## 12239 1 5134 0.01947799
## 12240 1 5134 0.01947799
## 12241 1 5134 0.01947799
## 12242 1 5134 0.01947799
## 12243 1 5134 0.01947799
## 12244 1 5134 0.01947799
## 12245 1 5134 0.01947799
## 12246 1 5134 0.01947799
## 12247 1 5134 0.01947799
## 12248 1 5134 0.01947799
## 12249 1 5134 0.01947799
## 12250 1 5134 0.01947799
## 12251 1 5134 0.01947799
## 12252 1 5134 0.01947799
## 12253 1 5134 0.01947799
## 12254 1 5134 0.01947799
## 12255 1 5134 0.01947799
## 12256 1 5134 0.01947799
## 12257 1 5134 0.01947799
## 12258 1 5134 0.01947799
## 12259 1 5134 0.01947799
## 12260 1 5134 0.01947799
## 12261 1 5134 0.01947799
## 12262 1 5134 0.01947799
## 12263 1 5134 0.01947799
## 12264 1 5134 0.01947799
## 12265 1 5134 0.01947799
## 12266 1 5134 0.01947799
## 12267 1 5134 0.01947799
## 12268 1 5134 0.01947799
## 12269 1 5134 0.01947799
## 12270 1 5134 0.01947799
## 12271 1 5134 0.01947799
## 12272 1 5134 0.01947799
## 12273 1 5134 0.01947799
## 12274 1 5134 0.01947799
## 12275 1 5134 0.01947799
## 12276 1 5134 0.01947799
## 12277 1 5134 0.01947799
## 12278 1 5134 0.01947799
## 12279 1 5134 0.01947799
## 12280 1 5134 0.01947799
## 12281 1 5134 0.01947799
## 12282 1 5134 0.01947799
## 12283 1 5134 0.01947799
## 12284 1 5134 0.01947799
## 12285 1 5134 0.01947799
## 12286 1 5134 0.01947799
## 12287 1 5134 0.01947799
## 12288 1 5134 0.01947799
## 12289 1 5134 0.01947799
## 12290 1 5134 0.01947799
## 12291 1 5134 0.01947799
## 12292 1 5134 0.01947799
## 12293 1 5134 0.01947799
## 12294 1 5134 0.01947799
## 12295 1 5134 0.01947799
## 12296 1 5134 0.01947799
## 12297 1 5134 0.01947799
## 12298 1 5134 0.01947799
## 12299 1 5134 0.01947799
## 12300 1 5134 0.01947799
## 12301 1 5134 0.01947799
## 12302 1 5134 0.01947799
## 12303 1 5134 0.01947799
## 12304 1 5134 0.01947799
## 12305 1 5134 0.01947799
## 12306 1 5134 0.01947799
## 12307 1 5134 0.01947799
## 12308 1 5134 0.01947799
## 12309 1 5134 0.01947799
## 12310 1 5134 0.01947799
## 12311 1 5134 0.01947799
## 12312 1 5134 0.01947799
## 12313 1 5134 0.01947799
## 12314 1 5134 0.01947799
## 12315 1 5134 0.01947799
## 12316 1 5134 0.01947799
## 12317 1 5134 0.01947799
## 12318 1 5134 0.01947799
## 12319 1 5134 0.01947799
## 12320 1 5134 0.01947799
go_plot[1:20,] %>%
ggplot(aes(x = name_1006, y = perc)) +
geom_bar(stat = "identity", width = 0.6)go_plot[1:20,] %>%
ggplot(aes(x = reorder(name_1006, -perc), y = perc)) +
geom_bar(stat = "identity", width = 0.6) +
coord_cartesian(y = c(0,100)) +
theme_minimal() +
theme(axis.text.x = element_text(angle = 45, hjust = 1)) +
labs(title = "Top 20 GO Terms", subtitle = "For DEGs at adjpval <= 0.05", x = "GO Term", y = "Percentage of DEGs assoc. with GO Term")component <- go_terms %>%
dplyr::select(name_1006, namespace_1003) %>%
distinct(name_1006, .keep_all = TRUE)
go_plot <- go_plot %>%
right_join(component, by = "name_1006")
go_plot## name_1006
## 1 nucleus
## 2 cytoplasm
## 3 membrane
## 4 cytosol
## 5 nucleoplasm
## 6 integral component of membrane
## 7 metal ion binding
## 8 plasma membrane
## 9 DNA binding
## 10 transferase activity
## 11 nucleotide binding
## 12 RNA binding
## 13 extracellular exosome
## 14 mitochondrion
## 15 ATP binding
## 16 identical protein binding
## 17 hydrolase activity
## 18 endoplasmic reticulum
## 19 cytoskeleton
## 20 Golgi apparatus
## 21 regulation of transcription by RNA polymerase II
## 22 nucleolus
## 23 signal transduction
## 24 positive regulation of transcription by RNA polymerase II
## 25 regulation of transcription, DNA-templated
## 26 endoplasmic reticulum membrane
## 27 intracellular membrane-bounded organelle
## 28 extracellular region
## 29 cell cycle
## 30 RNA polymerase II cis-regulatory region sequence-specific DNA binding
## 31 negative regulation of transcription by RNA polymerase II
## 32 cell projection
## 33 protein transport
## 34 DNA-binding transcription factor activity, RNA polymerase II-specific
## 35 phosphorylation
## 36 kinase activity
## 37 endosome
## 38 perinuclear region of cytoplasm
## 39 protein-containing complex
## 40 viral process
## 41 cellular response to DNA damage stimulus
## 42 chromatin
## 43 chromosome
## 44 cytoplasmic vesicle
## 45 zinc ion binding
## 46 positive regulation of transcription, DNA-templated
## 47 Golgi membrane
## 48 extracellular space
## 49 integral component of plasma membrane
## 50 protein phosphorylation
## 51 centrosome
## 52 protein homodimerization activity
## 53 protein ubiquitination
## 54 multicellular organism development
## 55 nucleic acid binding
## 56 apoptotic process
## 57 cell division
## 58 DNA repair
## 59 cell differentiation
## 60 cell junction
## 61 protein kinase activity
## 62 immune system process
## 63 negative regulation of transcription, DNA-templated
## 64 microtubule organizing center
## 65 molecular_function
## 66 synapse
## 67 mitochondrial inner membrane
## 68 nuclear speck
## 69 protein serine/threonine kinase activity
## 70 neutrophil degranulation
## 71 lipid metabolic process
## 72 chromatin binding
## 73 translation
## 74 protein kinase binding
## 75 oxidoreductase activity
## 76 lysosome
## 77 DNA-binding transcription factor activity
## 78 mRNA processing
## 79 nuclear body
## 80 focal adhesion
## 81 mitochondrial matrix
## 82 protein serine kinase activity
## 83 protein threonine kinase activity
## 84 negative regulation of apoptotic process
## 85 ATPase activity
## 86 chromatin organization
## 87 intracellular signal transduction
## 88 biological_process
## 89 enzyme binding
## 90 transmembrane transport
## 91 protein-containing complex binding
## 92 proteolysis
## 93 innate immune response
## 94 catalytic activity
## 95 positive regulation of gene expression
## 96 lysosomal membrane
## 97 calcium ion binding
## 98 intracellular protein transport
## 99 RNA splicing
## 100 positive regulation of cell population proliferation
## 101 cadherin binding
## 102 ion transport
## 103 positive regulation of GTPase activity
## 104 cell surface
## 105 endosome membrane
## 106 ribosome
## 107 rRNA processing
## 108 microtubule
## 109 protein deubiquitination
## 110 peptidase activity
## 111 small GTPase binding
## 112 mRNA splicing, via spliceosome
## 113 sequence-specific double-stranded DNA binding
## 114 DNA-binding transcription activator activity, RNA polymerase II-specific
## 115 oxidation-reduction process
## 116 sequence-specific DNA binding
## 117 ubiquitin-dependent protein catabolic process
## 118 negative regulation of cell population proliferation
## 119 positive regulation of apoptotic process
## 120 transcription factor binding
## 121 nervous system development
## 122 vesicle-mediated transport
## 123 post-translational protein modification
## 124 actin binding
## 125 ubiquitin protein ligase binding
## 126 dendrite
## 127 GTP binding
## 128 spindle
## 129 spermatogenesis
## 130 structural constituent of ribosome
## 131 protein polyubiquitination
## 132 lipid binding
## 133 cellular_component
## 134 ubiquitin protein ligase activity
## 135 GTPase activator activity
## 136 G protein-coupled receptor signaling pathway
## 137 ubiquitin-protein transferase activity
## 138 cell adhesion
## 139 early endosome
## 140 regulation of catalytic activity
## 141 translational initiation
## 142 axon
## 143 protein domain specific binding
## 144 nuclear membrane
## 145 inflammatory response
## 146 neuron projection
## 147 regulation of gene expression
## 148 transcription coactivator activity
## 149 MAPK cascade
## 150 chromosome, centromeric region
## 151 signaling receptor binding
## 152 DNA-binding transcription repressor activity, RNA polymerase II-specific
## 153 endocytosis
## 154 negative regulation of gene expression
## 155 neuronal cell body
## 156 immune response
## 157 DNA replication
## 158 postsynaptic density
## 159 protein heterodimerization activity
## 160 nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## 161 RNA polymerase II transcription regulatory region sequence-specific DNA binding
## 162 viral transcription
## 163 actin cytoskeleton
## 164 protein C-terminus binding
## 165 GTPase activity
## 166 microtubule binding
## 167 regulation of apoptotic process
## 168 trans-Golgi network
## 169 guanyl-nucleotide exchange factor activity
## 170 kinetochore
## 171 magnesium ion binding
## 172 midbody
## 173 mRNA binding
## 174 proteasome-mediated ubiquitin-dependent protein catabolic process
## 175 response to drug
## 176 transcription corepressor activity
## 177 transcription by RNA polymerase II
## 178 carbohydrate metabolic process
## 179 nuclear envelope
## 180 glutamatergic synapse
## 181 in utero embryonic development
## 182 protein stabilization
## 183 regulation of cell cycle
## 184 transcription regulatory region sequence-specific DNA binding
## 185 protein phosphopantetheinylation
## 186 SRP-dependent cotranslational protein targeting to membrane
## 187 autophagy
## 188 helicase activity
## 189 apical plasma membrane
## 190 cilium
## 191 cytokine-mediated signaling pathway
## 192 cytoplasmic translation
## 193 defense response to virus
## 194 histone binding
## 195 membrane raft
## 196 protein autophosphorylation
## 197 regulation of signal transduction by p53 class mediator
## 198 T cell receptor signaling pathway
## 199 adaptive immune response
## 200 chromosome, telomeric region
## 201 endoplasmic reticulum to Golgi vesicle-mediated transport
## 202 microtubule cytoskeleton
## 203 spliceosomal complex
## 204 transferase activity, transferring glycosyl groups
## 205 brain development
## 206 ribonucleoprotein complex
## 207 mitotic spindle organization
## 208 positive regulation of cell migration
## 209 heart development
## 210 lamellipodium
## 211 spindle pole
## 212 transcription regulator complex
## 213 cytosolic ribosome
## 214 peptidyl-serine phosphorylation
## 215 positive regulation of I-kappaB kinase/NF-kappaB signaling
## 216 protein dephosphorylation
## 217 Wnt signaling pathway
## 218 methylation
## 219 cell projection organization
## 220 cell migration
## 221 mitotic cell cycle
## 222 cilium assembly
## 223 condensed chromosome kinetochore
## 224 endoplasmic reticulum lumen
## 225 vesicle
## 226 methyltransferase activity
## 227 mitochondrial outer membrane
## 228 positive regulation of protein phosphorylation
## 229 regulation of translation
## 230 transcription coregulator activity
## 231 transferase activity, transferring acyl groups
## 232 G2/M transition of mitotic cell cycle
## 233 metabolic process
## 234 cell population proliferation
## 235 dephosphorylation
## 236 angiogenesis
## 237 centriole
## 238 early endosome membrane
## 239 external side of plasma membrane
## 240 endomembrane system
## 241 positive regulation of NF-kappaB transcription factor activity
## 242 protein glycosylation
## 243 fatty acid metabolic process
## 244 actin cytoskeleton organization
## 245 protein folding
## 246 ubiquitin ligase complex
## 247 cell cortex
## 248 fibrillar center
## 249 late endosome membrane
## 250 protein localization
## 251 rhythmic process
## 252 actin filament binding
## 253 chromosome segregation
## 254 cysteine-type peptidase activity
## 255 mitotic spindle
## 256 regulation of cell population proliferation
## 257 negative regulation of canonical Wnt signaling pathway
## 258 nuclease activity
## 259 phosphatase activity
## 260 transcription initiation from RNA polymerase II promoter
## 261 DNA recombination
## 262 double-stranded DNA binding
## 263 protein localization to plasma membrane
## 264 cytoplasmic vesicle membrane
## 265 integral component of endoplasmic reticulum membrane
## 266 transcription, DNA-templated
## 267 cell surface receptor signaling pathway
## 268 late endosome
## 269 mitochondrial membrane
## 270 nucleic acid phosphodiester bond hydrolysis
## 271 protein-containing complex assembly
## 272 response to hypoxia
## 273 isomerase activity
## 274 membrane organization
## 275 peptidyl-tyrosine phosphorylation
## 276 phosphoprotein phosphatase activity
## 277 chromatin remodeling
## 278 Golgi organization
## 279 ligase activity
## 280 protein dimerization activity
## 281 protein N-terminus binding
## 282 basolateral plasma membrane
## 283 centriolar satellite
## 284 ion transmembrane transport
## 285 lyase activity
## 286 positive regulation of canonical Wnt signaling pathway
## 287 signaling receptor activity
## 288 growth cone
## 289 PML body
## 290 presynapse
## 291 aging
## 292 ciliary basal body
## 293 ficolin-1-rich granule lumen
## 294 microtubule cytoskeleton organization
## 295 peroxisome
## 296 positive regulation of ERK1 and ERK2 cascade
## 297 regulation of cell shape
## 298 cell cycle arrest
## 299 cell-cell junction
## 300 double-strand break repair
## 301 histone deacetylase binding
## 302 SH3 domain binding
## 303 tumor necrosis factor-mediated signaling pathway
## 304 calmodulin binding
## 305 collagen-containing extracellular matrix
## 306 DNA duplex unwinding
## 307 endosomal transport
## 308 Fc-epsilon receptor signaling pathway
## 309 mitochondrial translational termination
## 310 recycling endosome
## 311 regulation of small GTPase mediated signal transduction
## 312 single-stranded DNA binding
## 313 antigen processing and presentation of exogenous peptide antigen via MHC class II
## 314 lipid transport
## 315 mitochondrion organization
## 316 mRNA export from nucleus
## 317 protein tyrosine kinase activity
## 318 regulation of mRNA stability
## 319 response to oxidative stress
## 320 transmembrane signaling receptor activity
## 321 transmembrane transporter activity
## 322 cytoskeleton organization
## 323 cytosolic large ribosomal subunit
## 324 mitochondrial translational elongation
## 325 nuclear matrix
## 326 snRNA transcription by RNA polymerase II
## 327 trans-Golgi network membrane
## 328 activation of MAPK activity
## 329 adherens junction
## 330 cellular response to hypoxia
## 331 cellular response to lipopolysaccharide
## 332 ciliary basal body-plasma membrane docking
## 333 dendritic spine
## 334 positive regulation of protein kinase B signaling
## 335 response to lipopolysaccharide
## 336 response to virus
## 337 anaphase-promoting complex-dependent catabolic process
## 338 axon guidance
## 339 blood coagulation
## 340 carbohydrate binding
## 341 cellular response to oxidative stress
## 342 kinase binding
## 343 thiol-dependent ubiquitin-specific protease activity
## 344 transcription-coupled nucleotide-excision repair
## 345 interleukin-1-mediated signaling pathway
## 346 protein serine/threonine phosphatase activity
## 347 retrograde vesicle-mediated transport, Golgi to endoplasmic reticulum
## 348 ion channel binding
## 349 macroautophagy
## 350 negative regulation of translation
## 351 regulation of mitotic cell cycle phase transition
## 352 ribosome biogenesis
## 353 stimulatory C-type lectin receptor signaling pathway
## 354 actin filament organization
## 355 exocytosis
## 356 negative regulation of cell growth
## 357 nucleotidyltransferase activity
## 358 phosphatidylinositol binding
## 359 positive regulation of neuron projection development
## 360 SCF-dependent proteasomal ubiquitin-dependent protein catabolic process
## 361 small GTPase mediated signal transduction
## 362 tRNA processing
## 363 double-strand break repair via homologous recombination
## 364 endoplasmic reticulum-Golgi intermediate compartment
## 365 methylated histone binding
## 366 mRNA transport
## 367 platelet degranulation
## 368 secretory granule lumen
## 369 ubiquitin binding
## 370 cytoplasmic ribonucleoprotein granule
## 371 endonuclease activity
## 372 P-body
## 373 protein phosphatase binding
## 374 regulation of GTPase activity
## 375 regulation of immune response
## 376 ruffle
## 377 transmembrane receptor protein tyrosine kinase activity
## 378 transport vesicle
## 379 cellular protein modification process
## 380 cytoplasmic stress granule
## 381 double-stranded RNA binding
## 382 Golgi cisterna membrane
## 383 meiotic cell cycle
## 384 molecular adaptor activity
## 385 receptor-mediated endocytosis
## 386 regulation of protein stability
## 387 retrograde transport, endosome to Golgi
## 388 secretory granule membrane
## 389 transcription elongation from RNA polymerase II promoter
## 390 tRNA binding
## 391 activation of GTPase activity
## 392 cytosolic small ribosomal subunit
## 393 DNA helicase activity
## 394 intercellular bridge
## 395 perikaryon
## 396 phosphatidylinositol biosynthetic process
## 397 positive regulation of proteasomal ubiquitin-dependent protein catabolic process
## 398 regulation of G2/M transition of mitotic cell cycle
## 399 regulation of lipid metabolic process
## 400 RNA processing
## 401 synaptic vesicle
## 402 Wnt signaling pathway, planar cell polarity pathway
## 403 catalytic step 2 spliceosome
## 404 chaperone binding
## 405 damaged DNA binding
## 406 extracellular matrix organization
## 407 neuron projection development
## 408 positive regulation of DNA-binding transcription factor activity
## 409 positive regulation of tumor necrosis factor production
## 410 RNA helicase activity
## 411 ruffle membrane
## 412 transforming growth factor beta receptor signaling pathway
## 413 unfolded protein binding
## 414 clathrin-coated vesicle
## 415 G protein-coupled receptor activity
## 416 G1/S transition of mitotic cell cycle
## 417 leukocyte migration
## 418 lipid droplet
## 419 multicellular organism growth
## 420 positive regulation of angiogenesis
## 421 postsynapse
## 422 postsynaptic membrane
## 423 regulation of cellular response to heat
## 424 site of double-strand break
## 425 specific granule membrane
## 426 structural molecule activity
## 427 viral life cycle
## 428 cellular response to insulin stimulus
## 429 cellular response to tumor necrosis factor
## 430 melanosome
## 431 mitochondrial intermembrane space
## 432 negative regulation of cell migration
## 433 negative regulation of neuron apoptotic process
## 434 negative regulation of NF-kappaB transcription factor activity
## 435 neural tube closure
## 436 platelet activation
## 437 pre-replicative complex assembly
## 438 protease binding
## 439 protein import into nucleus
## 440 protein-macromolecule adaptor activity
## 441 receptor complex
## 442 transmembrane receptor protein tyrosine kinase signaling pathway
## 443 animal organ morphogenesis
## 444 cell-cell adhesion
## 445 cholesterol metabolic process
## 446 endoplasmic reticulum-Golgi intermediate compartment membrane
## 447 liver development
## 448 metallopeptidase activity
## 449 mitochondrial respiratory chain complex I assembly
## 450 negative regulation of protein kinase activity
## 451 positive regulation of interleukin-6 production
## 452 positive regulation of MAPK cascade
## 453 post-Golgi vesicle-mediated transport
## 454 Ras protein signal transduction
## 455 response to organic cyclic compound
## 456 visual perception
## 457 calcium ion transport
## 458 double-strand break repair via nonhomologous end joining
## 459 interstrand cross-link repair
## 460 iron-sulfur cluster binding
## 461 negative regulation of protein binding
## 462 NIK/NF-kappaB signaling
## 463 protein homooligomerization
## 464 proton transmembrane transport
## 465 regulation of autophagy
## 466 regulation of transcription from RNA polymerase II promoter in response to hypoxia
## 467 SCF ubiquitin ligase complex
## 468 ubiquitin-dependent ERAD pathway
## 469 wound healing
## 470 apoptotic signaling pathway
## 471 azurophil granule lumen
## 472 hydrolase activity, acting on glycosyl bonds
## 473 I-kappaB kinase/NF-kappaB signaling
## 474 mRNA 3'-UTR binding
## 475 Notch signaling pathway
## 476 nuclear pore
## 477 positive regulation of translation
## 478 protein serine phosphatase activity
## 479 protein threonine phosphatase activity
## 480 respirasome
## 481 cellular response to organic cyclic compound
## 482 cysteine-type endopeptidase activity
## 483 dioxygenase activity
## 484 extracellular matrix
## 485 interferon-gamma-mediated signaling pathway
## 486 intracellular receptor signaling pathway
## 487 lipid catabolic process
## 488 mitochondrial large ribosomal subunit
## 489 phospholipid binding
## 490 regulation of hematopoietic stem cell differentiation
## 491 response to estradiol
## 492 response to ethanol
## 493 RNA phosphodiester bond hydrolysis, endonucleolytic
## 494 steroid metabolic process
## 495 antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-dependent
## 496 cellular response to UV
## 497 chemical synaptic transmission
## 498 chemotaxis
## 499 circadian rhythm
## 500 clathrin-coated pit
## 501 COPII vesicle coating
## 502 mitotic nuclear envelope reassembly
## 503 neuron differentiation
## 504 osteoblast differentiation
## 505 peptidyl-tyrosine dephosphorylation
## 506 phagocytic vesicle
## 507 positive regulation of autophagy
## 508 positive regulation of peptidyl-tyrosine phosphorylation
## 509 proteasome complex
## 510 RNA polymerase II transcription regulator complex
## 511 viral entry into host cell
## 512 activation of cysteine-type endopeptidase activity involved in apoptotic process
## 513 bicellular tight junction
## 514 calcium ion transmembrane transport
## 515 cleavage furrow
## 516 glucose homeostasis
## 517 insulin receptor signaling pathway
## 518 manganese ion binding
## 519 mitotic cytokinesis
## 520 peroxisomal membrane
## 521 polysomal ribosome
## 522 positive regulation of interferon-gamma production
## 523 positive regulation of JNK cascade
## 524 positive regulation of protein catabolic process
## 525 protein tyrosine phosphatase activity
## 526 regulation of cell growth
## 527 regulation of gene silencing by miRNA
## 528 regulation of growth
## 529 ribosome binding
## 530 U2-type precatalytic spliceosome
## 531 vascular endothelial growth factor receptor signaling pathway
## 532 autophagosome
## 533 cellular protein metabolic process
## 534 cellular response to mechanical stimulus
## 535 DNA damage response, signal transduction by p53 class mediator resulting in cell cycle arrest
## 536 electron transport chain
## 537 endocytic recycling
## 538 ER to Golgi transport vesicle membrane
## 539 fatty acid biosynthetic process
## 540 integral component of Golgi membrane
## 541 kidney development
## 542 mRNA 3'-end processing
## 543 negative regulation of G2/M transition of mitotic cell cycle
## 544 p53 binding
## 545 peptidyl-threonine phosphorylation
## 546 positive regulation of inflammatory response
## 547 positive regulation of peptidyl-serine phosphorylation
## 548 positive regulation of protein binding
## 549 response to unfolded protein
## 550 response to UV
## 551 rough endoplasmic reticulum
## 552 actin filament
## 553 Cajal body
## 554 cellular response to leukemia inhibitory factor
## 555 cerebral cortex development
## 556 cytokine activity
## 557 defense response to bacterium
## 558 endopeptidase activity
## 559 ephrin receptor signaling pathway
## 560 fibroblast growth factor receptor signaling pathway
## 561 JNK cascade
## 562 negative regulation of inflammatory response
## 563 negative regulation of protein phosphorylation
## 564 negative regulation of protein ubiquitination
## 565 nucleosome assembly
## 566 phagocytosis
## 567 positive regulation of cytosolic calcium ion concentration
## 568 positive regulation of protein ubiquitination
## 569 positive regulation of type I interferon production
## 570 protein autoubiquitination
## 571 protein K48-linked ubiquitination
## 572 recycling endosome membrane
## 573 response to endoplasmic reticulum stress
## 574 response to organic substance
## 575 response to toxic substance
## 576 rRNA binding
## 577 tubulin binding
## 578 cell body
## 579 cellular response to amino acid starvation
## 580 cellular response to hydrogen peroxide
## 581 defense response
## 582 Fc-gamma receptor signaling pathway involved in phagocytosis
## 583 gene silencing by RNA
## 584 host cell
## 585 integrin-mediated signaling pathway
## 586 lateral plasma membrane
## 587 lysosomal lumen
## 588 negative regulation of neuron projection development
## 589 negative regulation of transforming growth factor beta receptor signaling pathway
## 590 neuron migration
## 591 phagocytic vesicle membrane
## 592 positive regulation of NIK/NF-kappaB signaling
## 593 post-embryonic development
## 594 potassium ion transmembrane transport
## 595 regulation of actin cytoskeleton organization
## 596 regulation of inflammatory response
## 597 regulation of protein localization
## 598 response to nutrient
## 599 response to nutrient levels
## 600 tertiary granule membrane
## 601 4 iron, 4 sulfur cluster binding
## 602 activation of protein kinase activity
## 603 axon cytoplasm
## 604 axonogenesis
## 605 cellular response to interferon-gamma
## 606 centrosome cycle
## 607 fat cell differentiation
## 608 integrin binding
## 609 mitotic spindle assembly
## 610 negative regulation of catalytic activity
## 611 negative regulation of cysteine-type endopeptidase activity involved in apoptotic process
## 612 ossification
## 613 phosphatidylinositol phosphorylation
## 614 phosphatidylinositol-4,5-bisphosphate binding
## 615 positive regulation of cold-induced thermogenesis
## 616 potassium ion transport
## 617 protein sumoylation
## 618 regulation of cyclin-dependent protein serine/threonine kinase activity
## 619 ribonucleoprotein complex binding
## 620 secretory granule
## 621 sensory perception of sound
## 622 skeletal system development
## 623 small ribosomal subunit
## 624 stem cell population maintenance
## 625 steroid biosynthetic process
## 626 symporter activity
## 627 telomere maintenance
## 628 transcription repressor complex
## 629 transport across blood-brain barrier
## 630 ATPase binding
## 631 cell-cell signaling
## 632 cellular iron ion homeostasis
## 633 central nervous system development
## 634 cis-Golgi network
## 635 cis-regulatory region sequence-specific DNA binding
## 636 clathrin-coated endocytic vesicle membrane
## 637 defense response to Gram-positive bacterium
## 638 DNA replication initiation
## 639 endocytic vesicle
## 640 endocytic vesicle membrane
## 641 heme binding
## 642 hemopoiesis
## 643 IRE1-mediated unfolded protein response
## 644 iron ion binding
## 645 lysosome organization
## 646 male gonad development
## 647 mediator complex
## 648 mitochondrial electron transport, NADH to ubiquinone
## 649 mitochondrial respiratory chain complex I
## 650 mitochondrial translation
## 651 mitotic metaphase plate congression
## 652 muscle contraction
## 653 muscle organ development
## 654 nuclear receptor transcription coactivator activity
## 655 PDZ domain binding
## 656 peroxisomal matrix
## 657 phospholipid biosynthetic process
## 658 positive regulation of endothelial cell proliferation
## 659 positive regulation of interleukin-8 production
## 660 positive regulation of phosphatidylinositol 3-kinase signaling
## 661 positive regulation of protein-containing complex assembly
## 662 promoter-specific chromatin binding
## 663 regulation of macroautophagy
## 664 regulation of protein phosphorylation
## 665 regulation of transcription initiation from RNA polymerase II promoter
## 666 response to bacterium
## 667 sarcolemma
## 668 specific granule lumen
## 669 spindle microtubule
## 670 stress fiber
## 671 translation initiation factor activity
## 672 activation of MAPKK activity
## 673 amyloid-beta binding
## 674 azurophil granule membrane
## 675 cell leading edge
## 676 cholesterol homeostasis
## 677 cytoskeletal protein binding
## 678 DNA damage response, detection of DNA damage
## 679 exonuclease activity
## 680 extrinsic component of cytoplasmic side of plasma membrane
## 681 glucose metabolic process
## 682 heat shock protein binding
## 683 intracellular transport of virus
## 684 negative regulation of G0 to G1 transition
## 685 negative regulation of neuron death
## 686 nucleobase-containing compound metabolic process
## 687 polysome
## 688 positive regulation of cell growth
## 689 protein kinase C binding
## 690 regulation of circadian rhythm
## 691 regulation of mitotic cell cycle
## 692 type I interferon signaling pathway
## 693 beta-catenin binding
## 694 cell periphery
## 695 cellular calcium ion homeostasis
## 696 cellular protein localization
## 697 cellular response to cytokine stimulus
## 698 cellular response to glucose stimulus
## 699 circadian regulation of gene expression
## 700 COPII-coated ER to Golgi transport vesicle
## 701 extrinsic component of membrane
## 702 fatty acid beta-oxidation
## 703 filopodium
## 704 lung development
## 705 motor activity
## 706 neuron projection morphogenesis
## 707 non-membrane spanning protein tyrosine kinase activity
## 708 phosphatidic acid biosynthetic process
## 709 positive regulation of gene expression, epigenetic
## 710 regulation of alternative mRNA splicing, via spliceosome
## 711 regulation of cytokinesis
## 712 response to hydrogen peroxide
## 713 response to ischemia
## 714 RNA metabolic process
## 715 syntaxin binding
## 716 T cell activation
## 717 tau protein binding
## 718 virus receptor activity
## 719 Z disc
## 720 anatomical structure morphogenesis
## 721 anchored component of membrane
## 722 autophagosome assembly
## 723 BMP signaling pathway
## 724 cellular response to starvation
## 725 chromatin DNA binding
## 726 DNA-dependent ATPase activity
## 727 electron transfer activity
## 728 estrogen receptor binding
## 729 heparin binding
## 730 histone acetylation
## 731 histone deacetylation
## 732 ion channel activity
## 733 mitotic sister chromatid segregation
## 734 NADH dehydrogenase (ubiquinone) activity
## 735 negative regulation of endopeptidase activity
## 736 negative regulation of G1/S transition of mitotic cell cycle
## 737 nucleosome
## 738 nucleotide-excision repair, DNA incision
## 739 nucleotide-excision repair, DNA incision, 5'-to lesion
## 740 positive regulation of actin filament polymerization
## 741 positive regulation of cysteine-type endopeptidase activity involved in apoptotic process
## 742 positive regulation of cytokine production
## 743 positive regulation of interferon-beta production
## 744 positive regulation of protein localization to plasma membrane
## 745 positive regulation of protein serine/threonine kinase activity
## 746 positive regulation of T cell proliferation
## 747 regulation of cell migration
## 748 regulation of cellular amino acid metabolic process
## 749 regulation of glycolytic process
## 750 regulation of ion transmembrane transport
## 751 regulation of transcription involved in G1/S transition of mitotic cell cycle
## 752 Rho protein signal transduction
## 753 scaffold protein binding
## 754 Schaffer collateral - CA1 synapse
## 755 SNARE binding
## 756 sphingolipid biosynthetic process
## 757 synaptic vesicle membrane
## 758 termination of RNA polymerase II transcription
## 759 tertiary granule lumen
## 760 voltage-gated ion channel activity
## 761 antiporter activity
## 762 ATP-dependent chromatin remodeling
## 763 axoneme
## 764 B cell differentiation
## 765 calcium-dependent protein binding
## 766 cellular response to drug
## 767 cytoplasmic microtubule
## 768 cytoplasmic side of plasma membrane
## 769 DNA-directed 5'-3' RNA polymerase activity
## 770 flavin adenine dinucleotide binding
## 771 GDP binding
## 772 microtubule-based movement
## 773 negative regulation of angiogenesis
## 774 negative regulation of cell death
## 775 negative regulation of DNA-binding transcription factor activity
## 776 negative regulation of tumor necrosis factor production
## 777 nuclear inner membrane
## 778 platelet aggregation
## 779 positive regulation of MAP kinase activity
## 780 positive regulation of neuron apoptotic process
## 781 protein N-linked glycosylation
## 782 regulation of exit from mitosis
## 783 regulation of phosphoprotein phosphatase activity
## 784 replication fork processing
## 785 response to hormone
## 786 ribosomal large subunit biogenesis
## 787 spermatid development
## 788 bone development
## 789 calcium channel activity
## 790 cation transport
## 791 cell morphogenesis
## 792 cell-matrix adhesion
## 793 cellular oxidant detoxification
## 794 cellular response to interleukin-1
## 795 CENP-A containing nucleosome assembly
## 796 cholesterol biosynthetic process
## 797 condensed nuclear chromosome
## 798 DNA damage checkpoint
## 799 endoplasmic reticulum unfolded protein response
## 800 endosome to lysosome transport
## 801 enzyme activator activity
## 802 epithelial cell differentiation
## 803 erythrocyte differentiation
## 804 exonucleolytic catabolism of deadenylated mRNA
## 805 ficolin-1-rich granule membrane
## 806 growth factor activity
## 807 heterochromatin
## 808 histone H3 acetylation
## 809 intermembrane lipid transfer
## 810 intrinsic apoptotic signaling pathway in response to DNA damage
## 811 membrane coat
## 812 metalloendopeptidase activity
## 813 miRNA binding
## 814 mitochondrial nucleoid
## 815 mitotic spindle assembly checkpoint
## 816 modulation of chemical synaptic transmission
## 817 multivesicular body assembly
## 818 negative regulation of autophagy
## 819 negative regulation of ERK1 and ERK2 cascade
## 820 negative regulation of inflammatory response to antigenic stimulus
## 821 nucleosome-dependent ATPase activity
## 822 phosphatase binding
## 823 positive regulation of osteoblast differentiation
## 824 positive regulation of protein kinase activity
## 825 positive regulation of smooth muscle cell proliferation
## 826 presynaptic membrane
## 827 protein K63-linked ubiquitination
## 828 protein phosphatase regulator activity
## 829 protein processing
## 830 protein self-association
## 831 response to cytokine
## 832 response to insulin
## 833 response to stimulus
## 834 RNA export from nucleus
## 835 single-stranded RNA binding
## 836 SNARE complex
## 837 sphingolipid metabolic process
## 838 spindle assembly
## 839 T cell costimulation
## 840 thyroid hormone receptor binding
## 841 transcription initiation from RNA polymerase I promoter
## 842 translational elongation
## 843 translesion synthesis
## 844 U4/U6 x U5 tri-snRNP complex
## 845 7-methylguanosine mRNA capping
## 846 amino acid transport
## 847 aminoacyl-tRNA ligase activity
## 848 apical part of cell
## 849 base-excision repair, gap-filling
## 850 blood microparticle
## 851 brush border
## 852 cartilage development
## 853 caveola
## 854 cell adhesion molecule binding
## 855 cellular response to growth factor stimulus
## 856 cellular response to ionizing radiation
## 857 cyclin-dependent protein serine/threonine kinase activity
## 858 DNA biosynthetic process
## 859 endoplasmic reticulum organization
## 860 endosome organization
## 861 extrinsic apoptotic signaling pathway
## 862 female pregnancy
## 863 G protein-coupled receptor binding
## 864 glutathione metabolic process
## 865 Hsp90 protein binding
## 866 intrinsic apoptotic signaling pathway
## 867 lipopolysaccharide-mediated signaling pathway
## 868 microtubule associated complex
## 869 mitotic spindle pole
## 870 negative regulation of GTPase activity
## 871 negative regulation of protein kinase B signaling
## 872 oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor
## 873 phosphatidylinositol-mediated signaling
## 874 phospholipid transport
## 875 platelet alpha granule lumen
## 876 polyubiquitin modification-dependent protein binding
## 877 positive regulation of endothelial cell migration
## 878 positive regulation of neuron differentiation
## 879 protein catabolic process
## 880 protein homotetramerization
## 881 protein K48-linked deubiquitination
## 882 protein targeting to mitochondrion
## 883 regulation of RNA splicing
## 884 response to ionizing radiation
## 885 RNA polymerase II general transcription initiation factor activity
## 886 SMAD binding
## 887 sodium ion transport
## 888 structural constituent of cytoskeleton
## 889 synaptic vesicle endocytosis
## 890 telomere maintenance via semi-conservative replication
## 891 termination of RNA polymerase I transcription
## 892 tRNA aminoacylation for protein translation
## 893 vesicle membrane
## 894 acrosomal vesicle
## 895 activation of JUN kinase activity
## 896 anion transmembrane transport
## 897 antigen processing and presentation
## 898 cellular response to calcium ion
## 899 condensed chromosome
## 900 establishment or maintenance of cell polarity
## 901 Golgi stack
## 902 hippocampus development
## 903 histone deacetylase complex
## 904 immunological synapse
## 905 integral component of mitochondrial inner membrane
## 906 kinesin binding
## 907 lysosome localization
## 908 microtubule motor activity
## 909 microvillus
## 910 mitotic chromosome condensation
## 911 motile cilium
## 912 negative regulation of cell cycle
## 913 negative regulation of epithelial cell proliferation
## 914 negative regulation of proteasomal ubiquitin-dependent protein catabolic process
## 915 negative regulation of signal transduction
## 916 NF-kappaB binding
## 917 nucleus organization
## 918 phosphatidylinositol-3-phosphate binding
## 919 positive regulation of DNA repair
## 920 positive regulation of insulin secretion involved in cellular response to glucose stimulus
## 921 positive regulation of interleukin-1 beta production
## 922 positive regulation of kinase activity
## 923 positive regulation of protein secretion
## 924 positive regulation of stress fiber assembly
## 925 positive regulation of viral transcription
## 926 protein targeting to membrane
## 927 proteolysis involved in cellular protein catabolic process
## 928 receptor tyrosine kinase binding
## 929 regulation of endocytosis
## 930 regulation of G protein-coupled receptor signaling pathway
## 931 repressing transcription factor binding
## 932 response to glucose
## 933 response to retinoic acid
## 934 response to wounding
## 935 retina development in camera-type eye
## 936 RNA polymerase II repressing transcription factor binding
## 937 serine-type endopeptidase activity
## 938 smoothened signaling pathway
## 939 spliceosomal snRNP assembly
## 940 translation elongation factor activity
## 941 voltage-gated potassium channel complex
## 942 ADP binding
## 943 amyloid fibril formation
## 944 calcium-mediated signaling
## 945 canonical Wnt signaling pathway
## 946 cation transmembrane transport
## 947 cellular response to reactive oxygen species
## 948 cellular response to retinoic acid
## 949 cholesterol binding
## 950 chromosome organization
## 951 cortical actin cytoskeleton
## 952 defense response to Gram-negative bacterium
## 953 endoribonuclease activity
## 954 enzyme inhibitor activity
## 955 hematopoietic progenitor cell differentiation
## 956 histone acetyltransferase activity
## 957 histone H4 acetylation
## 958 intermediate filament
## 959 kinesin complex
## 960 lamellipodium assembly
## 961 learning
## 962 mRNA 5'-UTR binding
## 963 multivesicular body
## 964 negative regulation of I-kappaB kinase/NF-kappaB signaling
## 965 negative regulation of interleukin-6 production
## 966 neuromuscular junction
## 967 nucleotide-excision repair
## 968 peptidyl-prolyl cis-trans isomerase activity
## 969 phosphatidylinositol dephosphorylation
## 970 phosphatidylserine binding
## 971 positive regulation of blood vessel endothelial cell migration
## 972 positive regulation of protein import into nucleus
## 973 protein destabilization
## 974 protein N-linked glycosylation via asparagine
## 975 protein O-linked glycosylation
## 976 protein peptidyl-prolyl isomerization
## 977 protein secretion
## 978 protein targeting
## 979 regulation of cell differentiation
## 980 regulation of defense response to virus by virus
## 981 regulation of megakaryocyte differentiation
## 982 ribosomal large subunit assembly
## 983 RNA polymerase II activating transcription factor binding
## 984 small-subunit processome
## 985 SNAP receptor activity
## 986 sodium ion transmembrane transport
## 987 tRNA modification
## 988 tumor necrosis factor receptor binding
## 989 viral protein processing
## 990 14-3-3 protein binding
## 991 aminopeptidase activity
## 992 ATPase-coupled transmembrane transporter activity
## 993 autophagosome membrane
## 994 basal plasma membrane
## 995 bicellular tight junction assembly
## 996 carbohydrate transport
## 997 cell redox homeostasis
## 998 cellular response to amino acid stimulus
## 999 cellular response to virus
## 1000 chloride transport
## 1001 cytoplasmic microtubule organization
## 1002 determination of left/right symmetry
## 1003 DNA replication origin binding
## 1004 DNA-dependent DNA replication
## 1005 embryonic organ development
## 1006 epidermal growth factor receptor signaling pathway
## 1007 generation of precursor metabolites and energy
## 1008 GTPase binding
## 1009 heart morphogenesis
## 1010 histone methyltransferase complex
## 1011 inositol phosphate metabolic process
## 1012 interleukin-12-mediated signaling pathway
## 1013 lipid homeostasis
## 1014 mitochondrial small ribosomal subunit
## 1015 mRNA polyadenylation
## 1016 MyD88-dependent toll-like receptor signaling pathway
## 1017 NAD binding
## 1018 NAD+ ADP-ribosyltransferase activity
## 1019 neurogenesis
## 1020 neuron apoptotic process
## 1021 neurotransmitter transport
## 1022 non-motile cilium assembly
## 1023 nuclear receptor activity
## 1024 phosphatidylinositol-3,4,5-trisphosphate binding
## 1025 phosphoprotein binding
## 1026 phosphotyrosine residue binding
## 1027 positive regulation of interleukin-12 production
## 1028 positive regulation of viral genome replication
## 1029 preribosome, large subunit precursor
## 1030 protein serine/threonine/tyrosine kinase activity
## 1031 regulation of tumor necrosis factor-mediated signaling pathway
## 1032 replication fork
## 1033 response to estrogen
## 1034 serine-type peptidase activity
## 1035 SH2 domain binding
## 1036 sterol biosynthetic process
## 1037 stress-activated MAPK cascade
## 1038 transcription factor TFIID complex
## 1039 vesicle fusion
## 1040 adenylate cyclase-activating G protein-coupled receptor signaling pathway
## 1041 ATP metabolic process
## 1042 ATP-dependent microtubule motor activity
## 1043 base-excision repair
## 1044 basement membrane
## 1045 cellular response to epidermal growth factor stimulus
## 1046 cellular response to nerve growth factor stimulus
## 1047 clathrin binding
## 1048 clathrin-dependent endocytosis
## 1049 cognition
## 1050 Cul3-RING ubiquitin ligase complex
## 1051 cyclin binding
## 1052 dendrite cytoplasm
## 1053 DNA-templated transcription, initiation
## 1054 E-box binding
## 1055 extracellular matrix structural constituent
## 1056 Flemming body
## 1057 germ cell development
## 1058 global genome nucleotide-excision repair
## 1059 gluconeogenesis
## 1060 histone acetyltransferase binding
## 1061 histone acetyltransferase complex
## 1062 Hsp70 protein binding
## 1063 integrator complex
## 1064 intermediate filament cytoskeleton
## 1065 intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## 1066 keratinocyte differentiation
## 1067 liver regeneration
## 1068 maturation of SSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 1069 microtubule bundle formation
## 1070 MLL1 complex
## 1071 NADP binding
## 1072 negative regulation of cell adhesion
## 1073 negative regulation of fat cell differentiation
## 1074 negative regulation of neuron differentiation
## 1075 negative regulation of Notch signaling pathway
## 1076 negative regulation of phosphatase activity
## 1077 negative regulation of phosphoprotein phosphatase activity
## 1078 negative regulation of protein catabolic process
## 1079 negative regulation of viral genome replication
## 1080 nuclear chromosome
## 1081 nucleosome binding
## 1082 nucleotide-excision repair, DNA gap filling
## 1083 pericentric heterochromatin
## 1084 phosphatidylinositol 3-kinase signaling
## 1085 phospholipid metabolic process
## 1086 phosphoric diester hydrolase activity
## 1087 positive regulation of cell adhesion
## 1088 positive regulation of chemokine production
## 1089 positive regulation of cytokinesis
## 1090 positive regulation of DNA replication
## 1091 positive regulation of erythrocyte differentiation
## 1092 positive regulation of G1/S transition of mitotic cell cycle
## 1093 positive regulation of telomere maintenance via telomerase
## 1094 positive regulation of TOR signaling
## 1095 positive regulation of tyrosine phosphorylation of STAT protein
## 1096 protein insertion into ER membrane
## 1097 protein K63-linked deubiquitination
## 1098 protein phosphatase 2A binding
## 1099 protein serine/threonine kinase activator activity
## 1100 protein tyrosine/serine/threonine phosphatase activity
## 1101 regulation of cell motility
## 1102 regulation of DNA replication
## 1103 regulation of I-kappaB kinase/NF-kappaB signaling
## 1104 regulation of synaptic vesicle exocytosis
## 1105 RNA polymerase II complex binding
## 1106 RNA polymerase II transcription factor binding
## 1107 site of DNA damage
## 1108 somatic stem cell population maintenance
## 1109 spinal cord development
## 1110 T cell differentiation
## 1111 telomere maintenance via telomerase
## 1112 thymus development
## 1113 translation initiation factor binding
## 1114 tricarboxylic acid cycle
## 1115 tRNA export from nucleus
## 1116 U12-type spliceosomal complex
## 1117 visual learning
## 1118 xenobiotic metabolic process
## 1119 actin cytoskeleton reorganization
## 1120 actin filament polymerization
## 1121 antigen processing and presentation of peptide antigen via MHC class I
## 1122 antimicrobial humoral immune response mediated by antimicrobial peptide
## 1123 B cell receptor signaling pathway
## 1124 beta-tubulin binding
## 1125 carboxylic ester hydrolase activity
## 1126 cell motility
## 1127 cellular response to cAMP
## 1128 cellular response to gamma radiation
## 1129 cellular response to heat
## 1130 centrosome duplication
## 1131 ciliary tip
## 1132 collagen binding
## 1133 collagen fibril organization
## 1134 condensed chromosome, centromeric region
## 1135 cyclin-dependent protein kinase holoenzyme complex
## 1136 dendrite morphogenesis
## 1137 disordered domain specific binding
## 1138 DNA metabolic process
## 1139 embryonic placenta development
## 1140 error-free translesion synthesis
## 1141 error-prone translesion synthesis
## 1142 extracellular matrix disassembly
## 1143 extracellular vesicle
## 1144 flagellated sperm motility
## 1145 forebrain development
## 1146 gene expression
## 1147 glycosphingolipid metabolic process
## 1148 GTP-dependent protein binding
## 1149 humoral immune response
## 1150 intra-Golgi vesicle-mediated transport
## 1151 lactation
## 1152 limb development
## 1153 locomotory behavior
## 1154 microtubule plus-end binding
## 1155 mitochondrial cytochrome c oxidase assembly
## 1156 negative regulation of BMP signaling pathway
## 1157 negative regulation of cold-induced thermogenesis
## 1158 negative regulation of cyclin-dependent protein serine/threonine kinase activity
## 1159 negative regulation of TOR signaling
## 1160 negative regulation of type I interferon production
## 1161 negative regulation of Wnt signaling pathway
## 1162 neuron development
## 1163 nucleotide-binding oligomerization domain containing signaling pathway
## 1164 O-glycan processing
## 1165 one-carbon metabolic process
## 1166 peptidase inhibitor activity
## 1167 peptide binding
## 1168 phosphatidylinositol metabolic process
## 1169 pigmentation
## 1170 positive regulation of axon extension
## 1171 positive regulation of fat cell differentiation
## 1172 positive regulation of fibroblast proliferation
## 1173 positive regulation of insulin secretion
## 1174 positive regulation of interferon-alpha production
## 1175 positive regulation of neuron death
## 1176 positive regulation of protein localization to nucleus
## 1177 positive regulation of transforming growth factor beta receptor signaling pathway
## 1178 posttranscriptional regulation of gene expression
## 1179 potassium channel activity
## 1180 protein ADP-ribosylation
## 1181 protein localization to nucleus
## 1182 protein phosphatase inhibitor activity
## 1183 reciprocal meiotic recombination
## 1184 regulation of actin filament polymerization
## 1185 regulation of cytokine production
## 1186 regulation of synaptic plasticity
## 1187 response to activity
## 1188 response to glucocorticoid
## 1189 response to heat
## 1190 response to interleukin-1
## 1191 ribosomal small subunit biogenesis
## 1192 RNA phosphodiester bond hydrolysis, exonucleolytic
## 1193 signaling receptor complex adaptor activity
## 1194 single fertilization
## 1195 spindle midzone
## 1196 substantia nigra development
## 1197 TRIF-dependent toll-like receptor signaling pathway
## 1198 ubiquitin-like protein ligase binding
## 1199 acetylglucosaminyltransferase activity
## 1200 actin polymerization or depolymerization
## 1201 aerobic respiration
## 1202 anaphase-promoting complex
## 1203 androgen receptor binding
## 1204 anterior/posterior pattern specification
## 1205 B cell activation
## 1206 calcium-dependent phospholipid binding
## 1207 cellular defense response
## 1208 centriole replication
## 1209 cerebellum development
## 1210 chaperone cofactor-dependent protein refolding
## 1211 chloride channel activity
## 1212 COP9 signalosome
## 1213 cyclin-dependent protein serine/threonine kinase regulator activity
## 1214 DNA-directed DNA polymerase activity
## 1215 endoplasmic reticulum quality control compartment
## 1216 epidermis development
## 1217 ERBB2 signaling pathway
## 1218 establishment of protein localization
## 1219 euchromatin
## 1220 eukaryotic translation initiation factor 3 complex
## 1221 extrinsic apoptotic signaling pathway via death domain receptors
## 1222 glycogen metabolic process
## 1223 GPI anchor biosynthetic process
## 1224 granulocyte differentiation
## 1225 histone deacetylase activity
## 1226 histone-lysine N-methyltransferase activity
## 1227 hydrolase activity, hydrolyzing O-glycosyl compounds
## 1228 integral component of lumenal side of endoplasmic reticulum membrane
## 1229 intraciliary transport involved in cilium assembly
## 1230 K63-linked polyubiquitin modification-dependent protein binding
## 1231 lysosomal transport
## 1232 membrane fusion
## 1233 memory
## 1234 methyl-CpG binding
## 1235 microtubule nucleation
## 1236 microtubule plus-end
## 1237 mRNA catabolic process
## 1238 mRNA stabilization
## 1239 negative regulation of DNA binding
## 1240 negative regulation of DNA recombination at telomere
## 1241 negative regulation of extrinsic apoptotic signaling pathway via death domain receptors
## 1242 negative regulation of fibroblast proliferation
## 1243 negative regulation of peptidase activity
## 1244 negative regulation of T cell proliferation
## 1245 nuclear envelope organization
## 1246 nuclear hormone receptor binding
## 1247 nucleobase-containing small molecule interconversion
## 1248 nucleotide metabolic process
## 1249 nucleotide-excision repair, preincision complex assembly
## 1250 outflow tract morphogenesis
## 1251 oxidative phosphorylation
## 1252 peroxisome organization
## 1253 positive regulation of cell cycle
## 1254 positive regulation of defense response to virus by host
## 1255 positive regulation of interleukin-10 production
## 1256 positive regulation of intrinsic apoptotic signaling pathway
## 1257 positive regulation of macroautophagy
## 1258 positive regulation of microtubule polymerization
## 1259 positive regulation of mitotic cell cycle
## 1260 positive regulation of neurogenesis
## 1261 positive regulation of nitric oxide biosynthetic process
## 1262 positive regulation of Notch signaling pathway
## 1263 positive regulation of pri-miRNA transcription by RNA polymerase II
## 1264 positive regulation of protein tyrosine kinase activity
## 1265 positive regulation of Ras protein signal transduction
## 1266 positive regulation of telomerase activity
## 1267 potassium channel regulator activity
## 1268 protein kinase B signaling
## 1269 protein methylation
## 1270 protein-DNA complex
## 1271 receptor internalization
## 1272 regulation of cell adhesion
## 1273 regulation of metabolic process
## 1274 response to calcium ion
## 1275 response to gamma radiation
## 1276 response to peptide hormone
## 1277 RNA catabolic process
## 1278 RNA methylation
## 1279 sarcoplasmic reticulum
## 1280 signaling adaptor activity
## 1281 spindle organization
## 1282 stress granule assembly
## 1283 substrate adhesion-dependent cell spreading
## 1284 SWI/SNF complex
## 1285 synapse organization
## 1286 transcription by RNA polymerase III
## 1287 U2-type catalytic step 2 spliceosome
## 1288 3'-5'-exoribonuclease activity
## 1289 acetyltransferase activity
## 1290 actin monomer binding
## 1291 activating transcription factor binding
## 1292 aggresome
## 1293 anterograde axonal transport
## 1294 beta-catenin-TCF complex assembly
## 1295 brush border membrane
## 1296 cation channel activity
## 1297 cell chemotaxis
## 1298 cellular response to estradiol stimulus
## 1299 cellular response to glucose starvation
## 1300 chloride transmembrane transport
## 1301 chromosome condensation
## 1302 clathrin adaptor activity
## 1303 collagen trimer
## 1304 copper ion binding
## 1305 cortical actin cytoskeleton organization
## 1306 cytoplasmic translational initiation
## 1307 DNA methylation
## 1308 epidermal growth factor receptor binding
## 1309 epithelial to mesenchymal transition
## 1310 eukaryotic 43S preinitiation complex
## 1311 fatty-acyl-CoA binding
## 1312 formation of cytoplasmic translation initiation complex
## 1313 four-way junction DNA binding
## 1314 GABA-ergic synapse
## 1315 gamma-tubulin binding
## 1316 Golgi to endosome transport
## 1317 Golgi to plasma membrane transport
## 1318 growth factor binding
## 1319 heart looping
## 1320 histone lysine methylation
## 1321 homophilic cell adhesion via plasma membrane adhesion molecules
## 1322 Ino80 complex
## 1323 intrinsic apoptotic signaling pathway by p53 class mediator
## 1324 iron ion homeostasis
## 1325 learning or memory
## 1326 lung alveolus development
## 1327 lysine-acetylated histone binding
## 1328 MAP kinase kinase kinase activity
## 1329 mitochondrial calcium ion transmembrane transport
## 1330 mitotic G2 DNA damage checkpoint
## 1331 negative regulation of cell differentiation
## 1332 negative regulation of extrinsic apoptotic signaling pathway
## 1333 negative regulation of gene expression, epigenetic
## 1334 negative regulation of insulin receptor signaling pathway
## 1335 negative regulation of MAP kinase activity
## 1336 negative regulation of microtubule depolymerization
## 1337 negative regulation of osteoblast differentiation
## 1338 negative regulation of protein-containing complex assembly
## 1339 negative regulation of stress fiber assembly
## 1340 negative regulation of T cell receptor signaling pathway
## 1341 negative regulation of type I interferon-mediated signaling pathway
## 1342 neutrophil chemotaxis
## 1343 nuclear import signal receptor activity
## 1344 nucleocytoplasmic transport
## 1345 nucleosomal DNA binding
## 1346 nucleotide-excision repair, DNA damage recognition
## 1347 nucleotide-excision repair, DNA duplex unwinding
## 1348 oogenesis
## 1349 osteoclast differentiation
## 1350 ovarian follicle development
## 1351 PcG protein complex
## 1352 phosphatidylinositol-4-phosphate binding
## 1353 photoreceptor cell maintenance
## 1354 photoreceptor outer segment
## 1355 placenta development
## 1356 podosome
## 1357 positive regulation of ATPase activity
## 1358 positive regulation of axonogenesis
## 1359 positive regulation of B cell proliferation
## 1360 positive regulation of BMP signaling pathway
## 1361 positive regulation of cell cycle arrest
## 1362 positive regulation of cyclin-dependent protein serine/threonine kinase activity
## 1363 positive regulation of epithelial cell migration
## 1364 positive regulation of epithelial cell proliferation
## 1365 positive regulation of extrinsic apoptotic signaling pathway
## 1366 positive regulation of glucose import
## 1367 positive regulation of JUN kinase activity
## 1368 positive regulation of pathway-restricted SMAD protein phosphorylation
## 1369 positive regulation of phagocytosis
## 1370 positive regulation of protein dephosphorylation
## 1371 positive regulation of protein targeting to mitochondrion
## 1372 positive regulation of substrate adhesion-dependent cell spreading
## 1373 protein import into peroxisome membrane
## 1374 protein K11-linked ubiquitination
## 1375 protein kinase inhibitor activity
## 1376 protein maturation
## 1377 protein phosphatase 1 binding
## 1378 protein-cysteine S-palmitoyltransferase activity
## 1379 purine nucleotide biosynthetic process
## 1380 Rac protein signal transduction
## 1381 regulation of blood pressure
## 1382 regulation of cytoskeleton organization
## 1383 regulation of DNA-binding transcription factor activity
## 1384 regulation of exocytosis
## 1385 regulation of focal adhesion assembly
## 1386 regulation of insulin secretion
## 1387 regulation of mitotic spindle assembly
## 1388 regulation of protein kinase activity
## 1389 regulation of translational initiation
## 1390 response to axon injury
## 1391 response to cadmium ion
## 1392 response to progesterone
## 1393 RNA phosphodiester bond hydrolysis
## 1394 semaphorin-plexin signaling pathway
## 1395 snRNA processing
## 1396 somitogenesis
## 1397 spliceosomal complex assembly
## 1398 T cell homeostasis
## 1399 telomeric DNA binding
## 1400 TOR signaling
## 1401 transport vesicle membrane
## 1402 TRAPP complex
## 1403 U1 snRNP
## 1404 vesicle budding from membrane
## 1405 viral budding via host ESCRT complex
## 1406 Wnt signaling pathway, calcium modulating pathway
## 1407 3'-5' DNA helicase activity
## 1408 actomyosin structure organization
## 1409 adenylate cyclase-inhibiting G protein-coupled receptor signaling pathway
## 1410 adipose tissue development
## 1411 adult locomotory behavior
## 1412 antibacterial humoral response
## 1413 aorta development
## 1414 autophagosome maturation
## 1415 axon terminus
## 1416 axonal growth cone
## 1417 barbed-end actin filament capping
## 1418 blood vessel development
## 1419 camera-type eye development
## 1420 cardiac muscle contraction
## 1421 cellular protein-containing complex assembly
## 1422 cellular response to fatty acid
## 1423 cellular response to interferon-beta
## 1424 cellular response to interleukin-4
## 1425 cellular response to transforming growth factor beta stimulus
## 1426 chaperone-mediated protein folding
## 1427 chromatin silencing
## 1428 ciliary transition zone
## 1429 clathrin coat assembly
## 1430 COPII-coated vesicle cargo loading
## 1431 cristae formation
## 1432 Cul4-RING E3 ubiquitin ligase complex
## 1433 dendrite development
## 1434 determination of adult lifespan
## 1435 DNA double-strand break processing
## 1436 DNA polymerase binding
## 1437 early endosome to late endosome transport
## 1438 embryonic digit morphogenesis
## 1439 endoplasmic reticulum exit site
## 1440 establishment of mitotic spindle orientation
## 1441 eukaryotic 48S preinitiation complex
## 1442 execution phase of apoptosis
## 1443 FAD binding
## 1444 filamentous actin
## 1445 folic acid metabolic process
## 1446 gamete generation
## 1447 glycolytic process
## 1448 Golgi to plasma membrane protein transport
## 1449 histone H3 deacetylation
## 1450 homeostasis of number of cells
## 1451 innate immune response in mucosa
## 1452 interleukin-27-mediated signaling pathway
## 1453 kinetochore assembly
## 1454 lipopolysaccharide binding
## 1455 megakaryocyte development
## 1456 melanosome organization
## 1457 mesoderm development
## 1458 metalloaminopeptidase activity
## 1459 MHC class II protein complex
## 1460 mismatch repair
## 1461 mitochondrial ribosome
## 1462 myelination
## 1463 myeloid cell differentiation
## 1464 N-acetyltransferase activity
## 1465 N-glycan processing
## 1466 negative regulation of double-strand break repair via homologous recombination
## 1467 negative regulation of interferon-gamma production
## 1468 negative regulation of intrinsic apoptotic signaling pathway
## 1469 negative regulation of mitotic cell cycle
## 1470 negative regulation of NIK/NF-kappaB signaling
## 1471 negative regulation of ubiquitin protein ligase activity
## 1472 neural crest cell migration
## 1473 neural tube development
## 1474 NuA4 histone acetyltransferase complex
## 1475 nuclear receptor binding
## 1476 nuclear-transcribed mRNA poly(A) tail shortening
## 1477 palmitoyltransferase activity
## 1478 peptide antigen binding
## 1479 phosphatidic acid binding
## 1480 phosphatidylcholine acyl-chain remodeling
## 1481 phosphatidylcholine binding
## 1482 phosphatidylcholine biosynthetic process
## 1483 phosphatidylinositol 3-kinase complex
## 1484 poly(U) RNA binding
## 1485 positive regulation of calcium ion transport
## 1486 positive regulation of catalytic activity
## 1487 positive regulation of cell death
## 1488 positive regulation of cell differentiation
## 1489 positive regulation of DNA binding
## 1490 positive regulation of exocytosis
## 1491 positive regulation of filopodium assembly
## 1492 positive regulation of histone acetylation
## 1493 positive regulation of innate immune response
## 1494 positive regulation of receptor internalization
## 1495 positive regulation of transcription initiation from RNA polymerase II promoter
## 1496 presynaptic active zone
## 1497 production of miRNAs involved in gene silencing by miRNA
## 1498 protein ADP-ribosylase activity
## 1499 protein kinase C-activating G protein-coupled receptor signaling pathway
## 1500 protein palmitoylation
## 1501 protein targeting to lysosome
## 1502 regulation of actin cytoskeleton reorganization
## 1503 regulation of cell morphogenesis
## 1504 regulation of cell size
## 1505 regulation of centrosome duplication
## 1506 regulation of membrane potential
## 1507 regulation of mitochondrion organization
## 1508 regulation of neurogenesis
## 1509 regulation of protein localization to plasma membrane
## 1510 regulation of transforming growth factor beta receptor signaling pathway
## 1511 response to antibiotic
## 1512 response to mechanical stimulus
## 1513 sarcomere
## 1514 sarcoplasmic reticulum membrane
## 1515 sister chromatid cohesion
## 1516 skeletal muscle cell differentiation
## 1517 SMAD protein signal transduction
## 1518 stereocilium
## 1519 structural constituent of nuclear pore
## 1520 synapse assembly
## 1521 synaptic membrane
## 1522 TBP-class protein binding
## 1523 toll-like receptor signaling pathway
## 1524 toxin transport
## 1525 transcription elongation factor complex
## 1526 transferrin transport
## 1527 U2 snRNP
## 1528 ubiquitin conjugating enzyme activity
## 1529 ubiquitin conjugating enzyme binding
## 1530 vasculogenesis
## 1531 2-oxoglutarate-dependent dioxygenase activity
## 1532 activation of protein kinase B activity
## 1533 aggrephagy
## 1534 anatomical structure development
## 1535 animal organ regeneration
## 1536 antigen processing and presentation of peptide or polysaccharide antigen via MHC class II
## 1537 ATP biosynthetic process
## 1538 axon extension
## 1539 B cell homeostasis
## 1540 beta-catenin destruction complex disassembly
## 1541 bile acid and bile salt transport
## 1542 bile acid biosynthetic process
## 1543 binding of sperm to zona pellucida
## 1544 biosynthetic process
## 1545 blastocyst development
## 1546 blastocyst formation
## 1547 camera-type eye morphogenesis
## 1548 cAMP response element binding
## 1549 carbohydrate phosphorylation
## 1550 carboxy-lyase activity
## 1551 cell aging
## 1552 cell death
## 1553 cellular amino acid biosynthetic process
## 1554 cellular response to BMP stimulus
## 1555 cellular response to low-density lipoprotein particle stimulus
## 1556 centrosome localization
## 1557 ceramide biosynthetic process
## 1558 clathrin-coated vesicle membrane
## 1559 condensed nuclear chromosome kinetochore
## 1560 COPI-coated vesicle membrane
## 1561 coreceptor activity
## 1562 cytokine binding
## 1563 dendritic shaft
## 1564 DNA strand elongation involved in DNA replication
## 1565 endoplasmic reticulum mannose trimming
## 1566 energy homeostasis
## 1567 ERK1 and ERK2 cascade
## 1568 establishment of cell polarity
## 1569 excitatory postsynaptic potential
## 1570 gastrulation
## 1571 histone H3-K4 methylation
## 1572 histone methylation
## 1573 homeostasis of number of cells within a tissue
## 1574 hormone-mediated signaling pathway
## 1575 inner cell mass cell proliferation
## 1576 inorganic anion transport
## 1577 inositol phosphate dephosphorylation
## 1578 interleukin-6-mediated signaling pathway
## 1579 intracellular transport
## 1580 intrinsic component of plasma membrane
## 1581 iron-sulfur cluster assembly
## 1582 lamellipodium membrane
## 1583 large ribosomal subunit
## 1584 low-density lipoprotein particle clearance
## 1585 lysophospholipase activity
## 1586 maintenance of blood-brain barrier
## 1587 maturation of SSU-rRNA
## 1588 MHC class II protein complex binding
## 1589 microtubule-based process
## 1590 midbody abscission
## 1591 mitochondrial fusion
## 1592 mitogen-activated protein kinase binding
## 1593 mitotic sister chromatid cohesion
## 1594 mRNA cleavage and polyadenylation specificity factor complex
## 1595 mRNA destabilization
## 1596 mRNA splice site selection
## 1597 myosin complex
## 1598 negative chemotaxis
## 1599 negative regulation of cytokine production involved in inflammatory response
## 1600 negative regulation of endothelial cell apoptotic process
## 1601 negative regulation of epidermal growth factor receptor signaling pathway
## 1602 negative regulation of Ras protein signal transduction
## 1603 negative regulation of toll-like receptor signaling pathway
## 1604 nuclear localization sequence binding
## 1605 nuclear replication fork
## 1606 nucleotide-excision repair, DNA incision, 3'-to lesion
## 1607 nucleotide-excision repair, preincision complex stabilization
## 1608 oxidoreductase activity, acting on the CH-CH group of donors
## 1609 pattern specification process
## 1610 peptidyl-L-cysteine S-palmitoylation
## 1611 pericentriolar material
## 1612 phagocytic cup
## 1613 phosphatidylinositol phosphate binding
## 1614 phosphatidylinositol-3-phosphatase activity
## 1615 phosphatidylinositol-3,4-bisphosphate binding
## 1616 phospholipid translocation
## 1617 photoreceptor connecting cilium
## 1618 positive regulation of cell-substrate adhesion
## 1619 positive regulation of cholesterol efflux
## 1620 positive regulation of cytokine production involved in inflammatory response
## 1621 positive regulation of dendrite morphogenesis
## 1622 positive regulation of DNA-templated transcription, elongation
## 1623 positive regulation of double-strand break repair via nonhomologous end joining
## 1624 positive regulation of epidermal growth factor receptor signaling pathway
## 1625 positive regulation of glial cell proliferation
## 1626 positive regulation of interleukin-2 production
## 1627 positive regulation of interleukin-4 production
## 1628 positive regulation of lamellipodium assembly
## 1629 positive regulation of mRNA splicing, via spliceosome
## 1630 positive regulation of nitric-oxide synthase activity
## 1631 positive regulation of potassium ion transmembrane transport
## 1632 positive regulation of protein export from nucleus
## 1633 positive regulation of protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## 1634 positive regulation of proteolysis
## 1635 positive regulation of smoothened signaling pathway
## 1636 positive regulation of stress-activated MAPK cascade
## 1637 positive regulation of T cell activation
## 1638 positive regulation of transcription of Notch receptor target
## 1639 positive regulation of translational initiation
## 1640 positive regulation of triglyceride biosynthetic process
## 1641 positive regulation of vascular associated smooth muscle cell proliferation
## 1642 precatalytic spliceosome
## 1643 proteasome assembly
## 1644 proteasome binding
## 1645 protein folding chaperone
## 1646 protein import into mitochondrial matrix
## 1647 protein kinase A regulatory subunit binding
## 1648 protein phosphatase type 2A complex
## 1649 protein tyrosine kinase binding
## 1650 receptor signaling pathway via JAK-STAT
## 1651 regulation of calcium ion transport
## 1652 regulation of double-strand break repair via homologous recombination
## 1653 regulation of embryonic development
## 1654 regulation of glucose metabolic process
## 1655 regulation of microtubule cytoskeleton organization
## 1656 regulation of mitochondrial membrane potential
## 1657 regulation of mitotic nuclear division
## 1658 regulation of myelination
## 1659 regulation of protein catabolic process
## 1660 regulation of signal transduction
## 1661 release of sequestered calcium ion into cytosol
## 1662 response to exogenous dsRNA
## 1663 response to radiation
## 1664 response to tumor necrosis factor
## 1665 response to X-ray
## 1666 retinoid X receptor binding
## 1667 ribosomal small subunit assembly
## 1668 RNA polymerase binding
## 1669 RNA polymerase II core promoter sequence-specific DNA binding
## 1670 RNA polymerase II transcription corepressor binding
## 1671 RNA polymerase II, core complex
## 1672 RNA polymerase III complex
## 1673 roof of mouth development
## 1674 rRNA catabolic process
## 1675 scavenger receptor activity
## 1676 small nuclear ribonucleoprotein complex
## 1677 snoRNA binding
## 1678 T cell differentiation in thymus
## 1679 T cell proliferation
## 1680 tau-protein kinase activity
## 1681 telomerase RNA binding
## 1682 transcription coactivator binding
## 1683 transforming growth factor beta binding
## 1684 translation regulator activity
## 1685 U2-type prespliceosome
## 1686 U6 snRNA binding
## 1687 ubiquitin-ubiquitin ligase activity
## 1688 vasculature development
## 1689 ventricular septum development
## 1690 vesicle docking
## 1691 vesicle docking involved in exocytosis
## 1692 3'-5' exonuclease activity
## 1693 acetylgalactosaminyltransferase activity
## 1694 actin filament bundle assembly
## 1695 activation of innate immune response
## 1696 alpha-tubulin binding
## 1697 anterograde synaptic vesicle transport
## 1698 antigen binding
## 1699 apoptotic cell clearance
## 1700 arachidonic acid metabolic process
## 1701 bHLH transcription factor binding
## 1702 bicarbonate transport
## 1703 blastocyst hatching
## 1704 BLOC-1 complex
## 1705 blood circulation
## 1706 bone mineralization
## 1707 branched-chain amino acid catabolic process
## 1708 branching involved in blood vessel morphogenesis
## 1709 canonical glycolysis
## 1710 cardiac conduction
## 1711 cargo receptor activity
## 1712 cation binding
## 1713 cell maturation
## 1714 cellular lipid metabolic process
## 1715 cellular response to cadmium ion
## 1716 cellular response to hormone stimulus
## 1717 cellular response to peptide
## 1718 chaperone-mediated protein complex assembly
## 1719 chondrocyte differentiation
## 1720 ciliary membrane
## 1721 clathrin-coated endocytic vesicle
## 1722 COPI vesicle coat
## 1723 COPII vesicle coat
## 1724 cullin family protein binding
## 1725 cytoskeleton-dependent cytokinesis
## 1726 defense response to protozoan
## 1727 double-strand break repair via break-induced replication
## 1728 dynein complex binding
## 1729 embryonic limb morphogenesis
## 1730 entrainment of circadian clock by photoperiod
## 1731 extrinsic component of plasma membrane
## 1732 eye development
## 1733 face development
## 1734 Fanconi anaemia nuclear complex
## 1735 ferrous iron binding
## 1736 fertilization
## 1737 fibroblast growth factor binding
## 1738 filopodium tip
## 1739 Golgi vesicle transport
## 1740 Golgi-associated vesicle
## 1741 hemostasis
## 1742 hippo signaling
## 1743 hippocampal mossy fiber to CA3 synapse
## 1744 histone demethylase activity
## 1745 import into nucleus
## 1746 inclusion body
## 1747 integral component of mitochondrial outer membrane
## 1748 intracellular cholesterol transport
## 1749 L-ascorbic acid binding
## 1750 lipid biosynthetic process
## 1751 long-term memory
## 1752 M band
## 1753 macrophage differentiation
## 1754 MAP kinase kinase activity
## 1755 maturation of LSU-rRNA
## 1756 metal ion transport
## 1757 MHC class I protein binding
## 1758 microtubule depolymerization
## 1759 misfolded protein binding
## 1760 mitochondria-associated endoplasmic reticulum membrane
## 1761 mitotic nuclear envelope disassembly
## 1762 muscle cell cellular homeostasis
## 1763 negative regulation of apoptotic signaling pathway
## 1764 negative regulation of cell cycle arrest
## 1765 negative regulation of cytokine production
## 1766 negative regulation of endothelial cell proliferation
## 1767 negative regulation of interferon-beta production
## 1768 negative regulation of interleukin-2 production
## 1769 negative regulation of JNK cascade
## 1770 negative regulation of macroautophagy
## 1771 negative regulation of mRNA splicing, via spliceosome
## 1772 negative regulation of protein serine/threonine kinase activity
## 1773 negative regulation of smoothened signaling pathway
## 1774 negative regulation of viral entry into host cell
## 1775 neuromuscular junction development
## 1776 neuromuscular process controlling balance
## 1777 neurotransmitter secretion
## 1778 nuclear-transcribed mRNA catabolic process
## 1779 oocyte maturation
## 1780 P-body assembly
## 1781 phagophore assembly site
## 1782 phospholipase A2 activity
## 1783 platelet-derived growth factor receptor signaling pathway
## 1784 positive regulation of activated T cell proliferation
## 1785 positive regulation of bone mineralization
## 1786 positive regulation of cell-matrix adhesion
## 1787 positive regulation of collagen biosynthetic process
## 1788 positive regulation of dendritic spine development
## 1789 positive regulation of double-strand break repair via homologous recombination
## 1790 positive regulation of focal adhesion assembly
## 1791 positive regulation of G2/M transition of mitotic cell cycle
## 1792 positive regulation of intracellular protein transport
## 1793 positive regulation of long-term synaptic potentiation
## 1794 positive regulation of phosphatidylinositol 3-kinase activity
## 1795 positive regulation of protein autophosphorylation
## 1796 positive regulation of protein targeting to membrane
## 1797 positive regulation of release of cytochrome c from mitochondria
## 1798 positive regulation of telomere capping
## 1799 positive regulation of TORC1 signaling
## 1800 positive regulation of ubiquitin protein ligase activity
## 1801 proline-rich region binding
## 1802 proteasome accessory complex
## 1803 protein acetylation
## 1804 protein deacetylation
## 1805 protein export from nucleus
## 1806 protein localization to cell surface
## 1807 protein localization to centrosome
## 1808 protein localization to chromatin
## 1809 protein localization to chromosome, telomeric region
## 1810 protein monoubiquitination
## 1811 protein targeting to vacuole
## 1812 protein transmembrane transporter activity
## 1813 pseudouridine synthase activity
## 1814 pseudouridine synthesis
## 1815 purine ribonucleoside monophosphate biosynthetic process
## 1816 purinergic nucleotide receptor signaling pathway
## 1817 pyridoxal phosphate binding
## 1818 pyruvate metabolic process
## 1819 receptor recycling
## 1820 regulation of androgen receptor signaling pathway
## 1821 regulation of dendritic spine morphogenesis
## 1822 regulation of establishment of cell polarity
## 1823 regulation of gene expression, epigenetic
## 1824 regulation of gluconeogenesis
## 1825 regulation of innate immune response
## 1826 regulation of multicellular organism growth
## 1827 regulation of necroptotic process
## 1828 regulation of neuron differentiation
## 1829 regulation of Notch signaling pathway
## 1830 regulation of phosphatidylinositol 3-kinase activity
## 1831 regulation of proteasomal ubiquitin-dependent protein catabolic process
## 1832 regulation of protein-containing complex assembly
## 1833 release of cytochrome c from mitochondria
## 1834 resolution of meiotic recombination intermediates
## 1835 response to amino acid
## 1836 response to cAMP
## 1837 response to cocaine
## 1838 response to cold
## 1839 response to electrical stimulus
## 1840 response to zinc ion
## 1841 retromer complex
## 1842 RISC complex
## 1843 RNA cap binding
## 1844 RNA modification
## 1845 RNA stem-loop binding
## 1846 S-adenosylmethionine-dependent methyltransferase activity
## 1847 serine-type endopeptidase inhibitor activity
## 1848 single-stranded DNA helicase activity
## 1849 skeletal muscle fiber development
## 1850 skeletal muscle tissue development
## 1851 skeletal muscle tissue regeneration
## 1852 spindle pole centrosome
## 1853 stem cell differentiation
## 1854 stress-activated protein kinase signaling cascade
## 1855 syntaxin-1 binding
## 1856 tail-anchored membrane protein insertion into ER membrane
## 1857 telomerase holoenzyme complex
## 1858 terminal bouton
## 1859 tissue development
## 1860 translation repressor activity, mRNA regulatory element binding
## 1861 triglyceride lipase activity
## 1862 tRNA methylation
## 1863 U5 snRNP
## 1864 unsaturated fatty acid biosynthetic process
## 1865 UV protection
## 1866 vacuolar transport
## 1867 vesicle organization
## 1868 vesicle transport along microtubule
## 1869 voltage-gated potassium channel activity
## 1870 WASH complex
## 1871 WW domain binding
## 1872 zinc ion transport
## 1873 1-phosphatidylinositol binding
## 1874 2 iron, 2 sulfur cluster binding
## 1875 5S rRNA binding
## 1876 7SK snRNA binding
## 1877 90S preribosome
## 1878 activation of phospholipase C activity
## 1879 acyl-CoA metabolic process
## 1880 Ada2/Gcn5/Ada3 transcription activator complex
## 1881 adenylate cyclase-modulating G protein-coupled receptor signaling pathway
## 1882 alpha-linolenic acid metabolic process
## 1883 anoikis
## 1884 ATPase-coupled intramembrane lipid transporter activity
## 1885 attachment of mitotic spindle microtubules to kinetochore
## 1886 blood vessel remodeling
## 1887 bone morphogenesis
## 1888 calcium channel complex
## 1889 calcium-dependent protein kinase C activity
## 1890 carboxylic acid metabolic process
## 1891 cardiac septum development
## 1892 CCR4-NOT complex
## 1893 cell fate commitment
## 1894 cell junction assembly
## 1895 cell-cell contact zone
## 1896 cell-substrate adhesion
## 1897 cellular response to angiotensin
## 1898 cellular response to cholesterol
## 1899 cellular response to dexamethasone stimulus
## 1900 cellular response to ethanol
## 1901 cellular response to hydroxyurea
## 1902 cellular response to organic substance
## 1903 cellular response to peptide hormone stimulus
## 1904 cellular response to vascular endothelial growth factor stimulus
## 1905 cellular senescence
## 1906 cellular zinc ion homeostasis
## 1907 cholesterol transfer activity
## 1908 cholesterol transport
## 1909 chondroitin sulfate biosynthetic process
## 1910 chromatin silencing complex
## 1911 clathrin adaptor complex
## 1912 CMG complex
## 1913 condensed chromosome outer kinetochore
## 1914 COPI-coated vesicle
## 1915 coronary vasculature development
## 1916 cortical cytoskeleton
## 1917 cysteine-type endopeptidase activator activity involved in apoptotic process
## 1918 cytochrome-c oxidase activity
## 1919 cytokine receptor activity
## 1920 desmosome
## 1921 developmental growth
## 1922 DNA replication checkpoint
## 1923 DNA synthesis involved in DNA repair
## 1924 DNA unwinding involved in DNA replication
## 1925 dynein intermediate chain binding
## 1926 embryonic morphogenesis
## 1927 endochondral ossification
## 1928 endopeptidase inhibitor activity
## 1929 endothelial cell migration
## 1930 enzyme regulator activity
## 1931 ESC/E(Z) complex
## 1932 exit from mitosis
## 1933 exocyst
## 1934 exon-exon junction complex
## 1935 exosome (RNase complex)
## 1936 face morphogenesis
## 1937 G-quadruplex DNA binding
## 1938 glucocorticoid receptor binding
## 1939 glutathione biosynthetic process
## 1940 glycosaminoglycan biosynthetic process
## 1941 Golgi cisterna
## 1942 Golgi lumen
## 1943 Golgi to lysosome transport
## 1944 GTPase inhibitor activity
## 1945 GTPase regulator activity
## 1946 hair follicle development
## 1947 heterophilic cell-cell adhesion via plasma membrane cell adhesion molecules
## 1948 heterotypic cell-cell adhesion
## 1949 histone H3-K4 trimethylation
## 1950 histone methyltransferase activity
## 1951 histone phosphorylation
## 1952 homologous chromosome pairing at meiosis
## 1953 immunological synapse formation
## 1954 inner ear development
## 1955 integral component of peroxisomal membrane
## 1956 integral component of postsynaptic density membrane
## 1957 integral component of synaptic vesicle membrane
## 1958 intercalated disc
## 1959 intra-S DNA damage checkpoint
## 1960 intraciliary transport
## 1961 intrinsic apoptotic signaling pathway in response to endoplasmic reticulum stress
## 1962 labyrinthine layer blood vessel development
## 1963 long-chain fatty-acyl-CoA biosynthetic process
## 1964 low-density lipoprotein particle receptor binding
## 1965 lymph node development
## 1966 Lys48-specific deubiquitinase activity
## 1967 macropinosome
## 1968 maternal process involved in female pregnancy
## 1969 maturation of LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 1970 MCM complex
## 1971 melanosome transport
## 1972 mesoderm formation
## 1973 metaphase plate congression
## 1974 microvillus assembly
## 1975 microvillus membrane
## 1976 midbrain development
## 1977 mitochondrial electron transport, cytochrome c to oxygen
## 1978 mitochondrial electron transport, ubiquinol to cytochrome c
## 1979 mitochondrion morphogenesis
## 1980 mitotic cell cycle checkpoint
## 1981 mitotic cell cycle phase transition
## 1982 monocyte differentiation
## 1983 mRNA 3'-UTR AU-rich region binding
## 1984 mRNA methylation
## 1985 MyD88-independent toll-like receptor signaling pathway
## 1986 myelin sheath
## 1987 myeloid dendritic cell differentiation
## 1988 myoblast differentiation
## 1989 myosin V binding
## 1990 NAD+ binding
## 1991 negative regulation of actin filament polymerization
## 1992 negative regulation of axon extension
## 1993 negative regulation of DNA replication
## 1994 negative regulation of extrinsic apoptotic signaling pathway in absence of ligand
## 1995 negative regulation of interleukin-12 production
## 1996 negative regulation of macrophage derived foam cell differentiation
## 1997 negative regulation of MAPK cascade
## 1998 negative regulation of peptidyl-serine phosphorylation
## 1999 negative regulation of protein localization to plasma membrane
## 2000 negative regulation of proteolysis
## 2001 negative regulation of reactive oxygen species metabolic process
## 2002 negative regulation of release of cytochrome c from mitochondria
## 2003 negative regulation of Rho protein signal transduction
## 2004 negative regulation of signaling receptor activity
## 2005 negative regulation of smooth muscle cell proliferation
## 2006 negative regulation of telomere maintenance via telomerase
## 2007 negative regulation of transcription elongation from RNA polymerase II promoter
## 2008 negative regulation of translational initiation
## 2009 neuron cellular homeostasis
## 2010 nuclear inclusion body
## 2011 nuclear periphery
## 2012 nucleoside diphosphate kinase activity
## 2013 nucleoside diphosphate phosphorylation
## 2014 nucleoside metabolic process
## 2015 nucleosome disassembly
## 2016 odontogenesis of dentin-containing tooth
## 2017 oligosaccharide biosynthetic process
## 2018 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen
## 2019 peptidyl-threonine dephosphorylation
## 2020 peroxidase activity
## 2021 phagocytosis, engulfment
## 2022 phosphatidylinositol phospholipase C activity
## 2023 phosphatidylinositol-4,5-bisphosphate 5-phosphatase activity
## 2024 phospholipase A2 activity (consuming 1,2-dipalmitoylphosphatidylcholine)
## 2025 phospholipase A2 activity consuming 1,2-dioleoylphosphatidylethanolamine)
## 2026 phospholipase activity
## 2027 plasma membrane raft
## 2028 platelet alpha granule membrane
## 2029 platelet formation
## 2030 positive chemotaxis
## 2031 positive regulation by host of viral transcription
## 2032 positive regulation of apoptotic signaling pathway
## 2033 positive regulation of dendritic spine morphogenesis
## 2034 positive regulation of glycolytic process
## 2035 positive regulation of mitochondrial membrane potential
## 2036 positive regulation of neuron migration
## 2037 positive regulation of p38MAPK cascade
## 2038 positive regulation of peptidyl-threonine phosphorylation
## 2039 positive regulation of proteasomal protein catabolic process
## 2040 positive regulation of protein localization to cell surface
## 2041 positive regulation of SMAD protein signal transduction
## 2042 positive regulation of superoxide anion generation
## 2043 positive regulation of T cell receptor signaling pathway
## 2044 positive regulation of telomere maintenance
## 2045 positive regulation of ubiquitin-protein transferase activity
## 2046 positive regulation of vascular endothelial growth factor production
## 2047 positive regulation of viral entry into host cell
## 2048 positive regulation of wound healing
## 2049 pre-miRNA processing
## 2050 preassembly of GPI anchor in ER membrane
## 2051 programmed cell death
## 2052 proteasomal ubiquitin-independent protein catabolic process
## 2053 protein disulfide isomerase activity
## 2054 protein kinase A binding
## 2055 protein kinase C activity
## 2056 protein localization to cilium
## 2057 protein localization to Golgi apparatus
## 2058 protein localization to membrane
## 2059 protein localization to organelle
## 2060 protein mono-ADP-ribosylation
## 2061 protein quality control for misfolded or incompletely synthesized proteins
## 2062 protein targeting to ER
## 2063 proton transmembrane transporter activity
## 2064 R-SMAD binding
## 2065 reactive oxygen species metabolic process
## 2066 receptor clustering
## 2067 receptor ligand activity
## 2068 regulated exocytosis
## 2069 regulation of angiogenesis
## 2070 regulation of canonical Wnt signaling pathway
## 2071 regulation of chromosome segregation
## 2072 regulation of DNA methylation
## 2073 regulation of extrinsic apoptotic signaling pathway via death domain receptors
## 2074 regulation of fat cell differentiation
## 2075 regulation of intracellular estrogen receptor signaling pathway
## 2076 regulation of intracellular pH
## 2077 regulation of mRNA splicing, via spliceosome
## 2078 regulation of neuron apoptotic process
## 2079 regulation of ossification
## 2080 regulation of phosphatidylinositol 3-kinase signaling
## 2081 regulation of protein binding
## 2082 regulation of smoothened signaling pathway
## 2083 regulation of TOR signaling
## 2084 regulation of Wnt signaling pathway
## 2085 replication fork protection
## 2086 replicative senescence
## 2087 respiratory gaseous exchange by respiratory system
## 2088 response to organonitrogen compound
## 2089 response to starvation
## 2090 reticulophagy
## 2091 retinoic acid receptor binding
## 2092 retinol metabolic process
## 2093 ribonuclease activity
## 2094 ribosomal large subunit binding
## 2095 RNA methyltransferase activity
## 2096 RNA polymerase I complex
## 2097 RNA polymerase II CTD heptapeptide repeat kinase activity
## 2098 RNA splicing, via transesterification reactions
## 2099 ruffle organization
## 2100 sensory perception of pain
## 2101 signal transduction involved in G2 DNA damage checkpoint
## 2102 skeletal system morphogenesis
## 2103 SMN-Sm protein complex
## 2104 smooth endoplasmic reticulum
## 2105 social behavior
## 2106 spliceosomal tri-snRNP complex assembly
## 2107 sterol binding
## 2108 sterol transport
## 2109 striated muscle cell differentiation
## 2110 structural constituent of muscle
## 2111 surfactant homeostasis
## 2112 synaptonemal complex
## 2113 T cell mediated immunity
## 2114 T-tubule
## 2115 toll-like receptor 9 signaling pathway
## 2116 transcription export complex
## 2117 transcription factor TFIIH holo complex
## 2118 transferase activity, transferring acyl groups other than amino-acyl groups
## 2119 transferase activity, transferring hexosyl groups
## 2120 translation factor activity, RNA binding
## 2121 transporter activity
## 2122 ubiquitin ligase inhibitor activity
## 2123 ubiquitin-specific protease binding
## 2124 ubiquitinyl hydrolase activity
## 2125 vacuolar acidification
## 2126 vacuolar membrane
## 2127 vacuole
## 2128 ventricular septum morphogenesis
## 2129 very long-chain fatty acid biosynthetic process
## 2130 virion assembly
## 2131 vitamin D receptor binding
## 2132 1-phosphatidylinositol-3-kinase regulator activity
## 2133 3',5'-cyclic-nucleotide phosphodiesterase activity
## 2134 actin filament severing
## 2135 action potential
## 2136 activation of NF-kappaB-inducing kinase activity
## 2137 adenyl-nucleotide exchange factor activity
## 2138 alpha-mannosidase activity
## 2139 alternative mRNA splicing, via spliceosome
## 2140 amyloid-beta clearance
## 2141 anion transport
## 2142 aortic valve morphogenesis
## 2143 apolipoprotein binding
## 2144 apoptotic mitochondrial changes
## 2145 armadillo repeat domain binding
## 2146 aspartic-type endopeptidase activity
## 2147 ATP synthesis coupled proton transport
## 2148 ATPase activator activity
## 2149 autophagy of mitochondrion
## 2150 blood vessel morphogenesis
## 2151 bone remodeling
## 2152 branching morphogenesis of an epithelial tube
## 2153 cadherin binding involved in cell-cell adhesion
## 2154 calcium ion import
## 2155 calcium-ion regulated exocytosis
## 2156 cAMP-mediated signaling
## 2157 cardiac muscle cell differentiation
## 2158 CD40 receptor complex
## 2159 cell development
## 2160 cell migration involved in sprouting angiogenesis
## 2161 cell projection assembly
## 2162 cell-cell junction organization
## 2163 cellular glucose homeostasis
## 2164 cellular response to ATP
## 2165 cellular response to chemokine
## 2166 cellular response to exogenous dsRNA
## 2167 cellular response to fibroblast growth factor stimulus
## 2168 cellular response to hepatocyte growth factor stimulus
## 2169 cellular response to unfolded protein
## 2170 centriolar subdistal appendage
## 2171 centriole-centriole cohesion
## 2172 chaperone complex
## 2173 chloride channel complex
## 2174 chondrocyte development
## 2175 chromatin-mediated maintenance of transcription
## 2176 chromocenter
## 2177 cochlea development
## 2178 condensin complex
## 2179 core promoter sequence-specific DNA binding
## 2180 cornification
## 2181 cyclin/CDK positive transcription elongation factor complex
## 2182 cytoplasmic pattern recognition receptor signaling pathway
## 2183 cytoskeleton-dependent intracellular transport
## 2184 decidualization
## 2185 definitive hemopoiesis
## 2186 detection of calcium ion
## 2187 diacylglycerol binding
## 2188 dynein light intermediate chain binding
## 2189 embryo implantation
## 2190 embryonic cranial skeleton morphogenesis
## 2191 embryonic pattern specification
## 2192 endoderm development
## 2193 endolysosome membrane
## 2194 endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 2195 enoyl-CoA hydratase activity
## 2196 ephrin receptor binding
## 2197 ESCRT III complex
## 2198 establishment of protein localization to membrane
## 2199 eukaryotic translation initiation factor 3 complex, eIF3m
## 2200 eukaryotic translation initiation factor 4F complex
## 2201 extracellular matrix binding
## 2202 extrinsic apoptotic signaling pathway in absence of ligand
## 2203 fatty acid beta-oxidation using acyl-CoA oxidase
## 2204 fatty acid catabolic process
## 2205 fatty acid homeostasis
## 2206 focal adhesion assembly
## 2207 G-protein alpha-subunit binding
## 2208 gamma-tubulin complex
## 2209 gastrulation with mouth forming second
## 2210 Gemini of coiled bodies
## 2211 glutathione derivative biosynthetic process
## 2212 glycogen biosynthetic process
## 2213 glycogen catabolic process
## 2214 glycosaminoglycan binding
## 2215 Golgi cis cisterna
## 2216 Golgi ribbon formation
## 2217 GTPase activating protein binding
## 2218 hematopoietic stem cell differentiation
## 2219 heterotrimeric G-protein complex
## 2220 histone H2A acetylation
## 2221 histone H3-K9 demethylation
## 2222 histone methyltransferase activity (H3-K4 specific)
## 2223 histone mRNA metabolic process
## 2224 hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides
## 2225 hydrolase activity, acting on ester bonds
## 2226 inactivation of MAPK activity
## 2227 inner mitochondrial membrane organization
## 2228 integral component of postsynaptic membrane
## 2229 interleukin-35-mediated signaling pathway
## 2230 interleukin-7-mediated signaling pathway
## 2231 intermediate filament cytoskeleton organization
## 2232 intrinsic apoptotic signaling pathway in response to oxidative stress
## 2233 isotype switching
## 2234 keratan sulfate biosynthetic process
## 2235 keratin filament
## 2236 killing of cells of other organism
## 2237 late endosome to vacuole transport via multivesicular body sorting pathway
## 2238 lateral element
## 2239 leukocyte cell-cell adhesion
## 2240 lipid droplet organization
## 2241 long-term synaptic potentiation
## 2242 lung morphogenesis
## 2243 maintenance of protein location in nucleus
## 2244 mannosyltransferase activity
## 2245 MDM2/MDM4 family protein binding
## 2246 meiotic spindle
## 2247 methylosome
## 2248 MHC class II receptor activity
## 2249 microglial cell activation
## 2250 microtubule anchoring
## 2251 microtubule organizing center organization
## 2252 miRNA mediated inhibition of translation
## 2253 mitochondrial calcium ion homeostasis
## 2254 mitochondrial fission
## 2255 mitochondrial respiratory chain complex III
## 2256 monooxygenase activity
## 2257 multivesicular body membrane
## 2258 multivesicular body sorting pathway
## 2259 myofibril
## 2260 NAD+ kinase activity
## 2261 natural killer cell activation
## 2262 necroptotic process
## 2263 negative regulation of activated T cell proliferation
## 2264 negative regulation of androgen receptor signaling pathway
## 2265 negative regulation of autophagosome assembly
## 2266 negative regulation of B cell proliferation
## 2267 negative regulation of cardiac muscle cell apoptotic process
## 2268 negative regulation of cell motility
## 2269 negative regulation of cell-cell adhesion
## 2270 negative regulation of cellular senescence
## 2271 negative regulation of cholesterol storage
## 2272 negative regulation of cilium assembly
## 2273 negative regulation of glycolytic process
## 2274 negative regulation of hippo signaling
## 2275 negative regulation of insulin secretion
## 2276 negative regulation of interleukin-1 beta production
## 2277 negative regulation of neurogenesis
## 2278 negative regulation of osteoclast differentiation
## 2279 negative regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## 2280 negative regulation of phagocytosis
## 2281 negative regulation of phosphorylation
## 2282 negative regulation of reactive oxygen species biosynthetic process
## 2283 negative regulation of T cell activation
## 2284 negative regulation of ubiquitin-dependent protein catabolic process
## 2285 neuroblast proliferation
## 2286 neuronal action potential
## 2287 neuronal stem cell population maintenance
## 2288 NLS-bearing protein import into nucleus
## 2289 non-motile cilium
## 2290 nuclear exosome (RNase complex)
## 2291 nuclear migration
## 2292 nuclear origin of replication recognition complex
## 2293 nuclear pore complex assembly
## 2294 NuRD complex
## 2295 obsolete small monomeric GTPase activity
## 2296 odontogenesis
## 2297 palmitoyl-(protein) hydrolase activity
## 2298 pattern recognition receptor activity
## 2299 peptide alpha-N-acetyltransferase activity
## 2300 peptidyl-serine dephosphorylation
## 2301 phagosome acidification
## 2302 phosphate-containing compound metabolic process
## 2303 phosphatidylinositol 3-kinase binding
## 2304 phosphatidylinositol-3,5-bisphosphate binding
## 2305 phospholipase binding
## 2306 photoreceptor inner segment
## 2307 poly(A) binding
## 2308 poly(A)+ mRNA export from nucleus
## 2309 positive regulation of amyloid-beta formation
## 2310 positive regulation of Arp2/3 complex-mediated actin nucleation
## 2311 positive regulation of B cell activation
## 2312 positive regulation of cell migration involved in sprouting angiogenesis
## 2313 positive regulation of chondrocyte differentiation
## 2314 positive regulation of cilium assembly
## 2315 positive regulation of double-strand break repair
## 2316 positive regulation of epithelial to mesenchymal transition
## 2317 positive regulation of exosomal secretion
## 2318 positive regulation of histone H3-K4 methylation
## 2319 positive regulation of immunoglobulin production
## 2320 positive regulation of megakaryocyte differentiation
## 2321 positive regulation of mitochondrial fission
## 2322 positive regulation of mitotic nuclear division
## 2323 positive regulation of monocyte differentiation
## 2324 positive regulation of multicellular organism growth
## 2325 positive regulation of nitric-oxide synthase biosynthetic process
## 2326 positive regulation of nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## 2327 positive regulation of nuclear-transcribed mRNA poly(A) tail shortening
## 2328 positive regulation of osteoclast differentiation
## 2329 positive regulation of peptidase activity
## 2330 positive regulation of phosphoprotein phosphatase activity
## 2331 positive regulation of protein acetylation
## 2332 positive regulation of regulatory T cell differentiation
## 2333 positive regulation of RIG-I signaling pathway
## 2334 positive regulation of RNA splicing
## 2335 positive regulation of ruffle assembly
## 2336 positive regulation of signal transduction by p53 class mediator
## 2337 positive regulation of T cell migration
## 2338 positive regulation of tumor necrosis factor-mediated signaling pathway
## 2339 positive thymic T cell selection
## 2340 postsynaptic cytosol
## 2341 postsynaptic density membrane
## 2342 pre-mRNA cleavage required for polyadenylation
## 2343 proteasome core complex
## 2344 protein auto-ADP-ribosylation
## 2345 protein complex oligomerization
## 2346 protein deacetylase activity
## 2347 protein deglycosylation
## 2348 protein depalmitoylation
## 2349 protein import into peroxisome matrix
## 2350 protein kinase activator activity
## 2351 protein localization to kinetochore
## 2352 protein localization to phagophore assembly site
## 2353 protein tag
## 2354 protein tetramerization
## 2355 proteoglycan biosynthetic process
## 2356 proton-transporting ATPase activity, rotational mechanism
## 2357 pseudopodium
## 2358 rDNA heterochromatin assembly
## 2359 receptor catabolic process
## 2360 regulation of ARF protein signal transduction
## 2361 regulation of cardiac conduction
## 2362 regulation of cellular senescence
## 2363 regulation of centriole replication
## 2364 regulation of complement activation
## 2365 regulation of ERK1 and ERK2 cascade
## 2366 regulation of fibroblast migration
## 2367 regulation of G1/S transition of mitotic cell cycle
## 2368 regulation of immunoglobulin production
## 2369 regulation of microtubule polymerization or depolymerization
## 2370 regulation of mitotic spindle organization
## 2371 regulation of neuron death
## 2372 regulation of osteoblast differentiation
## 2373 regulation of phosphorylation
## 2374 regulation of protein complex stability
## 2375 regulation of protein secretion
## 2376 regulation of protein ubiquitination
## 2377 regulation of reactive oxygen species metabolic process
## 2378 regulation of Rho protein signal transduction
## 2379 regulation of sodium ion transport
## 2380 regulation of stress fiber assembly
## 2381 regulation of T cell activation
## 2382 regulation of telomere maintenance
## 2383 regulation of type I interferon production
## 2384 response to amphetamine
## 2385 response to lipid
## 2386 response to steroid hormone
## 2387 response to testosterone
## 2388 retina homeostasis
## 2389 retrograde protein transport, ER to cytosol
## 2390 RNA N6-methyladenosine methyltransferase complex
## 2391 RNA polymerase I preinitiation complex assembly
## 2392 RNA secondary structure unwinding
## 2393 skin development
## 2394 small ribosomal subunit rRNA binding
## 2395 snRNA 3'-end processing
## 2396 specific granule
## 2397 sperm flagellum
## 2398 spleen development
## 2399 sprouting angiogenesis
## 2400 steroid hormone mediated signaling pathway
## 2401 steroid hormone receptor activity
## 2402 sulfotransferase activity
## 2403 Swr1 complex
## 2404 synaptic transmission, glutamatergic
## 2405 synaptic vesicle transport
## 2406 T cell receptor complex
## 2407 t-circle formation
## 2408 TORC1 complex
## 2409 TORC2 complex
## 2410 transcription factor TFIIH core complex
## 2411 transcriptionally active chromatin
## 2412 triglyceride metabolic process
## 2413 tRNA aminoacylation
## 2414 tRNA splicing, via endonucleolytic cleavage and ligation
## 2415 U4 snRNP
## 2416 U6 snRNP
## 2417 ubiquinone biosynthetic process
## 2418 UV-damage excision repair
## 2419 vasodilation
## 2420 ventricular system development
## 2421 very long-chain fatty acid metabolic process
## 2422 voltage-gated calcium channel activity
## 2423 Wnt-protein binding
## 2424 zinc ion transmembrane transport
## 2425 17-beta-hydroxysteroid dehydrogenase (NAD+) activity
## 2426 5'-3' DNA helicase activity
## 2427 5'-3' exonuclease activity
## 2428 acrosome assembly
## 2429 actin filament capping
## 2430 actin filament depolymerization
## 2431 actin filament-based movement
## 2432 actin-dependent ATPase activity
## 2433 activation of adenylate cyclase activity
## 2434 adherens junction assembly
## 2435 adult walking behavior
## 2436 amino acid transmembrane transporter activity
## 2437 aminoacyl-tRNA synthetase multienzyme complex
## 2438 AMP binding
## 2439 amyloid precursor protein catabolic process
## 2440 anchored component of plasma membrane
## 2441 antigen processing and presentation of endogenous peptide antigen via MHC class I
## 2442 antioxidant activity
## 2443 AP-1 adaptor complex
## 2444 AP-2 adaptor complex
## 2445 apical junction complex
## 2446 Arp2/3 complex-mediated actin nucleation
## 2447 artery morphogenesis
## 2448 aryl hydrocarbon receptor binding
## 2449 astral microtubule organization
## 2450 ATP-dependent microtubule motor activity, plus-end-directed
## 2451 ATP-dependent peptidase activity
## 2452 attachment of spindle microtubules to kinetochore
## 2453 auditory receptor cell stereocilium organization
## 2454 autolysosome
## 2455 brain morphogenesis
## 2456 brown fat cell differentiation
## 2457 calcium channel regulator activity
## 2458 calcium import into the mitochondrion
## 2459 calcium-dependent cysteine-type endopeptidase activity
## 2460 calyx of Held
## 2461 carboxypeptidase activity
## 2462 cation transmembrane transporter activity
## 2463 CD40 signaling pathway
## 2464 cell activation
## 2465 cell adhesion mediated by integrin
## 2466 cell cortex region
## 2467 cell division site
## 2468 cell volume homeostasis
## 2469 cellular amino acid metabolic process
## 2470 cellular response to amyloid-beta
## 2471 cellular response to estrogen stimulus
## 2472 cellular response to interferon-alpha
## 2473 cellular response to interleukin-7
## 2474 cellular response to laminar fluid shear stress
## 2475 cellular response to platelet-derived growth factor stimulus
## 2476 cellular response to prostaglandin E stimulus
## 2477 cellular response to zinc ion
## 2478 ceramide metabolic process
## 2479 chemorepellent activity
## 2480 chromatoid body
## 2481 ciliary base
## 2482 cilium organization
## 2483 clathrin coat of coated pit
## 2484 clathrin heavy chain binding
## 2485 clathrin vesicle coat
## 2486 collagen catabolic process
## 2487 complement activation
## 2488 cotranslational protein targeting to membrane
## 2489 cullin-RING ubiquitin ligase complex
## 2490 cysteine-type endopeptidase activity involved in apoptotic process
## 2491 cysteine-type endopeptidase inhibitor activity
## 2492 cytoskeletal anchor activity
## 2493 deacetylase activity
## 2494 delayed rectifier potassium channel activity
## 2495 dendritic spine development
## 2496 depurination
## 2497 digestive tract development
## 2498 DNA clamp loader activity
## 2499 DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## 2500 DNA dealkylation involved in DNA repair
## 2501 DNA methylation involved in gamete generation
## 2502 DNA replication-independent nucleosome assembly
## 2503 DNA topological change
## 2504 DNA-binding transcription activator activity
## 2505 dynein complex
## 2506 early endosome to Golgi transport
## 2507 embryonic camera-type eye morphogenesis
## 2508 embryonic hemopoiesis
## 2509 embryonic skeletal system development
## 2510 endodermal cell differentiation
## 2511 endosome transport via multivesicular body sorting pathway
## 2512 endothelial cell proliferation
## 2513 erythrocyte development
## 2514 erythrocyte maturation
## 2515 ESCRT III complex disassembly
## 2516 establishment of centrosome localization
## 2517 establishment of skin barrier
## 2518 establishment or maintenance of epithelial cell apical/basal polarity
## 2519 estradiol 17-beta-dehydrogenase activity
## 2520 fatty acid elongation
## 2521 fatty acid oxidation
## 2522 fatty-acyl-CoA biosynthetic process
## 2523 female gonad development
## 2524 fibronectin binding
## 2525 filopodium membrane
## 2526 FMN binding
## 2527 frizzled binding
## 2528 fructose 1,6-bisphosphate metabolic process
## 2529 fructose 6-phosphate metabolic process
## 2530 galactose metabolic process
## 2531 gene silencing by miRNA
## 2532 glucose transmembrane transport
## 2533 glutamate metabolic process
## 2534 glutamine family amino acid metabolic process
## 2535 glutathione peroxidase activity
## 2536 glycoprotein metabolic process
## 2537 glycosaminoglycan catabolic process
## 2538 glycosaminoglycan metabolic process
## 2539 glycosylation
## 2540 Golgi to vacuole transport
## 2541 Golgi trans cisterna
## 2542 head development
## 2543 heparan sulfate proteoglycan biosynthetic process
## 2544 histone demethylase activity (H3-K36 specific)
## 2545 histone demethylase activity (H3-K9 specific)
## 2546 histone deubiquitination
## 2547 histone H2A monoubiquitination
## 2548 histone H3-K36 demethylation
## 2549 histone H4 deacetylation
## 2550 histone H4-K5 acetylation
## 2551 histone H4-K8 acetylation
## 2552 histone methyltransferase activity (H3-K36 specific)
## 2553 histone methyltransferase binding
## 2554 histone modification
## 2555 histone monoubiquitination
## 2556 homologous chromosome segregation
## 2557 HOPS complex
## 2558 hydrogen peroxide catabolic process
## 2559 I band
## 2560 inflammatory response to antigenic stimulus
## 2561 insulin secretion
## 2562 insulin-like growth factor receptor signaling pathway
## 2563 integral component of mitochondrial membrane
## 2564 integral component of presynaptic membrane
## 2565 integrin complex
## 2566 internal peptidyl-lysine acetylation
## 2567 intracellular organelle
## 2568 ionotropic glutamate receptor binding
## 2569 IRES-dependent viral translational initiation
## 2570 iron ion transport
## 2571 isopeptidase activity
## 2572 isoprenoid biosynthetic process
## 2573 JUN kinase binding
## 2574 lamin binding
## 2575 lens development in camera-type eye
## 2576 lens fiber cell differentiation
## 2577 leucine zipper domain binding
## 2578 leukocyte tethering or rolling
## 2579 lipid phosphorylation
## 2580 lipid translocation
## 2581 lipoprotein transport
## 2582 long-chain fatty acid biosynthetic process
## 2583 long-chain fatty acid metabolic process
## 2584 long-chain fatty acid transporter activity
## 2585 low-density lipoprotein particle receptor activity
## 2586 low-density lipoprotein particle receptor catabolic process
## 2587 Lsm2-8 complex
## 2588 Lys63-specific deubiquitinase activity
## 2589 maintenance of DNA methylation
## 2590 male meiosis I
## 2591 male meiotic nuclear division
## 2592 mannose metabolic process
## 2593 mannosyl-oligosaccharide 1,2-alpha-mannosidase activity
## 2594 mannosylation
## 2595 MAP kinase activity
## 2596 maturation of 5.8S rRNA
## 2597 meiosis I
## 2598 membrane insertase activity
## 2599 membrane protein intracellular domain proteolysis
## 2600 membrane protein proteolysis
## 2601 messenger ribonucleoprotein complex
## 2602 metal ion transmembrane transporter activity
## 2603 metalloexopeptidase activity
## 2604 microfilament motor activity
## 2605 microtubule minus-end binding
## 2606 microtubule polymerization
## 2607 miRNA loading onto RISC involved in gene silencing by miRNA
## 2608 miRNA metabolic process
## 2609 mitochondrial outer membrane translocase complex
## 2610 mitogen-activated protein kinase kinase binding
## 2611 mitotic DNA replication checkpoint
## 2612 mitotic spindle microtubule
## 2613 mitotic spindle midzone
## 2614 MLL3/4 complex
## 2615 monoubiquitinated protein deubiquitination
## 2616 MOZ/MORF histone acetyltransferase complex
## 2617 mRNA cis splicing, via spliceosome
## 2618 muscle filament sliding
## 2619 MutLalpha complex binding
## 2620 MutSalpha complex binding
## 2621 myosin binding
## 2622 N-acetylglucosamine metabolic process
## 2623 N-terminal protein amino acid acetylation
## 2624 NADH dehydrogenase activity
## 2625 NADPH binding
## 2626 nBAF complex
## 2627 negative regulation by host of viral transcription
## 2628 negative regulation of axon extension involved in axon guidance
## 2629 negative regulation of DNA damage response, signal transduction by p53 class mediator
## 2630 negative regulation of DNA recombination
## 2631 negative regulation of endocytosis
## 2632 negative regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## 2633 negative regulation of endothelial cell migration
## 2634 negative regulation of epidermal growth factor-activated receptor activity
## 2635 negative regulation of epithelial cell migration
## 2636 negative regulation of focal adhesion assembly
## 2637 negative regulation of gluconeogenesis
## 2638 negative regulation of insulin secretion involved in cellular response to glucose stimulus
## 2639 negative regulation of interleukin-10 production
## 2640 negative regulation of interleukin-17 production
## 2641 negative regulation of interleukin-8 production
## 2642 negative regulation of intracellular estrogen receptor signaling pathway
## 2643 negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## 2644 negative regulation of myeloid cell differentiation
## 2645 negative regulation of oxidative stress-induced neuron death
## 2646 negative regulation of pri-miRNA transcription by RNA polymerase II
## 2647 negative regulation of protein localization to cell surface
## 2648 negative regulation of protein tyrosine kinase activity
## 2649 negative regulation of receptor internalization
## 2650 negative regulation of telomerase activity
## 2651 negative regulation of telomere maintenance via telomere lengthening
## 2652 negative regulation of vascular associated smooth muscle cell proliferation
## 2653 negative regulation of viral release from host cell
## 2654 neural crest cell development
## 2655 neurotrophin TRK receptor signaling pathway
## 2656 nitric-oxide synthase binding
## 2657 Notch binding
## 2658 npBAF complex
## 2659 nuclear export
## 2660 nuclear pore outer ring
## 2661 nucleoside triphosphate biosynthetic process
## 2662 O-acyltransferase activity
## 2663 oligodendrocyte development
## 2664 oligosaccharide metabolic process
## 2665 oligosaccharyltransferase complex
## 2666 organelle membrane
## 2667 organelle organization
## 2668 peptide catabolic process
## 2669 peptide transport
## 2670 peptide-lysine-N-acetyltransferase activity
## 2671 peptidyl-lysine acetylation
## 2672 perinuclear endoplasmic reticulum
## 2673 peripheral nervous system myelin maintenance
## 2674 phagophore assembly site membrane
## 2675 phosphatase regulator activity
## 2676 phosphate ion binding
## 2677 phosphate ion transmembrane transport
## 2678 phosphatidyl phospholipase B activity
## 2679 phosphatidylethanolamine acyl-chain remodeling
## 2680 phosphatidylethanolamine biosynthetic process
## 2681 phosphatidylinositol-3-phosphate biosynthetic process
## 2682 phospholipase C-activating G protein-coupled receptor signaling pathway
## 2683 phosphotransferase activity, alcohol group as acceptor
## 2684 plasma membrane tubulation
## 2685 platelet dense granule organization
## 2686 positive regulation of actin cytoskeleton reorganization
## 2687 positive regulation of adaptive immune response
## 2688 positive regulation of blood coagulation
## 2689 positive regulation of bone resorption
## 2690 positive regulation of calcineurin-NFAT signaling cascade
## 2691 positive regulation of calcium-mediated signaling
## 2692 positive regulation of cardiac muscle hypertrophy
## 2693 positive regulation of cell cycle G1/S phase transition
## 2694 positive regulation of cell division
## 2695 positive regulation of cellular senescence
## 2696 positive regulation of ceramide biosynthetic process
## 2697 positive regulation of circadian rhythm
## 2698 positive regulation of CREB transcription factor activity
## 2699 positive regulation of cytokine production involved in immune response
## 2700 positive regulation of DNA-directed DNA polymerase activity
## 2701 positive regulation of endothelial cell apoptotic process
## 2702 positive regulation of gene silencing by miRNA
## 2703 positive regulation of histone deacetylation
## 2704 positive regulation of histone phosphorylation
## 2705 positive regulation of insulin receptor signaling pathway
## 2706 positive regulation of interleukin-13 production
## 2707 positive regulation of isotype switching
## 2708 positive regulation of keratinocyte differentiation
## 2709 positive regulation of leukocyte adhesion to vascular endothelial cell
## 2710 positive regulation of lipid biosynthetic process
## 2711 positive regulation of membrane protein ectodomain proteolysis
## 2712 positive regulation of mitochondrial calcium ion concentration
## 2713 positive regulation of mitochondrial translation
## 2714 positive regulation of mitotic metaphase/anaphase transition
## 2715 positive regulation of mRNA catabolic process
## 2716 positive regulation of muscle cell differentiation
## 2717 positive regulation of neutrophil chemotaxis
## 2718 positive regulation of protein localization to early endosome
## 2719 positive regulation of reactive oxygen species metabolic process
## 2720 positive regulation of receptor recycling
## 2721 positive regulation of receptor signaling pathway via JAK-STAT
## 2722 positive regulation of receptor-mediated endocytosis
## 2723 positive regulation of Rho protein signal transduction
## 2724 positive regulation of RNA polymerase II transcription preinitiation complex assembly
## 2725 positive regulation of T cell cytokine production
## 2726 positive regulation of T cell differentiation
## 2727 positive regulation of T cell mediated cytotoxicity
## 2728 positive regulation of toll-like receptor 4 signaling pathway
## 2729 positive regulation of transcription by RNA polymerase III
## 2730 positive regulation of transcription elongation from RNA polymerase II promoter
## 2731 positive regulation of type I interferon-mediated signaling pathway
## 2732 positive regulation of ubiquitin-dependent protein catabolic process
## 2733 positive regulation of vascular associated smooth muscle cell migration
## 2734 positive regulation of vascular endothelial cell proliferation
## 2735 positive regulation of vascular endothelial growth factor receptor signaling pathway
## 2736 positive regulation of vasoconstriction
## 2737 positive regulation of Wnt signaling pathway
## 2738 post-mRNA release spliceosomal complex
## 2739 postreplication repair
## 2740 PRC1 complex
## 2741 prostaglandin biosynthetic process
## 2742 prostaglandin metabolic process
## 2743 proteasomal protein catabolic process
## 2744 proteasome regulatory particle
## 2745 proteasome regulatory particle, base subcomplex
## 2746 proteasome regulatory particle, lid subcomplex
## 2747 protein disulfide oxidoreductase activity
## 2748 protein heterotetramerization
## 2749 protein K6-linked ubiquitination
## 2750 protein localization to chromosome, centromeric region
## 2751 protein methyltransferase activity
## 2752 protein phosphatase activator activity
## 2753 protein phosphatase type 1 complex
## 2754 protein poly-ADP-ribosylation
## 2755 protein refolding
## 2756 protein targeting to peroxisome
## 2757 protein tyrosine kinase activator activity
## 2758 protein-lysine N-methyltransferase activity
## 2759 purine nucleotide binding
## 2760 pyrimidine nucleoside salvage
## 2761 regulation of attachment of spindle microtubules to kinetochore
## 2762 regulation of autophagosome assembly
## 2763 regulation of autophagy of mitochondrion
## 2764 regulation of cholesterol metabolic process
## 2765 regulation of cilium assembly
## 2766 regulation of cysteine-type endopeptidase activity involved in apoptotic process
## 2767 regulation of cytosolic calcium ion concentration
## 2768 regulation of dendrite development
## 2769 regulation of dendrite morphogenesis
## 2770 regulation of DNA-templated transcription, elongation
## 2771 regulation of gene expression by genetic imprinting
## 2772 regulation of Golgi organization
## 2773 regulation of heart contraction
## 2774 regulation of heart rate
## 2775 regulation of histone acetylation
## 2776 regulation of insulin secretion involved in cellular response to glucose stimulus
## 2777 regulation of JNK cascade
## 2778 regulation of lamellipodium assembly
## 2779 regulation of mast cell degranulation
## 2780 regulation of mitotic metaphase/anaphase transition
## 2781 regulation of mRNA processing
## 2782 regulation of neuron projection development
## 2783 regulation of nitric-oxide synthase activity
## 2784 regulation of osteoclast differentiation
## 2785 regulation of peptidyl-tyrosine phosphorylation
## 2786 regulation of proteasomal protein catabolic process
## 2787 regulation of rhodopsin mediated signaling pathway
## 2788 regulation of synapse organization
## 2789 regulation of T cell differentiation
## 2790 renal water homeostasis
## 2791 respiratory system process
## 2792 response to copper ion
## 2793 response to fatty acid
## 2794 response to food
## 2795 response to hydroperoxide
## 2796 response to interferon-gamma
## 2797 response to muscle activity
## 2798 response to osmotic stress
## 2799 response to reactive oxygen species
## 2800 retinoic acid receptor signaling pathway
## 2801 retinoid metabolic process
## 2802 RISC-loading complex
## 2803 RNA 3'-end processing
## 2804 RNA 7-methylguanosine cap binding
## 2805 RNA polymerase I core promoter sequence-specific DNA binding
## 2806 RNA polymerase II CTD heptapeptide repeat phosphatase activity
## 2807 rRNA methylation
## 2808 rRNA transcription
## 2809 S-adenosyl-L-methionine binding
## 2810 sarcomere organization
## 2811 SCAR complex
## 2812 selenocysteine incorporation
## 2813 semaphorin receptor binding
## 2814 septin complex
## 2815 septin ring
## 2816 Sin3 complex
## 2817 single-stranded DNA endodeoxyribonuclease activity
## 2818 SNARE complex assembly
## 2819 snRNA binding
## 2820 sodium channel regulator activity
## 2821 sphingosine-1-phosphate receptor signaling pathway
## 2822 sterol metabolic process
## 2823 sulfate transport
## 2824 SUMO transferase activity
## 2825 superoxide metabolic process
## 2826 synaptic vesicle exocytosis
## 2827 synaptonemal complex assembly
## 2828 T cell receptor binding
## 2829 telomere maintenance via recombination
## 2830 tetrahydrofolate interconversion
## 2831 thyroid gland development
## 2832 tissue homeostasis
## 2833 tissue regeneration
## 2834 toll-like receptor 3 signaling pathway
## 2835 transcription factor TFTC complex
## 2836 transcription initiation from RNA polymerase III promoter
## 2837 transcription preinitiation complex
## 2838 translation repressor activity
## 2839 transmembrane receptor protein serine/threonine kinase signaling pathway
## 2840 tRNA 5'-leader removal
## 2841 tRNA wobble uridine modification
## 2842 U2-type spliceosomal complex
## 2843 ubiquitin ligase-substrate adaptor activity
## 2844 ubiquitin-dependent protein binding
## 2845 ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## 2846 ureteric bud development
## 2847 vacuolar proton-transporting V-type ATPase complex
## 2848 vascular endothelial growth factor signaling pathway
## 2849 vesicle transport along actin filament
## 2850 zinc ion transmembrane transporter activity
## 2851 1-acylglycerol-3-phosphate O-acyltransferase activity
## 2852 1-phosphatidylinositol-3-kinase activity
## 2853 17-beta-hydroxysteroid dehydrogenase (NADP+) activity
## 2854 2-oxoglutarate metabolic process
## 2855 3-hydroxyacyl-CoA dehydrogenase activity
## 2856 3'-UTR-mediated mRNA stabilization
## 2857 3',5'-cyclic-GMP phosphodiesterase activity
## 2858 5'-flap endonuclease activity
## 2859 5'-nucleotidase activity
## 2860 A band
## 2861 acrosomal membrane
## 2862 activation of cysteine-type endopeptidase activity
## 2863 activation of JNKK activity
## 2864 activation of MAPKKK activity
## 2865 activin binding
## 2866 acute-phase response
## 2867 acyl-CoA dehydrogenase activity
## 2868 adenylate kinase activity
## 2869 adiponectin-activated signaling pathway
## 2870 amyloid-beta clearance by transcytosis
## 2871 anaphase-promoting complex binding
## 2872 angiogenesis involved in wound healing
## 2873 anion transmembrane transporter activity
## 2874 anion:anion antiporter activity
## 2875 anterograde axonal protein transport
## 2876 antiviral innate immune response
## 2877 aorta morphogenesis
## 2878 AP-3 adaptor complex
## 2879 apical protein localization
## 2880 apoptotic DNA fragmentation
## 2881 Arp2/3 complex binding
## 2882 arrestin family protein binding
## 2883 asymmetric synapse
## 2884 Atg1/ULK1 kinase complex
## 2885 Bergmann glial cell differentiation
## 2886 beta-catenin destruction complex
## 2887 biomineral tissue development
## 2888 bone resorption
## 2889 BORC complex
## 2890 branching involved in ureteric bud morphogenesis
## 2891 BRCA1-A complex
## 2892 C21-steroid hormone biosynthetic process
## 2893 calcium channel inhibitor activity
## 2894 calcium-activated potassium channel activity
## 2895 cAMP response element binding protein binding
## 2896 cardiac septum morphogenesis
## 2897 cardiolipin binding
## 2898 cardiolipin biosynthetic process
## 2899 cargo adaptor activity
## 2900 catalytic complex
## 2901 CD4 receptor binding
## 2902 CDP-diacylglycerol biosynthetic process
## 2903 cell fate determination
## 2904 cell recognition
## 2905 cellular process
## 2906 cellular respiration
## 2907 cellular response to arsenic-containing substance
## 2908 cellular response to extracellular stimulus
## 2909 cellular response to fluid shear stress
## 2910 cellular response to granulocyte macrophage colony-stimulating factor stimulus
## 2911 cellular response to increased oxygen levels
## 2912 cellular response to leucine
## 2913 cellular response to muramyl dipeptide
## 2914 cellular response to nitric oxide
## 2915 cellular response to osmotic stress
## 2916 cellular response to oxidised low-density lipoprotein particle stimulus
## 2917 cellular response to X-ray
## 2918 chemoattractant activity
## 2919 chemokine-mediated signaling pathway
## 2920 cholesterol efflux
## 2921 chondroitin sulfate proteoglycan biosynthetic process
## 2922 chordate embryonic development
## 2923 chromatin assembly or disassembly
## 2924 chromatin silencing at telomere
## 2925 chromosome organization involved in meiotic cell cycle
## 2926 chromosome passenger complex
## 2927 clathrin coat of trans-Golgi network vesicle
## 2928 cohesin complex
## 2929 cortical cytoskeleton organization
## 2930 Cul2-RING ubiquitin ligase complex
## 2931 cyclin-dependent protein serine/threonine kinase inhibitor activity
## 2932 cysteine-type endopeptidase activity involved in execution phase of apoptosis
## 2933 cysteine-type endopeptidase inhibitor activity involved in apoptotic process
## 2934 cytoplasmic dynein complex
## 2935 cytoplasmic exosome (RNase complex)
## 2936 cytoplasmic sequestering of transcription factor
## 2937 cytosolic proteasome complex
## 2938 death receptor binding
## 2939 dendritic cell differentiation
## 2940 dendritic spine head
## 2941 diacylglycerol metabolic process
## 2942 DNA binding, bending
## 2943 DNA damage response, signal transduction by p53 class mediator
## 2944 DNA demethylation
## 2945 DNA-(apurinic or apyrimidinic site) endonuclease activity
## 2946 DNA-binding transcription factor binding
## 2947 DNA-templated transcription, termination
## 2948 dolichol-linked oligosaccharide biosynthetic process
## 2949 dopamine receptor signaling pathway
## 2950 dorsal/ventral pattern formation
## 2951 dosage compensation by inactivation of X chromosome
## 2952 double-stranded telomeric DNA binding
## 2953 drug binding
## 2954 dystrophin-associated glycoprotein complex
## 2955 embryonic brain development
## 2956 embryonic camera-type eye development
## 2957 embryonic viscerocranium morphogenesis
## 2958 endocardial cushion morphogenesis
## 2959 endodeoxyribonuclease activity
## 2960 endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 2961 endoplasmic reticulum calcium ion homeostasis
## 2962 endoplasmic reticulum tubular network
## 2963 endosomal vesicle fusion
## 2964 endosome lumen
## 2965 endosome to melanosome transport
## 2966 endothelial tube morphogenesis
## 2967 epithelial structure maintenance
## 2968 ERAD pathway
## 2969 erythrocyte homeostasis
## 2970 establishment of endothelial barrier
## 2971 establishment of mitotic spindle localization
## 2972 establishment of protein localization to chromatin
## 2973 establishment of protein localization to organelle
## 2974 estrogen biosynthetic process
## 2975 estrogen metabolic process
## 2976 excretion
## 2977 extrinsic component of mitochondrial inner membrane
## 2978 fatty acid beta-oxidation using acyl-CoA dehydrogenase
## 2979 fatty acid binding
## 2980 fatty acid transport
## 2981 female gamete generation
## 2982 female pronucleus
## 2983 filopodium assembly
## 2984 FK506 binding
## 2985 folic acid binding
## 2986 four-way junction helicase activity
## 2987 fucosylation
## 2988 G-protein beta/gamma-subunit complex binding
## 2989 G-quadruplex DNA unwinding
## 2990 G-quadruplex RNA binding
## 2991 GABA receptor binding
## 2992 gamma-aminobutyric acid signaling pathway
## 2993 gamma-tubulin ring complex
## 2994 glutamine metabolic process
## 2995 glutathione transferase activity
## 2996 glycerolipid metabolic process
## 2997 glycerophospholipid biosynthetic process
## 2998 glycerophospholipid metabolic process
## 2999 glycoprotein biosynthetic process
## 3000 Golgi disassembly
## 3001 Golgi localization
## 3002 Golgi medial cisterna
## 3003 GTP biosynthetic process
## 3004 GTP metabolic process
## 3005 H4 histone acetyltransferase activity
## 3006 heart valve development
## 3007 hematopoietic stem cell homeostasis
## 3008 heme biosynthetic process
## 3009 hepatocyte apoptotic process
## 3010 histone exchange
## 3011 histone H3-K14 acetylation
## 3012 histone H3-K4 demethylation
## 3013 histone H4-K16 acetylation
## 3014 HMG box domain binding
## 3015 hydro-lyase activity
## 3016 hydrolase activity, hydrolyzing N-glycosyl compounds
## 3017 hyperosmotic response
## 3018 I-SMAD binding
## 3019 IkappaB kinase complex
## 3020 importin-alpha family protein binding
## 3021 inner ear morphogenesis
## 3022 inositol-1,4,5-trisphosphate 5-phosphatase activity
## 3023 insulin receptor substrate binding
## 3024 insulin-like growth factor I binding
## 3025 insulin-like growth factor receptor binding
## 3026 integral component of organelle membrane
## 3027 intestinal absorption
## 3028 intestinal epithelial cell development
## 3029 intracellular calcium activated chloride channel activity
## 3030 intracellular distribution of mitochondria
## 3031 intracellular estrogen receptor signaling pathway
## 3032 intraciliary retrograde transport
## 3033 intrinsic component of membrane
## 3034 K48-linked polyubiquitin modification-dependent protein binding
## 3035 keratinization
## 3036 kinetochore binding
## 3037 kinetochore microtubule
## 3038 kinetochore organization
## 3039 laminin binding
## 3040 large ribosomal subunit rRNA binding
## 3041 late endosome to vacuole transport
## 3042 limb morphogenesis
## 3043 linoleic acid metabolic process
## 3044 lipid storage
## 3045 lipoprotein metabolic process
## 3046 low-density lipoprotein particle binding
## 3047 lysosomal lumen acidification
## 3048 lysosomal protein catabolic process
## 3049 macropinocytosis
## 3050 magnesium ion transmembrane transport
## 3051 magnesium ion transmembrane transporter activity
## 3052 male pronucleus
## 3053 mammary gland development
## 3054 mammary gland epithelial cell differentiation
## 3055 mannose binding
## 3056 MAP-kinase scaffold activity
## 3057 maternal placenta development
## 3058 meiotic chromosome condensation
## 3059 meiotic chromosome segregation
## 3060 membrane invagination
## 3061 membrane protein ectodomain proteolysis
## 3062 metanephros development
## 3063 metaphase/anaphase transition of mitotic cell cycle
## 3064 microtubule severing
## 3065 mitochondrial ATP synthesis coupled electron transport
## 3066 mitochondrial ATP synthesis coupled proton transport
## 3067 mitochondrial envelope
## 3068 mitochondrial respirasome
## 3069 mitochondrial respiratory chain complex III assembly
## 3070 mitochondrial transport
## 3071 mitochondrion localization
## 3072 mitogen-activated protein kinase kinase kinase binding
## 3073 mitotic DNA replication initiation
## 3074 mitotic G1 DNA damage checkpoint
## 3075 modulation by symbiont of host defense response
## 3076 modulation by virus of host cellular process
## 3077 monosaccharide binding
## 3078 morphogenesis of an epithelial sheet
## 3079 motile cilium assembly
## 3080 motor neuron axon guidance
## 3081 mRNA cap binding complex
## 3082 mRNA cleavage
## 3083 mRNA transcription by RNA polymerase II
## 3084 multimeric ribonuclease P complex
## 3085 muscle alpha-actinin binding
## 3086 myelination in peripheral nervous system
## 3087 myosin II binding
## 3088 N-terminal peptidyl-methionine acetylation
## 3089 NAD metabolic process
## 3090 NAD(P)+ nucleosidase activity
## 3091 NAD+ nucleosidase activity
## 3092 NAD+ nucleotidase, cyclic ADP-ribose generating
## 3093 NADH metabolic process
## 3094 natural killer cell mediated cytotoxicity
## 3095 negative regulation of amyloid-beta clearance
## 3096 negative regulation of amyloid-beta formation
## 3097 negative regulation of bone mineralization
## 3098 negative regulation of bone resorption
## 3099 negative regulation of calcineurin-NFAT signaling cascade
## 3100 negative regulation of cardiac muscle cell proliferation
## 3101 negative regulation of cell division
## 3102 negative regulation of cell growth involved in cardiac muscle cell development
## 3103 negative regulation of cell size
## 3104 negative regulation of cell-cell adhesion mediated by cadherin
## 3105 negative regulation of cell-matrix adhesion
## 3106 negative regulation of centriole replication
## 3107 negative regulation of cytoplasmic translation
## 3108 negative regulation of endoplasmic reticulum calcium ion concentration
## 3109 negative regulation of fat cell proliferation
## 3110 negative regulation of glucose import
## 3111 negative regulation of growth
## 3112 negative regulation of histone acetylation
## 3113 negative regulation of inclusion body assembly
## 3114 negative regulation of innate immune response
## 3115 negative regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## 3116 negative regulation of lipopolysaccharide-mediated signaling pathway
## 3117 negative regulation of monocyte differentiation
## 3118 negative regulation of mRNA polyadenylation
## 3119 negative regulation of peptidyl-threonine phosphorylation
## 3120 negative regulation of phosphatidylinositol 3-kinase signaling
## 3121 negative regulation of production of miRNAs involved in gene silencing by miRNA
## 3122 negative regulation of protein export from nucleus
## 3123 negative regulation of protein localization to nucleus
## 3124 negative regulation of protein secretion
## 3125 negative regulation of protein sumoylation
## 3126 negative regulation of RNA splicing
## 3127 negative regulation of smooth muscle cell migration
## 3128 negative regulation of stem cell differentiation
## 3129 negative regulation of stress-activated MAPK cascade
## 3130 negative regulation of tumor necrosis factor-mediated signaling pathway
## 3131 negative regulation of viral transcription
## 3132 negative thymic T cell selection
## 3133 neuromuscular process
## 3134 neuron projection extension
## 3135 neuron projection maintenance
## 3136 neuronal cell body membrane
## 3137 NF-kappaB-inducing kinase activity
## 3138 nitric oxide biosynthetic process
## 3139 nitrogen compound metabolic process
## 3140 NSL complex
## 3141 nuclear envelope reassembly
## 3142 nuclear outer membrane
## 3143 nuclear pore nuclear basket
## 3144 nucleobase-containing compound kinase activity
## 3145 nucleobase-containing small molecule catabolic process
## 3146 nucleoside monophosphate phosphorylation
## 3147 nucleoside-triphosphatase activity
## 3148 nucleosomal histone binding
## 3149 nucleosome positioning
## 3150 NURF complex
## 3151 O-methyltransferase activity
## 3152 olfactory bulb development
## 3153 origin recognition complex
## 3154 oxidoreductase activity, acting on NAD(P)H
## 3155 pentose-phosphate shunt
## 3156 peptidyl-arginine methylation
## 3157 peptidyl-arginine N-methylation
## 3158 peptidyl-serine autophosphorylation
## 3159 peroxisome fission
## 3160 peroxisome proliferator activated receptor binding
## 3161 phagosome maturation
## 3162 phosphatidylethanolamine binding
## 3163 phosphatidylglycerol acyl-chain remodeling
## 3164 phosphatidylinositol kinase activity
## 3165 phosphatidylinositol-3,5-bisphosphate 3-phosphatase activity
## 3166 phosphatidylinositol-4,5-bisphosphate 3-kinase activity
## 3167 phosphatidylinositol-5-phosphate binding
## 3168 phospholipase D activity
## 3169 phospholipid homeostasis
## 3170 phosphorylation of RNA polymerase II C-terminal domain
## 3171 photoreceptor outer segment membrane
## 3172 phototransduction
## 3173 placenta blood vessel development
## 3174 plasma membrane protein complex
## 3175 poly(G) binding
## 3176 polyamine biosynthetic process
## 3177 polynucleotide adenylyltransferase activity
## 3178 polypeptide N-acetylgalactosaminyltransferase activity
## 3179 pore complex
## 3180 pore complex assembly
## 3181 positive regulation of ATP biosynthetic process
## 3182 positive regulation of B cell differentiation
## 3183 positive regulation of cardiac muscle cell apoptotic process
## 3184 positive regulation of cell motility
## 3185 positive regulation of cellular protein metabolic process
## 3186 positive regulation of chemotaxis
## 3187 positive regulation of cholesterol biosynthetic process
## 3188 positive regulation of chromatin binding
## 3189 positive regulation of chromosome segregation
## 3190 positive regulation of DNA biosynthetic process
## 3191 positive regulation of early endosome to late endosome transport
## 3192 positive regulation of embryonic development
## 3193 positive regulation of endocytosis
## 3194 positive regulation of endopeptidase activity
## 3195 positive regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## 3196 positive regulation of ER-associated ubiquitin-dependent protein catabolic process
## 3197 positive regulation of excitatory postsynaptic potential
## 3198 positive regulation of fibroblast migration
## 3199 positive regulation of G protein-coupled receptor signaling pathway
## 3200 positive regulation of gluconeogenesis
## 3201 positive regulation of histone H3-K9 acetylation
## 3202 positive regulation of histone H3-K9 methylation
## 3203 positive regulation of interleukin-17 production
## 3204 positive regulation of macrophage chemotaxis
## 3205 positive regulation of macrophage cytokine production
## 3206 positive regulation of memory T cell differentiation
## 3207 positive regulation of microtubule nucleation
## 3208 positive regulation of miRNA mediated inhibition of translation
## 3209 positive regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## 3210 positive regulation of monocyte chemotactic protein-1 production
## 3211 positive regulation of monocyte chemotaxis
## 3212 positive regulation of myotube differentiation
## 3213 positive regulation of natural killer cell mediated cytotoxicity
## 3214 positive regulation of neuroblast proliferation
## 3215 positive regulation of nuclear cell cycle DNA replication
## 3216 positive regulation of ossification
## 3217 positive regulation of phospholipase C activity
## 3218 positive regulation of phosphorylation
## 3219 positive regulation of protein kinase C signaling
## 3220 positive regulation of protein metabolic process
## 3221 positive regulation of protein sumoylation
## 3222 positive regulation of release of sequestered calcium ion into cytosol
## 3223 positive regulation of response to DNA damage stimulus
## 3224 positive regulation of synapse assembly
## 3225 positive regulation of synaptic vesicle endocytosis
## 3226 positive regulation of T cell chemotaxis
## 3227 positive regulation of transcription of nucleolar large rRNA by RNA polymerase I
## 3228 positive regulation of transcription regulatory region DNA binding
## 3229 post-anal tail morphogenesis
## 3230 post-transcriptional gene silencing by RNA
## 3231 postsynapse to nucleus signaling pathway
## 3232 posttranslational protein targeting to endoplasmic reticulum membrane
## 3233 potassium ion export across plasma membrane
## 3234 pre-mRNA binding
## 3235 pre-mRNA intronic binding
## 3236 pre-replicative complex assembly involved in nuclear cell cycle DNA replication
## 3237 preribosome, small subunit precursor
## 3238 presynaptic cytosol
## 3239 primary miRNA processing
## 3240 proteasome core complex, beta-subunit complex
## 3241 protein autoprocessing
## 3242 protein demethylation
## 3243 protein deneddylation
## 3244 protein insertion into mitochondrial inner membrane
## 3245 protein kinase B binding
## 3246 protein kinase regulator activity
## 3247 protein lipidation
## 3248 protein lipoylation
## 3249 protein localization to cytoplasmic stress granule
## 3250 protein localization to endoplasmic reticulum exit site
## 3251 protein localization to nucleolus
## 3252 protein maturation by iron-sulfur cluster transfer
## 3253 protein metabolic process
## 3254 protein neddylation
## 3255 protein O-linked mannosylation
## 3256 protein transport to vacuole involved in ubiquitin-dependent protein catabolic process via the multivesicular body sorting pathway
## 3257 protein-arginine N-methyltransferase activity
## 3258 proton-transporting ATP synthase activity, rotational mechanism
## 3259 proton-transporting V-type ATPase, V0 domain
## 3260 purine nucleotide catabolic process
## 3261 Rab protein signal transduction
## 3262 receptor antagonist activity
## 3263 reelin-mediated signaling pathway
## 3264 regulation of adaptive immune response
## 3265 regulation of aerobic respiration
## 3266 regulation of cell adhesion mediated by integrin
## 3267 regulation of cell cycle arrest
## 3268 regulation of cell cycle process
## 3269 regulation of cell division
## 3270 regulation of cellular protein localization
## 3271 regulation of cholesterol biosynthetic process
## 3272 regulation of chromatin organization
## 3273 regulation of cytokine-mediated signaling pathway
## 3274 regulation of DNA repair
## 3275 regulation of epidermal growth factor receptor signaling pathway
## 3276 regulation of establishment of endothelial barrier
## 3277 regulation of fatty acid beta-oxidation
## 3278 regulation of glycogen biosynthetic process
## 3279 regulation of heart rate by cardiac conduction
## 3280 regulation of histone H3-K4 methylation
## 3281 regulation of interferon-gamma-mediated signaling pathway
## 3282 regulation of interleukin-6 production
## 3283 regulation of intrinsic apoptotic signaling pathway
## 3284 regulation of MAPK cascade
## 3285 regulation of mitochondrial fission
## 3286 regulation of muscle contraction
## 3287 regulation of myeloid cell differentiation
## 3288 regulation of NIK/NF-kappaB signaling
## 3289 regulation of pH
## 3290 regulation of postsynaptic membrane potential
## 3291 regulation of protein export from nucleus
## 3292 regulation of protein kinase B signaling
## 3293 regulation of protein localization to nucleus
## 3294 regulation of proteolysis
## 3295 regulation of Rab protein signal transduction
## 3296 regulation of Rac protein signal transduction
## 3297 regulation of Ras protein signal transduction
## 3298 regulation of regulatory T cell differentiation
## 3299 regulation of release of sequestered calcium ion into cytosol
## 3300 regulation of sodium ion transmembrane transporter activity
## 3301 regulation of stem cell population maintenance
## 3302 regulation of stress-activated MAPK cascade
## 3303 regulation of synaptic transmission, glutamatergic
## 3304 regulation of synaptic vesicle endocytosis
## 3305 regulation of T cell differentiation in thymus
## 3306 regulation of T cell proliferation
## 3307 regulation of ventricular cardiac muscle cell membrane repolarization
## 3308 regulation of viral entry into host cell
## 3309 replication-born double-strand break repair via sister chromatid exchange
## 3310 rescue of stalled ribosome
## 3311 respiratory burst
## 3312 response to arsenic-containing substance
## 3313 response to cholesterol
## 3314 response to glucagon
## 3315 response to immobilization stress
## 3316 response to interferon-beta
## 3317 response to iron ion
## 3318 response to lead ion
## 3319 response to morphine
## 3320 response to muramyl dipeptide
## 3321 response to pH
## 3322 response to transforming growth factor beta
## 3323 response to UV-C
## 3324 response to xenobiotic stimulus
## 3325 reverse cholesterol transport
## 3326 ribonuclease MRP complex
## 3327 ribonuclease P activity
## 3328 ribonuclease P RNA binding
## 3329 ribonucleoprotein granule
## 3330 ribosomal small subunit binding
## 3331 RIG-I signaling pathway
## 3332 RNA polymerase II, holoenzyme
## 3333 RNA transport
## 3334 rough endoplasmic reticulum membrane
## 3335 S100 protein binding
## 3336 Schmidt-Lanterman incisure
## 3337 seminiferous tubule development
## 3338 sensory perception of smell
## 3339 sequence-specific mRNA binding
## 3340 sialic acid binding
## 3341 signal complex assembly
## 3342 signaling
## 3343 siRNA binding
## 3344 skeletal muscle contraction
## 3345 SMN complex
## 3346 sperm midpiece
## 3347 SREBP signaling pathway
## 3348 steroid binding
## 3349 sterol transporter activity
## 3350 striated muscle contraction
## 3351 suckling behavior
## 3352 sulfate transmembrane transport
## 3353 sulfate transmembrane transporter activity
## 3354 SUMO binding
## 3355 synaptic vesicle maturation
## 3356 T-helper 1 type immune response
## 3357 telomere capping
## 3358 tetrahydrofolate metabolic process
## 3359 TFIID-class transcription factor complex binding
## 3360 thioesterase binding
## 3361 threonine-type endopeptidase activity
## 3362 TIM23 mitochondrial import inner membrane translocase complex
## 3363 toll-like receptor 4 signaling pathway
## 3364 TORC1 signaling
## 3365 TPR domain binding
## 3366 trans-Golgi network transport vesicle
## 3367 transcription by RNA polymerase I
## 3368 transcription corepressor binding
## 3369 transferase activity, transferring phosphorus-containing groups
## 3370 transforming growth factor beta receptor binding
## 3371 transforming growth factor beta-activated receptor activity
## 3372 translational termination
## 3373 transmembrane receptor protein tyrosine kinase adaptor activity
## 3374 trophectodermal cell differentiation
## 3375 tropomyosin binding
## 3376 U1 snRNA binding
## 3377 U2-type catalytic step 1 spliceosome
## 3378 U3 snoRNA binding
## 3379 U4 snRNA binding
## 3380 U7 snRNP
## 3381 ubiquinol-cytochrome-c reductase activity
## 3382 ubiquitin-protein transferase activator activity
## 3383 UDP-N-acetylglucosamine biosynthetic process
## 3384 UDP-N-acetylglucosamine metabolic process
## 3385 urea cycle
## 3386 uropod
## 3387 very long-chain fatty acid-CoA ligase activity
## 3388 vesicle-mediated transport in synapse
## 3389 viral mRNA export from host cell nucleus
## 3390 viral translational termination-reinitiation
## 3391 voluntary musculoskeletal movement
## 3392 xenobiotic transport
## 3393 Y-form DNA binding
## 3394 zymogen activation
## 3395 1-phosphatidylinositol-4-phosphate 3-kinase activity
## 3396 1-phosphatidylinositol-4-phosphate 5-kinase activity
## 3397 2'-5'-oligoadenylate synthetase activity
## 3398 3-keto sterol reductase activity
## 3399 3-oxo-arachidoyl-CoA synthase activity
## 3400 3-oxo-cerotoyl-CoA synthase activity
## 3401 3-oxo-lignoceronyl-CoA synthase activity
## 3402 3'-phosphoadenosine 5'-phosphosulfate metabolic process
## 3403 3'-UTR-mediated mRNA destabilization
## 3404 3',5'-cyclic-AMP phosphodiesterase activity
## 3405 acetyl-CoA biosynthetic process
## 3406 acetyl-CoA C-acyltransferase activity
## 3407 actin cortical patch
## 3408 actin nucleation
## 3409 actinin binding
## 3410 activation of cysteine-type endopeptidase activity involved in apoptotic process by cytochrome c
## 3411 activation of transmembrane receptor protein tyrosine kinase activity
## 3412 activin receptor signaling pathway
## 3413 actomyosin
## 3414 acute inflammatory response
## 3415 ADP biosynthetic process
## 3416 adrenal gland development
## 3417 adrenergic receptor signaling pathway
## 3418 alpha DNA polymerase:primase complex
## 3419 alpha-(1->3)-fucosyltransferase activity
## 3420 amino acid binding
## 3421 amino acid transmembrane transport
## 3422 aminoacyl-tRNA metabolism involved in translational fidelity
## 3423 AMP metabolic process
## 3424 AMPA glutamate receptor complex
## 3425 amyloid-beta clearance by cellular catabolic process
## 3426 anchored component of external side of plasma membrane
## 3427 androgen metabolic process
## 3428 ankyrin binding
## 3429 annealing helicase activity
## 3430 annulate lamellae
## 3431 anterior/posterior axis specification
## 3432 antigen processing and presentation, exogenous lipid antigen via MHC class Ib
## 3433 AP-2 adaptor complex binding
## 3434 apical dendrite
## 3435 apical junction assembly
## 3436 aryl hydrocarbon receptor complex
## 3437 associative learning
## 3438 astrocyte activation
## 3439 ATF6-mediated unfolded protein response
## 3440 ATP-dependent protein binding
## 3441 atrioventricular valve morphogenesis
## 3442 autophagosome membrane docking
## 3443 autophagosome-lysosome fusion
## 3444 autophagy of peroxisome
## 3445 axon initial segment
## 3446 axon regeneration
## 3447 B cell proliferation
## 3448 basement membrane organization
## 3449 basic amino acid transmembrane transporter activity
## 3450 behavioral response to pain
## 3451 beta-catenin-TCF complex
## 3452 bile acid metabolic process
## 3453 bile acid signaling pathway
## 3454 bleb
## 3455 box C/D snoRNP assembly
## 3456 branching involved in mammary gland duct morphogenesis
## 3457 calcium-dependent cell-cell adhesion via plasma membrane cell adhesion molecules
## 3458 carboxylic acid binding
## 3459 cardiac muscle tissue development
## 3460 cardiolipin acyl-chain remodeling
## 3461 CCR4-NOT core complex
## 3462 CCR5 chemokine receptor binding
## 3463 cell communication
## 3464 cell fate specification
## 3465 cell morphogenesis involved in neuron differentiation
## 3466 cell projection membrane
## 3467 cell-cell adhesion via plasma-membrane adhesion molecules
## 3468 cell-cell junction assembly
## 3469 cellular copper ion homeostasis
## 3470 cellular hypotonic response
## 3471 cellular metabolic process
## 3472 cellular protein-containing complex localization
## 3473 cellular response to cGMP
## 3474 cellular response to dopamine
## 3475 cellular response to electrical stimulus
## 3476 cellular response to insulin-like growth factor stimulus
## 3477 cellular response to macrophage colony-stimulating factor stimulus
## 3478 cellular response to manganese ion
## 3479 cellular response to misfolded protein
## 3480 cellular response to nutrient
## 3481 cellular response to nutrient levels
## 3482 cellular response to UV-B
## 3483 centromeric DNA binding
## 3484 ceramide binding
## 3485 ceramide transport
## 3486 cerebellar Purkinje cell differentiation
## 3487 cerebral cortex neuron differentiation
## 3488 cGMP-mediated signaling
## 3489 chaperone-mediated autophagy
## 3490 chaperone-mediated protein transport
## 3491 chloride channel inhibitor activity
## 3492 cholesterol import
## 3493 chromatin assembly
## 3494 chromo shadow domain binding
## 3495 chromosome separation
## 3496 ciliary rootlet
## 3497 ciliary transition fiber
## 3498 cilium movement
## 3499 circulatory system development
## 3500 citrate metabolic process
## 3501 clathrin coat
## 3502 cobalamin metabolic process
## 3503 cochlea morphogenesis
## 3504 coenzyme A biosynthetic process
## 3505 collagen biosynthetic process
## 3506 collagen metabolic process
## 3507 complement activation, classical pathway
## 3508 condensed nuclear chromosome outer kinetochore
## 3509 contractile fiber
## 3510 contractile ring
## 3511 COPII-coated vesicle budding
## 3512 core mediator complex
## 3513 cortical endoplasmic reticulum
## 3514 Ctf18 RFC-like complex
## 3515 CTP biosynthetic process
## 3516 cyclin-dependent protein serine/threonine kinase activator activity
## 3517 cytoplasmic sequestering of protein
## 3518 cytoplasmic side of rough endoplasmic reticulum membrane
## 3519 D-threo-aldose 1-dehydrogenase activity
## 3520 deadenylation-dependent decapping of nuclear-transcribed mRNA
## 3521 deadenylation-independent decapping of nuclear-transcribed mRNA
## 3522 death-inducing signaling complex assembly
## 3523 defense response to fungus
## 3524 dendrite membrane
## 3525 dendritic cell chemotaxis
## 3526 dendritic spine membrane
## 3527 dendritic spine morphogenesis
## 3528 dephosphorylation of RNA polymerase II C-terminal domain
## 3529 diacylglycerol biosynthetic process
## 3530 diacylglycerol kinase activity
## 3531 dipeptidase activity
## 3532 DNA catabolic process, exonucleolytic
## 3533 DNA ligation
## 3534 DNA replication factor A complex
## 3535 DNA replication factor C complex
## 3536 DNA replication-dependent nucleosome assembly
## 3537 DNA replication, synthesis of RNA primer
## 3538 DNA strand renaturation
## 3539 DNA topoisomerase activity
## 3540 DNA translocase activity
## 3541 DNA-binding transcription repressor activity
## 3542 dolichyl diphosphate biosynthetic process
## 3543 double-strand break repair via classical nonhomologous end joining
## 3544 dynactin binding
## 3545 dynactin complex
## 3546 dynamin family protein polymerization involved in mitochondrial fission
## 3547 dystroglycan binding
## 3548 ectoderm development
## 3549 EKC/KEOPS complex
## 3550 elastic fiber assembly
## 3551 embryonic cleavage
## 3552 embryonic forelimb morphogenesis
## 3553 embryonic hindlimb morphogenesis
## 3554 embryonic neurocranium morphogenesis
## 3555 embryonic skeletal system morphogenesis
## 3556 enamel mineralization
## 3557 endocytic vesicle lumen
## 3558 endonucleolytic cleavage to generate mature 5'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 3559 endopeptidase activator activity
## 3560 endoplasmic reticulum membrane organization
## 3561 endoplasmic reticulum-plasma membrane tethering
## 3562 endoribonuclease activity, producing 5'-phosphomonoesters
## 3563 endothelial cell apoptotic process
## 3564 endothelial cell differentiation
## 3565 endothelial cell morphogenesis
## 3566 energy reserve metabolic process
## 3567 enzyme-directed rRNA pseudouridine synthesis
## 3568 ER-associated misfolded protein catabolic process
## 3569 ESCRT I complex
## 3570 establishment of endothelial intestinal barrier
## 3571 establishment of epithelial cell apical/basal polarity
## 3572 establishment of epithelial cell polarity
## 3573 establishment of Golgi localization
## 3574 establishment of planar polarity
## 3575 establishment of spindle orientation
## 3576 establishment of vesicle localization
## 3577 estrous cycle
## 3578 eukaryotic initiation factor 4E binding
## 3579 eukaryotic translation initiation factor 2alpha kinase activity
## 3580 extrinsic component of endosome membrane
## 3581 fatty acid alpha-oxidation
## 3582 fatty acid elongase activity
## 3583 fatty acid elongation, monounsaturated fatty acid
## 3584 fatty acid elongation, polyunsaturated fatty acid
## 3585 fatty acid elongation, saturated fatty acid
## 3586 female meiotic nuclear division
## 3587 ferric iron binding
## 3588 fibrinolysis
## 3589 fibroblast migration
## 3590 fructose binding
## 3591 fructose metabolic process
## 3592 fucosyltransferase activity
## 3593 galactose binding
## 3594 galactosyltransferase activity
## 3595 GARP complex
## 3596 GDP metabolic process
## 3597 GINS complex
## 3598 glial cell projection
## 3599 gliogenesis
## 3600 glucose transmembrane transporter activity
## 3601 glucuronate catabolic process to xylulose 5-phosphate
## 3602 glucuronosyl-N-acetylgalactosaminyl-proteoglycan 4-beta-N-acetylgalactosaminyltransferase activity
## 3603 glutamine transport
## 3604 glycoprotein catabolic process
## 3605 GMP metabolic process
## 3606 Golgi transport complex
## 3607 Golgi-associated vesicle membrane
## 3608 growth hormone receptor signaling pathway
## 3609 growth plate cartilage development
## 3610 guanyl nucleotide binding
## 3611 guanylate kinase activity
## 3612 HAUS complex
## 3613 heme catabolic process
## 3614 heparin biosynthetic process
## 3615 hexose transmembrane transport
## 3616 high-density lipoprotein particle binding
## 3617 histone H2B ubiquitination
## 3618 histone H3-K36 methylation
## 3619 histone H3-K4 demethylation, trimethyl-H3-K4-specific
## 3620 histone H3-K4 monomethylation
## 3621 histone methyltransferase activity (H3-K9 specific)
## 3622 histone mRNA catabolic process
## 3623 histone pre-mRNA 3'end processing complex
## 3624 histone pre-mRNA DCP binding
## 3625 hormone activity
## 3626 Hrd1p ubiquitin ligase ERAD-L complex
## 3627 hyaluronic acid binding
## 3628 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds
## 3629 I-kappaB phosphorylation
## 3630 inner ear receptor cell stereocilium organization
## 3631 inorganic diphosphatase activity
## 3632 inositol-polyphosphate 5-phosphatase activity
## 3633 insulin receptor binding
## 3634 insulin secretion involved in cellular response to glucose stimulus
## 3635 insulin-like growth factor II binding
## 3636 integral component of nuclear inner membrane
## 3637 interleukin-15-mediated signaling pathway
## 3638 interleukin-17-mediated signaling pathway
## 3639 interleukin-21-mediated signaling pathway
## 3640 interleukin-23-mediated signaling pathway
## 3641 interleukin-6 receptor binding
## 3642 interleukin-9-mediated signaling pathway
## 3643 intraciliary transport particle A
## 3644 intrinsic component of endoplasmic reticulum membrane
## 3645 ion homeostasis
## 3646 ion transmembrane transporter activity
## 3647 L-amino acid transport
## 3648 L-ascorbic acid metabolic process
## 3649 L-fucose catabolic process
## 3650 L-glutamine transmembrane transporter activity
## 3651 L-proline biosynthetic process
## 3652 lamellipodium morphogenesis
## 3653 lateral loop
## 3654 layer formation in cerebral cortex
## 3655 leptin-mediated signaling pathway
## 3656 leucine catabolic process
## 3657 lipid droplet formation
## 3658 lipopeptide binding
## 3659 locomotor rhythm
## 3660 long-chain fatty acid import into cell
## 3661 long-chain fatty acid-CoA ligase activity
## 3662 long-term synaptic depression
## 3663 low-density lipoprotein particle
## 3664 lymphocyte differentiation
## 3665 lymphocyte homeostasis
## 3666 lysine catabolic process
## 3667 macrophage activation involved in immune response
## 3668 main axon
## 3669 maintenance of centrosome location
## 3670 manchette
## 3671 mannose trimming involved in glycoprotein ERAD pathway
## 3672 marginal zone B cell differentiation
## 3673 megakaryocyte differentiation
## 3674 melanocyte differentiation
## 3675 membrane depolarization
## 3676 membrane raft assembly
## 3677 membrane repolarization
## 3678 membrane repolarization during cardiac muscle cell action potential
## 3679 metallocarboxypeptidase activity
## 3680 methylenetetrahydrofolate dehydrogenase (NADP+) activity
## 3681 MHC class I peptide loading complex
## 3682 MHC class Ib protein binding
## 3683 MIB complex
## 3684 microfibril
## 3685 microglia development
## 3686 microtubule anchoring at centrosome
## 3687 microtubule minus-end
## 3688 mismatched DNA binding
## 3689 mitochondrial fragmentation involved in apoptotic process
## 3690 mitochondrial genome maintenance
## 3691 mitochondrial outer membrane permeabilization
## 3692 mitochondrial proton-transporting ATP synthase complex
## 3693 mitochondrial respiratory chain complex IV
## 3694 mitochondrial transcription
## 3695 mitochondrion transport along microtubule
## 3696 mitochondrion-endoplasmic reticulum membrane tethering
## 3697 mitotic cell cycle arrest
## 3698 mitotic chromosome movement towards spindle pole
## 3699 mitotic spindle midzone assembly
## 3700 modification of postsynaptic actin cytoskeleton
## 3701 modification-dependent protein catabolic process
## 3702 modulation by virus of host process
## 3703 modulation of age-related behavioral decline
## 3704 modulation of excitatory postsynaptic potential
## 3705 monocyte chemotaxis
## 3706 morphogenesis of a branching structure
## 3707 morphogenesis of an epithelium
## 3708 Mre11 complex
## 3709 mRNA 3'-end processing by stem-loop binding and cleavage
## 3710 mRNA pseudouridine synthesis
## 3711 multicellular organism aging
## 3712 muscle cell differentiation
## 3713 myofibril assembly
## 3714 myristoyl-CoA hydrolase activity
## 3715 N-acetylneuraminate metabolic process
## 3716 NAD biosynthesis via nicotinamide riboside salvage pathway
## 3717 NAD biosynthetic process
## 3718 NAD-dependent histone deacetylase activity (H3-K14 specific)
## 3719 NAD-dependent protein deacetylase activity
## 3720 NADH pyrophosphatase activity
## 3721 NADP-retinol dehydrogenase activity
## 3722 NatA complex
## 3723 natural killer cell differentiation
## 3724 Ndc80 complex
## 3725 negative regulation of anoikis
## 3726 negative regulation of ATPase activity
## 3727 negative regulation of blood vessel endothelial cell migration
## 3728 negative regulation of cardiac muscle hypertrophy
## 3729 negative regulation of CD4-positive, alpha-beta T cell proliferation
## 3730 negative regulation of cell aging
## 3731 negative regulation of cell-substrate adhesion
## 3732 negative regulation of chemokine production
## 3733 negative regulation of chromatin binding
## 3734 negative regulation of double-strand break repair
## 3735 negative regulation of double-strand break repair via nonhomologous end joining
## 3736 negative regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## 3737 negative regulation of endothelial cell differentiation
## 3738 negative regulation of epithelial to mesenchymal transition
## 3739 negative regulation of execution phase of apoptosis
## 3740 negative regulation of fibroblast apoptotic process
## 3741 negative regulation of fibroblast migration
## 3742 negative regulation of granulocyte differentiation
## 3743 negative regulation of histone H3-K9 trimethylation
## 3744 negative regulation of hydrogen peroxide-induced cell death
## 3745 negative regulation of immune response
## 3746 negative regulation of kinase activity
## 3747 negative regulation of leukocyte cell-cell adhesion
## 3748 negative regulation of lipid storage
## 3749 negative regulation of lipid transport
## 3750 negative regulation of megakaryocyte differentiation
## 3751 negative regulation of microtubule polymerization
## 3752 negative regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## 3753 negative regulation of myoblast differentiation
## 3754 negative regulation of neural precursor cell proliferation
## 3755 negative regulation of nitric oxide biosynthetic process
## 3756 negative regulation of organ growth
## 3757 negative regulation of pathway-restricted SMAD protein phosphorylation
## 3758 negative regulation of programmed cell death
## 3759 negative regulation of protein autophosphorylation
## 3760 negative regulation of protein kinase activity by regulation of protein phosphorylation
## 3761 negative regulation of protein localization to microtubule
## 3762 negative regulation of protein neddylation
## 3763 negative regulation of retrograde protein transport, ER to cytosol
## 3764 negative regulation of ruffle assembly
## 3765 negative regulation of ryanodine-sensitive calcium-release channel activity
## 3766 negative regulation of sequestering of triglyceride
## 3767 negative regulation of single stranded viral RNA replication via double stranded DNA intermediate
## 3768 negative regulation of telomere capping
## 3769 negative regulation of transcription by competitive promoter binding
## 3770 negative regulation of tyrosine phosphorylation of STAT protein
## 3771 negative regulation of ubiquitin-protein transferase activity
## 3772 nephron development
## 3773 neural retina development
## 3774 neuromuscular synaptic transmission
## 3775 neuron projection terminus
## 3776 neuropeptide signaling pathway
## 3777 neurotransmitter transmembrane transporter activity
## 3778 NLRP3 inflammasome complex
## 3779 non-membrane spanning protein tyrosine phosphatase activity
## 3780 nuclear envelope disassembly
## 3781 nuclear export signal receptor activity
## 3782 nuclear lamina
## 3783 nuclear mRNA surveillance
## 3784 nuclear stress granule
## 3785 nuclear-transcribed mRNA catabolic process, deadenylation-dependent decay
## 3786 nuclear-transcribed mRNA catabolic process, exonucleolytic, 3'-5'
## 3787 nucleoside-diphosphatase activity
## 3788 oligodendrocyte differentiation
## 3789 oocyte development
## 3790 organ growth
## 3791 osteoblast proliferation
## 3792 outflow tract septum morphogenesis
## 3793 outward rectifier potassium channel activity
## 3794 oxidized purine DNA binding
## 3795 oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor
## 3796 oxygen transport
## 3797 P granule
## 3798 palmitoyl-CoA hydrolase activity
## 3799 peptidase activator activity
## 3800 peptide antigen assembly with MHC class II protein complex
## 3801 peptide metabolic process
## 3802 peptidyl-diphthamide biosynthetic process from peptidyl-histidine
## 3803 peptidyl-tyrosine autophosphorylation
## 3804 peripheral nervous system development
## 3805 phagocytosis, recognition
## 3806 phagosome-lysosome fusion
## 3807 phosphatidic acid transfer activity
## 3808 phosphatidylcholine catabolic process
## 3809 phosphatidylcholine metabolic process
## 3810 phosphatidylglycerol biosynthetic process
## 3811 phosphatidylinositol 3-kinase activity
## 3812 phosphatidylinositol 3-kinase complex, class IB
## 3813 phosphatidylinositol bisphosphate binding
## 3814 phosphatidylinositol phosphate kinase activity
## 3815 phosphatidylinositol transfer activity
## 3816 phosphatidylinositol-3,4-bisphosphate 5-kinase activity
## 3817 phosphatidylinositol-3,4,5-trisphosphate 5-phosphatase activity
## 3818 phosphatidylserine acyl-chain remodeling
## 3819 phospholipase activator activity
## 3820 phospholipase C activity
## 3821 phospholipid scramblase activity
## 3822 phospholipid transporter activity
## 3823 phosphoric ester hydrolase activity
## 3824 phosphorus-oxygen lyase activity
## 3825 photoreceptor cell outer segment organization
## 3826 Piccolo NuA4 histone acetyltransferase complex
## 3827 pICln-Sm protein complex
## 3828 piecemeal microautophagy of the nucleus
## 3829 piRNA metabolic process
## 3830 planar cell polarity pathway involved in neural tube closure
## 3831 plasma membrane organization
## 3832 plasma membrane to endosome transport
## 3833 platelet dense tubular network membrane
## 3834 poly(A)-specific ribonuclease activity
## 3835 positive regulation by host of viral process
## 3836 positive regulation of actin filament bundle assembly
## 3837 positive regulation of astrocyte differentiation
## 3838 positive regulation of autophagosome assembly
## 3839 positive regulation of autophagosome maturation
## 3840 positive regulation of B cell receptor signaling pathway
## 3841 positive regulation of calcium ion import
## 3842 positive regulation of cardiac muscle cell proliferation
## 3843 positive regulation of cartilage development
## 3844 positive regulation of cell adhesion mediated by integrin
## 3845 positive regulation of cell growth involved in cardiac muscle cell development
## 3846 positive regulation of cellular component movement
## 3847 positive regulation of cellular protein localization
## 3848 positive regulation of cellular respiration
## 3849 positive regulation of chemokine (C-X-C motif) ligand 2 production
## 3850 positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G protein-coupled signaling pathway
## 3851 positive regulation of dendrite development
## 3852 positive regulation of DNA methylation-dependent heterochromatin assembly
## 3853 positive regulation of DNA topoisomerase (ATP-hydrolyzing) activity
## 3854 positive regulation of ERAD pathway
## 3855 positive regulation of establishment of protein localization
## 3856 positive regulation of exit from mitosis
## 3857 positive regulation of extracellular matrix disassembly
## 3858 positive regulation of fatty acid beta-oxidation
## 3859 positive regulation of glucose metabolic process
## 3860 positive regulation of Golgi to plasma membrane protein transport
## 3861 positive regulation of hair follicle development
## 3862 positive regulation of heterotypic cell-cell adhesion
## 3863 positive regulation of histone deacetylase activity
## 3864 positive regulation of histone exchange
## 3865 positive regulation of humoral immune response mediated by circulating immunoglobulin
## 3866 positive regulation of I-kappaB phosphorylation
## 3867 positive regulation of intracellular transport
## 3868 positive regulation of isotype switching to IgA isotypes
## 3869 positive regulation of isotype switching to IgG isotypes
## 3870 positive regulation of keratinocyte migration
## 3871 positive regulation of lipid storage
## 3872 positive regulation of mesenchymal cell proliferation
## 3873 positive regulation of microglial cell migration
## 3874 positive regulation of mitotic cell cycle spindle assembly checkpoint
## 3875 positive regulation of mRNA 3'-end processing
## 3876 positive regulation of myelination
## 3877 positive regulation of myeloid dendritic cell cytokine production
## 3878 positive regulation of myoblast differentiation
## 3879 positive regulation of myoblast fusion
## 3880 positive regulation of natural killer cell activation
## 3881 positive regulation of neural precursor cell proliferation
## 3882 positive regulation of neuron projection arborization
## 3883 positive regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## 3884 positive regulation of oxidoreductase activity
## 3885 positive regulation of phagocytosis, engulfment
## 3886 positive regulation of podosome assembly
## 3887 positive regulation of protein K63-linked ubiquitination
## 3888 positive regulation of protein localization to Cajal body
## 3889 positive regulation of protein localization to kinetochore
## 3890 positive regulation of pseudopodium assembly
## 3891 positive regulation of Rac protein signal transduction
## 3892 positive regulation of reactive oxygen species biosynthetic process
## 3893 positive regulation of rRNA processing
## 3894 positive regulation of smooth muscle cell differentiation
## 3895 positive regulation of sprouting angiogenesis
## 3896 positive regulation of synaptic transmission, GABAergic
## 3897 positive regulation of T cell anergy
## 3898 positive regulation of telomerase RNA localization to Cajal body
## 3899 positive regulation of toll-like receptor 3 signaling pathway
## 3900 positive regulation of transcription by RNA polymerase I
## 3901 positive regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## 3902 positive regulation of transforming growth factor beta production
## 3903 positive regulation of urine volume
## 3904 positive regulation of vascular permeability
## 3905 positive regulation of vesicle fusion
## 3906 positive regulation of xenophagy
## 3907 postsynaptic actin cytoskeleton organization
## 3908 postsynaptic density, intracellular component
## 3909 posttranscriptional gene silencing
## 3910 potassium ion import across plasma membrane
## 3911 prenyltransferase activity
## 3912 presynaptic endocytic zone membrane
## 3913 primary miRNA binding
## 3914 production of siRNA involved in RNA interference
## 3915 profilin binding
## 3916 proline biosynthetic process
## 3917 pronucleus
## 3918 protein desumoylation
## 3919 protein heterooligomerization
## 3920 protein hexamerization
## 3921 protein localization to cell-cell junction
## 3922 protein localization to site of double-strand break
## 3923 protein maturation by [4Fe-4S] cluster transfer
## 3924 protein modification by small protein conjugation
## 3925 protein polymerization
## 3926 protein retention in Golgi apparatus
## 3927 protein sequestering activity
## 3928 protein ufmylation
## 3929 protein-DNA covalent cross-linking repair
## 3930 protein-membrane adaptor activity
## 3931 Prp19 complex
## 3932 PTW/PP1 phosphatase complex
## 3933 purine nucleobase biosynthetic process
## 3934 purine-containing compound salvage
## 3935 pyrimidine dimer repair
## 3936 pyrimidine nucleoside catabolic process
## 3937 quinone binding
## 3938 Ragulator complex
## 3939 Rap protein signal transduction
## 3940 rDNA heterochromatin
## 3941 regulation of acetyl-CoA biosynthetic process from pyruvate
## 3942 regulation of actin polymerization or depolymerization
## 3943 regulation of ATPase activity
## 3944 regulation of B cell receptor signaling pathway
## 3945 regulation of blood vessel diameter
## 3946 regulation of cardiac muscle contraction
## 3947 regulation of cell-cell adhesion
## 3948 regulation of cell-matrix adhesion
## 3949 regulation of cellular localization
## 3950 regulation of cellular respiration
## 3951 regulation of clathrin-dependent endocytosis
## 3952 regulation of DNA binding
## 3953 regulation of DNA damage checkpoint
## 3954 regulation of early endosome to late endosome transport
## 3955 regulation of erythrocyte differentiation
## 3956 regulation of establishment of protein localization
## 3957 regulation of fatty acid biosynthetic process
## 3958 regulation of fatty acid metabolic process
## 3959 regulation of insulin receptor signaling pathway
## 3960 regulation of interleukin-1 beta production
## 3961 regulation of intracellular signal transduction
## 3962 regulation of lipid storage
## 3963 regulation of long-term neuronal synaptic plasticity
## 3964 regulation of meiotic nuclear division
## 3965 regulation of mitochondrial mRNA stability
## 3966 regulation of mitotic centrosome separation
## 3967 regulation of mRNA export from nucleus
## 3968 regulation of neuron migration
## 3969 regulation of neurotransmitter secretion
## 3970 regulation of organ growth
## 3971 regulation of peptidyl-serine phosphorylation
## 3972 regulation of phosphatidylinositol dephosphorylation
## 3973 regulation of postsynapse organization
## 3974 regulation of postsynaptic density assembly
## 3975 regulation of postsynaptic membrane neurotransmitter receptor levels
## 3976 regulation of postsynaptic neurotransmitter receptor activity
## 3977 regulation of postsynaptic neurotransmitter receptor internalization
## 3978 regulation of presynapse assembly
## 3979 regulation of pro-B cell differentiation
## 3980 regulation of protein autophosphorylation
## 3981 regulation of protein kinase A signaling
## 3982 regulation of protein localization to cell surface
## 3983 regulation of protein metabolic process
## 3984 regulation of protein neddylation
## 3985 regulation of release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## 3986 regulation of ribonuclease activity
## 3987 regulation of RNA biosynthetic process
## 3988 regulation of synaptic transmission, GABAergic
## 3989 regulation of synaptic vesicle priming
## 3990 regulation of telomerase activity
## 3991 regulation of the force of heart contraction
## 3992 regulation of TORC1 signaling
## 3993 regulation of transcription by RNA polymerase III
## 3994 regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## 3995 regulation of translational initiation by eIF2 alpha phosphorylation
## 3996 regulation of type B pancreatic cell proliferation
## 3997 regulation of type I interferon-mediated signaling pathway
## 3998 regulation of vesicle-mediated transport
## 3999 relaxation of cardiac muscle
## 4000 respiratory electron transport chain
## 4001 response to alkaloid
## 4002 response to ATP
## 4003 response to auditory stimulus
## 4004 response to caffeine
## 4005 response to fructose
## 4006 response to growth factor
## 4007 response to growth hormone
## 4008 response to interferon-alpha
## 4009 response to isolation stress
## 4010 response to laminar fluid shear stress
## 4011 response to leptin
## 4012 response to magnesium ion
## 4013 response to metal ion
## 4014 response to molecule of bacterial origin
## 4015 response to nicotine
## 4016 response to peptide
## 4017 response to peptidoglycan
## 4018 response to type I interferon
## 4019 response to vitamin A
## 4020 response to vitamin D
## 4021 retina vasculature development in camera-type eye
## 4022 retrograde axonal transport
## 4023 ribosomal protein S6 kinase activity
## 4024 ribosome assembly
## 4025 RNA polyadenylation
## 4026 RNA polymerase II C-terminal domain phosphoserine binding
## 4027 RNA polymerase III general transcription initiation factor activity
## 4028 SAGA complex
## 4029 SAM complex
## 4030 secretion
## 4031 selenocysteine insertion sequence binding
## 4032 selenocysteinyl-tRNA(Sec) biosynthetic process
## 4033 semaphorin receptor activity
## 4034 semaphorin receptor complex
## 4035 semaphorin-plexin signaling pathway involved in axon guidance
## 4036 sequestering of actin monomers
## 4037 Set1C/COMPASS complex
## 4038 sialylation
## 4039 sialyltransferase activity
## 4040 signal peptide processing
## 4041 single strand break repair
## 4042 Smc5-Smc6 complex
## 4043 smooth muscle tissue development
## 4044 sodium ion import across plasma membrane
## 4045 solute:proton antiporter activity
## 4046 somatic hypermutation of immunoglobulin genes
## 4047 somite rostral/caudal axis specification
## 4048 spanning component of membrane
## 4049 spanning component of plasma membrane
## 4050 spectrin binding
## 4051 sperm axoneme assembly
## 4052 sperm-egg recognition
## 4053 spermatid nucleus differentiation
## 4054 sphingomyelin biosynthetic process
## 4055 spliceosomal tri-snRNP complex
## 4056 SRP-dependent cotranslational protein targeting to membrane, translocation
## 4057 stabilization of membrane potential
## 4058 STAGA complex
## 4059 STAT family protein binding
## 4060 sterol homeostasis
## 4061 stress fiber assembly
## 4062 striated muscle thin filament
## 4063 sulfuric ester hydrolase activity
## 4064 SUMO ligase activity
## 4065 superoxide anion generation
## 4066 synaptic membrane adhesion
## 4067 synaptic transmission, cholinergic
## 4068 synaptic vesicle fusion to presynaptic active zone membrane
## 4069 telomerase inhibitor activity
## 4070 telomere maintenance via telomere lengthening
## 4071 telomere organization
## 4072 telomeric 3' overhang formation
## 4073 thiol oxidase activity
## 4074 THO complex
## 4075 THO complex part of transcription export complex
## 4076 thrombin-activated receptor signaling pathway
## 4077 toll-like receptor 2 signaling pathway
## 4078 transcription cofactor binding
## 4079 transferrin receptor binding
## 4080 translation activator activity
## 4081 transmembrane receptor protein serine/threonine kinase activity
## 4082 tRNA pseudouridine synthesis
## 4083 tRNA transcription by RNA polymerase III
## 4084 tRNA-splicing ligase complex
## 4085 tubulin complex assembly
## 4086 type 1 angiotensin receptor binding
## 4087 type B pancreatic cell development
## 4088 ubiquitin-dependent SMAD protein catabolic process
## 4089 ubiquitin-like modifier activating enzyme activity
## 4090 uniplex complex
## 4091 unmethylated CpG binding
## 4092 urogenital system development
## 4093 vascular wound healing
## 4094 VCP-NPL4-UFD1 AAA ATPase complex
## 4095 ventricular cardiac muscle cell action potential
## 4096 ventricular cardiac muscle cell development
## 4097 ventricular trabecula myocardium morphogenesis
## 4098 very long-chain fatty acid catabolic process
## 4099 very-long-chain 3-ketoacyl-CoA synthase activity
## 4100 vesicle cargo loading
## 4101 vesicle fusion with endoplasmic reticulum-Golgi intermediate compartment (ERGIC) membrane
## 4102 vesicle fusion with Golgi apparatus
## 4103 viral budding
## 4104 viral genome replication
## 4105 viral translation
## 4106 virion binding
## 4107 voltage-gated sodium channel activity
## 4108 white fat cell differentiation
## 4109 Wnt signalosome
## 4110 Wnt-activated receptor activity
## 4111 wound healing, spreading of cells
## 4112 XY body
## 4113 zymogen granule membrane
## 4114 'de novo' IMP biosynthetic process
## 4115 [2Fe-2S] cluster assembly
## 4116 1-acyl-2-lysophosphatidylserine acylhydrolase activity
## 4117 1-acylglycerophosphocholine O-acyltransferase activity
## 4118 1-alkyl-2-acetylglycerophosphocholine esterase activity
## 4119 3-hydroxy-arachidoyl-CoA dehydratase activity
## 4120 3-hydroxy-behenoyl-CoA dehydratase activity
## 4121 3-hydroxy-lignoceroyl-CoA dehydratase activity
## 4122 3-hydroxyacyl-CoA dehydratase activity
## 4123 3' overhang single-stranded DNA endodeoxyribonuclease activity
## 4124 3'-5'-exodeoxyribonuclease activity
## 4125 3'-phosphoadenosine 5'-phosphosulfate biosynthetic process
## 4126 5S class rRNA transcription by RNA polymerase III
## 4127 7SK snRNP
## 4128 abscission
## 4129 acetyl-CoA C-acetyltransferase activity
## 4130 acetylcholine receptor binding
## 4131 acid phosphatase activity
## 4132 actin crosslink formation
## 4133 actin filament network formation
## 4134 actin filament reorganization
## 4135 activation of protein kinase A activity
## 4136 activation-induced cell death of T cells
## 4137 acyl carnitine transmembrane transport
## 4138 acyl-CoA hydrolase activity
## 4139 acylglycerol lipase activity
## 4140 adenylate cyclase activator activity
## 4141 adenylate cyclase binding
## 4142 adenylate cyclase-activating adrenergic receptor signaling pathway
## 4143 aflatoxin metabolic process
## 4144 alditol:NADP+ 1-oxidoreductase activity
## 4145 alpha-actinin binding
## 4146 alpha-beta T cell receptor complex
## 4147 alveolar lamellar body
## 4148 amelogenesis
## 4149 aminoacyl-tRNA editing activity
## 4150 aminophospholipid translocation
## 4151 ammonium transmembrane transporter activity
## 4152 AMP biosynthetic process
## 4153 amyloid precursor protein metabolic process
## 4154 amyloid-beta metabolic process
## 4155 anchored component of synaptic vesicle membrane
## 4156 androgen biosynthetic process
## 4157 androgen receptor signaling pathway
## 4158 angiotensin maturation
## 4159 animal organ development
## 4160 antigen receptor-mediated signaling pathway
## 4161 antimicrobial humoral response
## 4162 AP-4 adaptor complex
## 4163 AP-type membrane coat adaptor complex
## 4164 apolipoprotein A-I binding
## 4165 apolipoprotein A-I-mediated signaling pathway
## 4166 apoptotic nuclear changes
## 4167 apoptotic process involved in morphogenesis
## 4168 arachidonate-CoA ligase activity
## 4169 arginine binding
## 4170 arginine transport
## 4171 Arp2/3 protein complex
## 4172 aspartic-type endopeptidase inhibitor activity
## 4173 astrocyte cell migration
## 4174 astrocyte development
## 4175 ATPase inhibitor activity
## 4176 ATPase-coupled cation transmembrane transporter activity
## 4177 ATPase-coupled glutathione S-conjugate transmembrane transporter activity
## 4178 ATPase-coupled peptide antigen transmembrane transporter activity
## 4179 ATPase-coupled xenobiotic transmembrane transporter activity
## 4180 atrial septum development
## 4181 atrial septum morphogenesis
## 4182 atrioventricular canal development
## 4183 attachment of GPI anchor to protein
## 4184 autophagic cell death
## 4185 axolemma
## 4186 axon development
## 4187 axon ensheathment
## 4188 axon hillock
## 4189 axonal transport of mitochondrion
## 4190 axoneme assembly
## 4191 azurophil granule
## 4192 B cell apoptotic process
## 4193 B cell mediated immunity
## 4194 B cell receptor complex
## 4195 basal cortex
## 4196 basement membrane assembly
## 4197 basic amino acid transmembrane transport
## 4198 behavioral fear response
## 4199 beta-1 adrenergic receptor binding
## 4200 beta-2-microglobulin binding
## 4201 beta-adrenergic receptor kinase activity
## 4202 beta-catenin destruction complex assembly
## 4203 bleb assembly
## 4204 BLOC-2 complex
## 4205 blood coagulation, intrinsic pathway
## 4206 blood vessel maturation
## 4207 BMP receptor activity
## 4208 BMP receptor binding
## 4209 box C/D snoRNP complex
## 4210 bradykinin catabolic process
## 4211 BRCA1-BARD1 complex
## 4212 BRISC complex
## 4213 bubble DNA binding
## 4214 C-X3-C chemokine binding
## 4215 C2H2 zinc finger domain binding
## 4216 calcium activated cation channel activity
## 4217 calcium activated phospholipid scrambling
## 4218 calcium ion homeostasis
## 4219 calcium transmembrane transporter activity, phosphorylative mechanism
## 4220 calcium-independent phospholipase A2 activity
## 4221 calcium-mediated signaling using intracellular calcium source
## 4222 calmodulin-dependent protein kinase activity
## 4223 cAMP binding
## 4224 carbohydrate biosynthetic process
## 4225 carbonate dehydratase activity
## 4226 carbonyl reductase (NADPH) activity
## 4227 CARD domain binding
## 4228 cardiac conduction system development
## 4229 cardiac muscle fiber development
## 4230 cardiac muscle hypertrophy in response to stress
## 4231 carnitine shuttle
## 4232 catecholamine metabolic process
## 4233 cation:chloride symporter activity
## 4234 Cdc73/Paf1 complex
## 4235 CDP-choline pathway
## 4236 cell cycle phase transition
## 4237 cell growth involved in cardiac muscle cell development
## 4238 cell-cell adhesion mediated by integrin
## 4239 cell-cell adhesion mediator activity
## 4240 cell-cell junction maintenance
## 4241 cellular aldehyde metabolic process
## 4242 cellular chloride ion homeostasis
## 4243 cellular extravasation
## 4244 cellular heat acclimation
## 4245 cellular homeostasis
## 4246 cellular lipid catabolic process
## 4247 cellular phosphate ion homeostasis
## 4248 cellular response to brain-derived neurotrophic factor stimulus
## 4249 cellular response to caffeine
## 4250 cellular response to camptothecin
## 4251 cellular response to cisplatin
## 4252 cellular response to copper ion
## 4253 cellular response to cycloheximide
## 4254 cellular response to decreased oxygen levels
## 4255 cellular response to follicle-stimulating hormone stimulus
## 4256 cellular response to glucagon stimulus
## 4257 cellular response to glucocorticoid stimulus
## 4258 cellular response to hydroperoxide
## 4259 cellular response to hydrostatic pressure
## 4260 cellular response to L-glutamate
## 4261 cellular response to leucine starvation
## 4262 cellular response to lipid
## 4263 cellular response to lipoteichoic acid
## 4264 cellular response to lithium ion
## 4265 cellular response to magnesium ion
## 4266 cellular response to molecule of bacterial origin
## 4267 cellular response to morphine
## 4268 cellular response to nicotine
## 4269 cellular response to nitrogen starvation
## 4270 cellular response to pH
## 4271 cellular response to phorbol 13-acetate 12-myristate
## 4272 cellular response to potassium ion
## 4273 cellular response to staurosporine
## 4274 cellular response to testosterone stimulus
## 4275 cellular response to thyroid hormone stimulus
## 4276 cellular response to xenobiotic stimulus
## 4277 central nervous system neuron development
## 4278 centralspindlin complex
## 4279 centriole assembly
## 4280 ceramide 1-phosphate binding
## 4281 ceramide 1-phosphate transfer activity
## 4282 ceramide 1-phosphate transport
## 4283 cerebellar cortex formation
## 4284 cerebellum morphogenesis
## 4285 cerebrospinal fluid circulation
## 4286 cGMP binding
## 4287 channel activity
## 4288 chemokine (C-C motif) ligand 21 signaling pathway
## 4289 chemokine activity
## 4290 chloride ion homeostasis
## 4291 chloride transmembrane transporter activity
## 4292 cholinergic synapse
## 4293 chondrocyte proliferation
## 4294 chromatin insulator sequence binding
## 4295 CIA complex
## 4296 class I DNA-(apurinic or apyrimidinic site) endonuclease activity
## 4297 clathrin complex
## 4298 clathrin light chain binding
## 4299 cleavage involved in rRNA processing
## 4300 co-SMAD binding
## 4301 coated vesicle
## 4302 cobalamin binding
## 4303 coenzyme A metabolic process
## 4304 complement activation, alternative pathway
## 4305 connective tissue replacement involved in inflammatory response wound healing
## 4306 constitutive secretory pathway
## 4307 COP9 signalosome assembly
## 4308 COPI coating of Golgi vesicle
## 4309 copper ion transport
## 4310 coronary artery morphogenesis
## 4311 corpus callosum morphogenesis
## 4312 CORVET complex
## 4313 costamere
## 4314 cranial skeletal system development
## 4315 craniofacial suture morphogenesis
## 4316 CTP salvage
## 4317 Cul4A-RING E3 ubiquitin ligase complex
## 4318 cupric ion binding
## 4319 cuprous ion binding
## 4320 cyclic nucleotide biosynthetic process
## 4321 cyclin-dependent protein kinase activity
## 4322 cyclosporin A binding
## 4323 cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## 4324 cytochrome-b5 reductase activity, acting on NAD(P)H
## 4325 cytolysis
## 4326 cytoplasmic sequestering of NF-kappaB
## 4327 D1 dopamine receptor binding
## 4328 daunorubicin metabolic process
## 4329 de novo centriole assembly involved in multi-ciliated epithelial cell differentiation
## 4330 DEAD/H-box RNA helicase binding
## 4331 death-inducing signaling complex
## 4332 defense response to tumor cell
## 4333 delta DNA polymerase complex
## 4334 demethylation
## 4335 dendrite extension
## 4336 dendrite self-avoidance
## 4337 dendritic spine maintenance
## 4338 dendritic spine neck
## 4339 dense body
## 4340 deoxyribonucleoside monophosphate biosynthetic process
## 4341 Derlin-1 retrotranslocation complex
## 4342 dermatan sulfate proteoglycan biosynthetic process
## 4343 detection of bacterium
## 4344 detection of temperature stimulus involved in sensory perception of pain
## 4345 detection of virus
## 4346 deuterosome
## 4347 developmental pigmentation
## 4348 developmental process
## 4349 developmental process involved in reproduction
## 4350 digestive tract morphogenesis
## 4351 dipeptide import across plasma membrane
## 4352 dipeptide transmembrane transporter activity
## 4353 dipeptidyl-peptidase activity
## 4354 DNA catabolic process, endonucleolytic
## 4355 DNA damage induced protein phosphorylation
## 4356 DNA methylation-dependent heterochromatin assembly
## 4357 DNA N-glycosylase activity
## 4358 DNA repair complex
## 4359 DNA replication, removal of RNA primer
## 4360 DNA topoisomerase type I (single strand cut, ATP-independent) activity
## 4361 dolichyl-diphosphooligosaccharide-protein glycotransferase activity
## 4362 dopaminergic neuron differentiation
## 4363 dorsal aorta morphogenesis
## 4364 doxorubicin metabolic process
## 4365 dTTP biosynthetic process
## 4366 early phagosome
## 4367 EARP complex
## 4368 eating behavior
## 4369 efflux transmembrane transporter activity
## 4370 Elg1 RFC-like complex
## 4371 embryo development ending in birth or egg hatching
## 4372 embryonic body morphogenesis
## 4373 embryonic placenta morphogenesis
## 4374 embryonic retina morphogenesis in camera-type eye
## 4375 endoplasmic reticulum tubular network organization
## 4376 endoplasmic reticulum-plasma membrane contact site
## 4377 endosome to lysosome transport via multivesicular body sorting pathway
## 4378 endothelial cell chemotaxis
## 4379 endothelial cell development
## 4380 endothelial to hematopoietic transition
## 4381 engulfment of apoptotic cell
## 4382 eosinophil degranulation
## 4383 epithelial cell development
## 4384 epithelial cilium movement involved in extracellular fluid movement
## 4385 equatorial microtubule organizing center
## 4386 ER membrane protein complex
## 4387 ER overload response
## 4388 ERBB signaling pathway
## 4389 ErbB-2 class receptor binding
## 4390 ERCC4-ERCC1 complex
## 4391 ESCRT II complex
## 4392 ESCRT-0 complex
## 4393 establishment of apical/basal cell polarity
## 4394 establishment of integrated proviral latency
## 4395 establishment of T cell polarity
## 4396 establishment or maintenance of microtubule cytoskeleton polarity
## 4397 establishment or maintenance of transmembrane electrochemical gradient
## 4398 ether lipid biosynthetic process
## 4399 eukaryotic initiation factor eIF2 binding
## 4400 eukaryotic translation elongation factor 1 complex
## 4401 exocytic vesicle
## 4402 exonucleolytic trimming to generate mature 3'-end of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 4403 exopeptidase activity
## 4404 export across plasma membrane
## 4405 extracellular ligand-gated ion channel activity
## 4406 extracellular matrix assembly
## 4407 extracellular matrix constituent conferring elasticity
## 4408 eye photoreceptor cell development
## 4409 F-actin capping protein complex
## 4410 FANCM-MHF complex
## 4411 FAR/SIN/STRIPAK complex
## 4412 fatty acid transmembrane transporter activity
## 4413 Fc receptor mediated inhibitory signaling pathway
## 4414 female meiosis chromosome segregation
## 4415 flavonoid metabolic process
## 4416 folic acid transport
## 4417 forebrain morphogenesis
## 4418 formation of translation preinitiation complex
## 4419 fructose catabolic process to hydroxyacetone phosphate and glyceraldehyde-3-phosphate
## 4420 fructose transmembrane transport
## 4421 fructose transmembrane transporter activity
## 4422 fucose metabolic process
## 4423 G protein-coupled adenosine receptor signaling pathway
## 4424 G protein-coupled glutamate receptor signaling pathway
## 4425 G protein-coupled peptide receptor activity
## 4426 G protein-coupled receptor internalization
## 4427 G protein-coupled receptor kinase activity
## 4428 G-protein beta-subunit binding
## 4429 GAIT complex
## 4430 galactose catabolic process
## 4431 galactose catabolic process via UDP-galactose
## 4432 gamma-tubulin small complex
## 4433 ganglioside biosynthetic process
## 4434 GATOR2 complex
## 4435 general transcription initiation factor activity
## 4436 generation of catalytic spliceosome for first transesterification step
## 4437 generation of neurons
## 4438 genitalia development
## 4439 germinal center B cell differentiation
## 4440 germinal center formation
## 4441 GET complex
## 4442 GID complex
## 4443 gland morphogenesis
## 4444 glial cell apoptotic process
## 4445 glucose 6-phosphate metabolic process
## 4446 glucose binding
## 4447 glucose-6-phosphate transport
## 4448 glucuronosyltransferase activity
## 4449 glucuronylgalactosylproteoglycan 4-beta-N-acetylgalactosaminyltransferase activity
## 4450 glutathione binding
## 4451 glutathione catabolic process
## 4452 glutathione hydrolase activity
## 4453 glycerol catabolic process
## 4454 glycerol-3-phosphate metabolic process
## 4455 glycerophospholipid catabolic process
## 4456 glycine biosynthetic process
## 4457 glycolipid binding
## 4458 glycolipid biosynthetic process
## 4459 glycolipid transport
## 4460 glycoprotein transport
## 4461 glycosylphosphatidylinositol-N-acetylglucosaminyltransferase (GPI-GnT) complex
## 4462 Golgi apparatus mannose trimming
## 4463 Golgi vesicle budding
## 4464 GPI anchor metabolic process
## 4465 growth cone filopodium
## 4466 growth hormone receptor binding
## 4467 growth hormone receptor signaling pathway via JAK-STAT
## 4468 growth hormone secretion
## 4469 guanine/thymine mispair binding
## 4470 guanosine-diphosphatase activity
## 4471 guanyl-nucleotide exchange factor complex
## 4472 H3 histone acetyltransferase activity
## 4473 hard palate development
## 4474 heart contraction
## 4475 heart valve morphogenesis
## 4476 hematopoietic stem cell proliferation
## 4477 hemidesmosome assembly
## 4478 hemoglobin complex
## 4479 hepatocyte differentiation
## 4480 hepatocyte proliferation
## 4481 heterochromatin assembly
## 4482 heteromeric SMAD protein complex
## 4483 high-density lipoprotein particle assembly
## 4484 high-density lipoprotein particle clearance
## 4485 high-density lipoprotein particle remodeling
## 4486 histidine catabolic process
## 4487 histone acetyltransferase activity (H3-K23 specific)
## 4488 histone demethylase activity (H3-dimethyl-K4 specific)
## 4489 histone demethylase activity (H3-K4 specific)
## 4490 histone demethylase activity (H3-trimethyl-K4 specific)
## 4491 histone demethylation
## 4492 histone glutamine methylation
## 4493 histone H2A ubiquitination
## 4494 histone H2A-K119 monoubiquitination
## 4495 histone H2B acetylation
## 4496 histone H2B conserved C-terminal lysine deubiquitination
## 4497 histone H3-K23 acetylation
## 4498 histone H3-K27 methylation
## 4499 histone H3-K9 methylation
## 4500 histone H4-K12 acetylation
## 4501 histone H4-R3 methylation
## 4502 histone kinase activity
## 4503 histone methyltransferase activity (H3-K27 specific)
## 4504 histone serine kinase activity
## 4505 histone ubiquitination
## 4506 hyalurononglucosaminidase activity
## 4507 hypoglycin A gamma-glutamyl transpeptidase activity
## 4508 hypomethylation of CpG island
## 4509 hypothalamus development
## 4510 IgG binding
## 4511 immune response-activating cell surface receptor signaling pathway
## 4512 immune response-regulating cell surface receptor signaling pathway
## 4513 immunoglobulin mediated immune response
## 4514 immunoglobulin receptor binding
## 4515 IMP metabolic process
## 4516 import across plasma membrane
## 4517 induction of positive chemotaxis
## 4518 inflammasome complex
## 4519 inner dynein arm assembly
## 4520 inorganic anion exchanger activity
## 4521 inorganic cation transmembrane transport
## 4522 inositol 1,3,4,5 tetrakisphosphate binding
## 4523 inositol 1,4,5 trisphosphate binding
## 4524 inositol lipid-mediated signaling
## 4525 inositol metabolic process
## 4526 inositol-1,3,4,5-tetrakisphosphate 5-phosphatase activity
## 4527 insulin receptor signaling pathway via phosphatidylinositol 3-kinase
## 4528 insulin-like growth factor binding
## 4529 insulin-responsive compartment
## 4530 integral component of cytoplasmic side of endoplasmic reticulum membrane
## 4531 integral component of lysosomal membrane
## 4532 integral component of presynaptic active zone membrane
## 4533 interchromatin granule
## 4534 interkinetic nuclear migration
## 4535 interleukin-18-mediated signaling pathway
## 4536 intermediate filament organization
## 4537 intestinal epithelial cell differentiation
## 4538 intracellular anatomical structure
## 4539 intracellular protein transmembrane transport
## 4540 intracellular sequestering of iron ion
## 4541 intracellular vesicle
## 4542 intraciliary transport particle B
## 4543 ion channel complex
## 4544 ionotropic glutamate receptor complex
## 4545 ionotropic glutamate receptor signaling pathway
## 4546 iris morphogenesis
## 4547 ISG15 transferase activity
## 4548 ISG15-protein conjugation
## 4549 isocitrate metabolic process
## 4550 isoleucine catabolic process
## 4551 isopentenyl diphosphate biosynthetic process, mevalonate pathway
## 4552 JUN kinase kinase kinase activity
## 4553 juxtaparanode region of axon
## 4554 keratin filament binding
## 4555 kidney morphogenesis
## 4556 L-alpha-amino acid transmembrane transport
## 4557 L-amino acid transmembrane transporter activity
## 4558 L-lysine transmembrane transport
## 4559 L-serine biosynthetic process
## 4560 labyrinthine layer development
## 4561 lactate transmembrane transport
## 4562 lactate transmembrane transporter activity
## 4563 lamin filament
## 4564 late endosome to lysosome transport
## 4565 leukocyte chemotaxis
## 4566 leukocyte migration involved in inflammatory response
## 4567 leukotriene C4 gamma-glutamyl transferase activity
## 4568 leukotriene D4 biosynthetic process
## 4569 leukotriene metabolic process
## 4570 leukotriene transport
## 4571 lipase activity
## 4572 lipase binding
## 4573 lipid glycosylation
## 4574 lipid kinase activity
## 4575 lipid phosphatase activity
## 4576 lipid transfer activity
## 4577 lipid transporter activity
## 4578 lipopolysaccharide immune receptor activity
## 4579 lipoprotein catabolic process
## 4580 locomotory exploration behavior
## 4581 long-chain fatty acyl-CoA binding
## 4582 low-density lipoprotein particle remodeling
## 4583 LRR domain binding
## 4584 Lsm1-7-Pat1 complex
## 4585 LUBAC complex
## 4586 lymphocyte chemotaxis
## 4587 lymphocyte proliferation
## 4588 lysophosphatidic acid acyltransferase activity
## 4589 macrophage colony-stimulating factor signaling pathway
## 4590 magnesium ion transport
## 4591 maintenance of mitotic sister chromatid cohesion
## 4592 malate metabolic process
## 4593 male genitalia development
## 4594 male germ cell nucleus
## 4595 mammary gland alveolus development
## 4596 mammary gland branching involved in thelarche
## 4597 mammary gland epithelial cell proliferation
## 4598 mannosidase activity
## 4599 mast cell degranulation
## 4600 maturation of 5.8S rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 4601 MDA-5 signaling pathway
## 4602 mechanosensitive ion channel activity
## 4603 mediator complex binding
## 4604 medium-chain fatty acid metabolic process
## 4605 meiotic sister chromatid cohesion, centromeric
## 4606 meiotic spindle organization
## 4607 melanin biosynthetic process
## 4608 melanosome membrane
## 4609 membrane depolarization during action potential
## 4610 membrane raft polarization
## 4611 mercury ion binding
## 4612 mesodermal cell differentiation
## 4613 methenyltetrahydrofolate cyclohydrolase activity
## 4614 methylenetetrahydrofolate dehydrogenase (NAD+) activity
## 4615 methylumbelliferyl-acetate deacetylase activity
## 4616 MHC class I receptor activity
## 4617 MHC class II protein binding
## 4618 MHC protein binding
## 4619 MICOS complex
## 4620 microtubule-severing ATPase activity
## 4621 miRNA catabolic process
## 4622 mismatch repair complex
## 4623 mitochondrial alpha-ketoglutarate dehydrogenase complex
## 4624 mitochondrial crista
## 4625 mitochondrial intermembrane space protein transporter complex
## 4626 mitochondrial membrane organization
## 4627 mitochondrial promoter sequence-specific DNA binding
## 4628 mitochondrial pyruvate dehydrogenase complex
## 4629 mitochondrial transmembrane transport
## 4630 mitochondrion distribution
## 4631 mitogen-activated protein kinase p38 binding
## 4632 mitophagy
## 4633 mitotic centrosome separation
## 4634 mitotic cytokinesis checkpoint
## 4635 mitotic G2/M transition checkpoint
## 4636 mitotic recombination
## 4637 mitotic sister chromatid cohesion, centromeric
## 4638 mitotic telomere maintenance via semi-conservative replication
## 4639 MKS complex
## 4640 MMXD complex
## 4641 modulation by host of viral RNA genome replication
## 4642 monoamine transport
## 4643 monocarboxylic acid transmembrane transporter activity
## 4644 monocarboxylic acid transport
## 4645 monocyte activation
## 4646 monoubiquitinated histone H2A deubiquitination
## 4647 MPP7-DLG1-LIN7 complex
## 4648 mRNA (2'-O-methyladenosine-N6-)-methyltransferase activity
## 4649 mRNA 3'-splice site recognition
## 4650 mRNA cleavage factor complex
## 4651 mu-type opioid receptor binding
## 4652 mucosal immune response
## 4653 muscle structure development
## 4654 Myb complex
## 4655 myelin assembly
## 4656 myelin sheath abaxonal region
## 4657 myelin sheath adaxonal region
## 4658 myeloid cell homeostasis
## 4659 myoblast fusion
## 4660 myoblast migration
## 4661 N-acetyllactosamine synthase activity
## 4662 N-acylphosphatidylethanolamine metabolic process
## 4663 N-acyltransferase activity
## 4664 N-methyltransferase activity
## 4665 N-terminal peptidyl-lysine acetylation
## 4666 N-terminal protein myristoylation
## 4667 NAD-dependent histone deacetylase activity
## 4668 NADP metabolic process
## 4669 NADPH oxidase complex
## 4670 NADPH regeneration
## 4671 NatC complex
## 4672 natural killer cell degranulation
## 4673 negative regulation by host of viral genome replication
## 4674 negative regulation of adenylate cyclase activity
## 4675 negative regulation of adherens junction organization
## 4676 negative regulation of amyloid fibril formation
## 4677 negative regulation of amyloid precursor protein biosynthetic process
## 4678 negative regulation of appetite
## 4679 negative regulation of Arp2/3 complex-mediated actin nucleation
## 4680 negative regulation of autophagosome maturation
## 4681 negative regulation of axonogenesis
## 4682 negative regulation of B cell activation
## 4683 negative regulation of B cell receptor signaling pathway
## 4684 negative regulation of barbed-end actin filament capping
## 4685 negative regulation of bicellular tight junction assembly
## 4686 negative regulation of biomineral tissue development
## 4687 negative regulation of blood pressure
## 4688 negative regulation of calcium ion transport
## 4689 negative regulation of calcium ion-dependent exocytosis
## 4690 negative regulation of calcium-mediated signaling
## 4691 negative regulation of cAMP-dependent protein kinase activity
## 4692 negative regulation of cAMP-mediated signaling
## 4693 negative regulation of cellular protein catabolic process
## 4694 negative regulation of chemokine (C-X-C motif) ligand 2 production
## 4695 negative regulation of cholesterol biosynthetic process
## 4696 negative regulation of chondrocyte differentiation
## 4697 negative regulation of chromatin silencing
## 4698 negative regulation of cyclic-nucleotide phosphodiesterase activity
## 4699 negative regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## 4700 negative regulation of cytokinesis
## 4701 negative regulation of defense response to virus
## 4702 negative regulation of dendritic spine development
## 4703 negative regulation of DNA biosynthetic process
## 4704 negative regulation of DNA damage checkpoint
## 4705 negative regulation of endoplasmic reticulum unfolded protein response
## 4706 negative regulation of epithelial cell proliferation involved in prostate gland development
## 4707 negative regulation of ERBB signaling pathway
## 4708 negative regulation of excitatory postsynaptic potential
## 4709 negative regulation of fatty acid biosynthetic process
## 4710 negative regulation of glucocorticoid receptor signaling pathway
## 4711 negative regulation of heart contraction
## 4712 negative regulation of heterotypic cell-cell adhesion
## 4713 negative regulation of histone H2A K63-linked ubiquitination
## 4714 negative regulation of interferon-gamma-mediated signaling pathway
## 4715 negative regulation of IP-10 production
## 4716 negative regulation of IRE1-mediated unfolded protein response
## 4717 negative regulation of keratinocyte proliferation
## 4718 negative regulation of lipid catabolic process
## 4719 negative regulation of lymphocyte migration
## 4720 negative regulation of macrophage chemotaxis
## 4721 negative regulation of mammary gland epithelial cell proliferation
## 4722 negative regulation of mesenchymal cell proliferation
## 4723 negative regulation of microglial cell activation
## 4724 negative regulation of mitotic nuclear division
## 4725 negative regulation of monocyte chemotactic protein-1 production
## 4726 negative regulation of multicellular organism growth
## 4727 negative regulation of myelination
## 4728 negative regulation of myosin-light-chain-phosphatase activity
## 4729 negative regulation of natural killer cell mediated cytotoxicity
## 4730 negative regulation of neuron migration
## 4731 negative regulation of ossification
## 4732 negative regulation of p38MAPK cascade
## 4733 negative regulation of peptidyl-cysteine S-nitrosylation
## 4734 negative regulation of PERK-mediated unfolded protein response
## 4735 negative regulation of plasminogen activation
## 4736 negative regulation of platelet-derived growth factor receptor signaling pathway
## 4737 negative regulation of protection from non-homologous end joining at telomere
## 4738 negative regulation of protein ADP-ribosylation
## 4739 negative regulation of protein dephosphorylation
## 4740 negative regulation of protein refolding
## 4741 negative regulation of protein targeting to mitochondrion
## 4742 negative regulation of receptor binding
## 4743 negative regulation of receptor signaling pathway via JAK-STAT
## 4744 negative regulation of response to cytokine stimulus
## 4745 negative regulation of retinoic acid receptor signaling pathway
## 4746 negative regulation of RIG-I signaling pathway
## 4747 negative regulation of signal transduction by p53 class mediator
## 4748 negative regulation of SMAD protein signal transduction
## 4749 negative regulation of smooth muscle cell chemotaxis
## 4750 negative regulation of sprouting angiogenesis
## 4751 negative regulation of striated muscle cell apoptotic process
## 4752 negative regulation of substrate adhesion-dependent cell spreading
## 4753 negative regulation of superoxide anion generation
## 4754 negative regulation of T-helper 17 cell differentiation
## 4755 negative regulation of TORC1 signaling
## 4756 negative regulation of transcription from RNA polymerase II promoter in response to endoplasmic reticulum stress
## 4757 negative regulation of transcription regulatory region DNA binding
## 4758 negative regulation of transforming growth factor beta1 production
## 4759 negative regulation of transposition
## 4760 negative regulation of triglyceride catabolic process
## 4761 negative regulation of vascular endothelial growth factor receptor signaling pathway
## 4762 negative regulation of vascular permeability
## 4763 negative regulation of vascular wound healing
## 4764 nerve growth factor signaling pathway
## 4765 nervous system process
## 4766 netrin-activated signaling pathway
## 4767 neural crest formation
## 4768 neural precursor cell proliferation
## 4769 neurexin family protein binding
## 4770 neuron cell-cell adhesion
## 4771 neuron fate commitment
## 4772 neuronal ribonucleoprotein granule
## 4773 neurotransmitter biosynthetic process
## 4774 neurotransmitter receptor activity
## 4775 neurotransmitter receptor transport, endosome to postsynaptic membrane
## 4776 neutral amino acid transmembrane transporter activity
## 4777 neutral amino acid transport
## 4778 neutrophil extravasation
## 4779 NFAT protein binding
## 4780 nitric-oxide synthase regulator activity
## 4781 non-canonical Wnt signaling pathway
## 4782 nonhomologous end joining complex
## 4783 nose development
## 4784 nuclear envelope lumen
## 4785 nuclear membrane organization
## 4786 nuclear pore cytoplasmic filaments
## 4787 nuclear pore organization
## 4788 nuclear telomere cap complex
## 4789 nuclear transport
## 4790 nucleolar large rRNA transcription by RNA polymerase I
## 4791 nucleoside diphosphate catabolic process
## 4792 nucleoside-triphosphate diphosphatase activity
## 4793 nucleosome mobilization
## 4794 nucleotide biosynthetic process
## 4795 nucleotide-excision repair complex
## 4796 nucleotide-excision repair factor 1 complex
## 4797 O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase activity
## 4798 oligosaccharide catabolic process
## 4799 organic acid binding
## 4800 organic anion transmembrane transporter activity
## 4801 organic cation transport
## 4802 osteoblast development
## 4803 outer dynein arm assembly
## 4804 ovulation
## 4805 oxaloacetate decarboxylase activity
## 4806 oxaloacetate metabolic process
## 4807 oxidative demethylation
## 4808 oxidative DNA demethylation
## 4809 oxidoreductase activity, acting on NAD(P)H, quinone or similar compound as acceptor
## 4810 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, NAD(P)H as one donor, and incorporation of one atom of oxygen
## 4811 oxidoreductase activity, acting on the CH-CH group of donors, NAD or NADP as acceptor
## 4812 oxygen homeostasis
## 4813 oxygen sensor activity
## 4814 paranodal junction
## 4815 pathway-restricted SMAD protein phosphorylation
## 4816 PCAF complex
## 4817 PeBoW complex
## 4818 peptidase activator activity involved in apoptotic process
## 4819 peptide cross-linking
## 4820 peptide hormone binding
## 4821 peptidoglycan binding
## 4822 peptidoglycan transport
## 4823 peptidyl-arginine methylation, to symmetrical-dimethyl arginine
## 4824 peptidyl-arginine omega-N-methylation
## 4825 peptidyl-lysine deacetylation
## 4826 peptidyl-lysine trimethylation
## 4827 pericardium development
## 4828 perichromatin fibrils
## 4829 PERK-mediated unfolded protein response
## 4830 pexophagy
## 4831 phagocytic vesicle lumen
## 4832 phagolysosome
## 4833 phenylalanine-tRNA ligase activity
## 4834 phosphatase activator activity
## 4835 phosphatase inhibitor activity
## 4836 phosphatidylinositol acyl-chain remodeling
## 4837 phosphatidylinositol phosphate 5-phosphatase activity
## 4838 phosphatidylserine 1-acylhydrolase activity
## 4839 phosphatidylserine biosynthetic process
## 4840 phosphatidylserine flippase activity
## 4841 phosphatidylserine metabolic process
## 4842 phospholipase A1 activity
## 4843 phospholipid catabolic process
## 4844 phospholipid-translocating ATPase complex
## 4845 phosphotransferase activity, for other substituted phosphate groups
## 4846 photoreceptor disc membrane
## 4847 pituitary gland development
## 4848 plasma membrane phospholipid scrambling
## 4849 plasma membrane repair
## 4850 platelet activating factor metabolic process
## 4851 platelet alpha granule
## 4852 platelet dense granule membrane
## 4853 platelet-derived growth factor receptor binding
## 4854 pointed-end actin filament capping
## 4855 poly-N-acetyllactosamine biosynthetic process
## 4856 polyamine metabolic process
## 4857 polysaccharide binding
## 4858 porin activity
## 4859 positive regulation by virus of viral protein levels in host cell
## 4860 positive regulation of acute inflammatory response
## 4861 positive regulation of adenylate cyclase activity
## 4862 positive regulation of alpha-beta T cell proliferation
## 4863 positive regulation of amyloid-beta clearance
## 4864 positive regulation of anoikis
## 4865 positive regulation of apoptotic DNA fragmentation
## 4866 positive regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## 4867 positive regulation of axon extension involved in axon guidance
## 4868 positive regulation of binding
## 4869 positive regulation of blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## 4870 positive regulation of calcium ion-dependent exocytosis
## 4871 positive regulation of cAMP-dependent protein kinase activity
## 4872 positive regulation of cap-independent translational initiation
## 4873 positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## 4874 positive regulation of cell activation
## 4875 positive regulation of cell-cell adhesion mediated by integrin
## 4876 positive regulation of cellular protein catabolic process
## 4877 positive regulation of centriole elongation
## 4878 positive regulation of centrosome duplication
## 4879 positive regulation of cholesterol storage
## 4880 positive regulation of cholesterol transport
## 4881 positive regulation of chondrocyte proliferation
## 4882 positive regulation of clathrin-dependent endocytosis
## 4883 positive regulation of collagen fibril organization
## 4884 positive regulation of cysteine-type endopeptidase activity
## 4885 positive regulation of cytokine-mediated signaling pathway
## 4886 positive regulation of cytoplasmic mRNA processing body assembly
## 4887 positive regulation of cytoplasmic translation
## 4888 positive regulation of dendrite extension
## 4889 positive regulation of dendritic cell antigen processing and presentation
## 4890 positive regulation of DNA demethylation
## 4891 positive regulation of DNA-templated transcription, initiation
## 4892 positive regulation of endothelial cell chemotaxis
## 4893 positive regulation of endothelial cell chemotaxis by VEGF-activated vascular endothelial growth factor receptor signaling pathway
## 4894 positive regulation of endothelial cell differentiation
## 4895 positive regulation of endothelial cell-matrix adhesion via fibronectin
## 4896 positive regulation of epidermal growth factor-activated receptor activity
## 4897 positive regulation of epithelial cell apoptotic process
## 4898 positive regulation of ER to Golgi vesicle-mediated transport
## 4899 positive regulation of establishment of protein localization to telomere
## 4900 positive regulation of extrinsic apoptotic signaling pathway in absence of ligand
## 4901 positive regulation of extrinsic apoptotic signaling pathway via death domain receptors
## 4902 positive regulation of fatty acid biosynthetic process
## 4903 positive regulation of fatty acid oxidation
## 4904 positive regulation of fibroblast growth factor receptor signaling pathway
## 4905 positive regulation of glucokinase activity
## 4906 positive regulation of glycogen biosynthetic process
## 4907 positive regulation of granulocyte differentiation
## 4908 positive regulation of granulocyte macrophage colony-stimulating factor production
## 4909 positive regulation of heart rate
## 4910 positive regulation of helicase activity
## 4911 positive regulation of hepatocyte proliferation
## 4912 positive regulation of histone H3-K27 methylation
## 4913 positive regulation of histone methylation
## 4914 positive regulation of inclusion body assembly
## 4915 positive regulation of insulin-like growth factor receptor signaling pathway
## 4916 positive regulation of integrin activation
## 4917 positive regulation of integrin-mediated signaling pathway
## 4918 positive regulation of interferon-gamma-mediated signaling pathway
## 4919 positive regulation of intracellular estrogen receptor signaling pathway
## 4920 positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage
## 4921 positive regulation of lamellipodium morphogenesis
## 4922 positive regulation of leukocyte cell-cell adhesion
## 4923 positive regulation of leukocyte chemotaxis
## 4924 positive regulation of leukocyte migration
## 4925 positive regulation of leukocyte tethering or rolling
## 4926 positive regulation of lipophagy
## 4927 positive regulation of lipopolysaccharide-mediated signaling pathway
## 4928 positive regulation of lipoprotein lipase activity
## 4929 positive regulation of macrophage activation
## 4930 positive regulation of macrophage differentiation
## 4931 positive regulation of macrophage proliferation
## 4932 positive regulation of maintenance of mitotic sister chromatid cohesion
## 4933 positive regulation of melanin biosynthetic process
## 4934 positive regulation of MHC class II biosynthetic process
## 4935 positive regulation of microglial cell activation
## 4936 positive regulation of mitochondrial depolarization
## 4937 positive regulation of mitochondrial fusion
## 4938 positive regulation of mononuclear cell migration
## 4939 positive regulation of mRNA binding
## 4940 positive regulation of mRNA polyadenylation
## 4941 positive regulation of NAD(P)H oxidase activity
## 4942 positive regulation of natural killer cell degranulation
## 4943 positive regulation of necrotic cell death
## 4944 positive regulation of neuron maturation
## 4945 positive regulation of neurotransmitter secretion
## 4946 positive regulation of neutrophil extravasation
## 4947 positive regulation of NK T cell differentiation
## 4948 positive regulation of non-motile cilium assembly
## 4949 positive regulation of oligodendrocyte differentiation
## 4950 positive regulation of osteoblast proliferation
## 4951 positive regulation of osteoclast development
## 4952 positive regulation of peptidyl-lysine acetylation
## 4953 positive regulation of phospholipase activity
## 4954 positive regulation of phospholipid transport
## 4955 positive regulation of positive chemotaxis
## 4956 positive regulation of potassium ion transport
## 4957 positive regulation of programmed cell death
## 4958 positive regulation of protein kinase A signaling
## 4959 positive regulation of protein monoubiquitination
## 4960 positive regulation of protein processing
## 4961 positive regulation of protein transport
## 4962 positive regulation of receptor catabolic process
## 4963 positive regulation of respiratory burst
## 4964 positive regulation of response to cytokine stimulus
## 4965 positive regulation of RNA export from nucleus
## 4966 positive regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## 4967 positive regulation of sequestering of triglyceride
## 4968 positive regulation of signal transduction
## 4969 positive regulation of signaling receptor activity
## 4970 positive regulation of smooth muscle cell apoptotic process
## 4971 positive regulation of smooth muscle contraction
## 4972 positive regulation of snRNA transcription by RNA polymerase II
## 4973 positive regulation of synapse maturation
## 4974 positive regulation of synaptic plasticity
## 4975 positive regulation of synaptic transmission
## 4976 positive regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## 4977 positive regulation of T cell mediated immune response to tumor cell
## 4978 positive regulation of T-helper 1 type immune response
## 4979 positive regulation of T-helper 2 cell cytokine production
## 4980 positive regulation of telomere maintenance via telomere lengthening
## 4981 positive regulation of toll-like receptor 7 signaling pathway
## 4982 positive regulation of transcription factor catabolic process
## 4983 positive regulation of transcription from RNA polymerase II promoter in response to hypoxia
## 4984 positive regulation of transcription from RNA polymerase II promoter in response to stress
## 4985 positive regulation of transcription from RNA polymerase II promoter involved in cellular response to chemical stimulus
## 4986 positive regulation of transcription from RNA polymerase II promoter involved in unfolded protein response
## 4987 positive regulation of translation in response to endoplasmic reticulum stress
## 4988 positive regulation of translational elongation
## 4989 positive regulation of translational termination
## 4990 positive regulation of triglyceride catabolic process
## 4991 positive regulation of trophoblast cell migration
## 4992 positive regulation of type 2 immune response
## 4993 positive regulation of vascular associated smooth muscle cell apoptotic process
## 4994 positive regulation of vasculogenesis
## 4995 positive regulation of viral life cycle
## 4996 positive regulation of viral release from host cell
## 4997 positive regulation of Wnt signaling pathway, planar cell polarity pathway
## 4998 post-chaperonin tubulin folding pathway
## 4999 postsynaptic neurotransmitter receptor internalization
## 5000 potassium ion homeostasis
## 5001 potassium ion leak channel activity
## 5002 potassium:chloride symporter activity
## 5003 potassium:proton antiporter activity
## 5004 pre-miRNA binding
## 5005 prefoldin complex
## 5006 prenylated protein catabolic process
## 5007 prepulse inhibition
## 5008 preribosome
## 5009 presynaptic active zone cytoplasmic component
## 5010 programmed necrotic cell death
## 5011 proteasome-activating ATPase activity
## 5012 protection from non-homologous end joining at telomere
## 5013 protein C-linked glycosylation via 2'-alpha-mannosyl-L-tryptophan
## 5014 protein exit from endoplasmic reticulum
## 5015 protein folding in endoplasmic reticulum
## 5016 protein homotrimerization
## 5017 protein hydroxylation
## 5018 protein import into peroxisome matrix, docking
## 5019 protein import into peroxisome matrix, translocation
## 5020 protein insertion into ER membrane by stop-transfer membrane-anchor sequence
## 5021 protein insertion into mitochondrial inner membrane from matrix
## 5022 protein insertion into mitochondrial membrane involved in apoptotic signaling pathway
## 5023 protein insertion into mitochondrial outer membrane
## 5024 protein K11-linked deubiquitination
## 5025 protein K27-linked ubiquitination
## 5026 protein K29-linked ubiquitination
## 5027 protein K69-linked ufmylation
## 5028 protein kinase A catalytic subunit binding
## 5029 protein kinase C inhibitor activity
## 5030 protein localization to adherens junction
## 5031 protein localization to ciliary membrane
## 5032 protein localization to endosome
## 5033 protein localization to lysosome
## 5034 protein localization to microtubule
## 5035 protein localization to mitochondrion
## 5036 protein localization to nuclear envelope
## 5037 protein N-acetylglucosaminyltransferase activity
## 5038 protein prenylation
## 5039 protein retention in ER lumen
## 5040 protein serine/threonine kinase inhibitor activity
## 5041 protein transmembrane transport
## 5042 protein urmylation
## 5043 protein-arginine omega-N monomethyltransferase activity
## 5044 protein-arginine omega-N symmetric methyltransferase activity
## 5045 protein-cysteine S-stearoyltransferase activity
## 5046 proteoglycan metabolic process
## 5047 proton-exporting ATPase activity, phosphorylative mechanism
## 5048 proton-transporting ATP synthase complex, catalytic core F(1)
## 5049 proton-transporting two-sector ATPase complex
## 5050 proton-transporting V-type ATPase, V1 domain
## 5051 protoporphyrinogen IX biosynthetic process
## 5052 pulmonary valve morphogenesis
## 5053 pyridine nucleotide biosynthetic process
## 5054 pyrimidine nucleobase metabolic process
## 5055 pyrimidine nucleotide biosynthetic process
## 5056 pyrimidine nucleotide-sugar transmembrane transport
## 5057 pyrimidine nucleotide-sugar transmembrane transporter activity
## 5058 pyrroline-5-carboxylate reductase activity
## 5059 pyruvate dehydrogenase (acetyl-transferring) kinase activity
## 5060 R-loop disassembly
## 5061 RAVE complex
## 5062 receptor-mediated endocytosis of virus by host cell
## 5063 recognition of apoptotic cell
## 5064 regulation of Arp2/3 complex-mediated actin nucleation
## 5065 regulation of axon extension
## 5066 regulation of axon regeneration
## 5067 regulation of axonogenesis
## 5068 regulation of bicellular tight junction assembly
## 5069 regulation of bile acid secretion
## 5070 regulation of binding
## 5071 regulation of blood vessel endothelial cell migration
## 5072 regulation of bone mineralization
## 5073 regulation of bone resorption
## 5074 regulation of cardiac muscle cell action potential involved in regulation of contraction
## 5075 regulation of cardiac muscle cell membrane potential
## 5076 regulation of cardiac muscle contraction by regulation of the release of sequestered calcium ion
## 5077 regulation of cartilage development
## 5078 regulation of cell cycle G2/M phase transition
## 5079 regulation of cell junction assembly
## 5080 regulation of cellular ketone metabolic process
## 5081 regulation of cellular metabolic process
## 5082 regulation of cholesterol efflux
## 5083 regulation of cohesin loading
## 5084 regulation of cytochrome-c oxidase activity
## 5085 regulation of defense response to virus
## 5086 regulation of dendritic spine development
## 5087 regulation of dephosphorylation
## 5088 regulation of DNA recombination
## 5089 regulation of DNA-dependent DNA replication initiation
## 5090 regulation of dopamine secretion
## 5091 regulation of double-strand break repair
## 5092 regulation of double-strand break repair via nonhomologous end joining
## 5093 regulation of epithelial cell differentiation
## 5094 regulation of epithelial cell migration
## 5095 regulation of epithelial to mesenchymal transition
## 5096 regulation of feeding behavior
## 5097 regulation of filopodium assembly
## 5098 regulation of gastrulation
## 5099 regulation of genetic imprinting
## 5100 regulation of glucose import
## 5101 regulation of Golgi inheritance
## 5102 regulation of hair cycle
## 5103 regulation of hippo signaling
## 5104 regulation of histone modification
## 5105 regulation of insulin-like growth factor receptor signaling pathway
## 5106 regulation of isotype switching to IgG isotypes
## 5107 regulation of keratinocyte differentiation
## 5108 regulation of leukocyte migration
## 5109 regulation of lipid kinase activity
## 5110 regulation of lysosomal lumen pH
## 5111 regulation of lysosome organization
## 5112 regulation of macrophage activation
## 5113 regulation of mammary gland epithelial cell proliferation
## 5114 regulation of MAP kinase activity
## 5115 regulation of membrane repolarization
## 5116 regulation of metaphase plate congression
## 5117 regulation of microtubule motor activity
## 5118 regulation of microtubule polymerization
## 5119 regulation of microtubule-based process
## 5120 regulation of microvillus assembly
## 5121 regulation of mitochondrial depolarization
## 5122 regulation of mitochondrial membrane permeability
## 5123 regulation of mitochondrial translation
## 5124 regulation of mitotic cell cycle spindle assembly checkpoint
## 5125 regulation of muscle cell differentiation
## 5126 regulation of neural precursor cell proliferation
## 5127 regulation of neuronal synaptic plasticity
## 5128 regulation of NMDA receptor activity
## 5129 regulation of nuclear cell cycle DNA replication
## 5130 regulation of nucleocytoplasmic transport
## 5131 regulation of nucleotide-binding oligomerization domain containing signaling pathway
## 5132 regulation of oxidative phosphorylation
## 5133 regulation of phagocytosis
## 5134 regulation of potassium ion transmembrane transport
## 5135 regulation of protein ADP-ribosylation
## 5136 regulation of protein processing
## 5137 regulation of protein targeting to mitochondrion
## 5138 regulation of reactive oxygen species biosynthetic process
## 5139 regulation of receptor signaling pathway via JAK-STAT
## 5140 regulation of removal of superoxide radicals
## 5141 regulation of respiratory gaseous exchange by nervous system process
## 5142 regulation of response to DNA damage stimulus
## 5143 regulation of ruffle assembly
## 5144 regulation of sensory perception of pain
## 5145 regulation of short-term neuronal synaptic plasticity
## 5146 regulation of skeletal muscle satellite cell proliferation
## 5147 regulation of smooth muscle contraction
## 5148 regulation of sodium ion transmembrane transport
## 5149 regulation of spontaneous synaptic transmission
## 5150 regulation of stem cell division
## 5151 regulation of stem cell proliferation
## 5152 regulation of store-operated calcium entry
## 5153 regulation of striated muscle tissue development
## 5154 regulation of substrate adhesion-dependent cell spreading
## 5155 regulation of systemic arterial blood pressure
## 5156 regulation of T-helper cell differentiation
## 5157 regulation of telomere maintenance via telomerase
## 5158 regulation of Toll signaling pathway
## 5159 regulation of translational fidelity
## 5160 regulation of tumor necrosis factor production
## 5161 regulation of type B pancreatic cell development
## 5162 regulation of ubiquitin-protein transferase activity
## 5163 regulation of vesicle size
## 5164 release of sequestered calcium ion into cytosol by sarcoplasmic reticulum
## 5165 removal of superoxide radicals
## 5166 renal absorption
## 5167 renal system process
## 5168 replication fork arrest
## 5169 replication fork reversal
## 5170 respiratory chain complex IV
## 5171 respiratory chain complex IV assembly
## 5172 response to amine
## 5173 response to antineoplastic agent
## 5174 response to cobalt ion
## 5175 response to dexamethasone
## 5176 response to folic acid
## 5177 response to hypobaric hypoxia
## 5178 response to inorganic substance
## 5179 response to intra-S DNA damage checkpoint signaling
## 5180 response to L-glutamate
## 5181 response to manganese ion
## 5182 response to organophosphorus
## 5183 response to redox state
## 5184 response to sucrose
## 5185 response to superoxide
## 5186 retina layer formation
## 5187 retinal ganglion cell axon guidance
## 5188 retinal rod cell development
## 5189 retinoic acid binding
## 5190 retromer complex binding
## 5191 riboflavin metabolic process
## 5192 ribosomal small subunit export from nucleus
## 5193 ribosomal subunit export from nucleus
## 5194 ripoptosome
## 5195 RNA 3' uridylation
## 5196 RNA adenylyltransferase activity
## 5197 RNA polymerase I general transcription initiation factor activity
## 5198 RNA polymerase II preinitiation complex assembly
## 5199 RNA polymerase II-specific DNA-binding transcription factor binding
## 5200 RNA polymerase III type 3 promoter sequence-specific DNA binding
## 5201 RNA uridylyltransferase activity
## 5202 RNA-dependent ATPase activity
## 5203 RNA-DNA hybrid ribonuclease activity
## 5204 RQC complex
## 5205 rRNA 2'-O-methylation
## 5206 ruffle assembly
## 5207 sarcoplasm
## 5208 SCF complex assembly
## 5209 Schwann cell development
## 5210 sebaceous gland development
## 5211 secondary active sulfate transmembrane transporter activity
## 5212 secondary palate development
## 5213 secretion of lysosomal enzymes
## 5214 selenium binding
## 5215 sensory perception
## 5216 sequestering of TGFbeta in extracellular matrix
## 5217 Sertoli cell development
## 5218 Sertoli cell proliferation
## 5219 short-term memory
## 5220 signal peptidase complex
## 5221 signal recognition particle binding
## 5222 signal transduction in response to DNA damage
## 5223 Sin3-type complex
## 5224 siRNA loading onto RISC involved in RNA interference
## 5225 site of polarized growth
## 5226 sleep
## 5227 SMAD protein complex
## 5228 small molecule binding
## 5229 small nucleolar ribonucleoprotein complex
## 5230 smooth muscle cell differentiation
## 5231 smooth muscle contraction
## 5232 snoRNA localization
## 5233 snRNA transcription by RNA polymerase III
## 5234 sodium ion binding
## 5235 sodium:proton antiporter activity
## 5236 somatic recombination of immunoglobulin gene segments
## 5237 somatodendritic compartment
## 5238 somite development
## 5239 sorting endosome
## 5240 spectrin
## 5241 sperm annulus
## 5242 sperm principal piece
## 5243 sphingosine biosynthetic process
## 5244 sphingosine metabolic process
## 5245 sphingosine-1-phosphate receptor activity
## 5246 spinal cord motor neuron differentiation
## 5247 spindle assembly involved in female meiosis I
## 5248 spindle assembly involved in meiosis
## 5249 spongiotrophoblast layer development
## 5250 stereocilium tip
## 5251 sterol esterase activity
## 5252 store-operated calcium entry
## 5253 strand invasion
## 5254 substrate-dependent cell migration, cell extension
## 5255 sulfatide binding
## 5256 sulfur amino acid catabolic process
## 5257 sulfurtransferase activity
## 5258 super elongation complex
## 5259 supercoiled DNA binding
## 5260 superoxide-generating NAD(P)H oxidase activity
## 5261 synaptic transmission, dopaminergic
## 5262 synaptic vesicle priming
## 5263 synaptic vesicle recycling
## 5264 synaptic vesicle uncoating
## 5265 synaptobrevin 2-SNAP-25-syntaxin-1a complex
## 5266 T cell activation involved in immune response
## 5267 T cell chemotaxis
## 5268 T cell migration
## 5269 T cell selection
## 5270 T-helper 1 cell differentiation
## 5271 tangential migration from the subventricular zone to the olfactory bulb
## 5272 TAP1 binding
## 5273 targeting of mRNA for destruction involved in RNA interference
## 5274 Tat protein binding
## 5275 telomeric D-loop disassembly
## 5276 telomeric DNA-containing double minutes formation
## 5277 temperature homeostasis
## 5278 tertiary granule
## 5279 testosterone dehydrogenase (NAD+) activity
## 5280 tetrahydrobiopterin metabolic process
## 5281 tetrahydrofolate biosynthetic process
## 5282 tetraspanin-enriched microdomain
## 5283 thiamine pyrophosphate binding
## 5284 tissue morphogenesis
## 5285 tissue remodeling
## 5286 Toll signaling pathway
## 5287 Toll-like receptor binding
## 5288 toxin transmembrane transporter activity
## 5289 trachea cartilage development
## 5290 TRAIL-activated apoptotic signaling pathway
## 5291 transaminase activity
## 5292 transcription elongation from RNA polymerase I promoter
## 5293 transcription factor TFIIA complex
## 5294 transcription factor TFIIIC complex
## 5295 transcytosis
## 5296 transferase activity, transferring pentosyl groups
## 5297 transformation of host cell by virus
## 5298 transmembrane receptor protein tyrosine kinase activator activity
## 5299 transmembrane receptor protein tyrosine phosphatase activity
## 5300 transmembrane-ephrin receptor activity
## 5301 transmitter-gated ion channel activity involved in regulation of postsynaptic membrane potential
## 5302 transsulfuration
## 5303 traversing start control point of mitotic cell cycle
## 5304 triglyceride biosynthetic process
## 5305 triglyceride catabolic process
## 5306 triglyceride homeostasis
## 5307 tRNA (cytosine-5-)-methyltransferase activity
## 5308 tRNA dihydrouridine synthase activity
## 5309 tRNA dihydrouridine synthesis
## 5310 tRNA pseudouridine synthase activity
## 5311 tRNA thio-modification
## 5312 tRNA wobble position uridine thiolation
## 5313 trophoblast giant cell differentiation
## 5314 tumor necrosis factor binding
## 5315 tumor necrosis factor receptor superfamily complex
## 5316 tumor necrosis factor-activated receptor activity
## 5317 type 5 metabotropic glutamate receptor binding
## 5318 type B pancreatic cell proliferation
## 5319 tyrosine phosphorylation of STAT protein
## 5320 U1 snRNP binding
## 5321 U2 snRNA binding
## 5322 U4 snRNA 3'-end processing
## 5323 U4/U6 snRNP
## 5324 U7 snRNA binding
## 5325 ubiquitin ligase activator activity
## 5326 ubiquitin-dependent protein catabolic process via the N-end rule pathway
## 5327 ubiquitin-like protein conjugating enzyme binding
## 5328 UDP-N-acetylgalactosamine metabolic process
## 5329 UMP salvage
## 5330 unconventional myosin complex
## 5331 uridine kinase activity
## 5332 uridine-diphosphatase activity
## 5333 uterus morphogenesis
## 5334 UTP biosynthetic process
## 5335 V(D)J recombination
## 5336 vacuolar proton-transporting V-type ATPase, V0 domain
## 5337 vacuole organization
## 5338 varicosity
## 5339 vascular endothelial growth factor receptor binding
## 5340 VCB complex
## 5341 very-long-chain 3-hydroxyacyl-CoA dehydratase activity
## 5342 very-long-chain-acyl-CoA dehydrogenase activity
## 5343 very-low-density lipoprotein particle
## 5344 very-low-density lipoprotein particle receptor activity
## 5345 vesicle tethering to Golgi
## 5346 vinculin binding
## 5347 voltage-gated chloride channel activity
## 5348 voltage-gated potassium channel activity involved in cardiac muscle cell action potential repolarization
## 5349 volume-sensitive chloride channel activity
## 5350 xenobiotic catabolic process
## 5351 xenobiotic detoxification by transmembrane export across the plasma membrane
## 5352 xenobiotic transmembrane transporter activity
## 5353 zeta DNA polymerase complex
## 5354 'de novo' AMP biosynthetic process
## 5355 'de novo' posttranslational protein folding
## 5356 'de novo' pyrimidine nucleobase biosynthetic process
## 5357 (1->3)-beta-D-glucan binding
## 5358 1-alkyl-2-acetylglycerophosphocholine esterase complex
## 5359 1-alkylglycerophosphocholine O-acetyltransferase activity
## 5360 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate biosynthetic process
## 5361 1-phosphatidylinositol 4-kinase activity
## 5362 1-phosphatidylinositol-5-phosphate 4-kinase activity
## 5363 1,4-alpha-oligoglucan phosphorylase activity
## 5364 10-formyltetrahydrofolate biosynthetic process
## 5365 2-(3-amino-3-carboxypropyl)histidine synthase activity
## 5366 3-beta-hydroxy-delta5-steroid dehydrogenase activity
## 5367 3'-5' RNA helicase activity
## 5368 3M complex
## 5369 4-galactosyl-N-acetylglucosaminide 3-alpha-L-fucosyltransferase activity
## 5370 5-phosphoribose 1-diphosphate biosynthetic process
## 5371 5.8S rRNA binding
## 5372 5'-3' exodeoxyribonuclease activity
## 5373 5'-deoxyribose-5-phosphate lyase activity
## 5374 6-phosphofructokinase activity
## 5375 6-phosphofructokinase complex
## 5376 7S RNA binding
## 5377 8-hydroxy-2'-deoxyguanosine DNA binding
## 5378 9+0 non-motile cilium
## 5379 A-type (transient outward) potassium channel activity
## 5380 abortive mitotic cell cycle
## 5381 acetate-CoA ligase activity
## 5382 acetyl-CoA binding
## 5383 acetyl-CoA C-myristoyltransferase activity
## 5384 acetyl-CoA hydrolase activity
## 5385 acetyl-CoA metabolic process
## 5386 acetylcholine receptor activity
## 5387 acetylcholine-gated cation-selective channel activity
## 5388 acetylcholine-gated channel complex
## 5389 aconitate hydratase activity
## 5390 acrosomal vesicle exocytosis
## 5391 actin filament fragmentation
## 5392 activated T cell proliferation
## 5393 activation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## 5394 activation of immune response
## 5395 activation of phospholipase D activity
## 5396 activation of protein kinase C activity
## 5397 activation of store-operated calcium channel activity
## 5398 activin receptor activity, type I
## 5399 activin receptor complex
## 5400 activin responsive factor complex
## 5401 acyl carnitine transmembrane transporter activity
## 5402 acyl carnitine transport
## 5403 acylglycerol acyl-chain remodeling
## 5404 acylglycerol catabolic process
## 5405 adenosine 5'-(hexahydrogen pentaphosphate) catabolic process
## 5406 adenosine deaminase activity
## 5407 adenosine metabolic process
## 5408 adenosine to inosine editing
## 5409 adenylate cyclase activity
## 5410 adenylate cyclase-activating dopamine receptor signaling pathway
## 5411 adenylosuccinate synthase activity
## 5412 adherens junction organization
## 5413 adiponectin binding
## 5414 adult heart development
## 5415 alanine transport
## 5416 alcohol metabolic process
## 5417 aldehyde catabolic process
## 5418 alkenylglycerophosphocholine hydrolase activity
## 5419 alkenylglycerophosphoethanolamine hydrolase activity
## 5420 allyl-alcohol dehydrogenase activity
## 5421 alpha-1,2-mannosyltransferase activity
## 5422 alpha-1,4-glucosidase activity
## 5423 alpha-1A adrenergic receptor binding
## 5424 alpha-1B adrenergic receptor binding
## 5425 alpha-beta T cell differentiation
## 5426 alpha-glucosidase activity
## 5427 alphav-beta3 integrin-HMGB1 complex
## 5428 alphav-beta3 integrin-IGF-1-IGF1R complex
## 5429 alphav-beta3 integrin-PKCalpha complex
## 5430 ameboidal-type cell migration
## 5431 amino acid import across plasma membrane
## 5432 aminoacylase activity
## 5433 ammonium transmembrane transport
## 5434 ammonium transport
## 5435 AMP-activated protein kinase activity
## 5436 amyloid-beta formation
## 5437 anchored component of postsynaptic density membrane
## 5438 anchored component of postsynaptic recycling endosome membrane
## 5439 anchored component of presynaptic active zone membrane
## 5440 angiotensin receptor binding
## 5441 ankyrin repeat binding
## 5442 anterior/posterior axis specification, embryo
## 5443 anterograde neuronal dense core vesicle transport
## 5444 antifungal humoral response
## 5445 antigen processing and presentation of endogenous peptide antigen via MHC class II
## 5446 antigen processing and presentation of exogenous peptide antigen via MHC class I
## 5447 antigen processing and presentation of exogenous peptide antigen via MHC class I, TAP-independent
## 5448 antigen processing and presentation, endogenous lipid antigen via MHC class Ib
## 5449 AnxA2-p11 complex
## 5450 aorta smooth muscle tissue morphogenesis
## 5451 aortic valve development
## 5452 apical cortex
## 5453 apoptotic chromosome condensation
## 5454 apoptotic process involved in blood vessel morphogenesis
## 5455 apoptotic process involved in development
## 5456 arachidonic acid secretion
## 5457 arginine biosynthetic process
## 5458 arginine transmembrane transport
## 5459 arginine transmembrane transporter activity
## 5460 arginine-tRNA ligase activity
## 5461 arginyl-tRNA aminoacylation
## 5462 artery development
## 5463 arylsulfatase activity
## 5464 ASAP complex
## 5465 asialoglycoprotein receptor activity
## 5466 aspartate metabolic process
## 5467 aspartate transmembrane transport
## 5468 aspartate-tRNA ligase activity
## 5469 aspartic endopeptidase activity, intramembrane cleaving
## 5470 assembly of large subunit precursor of preribosome
## 5471 ASTRA complex
## 5472 astral microtubule
## 5473 astrocyte activation involved in immune response
## 5474 asymmetric cell division
## 5475 ATF4-CREB1 transcription factor complex
## 5476 ATP synthesis coupled electron transport
## 5477 ATP transport
## 5478 ATP-binding cassette (ABC) transporter complex
## 5479 ATP-dependent polydeoxyribonucleotide 5'-hydroxyl-kinase activity
## 5480 ATPase-coupled ion transmembrane transporter activity
## 5481 ATPase-coupled peptide transmembrane transporter activity
## 5482 atrial cardiac muscle cell action potential
## 5483 atrial septum primum morphogenesis
## 5484 atrioventricular node development
## 5485 auditory receptor cell development
## 5486 auditory receptor cell morphogenesis
## 5487 autocrine signaling
## 5488 axial mesoderm development
## 5489 axis elongation involved in somitogenesis
## 5490 axo-dendritic transport
## 5491 axonal spine
## 5492 axonemal dynein complex
## 5493 axonemal dynein complex assembly
## 5494 axonemal microtubule
## 5495 B-1 B cell homeostasis
## 5496 B-1a B cell differentiation
## 5497 Barr body
## 5498 basal part of cell
## 5499 base-excision repair, AP site formation
## 5500 base-excision repair, DNA ligation
## 5501 BAT3 complex
## 5502 BAT3 complex binding
## 5503 BBSome
## 5504 Bcl-2 family protein complex
## 5505 behavioral response to cocaine
## 5506 beta-2 adrenergic receptor binding
## 5507 beta-N-acetylglucosaminylglycopeptide beta-1,4-galactosyltransferase activity
## 5508 BH3 domain binding
## 5509 bicarbonate transmembrane transporter activity
## 5510 bile acid secretion
## 5511 bis(5'-adenosyl)-hexaphosphatase activity
## 5512 bis(5'-adenosyl)-pentaphosphatase activity
## 5513 bis(5'-adenosyl)-triphosphatase activity
## 5514 blastocyst growth
## 5515 blood vessel endothelial cell migration
## 5516 BMP binding
## 5517 BMP receptor complex
## 5518 bone growth
## 5519 bone trabecula formation
## 5520 box C/D snoRNA 3'-end processing
## 5521 brahma complex
## 5522 brain-derived neurotrophic factor receptor signaling pathway
## 5523 brainstem development
## 5524 branching involved in labyrinthine layer morphogenesis
## 5525 branchiomotor neuron axon guidance
## 5526 C-4 methylsterol oxidase activity
## 5527 C-5 sterol desaturase activity
## 5528 C-C chemokine binding
## 5529 C-C chemokine receptor activity
## 5530 C-terminal protein lipidation
## 5531 C-X-C chemokine receptor activity
## 5532 C3HC4-type RING finger domain binding
## 5533 C5-methylcytidine-containing RNA binding
## 5534 CAAX-box protein processing
## 5535 cadmium ion transmembrane transport
## 5536 CAF-1 complex
## 5537 Cajal body organization
## 5538 CAK-ERCC2 complex
## 5539 calcineurin-NFAT signaling cascade
## 5540 calcium activated phosphatidylcholine scrambling
## 5541 calcium activated phosphatidylserine scrambling
## 5542 calcium ion import into sarcoplasmic reticulum
## 5543 calcium ion transmembrane transporter activity
## 5544 calcium ion transport from cytosol to endoplasmic reticulum
## 5545 calcium-dependent phospholipase A2 activity
## 5546 calcium-induced calcium release activity
## 5547 calcium-release channel activity
## 5548 calmodulin-dependent protein phosphatase activity
## 5549 CAMKK-AMPK signaling cascade
## 5550 cAMP-dependent protein kinase activity
## 5551 cAMP-dependent protein kinase inhibitor activity
## 5552 canonical Wnt signaling pathway involved in regulation of cell proliferation
## 5553 carbohydrate catabolic process
## 5554 carbohydrate derivative binding
## 5555 carbohydrate mediated signaling
## 5556 carboxylic acid transmembrane transport
## 5557 cardiac atrium morphogenesis
## 5558 cardiac muscle cell action potential involved in contraction
## 5559 cardiac muscle cell development
## 5560 cardiac muscle cell myoblast differentiation
## 5561 cardiac muscle tissue morphogenesis
## 5562 cardiac myofibril assembly
## 5563 cardiac right ventricle morphogenesis
## 5564 cardiac ventricle development
## 5565 cardiac ventricle morphogenesis
## 5566 carnitine biosynthetic process
## 5567 carnitine metabolic process
## 5568 carnitine transmembrane transport
## 5569 caspase binding
## 5570 catabolic process
## 5571 catenin complex
## 5572 CatSper complex
## 5573 CCR chemokine receptor binding
## 5574 CCR1 chemokine receptor binding
## 5575 CD4-positive, alpha-beta T cell differentiation
## 5576 CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation
## 5577 CD95 death-inducing signaling complex
## 5578 cell adhesion molecule production
## 5579 cell body membrane
## 5580 cell cycle G1/S phase transition
## 5581 cell dedifferentiation
## 5582 cell differentiation involved in embryonic placenta development
## 5583 cell migration involved in gastrulation
## 5584 cell tip
## 5585 cell-substrate junction
## 5586 cellular component organization
## 5587 cellular detoxification of aldehyde
## 5588 cellular hyperosmotic salinity response
## 5589 cellular potassium ion homeostasis
## 5590 cellular protein catabolic process
## 5591 cellular response to actinomycin D
## 5592 cellular response to alkaloid
## 5593 cellular response to antibiotic
## 5594 cellular response to arsenite(3-)
## 5595 cellular response to bacterial lipopeptide
## 5596 cellular response to bile acid
## 5597 cellular response to carbohydrate stimulus
## 5598 cellular response to cobalt ion
## 5599 cellular response to cocaine
## 5600 cellular response to cold
## 5601 cellular response to diacyl bacterial lipopeptide
## 5602 cellular response to dsDNA
## 5603 cellular response to epinephrine stimulus
## 5604 cellular response to fructose stimulus
## 5605 cellular response to gonadotropin stimulus
## 5606 cellular response to high density lipoprotein particle stimulus
## 5607 cellular response to interleukin-6
## 5608 cellular response to iron ion
## 5609 cellular response to iron(III) ion
## 5610 cellular response to L-glutamine
## 5611 cellular response to leptin stimulus
## 5612 cellular response to organonitrogen compound
## 5613 cellular response to oxygen-glucose deprivation
## 5614 cellular response to phosphate starvation
## 5615 cellular response to radiation
## 5616 cellular response to rapamycin
## 5617 cellular response to redox state
## 5618 cellular response to sodium arsenite
## 5619 cellular response to sorbitol
## 5620 cellular response to steroid hormone stimulus
## 5621 cellular response to thapsigargin
## 5622 cellular response to Thyroglobulin triiodothyronine
## 5623 cellular response to triacyl bacterial lipopeptide
## 5624 cellular response to UV-A
## 5625 cellular response to UV-C
## 5626 cellular response to vasopressin
## 5627 cellular response to vitamin D
## 5628 cellular sodium ion homeostasis
## 5629 cellular stress response to acid chemical
## 5630 cellular triglyceride homeostasis
## 5631 central nervous system myelin formation
## 5632 central nervous system projection neuron axonogenesis
## 5633 centriole elongation
## 5634 centrosome-templated microtubule nucleation
## 5635 ceramide cholinephosphotransferase activity
## 5636 ceramide phosphoethanolamine synthase activity
## 5637 cerebellar cortex development
## 5638 cerebral cortex cell migration
## 5639 cGMP biosynthetic process
## 5640 cGMP catabolic process
## 5641 chaperonin-containing T-complex
## 5642 chiasma assembly
## 5643 chitin binding
## 5644 chloride ion binding
## 5645 cholate-CoA ligase activity
## 5646 cholesterol biosynthetic process via desmosterol
## 5647 cholesterol biosynthetic process via lathosterol
## 5648 cholesterol catabolic process
## 5649 chondrocyte development involved in endochondral bone morphogenesis
## 5650 chondroitin sulfate binding
## 5651 chondroitin sulfate catabolic process
## 5652 chondroitin sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## 5653 chromaffin granule membrane
## 5654 chromosome, subtelomeric region
## 5655 chylomicron
## 5656 ciliary basal body organization
## 5657 ciliary body morphogenesis
## 5658 ciliary inversin compartment
## 5659 ciliary neurotrophic factor receptor binding
## 5660 ciliary pocket membrane
## 5661 cilium-dependent cell motility
## 5662 circadian regulation of translation
## 5663 cis-Golgi network membrane
## 5664 citrate transmembrane transporter activity
## 5665 clathrin-coated pit assembly
## 5666 clathrin-sculpted gamma-aminobutyric acid transport vesicle membrane
## 5667 clathrin-sculpted glutamate transport vesicle membrane
## 5668 clathrin-sculpted monoamine transport vesicle membrane
## 5669 cleavage furrow formation
## 5670 co-receptor binding
## 5671 co-translational protein modification
## 5672 cobalt ion transport
## 5673 cochlear nucleus development
## 5674 cold acclimation
## 5675 collagen binding involved in cell-matrix adhesion
## 5676 collateral sprouting
## 5677 commissural neuron axon guidance
## 5678 commitment complex
## 5679 common myeloid progenitor cell proliferation
## 5680 common-partner SMAD protein phosphorylation
## 5681 complement component C3b binding
## 5682 complement receptor mediated signaling pathway
## 5683 condensed chromosome inner kinetochore
## 5684 condensed nuclear chromosome inner kinetochore
## 5685 connective tissue development
## 5686 convergent extension involved in neural plate elongation
## 5687 convergent extension involved in organogenesis
## 5688 copper chaperone activity
## 5689 copper-dependent protein binding
## 5690 core TFIIH complex portion of holo TFIIH complex
## 5691 cornified envelope
## 5692 cornified envelope assembly
## 5693 corpus callosum development
## 5694 cortical microtubule organization
## 5695 corticospinal tract morphogenesis
## 5696 covalent chromatin modification
## 5697 cranial nerve development
## 5698 CRD-mediated mRNA stability complex
## 5699 CRD-mediated mRNA stabilization
## 5700 creatine kinase activity
## 5701 creatine metabolic process
## 5702 crossover junction endodeoxyribonuclease activity
## 5703 crotonyl-CoA hydratase activity
## 5704 CSF1-CSF1R complex
## 5705 CTPase activity
## 5706 Cul4B-RING E3 ubiquitin ligase complex
## 5707 Cul5-RING ubiquitin ligase complex
## 5708 Cul7-RING ubiquitin ligase complex
## 5709 cyanate catabolic process
## 5710 cyclic-GMP-AMP binding
## 5711 cyclin A2-CDK2 complex
## 5712 cyclin B1-CDK1 complex
## 5713 cyclin D2-CDK4 complex
## 5714 cyclin E1-CDK2 complex
## 5715 cyclin K-CDK12 complex
## 5716 cyclin K-CDK13 complex
## 5717 cyclooxygenase pathway
## 5718 cysteine-type exopeptidase activity
## 5719 cytidine-diphosphatase activity
## 5720 cytokine receptor binding
## 5721 cytolytic granule
## 5722 cytoophidium
## 5723 cytoplasmic pattern recognition receptor signaling pathway in response to virus
## 5724 cytoplasmic periphery of the nuclear pore complex
## 5725 cytoplasmic side of lysosomal membrane
## 5726 cytoplasmic side of mitochondrial outer membrane
## 5727 cytoskeleton of presynaptic active zone
## 5728 cytoskeleton-nuclear membrane anchor activity
## 5729 cytosol to endoplasmic reticulum transport
## 5730 dAMP biosynthetic process
## 5731 dCMP catabolic process
## 5732 deactivation of mitotic spindle assembly checkpoint
## 5733 definitive erythrocyte differentiation
## 5734 dehydroascorbic acid transmembrane transporter activity
## 5735 dehydroascorbic acid transport
## 5736 dendritic branch
## 5737 dendritic cell migration
## 5738 dendritic cell proliferation
## 5739 dendritic microtubule
## 5740 dendritic transport of mitochondrion
## 5741 dense core granule
## 5742 dense core granule membrane
## 5743 dense fibrillar component
## 5744 dentinogenesis
## 5745 deoxyadenosine kinase activity
## 5746 deoxyguanosine kinase activity
## 5747 deoxynucleoside kinase activity
## 5748 deoxyribonucleotide biosynthetic process
## 5749 deoxyribonucleotide catabolic process
## 5750 depyrimidination
## 5751 desensitization of G protein-coupled receptor signaling pathway by arrestin
## 5752 detection of mechanical stimulus
## 5753 detection of mechanical stimulus involved in sensory perception of pain
## 5754 detection of muscle stretch
## 5755 detection of nodal flow
## 5756 determination of liver left/right asymmetry
## 5757 detoxification of mercury ion
## 5758 development of secondary sexual characteristics
## 5759 diadenosine hexaphosphate catabolic process
## 5760 diadenosine pentaphosphate catabolic process
## 5761 diapedesis
## 5762 dichotomous subdivision of terminal units involved in salivary gland branching
## 5763 diet induced thermogenesis
## 5764 dihydrofolate metabolic process
## 5765 dihydrofolate reductase activity
## 5766 dinucleotide insertion or deletion binding
## 5767 diphosphoinositol polyphosphate metabolic process
## 5768 diphosphoinositol-polyphosphate diphosphatase activity
## 5769 disulfide oxidoreductase activity
## 5770 DNA ADP-ribosylation
## 5771 DNA clamp unloader activity
## 5772 DNA clamp unloading
## 5773 DNA deamination
## 5774 DNA double-strand break attachment to nuclear envelope
## 5775 DNA double-strand break processing involved in repair via single-strand annealing
## 5776 DNA geometric change
## 5777 DNA integration
## 5778 DNA ligase (ATP) activity
## 5779 DNA ligase activity
## 5780 DNA ligation involved in DNA repair
## 5781 DNA methylation involved in embryo development
## 5782 DNA packaging
## 5783 DNA polymerase activity
## 5784 DNA polymerase processivity factor activity
## 5785 DNA replication preinitiation complex
## 5786 DNA replication preinitiation complex assembly
## 5787 DNA secondary structure binding
## 5788 DNA topoisomerase binding
## 5789 DNA-binding transcription factor inhibitor activity
## 5790 DNA-dependent protein kinase complex
## 5791 DNA-N1-methyladenine dioxygenase activity
## 5792 dodecenoyl-CoA delta-isomerase activity
## 5793 dolichol biosynthetic process
## 5794 dolichol metabolic process
## 5795 dolichol-phosphate-mannose synthase complex
## 5796 dopachrome isomerase activity
## 5797 dopamine catabolic process
## 5798 dorsal/ventral neural tube patterning
## 5799 double-strand break repair involved in meiotic recombination
## 5800 double-strand/single-strand DNA junction binding
## 5801 double-stranded DNA 3'-5' exodeoxyribonuclease activity
## 5802 double-stranded DNA exodeoxyribonuclease activity
## 5803 double-stranded DNA helicase activity
## 5804 double-stranded methylated DNA binding
## 5805 drug metabolic process
## 5806 drug transmembrane transport
## 5807 dTMP catabolic process
## 5808 dTTP diphosphatase activity
## 5809 dUMP catabolic process
## 5810 dynein heavy chain binding
## 5811 ear development
## 5812 ear morphogenesis
## 5813 early endosome lumen
## 5814 early endosome to recycling endosome transport
## 5815 early phagosome membrane
## 5816 eiF2alpha phosphorylation in response to endoplasmic reticulum stress
## 5817 elastic fiber
## 5818 Elongator holoenzyme complex
## 5819 elongin complex
## 5820 embryonic axis specification
## 5821 embryonic eye morphogenesis
## 5822 embryonic foregut morphogenesis
## 5823 embryonic heart tube development
## 5824 embryonic heart tube morphogenesis
## 5825 embryonic liver development
## 5826 embryonic process involved in female pregnancy
## 5827 endocannabinoid signaling pathway
## 5828 endocardial cell differentiation
## 5829 endocardial cushion development
## 5830 endodeoxyribonuclease activity, producing 5'-phosphomonoesters
## 5831 endodermal cell fate commitment
## 5832 endogenous lipid antigen binding
## 5833 endomembrane system organization
## 5834 endopeptidase Clp complex
## 5835 endoplasmic reticulum chaperone complex
## 5836 endoplasmic reticulum tubular network membrane organization
## 5837 endoplasmic reticulum-Golgi intermediate compartment organization
## 5838 endopolyphosphatase activity
## 5839 endoribonuclease activity, cleaving miRNA-paired mRNA
## 5840 endosomal lumen acidification
## 5841 endosome fission
## 5842 endosome to plasma membrane transport vesicle
## 5843 endothelial cell activation
## 5844 entrainment of circadian clock
## 5845 entry of viral genome into host nucleus through nuclear pore complex via importin
## 5846 enucleate erythrocyte differentiation
## 5847 enzyme linked receptor protein signaling pathway
## 5848 eosinophil chemotaxis
## 5849 ephrin receptor activity
## 5850 epithelial cell maturation
## 5851 epithelial cell migration
## 5852 epithelial cell morphogenesis involved in placental branching
## 5853 epithelial cell proliferation
## 5854 epithelial cell-cell adhesion
## 5855 epithelial to mesenchymal transition involved in endocardial cushion formation
## 5856 epithelial tube branching involved in lung morphogenesis
## 5857 epithelium development
## 5858 epsilon DNA polymerase complex
## 5859 ER retention sequence binding
## 5860 ErbB-3 class receptor binding
## 5861 establishment of mitotic sister chromatid cohesion
## 5862 establishment of organelle localization
## 5863 establishment of protein localization to mitochondrion
## 5864 establishment of protein localization to telomere
## 5865 establishment of protein-containing complex localization to telomere
## 5866 establishment of RNA localization to telomere
## 5867 establishment of Sertoli cell barrier
## 5868 ethanol catabolic process
## 5869 ethanolamine kinase activity
## 5870 ethanolaminephosphotransferase activity
## 5871 excitatory synapse
## 5872 excitatory synapse assembly
## 5873 exocrine pancreas development
## 5874 exocytic insertion of neurotransmitter receptor to postsynaptic membrane
## 5875 exogenous lipid antigen binding
## 5876 exopolyphosphatase activity
## 5877 exoribonuclease activity
## 5878 exploration behavior
## 5879 extension of a leading process involved in cell motility in cerebral cortex radial glia guided migration
## 5880 external genitalia morphogenesis
## 5881 external side of apical plasma membrane
## 5882 extracellular matrix constituent secretion
## 5883 extracellular matrix structural constituent conferring tensile strength
## 5884 extracellular negative regulation of signal transduction
## 5885 extrinsic component of external side of plasma membrane
## 5886 extrinsic component of postsynaptic density membrane
## 5887 extrinsic component of postsynaptic membrane
## 5888 eye photoreceptor cell differentiation
## 5889 eyelid development in camera-type eye
## 5890 FACT complex
## 5891 fat pad development
## 5892 fatty acid amide hydrolase activity
## 5893 fatty acid elongase complex
## 5894 FBXO family protein binding
## 5895 feeding behavior
## 5896 ferredoxin metabolic process
## 5897 FFAT motif binding
## 5898 FHF complex
## 5899 fibroblast growth factor receptor binding
## 5900 fibroblast growth factor-activated receptor activity
## 5901 flavin-linked sulfhydryl oxidase activity
## 5902 floor plate development
## 5903 floppase activity
## 5904 flotillin complex
## 5905 folate import across plasma membrane
## 5906 folic acid transmembrane transporter activity
## 5907 folic acid-containing compound metabolic process
## 5908 follicle-stimulating hormone receptor binding
## 5909 follicle-stimulating hormone signaling pathway
## 5910 follicular B cell differentiation
## 5911 forebrain astrocyte development
## 5912 forebrain radial glial cell differentiation
## 5913 forelimb morphogenesis
## 5914 forked DNA-dependent helicase activity
## 5915 formate-tetrahydrofolate ligase activity
## 5916 formation of radial glial scaffolds
## 5917 free ubiquitin chain polymerization
## 5918 fructosamine metabolic process
## 5919 fructose biosynthetic process
## 5920 fructose-6-phosphate binding
## 5921 fructose-bisphosphate aldolase activity
## 5922 fusion of virus membrane with host plasma membrane
## 5923 G protein-coupled acetylcholine receptor signaling pathway
## 5924 G protein-coupled adenosine receptor activity
## 5925 G protein-coupled purinergic nucleotide receptor activity
## 5926 G protein-coupled purinergic nucleotide receptor signaling pathway
## 5927 G protein-coupled receptor signaling pathway, coupled to cyclic nucleotide second messenger
## 5928 G-protein beta/gamma-subunit complex
## 5929 G0 to G1 transition
## 5930 G1 to G0 transition
## 5931 galactokinase activity
## 5932 gamma DNA polymerase complex
## 5933 gamma-aminobutyric acid import
## 5934 gamma-aminobutyric acid transmembrane transporter activity
## 5935 gamma-delta T cell activation
## 5936 ganglioside biosynthetic process via lactosylceramide
## 5937 ganglioside GM1 binding
## 5938 gap junction
## 5939 GATOR1 complex
## 5940 GDP catabolic process
## 5941 GDP-dissociation inhibitor activity
## 5942 GDP-mannose biosynthetic process
## 5943 GDP-mannose metabolic process
## 5944 gene silencing
## 5945 germ cell migration
## 5946 glandular epithelial cell development
## 5947 glial cell differentiation
## 5948 glial cell migration
## 5949 glial cell proliferation
## 5950 glomerular filtration
## 5951 glomerular visceral epithelial cell development
## 5952 glomerular visceral epithelial cell migration
## 5953 glucocorticoid receptor signaling pathway
## 5954 glucose 6-phosphate:inorganic phosphate antiporter activity
## 5955 glucose import
## 5956 glucose import in response to insulin stimulus
## 5957 glutamate binding
## 5958 glutaminase activity
## 5959 glutamine catabolic process
## 5960 glyceraldehyde-3-phosphate biosynthetic process
## 5961 glyceraldehyde-3-phosphate metabolic process
## 5962 glycerol dehydrogenase [NADP+] activity
## 5963 glycerol metabolic process
## 5964 glycerol-3-phosphate dehydrogenase complex
## 5965 glycine binding
## 5966 glycine metabolic process
## 5967 glycogen binding
## 5968 glycolipid catabolic process
## 5969 glycolytic process through fructose-6-phosphate
## 5970 glycophagy
## 5971 glycoside catabolic process
## 5972 GMP biosynthetic process
## 5973 Golgi reassembly
## 5974 Golgi vesicle docking
## 5975 GPI-anchor transamidase complex
## 5976 granular component
## 5977 growth cone lamellipodium
## 5978 growth cone membrane
## 5979 growth factor receptor binding
## 5980 growth plate cartilage chondrocyte differentiation
## 5981 guanylate cyclase activity
## 5982 guanylate cyclase complex, soluble
## 5983 hair cell differentiation
## 5984 hair follicle maturation
## 5985 haptoglobin binding
## 5986 haptoglobin-hemoglobin complex
## 5987 heart process
## 5988 heart trabecula formation
## 5989 heart trabecula morphogenesis
## 5990 heme oxidation
## 5991 heme oxygenase (decyclizing) activity
## 5992 heme transmembrane transporter activity
## 5993 heme transport
## 5994 hemidesmosome
## 5995 hemoglobin biosynthetic process
## 5996 heparan sulfate proteoglycan binding
## 5997 heparan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## 5998 heparan sulfate proteoglycan catabolic process
## 5999 hepatocyte growth factor receptor signaling pathway
## 6000 heterochromatin assembly by small RNA
## 6001 heterocyclic compound binding
## 6002 hexose metabolic process
## 6003 high-density lipoprotein particle
## 6004 histidine biosynthetic process
## 6005 histone arginine methylation
## 6006 histone demethylase activity (H3-K27 specific)
## 6007 histone dephosphorylation
## 6008 histone H3-K27 demethylation
## 6009 histone H3-K27 trimethylation
## 6010 histone H3-K36 dimethylation
## 6011 histone H3-K36 trimethylation
## 6012 histone H3-K4 dimethylation
## 6013 histone H3-K9 acetylation
## 6014 histone H3-K9 deacetylation
## 6015 histone H3-K9 modification
## 6016 histone H3-K9 trimethylation
## 6017 histone H3-S10 phosphorylation
## 6018 histone H3-S28 phosphorylation
## 6019 histone H3-T11 phosphorylation
## 6020 histone H4-K20 methylation
## 6021 histone H4-K20 trimethylation
## 6022 histone kinase activity (H3-T11 specific)
## 6023 histone methyltransferase activity (H4-K20 specific)
## 6024 histone methyltransferase activity (H4-R3 specific)
## 6025 histone succinylation
## 6026 histone-arginine N-methyltransferase activity
## 6027 histone-serine phosphorylation
## 6028 HLH domain binding
## 6029 Holliday junction resolvase complex
## 6030 homeostatic process
## 6031 homotypic cell-cell adhesion
## 6032 hormone secretion
## 6033 Hrd1p ubiquitin ligase complex
## 6034 humoral immune response mediated by circulating immunoglobulin
## 6035 hyaluronan catabolic process
## 6036 hydrogen peroxide biosynthetic process
## 6037 hydroxyacylglutathione hydrolase activity
## 6038 hypoxia-inducible factor-1alpha signaling pathway
## 6039 icosanoid metabolic process
## 6040 IgM binding
## 6041 IkappaB kinase activity
## 6042 immature B cell differentiation
## 6043 immune response-inhibiting cell surface receptor signaling pathway
## 6044 immune system development
## 6045 IMP dehydrogenase activity
## 6046 induction by virus of host autophagy
## 6047 inhibitory postsynaptic potential
## 6048 inhibitory synapse
## 6049 inner acrosomal membrane
## 6050 inner ear receptor cell development
## 6051 inner mitochondrial membrane protein complex
## 6052 innervation
## 6053 inositol biosynthetic process
## 6054 inositol diphosphate pentakisphosphate diphosphatase activity
## 6055 inositol diphosphate tetrakisphosphate diphosphatase activity
## 6056 inositol hexakisphosphate binding
## 6057 inositol monophosphate 1-phosphatase activity
## 6058 inositol monophosphate 3-phosphatase activity
## 6059 inositol monophosphate 4-phosphatase activity
## 6060 inositol monophosphate phosphatase activity
## 6061 inositol phosphate biosynthetic process
## 6062 inositol phosphate phosphatase activity
## 6063 inositol phosphate-mediated signaling
## 6064 inositol trisphosphate biosynthetic process
## 6065 insulin binding
## 6066 integral component of autophagosome membrane
## 6067 integral component of endosome membrane
## 6068 integral component of synaptic membrane
## 6069 integrin alpha1-beta1 complex
## 6070 integrin alphav-beta3 complex
## 6071 interaction with symbiont
## 6072 intercellular canaliculus
## 6073 interleukin-1 binding
## 6074 interleukin-1 receptor activity
## 6075 interleukin-10-mediated signaling pathway
## 6076 interleukin-11 binding
## 6077 interleukin-11 receptor activity
## 6078 interleukin-11-mediated signaling pathway
## 6079 interleukin-12 receptor binding
## 6080 interleukin-18 binding
## 6081 interleukin-2 receptor binding
## 6082 interleukin-2-mediated signaling pathway
## 6083 interleukin-27 receptor activity
## 6084 intermediate filament binding
## 6085 internal protein amino acid acetylation
## 6086 intestinal epithelial cell maturation
## 6087 intracellular ferritin complex
## 6088 intracellular steroid hormone receptor signaling pathway
## 6089 intracellular sterol transport
## 6090 intramolecular oxidoreductase activity, transposing C=C bonds
## 6091 intramolecular transferase activity
## 6092 intrinsic component of mitochondrial outer membrane
## 6093 ion channel inhibitor activity
## 6094 IRE1-TRAF2-ASK1 complex
## 6095 iron import into cell
## 6096 iron ion transmembrane transporter activity
## 6097 iron-responsive element binding
## 6098 isocitrate dehydrogenase (NAD+) activity
## 6099 isoleucine-tRNA ligase activity
## 6100 isoleucyl-tRNA aminoacylation
## 6101 JUN kinase kinase activity
## 6102 K6-linked polyubiquitin modification-dependent protein binding
## 6103 keratinocyte migration
## 6104 keratinocyte proliferation
## 6105 ketone body biosynthetic process
## 6106 kinase activator activity
## 6107 Ku70:Ku80 complex
## 6108 L-aspartate transmembrane transporter activity
## 6109 L-histidine transmembrane transporter activity
## 6110 L-lysine catabolic process to acetyl-CoA via saccharopine
## 6111 L-lysine transmembrane transporter activity
## 6112 L-serine metabolic process
## 6113 L-serine transmembrane transporter activity
## 6114 L-serine transport
## 6115 L27 domain binding
## 6116 lactate biosynthetic process
## 6117 lagging strand elongation
## 6118 laminin complex
## 6119 late endosome to Golgi transport
## 6120 late nucleophagy
## 6121 late viral transcription
## 6122 lateral ventricle development
## 6123 LBD domain binding
## 6124 lead ion binding
## 6125 leading edge membrane
## 6126 leading strand elongation
## 6127 left/right axis specification
## 6128 lens fiber cell development
## 6129 lens fiber cell morphogenesis
## 6130 lens induction in camera-type eye
## 6131 lens morphogenesis in camera-type eye
## 6132 leucine binding
## 6133 leukocyte apoptotic process
## 6134 leukocyte differentiation
## 6135 leukocyte homeostasis
## 6136 leukocyte migration involved in immune response
## 6137 Lewy body
## 6138 ligand-gated calcium channel activity
## 6139 ligand-gated sodium channel activity
## 6140 lipid localization
## 6141 lipid modification
## 6142 lipid transport across blood-brain barrier
## 6143 lipopolysaccharide receptor complex
## 6144 lipoteichoic acid binding
## 6145 lipoxygenase pathway
## 6146 long-chain fatty acid import across plasma membrane
## 6147 long-chain fatty acid import into peroxisome
## 6148 long-chain fatty acid transport
## 6149 long-chain fatty-acyl-CoA metabolic process
## 6150 long-chain-acyl-CoA dehydrogenase activity
## 6151 long-chain-enoyl-CoA hydratase activity
## 6152 lung epithelial cell differentiation
## 6153 lung epithelium development
## 6154 lung saccule development
## 6155 lymphangiogenesis
## 6156 lymphatic endothelial cell differentiation
## 6157 lymphocyte activation
## 6158 lymphocyte migration into lymph node
## 6159 lymphoid progenitor cell differentiation
## 6160 lysine biosynthetic process via aminoadipic acid
## 6161 lysine N-acetyltransferase activity, acting on acetyl phosphate as donor
## 6162 lysine transport
## 6163 lysophosphatidic acid binding
## 6164 lysophosphatidic acid receptor activity
## 6165 lysophospholipid acyltransferase activity
## 6166 m7G(5')pppN diphosphatase activity
## 6167 macrophage chemotaxis
## 6168 macrophage derived foam cell differentiation
## 6169 maintenance of animal organ identity
## 6170 maintenance of epithelial cell apical/basal polarity
## 6171 maintenance of gastrointestinal epithelium
## 6172 maintenance of Golgi location
## 6173 maintenance of presynaptic active zone structure
## 6174 maintenance of protein location in mitochondrion
## 6175 maintenance of rDNA
## 6176 maintenance of synapse structure
## 6177 maintenance of unfolded protein involved in ERAD pathway
## 6178 malate dehydrogenase (decarboxylating) (NAD+) activity
## 6179 malate dehydrogenase (decarboxylating) (NADP+) activity
## 6180 malate transmembrane transport
## 6181 malate transmembrane transporter activity
## 6182 male mating behavior
## 6183 malic enzyme activity
## 6184 maltose alpha-glucosidase activity
## 6185 maltose metabolic process
## 6186 mammary duct terminal end bud growth
## 6187 mammary gland duct morphogenesis
## 6188 mammary gland epithelium development
## 6189 manganese ion transmembrane transport
## 6190 manganese ion transmembrane transporter activity
## 6191 mannose-ethanolamine phosphotransferase activity
## 6192 mannosyl-oligosaccharide 1,3-1,6-alpha-mannosidase activity
## 6193 MAP kinase kinase kinase kinase activity
## 6194 MAP kinase tyrosine/serine/threonine phosphatase activity
## 6195 matrix side of mitochondrial inner membrane
## 6196 mature ribosome assembly
## 6197 MCM8-MCM9 complex
## 6198 medium-chain fatty acid catabolic process
## 6199 medium-chain fatty acid transport
## 6200 medium-chain-acyl-CoA dehydrogenase activity
## 6201 meiotic cohesin complex
## 6202 meiotic mismatch repair
## 6203 meiotic nuclear membrane microtubule tethering complex
## 6204 meiotic sister chromatid cohesion
## 6205 meiotic spindle midzone assembly
## 6206 meiotic telomere clustering
## 6207 melanosome assembly
## 6208 melanosome localization
## 6209 membrane curvature sensor activity
## 6210 membrane fission
## 6211 membrane hyperpolarization
## 6212 membrane repolarization during action potential
## 6213 membrane repolarization during ventricular cardiac muscle cell action potential
## 6214 membrane to membrane docking
## 6215 membranous septum morphogenesis
## 6216 memory T cell activation
## 6217 mesendoderm development
## 6218 mesonephros development
## 6219 metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## 6220 metalloendopeptidase inhibitor activity
## 6221 methionine adenosyltransferase complex
## 6222 methionine biosynthetic process
## 6223 methionine metabolic process
## 6224 methionine-tRNA ligase activity
## 6225 methionyl-tRNA aminoacylation
## 6226 methotrexate binding
## 6227 methyl indole-3-acetate esterase activity
## 6228 methyl-branched fatty acid metabolic process
## 6229 methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione
## 6230 MHC class I protein complex
## 6231 MHC class I protein complex binding
## 6232 MHC class Ib protein complex binding
## 6233 MHC class Ib receptor activity
## 6234 microglial cell migration
## 6235 microglial cell proliferation
## 6236 microtubule bundle
## 6237 microtubule cytoskeleton organization involved in mitosis
## 6238 microtubule-based peroxisome localization
## 6239 midbrain morphogenesis
## 6240 middle ear morphogenesis
## 6241 minus-end-directed organelle transport along microtubule
## 6242 mitigation of host immune response by virus
## 6243 mitochondrial DNA metabolic process
## 6244 mitochondrial DNA repair
## 6245 mitochondrial DNA replication
## 6246 mitochondrial large ribosomal subunit assembly
## 6247 mitochondrial membrane fusion
## 6248 mitochondrial permeability transition pore complex
## 6249 mitochondrial prohibitin complex
## 6250 mitochondrial protein processing
## 6251 mitochondrial proton-transporting ATP synthase complex assembly
## 6252 mitochondrial proton-transporting ATP synthase complex, catalytic sector F(1)
## 6253 mitochondrial proton-transporting ATP synthase complex, coupling factor F(o)
## 6254 mitochondrial respiratory chain complex assembly
## 6255 mitochondrial respiratory chain complex II assembly
## 6256 mitochondrial ribosome assembly
## 6257 mitochondrial ribosome binding
## 6258 mitochondrial tRNA 3'-end processing
## 6259 mitochondrial tRNA modification
## 6260 mitotic nuclear division
## 6261 mitotic recombination-dependent replication fork processing
## 6262 mitotic spindle astral microtubule
## 6263 mitotic spindle elongation
## 6264 mitral valve morphogenesis
## 6265 modification-dependent protein binding
## 6266 modulation by symbiont of host process
## 6267 Mon1-Ccz1 complex
## 6268 monoacylglycerol catabolic process
## 6269 monoamine transmembrane transporter activity
## 6270 monocyte extravasation
## 6271 monosaccharide metabolic process
## 6272 morphogenesis of a polarized epithelium
## 6273 motor behavior
## 6274 motor learning
## 6275 Mpp10 complex
## 6276 MRF binding
## 6277 mRNA alternative polyadenylation
## 6278 mRNA cap binding
## 6279 mRNA cleavage involved in gene silencing by miRNA
## 6280 mRNA transcription
## 6281 mucociliary clearance
## 6282 multicellular organismal iron ion homeostasis
## 6283 multicellular organismal reproductive process
## 6284 multicellular organismal response to stress
## 6285 multivesicular body lumen
## 6286 multivesicular body, internal vesicle
## 6287 musculoskeletal movement
## 6288 MutLbeta complex binding
## 6289 MutSalpha complex
## 6290 MutSbeta complex binding
## 6291 myelin maintenance
## 6292 myeloid dendritic cell activation involved in immune response
## 6293 myeloid dendritic cell antigen processing and presentation
## 6294 myeloid progenitor cell differentiation
## 6295 myo-inositol transmembrane transporter activity
## 6296 myo-inositol transport
## 6297 myoblast migration involved in skeletal muscle regeneration
## 6298 myotube differentiation
## 6299 N-acetylgalactosaminyl-proteoglycan 3-beta-glucuronosyltransferase activity
## 6300 N-acetylglucosamine 6-O-sulfotransferase activity
## 6301 N-acetylglucosamine biosynthetic process
## 6302 N-acetyllactosaminide beta-1,3-N-acetylglucosaminyltransferase activity
## 6303 N-acetylneuraminate catabolic process
## 6304 N-acylneuraminate cytidylyltransferase activity
## 6305 N-acylphosphatidylethanolamine-specific phospholipase D activity
## 6306 N-terminal peptidyl-glutamic acid acetylation
## 6307 N6-methyladenosine-containing RNA binding
## 6308 NAD DNA ADP-ribosyltransferase activity
## 6309 NAD-dependent histone deacetylase activity (H3-K9 specific)
## 6310 NADP catabolic process
## 6311 NADP+ binding
## 6312 NADPH-hemoprotein reductase activity
## 6313 nascent polypeptide-associated complex
## 6314 necroptotic signaling pathway
## 6315 NEDD8-specific protease activity
## 6316 negative cofactor 2 complex
## 6317 negative regulation by host of viral process
## 6318 negative regulation by symbiont of host apoptotic process
## 6319 negative regulation by virus of viral protein levels in host cell
## 6320 negative regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## 6321 negative regulation of activated CD8-positive, alpha-beta T cell apoptotic process
## 6322 negative regulation of activin receptor signaling pathway
## 6323 negative regulation of acute inflammatory response
## 6324 negative regulation of adaptive immune memory response
## 6325 negative regulation of adiponectin secretion
## 6326 negative regulation of adipose tissue development
## 6327 negative regulation of alkaline phosphatase activity
## 6328 negative regulation of alpha-beta T cell activation
## 6329 negative regulation of alpha-beta T cell proliferation
## 6330 negative regulation of amyloid precursor protein catabolic process
## 6331 negative regulation of antigen processing and presentation of peptide antigen via MHC class II
## 6332 negative regulation of apoptotic process in bone marrow cell
## 6333 negative regulation of astrocyte activation
## 6334 negative regulation of astrocyte differentiation
## 6335 negative regulation of ATP metabolic process
## 6336 negative regulation of B cell apoptotic process
## 6337 negative regulation of biosynthetic process
## 6338 negative regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## 6339 negative regulation of cardiac muscle contraction
## 6340 negative regulation of cartilage development
## 6341 negative regulation of cell adhesion mediated by integrin
## 6342 negative regulation of cell cycle G1/S phase transition
## 6343 negative regulation of cell migration involved in sprouting angiogenesis
## 6344 negative regulation of cell volume
## 6345 negative regulation of cellular response to oxidative stress
## 6346 negative regulation of centriole elongation
## 6347 negative regulation of centrosome duplication
## 6348 negative regulation of chemokine (C-C motif) ligand 5 production
## 6349 negative regulation of cholesterol efflux
## 6350 negative regulation of circadian rhythm
## 6351 negative regulation of collateral sprouting
## 6352 negative regulation of CREB transcription factor activity
## 6353 negative regulation of cysteine-type endopeptidase activity
## 6354 negative regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## 6355 negative regulation of cytokine production involved in immune response
## 6356 negative regulation of cytokine-mediated signaling pathway
## 6357 negative regulation of cytoplasmic mRNA processing body assembly
## 6358 negative regulation of cytoplasmic translational elongation
## 6359 negative regulation of defense response to bacterium
## 6360 negative regulation of defense response to virus by host
## 6361 negative regulation of delayed rectifier potassium channel activity
## 6362 negative regulation of dendrite development
## 6363 negative regulation of dendrite extension
## 6364 negative regulation of dendrite morphogenesis
## 6365 negative regulation of dendritic cell apoptotic process
## 6366 negative regulation of dendritic cell differentiation
## 6367 negative regulation of DNA demethylation
## 6368 negative regulation of dopamine metabolic process
## 6369 negative regulation of epithelial cell apoptotic process
## 6370 negative regulation of ERAD pathway
## 6371 negative regulation of fatty acid beta-oxidation
## 6372 negative regulation of fatty acid oxidation
## 6373 negative regulation of fibrinolysis
## 6374 negative regulation of filopodium assembly
## 6375 negative regulation of G protein-coupled receptor signaling pathway
## 6376 negative regulation of glial cell apoptotic process
## 6377 negative regulation of glucose transmembrane transport
## 6378 negative regulation of glycogen biosynthetic process
## 6379 negative regulation of hematopoietic progenitor cell differentiation
## 6380 negative regulation of hepatocyte apoptotic process
## 6381 negative regulation of histone deacetylase activity
## 6382 negative regulation of histone deacetylation
## 6383 negative regulation of histone H3-K27 methylation
## 6384 negative regulation of histone H3-K4 methylation
## 6385 negative regulation of histone H4 acetylation
## 6386 negative regulation of histone H4-K16 acetylation
## 6387 negative regulation of histone methylation
## 6388 negative regulation of hyaluronan biosynthetic process
## 6389 negative regulation of hydrogen peroxide biosynthetic process
## 6390 negative regulation of hydrogen peroxide-induced neuron death
## 6391 negative regulation of inflammatory response to wounding
## 6392 negative regulation of interleukin-13 production
## 6393 negative regulation of interleukin-4 production
## 6394 negative regulation of interleukin-5 production
## 6395 negative regulation of JUN kinase activity
## 6396 negative regulation of lipase activity
## 6397 negative regulation of lipoprotein metabolic process
## 6398 negative regulation of long-chain fatty acid import across plasma membrane
## 6399 negative regulation of long-term synaptic potentiation
## 6400 negative regulation of low-density lipoprotein particle clearance
## 6401 negative regulation of low-density lipoprotein receptor activity
## 6402 negative regulation of lymphocyte proliferation
## 6403 negative regulation of lysosomal protein catabolic process
## 6404 negative regulation of macrophage activation
## 6405 negative regulation of macrophage cytokine production
## 6406 negative regulation of macrophage differentiation
## 6407 negative regulation of macrophage inflammatory protein 1 alpha production
## 6408 negative regulation of maintenance of mitotic sister chromatid cohesion, telomeric
## 6409 negative regulation of mast cell degranulation
## 6410 negative regulation of MDA-5 signaling pathway
## 6411 negative regulation of melanin biosynthetic process
## 6412 negative regulation of membrane protein ectodomain proteolysis
## 6413 negative regulation of metallopeptidase activity
## 6414 negative regulation of MHC class II biosynthetic process
## 6415 negative regulation of microtubule polymerization or depolymerization
## 6416 negative regulation of mitochondrial DNA replication
## 6417 negative regulation of mitochondrial fusion
## 6418 negative regulation of mitochondrial membrane potential
## 6419 negative regulation of mitochondrion organization
## 6420 negative regulation of mitophagy
## 6421 negative regulation of mitotic metaphase/anaphase transition
## 6422 negative regulation of motor neuron apoptotic process
## 6423 negative regulation of muscle cell differentiation
## 6424 negative regulation of MyD88-independent toll-like receptor signaling pathway
## 6425 negative regulation of myofibroblast differentiation
## 6426 negative regulation of myotube differentiation
## 6427 negative regulation of necroptotic process
## 6428 negative regulation of neuroblast proliferation
## 6429 negative regulation of neuroinflammatory response
## 6430 negative regulation of neurotransmitter secretion
## 6431 negative regulation of nitric-oxide synthase activity
## 6432 negative regulation of NLRP3 inflammasome complex assembly
## 6433 negative regulation of non-canonical Wnt signaling pathway
## 6434 negative regulation of nuclear-transcribed mRNA catabolic process, nonsense-mediated decay
## 6435 negative regulation of nucleic acid-templated transcription
## 6436 negative regulation of nucleotide-binding oligomerization domain containing 2 signaling pathway
## 6437 negative regulation of osteoblast proliferation
## 6438 negative regulation of osteoclast development
## 6439 negative regulation of oxidative stress-induced neuron intrinsic apoptotic signaling pathway
## 6440 negative regulation of pancreatic juice secretion
## 6441 negative regulation of peptidyl-lysine acetylation
## 6442 negative regulation of peptidyl-tyrosine phosphorylation
## 6443 negative regulation of phosphatidylinositol 3-kinase activity
## 6444 negative regulation of pinocytosis
## 6445 negative regulation of platelet-derived growth factor receptor-beta signaling pathway
## 6446 negative regulation of post-translational protein modification
## 6447 negative regulation of potassium ion transmembrane transport
## 6448 negative regulation of protein acetylation
## 6449 negative regulation of protein K48-linked deubiquitination
## 6450 negative regulation of protein kinase C signaling
## 6451 negative regulation of protein metabolic process
## 6452 negative regulation of protein processing
## 6453 negative regulation of protein targeting to membrane
## 6454 negative regulation of protein tyrosine phosphatase activity
## 6455 negative regulation of protein-containing complex disassembly
## 6456 negative regulation of response to endoplasmic reticulum stress
## 6457 negative regulation of response to oxidative stress
## 6458 negative regulation of Rho guanyl-nucleotide exchange factor activity
## 6459 negative regulation of RNA export from nucleus
## 6460 negative regulation of satellite cell differentiation
## 6461 negative regulation of Schwann cell proliferation
## 6462 negative regulation of secretion
## 6463 negative regulation of sister chromatid cohesion
## 6464 negative regulation of skeletal muscle satellite cell proliferation
## 6465 negative regulation of small GTPase mediated signal transduction
## 6466 negative regulation of smooth muscle cell apoptotic process
## 6467 negative regulation of smooth muscle cell differentiation
## 6468 negative regulation of sodium ion transport
## 6469 negative regulation of striated muscle cell differentiation
## 6470 negative regulation of synapse assembly
## 6471 negative regulation of synaptic plasticity
## 6472 negative regulation of synaptic transmission
## 6473 negative regulation of synaptic transmission, glutamatergic
## 6474 negative regulation of synaptic vesicle exocytosis
## 6475 negative regulation of systemic arterial blood pressure
## 6476 negative regulation of T cell apoptotic process
## 6477 negative regulation of T cell costimulation
## 6478 negative regulation of T cell cytokine production
## 6479 negative regulation of T cell differentiation
## 6480 negative regulation of T cell migration
## 6481 negative regulation of t-circle formation
## 6482 negative regulation of telomere maintenance
## 6483 negative regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## 6484 negative regulation of thymocyte apoptotic process
## 6485 negative regulation of toll-like receptor 4 signaling pathway
## 6486 negative regulation of toll-like receptor 9 signaling pathway
## 6487 negative regulation of transcription by RNA polymerase I
## 6488 negative regulation of transcription by RNA polymerase III
## 6489 negative regulation of transcription from RNA polymerase II promoter in response to hypoxia
## 6490 negative regulation of transcription from RNA polymerase II promoter in response to stress
## 6491 negative regulation of transcription initiation from RNA polymerase II promoter
## 6492 negative regulation of transcription involved in G1/S transition of mitotic cell cycle
## 6493 negative regulation of transcription of nucleolar large rRNA by RNA polymerase I
## 6494 negative regulation of translation in response to stress
## 6495 negative regulation of translational initiation in response to stress
## 6496 negative regulation of transposition, RNA-mediated
## 6497 negative regulation of tubulin deacetylation
## 6498 negative regulation of type 2 immune response
## 6499 negative regulation of ubiquitin-specific protease activity
## 6500 negative regulation of vascular associated smooth muscle cell migration
## 6501 negative regulation of voltage-gated calcium channel activity
## 6502 negative regulation of wound healing
## 6503 negative regulation of wound healing, spreading of epidermal cells
## 6504 negative stranded viral RNA replication
## 6505 NELF complex
## 6506 Nem1-Spo7 phosphatase complex
## 6507 netrin receptor activity
## 6508 neural crest cell differentiation
## 6509 neural tube formation
## 6510 neural tube patterning
## 6511 neuregulin binding
## 6512 neurofilament cytoskeleton organization
## 6513 neuromuscular process controlling posture
## 6514 neuron death
## 6515 neuron maturation
## 6516 neuron projection arborization
## 6517 neuron projection guidance
## 6518 neuron remodeling
## 6519 neuron-neuron synaptic transmission
## 6520 neuronal dense core vesicle
## 6521 neuronal ion channel clustering
## 6522 neuropilin binding
## 6523 neurotransmitter metabolic process
## 6524 neurotransmitter reuptake
## 6525 neurotransmitter uptake
## 6526 neutral amino acid:sodium symporter activity
## 6527 neutrophil activation involved in immune response
## 6528 neutrophil mediated immunity
## 6529 nicotinamide nucleotide metabolic process
## 6530 nicotinate-nucleotide diphosphorylase (carboxylating) activity
## 6531 nitrate metabolic process
## 6532 nitric oxide binding
## 6533 nitric oxide mediated signal transduction
## 6534 nitric-oxide synthase complex
## 6535 nitrite reductase (NO-forming) activity
## 6536 Noc4p-Nop14p complex
## 6537 nodal signaling pathway
## 6538 node of Ranvier
## 6539 norepinephrine metabolic process
## 6540 Notch receptor processing
## 6541 Notch signaling involved in heart development
## 6542 notochord development
## 6543 nuclear cyclin-dependent protein kinase holoenzyme complex
## 6544 nuclear lumen
## 6545 nuclear matrix anchoring at nuclear membrane
## 6546 nuclear meiotic cohesin complex
## 6547 nuclear outer membrane-endoplasmic reticulum membrane network
## 6548 nuclear polyadenylation-dependent mRNA catabolic process
## 6549 nuclear pore inner ring
## 6550 nuclear pre-replicative complex
## 6551 nuclear proteasome complex
## 6552 nuclear speck organization
## 6553 nucleolar ribonuclease P complex
## 6554 nucleoside kinase activity
## 6555 nucleoside monophosphate kinase activity
## 6556 nucleoside transmembrane transport
## 6557 nucleoside transmembrane transporter activity
## 6558 nucleoside transport
## 6559 nucleoside triphosphate adenylate kinase activity
## 6560 nucleotide diphosphatase activity
## 6561 nucleotide phosphorylation
## 6562 nucleotide transport
## 6563 nucleotide-activated protein kinase complex
## 6564 nucleotide-binding oligomerization domain containing 2 signaling pathway
## 6565 nucleotide-excision repair involved in interstrand cross-link repair
## 6566 nucleus localization
## 6567 oleate transmembrane transporter activity
## 6568 oleoyl-CoA ligase activity
## 6569 olfactory lobe development
## 6570 oligopeptide transport
## 6571 oligosaccharide binding
## 6572 oligosaccharyl transferase activity
## 6573 omega peptidase activity
## 6574 opsonization
## 6575 optic nerve development
## 6576 organelle assembly
## 6577 organelle localization by membrane tethering
## 6578 organelle membrane contact site
## 6579 organic anion transport
## 6580 organic cation transmembrane transporter activity
## 6581 ornithine transport
## 6582 ossification involved in bone maturation
## 6583 osteoblast fate commitment
## 6584 osteoclast development
## 6585 osteoclast proliferation
## 6586 outer dense fiber
## 6587 oxalate transmembrane transporter activity
## 6588 oxalate transport
## 6589 oxaloacetate transmembrane transporter activity
## 6590 oxaloacetate transport
## 6591 oxaloacetate(2-) transmembrane transport
## 6592 oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor
## 6593 oxidoreductase activity, acting on a sulfur group of donors, oxygen as acceptor
## 6594 oxidoreductase activity, acting on CH-OH group of donors
## 6595 oxidoreductase activity, acting on paired donors, with oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water
## 6596 oxidoreductase activity, acting on the aldehyde or oxo group of donors, disulfide as acceptor
## 6597 oxoglutarate dehydrogenase complex
## 6598 oxygen binding
## 6599 oxygen carrier activity
## 6600 oxysterol binding
## 6601 P-TEFb complex
## 6602 p38MAPK cascade
## 6603 pantothenate metabolic process
## 6604 parallel actin filament bundle assembly
## 6605 parallel fiber to Purkinje cell synapse
## 6606 paranodal junction assembly
## 6607 paranode region of axon
## 6608 paraspeckles
## 6609 parathyroid gland development
## 6610 parturition
## 6611 pentose-phosphate shunt, non-oxidative branch
## 6612 pentose-phosphate shunt, oxidative branch
## 6613 peptide disulfide oxidoreductase activity
## 6614 peptide hormone receptor binding
## 6615 peptide transmembrane transporter activity
## 6616 peptide-methionine (R)-S-oxide reductase activity
## 6617 peptide-methionine (S)-S-oxide reductase activity
## 6618 peptide:proton symporter activity
## 6619 peptidoglycan transmembrane transporter activity
## 6620 peptidyl-arginine methylation, to asymmetrical-dimethyl arginine
## 6621 peptidyl-glutamic acid carboxylation
## 6622 peptidyl-lysine deglutarylation
## 6623 peptidyl-lysine desuccinylation
## 6624 peptidyl-lysine hydroxylation
## 6625 peptidyl-lysine methylation
## 6626 peptidyl-lysine monomethylation
## 6627 peptidyl-proline hydroxylation to 4-hydroxy-L-proline
## 6628 peptidyl-serine ADP-ribosylation
## 6629 peptidyltransferase activity
## 6630 pericardium morphogenesis
## 6631 periciliary membrane compartment
## 6632 perinucleolar compartment
## 6633 peroxisomal importomer complex
## 6634 peroxisome membrane biogenesis
## 6635 peroxisome membrane targeting sequence binding
## 6636 peroxisome proliferator activated receptor signaling pathway
## 6637 peroxisome targeting sequence binding
## 6638 pH reduction
## 6639 pharyngeal system development
## 6640 phenylalanyl-tRNA aminoacylation
## 6641 phenylpyruvate tautomerase activity
## 6642 phosphate ion transport
## 6643 phosphatidate phosphatase activity
## 6644 phosphatidic acid metabolic process
## 6645 phosphatidylcholine floppase activity
## 6646 phosphatidylcholine transfer activity
## 6647 phosphatidylcholine transporter activity
## 6648 phosphatidylethanolamine catabolic process
## 6649 phosphatidylethanolamine flippase activity
## 6650 phosphatidylinositol 3-kinase complex, class IA
## 6651 phosphatidylinositol 3-kinase regulator activity
## 6652 phosphatidylinositol 5-phosphate metabolic process
## 6653 phosphatidylinositol N-acetylglucosaminyltransferase activity
## 6654 phosphatidylinositol phosphate phosphatase activity
## 6655 phosphatidylinositol-4-phosphate phosphatase activity
## 6656 phosphatidylinositol-4,5-bisphosphate 4-phosphatase activity
## 6657 phosphodiesterase I activity
## 6658 phospholipase A2 inhibitor activity
## 6659 phospholipase C-activating dopamine receptor signaling pathway
## 6660 phospholipase inhibitor activity
## 6661 phospholipid dephosphorylation
## 6662 phospholipid efflux
## 6663 phospholipid-hydroperoxide glutathione peroxidase activity
## 6664 phosphopyruvate hydratase activity
## 6665 phosphopyruvate hydratase complex
## 6666 phosphorylase kinase complex
## 6667 phosphotransferase activity, phosphate group as acceptor
## 6668 photoreceptor cell cilium
## 6669 photoreceptor cell morphogenesis
## 6670 phylloquinone catabolic process
## 6671 plasma lipoprotein particle clearance
## 6672 plasma membrane lactate transport
## 6673 plasma membrane proton-transporting V-type ATPase complex
## 6674 plus-end-directed vesicle transport along microtubule
## 6675 PML body organization
## 6676 poly(ADP-ribose) glycohydrolase activity
## 6677 polyadenylation-dependent snoRNA 3'-end processing
## 6678 polyphosphate catabolic process
## 6679 polysome binding
## 6680 polyuridylation-dependent mRNA catabolic process
## 6681 porphyrin-containing compound biosynthetic process
## 6682 positive regulation by host of viral genome replication
## 6683 positive regulation by host of viral release from host cell
## 6684 positive regulation of acrosome reaction
## 6685 positive regulation of actin filament depolymerization
## 6686 positive regulation of actin nucleation
## 6687 positive regulation of activin receptor signaling pathway
## 6688 positive regulation of adipose tissue development
## 6689 positive regulation of AMPA glutamate receptor clustering
## 6690 positive regulation of AMPA receptor activity
## 6691 positive regulation of amyloid precursor protein catabolic process
## 6692 positive regulation of anaphase-promoting complex-dependent catabolic process
## 6693 positive regulation of androgen receptor activity
## 6694 positive regulation of ARF protein signal transduction
## 6695 positive regulation of ATP-dependent microtubule motor activity, plus-end-directed
## 6696 positive regulation of attachment of spindle microtubules to kinetochore
## 6697 positive regulation of autophagy of mitochondrion
## 6698 positive regulation of axon regeneration
## 6699 positive regulation of B cell apoptotic process
## 6700 positive regulation of base-excision repair
## 6701 positive regulation of basement membrane assembly involved in embryonic body morphogenesis
## 6702 positive regulation of bile acid biosynthetic process
## 6703 positive regulation of biomineral tissue development
## 6704 positive regulation of branching involved in ureteric bud morphogenesis
## 6705 positive regulation of brown fat cell differentiation
## 6706 positive regulation of calcium ion transport into cytosol
## 6707 positive regulation of cAMP-mediated signaling
## 6708 positive regulation of cardiac muscle cell differentiation
## 6709 positive regulation of catecholamine secretion
## 6710 positive regulation of CD4-positive, alpha-beta T cell activation
## 6711 positive regulation of CD4-positive, alpha-beta T cell differentiation
## 6712 positive regulation of CD4-positive, alpha-beta T cell proliferation
## 6713 positive regulation of CD8-positive, alpha-beta T cell differentiation
## 6714 positive regulation of cell cycle G2/M phase transition
## 6715 positive regulation of cell killing
## 6716 positive regulation of cell projection organization
## 6717 positive regulation of cell-cell adhesion
## 6718 positive regulation of cellular extravasation
## 6719 positive regulation of cellular metabolic process
## 6720 positive regulation of cellular response to insulin stimulus
## 6721 positive regulation of cholangiocyte proliferation
## 6722 positive regulation of chromosome separation
## 6723 positive regulation of chronic inflammatory response to antigenic stimulus
## 6724 positive regulation of collateral sprouting
## 6725 positive regulation of connective tissue replacement
## 6726 positive regulation of cristae formation
## 6727 positive regulation of cyclic-nucleotide phosphodiesterase activity
## 6728 positive regulation of cysteine-type endopeptidase activity involved in apoptotic signaling pathway
## 6729 positive regulation of cytochrome-c oxidase activity
## 6730 positive regulation of cytoskeleton organization
## 6731 positive regulation of dendritic cell apoptotic process
## 6732 positive regulation of dendritic cell chemotaxis
## 6733 positive regulation of dendritic cell cytokine production
## 6734 positive regulation of dendritic cell differentiation
## 6735 positive regulation of DNA damage response, signal transduction by p53 class mediator
## 6736 positive regulation of DNA damage response, signal transduction by p53 class mediator resulting in transcription of p21 class mediator
## 6737 positive regulation of DNA ligation
## 6738 positive regulation of dopamine receptor signaling pathway
## 6739 positive regulation of endodeoxyribonuclease activity
## 6740 positive regulation of endoplasmic reticulum unfolded protein response
## 6741 positive regulation of eosinophil migration
## 6742 positive regulation of epithelial cell proliferation involved in wound healing
## 6743 positive regulation of epithelial to mesenchymal transition involved in endocardial cushion formation
## 6744 positive regulation of epithelial tube formation
## 6745 positive regulation of establishment of T cell polarity
## 6746 positive regulation of execution phase of apoptosis
## 6747 positive regulation of extracellular matrix organization
## 6748 positive regulation of fatty acid metabolic process
## 6749 positive regulation of fibroblast apoptotic process
## 6750 positive regulation of fibroblast growth factor production
## 6751 positive regulation of focal adhesion disassembly
## 6752 positive regulation of glucose mediated signaling pathway
## 6753 positive regulation of glucose transmembrane transport
## 6754 positive regulation of glutamate secretion
## 6755 positive regulation of glycoprotein metabolic process
## 6756 positive regulation of granzyme B production
## 6757 positive regulation of growth
## 6758 positive regulation of growth factor dependent skeletal muscle satellite cell proliferation
## 6759 positive regulation of growth hormone receptor signaling pathway
## 6760 positive regulation of hematopoietic stem cell proliferation
## 6761 positive regulation of hemoglobin biosynthetic process
## 6762 positive regulation of hepatic stellate cell activation
## 6763 positive regulation of high-density lipoprotein particle assembly
## 6764 positive regulation of histamine secretion by mast cell
## 6765 positive regulation of histone H2B ubiquitination
## 6766 positive regulation of histone H4 acetylation
## 6767 positive regulation of hormone biosynthetic process
## 6768 positive regulation of hormone secretion
## 6769 positive regulation of humoral immune response
## 6770 positive regulation of hydrogen peroxide-mediated programmed cell death
## 6771 positive regulation of immunoglobulin mediated immune response
## 6772 positive regulation of inositol phosphate biosynthetic process
## 6773 positive regulation of interleukin-1 alpha production
## 6774 positive regulation of interleukin-18 production
## 6775 positive regulation of interleukin-4-mediated signaling pathway
## 6776 positive regulation of interleukin-5 production
## 6777 positive regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## 6778 positive regulation of ion transmembrane transport
## 6779 positive regulation of IRE1-mediated unfolded protein response
## 6780 positive regulation of killing of cells of other organism
## 6781 positive regulation of lamellipodium organization
## 6782 positive regulation of lipase activity
## 6783 positive regulation of lipid catabolic process
## 6784 positive regulation of low-density lipoprotein receptor activity
## 6785 positive regulation of lymphocyte activation
## 6786 positive regulation of lysosomal protein catabolic process
## 6787 positive regulation of macrophage derived foam cell differentiation
## 6788 positive regulation of macrophage fusion
## 6789 positive regulation of macropinocytosis
## 6790 positive regulation of mammary gland epithelial cell proliferation
## 6791 positive regulation of mast cell chemotaxis
## 6792 positive regulation of mast cell degranulation
## 6793 positive regulation of matrix metallopeptidase secretion
## 6794 positive regulation of MDA-5 signaling pathway
## 6795 positive regulation of mesenchymal stem cell proliferation
## 6796 positive regulation of MHC class I biosynthetic process
## 6797 positive regulation of microglial cell mediated cytotoxicity
## 6798 positive regulation of microtubule binding
## 6799 positive regulation of mitochondrial ATP synthesis coupled electron transport
## 6800 positive regulation of mitochondrial membrane permeability involved in apoptotic process
## 6801 positive regulation of mitochondrial transcription
## 6802 positive regulation of mitophagy in response to mitochondrial depolarization
## 6803 positive regulation of mitotic cell cycle phase transition
## 6804 positive regulation of mucus secretion
## 6805 positive regulation of myeloid cell differentiation
## 6806 positive regulation of myoblast proliferation
## 6807 positive regulation of natural killer cell cytokine production
## 6808 positive regulation of neutrophil degranulation
## 6809 positive regulation of NK T cell proliferation
## 6810 positive regulation of NLRP3 inflammasome complex assembly
## 6811 positive regulation of nucleotide-binding oligomerization domain containing 1 signaling pathway
## 6812 positive regulation of oocyte maturation
## 6813 positive regulation of organ growth
## 6814 positive regulation of organelle organization
## 6815 positive regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## 6816 positive regulation of peptidyl-tyrosine autophosphorylation
## 6817 positive regulation of phosphatase activity
## 6818 positive regulation of pinocytosis
## 6819 positive regulation of plasminogen activation
## 6820 positive regulation of potassium ion export across plasma membrane
## 6821 positive regulation of production of miRNAs involved in gene silencing by miRNA
## 6822 positive regulation of prostaglandin-E synthase activity
## 6823 positive regulation of protein autoubiquitination
## 6824 positive regulation of protein deacetylation
## 6825 positive regulation of protein deubiquitination
## 6826 positive regulation of protein K48-linked ubiquitination
## 6827 positive regulation of protein localization to cell cortex
## 6828 positive regulation of protein localization to centrosome
## 6829 positive regulation of protein localization to chromosome, telomeric region
## 6830 positive regulation of protein localization to cilium
## 6831 positive regulation of protein localization to endosome
## 6832 positive regulation of protein localization to membrane
## 6833 positive regulation of protein localization to nucleolus
## 6834 positive regulation of protein modification process
## 6835 positive regulation of protein neddylation
## 6836 positive regulation of protein polyubiquitination
## 6837 positive regulation of protein-containing complex disassembly
## 6838 positive regulation of receptor binding
## 6839 positive regulation of receptor clustering
## 6840 positive regulation of regulated secretory pathway
## 6841 positive regulation of renal sodium excretion
## 6842 positive regulation of retrograde protein transport, ER to cytosol
## 6843 positive regulation of ryanodine-sensitive calcium-release channel activity
## 6844 positive regulation of secretion
## 6845 positive regulation of secretory granule organization
## 6846 positive regulation of sensory perception of pain
## 6847 positive regulation of sister chromatid cohesion
## 6848 positive regulation of skeletal muscle fiber development
## 6849 positive regulation of skeletal muscle tissue development
## 6850 positive regulation of small GTPase mediated signal transduction
## 6851 positive regulation of smooth muscle cell migration
## 6852 positive regulation of sodium ion transport
## 6853 positive regulation of spindle assembly
## 6854 positive regulation of stem cell differentiation
## 6855 positive regulation of stem cell population maintenance
## 6856 positive regulation of striated muscle cell differentiation
## 6857 positive regulation of superoxide dismutase activity
## 6858 positive regulation of synaptic transmission, glutamatergic
## 6859 positive regulation of syncytium formation by plasma membrane fusion
## 6860 positive regulation of systemic arterial blood pressure
## 6861 positive regulation of T cell costimulation
## 6862 positive regulation of T cell differentiation in thymus
## 6863 positive regulation of T cell tolerance induction
## 6864 positive regulation of t-circle formation
## 6865 positive regulation of T-helper 1 cell cytokine production
## 6866 positive regulation of T-helper 2 cell differentiation
## 6867 positive regulation of telomerase catalytic core complex assembly
## 6868 positive regulation of testosterone secretion
## 6869 positive regulation of thymocyte apoptotic process
## 6870 positive regulation of toll-like receptor 2 signaling pathway
## 6871 positive regulation of toll-like receptor 8 signaling pathway
## 6872 positive regulation of toll-like receptor 9 signaling pathway
## 6873 positive regulation of TORC2 signaling
## 6874 positive regulation of transcription via serum response element binding
## 6875 positive regulation of transcytosis
## 6876 positive regulation of translational fidelity
## 6877 positive regulation of vascular wound healing
## 6878 positive regulation of voltage-gated calcium channel activity
## 6879 positive regulation of wound healing, spreading of epidermal cells
## 6880 post-embryonic camera-type eye development
## 6881 post-translational protein acetylation
## 6882 postsynapse organization
## 6883 postsynaptic endocytic zone cytoplasmic component
## 6884 postsynaptic recycling endosome
## 6885 potassium channel complex
## 6886 potassium channel inhibitor activity
## 6887 potassium ion transmembrane transporter activity
## 6888 POZ domain binding
## 6889 pre-mRNA 3'-splice site binding
## 6890 pre-snoRNP complex
## 6891 prenylcysteine catabolic process
## 6892 prenylcysteine oxidase activity
## 6893 presynapse assembly
## 6894 presynaptic active zone membrane
## 6895 presynaptic modulation of chemical synaptic transmission
## 6896 primitive erythrocyte differentiation
## 6897 primitive hemopoiesis
## 6898 primitive streak formation
## 6899 pro-B cell differentiation
## 6900 pro-T cell differentiation
## 6901 procollagen galactosyltransferase activity
## 6902 progesterone biosynthetic process
## 6903 progesterone receptor binding
## 6904 progesterone receptor signaling pathway
## 6905 prostaglandin transport
## 6906 prostate gland development
## 6907 prostate gland growth
## 6908 proteasome regulatory particle assembly
## 6909 protein antigen binding
## 6910 protein deglutarylation
## 6911 protein depropionylation
## 6912 protein deubiquitination involved in ubiquitin-dependent protein catabolic process
## 6913 protein histidine phosphatase activity
## 6914 protein import
## 6915 protein insertion into membrane
## 6916 protein insertion into mitochondrial membrane
## 6917 protein K27-linked deubiquitination
## 6918 protein K29-linked deubiquitination
## 6919 protein K33-linked deubiquitination
## 6920 protein kinase A signaling
## 6921 protein kinase C signaling
## 6922 protein kinase D signaling
## 6923 protein linear deubiquitination
## 6924 protein linear polyubiquitination
## 6925 protein localization to axon
## 6926 protein localization to basolateral plasma membrane
## 6927 protein localization to bicellular tight junction
## 6928 protein localization to cell periphery
## 6929 protein localization to cytosolic proteasome complex involved in ERAD pathway
## 6930 protein localization to endoplasmic reticulum
## 6931 protein localization to Golgi membrane
## 6932 protein localization to perinuclear region of cytoplasm
## 6933 protein localization to photoreceptor outer segment
## 6934 protein localization to synapse
## 6935 protein localization to tricellular tight junction
## 6936 protein mannosylation
## 6937 protein O-GlcNAc transferase activity
## 6938 protein O-linked fucosylation
## 6939 protein O-linked glycosylation via serine
## 6940 protein oxidation
## 6941 protein phosphatase 2B binding
## 6942 protein phosphatase 4 complex
## 6943 protein phosphorylated amino acid binding
## 6944 protein polyglutamylation
## 6945 protein prenyltransferase activity
## 6946 protein repair
## 6947 protein serine/threonine phosphatase complex
## 6948 protein serine/threonine phosphatase inhibitor activity
## 6949 protein to membrane docking
## 6950 protein-arginine omega-N asymmetric methyltransferase activity
## 6951 protein-cysteine S-myristoyltransferase activity
## 6952 protein-DNA complex assembly
## 6953 protein-DNA complex disassembly
## 6954 protein-glutaryllysine deglutarylase activity
## 6955 protein-propionyllysine depropionylase activity
## 6956 protein-ribulosamine 3-kinase activity
## 6957 protein-succinyllysine desuccinylase activity
## 6958 proton-transporting ATP synthase complex, coupling factor F(o)
## 6959 proximal/distal pattern formation
## 6960 PTB domain binding
## 6961 pulmonary artery morphogenesis
## 6962 pulmonary valve development
## 6963 purine nucleotide metabolic process
## 6964 purine ribonucleoside salvage
## 6965 purine-rich negative regulatory element binding
## 6966 purine-specific mismatch base pair DNA N-glycosylase activity
## 6967 putrescine biosynthetic process
## 6968 putrescine biosynthetic process from ornithine
## 6969 Pwp2p-containing subcomplex of 90S preribosome
## 6970 pyramidal neuron development
## 6971 pyrimidine dimer repair by nucleotide-excision repair
## 6972 pyrimidine nucleoside metabolic process
## 6973 pyrimidine nucleotide binding
## 6974 pyrimidine ribonucleotide biosynthetic process
## 6975 pyrimidine-containing compound transmembrane transport
## 6976 pyrophosphatase activity
## 6977 pyroptosis
## 6978 pyruvate dehydrogenase (NAD+) activity
## 6979 pyruvate dehydrogenase complex
## 6980 quinolinate metabolic process
## 6981 R2TP complex
## 6982 Rad51B-Rad51C-Rad51D-XRCC2 complex
## 6983 RAGE receptor binding
## 6984 Rb-E2F complex
## 6985 re-entry into mitotic cell cycle
## 6986 receptor localization to synapse
## 6987 receptor transactivation
## 6988 receptor-mediated endocytosis involved in cholesterol transport
## 6989 recombinational interstrand cross-link repair
## 6990 regulation of actin filament bundle assembly
## 6991 regulation of actin filament organization
## 6992 regulation of actin filament-based process
## 6993 regulation of AMPA receptor activity
## 6994 regulation of amyloid precursor protein biosynthetic process
## 6995 regulation of angiotensin-activated signaling pathway
## 6996 regulation of ATP biosynthetic process
## 6997 regulation of autophagosome maturation
## 6998 regulation of autophagosome size
## 6999 regulation of axon guidance
## 7000 regulation of B cell differentiation
## 7001 regulation of behavior
## 7002 regulation of bile acid biosynthetic process
## 7003 regulation of BMP signaling pathway
## 7004 regulation of bone remodeling
## 7005 regulation of branching involved in mammary gland duct morphogenesis
## 7006 regulation of branching involved in salivary gland morphogenesis
## 7007 regulation of brown fat cell differentiation
## 7008 regulation of calcium ion import
## 7009 regulation of calcium ion transmembrane transport
## 7010 regulation of calcium-mediated signaling
## 7011 regulation of cAMP-mediated signaling
## 7012 regulation of cardiac muscle cell contraction
## 7013 regulation of cardiolipin metabolic process
## 7014 regulation of CD40 signaling pathway
## 7015 regulation of cell communication by electrical coupling involved in cardiac conduction
## 7016 regulation of cell differentiation involved in embryonic placenta development
## 7017 regulation of cellular pH
## 7018 regulation of cellular protein metabolic process
## 7019 regulation of cellular response to insulin stimulus
## 7020 regulation of cellular response to oxidative stress
## 7021 regulation of centrosome cycle
## 7022 regulation of chaperone-mediated autophagy
## 7023 regulation of chemotaxis
## 7024 regulation of cholesterol esterification
## 7025 regulation of cholesterol transport
## 7026 regulation of chromatin assembly or disassembly
## 7027 regulation of chromosome condensation
## 7028 regulation of collagen fibril organization
## 7029 regulation of cytokine production involved in inflammatory response
## 7030 regulation of cytoplasmic translation
## 7031 regulation of defense response to virus by host
## 7032 regulation of delayed rectifier potassium channel activity
## 7033 regulation of dendritic cell differentiation
## 7034 regulation of developmental process
## 7035 regulation of DNA biosynthetic process
## 7036 regulation of DNA double-strand break processing
## 7037 regulation of DNA-templated transcription in response to stress
## 7038 regulation of dopamine receptor signaling pathway
## 7039 regulation of eIF2 alpha phosphorylation by heme
## 7040 regulation of endoplasmic reticulum stress-induced intrinsic apoptotic signaling pathway
## 7041 regulation of endothelial cell migration
## 7042 regulation of entry of bacterium into host cell
## 7043 regulation of epidermal cell differentiation
## 7044 regulation of epidermal growth factor-activated receptor activity
## 7045 regulation of epidermis development
## 7046 regulation of epithelial cell proliferation
## 7047 regulation of ER to Golgi vesicle-mediated transport
## 7048 regulation of establishment or maintenance of cell polarity
## 7049 regulation of Fc receptor mediated stimulatory signaling pathway
## 7050 regulation of fibroblast proliferation
## 7051 regulation of gastric acid secretion
## 7052 regulation of gene silencing
## 7053 regulation of germinal center formation
## 7054 regulation of gliogenesis
## 7055 regulation of glucosylceramidase activity
## 7056 regulation of growth rate
## 7057 regulation of hair follicle development
## 7058 regulation of hematopoietic progenitor cell differentiation
## 7059 regulation of high voltage-gated calcium channel activity
## 7060 regulation of histone deacetylation
## 7061 regulation of histone H4 acetylation
## 7062 regulation of histone methylation
## 7063 regulation of hormone levels
## 7064 regulation of immune system process
## 7065 regulation of interferon-gamma production
## 7066 regulation of intracellular cholesterol transport
## 7067 regulation of intracellular protein transport
## 7068 regulation of kainate selective glutamate receptor activity
## 7069 regulation of kinase activity
## 7070 regulation of leukocyte cell-cell adhesion
## 7071 regulation of lipid biosynthetic process
## 7072 regulation of long-term synaptic potentiation
## 7073 regulation of lymphocyte activation
## 7074 regulation of lymphocyte migration
## 7075 regulation of meiotic cell cycle
## 7076 regulation of membrane depolarization
## 7077 regulation of membrane lipid distribution
## 7078 regulation of membrane permeability
## 7079 regulation of microtubule depolymerization
## 7080 regulation of miRNA metabolic process
## 7081 regulation of mitochondrial membrane permeability involved in apoptotic process
## 7082 regulation of mitochondrial membrane permeability involved in programmed necrotic cell death
## 7083 regulation of mitochondrial transcription
## 7084 regulation of mitotic recombination
## 7085 regulation of natural killer cell mediated cytotoxicity
## 7086 regulation of neuroinflammatory response
## 7087 regulation of neuron projection arborization
## 7088 regulation of neurotransmitter levels
## 7089 regulation of neurotrophin TRK receptor signaling pathway
## 7090 regulation of norepinephrine secretion
## 7091 regulation of organelle assembly
## 7092 regulation of organelle transport along microtubule
## 7093 regulation of phosphatidylcholine catabolic process
## 7094 regulation of phospholipid biosynthetic process
## 7095 regulation of plasma membrane repair
## 7096 regulation of protein catabolic process at postsynapse, modulating synaptic transmission
## 7097 regulation of protein import into nucleus
## 7098 regulation of protein localization to chromatin
## 7099 regulation of protein localization to synapse
## 7100 regulation of protein serine/threonine kinase activity
## 7101 regulation of protein transport
## 7102 regulation of proton transport
## 7103 regulation of receptor recycling
## 7104 regulation of receptor-mediated endocytosis
## 7105 regulation of respiratory gaseous exchange
## 7106 regulation of resting membrane potential
## 7107 regulation of retrograde transport, endosome to Golgi
## 7108 regulation of retrograde vesicle-mediated transport, Golgi to ER
## 7109 regulation of RIG-I signaling pathway
## 7110 regulation of RNA metabolic process
## 7111 regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## 7112 regulation of ryanodine-sensitive calcium-release channel activity
## 7113 regulation of smooth muscle cell apoptotic process
## 7114 regulation of smooth muscle cell differentiation
## 7115 regulation of SREBP signaling pathway
## 7116 regulation of steroid biosynthetic process
## 7117 regulation of synapse assembly
## 7118 regulation of synapse structure or activity
## 7119 regulation of synaptic vesicle recycling
## 7120 regulation of T cell anergy
## 7121 regulation of T cell cytokine production
## 7122 regulation of T cell receptor signaling pathway
## 7123 regulation of toll-like receptor 4 signaling pathway
## 7124 regulation of toll-like receptor signaling pathway
## 7125 regulation of transcription elongation from RNA polymerase II promoter
## 7126 regulation of transcription regulatory region DNA binding
## 7127 regulation of transepithelial transport
## 7128 regulation of transforming growth factor beta activation
## 7129 regulation of transforming growth factor beta2 production
## 7130 regulation of translational termination
## 7131 regulation of tubulin deacetylation
## 7132 regulation of type III interferon production
## 7133 regulation of tyrosine phosphorylation of STAT protein
## 7134 regulation of vacuole fusion, non-autophagic
## 7135 regulation of vasoconstriction
## 7136 regulation of ventricular cardiac muscle cell action potential
## 7137 regulation of viral process
## 7138 regulation of vitamin D receptor signaling pathway
## 7139 regulation of Wnt signaling pathway, planar cell polarity pathway
## 7140 regulatory region nucleic acid binding
## 7141 regulatory region RNA binding
## 7142 relaxation of vascular associated smooth muscle
## 7143 replication fork protection complex
## 7144 replisome
## 7145 reproductive structure development
## 7146 respiratory burst after phagocytosis
## 7147 respiratory burst involved in defense response
## 7148 respiratory tube development
## 7149 response to 17alpha-ethynylestradiol
## 7150 response to acidic pH
## 7151 response to aldosterone
## 7152 response to amino acid starvation
## 7153 response to angiotensin
## 7154 response to antipsychotic drug
## 7155 response to cisplatin
## 7156 response to clozapine
## 7157 response to denervation involved in regulation of muscle adaptation
## 7158 response to dietary excess
## 7159 response to DNA damage checkpoint signaling
## 7160 response to epidermal growth factor
## 7161 response to extracellular stimulus
## 7162 response to fibroblast growth factor
## 7163 response to flavonoid
## 7164 response to fluid shear stress
## 7165 response to fluoride
## 7166 response to fungicide
## 7167 response to gravity
## 7168 response to human chorionic gonadotropin
## 7169 response to insulin-like growth factor stimulus
## 7170 response to L-ascorbic acid
## 7171 response to lithium ion
## 7172 response to methotrexate
## 7173 response to methylmercury
## 7174 response to mitochondrial depolarisation
## 7175 response to muscle stretch
## 7176 response to other organism
## 7177 response to pain
## 7178 response to prostaglandin E
## 7179 response to psychosocial stress
## 7180 response to purine-containing compound
## 7181 response to salt stress
## 7182 response to selenium ion
## 7183 response to symbiotic bacterium
## 7184 response to temperature stimulus
## 7185 response to tetrachloromethane
## 7186 response to thyroid hormone
## 7187 response to UV-B
## 7188 response to vitamin
## 7189 response to water deprivation
## 7190 response to water-immersion restraint stress
## 7191 response to yeast
## 7192 retina morphogenesis in camera-type eye
## 7193 retinal cone cell development
## 7194 retinal metabolic process
## 7195 retinoic acid-responsive element binding
## 7196 retinol dehydrogenase activity
## 7197 retinyl-palmitate esterase activity
## 7198 retrograde neuronal dense core vesicle transport
## 7199 retrograde trans-synaptic signaling by endocannabinoid
## 7200 Rho-dependent protein serine/threonine kinase activity
## 7201 rhodopsin mediated signaling pathway
## 7202 ribonuclease A activity
## 7203 ribonucleoside binding
## 7204 ribonucleoside monophosphate biosynthetic process
## 7205 ribonucleoside-diphosphate reductase activity, thioredoxin disulfide as acceptor
## 7206 ribonucleoside-diphosphate reductase complex
## 7207 ribose phosphate biosynthetic process
## 7208 ribose phosphate diphosphokinase activity
## 7209 ribose phosphate diphosphokinase complex
## 7210 ribose phosphate metabolic process
## 7211 ribosomal large subunit export from nucleus
## 7212 ribosomal protein import into nucleus
## 7213 ribosome disassembly
## 7214 ribosome-associated ubiquitin-dependent protein catabolic process
## 7215 RISC complex binding
## 7216 RNA biosynthetic process
## 7217 RNA cap binding complex
## 7218 RNA interference
## 7219 RNA localization
## 7220 RNA polymerase core enzyme binding
## 7221 RNA polymerase II C-terminal domain binding
## 7222 RNA polymerase II general transcription initiation factor binding
## 7223 RNA polymerase II intronic transcription regulatory region sequence-specific DNA binding
## 7224 RNA polymerase II transcription coactivator binding
## 7225 RNA polymerase III type 1 promoter sequence-specific DNA binding
## 7226 RNA polymerase III type 2 promoter sequence-specific DNA binding
## 7227 RNA polymerase transcription factor SL1 complex
## 7228 RNA strand annealing activity
## 7229 Roundabout binding
## 7230 rRNA (guanosine-2'-O-)-methyltransferase activity
## 7231 rRNA import into mitochondrion
## 7232 rRNA methyltransferase activity
## 7233 rRNA modification
## 7234 rRNA primary transcript binding
## 7235 RSC-type complex
## 7236 RSF complex
## 7237 RZZ complex
## 7238 S-adenosylmethionine biosynthetic process
## 7239 S-adenosylmethionine metabolic process
## 7240 SAGA-type complex
## 7241 sarcoplasmic reticulum lumen
## 7242 scaRNA localization to Cajal body
## 7243 secretion by cell
## 7244 secretory granule localization
## 7245 segment specification
## 7246 segmentation
## 7247 selenocysteine metabolic process
## 7248 self proteolysis
## 7249 semicircular canal morphogenesis
## 7250 sensory perception of touch
## 7251 serine C-palmitoyltransferase activity
## 7252 serine C-palmitoyltransferase complex
## 7253 serine phosphorylation of STAT protein
## 7254 serine-tRNA ligase activity
## 7255 serine-type carboxypeptidase activity
## 7256 serotonin uptake
## 7257 seryl-tRNA aminoacylation
## 7258 sex chromosome
## 7259 sex differentiation
## 7260 sexual reproduction
## 7261 shelterin complex
## 7262 Shu complex
## 7263 signal recognition particle
## 7264 signal recognition particle receptor complex
## 7265 signal recognition particle, endoplasmic reticulum targeting
## 7266 signal transduction involved in DNA damage checkpoint
## 7267 signal transduction involved in regulation of gene expression
## 7268 signaling receptor activator activity
## 7269 single guanine insertion binding
## 7270 single thymine insertion binding
## 7271 single-stranded 3'-5' DNA helicase activity
## 7272 single-stranded DNA 5'-3' exodeoxyribonuclease activity
## 7273 sister chromatid biorientation
## 7274 sister chromatid segregation
## 7275 site-specific endodeoxyribonuclease activity, specific for altered base
## 7276 skeletal muscle acetylcholine-gated channel clustering
## 7277 skeletal muscle satellite cell differentiation
## 7278 skeletal muscle satellite cell maintenance involved in skeletal muscle regeneration
## 7279 skeletal muscle thin filament assembly
## 7280 SMAD protein complex assembly
## 7281 small conductance calcium-activated potassium channel activity
## 7282 small-subunit processome assembly
## 7283 smooth endoplasmic reticulum membrane
## 7284 smooth muscle cell migration
## 7285 smooth muscle cell proliferation
## 7286 SNARE complex disassembly
## 7287 snRNA transcription
## 7288 snRNP binding
## 7289 sodium channel activity
## 7290 sodium-independent organic anion transport
## 7291 sodium:bicarbonate symporter activity
## 7292 soluble NSF attachment protein activity
## 7293 solute:proton symporter activity
## 7294 somatic recombination of immunoglobulin genes involved in immune response
## 7295 spectrin-associated cytoskeleton
## 7296 sperm ejaculation
## 7297 sperm mitochondrion organization
## 7298 spermatid differentiation
## 7299 spermatogonial cell division
## 7300 spermatoproteasome complex
## 7301 sphingolipid binding
## 7302 sphingolipid catabolic process
## 7303 sphingomyelin catabolic process
## 7304 sphingomyelin metabolic process
## 7305 sphingomyelin phosphodiesterase activity
## 7306 sphingomyelin synthase activity
## 7307 sphingosine N-acyltransferase activity
## 7308 spindle localization
## 7309 splicing factor binding
## 7310 spongiotrophoblast differentiation
## 7311 stem cell development
## 7312 stem cell division
## 7313 stereocilium bundle
## 7314 steroid hormone binding
## 7315 sterol response element binding
## 7316 store-operated calcium channel activity
## 7317 striatum development
## 7318 structural constituent of eye lens
## 7319 structural constituent of postsynaptic actin cytoskeleton
## 7320 succinate transmembrane transport
## 7321 succinate transmembrane transporter activity
## 7322 succinyl-CoA metabolic process
## 7323 sulfate binding
## 7324 sulfation
## 7325 sulfur compound metabolic process
## 7326 SUMO polymer binding
## 7327 SUMO-specific endopeptidase activity
## 7328 superoxide dismutase activity
## 7329 superoxide-generating NADPH oxidase activator activity
## 7330 supramolecular fiber organization
## 7331 sympathetic nervous system development
## 7332 synapse pruning
## 7333 synaptic vesicle budding from endosome
## 7334 synaptic vesicle budding from presynaptic endocytic zone membrane
## 7335 synaptic vesicle docking
## 7336 synaptic vesicle membrane organization
## 7337 synaptobrevin 2-SNAP-25-syntaxin-1a-complexin I complex
## 7338 synaptobrevin 2-SNAP-25-syntaxin-1a-complexin II complex
## 7339 T cell aggregation
## 7340 T cell antigen processing and presentation
## 7341 T cell apoptotic process
## 7342 T cell mediated cytotoxicity
## 7343 T cell proliferation involved in immune response
## 7344 T cell receptor V(D)J recombination
## 7345 T follicular helper cell differentiation
## 7346 T-helper 17 cell lineage commitment
## 7347 T-helper 17 type immune response
## 7348 T-tubule organization
## 7349 tachykinin receptor signaling pathway
## 7350 TAP complex
## 7351 TAP2 binding
## 7352 taurine transport
## 7353 telencephalon development
## 7354 telethonin binding
## 7355 telomere assembly
## 7356 telomere maintenance in response to DNA damage
## 7357 telomeric D-loop binding
## 7358 telomeric G-quadruplex DNA binding
## 7359 terminal cisterna
## 7360 testosterone dehydrogenase [NAD(P)] activity
## 7361 tetrahydrobiopterin biosynthetic process
## 7362 tetrapyrrole biosynthetic process
## 7363 TFIIB-class transcription factor binding
## 7364 TFIIF-class transcription factor complex binding
## 7365 TFIIIC-class transcription factor complex binding
## 7366 thiosulfate sulfurtransferase activity
## 7367 thiosulfate transmembrane transporter activity
## 7368 thiosulfate transport
## 7369 thrombopoietin-mediated signaling pathway
## 7370 thymic T cell selection
## 7371 thyroid hormone binding
## 7372 thyroid hormone generation
## 7373 thyroid hormone metabolic process
## 7374 thyroid hormone transport
## 7375 tight junction
## 7376 titin binding
## 7377 tolerance induction
## 7378 tolerance induction to self antigen
## 7379 toll-like receptor 7 signaling pathway
## 7380 toll-like receptor TLR1:TLR2 signaling pathway
## 7381 toll-like receptor TLR6:TLR2 signaling pathway
## 7382 TORC2 signaling
## 7383 toxic substance binding
## 7384 trachea formation
## 7385 TRAF2-GSTP1 complex
## 7386 TRAIL binding
## 7387 TRAM-dependent toll-like receptor 4 signaling pathway
## 7388 TRAMP complex
## 7389 trans-2-enoyl-CoA reductase (NADPH) activity
## 7390 trans-Golgi network membrane organization
## 7391 transcription elongation regulator activity
## 7392 transcription factor AP-1 complex
## 7393 transcription factor catabolic process
## 7394 transcription factor TFIIIB complex
## 7395 transcription initiation from mitochondrial promoter
## 7396 transcription-dependent tethering of RNA polymerase II gene DNA at nuclear periphery
## 7397 transepithelial transport
## 7398 transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer
## 7399 transferase activity, transferring alkyl or aryl (other than methyl) groups
## 7400 transforming growth factor beta receptor activity, type I
## 7401 translation reinitiation
## 7402 translation release factor activity
## 7403 transmission of nerve impulse
## 7404 TRAPPII protein complex
## 7405 TRAPPIII protein complex
## 7406 triglyceride mobilization
## 7407 trimming of terminal mannose on C branch
## 7408 tripeptidyl-peptidase activity
## 7409 tRNA (guanine-N2-)-methyltransferase activity
## 7410 tRNA 2'-phosphotransferase activity
## 7411 tRNA methyltransferase activity
## 7412 tRNA N2-guanine methylation
## 7413 tRNA stabilization
## 7414 tRNA threonylcarbamoyladenosine metabolic process
## 7415 tRNA-guanine transglycosylation
## 7416 tRNA-intron endonuclease complex
## 7417 tRNA-specific adenosine deaminase activity
## 7418 tRNA-type intron splice site recognition and cleavage
## 7419 troponin complex
## 7420 TSC1-TSC2 complex
## 7421 tubulin deacetylation
## 7422 tubulin-glutamic acid ligase activity
## 7423 type 2A serotonin receptor binding
## 7424 type 3 metabotropic glutamate receptor binding
## 7425 type I pneumocyte differentiation
## 7426 type I transforming growth factor beta receptor binding
## 7427 type II transforming growth factor beta receptor binding
## 7428 type IV hypersensitivity
## 7429 U12 snRNA binding
## 7430 U2-type prespliceosome assembly
## 7431 U2AF complex
## 7432 U4atac snRNA binding
## 7433 U4atac snRNP
## 7434 ubiquinone binding
## 7435 ubiquitin modification-dependent histone binding
## 7436 ubiquitin-independent protein catabolic process via the multivesicular body sorting pathway
## 7437 ubiquitin-like protein binding
## 7438 ubiquitin-like protein-specific protease activity
## 7439 UDP-galactose transmembrane transport
## 7440 UDP-galactose transmembrane transporter activity
## 7441 UDP-galactose:beta-N-acetylglucosamine beta-1,3-galactosyltransferase activity
## 7442 UDP-galactose:glucosylceramide beta-1,4-galactosyltransferase activity
## 7443 UDP-galactosyltransferase activity
## 7444 UDP-glucuronate biosynthetic process
## 7445 UDP-N-acetylglucosamine transmembrane transport
## 7446 UDP-N-acetylglucosamine transmembrane transporter activity
## 7447 UDP-N-acetylglucosamine-lysosomal-enzyme N-acetylglucosaminephosphotransferase activity
## 7448 UDP-sugar diphosphatase activity
## 7449 UDP-xylosyltransferase activity
## 7450 UMP catabolic process
## 7451 unidimensional cell growth
## 7452 uracil DNA N-glycosylase activity
## 7453 ureter morphogenesis
## 7454 uridylyltransferase activity
## 7455 uterus development
## 7456 vacuolar proton-transporting V-type ATPase complex assembly
## 7457 valine biosynthetic process
## 7458 valine catabolic process
## 7459 vascular associated smooth muscle cell development
## 7460 vascular associated smooth muscle contraction
## 7461 vascular endothelial growth factor production
## 7462 vascular endothelial growth factor receptor 1 binding
## 7463 vascular endothelial growth factor receptor 2 binding
## 7464 vascular endothelial growth factor-activated receptor activity
## 7465 vasoconstriction
## 7466 venous blood vessel development
## 7467 venous blood vessel morphogenesis
## 7468 ventral spinal cord development
## 7469 ventricular cardiac muscle cell differentiation
## 7470 vesicle targeting
## 7471 viral penetration into host nucleus
## 7472 viral RNA genome replication
## 7473 vitamin binding
## 7474 vitamin transmembrane transport
## 7475 voltage-gated anion channel activity
## 7476 voltage-gated calcium channel complex
## 7477 voltage-gated cation channel activity
## 7478 voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## 7479 voltage-gated sodium channel complex
## 7480 volume-sensitive anion channel activity
## 7481 Weibel-Palade body
## 7482 Wnt protein secretion
## 7483 wound healing, spreading of epidermal cells
## 7484 X chromosome
## 7485 xenobiotic transport across blood-brain barrier
## 7486 xenophagy
## 7487 xylulose biosynthetic process
## 7488 zinc ion homeostasis
## 7489 zinc ion import across plasma membrane
## 7490 zona pellucida receptor complex
## 7491 'de novo' CTP biosynthetic process
## 7492 'de novo' GDP-L-fucose biosynthetic process
## 7493 'de novo' NAD biosynthetic process
## 7494 'de novo' NAD biosynthetic process from tryptophan
## 7495 'de novo' protein folding
## 7496 'de novo' UMP biosynthetic process
## 7497 (R,R)-butanediol dehydrogenase activity
## 7498 (R)-2-hydroxyglutarate dehydrogenase activity
## 7499 [3-methyl-2-oxobutanoate dehydrogenase (acetyl-transferring)] kinase activity
## 7500 [acetyl-CoA carboxylase] kinase activity
## 7501 [acyl-carrier-protein] S-malonyltransferase activity
## 7502 [heparan sulfate]-glucosamine N-sulfotransferase activity
## 7503 [hydroxymethylglutaryl-CoA reductase (NADPH)] kinase activity
## 7504 [myelin basic protein]-arginine N-methyltransferase activity
## 7505 [protein]-3-O-(N-acetyl-D-glucosaminyl)-L-serine O-N-acetyl-alpha-D-glucosaminase activity
## 7506 [protein]-3-O-(N-acetyl-D-glucosaminyl)-L-serine/L-threonine O-N-acetyl-alpha-D-glucosaminase activity
## 7507 [protein]-3-O-(N-acetyl-D-glucosaminyl)-L-threonine O-N-acetyl-alpha-D-glucosaminase activity
## 7508 [pyruvate dehydrogenase (lipoamide)] phosphatase activity
## 7509 1-acylglycerophosphoethanolamine O-acyltransferase activity
## 7510 1-acylglycerophosphoserine O-acyltransferase activity
## 7511 1-alkenylglycerophosphocholine O-acyltransferase activity
## 7512 1-alkenylglycerophosphoethanolamine O-acyltransferase activity
## 7513 1-alkylglycerophosphocholine O-acyltransferase activity
## 7514 1-ethyladenine demethylase activity
## 7515 1-phosphatidyl-1D-myo-inositol 3,5-bisphosphate metabolic process
## 7516 1-phosphatidylinositol-3-phosphate 5-kinase activity
## 7517 1-phosphatidylinositol-5-kinase activity
## 7518 1,4-alpha-glucan branching enzyme activity
## 7519 1,4-alpha-glucan branching enzyme activity (using a glucosylated glycogenin as primer for glycogen synthesis)
## 7520 10-formyltetrahydrofolate metabolic process
## 7521 10-hydroxy-9-(phosphonooxy)octadecanoate phosphatase activity
## 7522 12-hydroxyheptadecatrienoic acid synthase activity
## 7523 15-hydroxyprostaglandin dehydrogenase (NAD+) activity
## 7524 17-beta-ketosteroid reductase activity
## 7525 18S rRNA (adenine(1779)-N(6)/adenine(1780)-N(6))-dimethyltransferase activity
## 7526 2-acylglycerol O-acyltransferase activity
## 7527 2-hydroxyacylsphingosine 1-beta-galactosyltransferase activity
## 7528 2-oxobutyrate catabolic process
## 7529 2,4-dienoyl-CoA reductase (NADPH) activity
## 7530 3 iron, 4 sulfur cluster binding
## 7531 3-beta-hydroxysteroid dehydrogenase/C4-decarboxylase activity
## 7532 3-chloroallyl aldehyde dehydrogenase activity
## 7533 3-hydroxy-2-methylbutyryl-CoA dehydrogenase activity
## 7534 3-hydroxyanthranilate 3,4-dioxygenase activity
## 7535 3-hydroxyisobutyryl-CoA hydrolase activity
## 7536 3-hydroxypropionyl-CoA dehydratase activity
## 7537 3-mercaptopyruvate sulfurtransferase activity
## 7538 3-methyl-2-oxobutanoate dehydrogenase (2-methylpropanoyl-transferring) activity
## 7539 3-methylcrotonyl-CoA carboxylase complex, mitochondrial
## 7540 3-oxo-5-alpha-steroid 4-dehydrogenase activity
## 7541 3-oxo-arachidoyl-CoA reductase activity
## 7542 3-oxo-behenoyl-CoA reductase activity
## 7543 3-oxo-cerotoyl-CoA reductase activity
## 7544 3-oxo-lignoceroyl-CoA reductase activity
## 7545 3-oxoacid CoA-transferase activity
## 7546 3-oxoacyl-[acyl-carrier-protein] reductase (NADH) activity
## 7547 3-phosphoinositide-dependent protein kinase activity
## 7548 3'-5' DNA/RNA helicase activity
## 7549 3'-flap endonuclease activity
## 7550 3'-flap-structured DNA binding
## 7551 3'-nucleotidase activity
## 7552 3'-phospho-5'-adenylyl sulfate transmembrane transport
## 7553 3'-phosphoadenosine 5'-phosphosulfate transmembrane transporter activity
## 7554 3'-tRNA processing endoribonuclease activity
## 7555 3',5'-nucleotide bisphosphate phosphatase activity
## 7556 3'(2'),5'-bisphosphate nucleotidase activity
## 7557 3alpha,7alpha,12alpha-trihydroxy-5beta-cholest-24-enoyl-CoA hydratase activity
## 7558 4-alpha-hydroxytetrahydrobiopterin dehydratase activity
## 7559 4-hydroxybenzoate decaprenyltransferase activity
## 7560 4-hydroxybenzoate nonaprenyltransferase activity
## 7561 4-hydroxybutyrate receptor activity
## 7562 4alpha-carboxy-4beta-methyl-5alpha-cholesta-8-en-3beta-ol:NAD(P)+ 3-oxidoreductase (decarboxylating) activity
## 7563 4alpha-carboxy-5alpha-cholesta-8-en-3beta-ol:NAD(P)+ 3-dehydrogenase (decarboxylating) activity
## 7564 5-amino-4-imidazole carboxylate lyase activity
## 7565 5-aminolevulinate synthase activity
## 7566 5-hydroxy-6E,8Z,11Z,14Z-icosatetraenoic acid binding
## 7567 5-methylcytosine catabolic process
## 7568 5-oxo-6E,8Z,11Z,14Z-icosatetraenoic acid binding
## 7569 5-oxoprolinase (ATP-hydrolyzing) activity
## 7570 5'-3' DNA/RNA helicase activity
## 7571 5'-3' exoribonuclease activity
## 7572 5'-3' RNA helicase activity
## 7573 5'-deoxynucleotidase activity
## 7574 5(S)-hydroxyperoxy-6E,8Z,11Z,14Z-icosatetraenoic acid binding
## 7575 5alpha-androstane-3beta,17beta-diol dehydrogenase activity
## 7576 6-phosphogluconolactonase activity
## 7577 7-methylguanosine cap hypermethylation
## 7578 7-methylguanosine RNA capping
## 7579 8-hydroxy-dADP phosphatase activity
## 7580 8-oxo-7,8-dihydrodeoxyguanosine triphosphate pyrophosphatase activity
## 7581 8-oxo-7,8-dihydroguanine DNA N-glycosylase activity
## 7582 8-oxo-7,8-dihydroguanosine triphosphate pyrophosphatase activity
## 7583 8-oxo-dGDP phosphatase activity
## 7584 8-oxo-GDP phosphatase activity
## 7585 9+2 motile cilium
## 7586 90S preribosome assembly
## 7587 A2A adenosine receptor binding
## 7588 acetate biosynthetic process
## 7589 acetate CoA-transferase activity
## 7590 acetate ester transport
## 7591 acetoacetyl-CoA hydrolase activity
## 7592 acetolactate synthase activity
## 7593 acetolactate synthase complex
## 7594 acetyl-CoA biosynthetic process from acetate
## 7595 acetyl-CoA biosynthetic process from pyruvate
## 7596 acetyl-CoA carboxylase activity
## 7597 acetyl-CoA transmembrane transporter activity
## 7598 acetyl-CoA transport
## 7599 acetyl-CoA:L-glutamate N-acetyltransferase activity
## 7600 acetylcholine receptor activator activity
## 7601 acetylcholine receptor signaling pathway
## 7602 acetylcholine transmembrane transporter activity
## 7603 acetylesterase activity
## 7604 acetylputrescine deacetylase activity
## 7605 acetylpyruvate hydrolase activity
## 7606 acetylspermidine deacetylase activity
## 7607 acid secretion
## 7608 acid-amino acid ligase activity
## 7609 acid-sensing ion channel activity
## 7610 acid-thiol ligase activity
## 7611 acrosin binding
## 7612 actin cap
## 7613 actin cortical patch localization
## 7614 actin filament branching
## 7615 actin filament bundle
## 7616 actin filament reorganization involved in cell cycle
## 7617 actin filament-based process
## 7618 actin modification
## 7619 actin rod assembly
## 7620 activating MHC class I receptor activity
## 7621 activating signal cointegrator 1 complex
## 7622 activation of blood coagulation via clotting cascade
## 7623 activation of Janus kinase activity
## 7624 activin-activated receptor activity
## 7625 actomyosin contractile ring assembly
## 7626 actomyosin contractile ring contraction
## 7627 acute inflammatory response to antigenic stimulus
## 7628 acyl binding
## 7629 acyl carrier activity
## 7630 acyl-CoA delta5-desaturase activity
## 7631 acylglycerol metabolic process
## 7632 acylglycerol O-acyltransferase activity
## 7633 acylpyruvate hydrolase activity
## 7634 adaptive immune response based on somatic recombination of immune receptors built from immunoglobulin superfamily domains
## 7635 adaptive thermogenesis
## 7636 adenine binding
## 7637 adenine biosynthetic process
## 7638 adenine metabolic process
## 7639 adenine phosphoribosyltransferase activity
## 7640 adenine salvage
## 7641 adenine transport
## 7642 adenine/guanine mispair binding
## 7643 adenosine 5'-monophosphoramidase activity
## 7644 adenosine receptor binding
## 7645 adenosine transport
## 7646 adenosylmethionine decarboxylase activity
## 7647 adenyl deoxyribonucleotide binding
## 7648 adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## 7649 adenylate cyclase-inhibiting dopamine receptor signaling pathway
## 7650 adenylylsulfate kinase activity
## 7651 adhesion of symbiont to host
## 7652 adipokinetic hormone receptor activity
## 7653 ADP metabolic process
## 7654 ADP-D-ribose binding
## 7655 ADP-dependent NAD(P)H-hydrate dehydratase activity
## 7656 ADP-ribose diphosphatase activity
## 7657 ADP-ribosylserine hydrolase activity
## 7658 ADP-specific glucokinase activity
## 7659 adrenal cortex development
## 7660 adrenergic receptor activity
## 7661 adult behavior
## 7662 AF-2 domain binding
## 7663 aflatoxin catabolic process
## 7664 aggresome assembly
## 7665 agmatine biosynthetic process
## 7666 AIM2 inflammasome complex
## 7667 alanine transmembrane transporter activity
## 7668 alanine-tRNA ligase activity
## 7669 alanyl-tRNA aminoacylation
## 7670 alcohol binding
## 7671 alcohol dehydrogenase (NADP+) activity
## 7672 alcohol dehydrogenase [NAD(P)+] activity
## 7673 alcohol-forming fatty acyl-CoA reductase activity
## 7674 aldehyde dehydrogenase (NAD+) activity
## 7675 aldehyde dehydrogenase (NADP+) activity
## 7676 aldehyde dehydrogenase [NAD(P)+] activity
## 7677 aldo-keto reductase (NADP) activity
## 7678 aldose 1-epimerase activity
## 7679 alkaline phosphatase activity
## 7680 alkylbase DNA N-glycosylase activity
## 7681 alkylglycerone-phosphate synthase activity
## 7682 all-trans-retinol 13,14-reductase activity
## 7683 alpha-(1->6)-fucosyltransferase activity
## 7684 alpha-1,3-mannosylglycoprotein 2-beta-N-acetylglucosaminyltransferase activity
## 7685 alpha-1,3-mannosylglycoprotein 4-beta-N-acetylglucosaminyltransferase activity
## 7686 alpha-1,3-mannosyltransferase activity
## 7687 alpha-1,4-N-acetylgalactosaminyltransferase activity
## 7688 alpha-1,6-mannosylglycoprotein 6-beta-N-acetylglucosaminyltransferase activity
## 7689 alpha-1,6-mannosyltransferase activity
## 7690 alpha-2 macroglobulin receptor activity
## 7691 alpha-2A adrenergic receptor binding
## 7692 alpha-beta T cell activation
## 7693 alpha-beta T cell proliferation
## 7694 alpha-catenin binding
## 7695 alpha-galactosidase activity
## 7696 alpha-ketoacid dehydrogenase activity
## 7697 alpha-ketoglutarate transport
## 7698 alpha-L-fucosidase activity
## 7699 alpha-N-acetylgalactosaminidase activity
## 7700 alpha-N-acetylgalactosaminide alpha-2,6-sialyltransferase activity
## 7701 alpha-N-acetylglucosaminidase activity
## 7702 alpha-N-acetylneuraminate alpha-2,8-sialyltransferase activity
## 7703 alpha-tubulin acetylation
## 7704 alpha9-beta1 integrin-ADAM8 complex
## 7705 alpha9-beta1 integrin-vascular cell adhesion molecule-1 complex
## 7706 alphav-beta3 integrin-vitronectin complex
## 7707 amidase activity
## 7708 amide binding
## 7709 amidophosphoribosyltransferase activity
## 7710 amine sulfotransferase activity
## 7711 amine transmembrane transporter activity
## 7712 amine transport
## 7713 amino acid homeostasis
## 7714 amino acid:sodium symporter activity
## 7715 aminoacyl-tRNA hydrolase activity
## 7716 aminomethyltransferase activity
## 7717 aminophospholipid transport
## 7718 ammon gyrus development
## 7719 ammonium import across plasma membrane
## 7720 AMP deaminase activity
## 7721 AMP phosphorylation
## 7722 AMP salvage
## 7723 amphisome
## 7724 amyloid-beta complex
## 7725 anandamide amidohydrolase activity
## 7726 anastral spindle assembly
## 7727 anatomical structure formation involved in morphogenesis
## 7728 anatomical structure regression
## 7729 androgen binding
## 7730 androstan-3-alpha,17-beta-diol dehydrogenase activity
## 7731 angiogenin-PRI complex
## 7732 angiotensin type II receptor activity
## 7733 angiotensin-activated signaling pathway
## 7734 anion:cation symporter activity
## 7735 anterior commissure morphogenesis
## 7736 anterior compartment pattern formation
## 7737 anterior neural tube closure
## 7738 anterior/posterior axon guidance
## 7739 anterograde axonal transport of mitochondrion
## 7740 anterograde dendritic transport
## 7741 anterograde dendritic transport of mitochondrion
## 7742 anterograde dendritic transport of neurotransmitter receptor complex
## 7743 anthranilate metabolic process
## 7744 antibiotic metabolic process
## 7745 antigen processing and presentation of endogenous antigen
## 7746 antigen processing and presentation of endogenous peptide antigen via MHC class Ib via ER pathway, TAP-dependent
## 7747 antigen processing and presentation of exogenous antigen
## 7748 antigen processing and presentation of exogenous protein antigen via MHC class Ib, TAP-dependent
## 7749 antigen processing and presentation of peptide antigen
## 7750 AP-1 adaptor complex binding
## 7751 AP-5 adaptor complex
## 7752 apical constriction
## 7753 apical ectoplasmic specialization
## 7754 apical tubulobulbar complex
## 7755 apolipoprotein A-I receptor activity
## 7756 apolipoprotein A-I receptor binding
## 7757 apolipoprotein receptor activity
## 7758 apoptosome
## 7759 apoptotic process involved in embryonic digit morphogenesis
## 7760 arachidonic acid monooxygenase activity
## 7761 ARC complex
## 7762 arginase activity
## 7763 arginine biosynthetic process via ornithine
## 7764 arginine catabolic process to ornithine
## 7765 arginine metabolic process
## 7766 argininosuccinate lyase activity
## 7767 arginyltransferase activity
## 7768 aromatase activity
## 7769 aromatic amino acid family metabolic process
## 7770 aromatic compound catabolic process
## 7771 arsenite transmembrane transporter activity
## 7772 arsenite transport
## 7773 artery smooth muscle contraction
## 7774 articular cartilage development
## 7775 aryl sulfotransferase activity
## 7776 arylamine N-acetyltransferase activity
## 7777 asparaginyl-tRNA synthase (glutamine-hydrolyzing) activity
## 7778 aspartate-tRNA(Asn) ligase activity
## 7779 aspartic-type peptidase activity
## 7780 aspartyl-tRNA aminoacylation
## 7781 astral microtubule nucleation
## 7782 astrocyte differentiation
## 7783 astrocyte end-foot
## 7784 astrocyte fate commitment
## 7785 astrocyte projection
## 7786 asymmetric Golgi ribbon formation
## 7787 asymmetric, glutamatergic, excitatory synapse
## 7788 ATF1-ATF4 transcription factor complex
## 7789 Atg12 activating enzyme activity
## 7790 Atg12-Atg5-Atg16 complex
## 7791 Atg8 activating enzyme activity
## 7792 ATP citrate synthase activity
## 7793 ATP diphosphatase activity
## 7794 ATP generation from ADP
## 7795 ATP generation from poly-ADP-D-ribose
## 7796 ATP transmembrane transporter activity
## 7797 ATP-dependent microtubule motor activity, minus-end-directed
## 7798 ATP-dependent NAD(P)H-hydrate dehydratase activity
## 7799 ATP-dependent polynucleotide kinase activity
## 7800 ATP:3'-cytidine-cytidine-tRNA adenylyltransferase activity
## 7801 ATP:ADP antiporter activity
## 7802 ATPase regulator activity
## 7803 ATPase-coupled bile acid transmembrane transporter activity
## 7804 ATPase-coupled fatty-acyl-CoA transmembrane transporter activity
## 7805 ATPase-coupled polyamine transmembrane transporter activity
## 7806 ATPase-coupled sterol transmembrane transporter activity
## 7807 atrial cardiac muscle cell development
## 7808 atrial cardiac muscle tissue development
## 7809 atrial cardiac muscle tissue morphogenesis
## 7810 atrial septum secundum morphogenesis
## 7811 atrioventricular canal morphogenesis
## 7812 atrioventricular node cell development
## 7813 atrioventricular valve formation
## 7814 autophagosome organization
## 7815 autophagy of nucleus
## 7816 autosome
## 7817 axial mesoderm morphogenesis
## 7818 axon extension involved in axon guidance
## 7819 axon guidance receptor activity
## 7820 axon midline choice point recognition
## 7821 axonal fasciculation
## 7822 axonemal central apparatus
## 7823 B cell affinity maturation
## 7824 B cell chemotaxis
## 7825 B cell costimulation
## 7826 B cell homeostatic proliferation
## 7827 B cell negative selection
## 7828 B cell proliferation involved in immune response
## 7829 B cell receptor apoptotic signaling pathway
## 7830 B cell receptor transport into membrane raft
## 7831 BAK complex
## 7832 barbed-end actin filament uncapping
## 7833 basal body patch
## 7834 basal protein localization
## 7835 basal tubulobulbar complex
## 7836 base conversion or substitution editing
## 7837 base-excision repair, base-free sugar-phosphate removal
## 7838 basophil chemotaxis
## 7839 BAX complex
## 7840 BCOR complex
## 7841 behavior
## 7842 behavioral defense response
## 7843 behavioral response to nicotine
## 7844 behavioral response to nutrient
## 7845 behavioral response to starvation
## 7846 bent DNA binding
## 7847 benzaldehyde dehydrogenase (NAD+) activity
## 7848 benzaldehyde dehydrogenase (NADP+) activity
## 7849 benzodiazepine receptor activity
## 7850 benzodiazepine receptor binding
## 7851 benzylpenicillin metabolic process
## 7852 beta selection
## 7853 beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,3-N-acetylglucosaminyltransferase activity
## 7854 beta-1,3-galactosyl-O-glycosyl-glycoprotein beta-1,6-N-acetylglucosaminyltransferase activity
## 7855 beta-alanine biosynthetic process
## 7856 beta-amyrin synthase activity
## 7857 beta-catenin destruction complex binding
## 7858 beta-catenin-TCF7L2 complex
## 7859 beta-endorphin binding
## 7860 beta-galactoside (CMP) alpha-2,3-sialyltransferase activity
## 7861 beta-galactoside alpha-2,6-sialyltransferase activity
## 7862 beta-galactosyl-N-acetylglucosaminylgalactosylglucosyl-ceramide beta-1,3-acetylglucosaminyltransferase activity
## 7863 beta-glucuronidase activity
## 7864 beta-N-acetylglucosaminidase activity
## 7865 beta-N-acetylhexosaminidase activity
## 7866 beta2-adrenergic receptor activity
## 7867 BH domain binding
## 7868 BH2 domain binding
## 7869 bile acid binding
## 7870 bile acid receptor activity
## 7871 bile acid transmembrane transporter activity
## 7872 bile acid:sodium symporter activity
## 7873 biliberdin reductase NAD+ activity
## 7874 bilirubin transmembrane transporter activity
## 7875 bilirubin transport
## 7876 biliverdin reductase (NAD(P)+) activity
## 7877 biliverdin reductase (NADP+) activity
## 7878 biotin import across plasma membrane
## 7879 biotin metabolic process
## 7880 biotin transmembrane transporter activity
## 7881 biotin transport
## 7882 bis(5'-nucleosyl)-tetraphosphatase (asymmetrical) activity
## 7883 bis(5'-nucleosyl)-tetraphosphatase (symmetrical) activity
## 7884 bis(5'-nucleosyl)-tetraphosphatase activity
## 7885 bisphosphoglycerate 2-phosphatase activity
## 7886 BLOC-3 complex
## 7887 blood coagulation, fibrin clot formation
## 7888 blood vessel endothelial cell differentiation
## 7889 blood vessel endothelial cell proliferation involved in sprouting angiogenesis
## 7890 BMP signaling pathway involved in heart development
## 7891 BMP signaling pathway involved in heart induction
## 7892 body fluid secretion
## 7893 bone maturation
## 7894 bone mineralization involved in bone maturation
## 7895 bone sialoprotein binding
## 7896 box C/D snoRNA binding
## 7897 box H/ACA scaRNP complex
## 7898 box H/ACA snoRNA binding
## 7899 box H/ACA snoRNP complex
## 7900 box H/ACA telomerase RNP complex
## 7901 branch elongation involved in mammary gland duct branching
## 7902 branched-chain amino acid biosynthetic process
## 7903 branched-chain amino acid metabolic process
## 7904 branched-chain-amino-acid transaminase activity
## 7905 branching involved in prostate gland morphogenesis
## 7906 BRCA2-MAGE-D1 complex
## 7907 BRE binding
## 7908 brexanolone metabolic process
## 7909 bronchiole development
## 7910 bronchus cartilage development
## 7911 bud elongation involved in lung branching
## 7912 butyrate catabolic process
## 7913 butyrate-CoA ligase activity
## 7914 butyryl-CoA dehydrogenase activity
## 7915 C-3 sterol dehydrogenase (C-4 sterol decarboxylase) activity
## 7916 C-C motif chemokine 19 receptor activity
## 7917 C-C motif chemokine 21 receptor activity
## 7918 C-terminal protein methylation
## 7919 C21-steroid hormone metabolic process
## 7920 cadmium ion transmembrane transporter activity
## 7921 calcineurin-mediated signaling
## 7922 calcitonin gene-related peptide receptor activity
## 7923 calcium activated galactosylceramide scrambling
## 7924 calcium export from the mitochondrion
## 7925 calcium ion import across plasma membrane
## 7926 calcium ion-regulated exocytosis of neurotransmitter
## 7927 calcium ion-transporting ATPase complex
## 7928 calcium- and calmodulin-dependent protein kinase complex
## 7929 calcium- and calmodulin-regulated 3',5'-cyclic-GMP phosphodiesterase activity
## 7930 calcium-dependent ATPase activity
## 7931 calcium-dependent cell-matrix adhesion
## 7932 calcium-dependent protein kinase inhibitor activity
## 7933 calcium-dependent protein serine/threonine kinase activity
## 7934 calcium-dependent protein serine/threonine phosphatase activity
## 7935 calcium-independent cell-cell adhesion via plasma membrane cell-adhesion molecules
## 7936 calcium-independent cell-matrix adhesion
## 7937 calcium-independent protein kinase C activity
## 7938 calcium-mediated signaling using extracellular calcium source
## 7939 calcium-transporting ATPase activity involved in regulation of cardiac muscle cell membrane potential
## 7940 calcium, potassium:sodium antiporter activity
## 7941 calcium:sodium antiporter activity
## 7942 calcium:sodium antiporter activity involved in regulation of cardiac muscle cell membrane potential
## 7943 calmodulin-dependent cyclic-nucleotide phosphodiesterase activity
## 7944 camera-type eye photoreceptor cell differentiation
## 7945 cAMP biosynthetic process
## 7946 cAMP catabolic process
## 7947 cAMP transport
## 7948 cAMP-dependent protein kinase complex
## 7949 cAMP-dependent protein kinase regulator activity
## 7950 canalicular bile acid transport
## 7951 canonical Wnt signaling pathway involved in metanephric kidney development
## 7952 canonical Wnt signaling pathway involved in negative regulation of apoptotic process
## 7953 canonical Wnt signaling pathway involved in neural crest cell differentiation
## 7954 canonical Wnt signaling pathway involved in positive regulation of cell-cell adhesion
## 7955 canonical Wnt signaling pathway involved in positive regulation of endothelial cell migration
## 7956 canonical Wnt signaling pathway involved in positive regulation of wound healing
## 7957 cap-dependent translational initiation
## 7958 cap-independent translational initiation
## 7959 carbohydrate derivative biosynthetic process
## 7960 carbohydrate derivative metabolic process
## 7961 carbohydrate derivative transport
## 7962 carbohydrate homeostasis
## 7963 carbohydrate transmembrane transport
## 7964 carbohydrate:proton symporter activity
## 7965 carbon-nitrogen ligase activity, with glutamine as amido-N-donor
## 7966 carboxylic acid transmembrane transporter activity
## 7967 cardiac cell development
## 7968 cardiac cell fate determination
## 7969 cardiac muscle cell apoptotic process
## 7970 cardiac muscle cell contraction
## 7971 cardiac muscle cell fate commitment
## 7972 cardiac muscle cell proliferation
## 7973 cardiac muscle hypertrophy
## 7974 cardiac neural crest cell development involved in heart development
## 7975 cardiac neural crest cell development involved in outflow tract morphogenesis
## 7976 cardiac vascular smooth muscle cell development
## 7977 cardiac vascular smooth muscle cell differentiation
## 7978 cardiolipin hydrolase activity
## 7979 cardiolipin metabolic process
## 7980 carnitine metabolic process, CoA-linked
## 7981 carnitine transmembrane transporter activity
## 7982 carnitine transport
## 7983 carnosine metabolic process
## 7984 carnosine N-methyltransferase activity
## 7985 cartilage condensation
## 7986 cartilage homeostasis
## 7987 catabolism by host of symbiont protein
## 7988 catalase activity
## 7989 catechol O-methyltransferase activity
## 7990 catecholamine catabolic process
## 7991 cation channel complex
## 7992 caveola assembly
## 7993 caveola neck
## 7994 caveolar macromolecular signaling complex
## 7995 caveolin-mediated endocytosis
## 7996 CCAAT-binding factor complex
## 7997 CCR3 chemokine receptor binding
## 7998 CCR4-NOT complex binding
## 7999 CD27 receptor binding
## 8000 CD4-positive or CD8-positive, alpha-beta T cell lineage commitment
## 8001 CD4-positive, alpha-beta T cell costimulation
## 8002 CD4-positive, CD25-positive, alpha-beta regulatory T cell lineage commitment
## 8003 CD40 receptor binding
## 8004 CD8 receptor binding
## 8005 CD8-positive, alpha-beta T cell differentiation
## 8006 CD86 biosynthetic process
## 8007 Cdc42 protein signal transduction
## 8008 CDP phosphorylation
## 8009 CDP-diacylglycerol metabolic process
## 8010 CDP-diacylglycerol-inositol 3-phosphatidyltransferase activity
## 8011 CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## 8012 cell activation involved in immune response
## 8013 cell body fiber
## 8014 cell communication by electrical coupling involved in cardiac conduction
## 8015 cell cycle G2/M phase transition
## 8016 cell differentiation in hindbrain
## 8017 cell fate commitment involved in formation of primary germ layer
## 8018 cell gliding
## 8019 cell migration in hindbrain
## 8020 cell migration involved in endocardial cushion formation
## 8021 cell migration involved in vasculogenesis
## 8022 cell morphogenesis involved in differentiation
## 8023 cell pole
## 8024 cell proliferation in forebrain
## 8025 cell proliferation in midbrain
## 8026 cell surface bile acid receptor signaling pathway
## 8027 cell surface pattern recognition receptor signaling pathway
## 8028 cell wall mannoprotein biosynthetic process
## 8029 cell-cell adhesion involved in gastrulation
## 8030 cell-cell adhesion mediated by cadherin
## 8031 cell-cell recognition
## 8032 cell-cell signaling by wnt
## 8033 cell-cell signaling via exosome
## 8034 cell-substrate junction organization
## 8035 cellular amino acid catabolic process
## 8036 cellular aromatic compound metabolic process
## 8037 cellular biosynthetic process
## 8038 cellular carbohydrate metabolic process
## 8039 cellular cation homeostasis
## 8040 cellular component assembly
## 8041 cellular component disassembly involved in execution phase of apoptosis
## 8042 cellular detoxification of methylglyoxal
## 8043 cellular detoxification of nitrogen compound
## 8044 cellular developmental process
## 8045 cellular glucuronidation
## 8046 cellular hypotonic salinity response
## 8047 cellular ketone body metabolic process
## 8048 cellular ketone metabolic process
## 8049 cellular localization
## 8050 cellular macromolecule biosynthetic process
## 8051 cellular macromolecule catabolic process
## 8052 cellular magnesium ion homeostasis
## 8053 cellular metal ion homeostasis
## 8054 cellular organofluorine metabolic process
## 8055 cellular protein complex disassembly
## 8056 cellular response to 2-O-acetyl-1-O-hexadecyl-sn-glycero-3-phosphocholine
## 8057 cellular response to 2,3,7,8-tetrachlorodibenzodioxine
## 8058 cellular response to acetylcholine
## 8059 cellular response to acidic pH
## 8060 cellular response to amine stimulus
## 8061 cellular response to anisomycin
## 8062 cellular response to arsenite ion
## 8063 cellular response to bleomycin
## 8064 cellular response to caloric restriction
## 8065 cellular response to catecholamine stimulus
## 8066 cellular response to cell-matrix adhesion
## 8067 cellular response to chromate
## 8068 cellular response to corticotropin-releasing hormone stimulus
## 8069 cellular response to cytochalasin B
## 8070 cellular response to diamide
## 8071 cellular response to dimethyl sulfoxide
## 8072 cellular response to dsRNA
## 8073 cellular response to endothelin
## 8074 cellular response to erythropoietin
## 8075 cellular response to flavonoid
## 8076 cellular response to folic acid
## 8077 cellular response to glycine
## 8078 cellular response to glyoxal
## 8079 cellular response to gravity
## 8080 cellular response to growth hormone stimulus
## 8081 cellular response to high light intensity
## 8082 cellular response to hyperoxia
## 8083 cellular response to indole-3-methanol
## 8084 cellular response to L-arginine
## 8085 cellular response to lectin
## 8086 cellular response to leptomycin B
## 8087 cellular response to luteinizing hormone stimulus
## 8088 cellular response to menadione
## 8089 cellular response to metal ion
## 8090 cellular response to methyl methanesulfonate
## 8091 cellular response to methylglyoxal
## 8092 cellular response to mineralocorticoid stimulus
## 8093 cellular response to molecule of fungal origin
## 8094 cellular response to nitroglycerin
## 8095 cellular response to nitrosative stress
## 8096 cellular response to norepinephrine stimulus
## 8097 cellular response to parathyroid hormone stimulus
## 8098 cellular response to peptidoglycan
## 8099 cellular response to potassium ion starvation
## 8100 cellular response to prolactin
## 8101 cellular response to puromycin
## 8102 cellular response to putrescine
## 8103 cellular response to sterol
## 8104 cellular response to superoxide
## 8105 cellular response to tetrahydrofolate
## 8106 cellular response to thyroxine stimulus
## 8107 cellular response to toxic substance
## 8108 cellular response to trichostatin A
## 8109 cellular response to triglyceride
## 8110 cellular response to tumor cell
## 8111 cellular response to type I interferon
## 8112 cellular response to vitamin
## 8113 cellular response to vitamin B1
## 8114 cellular response to water deprivation
## 8115 cellular water homeostasis
## 8116 cementum mineralization
## 8117 central element
## 8118 central nervous system myelination
## 8119 central nervous system neuron axonogenesis
## 8120 central nervous system vasculogenesis
## 8121 central region of growth cone
## 8122 centromere complex assembly
## 8123 centrosomal corona
## 8124 centrosome separation
## 8125 ceramidase activity
## 8126 ceramide glucosyltransferase activity
## 8127 ceramide kinase activity
## 8128 ceramide phosphoethanolamine biosynthetic process
## 8129 ceramide-1-phosphate phosphatase activity
## 8130 cerebellar cortex morphogenesis
## 8131 cerebellar granular layer development
## 8132 cerebellar granule cell differentiation
## 8133 cerebellar granule cell precursor proliferation
## 8134 cerebellar granule cell precursor tangential migration
## 8135 cerebellar neuron development
## 8136 cerebellar Purkinje cell layer development
## 8137 cerebellar Purkinje cell layer maturation
## 8138 cerebellar Purkinje cell layer morphogenesis
## 8139 cerebral cortex radially oriented cell migration
## 8140 cerebral cortex tangential migration
## 8141 cerebroside-sulfatase activity
## 8142 cerebrospinal fluid secretion
## 8143 cGMP-inhibited cyclic-nucleotide phosphodiesterase activity
## 8144 cGMP-stimulated cyclic-nucleotide phosphodiesterase activity
## 8145 channel regulator activity
## 8146 chaperone-mediated autophagy translocation complex
## 8147 chemoattraction of axon
## 8148 chemokine (C-C motif) ligand 19 binding
## 8149 chemokine (C-C motif) ligand 19 signaling pathway
## 8150 chemokine (C-C motif) ligand 21 binding
## 8151 chemokine (C-X-C motif) ligand 12 signaling pathway
## 8152 chemokine receptor activity
## 8153 chemokine receptor transport out of membrane raft
## 8154 chemorepulsion involved in interneuron migration from the subpallium to the cortex
## 8155 chemosensory behavior
## 8156 chemotaxis to arachidonic acid
## 8157 chenodeoxycholate 7-alpha-dehydrogenase (NAD+) activity
## 8158 chiasma
## 8159 chitin catabolic process
## 8160 chitinase activity
## 8161 chloride channel regulator activity
## 8162 cholangiocyte apoptotic process
## 8163 cholangiocyte proliferation
## 8164 cholate 7-alpha-dehydrogenase activity
## 8165 cholest-5-ene-3-beta,7-alpha-diol 3-beta-dehydrogenase activity
## 8166 cholestenol delta-isomerase activity
## 8167 cholestenone 5-alpha-reductase activity
## 8168 cholesterol biosynthetic process via 24,25-dihydrolanosterol
## 8169 cholesterol ester hydrolysis involved in cholesterol transport
## 8170 cholesterol transport involved in cholesterol storage
## 8171 choline catabolic process
## 8172 choline kinase activity
## 8173 choline transmembrane transporter activity
## 8174 choline transport
## 8175 choline-phosphate cytidylyltransferase activity
## 8176 choloyl-CoA hydrolase activity
## 8177 chondroblast differentiation
## 8178 chondrocyte differentiation involved in endochondral bone morphogenesis
## 8179 chondrocyte hypertrophy
## 8180 chondroitin 6-sulfotransferase activity
## 8181 chondroitin sulfate metabolic process
## 8182 CHOP-C/EBP complex
## 8183 chorion development
## 8184 chorionic trophoblast cell differentiation
## 8185 chromatin organization involved in regulation of transcription
## 8186 chromosome breakage
## 8187 chronic inflammatory response to antigenic stimulus
## 8188 chylomicron remnant clearance
## 8189 ciliary neurotrophic factor receptor activity
## 8190 ciliary neurotrophic factor receptor complex
## 8191 ciliary neurotrophic factor-mediated signaling pathway
## 8192 ciliary plasm
## 8193 ciliary receptor clustering involved in smoothened signaling pathway
## 8194 circadian temperature homeostasis
## 8195 cis assembly of pre-catalytic spliceosome
## 8196 cis-trans isomerase activity
## 8197 citrate (Si)-synthase activity
## 8198 citrate dehydratase activity
## 8199 citrate secondary active transmembrane transporter activity
## 8200 citrate synthase activity
## 8201 citrate transport
## 8202 citrate-L-glutamate ligase activity
## 8203 citrulline biosynthetic process
## 8204 clathrin coat disassembly
## 8205 clathrin-dependent synaptic vesicle endocytosis
## 8206 clathrin-sculpted acetylcholine transport vesicle membrane
## 8207 cleavage furrow ingression
## 8208 cleavage in ITS2 between 5.8S rRNA and LSU-rRNA of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 8209 CLOCK-BMAL transcription complex
## 8210 closure of optic fissure
## 8211 clustering of voltage-gated potassium channels
## 8212 CMP catabolic process
## 8213 CMP kinase activity
## 8214 CMP phosphorylation
## 8215 CMP-N-acetylneuraminate biosynthetic process
## 8216 CMP-N-acetylneuraminate transmembrane transport
## 8217 CMP-N-acetylneuraminate transmembrane transporter activity
## 8218 CNTFR-CLCF1 complex
## 8219 CoA-ligase activity
## 8220 CoA-transferase activity
## 8221 coated vesicle membrane
## 8222 cob(I)yrinic acid a,c-diamide adenosyltransferase activity
## 8223 cobalamin biosynthetic process
## 8224 cobalamin transport
## 8225 cobalt ion binding
## 8226 cocaine binding
## 8227 coenzyme A binding
## 8228 cohesin loading
## 8229 collagen receptor activity
## 8230 collagen-activated signaling pathway
## 8231 collateral sprouting in absence of injury
## 8232 colon epithelial cell migration
## 8233 commitment of neuronal cell to specific neuron type in forebrain
## 8234 common bile duct development
## 8235 complement activation, lectin pathway
## 8236 complement component C1 complex
## 8237 complement component C1q complex binding
## 8238 complement component C3a binding
## 8239 complement component C5a receptor activity
## 8240 complement component C5a signaling pathway
## 8241 complement receptor activity
## 8242 complement-mediated synapse pruning
## 8243 concave side of sperm head
## 8244 connexin binding
## 8245 contact inhibition
## 8246 contractile actin filament bundle assembly
## 8247 convergent extension
## 8248 convergent extension involved in axis elongation
## 8249 convergent extension involved in gastrulation
## 8250 conversion of ds siRNA to ss siRNA
## 8251 conversion of ds siRNA to ss siRNA involved in RNA interference
## 8252 copper ion export
## 8253 copper ion import
## 8254 coproporphyrinogen oxidase activity
## 8255 core-binding factor complex
## 8256 coreceptor activity involved in canonical Wnt signaling pathway
## 8257 coreceptor activity involved in Wnt signaling pathway
## 8258 coronary vasculature morphogenesis
## 8259 coronary vein morphogenesis
## 8260 cortical microtubule
## 8261 cortical microtubule cytoskeleton
## 8262 cortical microtubule plus-end
## 8263 corticotropin-releasing hormone receptor 1 binding
## 8264 creatine biosynthetic process
## 8265 creatinine metabolic process
## 8266 CRLF-CLCF1 complex
## 8267 CST complex
## 8268 CTP metabolic process
## 8269 CTP synthase activity
## 8270 CTP:3'-cytidine-tRNA cytidylyltransferase activity
## 8271 CTP:tRNA cytidylyltransferase activity
## 8272 cupric reductase activity
## 8273 CURI complex
## 8274 CUT catabolic process
## 8275 cuticular plate
## 8276 CXCR chemokine receptor binding
## 8277 cyclic purine nucleotide metabolic process
## 8278 cyclic-di-GMP binding
## 8279 cyclic-GMP-AMP transmembrane import across plasma membrane
## 8280 cyclic-GMP-AMP transmembrane transporter activity
## 8281 cyclic-nucleotide-mediated signaling
## 8282 cyclin A1-CDK2 complex
## 8283 cyclin E2-CDK2 complex
## 8284 cyclin-dependent protein kinase activating kinase holoenzyme complex
## 8285 cysteine biosynthetic process
## 8286 cysteine desulfurase activity
## 8287 cysteine metabolic process
## 8288 cysteine transmembrane transport
## 8289 cysteine transmembrane transporter activity
## 8290 cysteine-tRNA ligase activity
## 8291 cysteine-type carboxypeptidase activity
## 8292 cysteinyl-tRNA aminoacylation
## 8293 cytidylate cyclase activity
## 8294 cytidylate kinase activity
## 8295 cytochrome complex assembly
## 8296 cytokinetic process
## 8297 cytolysis by host of symbiont cells
## 8298 cytolytic granule membrane
## 8299 cytoplasm organization
## 8300 cytoplasm protein quality control by the ubiquitin-proteasome system
## 8301 cytoplasmic cyclin-dependent protein kinase holoenzyme complex
## 8302 cytoplasmic microtubule bundle
## 8303 cytoplasmic region
## 8304 cytoplasmic sequestering of CFTR protein
## 8305 cytoplasmic side of dendritic spine plasma membrane
## 8306 cytoplasmic side of early endosome membrane
## 8307 cytoplasmic side of late endosome membrane
## 8308 cytoplasmic side of membrane
## 8309 cytoplasmic translational elongation
## 8310 cytosine C-5 DNA demethylase activity
## 8311 cytosolic calcium signaling involved in initiation of cell movement in glial-mediated radial cell migration
## 8312 cytosolic tRNA wobble base thiouridylase complex
## 8313 D-dopachrome decarboxylase activity
## 8314 D-erythro-sphingosine kinase activity
## 8315 D-glucuronate catabolic process
## 8316 D-glutamate cyclase activity
## 8317 D-loop DNA binding
## 8318 D-phosphoserine phosphatase activity
## 8319 D-serine transport
## 8320 D-xylose metabolic process
## 8321 D-xylulose reductase activity
## 8322 D2 dopamine receptor binding
## 8323 D5 dopamine receptor binding
## 8324 dADP biosynthetic process
## 8325 dADP catabolic process
## 8326 dADP phosphorylation
## 8327 dAMP phosphorylation
## 8328 dATP binding
## 8329 dATP metabolic process
## 8330 dATP pyrophosphohydrolase activity
## 8331 Dbf4-dependent protein kinase complex
## 8332 DBIRD complex
## 8333 dCDP phosphorylation
## 8334 dCMP kinase activity
## 8335 dCMP phosphorylation
## 8336 deaminase activity
## 8337 death domain binding
## 8338 death effector domain binding
## 8339 death receptor activity
## 8340 defense response to nematode
## 8341 dehydrodolichyl diphosphate synthase activity
## 8342 dehydrodolichyl diphosphate synthase complex
## 8343 delta14-sterol reductase activity
## 8344 delta24-sterol reductase activity
## 8345 delta24(24-1) sterol reductase activity
## 8346 delta3,5-delta2,4-dienoyl-CoA isomerase activity
## 8347 demethylase activity
## 8348 denatured protein binding
## 8349 dendritic filopodium
## 8350 dendritic growth cone
## 8351 dendritic spine cytoplasm
## 8352 dendritic spine organization
## 8353 dense core granule cytoskeletal transport
## 8354 dense core granule maturation
## 8355 dense core granule priming
## 8356 dentate gyrus development
## 8357 dentin mineralization
## 8358 deoxycytidine kinase activity
## 8359 deoxycytidyl transferase activity
## 8360 deoxyhypusine synthase activity
## 8361 deoxynucleotide transmembrane transporter activity
## 8362 deoxynucleotide transport
## 8363 deoxyribonuclease activity
## 8364 deoxyribonuclease I activity
## 8365 deoxyribonucleoside 5'-monophosphate N-glycosidase activity
## 8366 deoxyribonucleoside catabolic process
## 8367 deoxyribonucleoside monophosphate catabolic process
## 8368 deoxyribonucleoside triphosphate catabolic process
## 8369 deoxyribonucleotide metabolic process
## 8370 deoxyribose phosphate catabolic process
## 8371 deoxyribose-phosphate aldolase activity
## 8372 dephospho-CoA kinase activity
## 8373 dermatan sulfate biosynthetic process
## 8374 dermatan sulfate catabolic process
## 8375 dermatan sulfate proteoglycan biosynthetic process, polysaccharide chain biosynthetic process
## 8376 dermatan sulfate proteoglycan metabolic process
## 8377 desensitization of G protein-coupled receptor signaling pathway
## 8378 desmosome organization
## 8379 detection of abiotic stimulus
## 8380 detection of biotic stimulus
## 8381 detection of chemical stimulus involved in sensory perception
## 8382 detection of chemical stimulus involved in sensory perception of pain
## 8383 detection of chemical stimulus involved in sensory perception of smell
## 8384 detection of diacyl bacterial lipopeptide
## 8385 detection of DNA damage stimulus involved in DNA damage checkpoint
## 8386 detection of fungus
## 8387 detection of hypoxia
## 8388 detection of light stimulus
## 8389 detection of light stimulus involved in visual perception
## 8390 detection of lipopolysaccharide
## 8391 detection of mechanical stimulus involved in sensory perception
## 8392 detection of mechanical stimulus involved in sensory perception of sound
## 8393 detection of molecule of fungal origin
## 8394 detection of muramyl dipeptide
## 8395 detection of oxidative stress
## 8396 detection of stimulus involved in cell cycle checkpoint
## 8397 detection of stimulus involved in sensory perception
## 8398 detection of temperature stimulus involved in sensory perception
## 8399 detection of triacyl bacterial lipopeptide
## 8400 determination of digestive tract left/right asymmetry
## 8401 determination of heart left/right asymmetry
## 8402 determination of intestine left/right asymmetry
## 8403 determination of pancreatic left/right asymmetry
## 8404 determination of stomach left/right asymmetry
## 8405 detoxification of cadmium ion
## 8406 detoxification of copper ion
## 8407 detoxification of nitrogen compound
## 8408 detoxification of zinc ion
## 8409 deubiquitinase activator activity
## 8410 development of primary female sexual characteristics
## 8411 development of primary male sexual characteristics
## 8412 developmental cell growth
## 8413 dGDP biosynthetic process
## 8414 dGDP catabolic process
## 8415 dGDP phosphorylation
## 8416 dGMP catabolic process
## 8417 dGMP metabolic process
## 8418 dGTP metabolic process
## 8419 diacylglycerol catabolic process
## 8420 diacylglycerol cholinephosphotransferase activity
## 8421 diacylglycerol O-acyltransferase activity
## 8422 diadenosine triphosphate catabolic process
## 8423 diaphragm contraction
## 8424 diaphragm development
## 8425 dicarboxylic acid catabolic process
## 8426 dicarboxylic acid metabolic process
## 8427 dichotomous subdivision of terminal units involved in lung branching
## 8428 digestive system development
## 8429 dihydroceramide glucosyltransferase activity
## 8430 dihydroceramide kinase activity
## 8431 dihydrolipoamide S-acyltransferase activity
## 8432 dihydrolipoyllysine-residue (2-methylpropanoyl)transferase activity
## 8433 dihydrolipoyllysine-residue acetyltransferase activity
## 8434 dihydrolipoyllysine-residue succinyltransferase activity
## 8435 dihydroorotate dehydrogenase activity
## 8436 dihydropyrimidinase activity
## 8437 dihydropyrimidine dehydrogenase (NADP+) activity
## 8438 dihydrotestosterone 17-beta-dehydrogenase activity
## 8439 dimeric IgA immunoglobulin complex
## 8440 dinitrosyl-iron complex binding
## 8441 dinucleotide repeat insertion binding
## 8442 dipeptide transport
## 8443 diphosphate metabolic process
## 8444 diphosphomevalonate decarboxylase activity
## 8445 diphthine methylesterase activity
## 8446 diphthine synthase activity
## 8447 disaccharide binding
## 8448 disaccharide metabolic process
## 8449 distal tubule development
## 8450 dITP diphosphatase activity
## 8451 divalent inorganic cation homeostasis
## 8452 division septum assembly
## 8453 DNA binding domain binding
## 8454 DNA catabolic process
## 8455 DNA damage response, signal transduction resulting in transcription
## 8456 DNA demethylation of male pronucleus
## 8457 DNA end binding
## 8458 DNA endoreduplication
## 8459 DNA ligase III-XRCC1 complex
## 8460 DNA ligase IV complex
## 8461 DNA ligation involved in DNA recombination
## 8462 DNA methylation on adenine
## 8463 DNA methylation on cytosine within a CG sequence
## 8464 DNA modification
## 8465 DNA polymerase complex
## 8466 DNA polymerase III complex
## 8467 DNA primase activity
## 8468 DNA protection
## 8469 DNA recombinase assembly
## 8470 DNA replication proofreading
## 8471 DNA replication-independent nucleosome organization
## 8472 DNA replication, Okazaki fragment processing
## 8473 DNA rewinding
## 8474 DNA strand elongation involved in mitotic DNA replication
## 8475 DNA strand resection involved in replication fork processing
## 8476 DNA synthesis involved in UV-damage excision repair
## 8477 DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activator activity
## 8478 DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) activity
## 8479 DNA topoisomerase type II (double strand cut, ATP-hydrolyzing) complex
## 8480 DNA-3-methyladenine glycosylase activity
## 8481 DNA-3-methylguanine glycosylase activity
## 8482 DNA-7-methyladenine glycosylase activity
## 8483 DNA-7-methylguanine glycosylase activity
## 8484 DNA-dependent protein kinase activity
## 8485 DNA-dependent protein kinase-DNA ligase 4 complex
## 8486 DNA-methyltransferase activity
## 8487 DNA-templated transcription open complex formation
## 8488 DNA-templated transcription, elongation
## 8489 DNA-templated viral transcription
## 8490 docosanoate omega-hydroxylase activity
## 8491 dol-P-Man:Man(5)GlcNAc(2)-PP-Dol alpha-1,3-mannosyltransferase activity
## 8492 dol-P-Man:Man(7)GlcNAc(2)-PP-Dol alpha-1,6-mannosyltransferase activity
## 8493 dolichol kinase activity
## 8494 dolichyl monophosphate biosynthetic process
## 8495 dolichyl pyrophosphate Glc2Man9GlcNAc2 alpha-1,2-glucosyltransferase activity
## 8496 dolichyl-phosphate-mannose-protein mannosyltransferase activity
## 8497 dolichyl-pyrophosphate Man7GlcNAc2 alpha-1,6-mannosyltransferase activity
## 8498 dopamine metabolic process
## 8499 dopamine receptor binding
## 8500 dopamine transport
## 8501 dopamine uptake
## 8502 dopamine uptake involved in synaptic transmission
## 8503 dopamine:sodium symporter activity
## 8504 dopaminergic neuron axon guidance
## 8505 dorsal spinal cord development
## 8506 dorsal/ventral axon guidance
## 8507 dosage compensation
## 8508 double-strand break repair via alternative nonhomologous end joining
## 8509 double-strand break repair via synthesis-dependent strand annealing
## 8510 double-stranded RNA adenosine deaminase activity
## 8511 DRM complex
## 8512 drug export
## 8513 DSIF complex
## 8514 Dsl1/NZR complex
## 8515 dsRNA transport
## 8516 dTDP biosynthetic process
## 8517 dTMP biosynthetic process
## 8518 dUDP biosynthetic process
## 8519 dynein light chain binding
## 8520 early viral transcription
## 8521 ectodermal cell differentiation
## 8522 ectopic germ cell programmed cell death
## 8523 Edg-2 lysophosphatidic acid receptor binding
## 8524 egg coat
## 8525 egg coat formation
## 8526 EH domain binding
## 8527 elastin metabolic process
## 8528 electron transport coupled proton transport
## 8529 embryonic digestive tract development
## 8530 embryonic digestive tract morphogenesis
## 8531 embryonic ectodermal digestive tract development
## 8532 embryonic heart tube left/right pattern formation
## 8533 endocardial cushion cell development
## 8534 endocardial cushion cell fate commitment
## 8535 endocardial cushion fusion
## 8536 endocardium development
## 8537 endochitinase activity
## 8538 endochondral bone morphogenesis
## 8539 endocrine pancreas development
## 8540 endocrine signaling
## 8541 endoderm formation
## 8542 endodermal cell fate specification
## 8543 endomitotic cell cycle
## 8544 endonucleolytic cleavage of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 8545 endonucleolytic cleavage to generate mature 3'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)
## 8546 endoplasmic reticulum membrane fusion
## 8547 endoplasmic reticulum signal peptide binding
## 8548 endoplasmic reticulum stress-induced pre-emptive quality control
## 8549 endoplasmic reticulum tubular network formation
## 8550 endoplasmic reticulum tubular network membrane
## 8551 endoplasmic reticulum-endosome membrane contact site
## 8552 endoribonuclease activity, cleaving siRNA-paired mRNA
## 8553 endoribonuclease inhibitor activity
## 8554 endosome membrane tubulation
## 8555 endothelial microparticle
## 8556 endothelin receptor signaling pathway
## 8557 energy derivation by oxidation of organic compounds
## 8558 engulfment of target by autophagosome
## 8559 enteric nervous system development
## 8560 enterobactin transmembrane transporter activity
## 8561 enterobactin transport
## 8562 entry into host
## 8563 entry into host cell by a symbiont-containing vacuole
## 8564 entry of bacterium into host cell
## 8565 enucleate erythrocyte development
## 8566 eosinophil fate commitment
## 8567 EP4 subtype prostaglandin E2 receptor binding
## 8568 epiboly involved in gastrulation with mouth forming second
## 8569 epidermal cell differentiation
## 8570 epidermal growth factor receptor signaling pathway via I-kappaB kinase/NF-kappaB cascade
## 8571 epidermal growth factor receptor signaling pathway via MAPK cascade
## 8572 epidermis morphogenesis
## 8573 epididymis development
## 8574 epinephrine transport
## 8575 epithelial cell apoptotic process
## 8576 epithelial cell differentiation involved in mammary gland alveolus development
## 8577 epithelial cell differentiation involved in prostate gland development
## 8578 epithelial cell maturation involved in prostate gland development
## 8579 epithelial cell morphogenesis
## 8580 epithelial cell proliferation involved in lung morphogenesis
## 8581 epithelial cell proliferation involved in mammary gland duct elongation
## 8582 epithelial cell proliferation involved in salivary gland morphogenesis
## 8583 epithelial cilium movement involved in determination of left/right asymmetry
## 8584 epoxide hydrolase activity
## 8585 epoxide metabolic process
## 8586 epoxygenase P450 pathway
## 8587 ER to Golgi ceramide transport
## 8588 ER-dependent peroxisome localization
## 8589 ER-dependent peroxisome organization
## 8590 ER-nucleus signaling pathway
## 8591 ERBB3 signaling pathway
## 8592 ERBB4 signaling pathway
## 8593 ERK5 cascade
## 8594 ESCRT complex disassembly
## 8595 ESCRT III complex assembly
## 8596 establishment of blood-brain barrier
## 8597 establishment of body hair planar orientation
## 8598 establishment of chromosome localization
## 8599 establishment of endothelial blood-brain barrier
## 8600 establishment of localization in cell
## 8601 establishment of mitochondrion localization by microtubule attachment
## 8602 establishment of monopolar cell polarity
## 8603 establishment of natural killer cell polarity
## 8604 establishment of neuroblast polarity
## 8605 establishment of planar polarity of embryonic epithelium
## 8606 establishment of protein localization to endoplasmic reticulum membrane
## 8607 establishment of protein localization to mitochondrial membrane
## 8608 establishment of protein localization to mitochondrial membrane involved in mitochondrial fission
## 8609 establishment of protein localization to peroxisome
## 8610 establishment of spindle localization
## 8611 establishment of synaptic specificity at neuromuscular junction
## 8612 establishment of viral latency
## 8613 establishment or maintenance of apical/basal cell polarity
## 8614 establishment or maintenance of monopolar cell polarity
## 8615 estradiol binding
## 8616 estrogen receptor activity
## 8617 estrogen response element binding
## 8618 ethanol binding
## 8619 ethanol oxidation
## 8620 ethanolamine-phosphate cytidylyltransferase activity
## 8621 ether lipid metabolic process
## 8622 eukaryotic 80S initiation complex
## 8623 eukaryotic initiation factor 4G binding
## 8624 eukaryotic translation initiation factor 2B complex
## 8625 eukaryotic translation initiation factor 3 complex, eIF3e
## 8626 evoked neurotransmitter secretion
## 8627 excitatory chemical synaptic transmission
## 8628 execution phase of necroptosis
## 8629 exocyst localization
## 8630 exodeoxyribonuclease III activity
## 8631 exon-exon junction complex disassembly
## 8632 exosomal secretion
## 8633 extracellular exosome biogenesis
## 8634 extracellular matrix protein binding
## 8635 extracellular matrix-cell signaling
## 8636 extracellular membrane-bounded organelle
## 8637 extracellular transport
## 8638 extracellular vesicle biogenesis
## 8639 extracellularly ATP-gated cation channel activity
## 8640 extrinsic component of autophagosome membrane
## 8641 extrinsic component of endoplasmic reticulum membrane
## 8642 extrinsic component of Golgi membrane
## 8643 extrinsic component of neuronal dense core vesicle membrane
## 8644 extrinsic component of organelle membrane
## 8645 extrinsic component of postsynaptic specialization membrane
## 8646 extrinsic component of presynaptic endocytic zone membrane
## 8647 extrinsic component of presynaptic membrane
## 8648 extrinsic component of synaptic vesicle membrane
## 8649 extrinsic component of vacuolar membrane
## 8650 eye morphogenesis
## 8651 F-box domain binding
## 8652 facial nerve structural organization
## 8653 Factor XII activation
## 8654 FAD biosynthetic process
## 8655 FAD transmembrane transporter activity
## 8656 FAD-AMP lyase (cyclizing) activity
## 8657 farnesyl diphosphate biosynthetic process, mevalonate pathway
## 8658 Fas-activated serine/threonine kinase activity
## 8659 fascia adherens
## 8660 fasciculation of sensory neuron axon
## 8661 fatty acid primary amide biosynthetic process
## 8662 fatty acid synthase activity
## 8663 fatty-acyl-CoA reductase (alcohol-forming) activity
## 8664 fatty-acyl-CoA transport
## 8665 Fc-gamma receptor I complex binding
## 8666 Fc-gamma receptor signaling pathway
## 8667 female genitalia development
## 8668 female germ-line stem cell asymmetric division
## 8669 female gonad morphogenesis
## 8670 female meiosis I
## 8671 ferredoxin-NADP+ reductase activity
## 8672 ferric-chelate reductase (NADPH) activity
## 8673 ferrous iron transmembrane transporter activity
## 8674 ferroxidase activity
## 8675 fibrinogen complex
## 8676 fibroblast activation
## 8677 fibroblast apoptotic process
## 8678 flap endonuclease activity
## 8679 flap-structured DNA binding
## 8680 flavonoid binding
## 8681 flippase activity
## 8682 FMN adenylyltransferase activity
## 8683 folate import into mitochondrion
## 8684 folate transmembrane transport
## 8685 folate:anion antiporter activity
## 8686 folic acid receptor activity
## 8687 folic acid-containing compound biosynthetic process
## 8688 forebrain dorsal/ventral pattern formation
## 8689 forebrain neuroblast division
## 8690 forebrain neuron development
## 8691 forebrain neuron differentiation
## 8692 forebrain regionalization
## 8693 formaldehyde catabolic process
## 8694 formate metabolic process
## 8695 formation of anatomical boundary
## 8696 Formylglycine-generating oxidase activity
## 8697 frontal suture morphogenesis
## 8698 fructokinase activity
## 8699 fructosamine-3-kinase activity
## 8700 fructose 1,6-bisphosphate 1-phosphatase activity
## 8701 fructose 2,6-bisphosphate metabolic process
## 8702 fructose 6-phosphate aldolase activity
## 8703 fructose import across plasma membrane
## 8704 fructose-1-phosphatase activity
## 8705 fructose-2,6-bisphosphate 2-phosphatase activity
## 8706 fructoselysine metabolic process
## 8707 fucokinase activity
## 8708 fucose binding
## 8709 fucose transmembrane transport
## 8710 fucose transmembrane transporter activity
## 8711 fumarylpyruvate hydrolase activity
## 8712 fungal-type cell wall polysaccharide metabolic process
## 8713 fungiform papilla development
## 8714 fusion of sperm to egg plasma membrane involved in single fertilization
## 8715 G protein-coupled ADP receptor activity
## 8716 G protein-coupled bile acid receptor activity
## 8717 G protein-coupled GABA receptor activity
## 8718 G protein-coupled glutamate receptor binding
## 8719 G protein-coupled neurotransmitter receptor activity involved in regulation of postsynaptic membrane potential
## 8720 G protein-coupled receptor dimeric complex
## 8721 G protein-coupled receptor heterodimeric complex
## 8722 G-protein gamma-subunit binding
## 8723 G/U mismatch-specific uracil-DNA glycosylase activity
## 8724 G1 DNA damage checkpoint
## 8725 G2/MI transition of meiotic cell cycle
## 8726 GABA-A receptor activity
## 8727 GABA-A receptor complex
## 8728 GABAergic neuron differentiation
## 8729 GAF domain binding
## 8730 galactitol metabolic process
## 8731 galactoside binding
## 8732 galactosylceramide biosynthetic process
## 8733 galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase activity
## 8734 galactosylxylosylprotein 3-beta-galactosyltransferase activity
## 8735 gall bladder development
## 8736 gamma-catenin binding
## 8737 gamma-delta T cell differentiation
## 8738 gamma-glutamyl carboxylase activity
## 8739 gamma-glutamyl-peptidase activity
## 8740 gamma-glutamylcyclotransferase activity
## 8741 gamma-secretase complex
## 8742 ganglioside galactosyltransferase activity
## 8743 ganglioside GM1 transport to membrane
## 8744 ganglioside GM2 binding
## 8745 ganglioside GM3 binding
## 8746 ganglioside GP1c binding
## 8747 ganglioside GT1b binding
## 8748 ganglioside metabolic process
## 8749 gap junction channel activity
## 8750 GARP complex binding
## 8751 GCN2-mediated signaling
## 8752 GDP biosynthetic process
## 8753 GDP phosphorylation
## 8754 GDP-4-dehydro-D-rhamnose reductase activity
## 8755 GDP-D-glucose phosphorylase activity
## 8756 GDP-dissociation inhibitor binding
## 8757 GDP-fucose import into Golgi lumen
## 8758 GDP-fucose transmembrane transporter activity
## 8759 GDP-L-fucose metabolic process
## 8760 GDP-L-fucose salvage
## 8761 GDP-L-fucose synthase activity
## 8762 GDP-Man:Man3GlcNAc2-PP-Dol alpha-1,2-mannosyltransferase activity
## 8763 GDP-mannose 3,5-epimerase activity
## 8764 GDP-mannose hydrolase activity
## 8765 general transcription initiation factor binding
## 8766 generation of catalytic spliceosome for second transesterification step
## 8767 genetic imprinting
## 8768 gephyrin clustering involved in postsynaptic density assembly
## 8769 germinal vesicle
## 8770 gland development
## 8771 glial cell development
## 8772 glial cell fate commitment
## 8773 glial cell-neuron signaling
## 8774 globoside alpha-N-acetylgalactosaminyltransferase activity
## 8775 glomerular capillary formation
## 8776 glomerular endothelium development
## 8777 glomerular parietal epithelial cell differentiation
## 8778 glomerular visceral epithelial cell differentiation
## 8779 glomerulus development
## 8780 glucocorticoid catabolic process
## 8781 glucokinase activity
## 8782 glucosamine metabolic process
## 8783 glucose 1-phosphate metabolic process
## 8784 glucose catabolic process
## 8785 glucose-6-phosphatase activity
## 8786 glucose-6-phosphate dehydrogenase activity
## 8787 glucose:sodium symporter activity
## 8788 glucosidase activity
## 8789 glucosidase II complex
## 8790 glucosylceramide biosynthetic process
## 8791 glucosyltransferase activity
## 8792 glucuronolactone reductase activity
## 8793 glucuronoside catabolic process
## 8794 glucuronyl-galactosyl-proteoglycan 4-alpha-N-acetylglucosaminyltransferase activity
## 8795 glutamate 5-kinase activity
## 8796 glutamate biosynthetic process
## 8797 glutamate homeostasis
## 8798 glutamate receptor signaling pathway
## 8799 glutamate secretion
## 8800 glutamate-5-semialdehyde dehydrogenase activity
## 8801 glutamate-cysteine ligase activity
## 8802 glutamate-cysteine ligase complex
## 8803 glutamate-tRNA ligase activity
## 8804 glutamine-fructose-6-phosphate transaminase (isomerizing) activity
## 8805 glutamine-tRNA ligase activity
## 8806 glutaminyl-tRNA aminoacylation
## 8807 glutaminyl-tRNA synthase (glutamine-hydrolyzing) activity
## 8808 glutaminyl-tRNAGln biosynthesis via transamidation
## 8809 glutamyl-tRNA aminoacylation
## 8810 glutamyl-tRNA(Gln) amidotransferase complex
## 8811 glutaryl-CoA dehydrogenase activity
## 8812 glutaryl-CoA hydrolase activity
## 8813 glutathione deglycation
## 8814 glutathione dehydrogenase (ascorbate) activity
## 8815 glutathione specific gamma-glutamylcyclotransferase activity
## 8816 glutathione synthase activity
## 8817 glutathione transmembrane transport
## 8818 glutathione transmembrane transporter activity
## 8819 glutathione transport
## 8820 glyceraldehyde oxidoreductase activity
## 8821 glyceraldehyde-3-phosphate dehydrogenase (NAD+) (phosphorylating) activity
## 8822 glycerate dehydrogenase activity
## 8823 glycerate kinase activity
## 8824 glycerol biosynthetic process
## 8825 glycerol biosynthetic process from pyruvate
## 8826 glycerol ether metabolic process
## 8827 glycerol-1-phosphatase activity
## 8828 glycerol-3-phosphatase activity
## 8829 glycerol-3-phosphate catabolic process
## 8830 glycerol-3-phosphate dehydrogenase (quinone) activity
## 8831 glycerol-3-phosphate dehydrogenase [NAD+] activity
## 8832 glycerol-3-phosphate O-acyltransferase activity
## 8833 glycerone kinase activity
## 8834 glycerone-phosphate O-acyltransferase activity
## 8835 glycerophosphate shuttle
## 8836 glycerophosphocholine phosphodiesterase activity
## 8837 glycine betaine transport
## 8838 glycine biosynthetic process from serine
## 8839 glycine catabolic process
## 8840 glycine cleavage complex
## 8841 glycine decarboxylation via glycine cleavage system
## 8842 glycine hydroxymethyltransferase activity
## 8843 glycine import into mitochondrion
## 8844 glycine transmembrane transporter activity
## 8845 glycogen cell differentiation involved in embryonic placenta development
## 8846 glycogen granule
## 8847 glycogen phosphorylase activity
## 8848 glycolate biosynthetic process
## 8849 glycolipid mannosyltransferase activity
## 8850 glycolipid transfer activity
## 8851 glycolysis from storage polysaccharide through glucose-1-phosphate
## 8852 glycolytic process from galactose
## 8853 glycolytic process through glucose-6-phosphate
## 8854 glycoprotein 6-alpha-L-fucosyltransferase activity
## 8855 glycoprotein endo-alpha-1,2-mannosidase activity
## 8856 glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase activity
## 8857 glycosphingolipid binding
## 8858 glycosylceramide catabolic process
## 8859 glycosylceramide flippase activity
## 8860 glycosylceramide metabolic process
## 8861 glycosylphosphatidylinositol phospholipase D activity
## 8862 glycylpeptide N-tetradecanoyltransferase activity
## 8863 glyoxal catabolic process
## 8864 glyoxal metabolic process
## 8865 glyoxalase (glycolic acid-forming) activity
## 8866 glyoxylate cycle
## 8867 glyoxylate metabolic process
## 8868 glyoxylate reductase (NADP) activity
## 8869 GMP 5'-nucleotidase activity
## 8870 GMP binding
## 8871 Golgi calcium ion homeostasis
## 8872 Golgi calcium ion transport
## 8873 Golgi medial cisterna membrane
## 8874 Golgi to plasma membrane CFTR protein transport
## 8875 Golgi to plasma membrane transport vesicle
## 8876 Golgi to secretory granule transport
## 8877 Golgi trans cisterna membrane
## 8878 Golgi vesicle fusion to target membrane
## 8879 gonad development
## 8880 gonadotropin secretion
## 8881 GPI anchor binding
## 8882 GPI anchor release
## 8883 GPI-anchor transamidase activity
## 8884 granular vesicle
## 8885 granulocyte chemotaxis
## 8886 granuloma formation
## 8887 granzyme-mediated apoptotic signaling pathway
## 8888 granzyme-mediated programmed cell death signaling pathway
## 8889 Grb2-EGFR complex
## 8890 Grb2-Sos complex
## 8891 grooming behavior
## 8892 growth hormone-releasing hormone receptor activity
## 8893 growth plate cartilage chondrocyte growth
## 8894 GTP cyclohydrolase binding
## 8895 GTP-dependent protein kinase activity
## 8896 Gtr1-Gtr2 GTPase complex
## 8897 guanidinoacetate N-methyltransferase activity
## 8898 guanine deglycation
## 8899 guanine deglycation, glyoxal removal
## 8900 guanine deglycation, methylglyoxal removal
## 8901 guanine nucleotide transmembrane transport
## 8902 guanine nucleotide transmembrane transporter activity
## 8903 guanosine metabolic process
## 8904 guanosine-5'-triphosphate,3'-diphosphate diphosphatase activity
## 8905 guanylyltransferase activity
## 8906 H2B histone acetyltransferase activity
## 8907 H3K27me3 modified histone binding
## 8908 H4 histone acetyltransferase complex
## 8909 H4/H2A histone acetyltransferase complex
## 8910 H4K20me3 modified histone binding
## 8911 hair cycle process
## 8912 hair follicle morphogenesis
## 8913 hair follicle placode formation
## 8914 Harderian gland development
## 8915 head morphogenesis
## 8916 heart formation
## 8917 heat generation
## 8918 helper T cell diapedesis
## 8919 helper T cell enhancement of adaptive immune response
## 8920 hematopoietic or lymphoid organ development
## 8921 hematopoietic stem cell migration
## 8922 hematopoietic stem cell migration to bone marrow
## 8923 heme metabolic process
## 8924 hemi-methylated DNA-binding
## 8925 heparan sulfate 6-O-sulfotransferase activity
## 8926 heparan sulfate N-deacetylase activity
## 8927 heparan sulfate proteoglycan biosynthetic process, enzymatic modification
## 8928 heparanase activity
## 8929 heparin catabolic process
## 8930 hepatocyte homeostasis
## 8931 hepoxilin biosynthetic process
## 8932 heterochromatin maintenance
## 8933 heterochromatin organization
## 8934 heterochromatin organization involved in chromatin silencing
## 8935 hexokinase activity
## 8936 hexosaminidase activity
## 8937 HFE-transferrin receptor complex
## 8938 high voltage-gated calcium channel activity
## 8939 high-affinity arginine transmembrane transporter activity
## 8940 high-affinity lysine transmembrane transporter activity
## 8941 high-density lipoprotein particle receptor activity
## 8942 hindbrain development
## 8943 hindlimb morphogenesis
## 8944 hippocampal mossy fiber expansion
## 8945 HIR complex
## 8946 histamine catabolic process
## 8947 histamine metabolic process
## 8948 histamine N-methyltransferase activity
## 8949 histamine receptor activity
## 8950 histidine catabolic process to glutamate and formamide
## 8951 histidine catabolic process to glutamate and formate
## 8952 histidine metabolic process
## 8953 histidine transport
## 8954 histidine-tRNA ligase activity
## 8955 histidyl-tRNA aminoacylation
## 8956 histone acetyltransferase activity (H4-K12 specific)
## 8957 histone acetyltransferase regulator activity
## 8958 histone butyryltransferase activity
## 8959 histone crotonyltransferase activity
## 8960 histone demethylase activity (H3-monomethyl-K4 specific)
## 8961 histone demethylase activity (H4-K20 specific)
## 8962 histone glutaryltransferase activity
## 8963 histone H2A K63-linked deubiquitination
## 8964 histone H2A K63-linked ubiquitination
## 8965 histone H2A phosphorylation
## 8966 histone H2A-K13 ubiquitination
## 8967 histone H2A-K15 ubiquitination
## 8968 histone H2A-K5 acetylation
## 8969 histone H2B conserved C-terminal lysine ubiquitination
## 8970 histone H2B-K12 acetylation
## 8971 histone H2B-K5 acetylation
## 8972 histone H3-K14 acetyltransferase complex
## 8973 histone H3-K4 acetylation
## 8974 histone H3-K79 methylation
## 8975 histone H3-K9 dimethylation
## 8976 histone H3-S10 phosphorylation involved in chromosome condensation
## 8977 histone H3-T3 phosphorylation
## 8978 histone H3-T6 phosphorylation
## 8979 histone H3-Y41 phosphorylation
## 8980 histone H4-K20 demethylation
## 8981 histone H4-K20 dimethylation
## 8982 histone kinase activity (H3-S10 specific)
## 8983 histone kinase activity (H3-T3 specific)
## 8984 histone kinase activity (H3-T6 specific)
## 8985 histone kinase activity (H3-Y41 specific)
## 8986 histone locus body
## 8987 histone methyltransferase activity (H3-K79 specific)
## 8988 histone pre-mRNA stem-loop binding
## 8989 histone succinyltransferase activity
## 8990 histone-glutamine methyltransferase activity
## 8991 HLA-A specific activating MHC class I receptor activity
## 8992 HLA-A specific inhibitory MHC class I receptor activity
## 8993 HLA-B specific inhibitory MHC class I receptor activity
## 8994 holo-[acyl-carrier-protein] synthase activity
## 8995 homocysteine metabolic process
## 8996 homologous recombination
## 8997 hormone binding
## 8998 hormone biosynthetic process
## 8999 hormone catabolic process
## 9000 hormone metabolic process
## 9001 hormone receptor binding
## 9002 HRI-mediated signaling
## 9003 Hsp27 protein binding
## 9004 HSP90-CDC37 chaperone complex
## 9005 HULC complex
## 9006 hyaloid vascular plexus regression
## 9007 hyaluronan metabolic process
## 9008 hyaluronoglucuronidase activity
## 9009 hydrogen peroxide metabolic process
## 9010 hydrogen sulfide biosynthetic process
## 9011 hydrogen sulfide metabolic process
## 9012 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in cyclic amides
## 9013 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides
## 9014 hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amidines
## 9015 hydroxyapatite binding
## 9016 hydroxylysine biosynthetic process
## 9017 hydroxymethyl-, formyl- and related transferase activity
## 9018 hydroxymethylglutaryl-CoA hydrolase activity
## 9019 hydroxymethylglutaryl-CoA lyase activity
## 9020 hydroxymethylglutaryl-CoA reductase (NADPH) activity
## 9021 hydroxymethylglutaryl-CoA reductase activity
## 9022 hydroxymethylglutaryl-CoA synthase activity
## 9023 hydroxyproline transport
## 9024 hydroxypyruvate reductase activity
## 9025 hypermethylation of CpG island
## 9026 hypochlorous acid biosynthetic process
## 9027 hypoxanthine phosphoribosyltransferase activity
## 9028 hypoxia-inducible factor-asparagine oxygenase activity
## 9029 ICAM-3 receptor activity
## 9030 icosanoid biosynthetic process
## 9031 IgA binding
## 9032 IgE binding
## 9033 IgG immunoglobulin transcytosis in epithelial cells mediated by FcRn immunoglobulin receptor
## 9034 IkappaB kinase complex binding
## 9035 imidazolonepropionase activity
## 9036 immune complex formation
## 9037 immune response in brain or nervous system
## 9038 immune response in nasopharyngeal-associated lymphoid tissue
## 9039 immune response-regulating signaling pathway
## 9040 immunoglobulin complex
## 9041 immunoglobulin complex, circulating
## 9042 immunoglobulin heavy chain V-D-J recombination
## 9043 immunoglobulin V(D)J recombination
## 9044 IMP 5'-nucleotidase activity
## 9045 IMP biosynthetic process
## 9046 IMP catabolic process
## 9047 IMP salvage
## 9048 inactivation of X chromosome by DNA methylation
## 9049 inactivation of X chromosome by genetic imprinting
## 9050 inactivation of X chromosome by heterochromatin assembly
## 9051 induction by virus of host cell-cell fusion
## 9052 induction of bacterial agglutination
## 9053 induction of programmed cell death
## 9054 induction of synaptic vesicle exocytosis by positive regulation of presynaptic cytosolic calcium ion concentration
## 9055 inflammatory cell apoptotic process
## 9056 inhibin binding
## 9057 inhibin-betaglycan-ActRII complex
## 9058 inhibition of cysteine-type endopeptidase activity
## 9059 inhibitory MHC class I receptor activity
## 9060 innate immune response activating cell surface receptor signaling pathway
## 9061 innate immune response-activating signal transduction
## 9062 inner cell mass cell differentiation
## 9063 inner cell mass cell fate commitment
## 9064 inner cell mass cellular morphogenesis
## 9065 inner dense plaque of desmosome
## 9066 inner dynein arm
## 9067 inner ear auditory receptor cell differentiation
## 9068 inner medullary collecting duct development
## 9069 inorganic anion import across plasma membrane
## 9070 inorganic cation import across plasma membrane
## 9071 inorganic cation transmembrane transporter activity
## 9072 inorganic diphosphate transmembrane transporter activity
## 9073 inorganic diphosphate transport
## 9074 inorganic phosphate transmembrane transporter activity
## 9075 inosine-diphosphatase activity
## 9076 inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## 9077 inositol bisphosphate phosphatase activity
## 9078 inositol hexakisphosphate 5-kinase activity
## 9079 inositol hexakisphosphate kinase activity
## 9080 inositol pentakisphosphate 2-kinase activity
## 9081 inositol phosphorylation
## 9082 inositol trisphosphate phosphatase activity
## 9083 inositol-1,3,4-trisphosphate 4-phosphatase activity
## 9084 inositol-3,4-bisphosphate 4-phosphatase activity
## 9085 insulin catabolic process
## 9086 insulin metabolic process
## 9087 insulin receptor complex
## 9088 insulin-activated receptor activity
## 9089 insulin-like growth factor-activated receptor activity
## 9090 integral component of endoplasmic reticulum-Golgi intermediate compartment (ERGIC) membrane
## 9091 integral component of omegasome membrane
## 9092 integral component of postsynaptic specialization membrane
## 9093 integral component of the cytoplasmic side of the plasma membrane
## 9094 integrated stress response signaling
## 9095 integrin activation
## 9096 integrin alpha10-beta1 complex
## 9097 integrin alpha11-beta1 complex
## 9098 integrin alpha2-beta1 complex
## 9099 integrin alpha3-beta1 complex
## 9100 integrin alpha4-beta1 complex
## 9101 integrin alpha5-beta1 complex
## 9102 integrin alpha7-beta1 complex
## 9103 integrin alpha8-beta1 complex
## 9104 integrin alpha9-beta1 complex
## 9105 integrin alphaIIb-beta3 complex
## 9106 integrin alphaL-beta2 complex
## 9107 integrin alphaM-beta2 complex
## 9108 integrin alphav-beta5 complex
## 9109 integrin alphav-beta6 complex
## 9110 integrin alphav-beta8 complex
## 9111 integrin alphaX-beta2 complex
## 9112 interferon-gamma binding
## 9113 interleukin-1 receptor binding
## 9114 interleukin-1, type I receptor binding
## 9115 interleukin-1, type I, activating receptor activity
## 9116 interleukin-1, type II receptor binding
## 9117 interleukin-10 production
## 9118 interleukin-12 receptor complex
## 9119 interleukin-13-mediated signaling pathway
## 9120 interleukin-16 binding
## 9121 interleukin-16 receptor activity
## 9122 interleukin-17 receptor activity
## 9123 interleukin-18 receptor activity
## 9124 interleukin-18 receptor complex
## 9125 interleukin-21 receptor activity
## 9126 interleukin-23 binding
## 9127 interleukin-23 complex
## 9128 interleukin-23 receptor binding
## 9129 interleukin-23 receptor complex
## 9130 interleukin-28 receptor complex
## 9131 interleukin-4 receptor binding
## 9132 interleukin-6 binding
## 9133 interleukin-6 receptor activity
## 9134 interleukin-6 receptor complex
## 9135 Intermediate conductance calcium-activated potassium channel activity
## 9136 intermediate filament-based process
## 9137 internode region of axon
## 9138 interstitial matrix
## 9139 intestinal cholesterol absorption
## 9140 intestinal epithelial cell migration
## 9141 intestinal hexose absorption
## 9142 intestinal lipid absorption
## 9143 intracellular canaliculus
## 9144 intracellular pH reduction
## 9145 intraciliary anterograde transport
## 9146 intraciliary transport particle B binding
## 9147 intrahepatic bile duct development
## 9148 intramanchette transport
## 9149 intramembranous ossification
## 9150 intramolecular transferase activity, phosphotransferases
## 9151 intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## 9152 intrinsic apoptotic signaling pathway in response to osmotic stress
## 9153 intrinsic component of external side of plasma membrane
## 9154 intrinsic component of Golgi membrane
## 9155 intrinsic component of organelle membrane
## 9156 inward rectifier potassium channel activity
## 9157 iodide transport
## 9158 ion binding
## 9159 ion channel regulator activity
## 9160 IRE1-RACK1-PP2A complex
## 9161 IRES-dependent translational initiation of linear mRNA
## 9162 iron import into the mitochondrion
## 9163 iron incorporation into metallo-sulfur cluster
## 9164 iron ion import across cell outer membrane
## 9165 iron ion transmembrane transport
## 9166 iron-cytochrome-c reductase activity
## 9167 isocitrate dehydrogenase (NADP+) activity
## 9168 isocitrate dehydrogenase activity
## 9169 isoleucine biosynthetic process
## 9170 isoleucine metabolic process
## 9171 isopeptide cross-linking via N6-glycyl-L-lysine
## 9172 isoprenoid metabolic process
## 9173 isotype switching to IgG isotypes
## 9174 isoursodeoxycholate 7-beta-dehydrogenase (NAD+) activity
## 9175 ISWI-type complex
## 9176 itaconyl-CoA hydratase activity
## 9177 ITP catabolic process
## 9178 ITP metabolic process
## 9179 JUN kinase activity
## 9180 JUN phosphorylation
## 9181 junctional sarcoplasmic reticulum membrane
## 9182 K11-linked polyubiquitin modification-dependent protein binding
## 9183 katanin complex
## 9184 KDEL sequence binding
## 9185 keratinocyte development
## 9186 ketohexokinase activity
## 9187 ketone body catabolic process
## 9188 ketone catabolic process
## 9189 killing by host of symbiont cells
## 9190 kinase inhibitor activity
## 9191 kinase regulator activity
## 9192 kinesin II complex
## 9193 Kit signaling pathway
## 9194 Krueppel-associated box domain binding
## 9195 L-alanine import across plasma membrane
## 9196 L-alanine transmembrane transporter activity
## 9197 L-alanine transport
## 9198 L-allo-threonine aldolase activity
## 9199 L-arginine import across plasma membrane
## 9200 L-arginine transmembrane transport
## 9201 L-arginine transmembrane transporter activity
## 9202 L-ascorbate:sodium symporter activity
## 9203 L-ascorbic acid biosynthetic process
## 9204 L-ascorbic acid transmembrane transport
## 9205 L-ascorbic acid transmembrane transporter activity
## 9206 L-aspartate import across plasma membrane
## 9207 L-aspartate transmembrane transport
## 9208 L-cysteine desulfurase complex
## 9209 L-cystine transmembrane transporter activity
## 9210 L-cystine transport
## 9211 L-dopa decarboxylase activator activity
## 9212 L-dopa O-methyltransferase activity
## 9213 L-fucose mutarotase activity
## 9214 L-glucuronate reductase activity
## 9215 L-glutamate transmembrane transport
## 9216 L-glutamate transmembrane transporter activity
## 9217 L-gulonate 3-dehydrogenase activity
## 9218 L-histidine import across plasma membrane
## 9219 L-histidine transmembrane export from vacuole
## 9220 L-histidine transmembrane transport
## 9221 L-hydroxyproline transmembrane transporter activity
## 9222 L-iditol 2-dehydrogenase activity
## 9223 L-iduronidase activity
## 9224 L-isoleucine transaminase activity
## 9225 L-leucine transaminase activity
## 9226 L-leucine:2-oxoglutarate aminotransferase activity
## 9227 L-lysine catabolic process
## 9228 L-malate dehydrogenase activity
## 9229 L-methionine-(R)-S-oxide reductase activity
## 9230 L-methionine-(S)-S-oxide reductase activity
## 9231 L-methionine:thioredoxin-disulfide S-oxidoreductase activity
## 9232 L-ornithine transmembrane transport
## 9233 L-ornithine transmembrane transporter activity
## 9234 L-phenylalanine catabolic process
## 9235 L-phenylalanine metabolic process
## 9236 L-phosphoserine phosphatase activity
## 9237 L-proline transmembrane transporter activity
## 9238 L-serine catabolic process
## 9239 L-serine import across plasma membrane
## 9240 L-serine-phosphatidylethanolamine phosphatidyltransferase activity
## 9241 L-seryl-tRNA(Sec) kinase activity
## 9242 L-threonine transmembrane transporter activity
## 9243 L-valine transaminase activity
## 9244 L-xylitol catabolic process
## 9245 L-xylitol metabolic process
## 9246 L-xylulose reductase (NAD+) activity
## 9247 L-xylulose reductase (NADP+) activity
## 9248 labyrinthine layer morphogenesis
## 9249 lactate metabolic process
## 9250 lactic acid secretion
## 9251 lactose binding
## 9252 lactose biosynthetic process
## 9253 lactose synthase activity
## 9254 lamellipodium assembly involved in ameboidal cell migration
## 9255 laminin receptor activity
## 9256 laminin-1 complex
## 9257 laminin-10 complex
## 9258 laminin-11 complex
## 9259 laminin-5 complex
## 9260 lanosterol synthase activity
## 9261 Las1 complex
## 9262 late endosomal microautophagy
## 9263 late recombination nodule
## 9264 lateral attachment of mitotic spindle microtubules to kinetochore
## 9265 lateral cell cortex
## 9266 lathosterol oxidase activity
## 9267 latrotoxin receptor activity
## 9268 leading edge cell differentiation
## 9269 leak channel activity
## 9270 left ventricular cardiac muscle tissue morphogenesis
## 9271 left/right pattern formation
## 9272 LEM domain binding
## 9273 lens fiber cell apoptotic process
## 9274 leptin receptor activity
## 9275 leptin receptor binding
## 9276 leptomycin B binding
## 9277 leucine biosynthetic process
## 9278 leucine metabolic process
## 9279 leucine transport
## 9280 leucine-tRNA ligase activity
## 9281 leucyl-tRNA aminoacylation
## 9282 leukemia inhibitory factor receptor activity
## 9283 leukemia inhibitory factor signaling pathway
## 9284 leukocyte activation
## 9285 leukocyte activation involved in immune response
## 9286 leukocyte aggregation
## 9287 leukocyte degranulation
## 9288 leukocyte mediated cytotoxicity
## 9289 leukotriene B4 catabolic process
## 9290 leukotriene B4 receptor activity
## 9291 leukotriene receptor activity
## 9292 leukotriene signaling pathway
## 9293 leukotriene-B4 20-monooxygenase activity
## 9294 leukotriene-C(4) hydrolase
## 9295 leukotriene-C4 synthase activity
## 9296 Leydig cell differentiation
## 9297 ligand-activated transcription factor activity
## 9298 ligand-gated ion channel activity
## 9299 ligase activity, forming carbon-nitrogen bonds
## 9300 LIM domain binding
## 9301 limb bud formation
## 9302 linear malto-oligosaccharide phosphorylase activity
## 9303 linear polyubiquitin binding
## 9304 linoleic acid binding
## 9305 linoleoyl-CoA desaturase activity
## 9306 lipase inhibitor activity
## 9307 lipid antigen binding
## 9308 lipid hydroperoxide transport
## 9309 lipid oxidation
## 9310 lipid tube
## 9311 lipid tube assembly
## 9312 lipoate biosynthetic process
## 9313 lipoate synthase activity
## 9314 lipoic acid binding
## 9315 lipophagy
## 9316 lipopolysaccharide transport
## 9317 lipoprotein biosynthetic process
## 9318 lipoprotein lipase activity
## 9319 lipoprotein particle binding
## 9320 lipoprotein particle receptor activity
## 9321 lipoprotein particle receptor binding
## 9322 lipoyl synthase activity (acting on glycine-cleavage complex H protein
## 9323 lipoyl synthase activity (acting on pyruvate dehydrogenase E2 protein)
## 9324 lipoyl(octanoyl) transferase activity
## 9325 lipoyltransferase activity
## 9326 lithium ion binding
## 9327 liver morphogenesis
## 9328 localization within membrane
## 9329 locomotion involved in locomotory behavior
## 9330 long-chain acyl-CoA hydrolase activity
## 9331 long-chain fatty acid catabolic process
## 9332 long-chain-3-hydroxyacyl-CoA dehydrogenase activity
## 9333 long-chain-fatty-acyl-CoA reductase activity
## 9334 longitudinal sarcoplasmic reticulum
## 9335 loop of Henle development
## 9336 low voltage-gated calcium channel activity
## 9337 low-density lipoprotein particle mediated signaling
## 9338 lumenal side of Golgi membrane
## 9339 lung lobe morphogenesis
## 9340 lung smooth muscle development
## 9341 luteinizing hormone secretion
## 9342 luteolysis
## 9343 lutropin-choriogonadotropic hormone receptor binding
## 9344 lymph vessel development
## 9345 lymph vessel morphogenesis
## 9346 lymphocyte aggregation
## 9347 lymphocyte migration
## 9348 lymphocyte migration into lymphoid organs
## 9349 lysophosphatidic acid phosphatase activity
## 9350 lysosomal HOPS complex
## 9351 lysosomal lumen pH elevation
## 9352 lysosomal matrix
## 9353 lytic vacuole
## 9354 m-AAA complex
## 9355 macrophage apoptotic process
## 9356 macrophage colony-stimulating factor receptor activity
## 9357 macrophage colony-stimulating factor receptor binding
## 9358 macrophage fusion
## 9359 macrophage homeostasis
## 9360 macrophage migration inhibitory factor binding
## 9361 macrophage migration inhibitory factor receptor complex
## 9362 macrophage migration inhibitory factor signaling pathway
## 9363 maintenance of cell polarity
## 9364 maintenance of DNA repeat elements
## 9365 maintenance of imprinting at mating-type locus
## 9366 maintenance of lens transparency
## 9367 maintenance of postsynaptic density structure
## 9368 maintenance of protein localization in endoplasmic reticulum
## 9369 maintenance of protein location
## 9370 maintenance of protein location in cell
## 9371 maintenance of transcriptional fidelity during DNA-templated transcription elongation from RNA polymerase II promoter
## 9372 maintenance of translational fidelity
## 9373 malate dehydrogenase (NADP+) activity
## 9374 malate dehydrogenase activity
## 9375 malate-aspartate shuttle
## 9376 male gamete generation
## 9377 male genitalia morphogenesis
## 9378 male germ-line stem cell asymmetric division
## 9379 male meiosis chromosome segregation
## 9380 male meiosis chromosome separation
## 9381 maleylacetoacetate isomerase activity
## 9382 malonate catabolic process
## 9383 malonyl-CoA biosynthetic process
## 9384 malonyl-CoA catabolic process
## 9385 malonyl-CoA decarboxylase activity
## 9386 malonyl-CoA synthetase activity
## 9387 MAML1-RBP-Jkappa- ICN1 complex
## 9388 mammalian oogenesis stage
## 9389 mammary gland branching involved in pregnancy
## 9390 mammary gland fat development
## 9391 mammary gland involution
## 9392 manchette assembly
## 9393 manganese ion homeostasis
## 9394 manganese ion transport
## 9395 manganese transmembrane transporter activity, phosphorylative mechanism
## 9396 mannokinase activity
## 9397 mannose to fructose-6-phosphate metabolic process
## 9398 mannose-6-phosphate isomerase activity
## 9399 mannosyl-glycoprotein endo-beta-N-acetylglucosaminidase activity
## 9400 mannosyl-oligosaccharide glucosidase activity
## 9401 mannosyltransferase complex
## 9402 mast cell activation
## 9403 mast cell differentiation
## 9404 mast cell granule
## 9405 mast cell homeostasis
## 9406 mast cell secretory granule organization
## 9407 mating behavior
## 9408 maturation of 5S rRNA
## 9409 mature B cell differentiation
## 9410 mature conventional dendritic cell differentiation
## 9411 MCM complex binding
## 9412 mechanosensory behavior
## 9413 medial motor column neuron differentiation
## 9414 medium-chain acyl-CoA hydrolase activity
## 9415 medium-chain fatty acid biosynthetic process
## 9416 medium-chain fatty acid-CoA ligase activity
## 9417 medium-chain fatty-acyl-CoA metabolic process
## 9418 meiotic cell cycle checkpoint
## 9419 meiotic chromosome separation
## 9420 meiotic DNA double-strand break formation
## 9421 meiotic DNA double-strand break processing involved in reciprocal meiotic recombination
## 9422 meiotic metaphase I plate congression
## 9423 meiotic metaphase plate congression
## 9424 meiotic nuclear division
## 9425 meiotic recombination checkpoint
## 9426 meiotic spindle assembly checkpoint
## 9427 meiotic spindle midzone
## 9428 meiotic spindle pole
## 9429 melanocortin receptor activity
## 9430 melanocyte migration
## 9431 melanocyte-stimulating hormone receptor activity
## 9432 membrane assembly
## 9433 membrane attack complex
## 9434 membrane bending
## 9435 membrane biogenesis
## 9436 membrane depolarization during AV node cell action potential
## 9437 membrane depolarization during bundle of His cell action potential
## 9438 membrane depolarization during Purkinje myocyte cell action potential
## 9439 membrane disruption in other organism
## 9440 membrane lipid metabolic process
## 9441 membrane microdomain
## 9442 membrane protein proteolysis involved in retrograde protein transport, ER to cytosol
## 9443 membrane raft distribution
## 9444 membrane raft organization
## 9445 membrane repolarization during atrial cardiac muscle cell action potential
## 9446 membrane tubulation
## 9447 membrane-bounded organelle
## 9448 memory B cell differentiation
## 9449 memory T cell differentiation
## 9450 memory T cell proliferation
## 9451 menaquinone catabolic process
## 9452 mercury ion transport
## 9453 mesenchymal stem cell differentiation
## 9454 mesenchymal to epithelial transition
## 9455 mesoderm migration involved in gastrulation
## 9456 mesoderm morphogenesis
## 9457 mesonephric duct development
## 9458 mesonephric tubule development
## 9459 messenger ribonucleoprotein complex assembly
## 9460 metabolite repair
## 9461 metallochaperone activity
## 9462 metanephric ascending thin limb development
## 9463 metanephric collecting duct development
## 9464 metanephric cortex development
## 9465 metanephric cortical collecting duct development
## 9466 metanephric distal tubule development
## 9467 metanephric mesenchymal cell differentiation
## 9468 metanephric mesenchymal cell proliferation involved in metanephros development
## 9469 metanephric mesenchyme development
## 9470 metanephric mesenchyme morphogenesis
## 9471 metanephric part of ureteric bud development
## 9472 metanephric S-shaped body morphogenesis
## 9473 metanephric smooth muscle tissue development
## 9474 metencephalon development
## 9475 methione N-acyltransferase activity
## 9476 methionine adenosyltransferase activity
## 9477 methionine adenosyltransferase regulator activity
## 9478 methotrexate transmembrane transporter activity
## 9479 methotrexate transport
## 9480 methylarsonate reductase activity
## 9481 methylated-DNA-[protein]-cysteine S-methyltransferase activity
## 9482 methylcrotonoyl-CoA carboxylase activity
## 9483 methylcrotonoyl-CoA carboxylase complex
## 9484 methylcytosine dioxygenase activity
## 9485 methylenetetrahydrofolate dehydrogenase [NAD(P)+] activity
## 9486 methylglutaconyl-CoA hydratase activity
## 9487 methylglyoxal biosynthetic process
## 9488 methylglyoxal catabolic process to lactate
## 9489 methylglyoxal metabolic process
## 9490 methylglyoxal reductase (NADPH-dependent, acetol producing)
## 9491 methylglyoxal synthase activity
## 9492 methylmalonyl-CoA mutase activity
## 9493 methylthiotransferase activity
## 9494 mevalonate kinase activity
## 9495 mevalonate transmembrane transporter activity
## 9496 mevalonate transport
## 9497 MHC class I protein complex assembly
## 9498 MHC class Ib protein complex assembly
## 9499 MHC class II protein binding, via antigen binding groove
## 9500 MHC class II protein complex assembly
## 9501 microfibril binding
## 9502 microglial cell activation involved in immune response
## 9503 microspike
## 9504 microspike assembly
## 9505 microtubule cytoskeleton organization involved in establishment of planar polarity
## 9506 microtubule end
## 9507 microtubule lateral binding
## 9508 microtubule plus end polymerase
## 9509 microtubule plus-end directed mitotic chromosome migration
## 9510 microtubule sliding
## 9511 microvillus organization
## 9512 midbrain dopaminergic neuron differentiation
## 9513 midbrain-hindbrain boundary development
## 9514 mineralocorticoid receptor signaling pathway
## 9515 minor groove of adenine-thymine-rich DNA binding
## 9516 miRNA transport
## 9517 MIS12/MIND type complex
## 9518 Mis6-Sim4 complex
## 9519 mismatch base pair DNA N-glycosylase activity
## 9520 mismatch repair involved in maintenance of fidelity involved in DNA-dependent DNA replication
## 9521 MIT domain binding
## 9522 mitigation of host defenses by symbiont
## 9523 mitochondria-nucleus signaling pathway
## 9524 mitochondrial acetyl-CoA biosynthetic process from pyruvate
## 9525 mitochondrial ADP transmembrane transport
## 9526 mitochondrial asparaginyl-tRNA aminoacylation
## 9527 mitochondrial ATP transmembrane transport
## 9528 mitochondrial ATP-gated potassium channel complex
## 9529 mitochondrial citrate transmembrane transport
## 9530 mitochondrial crista junction
## 9531 mitochondrial degradosome
## 9532 mitochondrial DNA-directed RNA polymerase complex
## 9533 mitochondrial double-strand break repair via homologous recombination
## 9534 mitochondrial endopeptidase Clp complex
## 9535 mitochondrial FAD transmembrane transport
## 9536 mitochondrial fatty acid beta-oxidation multienzyme complex
## 9537 mitochondrial L-ornithine transmembrane transport
## 9538 mitochondrial membrane fission
## 9539 mitochondrial mRNA catabolic process
## 9540 mitochondrial mRNA polyadenylation
## 9541 mitochondrial mRNA processing
## 9542 mitochondrial NAD transmembrane transport
## 9543 mitochondrial nucleoid organization
## 9544 mitochondrial outer membrane permeabilization involved in programmed cell death
## 9545 mitochondrial phosphate ion transmembrane transport
## 9546 mitochondrial protein catabolic process
## 9547 mitochondrial proton-transporting ATP synthase, stator stalk
## 9548 mitochondrial respirasome assembly
## 9549 mitochondrial ribonuclease P complex
## 9550 mitochondrial RNA 3'-end processing
## 9551 mitochondrial RNA 5'-end processing
## 9552 mitochondrial RNA catabolic process
## 9553 mitochondrial RNA metabolic process
## 9554 mitochondrial RNA processing
## 9555 mitochondrial seryl-tRNA aminoacylation
## 9556 mitochondrial transcription factor activity
## 9557 mitochondrial tRNA 5'-end processing
## 9558 mitochondrial tRNA methylation
## 9559 mitochondrial tRNA processing
## 9560 mitochondrial tRNA pseudouridine synthesis
## 9561 mitochondrial unfolded protein response
## 9562 mitochondrion targeting sequence binding
## 9563 mitochondrion-derived vesicle
## 9564 mitotic cohesin complex
## 9565 mitotic DNA replication
## 9566 mitotic DNA replication preinitiation complex assembly
## 9567 mitotic sister chromatid biorientation
## 9568 mitral valve formation
## 9569 Mo-molybdopterin cofactor biosynthetic process
## 9570 modification by virus of host mRNA processing
## 9571 modification of postsynaptic structure
## 9572 modification of synaptic structure
## 9573 modification of synaptic structure, modulating synaptic transmission
## 9574 modified amino acid binding
## 9575 modulation by host of viral genome replication
## 9576 modulation by host of viral transcription
## 9577 molybdate ion transmembrane transporter activity
## 9578 molybdate ion transport
## 9579 molybdenum ion binding
## 9580 molybdopterin cofactor binding
## 9581 molybdopterin cofactor biosynthetic process
## 9582 monoacylglycerol biosynthetic process
## 9583 monomeric IgA immunoglobulin complex
## 9584 mononuclear cell proliferation
## 9585 monopolar spindle attachment to meiosis I kinetochore
## 9586 monosialoganglioside sialyltransferase activity
## 9587 monounsaturated fatty acid biosynthetic process
## 9588 monovalent inorganic cation transport
## 9589 morphogenesis of a branching epithelium
## 9590 morphogenesis of embryonic epithelium
## 9591 motor neuron migration
## 9592 mRNA (adenine-N1-)-methyltransferase activity
## 9593 mRNA (cytidine-5-)-methyltransferase activity
## 9594 mRNA (N6-adenosine)-methyltransferase activity
## 9595 mRNA 5'-splice site recognition
## 9596 mRNA binding involved in posttranscriptional gene silencing
## 9597 mRNA cap binding complex binding
## 9598 mRNA CDS binding
## 9599 mRNA cleavage involved in gene silencing by siRNA
## 9600 mRNA export from nucleus in response to heat stress
## 9601 mRNA guanylyltransferase activity
## 9602 mRNA localization resulting in posttranscriptional regulation of gene expression
## 9603 mRNA metabolic process
## 9604 MSL complex
## 9605 mucin granule
## 9606 mucus secretion
## 9607 Mullerian duct regression
## 9608 multi-ciliated epithelial cell differentiation
## 9609 multi-eIF complex
## 9610 multi-organism membrane organization
## 9611 multinuclear osteoclast differentiation
## 9612 muramyl dipeptide binding
## 9613 muscle cell projection membrane
## 9614 muscle myosin complex
## 9615 muscle organ morphogenesis
## 9616 muscle thin filament tropomyosin
## 9617 muscle tissue development
## 9618 muscular septum morphogenesis
## 9619 MutLalpha complex
## 9620 MutSbeta complex
## 9621 mycophenolic acid acyl-glucuronide esterase activity
## 9622 myeloid cell development
## 9623 myeloid dendritic cell activation
## 9624 myeloid dendritic cell chemotaxis
## 9625 myeloid leukocyte activation
## 9626 myeloid leukocyte differentiation
## 9627 myo-inositol import across plasma membrane
## 9628 myo-inositol:proton symporter activity
## 9629 myo-inositol:sodium symporter activity
## 9630 myoblast differentiation involved in skeletal muscle regeneration
## 9631 myoblast fate commitment
## 9632 myoblast fusion involved in skeletal muscle regeneration
## 9633 myoblast proliferation
## 9634 myofibroblast contraction
## 9635 myosin filament assembly
## 9636 myosin head/neck binding
## 9637 myosin heavy chain binding
## 9638 myosin I binding
## 9639 myosin II complex
## 9640 myosin II filament
## 9641 myosin light chain kinase activity
## 9642 myosin phosphatase regulator activity
## 9643 myosin tail binding
## 9644 myosin VI binding
## 9645 myotube differentiation involved in skeletal muscle regeneration
## 9646 N-(long-chain-acyl)ethanolamine deacylase activity
## 9647 N-acetyl-beta-D-galactosaminidase activity
## 9648 N-acetyl-L-aspartate-L-glutamate ligase activity
## 9649 N-acetylgalactosamine 4-O-sulfotransferase activity
## 9650 N-acetylgalactosamine kinase activity
## 9651 N-acetylgalactosamine-4-sulfatase activity
## 9652 N-acetylgalactosamine-6-phosphate deacetylase activity
## 9653 N-acetylglucosamine catabolic process
## 9654 N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase activity
## 9655 N-acetylglucosamine-6-phosphate deacetylase activity
## 9656 N-acetylglucosamine-6-sulfatase activity
## 9657 N-acetylmannosamine metabolic process
## 9658 N-acetylneuraminate biosynthetic process
## 9659 N-acetylneuraminate synthase activity
## 9660 N-acylethanolamine metabolic process
## 9661 N-acylglucosamine 2-epimerase activity
## 9662 N-acylmannosamine kinase activity
## 9663 N-acylneuraminate-9-phosphatase activity
## 9664 N-acylneuraminate-9-phosphate synthase activity
## 9665 N-acylsphingosine amidohydrolase activity
## 9666 N-acylsphingosine galactosyltransferase activity
## 9667 N-glycan fucosylation
## 9668 N-glycan processing to lysosome
## 9669 N-sulfoglucosamine sulfohydrolase activity
## 9670 N-terminal myristoylation domain binding
## 9671 N-terminal peptidyl-alanine methylation
## 9672 N-terminal peptidyl-alanine trimethylation
## 9673 N-terminal peptidyl-aspartic acid acetylation
## 9674 N-terminal peptidyl-glycine methylation
## 9675 N-terminal peptidyl-glycine N-myristoylation
## 9676 N-terminal peptidyl-L-cysteine N-palmitoylation
## 9677 N-terminal peptidyl-proline dimethylation
## 9678 N-terminal peptidyl-proline methylation
## 9679 N-terminal peptidyl-serine acetylation
## 9680 N-terminal peptidyl-serine dimethylation
## 9681 N-terminal peptidyl-serine methylation
## 9682 N-terminal peptidyl-serine trimethylation
## 9683 N-terminal protein amino acid methylation
## 9684 N-terminal protein amino acid modification
## 9685 N-terminal protein N-methyltransferase activity
## 9686 N(1),N(12)-diacetylspermine:oxygen oxidoreductase (3-acetamidopropanal-forming) activity
## 9687 N(6)-L-threonylcarbamoyladenine synthase activity
## 9688 N1-acetylspermidine:oxygen oxidoreductase (3-acetamidopropanal-forming) activity
## 9689 N1-acetylspermine:oxygen oxidoreductase (3-acetamidopropanal-forming) activity
## 9690 N6-isopentenyladenosine methylthiotransferase activity
## 9691 NAADP-sensitive calcium-release channel activity
## 9692 NAD catabolic process
## 9693 NAD salvage
## 9694 NAD transmembrane transporter activity
## 9695 NAD-dependent histone deacetylase activity (H3-K18 specific)
## 9696 NAD-dependent histone deacetylase activity (H4-K16 specific)
## 9697 NAD(P)+ transhydrogenase (B-specific) activity
## 9698 NAD(P)+ transhydrogenase activity
## 9699 NAD(P)+-protein-arginine ADP-ribosyltransferase activity
## 9700 NAD(P)H oxidase H2O2-forming activity
## 9701 NAD+ diphosphatase activity
## 9702 NAD+ synthase (glutamine-hydrolyzing) activity
## 9703 NADH binding
## 9704 NADH oxidation
## 9705 NADHX epimerase activity
## 9706 NADP biosynthetic process
## 9707 NADPH dehydrogenase (quinone) activity
## 9708 NADPH oxidation
## 9709 NADPH-adrenodoxin reductase activity
## 9710 NADPHX epimerase activity
## 9711 naphthalene metabolic process
## 9712 natural killer cell activation involved in immune response
## 9713 natural killer cell chemotaxis
## 9714 natural killer cell lectin-like receptor binding
## 9715 natural killer cell tolerance induction
## 9716 ncRNA polyadenylation
## 9717 ncRNA polyadenylation involved in polyadenylation-dependent ncRNA catabolic process
## 9718 ncRNA transcription
## 9719 NEDD8 activating enzyme activity
## 9720 NEDD8 ligase activity
## 9721 NEDD8 transferase activity
## 9722 negative regulation by host of symbiont molecular function
## 9723 negative regulation by host of viral exo-alpha-sialidase activity
## 9724 negative regulation by host of viral glycoprotein metabolic process
## 9725 negative regulation by host of viral release from host cell
## 9726 negative regulation of actin filament bundle assembly
## 9727 negative regulation of actin filament depolymerization
## 9728 negative regulation of actin nucleation
## 9729 negative regulation of activation-induced cell death of T cells
## 9730 negative regulation of adenylate cyclase-activating adrenergic receptor signaling pathway involved in heart process
## 9731 negative regulation of aldosterone biosynthetic process
## 9732 negative regulation of all-trans-retinyl-ester hydrolase, 11-cis retinol forming activity
## 9733 negative regulation of amino acid transport
## 9734 negative regulation of amniotic stem cell differentiation
## 9735 negative regulation of anion channel activity
## 9736 negative regulation of antifungal innate immune response
## 9737 negative regulation of antigen processing and presentation
## 9738 negative regulation of antigen processing and presentation of peptide antigen via MHC class I
## 9739 negative regulation of apolipoprotein binding
## 9740 negative regulation of apoptotic cell clearance
## 9741 negative regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## 9742 negative regulation of asymmetric cell division
## 9743 negative regulation of ATF6-mediated unfolded protein response
## 9744 negative regulation of ATP biosynthetic process
## 9745 negative regulation of ATP citrate synthase activity
## 9746 negative regulation of autophagic cell death
## 9747 negative regulation of autophagy of mitochondrion
## 9748 negative regulation of axon extension involved in regeneration
## 9749 negative regulation of axon regeneration
## 9750 negative regulation of binding of sperm to zona pellucida
## 9751 negative regulation of blood coagulation
## 9752 negative regulation of blood coagulation, intrinsic pathway
## 9753 negative regulation of blood vessel endothelial cell differentiation
## 9754 negative regulation of blood vessel remodeling
## 9755 negative regulation of blood-brain barrier permeability
## 9756 negative regulation of branching involved in lung morphogenesis
## 9757 negative regulation of branching involved in ureteric bud morphogenesis
## 9758 negative regulation of branching morphogenesis of a nerve
## 9759 negative regulation of brown fat cell differentiation
## 9760 negative regulation of calcidiol 1-monooxygenase activity
## 9761 negative regulation of calcium import into the mitochondrion
## 9762 negative regulation of calcium ion import
## 9763 negative regulation of calcium-dependent cell-cell adhesion
## 9764 negative regulation of cardiac muscle cell differentiation
## 9765 negative regulation of cardiac muscle hypertrophy in response to stress
## 9766 negative regulation of cardiac myofibril assembly
## 9767 negative regulation of caveolin-mediated endocytosis
## 9768 negative regulation of CD4 production
## 9769 negative regulation of CD4-positive, alpha-beta T cell activation
## 9770 negative regulation of CD4-positive, alpha-beta T cell costimulation
## 9771 negative regulation of CD4-positive, alpha-beta T cell differentiation
## 9772 negative regulation of CD8-positive, alpha-beta T cell activation
## 9773 negative regulation of CD8-positive, alpha-beta T cell proliferation
## 9774 negative regulation of cell adhesion molecule production
## 9775 negative regulation of cell cycle G2/M phase transition
## 9776 negative regulation of cell cycle process
## 9777 negative regulation of cell proliferation involved in heart valve morphogenesis
## 9778 negative regulation of cell proliferation involved in kidney development
## 9779 negative regulation of cell proliferation involved in mesonephros development
## 9780 negative regulation of cell-cell adhesion mediated by integrin
## 9781 negative regulation of cellular amino acid metabolic process
## 9782 negative regulation of cellular component movement
## 9783 negative regulation of cellular extravasation
## 9784 negative regulation of cellular metabolic process
## 9785 negative regulation of cellular respiration
## 9786 negative regulation of cellular response to insulin stimulus
## 9787 negative regulation of cellular response to testosterone stimulus
## 9788 negative regulation of cellular response to transforming growth factor beta stimulus
## 9789 negative regulation of centriole-centriole cohesion
## 9790 negative regulation of cerebellar granule cell precursor proliferation
## 9791 negative regulation of cGMP-mediated signaling
## 9792 negative regulation of chaperone-mediated autophagy
## 9793 negative regulation of chemokine (C-C motif) ligand 4 production
## 9794 negative regulation of chemokine (C-X-C motif) ligand 9 production
## 9795 negative regulation of chemokine-mediated signaling pathway
## 9796 negative regulation of cholangiocyte apoptotic process
## 9797 negative regulation of chondrocyte proliferation
## 9798 negative regulation of chronic inflammatory response
## 9799 negative regulation of clathrin-dependent endocytosis
## 9800 negative regulation of coagulation
## 9801 negative regulation of collagen biosynthetic process
## 9802 negative regulation of collagen catabolic process
## 9803 negative regulation of constitutive secretory pathway
## 9804 negative regulation of convergent extension involved in axis elongation
## 9805 negative regulation of cortisol biosynthetic process
## 9806 negative regulation of cortisol secretion
## 9807 negative regulation of cyclin-dependent protein kinase activity
## 9808 negative regulation of cytosolic calcium ion concentration
## 9809 negative regulation of cytotoxic T cell differentiation
## 9810 negative regulation of death-inducing signaling complex assembly
## 9811 negative regulation of dendritic cell antigen processing and presentation
## 9812 negative regulation of dendritic spine morphogenesis
## 9813 negative regulation of dense core granule biogenesis
## 9814 negative regulation of dephosphorylation
## 9815 negative regulation of development of symbiont involved in interaction with host
## 9816 negative regulation of DNA duplex unwinding
## 9817 negative regulation of DNA endoreduplication
## 9818 negative regulation of DNA helicase activity
## 9819 negative regulation of DNA repair
## 9820 negative regulation of DNA-dependent DNA replication
## 9821 negative regulation of DNA-templated transcription, elongation
## 9822 negative regulation of double-stranded telomeric DNA binding
## 9823 negative regulation of eating behavior
## 9824 negative regulation of ectoderm development
## 9825 negative regulation of elastin catabolic process
## 9826 negative regulation of electron transfer activity
## 9827 negative regulation of endocytic recycling
## 9828 negative regulation of endoribonuclease activity
## 9829 negative regulation of entry of bacterium into host cell
## 9830 negative regulation of epidermal cell differentiation
## 9831 negative regulation of epithelial cell differentiation
## 9832 negative regulation of ER-associated ubiquitin-dependent protein catabolic process
## 9833 negative regulation of erythrocyte differentiation
## 9834 negative regulation of establishment of endothelial barrier
## 9835 negative regulation of establishment of T cell polarity
## 9836 negative regulation of estrogen receptor binding
## 9837 negative regulation of exo-alpha-sialidase activity
## 9838 negative regulation of extracellular matrix constituent secretion
## 9839 negative regulation of extracellular matrix disassembly
## 9840 negative regulation of fatty acid beta-oxidation using acyl-CoA dehydrogenase
## 9841 negative regulation of fatty acid metabolic process
## 9842 negative regulation of fatty acid transport
## 9843 negative regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## 9844 negative regulation of ferroptosis
## 9845 negative regulation of fibroblast growth factor receptor signaling pathway involved in neural plate anterior/posterior pattern formation
## 9846 negative regulation of fibroblast growth factor receptor signaling pathway involved in ureteric bud formation
## 9847 negative regulation of forebrain neuron differentiation
## 9848 negative regulation of formation of translation preinitiation complex
## 9849 negative regulation of G protein-coupled receptor internalization
## 9850 negative regulation of gene silencing by miRNA
## 9851 negative regulation of germinal center formation
## 9852 negative regulation of glial cell proliferation
## 9853 negative regulation of glial cell-derived neurotrophic factor receptor signaling pathway involved in ureteric bud formation
## 9854 negative regulation of glomerular filtration
## 9855 negative regulation of glomerular filtration by angiotensin
## 9856 negative regulation of glucocorticoid biosynthetic process
## 9857 negative regulation of glucokinase activity
## 9858 negative regulation of glucose catabolic process to lactate via pyruvate
## 9859 negative regulation of glucosylceramide biosynthetic process
## 9860 negative regulation of glycogen (starch) synthase activity
## 9861 negative regulation of glycoprotein metabolic process
## 9862 negative regulation of Golgi to plasma membrane protein transport
## 9863 negative regulation of growth hormone receptor signaling pathway
## 9864 negative regulation of growth hormone secretion
## 9865 negative regulation of growth rate
## 9866 negative regulation of GTP binding
## 9867 negative regulation of GTP cyclohydrolase I activity
## 9868 negative regulation of guanyl-nucleotide exchange factor activity
## 9869 negative regulation of heart rate
## 9870 negative regulation of helicase activity
## 9871 negative regulation of hematopoietic stem cell differentiation
## 9872 negative regulation of hemoglobin biosynthetic process
## 9873 negative regulation of hepatic stellate cell activation
## 9874 negative regulation of hepatic stellate cell migration
## 9875 negative regulation of hepatocyte proliferation
## 9876 negative regulation of high voltage-gated calcium channel activity
## 9877 negative regulation of histone H3-K14 acetylation
## 9878 negative regulation of histone H3-K36 methylation
## 9879 negative regulation of histone H3-K9 acetylation
## 9880 negative regulation of histone H3-K9 dimethylation
## 9881 negative regulation of histone H3-K9 methylation
## 9882 negative regulation of homotypic cell-cell adhesion
## 9883 negative regulation of hormone secretion
## 9884 negative regulation of humoral immune response mediated by circulating immunoglobulin
## 9885 negative regulation of hydrogen peroxide-induced neuron intrinsic apoptotic signaling pathway
## 9886 negative regulation of hydrolase activity
## 9887 negative regulation of hypoxia-induced intrinsic apoptotic signaling pathway
## 9888 negative regulation of immunoglobulin production
## 9889 negative regulation of inositol phosphate biosynthetic process
## 9890 negative regulation of integrin-mediated signaling pathway
## 9891 negative regulation of interferon-alpha production
## 9892 negative regulation of interleukin-1 production
## 9893 negative regulation of interleukin-1-mediated signaling pathway
## 9894 negative regulation of interleukin-18 production
## 9895 negative regulation of interleukin-6-mediated signaling pathway
## 9896 negative regulation of intracellular calcium activated chloride channel activity
## 9897 negative regulation of intrinsic apoptotic signaling pathway by p53 class mediator
## 9898 negative regulation of intrinsic apoptotic signaling pathway in response to hydrogen peroxide
## 9899 negative regulation of iodide transmembrane transport
## 9900 negative regulation of ion transport
## 9901 negative regulation of isotype switching
## 9902 negative regulation of isotype switching to IgA isotypes
## 9903 negative regulation of isotype switching to IgE isotypes
## 9904 negative regulation of lamellipodium assembly
## 9905 negative regulation of late endosome to lysosome transport
## 9906 negative regulation of leucine import
## 9907 negative regulation of leukocyte activation
## 9908 negative regulation of leukocyte migration
## 9909 negative regulation of leukocyte proliferation
## 9910 negative regulation of lipid binding
## 9911 negative regulation of lipid biosynthetic process
## 9912 negative regulation of lipid kinase activity
## 9913 negative regulation of locomotion
## 9914 negative regulation of long-term synaptic depression
## 9915 negative regulation of low-density lipoprotein particle receptor catabolic process
## 9916 negative regulation of lyase activity
## 9917 negative regulation of lymphangiogenesis
## 9918 negative regulation of macrophage apoptotic process
## 9919 negative regulation of maintenance of mitotic sister chromatid cohesion, centromeric
## 9920 negative regulation of mast cell activation
## 9921 negative regulation of mast cell activation involved in immune response
## 9922 negative regulation of mast cell cytokine production
## 9923 negative regulation of mast cell differentiation
## 9924 negative regulation of mature B cell apoptotic process
## 9925 negative regulation of meiotic nuclear division
## 9926 negative regulation of membrane hyperpolarization
## 9927 negative regulation of membrane tubulation
## 9928 negative regulation of mesenchymal cell apoptotic process
## 9929 negative regulation of mesenchymal cell proliferation involved in lung development
## 9930 negative regulation of mesenchymal stem cell differentiation
## 9931 negative regulation of mesenchymal to epithelial transition involved in metanephros morphogenesis
## 9932 negative regulation of metalloendopeptidase activity involved in amyloid precursor protein catabolic process
## 9933 negative regulation of metanephric nephron tubule epithelial cell differentiation
## 9934 negative regulation of microtubule binding
## 9935 negative regulation of mitochondrial membrane permeability
## 9936 negative regulation of mitochondrial membrane permeability involved in apoptotic process
## 9937 negative regulation of mitochondrial translation
## 9938 negative regulation of mitotic cell cycle, embryonic
## 9939 negative regulation of mitotic recombination
## 9940 negative regulation of mitotic sister chromatid separation
## 9941 negative regulation of monocyte activation
## 9942 negative regulation of mononuclear cell proliferation
## 9943 negative regulation of mRNA 3'-end processing
## 9944 negative regulation of mRNA catabolic process
## 9945 negative regulation of muscle atrophy
## 9946 negative regulation of muscle cell apoptotic process
## 9947 negative regulation of MyD88-dependent toll-like receptor signaling pathway
## 9948 negative regulation of myeloid dendritic cell activation
## 9949 negative regulation of myeloid leukocyte differentiation
## 9950 negative regulation of myoblast fusion
## 9951 negative regulation of natural killer cell activation
## 9952 negative regulation of neural crest formation
## 9953 negative regulation of neuron projection regeneration
## 9954 negative regulation of neuron remodeling
## 9955 negative regulation of neuronal action potential
## 9956 negative regulation of neutrophil chemotaxis
## 9957 negative regulation of neutrophil degranulation
## 9958 negative regulation of neutrophil differentiation
## 9959 negative regulation of nitric-oxide synthase biosynthetic process
## 9960 negative regulation of nitrosative stress-induced intrinsic apoptotic signaling pathway
## 9961 negative regulation of norepinephrine secretion
## 9962 negative regulation of Notch signaling pathway involved in somitogenesis
## 9963 negative regulation of nuclear-transcribed mRNA poly(A) tail shortening
## 9964 negative regulation of oligodendrocyte differentiation
## 9965 negative regulation of oligodendrocyte progenitor proliferation
## 9966 negative regulation of oxidative stress-induced cell death
## 9967 negative regulation of oxidoreductase activity
## 9968 negative regulation of parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## 9969 negative regulation of peptide secretion
## 9970 negative regulation of peptidyl-lysine crotonylation
## 9971 negative regulation of peroxidase activity
## 9972 negative regulation of peroxisome proliferator activated receptor signaling pathway
## 9973 negative regulation of phosphatidylcholine biosynthetic process
## 9974 negative regulation of phospholipid biosynthetic process
## 9975 negative regulation of platelet-derived growth factor receptor-alpha signaling pathway
## 9976 negative regulation of polyamine transmembrane transport
## 9977 negative regulation of postsynaptic density organization
## 9978 negative regulation of potassium ion transmembrane transporter activity
## 9979 negative regulation of primary miRNA processing
## 9980 negative regulation of programmed necrotic cell death
## 9981 negative regulation of prostaglandin biosynthetic process
## 9982 negative regulation of proteasomal protein catabolic process
## 9983 negative regulation of protein autoubiquitination
## 9984 negative regulation of protein deubiquitination
## 9985 negative regulation of protein glutathionylation
## 9986 negative regulation of protein homooligomerization
## 9987 negative regulation of protein import into nucleus
## 9988 negative regulation of protein K63-linked ubiquitination
## 9989 negative regulation of protein kinase activity by protein phosphorylation
## 9990 negative regulation of protein lipidation
## 9991 negative regulation of protein localization to cell leading edge
## 9992 negative regulation of protein localization to chromatin
## 9993 negative regulation of protein localization to cilium
## 9994 negative regulation of protein localization to endosome
## 9995 negative regulation of protein localization to kinetochore
## 9996 negative regulation of protein localization to lysosome
## 9997 negative regulation of protein polymerization
## 9998 negative regulation of protein processing involved in protein targeting to mitochondrion
## 9999 negative regulation of protein transport
## 10000 negative regulation of Rac protein signal transduction
## 10001 negative regulation of receptor catabolic process
## 10002 negative regulation of receptor-mediated endocytosis
## 10003 negative regulation of regulatory T cell differentiation
## 10004 negative regulation of relaxation of smooth muscle
## 10005 negative regulation of release of sequestered calcium ion into cytosol
## 10006 negative regulation of renal sodium excretion
## 10007 negative regulation of renin secretion into blood stream
## 10008 negative regulation of respiratory burst involved in inflammatory response
## 10009 negative regulation of response to DNA damage stimulus
## 10010 negative regulation of Rho-dependent protein serine/threonine kinase activity
## 10011 negative regulation of ribosomal DNA heterochromatin assembly
## 10012 negative regulation of ribosome biogenesis
## 10013 negative regulation of ripoptosome assembly involved in necroptotic process
## 10014 negative regulation of RNA catabolic process
## 10015 negative regulation of RNA interference
## 10016 negative regulation of RNA polymerase II regulatory region sequence-specific DNA binding
## 10017 negative regulation of rRNA processing
## 10018 negative regulation of secretion by cell
## 10019 negative regulation of secretion of lysosomal enzymes
## 10020 negative regulation of sequestering of calcium ion
## 10021 negative regulation of serotonin secretion
## 10022 negative regulation of single-species biofilm formation in or on host organism
## 10023 negative regulation of SMAD protein complex assembly
## 10024 negative regulation of smooth muscle cell-matrix adhesion
## 10025 negative regulation of smooth muscle contraction
## 10026 negative regulation of SNARE complex assembly
## 10027 negative regulation of snRNA transcription by RNA polymerase II
## 10028 negative regulation of sodium ion transmembrane transporter activity
## 10029 negative regulation of sodium:proton antiporter activity
## 10030 negative regulation of store-operated calcium channel activity
## 10031 negative regulation of stress granule assembly
## 10032 negative regulation of striated muscle contraction
## 10033 negative regulation of striated muscle tissue development
## 10034 negative regulation of synaptic transmission, dopaminergic
## 10035 negative regulation of T cell activation via T cell receptor contact with antigen bound to MHC molecule on antigen presenting cell
## 10036 negative regulation of T cell extravasation
## 10037 negative regulation of T cell mediated cytotoxicity
## 10038 negative regulation of T cell mediated immunity
## 10039 negative regulation of T-helper 1 cell differentiation
## 10040 negative regulation of T-helper 17 type immune response
## 10041 negative regulation of T-helper 2 cell differentiation
## 10042 negative regulation of T-helper cell differentiation
## 10043 negative regulation of tau-protein kinase activity
## 10044 negative regulation of telomerase RNA reverse transcriptase activity
## 10045 negative regulation of telomere maintenance in response to DNA damage
## 10046 negative regulation of telomeric DNA binding
## 10047 negative regulation of telomeric RNA transcription from RNA pol II promoter
## 10048 negative regulation of the force of heart contraction by chemical signal
## 10049 negative regulation of thioredoxin peroxidase activity by peptidyl-threonine phosphorylation
## 10050 negative regulation of thrombin-activated receptor signaling pathway
## 10051 negative regulation of Toll signaling pathway
## 10052 negative regulation of toll-like receptor 2 signaling pathway
## 10053 negative regulation of tooth mineralization
## 10054 negative regulation of TRAIL-activated apoptotic signaling pathway
## 10055 negative regulation of transcription from RNA polymerase II promoter involved in heart development
## 10056 negative regulation of transforming growth factor beta production
## 10057 negative regulation of transforming growth factor beta3 production
## 10058 negative regulation of translational initiation by iron
## 10059 negative regulation of transport
## 10060 negative regulation of trophoblast cell migration
## 10061 negative regulation of tumor necrosis factor (ligand) superfamily member 11 production
## 10062 negative regulation of type B pancreatic cell proliferation
## 10063 negative regulation of vascular associated smooth muscle cell differentiation
## 10064 negative regulation of vascular associated smooth muscle contraction
## 10065 negative regulation of vascular endothelial cell proliferation
## 10066 negative regulation of vascular endothelial growth factor production
## 10067 negative regulation of vascular endothelial growth factor signaling pathway
## 10068 negative regulation of vasoconstriction
## 10069 negative regulation of ventricular cardiac muscle cell action potential
## 10070 negative regulation of very-low-density lipoprotein particle clearance
## 10071 negative regulation of vesicle fusion
## 10072 negative regulation of viral life cycle
## 10073 negative regulation of viral process
## 10074 negative regulation of vitamin D biosynthetic process
## 10075 negative regulation of voltage-gated potassium channel activity
## 10076 negative regulation of zinc ion transmembrane import
## 10077 nephric duct formation
## 10078 nephric duct morphogenesis
## 10079 nephrogenic mesenchyme morphogenesis
## 10080 nerve development
## 10081 neural fold elevation formation
## 10082 neural plate axis specification
## 10083 neural plate morphogenesis
## 10084 neurofibrillary tangle
## 10085 neurofilament
## 10086 neuron death in response to oxidative stress
## 10087 neuron fate specification
## 10088 neuron projection branch point
## 10089 neuron projection membrane
## 10090 neuron projection regeneration
## 10091 neuron recognition
## 10092 neuron-glial cell signaling
## 10093 neuronal dense core vesicle exocytosis
## 10094 neuronal dense core vesicle lumen
## 10095 neuropeptide catabolic process
## 10096 neuropeptide hormone activity
## 10097 neuropeptide processing
## 10098 neurotransmitter binding
## 10099 neurotransmitter catabolic process
## 10100 neurotransmitter receptor cycle
## 10101 neurotransmitter receptor localization to postsynaptic specialization membrane
## 10102 neurotransmitter receptor metabolic process
## 10103 neurotransmitter receptor transport postsynaptic membrane to endosome
## 10104 neurotransmitter receptor transport, postsynaptic endosome to lysosome
## 10105 neurotrophin TRKA receptor binding
## 10106 neutral sphingomyelin phosphodiesterase activity
## 10107 neutrophil activation
## 10108 neutrophil homeostasis
## 10109 neutrophil migration
## 10110 NF-kappaB complex
## 10111 nicotinate phosphoribosyltransferase activity
## 10112 nitrate catabolic process
## 10113 nitrate reductase activity
## 10114 nitric oxide catabolic process
## 10115 nitric oxide dioxygenase activity
## 10116 nitric oxide homeostasis
## 10117 nitric oxide metabolic process
## 10118 nitric oxide storage
## 10119 nitric oxide-cGMP-mediated signaling pathway
## 10120 nitrite reductase activity
## 10121 nitrobenzene metabolic process
## 10122 nitrogen compound transport
## 10123 NLRP1 inflammasome complex
## 10124 NLS-dependent protein nuclear import complex
## 10125 NMDA selective glutamate receptor signaling pathway
## 10126 Noc1p-Noc2p complex
## 10127 Noc2p-Noc3p complex
## 10128 non-canonical Wnt signaling pathway via JNK cascade
## 10129 non-recombinational repair
## 10130 non-sequence-specific DNA binding, bending
## 10131 nor-spermidine metabolic process
## 10132 norepinephrine binding
## 10133 norepinephrine biosynthetic process
## 10134 norepinephrine secretion
## 10135 norepinephrine transport
## 10136 norepinephrine uptake
## 10137 norepinephrine-epinephrine-mediated vasodilation involved in regulation of systemic arterial blood pressure
## 10138 norepinephrine:sodium symporter activity
## 10139 NOS2-CD74 complex
## 10140 Notch receptor processing, ligand-dependent
## 10141 notochord morphogenesis
## 10142 notochord regression
## 10143 nuclear body organization
## 10144 nuclear cap binding complex
## 10145 nuclear DNA replication
## 10146 nuclear fragmentation involved in apoptotic nuclear change
## 10147 nuclear inner membrane organization
## 10148 nuclear microtubule
## 10149 nuclear migration along microfilament
## 10150 nuclear MIS12/MIND complex
## 10151 nuclear mitotic cohesin complex
## 10152 nuclear polyadenylation-dependent rRNA catabolic process
## 10153 nuclear polyadenylation-dependent tRNA catabolic process
## 10154 nuclear pore localization
## 10155 nuclear pore transmembrane ring
## 10156 nuclear RNA-directed RNA polymerase complex
## 10157 nuclear ubiquitin ligase complex
## 10158 nuclear-transcribed mRNA catabolic process, exonucleolytic
## 10159 nuclear-transcribed mRNA catabolic process, no-go decay
## 10160 nucleic acid transmembrane transporter activity
## 10161 nucleobase-containing compound transport
## 10162 nucleokinesis involved in cell motility in cerebral cortex radial glia guided migration
## 10163 nucleologenesis
## 10164 nucleolus organization
## 10165 nucleolus organizer region
## 10166 nucleoplasmic reticulum
## 10167 nucleoside phosphate metabolic process
## 10168 nucleoside triphosphate catabolic process
## 10169 nucleosome organization
## 10170 nucleotidase activity
## 10171 nucleotide phosphatase activity, acting on free nucleotides
## 10172 nucleotide-excision repair factor 3 complex
## 10173 nucleotide-excision repair, DNA damage removal
## 10174 nucleotide-sugar biosynthetic process
## 10175 nucleotide-sugar metabolic process
## 10176 nucleotide-sugar transmembrane transporter activity
## 10177 nucleus-vacuole junction
## 10178 O-acetyl-ADP-ribose deacetylase activity
## 10179 O-glycan processing, core 1
## 10180 O-phospho-L-serine:2-oxoglutarate aminotransferase activity
## 10181 octanoyl transferase activity (acting on glycine-cleavage complex H protein)
## 10182 octanoyltransferase activity
## 10183 odontoblast differentiation
## 10184 oleamide hydrolase activity
## 10185 oleic acid binding
## 10186 olfactory behavior
## 10187 olfactory bulb interneuron development
## 10188 olfactory bulb interneuron differentiation
## 10189 olfactory nerve development
## 10190 olfactory receptor activity
## 10191 oligopeptidase activity
## 10192 oligopeptide transmembrane transporter activity
## 10193 oligosaccharide-lipid intermediate biosynthetic process
## 10194 oligosaccharyltransferase I complex
## 10195 oligosaccharyltransferase III complex
## 10196 omegasome
## 10197 oncogene-induced cell senescence
## 10198 oncosis
## 10199 oncostatin-M receptor activity
## 10200 oncostatin-M receptor complex
## 10201 oncostatin-M-mediated signaling pathway
## 10202 oocyte growth
## 10203 opioid peptide activity
## 10204 opioid receptor activity
## 10205 opioid receptor signaling pathway
## 10206 opsin binding
## 10207 opsonin binding
## 10208 opsonin receptor activity
## 10209 optic nerve morphogenesis
## 10210 optic nerve structural organization
## 10211 optic placode formation involved in camera-type eye formation
## 10212 orcinol O-methyltransferase activity
## 10213 organ induction
## 10214 organ or tissue specific immune response
## 10215 organelle fusion
## 10216 organelle transport along microtubule
## 10217 organic acid metabolic process
## 10218 organic cyclic compound binding
## 10219 organic substance metabolic process
## 10220 organic substance transport
## 10221 ornithine biosynthetic process
## 10222 ornithine decarboxylase activator activity
## 10223 ornithine decarboxylase activity
## 10224 ornithine decarboxylase inhibitor activity
## 10225 ornithine metabolic process
## 10226 osmosensory signaling pathway
## 10227 osteoclast fusion
## 10228 otic vesicle development
## 10229 outer acrosomal membrane
## 10230 outer dense plaque of desmosome
## 10231 outer dynein arm
## 10232 outer ear morphogenesis
## 10233 outer membrane
## 10234 outer mitochondrial membrane protein complex
## 10235 ovarian cumulus expansion
## 10236 ovarian follicle rupture
## 10237 ovulation cycle
## 10238 ovulation cycle process
## 10239 ovulation from ovarian follicle
## 10240 oxidation-dependent protein catabolic process
## 10241 oxidative DNA demethylase activity
## 10242 oxidative phosphorylation uncoupler activity
## 10243 oxidative single-stranded DNA demethylation
## 10244 oxidative single-stranded RNA demethylation
## 10245 oxidative stress-induced premature senescence
## 10246 oxidized DNA binding
## 10247 oxidized pyrimidine DNA binding
## 10248 oxidoreductase activity, acting on a sulfur group of donors
## 10249 oxidoreductase activity, acting on a sulfur group of donors, NAD(P) as acceptor
## 10250 oxidoreductase activity, acting on other nitrogenous compounds as donors
## 10251 oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen
## 10252 oxidoreductase activity, acting on peroxide as acceptor
## 10253 oxo-acid-lyase activity
## 10254 oxoglutarate dehydrogenase (succinyl-transferring) activity
## 10255 oxoglutarate:malate antiporter activity
## 10256 oxygen metabolic process
## 10257 P granule organization
## 10258 P-P-bond-hydrolysis-driven protein transmembrane transporter activity
## 10259 P-TEFb complex binding
## 10260 palmitoleoyltransferase activity
## 10261 palmitoyl-CoA 9-desaturase activity
## 10262 palmitoyl-CoA ligase activity
## 10263 palmitoyl-CoA oxidase activity
## 10264 palmitoyltransferase complex
## 10265 PAM complex, Tim23 associated import motor
## 10266 PAN complex
## 10267 pancreas development
## 10268 pancreatic juice secretion
## 10269 pantetheine hydrolase activity
## 10270 pantetheine-phosphate adenylyltransferase activity
## 10271 pantothenate kinase activity
## 10272 parathyroid hormone secretion
## 10273 paraxial mesoderm development
## 10274 paraxial mesoderm morphogenesis
## 10275 parental behavior
## 10276 Parkin-FBXW7-Cul1 ubiquitin ligase complex
## 10277 parkin-mediated stimulation of mitophagy in response to mitochondrial depolarization
## 10278 PAS complex
## 10279 patched binding
## 10280 pattern recognition receptor signaling pathway
## 10281 PCNA complex
## 10282 PCNA-p21 complex
## 10283 PCSK9-AnxA2 complex
## 10284 PCSK9-LDLR complex
## 10285 penetration of zona pellucida
## 10286 penile erection
## 10287 pentameric IgM immunoglobulin complex
## 10288 pentose biosynthetic process
## 10289 pentose transmembrane transport
## 10290 pentose transmembrane transporter activity
## 10291 peptide 2-hydroxyisobutyryltransferase activity
## 10292 peptide amidation
## 10293 peptide antigen assembly with MHC class I protein complex
## 10294 peptide antigen stabilization
## 10295 peptide antigen transport
## 10296 peptide biosynthetic process
## 10297 peptide butyryltransferase activity
## 10298 peptide cross-linking via chondroitin 4-sulfate glycosaminoglycan
## 10299 peptide glutaryltransferase activity
## 10300 peptide hormone secretion
## 10301 peptide modification
## 10302 peptide secretion
## 10303 peptide-glutamate-N-acetyltransferase activity
## 10304 peptide-N4-(N-acetyl-beta-glucosaminyl)asparagine amidase activity
## 10305 peptide-serine-N-acetyltransferase activity
## 10306 peptidoglycan glycosyltransferase activity
## 10307 peptidoglycan immune receptor activity
## 10308 peptidyl-arginine deglycation
## 10309 peptidyl-asparagine 3-dioxygenase activity
## 10310 peptidyl-asparagine hydroxylation
## 10311 peptidyl-aspartic acid autophosphorylation
## 10312 peptidyl-aspartic acid hydroxylation
## 10313 peptidyl-cysteine deglycation
## 10314 peptidyl-cysteine methylation
## 10315 peptidyl-cysteine oxidation
## 10316 peptidyl-cysteine S-nitrosylase activity
## 10317 peptidyl-cysteine S-trans-nitrosylation
## 10318 peptidyl-glutamine methylation
## 10319 peptidyl-histidine dephosphorylation
## 10320 peptidyl-histidine dioxygenase activity
## 10321 peptidyl-histidine hydroxylation
## 10322 peptidyl-histidine phosphorylation
## 10323 peptidyl-lysine acetyltransferase activity
## 10324 peptidyl-lysine butyrylation
## 10325 peptidyl-lysine crotonylation
## 10326 peptidyl-lysine deglycation
## 10327 peptidyl-lysine demalonylation
## 10328 peptidyl-lysine dimethylation
## 10329 peptidyl-lysine glutarylation
## 10330 peptidyl-lysine modification to peptidyl-hypusine
## 10331 peptidyl-lysine propionylation
## 10332 peptidyl-methionine modification
## 10333 peptidyl-proline 4-dioxygenase activity
## 10334 peptidyl-proline dioxygenase activity
## 10335 peptidyl-proline hydroxylation
## 10336 peptidyl-proline hydroxylation to 3-hydroxy-L-proline
## 10337 peptidyl-serine ADP-deribosylation
## 10338 peptidyl-tyrosine sulfation
## 10339 peptidylamidoglycolate lyase activity
## 10340 peptidylglycine monooxygenase activity
## 10341 pericentric heterochromatin assembly
## 10342 pericyte cell differentiation
## 10343 perinucleolar chromocenter
## 10344 peripheral nervous system axon regeneration
## 10345 peripheral nervous system myelin formation
## 10346 peristalsis
## 10347 peroxidase inhibitor activity
## 10348 peroxiredoxin activity
## 10349 peroxisomal membrane transport
## 10350 peroxisome matrix targeting signal-1 binding
## 10351 peroxisome membrane class-1 targeting sequence binding
## 10352 peroxisome transport along microtubule
## 10353 peroxynitrite isomerase activity
## 10354 PET complex
## 10355 Peyer's patch development
## 10356 PH domain binding
## 10357 phagolysosome assembly
## 10358 phagolysosome assembly involved in apoptotic cell clearance
## 10359 phagolysosome membrane
## 10360 phagosome-lysosome docking
## 10361 phagosome-lysosome fusion involved in apoptotic cell clearance
## 10362 pharyngeal arch artery morphogenesis
## 10363 pharynx development
## 10364 phenanthrene-9,10-epoxide hydrolase activity
## 10365 phenotypic switching
## 10366 phenylacetate catabolic process
## 10367 phenylalanine 4-monooxygenase activity
## 10368 phenylalanine-tRNA ligase complex
## 10369 phosphate ion transmembrane transporter activity
## 10370 phosphate:proton symporter activity
## 10371 phosphatidate cytidylyltransferase activity
## 10372 phosphatidyl-N-dimethylethanolamine N-methyltransferase activity
## 10373 phosphatidyl-N-methylethanolamine N-methyltransferase activity
## 10374 phosphatidylethanolamine N-methyltransferase activity
## 10375 phosphatidylglycerol binding
## 10376 phosphatidylglycerol metabolic process
## 10377 phosphatidylglycerophosphatase activity
## 10378 phosphatidylinositol 3-kinase complex, class III
## 10379 phosphatidylinositol 3-kinase complex, class III, type I
## 10380 phosphatidylinositol 3-kinase complex, class III, type II
## 10381 phosphatidylinositol 3-kinase regulatory subunit binding
## 10382 phosphatidylinositol bisphosphate phosphatase activity
## 10383 phosphatidylinositol deacylase activity
## 10384 phosphatidylinositol trisphosphate phosphatase activity
## 10385 phosphatidylinositol-3,4-bisphosphate 4-phosphatase activity
## 10386 phosphatidylinositol-3,4,5-trisphosphate 3-phosphatase activity
## 10387 phosphatidylinositol-3,5-bisphosphate phosphatase activity
## 10388 phosphatidylinositol-4,5-bisphosphate phosphatase activity
## 10389 phosphatidylserine catabolic process
## 10390 phosphatidylserine exposure on apoptotic cell surface
## 10391 phosphatidylserine exposure on blood platelet
## 10392 phosphatidylserine floppase activity
## 10393 phosphatidylserine transfer activity
## 10394 phosphoacetylglucosamine mutase activity
## 10395 phosphoanandamide dephosphorylation
## 10396 phosphocreatine biosynthetic process
## 10397 phosphodiesterase decapping endonuclease activity
## 10398 phosphoenolpyruvate carboxykinase (GTP) activity
## 10399 phosphoenolpyruvate carboxykinase activity
## 10400 phosphofructokinase activity
## 10401 phosphoglucomutase activity
## 10402 phosphoglycolate phosphatase activity
## 10403 phospholipase A2 activator activity
## 10404 phospholipase C-activating G protein-coupled acetylcholine receptor signaling pathway
## 10405 phospholipase C-inhibiting G protein-coupled receptor signaling pathway
## 10406 phosphomannomutase activity
## 10407 phosphomevalonate kinase activity
## 10408 phosphopantothenate--cysteine ligase activity
## 10409 phosphopantothenoylcysteine decarboxylase activity
## 10410 phosphopantothenoylcysteine decarboxylase complex
## 10411 phosphorelay signal transduction system
## 10412 phosphoribosylamine-glycine ligase activity
## 10413 phosphoribosylaminoimidazole carboxylase activity
## 10414 phosphoribosylaminoimidazolesuccinocarboxamide synthase activity
## 10415 phosphoribosylformylglycinamidine cyclo-ligase activity
## 10416 phosphoribosylglycinamide formyltransferase activity
## 10417 phosphorylase kinase activity
## 10418 phosphorylated histone binding
## 10419 phosphorylation-dependent protein binding
## 10420 phosphoserine phosphatase activity
## 10421 phosphoserine residue binding
## 10422 phosphothreonine residue binding
## 10423 photoperiodism
## 10424 photoreceptor cell development
## 10425 photoreceptor distal connecting cilium
## 10426 photoreceptor inner segment membrane
## 10427 phototransduction, visible light
## 10428 phytanate-CoA ligase activity
## 10429 phytanoyl-CoA dioxygenase activity
## 10430 pigment granule aggregation in cell center
## 10431 pigment metabolic process involved in pigmentation
## 10432 pinceau fiber
## 10433 pinocytosis
## 10434 piP-body
## 10435 piRNA binding
## 10436 placental growth factor-activated receptor activity
## 10437 planar cell polarity pathway involved in axon guidance
## 10438 plasma cell differentiation
## 10439 plasma kallikrein-kinin cascade
## 10440 plasma lipoprotein particle oxidation
## 10441 plasma membrane ATP synthesis coupled electron transport
## 10442 plasma membrane bounded cell projection
## 10443 plasma membrane bounded cell projection cytoplasm
## 10444 plasma membrane fusion
## 10445 plasma membrane raft organization
## 10446 plasmacytoid dendritic cell differentiation
## 10447 plasmalogen synthase activity
## 10448 plasminogen activation
## 10449 platelet activating factor biosynthetic process
## 10450 platelet activating factor catabolic process
## 10451 platelet activating factor receptor activity
## 10452 platelet activating factor receptor binding
## 10453 platelet dense granule lumen
## 10454 platelet dense tubular network
## 10455 platelet maturation
## 10456 platelet-activating factor acetyltransferase activity
## 10457 platelet-derived growth factor receptor-beta signaling pathway
## 10458 plus-end kinesin complex
## 10459 podosome assembly
## 10460 polar body extrusion after meiotic divisions
## 10461 polar microtubule
## 10462 polarized epithelial cell differentiation
## 10463 pole plasm
## 10464 pole plasm assembly
## 10465 poly-ADP-D-ribose binding
## 10466 poly-gamma-glutamate metabolic process
## 10467 poly-pyrimidine tract binding
## 10468 polyamine catabolic process
## 10469 polyamine deacetylation
## 10470 polyamine homeostasis
## 10471 polyamine oxidase activity
## 10472 polyamine transmembrane transport
## 10473 polycystin complex
## 10474 polynucleotide 3' dephosphorylation
## 10475 polynucleotide 3'-phosphatase activity
## 10476 polynucleotide 5' dephosphorylation
## 10477 polynucleotide 5'-phosphatase activity
## 10478 polyol transmembrane transporter activity
## 10479 polyol transport
## 10480 polyprenol catabolic process
## 10481 polyprenol reductase activity
## 10482 polyribonucleotide nucleotidyltransferase activity
## 10483 polysaccharide biosynthetic process
## 10484 polysaccharide catabolic process
## 10485 polysaccharide digestion
## 10486 polysaccharide metabolic process
## 10487 polysaccharide transport
## 10488 pore formation in membrane of other organism
## 10489 porphyrin-containing compound metabolic process
## 10490 positive regulation blood vessel branching
## 10491 positive regulation by host of symbiont catalytic activity
## 10492 positive regulation by symbiont of host autophagy
## 10493 positive regulation of 1-phosphatidylinositol 4-kinase activity
## 10494 positive regulation of 1-phosphatidylinositol-4-phosphate 5-kinase activity
## 10495 positive regulation of 3'-UTR-mediated mRNA stabilization
## 10496 positive regulation of acetylcholine secretion, neurotransmission
## 10497 positive regulation of acrosomal vesicle exocytosis
## 10498 positive regulation of activated T cell autonomous cell death
## 10499 positive regulation of activation of Janus kinase activity
## 10500 positive regulation of acute inflammatory response to antigenic stimulus
## 10501 positive regulation of acute inflammatory response to non-antigenic stimulus
## 10502 positive regulation of adaptive immune memory response
## 10503 positive regulation of adenosine receptor signaling pathway
## 10504 positive regulation of aggrephagy
## 10505 positive regulation of aldosterone biosynthetic process
## 10506 positive regulation of aldosterone secretion
## 10507 positive regulation of alkaline phosphatase activity
## 10508 positive regulation of alpha-beta T cell activation
## 10509 positive regulation of alpha-beta T cell differentiation
## 10510 positive regulation of amyloid fibril formation
## 10511 positive regulation of amyloid precursor protein biosynthetic process
## 10512 positive regulation of anterograde dense core granule transport
## 10513 positive regulation of antibacterial peptide biosynthetic process
## 10514 positive regulation of antifungal innate immune response
## 10515 positive regulation of antigen processing and presentation
## 10516 positive regulation of antigen processing and presentation of peptide antigen via MHC class II
## 10517 positive regulation of antral ovarian follicle growth
## 10518 positive regulation of aortic smooth muscle cell differentiation
## 10519 positive regulation of apoptotic cell clearance
## 10520 positive regulation of apoptotic process by virus
## 10521 positive regulation of apoptotic process involved in mammary gland involution
## 10522 positive regulation of apoptotic process involved in morphogenesis
## 10523 positive regulation of arachidonic acid secretion
## 10524 positive regulation of aspartate secretion
## 10525 positive regulation of atrial cardiac muscle cell action potential
## 10526 positive regulation of autophagy in response to ER overload
## 10527 positive regulation of axon extension involved in regeneration
## 10528 positive regulation of beta-galactosidase activity
## 10529 positive regulation of biosynthetic process of antibacterial peptides active against Gram-positive bacteria
## 10530 positive regulation of blood microparticle formation
## 10531 positive regulation of blood pressure
## 10532 positive regulation of blood-brain barrier permeability
## 10533 positive regulation of bone development
## 10534 positive regulation of bone mineralization involved in bone maturation
## 10535 positive regulation of branching morphogenesis of a nerve
## 10536 positive regulation of calcidiol 1-monooxygenase activity
## 10537 positive regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## 10538 positive regulation of calcium-dependent cell-cell adhesion
## 10539 positive regulation of cap-dependent translational initiation
## 10540 positive regulation of cardiac epithelial to mesenchymal transition
## 10541 positive regulation of cardiac muscle contraction
## 10542 positive regulation of cardiac muscle myoblast proliferation
## 10543 positive regulation of cardiac muscle tissue development
## 10544 positive regulation of cardiac vascular smooth muscle cell differentiation
## 10545 positive regulation of cardioblast differentiation
## 10546 positive regulation of cardiolipin metabolic process
## 10547 positive regulation of caveolin-mediated endocytosis
## 10548 positive regulation of CD4-positive, alpha-beta T cell costimulation
## 10549 positive regulation of CD4-positive, CD25-positive, alpha-beta regulatory T cell differentiation involved in immune response
## 10550 positive regulation of CD8-positive, alpha-beta T cell proliferation
## 10551 positive regulation of CDP-diacylglycerol-serine O-phosphatidyltransferase activity
## 10552 positive regulation of cell adhesion molecule production
## 10553 positive regulation of cell aging
## 10554 positive regulation of cell maturation
## 10555 positive regulation of cell migration by vascular endothelial growth factor signaling pathway
## 10556 positive regulation of cell proliferation by VEGF-activated platelet derived growth factor receptor signaling pathway
## 10557 positive regulation of cell proliferation involved in heart morphogenesis
## 10558 positive regulation of cell proliferation involved in heart valve morphogenesis
## 10559 positive regulation of cell size
## 10560 positive regulation of cell volume
## 10561 positive regulation of cell-cell adhesion mediated by cadherin
## 10562 positive regulation of cellular amino acid metabolic process
## 10563 positive regulation of cellular component organization
## 10564 positive regulation of cellular glucuronidation
## 10565 positive regulation of cellular response to macrophage colony-stimulating factor stimulus
## 10566 positive regulation of centriole replication
## 10567 positive regulation of cerebellar granule cell precursor proliferation
## 10568 positive regulation of chaperone-mediated protein complex assembly
## 10569 positive regulation of chaperone-mediated protein folding
## 10570 positive regulation of chemokine (C-C motif) ligand 5 production
## 10571 positive regulation of chemokine (C-X-C motif) ligand 1 production
## 10572 positive regulation of chemokine-mediated signaling pathway
## 10573 positive regulation of cholesterol esterification
## 10574 positive regulation of cholesterol import
## 10575 positive regulation of cholesterol metabolic process
## 10576 positive regulation of chromatin silencing
## 10577 positive regulation of chromatin silencing at telomere
## 10578 positive regulation of chromosome organization
## 10579 positive regulation of circadian sleep/wake cycle, sleep
## 10580 positive regulation of clathrin coat assembly
## 10581 positive regulation of CoA-transferase activity
## 10582 positive regulation of collagen catabolic process
## 10583 positive regulation of collateral sprouting of injured axon
## 10584 positive regulation of complement activation
## 10585 positive regulation of connective tissue growth factor production
## 10586 positive regulation of corticotropin secretion
## 10587 positive regulation of cyclase activity
## 10588 positive regulation of cysteine-type endopeptidase activity involved in execution phase of apoptosis
## 10589 positive regulation of cytoplasmic translational initiation
## 10590 positive regulation of cytotoxic T cell differentiation
## 10591 positive regulation of defense response to bacterium
## 10592 positive regulation of delayed rectifier potassium channel activity
## 10593 positive regulation of dendritic spine maintenance
## 10594 positive regulation of deoxyribonuclease activity
## 10595 positive regulation of determination of dorsal identity
## 10596 positive regulation of developmental growth
## 10597 positive regulation of developmental pigmentation
## 10598 positive regulation of DNA catabolic process
## 10599 positive regulation of DNA damage checkpoint
## 10600 positive regulation of DNA helicase activity
## 10601 positive regulation of DNA ligase activity
## 10602 positive regulation of DNA methylation
## 10603 positive regulation of DNA N-glycosylase activity
## 10604 positive regulation of DNA recombination
## 10605 positive regulation of DNA-dependent DNA replication
## 10606 positive regulation of DNA-dependent DNA replication initiation
## 10607 positive regulation of DNA-templated transcription, termination
## 10608 positive regulation of dopamine biosynthetic process
## 10609 positive regulation of eating behavior
## 10610 positive regulation of endocytic recycling
## 10611 positive regulation of endoplasmic reticulum calcium ion concentration
## 10612 positive regulation of endoplasmic reticulum tubular network organization
## 10613 positive regulation of endoribonuclease activity
## 10614 positive regulation of endosome organization
## 10615 positive regulation of endosome to plasma membrane protein transport
## 10616 positive regulation of endothelial cell chemotaxis to fibroblast growth factor
## 10617 positive regulation of eosinophil degranulation
## 10618 positive regulation of epidermal cell differentiation
## 10619 positive regulation of epidermis development
## 10620 positive regulation of epithelial cell differentiation
## 10621 positive regulation of erythrocyte aggregation
## 10622 positive regulation of establishment of endothelial barrier
## 10623 positive regulation of exoribonuclease activity
## 10624 positive regulation of Fc receptor mediated stimulatory signaling pathway
## 10625 positive regulation of Fc-gamma receptor signaling pathway involved in phagocytosis
## 10626 positive regulation of female receptivity
## 10627 positive regulation of ferrous iron binding
## 10628 positive regulation of fertilization
## 10629 positive regulation of fever generation
## 10630 positive regulation of fibrinolysis
## 10631 positive regulation of fibronectin-dependent thymocyte migration
## 10632 positive regulation of follicle-stimulating hormone secretion
## 10633 positive regulation of fractalkine production
## 10634 positive regulation of G0 to G1 transition
## 10635 positive regulation of G1 to G0 transition
## 10636 positive regulation of G2/MI transition of meiotic cell cycle
## 10637 positive regulation of gamma-delta T cell activation
## 10638 positive regulation of gamma-delta T cell activation involved in immune response
## 10639 positive regulation of gastro-intestinal system smooth muscle contraction
## 10640 positive regulation of gastrulation
## 10641 positive regulation of glial cell apoptotic process
## 10642 positive regulation of glial cell migration
## 10643 positive regulation of gliogenesis
## 10644 positive regulation of glomerular mesangial cell proliferation
## 10645 positive regulation of glutamate receptor signaling pathway
## 10646 positive regulation of glutamate uptake involved in transmission of nerve impulse
## 10647 positive regulation of glutathione biosynthetic process
## 10648 positive regulation of glycogen catabolic process
## 10649 positive regulation of glycoprotein biosynthetic process involved in immunological synapse formation
## 10650 positive regulation of granulocyte colony-stimulating factor production
## 10651 positive regulation of granulosa cell apoptotic process
## 10652 positive regulation of granulosa cell proliferation
## 10653 positive regulation of growth rate
## 10654 positive regulation of heart contraction
## 10655 positive regulation of heat generation
## 10656 positive regulation of hematopoietic progenitor cell differentiation
## 10657 positive regulation of heparan sulfate proteoglycan biosynthetic process
## 10658 positive regulation of hepatic stellate cell proliferation
## 10659 positive regulation of heterochromatin assembly
## 10660 positive regulation of hexokinase activity
## 10661 positive regulation of high-density lipoprotein particle clearance
## 10662 positive regulation of hippocampal neuron apoptotic process
## 10663 positive regulation of histone deubiquitination
## 10664 positive regulation of histone H3-K14 acetylation
## 10665 positive regulation of histone H3-K36 methylation
## 10666 positive regulation of histone H3-K36 trimethylation
## 10667 positive regulation of histone H3-K4 trimethylation
## 10668 positive regulation of histone H3-K9 trimethylation
## 10669 positive regulation of histone H4-K16 acetylation
## 10670 positive regulation of histone H4-K20 methylation
## 10671 positive regulation of homocysteine metabolic process
## 10672 positive regulation of homotypic cell-cell adhesion
## 10673 positive regulation of hyaluronan biosynthetic process
## 10674 positive regulation of hydrogen peroxide catabolic process
## 10675 positive regulation of hydrogen sulfide biosynthetic process
## 10676 positive regulation of hydrolase activity
## 10677 positive regulation of hypersensitivity
## 10678 positive regulation of immature T cell proliferation in thymus
## 10679 positive regulation of immunological synapse formation
## 10680 positive regulation of inflammatory response to antigenic stimulus
## 10681 positive regulation of inhibitory postsynaptic potential
## 10682 positive regulation of inhibitory synapse assembly
## 10683 positive regulation of inositol 1,4,5-trisphosphate-sensitive calcium-release channel activity
## 10684 positive regulation of inositol trisphosphate biosynthetic process
## 10685 positive regulation of inositol-polyphosphate 5-phosphatase activity
## 10686 positive regulation of integrin activation by cell surface receptor linked signal transduction
## 10687 positive regulation of interleukin-1 production
## 10688 positive regulation of interleukin-1-mediated signaling pathway
## 10689 positive regulation of interleukin-15 production
## 10690 positive regulation of interleukin-33 production
## 10691 positive regulation of interleukin-4-dependent isotype switching to IgE isotypes
## 10692 positive regulation of interleukin-6-mediated signaling pathway
## 10693 positive regulation of intracellular cholesterol transport
## 10694 positive regulation of intracellular mRNA localization
## 10695 positive regulation of intracellular signal transduction
## 10696 positive regulation of intracellular transport of viral material
## 10697 positive regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## 10698 positive regulation of intrinsic apoptotic signaling pathway in response to osmotic stress
## 10699 positive regulation of ion transport
## 10700 positive regulation of isotype switching to IgE isotypes
## 10701 positive regulation of keratinocyte proliferation
## 10702 positive regulation of L-dopa biosynthetic process
## 10703 positive regulation of L-dopa decarboxylase activity
## 10704 positive regulation of L-glutamate import across plasma membrane
## 10705 positive regulation of lactation
## 10706 positive regulation of late endosome to lysosome transport
## 10707 positive regulation of lateral attachment of mitotic spindle microtubules to kinetochore
## 10708 positive regulation of leukocyte adhesion to arterial endothelial cell
## 10709 positive regulation of leukotriene production involved in inflammatory response
## 10710 positive regulation of ligase activity
## 10711 positive regulation of lipid transport
## 10712 positive regulation of lipoprotein metabolic process
## 10713 positive regulation of long-term neuronal synaptic plasticity
## 10714 positive regulation of long-term synaptic depression
## 10715 positive regulation of low-density lipoprotein particle clearance
## 10716 positive regulation of low-density lipoprotein particle receptor binding
## 10717 positive regulation of luteinizing hormone secretion
## 10718 positive regulation of lymphocyte differentiation
## 10719 positive regulation of lymphocyte proliferation
## 10720 positive regulation of lysosomal membrane permeability
## 10721 positive regulation of macromolecule biosynthetic process
## 10722 positive regulation of macrophage apoptotic process
## 10723 positive regulation of macrophage colony-stimulating factor signaling pathway
## 10724 positive regulation of macrophage migration
## 10725 positive regulation of macrophage migration inhibitory factor signaling pathway
## 10726 positive regulation of macrophage tolerance induction
## 10727 positive regulation of male germ cell proliferation
## 10728 positive regulation of male gonad development
## 10729 positive regulation of mast cell activation
## 10730 positive regulation of mast cell activation involved in immune response
## 10731 positive regulation of maternal process involved in parturition
## 10732 positive regulation of meiotic nuclear division
## 10733 positive regulation of melanocyte differentiation
## 10734 positive regulation of membrane potential
## 10735 positive regulation of membrane tubulation
## 10736 positive regulation of mesenchymal stem cell differentiation
## 10737 positive regulation of mesenchymal stem cell migration
## 10738 positive regulation of metalloendopeptidase activity
## 10739 positive regulation of metallopeptidase activity
## 10740 positive regulation of metanephric cap mesenchymal cell proliferation
## 10741 positive regulation of microglia differentiation
## 10742 positive regulation of microtubule depolymerization
## 10743 positive regulation of mini excitatory postsynaptic potential
## 10744 positive regulation of miRNA catabolic process
## 10745 positive regulation of miRNA metabolic process
## 10746 positive regulation of mismatch repair
## 10747 positive regulation of mitochondrial electron transport, NADH to ubiquinone
## 10748 positive regulation of mitochondrial RNA catabolic process
## 10749 positive regulation of mitophagy
## 10750 positive regulation of mitotic cohesin loading
## 10751 positive regulation of mitotic cytokinetic process
## 10752 positive regulation of mitotic recombination
## 10753 positive regulation of mitotic spindle elongation
## 10754 positive regulation of mononuclear cell proliferation
## 10755 positive regulation of monooxygenase activity
## 10756 positive regulation of mRNA 3'-UTR binding
## 10757 positive regulation of mRNA cleavage
## 10758 positive regulation of muscle contraction
## 10759 positive regulation of muscle hyperplasia
## 10760 positive regulation of myeloid dendritic cell activation
## 10761 positive regulation of myeloid dendritic cell chemotaxis
## 10762 positive regulation of myosin-light-chain-phosphatase activity
## 10763 positive regulation of NAD+ ADP-ribosyltransferase activity
## 10764 positive regulation of natural killer cell chemotaxis
## 10765 positive regulation of natural killer cell mediated cytotoxicity directed against tumor cell target
## 10766 positive regulation of natural killer cell mediated immune response to tumor cell
## 10767 positive regulation of natural killer cell proliferation
## 10768 positive regulation of necroptotic process
## 10769 positive regulation of nephron tubule epithelial cell differentiation
## 10770 positive regulation of neuroinflammatory response
## 10771 positive regulation of neuromuscular junction development
## 10772 positive regulation of neurotrophin TRK receptor signaling pathway
## 10773 positive regulation of neutrophil apoptotic process
## 10774 positive regulation of neutrophil differentiation
## 10775 positive regulation of nitric oxide mediated signal transduction
## 10776 positive regulation of nitrogen compound metabolic process
## 10777 positive regulation of NK T cell activation
## 10778 positive regulation of nodal signaling pathway involved in determination of lateral mesoderm left/right asymmetry
## 10779 positive regulation of non-canonical Wnt signaling pathway via JNK cascade
## 10780 positive regulation of norepinephrine secretion
## 10781 positive regulation of norepinephrine uptake
## 10782 positive regulation of nuclease activity
## 10783 positive regulation of odontoblast differentiation
## 10784 positive regulation of odontogenesis
## 10785 positive regulation of odontogenesis of dentin-containing tooth
## 10786 positive regulation of oocyte development
## 10787 positive regulation of organelle assembly
## 10788 positive regulation of ovarian follicle development
## 10789 positive regulation of oxidative phosphorylation
## 10790 positive regulation of oxidative phosphorylation uncoupler activity
## 10791 positive regulation of oxidative stress-induced neuron death
## 10792 positive regulation of oxygen metabolic process
## 10793 positive regulation of pancreatic juice secretion
## 10794 positive regulation of pattern recognition receptor signaling pathway
## 10795 positive regulation of peptidyl-serine phosphorylation of STAT protein
## 10796 positive regulation of peripheral T cell tolerance induction
## 10797 positive regulation of peroxisome proliferator activated receptor signaling pathway
## 10798 positive regulation of phosphatidylcholine biosynthetic process
## 10799 positive regulation of phospholipase C-activating G protein-coupled receptor signaling pathway
## 10800 positive regulation of phospholipid biosynthetic process
## 10801 positive regulation of phospholipid translocation
## 10802 positive regulation of phosphorylation of RNA polymerase II C-terminal domain serine 2 residues
## 10803 positive regulation of plasma cell differentiation
## 10804 positive regulation of platelet activation
## 10805 positive regulation of platelet-derived growth factor receptor-beta signaling pathway
## 10806 positive regulation of polyamine transmembrane transport
## 10807 positive regulation of polysome binding
## 10808 positive regulation of potassium ion import across plasma membrane
## 10809 positive regulation of potassium ion transmembrane transporter activity
## 10810 positive regulation of presynaptic cytosolic calcium concentration
## 10811 positive regulation of pro-B cell differentiation
## 10812 positive regulation of prostaglandin biosynthetic process
## 10813 positive regulation of prostaglandin secretion
## 10814 positive regulation of prostaglandin-endoperoxide synthase activity
## 10815 positive regulation of proteasomal ubiquitin-dependent protein catabolic process involved in cellular response to hypoxia
## 10816 positive regulation of protein catabolic process in the vacuole
## 10817 positive regulation of protein exit from endoplasmic reticulum
## 10818 positive regulation of protein glycosylation
## 10819 positive regulation of protein glycosylation in Golgi
## 10820 positive regulation of protein homooligomerization
## 10821 positive regulation of protein import
## 10822 positive regulation of protein K63-linked deubiquitination
## 10823 positive regulation of protein kinase D signaling
## 10824 positive regulation of protein lipidation
## 10825 positive regulation of protein localization to actin cortical patch
## 10826 positive regulation of protein localization to cell-cell junction
## 10827 positive regulation of protein localization to ciliary membrane
## 10828 positive regulation of protein localization to endoplasmic reticulum
## 10829 positive regulation of protein localization to lysosome
## 10830 positive regulation of protein localization to phagocytic vesicle
## 10831 positive regulation of protein localization to presynapse
## 10832 positive regulation of protein localization to spindle pole body
## 10833 positive regulation of protein O-linked glycosylation
## 10834 positive regulation of protein oxidation
## 10835 positive regulation of protein polymerization
## 10836 positive regulation of protein-glutamine gamma-glutamyltransferase activity
## 10837 positive regulation of proteoglycan biosynthetic process
## 10838 positive regulation of proteolysis involved in cellular protein catabolic process
## 10839 positive regulation of pyrroline-5-carboxylate reductase activity
## 10840 positive regulation of pyruvate dehydrogenase activity
## 10841 positive regulation of receptor localization to synapse
## 10842 positive regulation of receptor signaling pathway via STAT
## 10843 positive regulation of receptor-mediated endocytosis involved in cholesterol transport
## 10844 positive regulation of reciprocal meiotic recombination
## 10845 positive regulation of regulation of vascular associated smooth muscle cell membrane depolarization
## 10846 positive regulation of renal water transport
## 10847 positive regulation of respiratory burst involved in inflammatory response
## 10848 positive regulation of response to oxidative stress
## 10849 positive regulation of retinal ganglion cell axon guidance
## 10850 positive regulation of retinoic acid biosynthetic process
## 10851 positive regulation of retinoic acid receptor signaling pathway
## 10852 positive regulation of reverse cholesterol transport
## 10853 positive regulation of RNA binding
## 10854 positive regulation of Schwann cell differentiation
## 10855 positive regulation of Schwann cell migration
## 10856 positive regulation of secretion of lysosomal enzymes
## 10857 positive regulation of sequestering of calcium ion
## 10858 positive regulation of serine C-palmitoyltransferase activity
## 10859 positive regulation of serotonin secretion
## 10860 positive regulation of single strand break repair
## 10861 positive regulation of single stranded viral RNA replication via double stranded DNA intermediate
## 10862 positive regulation of single-stranded telomeric DNA binding
## 10863 positive regulation of skeletal muscle cell differentiation
## 10864 positive regulation of skeletal muscle cell proliferation
## 10865 positive regulation of skeletal muscle contraction by regulation of release of sequestered calcium ion
## 10866 positive regulation of skeletal muscle hypertrophy
## 10867 positive regulation of skeletal muscle tissue growth
## 10868 positive regulation of skeletal muscle tissue regeneration
## 10869 positive regulation of smooth muscle cell chemotaxis
## 10870 positive regulation of smooth muscle cell-matrix adhesion
## 10871 positive regulation of sodium ion transmembrane transporter activity
## 10872 positive regulation of sodium-dependent phosphate transport
## 10873 positive regulation of sodium:proton antiporter activity
## 10874 positive regulation of spermidine biosynthetic process
## 10875 positive regulation of steroid hormone biosynthetic process
## 10876 positive regulation of steroid metabolic process
## 10877 positive regulation of strand invasion
## 10878 positive regulation of stress granule assembly
## 10879 positive regulation of striated muscle contraction
## 10880 positive regulation of substrate-dependent cell migration, cell attachment to substrate
## 10881 positive regulation of subtelomeric heterochromatin assembly
## 10882 positive regulation of succinate dehydrogenase activity
## 10883 positive regulation of supramolecular fiber organization
## 10884 positive regulation of synapse structural plasticity
## 10885 positive regulation of synaptic transmission, dopaminergic
## 10886 positive regulation of synaptic vesicle exocytosis
## 10887 positive regulation of synaptic vesicle priming
## 10888 positive regulation of synaptic vesicle recycling
## 10889 positive regulation of synoviocyte proliferation
## 10890 positive regulation of T cell apoptotic process
## 10891 positive regulation of T cell mediated cytotoxicity directed against tumor cell target
## 10892 positive regulation of T-helper 1 cell differentiation
## 10893 positive regulation of T-helper 17 cell differentiation
## 10894 positive regulation of T-helper 17 cell lineage commitment
## 10895 positive regulation of T-helper 17 type immune response
## 10896 positive regulation of T-helper cell differentiation
## 10897 positive regulation of telomeric DNA binding
## 10898 positive regulation of telomeric loop disassembly
## 10899 positive regulation of telomeric RNA transcription from RNA pol II promoter
## 10900 positive regulation of termination of RNA polymerase II transcription, poly(A)-coupled
## 10901 positive regulation of thyroid hormone generation
## 10902 positive regulation of timing of anagen
## 10903 positive regulation of tissue remodeling
## 10904 positive regulation of tolerance induction
## 10905 positive regulation of toll-like receptor signaling pathway
## 10906 positive regulation of TRAIL production
## 10907 positive regulation of transcription by glucose
## 10908 positive regulation of transcription by transcription factor localization
## 10909 positive regulation of transcription from RNA polymerase II promoter by galactose
## 10910 positive regulation of transcription from RNA polymerase II promoter by glucose
## 10911 positive regulation of transcription from RNA polymerase II promoter in response to heat stress
## 10912 positive regulation of transcription from RNA polymerase II promoter in response to oxidative stress
## 10913 positive regulation of transcription from RNA polymerase II promoter involved in heart development
## 10914 positive regulation of transcription from RNA polymerase II promoter involved in myocardial precursor cell differentiation
## 10915 positive regulation of transcription involved in exit from mitosis
## 10916 positive regulation of transcription involved in G1/S transition of mitotic cell cycle
## 10917 positive regulation of transferrin receptor binding
## 10918 positive regulation of transforming growth factor beta1 production
## 10919 positive regulation of transforming growth factor beta2 production
## 10920 positive regulation of transforming growth factor beta3 production
## 10921 positive regulation of translation in response to stress
## 10922 positive regulation of translation, ncRNA-mediated
## 10923 positive regulation of translational initiation by iron
## 10924 positive regulation of translational initiation in response to starvation
## 10925 positive regulation of triglyceride transport
## 10926 positive regulation of tumor necrosis factor (ligand) superfamily member 11 production
## 10927 positive regulation of type B pancreatic cell apoptotic process
## 10928 positive regulation of type B pancreatic cell development
## 10929 positive regulation of type III interferon production
## 10930 positive regulation of type IV hypersensitivity
## 10931 positive regulation of tyrosine 3-monooxygenase activity
## 10932 positive regulation of ubiquitin-dependent endocytosis
## 10933 positive regulation of ubiquitin-specific protease activity
## 10934 positive regulation of unsaturated fatty acid biosynthetic process
## 10935 positive regulation of ureteric bud formation
## 10936 positive regulation of uterine smooth muscle contraction
## 10937 positive regulation of vacuole organization
## 10938 positive regulation of vascular associated smooth muscle cell differentiation
## 10939 positive regulation of vesicle transport along microtubule
## 10940 positive regulation of viral budding via host ESCRT complex
## 10941 positive regulation of viral process
## 10942 positive regulation of viral translation
## 10943 positive regulation of vitamin D biosynthetic process
## 10944 positive regulation of voltage-gated chloride channel activity
## 10945 positive regulation of voltage-gated potassium channel activity
## 10946 positive regulation of voltage-gated sodium channel activity
## 10947 positive regulation of Wnt protein secretion
## 10948 positive T cell selection
## 10949 post-embryonic camera-type eye morphogenesis
## 10950 post-embryonic cardiac muscle cell growth involved in heart morphogenesis
## 10951 post-embryonic forelimb morphogenesis
## 10952 post-embryonic hemopoiesis
## 10953 post-spliceosomal complex
## 10954 posterior compartment specification
## 10955 postsynaptic actin cytoskeleton
## 10956 postsynaptic early endosome
## 10957 postsynaptic endocytic zone membrane
## 10958 postsynaptic endosome
## 10959 postsynaptic membrane assembly
## 10960 postsynaptic neurotransmitter receptor cycle
## 10961 postsynaptic specialization
## 10962 postsynaptic specialization assembly
## 10963 postsynaptic specialization of symmetric synapse
## 10964 posttranscriptional tethering of RNA polymerase II gene DNA at nuclear periphery
## 10965 posttranslational protein targeting to membrane, translocation
## 10966 potassium channel activator activity
## 10967 potassium ion binding
## 10968 potassium transmembrane transporter activity, phosphorylative mechanism
## 10969 PR-DUB complex
## 10970 pre-B cell allelic exclusion
## 10971 pre-B cell differentiation
## 10972 pre-mRNA 5'-splice site binding
## 10973 pre-mRNA catabolic process
## 10974 pre-mRNA intronic pyrimidine-rich binding
## 10975 presynaptic dense core vesicle exocytosis
## 10976 presynaptic endosome
## 10977 presynaptic membrane assembly
## 10978 primary dendrite
## 10979 primary lung bud formation
## 10980 primary miRNA methylation
## 10981 primary palate development
## 10982 primary ureteric bud growth
## 10983 pristanate-CoA ligase activity
## 10984 procollagen glucosyltransferase activity
## 10985 procollagen-lysine 5-dioxygenase activity
## 10986 procollagen-proline 3-dioxygenase activity
## 10987 procollagen-proline 4-dioxygenase activity
## 10988 proline dipeptidase activity
## 10989 proline transmembrane transport
## 10990 proline transport
## 10991 proline-tRNA ligase activity
## 10992 prolyl-tRNA aminoacylation
## 10993 pronuclear fusion
## 10994 propanoyl-CoA C-acyltransferase activity
## 10995 propionate biosynthetic process
## 10996 propionate catabolic process
## 10997 propionate-CoA ligase activity
## 10998 propionyl-CoA C2-trimethyltridecanoyltransferase activity
## 10999 prostacyclin receptor activity
## 11000 prostaglandin catabolic process
## 11001 prostaglandin H2 endoperoxidase reductase activity
## 11002 prostaglandin secretion
## 11003 prostaglandin transmembrane transporter activity
## 11004 prostaglandin-E synthase activity
## 11005 prostaglandin-endoperoxide synthase activity
## 11006 prostaglandin-F synthase activity
## 11007 prostanoid metabolic process
## 11008 prostate epithelial cord arborization involved in prostate glandular acinus morphogenesis
## 11009 prostate gland epithelium morphogenesis
## 11010 prostate gland stromal morphogenesis
## 11011 proteasome activator complex
## 11012 proteasome core complex, alpha-subunit complex
## 11013 proteasome regulatory particle binding
## 11014 protein acylation
## 11015 protein adenylylation
## 11016 protein adenylyltransferase activity
## 11017 protein alpha-1,2-demannosylation
## 11018 protein amidation
## 11019 protein arginylation
## 11020 protein C-terminal carboxyl O-methyltransferase activity
## 11021 protein C-terminal leucine carboxyl O-methyltransferase activity
## 11022 protein carboxyl O-methyltransferase activity
## 11023 protein catabolic process in the vacuole
## 11024 protein deglycase activity
## 11025 protein deglycation
## 11026 protein deglycation, glyoxal removal
## 11027 protein deglycation, methylglyoxal removal
## 11028 protein delipidation
## 11029 protein demalonylation
## 11030 protein desuccinylation
## 11031 protein geranylgeranylation
## 11032 protein glycosylation in Golgi
## 11033 protein histidine kinase activity
## 11034 protein import into mitochondrial intermembrane space
## 11035 protein import into peroxisome matrix, substrate release
## 11036 protein initiator methionine removal
## 11037 protein K33-linked ubiquitination
## 11038 protein K6-linked deubiquitination
## 11039 protein kinase 5 complex
## 11040 protein kinase CK2 complex
## 11041 protein kinase complex
## 11042 protein lipidation involved in autophagosome assembly
## 11043 protein localization to actin cytoskeleton
## 11044 protein localization to Cajal body
## 11045 protein localization to cell cortex
## 11046 protein localization to cell junction
## 11047 protein localization to cell leading edge
## 11048 protein localization to chromosome
## 11049 protein localization to ciliary transition zone
## 11050 protein localization to cytoskeleton
## 11051 protein localization to endoplasmic reticulum tubular network
## 11052 protein localization to kinetochore involved in kinetochore assembly
## 11053 protein localization to lipid droplet
## 11054 protein localization to M-band
## 11055 protein localization to meiotic spindle midzone
## 11056 protein localization to membrane raft
## 11057 protein localization to microtubule plus-end
## 11058 protein localization to myelin sheath abaxonal region
## 11059 protein localization to non-motile cilium
## 11060 protein localization to nuclear inner membrane
## 11061 protein localization to nuclear pore
## 11062 protein localization to nucleoplasm
## 11063 protein localization to paranode region of axon
## 11064 protein localization to pericentriolar material
## 11065 protein localization to photoreceptor connecting cilium
## 11066 protein localization to plasma membrane raft
## 11067 protein localization to postsynaptic membrane
## 11068 protein localization to T-tubule
## 11069 protein localization to vacuole
## 11070 protein maturation by [2Fe-2S] cluster transfer
## 11071 protein maturation by copper ion transfer
## 11072 protein maturation by protein folding
## 11073 protein modification by small protein removal
## 11074 protein N-acetylglucosaminyltransferase complex
## 11075 protein N-linked glycosylation via arginine
## 11076 protein O-GlcNAcylation via threonine
## 11077 protein O-linked glycosylation via threonine
## 11078 protein palmitoleylation
## 11079 protein polyglycylation
## 11080 protein processing involved in protein targeting to mitochondrion
## 11081 protein propionyltransferase activity
## 11082 protein secretion by platelet
## 11083 protein sialylation
## 11084 protein sulfation
## 11085 protein targeting to lysosome involved in chaperone-mediated autophagy
## 11086 protein targeting to vacuole involved in autophagy
## 11087 protein transport along microtubule
## 11088 protein transport into membrane raft
## 11089 protein transporter activity
## 11090 protein trimerization
## 11091 protein tyrosine kinase inhibitor activity
## 11092 protein tyrosine phosphatase activator activity
## 11093 protein tyrosine/threonine phosphatase activity
## 11094 protein unfolding
## 11095 protein xylosyltransferase activity
## 11096 protein-(glutamine-N5) methyltransferase activity
## 11097 protein-containing complex localization
## 11098 protein-containing complex subunit organization
## 11099 protein-fructosamine 3-kinase activity
## 11100 protein-glucosylgalactosylhydroxylysine glucosidase activity
## 11101 protein-glutamate O-methyltransferase activity
## 11102 protein-glutamine gamma-glutamyltransferase activity
## 11103 protein-glycine ligase activity
## 11104 protein-L-isoaspartate (D-aspartate) O-methyltransferase activity
## 11105 protein-lipid complex
## 11106 protein-malonyllysine demalonylase activity
## 11107 protein-N-terminal asparagine amidohydrolase activity
## 11108 protein-N-terminal glutamine amidohydrolase activity
## 11109 protein-tyrosine sulfotransferase activity
## 11110 proteinase activated receptor binding
## 11111 proton-transporting ATP synthase complex assembly
## 11112 proton-transporting two-sector ATPase complex, proton-transporting domain
## 11113 proton-transporting V-type ATPase complex assembly
## 11114 protoporphyrinogen IX metabolic process
## 11115 proximal dendrite
## 11116 proximal neuron projection
## 11117 proximal tubule development
## 11118 pseudophosphatase activity
## 11119 psychomotor behavior
## 11120 purine deoxyribonucleoside metabolic process
## 11121 purine nucleobase catabolic process
## 11122 purine nucleoside transmembrane transport
## 11123 purine nucleoside transmembrane transporter activity
## 11124 purine nucleotide transmembrane transporter activity
## 11125 purine ribonucleoside catabolic process
## 11126 purine-containing compound transmembrane transport
## 11127 purinergic nucleotide receptor activity
## 11128 putrescine acetylation
## 11129 putrescine binding
## 11130 putrescine catabolic process
## 11131 pyridoxine biosynthetic process
## 11132 pyrimidine deoxyribonucleotide catabolic process
## 11133 pyrimidine nucleobase biosynthetic process
## 11134 pyrimidine nucleobase catabolic process
## 11135 pyrimidine nucleoside biosynthetic process
## 11136 pyrimidine nucleoside transmembrane transporter activity
## 11137 pyrimidine nucleotide metabolic process
## 11138 pyrimidine-nucleoside phosphorylase activity
## 11139 pyrimidine-specific mismatch base pair DNA N-glycosylase activity
## 11140 Pyrin domain binding
## 11141 pyroglutamyl-peptidase activity
## 11142 pyroptosome complex assembly
## 11143 pyruvate secondary active transmembrane transporter activity
## 11144 pyruvate transmembrane transport
## 11145 pyruvate transmembrane transporter activity
## 11146 pyruvate transport
## 11147 quaternary ammonium group transmembrane transporter activity
## 11148 quaternary ammonium group transport
## 11149 queuine tRNA-ribosyltransferase activity
## 11150 quinolinate biosynthetic process
## 11151 quinolinate catabolic process
## 11152 Rab geranylgeranyltransferase activity
## 11153 Rab-protein geranylgeranyltransferase complex
## 11154 racemase and epimerase activity, acting on carbohydrates and derivatives
## 11155 Rad17 RFC-like complex
## 11156 Rad6-Rad18 complex
## 11157 radial glial cell differentiation
## 11158 radial spoke stalk
## 11159 Ran protein signal transduction
## 11160 random inactivation of X chromosome
## 11161 rDNA binding
## 11162 reactive gliosis
## 11163 reactive oxygen species biosynthetic process
## 11164 receptor inhibitor activity
## 11165 receptor internalization involved in canonical Wnt signaling pathway
## 11166 receptor localization to non-motile cilium
## 11167 receptor metabolic process
## 11168 receptor serine/threonine kinase binding
## 11169 receptor signaling protein tyrosine kinase inhibitor activity
## 11170 receptor-mediated virion attachment to host cell
## 11171 receptor-receptor interaction
## 11172 recombinase activity
## 11173 recombinational repair
## 11174 RecQ family helicase-topoisomerase III complex
## 11175 recruitment of 3'-end processing factors to RNA polymerase II holoenzyme complex
## 11176 recycling endosome to Golgi transport
## 11177 reduction of food intake in response to dietary excess
## 11178 reelin receptor activity
## 11179 regulation of acrosome reaction
## 11180 regulation of actin filament depolymerization
## 11181 regulation of actin nucleation
## 11182 regulation of actin phosphorylation
## 11183 regulation of action potential
## 11184 regulation of activated T cell proliferation
## 11185 regulation of activation-induced cell death of T cells
## 11186 regulation of activin receptor signaling pathway
## 11187 regulation of acute inflammatory response
## 11188 regulation of amyloid-beta formation
## 11189 regulation of angiotensin metabolic process
## 11190 regulation of anion transport
## 11191 regulation of arginine biosynthetic process
## 11192 regulation of arginine metabolic process
## 11193 regulation of aspartic-type endopeptidase activity involved in amyloid precursor protein catabolic process
## 11194 regulation of asymmetric cell division
## 11195 regulation of ATP metabolic process
## 11196 regulation of atrial cardiac muscle cell membrane repolarization
## 11197 regulation of B cell activation
## 11198 regulation of B cell proliferation
## 11199 regulation of barbed-end actin filament capping
## 11200 regulation of blastocyst development
## 11201 regulation of blood circulation
## 11202 regulation of blood coagulation
## 11203 regulation of blood vessel branching
## 11204 regulation of blood vessel diameter by renin-angiotensin
## 11205 regulation of bone development
## 11206 regulation of branching morphogenesis of a nerve
## 11207 regulation of bundle of His cell action potential
## 11208 regulation of calcineurin-NFAT signaling cascade
## 11209 regulation of calcium ion transmembrane transport via high voltage-gated calcium channel
## 11210 regulation of calcium ion-dependent exocytosis of neurotransmitter
## 11211 regulation of CAMKK-AMPK signaling cascade
## 11212 regulation of cAMP-dependent protein kinase activity
## 11213 regulation of carbohydrate metabolic process
## 11214 regulation of carbohydrate utilization
## 11215 regulation of cardiac muscle cell action potential
## 11216 regulation of cardiac muscle cell proliferation
## 11217 regulation of cardiac muscle contraction by calcium ion signaling
## 11218 regulation of cargo loading into COPII-coated vesicle
## 11219 regulation of cation transmembrane transport
## 11220 regulation of CD4-positive, alpha-beta T cell differentiation
## 11221 regulation of CD8-positive, alpha-beta cytotoxic T cell extravasation
## 11222 regulation of Cdc42 protein signal transduction
## 11223 regulation of cell adhesion molecule production
## 11224 regulation of cell communication by electrical coupling
## 11225 regulation of cell cycle G1/S phase transition
## 11226 regulation of cell cycle phase transition
## 11227 regulation of cell death
## 11228 regulation of cell diameter
## 11229 regulation of cell growth by extracellular stimulus
## 11230 regulation of cell motility involved in somitogenic axis elongation
## 11231 regulation of cell projection organization
## 11232 regulation of cell-cell adhesion mediated by integrin
## 11233 regulation of cell-substrate adhesion
## 11234 regulation of cell-substrate junction organization
## 11235 regulation of cellular carbohydrate catabolic process
## 11236 regulation of cellular component movement
## 11237 regulation of cellular hyperosmotic salinity response
## 11238 regulation of cellular process
## 11239 regulation of cellular protein catabolic process
## 11240 regulation of cellular response to drug
## 11241 regulation of cellular response to gamma radiation
## 11242 regulation of cellular response to hypoxia
## 11243 regulation of cellular response to osmotic stress
## 11244 regulation of cellular response to stress
## 11245 regulation of cellular response to X-ray
## 11246 regulation of centromere complex assembly
## 11247 regulation of centromeric sister chromatid cohesion
## 11248 regulation of ceramide biosynthetic process
## 11249 regulation of cGMP-mediated signaling
## 11250 regulation of chaperone-mediated protein folding
## 11251 regulation of chemokine production
## 11252 regulation of cholesterol import
## 11253 regulation of chondrocyte differentiation
## 11254 regulation of chorionic trophoblast cell proliferation
## 11255 regulation of chromatin assembly
## 11256 regulation of chromatin disassembly
## 11257 regulation of chromatin silencing at telomere
## 11258 regulation of chromosome organization
## 11259 regulation of cilium beat frequency involved in ciliary motility
## 11260 regulation of cilium movement
## 11261 regulation of circadian sleep/wake cycle
## 11262 regulation of circadian sleep/wake cycle, non-REM sleep
## 11263 regulation of collagen catabolic process
## 11264 regulation of cortisol biosynthetic process
## 11265 regulation of cysteine-type endopeptidase activity
## 11266 regulation of cytokine production involved in immune response
## 11267 regulation of cytokinesis, actomyosin contractile ring assembly
## 11268 regulation of cytoplasmic mRNA processing body assembly
## 11269 regulation of D-erythro-sphingosine kinase activity
## 11270 regulation of definitive erythrocyte differentiation
## 11271 regulation of dendritic cell dendrite assembly
## 11272 regulation of dendritic spine maintenance
## 11273 regulation of developmental growth
## 11274 regulation of developmental pigmentation
## 11275 regulation of DNA damage response, signal transduction by p53 class mediator
## 11276 regulation of DNA methylation-dependent heterochromatin assembly
## 11277 regulation of DNA N-glycosylase activity
## 11278 regulation of DNA replication origin binding
## 11279 regulation of DNA stability
## 11280 regulation of DNA-dependent DNA replication
## 11281 regulation of dopamine metabolic process
## 11282 regulation of early endosome to recycling endosome transport
## 11283 regulation of embryonic cell shape
## 11284 regulation of endocytic recycling
## 11285 regulation of endodeoxyribonuclease activity
## 11286 regulation of endopeptidase activity
## 11287 regulation of endoplasmic reticulum stress-induced eIF2 alpha phosphorylation
## 11288 regulation of endoplasmic reticulum tubular network organization
## 11289 regulation of endoplasmic reticulum unfolded protein response
## 11290 regulation of endosome organization
## 11291 regulation of endosome size
## 11292 regulation of endothelial cell apoptotic process
## 11293 regulation of endothelial cell proliferation
## 11294 regulation of epidermal cell division
## 11295 regulation of ERBB signaling pathway
## 11296 regulation of establishment of planar polarity involved in neural tube closure
## 11297 regulation of estradiol secretion
## 11298 regulation of excretion
## 11299 regulation of extracellular exosome assembly
## 11300 regulation of extracellular matrix constituent secretion
## 11301 regulation of extracellular matrix disassembly
## 11302 regulation of extrathymic T cell differentiation
## 11303 regulation of extrinsic apoptotic signaling pathway
## 11304 regulation of extrinsic apoptotic signaling pathway in absence of ligand
## 11305 regulation of Fas signaling pathway
## 11306 regulation of fat cell apoptotic process
## 11307 regulation of fatty acid oxidation
## 11308 regulation of fatty acid transport
## 11309 regulation of fertilization
## 11310 regulation of fibroblast apoptotic process
## 11311 regulation of fibroblast growth factor receptor signaling pathway
## 11312 regulation of forebrain neuron differentiation
## 11313 regulation of gamma-delta T cell differentiation
## 11314 regulation of gastric motility
## 11315 regulation of glial cell differentiation
## 11316 regulation of glial cell proliferation
## 11317 regulation of glucagon secretion
## 11318 regulation of glucocorticoid metabolic process
## 11319 regulation of glucose transmembrane transport
## 11320 regulation of glutamate uptake involved in transmission of nerve impulse
## 11321 regulation of glycogen (starch) synthase activity
## 11322 regulation of glycogen catabolic process
## 11323 regulation of glycogen metabolic process
## 11324 regulation of granulocyte differentiation
## 11325 regulation of growth hormone secretion
## 11326 regulation of growth plate cartilage chondrocyte proliferation
## 11327 regulation of GTP binding
## 11328 regulation of heart induction by regulation of canonical Wnt signaling pathway
## 11329 regulation of heart rate by chemical signal
## 11330 regulation of hematopoietic stem cell proliferation
## 11331 regulation of hemoglobin biosynthetic process
## 11332 regulation of hemopoiesis
## 11333 regulation of hepatocyte proliferation
## 11334 regulation of high-density lipoprotein particle assembly
## 11335 regulation of histone H2B conserved C-terminal lysine ubiquitination
## 11336 regulation of histone H3-K27 acetylation
## 11337 regulation of histone H3-K27 methylation
## 11338 regulation of histone H3-K36 methylation
## 11339 regulation of histone H3-K36 trimethylation
## 11340 regulation of histone H3-K9 acetylation
## 11341 regulation of histone H3-K9 methylation
## 11342 regulation of histone H3-K9 trimethylation
## 11343 regulation of histone H4-K16 acetylation
## 11344 regulation of histone phosphorylation
## 11345 regulation of histone ubiquitination
## 11346 regulation of hormone biosynthetic process
## 11347 regulation of hormone metabolic process
## 11348 regulation of hyaluronan biosynthetic process
## 11349 regulation of hydrogen peroxide-induced cell death
## 11350 regulation of inclusion body assembly
## 11351 regulation of inner ear auditory receptor cell differentiation
## 11352 regulation of integrin-mediated signaling pathway
## 11353 regulation of interferon-beta production
## 11354 regulation of interleukin-1-mediated signaling pathway
## 11355 regulation of interleukin-10 production
## 11356 regulation of interleukin-18 production
## 11357 regulation of interleukin-2 production
## 11358 regulation of interleukin-23 production
## 11359 regulation of interleukin-4 production
## 11360 regulation of interleukin-8 production
## 11361 regulation of intestinal absorption
## 11362 regulation of intracellular transport
## 11363 regulation of intraciliary retrograde transport
## 11364 regulation of intrinsic apoptotic signaling pathway in response to DNA damage by p53 class mediator
## 11365 regulation of inward rectifier potassium channel activity
## 11366 regulation of ion transport
## 11367 regulation of iron ion transport
## 11368 regulation of isoprenoid metabolic process
## 11369 regulation of JUN kinase activity
## 11370 regulation of ketone biosynthetic process
## 11371 regulation of kidney size
## 11372 regulation of kinetochore assembly
## 11373 regulation of lactation
## 11374 regulation of leukocyte adhesion to arterial endothelial cell
## 11375 regulation of leukocyte adhesion to vascular endothelial cell
## 11376 regulation of leukocyte tethering or rolling
## 11377 regulation of lipopolysaccharide-mediated signaling pathway
## 11378 regulation of lipoprotein lipase activity
## 11379 regulation of locomotion
## 11380 regulation of locomotor rhythm
## 11381 regulation of long-chain fatty acid import into cell
## 11382 regulation of low-density lipoprotein particle clearance
## 11383 regulation of low-density lipoprotein particle receptor catabolic process
## 11384 regulation of lung blood pressure
## 11385 regulation of lymphocyte chemotaxis
## 11386 regulation of lysosomal membrane permeability
## 11387 regulation of lysosomal protein catabolic process
## 11388 regulation of macrophage derived foam cell differentiation
## 11389 regulation of macrophage migration
## 11390 regulation of MAPK export from nucleus
## 11391 regulation of mast cell activation
## 11392 regulation of mast cell apoptotic process
## 11393 regulation of matrix metallopeptidase secretion
## 11394 regulation of meiotic cell cycle process involved in oocyte maturation
## 11395 regulation of melanin biosynthetic process
## 11396 regulation of melanosome organization
## 11397 regulation of membrane depolarization during cardiac muscle cell action potential
## 11398 regulation of membrane repolarization during atrial cardiac muscle cell action potential
## 11399 regulation of membrane repolarization during cardiac muscle cell action potential
## 11400 regulation of mesenchymal cell proliferation
## 11401 regulation of mesoderm development
## 11402 regulation of microglial cell activation
## 11403 regulation of microglial cell migration
## 11404 regulation of microtubule nucleation by Ran protein signal transduction
## 11405 regulation of microtubule-based movement
## 11406 regulation of microvillus length
## 11407 regulation of mitochondrial ATP synthesis coupled proton transport
## 11408 regulation of mitochondrial DNA replication
## 11409 regulation of mitochondrial outer membrane permeabilization involved in apoptotic signaling pathway
## 11410 regulation of mitotic cell cycle DNA replication
## 11411 regulation of mitotic cell cycle, embryonic
## 11412 regulation of mitotic cytokinesis
## 11413 regulation of mitotic sister chromatid separation
## 11414 regulation of modification of postsynaptic actin cytoskeleton
## 11415 regulation of modification of synaptic structure
## 11416 regulation of molecular function, epigenetic
## 11417 regulation of mRNA 3'-end processing
## 11418 regulation of mRNA stability involved in response to oxidative stress
## 11419 regulation of multivesicular body size
## 11420 regulation of myeloid progenitor cell differentiation
## 11421 regulation of myoblast differentiation
## 11422 regulation of myoblast proliferation
## 11423 regulation of myosin II filament organization
## 11424 regulation of myosin-light-chain-phosphatase activity
## 11425 regulation of myotube differentiation
## 11426 regulation of NADP metabolic process
## 11427 regulation of natural killer cell activation
## 11428 regulation of natural killer cell differentiation
## 11429 regulation of natural killer cell proliferation
## 11430 regulation of nephron tubule epithelial cell differentiation
## 11431 regulation of nervous system process
## 11432 regulation of neuroblast proliferation
## 11433 regulation of neuron maturation
## 11434 regulation of neuronal action potential
## 11435 regulation of neurotransmitter receptor localization to postsynaptic specialization membrane
## 11436 regulation of neutrophil chemotaxis
## 11437 regulation of neutrophil degranulation
## 11438 regulation of neutrophil extravasation
## 11439 regulation of neutrophil migration
## 11440 regulation of nitric oxide biosynthetic process
## 11441 regulation of nitric oxide mediated signal transduction
## 11442 regulation of nitrogen utilization
## 11443 regulation of NK T cell differentiation
## 11444 regulation of NLRP3 inflammasome complex assembly
## 11445 regulation of norepinephrine uptake
## 11446 regulation of nucleic acid-templated transcription
## 11447 regulation of nucleotide-excision repair
## 11448 regulation of nucleus size
## 11449 regulation of odontoblast differentiation
## 11450 regulation of odontogenesis of dentin-containing tooth
## 11451 regulation of oligodendrocyte differentiation
## 11452 regulation of opioid receptor signaling pathway
## 11453 regulation of osteoclast development
## 11454 regulation of oxidative stress-induced intrinsic apoptotic signaling pathway
## 11455 regulation of oxidative stress-induced neuron death
## 11456 regulation of oxidoreductase activity
## 11457 regulation of p38MAPK cascade
## 11458 regulation of pathway-restricted SMAD protein phosphorylation
## 11459 regulation of pentose-phosphate shunt
## 11460 regulation of peptide hormone secretion
## 11461 regulation of peroxisome organization
## 11462 regulation of peroxisome proliferator activated receptor signaling pathway
## 11463 regulation of peroxisome size
## 11464 regulation of phagosome maturation
## 11465 regulation of phosphatase activity
## 11466 regulation of phospholipase A2 activity
## 11467 regulation of phospholipid catabolic process
## 11468 regulation of planar cell polarity pathway involved in neural tube closure
## 11469 regulation of plasma membrane sterol distribution
## 11470 regulation of platelet activation
## 11471 regulation of platelet-derived growth factor production
## 11472 regulation of podosome assembly
## 11473 regulation of postsynaptic density protein 95 clustering
## 11474 regulation of potassium ion export across plasma membrane
## 11475 regulation of potassium ion import
## 11476 regulation of potassium ion transmembrane transporter activity
## 11477 regulation of primary metabolic process
## 11478 regulation of primitive erythrocyte differentiation
## 11479 regulation of production of miRNAs involved in gene silencing by miRNA
## 11480 regulation of production of siRNA involved in RNA interference
## 11481 regulation of progesterone biosynthetic process
## 11482 regulation of protein catabolic process at presynapse, modulating synaptic transmission
## 11483 regulation of protein deacetylation
## 11484 regulation of protein dephosphorylation
## 11485 regulation of protein deubiquitination
## 11486 regulation of protein exit from endoplasmic reticulum
## 11487 regulation of protein K48-linked deubiquitination
## 11488 regulation of protein lipidation
## 11489 regulation of protein localization to adherens junction
## 11490 regulation of protein localization to cell cortex
## 11491 regulation of protein monoubiquitination
## 11492 regulation of protein targeting
## 11493 regulation of protein tyrosine kinase activity
## 11494 regulation of protein-containing complex disassembly
## 11495 regulation of pyruvate kinase activity
## 11496 regulation of Ral protein signal transduction
## 11497 regulation of Rap protein signal transduction
## 11498 regulation of receptor internalization
## 11499 regulation of receptor localization to synapse
## 11500 regulation of regulated secretory pathway
## 11501 regulation of relaxation of muscle
## 11502 regulation of release of cytochrome c from mitochondria
## 11503 regulation of respiratory system process
## 11504 regulation of response to DNA damage checkpoint signaling
## 11505 regulation of response to endoplasmic reticulum stress
## 11506 regulation of response to food
## 11507 regulation of response to interferon-gamma
## 11508 regulation of retinal ganglion cell axon guidance
## 11509 regulation of retinoic acid receptor signaling pathway
## 11510 regulation of Rho guanyl-nucleotide exchange factor activity
## 11511 regulation of rhodopsin gene expression
## 11512 regulation of RNA export from nucleus
## 11513 regulation of RNA polymerase II transcription preinitiation complex assembly
## 11514 regulation of rRNA processing
## 11515 regulation of rRNA stability
## 11516 regulation of sarcomere organization
## 11517 regulation of Schwann cell differentiation
## 11518 regulation of sequestering of zinc ion
## 11519 regulation of serotonin uptake
## 11520 regulation of signal transduction involved in mitotic G2 DNA damage checkpoint
## 11521 regulation of signaling receptor activity
## 11522 regulation of sister chromatid cohesion
## 11523 regulation of sister chromatid segregation
## 11524 regulation of skeletal muscle acetylcholine-gated channel clustering
## 11525 regulation of skeletal muscle adaptation
## 11526 regulation of skeletal muscle cell differentiation
## 11527 regulation of skeletal muscle contraction
## 11528 regulation of skeletal muscle fiber development
## 11529 regulation of skeletal muscle tissue development
## 11530 regulation of SMAD protein signal transduction
## 11531 regulation of smooth muscle cell migration
## 11532 regulation of smooth muscle cell proliferation
## 11533 regulation of smoothened signaling pathway involved in dorsal/ventral neural tube patterning
## 11534 regulation of SNARE complex assembly
## 11535 regulation of sodium:proton antiporter activity
## 11536 regulation of somatic stem cell population maintenance
## 11537 regulation of somitogenesis
## 11538 regulation of sprouting angiogenesis
## 11539 regulation of stem cell differentiation
## 11540 regulation of steroid metabolic process
## 11541 regulation of store-operated calcium channel activity
## 11542 regulation of stress granule assembly
## 11543 regulation of stress-activated protein kinase signaling cascade
## 11544 regulation of striated muscle contraction
## 11545 regulation of supramolecular fiber organization
## 11546 regulation of synaptic transmission, dopaminergic
## 11547 regulation of synaptic vesicle cycle
## 11548 regulation of synaptic vesicle fusion to presynaptic active zone membrane
## 11549 regulation of synaptic vesicle transport
## 11550 regulation of systemic arterial blood pressure by norepinephrine-epinephrine
## 11551 regulation of systemic arterial blood pressure mediated by a chemical signal
## 11552 regulation of T cell antigen processing and presentation
## 11553 regulation of T cell mediated cytotoxicity
## 11554 regulation of T cell migration
## 11555 regulation of telomere capping
## 11556 regulation of telomere maintenance via telomere lengthening
## 11557 regulation of termination of RNA polymerase I transcription
## 11558 regulation of thalamus size
## 11559 regulation of thymocyte apoptotic process
## 11560 regulation of thyroid hormone mediated signaling pathway
## 11561 regulation of tissue remodeling
## 11562 regulation of transcription by glucose
## 11563 regulation of transcription by RNA polymerase I
## 11564 regulation of transcription from RNA polymerase II promoter by glucose
## 11565 regulation of transcription from RNA polymerase II promoter in response to iron
## 11566 regulation of transcription from RNA polymerase II promoter in response to stress
## 11567 regulation of transcription from RNA polymerase II promoter in response to UV-induced DNA damage
## 11568 regulation of transcription from RNA polymerase II promoter involved in spermatogenesis
## 11569 regulation of transcription involved in G2/M transition of mitotic cell cycle
## 11570 regulation of transcription of nucleolar large rRNA by RNA polymerase I
## 11571 regulation of translation at postsynapse, modulating synaptic transmission
## 11572 regulation of translation at presynapse, modulating synaptic transmission
## 11573 regulation of translation at synapse, modulating synaptic transmission
## 11574 regulation of translation in response to stress
## 11575 regulation of translation involved in cellular response to UV
## 11576 regulation of translational initiation by eIF2 alpha dephosphorylation
## 11577 regulation of transmembrane transporter activity
## 11578 regulation of transmission of nerve impulse
## 11579 regulation of transport
## 11580 regulation of triglyceride metabolic process
## 11581 regulation of trophoblast cell migration
## 11582 regulation of type IV hypersensitivity
## 11583 regulation of ubiquinone biosynthetic process
## 11584 regulation of ubiquitin protein ligase activity
## 11585 regulation of ubiquitin-dependent protein catabolic process
## 11586 regulation of ubiquitin-specific protease activity
## 11587 regulation of urine volume
## 11588 regulation of vacuole organization
## 11589 regulation of vascular associated smooth muscle cell dedifferentiation
## 11590 regulation of vascular associated smooth muscle contraction
## 11591 regulation of vascular endothelial growth factor production
## 11592 regulation of vascular endothelial growth factor receptor signaling pathway
## 11593 regulation of vascular permeability involved in acute inflammatory response
## 11594 regulation of vasoconstriction by circulating norepinephrine
## 11595 regulation of ventricular cardiac muscle cell membrane depolarization
## 11596 regulation of vesicle fusion
## 11597 regulation of viral budding via host ESCRT complex
## 11598 regulation of viral release from host cell
## 11599 regulation of viral transcription
## 11600 regulation of voltage-gated calcium channel activity
## 11601 regulation of voltage-gated potassium channel activity involved in ventricular cardiac muscle cell action potential repolarization
## 11602 regulation of water loss via skin
## 11603 regulatory T cell differentiation
## 11604 release from viral latency
## 11605 release of matrix enzymes from mitochondria
## 11606 release of sequestered calcium ion into cytosol by endoplasmic reticulum
## 11607 renal artery morphogenesis
## 11608 renal phosphate ion absorption
## 11609 renal potassium excretion
## 11610 renal sodium ion transport
## 11611 renal tubule development
## 11612 renal tubule morphogenesis
## 11613 renal water absorption
## 11614 renin secretion into blood stream
## 11615 reproduction
## 11616 reproductive system development
## 11617 RES complex
## 11618 resolution of mitotic recombination intermediates
## 11619 resolution of recombination intermediates
## 11620 respiratory system development
## 11621 response to 2-O-acetyl-1-O-hexadecyl-sn-glycero-3-phosphocholine
## 11622 response to 3,3',5-triiodo-L-thyronine
## 11623 response to acetate
## 11624 response to aluminum ion
## 11625 response to ammonium ion
## 11626 response to bacterial lipoprotein
## 11627 response to benzene
## 11628 response to caloric restriction
## 11629 response to camptothecin
## 11630 response to carbohydrate
## 11631 response to carbon monoxide
## 11632 response to cholecystokinin
## 11633 response to cobalamin
## 11634 response to corticosteroid
## 11635 response to corticosterone
## 11636 response to curcumin
## 11637 response to DDT
## 11638 response to dopamine
## 11639 response to dsRNA
## 11640 response to ether
## 11641 response to formaldehyde
## 11642 response to fungus
## 11643 response to G1 DNA damage checkpoint signaling
## 11644 response to glucoside
## 11645 response to glycoside
## 11646 response to gold nanoparticle
## 11647 response to gonadotropin
## 11648 response to histamine
## 11649 response to hydrostatic pressure
## 11650 response to insecticide
## 11651 response to interleukin-12
## 11652 response to iron ion starvation
## 11653 response to iron(II) ion
## 11654 response to iron(III) ion
## 11655 response to kainic acid
## 11656 response to L-arginine
## 11657 response to L-phenylalanine derivative
## 11658 response to light stimulus
## 11659 response to lipid hydroperoxide
## 11660 response to low light intensity stimulus
## 11661 response to manganese-induced endoplasmic reticulum stress
## 11662 response to mercury ion
## 11663 response to mineralocorticoid
## 11664 response to misfolded protein
## 11665 response to muscle activity involved in regulation of muscle adaptation
## 11666 response to nitric oxide
## 11667 response to nitrogen dioxide
## 11668 response to nitrosative stress
## 11669 response to odorant
## 11670 response to oleic acid
## 11671 response to oxygen radical
## 11672 response to parathyroid hormone
## 11673 response to pheromone
## 11674 response to platelet-derived growth factor
## 11675 response to platinum ion
## 11676 response to prostaglandin F
## 11677 response to rapamycin
## 11678 response to rotenone
## 11679 response to salt
## 11680 response to silver ion
## 11681 response to sorbitol
## 11682 response to tellurium ion
## 11683 response to TNF agonist
## 11684 response to tumor cell
## 11685 response to type III interferon
## 11686 response to UV-A
## 11687 response to vitamin B1
## 11688 response to vitamin E
## 11689 retina vasculature morphogenesis in camera-type eye
## 11690 retinal bipolar neuron differentiation
## 11691 retinal cell programmed cell death
## 11692 retinal dehydrogenase activity
## 11693 retinal pigment epithelium development
## 11694 retinal rod cell apoptotic process
## 11695 retinoic acid biosynthetic process
## 11696 retinol isomerase activity
## 11697 retinol O-fatty-acyltransferase activity
## 11698 retrograde axonal protein transport
## 11699 retrograde trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## 11700 retrograde trans-synaptic signaling by trans-synaptic protein complex
## 11701 retrograde transport, vesicle recycling within Golgi
## 11702 retromer, tubulation complex
## 11703 Rho GDP-dissociation inhibitor activity
## 11704 rhythmic synaptic transmission
## 11705 ribbon synapse
## 11706 ribitol 2-dehydrogenase activity
## 11707 riboflavin reductase (NADPH) activity
## 11708 riboflavin transmembrane transporter activity
## 11709 riboflavin transport
## 11710 ribonuclease E activity
## 11711 ribonuclease III activity
## 11712 ribonuclease inhibitor activity
## 11713 ribonuclease MRP activity
## 11714 ribonuclease P complex
## 11715 ribonucleoprotein complex assembly
## 11716 ribonucleoprotein complex biogenesis
## 11717 ribonucleoprotein complex localization
## 11718 ribonucleoside-diphosphate reductase activity
## 11719 RIC1-RGP1 guanyl-nucleotide exchange factor complex
## 11720 RIG-I binding
## 11721 right ventricular compact myocardium morphogenesis
## 11722 RING-like zinc finger domain binding
## 11723 Rix1 complex
## 11724 RNA 5'-methyltransferase activity
## 11725 RNA destabilization
## 11726 RNA folding
## 11727 RNA guanylyltransferase activity
## 11728 RNA import into mitochondrion
## 11729 RNA import into nucleus
## 11730 RNA lariat debranching enzyme activator activity
## 11731 RNA N1-methyladenosine dioxygenase activity
## 11732 RNA polymerase complex
## 11733 RNA polymerase I activity
## 11734 RNA polymerase I cis-regulatory region sequence-specific DNA binding
## 11735 RNA polymerase I core binding
## 11736 RNA polymerase I core factor complex
## 11737 RNA polymerase I general transcription initiation factor binding
## 11738 RNA polymerase II transcription repressor complex
## 11739 RNA polymerase III activity
## 11740 RNA polymerase III core binding
## 11741 RNA polymerase III preinitiation complex assembly
## 11742 RNA polymerase III transcription regulatory region sequence-specific DNA binding
## 11743 RNA transmembrane transporter activity
## 11744 RNA trimethylguanosine synthase activity
## 11745 rod photoreceptor outer segment
## 11746 rough endoplasmic reticulum lumen
## 11747 Roundabout signaling pathway
## 11748 rRNA (adenine-N6,N6-)-dimethyltransferase activity
## 11749 rRNA (guanine-N7)-methylation
## 11750 rRNA (guanine) methyltransferase activity
## 11751 rRNA (pseudouridine) methyltransferase activity
## 11752 rRNA (uridine-2'-O-)-methyltransferase activity
## 11753 rRNA base methylation
## 11754 rRNA export from nucleus
## 11755 rRNA metabolic process
## 11756 rRNA pseudouridine synthesis
## 11757 rRNA transport
## 11758 ryanodine receptor complex
## 11759 ryanodine-sensitive calcium-release channel activity
## 11760 S-adenosyl-L-methionine transmembrane transport
## 11761 S-adenosyl-L-methionine transmembrane transporter activity
## 11762 S-adenosyl-L-methionine transport
## 11763 S-adenosylhomocysteine metabolic process
## 11764 S-adenosylmethioninamine biosynthetic process
## 11765 S-formylglutathione hydrolase activity
## 11766 S-malonyltransferase activity
## 11767 S-nitrosoglutathione binding
## 11768 saccharopine dehydrogenase (NAD+, L-glutamate-forming) activity
## 11769 saccharopine dehydrogenase (NAD+, L-lysine-forming) activity
## 11770 saccharopine dehydrogenase (NADP+, L-lysine-forming) activity
## 11771 saccharopine dehydrogenase activity
## 11772 saliva secretion
## 11773 salivary gland morphogenesis
## 11774 SAM domain binding
## 11775 sarcomerogenesis
## 11776 sarcoplasmic reticulum calcium ion transport
## 11777 satellite cell activation involved in skeletal muscle regeneration
## 11778 satellite DNA binding
## 11779 Scc2-Scc4 cohesin loading complex
## 11780 Schwann cell differentiation
## 11781 Schwann cell microvillus
## 11782 Schwann cell proliferation
## 11783 sclerotome development
## 11784 Scrib-APC-beta-catenin complex
## 11785 sebum secreting cell proliferation
## 11786 Sec61 translocon complex
## 11787 Sec62/Sec63 complex
## 11788 second-messenger-mediated signaling
## 11789 secondary active organic cation transmembrane transporter activity
## 11790 secretion by lung epithelial cell involved in lung growth
## 11791 secretory columnal luminar epithelial cell differentiation involved in prostate glandular acinus development
## 11792 secretory dimeric IgA immunoglobulin complex
## 11793 secretory granule organization
## 11794 secretory IgA immunoglobulin complex
## 11795 secretory vesicle
## 11796 sedoheptulose-7-phosphate:D-glyceraldehyde-3-phosphate glyceronetransferase activity
## 11797 selenide, water dikinase activity
## 11798 selenium compound metabolic process
## 11799 selenocysteine biosynthetic process
## 11800 selenocysteine catabolic process
## 11801 selenocysteine lyase activity
## 11802 semaphorin-plexin signaling pathway involved in bone trabecula morphogenesis
## 11803 semi-lunar valve development
## 11804 semicircular canal development
## 11805 sensory organ development
## 11806 sensory perception of chemical stimulus
## 11807 sensory perception of light stimulus
## 11808 sensory perception of sour taste
## 11809 sensory perception of taste
## 11810 septin cytoskeleton
## 11811 septin cytoskeleton organization
## 11812 sequence-specific single stranded DNA binding
## 11813 sequestering of calcium ion
## 11814 sequestering of extracellular ligand from receptor
## 11815 sequestering of triglyceride
## 11816 sequestering of zinc ion
## 11817 Ser-tRNA(Ala) hydrolase activity
## 11818 serine binding
## 11819 serine family amino acid biosynthetic process
## 11820 serine family amino acid metabolic process
## 11821 serine hydrolase activity
## 11822 serine import across plasma membrane
## 11823 serine import into mitochondrion
## 11824 serine protease inhibitor complex
## 11825 serine transmembrane transporter activity
## 11826 serine-pyruvate aminotransferase complex
## 11827 serotonergic neuron axon guidance
## 11828 serotonergic synapse
## 11829 serotonin binding
## 11830 serotonin transport
## 11831 serotonin:sodium symporter activity
## 11832 Sertoli cell fate commitment
## 11833 serum response element binding
## 11834 sex chromatin
## 11835 SHG alpha-glucan phosphorylase activity
## 11836 short-chain carboxylesterase activity
## 11837 short-chain fatty acid catabolic process
## 11838 sialate 4-O-acetylesterase activity
## 11839 sialate 9-O-acetylesterase activity
## 11840 sialate O-acetylesterase activity
## 11841 sialic acid transmembrane transporter activity
## 11842 sialic acid transport
## 11843 siderophore-dependent iron import into cell
## 11844 signal release
## 11845 signal sequence binding
## 11846 signal transduction involved in mitotic cell cycle checkpoint
## 11847 signal transduction involved in mitotic G2 DNA damage checkpoint
## 11848 single-stranded DNA 3'-5' exodeoxyribonuclease activity
## 11849 single-stranded telomeric DNA binding
## 11850 site-specific DNA-methyltransferase (adenine-specific) activity
## 11851 skeletal muscle atrophy
## 11852 skeletal muscle myosin thick filament assembly
## 11853 skeletal muscle satellite cell activation
## 11854 skeletal muscle satellite cell migration
## 11855 skeletal myofibril assembly
## 11856 Ski complex
## 11857 skin epidermis development
## 11858 skin morphogenesis
## 11859 Slx1-Slx4 complex
## 11860 Sm-like protein family complex
## 11861 small protein activating enzyme binding
## 11862 small RNA 2'-O-methyltransferase
## 11863 small RNA loading onto RISC
## 11864 SMC loading complex
## 11865 smooth endoplasmic reticulum calcium ion homeostasis
## 11866 smooth muscle hyperplasia
## 11867 smooth muscle hypertrophy
## 11868 smoothened signaling pathway involved in regulation of cerebellar granule cell precursor cell proliferation
## 11869 smoothened signaling pathway involved in regulation of secondary heart field cardioblast proliferation
## 11870 sn-1-glycerol-3-phosphate C16:0-DCA-CoA acyl transferase activity
## 11871 sn-glycerol-3-phosphate:ubiquinone oxidoreductase activity
## 11872 sn-glycerol-3-phosphate:ubiquinone-8 oxidoreductase activity
## 11873 snoRNA metabolic process
## 11874 snoRNA polyadenylation
## 11875 snoRNA splicing
## 11876 snRNA (adenine-N6)-methylation
## 11877 snRNA catabolic process
## 11878 snRNA import into nucleus
## 11879 snRNA metabolic process
## 11880 snRNA modification
## 11881 snRNA pseudouridine synthesis
## 11882 snRNA-activating protein complex
## 11883 sodium channel complex
## 11884 sodium ion export across plasma membrane
## 11885 sodium ion homeostasis
## 11886 sodium-independent organic anion transmembrane transporter activity
## 11887 sodium:potassium-exchanging ATPase activity
## 11888 sodium:potassium-exchanging ATPase complex
## 11889 sodium:potassium:chloride symporter activity
## 11890 somatic diversification of immune receptors via somatic mutation
## 11891 somatic diversification of immunoglobulins
## 11892 somatic muscle development
## 11893 somite specification
## 11894 sorbitol biosynthetic process
## 11895 sorbitol catabolic process
## 11896 sorbitol metabolic process
## 11897 specification of axis polarity
## 11898 Spemann organizer formation
## 11899 sperm capacitation
## 11900 sperm connecting piece
## 11901 sperm head
## 11902 sperm head-tail coupling apparatus
## 11903 spermatocyte division
## 11904 spermatogenesis, exchange of chromosomal proteins
## 11905 spermidine acetylation
## 11906 spermidine binding
## 11907 spermidine biosynthetic process
## 11908 spermidine catabolic process
## 11909 spermidine deacetylation
## 11910 spermidine metabolic process
## 11911 spermidine:oxygen oxidoreductase (3-aminopropanal-forming) activity
## 11912 spermine acetylation
## 11913 spermine biosynthetic process
## 11914 spermine catabolic process
## 11915 spermine metabolic process
## 11916 spermine transmembrane transport
## 11917 spermine:oxygen oxidoreductase (spermidine-forming) activity
## 11918 sphinganine biosynthetic process
## 11919 sphinganine kinase activity
## 11920 sphinganine-1-phosphate aldolase activity
## 11921 sphinganine-1-phosphate biosynthetic process
## 11922 sphingolipid delta-4 desaturase activity
## 11923 sphingolipid floppase activity
## 11924 sphingolipid mediated signaling pathway
## 11925 sphingolipid translocation
## 11926 sphingomyelin phosphodiesterase activator activity
## 11927 sphingomyelin transfer activity
## 11928 sphingosine-1-phosphate phosphatase activity
## 11929 spinal cord dorsal/ventral patterning
## 11930 spindle assembly involved in female meiosis
## 11931 spindle matrix
## 11932 spindle midzone assembly
## 11933 spliceosomal complex disassembly
## 11934 spliceosomal snRNP complex
## 11935 spliceosome conformational change to release U4 (or U4atac) and U1 (or U11)
## 11936 spontaneous neurotransmitter secretion
## 11937 spontaneous synaptic transmission
## 11938 SPOTS complex
## 11939 squalene monooxygenase activity
## 11940 SREBP-SCAP-Insig complex
## 11941 SRP-dependent cotranslational protein targeting to membrane, signal sequence recognition
## 11942 starch binding
## 11943 startle response
## 11944 stearoyl-CoA 9-desaturase activity
## 11945 stereocilium base
## 11946 stereocilium coat
## 11947 stereocilium maintenance
## 11948 stereocilium membrane
## 11949 stereocilium shaft
## 11950 steroid dehydrogenase activity
## 11951 steroid receptor RNA activator RNA binding
## 11952 sterol 14-demethylase activity
## 11953 sterol transfer activity
## 11954 sterol-4-alpha-carboxylate 3-dehydrogenase (decarboxylating) activity
## 11955 stilbene catabolic process
## 11956 stimulatory killer cell immunoglobulin-like receptor signaling pathway
## 11957 storage vacuole
## 11958 strand displacement
## 11959 stress granule disassembly
## 11960 stress-induced mitochondrial fusion
## 11961 stress-induced premature senescence
## 11962 striatal medium spiny neuron differentiation
## 11963 striated muscle dense body
## 11964 structural constituent of egg coat
## 11965 structural constituent of myelin sheath
## 11966 structural constituent of postsynapse
## 11967 structural constituent of postsynaptic density
## 11968 structural constituent of presynaptic active zone
## 11969 structural constituent of skin epidermis
## 11970 structural constituent of tooth enamel
## 11971 structural molecule activity conferring elasticity
## 11972 subapical part of cell
## 11973 substrate localization to autophagosome
## 11974 substrate-dependent cell migration, cell attachment to substrate
## 11975 succinate metabolic process
## 11976 succinate-CoA ligase (ADP-forming) activity
## 11977 succinate-CoA ligase (GDP-forming) activity
## 11978 succinate-CoA ligase complex
## 11979 succinyl-CoA hydrolase activity
## 11980 succinyl-CoA pathway
## 11981 sucrose biosynthetic process
## 11982 sucrose metabolic process
## 11983 sucrose transport
## 11984 sucrose:proton symporter activity
## 11985 sulfate adenylyltransferase (ATP) activity
## 11986 sulfate assimilation
## 11987 sulfide oxidation, using sulfide:quinone oxidoreductase
## 11988 sulfur carrier activity
## 11989 sulfur dioxygenase activity
## 11990 sulfur oxidation
## 11991 SUMO-specific isopeptidase activity
## 11992 superoxide dismutase copper chaperone activity
## 11993 suppression by virus of host apoptotic process
## 11994 suppression by virus of host autophagy
## 11995 suppression by virus of host STAT1 activity
## 11996 suppression by virus of host STAT2 activity
## 11997 supraspliceosomal complex
## 11998 swimming
## 11999 symmetric synapse
## 12000 symmetric, GABA-ergic, inhibitory synapse
## 12001 sympathetic ganglion development
## 12002 synapse assembly involved in innervation
## 12003 synapse maturation
## 12004 synaptic cleft
## 12005 synaptic growth at neuromuscular junction
## 12006 synaptic transmission, GABAergic
## 12007 synaptic vesicle clustering
## 12008 synaptic vesicle cycle
## 12009 synaptic vesicle lumen acidification
## 12010 synaptic vesicle recycling via endosome
## 12011 synaptic vesicle targeting
## 12012 synaptic vesicle to endosome fusion
## 12013 synaptonemal complex disassembly
## 12014 syncytiotrophoblast cell differentiation involved in labyrinthine layer development
## 12015 syncytium formation
## 12016 syndecan binding
## 12017 syntaxin-3 binding
## 12018 syntrophin complex
## 12019 T cell homeostatic proliferation
## 12020 T cell meandering migration
## 12021 T-helper 1 cell activation
## 12022 T-helper 1 cell lineage commitment
## 12023 T-helper 17 cell differentiation
## 12024 T-helper 2 cell activation
## 12025 T-helper 2 cell differentiation
## 12026 T-helper cell differentiation
## 12027 T-helper cell lineage commitment
## 12028 t-UTP complex
## 12029 TAP complex binding
## 12030 tapasin binding
## 12031 tarsal gland development
## 12032 taurine metabolic process
## 12033 taurine transmembrane transporter activity
## 12034 taurine:sodium symporter activity
## 12035 TCR signalosome
## 12036 TDP phosphorylation
## 12037 telencephalon cell migration
## 12038 telomerase RNA localization to Cajal body
## 12039 telomerase RNA stabilization
## 12040 telomere formation via telomerase
## 12041 telomere maintenance via base-excision repair
## 12042 telomere maintenance via telomere trimming
## 12043 telomeric loop disassembly
## 12044 telomeric loop formation
## 12045 terminal button organization
## 12046 terminal web
## 12047 termination of mitochondrial transcription
## 12048 testosterone 17-beta-dehydrogenase (NADP+) activity
## 12049 testosterone biosynthetic process
## 12050 tetracycline transmembrane transport
## 12051 tetracycline transmembrane transporter activity
## 12052 tetrahydrofolylpolyglutamate biosynthetic process
## 12053 tetrahydrofolylpolyglutamate metabolic process
## 12054 tetrahydrofolylpolyglutamate synthase activity
## 12055 thalamus development
## 12056 thiamine pyrophosphate transmembrane transport
## 12057 thiamine transmembrane transport
## 12058 thiamine transmembrane transporter activity
## 12059 thiamine-containing compound metabolic process
## 12060 thienylcyclohexylpiperidine binding
## 12061 thigmotaxis
## 12062 thiolester hydrolase activity
## 12063 thiomorpholine-carboxylate dehydrogenase activity
## 12064 thioredoxin peroxidase activity
## 12065 thioredoxin-disulfide reductase activity
## 12066 third ventricle development
## 12067 threonine transport
## 12068 threonine-tRNA ligase activity
## 12069 threonyl-tRNA aminoacylation
## 12070 thrombin-activated receptor activity
## 12071 thymidine biosynthetic process
## 12072 thymidine catabolic process
## 12073 thymidine kinase activity
## 12074 thymidine metabolic process
## 12075 thymidine phosphorylase activity
## 12076 thymidylate kinase activity
## 12077 thymidylate synthase activity
## 12078 thymine catabolic process
## 12079 thymocyte apoptotic process
## 12080 thyroid hormone mediated signaling pathway
## 12081 thyrotropin-releasing hormone receptor binding
## 12082 tight junction assembly
## 12083 TIRAP-dependent toll-like receptor 4 signaling pathway
## 12084 TNFSF11-mediated signaling pathway
## 12085 Toll-like receptor 1-Toll-like receptor 2 protein complex
## 12086 toll-like receptor 10 signaling pathway
## 12087 Toll-like receptor 2 binding
## 12088 Toll-like receptor 4 binding
## 12089 tongue morphogenesis
## 12090 tonic smooth muscle contraction
## 12091 tooth eruption
## 12092 TORC2 complex binding
## 12093 toxin metabolic process
## 12094 trachea cartilage morphogenesis
## 12095 trans-synaptic signaling by endocannabinoid, modulating synaptic transmission
## 12096 trans-synaptic signaling by nitric oxide, modulating synaptic transmission
## 12097 trans-synaptic signaling by trans-synaptic complex, modulating synaptic transmission
## 12098 transcription factor TFIIE complex
## 12099 transcription factor TFIIF complex
## 12100 transcription factor TFIIK complex
## 12101 transcription open complex formation at RNA polymerase II promoter
## 12102 transcription preinitiation complex assembly
## 12103 transcription termination site sequence-specific DNA binding
## 12104 transcriptional activation by promoter-enhancer looping
## 12105 transepithelial ammonium transport
## 12106 transepithelial chloride transport
## 12107 transepithelial L-ascorbic acid transport
## 12108 transferase activity, transferring selenium-containing groups
## 12109 transferase complex
## 12110 transforming growth factor beta activation
## 12111 transforming growth factor beta production
## 12112 transforming growth factor beta receptor signaling pathway involved in heart development
## 12113 transforming growth factor beta1 activation
## 12114 transition between fast and slow fiber
## 12115 transition metal ion binding
## 12116 transketolase activity
## 12117 translation elongation factor binding
## 12118 translational attenuation
## 12119 transmembrane receptor protein tyrosine kinase inhibitor activity
## 12120 transmembrane receptor protein tyrosine phosphatase signaling pathway
## 12121 transport along microtubule
## 12122 transposase activity
## 12123 transposition, DNA-mediated
## 12124 transposition, RNA-mediated
## 12125 TRAPPI protein complex
## 12126 TRC complex
## 12127 trehalose metabolism in response to stress
## 12128 triacyl lipopeptide binding
## 12129 tricellular tight junction
## 12130 tricellular tight junction assembly
## 12131 tricuspid valve formation
## 12132 tricuspid valve morphogenesis
## 12133 trigeminal nerve structural organization
## 12134 triglyceride transport
## 12135 trimming of first mannose on A branch
## 12136 trimming of second mannose on A branch
## 12137 trimming of terminal mannose on B branch
## 12138 triokinase activity
## 12139 triose-phosphate isomerase activity
## 12140 triphosphatase activity
## 12141 triplex DNA binding
## 12142 triterpenoid biosynthetic process
## 12143 tRNA (adenine-N1-)-methyltransferase activity
## 12144 tRNA (guanine-N1-)-methyltransferase activity
## 12145 tRNA (guanine(9)-N(1))-methyltransferase activity
## 12146 tRNA (m1A) methyltransferase complex
## 12147 tRNA 2'-O-methyltransferase activity
## 12148 tRNA 3'-end processing
## 12149 tRNA 3'-terminal CCA addition
## 12150 tRNA 3'-trailer cleavage
## 12151 tRNA 3'-trailer cleavage, endonucleolytic
## 12152 tRNA 5'-end processing
## 12153 tRNA adenylyltransferase activity
## 12154 tRNA C3-cytosine methylation
## 12155 tRNA catabolic process
## 12156 tRNA cytidylyltransferase activity
## 12157 tRNA dimethylallyltransferase activity
## 12158 tRNA guanylyltransferase activity
## 12159 tRNA import into mitochondrion
## 12160 tRNA methylthiolation
## 12161 tRNA N1-guanine methylation
## 12162 tRNA re-export from nucleus
## 12163 tRNA threonylcarbamoyladenosine modification
## 12164 tRNA transcription
## 12165 tRNA transport
## 12166 tRNA wobble base cytosine methylation
## 12167 tRNA-5-taurinomethyluridine 2-sulfurtransferase
## 12168 tRNA-dihydrouridine20 synthase activity
## 12169 tRNA-intron endonuclease activity
## 12170 tRNA-uridine aminocarboxypropyltransferase activity
## 12171 trophectodermal cell proliferation
## 12172 troponin T binding
## 12173 tryptophan catabolic process
## 12174 tryptophan metabolic process
## 12175 tube development
## 12176 tube formation
## 12177 tubular endosome
## 12178 tubulin deacetylase activity
## 12179 tubulobulbar complex
## 12180 tumor necrosis factor receptor superfamily binding
## 12181 type 1 fibroblast growth factor receptor binding
## 12182 type 1 metabotropic glutamate receptor binding
## 12183 type 2 metabotropic glutamate receptor binding
## 12184 type B pancreatic cell apoptotic process
## 12185 type B pancreatic cell differentiation
## 12186 type II activin receptor binding
## 12187 tyrosine 3-monooxygenase activator activity
## 12188 tyrosine catabolic process
## 12189 tyrosine metabolic process
## 12190 U1 snRNA 3'-end processing
## 12191 U2 snRNA 3'-end processing
## 12192 U2 snRNP binding
## 12193 U2-type post-mRNA release spliceosomal complex
## 12194 U5 snRNA 3'-end processing
## 12195 U5 snRNA binding
## 12196 U6 2'-O-snRNA methylation
## 12197 U6 snRNA 3'-end processing
## 12198 U6atac snRNA binding
## 12199 U6atac snRNP
## 12200 ubiquinone metabolic process
## 12201 ubiquitin activating enzyme activity
## 12202 ubiquitin conjugating enzyme complex
## 12203 ubiquitin recycling
## 12204 ubiquitin-dependent endocytosis
## 12205 ubiquitin-dependent glycoprotein ERAD pathway
## 12206 ubiquitin-like protein transferase activity
## 12207 UDP catabolic process
## 12208 UDP phosphorylation
## 12209 UDP-glucose 4-epimerase activity
## 12210 UDP-glucose 6-dehydrogenase activity
## 12211 UDP-glucose catabolic process
## 12212 UDP-glucose metabolic process
## 12213 UDP-glucose:glycoprotein glucosyltransferase activity
## 12214 UDP-glucose:hexose-1-phosphate uridylyltransferase activity
## 12215 UDP-glucosylation
## 12216 UDP-glucosyltransferase activity
## 12217 UDP-glucuronate metabolic process
## 12218 UDP-glucuronic acid transmembrane transport
## 12219 UDP-glucuronic acid transmembrane transporter activity
## 12220 UDP-glycosyltransferase activity
## 12221 UDP-N-acetylgalactosamine diphosphorylase activity
## 12222 UDP-N-acetylgalactosamine transmembrane transport
## 12223 UDP-N-acetylgalactosamine transmembrane transporter activity
## 12224 UDP-N-acetylglucosamine 2-epimerase activity
## 12225 UDP-N-acetylglucosamine 4-epimerase activity
## 12226 UDP-N-acetylglucosamine catabolic process
## 12227 UDP-N-acetylglucosamine diphosphorylase activity
## 12228 UFD1-NPL4 complex
## 12229 UFM1 activating enzyme activity
## 12230 UFM1 ligase activity
## 12231 UFM1 transferase activity
## 12232 UMP biosynthetic process
## 12233 UMP kinase activity
## 12234 uniporter activity
## 12235 uracil binding
## 12236 uracil catabolic process
## 12237 uracil metabolic process
## 12238 urate metabolic process
## 12239 urate transmembrane transporter activity
## 12240 urate transport
## 12241 ureter development
## 12242 ureter maturation
## 12243 ureteric bud formation
## 12244 uridine transmembrane transporter activity
## 12245 uridine transport
## 12246 uridylate kinase activity
## 12247 urinary bladder smooth muscle contraction
## 12248 uropod organization
## 12249 uroporphyrinogen III biosynthetic process
## 12250 uroporphyrinogen-III synthase activity
## 12251 ursodeoxycholate 7-beta-dehydrogenase (NAD+) activity
## 12252 uterine gland development
## 12253 UTP diphosphatase activity
## 12254 UTP metabolic process
## 12255 UTP-C complex
## 12256 V2 vasopressin receptor binding
## 12257 vacuolar protein processing
## 12258 vacuolar sequestering
## 12259 vacuole-isolation membrane contact site
## 12260 vagina development
## 12261 valine metabolic process
## 12262 vascular associated smooth muscle cell differentiation
## 12263 vascular endothelial cell response to fluid shear stress
## 12264 vascular endothelial growth factor receptor-1 signaling pathway
## 12265 vascular endothelial growth factor receptor-2 signaling pathway
## 12266 vasopressin receptor activity
## 12267 VEGF-activated neuropilin signaling pathway
## 12268 ventral midline development
## 12269 ventral spinal cord interneuron differentiation
## 12270 ventricular cardiac muscle tissue development
## 12271 ventricular cardiac muscle tissue morphogenesis
## 12272 vertebrate eye-specific patterning
## 12273 very long-chain fatty-acyl-CoA catabolic process
## 12274 very long-chain fatty-acyl-CoA metabolic process
## 12275 very-long-chain enoyl-CoA reductase activity
## 12276 very-low-density lipoprotein particle assembly
## 12277 very-low-density lipoprotein particle clearance
## 12278 very-low-density lipoprotein particle receptor binding
## 12279 vesicle coat
## 12280 vesicle cytoskeletal trafficking
## 12281 vesicle localization
## 12282 vesicle targeting, trans-Golgi to periciliary membrane compartment
## 12283 vesicle tethering to endoplasmic reticulum
## 12284 vesicle uncoating
## 12285 vesicle-mediated cholesterol transport
## 12286 viral release from host cell
## 12287 viral RNA genome packaging
## 12288 virus maturation
## 12289 visual system development
## 12290 vitamin A metabolic process
## 12291 vitamin B6 binding
## 12292 vitamin D response element binding
## 12293 vitamin K catabolic process
## 12294 vitamin K metabolic process
## 12295 vitamin transmembrane transporter activity
## 12296 vitamin transport
## 12297 vitamin-K-epoxide reductase (warfarin-sensitive) activity
## 12298 vitellogenesis
## 12299 vocalization behavior
## 12300 voltage-gated calcium channel activity involved in positive regulation of presynaptic cytosolic calcium levels
## 12301 voltage-gated potassium channel activity involved in atrial cardiac muscle cell action potential repolarization
## 12302 voltage-gated proton channel activity
## 12303 walking behavior
## 12304 wax biosynthetic process
## 12305 WD40-repeat domain binding
## 12306 wide pore channel activity
## 12307 Wnt signaling pathway involved in midbrain dopaminergic neuron differentiation
## 12308 Wnt signaling pathway involved in somitogenesis
## 12309 Wnt signalosome assembly
## 12310 Wnt-Frizzled-LRP5/6 complex
## 12311 wound healing involved in inflammatory response
## 12312 XPC complex
## 12313 xylosylprotein 4-beta-galactosyltransferase activity
## 12314 xylulose metabolic process
## 12315 Y chromosome
## 12316 zonula adherens
## 12317 zygote asymmetric cell division
## 12318 zygotic specification of dorsal/ventral axis
## 12319 zymogen granule
## 12320 zymogen granule exocytosis
## 12321 protein binding
## n total perc namespace_1003
## 1 2532 5134 49.31827035 cellular_component
## 2 2521 5134 49.10401247 cellular_component
## 3 2421 5134 47.15621348 cellular_component
## 4 2180 5134 42.46201792 cellular_component
## 5 1750 5134 34.08648228 cellular_component
## 6 1287 5134 25.06817296 cellular_component
## 7 1280 5134 24.93182704 molecular_function
## 8 1180 5134 22.98402805 cellular_component
## 9 754 5134 14.68640436 molecular_function
## 10 737 5134 14.35527854 molecular_function
## 11 730 5134 14.21893261 molecular_function
## 12 721 5134 14.04363070 molecular_function
## 13 715 5134 13.92676276 cellular_component
## 14 640 5134 12.46591352 cellular_component
## 15 609 5134 11.86209583 molecular_function
## 16 593 5134 11.55044799 molecular_function
## 17 580 5134 11.29723413 molecular_function
## 18 547 5134 10.65446046 cellular_component
## 19 526 5134 10.24542267 cellular_component
## 20 524 5134 10.20646669 cellular_component
## 21 502 5134 9.77795092 biological_process
## 22 403 5134 7.84962992 cellular_component
## 23 403 5134 7.84962992 biological_process
## 24 402 5134 7.83015193 biological_process
## 25 397 5134 7.73276198 biological_process
## 26 375 5134 7.30424620 cellular_component
## 27 367 5134 7.14842228 cellular_component
## 28 361 5134 7.03155434 cellular_component
## 29 356 5134 6.93416439 biological_process
## 30 327 5134 6.36930269 molecular_function
## 31 320 5134 6.23295676 biological_process
## 32 313 5134 6.09661083 cellular_component
## 33 312 5134 6.07713284 biological_process
## 34 302 5134 5.88235294 molecular_function
## 35 302 5134 5.88235294 biological_process
## 36 298 5134 5.80444098 molecular_function
## 37 292 5134 5.68757304 cellular_component
## 38 285 5134 5.55122711 cellular_component
## 39 285 5134 5.55122711 cellular_component
## 40 285 5134 5.55122711 biological_process
## 41 281 5134 5.47331515 biological_process
## 42 279 5134 5.43435917 cellular_component
## 43 274 5134 5.33696922 cellular_component
## 44 271 5134 5.27853526 cellular_component
## 45 271 5134 5.27853526 molecular_function
## 46 269 5134 5.23957928 biological_process
## 47 265 5134 5.16166732 cellular_component
## 48 264 5134 5.14218933 cellular_component
## 49 261 5134 5.08375536 cellular_component
## 50 260 5134 5.06427737 biological_process
## 51 255 5134 4.96688742 cellular_component
## 52 250 5134 4.86949747 molecular_function
## 53 250 5134 4.86949747 biological_process
## 54 243 5134 4.73315154 biological_process
## 55 243 5134 4.73315154 molecular_function
## 56 238 5134 4.63576159 biological_process
## 57 233 5134 4.53837164 biological_process
## 58 233 5134 4.53837164 biological_process
## 59 232 5134 4.51889365 biological_process
## 60 221 5134 4.30463576 cellular_component
## 61 220 5134 4.28515777 molecular_function
## 62 213 5134 4.14881184 biological_process
## 63 210 5134 4.09037787 biological_process
## 64 203 5134 3.95403194 cellular_component
## 65 201 5134 3.91507596 molecular_function
## 66 200 5134 3.89559797 cellular_component
## 67 194 5134 3.77873004 cellular_component
## 68 193 5134 3.75925205 cellular_component
## 69 193 5134 3.75925205 molecular_function
## 70 191 5134 3.72029607 biological_process
## 71 190 5134 3.70081808 biological_process
## 72 188 5134 3.66186210 molecular_function
## 73 185 5134 3.60342813 biological_process
## 74 183 5134 3.56447215 molecular_function
## 75 181 5134 3.52551617 molecular_function
## 76 180 5134 3.50603818 cellular_component
## 77 177 5134 3.44760421 molecular_function
## 78 176 5134 3.42812622 biological_process
## 79 173 5134 3.36969225 cellular_component
## 80 172 5134 3.35021426 cellular_component
## 81 171 5134 3.33073627 cellular_component
## 82 170 5134 3.31125828 molecular_function
## 83 170 5134 3.31125828 molecular_function
## 84 169 5134 3.29178029 biological_process
## 85 168 5134 3.27230230 molecular_function
## 86 167 5134 3.25282431 biological_process
## 87 165 5134 3.21386833 biological_process
## 88 162 5134 3.15543436 biological_process
## 89 162 5134 3.15543436 molecular_function
## 90 160 5134 3.11647838 biological_process
## 91 159 5134 3.09700039 molecular_function
## 92 159 5134 3.09700039 biological_process
## 93 156 5134 3.03856642 biological_process
## 94 149 5134 2.90222049 molecular_function
## 95 149 5134 2.90222049 biological_process
## 96 148 5134 2.88274250 cellular_component
## 97 147 5134 2.86326451 molecular_function
## 98 145 5134 2.82430853 biological_process
## 99 144 5134 2.80483054 biological_process
## 100 143 5134 2.78535255 biological_process
## 101 141 5134 2.74639657 molecular_function
## 102 140 5134 2.72691858 biological_process
## 103 139 5134 2.70744059 biological_process
## 104 134 5134 2.61005064 cellular_component
## 105 134 5134 2.61005064 cellular_component
## 106 134 5134 2.61005064 cellular_component
## 107 134 5134 2.61005064 biological_process
## 108 133 5134 2.59057265 cellular_component
## 109 133 5134 2.59057265 biological_process
## 110 132 5134 2.57109466 molecular_function
## 111 132 5134 2.57109466 molecular_function
## 112 130 5134 2.53213868 biological_process
## 113 130 5134 2.53213868 molecular_function
## 114 128 5134 2.49318270 molecular_function
## 115 128 5134 2.49318270 biological_process
## 116 128 5134 2.49318270 molecular_function
## 117 128 5134 2.49318270 biological_process
## 118 127 5134 2.47370471 biological_process
## 119 127 5134 2.47370471 biological_process
## 120 127 5134 2.47370471 molecular_function
## 121 126 5134 2.45422672 biological_process
## 122 126 5134 2.45422672 biological_process
## 123 125 5134 2.43474873 biological_process
## 124 123 5134 2.39579275 molecular_function
## 125 123 5134 2.39579275 molecular_function
## 126 121 5134 2.35683677 cellular_component
## 127 121 5134 2.35683677 molecular_function
## 128 121 5134 2.35683677 cellular_component
## 129 119 5134 2.31788079 biological_process
## 130 119 5134 2.31788079 molecular_function
## 131 118 5134 2.29840280 biological_process
## 132 117 5134 2.27892481 molecular_function
## 133 116 5134 2.25944683 cellular_component
## 134 115 5134 2.23996884 molecular_function
## 135 114 5134 2.22049085 molecular_function
## 136 113 5134 2.20101286 biological_process
## 137 113 5134 2.20101286 molecular_function
## 138 111 5134 2.16205688 biological_process
## 139 111 5134 2.16205688 cellular_component
## 140 111 5134 2.16205688 biological_process
## 141 110 5134 2.14257889 biological_process
## 142 109 5134 2.12310090 cellular_component
## 143 109 5134 2.12310090 molecular_function
## 144 107 5134 2.08414492 cellular_component
## 145 106 5134 2.06466693 biological_process
## 146 106 5134 2.06466693 cellular_component
## 147 104 5134 2.02571095 biological_process
## 148 104 5134 2.02571095 molecular_function
## 149 103 5134 2.00623296 biological_process
## 150 102 5134 1.98675497 cellular_component
## 151 102 5134 1.98675497 molecular_function
## 152 100 5134 1.94779899 molecular_function
## 153 98 5134 1.90884301 biological_process
## 154 98 5134 1.90884301 biological_process
## 155 97 5134 1.88936502 cellular_component
## 156 96 5134 1.86988703 biological_process
## 157 94 5134 1.83093105 biological_process
## 158 94 5134 1.83093105 cellular_component
## 159 94 5134 1.83093105 molecular_function
## 160 93 5134 1.81145306 biological_process
## 161 93 5134 1.81145306 molecular_function
## 162 93 5134 1.81145306 biological_process
## 163 91 5134 1.77249708 cellular_component
## 164 91 5134 1.77249708 molecular_function
## 165 90 5134 1.75301909 molecular_function
## 166 90 5134 1.75301909 molecular_function
## 167 90 5134 1.75301909 biological_process
## 168 90 5134 1.75301909 cellular_component
## 169 89 5134 1.73354110 molecular_function
## 170 89 5134 1.73354110 cellular_component
## 171 89 5134 1.73354110 molecular_function
## 172 89 5134 1.73354110 cellular_component
## 173 89 5134 1.73354110 molecular_function
## 174 89 5134 1.73354110 biological_process
## 175 89 5134 1.73354110 biological_process
## 176 89 5134 1.73354110 molecular_function
## 177 88 5134 1.71406311 biological_process
## 178 87 5134 1.69458512 biological_process
## 179 86 5134 1.67510713 cellular_component
## 180 85 5134 1.65562914 cellular_component
## 181 84 5134 1.63615115 biological_process
## 182 84 5134 1.63615115 biological_process
## 183 84 5134 1.63615115 biological_process
## 184 84 5134 1.63615115 molecular_function
## 185 83 5134 1.61667316 biological_process
## 186 83 5134 1.61667316 biological_process
## 187 82 5134 1.59719517 biological_process
## 188 82 5134 1.59719517 molecular_function
## 189 81 5134 1.57771718 cellular_component
## 190 81 5134 1.57771718 cellular_component
## 191 81 5134 1.57771718 biological_process
## 192 81 5134 1.57771718 biological_process
## 193 80 5134 1.55823919 biological_process
## 194 80 5134 1.55823919 molecular_function
## 195 80 5134 1.55823919 cellular_component
## 196 80 5134 1.55823919 biological_process
## 197 80 5134 1.55823919 biological_process
## 198 80 5134 1.55823919 biological_process
## 199 79 5134 1.53876120 biological_process
## 200 79 5134 1.53876120 cellular_component
## 201 79 5134 1.53876120 biological_process
## 202 79 5134 1.53876120 cellular_component
## 203 79 5134 1.53876120 cellular_component
## 204 79 5134 1.53876120 molecular_function
## 205 78 5134 1.51928321 biological_process
## 206 78 5134 1.51928321 cellular_component
## 207 77 5134 1.49980522 biological_process
## 208 77 5134 1.49980522 biological_process
## 209 76 5134 1.48032723 biological_process
## 210 76 5134 1.48032723 cellular_component
## 211 76 5134 1.48032723 cellular_component
## 212 76 5134 1.48032723 cellular_component
## 213 75 5134 1.46084924 cellular_component
## 214 75 5134 1.46084924 biological_process
## 215 75 5134 1.46084924 biological_process
## 216 75 5134 1.46084924 biological_process
## 217 75 5134 1.46084924 biological_process
## 218 74 5134 1.44137125 biological_process
## 219 73 5134 1.42189326 biological_process
## 220 72 5134 1.40241527 biological_process
## 221 72 5134 1.40241527 biological_process
## 222 71 5134 1.38293728 biological_process
## 223 71 5134 1.38293728 cellular_component
## 224 71 5134 1.38293728 cellular_component
## 225 71 5134 1.38293728 cellular_component
## 226 70 5134 1.36345929 molecular_function
## 227 70 5134 1.36345929 cellular_component
## 228 70 5134 1.36345929 biological_process
## 229 70 5134 1.36345929 biological_process
## 230 70 5134 1.36345929 molecular_function
## 231 70 5134 1.36345929 molecular_function
## 232 69 5134 1.34398130 biological_process
## 233 69 5134 1.34398130 biological_process
## 234 68 5134 1.32450331 biological_process
## 235 67 5134 1.30502532 biological_process
## 236 66 5134 1.28554733 biological_process
## 237 66 5134 1.28554733 cellular_component
## 238 66 5134 1.28554733 cellular_component
## 239 66 5134 1.28554733 cellular_component
## 240 65 5134 1.26606934 cellular_component
## 241 65 5134 1.26606934 biological_process
## 242 65 5134 1.26606934 biological_process
## 243 64 5134 1.24659135 biological_process
## 244 63 5134 1.22711336 biological_process
## 245 63 5134 1.22711336 biological_process
## 246 63 5134 1.22711336 cellular_component
## 247 62 5134 1.20763537 cellular_component
## 248 62 5134 1.20763537 cellular_component
## 249 62 5134 1.20763537 cellular_component
## 250 62 5134 1.20763537 biological_process
## 251 62 5134 1.20763537 biological_process
## 252 61 5134 1.18815738 molecular_function
## 253 61 5134 1.18815738 biological_process
## 254 61 5134 1.18815738 molecular_function
## 255 61 5134 1.18815738 cellular_component
## 256 61 5134 1.18815738 biological_process
## 257 60 5134 1.16867939 biological_process
## 258 60 5134 1.16867939 molecular_function
## 259 60 5134 1.16867939 molecular_function
## 260 60 5134 1.16867939 biological_process
## 261 59 5134 1.14920140 biological_process
## 262 59 5134 1.14920140 molecular_function
## 263 59 5134 1.14920140 biological_process
## 264 58 5134 1.12972341 cellular_component
## 265 58 5134 1.12972341 cellular_component
## 266 58 5134 1.12972341 biological_process
## 267 57 5134 1.11024542 biological_process
## 268 57 5134 1.11024542 cellular_component
## 269 57 5134 1.11024542 cellular_component
## 270 57 5134 1.11024542 biological_process
## 271 57 5134 1.11024542 biological_process
## 272 57 5134 1.11024542 biological_process
## 273 56 5134 1.09076743 molecular_function
## 274 56 5134 1.09076743 biological_process
## 275 56 5134 1.09076743 biological_process
## 276 56 5134 1.09076743 molecular_function
## 277 55 5134 1.07128944 biological_process
## 278 55 5134 1.07128944 biological_process
## 279 55 5134 1.07128944 molecular_function
## 280 55 5134 1.07128944 molecular_function
## 281 55 5134 1.07128944 molecular_function
## 282 54 5134 1.05181145 cellular_component
## 283 54 5134 1.05181145 cellular_component
## 284 54 5134 1.05181145 biological_process
## 285 54 5134 1.05181145 molecular_function
## 286 54 5134 1.05181145 biological_process
## 287 54 5134 1.05181145 molecular_function
## 288 53 5134 1.03233346 cellular_component
## 289 53 5134 1.03233346 cellular_component
## 290 53 5134 1.03233346 cellular_component
## 291 52 5134 1.01285547 biological_process
## 292 52 5134 1.01285547 cellular_component
## 293 52 5134 1.01285547 cellular_component
## 294 52 5134 1.01285547 biological_process
## 295 52 5134 1.01285547 cellular_component
## 296 52 5134 1.01285547 biological_process
## 297 52 5134 1.01285547 biological_process
## 298 51 5134 0.99337748 biological_process
## 299 51 5134 0.99337748 cellular_component
## 300 51 5134 0.99337748 biological_process
## 301 51 5134 0.99337748 molecular_function
## 302 51 5134 0.99337748 molecular_function
## 303 51 5134 0.99337748 biological_process
## 304 50 5134 0.97389949 molecular_function
## 305 50 5134 0.97389949 cellular_component
## 306 50 5134 0.97389949 biological_process
## 307 50 5134 0.97389949 biological_process
## 308 50 5134 0.97389949 biological_process
## 309 50 5134 0.97389949 biological_process
## 310 50 5134 0.97389949 cellular_component
## 311 50 5134 0.97389949 biological_process
## 312 50 5134 0.97389949 molecular_function
## 313 49 5134 0.95442150 biological_process
## 314 49 5134 0.95442150 biological_process
## 315 49 5134 0.95442150 biological_process
## 316 49 5134 0.95442150 biological_process
## 317 49 5134 0.95442150 molecular_function
## 318 49 5134 0.95442150 biological_process
## 319 49 5134 0.95442150 biological_process
## 320 49 5134 0.95442150 molecular_function
## 321 49 5134 0.95442150 molecular_function
## 322 48 5134 0.93494351 biological_process
## 323 48 5134 0.93494351 cellular_component
## 324 48 5134 0.93494351 biological_process
## 325 48 5134 0.93494351 cellular_component
## 326 48 5134 0.93494351 biological_process
## 327 48 5134 0.93494351 cellular_component
## 328 47 5134 0.91546552 biological_process
## 329 47 5134 0.91546552 cellular_component
## 330 47 5134 0.91546552 biological_process
## 331 47 5134 0.91546552 biological_process
## 332 47 5134 0.91546552 biological_process
## 333 47 5134 0.91546552 cellular_component
## 334 47 5134 0.91546552 biological_process
## 335 47 5134 0.91546552 biological_process
## 336 47 5134 0.91546552 biological_process
## 337 46 5134 0.89598753 biological_process
## 338 46 5134 0.89598753 biological_process
## 339 46 5134 0.89598753 biological_process
## 340 46 5134 0.89598753 molecular_function
## 341 46 5134 0.89598753 biological_process
## 342 46 5134 0.89598753 molecular_function
## 343 46 5134 0.89598753 molecular_function
## 344 46 5134 0.89598753 biological_process
## 345 45 5134 0.87650954 biological_process
## 346 45 5134 0.87650954 molecular_function
## 347 45 5134 0.87650954 biological_process
## 348 44 5134 0.85703155 molecular_function
## 349 44 5134 0.85703155 biological_process
## 350 44 5134 0.85703155 biological_process
## 351 44 5134 0.85703155 biological_process
## 352 44 5134 0.85703155 biological_process
## 353 44 5134 0.85703155 biological_process
## 354 43 5134 0.83755356 biological_process
## 355 43 5134 0.83755356 biological_process
## 356 43 5134 0.83755356 biological_process
## 357 43 5134 0.83755356 molecular_function
## 358 43 5134 0.83755356 molecular_function
## 359 43 5134 0.83755356 biological_process
## 360 43 5134 0.83755356 biological_process
## 361 43 5134 0.83755356 biological_process
## 362 43 5134 0.83755356 biological_process
## 363 42 5134 0.81807557 biological_process
## 364 42 5134 0.81807557 cellular_component
## 365 42 5134 0.81807557 molecular_function
## 366 42 5134 0.81807557 biological_process
## 367 42 5134 0.81807557 biological_process
## 368 42 5134 0.81807557 cellular_component
## 369 42 5134 0.81807557 molecular_function
## 370 41 5134 0.79859758 cellular_component
## 371 41 5134 0.79859758 molecular_function
## 372 41 5134 0.79859758 cellular_component
## 373 41 5134 0.79859758 molecular_function
## 374 41 5134 0.79859758 biological_process
## 375 41 5134 0.79859758 biological_process
## 376 41 5134 0.79859758 cellular_component
## 377 41 5134 0.79859758 molecular_function
## 378 41 5134 0.79859758 cellular_component
## 379 40 5134 0.77911959 biological_process
## 380 40 5134 0.77911959 cellular_component
## 381 40 5134 0.77911959 molecular_function
## 382 40 5134 0.77911959 cellular_component
## 383 40 5134 0.77911959 biological_process
## 384 40 5134 0.77911959 molecular_function
## 385 40 5134 0.77911959 biological_process
## 386 40 5134 0.77911959 biological_process
## 387 40 5134 0.77911959 biological_process
## 388 40 5134 0.77911959 cellular_component
## 389 40 5134 0.77911959 biological_process
## 390 40 5134 0.77911959 molecular_function
## 391 39 5134 0.75964160 biological_process
## 392 39 5134 0.75964160 cellular_component
## 393 39 5134 0.75964160 molecular_function
## 394 39 5134 0.75964160 cellular_component
## 395 39 5134 0.75964160 cellular_component
## 396 39 5134 0.75964160 biological_process
## 397 39 5134 0.75964160 biological_process
## 398 39 5134 0.75964160 biological_process
## 399 39 5134 0.75964160 biological_process
## 400 39 5134 0.75964160 biological_process
## 401 39 5134 0.75964160 cellular_component
## 402 39 5134 0.75964160 biological_process
## 403 38 5134 0.74016362 cellular_component
## 404 38 5134 0.74016362 molecular_function
## 405 38 5134 0.74016362 molecular_function
## 406 38 5134 0.74016362 biological_process
## 407 38 5134 0.74016362 biological_process
## 408 38 5134 0.74016362 biological_process
## 409 38 5134 0.74016362 biological_process
## 410 38 5134 0.74016362 molecular_function
## 411 38 5134 0.74016362 cellular_component
## 412 38 5134 0.74016362 biological_process
## 413 38 5134 0.74016362 molecular_function
## 414 37 5134 0.72068563 cellular_component
## 415 37 5134 0.72068563 molecular_function
## 416 37 5134 0.72068563 biological_process
## 417 37 5134 0.72068563 biological_process
## 418 37 5134 0.72068563 cellular_component
## 419 37 5134 0.72068563 biological_process
## 420 37 5134 0.72068563 biological_process
## 421 37 5134 0.72068563 cellular_component
## 422 37 5134 0.72068563 cellular_component
## 423 37 5134 0.72068563 biological_process
## 424 37 5134 0.72068563 cellular_component
## 425 37 5134 0.72068563 cellular_component
## 426 37 5134 0.72068563 molecular_function
## 427 37 5134 0.72068563 biological_process
## 428 36 5134 0.70120764 biological_process
## 429 36 5134 0.70120764 biological_process
## 430 36 5134 0.70120764 cellular_component
## 431 36 5134 0.70120764 cellular_component
## 432 36 5134 0.70120764 biological_process
## 433 36 5134 0.70120764 biological_process
## 434 36 5134 0.70120764 biological_process
## 435 36 5134 0.70120764 biological_process
## 436 36 5134 0.70120764 biological_process
## 437 36 5134 0.70120764 biological_process
## 438 36 5134 0.70120764 molecular_function
## 439 36 5134 0.70120764 biological_process
## 440 36 5134 0.70120764 molecular_function
## 441 36 5134 0.70120764 cellular_component
## 442 36 5134 0.70120764 biological_process
## 443 35 5134 0.68172965 biological_process
## 444 35 5134 0.68172965 biological_process
## 445 35 5134 0.68172965 biological_process
## 446 35 5134 0.68172965 cellular_component
## 447 35 5134 0.68172965 biological_process
## 448 35 5134 0.68172965 molecular_function
## 449 35 5134 0.68172965 biological_process
## 450 35 5134 0.68172965 biological_process
## 451 35 5134 0.68172965 biological_process
## 452 35 5134 0.68172965 biological_process
## 453 35 5134 0.68172965 biological_process
## 454 35 5134 0.68172965 biological_process
## 455 35 5134 0.68172965 biological_process
## 456 35 5134 0.68172965 biological_process
## 457 34 5134 0.66225166 biological_process
## 458 34 5134 0.66225166 biological_process
## 459 34 5134 0.66225166 biological_process
## 460 34 5134 0.66225166 molecular_function
## 461 34 5134 0.66225166 biological_process
## 462 34 5134 0.66225166 biological_process
## 463 34 5134 0.66225166 biological_process
## 464 34 5134 0.66225166 biological_process
## 465 34 5134 0.66225166 biological_process
## 466 34 5134 0.66225166 biological_process
## 467 34 5134 0.66225166 cellular_component
## 468 34 5134 0.66225166 biological_process
## 469 34 5134 0.66225166 biological_process
## 470 33 5134 0.64277367 biological_process
## 471 33 5134 0.64277367 cellular_component
## 472 33 5134 0.64277367 molecular_function
## 473 33 5134 0.64277367 biological_process
## 474 33 5134 0.64277367 molecular_function
## 475 33 5134 0.64277367 biological_process
## 476 33 5134 0.64277367 cellular_component
## 477 33 5134 0.64277367 biological_process
## 478 33 5134 0.64277367 molecular_function
## 479 33 5134 0.64277367 molecular_function
## 480 33 5134 0.64277367 cellular_component
## 481 32 5134 0.62329568 biological_process
## 482 32 5134 0.62329568 molecular_function
## 483 32 5134 0.62329568 molecular_function
## 484 32 5134 0.62329568 cellular_component
## 485 32 5134 0.62329568 biological_process
## 486 32 5134 0.62329568 biological_process
## 487 32 5134 0.62329568 biological_process
## 488 32 5134 0.62329568 cellular_component
## 489 32 5134 0.62329568 molecular_function
## 490 32 5134 0.62329568 biological_process
## 491 32 5134 0.62329568 biological_process
## 492 32 5134 0.62329568 biological_process
## 493 32 5134 0.62329568 biological_process
## 494 32 5134 0.62329568 biological_process
## 495 31 5134 0.60381769 biological_process
## 496 31 5134 0.60381769 biological_process
## 497 31 5134 0.60381769 biological_process
## 498 31 5134 0.60381769 biological_process
## 499 31 5134 0.60381769 biological_process
## 500 31 5134 0.60381769 cellular_component
## 501 31 5134 0.60381769 biological_process
## 502 31 5134 0.60381769 biological_process
## 503 31 5134 0.60381769 biological_process
## 504 31 5134 0.60381769 biological_process
## 505 31 5134 0.60381769 biological_process
## 506 31 5134 0.60381769 cellular_component
## 507 31 5134 0.60381769 biological_process
## 508 31 5134 0.60381769 biological_process
## 509 31 5134 0.60381769 cellular_component
## 510 31 5134 0.60381769 cellular_component
## 511 31 5134 0.60381769 biological_process
## 512 30 5134 0.58433970 biological_process
## 513 30 5134 0.58433970 cellular_component
## 514 30 5134 0.58433970 biological_process
## 515 30 5134 0.58433970 cellular_component
## 516 30 5134 0.58433970 biological_process
## 517 30 5134 0.58433970 biological_process
## 518 30 5134 0.58433970 molecular_function
## 519 30 5134 0.58433970 biological_process
## 520 30 5134 0.58433970 cellular_component
## 521 30 5134 0.58433970 cellular_component
## 522 30 5134 0.58433970 biological_process
## 523 30 5134 0.58433970 biological_process
## 524 30 5134 0.58433970 biological_process
## 525 30 5134 0.58433970 molecular_function
## 526 30 5134 0.58433970 biological_process
## 527 30 5134 0.58433970 biological_process
## 528 30 5134 0.58433970 biological_process
## 529 30 5134 0.58433970 molecular_function
## 530 30 5134 0.58433970 cellular_component
## 531 30 5134 0.58433970 biological_process
## 532 29 5134 0.56486171 cellular_component
## 533 29 5134 0.56486171 biological_process
## 534 29 5134 0.56486171 biological_process
## 535 29 5134 0.56486171 biological_process
## 536 29 5134 0.56486171 biological_process
## 537 29 5134 0.56486171 biological_process
## 538 29 5134 0.56486171 cellular_component
## 539 29 5134 0.56486171 biological_process
## 540 29 5134 0.56486171 cellular_component
## 541 29 5134 0.56486171 biological_process
## 542 29 5134 0.56486171 biological_process
## 543 29 5134 0.56486171 biological_process
## 544 29 5134 0.56486171 molecular_function
## 545 29 5134 0.56486171 biological_process
## 546 29 5134 0.56486171 biological_process
## 547 29 5134 0.56486171 biological_process
## 548 29 5134 0.56486171 biological_process
## 549 29 5134 0.56486171 biological_process
## 550 29 5134 0.56486171 biological_process
## 551 29 5134 0.56486171 cellular_component
## 552 28 5134 0.54538372 cellular_component
## 553 28 5134 0.54538372 cellular_component
## 554 28 5134 0.54538372 biological_process
## 555 28 5134 0.54538372 biological_process
## 556 28 5134 0.54538372 molecular_function
## 557 28 5134 0.54538372 biological_process
## 558 28 5134 0.54538372 molecular_function
## 559 28 5134 0.54538372 biological_process
## 560 28 5134 0.54538372 biological_process
## 561 28 5134 0.54538372 biological_process
## 562 28 5134 0.54538372 biological_process
## 563 28 5134 0.54538372 biological_process
## 564 28 5134 0.54538372 biological_process
## 565 28 5134 0.54538372 biological_process
## 566 28 5134 0.54538372 biological_process
## 567 28 5134 0.54538372 biological_process
## 568 28 5134 0.54538372 biological_process
## 569 28 5134 0.54538372 biological_process
## 570 28 5134 0.54538372 biological_process
## 571 28 5134 0.54538372 biological_process
## 572 28 5134 0.54538372 cellular_component
## 573 28 5134 0.54538372 biological_process
## 574 28 5134 0.54538372 biological_process
## 575 28 5134 0.54538372 biological_process
## 576 28 5134 0.54538372 molecular_function
## 577 28 5134 0.54538372 molecular_function
## 578 27 5134 0.52590573 cellular_component
## 579 27 5134 0.52590573 biological_process
## 580 27 5134 0.52590573 biological_process
## 581 27 5134 0.52590573 biological_process
## 582 27 5134 0.52590573 biological_process
## 583 27 5134 0.52590573 biological_process
## 584 27 5134 0.52590573 cellular_component
## 585 27 5134 0.52590573 biological_process
## 586 27 5134 0.52590573 cellular_component
## 587 27 5134 0.52590573 cellular_component
## 588 27 5134 0.52590573 biological_process
## 589 27 5134 0.52590573 biological_process
## 590 27 5134 0.52590573 biological_process
## 591 27 5134 0.52590573 cellular_component
## 592 27 5134 0.52590573 biological_process
## 593 27 5134 0.52590573 biological_process
## 594 27 5134 0.52590573 biological_process
## 595 27 5134 0.52590573 biological_process
## 596 27 5134 0.52590573 biological_process
## 597 27 5134 0.52590573 biological_process
## 598 27 5134 0.52590573 biological_process
## 599 27 5134 0.52590573 biological_process
## 600 27 5134 0.52590573 cellular_component
## 601 26 5134 0.50642774 molecular_function
## 602 26 5134 0.50642774 biological_process
## 603 26 5134 0.50642774 cellular_component
## 604 26 5134 0.50642774 biological_process
## 605 26 5134 0.50642774 biological_process
## 606 26 5134 0.50642774 biological_process
## 607 26 5134 0.50642774 biological_process
## 608 26 5134 0.50642774 molecular_function
## 609 26 5134 0.50642774 biological_process
## 610 26 5134 0.50642774 biological_process
## 611 26 5134 0.50642774 biological_process
## 612 26 5134 0.50642774 biological_process
## 613 26 5134 0.50642774 biological_process
## 614 26 5134 0.50642774 molecular_function
## 615 26 5134 0.50642774 biological_process
## 616 26 5134 0.50642774 biological_process
## 617 26 5134 0.50642774 biological_process
## 618 26 5134 0.50642774 biological_process
## 619 26 5134 0.50642774 molecular_function
## 620 26 5134 0.50642774 cellular_component
## 621 26 5134 0.50642774 biological_process
## 622 26 5134 0.50642774 biological_process
## 623 26 5134 0.50642774 cellular_component
## 624 26 5134 0.50642774 biological_process
## 625 26 5134 0.50642774 biological_process
## 626 26 5134 0.50642774 molecular_function
## 627 26 5134 0.50642774 biological_process
## 628 26 5134 0.50642774 cellular_component
## 629 26 5134 0.50642774 biological_process
## 630 25 5134 0.48694975 molecular_function
## 631 25 5134 0.48694975 biological_process
## 632 25 5134 0.48694975 biological_process
## 633 25 5134 0.48694975 biological_process
## 634 25 5134 0.48694975 cellular_component
## 635 25 5134 0.48694975 molecular_function
## 636 25 5134 0.48694975 cellular_component
## 637 25 5134 0.48694975 biological_process
## 638 25 5134 0.48694975 biological_process
## 639 25 5134 0.48694975 cellular_component
## 640 25 5134 0.48694975 cellular_component
## 641 25 5134 0.48694975 molecular_function
## 642 25 5134 0.48694975 biological_process
## 643 25 5134 0.48694975 biological_process
## 644 25 5134 0.48694975 molecular_function
## 645 25 5134 0.48694975 biological_process
## 646 25 5134 0.48694975 biological_process
## 647 25 5134 0.48694975 cellular_component
## 648 25 5134 0.48694975 biological_process
## 649 25 5134 0.48694975 cellular_component
## 650 25 5134 0.48694975 biological_process
## 651 25 5134 0.48694975 biological_process
## 652 25 5134 0.48694975 biological_process
## 653 25 5134 0.48694975 biological_process
## 654 25 5134 0.48694975 molecular_function
## 655 25 5134 0.48694975 molecular_function
## 656 25 5134 0.48694975 cellular_component
## 657 25 5134 0.48694975 biological_process
## 658 25 5134 0.48694975 biological_process
## 659 25 5134 0.48694975 biological_process
## 660 25 5134 0.48694975 biological_process
## 661 25 5134 0.48694975 biological_process
## 662 25 5134 0.48694975 molecular_function
## 663 25 5134 0.48694975 biological_process
## 664 25 5134 0.48694975 biological_process
## 665 25 5134 0.48694975 biological_process
## 666 25 5134 0.48694975 biological_process
## 667 25 5134 0.48694975 cellular_component
## 668 25 5134 0.48694975 cellular_component
## 669 25 5134 0.48694975 cellular_component
## 670 25 5134 0.48694975 cellular_component
## 671 25 5134 0.48694975 molecular_function
## 672 24 5134 0.46747176 biological_process
## 673 24 5134 0.46747176 molecular_function
## 674 24 5134 0.46747176 cellular_component
## 675 24 5134 0.46747176 cellular_component
## 676 24 5134 0.46747176 biological_process
## 677 24 5134 0.46747176 molecular_function
## 678 24 5134 0.46747176 biological_process
## 679 24 5134 0.46747176 molecular_function
## 680 24 5134 0.46747176 cellular_component
## 681 24 5134 0.46747176 biological_process
## 682 24 5134 0.46747176 molecular_function
## 683 24 5134 0.46747176 biological_process
## 684 24 5134 0.46747176 biological_process
## 685 24 5134 0.46747176 biological_process
## 686 24 5134 0.46747176 biological_process
## 687 24 5134 0.46747176 cellular_component
## 688 24 5134 0.46747176 biological_process
## 689 24 5134 0.46747176 molecular_function
## 690 24 5134 0.46747176 biological_process
## 691 24 5134 0.46747176 biological_process
## 692 24 5134 0.46747176 biological_process
## 693 23 5134 0.44799377 molecular_function
## 694 23 5134 0.44799377 cellular_component
## 695 23 5134 0.44799377 biological_process
## 696 23 5134 0.44799377 biological_process
## 697 23 5134 0.44799377 biological_process
## 698 23 5134 0.44799377 biological_process
## 699 23 5134 0.44799377 biological_process
## 700 23 5134 0.44799377 cellular_component
## 701 23 5134 0.44799377 cellular_component
## 702 23 5134 0.44799377 biological_process
## 703 23 5134 0.44799377 cellular_component
## 704 23 5134 0.44799377 biological_process
## 705 23 5134 0.44799377 molecular_function
## 706 23 5134 0.44799377 biological_process
## 707 23 5134 0.44799377 molecular_function
## 708 23 5134 0.44799377 biological_process
## 709 23 5134 0.44799377 biological_process
## 710 23 5134 0.44799377 biological_process
## 711 23 5134 0.44799377 biological_process
## 712 23 5134 0.44799377 biological_process
## 713 23 5134 0.44799377 biological_process
## 714 23 5134 0.44799377 biological_process
## 715 23 5134 0.44799377 molecular_function
## 716 23 5134 0.44799377 biological_process
## 717 23 5134 0.44799377 molecular_function
## 718 23 5134 0.44799377 molecular_function
## 719 23 5134 0.44799377 cellular_component
## 720 22 5134 0.42851578 biological_process
## 721 22 5134 0.42851578 cellular_component
## 722 22 5134 0.42851578 biological_process
## 723 22 5134 0.42851578 biological_process
## 724 22 5134 0.42851578 biological_process
## 725 22 5134 0.42851578 molecular_function
## 726 22 5134 0.42851578 molecular_function
## 727 22 5134 0.42851578 molecular_function
## 728 22 5134 0.42851578 molecular_function
## 729 22 5134 0.42851578 molecular_function
## 730 22 5134 0.42851578 biological_process
## 731 22 5134 0.42851578 biological_process
## 732 22 5134 0.42851578 molecular_function
## 733 22 5134 0.42851578 biological_process
## 734 22 5134 0.42851578 molecular_function
## 735 22 5134 0.42851578 biological_process
## 736 22 5134 0.42851578 biological_process
## 737 22 5134 0.42851578 cellular_component
## 738 22 5134 0.42851578 biological_process
## 739 22 5134 0.42851578 biological_process
## 740 22 5134 0.42851578 biological_process
## 741 22 5134 0.42851578 biological_process
## 742 22 5134 0.42851578 biological_process
## 743 22 5134 0.42851578 biological_process
## 744 22 5134 0.42851578 biological_process
## 745 22 5134 0.42851578 biological_process
## 746 22 5134 0.42851578 biological_process
## 747 22 5134 0.42851578 biological_process
## 748 22 5134 0.42851578 biological_process
## 749 22 5134 0.42851578 biological_process
## 750 22 5134 0.42851578 biological_process
## 751 22 5134 0.42851578 biological_process
## 752 22 5134 0.42851578 biological_process
## 753 22 5134 0.42851578 molecular_function
## 754 22 5134 0.42851578 cellular_component
## 755 22 5134 0.42851578 molecular_function
## 756 22 5134 0.42851578 biological_process
## 757 22 5134 0.42851578 cellular_component
## 758 22 5134 0.42851578 biological_process
## 759 22 5134 0.42851578 cellular_component
## 760 22 5134 0.42851578 molecular_function
## 761 21 5134 0.40903779 molecular_function
## 762 21 5134 0.40903779 biological_process
## 763 21 5134 0.40903779 cellular_component
## 764 21 5134 0.40903779 biological_process
## 765 21 5134 0.40903779 molecular_function
## 766 21 5134 0.40903779 biological_process
## 767 21 5134 0.40903779 cellular_component
## 768 21 5134 0.40903779 cellular_component
## 769 21 5134 0.40903779 molecular_function
## 770 21 5134 0.40903779 molecular_function
## 771 21 5134 0.40903779 molecular_function
## 772 21 5134 0.40903779 biological_process
## 773 21 5134 0.40903779 biological_process
## 774 21 5134 0.40903779 biological_process
## 775 21 5134 0.40903779 biological_process
## 776 21 5134 0.40903779 biological_process
## 777 21 5134 0.40903779 cellular_component
## 778 21 5134 0.40903779 biological_process
## 779 21 5134 0.40903779 biological_process
## 780 21 5134 0.40903779 biological_process
## 781 21 5134 0.40903779 biological_process
## 782 21 5134 0.40903779 biological_process
## 783 21 5134 0.40903779 biological_process
## 784 21 5134 0.40903779 biological_process
## 785 21 5134 0.40903779 biological_process
## 786 21 5134 0.40903779 biological_process
## 787 21 5134 0.40903779 biological_process
## 788 20 5134 0.38955980 biological_process
## 789 20 5134 0.38955980 molecular_function
## 790 20 5134 0.38955980 biological_process
## 791 20 5134 0.38955980 biological_process
## 792 20 5134 0.38955980 biological_process
## 793 20 5134 0.38955980 biological_process
## 794 20 5134 0.38955980 biological_process
## 795 20 5134 0.38955980 biological_process
## 796 20 5134 0.38955980 biological_process
## 797 20 5134 0.38955980 cellular_component
## 798 20 5134 0.38955980 biological_process
## 799 20 5134 0.38955980 biological_process
## 800 20 5134 0.38955980 biological_process
## 801 20 5134 0.38955980 molecular_function
## 802 20 5134 0.38955980 biological_process
## 803 20 5134 0.38955980 biological_process
## 804 20 5134 0.38955980 biological_process
## 805 20 5134 0.38955980 cellular_component
## 806 20 5134 0.38955980 molecular_function
## 807 20 5134 0.38955980 cellular_component
## 808 20 5134 0.38955980 biological_process
## 809 20 5134 0.38955980 biological_process
## 810 20 5134 0.38955980 biological_process
## 811 20 5134 0.38955980 cellular_component
## 812 20 5134 0.38955980 molecular_function
## 813 20 5134 0.38955980 molecular_function
## 814 20 5134 0.38955980 cellular_component
## 815 20 5134 0.38955980 biological_process
## 816 20 5134 0.38955980 biological_process
## 817 20 5134 0.38955980 biological_process
## 818 20 5134 0.38955980 biological_process
## 819 20 5134 0.38955980 biological_process
## 820 20 5134 0.38955980 biological_process
## 821 20 5134 0.38955980 molecular_function
## 822 20 5134 0.38955980 molecular_function
## 823 20 5134 0.38955980 biological_process
## 824 20 5134 0.38955980 biological_process
## 825 20 5134 0.38955980 biological_process
## 826 20 5134 0.38955980 cellular_component
## 827 20 5134 0.38955980 biological_process
## 828 20 5134 0.38955980 molecular_function
## 829 20 5134 0.38955980 biological_process
## 830 20 5134 0.38955980 molecular_function
## 831 20 5134 0.38955980 biological_process
## 832 20 5134 0.38955980 biological_process
## 833 20 5134 0.38955980 biological_process
## 834 20 5134 0.38955980 biological_process
## 835 20 5134 0.38955980 molecular_function
## 836 20 5134 0.38955980 cellular_component
## 837 20 5134 0.38955980 biological_process
## 838 20 5134 0.38955980 biological_process
## 839 20 5134 0.38955980 biological_process
## 840 20 5134 0.38955980 molecular_function
## 841 20 5134 0.38955980 biological_process
## 842 20 5134 0.38955980 biological_process
## 843 20 5134 0.38955980 biological_process
## 844 20 5134 0.38955980 cellular_component
## 845 19 5134 0.37008181 biological_process
## 846 19 5134 0.37008181 biological_process
## 847 19 5134 0.37008181 molecular_function
## 848 19 5134 0.37008181 cellular_component
## 849 19 5134 0.37008181 biological_process
## 850 19 5134 0.37008181 cellular_component
## 851 19 5134 0.37008181 cellular_component
## 852 19 5134 0.37008181 biological_process
## 853 19 5134 0.37008181 cellular_component
## 854 19 5134 0.37008181 molecular_function
## 855 19 5134 0.37008181 biological_process
## 856 19 5134 0.37008181 biological_process
## 857 19 5134 0.37008181 molecular_function
## 858 19 5134 0.37008181 biological_process
## 859 19 5134 0.37008181 biological_process
## 860 19 5134 0.37008181 biological_process
## 861 19 5134 0.37008181 biological_process
## 862 19 5134 0.37008181 biological_process
## 863 19 5134 0.37008181 molecular_function
## 864 19 5134 0.37008181 biological_process
## 865 19 5134 0.37008181 molecular_function
## 866 19 5134 0.37008181 biological_process
## 867 19 5134 0.37008181 biological_process
## 868 19 5134 0.37008181 cellular_component
## 869 19 5134 0.37008181 cellular_component
## 870 19 5134 0.37008181 biological_process
## 871 19 5134 0.37008181 biological_process
## 872 19 5134 0.37008181 molecular_function
## 873 19 5134 0.37008181 biological_process
## 874 19 5134 0.37008181 biological_process
## 875 19 5134 0.37008181 cellular_component
## 876 19 5134 0.37008181 molecular_function
## 877 19 5134 0.37008181 biological_process
## 878 19 5134 0.37008181 biological_process
## 879 19 5134 0.37008181 biological_process
## 880 19 5134 0.37008181 biological_process
## 881 19 5134 0.37008181 biological_process
## 882 19 5134 0.37008181 biological_process
## 883 19 5134 0.37008181 biological_process
## 884 19 5134 0.37008181 biological_process
## 885 19 5134 0.37008181 molecular_function
## 886 19 5134 0.37008181 molecular_function
## 887 19 5134 0.37008181 biological_process
## 888 19 5134 0.37008181 molecular_function
## 889 19 5134 0.37008181 biological_process
## 890 19 5134 0.37008181 biological_process
## 891 19 5134 0.37008181 biological_process
## 892 19 5134 0.37008181 biological_process
## 893 19 5134 0.37008181 cellular_component
## 894 18 5134 0.35060382 cellular_component
## 895 18 5134 0.35060382 biological_process
## 896 18 5134 0.35060382 biological_process
## 897 18 5134 0.35060382 biological_process
## 898 18 5134 0.35060382 biological_process
## 899 18 5134 0.35060382 cellular_component
## 900 18 5134 0.35060382 biological_process
## 901 18 5134 0.35060382 cellular_component
## 902 18 5134 0.35060382 biological_process
## 903 18 5134 0.35060382 cellular_component
## 904 18 5134 0.35060382 cellular_component
## 905 18 5134 0.35060382 cellular_component
## 906 18 5134 0.35060382 molecular_function
## 907 18 5134 0.35060382 biological_process
## 908 18 5134 0.35060382 molecular_function
## 909 18 5134 0.35060382 cellular_component
## 910 18 5134 0.35060382 biological_process
## 911 18 5134 0.35060382 cellular_component
## 912 18 5134 0.35060382 biological_process
## 913 18 5134 0.35060382 biological_process
## 914 18 5134 0.35060382 biological_process
## 915 18 5134 0.35060382 biological_process
## 916 18 5134 0.35060382 molecular_function
## 917 18 5134 0.35060382 biological_process
## 918 18 5134 0.35060382 molecular_function
## 919 18 5134 0.35060382 biological_process
## 920 18 5134 0.35060382 biological_process
## 921 18 5134 0.35060382 biological_process
## 922 18 5134 0.35060382 biological_process
## 923 18 5134 0.35060382 biological_process
## 924 18 5134 0.35060382 biological_process
## 925 18 5134 0.35060382 biological_process
## 926 18 5134 0.35060382 biological_process
## 927 18 5134 0.35060382 biological_process
## 928 18 5134 0.35060382 molecular_function
## 929 18 5134 0.35060382 biological_process
## 930 18 5134 0.35060382 biological_process
## 931 18 5134 0.35060382 molecular_function
## 932 18 5134 0.35060382 biological_process
## 933 18 5134 0.35060382 biological_process
## 934 18 5134 0.35060382 biological_process
## 935 18 5134 0.35060382 biological_process
## 936 18 5134 0.35060382 molecular_function
## 937 18 5134 0.35060382 molecular_function
## 938 18 5134 0.35060382 biological_process
## 939 18 5134 0.35060382 biological_process
## 940 18 5134 0.35060382 molecular_function
## 941 18 5134 0.35060382 cellular_component
## 942 17 5134 0.33112583 molecular_function
## 943 17 5134 0.33112583 biological_process
## 944 17 5134 0.33112583 biological_process
## 945 17 5134 0.33112583 biological_process
## 946 17 5134 0.33112583 biological_process
## 947 17 5134 0.33112583 biological_process
## 948 17 5134 0.33112583 biological_process
## 949 17 5134 0.33112583 molecular_function
## 950 17 5134 0.33112583 biological_process
## 951 17 5134 0.33112583 cellular_component
## 952 17 5134 0.33112583 biological_process
## 953 17 5134 0.33112583 molecular_function
## 954 17 5134 0.33112583 molecular_function
## 955 17 5134 0.33112583 biological_process
## 956 17 5134 0.33112583 molecular_function
## 957 17 5134 0.33112583 biological_process
## 958 17 5134 0.33112583 cellular_component
## 959 17 5134 0.33112583 cellular_component
## 960 17 5134 0.33112583 biological_process
## 961 17 5134 0.33112583 biological_process
## 962 17 5134 0.33112583 molecular_function
## 963 17 5134 0.33112583 cellular_component
## 964 17 5134 0.33112583 biological_process
## 965 17 5134 0.33112583 biological_process
## 966 17 5134 0.33112583 cellular_component
## 967 17 5134 0.33112583 biological_process
## 968 17 5134 0.33112583 molecular_function
## 969 17 5134 0.33112583 biological_process
## 970 17 5134 0.33112583 molecular_function
## 971 17 5134 0.33112583 biological_process
## 972 17 5134 0.33112583 biological_process
## 973 17 5134 0.33112583 biological_process
## 974 17 5134 0.33112583 biological_process
## 975 17 5134 0.33112583 biological_process
## 976 17 5134 0.33112583 biological_process
## 977 17 5134 0.33112583 biological_process
## 978 17 5134 0.33112583 biological_process
## 979 17 5134 0.33112583 biological_process
## 980 17 5134 0.33112583 biological_process
## 981 17 5134 0.33112583 biological_process
## 982 17 5134 0.33112583 biological_process
## 983 17 5134 0.33112583 molecular_function
## 984 17 5134 0.33112583 cellular_component
## 985 17 5134 0.33112583 molecular_function
## 986 17 5134 0.33112583 biological_process
## 987 17 5134 0.33112583 biological_process
## 988 17 5134 0.33112583 molecular_function
## 989 17 5134 0.33112583 biological_process
## 990 16 5134 0.31164784 molecular_function
## 991 16 5134 0.31164784 molecular_function
## 992 16 5134 0.31164784 molecular_function
## 993 16 5134 0.31164784 cellular_component
## 994 16 5134 0.31164784 cellular_component
## 995 16 5134 0.31164784 biological_process
## 996 16 5134 0.31164784 biological_process
## 997 16 5134 0.31164784 biological_process
## 998 16 5134 0.31164784 biological_process
## 999 16 5134 0.31164784 biological_process
## 1000 16 5134 0.31164784 biological_process
## 1001 16 5134 0.31164784 biological_process
## 1002 16 5134 0.31164784 biological_process
## 1003 16 5134 0.31164784 molecular_function
## 1004 16 5134 0.31164784 biological_process
## 1005 16 5134 0.31164784 biological_process
## 1006 16 5134 0.31164784 biological_process
## 1007 16 5134 0.31164784 biological_process
## 1008 16 5134 0.31164784 molecular_function
## 1009 16 5134 0.31164784 biological_process
## 1010 16 5134 0.31164784 cellular_component
## 1011 16 5134 0.31164784 biological_process
## 1012 16 5134 0.31164784 biological_process
## 1013 16 5134 0.31164784 biological_process
## 1014 16 5134 0.31164784 cellular_component
## 1015 16 5134 0.31164784 biological_process
## 1016 16 5134 0.31164784 biological_process
## 1017 16 5134 0.31164784 molecular_function
## 1018 16 5134 0.31164784 molecular_function
## 1019 16 5134 0.31164784 biological_process
## 1020 16 5134 0.31164784 biological_process
## 1021 16 5134 0.31164784 biological_process
## 1022 16 5134 0.31164784 biological_process
## 1023 16 5134 0.31164784 molecular_function
## 1024 16 5134 0.31164784 molecular_function
## 1025 16 5134 0.31164784 molecular_function
## 1026 16 5134 0.31164784 molecular_function
## 1027 16 5134 0.31164784 biological_process
## 1028 16 5134 0.31164784 biological_process
## 1029 16 5134 0.31164784 cellular_component
## 1030 16 5134 0.31164784 molecular_function
## 1031 16 5134 0.31164784 biological_process
## 1032 16 5134 0.31164784 cellular_component
## 1033 16 5134 0.31164784 biological_process
## 1034 16 5134 0.31164784 molecular_function
## 1035 16 5134 0.31164784 molecular_function
## 1036 16 5134 0.31164784 biological_process
## 1037 16 5134 0.31164784 biological_process
## 1038 16 5134 0.31164784 cellular_component
## 1039 16 5134 0.31164784 biological_process
## 1040 15 5134 0.29216985 biological_process
## 1041 15 5134 0.29216985 biological_process
## 1042 15 5134 0.29216985 molecular_function
## 1043 15 5134 0.29216985 biological_process
## 1044 15 5134 0.29216985 cellular_component
## 1045 15 5134 0.29216985 biological_process
## 1046 15 5134 0.29216985 biological_process
## 1047 15 5134 0.29216985 molecular_function
## 1048 15 5134 0.29216985 biological_process
## 1049 15 5134 0.29216985 biological_process
## 1050 15 5134 0.29216985 cellular_component
## 1051 15 5134 0.29216985 molecular_function
## 1052 15 5134 0.29216985 cellular_component
## 1053 15 5134 0.29216985 biological_process
## 1054 15 5134 0.29216985 molecular_function
## 1055 15 5134 0.29216985 molecular_function
## 1056 15 5134 0.29216985 cellular_component
## 1057 15 5134 0.29216985 biological_process
## 1058 15 5134 0.29216985 biological_process
## 1059 15 5134 0.29216985 biological_process
## 1060 15 5134 0.29216985 molecular_function
## 1061 15 5134 0.29216985 cellular_component
## 1062 15 5134 0.29216985 molecular_function
## 1063 15 5134 0.29216985 cellular_component
## 1064 15 5134 0.29216985 cellular_component
## 1065 15 5134 0.29216985 biological_process
## 1066 15 5134 0.29216985 biological_process
## 1067 15 5134 0.29216985 biological_process
## 1068 15 5134 0.29216985 biological_process
## 1069 15 5134 0.29216985 biological_process
## 1070 15 5134 0.29216985 cellular_component
## 1071 15 5134 0.29216985 molecular_function
## 1072 15 5134 0.29216985 biological_process
## 1073 15 5134 0.29216985 biological_process
## 1074 15 5134 0.29216985 biological_process
## 1075 15 5134 0.29216985 biological_process
## 1076 15 5134 0.29216985 biological_process
## 1077 15 5134 0.29216985 biological_process
## 1078 15 5134 0.29216985 biological_process
## 1079 15 5134 0.29216985 biological_process
## 1080 15 5134 0.29216985 cellular_component
## 1081 15 5134 0.29216985 molecular_function
## 1082 15 5134 0.29216985 biological_process
## 1083 15 5134 0.29216985 cellular_component
## 1084 15 5134 0.29216985 biological_process
## 1085 15 5134 0.29216985 biological_process
## 1086 15 5134 0.29216985 molecular_function
## 1087 15 5134 0.29216985 biological_process
## 1088 15 5134 0.29216985 biological_process
## 1089 15 5134 0.29216985 biological_process
## 1090 15 5134 0.29216985 biological_process
## 1091 15 5134 0.29216985 biological_process
## 1092 15 5134 0.29216985 biological_process
## 1093 15 5134 0.29216985 biological_process
## 1094 15 5134 0.29216985 biological_process
## 1095 15 5134 0.29216985 biological_process
## 1096 15 5134 0.29216985 biological_process
## 1097 15 5134 0.29216985 biological_process
## 1098 15 5134 0.29216985 molecular_function
## 1099 15 5134 0.29216985 molecular_function
## 1100 15 5134 0.29216985 molecular_function
## 1101 15 5134 0.29216985 biological_process
## 1102 15 5134 0.29216985 biological_process
## 1103 15 5134 0.29216985 biological_process
## 1104 15 5134 0.29216985 biological_process
## 1105 15 5134 0.29216985 molecular_function
## 1106 15 5134 0.29216985 molecular_function
## 1107 15 5134 0.29216985 cellular_component
## 1108 15 5134 0.29216985 biological_process
## 1109 15 5134 0.29216985 biological_process
## 1110 15 5134 0.29216985 biological_process
## 1111 15 5134 0.29216985 biological_process
## 1112 15 5134 0.29216985 biological_process
## 1113 15 5134 0.29216985 molecular_function
## 1114 15 5134 0.29216985 biological_process
## 1115 15 5134 0.29216985 biological_process
## 1116 15 5134 0.29216985 cellular_component
## 1117 15 5134 0.29216985 biological_process
## 1118 15 5134 0.29216985 biological_process
## 1119 14 5134 0.27269186 biological_process
## 1120 14 5134 0.27269186 biological_process
## 1121 14 5134 0.27269186 biological_process
## 1122 14 5134 0.27269186 biological_process
## 1123 14 5134 0.27269186 biological_process
## 1124 14 5134 0.27269186 molecular_function
## 1125 14 5134 0.27269186 molecular_function
## 1126 14 5134 0.27269186 biological_process
## 1127 14 5134 0.27269186 biological_process
## 1128 14 5134 0.27269186 biological_process
## 1129 14 5134 0.27269186 biological_process
## 1130 14 5134 0.27269186 biological_process
## 1131 14 5134 0.27269186 cellular_component
## 1132 14 5134 0.27269186 molecular_function
## 1133 14 5134 0.27269186 biological_process
## 1134 14 5134 0.27269186 cellular_component
## 1135 14 5134 0.27269186 cellular_component
## 1136 14 5134 0.27269186 biological_process
## 1137 14 5134 0.27269186 molecular_function
## 1138 14 5134 0.27269186 biological_process
## 1139 14 5134 0.27269186 biological_process
## 1140 14 5134 0.27269186 biological_process
## 1141 14 5134 0.27269186 biological_process
## 1142 14 5134 0.27269186 biological_process
## 1143 14 5134 0.27269186 cellular_component
## 1144 14 5134 0.27269186 biological_process
## 1145 14 5134 0.27269186 biological_process
## 1146 14 5134 0.27269186 biological_process
## 1147 14 5134 0.27269186 biological_process
## 1148 14 5134 0.27269186 molecular_function
## 1149 14 5134 0.27269186 biological_process
## 1150 14 5134 0.27269186 biological_process
## 1151 14 5134 0.27269186 biological_process
## 1152 14 5134 0.27269186 biological_process
## 1153 14 5134 0.27269186 biological_process
## 1154 14 5134 0.27269186 molecular_function
## 1155 14 5134 0.27269186 biological_process
## 1156 14 5134 0.27269186 biological_process
## 1157 14 5134 0.27269186 biological_process
## 1158 14 5134 0.27269186 biological_process
## 1159 14 5134 0.27269186 biological_process
## 1160 14 5134 0.27269186 biological_process
## 1161 14 5134 0.27269186 biological_process
## 1162 14 5134 0.27269186 biological_process
## 1163 14 5134 0.27269186 biological_process
## 1164 14 5134 0.27269186 biological_process
## 1165 14 5134 0.27269186 biological_process
## 1166 14 5134 0.27269186 molecular_function
## 1167 14 5134 0.27269186 molecular_function
## 1168 14 5134 0.27269186 biological_process
## 1169 14 5134 0.27269186 biological_process
## 1170 14 5134 0.27269186 biological_process
## 1171 14 5134 0.27269186 biological_process
## 1172 14 5134 0.27269186 biological_process
## 1173 14 5134 0.27269186 biological_process
## 1174 14 5134 0.27269186 biological_process
## 1175 14 5134 0.27269186 biological_process
## 1176 14 5134 0.27269186 biological_process
## 1177 14 5134 0.27269186 biological_process
## 1178 14 5134 0.27269186 biological_process
## 1179 14 5134 0.27269186 molecular_function
## 1180 14 5134 0.27269186 biological_process
## 1181 14 5134 0.27269186 biological_process
## 1182 14 5134 0.27269186 molecular_function
## 1183 14 5134 0.27269186 biological_process
## 1184 14 5134 0.27269186 biological_process
## 1185 14 5134 0.27269186 biological_process
## 1186 14 5134 0.27269186 biological_process
## 1187 14 5134 0.27269186 biological_process
## 1188 14 5134 0.27269186 biological_process
## 1189 14 5134 0.27269186 biological_process
## 1190 14 5134 0.27269186 biological_process
## 1191 14 5134 0.27269186 biological_process
## 1192 14 5134 0.27269186 biological_process
## 1193 14 5134 0.27269186 molecular_function
## 1194 14 5134 0.27269186 biological_process
## 1195 14 5134 0.27269186 cellular_component
## 1196 14 5134 0.27269186 biological_process
## 1197 14 5134 0.27269186 biological_process
## 1198 14 5134 0.27269186 molecular_function
## 1199 13 5134 0.25321387 molecular_function
## 1200 13 5134 0.25321387 biological_process
## 1201 13 5134 0.25321387 biological_process
## 1202 13 5134 0.25321387 cellular_component
## 1203 13 5134 0.25321387 molecular_function
## 1204 13 5134 0.25321387 biological_process
## 1205 13 5134 0.25321387 biological_process
## 1206 13 5134 0.25321387 molecular_function
## 1207 13 5134 0.25321387 biological_process
## 1208 13 5134 0.25321387 biological_process
## 1209 13 5134 0.25321387 biological_process
## 1210 13 5134 0.25321387 biological_process
## 1211 13 5134 0.25321387 molecular_function
## 1212 13 5134 0.25321387 cellular_component
## 1213 13 5134 0.25321387 molecular_function
## 1214 13 5134 0.25321387 molecular_function
## 1215 13 5134 0.25321387 cellular_component
## 1216 13 5134 0.25321387 biological_process
## 1217 13 5134 0.25321387 biological_process
## 1218 13 5134 0.25321387 biological_process
## 1219 13 5134 0.25321387 cellular_component
## 1220 13 5134 0.25321387 cellular_component
## 1221 13 5134 0.25321387 biological_process
## 1222 13 5134 0.25321387 biological_process
## 1223 13 5134 0.25321387 biological_process
## 1224 13 5134 0.25321387 biological_process
## 1225 13 5134 0.25321387 molecular_function
## 1226 13 5134 0.25321387 molecular_function
## 1227 13 5134 0.25321387 molecular_function
## 1228 13 5134 0.25321387 cellular_component
## 1229 13 5134 0.25321387 biological_process
## 1230 13 5134 0.25321387 molecular_function
## 1231 13 5134 0.25321387 biological_process
## 1232 13 5134 0.25321387 biological_process
## 1233 13 5134 0.25321387 biological_process
## 1234 13 5134 0.25321387 molecular_function
## 1235 13 5134 0.25321387 biological_process
## 1236 13 5134 0.25321387 cellular_component
## 1237 13 5134 0.25321387 biological_process
## 1238 13 5134 0.25321387 biological_process
## 1239 13 5134 0.25321387 biological_process
## 1240 13 5134 0.25321387 biological_process
## 1241 13 5134 0.25321387 biological_process
## 1242 13 5134 0.25321387 biological_process
## 1243 13 5134 0.25321387 biological_process
## 1244 13 5134 0.25321387 biological_process
## 1245 13 5134 0.25321387 biological_process
## 1246 13 5134 0.25321387 molecular_function
## 1247 13 5134 0.25321387 biological_process
## 1248 13 5134 0.25321387 biological_process
## 1249 13 5134 0.25321387 biological_process
## 1250 13 5134 0.25321387 biological_process
## 1251 13 5134 0.25321387 biological_process
## 1252 13 5134 0.25321387 biological_process
## 1253 13 5134 0.25321387 biological_process
## 1254 13 5134 0.25321387 biological_process
## 1255 13 5134 0.25321387 biological_process
## 1256 13 5134 0.25321387 biological_process
## 1257 13 5134 0.25321387 biological_process
## 1258 13 5134 0.25321387 biological_process
## 1259 13 5134 0.25321387 biological_process
## 1260 13 5134 0.25321387 biological_process
## 1261 13 5134 0.25321387 biological_process
## 1262 13 5134 0.25321387 biological_process
## 1263 13 5134 0.25321387 biological_process
## 1264 13 5134 0.25321387 biological_process
## 1265 13 5134 0.25321387 biological_process
## 1266 13 5134 0.25321387 biological_process
## 1267 13 5134 0.25321387 molecular_function
## 1268 13 5134 0.25321387 biological_process
## 1269 13 5134 0.25321387 biological_process
## 1270 13 5134 0.25321387 cellular_component
## 1271 13 5134 0.25321387 biological_process
## 1272 13 5134 0.25321387 biological_process
## 1273 13 5134 0.25321387 biological_process
## 1274 13 5134 0.25321387 biological_process
## 1275 13 5134 0.25321387 biological_process
## 1276 13 5134 0.25321387 biological_process
## 1277 13 5134 0.25321387 biological_process
## 1278 13 5134 0.25321387 biological_process
## 1279 13 5134 0.25321387 cellular_component
## 1280 13 5134 0.25321387 molecular_function
## 1281 13 5134 0.25321387 biological_process
## 1282 13 5134 0.25321387 biological_process
## 1283 13 5134 0.25321387 biological_process
## 1284 13 5134 0.25321387 cellular_component
## 1285 13 5134 0.25321387 biological_process
## 1286 13 5134 0.25321387 biological_process
## 1287 13 5134 0.25321387 cellular_component
## 1288 12 5134 0.23373588 molecular_function
## 1289 12 5134 0.23373588 molecular_function
## 1290 12 5134 0.23373588 molecular_function
## 1291 12 5134 0.23373588 molecular_function
## 1292 12 5134 0.23373588 cellular_component
## 1293 12 5134 0.23373588 biological_process
## 1294 12 5134 0.23373588 biological_process
## 1295 12 5134 0.23373588 cellular_component
## 1296 12 5134 0.23373588 molecular_function
## 1297 12 5134 0.23373588 biological_process
## 1298 12 5134 0.23373588 biological_process
## 1299 12 5134 0.23373588 biological_process
## 1300 12 5134 0.23373588 biological_process
## 1301 12 5134 0.23373588 biological_process
## 1302 12 5134 0.23373588 molecular_function
## 1303 12 5134 0.23373588 cellular_component
## 1304 12 5134 0.23373588 molecular_function
## 1305 12 5134 0.23373588 biological_process
## 1306 12 5134 0.23373588 biological_process
## 1307 12 5134 0.23373588 biological_process
## 1308 12 5134 0.23373588 molecular_function
## 1309 12 5134 0.23373588 biological_process
## 1310 12 5134 0.23373588 cellular_component
## 1311 12 5134 0.23373588 molecular_function
## 1312 12 5134 0.23373588 biological_process
## 1313 12 5134 0.23373588 molecular_function
## 1314 12 5134 0.23373588 cellular_component
## 1315 12 5134 0.23373588 molecular_function
## 1316 12 5134 0.23373588 biological_process
## 1317 12 5134 0.23373588 biological_process
## 1318 12 5134 0.23373588 molecular_function
## 1319 12 5134 0.23373588 biological_process
## 1320 12 5134 0.23373588 biological_process
## 1321 12 5134 0.23373588 biological_process
## 1322 12 5134 0.23373588 cellular_component
## 1323 12 5134 0.23373588 biological_process
## 1324 12 5134 0.23373588 biological_process
## 1325 12 5134 0.23373588 biological_process
## 1326 12 5134 0.23373588 biological_process
## 1327 12 5134 0.23373588 molecular_function
## 1328 12 5134 0.23373588 molecular_function
## 1329 12 5134 0.23373588 biological_process
## 1330 12 5134 0.23373588 biological_process
## 1331 12 5134 0.23373588 biological_process
## 1332 12 5134 0.23373588 biological_process
## 1333 12 5134 0.23373588 biological_process
## 1334 12 5134 0.23373588 biological_process
## 1335 12 5134 0.23373588 biological_process
## 1336 12 5134 0.23373588 biological_process
## 1337 12 5134 0.23373588 biological_process
## 1338 12 5134 0.23373588 biological_process
## 1339 12 5134 0.23373588 biological_process
## 1340 12 5134 0.23373588 biological_process
## 1341 12 5134 0.23373588 biological_process
## 1342 12 5134 0.23373588 biological_process
## 1343 12 5134 0.23373588 molecular_function
## 1344 12 5134 0.23373588 biological_process
## 1345 12 5134 0.23373588 molecular_function
## 1346 12 5134 0.23373588 biological_process
## 1347 12 5134 0.23373588 biological_process
## 1348 12 5134 0.23373588 biological_process
## 1349 12 5134 0.23373588 biological_process
## 1350 12 5134 0.23373588 biological_process
## 1351 12 5134 0.23373588 cellular_component
## 1352 12 5134 0.23373588 molecular_function
## 1353 12 5134 0.23373588 biological_process
## 1354 12 5134 0.23373588 cellular_component
## 1355 12 5134 0.23373588 biological_process
## 1356 12 5134 0.23373588 cellular_component
## 1357 12 5134 0.23373588 biological_process
## 1358 12 5134 0.23373588 biological_process
## 1359 12 5134 0.23373588 biological_process
## 1360 12 5134 0.23373588 biological_process
## 1361 12 5134 0.23373588 biological_process
## 1362 12 5134 0.23373588 biological_process
## 1363 12 5134 0.23373588 biological_process
## 1364 12 5134 0.23373588 biological_process
## 1365 12 5134 0.23373588 biological_process
## 1366 12 5134 0.23373588 biological_process
## 1367 12 5134 0.23373588 biological_process
## 1368 12 5134 0.23373588 biological_process
## 1369 12 5134 0.23373588 biological_process
## 1370 12 5134 0.23373588 biological_process
## 1371 12 5134 0.23373588 biological_process
## 1372 12 5134 0.23373588 biological_process
## 1373 12 5134 0.23373588 biological_process
## 1374 12 5134 0.23373588 biological_process
## 1375 12 5134 0.23373588 molecular_function
## 1376 12 5134 0.23373588 biological_process
## 1377 12 5134 0.23373588 molecular_function
## 1378 12 5134 0.23373588 molecular_function
## 1379 12 5134 0.23373588 biological_process
## 1380 12 5134 0.23373588 biological_process
## 1381 12 5134 0.23373588 biological_process
## 1382 12 5134 0.23373588 biological_process
## 1383 12 5134 0.23373588 biological_process
## 1384 12 5134 0.23373588 biological_process
## 1385 12 5134 0.23373588 biological_process
## 1386 12 5134 0.23373588 biological_process
## 1387 12 5134 0.23373588 biological_process
## 1388 12 5134 0.23373588 biological_process
## 1389 12 5134 0.23373588 biological_process
## 1390 12 5134 0.23373588 biological_process
## 1391 12 5134 0.23373588 biological_process
## 1392 12 5134 0.23373588 biological_process
## 1393 12 5134 0.23373588 biological_process
## 1394 12 5134 0.23373588 biological_process
## 1395 12 5134 0.23373588 biological_process
## 1396 12 5134 0.23373588 biological_process
## 1397 12 5134 0.23373588 biological_process
## 1398 12 5134 0.23373588 biological_process
## 1399 12 5134 0.23373588 molecular_function
## 1400 12 5134 0.23373588 biological_process
## 1401 12 5134 0.23373588 cellular_component
## 1402 12 5134 0.23373588 cellular_component
## 1403 12 5134 0.23373588 cellular_component
## 1404 12 5134 0.23373588 biological_process
## 1405 12 5134 0.23373588 biological_process
## 1406 12 5134 0.23373588 biological_process
## 1407 11 5134 0.21425789 molecular_function
## 1408 11 5134 0.21425789 biological_process
## 1409 11 5134 0.21425789 biological_process
## 1410 11 5134 0.21425789 biological_process
## 1411 11 5134 0.21425789 biological_process
## 1412 11 5134 0.21425789 biological_process
## 1413 11 5134 0.21425789 biological_process
## 1414 11 5134 0.21425789 biological_process
## 1415 11 5134 0.21425789 cellular_component
## 1416 11 5134 0.21425789 cellular_component
## 1417 11 5134 0.21425789 biological_process
## 1418 11 5134 0.21425789 biological_process
## 1419 11 5134 0.21425789 biological_process
## 1420 11 5134 0.21425789 biological_process
## 1421 11 5134 0.21425789 biological_process
## 1422 11 5134 0.21425789 biological_process
## 1423 11 5134 0.21425789 biological_process
## 1424 11 5134 0.21425789 biological_process
## 1425 11 5134 0.21425789 biological_process
## 1426 11 5134 0.21425789 biological_process
## 1427 11 5134 0.21425789 biological_process
## 1428 11 5134 0.21425789 cellular_component
## 1429 11 5134 0.21425789 biological_process
## 1430 11 5134 0.21425789 biological_process
## 1431 11 5134 0.21425789 biological_process
## 1432 11 5134 0.21425789 cellular_component
## 1433 11 5134 0.21425789 biological_process
## 1434 11 5134 0.21425789 biological_process
## 1435 11 5134 0.21425789 biological_process
## 1436 11 5134 0.21425789 molecular_function
## 1437 11 5134 0.21425789 biological_process
## 1438 11 5134 0.21425789 biological_process
## 1439 11 5134 0.21425789 cellular_component
## 1440 11 5134 0.21425789 biological_process
## 1441 11 5134 0.21425789 cellular_component
## 1442 11 5134 0.21425789 biological_process
## 1443 11 5134 0.21425789 molecular_function
## 1444 11 5134 0.21425789 cellular_component
## 1445 11 5134 0.21425789 biological_process
## 1446 11 5134 0.21425789 biological_process
## 1447 11 5134 0.21425789 biological_process
## 1448 11 5134 0.21425789 biological_process
## 1449 11 5134 0.21425789 biological_process
## 1450 11 5134 0.21425789 biological_process
## 1451 11 5134 0.21425789 biological_process
## 1452 11 5134 0.21425789 biological_process
## 1453 11 5134 0.21425789 biological_process
## 1454 11 5134 0.21425789 molecular_function
## 1455 11 5134 0.21425789 biological_process
## 1456 11 5134 0.21425789 biological_process
## 1457 11 5134 0.21425789 biological_process
## 1458 11 5134 0.21425789 molecular_function
## 1459 11 5134 0.21425789 cellular_component
## 1460 11 5134 0.21425789 biological_process
## 1461 11 5134 0.21425789 cellular_component
## 1462 11 5134 0.21425789 biological_process
## 1463 11 5134 0.21425789 biological_process
## 1464 11 5134 0.21425789 molecular_function
## 1465 11 5134 0.21425789 biological_process
## 1466 11 5134 0.21425789 biological_process
## 1467 11 5134 0.21425789 biological_process
## 1468 11 5134 0.21425789 biological_process
## 1469 11 5134 0.21425789 biological_process
## 1470 11 5134 0.21425789 biological_process
## 1471 11 5134 0.21425789 biological_process
## 1472 11 5134 0.21425789 biological_process
## 1473 11 5134 0.21425789 biological_process
## 1474 11 5134 0.21425789 cellular_component
## 1475 11 5134 0.21425789 molecular_function
## 1476 11 5134 0.21425789 biological_process
## 1477 11 5134 0.21425789 molecular_function
## 1478 11 5134 0.21425789 molecular_function
## 1479 11 5134 0.21425789 molecular_function
## 1480 11 5134 0.21425789 biological_process
## 1481 11 5134 0.21425789 molecular_function
## 1482 11 5134 0.21425789 biological_process
## 1483 11 5134 0.21425789 cellular_component
## 1484 11 5134 0.21425789 molecular_function
## 1485 11 5134 0.21425789 biological_process
## 1486 11 5134 0.21425789 biological_process
## 1487 11 5134 0.21425789 biological_process
## 1488 11 5134 0.21425789 biological_process
## 1489 11 5134 0.21425789 biological_process
## 1490 11 5134 0.21425789 biological_process
## 1491 11 5134 0.21425789 biological_process
## 1492 11 5134 0.21425789 biological_process
## 1493 11 5134 0.21425789 biological_process
## 1494 11 5134 0.21425789 biological_process
## 1495 11 5134 0.21425789 biological_process
## 1496 11 5134 0.21425789 cellular_component
## 1497 11 5134 0.21425789 biological_process
## 1498 11 5134 0.21425789 molecular_function
## 1499 11 5134 0.21425789 biological_process
## 1500 11 5134 0.21425789 biological_process
## 1501 11 5134 0.21425789 biological_process
## 1502 11 5134 0.21425789 biological_process
## 1503 11 5134 0.21425789 biological_process
## 1504 11 5134 0.21425789 biological_process
## 1505 11 5134 0.21425789 biological_process
## 1506 11 5134 0.21425789 biological_process
## 1507 11 5134 0.21425789 biological_process
## 1508 11 5134 0.21425789 biological_process
## 1509 11 5134 0.21425789 biological_process
## 1510 11 5134 0.21425789 biological_process
## 1511 11 5134 0.21425789 biological_process
## 1512 11 5134 0.21425789 biological_process
## 1513 11 5134 0.21425789 cellular_component
## 1514 11 5134 0.21425789 cellular_component
## 1515 11 5134 0.21425789 biological_process
## 1516 11 5134 0.21425789 biological_process
## 1517 11 5134 0.21425789 biological_process
## 1518 11 5134 0.21425789 cellular_component
## 1519 11 5134 0.21425789 molecular_function
## 1520 11 5134 0.21425789 biological_process
## 1521 11 5134 0.21425789 cellular_component
## 1522 11 5134 0.21425789 molecular_function
## 1523 11 5134 0.21425789 biological_process
## 1524 11 5134 0.21425789 biological_process
## 1525 11 5134 0.21425789 cellular_component
## 1526 11 5134 0.21425789 biological_process
## 1527 11 5134 0.21425789 cellular_component
## 1528 11 5134 0.21425789 molecular_function
## 1529 11 5134 0.21425789 molecular_function
## 1530 11 5134 0.21425789 biological_process
## 1531 10 5134 0.19477990 molecular_function
## 1532 10 5134 0.19477990 biological_process
## 1533 10 5134 0.19477990 biological_process
## 1534 10 5134 0.19477990 biological_process
## 1535 10 5134 0.19477990 biological_process
## 1536 10 5134 0.19477990 biological_process
## 1537 10 5134 0.19477990 biological_process
## 1538 10 5134 0.19477990 biological_process
## 1539 10 5134 0.19477990 biological_process
## 1540 10 5134 0.19477990 biological_process
## 1541 10 5134 0.19477990 biological_process
## 1542 10 5134 0.19477990 biological_process
## 1543 10 5134 0.19477990 biological_process
## 1544 10 5134 0.19477990 biological_process
## 1545 10 5134 0.19477990 biological_process
## 1546 10 5134 0.19477990 biological_process
## 1547 10 5134 0.19477990 biological_process
## 1548 10 5134 0.19477990 molecular_function
## 1549 10 5134 0.19477990 biological_process
## 1550 10 5134 0.19477990 molecular_function
## 1551 10 5134 0.19477990 biological_process
## 1552 10 5134 0.19477990 biological_process
## 1553 10 5134 0.19477990 biological_process
## 1554 10 5134 0.19477990 biological_process
## 1555 10 5134 0.19477990 biological_process
## 1556 10 5134 0.19477990 biological_process
## 1557 10 5134 0.19477990 biological_process
## 1558 10 5134 0.19477990 cellular_component
## 1559 10 5134 0.19477990 cellular_component
## 1560 10 5134 0.19477990 cellular_component
## 1561 10 5134 0.19477990 molecular_function
## 1562 10 5134 0.19477990 molecular_function
## 1563 10 5134 0.19477990 cellular_component
## 1564 10 5134 0.19477990 biological_process
## 1565 10 5134 0.19477990 biological_process
## 1566 10 5134 0.19477990 biological_process
## 1567 10 5134 0.19477990 biological_process
## 1568 10 5134 0.19477990 biological_process
## 1569 10 5134 0.19477990 biological_process
## 1570 10 5134 0.19477990 biological_process
## 1571 10 5134 0.19477990 biological_process
## 1572 10 5134 0.19477990 biological_process
## 1573 10 5134 0.19477990 biological_process
## 1574 10 5134 0.19477990 biological_process
## 1575 10 5134 0.19477990 biological_process
## 1576 10 5134 0.19477990 biological_process
## 1577 10 5134 0.19477990 biological_process
## 1578 10 5134 0.19477990 biological_process
## 1579 10 5134 0.19477990 biological_process
## 1580 10 5134 0.19477990 cellular_component
## 1581 10 5134 0.19477990 biological_process
## 1582 10 5134 0.19477990 cellular_component
## 1583 10 5134 0.19477990 cellular_component
## 1584 10 5134 0.19477990 biological_process
## 1585 10 5134 0.19477990 molecular_function
## 1586 10 5134 0.19477990 biological_process
## 1587 10 5134 0.19477990 biological_process
## 1588 10 5134 0.19477990 molecular_function
## 1589 10 5134 0.19477990 biological_process
## 1590 10 5134 0.19477990 biological_process
## 1591 10 5134 0.19477990 biological_process
## 1592 10 5134 0.19477990 molecular_function
## 1593 10 5134 0.19477990 biological_process
## 1594 10 5134 0.19477990 cellular_component
## 1595 10 5134 0.19477990 biological_process
## 1596 10 5134 0.19477990 biological_process
## 1597 10 5134 0.19477990 cellular_component
## 1598 10 5134 0.19477990 biological_process
## 1599 10 5134 0.19477990 biological_process
## 1600 10 5134 0.19477990 biological_process
## 1601 10 5134 0.19477990 biological_process
## 1602 10 5134 0.19477990 biological_process
## 1603 10 5134 0.19477990 biological_process
## 1604 10 5134 0.19477990 molecular_function
## 1605 10 5134 0.19477990 cellular_component
## 1606 10 5134 0.19477990 biological_process
## 1607 10 5134 0.19477990 biological_process
## 1608 10 5134 0.19477990 molecular_function
## 1609 10 5134 0.19477990 biological_process
## 1610 10 5134 0.19477990 biological_process
## 1611 10 5134 0.19477990 cellular_component
## 1612 10 5134 0.19477990 cellular_component
## 1613 10 5134 0.19477990 molecular_function
## 1614 10 5134 0.19477990 molecular_function
## 1615 10 5134 0.19477990 molecular_function
## 1616 10 5134 0.19477990 biological_process
## 1617 10 5134 0.19477990 cellular_component
## 1618 10 5134 0.19477990 biological_process
## 1619 10 5134 0.19477990 biological_process
## 1620 10 5134 0.19477990 biological_process
## 1621 10 5134 0.19477990 biological_process
## 1622 10 5134 0.19477990 biological_process
## 1623 10 5134 0.19477990 biological_process
## 1624 10 5134 0.19477990 biological_process
## 1625 10 5134 0.19477990 biological_process
## 1626 10 5134 0.19477990 biological_process
## 1627 10 5134 0.19477990 biological_process
## 1628 10 5134 0.19477990 biological_process
## 1629 10 5134 0.19477990 biological_process
## 1630 10 5134 0.19477990 biological_process
## 1631 10 5134 0.19477990 biological_process
## 1632 10 5134 0.19477990 biological_process
## 1633 10 5134 0.19477990 biological_process
## 1634 10 5134 0.19477990 biological_process
## 1635 10 5134 0.19477990 biological_process
## 1636 10 5134 0.19477990 biological_process
## 1637 10 5134 0.19477990 biological_process
## 1638 10 5134 0.19477990 biological_process
## 1639 10 5134 0.19477990 biological_process
## 1640 10 5134 0.19477990 biological_process
## 1641 10 5134 0.19477990 biological_process
## 1642 10 5134 0.19477990 cellular_component
## 1643 10 5134 0.19477990 biological_process
## 1644 10 5134 0.19477990 molecular_function
## 1645 10 5134 0.19477990 molecular_function
## 1646 10 5134 0.19477990 biological_process
## 1647 10 5134 0.19477990 molecular_function
## 1648 10 5134 0.19477990 cellular_component
## 1649 10 5134 0.19477990 molecular_function
## 1650 10 5134 0.19477990 biological_process
## 1651 10 5134 0.19477990 biological_process
## 1652 10 5134 0.19477990 biological_process
## 1653 10 5134 0.19477990 biological_process
## 1654 10 5134 0.19477990 biological_process
## 1655 10 5134 0.19477990 biological_process
## 1656 10 5134 0.19477990 biological_process
## 1657 10 5134 0.19477990 biological_process
## 1658 10 5134 0.19477990 biological_process
## 1659 10 5134 0.19477990 biological_process
## 1660 10 5134 0.19477990 biological_process
## 1661 10 5134 0.19477990 biological_process
## 1662 10 5134 0.19477990 biological_process
## 1663 10 5134 0.19477990 biological_process
## 1664 10 5134 0.19477990 biological_process
## 1665 10 5134 0.19477990 biological_process
## 1666 10 5134 0.19477990 molecular_function
## 1667 10 5134 0.19477990 biological_process
## 1668 10 5134 0.19477990 molecular_function
## 1669 10 5134 0.19477990 molecular_function
## 1670 10 5134 0.19477990 molecular_function
## 1671 10 5134 0.19477990 cellular_component
## 1672 10 5134 0.19477990 cellular_component
## 1673 10 5134 0.19477990 biological_process
## 1674 10 5134 0.19477990 biological_process
## 1675 10 5134 0.19477990 molecular_function
## 1676 10 5134 0.19477990 cellular_component
## 1677 10 5134 0.19477990 molecular_function
## 1678 10 5134 0.19477990 biological_process
## 1679 10 5134 0.19477990 biological_process
## 1680 10 5134 0.19477990 molecular_function
## 1681 10 5134 0.19477990 molecular_function
## 1682 10 5134 0.19477990 molecular_function
## 1683 10 5134 0.19477990 molecular_function
## 1684 10 5134 0.19477990 molecular_function
## 1685 10 5134 0.19477990 cellular_component
## 1686 10 5134 0.19477990 molecular_function
## 1687 10 5134 0.19477990 molecular_function
## 1688 10 5134 0.19477990 biological_process
## 1689 10 5134 0.19477990 biological_process
## 1690 10 5134 0.19477990 biological_process
## 1691 10 5134 0.19477990 biological_process
## 1692 9 5134 0.17530191 molecular_function
## 1693 9 5134 0.17530191 molecular_function
## 1694 9 5134 0.17530191 biological_process
## 1695 9 5134 0.17530191 biological_process
## 1696 9 5134 0.17530191 molecular_function
## 1697 9 5134 0.17530191 biological_process
## 1698 9 5134 0.17530191 molecular_function
## 1699 9 5134 0.17530191 biological_process
## 1700 9 5134 0.17530191 biological_process
## 1701 9 5134 0.17530191 molecular_function
## 1702 9 5134 0.17530191 biological_process
## 1703 9 5134 0.17530191 biological_process
## 1704 9 5134 0.17530191 cellular_component
## 1705 9 5134 0.17530191 biological_process
## 1706 9 5134 0.17530191 biological_process
## 1707 9 5134 0.17530191 biological_process
## 1708 9 5134 0.17530191 biological_process
## 1709 9 5134 0.17530191 biological_process
## 1710 9 5134 0.17530191 biological_process
## 1711 9 5134 0.17530191 molecular_function
## 1712 9 5134 0.17530191 molecular_function
## 1713 9 5134 0.17530191 biological_process
## 1714 9 5134 0.17530191 biological_process
## 1715 9 5134 0.17530191 biological_process
## 1716 9 5134 0.17530191 biological_process
## 1717 9 5134 0.17530191 biological_process
## 1718 9 5134 0.17530191 biological_process
## 1719 9 5134 0.17530191 biological_process
## 1720 9 5134 0.17530191 cellular_component
## 1721 9 5134 0.17530191 cellular_component
## 1722 9 5134 0.17530191 cellular_component
## 1723 9 5134 0.17530191 cellular_component
## 1724 9 5134 0.17530191 molecular_function
## 1725 9 5134 0.17530191 biological_process
## 1726 9 5134 0.17530191 biological_process
## 1727 9 5134 0.17530191 biological_process
## 1728 9 5134 0.17530191 molecular_function
## 1729 9 5134 0.17530191 biological_process
## 1730 9 5134 0.17530191 biological_process
## 1731 9 5134 0.17530191 cellular_component
## 1732 9 5134 0.17530191 biological_process
## 1733 9 5134 0.17530191 biological_process
## 1734 9 5134 0.17530191 cellular_component
## 1735 9 5134 0.17530191 molecular_function
## 1736 9 5134 0.17530191 biological_process
## 1737 9 5134 0.17530191 molecular_function
## 1738 9 5134 0.17530191 cellular_component
## 1739 9 5134 0.17530191 biological_process
## 1740 9 5134 0.17530191 cellular_component
## 1741 9 5134 0.17530191 biological_process
## 1742 9 5134 0.17530191 biological_process
## 1743 9 5134 0.17530191 cellular_component
## 1744 9 5134 0.17530191 molecular_function
## 1745 9 5134 0.17530191 biological_process
## 1746 9 5134 0.17530191 cellular_component
## 1747 9 5134 0.17530191 cellular_component
## 1748 9 5134 0.17530191 biological_process
## 1749 9 5134 0.17530191 molecular_function
## 1750 9 5134 0.17530191 biological_process
## 1751 9 5134 0.17530191 biological_process
## 1752 9 5134 0.17530191 cellular_component
## 1753 9 5134 0.17530191 biological_process
## 1754 9 5134 0.17530191 molecular_function
## 1755 9 5134 0.17530191 biological_process
## 1756 9 5134 0.17530191 biological_process
## 1757 9 5134 0.17530191 molecular_function
## 1758 9 5134 0.17530191 biological_process
## 1759 9 5134 0.17530191 molecular_function
## 1760 9 5134 0.17530191 cellular_component
## 1761 9 5134 0.17530191 biological_process
## 1762 9 5134 0.17530191 biological_process
## 1763 9 5134 0.17530191 biological_process
## 1764 9 5134 0.17530191 biological_process
## 1765 9 5134 0.17530191 biological_process
## 1766 9 5134 0.17530191 biological_process
## 1767 9 5134 0.17530191 biological_process
## 1768 9 5134 0.17530191 biological_process
## 1769 9 5134 0.17530191 biological_process
## 1770 9 5134 0.17530191 biological_process
## 1771 9 5134 0.17530191 biological_process
## 1772 9 5134 0.17530191 biological_process
## 1773 9 5134 0.17530191 biological_process
## 1774 9 5134 0.17530191 biological_process
## 1775 9 5134 0.17530191 biological_process
## 1776 9 5134 0.17530191 biological_process
## 1777 9 5134 0.17530191 biological_process
## 1778 9 5134 0.17530191 biological_process
## 1779 9 5134 0.17530191 biological_process
## 1780 9 5134 0.17530191 biological_process
## 1781 9 5134 0.17530191 cellular_component
## 1782 9 5134 0.17530191 molecular_function
## 1783 9 5134 0.17530191 biological_process
## 1784 9 5134 0.17530191 biological_process
## 1785 9 5134 0.17530191 biological_process
## 1786 9 5134 0.17530191 biological_process
## 1787 9 5134 0.17530191 biological_process
## 1788 9 5134 0.17530191 biological_process
## 1789 9 5134 0.17530191 biological_process
## 1790 9 5134 0.17530191 biological_process
## 1791 9 5134 0.17530191 biological_process
## 1792 9 5134 0.17530191 biological_process
## 1793 9 5134 0.17530191 biological_process
## 1794 9 5134 0.17530191 biological_process
## 1795 9 5134 0.17530191 biological_process
## 1796 9 5134 0.17530191 biological_process
## 1797 9 5134 0.17530191 biological_process
## 1798 9 5134 0.17530191 biological_process
## 1799 9 5134 0.17530191 biological_process
## 1800 9 5134 0.17530191 biological_process
## 1801 9 5134 0.17530191 molecular_function
## 1802 9 5134 0.17530191 cellular_component
## 1803 9 5134 0.17530191 biological_process
## 1804 9 5134 0.17530191 biological_process
## 1805 9 5134 0.17530191 biological_process
## 1806 9 5134 0.17530191 biological_process
## 1807 9 5134 0.17530191 biological_process
## 1808 9 5134 0.17530191 biological_process
## 1809 9 5134 0.17530191 biological_process
## 1810 9 5134 0.17530191 biological_process
## 1811 9 5134 0.17530191 biological_process
## 1812 9 5134 0.17530191 molecular_function
## 1813 9 5134 0.17530191 molecular_function
## 1814 9 5134 0.17530191 biological_process
## 1815 9 5134 0.17530191 biological_process
## 1816 9 5134 0.17530191 biological_process
## 1817 9 5134 0.17530191 molecular_function
## 1818 9 5134 0.17530191 biological_process
## 1819 9 5134 0.17530191 biological_process
## 1820 9 5134 0.17530191 biological_process
## 1821 9 5134 0.17530191 biological_process
## 1822 9 5134 0.17530191 biological_process
## 1823 9 5134 0.17530191 biological_process
## 1824 9 5134 0.17530191 biological_process
## 1825 9 5134 0.17530191 biological_process
## 1826 9 5134 0.17530191 biological_process
## 1827 9 5134 0.17530191 biological_process
## 1828 9 5134 0.17530191 biological_process
## 1829 9 5134 0.17530191 biological_process
## 1830 9 5134 0.17530191 biological_process
## 1831 9 5134 0.17530191 biological_process
## 1832 9 5134 0.17530191 biological_process
## 1833 9 5134 0.17530191 biological_process
## 1834 9 5134 0.17530191 biological_process
## 1835 9 5134 0.17530191 biological_process
## 1836 9 5134 0.17530191 biological_process
## 1837 9 5134 0.17530191 biological_process
## 1838 9 5134 0.17530191 biological_process
## 1839 9 5134 0.17530191 biological_process
## 1840 9 5134 0.17530191 biological_process
## 1841 9 5134 0.17530191 cellular_component
## 1842 9 5134 0.17530191 cellular_component
## 1843 9 5134 0.17530191 molecular_function
## 1844 9 5134 0.17530191 biological_process
## 1845 9 5134 0.17530191 molecular_function
## 1846 9 5134 0.17530191 molecular_function
## 1847 9 5134 0.17530191 molecular_function
## 1848 9 5134 0.17530191 molecular_function
## 1849 9 5134 0.17530191 biological_process
## 1850 9 5134 0.17530191 biological_process
## 1851 9 5134 0.17530191 biological_process
## 1852 9 5134 0.17530191 cellular_component
## 1853 9 5134 0.17530191 biological_process
## 1854 9 5134 0.17530191 biological_process
## 1855 9 5134 0.17530191 molecular_function
## 1856 9 5134 0.17530191 biological_process
## 1857 9 5134 0.17530191 cellular_component
## 1858 9 5134 0.17530191 cellular_component
## 1859 9 5134 0.17530191 biological_process
## 1860 9 5134 0.17530191 molecular_function
## 1861 9 5134 0.17530191 molecular_function
## 1862 9 5134 0.17530191 biological_process
## 1863 9 5134 0.17530191 cellular_component
## 1864 9 5134 0.17530191 biological_process
## 1865 9 5134 0.17530191 biological_process
## 1866 9 5134 0.17530191 biological_process
## 1867 9 5134 0.17530191 biological_process
## 1868 9 5134 0.17530191 biological_process
## 1869 9 5134 0.17530191 molecular_function
## 1870 9 5134 0.17530191 cellular_component
## 1871 9 5134 0.17530191 molecular_function
## 1872 9 5134 0.17530191 biological_process
## 1873 8 5134 0.15582392 molecular_function
## 1874 8 5134 0.15582392 molecular_function
## 1875 8 5134 0.15582392 molecular_function
## 1876 8 5134 0.15582392 molecular_function
## 1877 8 5134 0.15582392 cellular_component
## 1878 8 5134 0.15582392 biological_process
## 1879 8 5134 0.15582392 biological_process
## 1880 8 5134 0.15582392 cellular_component
## 1881 8 5134 0.15582392 biological_process
## 1882 8 5134 0.15582392 biological_process
## 1883 8 5134 0.15582392 biological_process
## 1884 8 5134 0.15582392 molecular_function
## 1885 8 5134 0.15582392 biological_process
## 1886 8 5134 0.15582392 biological_process
## 1887 8 5134 0.15582392 biological_process
## 1888 8 5134 0.15582392 cellular_component
## 1889 8 5134 0.15582392 molecular_function
## 1890 8 5134 0.15582392 biological_process
## 1891 8 5134 0.15582392 biological_process
## 1892 8 5134 0.15582392 cellular_component
## 1893 8 5134 0.15582392 biological_process
## 1894 8 5134 0.15582392 biological_process
## 1895 8 5134 0.15582392 cellular_component
## 1896 8 5134 0.15582392 biological_process
## 1897 8 5134 0.15582392 biological_process
## 1898 8 5134 0.15582392 biological_process
## 1899 8 5134 0.15582392 biological_process
## 1900 8 5134 0.15582392 biological_process
## 1901 8 5134 0.15582392 biological_process
## 1902 8 5134 0.15582392 biological_process
## 1903 8 5134 0.15582392 biological_process
## 1904 8 5134 0.15582392 biological_process
## 1905 8 5134 0.15582392 biological_process
## 1906 8 5134 0.15582392 biological_process
## 1907 8 5134 0.15582392 molecular_function
## 1908 8 5134 0.15582392 biological_process
## 1909 8 5134 0.15582392 biological_process
## 1910 8 5134 0.15582392 cellular_component
## 1911 8 5134 0.15582392 cellular_component
## 1912 8 5134 0.15582392 cellular_component
## 1913 8 5134 0.15582392 cellular_component
## 1914 8 5134 0.15582392 cellular_component
## 1915 8 5134 0.15582392 biological_process
## 1916 8 5134 0.15582392 cellular_component
## 1917 8 5134 0.15582392 molecular_function
## 1918 8 5134 0.15582392 molecular_function
## 1919 8 5134 0.15582392 molecular_function
## 1920 8 5134 0.15582392 cellular_component
## 1921 8 5134 0.15582392 biological_process
## 1922 8 5134 0.15582392 biological_process
## 1923 8 5134 0.15582392 biological_process
## 1924 8 5134 0.15582392 biological_process
## 1925 8 5134 0.15582392 molecular_function
## 1926 8 5134 0.15582392 biological_process
## 1927 8 5134 0.15582392 biological_process
## 1928 8 5134 0.15582392 molecular_function
## 1929 8 5134 0.15582392 biological_process
## 1930 8 5134 0.15582392 molecular_function
## 1931 8 5134 0.15582392 cellular_component
## 1932 8 5134 0.15582392 biological_process
## 1933 8 5134 0.15582392 cellular_component
## 1934 8 5134 0.15582392 cellular_component
## 1935 8 5134 0.15582392 cellular_component
## 1936 8 5134 0.15582392 biological_process
## 1937 8 5134 0.15582392 molecular_function
## 1938 8 5134 0.15582392 molecular_function
## 1939 8 5134 0.15582392 biological_process
## 1940 8 5134 0.15582392 biological_process
## 1941 8 5134 0.15582392 cellular_component
## 1942 8 5134 0.15582392 cellular_component
## 1943 8 5134 0.15582392 biological_process
## 1944 8 5134 0.15582392 molecular_function
## 1945 8 5134 0.15582392 molecular_function
## 1946 8 5134 0.15582392 biological_process
## 1947 8 5134 0.15582392 biological_process
## 1948 8 5134 0.15582392 biological_process
## 1949 8 5134 0.15582392 biological_process
## 1950 8 5134 0.15582392 molecular_function
## 1951 8 5134 0.15582392 biological_process
## 1952 8 5134 0.15582392 biological_process
## 1953 8 5134 0.15582392 biological_process
## 1954 8 5134 0.15582392 biological_process
## 1955 8 5134 0.15582392 cellular_component
## 1956 8 5134 0.15582392 cellular_component
## 1957 8 5134 0.15582392 cellular_component
## 1958 8 5134 0.15582392 cellular_component
## 1959 8 5134 0.15582392 biological_process
## 1960 8 5134 0.15582392 biological_process
## 1961 8 5134 0.15582392 biological_process
## 1962 8 5134 0.15582392 biological_process
## 1963 8 5134 0.15582392 biological_process
## 1964 8 5134 0.15582392 molecular_function
## 1965 8 5134 0.15582392 biological_process
## 1966 8 5134 0.15582392 molecular_function
## 1967 8 5134 0.15582392 cellular_component
## 1968 8 5134 0.15582392 biological_process
## 1969 8 5134 0.15582392 biological_process
## 1970 8 5134 0.15582392 cellular_component
## 1971 8 5134 0.15582392 biological_process
## 1972 8 5134 0.15582392 biological_process
## 1973 8 5134 0.15582392 biological_process
## 1974 8 5134 0.15582392 biological_process
## 1975 8 5134 0.15582392 cellular_component
## 1976 8 5134 0.15582392 biological_process
## 1977 8 5134 0.15582392 biological_process
## 1978 8 5134 0.15582392 biological_process
## 1979 8 5134 0.15582392 biological_process
## 1980 8 5134 0.15582392 biological_process
## 1981 8 5134 0.15582392 biological_process
## 1982 8 5134 0.15582392 biological_process
## 1983 8 5134 0.15582392 molecular_function
## 1984 8 5134 0.15582392 biological_process
## 1985 8 5134 0.15582392 biological_process
## 1986 8 5134 0.15582392 cellular_component
## 1987 8 5134 0.15582392 biological_process
## 1988 8 5134 0.15582392 biological_process
## 1989 8 5134 0.15582392 molecular_function
## 1990 8 5134 0.15582392 molecular_function
## 1991 8 5134 0.15582392 biological_process
## 1992 8 5134 0.15582392 biological_process
## 1993 8 5134 0.15582392 biological_process
## 1994 8 5134 0.15582392 biological_process
## 1995 8 5134 0.15582392 biological_process
## 1996 8 5134 0.15582392 biological_process
## 1997 8 5134 0.15582392 biological_process
## 1998 8 5134 0.15582392 biological_process
## 1999 8 5134 0.15582392 biological_process
## 2000 8 5134 0.15582392 biological_process
## 2001 8 5134 0.15582392 biological_process
## 2002 8 5134 0.15582392 biological_process
## 2003 8 5134 0.15582392 biological_process
## 2004 8 5134 0.15582392 biological_process
## 2005 8 5134 0.15582392 biological_process
## 2006 8 5134 0.15582392 biological_process
## 2007 8 5134 0.15582392 biological_process
## 2008 8 5134 0.15582392 biological_process
## 2009 8 5134 0.15582392 biological_process
## 2010 8 5134 0.15582392 cellular_component
## 2011 8 5134 0.15582392 cellular_component
## 2012 8 5134 0.15582392 molecular_function
## 2013 8 5134 0.15582392 biological_process
## 2014 8 5134 0.15582392 biological_process
## 2015 8 5134 0.15582392 biological_process
## 2016 8 5134 0.15582392 biological_process
## 2017 8 5134 0.15582392 biological_process
## 2018 8 5134 0.15582392 molecular_function
## 2019 8 5134 0.15582392 biological_process
## 2020 8 5134 0.15582392 molecular_function
## 2021 8 5134 0.15582392 biological_process
## 2022 8 5134 0.15582392 molecular_function
## 2023 8 5134 0.15582392 molecular_function
## 2024 8 5134 0.15582392 molecular_function
## 2025 8 5134 0.15582392 molecular_function
## 2026 8 5134 0.15582392 molecular_function
## 2027 8 5134 0.15582392 cellular_component
## 2028 8 5134 0.15582392 cellular_component
## 2029 8 5134 0.15582392 biological_process
## 2030 8 5134 0.15582392 biological_process
## 2031 8 5134 0.15582392 biological_process
## 2032 8 5134 0.15582392 biological_process
## 2033 8 5134 0.15582392 biological_process
## 2034 8 5134 0.15582392 biological_process
## 2035 8 5134 0.15582392 biological_process
## 2036 8 5134 0.15582392 biological_process
## 2037 8 5134 0.15582392 biological_process
## 2038 8 5134 0.15582392 biological_process
## 2039 8 5134 0.15582392 biological_process
## 2040 8 5134 0.15582392 biological_process
## 2041 8 5134 0.15582392 biological_process
## 2042 8 5134 0.15582392 biological_process
## 2043 8 5134 0.15582392 biological_process
## 2044 8 5134 0.15582392 biological_process
## 2045 8 5134 0.15582392 biological_process
## 2046 8 5134 0.15582392 biological_process
## 2047 8 5134 0.15582392 biological_process
## 2048 8 5134 0.15582392 biological_process
## 2049 8 5134 0.15582392 biological_process
## 2050 8 5134 0.15582392 biological_process
## 2051 8 5134 0.15582392 biological_process
## 2052 8 5134 0.15582392 biological_process
## 2053 8 5134 0.15582392 molecular_function
## 2054 8 5134 0.15582392 molecular_function
## 2055 8 5134 0.15582392 molecular_function
## 2056 8 5134 0.15582392 biological_process
## 2057 8 5134 0.15582392 biological_process
## 2058 8 5134 0.15582392 biological_process
## 2059 8 5134 0.15582392 biological_process
## 2060 8 5134 0.15582392 biological_process
## 2061 8 5134 0.15582392 biological_process
## 2062 8 5134 0.15582392 biological_process
## 2063 8 5134 0.15582392 molecular_function
## 2064 8 5134 0.15582392 molecular_function
## 2065 8 5134 0.15582392 biological_process
## 2066 8 5134 0.15582392 biological_process
## 2067 8 5134 0.15582392 molecular_function
## 2068 8 5134 0.15582392 biological_process
## 2069 8 5134 0.15582392 biological_process
## 2070 8 5134 0.15582392 biological_process
## 2071 8 5134 0.15582392 biological_process
## 2072 8 5134 0.15582392 biological_process
## 2073 8 5134 0.15582392 biological_process
## 2074 8 5134 0.15582392 biological_process
## 2075 8 5134 0.15582392 biological_process
## 2076 8 5134 0.15582392 biological_process
## 2077 8 5134 0.15582392 biological_process
## 2078 8 5134 0.15582392 biological_process
## 2079 8 5134 0.15582392 biological_process
## 2080 8 5134 0.15582392 biological_process
## 2081 8 5134 0.15582392 biological_process
## 2082 8 5134 0.15582392 biological_process
## 2083 8 5134 0.15582392 biological_process
## 2084 8 5134 0.15582392 biological_process
## 2085 8 5134 0.15582392 biological_process
## 2086 8 5134 0.15582392 biological_process
## 2087 8 5134 0.15582392 biological_process
## 2088 8 5134 0.15582392 biological_process
## 2089 8 5134 0.15582392 biological_process
## 2090 8 5134 0.15582392 biological_process
## 2091 8 5134 0.15582392 molecular_function
## 2092 8 5134 0.15582392 biological_process
## 2093 8 5134 0.15582392 molecular_function
## 2094 8 5134 0.15582392 molecular_function
## 2095 8 5134 0.15582392 molecular_function
## 2096 8 5134 0.15582392 cellular_component
## 2097 8 5134 0.15582392 molecular_function
## 2098 8 5134 0.15582392 biological_process
## 2099 8 5134 0.15582392 biological_process
## 2100 8 5134 0.15582392 biological_process
## 2101 8 5134 0.15582392 biological_process
## 2102 8 5134 0.15582392 biological_process
## 2103 8 5134 0.15582392 cellular_component
## 2104 8 5134 0.15582392 cellular_component
## 2105 8 5134 0.15582392 biological_process
## 2106 8 5134 0.15582392 biological_process
## 2107 8 5134 0.15582392 molecular_function
## 2108 8 5134 0.15582392 biological_process
## 2109 8 5134 0.15582392 biological_process
## 2110 8 5134 0.15582392 molecular_function
## 2111 8 5134 0.15582392 biological_process
## 2112 8 5134 0.15582392 cellular_component
## 2113 8 5134 0.15582392 biological_process
## 2114 8 5134 0.15582392 cellular_component
## 2115 8 5134 0.15582392 biological_process
## 2116 8 5134 0.15582392 cellular_component
## 2117 8 5134 0.15582392 cellular_component
## 2118 8 5134 0.15582392 molecular_function
## 2119 8 5134 0.15582392 molecular_function
## 2120 8 5134 0.15582392 molecular_function
## 2121 8 5134 0.15582392 molecular_function
## 2122 8 5134 0.15582392 molecular_function
## 2123 8 5134 0.15582392 molecular_function
## 2124 8 5134 0.15582392 molecular_function
## 2125 8 5134 0.15582392 biological_process
## 2126 8 5134 0.15582392 cellular_component
## 2127 8 5134 0.15582392 cellular_component
## 2128 8 5134 0.15582392 biological_process
## 2129 8 5134 0.15582392 biological_process
## 2130 8 5134 0.15582392 biological_process
## 2131 8 5134 0.15582392 molecular_function
## 2132 7 5134 0.13634593 molecular_function
## 2133 7 5134 0.13634593 molecular_function
## 2134 7 5134 0.13634593 biological_process
## 2135 7 5134 0.13634593 biological_process
## 2136 7 5134 0.13634593 biological_process
## 2137 7 5134 0.13634593 molecular_function
## 2138 7 5134 0.13634593 molecular_function
## 2139 7 5134 0.13634593 biological_process
## 2140 7 5134 0.13634593 biological_process
## 2141 7 5134 0.13634593 biological_process
## 2142 7 5134 0.13634593 biological_process
## 2143 7 5134 0.13634593 molecular_function
## 2144 7 5134 0.13634593 biological_process
## 2145 7 5134 0.13634593 molecular_function
## 2146 7 5134 0.13634593 molecular_function
## 2147 7 5134 0.13634593 biological_process
## 2148 7 5134 0.13634593 molecular_function
## 2149 7 5134 0.13634593 biological_process
## 2150 7 5134 0.13634593 biological_process
## 2151 7 5134 0.13634593 biological_process
## 2152 7 5134 0.13634593 biological_process
## 2153 7 5134 0.13634593 molecular_function
## 2154 7 5134 0.13634593 biological_process
## 2155 7 5134 0.13634593 biological_process
## 2156 7 5134 0.13634593 biological_process
## 2157 7 5134 0.13634593 biological_process
## 2158 7 5134 0.13634593 cellular_component
## 2159 7 5134 0.13634593 biological_process
## 2160 7 5134 0.13634593 biological_process
## 2161 7 5134 0.13634593 biological_process
## 2162 7 5134 0.13634593 biological_process
## 2163 7 5134 0.13634593 biological_process
## 2164 7 5134 0.13634593 biological_process
## 2165 7 5134 0.13634593 biological_process
## 2166 7 5134 0.13634593 biological_process
## 2167 7 5134 0.13634593 biological_process
## 2168 7 5134 0.13634593 biological_process
## 2169 7 5134 0.13634593 biological_process
## 2170 7 5134 0.13634593 cellular_component
## 2171 7 5134 0.13634593 biological_process
## 2172 7 5134 0.13634593 cellular_component
## 2173 7 5134 0.13634593 cellular_component
## 2174 7 5134 0.13634593 biological_process
## 2175 7 5134 0.13634593 biological_process
## 2176 7 5134 0.13634593 cellular_component
## 2177 7 5134 0.13634593 biological_process
## 2178 7 5134 0.13634593 cellular_component
## 2179 7 5134 0.13634593 molecular_function
## 2180 7 5134 0.13634593 biological_process
## 2181 7 5134 0.13634593 cellular_component
## 2182 7 5134 0.13634593 biological_process
## 2183 7 5134 0.13634593 biological_process
## 2184 7 5134 0.13634593 biological_process
## 2185 7 5134 0.13634593 biological_process
## 2186 7 5134 0.13634593 biological_process
## 2187 7 5134 0.13634593 molecular_function
## 2188 7 5134 0.13634593 molecular_function
## 2189 7 5134 0.13634593 biological_process
## 2190 7 5134 0.13634593 biological_process
## 2191 7 5134 0.13634593 biological_process
## 2192 7 5134 0.13634593 biological_process
## 2193 7 5134 0.13634593 cellular_component
## 2194 7 5134 0.13634593 biological_process
## 2195 7 5134 0.13634593 molecular_function
## 2196 7 5134 0.13634593 molecular_function
## 2197 7 5134 0.13634593 cellular_component
## 2198 7 5134 0.13634593 biological_process
## 2199 7 5134 0.13634593 cellular_component
## 2200 7 5134 0.13634593 cellular_component
## 2201 7 5134 0.13634593 molecular_function
## 2202 7 5134 0.13634593 biological_process
## 2203 7 5134 0.13634593 biological_process
## 2204 7 5134 0.13634593 biological_process
## 2205 7 5134 0.13634593 biological_process
## 2206 7 5134 0.13634593 biological_process
## 2207 7 5134 0.13634593 molecular_function
## 2208 7 5134 0.13634593 cellular_component
## 2209 7 5134 0.13634593 biological_process
## 2210 7 5134 0.13634593 cellular_component
## 2211 7 5134 0.13634593 biological_process
## 2212 7 5134 0.13634593 biological_process
## 2213 7 5134 0.13634593 biological_process
## 2214 7 5134 0.13634593 molecular_function
## 2215 7 5134 0.13634593 cellular_component
## 2216 7 5134 0.13634593 biological_process
## 2217 7 5134 0.13634593 molecular_function
## 2218 7 5134 0.13634593 biological_process
## 2219 7 5134 0.13634593 cellular_component
## 2220 7 5134 0.13634593 biological_process
## 2221 7 5134 0.13634593 biological_process
## 2222 7 5134 0.13634593 molecular_function
## 2223 7 5134 0.13634593 biological_process
## 2224 7 5134 0.13634593 molecular_function
## 2225 7 5134 0.13634593 molecular_function
## 2226 7 5134 0.13634593 biological_process
## 2227 7 5134 0.13634593 biological_process
## 2228 7 5134 0.13634593 cellular_component
## 2229 7 5134 0.13634593 biological_process
## 2230 7 5134 0.13634593 biological_process
## 2231 7 5134 0.13634593 biological_process
## 2232 7 5134 0.13634593 biological_process
## 2233 7 5134 0.13634593 biological_process
## 2234 7 5134 0.13634593 biological_process
## 2235 7 5134 0.13634593 cellular_component
## 2236 7 5134 0.13634593 biological_process
## 2237 7 5134 0.13634593 biological_process
## 2238 7 5134 0.13634593 cellular_component
## 2239 7 5134 0.13634593 biological_process
## 2240 7 5134 0.13634593 biological_process
## 2241 7 5134 0.13634593 biological_process
## 2242 7 5134 0.13634593 biological_process
## 2243 7 5134 0.13634593 biological_process
## 2244 7 5134 0.13634593 molecular_function
## 2245 7 5134 0.13634593 molecular_function
## 2246 7 5134 0.13634593 cellular_component
## 2247 7 5134 0.13634593 cellular_component
## 2248 7 5134 0.13634593 molecular_function
## 2249 7 5134 0.13634593 biological_process
## 2250 7 5134 0.13634593 biological_process
## 2251 7 5134 0.13634593 biological_process
## 2252 7 5134 0.13634593 biological_process
## 2253 7 5134 0.13634593 biological_process
## 2254 7 5134 0.13634593 biological_process
## 2255 7 5134 0.13634593 cellular_component
## 2256 7 5134 0.13634593 molecular_function
## 2257 7 5134 0.13634593 cellular_component
## 2258 7 5134 0.13634593 biological_process
## 2259 7 5134 0.13634593 cellular_component
## 2260 7 5134 0.13634593 molecular_function
## 2261 7 5134 0.13634593 biological_process
## 2262 7 5134 0.13634593 biological_process
## 2263 7 5134 0.13634593 biological_process
## 2264 7 5134 0.13634593 biological_process
## 2265 7 5134 0.13634593 biological_process
## 2266 7 5134 0.13634593 biological_process
## 2267 7 5134 0.13634593 biological_process
## 2268 7 5134 0.13634593 biological_process
## 2269 7 5134 0.13634593 biological_process
## 2270 7 5134 0.13634593 biological_process
## 2271 7 5134 0.13634593 biological_process
## 2272 7 5134 0.13634593 biological_process
## 2273 7 5134 0.13634593 biological_process
## 2274 7 5134 0.13634593 biological_process
## 2275 7 5134 0.13634593 biological_process
## 2276 7 5134 0.13634593 biological_process
## 2277 7 5134 0.13634593 biological_process
## 2278 7 5134 0.13634593 biological_process
## 2279 7 5134 0.13634593 biological_process
## 2280 7 5134 0.13634593 biological_process
## 2281 7 5134 0.13634593 biological_process
## 2282 7 5134 0.13634593 biological_process
## 2283 7 5134 0.13634593 biological_process
## 2284 7 5134 0.13634593 biological_process
## 2285 7 5134 0.13634593 biological_process
## 2286 7 5134 0.13634593 biological_process
## 2287 7 5134 0.13634593 biological_process
## 2288 7 5134 0.13634593 biological_process
## 2289 7 5134 0.13634593 cellular_component
## 2290 7 5134 0.13634593 cellular_component
## 2291 7 5134 0.13634593 biological_process
## 2292 7 5134 0.13634593 cellular_component
## 2293 7 5134 0.13634593 biological_process
## 2294 7 5134 0.13634593 cellular_component
## 2295 7 5134 0.13634593 molecular_function
## 2296 7 5134 0.13634593 biological_process
## 2297 7 5134 0.13634593 molecular_function
## 2298 7 5134 0.13634593 molecular_function
## 2299 7 5134 0.13634593 molecular_function
## 2300 7 5134 0.13634593 biological_process
## 2301 7 5134 0.13634593 biological_process
## 2302 7 5134 0.13634593 biological_process
## 2303 7 5134 0.13634593 molecular_function
## 2304 7 5134 0.13634593 molecular_function
## 2305 7 5134 0.13634593 molecular_function
## 2306 7 5134 0.13634593 cellular_component
## 2307 7 5134 0.13634593 molecular_function
## 2308 7 5134 0.13634593 biological_process
## 2309 7 5134 0.13634593 biological_process
## 2310 7 5134 0.13634593 biological_process
## 2311 7 5134 0.13634593 biological_process
## 2312 7 5134 0.13634593 biological_process
## 2313 7 5134 0.13634593 biological_process
## 2314 7 5134 0.13634593 biological_process
## 2315 7 5134 0.13634593 biological_process
## 2316 7 5134 0.13634593 biological_process
## 2317 7 5134 0.13634593 biological_process
## 2318 7 5134 0.13634593 biological_process
## 2319 7 5134 0.13634593 biological_process
## 2320 7 5134 0.13634593 biological_process
## 2321 7 5134 0.13634593 biological_process
## 2322 7 5134 0.13634593 biological_process
## 2323 7 5134 0.13634593 biological_process
## 2324 7 5134 0.13634593 biological_process
## 2325 7 5134 0.13634593 biological_process
## 2326 7 5134 0.13634593 biological_process
## 2327 7 5134 0.13634593 biological_process
## 2328 7 5134 0.13634593 biological_process
## 2329 7 5134 0.13634593 biological_process
## 2330 7 5134 0.13634593 biological_process
## 2331 7 5134 0.13634593 biological_process
## 2332 7 5134 0.13634593 biological_process
## 2333 7 5134 0.13634593 biological_process
## 2334 7 5134 0.13634593 biological_process
## 2335 7 5134 0.13634593 biological_process
## 2336 7 5134 0.13634593 biological_process
## 2337 7 5134 0.13634593 biological_process
## 2338 7 5134 0.13634593 biological_process
## 2339 7 5134 0.13634593 biological_process
## 2340 7 5134 0.13634593 cellular_component
## 2341 7 5134 0.13634593 cellular_component
## 2342 7 5134 0.13634593 biological_process
## 2343 7 5134 0.13634593 cellular_component
## 2344 7 5134 0.13634593 biological_process
## 2345 7 5134 0.13634593 biological_process
## 2346 7 5134 0.13634593 molecular_function
## 2347 7 5134 0.13634593 biological_process
## 2348 7 5134 0.13634593 biological_process
## 2349 7 5134 0.13634593 biological_process
## 2350 7 5134 0.13634593 molecular_function
## 2351 7 5134 0.13634593 biological_process
## 2352 7 5134 0.13634593 biological_process
## 2353 7 5134 0.13634593 molecular_function
## 2354 7 5134 0.13634593 biological_process
## 2355 7 5134 0.13634593 biological_process
## 2356 7 5134 0.13634593 molecular_function
## 2357 7 5134 0.13634593 cellular_component
## 2358 7 5134 0.13634593 biological_process
## 2359 7 5134 0.13634593 biological_process
## 2360 7 5134 0.13634593 biological_process
## 2361 7 5134 0.13634593 biological_process
## 2362 7 5134 0.13634593 biological_process
## 2363 7 5134 0.13634593 biological_process
## 2364 7 5134 0.13634593 biological_process
## 2365 7 5134 0.13634593 biological_process
## 2366 7 5134 0.13634593 biological_process
## 2367 7 5134 0.13634593 biological_process
## 2368 7 5134 0.13634593 biological_process
## 2369 7 5134 0.13634593 biological_process
## 2370 7 5134 0.13634593 biological_process
## 2371 7 5134 0.13634593 biological_process
## 2372 7 5134 0.13634593 biological_process
## 2373 7 5134 0.13634593 biological_process
## 2374 7 5134 0.13634593 biological_process
## 2375 7 5134 0.13634593 biological_process
## 2376 7 5134 0.13634593 biological_process
## 2377 7 5134 0.13634593 biological_process
## 2378 7 5134 0.13634593 biological_process
## 2379 7 5134 0.13634593 biological_process
## 2380 7 5134 0.13634593 biological_process
## 2381 7 5134 0.13634593 biological_process
## 2382 7 5134 0.13634593 biological_process
## 2383 7 5134 0.13634593 biological_process
## 2384 7 5134 0.13634593 biological_process
## 2385 7 5134 0.13634593 biological_process
## 2386 7 5134 0.13634593 biological_process
## 2387 7 5134 0.13634593 biological_process
## 2388 7 5134 0.13634593 biological_process
## 2389 7 5134 0.13634593 biological_process
## 2390 7 5134 0.13634593 cellular_component
## 2391 7 5134 0.13634593 biological_process
## 2392 7 5134 0.13634593 biological_process
## 2393 7 5134 0.13634593 biological_process
## 2394 7 5134 0.13634593 molecular_function
## 2395 7 5134 0.13634593 biological_process
## 2396 7 5134 0.13634593 cellular_component
## 2397 7 5134 0.13634593 cellular_component
## 2398 7 5134 0.13634593 biological_process
## 2399 7 5134 0.13634593 biological_process
## 2400 7 5134 0.13634593 biological_process
## 2401 7 5134 0.13634593 molecular_function
## 2402 7 5134 0.13634593 molecular_function
## 2403 7 5134 0.13634593 cellular_component
## 2404 7 5134 0.13634593 biological_process
## 2405 7 5134 0.13634593 biological_process
## 2406 7 5134 0.13634593 cellular_component
## 2407 7 5134 0.13634593 biological_process
## 2408 7 5134 0.13634593 cellular_component
## 2409 7 5134 0.13634593 cellular_component
## 2410 7 5134 0.13634593 cellular_component
## 2411 7 5134 0.13634593 cellular_component
## 2412 7 5134 0.13634593 biological_process
## 2413 7 5134 0.13634593 biological_process
## 2414 7 5134 0.13634593 biological_process
## 2415 7 5134 0.13634593 cellular_component
## 2416 7 5134 0.13634593 cellular_component
## 2417 7 5134 0.13634593 biological_process
## 2418 7 5134 0.13634593 biological_process
## 2419 7 5134 0.13634593 biological_process
## 2420 7 5134 0.13634593 biological_process
## 2421 7 5134 0.13634593 biological_process
## 2422 7 5134 0.13634593 molecular_function
## 2423 7 5134 0.13634593 molecular_function
## 2424 7 5134 0.13634593 biological_process
## 2425 6 5134 0.11686794 molecular_function
## 2426 6 5134 0.11686794 molecular_function
## 2427 6 5134 0.11686794 molecular_function
## 2428 6 5134 0.11686794 biological_process
## 2429 6 5134 0.11686794 biological_process
## 2430 6 5134 0.11686794 biological_process
## 2431 6 5134 0.11686794 biological_process
## 2432 6 5134 0.11686794 molecular_function
## 2433 6 5134 0.11686794 biological_process
## 2434 6 5134 0.11686794 biological_process
## 2435 6 5134 0.11686794 biological_process
## 2436 6 5134 0.11686794 molecular_function
## 2437 6 5134 0.11686794 cellular_component
## 2438 6 5134 0.11686794 molecular_function
## 2439 6 5134 0.11686794 biological_process
## 2440 6 5134 0.11686794 cellular_component
## 2441 6 5134 0.11686794 biological_process
## 2442 6 5134 0.11686794 molecular_function
## 2443 6 5134 0.11686794 cellular_component
## 2444 6 5134 0.11686794 cellular_component
## 2445 6 5134 0.11686794 cellular_component
## 2446 6 5134 0.11686794 biological_process
## 2447 6 5134 0.11686794 biological_process
## 2448 6 5134 0.11686794 molecular_function
## 2449 6 5134 0.11686794 biological_process
## 2450 6 5134 0.11686794 molecular_function
## 2451 6 5134 0.11686794 molecular_function
## 2452 6 5134 0.11686794 biological_process
## 2453 6 5134 0.11686794 biological_process
## 2454 6 5134 0.11686794 cellular_component
## 2455 6 5134 0.11686794 biological_process
## 2456 6 5134 0.11686794 biological_process
## 2457 6 5134 0.11686794 molecular_function
## 2458 6 5134 0.11686794 biological_process
## 2459 6 5134 0.11686794 molecular_function
## 2460 6 5134 0.11686794 cellular_component
## 2461 6 5134 0.11686794 molecular_function
## 2462 6 5134 0.11686794 molecular_function
## 2463 6 5134 0.11686794 biological_process
## 2464 6 5134 0.11686794 biological_process
## 2465 6 5134 0.11686794 biological_process
## 2466 6 5134 0.11686794 cellular_component
## 2467 6 5134 0.11686794 cellular_component
## 2468 6 5134 0.11686794 biological_process
## 2469 6 5134 0.11686794 biological_process
## 2470 6 5134 0.11686794 biological_process
## 2471 6 5134 0.11686794 biological_process
## 2472 6 5134 0.11686794 biological_process
## 2473 6 5134 0.11686794 biological_process
## 2474 6 5134 0.11686794 biological_process
## 2475 6 5134 0.11686794 biological_process
## 2476 6 5134 0.11686794 biological_process
## 2477 6 5134 0.11686794 biological_process
## 2478 6 5134 0.11686794 biological_process
## 2479 6 5134 0.11686794 molecular_function
## 2480 6 5134 0.11686794 cellular_component
## 2481 6 5134 0.11686794 cellular_component
## 2482 6 5134 0.11686794 biological_process
## 2483 6 5134 0.11686794 cellular_component
## 2484 6 5134 0.11686794 molecular_function
## 2485 6 5134 0.11686794 cellular_component
## 2486 6 5134 0.11686794 biological_process
## 2487 6 5134 0.11686794 biological_process
## 2488 6 5134 0.11686794 biological_process
## 2489 6 5134 0.11686794 cellular_component
## 2490 6 5134 0.11686794 molecular_function
## 2491 6 5134 0.11686794 molecular_function
## 2492 6 5134 0.11686794 molecular_function
## 2493 6 5134 0.11686794 molecular_function
## 2494 6 5134 0.11686794 molecular_function
## 2495 6 5134 0.11686794 biological_process
## 2496 6 5134 0.11686794 biological_process
## 2497 6 5134 0.11686794 biological_process
## 2498 6 5134 0.11686794 molecular_function
## 2499 6 5134 0.11686794 biological_process
## 2500 6 5134 0.11686794 biological_process
## 2501 6 5134 0.11686794 biological_process
## 2502 6 5134 0.11686794 biological_process
## 2503 6 5134 0.11686794 biological_process
## 2504 6 5134 0.11686794 molecular_function
## 2505 6 5134 0.11686794 cellular_component
## 2506 6 5134 0.11686794 biological_process
## 2507 6 5134 0.11686794 biological_process
## 2508 6 5134 0.11686794 biological_process
## 2509 6 5134 0.11686794 biological_process
## 2510 6 5134 0.11686794 biological_process
## 2511 6 5134 0.11686794 biological_process
## 2512 6 5134 0.11686794 biological_process
## 2513 6 5134 0.11686794 biological_process
## 2514 6 5134 0.11686794 biological_process
## 2515 6 5134 0.11686794 biological_process
## 2516 6 5134 0.11686794 biological_process
## 2517 6 5134 0.11686794 biological_process
## 2518 6 5134 0.11686794 biological_process
## 2519 6 5134 0.11686794 molecular_function
## 2520 6 5134 0.11686794 biological_process
## 2521 6 5134 0.11686794 biological_process
## 2522 6 5134 0.11686794 biological_process
## 2523 6 5134 0.11686794 biological_process
## 2524 6 5134 0.11686794 molecular_function
## 2525 6 5134 0.11686794 cellular_component
## 2526 6 5134 0.11686794 molecular_function
## 2527 6 5134 0.11686794 molecular_function
## 2528 6 5134 0.11686794 biological_process
## 2529 6 5134 0.11686794 biological_process
## 2530 6 5134 0.11686794 biological_process
## 2531 6 5134 0.11686794 biological_process
## 2532 6 5134 0.11686794 biological_process
## 2533 6 5134 0.11686794 biological_process
## 2534 6 5134 0.11686794 biological_process
## 2535 6 5134 0.11686794 molecular_function
## 2536 6 5134 0.11686794 biological_process
## 2537 6 5134 0.11686794 biological_process
## 2538 6 5134 0.11686794 biological_process
## 2539 6 5134 0.11686794 biological_process
## 2540 6 5134 0.11686794 biological_process
## 2541 6 5134 0.11686794 cellular_component
## 2542 6 5134 0.11686794 biological_process
## 2543 6 5134 0.11686794 biological_process
## 2544 6 5134 0.11686794 molecular_function
## 2545 6 5134 0.11686794 molecular_function
## 2546 6 5134 0.11686794 biological_process
## 2547 6 5134 0.11686794 biological_process
## 2548 6 5134 0.11686794 biological_process
## 2549 6 5134 0.11686794 biological_process
## 2550 6 5134 0.11686794 biological_process
## 2551 6 5134 0.11686794 biological_process
## 2552 6 5134 0.11686794 molecular_function
## 2553 6 5134 0.11686794 molecular_function
## 2554 6 5134 0.11686794 biological_process
## 2555 6 5134 0.11686794 biological_process
## 2556 6 5134 0.11686794 biological_process
## 2557 6 5134 0.11686794 cellular_component
## 2558 6 5134 0.11686794 biological_process
## 2559 6 5134 0.11686794 cellular_component
## 2560 6 5134 0.11686794 biological_process
## 2561 6 5134 0.11686794 biological_process
## 2562 6 5134 0.11686794 biological_process
## 2563 6 5134 0.11686794 cellular_component
## 2564 6 5134 0.11686794 cellular_component
## 2565 6 5134 0.11686794 cellular_component
## 2566 6 5134 0.11686794 biological_process
## 2567 6 5134 0.11686794 cellular_component
## 2568 6 5134 0.11686794 molecular_function
## 2569 6 5134 0.11686794 biological_process
## 2570 6 5134 0.11686794 biological_process
## 2571 6 5134 0.11686794 molecular_function
## 2572 6 5134 0.11686794 biological_process
## 2573 6 5134 0.11686794 molecular_function
## 2574 6 5134 0.11686794 molecular_function
## 2575 6 5134 0.11686794 biological_process
## 2576 6 5134 0.11686794 biological_process
## 2577 6 5134 0.11686794 molecular_function
## 2578 6 5134 0.11686794 biological_process
## 2579 6 5134 0.11686794 biological_process
## 2580 6 5134 0.11686794 biological_process
## 2581 6 5134 0.11686794 biological_process
## 2582 6 5134 0.11686794 biological_process
## 2583 6 5134 0.11686794 biological_process
## 2584 6 5134 0.11686794 molecular_function
## 2585 6 5134 0.11686794 molecular_function
## 2586 6 5134 0.11686794 biological_process
## 2587 6 5134 0.11686794 cellular_component
## 2588 6 5134 0.11686794 molecular_function
## 2589 6 5134 0.11686794 biological_process
## 2590 6 5134 0.11686794 biological_process
## 2591 6 5134 0.11686794 biological_process
## 2592 6 5134 0.11686794 biological_process
## 2593 6 5134 0.11686794 molecular_function
## 2594 6 5134 0.11686794 biological_process
## 2595 6 5134 0.11686794 molecular_function
## 2596 6 5134 0.11686794 biological_process
## 2597 6 5134 0.11686794 biological_process
## 2598 6 5134 0.11686794 molecular_function
## 2599 6 5134 0.11686794 biological_process
## 2600 6 5134 0.11686794 biological_process
## 2601 6 5134 0.11686794 cellular_component
## 2602 6 5134 0.11686794 molecular_function
## 2603 6 5134 0.11686794 molecular_function
## 2604 6 5134 0.11686794 molecular_function
## 2605 6 5134 0.11686794 molecular_function
## 2606 6 5134 0.11686794 biological_process
## 2607 6 5134 0.11686794 biological_process
## 2608 6 5134 0.11686794 biological_process
## 2609 6 5134 0.11686794 cellular_component
## 2610 6 5134 0.11686794 molecular_function
## 2611 6 5134 0.11686794 biological_process
## 2612 6 5134 0.11686794 cellular_component
## 2613 6 5134 0.11686794 cellular_component
## 2614 6 5134 0.11686794 cellular_component
## 2615 6 5134 0.11686794 biological_process
## 2616 6 5134 0.11686794 cellular_component
## 2617 6 5134 0.11686794 biological_process
## 2618 6 5134 0.11686794 biological_process
## 2619 6 5134 0.11686794 molecular_function
## 2620 6 5134 0.11686794 molecular_function
## 2621 6 5134 0.11686794 molecular_function
## 2622 6 5134 0.11686794 biological_process
## 2623 6 5134 0.11686794 biological_process
## 2624 6 5134 0.11686794 molecular_function
## 2625 6 5134 0.11686794 molecular_function
## 2626 6 5134 0.11686794 cellular_component
## 2627 6 5134 0.11686794 biological_process
## 2628 6 5134 0.11686794 biological_process
## 2629 6 5134 0.11686794 biological_process
## 2630 6 5134 0.11686794 biological_process
## 2631 6 5134 0.11686794 biological_process
## 2632 6 5134 0.11686794 biological_process
## 2633 6 5134 0.11686794 biological_process
## 2634 6 5134 0.11686794 biological_process
## 2635 6 5134 0.11686794 biological_process
## 2636 6 5134 0.11686794 biological_process
## 2637 6 5134 0.11686794 biological_process
## 2638 6 5134 0.11686794 biological_process
## 2639 6 5134 0.11686794 biological_process
## 2640 6 5134 0.11686794 biological_process
## 2641 6 5134 0.11686794 biological_process
## 2642 6 5134 0.11686794 biological_process
## 2643 6 5134 0.11686794 biological_process
## 2644 6 5134 0.11686794 biological_process
## 2645 6 5134 0.11686794 biological_process
## 2646 6 5134 0.11686794 biological_process
## 2647 6 5134 0.11686794 biological_process
## 2648 6 5134 0.11686794 biological_process
## 2649 6 5134 0.11686794 biological_process
## 2650 6 5134 0.11686794 biological_process
## 2651 6 5134 0.11686794 biological_process
## 2652 6 5134 0.11686794 biological_process
## 2653 6 5134 0.11686794 biological_process
## 2654 6 5134 0.11686794 biological_process
## 2655 6 5134 0.11686794 biological_process
## 2656 6 5134 0.11686794 molecular_function
## 2657 6 5134 0.11686794 molecular_function
## 2658 6 5134 0.11686794 cellular_component
## 2659 6 5134 0.11686794 biological_process
## 2660 6 5134 0.11686794 cellular_component
## 2661 6 5134 0.11686794 biological_process
## 2662 6 5134 0.11686794 molecular_function
## 2663 6 5134 0.11686794 biological_process
## 2664 6 5134 0.11686794 biological_process
## 2665 6 5134 0.11686794 cellular_component
## 2666 6 5134 0.11686794 cellular_component
## 2667 6 5134 0.11686794 biological_process
## 2668 6 5134 0.11686794 biological_process
## 2669 6 5134 0.11686794 biological_process
## 2670 6 5134 0.11686794 molecular_function
## 2671 6 5134 0.11686794 biological_process
## 2672 6 5134 0.11686794 cellular_component
## 2673 6 5134 0.11686794 biological_process
## 2674 6 5134 0.11686794 cellular_component
## 2675 6 5134 0.11686794 molecular_function
## 2676 6 5134 0.11686794 molecular_function
## 2677 6 5134 0.11686794 biological_process
## 2678 6 5134 0.11686794 molecular_function
## 2679 6 5134 0.11686794 biological_process
## 2680 6 5134 0.11686794 biological_process
## 2681 6 5134 0.11686794 biological_process
## 2682 6 5134 0.11686794 biological_process
## 2683 6 5134 0.11686794 molecular_function
## 2684 6 5134 0.11686794 biological_process
## 2685 6 5134 0.11686794 biological_process
## 2686 6 5134 0.11686794 biological_process
## 2687 6 5134 0.11686794 biological_process
## 2688 6 5134 0.11686794 biological_process
## 2689 6 5134 0.11686794 biological_process
## 2690 6 5134 0.11686794 biological_process
## 2691 6 5134 0.11686794 biological_process
## 2692 6 5134 0.11686794 biological_process
## 2693 6 5134 0.11686794 biological_process
## 2694 6 5134 0.11686794 biological_process
## 2695 6 5134 0.11686794 biological_process
## 2696 6 5134 0.11686794 biological_process
## 2697 6 5134 0.11686794 biological_process
## 2698 6 5134 0.11686794 biological_process
## 2699 6 5134 0.11686794 biological_process
## 2700 6 5134 0.11686794 biological_process
## 2701 6 5134 0.11686794 biological_process
## 2702 6 5134 0.11686794 biological_process
## 2703 6 5134 0.11686794 biological_process
## 2704 6 5134 0.11686794 biological_process
## 2705 6 5134 0.11686794 biological_process
## 2706 6 5134 0.11686794 biological_process
## 2707 6 5134 0.11686794 biological_process
## 2708 6 5134 0.11686794 biological_process
## 2709 6 5134 0.11686794 biological_process
## 2710 6 5134 0.11686794 biological_process
## 2711 6 5134 0.11686794 biological_process
## 2712 6 5134 0.11686794 biological_process
## 2713 6 5134 0.11686794 biological_process
## 2714 6 5134 0.11686794 biological_process
## 2715 6 5134 0.11686794 biological_process
## 2716 6 5134 0.11686794 biological_process
## 2717 6 5134 0.11686794 biological_process
## 2718 6 5134 0.11686794 biological_process
## 2719 6 5134 0.11686794 biological_process
## 2720 6 5134 0.11686794 biological_process
## 2721 6 5134 0.11686794 biological_process
## 2722 6 5134 0.11686794 biological_process
## 2723 6 5134 0.11686794 biological_process
## 2724 6 5134 0.11686794 biological_process
## 2725 6 5134 0.11686794 biological_process
## 2726 6 5134 0.11686794 biological_process
## 2727 6 5134 0.11686794 biological_process
## 2728 6 5134 0.11686794 biological_process
## 2729 6 5134 0.11686794 biological_process
## 2730 6 5134 0.11686794 biological_process
## 2731 6 5134 0.11686794 biological_process
## 2732 6 5134 0.11686794 biological_process
## 2733 6 5134 0.11686794 biological_process
## 2734 6 5134 0.11686794 biological_process
## 2735 6 5134 0.11686794 biological_process
## 2736 6 5134 0.11686794 biological_process
## 2737 6 5134 0.11686794 biological_process
## 2738 6 5134 0.11686794 cellular_component
## 2739 6 5134 0.11686794 biological_process
## 2740 6 5134 0.11686794 cellular_component
## 2741 6 5134 0.11686794 biological_process
## 2742 6 5134 0.11686794 biological_process
## 2743 6 5134 0.11686794 biological_process
## 2744 6 5134 0.11686794 cellular_component
## 2745 6 5134 0.11686794 cellular_component
## 2746 6 5134 0.11686794 cellular_component
## 2747 6 5134 0.11686794 molecular_function
## 2748 6 5134 0.11686794 biological_process
## 2749 6 5134 0.11686794 biological_process
## 2750 6 5134 0.11686794 biological_process
## 2751 6 5134 0.11686794 molecular_function
## 2752 6 5134 0.11686794 molecular_function
## 2753 6 5134 0.11686794 cellular_component
## 2754 6 5134 0.11686794 biological_process
## 2755 6 5134 0.11686794 biological_process
## 2756 6 5134 0.11686794 biological_process
## 2757 6 5134 0.11686794 molecular_function
## 2758 6 5134 0.11686794 molecular_function
## 2759 6 5134 0.11686794 molecular_function
## 2760 6 5134 0.11686794 biological_process
## 2761 6 5134 0.11686794 biological_process
## 2762 6 5134 0.11686794 biological_process
## 2763 6 5134 0.11686794 biological_process
## 2764 6 5134 0.11686794 biological_process
## 2765 6 5134 0.11686794 biological_process
## 2766 6 5134 0.11686794 biological_process
## 2767 6 5134 0.11686794 biological_process
## 2768 6 5134 0.11686794 biological_process
## 2769 6 5134 0.11686794 biological_process
## 2770 6 5134 0.11686794 biological_process
## 2771 6 5134 0.11686794 biological_process
## 2772 6 5134 0.11686794 biological_process
## 2773 6 5134 0.11686794 biological_process
## 2774 6 5134 0.11686794 biological_process
## 2775 6 5134 0.11686794 biological_process
## 2776 6 5134 0.11686794 biological_process
## 2777 6 5134 0.11686794 biological_process
## 2778 6 5134 0.11686794 biological_process
## 2779 6 5134 0.11686794 biological_process
## 2780 6 5134 0.11686794 biological_process
## 2781 6 5134 0.11686794 biological_process
## 2782 6 5134 0.11686794 biological_process
## 2783 6 5134 0.11686794 biological_process
## 2784 6 5134 0.11686794 biological_process
## 2785 6 5134 0.11686794 biological_process
## 2786 6 5134 0.11686794 biological_process
## 2787 6 5134 0.11686794 biological_process
## 2788 6 5134 0.11686794 biological_process
## 2789 6 5134 0.11686794 biological_process
## 2790 6 5134 0.11686794 biological_process
## 2791 6 5134 0.11686794 biological_process
## 2792 6 5134 0.11686794 biological_process
## 2793 6 5134 0.11686794 biological_process
## 2794 6 5134 0.11686794 biological_process
## 2795 6 5134 0.11686794 biological_process
## 2796 6 5134 0.11686794 biological_process
## 2797 6 5134 0.11686794 biological_process
## 2798 6 5134 0.11686794 biological_process
## 2799 6 5134 0.11686794 biological_process
## 2800 6 5134 0.11686794 biological_process
## 2801 6 5134 0.11686794 biological_process
## 2802 6 5134 0.11686794 cellular_component
## 2803 6 5134 0.11686794 biological_process
## 2804 6 5134 0.11686794 molecular_function
## 2805 6 5134 0.11686794 molecular_function
## 2806 6 5134 0.11686794 molecular_function
## 2807 6 5134 0.11686794 biological_process
## 2808 6 5134 0.11686794 biological_process
## 2809 6 5134 0.11686794 molecular_function
## 2810 6 5134 0.11686794 biological_process
## 2811 6 5134 0.11686794 cellular_component
## 2812 6 5134 0.11686794 biological_process
## 2813 6 5134 0.11686794 molecular_function
## 2814 6 5134 0.11686794 cellular_component
## 2815 6 5134 0.11686794 cellular_component
## 2816 6 5134 0.11686794 cellular_component
## 2817 6 5134 0.11686794 molecular_function
## 2818 6 5134 0.11686794 biological_process
## 2819 6 5134 0.11686794 molecular_function
## 2820 6 5134 0.11686794 molecular_function
## 2821 6 5134 0.11686794 biological_process
## 2822 6 5134 0.11686794 biological_process
## 2823 6 5134 0.11686794 biological_process
## 2824 6 5134 0.11686794 molecular_function
## 2825 6 5134 0.11686794 biological_process
## 2826 6 5134 0.11686794 biological_process
## 2827 6 5134 0.11686794 biological_process
## 2828 6 5134 0.11686794 molecular_function
## 2829 6 5134 0.11686794 biological_process
## 2830 6 5134 0.11686794 biological_process
## 2831 6 5134 0.11686794 biological_process
## 2832 6 5134 0.11686794 biological_process
## 2833 6 5134 0.11686794 biological_process
## 2834 6 5134 0.11686794 biological_process
## 2835 6 5134 0.11686794 cellular_component
## 2836 6 5134 0.11686794 biological_process
## 2837 6 5134 0.11686794 cellular_component
## 2838 6 5134 0.11686794 molecular_function
## 2839 6 5134 0.11686794 biological_process
## 2840 6 5134 0.11686794 biological_process
## 2841 6 5134 0.11686794 biological_process
## 2842 6 5134 0.11686794 cellular_component
## 2843 6 5134 0.11686794 molecular_function
## 2844 6 5134 0.11686794 molecular_function
## 2845 6 5134 0.11686794 biological_process
## 2846 6 5134 0.11686794 biological_process
## 2847 6 5134 0.11686794 cellular_component
## 2848 6 5134 0.11686794 biological_process
## 2849 6 5134 0.11686794 biological_process
## 2850 6 5134 0.11686794 molecular_function
## 2851 5 5134 0.09738995 molecular_function
## 2852 5 5134 0.09738995 molecular_function
## 2853 5 5134 0.09738995 molecular_function
## 2854 5 5134 0.09738995 biological_process
## 2855 5 5134 0.09738995 molecular_function
## 2856 5 5134 0.09738995 biological_process
## 2857 5 5134 0.09738995 molecular_function
## 2858 5 5134 0.09738995 molecular_function
## 2859 5 5134 0.09738995 molecular_function
## 2860 5 5134 0.09738995 cellular_component
## 2861 5 5134 0.09738995 cellular_component
## 2862 5 5134 0.09738995 biological_process
## 2863 5 5134 0.09738995 biological_process
## 2864 5 5134 0.09738995 biological_process
## 2865 5 5134 0.09738995 molecular_function
## 2866 5 5134 0.09738995 biological_process
## 2867 5 5134 0.09738995 molecular_function
## 2868 5 5134 0.09738995 molecular_function
## 2869 5 5134 0.09738995 biological_process
## 2870 5 5134 0.09738995 biological_process
## 2871 5 5134 0.09738995 molecular_function
## 2872 5 5134 0.09738995 biological_process
## 2873 5 5134 0.09738995 molecular_function
## 2874 5 5134 0.09738995 molecular_function
## 2875 5 5134 0.09738995 biological_process
## 2876 5 5134 0.09738995 biological_process
## 2877 5 5134 0.09738995 biological_process
## 2878 5 5134 0.09738995 cellular_component
## 2879 5 5134 0.09738995 biological_process
## 2880 5 5134 0.09738995 biological_process
## 2881 5 5134 0.09738995 molecular_function
## 2882 5 5134 0.09738995 molecular_function
## 2883 5 5134 0.09738995 cellular_component
## 2884 5 5134 0.09738995 cellular_component
## 2885 5 5134 0.09738995 biological_process
## 2886 5 5134 0.09738995 cellular_component
## 2887 5 5134 0.09738995 biological_process
## 2888 5 5134 0.09738995 biological_process
## 2889 5 5134 0.09738995 cellular_component
## 2890 5 5134 0.09738995 biological_process
## 2891 5 5134 0.09738995 cellular_component
## 2892 5 5134 0.09738995 biological_process
## 2893 5 5134 0.09738995 molecular_function
## 2894 5 5134 0.09738995 molecular_function
## 2895 5 5134 0.09738995 molecular_function
## 2896 5 5134 0.09738995 biological_process
## 2897 5 5134 0.09738995 molecular_function
## 2898 5 5134 0.09738995 biological_process
## 2899 5 5134 0.09738995 molecular_function
## 2900 5 5134 0.09738995 cellular_component
## 2901 5 5134 0.09738995 molecular_function
## 2902 5 5134 0.09738995 biological_process
## 2903 5 5134 0.09738995 biological_process
## 2904 5 5134 0.09738995 biological_process
## 2905 5 5134 0.09738995 biological_process
## 2906 5 5134 0.09738995 biological_process
## 2907 5 5134 0.09738995 biological_process
## 2908 5 5134 0.09738995 biological_process
## 2909 5 5134 0.09738995 biological_process
## 2910 5 5134 0.09738995 biological_process
## 2911 5 5134 0.09738995 biological_process
## 2912 5 5134 0.09738995 biological_process
## 2913 5 5134 0.09738995 biological_process
## 2914 5 5134 0.09738995 biological_process
## 2915 5 5134 0.09738995 biological_process
## 2916 5 5134 0.09738995 biological_process
## 2917 5 5134 0.09738995 biological_process
## 2918 5 5134 0.09738995 molecular_function
## 2919 5 5134 0.09738995 biological_process
## 2920 5 5134 0.09738995 biological_process
## 2921 5 5134 0.09738995 biological_process
## 2922 5 5134 0.09738995 biological_process
## 2923 5 5134 0.09738995 biological_process
## 2924 5 5134 0.09738995 biological_process
## 2925 5 5134 0.09738995 biological_process
## 2926 5 5134 0.09738995 cellular_component
## 2927 5 5134 0.09738995 cellular_component
## 2928 5 5134 0.09738995 cellular_component
## 2929 5 5134 0.09738995 biological_process
## 2930 5 5134 0.09738995 cellular_component
## 2931 5 5134 0.09738995 molecular_function
## 2932 5 5134 0.09738995 molecular_function
## 2933 5 5134 0.09738995 molecular_function
## 2934 5 5134 0.09738995 cellular_component
## 2935 5 5134 0.09738995 cellular_component
## 2936 5 5134 0.09738995 biological_process
## 2937 5 5134 0.09738995 cellular_component
## 2938 5 5134 0.09738995 molecular_function
## 2939 5 5134 0.09738995 biological_process
## 2940 5 5134 0.09738995 cellular_component
## 2941 5 5134 0.09738995 biological_process
## 2942 5 5134 0.09738995 molecular_function
## 2943 5 5134 0.09738995 biological_process
## 2944 5 5134 0.09738995 biological_process
## 2945 5 5134 0.09738995 molecular_function
## 2946 5 5134 0.09738995 molecular_function
## 2947 5 5134 0.09738995 biological_process
## 2948 5 5134 0.09738995 biological_process
## 2949 5 5134 0.09738995 biological_process
## 2950 5 5134 0.09738995 biological_process
## 2951 5 5134 0.09738995 biological_process
## 2952 5 5134 0.09738995 molecular_function
## 2953 5 5134 0.09738995 molecular_function
## 2954 5 5134 0.09738995 cellular_component
## 2955 5 5134 0.09738995 biological_process
## 2956 5 5134 0.09738995 biological_process
## 2957 5 5134 0.09738995 biological_process
## 2958 5 5134 0.09738995 biological_process
## 2959 5 5134 0.09738995 molecular_function
## 2960 5 5134 0.09738995 biological_process
## 2961 5 5134 0.09738995 biological_process
## 2962 5 5134 0.09738995 cellular_component
## 2963 5 5134 0.09738995 biological_process
## 2964 5 5134 0.09738995 cellular_component
## 2965 5 5134 0.09738995 biological_process
## 2966 5 5134 0.09738995 biological_process
## 2967 5 5134 0.09738995 biological_process
## 2968 5 5134 0.09738995 biological_process
## 2969 5 5134 0.09738995 biological_process
## 2970 5 5134 0.09738995 biological_process
## 2971 5 5134 0.09738995 biological_process
## 2972 5 5134 0.09738995 biological_process
## 2973 5 5134 0.09738995 biological_process
## 2974 5 5134 0.09738995 biological_process
## 2975 5 5134 0.09738995 biological_process
## 2976 5 5134 0.09738995 biological_process
## 2977 5 5134 0.09738995 cellular_component
## 2978 5 5134 0.09738995 biological_process
## 2979 5 5134 0.09738995 molecular_function
## 2980 5 5134 0.09738995 biological_process
## 2981 5 5134 0.09738995 biological_process
## 2982 5 5134 0.09738995 cellular_component
## 2983 5 5134 0.09738995 biological_process
## 2984 5 5134 0.09738995 molecular_function
## 2985 5 5134 0.09738995 molecular_function
## 2986 5 5134 0.09738995 molecular_function
## 2987 5 5134 0.09738995 biological_process
## 2988 5 5134 0.09738995 molecular_function
## 2989 5 5134 0.09738995 biological_process
## 2990 5 5134 0.09738995 molecular_function
## 2991 5 5134 0.09738995 molecular_function
## 2992 5 5134 0.09738995 biological_process
## 2993 5 5134 0.09738995 cellular_component
## 2994 5 5134 0.09738995 biological_process
## 2995 5 5134 0.09738995 molecular_function
## 2996 5 5134 0.09738995 biological_process
## 2997 5 5134 0.09738995 biological_process
## 2998 5 5134 0.09738995 biological_process
## 2999 5 5134 0.09738995 biological_process
## 3000 5 5134 0.09738995 biological_process
## 3001 5 5134 0.09738995 biological_process
## 3002 5 5134 0.09738995 cellular_component
## 3003 5 5134 0.09738995 biological_process
## 3004 5 5134 0.09738995 biological_process
## 3005 5 5134 0.09738995 molecular_function
## 3006 5 5134 0.09738995 biological_process
## 3007 5 5134 0.09738995 biological_process
## 3008 5 5134 0.09738995 biological_process
## 3009 5 5134 0.09738995 biological_process
## 3010 5 5134 0.09738995 biological_process
## 3011 5 5134 0.09738995 biological_process
## 3012 5 5134 0.09738995 biological_process
## 3013 5 5134 0.09738995 biological_process
## 3014 5 5134 0.09738995 molecular_function
## 3015 5 5134 0.09738995 molecular_function
## 3016 5 5134 0.09738995 molecular_function
## 3017 5 5134 0.09738995 biological_process
## 3018 5 5134 0.09738995 molecular_function
## 3019 5 5134 0.09738995 cellular_component
## 3020 5 5134 0.09738995 molecular_function
## 3021 5 5134 0.09738995 biological_process
## 3022 5 5134 0.09738995 molecular_function
## 3023 5 5134 0.09738995 molecular_function
## 3024 5 5134 0.09738995 molecular_function
## 3025 5 5134 0.09738995 molecular_function
## 3026 5 5134 0.09738995 cellular_component
## 3027 5 5134 0.09738995 biological_process
## 3028 5 5134 0.09738995 biological_process
## 3029 5 5134 0.09738995 molecular_function
## 3030 5 5134 0.09738995 biological_process
## 3031 5 5134 0.09738995 biological_process
## 3032 5 5134 0.09738995 biological_process
## 3033 5 5134 0.09738995 cellular_component
## 3034 5 5134 0.09738995 molecular_function
## 3035 5 5134 0.09738995 biological_process
## 3036 5 5134 0.09738995 molecular_function
## 3037 5 5134 0.09738995 cellular_component
## 3038 5 5134 0.09738995 biological_process
## 3039 5 5134 0.09738995 molecular_function
## 3040 5 5134 0.09738995 molecular_function
## 3041 5 5134 0.09738995 biological_process
## 3042 5 5134 0.09738995 biological_process
## 3043 5 5134 0.09738995 biological_process
## 3044 5 5134 0.09738995 biological_process
## 3045 5 5134 0.09738995 biological_process
## 3046 5 5134 0.09738995 molecular_function
## 3047 5 5134 0.09738995 biological_process
## 3048 5 5134 0.09738995 biological_process
## 3049 5 5134 0.09738995 biological_process
## 3050 5 5134 0.09738995 biological_process
## 3051 5 5134 0.09738995 molecular_function
## 3052 5 5134 0.09738995 cellular_component
## 3053 5 5134 0.09738995 biological_process
## 3054 5 5134 0.09738995 biological_process
## 3055 5 5134 0.09738995 molecular_function
## 3056 5 5134 0.09738995 molecular_function
## 3057 5 5134 0.09738995 biological_process
## 3058 5 5134 0.09738995 biological_process
## 3059 5 5134 0.09738995 biological_process
## 3060 5 5134 0.09738995 biological_process
## 3061 5 5134 0.09738995 biological_process
## 3062 5 5134 0.09738995 biological_process
## 3063 5 5134 0.09738995 biological_process
## 3064 5 5134 0.09738995 biological_process
## 3065 5 5134 0.09738995 biological_process
## 3066 5 5134 0.09738995 biological_process
## 3067 5 5134 0.09738995 cellular_component
## 3068 5 5134 0.09738995 cellular_component
## 3069 5 5134 0.09738995 biological_process
## 3070 5 5134 0.09738995 biological_process
## 3071 5 5134 0.09738995 biological_process
## 3072 5 5134 0.09738995 molecular_function
## 3073 5 5134 0.09738995 biological_process
## 3074 5 5134 0.09738995 biological_process
## 3075 5 5134 0.09738995 biological_process
## 3076 5 5134 0.09738995 biological_process
## 3077 5 5134 0.09738995 molecular_function
## 3078 5 5134 0.09738995 biological_process
## 3079 5 5134 0.09738995 biological_process
## 3080 5 5134 0.09738995 biological_process
## 3081 5 5134 0.09738995 cellular_component
## 3082 5 5134 0.09738995 biological_process
## 3083 5 5134 0.09738995 biological_process
## 3084 5 5134 0.09738995 cellular_component
## 3085 5 5134 0.09738995 molecular_function
## 3086 5 5134 0.09738995 biological_process
## 3087 5 5134 0.09738995 molecular_function
## 3088 5 5134 0.09738995 biological_process
## 3089 5 5134 0.09738995 biological_process
## 3090 5 5134 0.09738995 molecular_function
## 3091 5 5134 0.09738995 molecular_function
## 3092 5 5134 0.09738995 molecular_function
## 3093 5 5134 0.09738995 biological_process
## 3094 5 5134 0.09738995 biological_process
## 3095 5 5134 0.09738995 biological_process
## 3096 5 5134 0.09738995 biological_process
## 3097 5 5134 0.09738995 biological_process
## 3098 5 5134 0.09738995 biological_process
## 3099 5 5134 0.09738995 biological_process
## 3100 5 5134 0.09738995 biological_process
## 3101 5 5134 0.09738995 biological_process
## 3102 5 5134 0.09738995 biological_process
## 3103 5 5134 0.09738995 biological_process
## 3104 5 5134 0.09738995 biological_process
## 3105 5 5134 0.09738995 biological_process
## 3106 5 5134 0.09738995 biological_process
## 3107 5 5134 0.09738995 biological_process
## 3108 5 5134 0.09738995 biological_process
## 3109 5 5134 0.09738995 biological_process
## 3110 5 5134 0.09738995 biological_process
## 3111 5 5134 0.09738995 biological_process
## 3112 5 5134 0.09738995 biological_process
## 3113 5 5134 0.09738995 biological_process
## 3114 5 5134 0.09738995 biological_process
## 3115 5 5134 0.09738995 biological_process
## 3116 5 5134 0.09738995 biological_process
## 3117 5 5134 0.09738995 biological_process
## 3118 5 5134 0.09738995 biological_process
## 3119 5 5134 0.09738995 biological_process
## 3120 5 5134 0.09738995 biological_process
## 3121 5 5134 0.09738995 biological_process
## 3122 5 5134 0.09738995 biological_process
## 3123 5 5134 0.09738995 biological_process
## 3124 5 5134 0.09738995 biological_process
## 3125 5 5134 0.09738995 biological_process
## 3126 5 5134 0.09738995 biological_process
## 3127 5 5134 0.09738995 biological_process
## 3128 5 5134 0.09738995 biological_process
## 3129 5 5134 0.09738995 biological_process
## 3130 5 5134 0.09738995 biological_process
## 3131 5 5134 0.09738995 biological_process
## 3132 5 5134 0.09738995 biological_process
## 3133 5 5134 0.09738995 biological_process
## 3134 5 5134 0.09738995 biological_process
## 3135 5 5134 0.09738995 biological_process
## 3136 5 5134 0.09738995 cellular_component
## 3137 5 5134 0.09738995 molecular_function
## 3138 5 5134 0.09738995 biological_process
## 3139 5 5134 0.09738995 biological_process
## 3140 5 5134 0.09738995 cellular_component
## 3141 5 5134 0.09738995 biological_process
## 3142 5 5134 0.09738995 cellular_component
## 3143 5 5134 0.09738995 cellular_component
## 3144 5 5134 0.09738995 molecular_function
## 3145 5 5134 0.09738995 biological_process
## 3146 5 5134 0.09738995 biological_process
## 3147 5 5134 0.09738995 molecular_function
## 3148 5 5134 0.09738995 molecular_function
## 3149 5 5134 0.09738995 biological_process
## 3150 5 5134 0.09738995 cellular_component
## 3151 5 5134 0.09738995 molecular_function
## 3152 5 5134 0.09738995 biological_process
## 3153 5 5134 0.09738995 cellular_component
## 3154 5 5134 0.09738995 molecular_function
## 3155 5 5134 0.09738995 biological_process
## 3156 5 5134 0.09738995 biological_process
## 3157 5 5134 0.09738995 biological_process
## 3158 5 5134 0.09738995 biological_process
## 3159 5 5134 0.09738995 biological_process
## 3160 5 5134 0.09738995 molecular_function
## 3161 5 5134 0.09738995 biological_process
## 3162 5 5134 0.09738995 molecular_function
## 3163 5 5134 0.09738995 biological_process
## 3164 5 5134 0.09738995 molecular_function
## 3165 5 5134 0.09738995 molecular_function
## 3166 5 5134 0.09738995 molecular_function
## 3167 5 5134 0.09738995 molecular_function
## 3168 5 5134 0.09738995 molecular_function
## 3169 5 5134 0.09738995 biological_process
## 3170 5 5134 0.09738995 biological_process
## 3171 5 5134 0.09738995 cellular_component
## 3172 5 5134 0.09738995 biological_process
## 3173 5 5134 0.09738995 biological_process
## 3174 5 5134 0.09738995 cellular_component
## 3175 5 5134 0.09738995 molecular_function
## 3176 5 5134 0.09738995 biological_process
## 3177 5 5134 0.09738995 molecular_function
## 3178 5 5134 0.09738995 molecular_function
## 3179 5 5134 0.09738995 cellular_component
## 3180 5 5134 0.09738995 biological_process
## 3181 5 5134 0.09738995 biological_process
## 3182 5 5134 0.09738995 biological_process
## 3183 5 5134 0.09738995 biological_process
## 3184 5 5134 0.09738995 biological_process
## 3185 5 5134 0.09738995 biological_process
## 3186 5 5134 0.09738995 biological_process
## 3187 5 5134 0.09738995 biological_process
## 3188 5 5134 0.09738995 biological_process
## 3189 5 5134 0.09738995 biological_process
## 3190 5 5134 0.09738995 biological_process
## 3191 5 5134 0.09738995 biological_process
## 3192 5 5134 0.09738995 biological_process
## 3193 5 5134 0.09738995 biological_process
## 3194 5 5134 0.09738995 biological_process
## 3195 5 5134 0.09738995 biological_process
## 3196 5 5134 0.09738995 biological_process
## 3197 5 5134 0.09738995 biological_process
## 3198 5 5134 0.09738995 biological_process
## 3199 5 5134 0.09738995 biological_process
## 3200 5 5134 0.09738995 biological_process
## 3201 5 5134 0.09738995 biological_process
## 3202 5 5134 0.09738995 biological_process
## 3203 5 5134 0.09738995 biological_process
## 3204 5 5134 0.09738995 biological_process
## 3205 5 5134 0.09738995 biological_process
## 3206 5 5134 0.09738995 biological_process
## 3207 5 5134 0.09738995 biological_process
## 3208 5 5134 0.09738995 biological_process
## 3209 5 5134 0.09738995 biological_process
## 3210 5 5134 0.09738995 biological_process
## 3211 5 5134 0.09738995 biological_process
## 3212 5 5134 0.09738995 biological_process
## 3213 5 5134 0.09738995 biological_process
## 3214 5 5134 0.09738995 biological_process
## 3215 5 5134 0.09738995 biological_process
## 3216 5 5134 0.09738995 biological_process
## 3217 5 5134 0.09738995 biological_process
## 3218 5 5134 0.09738995 biological_process
## 3219 5 5134 0.09738995 biological_process
## 3220 5 5134 0.09738995 biological_process
## 3221 5 5134 0.09738995 biological_process
## 3222 5 5134 0.09738995 biological_process
## 3223 5 5134 0.09738995 biological_process
## 3224 5 5134 0.09738995 biological_process
## 3225 5 5134 0.09738995 biological_process
## 3226 5 5134 0.09738995 biological_process
## 3227 5 5134 0.09738995 biological_process
## 3228 5 5134 0.09738995 biological_process
## 3229 5 5134 0.09738995 biological_process
## 3230 5 5134 0.09738995 biological_process
## 3231 5 5134 0.09738995 biological_process
## 3232 5 5134 0.09738995 biological_process
## 3233 5 5134 0.09738995 biological_process
## 3234 5 5134 0.09738995 molecular_function
## 3235 5 5134 0.09738995 molecular_function
## 3236 5 5134 0.09738995 biological_process
## 3237 5 5134 0.09738995 cellular_component
## 3238 5 5134 0.09738995 cellular_component
## 3239 5 5134 0.09738995 biological_process
## 3240 5 5134 0.09738995 cellular_component
## 3241 5 5134 0.09738995 biological_process
## 3242 5 5134 0.09738995 biological_process
## 3243 5 5134 0.09738995 biological_process
## 3244 5 5134 0.09738995 biological_process
## 3245 5 5134 0.09738995 molecular_function
## 3246 5 5134 0.09738995 molecular_function
## 3247 5 5134 0.09738995 biological_process
## 3248 5 5134 0.09738995 biological_process
## 3249 5 5134 0.09738995 biological_process
## 3250 5 5134 0.09738995 biological_process
## 3251 5 5134 0.09738995 biological_process
## 3252 5 5134 0.09738995 biological_process
## 3253 5 5134 0.09738995 biological_process
## 3254 5 5134 0.09738995 biological_process
## 3255 5 5134 0.09738995 biological_process
## 3256 5 5134 0.09738995 biological_process
## 3257 5 5134 0.09738995 molecular_function
## 3258 5 5134 0.09738995 molecular_function
## 3259 5 5134 0.09738995 cellular_component
## 3260 5 5134 0.09738995 biological_process
## 3261 5 5134 0.09738995 biological_process
## 3262 5 5134 0.09738995 molecular_function
## 3263 5 5134 0.09738995 biological_process
## 3264 5 5134 0.09738995 biological_process
## 3265 5 5134 0.09738995 biological_process
## 3266 5 5134 0.09738995 biological_process
## 3267 5 5134 0.09738995 biological_process
## 3268 5 5134 0.09738995 biological_process
## 3269 5 5134 0.09738995 biological_process
## 3270 5 5134 0.09738995 biological_process
## 3271 5 5134 0.09738995 biological_process
## 3272 5 5134 0.09738995 biological_process
## 3273 5 5134 0.09738995 biological_process
## 3274 5 5134 0.09738995 biological_process
## 3275 5 5134 0.09738995 biological_process
## 3276 5 5134 0.09738995 biological_process
## 3277 5 5134 0.09738995 biological_process
## 3278 5 5134 0.09738995 biological_process
## 3279 5 5134 0.09738995 biological_process
## 3280 5 5134 0.09738995 biological_process
## 3281 5 5134 0.09738995 biological_process
## 3282 5 5134 0.09738995 biological_process
## 3283 5 5134 0.09738995 biological_process
## 3284 5 5134 0.09738995 biological_process
## 3285 5 5134 0.09738995 biological_process
## 3286 5 5134 0.09738995 biological_process
## 3287 5 5134 0.09738995 biological_process
## 3288 5 5134 0.09738995 biological_process
## 3289 5 5134 0.09738995 biological_process
## 3290 5 5134 0.09738995 biological_process
## 3291 5 5134 0.09738995 biological_process
## 3292 5 5134 0.09738995 biological_process
## 3293 5 5134 0.09738995 biological_process
## 3294 5 5134 0.09738995 biological_process
## 3295 5 5134 0.09738995 biological_process
## 3296 5 5134 0.09738995 biological_process
## 3297 5 5134 0.09738995 biological_process
## 3298 5 5134 0.09738995 biological_process
## 3299 5 5134 0.09738995 biological_process
## 3300 5 5134 0.09738995 biological_process
## 3301 5 5134 0.09738995 biological_process
## 3302 5 5134 0.09738995 biological_process
## 3303 5 5134 0.09738995 biological_process
## 3304 5 5134 0.09738995 biological_process
## 3305 5 5134 0.09738995 biological_process
## 3306 5 5134 0.09738995 biological_process
## 3307 5 5134 0.09738995 biological_process
## 3308 5 5134 0.09738995 biological_process
## 3309 5 5134 0.09738995 biological_process
## 3310 5 5134 0.09738995 biological_process
## 3311 5 5134 0.09738995 biological_process
## 3312 5 5134 0.09738995 biological_process
## 3313 5 5134 0.09738995 biological_process
## 3314 5 5134 0.09738995 biological_process
## 3315 5 5134 0.09738995 biological_process
## 3316 5 5134 0.09738995 biological_process
## 3317 5 5134 0.09738995 biological_process
## 3318 5 5134 0.09738995 biological_process
## 3319 5 5134 0.09738995 biological_process
## 3320 5 5134 0.09738995 biological_process
## 3321 5 5134 0.09738995 biological_process
## 3322 5 5134 0.09738995 biological_process
## 3323 5 5134 0.09738995 biological_process
## 3324 5 5134 0.09738995 biological_process
## 3325 5 5134 0.09738995 biological_process
## 3326 5 5134 0.09738995 cellular_component
## 3327 5 5134 0.09738995 molecular_function
## 3328 5 5134 0.09738995 molecular_function
## 3329 5 5134 0.09738995 cellular_component
## 3330 5 5134 0.09738995 molecular_function
## 3331 5 5134 0.09738995 biological_process
## 3332 5 5134 0.09738995 cellular_component
## 3333 5 5134 0.09738995 biological_process
## 3334 5 5134 0.09738995 cellular_component
## 3335 5 5134 0.09738995 molecular_function
## 3336 5 5134 0.09738995 cellular_component
## 3337 5 5134 0.09738995 biological_process
## 3338 5 5134 0.09738995 biological_process
## 3339 5 5134 0.09738995 molecular_function
## 3340 5 5134 0.09738995 molecular_function
## 3341 5 5134 0.09738995 biological_process
## 3342 5 5134 0.09738995 biological_process
## 3343 5 5134 0.09738995 molecular_function
## 3344 5 5134 0.09738995 biological_process
## 3345 5 5134 0.09738995 cellular_component
## 3346 5 5134 0.09738995 cellular_component
## 3347 5 5134 0.09738995 biological_process
## 3348 5 5134 0.09738995 molecular_function
## 3349 5 5134 0.09738995 molecular_function
## 3350 5 5134 0.09738995 biological_process
## 3351 5 5134 0.09738995 biological_process
## 3352 5 5134 0.09738995 biological_process
## 3353 5 5134 0.09738995 molecular_function
## 3354 5 5134 0.09738995 molecular_function
## 3355 5 5134 0.09738995 biological_process
## 3356 5 5134 0.09738995 biological_process
## 3357 5 5134 0.09738995 biological_process
## 3358 5 5134 0.09738995 biological_process
## 3359 5 5134 0.09738995 molecular_function
## 3360 5 5134 0.09738995 molecular_function
## 3361 5 5134 0.09738995 molecular_function
## 3362 5 5134 0.09738995 cellular_component
## 3363 5 5134 0.09738995 biological_process
## 3364 5 5134 0.09738995 biological_process
## 3365 5 5134 0.09738995 molecular_function
## 3366 5 5134 0.09738995 cellular_component
## 3367 5 5134 0.09738995 biological_process
## 3368 5 5134 0.09738995 molecular_function
## 3369 5 5134 0.09738995 molecular_function
## 3370 5 5134 0.09738995 molecular_function
## 3371 5 5134 0.09738995 molecular_function
## 3372 5 5134 0.09738995 biological_process
## 3373 5 5134 0.09738995 molecular_function
## 3374 5 5134 0.09738995 biological_process
## 3375 5 5134 0.09738995 molecular_function
## 3376 5 5134 0.09738995 molecular_function
## 3377 5 5134 0.09738995 cellular_component
## 3378 5 5134 0.09738995 molecular_function
## 3379 5 5134 0.09738995 molecular_function
## 3380 5 5134 0.09738995 cellular_component
## 3381 5 5134 0.09738995 molecular_function
## 3382 5 5134 0.09738995 molecular_function
## 3383 5 5134 0.09738995 biological_process
## 3384 5 5134 0.09738995 biological_process
## 3385 5 5134 0.09738995 biological_process
## 3386 5 5134 0.09738995 cellular_component
## 3387 5 5134 0.09738995 molecular_function
## 3388 5 5134 0.09738995 biological_process
## 3389 5 5134 0.09738995 biological_process
## 3390 5 5134 0.09738995 biological_process
## 3391 5 5134 0.09738995 biological_process
## 3392 5 5134 0.09738995 biological_process
## 3393 5 5134 0.09738995 molecular_function
## 3394 5 5134 0.09738995 biological_process
## 3395 4 5134 0.07791196 molecular_function
## 3396 4 5134 0.07791196 molecular_function
## 3397 4 5134 0.07791196 molecular_function
## 3398 4 5134 0.07791196 molecular_function
## 3399 4 5134 0.07791196 molecular_function
## 3400 4 5134 0.07791196 molecular_function
## 3401 4 5134 0.07791196 molecular_function
## 3402 4 5134 0.07791196 biological_process
## 3403 4 5134 0.07791196 biological_process
## 3404 4 5134 0.07791196 molecular_function
## 3405 4 5134 0.07791196 biological_process
## 3406 4 5134 0.07791196 molecular_function
## 3407 4 5134 0.07791196 cellular_component
## 3408 4 5134 0.07791196 biological_process
## 3409 4 5134 0.07791196 molecular_function
## 3410 4 5134 0.07791196 biological_process
## 3411 4 5134 0.07791196 biological_process
## 3412 4 5134 0.07791196 biological_process
## 3413 4 5134 0.07791196 cellular_component
## 3414 4 5134 0.07791196 biological_process
## 3415 4 5134 0.07791196 biological_process
## 3416 4 5134 0.07791196 biological_process
## 3417 4 5134 0.07791196 biological_process
## 3418 4 5134 0.07791196 cellular_component
## 3419 4 5134 0.07791196 molecular_function
## 3420 4 5134 0.07791196 molecular_function
## 3421 4 5134 0.07791196 biological_process
## 3422 4 5134 0.07791196 biological_process
## 3423 4 5134 0.07791196 biological_process
## 3424 4 5134 0.07791196 cellular_component
## 3425 4 5134 0.07791196 biological_process
## 3426 4 5134 0.07791196 cellular_component
## 3427 4 5134 0.07791196 biological_process
## 3428 4 5134 0.07791196 molecular_function
## 3429 4 5134 0.07791196 molecular_function
## 3430 4 5134 0.07791196 cellular_component
## 3431 4 5134 0.07791196 biological_process
## 3432 4 5134 0.07791196 biological_process
## 3433 4 5134 0.07791196 molecular_function
## 3434 4 5134 0.07791196 cellular_component
## 3435 4 5134 0.07791196 biological_process
## 3436 4 5134 0.07791196 cellular_component
## 3437 4 5134 0.07791196 biological_process
## 3438 4 5134 0.07791196 biological_process
## 3439 4 5134 0.07791196 biological_process
## 3440 4 5134 0.07791196 molecular_function
## 3441 4 5134 0.07791196 biological_process
## 3442 4 5134 0.07791196 biological_process
## 3443 4 5134 0.07791196 biological_process
## 3444 4 5134 0.07791196 biological_process
## 3445 4 5134 0.07791196 cellular_component
## 3446 4 5134 0.07791196 biological_process
## 3447 4 5134 0.07791196 biological_process
## 3448 4 5134 0.07791196 biological_process
## 3449 4 5134 0.07791196 molecular_function
## 3450 4 5134 0.07791196 biological_process
## 3451 4 5134 0.07791196 cellular_component
## 3452 4 5134 0.07791196 biological_process
## 3453 4 5134 0.07791196 biological_process
## 3454 4 5134 0.07791196 cellular_component
## 3455 4 5134 0.07791196 biological_process
## 3456 4 5134 0.07791196 biological_process
## 3457 4 5134 0.07791196 biological_process
## 3458 4 5134 0.07791196 molecular_function
## 3459 4 5134 0.07791196 biological_process
## 3460 4 5134 0.07791196 biological_process
## 3461 4 5134 0.07791196 cellular_component
## 3462 4 5134 0.07791196 molecular_function
## 3463 4 5134 0.07791196 biological_process
## 3464 4 5134 0.07791196 biological_process
## 3465 4 5134 0.07791196 biological_process
## 3466 4 5134 0.07791196 cellular_component
## 3467 4 5134 0.07791196 biological_process
## 3468 4 5134 0.07791196 biological_process
## 3469 4 5134 0.07791196 biological_process
## 3470 4 5134 0.07791196 biological_process
## 3471 4 5134 0.07791196 biological_process
## 3472 4 5134 0.07791196 biological_process
## 3473 4 5134 0.07791196 biological_process
## 3474 4 5134 0.07791196 biological_process
## 3475 4 5134 0.07791196 biological_process
## 3476 4 5134 0.07791196 biological_process
## 3477 4 5134 0.07791196 biological_process
## 3478 4 5134 0.07791196 biological_process
## 3479 4 5134 0.07791196 biological_process
## 3480 4 5134 0.07791196 biological_process
## 3481 4 5134 0.07791196 biological_process
## 3482 4 5134 0.07791196 biological_process
## 3483 4 5134 0.07791196 molecular_function
## 3484 4 5134 0.07791196 molecular_function
## 3485 4 5134 0.07791196 biological_process
## 3486 4 5134 0.07791196 biological_process
## 3487 4 5134 0.07791196 biological_process
## 3488 4 5134 0.07791196 biological_process
## 3489 4 5134 0.07791196 biological_process
## 3490 4 5134 0.07791196 biological_process
## 3491 4 5134 0.07791196 molecular_function
## 3492 4 5134 0.07791196 biological_process
## 3493 4 5134 0.07791196 biological_process
## 3494 4 5134 0.07791196 molecular_function
## 3495 4 5134 0.07791196 biological_process
## 3496 4 5134 0.07791196 cellular_component
## 3497 4 5134 0.07791196 cellular_component
## 3498 4 5134 0.07791196 biological_process
## 3499 4 5134 0.07791196 biological_process
## 3500 4 5134 0.07791196 biological_process
## 3501 4 5134 0.07791196 cellular_component
## 3502 4 5134 0.07791196 biological_process
## 3503 4 5134 0.07791196 biological_process
## 3504 4 5134 0.07791196 biological_process
## 3505 4 5134 0.07791196 biological_process
## 3506 4 5134 0.07791196 biological_process
## 3507 4 5134 0.07791196 biological_process
## 3508 4 5134 0.07791196 cellular_component
## 3509 4 5134 0.07791196 cellular_component
## 3510 4 5134 0.07791196 cellular_component
## 3511 4 5134 0.07791196 biological_process
## 3512 4 5134 0.07791196 cellular_component
## 3513 4 5134 0.07791196 cellular_component
## 3514 4 5134 0.07791196 cellular_component
## 3515 4 5134 0.07791196 biological_process
## 3516 4 5134 0.07791196 molecular_function
## 3517 4 5134 0.07791196 biological_process
## 3518 4 5134 0.07791196 cellular_component
## 3519 4 5134 0.07791196 molecular_function
## 3520 4 5134 0.07791196 biological_process
## 3521 4 5134 0.07791196 biological_process
## 3522 4 5134 0.07791196 biological_process
## 3523 4 5134 0.07791196 biological_process
## 3524 4 5134 0.07791196 cellular_component
## 3525 4 5134 0.07791196 biological_process
## 3526 4 5134 0.07791196 cellular_component
## 3527 4 5134 0.07791196 biological_process
## 3528 4 5134 0.07791196 biological_process
## 3529 4 5134 0.07791196 biological_process
## 3530 4 5134 0.07791196 molecular_function
## 3531 4 5134 0.07791196 molecular_function
## 3532 4 5134 0.07791196 biological_process
## 3533 4 5134 0.07791196 biological_process
## 3534 4 5134 0.07791196 cellular_component
## 3535 4 5134 0.07791196 cellular_component
## 3536 4 5134 0.07791196 biological_process
## 3537 4 5134 0.07791196 biological_process
## 3538 4 5134 0.07791196 biological_process
## 3539 4 5134 0.07791196 molecular_function
## 3540 4 5134 0.07791196 molecular_function
## 3541 4 5134 0.07791196 molecular_function
## 3542 4 5134 0.07791196 biological_process
## 3543 4 5134 0.07791196 biological_process
## 3544 4 5134 0.07791196 molecular_function
## 3545 4 5134 0.07791196 cellular_component
## 3546 4 5134 0.07791196 biological_process
## 3547 4 5134 0.07791196 molecular_function
## 3548 4 5134 0.07791196 biological_process
## 3549 4 5134 0.07791196 cellular_component
## 3550 4 5134 0.07791196 biological_process
## 3551 4 5134 0.07791196 biological_process
## 3552 4 5134 0.07791196 biological_process
## 3553 4 5134 0.07791196 biological_process
## 3554 4 5134 0.07791196 biological_process
## 3555 4 5134 0.07791196 biological_process
## 3556 4 5134 0.07791196 biological_process
## 3557 4 5134 0.07791196 cellular_component
## 3558 4 5134 0.07791196 biological_process
## 3559 4 5134 0.07791196 molecular_function
## 3560 4 5134 0.07791196 biological_process
## 3561 4 5134 0.07791196 biological_process
## 3562 4 5134 0.07791196 molecular_function
## 3563 4 5134 0.07791196 biological_process
## 3564 4 5134 0.07791196 biological_process
## 3565 4 5134 0.07791196 biological_process
## 3566 4 5134 0.07791196 biological_process
## 3567 4 5134 0.07791196 biological_process
## 3568 4 5134 0.07791196 biological_process
## 3569 4 5134 0.07791196 cellular_component
## 3570 4 5134 0.07791196 biological_process
## 3571 4 5134 0.07791196 biological_process
## 3572 4 5134 0.07791196 biological_process
## 3573 4 5134 0.07791196 biological_process
## 3574 4 5134 0.07791196 biological_process
## 3575 4 5134 0.07791196 biological_process
## 3576 4 5134 0.07791196 biological_process
## 3577 4 5134 0.07791196 biological_process
## 3578 4 5134 0.07791196 molecular_function
## 3579 4 5134 0.07791196 molecular_function
## 3580 4 5134 0.07791196 cellular_component
## 3581 4 5134 0.07791196 biological_process
## 3582 4 5134 0.07791196 molecular_function
## 3583 4 5134 0.07791196 biological_process
## 3584 4 5134 0.07791196 biological_process
## 3585 4 5134 0.07791196 biological_process
## 3586 4 5134 0.07791196 biological_process
## 3587 4 5134 0.07791196 molecular_function
## 3588 4 5134 0.07791196 biological_process
## 3589 4 5134 0.07791196 biological_process
## 3590 4 5134 0.07791196 molecular_function
## 3591 4 5134 0.07791196 biological_process
## 3592 4 5134 0.07791196 molecular_function
## 3593 4 5134 0.07791196 molecular_function
## 3594 4 5134 0.07791196 molecular_function
## 3595 4 5134 0.07791196 cellular_component
## 3596 4 5134 0.07791196 biological_process
## 3597 4 5134 0.07791196 cellular_component
## 3598 4 5134 0.07791196 cellular_component
## 3599 4 5134 0.07791196 biological_process
## 3600 4 5134 0.07791196 molecular_function
## 3601 4 5134 0.07791196 biological_process
## 3602 4 5134 0.07791196 molecular_function
## 3603 4 5134 0.07791196 biological_process
## 3604 4 5134 0.07791196 biological_process
## 3605 4 5134 0.07791196 biological_process
## 3606 4 5134 0.07791196 cellular_component
## 3607 4 5134 0.07791196 cellular_component
## 3608 4 5134 0.07791196 biological_process
## 3609 4 5134 0.07791196 biological_process
## 3610 4 5134 0.07791196 molecular_function
## 3611 4 5134 0.07791196 molecular_function
## 3612 4 5134 0.07791196 cellular_component
## 3613 4 5134 0.07791196 biological_process
## 3614 4 5134 0.07791196 biological_process
## 3615 4 5134 0.07791196 biological_process
## 3616 4 5134 0.07791196 molecular_function
## 3617 4 5134 0.07791196 biological_process
## 3618 4 5134 0.07791196 biological_process
## 3619 4 5134 0.07791196 biological_process
## 3620 4 5134 0.07791196 biological_process
## 3621 4 5134 0.07791196 molecular_function
## 3622 4 5134 0.07791196 biological_process
## 3623 4 5134 0.07791196 cellular_component
## 3624 4 5134 0.07791196 molecular_function
## 3625 4 5134 0.07791196 molecular_function
## 3626 4 5134 0.07791196 cellular_component
## 3627 4 5134 0.07791196 molecular_function
## 3628 4 5134 0.07791196 molecular_function
## 3629 4 5134 0.07791196 biological_process
## 3630 4 5134 0.07791196 biological_process
## 3631 4 5134 0.07791196 molecular_function
## 3632 4 5134 0.07791196 molecular_function
## 3633 4 5134 0.07791196 molecular_function
## 3634 4 5134 0.07791196 biological_process
## 3635 4 5134 0.07791196 molecular_function
## 3636 4 5134 0.07791196 cellular_component
## 3637 4 5134 0.07791196 biological_process
## 3638 4 5134 0.07791196 biological_process
## 3639 4 5134 0.07791196 biological_process
## 3640 4 5134 0.07791196 biological_process
## 3641 4 5134 0.07791196 molecular_function
## 3642 4 5134 0.07791196 biological_process
## 3643 4 5134 0.07791196 cellular_component
## 3644 4 5134 0.07791196 cellular_component
## 3645 4 5134 0.07791196 biological_process
## 3646 4 5134 0.07791196 molecular_function
## 3647 4 5134 0.07791196 biological_process
## 3648 4 5134 0.07791196 biological_process
## 3649 4 5134 0.07791196 biological_process
## 3650 4 5134 0.07791196 molecular_function
## 3651 4 5134 0.07791196 biological_process
## 3652 4 5134 0.07791196 biological_process
## 3653 4 5134 0.07791196 cellular_component
## 3654 4 5134 0.07791196 biological_process
## 3655 4 5134 0.07791196 biological_process
## 3656 4 5134 0.07791196 biological_process
## 3657 4 5134 0.07791196 biological_process
## 3658 4 5134 0.07791196 molecular_function
## 3659 4 5134 0.07791196 biological_process
## 3660 4 5134 0.07791196 biological_process
## 3661 4 5134 0.07791196 molecular_function
## 3662 4 5134 0.07791196 biological_process
## 3663 4 5134 0.07791196 cellular_component
## 3664 4 5134 0.07791196 biological_process
## 3665 4 5134 0.07791196 biological_process
## 3666 4 5134 0.07791196 biological_process
## 3667 4 5134 0.07791196 biological_process
## 3668 4 5134 0.07791196 cellular_component
## 3669 4 5134 0.07791196 biological_process
## 3670 4 5134 0.07791196 cellular_component
## 3671 4 5134 0.07791196 biological_process
## 3672 4 5134 0.07791196 biological_process
## 3673 4 5134 0.07791196 biological_process
## 3674 4 5134 0.07791196 biological_process
## 3675 4 5134 0.07791196 biological_process
## 3676 4 5134 0.07791196 biological_process
## 3677 4 5134 0.07791196 biological_process
## 3678 4 5134 0.07791196 biological_process
## 3679 4 5134 0.07791196 molecular_function
## 3680 4 5134 0.07791196 molecular_function
## 3681 4 5134 0.07791196 cellular_component
## 3682 4 5134 0.07791196 molecular_function
## 3683 4 5134 0.07791196 cellular_component
## 3684 4 5134 0.07791196 cellular_component
## 3685 4 5134 0.07791196 biological_process
## 3686 4 5134 0.07791196 biological_process
## 3687 4 5134 0.07791196 cellular_component
## 3688 4 5134 0.07791196 molecular_function
## 3689 4 5134 0.07791196 biological_process
## 3690 4 5134 0.07791196 biological_process
## 3691 4 5134 0.07791196 biological_process
## 3692 4 5134 0.07791196 cellular_component
## 3693 4 5134 0.07791196 cellular_component
## 3694 4 5134 0.07791196 biological_process
## 3695 4 5134 0.07791196 biological_process
## 3696 4 5134 0.07791196 biological_process
## 3697 4 5134 0.07791196 biological_process
## 3698 4 5134 0.07791196 biological_process
## 3699 4 5134 0.07791196 biological_process
## 3700 4 5134 0.07791196 biological_process
## 3701 4 5134 0.07791196 biological_process
## 3702 4 5134 0.07791196 biological_process
## 3703 4 5134 0.07791196 biological_process
## 3704 4 5134 0.07791196 biological_process
## 3705 4 5134 0.07791196 biological_process
## 3706 4 5134 0.07791196 biological_process
## 3707 4 5134 0.07791196 biological_process
## 3708 4 5134 0.07791196 cellular_component
## 3709 4 5134 0.07791196 biological_process
## 3710 4 5134 0.07791196 biological_process
## 3711 4 5134 0.07791196 biological_process
## 3712 4 5134 0.07791196 biological_process
## 3713 4 5134 0.07791196 biological_process
## 3714 4 5134 0.07791196 molecular_function
## 3715 4 5134 0.07791196 biological_process
## 3716 4 5134 0.07791196 biological_process
## 3717 4 5134 0.07791196 biological_process
## 3718 4 5134 0.07791196 molecular_function
## 3719 4 5134 0.07791196 molecular_function
## 3720 4 5134 0.07791196 molecular_function
## 3721 4 5134 0.07791196 molecular_function
## 3722 4 5134 0.07791196 cellular_component
## 3723 4 5134 0.07791196 biological_process
## 3724 4 5134 0.07791196 cellular_component
## 3725 4 5134 0.07791196 biological_process
## 3726 4 5134 0.07791196 biological_process
## 3727 4 5134 0.07791196 biological_process
## 3728 4 5134 0.07791196 biological_process
## 3729 4 5134 0.07791196 biological_process
## 3730 4 5134 0.07791196 biological_process
## 3731 4 5134 0.07791196 biological_process
## 3732 4 5134 0.07791196 biological_process
## 3733 4 5134 0.07791196 biological_process
## 3734 4 5134 0.07791196 biological_process
## 3735 4 5134 0.07791196 biological_process
## 3736 4 5134 0.07791196 biological_process
## 3737 4 5134 0.07791196 biological_process
## 3738 4 5134 0.07791196 biological_process
## 3739 4 5134 0.07791196 biological_process
## 3740 4 5134 0.07791196 biological_process
## 3741 4 5134 0.07791196 biological_process
## 3742 4 5134 0.07791196 biological_process
## 3743 4 5134 0.07791196 biological_process
## 3744 4 5134 0.07791196 biological_process
## 3745 4 5134 0.07791196 biological_process
## 3746 4 5134 0.07791196 biological_process
## 3747 4 5134 0.07791196 biological_process
## 3748 4 5134 0.07791196 biological_process
## 3749 4 5134 0.07791196 biological_process
## 3750 4 5134 0.07791196 biological_process
## 3751 4 5134 0.07791196 biological_process
## 3752 4 5134 0.07791196 biological_process
## 3753 4 5134 0.07791196 biological_process
## 3754 4 5134 0.07791196 biological_process
## 3755 4 5134 0.07791196 biological_process
## 3756 4 5134 0.07791196 biological_process
## 3757 4 5134 0.07791196 biological_process
## 3758 4 5134 0.07791196 biological_process
## 3759 4 5134 0.07791196 biological_process
## 3760 4 5134 0.07791196 biological_process
## 3761 4 5134 0.07791196 biological_process
## 3762 4 5134 0.07791196 biological_process
## 3763 4 5134 0.07791196 biological_process
## 3764 4 5134 0.07791196 biological_process
## 3765 4 5134 0.07791196 biological_process
## 3766 4 5134 0.07791196 biological_process
## 3767 4 5134 0.07791196 biological_process
## 3768 4 5134 0.07791196 biological_process
## 3769 4 5134 0.07791196 biological_process
## 3770 4 5134 0.07791196 biological_process
## 3771 4 5134 0.07791196 biological_process
## 3772 4 5134 0.07791196 biological_process
## 3773 4 5134 0.07791196 biological_process
## 3774 4 5134 0.07791196 biological_process
## 3775 4 5134 0.07791196 cellular_component
## 3776 4 5134 0.07791196 biological_process
## 3777 4 5134 0.07791196 molecular_function
## 3778 4 5134 0.07791196 cellular_component
## 3779 4 5134 0.07791196 molecular_function
## 3780 4 5134 0.07791196 biological_process
## 3781 4 5134 0.07791196 molecular_function
## 3782 4 5134 0.07791196 cellular_component
## 3783 4 5134 0.07791196 biological_process
## 3784 4 5134 0.07791196 cellular_component
## 3785 4 5134 0.07791196 biological_process
## 3786 4 5134 0.07791196 biological_process
## 3787 4 5134 0.07791196 molecular_function
## 3788 4 5134 0.07791196 biological_process
## 3789 4 5134 0.07791196 biological_process
## 3790 4 5134 0.07791196 biological_process
## 3791 4 5134 0.07791196 biological_process
## 3792 4 5134 0.07791196 biological_process
## 3793 4 5134 0.07791196 molecular_function
## 3794 4 5134 0.07791196 molecular_function
## 3795 4 5134 0.07791196 molecular_function
## 3796 4 5134 0.07791196 biological_process
## 3797 4 5134 0.07791196 cellular_component
## 3798 4 5134 0.07791196 molecular_function
## 3799 4 5134 0.07791196 molecular_function
## 3800 4 5134 0.07791196 biological_process
## 3801 4 5134 0.07791196 biological_process
## 3802 4 5134 0.07791196 biological_process
## 3803 4 5134 0.07791196 biological_process
## 3804 4 5134 0.07791196 biological_process
## 3805 4 5134 0.07791196 biological_process
## 3806 4 5134 0.07791196 biological_process
## 3807 4 5134 0.07791196 molecular_function
## 3808 4 5134 0.07791196 biological_process
## 3809 4 5134 0.07791196 biological_process
## 3810 4 5134 0.07791196 biological_process
## 3811 4 5134 0.07791196 molecular_function
## 3812 4 5134 0.07791196 cellular_component
## 3813 4 5134 0.07791196 molecular_function
## 3814 4 5134 0.07791196 molecular_function
## 3815 4 5134 0.07791196 molecular_function
## 3816 4 5134 0.07791196 molecular_function
## 3817 4 5134 0.07791196 molecular_function
## 3818 4 5134 0.07791196 biological_process
## 3819 4 5134 0.07791196 molecular_function
## 3820 4 5134 0.07791196 molecular_function
## 3821 4 5134 0.07791196 molecular_function
## 3822 4 5134 0.07791196 molecular_function
## 3823 4 5134 0.07791196 molecular_function
## 3824 4 5134 0.07791196 molecular_function
## 3825 4 5134 0.07791196 biological_process
## 3826 4 5134 0.07791196 cellular_component
## 3827 4 5134 0.07791196 cellular_component
## 3828 4 5134 0.07791196 biological_process
## 3829 4 5134 0.07791196 biological_process
## 3830 4 5134 0.07791196 biological_process
## 3831 4 5134 0.07791196 biological_process
## 3832 4 5134 0.07791196 biological_process
## 3833 4 5134 0.07791196 cellular_component
## 3834 4 5134 0.07791196 molecular_function
## 3835 4 5134 0.07791196 biological_process
## 3836 4 5134 0.07791196 biological_process
## 3837 4 5134 0.07791196 biological_process
## 3838 4 5134 0.07791196 biological_process
## 3839 4 5134 0.07791196 biological_process
## 3840 4 5134 0.07791196 biological_process
## 3841 4 5134 0.07791196 biological_process
## 3842 4 5134 0.07791196 biological_process
## 3843 4 5134 0.07791196 biological_process
## 3844 4 5134 0.07791196 biological_process
## 3845 4 5134 0.07791196 biological_process
## 3846 4 5134 0.07791196 biological_process
## 3847 4 5134 0.07791196 biological_process
## 3848 4 5134 0.07791196 biological_process
## 3849 4 5134 0.07791196 biological_process
## 3850 4 5134 0.07791196 biological_process
## 3851 4 5134 0.07791196 biological_process
## 3852 4 5134 0.07791196 biological_process
## 3853 4 5134 0.07791196 biological_process
## 3854 4 5134 0.07791196 biological_process
## 3855 4 5134 0.07791196 biological_process
## 3856 4 5134 0.07791196 biological_process
## 3857 4 5134 0.07791196 biological_process
## 3858 4 5134 0.07791196 biological_process
## 3859 4 5134 0.07791196 biological_process
## 3860 4 5134 0.07791196 biological_process
## 3861 4 5134 0.07791196 biological_process
## 3862 4 5134 0.07791196 biological_process
## 3863 4 5134 0.07791196 biological_process
## 3864 4 5134 0.07791196 biological_process
## 3865 4 5134 0.07791196 biological_process
## 3866 4 5134 0.07791196 biological_process
## 3867 4 5134 0.07791196 biological_process
## 3868 4 5134 0.07791196 biological_process
## 3869 4 5134 0.07791196 biological_process
## 3870 4 5134 0.07791196 biological_process
## 3871 4 5134 0.07791196 biological_process
## 3872 4 5134 0.07791196 biological_process
## 3873 4 5134 0.07791196 biological_process
## 3874 4 5134 0.07791196 biological_process
## 3875 4 5134 0.07791196 biological_process
## 3876 4 5134 0.07791196 biological_process
## 3877 4 5134 0.07791196 biological_process
## 3878 4 5134 0.07791196 biological_process
## 3879 4 5134 0.07791196 biological_process
## 3880 4 5134 0.07791196 biological_process
## 3881 4 5134 0.07791196 biological_process
## 3882 4 5134 0.07791196 biological_process
## 3883 4 5134 0.07791196 biological_process
## 3884 4 5134 0.07791196 biological_process
## 3885 4 5134 0.07791196 biological_process
## 3886 4 5134 0.07791196 biological_process
## 3887 4 5134 0.07791196 biological_process
## 3888 4 5134 0.07791196 biological_process
## 3889 4 5134 0.07791196 biological_process
## 3890 4 5134 0.07791196 biological_process
## 3891 4 5134 0.07791196 biological_process
## 3892 4 5134 0.07791196 biological_process
## 3893 4 5134 0.07791196 biological_process
## 3894 4 5134 0.07791196 biological_process
## 3895 4 5134 0.07791196 biological_process
## 3896 4 5134 0.07791196 biological_process
## 3897 4 5134 0.07791196 biological_process
## 3898 4 5134 0.07791196 biological_process
## 3899 4 5134 0.07791196 biological_process
## 3900 4 5134 0.07791196 biological_process
## 3901 4 5134 0.07791196 biological_process
## 3902 4 5134 0.07791196 biological_process
## 3903 4 5134 0.07791196 biological_process
## 3904 4 5134 0.07791196 biological_process
## 3905 4 5134 0.07791196 biological_process
## 3906 4 5134 0.07791196 biological_process
## 3907 4 5134 0.07791196 biological_process
## 3908 4 5134 0.07791196 cellular_component
## 3909 4 5134 0.07791196 biological_process
## 3910 4 5134 0.07791196 biological_process
## 3911 4 5134 0.07791196 molecular_function
## 3912 4 5134 0.07791196 cellular_component
## 3913 4 5134 0.07791196 molecular_function
## 3914 4 5134 0.07791196 biological_process
## 3915 4 5134 0.07791196 molecular_function
## 3916 4 5134 0.07791196 biological_process
## 3917 4 5134 0.07791196 cellular_component
## 3918 4 5134 0.07791196 biological_process
## 3919 4 5134 0.07791196 biological_process
## 3920 4 5134 0.07791196 biological_process
## 3921 4 5134 0.07791196 biological_process
## 3922 4 5134 0.07791196 biological_process
## 3923 4 5134 0.07791196 biological_process
## 3924 4 5134 0.07791196 biological_process
## 3925 4 5134 0.07791196 biological_process
## 3926 4 5134 0.07791196 biological_process
## 3927 4 5134 0.07791196 molecular_function
## 3928 4 5134 0.07791196 biological_process
## 3929 4 5134 0.07791196 biological_process
## 3930 4 5134 0.07791196 molecular_function
## 3931 4 5134 0.07791196 cellular_component
## 3932 4 5134 0.07791196 cellular_component
## 3933 4 5134 0.07791196 biological_process
## 3934 4 5134 0.07791196 biological_process
## 3935 4 5134 0.07791196 biological_process
## 3936 4 5134 0.07791196 biological_process
## 3937 4 5134 0.07791196 molecular_function
## 3938 4 5134 0.07791196 cellular_component
## 3939 4 5134 0.07791196 biological_process
## 3940 4 5134 0.07791196 cellular_component
## 3941 4 5134 0.07791196 biological_process
## 3942 4 5134 0.07791196 biological_process
## 3943 4 5134 0.07791196 biological_process
## 3944 4 5134 0.07791196 biological_process
## 3945 4 5134 0.07791196 biological_process
## 3946 4 5134 0.07791196 biological_process
## 3947 4 5134 0.07791196 biological_process
## 3948 4 5134 0.07791196 biological_process
## 3949 4 5134 0.07791196 biological_process
## 3950 4 5134 0.07791196 biological_process
## 3951 4 5134 0.07791196 biological_process
## 3952 4 5134 0.07791196 biological_process
## 3953 4 5134 0.07791196 biological_process
## 3954 4 5134 0.07791196 biological_process
## 3955 4 5134 0.07791196 biological_process
## 3956 4 5134 0.07791196 biological_process
## 3957 4 5134 0.07791196 biological_process
## 3958 4 5134 0.07791196 biological_process
## 3959 4 5134 0.07791196 biological_process
## 3960 4 5134 0.07791196 biological_process
## 3961 4 5134 0.07791196 biological_process
## 3962 4 5134 0.07791196 biological_process
## 3963 4 5134 0.07791196 biological_process
## 3964 4 5134 0.07791196 biological_process
## 3965 4 5134 0.07791196 biological_process
## 3966 4 5134 0.07791196 biological_process
## 3967 4 5134 0.07791196 biological_process
## 3968 4 5134 0.07791196 biological_process
## 3969 4 5134 0.07791196 biological_process
## 3970 4 5134 0.07791196 biological_process
## 3971 4 5134 0.07791196 biological_process
## 3972 4 5134 0.07791196 biological_process
## 3973 4 5134 0.07791196 biological_process
## 3974 4 5134 0.07791196 biological_process
## 3975 4 5134 0.07791196 biological_process
## 3976 4 5134 0.07791196 biological_process
## 3977 4 5134 0.07791196 biological_process
## 3978 4 5134 0.07791196 biological_process
## 3979 4 5134 0.07791196 biological_process
## 3980 4 5134 0.07791196 biological_process
## 3981 4 5134 0.07791196 biological_process
## 3982 4 5134 0.07791196 biological_process
## 3983 4 5134 0.07791196 biological_process
## 3984 4 5134 0.07791196 biological_process
## 3985 4 5134 0.07791196 biological_process
## 3986 4 5134 0.07791196 biological_process
## 3987 4 5134 0.07791196 biological_process
## 3988 4 5134 0.07791196 biological_process
## 3989 4 5134 0.07791196 biological_process
## 3990 4 5134 0.07791196 biological_process
## 3991 4 5134 0.07791196 biological_process
## 3992 4 5134 0.07791196 biological_process
## 3993 4 5134 0.07791196 biological_process
## 3994 4 5134 0.07791196 biological_process
## 3995 4 5134 0.07791196 biological_process
## 3996 4 5134 0.07791196 biological_process
## 3997 4 5134 0.07791196 biological_process
## 3998 4 5134 0.07791196 biological_process
## 3999 4 5134 0.07791196 biological_process
## 4000 4 5134 0.07791196 biological_process
## 4001 4 5134 0.07791196 biological_process
## 4002 4 5134 0.07791196 biological_process
## 4003 4 5134 0.07791196 biological_process
## 4004 4 5134 0.07791196 biological_process
## 4005 4 5134 0.07791196 biological_process
## 4006 4 5134 0.07791196 biological_process
## 4007 4 5134 0.07791196 biological_process
## 4008 4 5134 0.07791196 biological_process
## 4009 4 5134 0.07791196 biological_process
## 4010 4 5134 0.07791196 biological_process
## 4011 4 5134 0.07791196 biological_process
## 4012 4 5134 0.07791196 biological_process
## 4013 4 5134 0.07791196 biological_process
## 4014 4 5134 0.07791196 biological_process
## 4015 4 5134 0.07791196 biological_process
## 4016 4 5134 0.07791196 biological_process
## 4017 4 5134 0.07791196 biological_process
## 4018 4 5134 0.07791196 biological_process
## 4019 4 5134 0.07791196 biological_process
## 4020 4 5134 0.07791196 biological_process
## 4021 4 5134 0.07791196 biological_process
## 4022 4 5134 0.07791196 biological_process
## 4023 4 5134 0.07791196 molecular_function
## 4024 4 5134 0.07791196 biological_process
## 4025 4 5134 0.07791196 biological_process
## 4026 4 5134 0.07791196 molecular_function
## 4027 4 5134 0.07791196 molecular_function
## 4028 4 5134 0.07791196 cellular_component
## 4029 4 5134 0.07791196 cellular_component
## 4030 4 5134 0.07791196 biological_process
## 4031 4 5134 0.07791196 molecular_function
## 4032 4 5134 0.07791196 biological_process
## 4033 4 5134 0.07791196 molecular_function
## 4034 4 5134 0.07791196 cellular_component
## 4035 4 5134 0.07791196 biological_process
## 4036 4 5134 0.07791196 biological_process
## 4037 4 5134 0.07791196 cellular_component
## 4038 4 5134 0.07791196 biological_process
## 4039 4 5134 0.07791196 molecular_function
## 4040 4 5134 0.07791196 biological_process
## 4041 4 5134 0.07791196 biological_process
## 4042 4 5134 0.07791196 cellular_component
## 4043 4 5134 0.07791196 biological_process
## 4044 4 5134 0.07791196 biological_process
## 4045 4 5134 0.07791196 molecular_function
## 4046 4 5134 0.07791196 biological_process
## 4047 4 5134 0.07791196 biological_process
## 4048 4 5134 0.07791196 cellular_component
## 4049 4 5134 0.07791196 cellular_component
## 4050 4 5134 0.07791196 molecular_function
## 4051 4 5134 0.07791196 biological_process
## 4052 4 5134 0.07791196 biological_process
## 4053 4 5134 0.07791196 biological_process
## 4054 4 5134 0.07791196 biological_process
## 4055 4 5134 0.07791196 cellular_component
## 4056 4 5134 0.07791196 biological_process
## 4057 4 5134 0.07791196 biological_process
## 4058 4 5134 0.07791196 cellular_component
## 4059 4 5134 0.07791196 molecular_function
## 4060 4 5134 0.07791196 biological_process
## 4061 4 5134 0.07791196 biological_process
## 4062 4 5134 0.07791196 cellular_component
## 4063 4 5134 0.07791196 molecular_function
## 4064 4 5134 0.07791196 molecular_function
## 4065 4 5134 0.07791196 biological_process
## 4066 4 5134 0.07791196 biological_process
## 4067 4 5134 0.07791196 biological_process
## 4068 4 5134 0.07791196 biological_process
## 4069 4 5134 0.07791196 molecular_function
## 4070 4 5134 0.07791196 biological_process
## 4071 4 5134 0.07791196 biological_process
## 4072 4 5134 0.07791196 biological_process
## 4073 4 5134 0.07791196 molecular_function
## 4074 4 5134 0.07791196 cellular_component
## 4075 4 5134 0.07791196 cellular_component
## 4076 4 5134 0.07791196 biological_process
## 4077 4 5134 0.07791196 biological_process
## 4078 4 5134 0.07791196 molecular_function
## 4079 4 5134 0.07791196 molecular_function
## 4080 4 5134 0.07791196 molecular_function
## 4081 4 5134 0.07791196 molecular_function
## 4082 4 5134 0.07791196 biological_process
## 4083 4 5134 0.07791196 biological_process
## 4084 4 5134 0.07791196 cellular_component
## 4085 4 5134 0.07791196 biological_process
## 4086 4 5134 0.07791196 molecular_function
## 4087 4 5134 0.07791196 biological_process
## 4088 4 5134 0.07791196 biological_process
## 4089 4 5134 0.07791196 molecular_function
## 4090 4 5134 0.07791196 cellular_component
## 4091 4 5134 0.07791196 molecular_function
## 4092 4 5134 0.07791196 biological_process
## 4093 4 5134 0.07791196 biological_process
## 4094 4 5134 0.07791196 cellular_component
## 4095 4 5134 0.07791196 biological_process
## 4096 4 5134 0.07791196 biological_process
## 4097 4 5134 0.07791196 biological_process
## 4098 4 5134 0.07791196 biological_process
## 4099 4 5134 0.07791196 molecular_function
## 4100 4 5134 0.07791196 biological_process
## 4101 4 5134 0.07791196 biological_process
## 4102 4 5134 0.07791196 biological_process
## 4103 4 5134 0.07791196 biological_process
## 4104 4 5134 0.07791196 biological_process
## 4105 4 5134 0.07791196 biological_process
## 4106 4 5134 0.07791196 molecular_function
## 4107 4 5134 0.07791196 molecular_function
## 4108 4 5134 0.07791196 biological_process
## 4109 4 5134 0.07791196 cellular_component
## 4110 4 5134 0.07791196 molecular_function
## 4111 4 5134 0.07791196 biological_process
## 4112 4 5134 0.07791196 cellular_component
## 4113 4 5134 0.07791196 cellular_component
## 4114 3 5134 0.05843397 biological_process
## 4115 3 5134 0.05843397 biological_process
## 4116 3 5134 0.05843397 molecular_function
## 4117 3 5134 0.05843397 molecular_function
## 4118 3 5134 0.05843397 molecular_function
## 4119 3 5134 0.05843397 molecular_function
## 4120 3 5134 0.05843397 molecular_function
## 4121 3 5134 0.05843397 molecular_function
## 4122 3 5134 0.05843397 molecular_function
## 4123 3 5134 0.05843397 molecular_function
## 4124 3 5134 0.05843397 molecular_function
## 4125 3 5134 0.05843397 biological_process
## 4126 3 5134 0.05843397 biological_process
## 4127 3 5134 0.05843397 cellular_component
## 4128 3 5134 0.05843397 biological_process
## 4129 3 5134 0.05843397 molecular_function
## 4130 3 5134 0.05843397 molecular_function
## 4131 3 5134 0.05843397 molecular_function
## 4132 3 5134 0.05843397 biological_process
## 4133 3 5134 0.05843397 biological_process
## 4134 3 5134 0.05843397 biological_process
## 4135 3 5134 0.05843397 biological_process
## 4136 3 5134 0.05843397 biological_process
## 4137 3 5134 0.05843397 biological_process
## 4138 3 5134 0.05843397 molecular_function
## 4139 3 5134 0.05843397 molecular_function
## 4140 3 5134 0.05843397 molecular_function
## 4141 3 5134 0.05843397 molecular_function
## 4142 3 5134 0.05843397 biological_process
## 4143 3 5134 0.05843397 biological_process
## 4144 3 5134 0.05843397 molecular_function
## 4145 3 5134 0.05843397 molecular_function
## 4146 3 5134 0.05843397 cellular_component
## 4147 3 5134 0.05843397 cellular_component
## 4148 3 5134 0.05843397 biological_process
## 4149 3 5134 0.05843397 molecular_function
## 4150 3 5134 0.05843397 biological_process
## 4151 3 5134 0.05843397 molecular_function
## 4152 3 5134 0.05843397 biological_process
## 4153 3 5134 0.05843397 biological_process
## 4154 3 5134 0.05843397 biological_process
## 4155 3 5134 0.05843397 cellular_component
## 4156 3 5134 0.05843397 biological_process
## 4157 3 5134 0.05843397 biological_process
## 4158 3 5134 0.05843397 biological_process
## 4159 3 5134 0.05843397 biological_process
## 4160 3 5134 0.05843397 biological_process
## 4161 3 5134 0.05843397 biological_process
## 4162 3 5134 0.05843397 cellular_component
## 4163 3 5134 0.05843397 cellular_component
## 4164 3 5134 0.05843397 molecular_function
## 4165 3 5134 0.05843397 biological_process
## 4166 3 5134 0.05843397 biological_process
## 4167 3 5134 0.05843397 biological_process
## 4168 3 5134 0.05843397 molecular_function
## 4169 3 5134 0.05843397 molecular_function
## 4170 3 5134 0.05843397 biological_process
## 4171 3 5134 0.05843397 cellular_component
## 4172 3 5134 0.05843397 molecular_function
## 4173 3 5134 0.05843397 biological_process
## 4174 3 5134 0.05843397 biological_process
## 4175 3 5134 0.05843397 molecular_function
## 4176 3 5134 0.05843397 molecular_function
## 4177 3 5134 0.05843397 molecular_function
## 4178 3 5134 0.05843397 molecular_function
## 4179 3 5134 0.05843397 molecular_function
## 4180 3 5134 0.05843397 biological_process
## 4181 3 5134 0.05843397 biological_process
## 4182 3 5134 0.05843397 biological_process
## 4183 3 5134 0.05843397 biological_process
## 4184 3 5134 0.05843397 biological_process
## 4185 3 5134 0.05843397 cellular_component
## 4186 3 5134 0.05843397 biological_process
## 4187 3 5134 0.05843397 biological_process
## 4188 3 5134 0.05843397 cellular_component
## 4189 3 5134 0.05843397 biological_process
## 4190 3 5134 0.05843397 biological_process
## 4191 3 5134 0.05843397 cellular_component
## 4192 3 5134 0.05843397 biological_process
## 4193 3 5134 0.05843397 biological_process
## 4194 3 5134 0.05843397 cellular_component
## 4195 3 5134 0.05843397 cellular_component
## 4196 3 5134 0.05843397 biological_process
## 4197 3 5134 0.05843397 biological_process
## 4198 3 5134 0.05843397 biological_process
## 4199 3 5134 0.05843397 molecular_function
## 4200 3 5134 0.05843397 molecular_function
## 4201 3 5134 0.05843397 molecular_function
## 4202 3 5134 0.05843397 biological_process
## 4203 3 5134 0.05843397 biological_process
## 4204 3 5134 0.05843397 cellular_component
## 4205 3 5134 0.05843397 biological_process
## 4206 3 5134 0.05843397 biological_process
## 4207 3 5134 0.05843397 molecular_function
## 4208 3 5134 0.05843397 molecular_function
## 4209 3 5134 0.05843397 cellular_component
## 4210 3 5134 0.05843397 biological_process
## 4211 3 5134 0.05843397 cellular_component
## 4212 3 5134 0.05843397 cellular_component
## 4213 3 5134 0.05843397 molecular_function
## 4214 3 5134 0.05843397 molecular_function
## 4215 3 5134 0.05843397 molecular_function
## 4216 3 5134 0.05843397 molecular_function
## 4217 3 5134 0.05843397 biological_process
## 4218 3 5134 0.05843397 biological_process
## 4219 3 5134 0.05843397 molecular_function
## 4220 3 5134 0.05843397 molecular_function
## 4221 3 5134 0.05843397 biological_process
## 4222 3 5134 0.05843397 molecular_function
## 4223 3 5134 0.05843397 molecular_function
## 4224 3 5134 0.05843397 biological_process
## 4225 3 5134 0.05843397 molecular_function
## 4226 3 5134 0.05843397 molecular_function
## 4227 3 5134 0.05843397 molecular_function
## 4228 3 5134 0.05843397 biological_process
## 4229 3 5134 0.05843397 biological_process
## 4230 3 5134 0.05843397 biological_process
## 4231 3 5134 0.05843397 biological_process
## 4232 3 5134 0.05843397 biological_process
## 4233 3 5134 0.05843397 molecular_function
## 4234 3 5134 0.05843397 cellular_component
## 4235 3 5134 0.05843397 biological_process
## 4236 3 5134 0.05843397 biological_process
## 4237 3 5134 0.05843397 biological_process
## 4238 3 5134 0.05843397 biological_process
## 4239 3 5134 0.05843397 molecular_function
## 4240 3 5134 0.05843397 biological_process
## 4241 3 5134 0.05843397 biological_process
## 4242 3 5134 0.05843397 biological_process
## 4243 3 5134 0.05843397 biological_process
## 4244 3 5134 0.05843397 biological_process
## 4245 3 5134 0.05843397 biological_process
## 4246 3 5134 0.05843397 biological_process
## 4247 3 5134 0.05843397 biological_process
## 4248 3 5134 0.05843397 biological_process
## 4249 3 5134 0.05843397 biological_process
## 4250 3 5134 0.05843397 biological_process
## 4251 3 5134 0.05843397 biological_process
## 4252 3 5134 0.05843397 biological_process
## 4253 3 5134 0.05843397 biological_process
## 4254 3 5134 0.05843397 biological_process
## 4255 3 5134 0.05843397 biological_process
## 4256 3 5134 0.05843397 biological_process
## 4257 3 5134 0.05843397 biological_process
## 4258 3 5134 0.05843397 biological_process
## 4259 3 5134 0.05843397 biological_process
## 4260 3 5134 0.05843397 biological_process
## 4261 3 5134 0.05843397 biological_process
## 4262 3 5134 0.05843397 biological_process
## 4263 3 5134 0.05843397 biological_process
## 4264 3 5134 0.05843397 biological_process
## 4265 3 5134 0.05843397 biological_process
## 4266 3 5134 0.05843397 biological_process
## 4267 3 5134 0.05843397 biological_process
## 4268 3 5134 0.05843397 biological_process
## 4269 3 5134 0.05843397 biological_process
## 4270 3 5134 0.05843397 biological_process
## 4271 3 5134 0.05843397 biological_process
## 4272 3 5134 0.05843397 biological_process
## 4273 3 5134 0.05843397 biological_process
## 4274 3 5134 0.05843397 biological_process
## 4275 3 5134 0.05843397 biological_process
## 4276 3 5134 0.05843397 biological_process
## 4277 3 5134 0.05843397 biological_process
## 4278 3 5134 0.05843397 cellular_component
## 4279 3 5134 0.05843397 biological_process
## 4280 3 5134 0.05843397 molecular_function
## 4281 3 5134 0.05843397 molecular_function
## 4282 3 5134 0.05843397 biological_process
## 4283 3 5134 0.05843397 biological_process
## 4284 3 5134 0.05843397 biological_process
## 4285 3 5134 0.05843397 biological_process
## 4286 3 5134 0.05843397 molecular_function
## 4287 3 5134 0.05843397 molecular_function
## 4288 3 5134 0.05843397 biological_process
## 4289 3 5134 0.05843397 molecular_function
## 4290 3 5134 0.05843397 biological_process
## 4291 3 5134 0.05843397 molecular_function
## 4292 3 5134 0.05843397 cellular_component
## 4293 3 5134 0.05843397 biological_process
## 4294 3 5134 0.05843397 molecular_function
## 4295 3 5134 0.05843397 cellular_component
## 4296 3 5134 0.05843397 molecular_function
## 4297 3 5134 0.05843397 cellular_component
## 4298 3 5134 0.05843397 molecular_function
## 4299 3 5134 0.05843397 biological_process
## 4300 3 5134 0.05843397 molecular_function
## 4301 3 5134 0.05843397 cellular_component
## 4302 3 5134 0.05843397 molecular_function
## 4303 3 5134 0.05843397 biological_process
## 4304 3 5134 0.05843397 biological_process
## 4305 3 5134 0.05843397 biological_process
## 4306 3 5134 0.05843397 biological_process
## 4307 3 5134 0.05843397 biological_process
## 4308 3 5134 0.05843397 biological_process
## 4309 3 5134 0.05843397 biological_process
## 4310 3 5134 0.05843397 biological_process
## 4311 3 5134 0.05843397 biological_process
## 4312 3 5134 0.05843397 cellular_component
## 4313 3 5134 0.05843397 cellular_component
## 4314 3 5134 0.05843397 biological_process
## 4315 3 5134 0.05843397 biological_process
## 4316 3 5134 0.05843397 biological_process
## 4317 3 5134 0.05843397 cellular_component
## 4318 3 5134 0.05843397 molecular_function
## 4319 3 5134 0.05843397 molecular_function
## 4320 3 5134 0.05843397 biological_process
## 4321 3 5134 0.05843397 molecular_function
## 4322 3 5134 0.05843397 molecular_function
## 4323 3 5134 0.05843397 molecular_function
## 4324 3 5134 0.05843397 molecular_function
## 4325 3 5134 0.05843397 biological_process
## 4326 3 5134 0.05843397 biological_process
## 4327 3 5134 0.05843397 molecular_function
## 4328 3 5134 0.05843397 biological_process
## 4329 3 5134 0.05843397 biological_process
## 4330 3 5134 0.05843397 molecular_function
## 4331 3 5134 0.05843397 cellular_component
## 4332 3 5134 0.05843397 biological_process
## 4333 3 5134 0.05843397 cellular_component
## 4334 3 5134 0.05843397 biological_process
## 4335 3 5134 0.05843397 biological_process
## 4336 3 5134 0.05843397 biological_process
## 4337 3 5134 0.05843397 biological_process
## 4338 3 5134 0.05843397 cellular_component
## 4339 3 5134 0.05843397 cellular_component
## 4340 3 5134 0.05843397 biological_process
## 4341 3 5134 0.05843397 cellular_component
## 4342 3 5134 0.05843397 biological_process
## 4343 3 5134 0.05843397 biological_process
## 4344 3 5134 0.05843397 biological_process
## 4345 3 5134 0.05843397 biological_process
## 4346 3 5134 0.05843397 cellular_component
## 4347 3 5134 0.05843397 biological_process
## 4348 3 5134 0.05843397 biological_process
## 4349 3 5134 0.05843397 biological_process
## 4350 3 5134 0.05843397 biological_process
## 4351 3 5134 0.05843397 biological_process
## 4352 3 5134 0.05843397 molecular_function
## 4353 3 5134 0.05843397 molecular_function
## 4354 3 5134 0.05843397 biological_process
## 4355 3 5134 0.05843397 biological_process
## 4356 3 5134 0.05843397 biological_process
## 4357 3 5134 0.05843397 molecular_function
## 4358 3 5134 0.05843397 cellular_component
## 4359 3 5134 0.05843397 biological_process
## 4360 3 5134 0.05843397 molecular_function
## 4361 3 5134 0.05843397 molecular_function
## 4362 3 5134 0.05843397 biological_process
## 4363 3 5134 0.05843397 biological_process
## 4364 3 5134 0.05843397 biological_process
## 4365 3 5134 0.05843397 biological_process
## 4366 3 5134 0.05843397 cellular_component
## 4367 3 5134 0.05843397 cellular_component
## 4368 3 5134 0.05843397 biological_process
## 4369 3 5134 0.05843397 molecular_function
## 4370 3 5134 0.05843397 cellular_component
## 4371 3 5134 0.05843397 biological_process
## 4372 3 5134 0.05843397 biological_process
## 4373 3 5134 0.05843397 biological_process
## 4374 3 5134 0.05843397 biological_process
## 4375 3 5134 0.05843397 biological_process
## 4376 3 5134 0.05843397 cellular_component
## 4377 3 5134 0.05843397 biological_process
## 4378 3 5134 0.05843397 biological_process
## 4379 3 5134 0.05843397 biological_process
## 4380 3 5134 0.05843397 biological_process
## 4381 3 5134 0.05843397 biological_process
## 4382 3 5134 0.05843397 biological_process
## 4383 3 5134 0.05843397 biological_process
## 4384 3 5134 0.05843397 biological_process
## 4385 3 5134 0.05843397 cellular_component
## 4386 3 5134 0.05843397 cellular_component
## 4387 3 5134 0.05843397 biological_process
## 4388 3 5134 0.05843397 biological_process
## 4389 3 5134 0.05843397 molecular_function
## 4390 3 5134 0.05843397 cellular_component
## 4391 3 5134 0.05843397 cellular_component
## 4392 3 5134 0.05843397 cellular_component
## 4393 3 5134 0.05843397 biological_process
## 4394 3 5134 0.05843397 biological_process
## 4395 3 5134 0.05843397 biological_process
## 4396 3 5134 0.05843397 biological_process
## 4397 3 5134 0.05843397 biological_process
## 4398 3 5134 0.05843397 biological_process
## 4399 3 5134 0.05843397 molecular_function
## 4400 3 5134 0.05843397 cellular_component
## 4401 3 5134 0.05843397 cellular_component
## 4402 3 5134 0.05843397 biological_process
## 4403 3 5134 0.05843397 molecular_function
## 4404 3 5134 0.05843397 biological_process
## 4405 3 5134 0.05843397 molecular_function
## 4406 3 5134 0.05843397 biological_process
## 4407 3 5134 0.05843397 molecular_function
## 4408 3 5134 0.05843397 biological_process
## 4409 3 5134 0.05843397 cellular_component
## 4410 3 5134 0.05843397 cellular_component
## 4411 3 5134 0.05843397 cellular_component
## 4412 3 5134 0.05843397 molecular_function
## 4413 3 5134 0.05843397 biological_process
## 4414 3 5134 0.05843397 biological_process
## 4415 3 5134 0.05843397 biological_process
## 4416 3 5134 0.05843397 biological_process
## 4417 3 5134 0.05843397 biological_process
## 4418 3 5134 0.05843397 biological_process
## 4419 3 5134 0.05843397 biological_process
## 4420 3 5134 0.05843397 biological_process
## 4421 3 5134 0.05843397 molecular_function
## 4422 3 5134 0.05843397 biological_process
## 4423 3 5134 0.05843397 biological_process
## 4424 3 5134 0.05843397 biological_process
## 4425 3 5134 0.05843397 molecular_function
## 4426 3 5134 0.05843397 biological_process
## 4427 3 5134 0.05843397 molecular_function
## 4428 3 5134 0.05843397 molecular_function
## 4429 3 5134 0.05843397 cellular_component
## 4430 3 5134 0.05843397 biological_process
## 4431 3 5134 0.05843397 biological_process
## 4432 3 5134 0.05843397 cellular_component
## 4433 3 5134 0.05843397 biological_process
## 4434 3 5134 0.05843397 cellular_component
## 4435 3 5134 0.05843397 molecular_function
## 4436 3 5134 0.05843397 biological_process
## 4437 3 5134 0.05843397 biological_process
## 4438 3 5134 0.05843397 biological_process
## 4439 3 5134 0.05843397 biological_process
## 4440 3 5134 0.05843397 biological_process
## 4441 3 5134 0.05843397 cellular_component
## 4442 3 5134 0.05843397 cellular_component
## 4443 3 5134 0.05843397 biological_process
## 4444 3 5134 0.05843397 biological_process
## 4445 3 5134 0.05843397 biological_process
## 4446 3 5134 0.05843397 molecular_function
## 4447 3 5134 0.05843397 biological_process
## 4448 3 5134 0.05843397 molecular_function
## 4449 3 5134 0.05843397 molecular_function
## 4450 3 5134 0.05843397 molecular_function
## 4451 3 5134 0.05843397 biological_process
## 4452 3 5134 0.05843397 molecular_function
## 4453 3 5134 0.05843397 biological_process
## 4454 3 5134 0.05843397 biological_process
## 4455 3 5134 0.05843397 biological_process
## 4456 3 5134 0.05843397 biological_process
## 4457 3 5134 0.05843397 molecular_function
## 4458 3 5134 0.05843397 biological_process
## 4459 3 5134 0.05843397 biological_process
## 4460 3 5134 0.05843397 biological_process
## 4461 3 5134 0.05843397 cellular_component
## 4462 3 5134 0.05843397 biological_process
## 4463 3 5134 0.05843397 biological_process
## 4464 3 5134 0.05843397 biological_process
## 4465 3 5134 0.05843397 cellular_component
## 4466 3 5134 0.05843397 molecular_function
## 4467 3 5134 0.05843397 biological_process
## 4468 3 5134 0.05843397 biological_process
## 4469 3 5134 0.05843397 molecular_function
## 4470 3 5134 0.05843397 molecular_function
## 4471 3 5134 0.05843397 cellular_component
## 4472 3 5134 0.05843397 molecular_function
## 4473 3 5134 0.05843397 biological_process
## 4474 3 5134 0.05843397 biological_process
## 4475 3 5134 0.05843397 biological_process
## 4476 3 5134 0.05843397 biological_process
## 4477 3 5134 0.05843397 biological_process
## 4478 3 5134 0.05843397 cellular_component
## 4479 3 5134 0.05843397 biological_process
## 4480 3 5134 0.05843397 biological_process
## 4481 3 5134 0.05843397 biological_process
## 4482 3 5134 0.05843397 cellular_component
## 4483 3 5134 0.05843397 biological_process
## 4484 3 5134 0.05843397 biological_process
## 4485 3 5134 0.05843397 biological_process
## 4486 3 5134 0.05843397 biological_process
## 4487 3 5134 0.05843397 molecular_function
## 4488 3 5134 0.05843397 molecular_function
## 4489 3 5134 0.05843397 molecular_function
## 4490 3 5134 0.05843397 molecular_function
## 4491 3 5134 0.05843397 biological_process
## 4492 3 5134 0.05843397 biological_process
## 4493 3 5134 0.05843397 biological_process
## 4494 3 5134 0.05843397 biological_process
## 4495 3 5134 0.05843397 biological_process
## 4496 3 5134 0.05843397 biological_process
## 4497 3 5134 0.05843397 biological_process
## 4498 3 5134 0.05843397 biological_process
## 4499 3 5134 0.05843397 biological_process
## 4500 3 5134 0.05843397 biological_process
## 4501 3 5134 0.05843397 biological_process
## 4502 3 5134 0.05843397 molecular_function
## 4503 3 5134 0.05843397 molecular_function
## 4504 3 5134 0.05843397 molecular_function
## 4505 3 5134 0.05843397 biological_process
## 4506 3 5134 0.05843397 molecular_function
## 4507 3 5134 0.05843397 molecular_function
## 4508 3 5134 0.05843397 biological_process
## 4509 3 5134 0.05843397 biological_process
## 4510 3 5134 0.05843397 molecular_function
## 4511 3 5134 0.05843397 biological_process
## 4512 3 5134 0.05843397 biological_process
## 4513 3 5134 0.05843397 biological_process
## 4514 3 5134 0.05843397 molecular_function
## 4515 3 5134 0.05843397 biological_process
## 4516 3 5134 0.05843397 biological_process
## 4517 3 5134 0.05843397 biological_process
## 4518 3 5134 0.05843397 cellular_component
## 4519 3 5134 0.05843397 biological_process
## 4520 3 5134 0.05843397 molecular_function
## 4521 3 5134 0.05843397 biological_process
## 4522 3 5134 0.05843397 molecular_function
## 4523 3 5134 0.05843397 molecular_function
## 4524 3 5134 0.05843397 biological_process
## 4525 3 5134 0.05843397 biological_process
## 4526 3 5134 0.05843397 molecular_function
## 4527 3 5134 0.05843397 biological_process
## 4528 3 5134 0.05843397 molecular_function
## 4529 3 5134 0.05843397 cellular_component
## 4530 3 5134 0.05843397 cellular_component
## 4531 3 5134 0.05843397 cellular_component
## 4532 3 5134 0.05843397 cellular_component
## 4533 3 5134 0.05843397 cellular_component
## 4534 3 5134 0.05843397 biological_process
## 4535 3 5134 0.05843397 biological_process
## 4536 3 5134 0.05843397 biological_process
## 4537 3 5134 0.05843397 biological_process
## 4538 3 5134 0.05843397 cellular_component
## 4539 3 5134 0.05843397 biological_process
## 4540 3 5134 0.05843397 biological_process
## 4541 3 5134 0.05843397 cellular_component
## 4542 3 5134 0.05843397 cellular_component
## 4543 3 5134 0.05843397 cellular_component
## 4544 3 5134 0.05843397 cellular_component
## 4545 3 5134 0.05843397 biological_process
## 4546 3 5134 0.05843397 biological_process
## 4547 3 5134 0.05843397 molecular_function
## 4548 3 5134 0.05843397 biological_process
## 4549 3 5134 0.05843397 biological_process
## 4550 3 5134 0.05843397 biological_process
## 4551 3 5134 0.05843397 biological_process
## 4552 3 5134 0.05843397 molecular_function
## 4553 3 5134 0.05843397 cellular_component
## 4554 3 5134 0.05843397 molecular_function
## 4555 3 5134 0.05843397 biological_process
## 4556 3 5134 0.05843397 biological_process
## 4557 3 5134 0.05843397 molecular_function
## 4558 3 5134 0.05843397 biological_process
## 4559 3 5134 0.05843397 biological_process
## 4560 3 5134 0.05843397 biological_process
## 4561 3 5134 0.05843397 biological_process
## 4562 3 5134 0.05843397 molecular_function
## 4563 3 5134 0.05843397 cellular_component
## 4564 3 5134 0.05843397 biological_process
## 4565 3 5134 0.05843397 biological_process
## 4566 3 5134 0.05843397 biological_process
## 4567 3 5134 0.05843397 molecular_function
## 4568 3 5134 0.05843397 biological_process
## 4569 3 5134 0.05843397 biological_process
## 4570 3 5134 0.05843397 biological_process
## 4571 3 5134 0.05843397 molecular_function
## 4572 3 5134 0.05843397 molecular_function
## 4573 3 5134 0.05843397 biological_process
## 4574 3 5134 0.05843397 molecular_function
## 4575 3 5134 0.05843397 molecular_function
## 4576 3 5134 0.05843397 molecular_function
## 4577 3 5134 0.05843397 molecular_function
## 4578 3 5134 0.05843397 molecular_function
## 4579 3 5134 0.05843397 biological_process
## 4580 3 5134 0.05843397 biological_process
## 4581 3 5134 0.05843397 molecular_function
## 4582 3 5134 0.05843397 biological_process
## 4583 3 5134 0.05843397 molecular_function
## 4584 3 5134 0.05843397 cellular_component
## 4585 3 5134 0.05843397 cellular_component
## 4586 3 5134 0.05843397 biological_process
## 4587 3 5134 0.05843397 biological_process
## 4588 3 5134 0.05843397 molecular_function
## 4589 3 5134 0.05843397 biological_process
## 4590 3 5134 0.05843397 biological_process
## 4591 3 5134 0.05843397 biological_process
## 4592 3 5134 0.05843397 biological_process
## 4593 3 5134 0.05843397 biological_process
## 4594 3 5134 0.05843397 cellular_component
## 4595 3 5134 0.05843397 biological_process
## 4596 3 5134 0.05843397 biological_process
## 4597 3 5134 0.05843397 biological_process
## 4598 3 5134 0.05843397 molecular_function
## 4599 3 5134 0.05843397 biological_process
## 4600 3 5134 0.05843397 biological_process
## 4601 3 5134 0.05843397 biological_process
## 4602 3 5134 0.05843397 molecular_function
## 4603 3 5134 0.05843397 molecular_function
## 4604 3 5134 0.05843397 biological_process
## 4605 3 5134 0.05843397 biological_process
## 4606 3 5134 0.05843397 biological_process
## 4607 3 5134 0.05843397 biological_process
## 4608 3 5134 0.05843397 cellular_component
## 4609 3 5134 0.05843397 biological_process
## 4610 3 5134 0.05843397 biological_process
## 4611 3 5134 0.05843397 molecular_function
## 4612 3 5134 0.05843397 biological_process
## 4613 3 5134 0.05843397 molecular_function
## 4614 3 5134 0.05843397 molecular_function
## 4615 3 5134 0.05843397 molecular_function
## 4616 3 5134 0.05843397 molecular_function
## 4617 3 5134 0.05843397 molecular_function
## 4618 3 5134 0.05843397 molecular_function
## 4619 3 5134 0.05843397 cellular_component
## 4620 3 5134 0.05843397 molecular_function
## 4621 3 5134 0.05843397 biological_process
## 4622 3 5134 0.05843397 cellular_component
## 4623 3 5134 0.05843397 cellular_component
## 4624 3 5134 0.05843397 cellular_component
## 4625 3 5134 0.05843397 cellular_component
## 4626 3 5134 0.05843397 biological_process
## 4627 3 5134 0.05843397 molecular_function
## 4628 3 5134 0.05843397 cellular_component
## 4629 3 5134 0.05843397 biological_process
## 4630 3 5134 0.05843397 biological_process
## 4631 3 5134 0.05843397 molecular_function
## 4632 3 5134 0.05843397 biological_process
## 4633 3 5134 0.05843397 biological_process
## 4634 3 5134 0.05843397 biological_process
## 4635 3 5134 0.05843397 biological_process
## 4636 3 5134 0.05843397 biological_process
## 4637 3 5134 0.05843397 biological_process
## 4638 3 5134 0.05843397 biological_process
## 4639 3 5134 0.05843397 cellular_component
## 4640 3 5134 0.05843397 cellular_component
## 4641 3 5134 0.05843397 biological_process
## 4642 3 5134 0.05843397 biological_process
## 4643 3 5134 0.05843397 molecular_function
## 4644 3 5134 0.05843397 biological_process
## 4645 3 5134 0.05843397 biological_process
## 4646 3 5134 0.05843397 biological_process
## 4647 3 5134 0.05843397 cellular_component
## 4648 3 5134 0.05843397 molecular_function
## 4649 3 5134 0.05843397 biological_process
## 4650 3 5134 0.05843397 cellular_component
## 4651 3 5134 0.05843397 molecular_function
## 4652 3 5134 0.05843397 biological_process
## 4653 3 5134 0.05843397 biological_process
## 4654 3 5134 0.05843397 cellular_component
## 4655 3 5134 0.05843397 biological_process
## 4656 3 5134 0.05843397 cellular_component
## 4657 3 5134 0.05843397 cellular_component
## 4658 3 5134 0.05843397 biological_process
## 4659 3 5134 0.05843397 biological_process
## 4660 3 5134 0.05843397 biological_process
## 4661 3 5134 0.05843397 molecular_function
## 4662 3 5134 0.05843397 biological_process
## 4663 3 5134 0.05843397 molecular_function
## 4664 3 5134 0.05843397 molecular_function
## 4665 3 5134 0.05843397 biological_process
## 4666 3 5134 0.05843397 biological_process
## 4667 3 5134 0.05843397 molecular_function
## 4668 3 5134 0.05843397 biological_process
## 4669 3 5134 0.05843397 cellular_component
## 4670 3 5134 0.05843397 biological_process
## 4671 3 5134 0.05843397 cellular_component
## 4672 3 5134 0.05843397 biological_process
## 4673 3 5134 0.05843397 biological_process
## 4674 3 5134 0.05843397 biological_process
## 4675 3 5134 0.05843397 biological_process
## 4676 3 5134 0.05843397 biological_process
## 4677 3 5134 0.05843397 biological_process
## 4678 3 5134 0.05843397 biological_process
## 4679 3 5134 0.05843397 biological_process
## 4680 3 5134 0.05843397 biological_process
## 4681 3 5134 0.05843397 biological_process
## 4682 3 5134 0.05843397 biological_process
## 4683 3 5134 0.05843397 biological_process
## 4684 3 5134 0.05843397 biological_process
## 4685 3 5134 0.05843397 biological_process
## 4686 3 5134 0.05843397 biological_process
## 4687 3 5134 0.05843397 biological_process
## 4688 3 5134 0.05843397 biological_process
## 4689 3 5134 0.05843397 biological_process
## 4690 3 5134 0.05843397 biological_process
## 4691 3 5134 0.05843397 biological_process
## 4692 3 5134 0.05843397 biological_process
## 4693 3 5134 0.05843397 biological_process
## 4694 3 5134 0.05843397 biological_process
## 4695 3 5134 0.05843397 biological_process
## 4696 3 5134 0.05843397 biological_process
## 4697 3 5134 0.05843397 biological_process
## 4698 3 5134 0.05843397 biological_process
## 4699 3 5134 0.05843397 biological_process
## 4700 3 5134 0.05843397 biological_process
## 4701 3 5134 0.05843397 biological_process
## 4702 3 5134 0.05843397 biological_process
## 4703 3 5134 0.05843397 biological_process
## 4704 3 5134 0.05843397 biological_process
## 4705 3 5134 0.05843397 biological_process
## 4706 3 5134 0.05843397 biological_process
## 4707 3 5134 0.05843397 biological_process
## 4708 3 5134 0.05843397 biological_process
## 4709 3 5134 0.05843397 biological_process
## 4710 3 5134 0.05843397 biological_process
## 4711 3 5134 0.05843397 biological_process
## 4712 3 5134 0.05843397 biological_process
## 4713 3 5134 0.05843397 biological_process
## 4714 3 5134 0.05843397 biological_process
## 4715 3 5134 0.05843397 biological_process
## 4716 3 5134 0.05843397 biological_process
## 4717 3 5134 0.05843397 biological_process
## 4718 3 5134 0.05843397 biological_process
## 4719 3 5134 0.05843397 biological_process
## 4720 3 5134 0.05843397 biological_process
## 4721 3 5134 0.05843397 biological_process
## 4722 3 5134 0.05843397 biological_process
## 4723 3 5134 0.05843397 biological_process
## 4724 3 5134 0.05843397 biological_process
## 4725 3 5134 0.05843397 biological_process
## 4726 3 5134 0.05843397 biological_process
## 4727 3 5134 0.05843397 biological_process
## 4728 3 5134 0.05843397 biological_process
## 4729 3 5134 0.05843397 biological_process
## 4730 3 5134 0.05843397 biological_process
## 4731 3 5134 0.05843397 biological_process
## 4732 3 5134 0.05843397 biological_process
## 4733 3 5134 0.05843397 biological_process
## 4734 3 5134 0.05843397 biological_process
## 4735 3 5134 0.05843397 biological_process
## 4736 3 5134 0.05843397 biological_process
## 4737 3 5134 0.05843397 biological_process
## 4738 3 5134 0.05843397 biological_process
## 4739 3 5134 0.05843397 biological_process
## 4740 3 5134 0.05843397 biological_process
## 4741 3 5134 0.05843397 biological_process
## 4742 3 5134 0.05843397 biological_process
## 4743 3 5134 0.05843397 biological_process
## 4744 3 5134 0.05843397 biological_process
## 4745 3 5134 0.05843397 biological_process
## 4746 3 5134 0.05843397 biological_process
## 4747 3 5134 0.05843397 biological_process
## 4748 3 5134 0.05843397 biological_process
## 4749 3 5134 0.05843397 biological_process
## 4750 3 5134 0.05843397 biological_process
## 4751 3 5134 0.05843397 biological_process
## 4752 3 5134 0.05843397 biological_process
## 4753 3 5134 0.05843397 biological_process
## 4754 3 5134 0.05843397 biological_process
## 4755 3 5134 0.05843397 biological_process
## 4756 3 5134 0.05843397 biological_process
## 4757 3 5134 0.05843397 biological_process
## 4758 3 5134 0.05843397 biological_process
## 4759 3 5134 0.05843397 biological_process
## 4760 3 5134 0.05843397 biological_process
## 4761 3 5134 0.05843397 biological_process
## 4762 3 5134 0.05843397 biological_process
## 4763 3 5134 0.05843397 biological_process
## 4764 3 5134 0.05843397 biological_process
## 4765 3 5134 0.05843397 biological_process
## 4766 3 5134 0.05843397 biological_process
## 4767 3 5134 0.05843397 biological_process
## 4768 3 5134 0.05843397 biological_process
## 4769 3 5134 0.05843397 molecular_function
## 4770 3 5134 0.05843397 biological_process
## 4771 3 5134 0.05843397 biological_process
## 4772 3 5134 0.05843397 cellular_component
## 4773 3 5134 0.05843397 biological_process
## 4774 3 5134 0.05843397 molecular_function
## 4775 3 5134 0.05843397 biological_process
## 4776 3 5134 0.05843397 molecular_function
## 4777 3 5134 0.05843397 biological_process
## 4778 3 5134 0.05843397 biological_process
## 4779 3 5134 0.05843397 molecular_function
## 4780 3 5134 0.05843397 molecular_function
## 4781 3 5134 0.05843397 biological_process
## 4782 3 5134 0.05843397 cellular_component
## 4783 3 5134 0.05843397 biological_process
## 4784 3 5134 0.05843397 cellular_component
## 4785 3 5134 0.05843397 biological_process
## 4786 3 5134 0.05843397 cellular_component
## 4787 3 5134 0.05843397 biological_process
## 4788 3 5134 0.05843397 cellular_component
## 4789 3 5134 0.05843397 biological_process
## 4790 3 5134 0.05843397 biological_process
## 4791 3 5134 0.05843397 biological_process
## 4792 3 5134 0.05843397 molecular_function
## 4793 3 5134 0.05843397 biological_process
## 4794 3 5134 0.05843397 biological_process
## 4795 3 5134 0.05843397 cellular_component
## 4796 3 5134 0.05843397 cellular_component
## 4797 3 5134 0.05843397 molecular_function
## 4798 3 5134 0.05843397 biological_process
## 4799 3 5134 0.05843397 molecular_function
## 4800 3 5134 0.05843397 molecular_function
## 4801 3 5134 0.05843397 biological_process
## 4802 3 5134 0.05843397 biological_process
## 4803 3 5134 0.05843397 biological_process
## 4804 3 5134 0.05843397 biological_process
## 4805 3 5134 0.05843397 molecular_function
## 4806 3 5134 0.05843397 biological_process
## 4807 3 5134 0.05843397 biological_process
## 4808 3 5134 0.05843397 biological_process
## 4809 3 5134 0.05843397 molecular_function
## 4810 3 5134 0.05843397 molecular_function
## 4811 3 5134 0.05843397 molecular_function
## 4812 3 5134 0.05843397 biological_process
## 4813 3 5134 0.05843397 molecular_function
## 4814 3 5134 0.05843397 cellular_component
## 4815 3 5134 0.05843397 biological_process
## 4816 3 5134 0.05843397 cellular_component
## 4817 3 5134 0.05843397 cellular_component
## 4818 3 5134 0.05843397 molecular_function
## 4819 3 5134 0.05843397 biological_process
## 4820 3 5134 0.05843397 molecular_function
## 4821 3 5134 0.05843397 molecular_function
## 4822 3 5134 0.05843397 biological_process
## 4823 3 5134 0.05843397 biological_process
## 4824 3 5134 0.05843397 biological_process
## 4825 3 5134 0.05843397 biological_process
## 4826 3 5134 0.05843397 biological_process
## 4827 3 5134 0.05843397 biological_process
## 4828 3 5134 0.05843397 cellular_component
## 4829 3 5134 0.05843397 biological_process
## 4830 3 5134 0.05843397 biological_process
## 4831 3 5134 0.05843397 cellular_component
## 4832 3 5134 0.05843397 cellular_component
## 4833 3 5134 0.05843397 molecular_function
## 4834 3 5134 0.05843397 molecular_function
## 4835 3 5134 0.05843397 molecular_function
## 4836 3 5134 0.05843397 biological_process
## 4837 3 5134 0.05843397 molecular_function
## 4838 3 5134 0.05843397 molecular_function
## 4839 3 5134 0.05843397 biological_process
## 4840 3 5134 0.05843397 molecular_function
## 4841 3 5134 0.05843397 biological_process
## 4842 3 5134 0.05843397 molecular_function
## 4843 3 5134 0.05843397 biological_process
## 4844 3 5134 0.05843397 cellular_component
## 4845 3 5134 0.05843397 molecular_function
## 4846 3 5134 0.05843397 cellular_component
## 4847 3 5134 0.05843397 biological_process
## 4848 3 5134 0.05843397 biological_process
## 4849 3 5134 0.05843397 biological_process
## 4850 3 5134 0.05843397 biological_process
## 4851 3 5134 0.05843397 cellular_component
## 4852 3 5134 0.05843397 cellular_component
## 4853 3 5134 0.05843397 molecular_function
## 4854 3 5134 0.05843397 biological_process
## 4855 3 5134 0.05843397 biological_process
## 4856 3 5134 0.05843397 biological_process
## 4857 3 5134 0.05843397 molecular_function
## 4858 3 5134 0.05843397 molecular_function
## 4859 3 5134 0.05843397 biological_process
## 4860 3 5134 0.05843397 biological_process
## 4861 3 5134 0.05843397 biological_process
## 4862 3 5134 0.05843397 biological_process
## 4863 3 5134 0.05843397 biological_process
## 4864 3 5134 0.05843397 biological_process
## 4865 3 5134 0.05843397 biological_process
## 4866 3 5134 0.05843397 biological_process
## 4867 3 5134 0.05843397 biological_process
## 4868 3 5134 0.05843397 biological_process
## 4869 3 5134 0.05843397 biological_process
## 4870 3 5134 0.05843397 biological_process
## 4871 3 5134 0.05843397 biological_process
## 4872 3 5134 0.05843397 biological_process
## 4873 3 5134 0.05843397 biological_process
## 4874 3 5134 0.05843397 biological_process
## 4875 3 5134 0.05843397 biological_process
## 4876 3 5134 0.05843397 biological_process
## 4877 3 5134 0.05843397 biological_process
## 4878 3 5134 0.05843397 biological_process
## 4879 3 5134 0.05843397 biological_process
## 4880 3 5134 0.05843397 biological_process
## 4881 3 5134 0.05843397 biological_process
## 4882 3 5134 0.05843397 biological_process
## 4883 3 5134 0.05843397 biological_process
## 4884 3 5134 0.05843397 biological_process
## 4885 3 5134 0.05843397 biological_process
## 4886 3 5134 0.05843397 biological_process
## 4887 3 5134 0.05843397 biological_process
## 4888 3 5134 0.05843397 biological_process
## 4889 3 5134 0.05843397 biological_process
## 4890 3 5134 0.05843397 biological_process
## 4891 3 5134 0.05843397 biological_process
## 4892 3 5134 0.05843397 biological_process
## 4893 3 5134 0.05843397 biological_process
## 4894 3 5134 0.05843397 biological_process
## 4895 3 5134 0.05843397 biological_process
## 4896 3 5134 0.05843397 biological_process
## 4897 3 5134 0.05843397 biological_process
## 4898 3 5134 0.05843397 biological_process
## 4899 3 5134 0.05843397 biological_process
## 4900 3 5134 0.05843397 biological_process
## 4901 3 5134 0.05843397 biological_process
## 4902 3 5134 0.05843397 biological_process
## 4903 3 5134 0.05843397 biological_process
## 4904 3 5134 0.05843397 biological_process
## 4905 3 5134 0.05843397 biological_process
## 4906 3 5134 0.05843397 biological_process
## 4907 3 5134 0.05843397 biological_process
## 4908 3 5134 0.05843397 biological_process
## 4909 3 5134 0.05843397 biological_process
## 4910 3 5134 0.05843397 biological_process
## 4911 3 5134 0.05843397 biological_process
## 4912 3 5134 0.05843397 biological_process
## 4913 3 5134 0.05843397 biological_process
## 4914 3 5134 0.05843397 biological_process
## 4915 3 5134 0.05843397 biological_process
## 4916 3 5134 0.05843397 biological_process
## 4917 3 5134 0.05843397 biological_process
## 4918 3 5134 0.05843397 biological_process
## 4919 3 5134 0.05843397 biological_process
## 4920 3 5134 0.05843397 biological_process
## 4921 3 5134 0.05843397 biological_process
## 4922 3 5134 0.05843397 biological_process
## 4923 3 5134 0.05843397 biological_process
## 4924 3 5134 0.05843397 biological_process
## 4925 3 5134 0.05843397 biological_process
## 4926 3 5134 0.05843397 biological_process
## 4927 3 5134 0.05843397 biological_process
## 4928 3 5134 0.05843397 biological_process
## 4929 3 5134 0.05843397 biological_process
## 4930 3 5134 0.05843397 biological_process
## 4931 3 5134 0.05843397 biological_process
## 4932 3 5134 0.05843397 biological_process
## 4933 3 5134 0.05843397 biological_process
## 4934 3 5134 0.05843397 biological_process
## 4935 3 5134 0.05843397 biological_process
## 4936 3 5134 0.05843397 biological_process
## 4937 3 5134 0.05843397 biological_process
## 4938 3 5134 0.05843397 biological_process
## 4939 3 5134 0.05843397 biological_process
## 4940 3 5134 0.05843397 biological_process
## 4941 3 5134 0.05843397 biological_process
## 4942 3 5134 0.05843397 biological_process
## 4943 3 5134 0.05843397 biological_process
## 4944 3 5134 0.05843397 biological_process
## 4945 3 5134 0.05843397 biological_process
## 4946 3 5134 0.05843397 biological_process
## 4947 3 5134 0.05843397 biological_process
## 4948 3 5134 0.05843397 biological_process
## 4949 3 5134 0.05843397 biological_process
## 4950 3 5134 0.05843397 biological_process
## 4951 3 5134 0.05843397 biological_process
## 4952 3 5134 0.05843397 biological_process
## 4953 3 5134 0.05843397 biological_process
## 4954 3 5134 0.05843397 biological_process
## 4955 3 5134 0.05843397 biological_process
## 4956 3 5134 0.05843397 biological_process
## 4957 3 5134 0.05843397 biological_process
## 4958 3 5134 0.05843397 biological_process
## 4959 3 5134 0.05843397 biological_process
## 4960 3 5134 0.05843397 biological_process
## 4961 3 5134 0.05843397 biological_process
## 4962 3 5134 0.05843397 biological_process
## 4963 3 5134 0.05843397 biological_process
## 4964 3 5134 0.05843397 biological_process
## 4965 3 5134 0.05843397 biological_process
## 4966 3 5134 0.05843397 biological_process
## 4967 3 5134 0.05843397 biological_process
## 4968 3 5134 0.05843397 biological_process
## 4969 3 5134 0.05843397 biological_process
## 4970 3 5134 0.05843397 biological_process
## 4971 3 5134 0.05843397 biological_process
## 4972 3 5134 0.05843397 biological_process
## 4973 3 5134 0.05843397 biological_process
## 4974 3 5134 0.05843397 biological_process
## 4975 3 5134 0.05843397 biological_process
## 4976 3 5134 0.05843397 biological_process
## 4977 3 5134 0.05843397 biological_process
## 4978 3 5134 0.05843397 biological_process
## 4979 3 5134 0.05843397 biological_process
## 4980 3 5134 0.05843397 biological_process
## 4981 3 5134 0.05843397 biological_process
## 4982 3 5134 0.05843397 biological_process
## 4983 3 5134 0.05843397 biological_process
## 4984 3 5134 0.05843397 biological_process
## 4985 3 5134 0.05843397 biological_process
## 4986 3 5134 0.05843397 biological_process
## 4987 3 5134 0.05843397 biological_process
## 4988 3 5134 0.05843397 biological_process
## 4989 3 5134 0.05843397 biological_process
## 4990 3 5134 0.05843397 biological_process
## 4991 3 5134 0.05843397 biological_process
## 4992 3 5134 0.05843397 biological_process
## 4993 3 5134 0.05843397 biological_process
## 4994 3 5134 0.05843397 biological_process
## 4995 3 5134 0.05843397 biological_process
## 4996 3 5134 0.05843397 biological_process
## 4997 3 5134 0.05843397 biological_process
## 4998 3 5134 0.05843397 biological_process
## 4999 3 5134 0.05843397 biological_process
## 5000 3 5134 0.05843397 biological_process
## 5001 3 5134 0.05843397 molecular_function
## 5002 3 5134 0.05843397 molecular_function
## 5003 3 5134 0.05843397 molecular_function
## 5004 3 5134 0.05843397 molecular_function
## 5005 3 5134 0.05843397 cellular_component
## 5006 3 5134 0.05843397 biological_process
## 5007 3 5134 0.05843397 biological_process
## 5008 3 5134 0.05843397 cellular_component
## 5009 3 5134 0.05843397 cellular_component
## 5010 3 5134 0.05843397 biological_process
## 5011 3 5134 0.05843397 molecular_function
## 5012 3 5134 0.05843397 biological_process
## 5013 3 5134 0.05843397 biological_process
## 5014 3 5134 0.05843397 biological_process
## 5015 3 5134 0.05843397 biological_process
## 5016 3 5134 0.05843397 biological_process
## 5017 3 5134 0.05843397 biological_process
## 5018 3 5134 0.05843397 biological_process
## 5019 3 5134 0.05843397 biological_process
## 5020 3 5134 0.05843397 biological_process
## 5021 3 5134 0.05843397 biological_process
## 5022 3 5134 0.05843397 biological_process
## 5023 3 5134 0.05843397 biological_process
## 5024 3 5134 0.05843397 biological_process
## 5025 3 5134 0.05843397 biological_process
## 5026 3 5134 0.05843397 biological_process
## 5027 3 5134 0.05843397 biological_process
## 5028 3 5134 0.05843397 molecular_function
## 5029 3 5134 0.05843397 molecular_function
## 5030 3 5134 0.05843397 biological_process
## 5031 3 5134 0.05843397 biological_process
## 5032 3 5134 0.05843397 biological_process
## 5033 3 5134 0.05843397 biological_process
## 5034 3 5134 0.05843397 biological_process
## 5035 3 5134 0.05843397 biological_process
## 5036 3 5134 0.05843397 biological_process
## 5037 3 5134 0.05843397 molecular_function
## 5038 3 5134 0.05843397 biological_process
## 5039 3 5134 0.05843397 biological_process
## 5040 3 5134 0.05843397 molecular_function
## 5041 3 5134 0.05843397 biological_process
## 5042 3 5134 0.05843397 biological_process
## 5043 3 5134 0.05843397 molecular_function
## 5044 3 5134 0.05843397 molecular_function
## 5045 3 5134 0.05843397 molecular_function
## 5046 3 5134 0.05843397 biological_process
## 5047 3 5134 0.05843397 molecular_function
## 5048 3 5134 0.05843397 cellular_component
## 5049 3 5134 0.05843397 cellular_component
## 5050 3 5134 0.05843397 cellular_component
## 5051 3 5134 0.05843397 biological_process
## 5052 3 5134 0.05843397 biological_process
## 5053 3 5134 0.05843397 biological_process
## 5054 3 5134 0.05843397 biological_process
## 5055 3 5134 0.05843397 biological_process
## 5056 3 5134 0.05843397 biological_process
## 5057 3 5134 0.05843397 molecular_function
## 5058 3 5134 0.05843397 molecular_function
## 5059 3 5134 0.05843397 molecular_function
## 5060 3 5134 0.05843397 biological_process
## 5061 3 5134 0.05843397 cellular_component
## 5062 3 5134 0.05843397 biological_process
## 5063 3 5134 0.05843397 biological_process
## 5064 3 5134 0.05843397 biological_process
## 5065 3 5134 0.05843397 biological_process
## 5066 3 5134 0.05843397 biological_process
## 5067 3 5134 0.05843397 biological_process
## 5068 3 5134 0.05843397 biological_process
## 5069 3 5134 0.05843397 biological_process
## 5070 3 5134 0.05843397 biological_process
## 5071 3 5134 0.05843397 biological_process
## 5072 3 5134 0.05843397 biological_process
## 5073 3 5134 0.05843397 biological_process
## 5074 3 5134 0.05843397 biological_process
## 5075 3 5134 0.05843397 biological_process
## 5076 3 5134 0.05843397 biological_process
## 5077 3 5134 0.05843397 biological_process
## 5078 3 5134 0.05843397 biological_process
## 5079 3 5134 0.05843397 biological_process
## 5080 3 5134 0.05843397 biological_process
## 5081 3 5134 0.05843397 biological_process
## 5082 3 5134 0.05843397 biological_process
## 5083 3 5134 0.05843397 biological_process
## 5084 3 5134 0.05843397 biological_process
## 5085 3 5134 0.05843397 biological_process
## 5086 3 5134 0.05843397 biological_process
## 5087 3 5134 0.05843397 biological_process
## 5088 3 5134 0.05843397 biological_process
## 5089 3 5134 0.05843397 biological_process
## 5090 3 5134 0.05843397 biological_process
## 5091 3 5134 0.05843397 biological_process
## 5092 3 5134 0.05843397 biological_process
## 5093 3 5134 0.05843397 biological_process
## 5094 3 5134 0.05843397 biological_process
## 5095 3 5134 0.05843397 biological_process
## 5096 3 5134 0.05843397 biological_process
## 5097 3 5134 0.05843397 biological_process
## 5098 3 5134 0.05843397 biological_process
## 5099 3 5134 0.05843397 biological_process
## 5100 3 5134 0.05843397 biological_process
## 5101 3 5134 0.05843397 biological_process
## 5102 3 5134 0.05843397 biological_process
## 5103 3 5134 0.05843397 biological_process
## 5104 3 5134 0.05843397 biological_process
## 5105 3 5134 0.05843397 biological_process
## 5106 3 5134 0.05843397 biological_process
## 5107 3 5134 0.05843397 biological_process
## 5108 3 5134 0.05843397 biological_process
## 5109 3 5134 0.05843397 biological_process
## 5110 3 5134 0.05843397 biological_process
## 5111 3 5134 0.05843397 biological_process
## 5112 3 5134 0.05843397 biological_process
## 5113 3 5134 0.05843397 biological_process
## 5114 3 5134 0.05843397 biological_process
## 5115 3 5134 0.05843397 biological_process
## 5116 3 5134 0.05843397 biological_process
## 5117 3 5134 0.05843397 biological_process
## 5118 3 5134 0.05843397 biological_process
## 5119 3 5134 0.05843397 biological_process
## 5120 3 5134 0.05843397 biological_process
## 5121 3 5134 0.05843397 biological_process
## 5122 3 5134 0.05843397 biological_process
## 5123 3 5134 0.05843397 biological_process
## 5124 3 5134 0.05843397 biological_process
## 5125 3 5134 0.05843397 biological_process
## 5126 3 5134 0.05843397 biological_process
## 5127 3 5134 0.05843397 biological_process
## 5128 3 5134 0.05843397 biological_process
## 5129 3 5134 0.05843397 biological_process
## 5130 3 5134 0.05843397 biological_process
## 5131 3 5134 0.05843397 biological_process
## 5132 3 5134 0.05843397 biological_process
## 5133 3 5134 0.05843397 biological_process
## 5134 3 5134 0.05843397 biological_process
## 5135 3 5134 0.05843397 biological_process
## 5136 3 5134 0.05843397 biological_process
## 5137 3 5134 0.05843397 biological_process
## 5138 3 5134 0.05843397 biological_process
## 5139 3 5134 0.05843397 biological_process
## 5140 3 5134 0.05843397 biological_process
## 5141 3 5134 0.05843397 biological_process
## 5142 3 5134 0.05843397 biological_process
## 5143 3 5134 0.05843397 biological_process
## 5144 3 5134 0.05843397 biological_process
## 5145 3 5134 0.05843397 biological_process
## 5146 3 5134 0.05843397 biological_process
## 5147 3 5134 0.05843397 biological_process
## 5148 3 5134 0.05843397 biological_process
## 5149 3 5134 0.05843397 biological_process
## 5150 3 5134 0.05843397 biological_process
## 5151 3 5134 0.05843397 biological_process
## 5152 3 5134 0.05843397 biological_process
## 5153 3 5134 0.05843397 biological_process
## 5154 3 5134 0.05843397 biological_process
## 5155 3 5134 0.05843397 biological_process
## 5156 3 5134 0.05843397 biological_process
## 5157 3 5134 0.05843397 biological_process
## 5158 3 5134 0.05843397 biological_process
## 5159 3 5134 0.05843397 biological_process
## 5160 3 5134 0.05843397 biological_process
## 5161 3 5134 0.05843397 biological_process
## 5162 3 5134 0.05843397 biological_process
## 5163 3 5134 0.05843397 biological_process
## 5164 3 5134 0.05843397 biological_process
## 5165 3 5134 0.05843397 biological_process
## 5166 3 5134 0.05843397 biological_process
## 5167 3 5134 0.05843397 biological_process
## 5168 3 5134 0.05843397 biological_process
## 5169 3 5134 0.05843397 biological_process
## 5170 3 5134 0.05843397 cellular_component
## 5171 3 5134 0.05843397 biological_process
## 5172 3 5134 0.05843397 biological_process
## 5173 3 5134 0.05843397 biological_process
## 5174 3 5134 0.05843397 biological_process
## 5175 3 5134 0.05843397 biological_process
## 5176 3 5134 0.05843397 biological_process
## 5177 3 5134 0.05843397 biological_process
## 5178 3 5134 0.05843397 biological_process
## 5179 3 5134 0.05843397 biological_process
## 5180 3 5134 0.05843397 biological_process
## 5181 3 5134 0.05843397 biological_process
## 5182 3 5134 0.05843397 biological_process
## 5183 3 5134 0.05843397 biological_process
## 5184 3 5134 0.05843397 biological_process
## 5185 3 5134 0.05843397 biological_process
## 5186 3 5134 0.05843397 biological_process
## 5187 3 5134 0.05843397 biological_process
## 5188 3 5134 0.05843397 biological_process
## 5189 3 5134 0.05843397 molecular_function
## 5190 3 5134 0.05843397 molecular_function
## 5191 3 5134 0.05843397 biological_process
## 5192 3 5134 0.05843397 biological_process
## 5193 3 5134 0.05843397 biological_process
## 5194 3 5134 0.05843397 cellular_component
## 5195 3 5134 0.05843397 biological_process
## 5196 3 5134 0.05843397 molecular_function
## 5197 3 5134 0.05843397 molecular_function
## 5198 3 5134 0.05843397 biological_process
## 5199 3 5134 0.05843397 molecular_function
## 5200 3 5134 0.05843397 molecular_function
## 5201 3 5134 0.05843397 molecular_function
## 5202 3 5134 0.05843397 molecular_function
## 5203 3 5134 0.05843397 molecular_function
## 5204 3 5134 0.05843397 cellular_component
## 5205 3 5134 0.05843397 biological_process
## 5206 3 5134 0.05843397 biological_process
## 5207 3 5134 0.05843397 cellular_component
## 5208 3 5134 0.05843397 biological_process
## 5209 3 5134 0.05843397 biological_process
## 5210 3 5134 0.05843397 biological_process
## 5211 3 5134 0.05843397 molecular_function
## 5212 3 5134 0.05843397 biological_process
## 5213 3 5134 0.05843397 biological_process
## 5214 3 5134 0.05843397 molecular_function
## 5215 3 5134 0.05843397 biological_process
## 5216 3 5134 0.05843397 biological_process
## 5217 3 5134 0.05843397 biological_process
## 5218 3 5134 0.05843397 biological_process
## 5219 3 5134 0.05843397 biological_process
## 5220 3 5134 0.05843397 cellular_component
## 5221 3 5134 0.05843397 molecular_function
## 5222 3 5134 0.05843397 biological_process
## 5223 3 5134 0.05843397 cellular_component
## 5224 3 5134 0.05843397 biological_process
## 5225 3 5134 0.05843397 cellular_component
## 5226 3 5134 0.05843397 biological_process
## 5227 3 5134 0.05843397 cellular_component
## 5228 3 5134 0.05843397 molecular_function
## 5229 3 5134 0.05843397 cellular_component
## 5230 3 5134 0.05843397 biological_process
## 5231 3 5134 0.05843397 biological_process
## 5232 3 5134 0.05843397 biological_process
## 5233 3 5134 0.05843397 biological_process
## 5234 3 5134 0.05843397 molecular_function
## 5235 3 5134 0.05843397 molecular_function
## 5236 3 5134 0.05843397 biological_process
## 5237 3 5134 0.05843397 cellular_component
## 5238 3 5134 0.05843397 biological_process
## 5239 3 5134 0.05843397 cellular_component
## 5240 3 5134 0.05843397 cellular_component
## 5241 3 5134 0.05843397 cellular_component
## 5242 3 5134 0.05843397 cellular_component
## 5243 3 5134 0.05843397 biological_process
## 5244 3 5134 0.05843397 biological_process
## 5245 3 5134 0.05843397 molecular_function
## 5246 3 5134 0.05843397 biological_process
## 5247 3 5134 0.05843397 biological_process
## 5248 3 5134 0.05843397 biological_process
## 5249 3 5134 0.05843397 biological_process
## 5250 3 5134 0.05843397 cellular_component
## 5251 3 5134 0.05843397 molecular_function
## 5252 3 5134 0.05843397 biological_process
## 5253 3 5134 0.05843397 biological_process
## 5254 3 5134 0.05843397 biological_process
## 5255 3 5134 0.05843397 molecular_function
## 5256 3 5134 0.05843397 biological_process
## 5257 3 5134 0.05843397 molecular_function
## 5258 3 5134 0.05843397 cellular_component
## 5259 3 5134 0.05843397 molecular_function
## 5260 3 5134 0.05843397 molecular_function
## 5261 3 5134 0.05843397 biological_process
## 5262 3 5134 0.05843397 biological_process
## 5263 3 5134 0.05843397 biological_process
## 5264 3 5134 0.05843397 biological_process
## 5265 3 5134 0.05843397 cellular_component
## 5266 3 5134 0.05843397 biological_process
## 5267 3 5134 0.05843397 biological_process
## 5268 3 5134 0.05843397 biological_process
## 5269 3 5134 0.05843397 biological_process
## 5270 3 5134 0.05843397 biological_process
## 5271 3 5134 0.05843397 biological_process
## 5272 3 5134 0.05843397 molecular_function
## 5273 3 5134 0.05843397 biological_process
## 5274 3 5134 0.05843397 molecular_function
## 5275 3 5134 0.05843397 biological_process
## 5276 3 5134 0.05843397 biological_process
## 5277 3 5134 0.05843397 biological_process
## 5278 3 5134 0.05843397 cellular_component
## 5279 3 5134 0.05843397 molecular_function
## 5280 3 5134 0.05843397 biological_process
## 5281 3 5134 0.05843397 biological_process
## 5282 3 5134 0.05843397 cellular_component
## 5283 3 5134 0.05843397 molecular_function
## 5284 3 5134 0.05843397 biological_process
## 5285 3 5134 0.05843397 biological_process
## 5286 3 5134 0.05843397 biological_process
## 5287 3 5134 0.05843397 molecular_function
## 5288 3 5134 0.05843397 molecular_function
## 5289 3 5134 0.05843397 biological_process
## 5290 3 5134 0.05843397 biological_process
## 5291 3 5134 0.05843397 molecular_function
## 5292 3 5134 0.05843397 biological_process
## 5293 3 5134 0.05843397 cellular_component
## 5294 3 5134 0.05843397 cellular_component
## 5295 3 5134 0.05843397 biological_process
## 5296 3 5134 0.05843397 molecular_function
## 5297 3 5134 0.05843397 biological_process
## 5298 3 5134 0.05843397 molecular_function
## 5299 3 5134 0.05843397 molecular_function
## 5300 3 5134 0.05843397 molecular_function
## 5301 3 5134 0.05843397 molecular_function
## 5302 3 5134 0.05843397 biological_process
## 5303 3 5134 0.05843397 biological_process
## 5304 3 5134 0.05843397 biological_process
## 5305 3 5134 0.05843397 biological_process
## 5306 3 5134 0.05843397 biological_process
## 5307 3 5134 0.05843397 molecular_function
## 5308 3 5134 0.05843397 molecular_function
## 5309 3 5134 0.05843397 biological_process
## 5310 3 5134 0.05843397 molecular_function
## 5311 3 5134 0.05843397 biological_process
## 5312 3 5134 0.05843397 biological_process
## 5313 3 5134 0.05843397 biological_process
## 5314 3 5134 0.05843397 molecular_function
## 5315 3 5134 0.05843397 cellular_component
## 5316 3 5134 0.05843397 molecular_function
## 5317 3 5134 0.05843397 molecular_function
## 5318 3 5134 0.05843397 biological_process
## 5319 3 5134 0.05843397 biological_process
## 5320 3 5134 0.05843397 molecular_function
## 5321 3 5134 0.05843397 molecular_function
## 5322 3 5134 0.05843397 biological_process
## 5323 3 5134 0.05843397 cellular_component
## 5324 3 5134 0.05843397 molecular_function
## 5325 3 5134 0.05843397 molecular_function
## 5326 3 5134 0.05843397 biological_process
## 5327 3 5134 0.05843397 molecular_function
## 5328 3 5134 0.05843397 biological_process
## 5329 3 5134 0.05843397 biological_process
## 5330 3 5134 0.05843397 cellular_component
## 5331 3 5134 0.05843397 molecular_function
## 5332 3 5134 0.05843397 molecular_function
## 5333 3 5134 0.05843397 biological_process
## 5334 3 5134 0.05843397 biological_process
## 5335 3 5134 0.05843397 biological_process
## 5336 3 5134 0.05843397 cellular_component
## 5337 3 5134 0.05843397 biological_process
## 5338 3 5134 0.05843397 cellular_component
## 5339 3 5134 0.05843397 molecular_function
## 5340 3 5134 0.05843397 cellular_component
## 5341 3 5134 0.05843397 molecular_function
## 5342 3 5134 0.05843397 molecular_function
## 5343 3 5134 0.05843397 cellular_component
## 5344 3 5134 0.05843397 molecular_function
## 5345 3 5134 0.05843397 biological_process
## 5346 3 5134 0.05843397 molecular_function
## 5347 3 5134 0.05843397 molecular_function
## 5348 3 5134 0.05843397 molecular_function
## 5349 3 5134 0.05843397 molecular_function
## 5350 3 5134 0.05843397 biological_process
## 5351 3 5134 0.05843397 biological_process
## 5352 3 5134 0.05843397 molecular_function
## 5353 3 5134 0.05843397 cellular_component
## 5354 2 5134 0.03895598 biological_process
## 5355 2 5134 0.03895598 biological_process
## 5356 2 5134 0.03895598 biological_process
## 5357 2 5134 0.03895598 molecular_function
## 5358 2 5134 0.03895598 cellular_component
## 5359 2 5134 0.03895598 molecular_function
## 5360 2 5134 0.03895598 biological_process
## 5361 2 5134 0.03895598 molecular_function
## 5362 2 5134 0.03895598 molecular_function
## 5363 2 5134 0.03895598 molecular_function
## 5364 2 5134 0.03895598 biological_process
## 5365 2 5134 0.03895598 molecular_function
## 5366 2 5134 0.03895598 molecular_function
## 5367 2 5134 0.03895598 molecular_function
## 5368 2 5134 0.03895598 cellular_component
## 5369 2 5134 0.03895598 molecular_function
## 5370 2 5134 0.03895598 biological_process
## 5371 2 5134 0.03895598 molecular_function
## 5372 2 5134 0.03895598 molecular_function
## 5373 2 5134 0.03895598 molecular_function
## 5374 2 5134 0.03895598 molecular_function
## 5375 2 5134 0.03895598 cellular_component
## 5376 2 5134 0.03895598 molecular_function
## 5377 2 5134 0.03895598 molecular_function
## 5378 2 5134 0.03895598 cellular_component
## 5379 2 5134 0.03895598 molecular_function
## 5380 2 5134 0.03895598 biological_process
## 5381 2 5134 0.03895598 molecular_function
## 5382 2 5134 0.03895598 molecular_function
## 5383 2 5134 0.03895598 molecular_function
## 5384 2 5134 0.03895598 molecular_function
## 5385 2 5134 0.03895598 biological_process
## 5386 2 5134 0.03895598 molecular_function
## 5387 2 5134 0.03895598 molecular_function
## 5388 2 5134 0.03895598 cellular_component
## 5389 2 5134 0.03895598 molecular_function
## 5390 2 5134 0.03895598 biological_process
## 5391 2 5134 0.03895598 biological_process
## 5392 2 5134 0.03895598 biological_process
## 5393 2 5134 0.03895598 biological_process
## 5394 2 5134 0.03895598 biological_process
## 5395 2 5134 0.03895598 biological_process
## 5396 2 5134 0.03895598 biological_process
## 5397 2 5134 0.03895598 biological_process
## 5398 2 5134 0.03895598 molecular_function
## 5399 2 5134 0.03895598 cellular_component
## 5400 2 5134 0.03895598 cellular_component
## 5401 2 5134 0.03895598 molecular_function
## 5402 2 5134 0.03895598 biological_process
## 5403 2 5134 0.03895598 biological_process
## 5404 2 5134 0.03895598 biological_process
## 5405 2 5134 0.03895598 biological_process
## 5406 2 5134 0.03895598 molecular_function
## 5407 2 5134 0.03895598 biological_process
## 5408 2 5134 0.03895598 biological_process
## 5409 2 5134 0.03895598 molecular_function
## 5410 2 5134 0.03895598 biological_process
## 5411 2 5134 0.03895598 molecular_function
## 5412 2 5134 0.03895598 biological_process
## 5413 2 5134 0.03895598 molecular_function
## 5414 2 5134 0.03895598 biological_process
## 5415 2 5134 0.03895598 biological_process
## 5416 2 5134 0.03895598 biological_process
## 5417 2 5134 0.03895598 biological_process
## 5418 2 5134 0.03895598 molecular_function
## 5419 2 5134 0.03895598 molecular_function
## 5420 2 5134 0.03895598 molecular_function
## 5421 2 5134 0.03895598 molecular_function
## 5422 2 5134 0.03895598 molecular_function
## 5423 2 5134 0.03895598 molecular_function
## 5424 2 5134 0.03895598 molecular_function
## 5425 2 5134 0.03895598 biological_process
## 5426 2 5134 0.03895598 molecular_function
## 5427 2 5134 0.03895598 cellular_component
## 5428 2 5134 0.03895598 cellular_component
## 5429 2 5134 0.03895598 cellular_component
## 5430 2 5134 0.03895598 biological_process
## 5431 2 5134 0.03895598 biological_process
## 5432 2 5134 0.03895598 molecular_function
## 5433 2 5134 0.03895598 biological_process
## 5434 2 5134 0.03895598 biological_process
## 5435 2 5134 0.03895598 molecular_function
## 5436 2 5134 0.03895598 biological_process
## 5437 2 5134 0.03895598 cellular_component
## 5438 2 5134 0.03895598 cellular_component
## 5439 2 5134 0.03895598 cellular_component
## 5440 2 5134 0.03895598 molecular_function
## 5441 2 5134 0.03895598 molecular_function
## 5442 2 5134 0.03895598 biological_process
## 5443 2 5134 0.03895598 biological_process
## 5444 2 5134 0.03895598 biological_process
## 5445 2 5134 0.03895598 biological_process
## 5446 2 5134 0.03895598 biological_process
## 5447 2 5134 0.03895598 biological_process
## 5448 2 5134 0.03895598 biological_process
## 5449 2 5134 0.03895598 cellular_component
## 5450 2 5134 0.03895598 biological_process
## 5451 2 5134 0.03895598 biological_process
## 5452 2 5134 0.03895598 cellular_component
## 5453 2 5134 0.03895598 biological_process
## 5454 2 5134 0.03895598 biological_process
## 5455 2 5134 0.03895598 biological_process
## 5456 2 5134 0.03895598 biological_process
## 5457 2 5134 0.03895598 biological_process
## 5458 2 5134 0.03895598 biological_process
## 5459 2 5134 0.03895598 molecular_function
## 5460 2 5134 0.03895598 molecular_function
## 5461 2 5134 0.03895598 biological_process
## 5462 2 5134 0.03895598 biological_process
## 5463 2 5134 0.03895598 molecular_function
## 5464 2 5134 0.03895598 cellular_component
## 5465 2 5134 0.03895598 molecular_function
## 5466 2 5134 0.03895598 biological_process
## 5467 2 5134 0.03895598 biological_process
## 5468 2 5134 0.03895598 molecular_function
## 5469 2 5134 0.03895598 molecular_function
## 5470 2 5134 0.03895598 biological_process
## 5471 2 5134 0.03895598 cellular_component
## 5472 2 5134 0.03895598 cellular_component
## 5473 2 5134 0.03895598 biological_process
## 5474 2 5134 0.03895598 biological_process
## 5475 2 5134 0.03895598 cellular_component
## 5476 2 5134 0.03895598 biological_process
## 5477 2 5134 0.03895598 biological_process
## 5478 2 5134 0.03895598 cellular_component
## 5479 2 5134 0.03895598 molecular_function
## 5480 2 5134 0.03895598 molecular_function
## 5481 2 5134 0.03895598 molecular_function
## 5482 2 5134 0.03895598 biological_process
## 5483 2 5134 0.03895598 biological_process
## 5484 2 5134 0.03895598 biological_process
## 5485 2 5134 0.03895598 biological_process
## 5486 2 5134 0.03895598 biological_process
## 5487 2 5134 0.03895598 biological_process
## 5488 2 5134 0.03895598 biological_process
## 5489 2 5134 0.03895598 biological_process
## 5490 2 5134 0.03895598 biological_process
## 5491 2 5134 0.03895598 cellular_component
## 5492 2 5134 0.03895598 cellular_component
## 5493 2 5134 0.03895598 biological_process
## 5494 2 5134 0.03895598 cellular_component
## 5495 2 5134 0.03895598 biological_process
## 5496 2 5134 0.03895598 biological_process
## 5497 2 5134 0.03895598 cellular_component
## 5498 2 5134 0.03895598 cellular_component
## 5499 2 5134 0.03895598 biological_process
## 5500 2 5134 0.03895598 biological_process
## 5501 2 5134 0.03895598 cellular_component
## 5502 2 5134 0.03895598 molecular_function
## 5503 2 5134 0.03895598 cellular_component
## 5504 2 5134 0.03895598 cellular_component
## 5505 2 5134 0.03895598 biological_process
## 5506 2 5134 0.03895598 molecular_function
## 5507 2 5134 0.03895598 molecular_function
## 5508 2 5134 0.03895598 molecular_function
## 5509 2 5134 0.03895598 molecular_function
## 5510 2 5134 0.03895598 biological_process
## 5511 2 5134 0.03895598 molecular_function
## 5512 2 5134 0.03895598 molecular_function
## 5513 2 5134 0.03895598 molecular_function
## 5514 2 5134 0.03895598 biological_process
## 5515 2 5134 0.03895598 biological_process
## 5516 2 5134 0.03895598 molecular_function
## 5517 2 5134 0.03895598 cellular_component
## 5518 2 5134 0.03895598 biological_process
## 5519 2 5134 0.03895598 biological_process
## 5520 2 5134 0.03895598 biological_process
## 5521 2 5134 0.03895598 cellular_component
## 5522 2 5134 0.03895598 biological_process
## 5523 2 5134 0.03895598 biological_process
## 5524 2 5134 0.03895598 biological_process
## 5525 2 5134 0.03895598 biological_process
## 5526 2 5134 0.03895598 molecular_function
## 5527 2 5134 0.03895598 molecular_function
## 5528 2 5134 0.03895598 molecular_function
## 5529 2 5134 0.03895598 molecular_function
## 5530 2 5134 0.03895598 biological_process
## 5531 2 5134 0.03895598 molecular_function
## 5532 2 5134 0.03895598 molecular_function
## 5533 2 5134 0.03895598 molecular_function
## 5534 2 5134 0.03895598 biological_process
## 5535 2 5134 0.03895598 biological_process
## 5536 2 5134 0.03895598 cellular_component
## 5537 2 5134 0.03895598 biological_process
## 5538 2 5134 0.03895598 cellular_component
## 5539 2 5134 0.03895598 biological_process
## 5540 2 5134 0.03895598 biological_process
## 5541 2 5134 0.03895598 biological_process
## 5542 2 5134 0.03895598 biological_process
## 5543 2 5134 0.03895598 molecular_function
## 5544 2 5134 0.03895598 biological_process
## 5545 2 5134 0.03895598 molecular_function
## 5546 2 5134 0.03895598 molecular_function
## 5547 2 5134 0.03895598 molecular_function
## 5548 2 5134 0.03895598 molecular_function
## 5549 2 5134 0.03895598 biological_process
## 5550 2 5134 0.03895598 molecular_function
## 5551 2 5134 0.03895598 molecular_function
## 5552 2 5134 0.03895598 biological_process
## 5553 2 5134 0.03895598 biological_process
## 5554 2 5134 0.03895598 molecular_function
## 5555 2 5134 0.03895598 biological_process
## 5556 2 5134 0.03895598 biological_process
## 5557 2 5134 0.03895598 biological_process
## 5558 2 5134 0.03895598 biological_process
## 5559 2 5134 0.03895598 biological_process
## 5560 2 5134 0.03895598 biological_process
## 5561 2 5134 0.03895598 biological_process
## 5562 2 5134 0.03895598 biological_process
## 5563 2 5134 0.03895598 biological_process
## 5564 2 5134 0.03895598 biological_process
## 5565 2 5134 0.03895598 biological_process
## 5566 2 5134 0.03895598 biological_process
## 5567 2 5134 0.03895598 biological_process
## 5568 2 5134 0.03895598 biological_process
## 5569 2 5134 0.03895598 molecular_function
## 5570 2 5134 0.03895598 biological_process
## 5571 2 5134 0.03895598 cellular_component
## 5572 2 5134 0.03895598 cellular_component
## 5573 2 5134 0.03895598 molecular_function
## 5574 2 5134 0.03895598 molecular_function
## 5575 2 5134 0.03895598 biological_process
## 5576 2 5134 0.03895598 biological_process
## 5577 2 5134 0.03895598 cellular_component
## 5578 2 5134 0.03895598 biological_process
## 5579 2 5134 0.03895598 cellular_component
## 5580 2 5134 0.03895598 biological_process
## 5581 2 5134 0.03895598 biological_process
## 5582 2 5134 0.03895598 biological_process
## 5583 2 5134 0.03895598 biological_process
## 5584 2 5134 0.03895598 cellular_component
## 5585 2 5134 0.03895598 cellular_component
## 5586 2 5134 0.03895598 biological_process
## 5587 2 5134 0.03895598 biological_process
## 5588 2 5134 0.03895598 biological_process
## 5589 2 5134 0.03895598 biological_process
## 5590 2 5134 0.03895598 biological_process
## 5591 2 5134 0.03895598 biological_process
## 5592 2 5134 0.03895598 biological_process
## 5593 2 5134 0.03895598 biological_process
## 5594 2 5134 0.03895598 biological_process
## 5595 2 5134 0.03895598 biological_process
## 5596 2 5134 0.03895598 biological_process
## 5597 2 5134 0.03895598 biological_process
## 5598 2 5134 0.03895598 biological_process
## 5599 2 5134 0.03895598 biological_process
## 5600 2 5134 0.03895598 biological_process
## 5601 2 5134 0.03895598 biological_process
## 5602 2 5134 0.03895598 biological_process
## 5603 2 5134 0.03895598 biological_process
## 5604 2 5134 0.03895598 biological_process
## 5605 2 5134 0.03895598 biological_process
## 5606 2 5134 0.03895598 biological_process
## 5607 2 5134 0.03895598 biological_process
## 5608 2 5134 0.03895598 biological_process
## 5609 2 5134 0.03895598 biological_process
## 5610 2 5134 0.03895598 biological_process
## 5611 2 5134 0.03895598 biological_process
## 5612 2 5134 0.03895598 biological_process
## 5613 2 5134 0.03895598 biological_process
## 5614 2 5134 0.03895598 biological_process
## 5615 2 5134 0.03895598 biological_process
## 5616 2 5134 0.03895598 biological_process
## 5617 2 5134 0.03895598 biological_process
## 5618 2 5134 0.03895598 biological_process
## 5619 2 5134 0.03895598 biological_process
## 5620 2 5134 0.03895598 biological_process
## 5621 2 5134 0.03895598 biological_process
## 5622 2 5134 0.03895598 biological_process
## 5623 2 5134 0.03895598 biological_process
## 5624 2 5134 0.03895598 biological_process
## 5625 2 5134 0.03895598 biological_process
## 5626 2 5134 0.03895598 biological_process
## 5627 2 5134 0.03895598 biological_process
## 5628 2 5134 0.03895598 biological_process
## 5629 2 5134 0.03895598 biological_process
## 5630 2 5134 0.03895598 biological_process
## 5631 2 5134 0.03895598 biological_process
## 5632 2 5134 0.03895598 biological_process
## 5633 2 5134 0.03895598 biological_process
## 5634 2 5134 0.03895598 biological_process
## 5635 2 5134 0.03895598 molecular_function
## 5636 2 5134 0.03895598 molecular_function
## 5637 2 5134 0.03895598 biological_process
## 5638 2 5134 0.03895598 biological_process
## 5639 2 5134 0.03895598 biological_process
## 5640 2 5134 0.03895598 biological_process
## 5641 2 5134 0.03895598 cellular_component
## 5642 2 5134 0.03895598 biological_process
## 5643 2 5134 0.03895598 molecular_function
## 5644 2 5134 0.03895598 molecular_function
## 5645 2 5134 0.03895598 molecular_function
## 5646 2 5134 0.03895598 biological_process
## 5647 2 5134 0.03895598 biological_process
## 5648 2 5134 0.03895598 biological_process
## 5649 2 5134 0.03895598 biological_process
## 5650 2 5134 0.03895598 molecular_function
## 5651 2 5134 0.03895598 biological_process
## 5652 2 5134 0.03895598 biological_process
## 5653 2 5134 0.03895598 cellular_component
## 5654 2 5134 0.03895598 cellular_component
## 5655 2 5134 0.03895598 cellular_component
## 5656 2 5134 0.03895598 biological_process
## 5657 2 5134 0.03895598 biological_process
## 5658 2 5134 0.03895598 cellular_component
## 5659 2 5134 0.03895598 molecular_function
## 5660 2 5134 0.03895598 cellular_component
## 5661 2 5134 0.03895598 biological_process
## 5662 2 5134 0.03895598 biological_process
## 5663 2 5134 0.03895598 cellular_component
## 5664 2 5134 0.03895598 molecular_function
## 5665 2 5134 0.03895598 biological_process
## 5666 2 5134 0.03895598 cellular_component
## 5667 2 5134 0.03895598 cellular_component
## 5668 2 5134 0.03895598 cellular_component
## 5669 2 5134 0.03895598 biological_process
## 5670 2 5134 0.03895598 molecular_function
## 5671 2 5134 0.03895598 biological_process
## 5672 2 5134 0.03895598 biological_process
## 5673 2 5134 0.03895598 biological_process
## 5674 2 5134 0.03895598 biological_process
## 5675 2 5134 0.03895598 molecular_function
## 5676 2 5134 0.03895598 biological_process
## 5677 2 5134 0.03895598 biological_process
## 5678 2 5134 0.03895598 cellular_component
## 5679 2 5134 0.03895598 biological_process
## 5680 2 5134 0.03895598 biological_process
## 5681 2 5134 0.03895598 molecular_function
## 5682 2 5134 0.03895598 biological_process
## 5683 2 5134 0.03895598 cellular_component
## 5684 2 5134 0.03895598 cellular_component
## 5685 2 5134 0.03895598 biological_process
## 5686 2 5134 0.03895598 biological_process
## 5687 2 5134 0.03895598 biological_process
## 5688 2 5134 0.03895598 molecular_function
## 5689 2 5134 0.03895598 molecular_function
## 5690 2 5134 0.03895598 cellular_component
## 5691 2 5134 0.03895598 cellular_component
## 5692 2 5134 0.03895598 biological_process
## 5693 2 5134 0.03895598 biological_process
## 5694 2 5134 0.03895598 biological_process
## 5695 2 5134 0.03895598 biological_process
## 5696 2 5134 0.03895598 biological_process
## 5697 2 5134 0.03895598 biological_process
## 5698 2 5134 0.03895598 cellular_component
## 5699 2 5134 0.03895598 biological_process
## 5700 2 5134 0.03895598 molecular_function
## 5701 2 5134 0.03895598 biological_process
## 5702 2 5134 0.03895598 molecular_function
## 5703 2 5134 0.03895598 molecular_function
## 5704 2 5134 0.03895598 cellular_component
## 5705 2 5134 0.03895598 molecular_function
## 5706 2 5134 0.03895598 cellular_component
## 5707 2 5134 0.03895598 cellular_component
## 5708 2 5134 0.03895598 cellular_component
## 5709 2 5134 0.03895598 biological_process
## 5710 2 5134 0.03895598 molecular_function
## 5711 2 5134 0.03895598 cellular_component
## 5712 2 5134 0.03895598 cellular_component
## 5713 2 5134 0.03895598 cellular_component
## 5714 2 5134 0.03895598 cellular_component
## 5715 2 5134 0.03895598 cellular_component
## 5716 2 5134 0.03895598 cellular_component
## 5717 2 5134 0.03895598 biological_process
## 5718 2 5134 0.03895598 molecular_function
## 5719 2 5134 0.03895598 molecular_function
## 5720 2 5134 0.03895598 molecular_function
## 5721 2 5134 0.03895598 cellular_component
## 5722 2 5134 0.03895598 cellular_component
## 5723 2 5134 0.03895598 biological_process
## 5724 2 5134 0.03895598 cellular_component
## 5725 2 5134 0.03895598 cellular_component
## 5726 2 5134 0.03895598 cellular_component
## 5727 2 5134 0.03895598 cellular_component
## 5728 2 5134 0.03895598 molecular_function
## 5729 2 5134 0.03895598 biological_process
## 5730 2 5134 0.03895598 biological_process
## 5731 2 5134 0.03895598 biological_process
## 5732 2 5134 0.03895598 biological_process
## 5733 2 5134 0.03895598 biological_process
## 5734 2 5134 0.03895598 molecular_function
## 5735 2 5134 0.03895598 biological_process
## 5736 2 5134 0.03895598 cellular_component
## 5737 2 5134 0.03895598 biological_process
## 5738 2 5134 0.03895598 biological_process
## 5739 2 5134 0.03895598 cellular_component
## 5740 2 5134 0.03895598 biological_process
## 5741 2 5134 0.03895598 cellular_component
## 5742 2 5134 0.03895598 cellular_component
## 5743 2 5134 0.03895598 cellular_component
## 5744 2 5134 0.03895598 biological_process
## 5745 2 5134 0.03895598 molecular_function
## 5746 2 5134 0.03895598 molecular_function
## 5747 2 5134 0.03895598 molecular_function
## 5748 2 5134 0.03895598 biological_process
## 5749 2 5134 0.03895598 biological_process
## 5750 2 5134 0.03895598 biological_process
## 5751 2 5134 0.03895598 biological_process
## 5752 2 5134 0.03895598 biological_process
## 5753 2 5134 0.03895598 biological_process
## 5754 2 5134 0.03895598 biological_process
## 5755 2 5134 0.03895598 biological_process
## 5756 2 5134 0.03895598 biological_process
## 5757 2 5134 0.03895598 biological_process
## 5758 2 5134 0.03895598 biological_process
## 5759 2 5134 0.03895598 biological_process
## 5760 2 5134 0.03895598 biological_process
## 5761 2 5134 0.03895598 biological_process
## 5762 2 5134 0.03895598 biological_process
## 5763 2 5134 0.03895598 biological_process
## 5764 2 5134 0.03895598 biological_process
## 5765 2 5134 0.03895598 molecular_function
## 5766 2 5134 0.03895598 molecular_function
## 5767 2 5134 0.03895598 biological_process
## 5768 2 5134 0.03895598 molecular_function
## 5769 2 5134 0.03895598 molecular_function
## 5770 2 5134 0.03895598 biological_process
## 5771 2 5134 0.03895598 molecular_function
## 5772 2 5134 0.03895598 biological_process
## 5773 2 5134 0.03895598 biological_process
## 5774 2 5134 0.03895598 biological_process
## 5775 2 5134 0.03895598 biological_process
## 5776 2 5134 0.03895598 biological_process
## 5777 2 5134 0.03895598 biological_process
## 5778 2 5134 0.03895598 molecular_function
## 5779 2 5134 0.03895598 molecular_function
## 5780 2 5134 0.03895598 biological_process
## 5781 2 5134 0.03895598 biological_process
## 5782 2 5134 0.03895598 biological_process
## 5783 2 5134 0.03895598 molecular_function
## 5784 2 5134 0.03895598 molecular_function
## 5785 2 5134 0.03895598 cellular_component
## 5786 2 5134 0.03895598 biological_process
## 5787 2 5134 0.03895598 molecular_function
## 5788 2 5134 0.03895598 molecular_function
## 5789 2 5134 0.03895598 molecular_function
## 5790 2 5134 0.03895598 cellular_component
## 5791 2 5134 0.03895598 molecular_function
## 5792 2 5134 0.03895598 molecular_function
## 5793 2 5134 0.03895598 biological_process
## 5794 2 5134 0.03895598 biological_process
## 5795 2 5134 0.03895598 cellular_component
## 5796 2 5134 0.03895598 molecular_function
## 5797 2 5134 0.03895598 biological_process
## 5798 2 5134 0.03895598 biological_process
## 5799 2 5134 0.03895598 biological_process
## 5800 2 5134 0.03895598 molecular_function
## 5801 2 5134 0.03895598 molecular_function
## 5802 2 5134 0.03895598 molecular_function
## 5803 2 5134 0.03895598 molecular_function
## 5804 2 5134 0.03895598 molecular_function
## 5805 2 5134 0.03895598 biological_process
## 5806 2 5134 0.03895598 biological_process
## 5807 2 5134 0.03895598 biological_process
## 5808 2 5134 0.03895598 molecular_function
## 5809 2 5134 0.03895598 biological_process
## 5810 2 5134 0.03895598 molecular_function
## 5811 2 5134 0.03895598 biological_process
## 5812 2 5134 0.03895598 biological_process
## 5813 2 5134 0.03895598 cellular_component
## 5814 2 5134 0.03895598 biological_process
## 5815 2 5134 0.03895598 cellular_component
## 5816 2 5134 0.03895598 biological_process
## 5817 2 5134 0.03895598 cellular_component
## 5818 2 5134 0.03895598 cellular_component
## 5819 2 5134 0.03895598 cellular_component
## 5820 2 5134 0.03895598 biological_process
## 5821 2 5134 0.03895598 biological_process
## 5822 2 5134 0.03895598 biological_process
## 5823 2 5134 0.03895598 biological_process
## 5824 2 5134 0.03895598 biological_process
## 5825 2 5134 0.03895598 biological_process
## 5826 2 5134 0.03895598 biological_process
## 5827 2 5134 0.03895598 biological_process
## 5828 2 5134 0.03895598 biological_process
## 5829 2 5134 0.03895598 biological_process
## 5830 2 5134 0.03895598 molecular_function
## 5831 2 5134 0.03895598 biological_process
## 5832 2 5134 0.03895598 molecular_function
## 5833 2 5134 0.03895598 biological_process
## 5834 2 5134 0.03895598 cellular_component
## 5835 2 5134 0.03895598 cellular_component
## 5836 2 5134 0.03895598 biological_process
## 5837 2 5134 0.03895598 biological_process
## 5838 2 5134 0.03895598 molecular_function
## 5839 2 5134 0.03895598 molecular_function
## 5840 2 5134 0.03895598 biological_process
## 5841 2 5134 0.03895598 biological_process
## 5842 2 5134 0.03895598 cellular_component
## 5843 2 5134 0.03895598 biological_process
## 5844 2 5134 0.03895598 biological_process
## 5845 2 5134 0.03895598 biological_process
## 5846 2 5134 0.03895598 biological_process
## 5847 2 5134 0.03895598 biological_process
## 5848 2 5134 0.03895598 biological_process
## 5849 2 5134 0.03895598 molecular_function
## 5850 2 5134 0.03895598 biological_process
## 5851 2 5134 0.03895598 biological_process
## 5852 2 5134 0.03895598 biological_process
## 5853 2 5134 0.03895598 biological_process
## 5854 2 5134 0.03895598 biological_process
## 5855 2 5134 0.03895598 biological_process
## 5856 2 5134 0.03895598 biological_process
## 5857 2 5134 0.03895598 biological_process
## 5858 2 5134 0.03895598 cellular_component
## 5859 2 5134 0.03895598 molecular_function
## 5860 2 5134 0.03895598 molecular_function
## 5861 2 5134 0.03895598 biological_process
## 5862 2 5134 0.03895598 biological_process
## 5863 2 5134 0.03895598 biological_process
## 5864 2 5134 0.03895598 biological_process
## 5865 2 5134 0.03895598 biological_process
## 5866 2 5134 0.03895598 biological_process
## 5867 2 5134 0.03895598 biological_process
## 5868 2 5134 0.03895598 biological_process
## 5869 2 5134 0.03895598 molecular_function
## 5870 2 5134 0.03895598 molecular_function
## 5871 2 5134 0.03895598 cellular_component
## 5872 2 5134 0.03895598 biological_process
## 5873 2 5134 0.03895598 biological_process
## 5874 2 5134 0.03895598 biological_process
## 5875 2 5134 0.03895598 molecular_function
## 5876 2 5134 0.03895598 molecular_function
## 5877 2 5134 0.03895598 molecular_function
## 5878 2 5134 0.03895598 biological_process
## 5879 2 5134 0.03895598 biological_process
## 5880 2 5134 0.03895598 biological_process
## 5881 2 5134 0.03895598 cellular_component
## 5882 2 5134 0.03895598 biological_process
## 5883 2 5134 0.03895598 molecular_function
## 5884 2 5134 0.03895598 biological_process
## 5885 2 5134 0.03895598 cellular_component
## 5886 2 5134 0.03895598 cellular_component
## 5887 2 5134 0.03895598 cellular_component
## 5888 2 5134 0.03895598 biological_process
## 5889 2 5134 0.03895598 biological_process
## 5890 2 5134 0.03895598 cellular_component
## 5891 2 5134 0.03895598 biological_process
## 5892 2 5134 0.03895598 molecular_function
## 5893 2 5134 0.03895598 cellular_component
## 5894 2 5134 0.03895598 molecular_function
## 5895 2 5134 0.03895598 biological_process
## 5896 2 5134 0.03895598 biological_process
## 5897 2 5134 0.03895598 molecular_function
## 5898 2 5134 0.03895598 cellular_component
## 5899 2 5134 0.03895598 molecular_function
## 5900 2 5134 0.03895598 molecular_function
## 5901 2 5134 0.03895598 molecular_function
## 5902 2 5134 0.03895598 biological_process
## 5903 2 5134 0.03895598 molecular_function
## 5904 2 5134 0.03895598 cellular_component
## 5905 2 5134 0.03895598 biological_process
## 5906 2 5134 0.03895598 molecular_function
## 5907 2 5134 0.03895598 biological_process
## 5908 2 5134 0.03895598 molecular_function
## 5909 2 5134 0.03895598 biological_process
## 5910 2 5134 0.03895598 biological_process
## 5911 2 5134 0.03895598 biological_process
## 5912 2 5134 0.03895598 biological_process
## 5913 2 5134 0.03895598 biological_process
## 5914 2 5134 0.03895598 molecular_function
## 5915 2 5134 0.03895598 molecular_function
## 5916 2 5134 0.03895598 biological_process
## 5917 2 5134 0.03895598 biological_process
## 5918 2 5134 0.03895598 biological_process
## 5919 2 5134 0.03895598 biological_process
## 5920 2 5134 0.03895598 molecular_function
## 5921 2 5134 0.03895598 molecular_function
## 5922 2 5134 0.03895598 biological_process
## 5923 2 5134 0.03895598 biological_process
## 5924 2 5134 0.03895598 molecular_function
## 5925 2 5134 0.03895598 molecular_function
## 5926 2 5134 0.03895598 biological_process
## 5927 2 5134 0.03895598 biological_process
## 5928 2 5134 0.03895598 cellular_component
## 5929 2 5134 0.03895598 biological_process
## 5930 2 5134 0.03895598 biological_process
## 5931 2 5134 0.03895598 molecular_function
## 5932 2 5134 0.03895598 cellular_component
## 5933 2 5134 0.03895598 biological_process
## 5934 2 5134 0.03895598 molecular_function
## 5935 2 5134 0.03895598 biological_process
## 5936 2 5134 0.03895598 biological_process
## 5937 2 5134 0.03895598 molecular_function
## 5938 2 5134 0.03895598 cellular_component
## 5939 2 5134 0.03895598 cellular_component
## 5940 2 5134 0.03895598 biological_process
## 5941 2 5134 0.03895598 molecular_function
## 5942 2 5134 0.03895598 biological_process
## 5943 2 5134 0.03895598 biological_process
## 5944 2 5134 0.03895598 biological_process
## 5945 2 5134 0.03895598 biological_process
## 5946 2 5134 0.03895598 biological_process
## 5947 2 5134 0.03895598 biological_process
## 5948 2 5134 0.03895598 biological_process
## 5949 2 5134 0.03895598 biological_process
## 5950 2 5134 0.03895598 biological_process
## 5951 2 5134 0.03895598 biological_process
## 5952 2 5134 0.03895598 biological_process
## 5953 2 5134 0.03895598 biological_process
## 5954 2 5134 0.03895598 molecular_function
## 5955 2 5134 0.03895598 biological_process
## 5956 2 5134 0.03895598 biological_process
## 5957 2 5134 0.03895598 molecular_function
## 5958 2 5134 0.03895598 molecular_function
## 5959 2 5134 0.03895598 biological_process
## 5960 2 5134 0.03895598 biological_process
## 5961 2 5134 0.03895598 biological_process
## 5962 2 5134 0.03895598 molecular_function
## 5963 2 5134 0.03895598 biological_process
## 5964 2 5134 0.03895598 cellular_component
## 5965 2 5134 0.03895598 molecular_function
## 5966 2 5134 0.03895598 biological_process
## 5967 2 5134 0.03895598 molecular_function
## 5968 2 5134 0.03895598 biological_process
## 5969 2 5134 0.03895598 biological_process
## 5970 2 5134 0.03895598 biological_process
## 5971 2 5134 0.03895598 biological_process
## 5972 2 5134 0.03895598 biological_process
## 5973 2 5134 0.03895598 biological_process
## 5974 2 5134 0.03895598 biological_process
## 5975 2 5134 0.03895598 cellular_component
## 5976 2 5134 0.03895598 cellular_component
## 5977 2 5134 0.03895598 cellular_component
## 5978 2 5134 0.03895598 cellular_component
## 5979 2 5134 0.03895598 molecular_function
## 5980 2 5134 0.03895598 biological_process
## 5981 2 5134 0.03895598 molecular_function
## 5982 2 5134 0.03895598 cellular_component
## 5983 2 5134 0.03895598 biological_process
## 5984 2 5134 0.03895598 biological_process
## 5985 2 5134 0.03895598 molecular_function
## 5986 2 5134 0.03895598 cellular_component
## 5987 2 5134 0.03895598 biological_process
## 5988 2 5134 0.03895598 biological_process
## 5989 2 5134 0.03895598 biological_process
## 5990 2 5134 0.03895598 biological_process
## 5991 2 5134 0.03895598 molecular_function
## 5992 2 5134 0.03895598 molecular_function
## 5993 2 5134 0.03895598 biological_process
## 5994 2 5134 0.03895598 cellular_component
## 5995 2 5134 0.03895598 biological_process
## 5996 2 5134 0.03895598 molecular_function
## 5997 2 5134 0.03895598 biological_process
## 5998 2 5134 0.03895598 biological_process
## 5999 2 5134 0.03895598 biological_process
## 6000 2 5134 0.03895598 biological_process
## 6001 2 5134 0.03895598 molecular_function
## 6002 2 5134 0.03895598 biological_process
## 6003 2 5134 0.03895598 cellular_component
## 6004 2 5134 0.03895598 biological_process
## 6005 2 5134 0.03895598 biological_process
## 6006 2 5134 0.03895598 molecular_function
## 6007 2 5134 0.03895598 biological_process
## 6008 2 5134 0.03895598 biological_process
## 6009 2 5134 0.03895598 biological_process
## 6010 2 5134 0.03895598 biological_process
## 6011 2 5134 0.03895598 biological_process
## 6012 2 5134 0.03895598 biological_process
## 6013 2 5134 0.03895598 biological_process
## 6014 2 5134 0.03895598 biological_process
## 6015 2 5134 0.03895598 biological_process
## 6016 2 5134 0.03895598 biological_process
## 6017 2 5134 0.03895598 biological_process
## 6018 2 5134 0.03895598 biological_process
## 6019 2 5134 0.03895598 biological_process
## 6020 2 5134 0.03895598 biological_process
## 6021 2 5134 0.03895598 biological_process
## 6022 2 5134 0.03895598 molecular_function
## 6023 2 5134 0.03895598 molecular_function
## 6024 2 5134 0.03895598 molecular_function
## 6025 2 5134 0.03895598 biological_process
## 6026 2 5134 0.03895598 molecular_function
## 6027 2 5134 0.03895598 biological_process
## 6028 2 5134 0.03895598 molecular_function
## 6029 2 5134 0.03895598 cellular_component
## 6030 2 5134 0.03895598 biological_process
## 6031 2 5134 0.03895598 biological_process
## 6032 2 5134 0.03895598 biological_process
## 6033 2 5134 0.03895598 cellular_component
## 6034 2 5134 0.03895598 biological_process
## 6035 2 5134 0.03895598 biological_process
## 6036 2 5134 0.03895598 biological_process
## 6037 2 5134 0.03895598 molecular_function
## 6038 2 5134 0.03895598 biological_process
## 6039 2 5134 0.03895598 biological_process
## 6040 2 5134 0.03895598 molecular_function
## 6041 2 5134 0.03895598 molecular_function
## 6042 2 5134 0.03895598 biological_process
## 6043 2 5134 0.03895598 biological_process
## 6044 2 5134 0.03895598 biological_process
## 6045 2 5134 0.03895598 molecular_function
## 6046 2 5134 0.03895598 biological_process
## 6047 2 5134 0.03895598 biological_process
## 6048 2 5134 0.03895598 cellular_component
## 6049 2 5134 0.03895598 cellular_component
## 6050 2 5134 0.03895598 biological_process
## 6051 2 5134 0.03895598 cellular_component
## 6052 2 5134 0.03895598 biological_process
## 6053 2 5134 0.03895598 biological_process
## 6054 2 5134 0.03895598 molecular_function
## 6055 2 5134 0.03895598 molecular_function
## 6056 2 5134 0.03895598 molecular_function
## 6057 2 5134 0.03895598 molecular_function
## 6058 2 5134 0.03895598 molecular_function
## 6059 2 5134 0.03895598 molecular_function
## 6060 2 5134 0.03895598 molecular_function
## 6061 2 5134 0.03895598 biological_process
## 6062 2 5134 0.03895598 molecular_function
## 6063 2 5134 0.03895598 biological_process
## 6064 2 5134 0.03895598 biological_process
## 6065 2 5134 0.03895598 molecular_function
## 6066 2 5134 0.03895598 cellular_component
## 6067 2 5134 0.03895598 cellular_component
## 6068 2 5134 0.03895598 cellular_component
## 6069 2 5134 0.03895598 cellular_component
## 6070 2 5134 0.03895598 cellular_component
## 6071 2 5134 0.03895598 biological_process
## 6072 2 5134 0.03895598 cellular_component
## 6073 2 5134 0.03895598 molecular_function
## 6074 2 5134 0.03895598 molecular_function
## 6075 2 5134 0.03895598 biological_process
## 6076 2 5134 0.03895598 molecular_function
## 6077 2 5134 0.03895598 molecular_function
## 6078 2 5134 0.03895598 biological_process
## 6079 2 5134 0.03895598 molecular_function
## 6080 2 5134 0.03895598 molecular_function
## 6081 2 5134 0.03895598 molecular_function
## 6082 2 5134 0.03895598 biological_process
## 6083 2 5134 0.03895598 molecular_function
## 6084 2 5134 0.03895598 molecular_function
## 6085 2 5134 0.03895598 biological_process
## 6086 2 5134 0.03895598 biological_process
## 6087 2 5134 0.03895598 cellular_component
## 6088 2 5134 0.03895598 biological_process
## 6089 2 5134 0.03895598 biological_process
## 6090 2 5134 0.03895598 molecular_function
## 6091 2 5134 0.03895598 molecular_function
## 6092 2 5134 0.03895598 cellular_component
## 6093 2 5134 0.03895598 molecular_function
## 6094 2 5134 0.03895598 cellular_component
## 6095 2 5134 0.03895598 biological_process
## 6096 2 5134 0.03895598 molecular_function
## 6097 2 5134 0.03895598 molecular_function
## 6098 2 5134 0.03895598 molecular_function
## 6099 2 5134 0.03895598 molecular_function
## 6100 2 5134 0.03895598 biological_process
## 6101 2 5134 0.03895598 molecular_function
## 6102 2 5134 0.03895598 molecular_function
## 6103 2 5134 0.03895598 biological_process
## 6104 2 5134 0.03895598 biological_process
## 6105 2 5134 0.03895598 biological_process
## 6106 2 5134 0.03895598 molecular_function
## 6107 2 5134 0.03895598 cellular_component
## 6108 2 5134 0.03895598 molecular_function
## 6109 2 5134 0.03895598 molecular_function
## 6110 2 5134 0.03895598 biological_process
## 6111 2 5134 0.03895598 molecular_function
## 6112 2 5134 0.03895598 biological_process
## 6113 2 5134 0.03895598 molecular_function
## 6114 2 5134 0.03895598 biological_process
## 6115 2 5134 0.03895598 molecular_function
## 6116 2 5134 0.03895598 biological_process
## 6117 2 5134 0.03895598 biological_process
## 6118 2 5134 0.03895598 cellular_component
## 6119 2 5134 0.03895598 biological_process
## 6120 2 5134 0.03895598 biological_process
## 6121 2 5134 0.03895598 biological_process
## 6122 2 5134 0.03895598 biological_process
## 6123 2 5134 0.03895598 molecular_function
## 6124 2 5134 0.03895598 molecular_function
## 6125 2 5134 0.03895598 cellular_component
## 6126 2 5134 0.03895598 biological_process
## 6127 2 5134 0.03895598 biological_process
## 6128 2 5134 0.03895598 biological_process
## 6129 2 5134 0.03895598 biological_process
## 6130 2 5134 0.03895598 biological_process
## 6131 2 5134 0.03895598 biological_process
## 6132 2 5134 0.03895598 molecular_function
## 6133 2 5134 0.03895598 biological_process
## 6134 2 5134 0.03895598 biological_process
## 6135 2 5134 0.03895598 biological_process
## 6136 2 5134 0.03895598 biological_process
## 6137 2 5134 0.03895598 cellular_component
## 6138 2 5134 0.03895598 molecular_function
## 6139 2 5134 0.03895598 molecular_function
## 6140 2 5134 0.03895598 biological_process
## 6141 2 5134 0.03895598 biological_process
## 6142 2 5134 0.03895598 biological_process
## 6143 2 5134 0.03895598 cellular_component
## 6144 2 5134 0.03895598 molecular_function
## 6145 2 5134 0.03895598 biological_process
## 6146 2 5134 0.03895598 biological_process
## 6147 2 5134 0.03895598 biological_process
## 6148 2 5134 0.03895598 biological_process
## 6149 2 5134 0.03895598 biological_process
## 6150 2 5134 0.03895598 molecular_function
## 6151 2 5134 0.03895598 molecular_function
## 6152 2 5134 0.03895598 biological_process
## 6153 2 5134 0.03895598 biological_process
## 6154 2 5134 0.03895598 biological_process
## 6155 2 5134 0.03895598 biological_process
## 6156 2 5134 0.03895598 biological_process
## 6157 2 5134 0.03895598 biological_process
## 6158 2 5134 0.03895598 biological_process
## 6159 2 5134 0.03895598 biological_process
## 6160 2 5134 0.03895598 biological_process
## 6161 2 5134 0.03895598 molecular_function
## 6162 2 5134 0.03895598 biological_process
## 6163 2 5134 0.03895598 molecular_function
## 6164 2 5134 0.03895598 molecular_function
## 6165 2 5134 0.03895598 molecular_function
## 6166 2 5134 0.03895598 molecular_function
## 6167 2 5134 0.03895598 biological_process
## 6168 2 5134 0.03895598 biological_process
## 6169 2 5134 0.03895598 biological_process
## 6170 2 5134 0.03895598 biological_process
## 6171 2 5134 0.03895598 biological_process
## 6172 2 5134 0.03895598 biological_process
## 6173 2 5134 0.03895598 biological_process
## 6174 2 5134 0.03895598 biological_process
## 6175 2 5134 0.03895598 biological_process
## 6176 2 5134 0.03895598 biological_process
## 6177 2 5134 0.03895598 biological_process
## 6178 2 5134 0.03895598 molecular_function
## 6179 2 5134 0.03895598 molecular_function
## 6180 2 5134 0.03895598 biological_process
## 6181 2 5134 0.03895598 molecular_function
## 6182 2 5134 0.03895598 biological_process
## 6183 2 5134 0.03895598 molecular_function
## 6184 2 5134 0.03895598 molecular_function
## 6185 2 5134 0.03895598 biological_process
## 6186 2 5134 0.03895598 biological_process
## 6187 2 5134 0.03895598 biological_process
## 6188 2 5134 0.03895598 biological_process
## 6189 2 5134 0.03895598 biological_process
## 6190 2 5134 0.03895598 molecular_function
## 6191 2 5134 0.03895598 molecular_function
## 6192 2 5134 0.03895598 molecular_function
## 6193 2 5134 0.03895598 molecular_function
## 6194 2 5134 0.03895598 molecular_function
## 6195 2 5134 0.03895598 cellular_component
## 6196 2 5134 0.03895598 biological_process
## 6197 2 5134 0.03895598 cellular_component
## 6198 2 5134 0.03895598 biological_process
## 6199 2 5134 0.03895598 biological_process
## 6200 2 5134 0.03895598 molecular_function
## 6201 2 5134 0.03895598 cellular_component
## 6202 2 5134 0.03895598 biological_process
## 6203 2 5134 0.03895598 cellular_component
## 6204 2 5134 0.03895598 biological_process
## 6205 2 5134 0.03895598 biological_process
## 6206 2 5134 0.03895598 biological_process
## 6207 2 5134 0.03895598 biological_process
## 6208 2 5134 0.03895598 biological_process
## 6209 2 5134 0.03895598 molecular_function
## 6210 2 5134 0.03895598 biological_process
## 6211 2 5134 0.03895598 biological_process
## 6212 2 5134 0.03895598 biological_process
## 6213 2 5134 0.03895598 biological_process
## 6214 2 5134 0.03895598 biological_process
## 6215 2 5134 0.03895598 biological_process
## 6216 2 5134 0.03895598 biological_process
## 6217 2 5134 0.03895598 biological_process
## 6218 2 5134 0.03895598 biological_process
## 6219 2 5134 0.03895598 molecular_function
## 6220 2 5134 0.03895598 molecular_function
## 6221 2 5134 0.03895598 cellular_component
## 6222 2 5134 0.03895598 biological_process
## 6223 2 5134 0.03895598 biological_process
## 6224 2 5134 0.03895598 molecular_function
## 6225 2 5134 0.03895598 biological_process
## 6226 2 5134 0.03895598 molecular_function
## 6227 2 5134 0.03895598 molecular_function
## 6228 2 5134 0.03895598 biological_process
## 6229 2 5134 0.03895598 biological_process
## 6230 2 5134 0.03895598 cellular_component
## 6231 2 5134 0.03895598 molecular_function
## 6232 2 5134 0.03895598 molecular_function
## 6233 2 5134 0.03895598 molecular_function
## 6234 2 5134 0.03895598 biological_process
## 6235 2 5134 0.03895598 biological_process
## 6236 2 5134 0.03895598 cellular_component
## 6237 2 5134 0.03895598 biological_process
## 6238 2 5134 0.03895598 biological_process
## 6239 2 5134 0.03895598 biological_process
## 6240 2 5134 0.03895598 biological_process
## 6241 2 5134 0.03895598 biological_process
## 6242 2 5134 0.03895598 biological_process
## 6243 2 5134 0.03895598 biological_process
## 6244 2 5134 0.03895598 biological_process
## 6245 2 5134 0.03895598 biological_process
## 6246 2 5134 0.03895598 biological_process
## 6247 2 5134 0.03895598 biological_process
## 6248 2 5134 0.03895598 cellular_component
## 6249 2 5134 0.03895598 cellular_component
## 6250 2 5134 0.03895598 biological_process
## 6251 2 5134 0.03895598 biological_process
## 6252 2 5134 0.03895598 cellular_component
## 6253 2 5134 0.03895598 cellular_component
## 6254 2 5134 0.03895598 biological_process
## 6255 2 5134 0.03895598 biological_process
## 6256 2 5134 0.03895598 biological_process
## 6257 2 5134 0.03895598 molecular_function
## 6258 2 5134 0.03895598 biological_process
## 6259 2 5134 0.03895598 biological_process
## 6260 2 5134 0.03895598 biological_process
## 6261 2 5134 0.03895598 biological_process
## 6262 2 5134 0.03895598 cellular_component
## 6263 2 5134 0.03895598 biological_process
## 6264 2 5134 0.03895598 biological_process
## 6265 2 5134 0.03895598 molecular_function
## 6266 2 5134 0.03895598 biological_process
## 6267 2 5134 0.03895598 cellular_component
## 6268 2 5134 0.03895598 biological_process
## 6269 2 5134 0.03895598 molecular_function
## 6270 2 5134 0.03895598 biological_process
## 6271 2 5134 0.03895598 biological_process
## 6272 2 5134 0.03895598 biological_process
## 6273 2 5134 0.03895598 biological_process
## 6274 2 5134 0.03895598 biological_process
## 6275 2 5134 0.03895598 cellular_component
## 6276 2 5134 0.03895598 molecular_function
## 6277 2 5134 0.03895598 biological_process
## 6278 2 5134 0.03895598 molecular_function
## 6279 2 5134 0.03895598 biological_process
## 6280 2 5134 0.03895598 biological_process
## 6281 2 5134 0.03895598 biological_process
## 6282 2 5134 0.03895598 biological_process
## 6283 2 5134 0.03895598 biological_process
## 6284 2 5134 0.03895598 biological_process
## 6285 2 5134 0.03895598 cellular_component
## 6286 2 5134 0.03895598 cellular_component
## 6287 2 5134 0.03895598 biological_process
## 6288 2 5134 0.03895598 molecular_function
## 6289 2 5134 0.03895598 cellular_component
## 6290 2 5134 0.03895598 molecular_function
## 6291 2 5134 0.03895598 biological_process
## 6292 2 5134 0.03895598 biological_process
## 6293 2 5134 0.03895598 biological_process
## 6294 2 5134 0.03895598 biological_process
## 6295 2 5134 0.03895598 molecular_function
## 6296 2 5134 0.03895598 biological_process
## 6297 2 5134 0.03895598 biological_process
## 6298 2 5134 0.03895598 biological_process
## 6299 2 5134 0.03895598 molecular_function
## 6300 2 5134 0.03895598 molecular_function
## 6301 2 5134 0.03895598 biological_process
## 6302 2 5134 0.03895598 molecular_function
## 6303 2 5134 0.03895598 biological_process
## 6304 2 5134 0.03895598 molecular_function
## 6305 2 5134 0.03895598 molecular_function
## 6306 2 5134 0.03895598 biological_process
## 6307 2 5134 0.03895598 molecular_function
## 6308 2 5134 0.03895598 molecular_function
## 6309 2 5134 0.03895598 molecular_function
## 6310 2 5134 0.03895598 biological_process
## 6311 2 5134 0.03895598 molecular_function
## 6312 2 5134 0.03895598 molecular_function
## 6313 2 5134 0.03895598 cellular_component
## 6314 2 5134 0.03895598 biological_process
## 6315 2 5134 0.03895598 molecular_function
## 6316 2 5134 0.03895598 cellular_component
## 6317 2 5134 0.03895598 biological_process
## 6318 2 5134 0.03895598 biological_process
## 6319 2 5134 0.03895598 biological_process
## 6320 2 5134 0.03895598 biological_process
## 6321 2 5134 0.03895598 biological_process
## 6322 2 5134 0.03895598 biological_process
## 6323 2 5134 0.03895598 biological_process
## 6324 2 5134 0.03895598 biological_process
## 6325 2 5134 0.03895598 biological_process
## 6326 2 5134 0.03895598 biological_process
## 6327 2 5134 0.03895598 biological_process
## 6328 2 5134 0.03895598 biological_process
## 6329 2 5134 0.03895598 biological_process
## 6330 2 5134 0.03895598 biological_process
## 6331 2 5134 0.03895598 biological_process
## 6332 2 5134 0.03895598 biological_process
## 6333 2 5134 0.03895598 biological_process
## 6334 2 5134 0.03895598 biological_process
## 6335 2 5134 0.03895598 biological_process
## 6336 2 5134 0.03895598 biological_process
## 6337 2 5134 0.03895598 biological_process
## 6338 2 5134 0.03895598 biological_process
## 6339 2 5134 0.03895598 biological_process
## 6340 2 5134 0.03895598 biological_process
## 6341 2 5134 0.03895598 biological_process
## 6342 2 5134 0.03895598 biological_process
## 6343 2 5134 0.03895598 biological_process
## 6344 2 5134 0.03895598 biological_process
## 6345 2 5134 0.03895598 biological_process
## 6346 2 5134 0.03895598 biological_process
## 6347 2 5134 0.03895598 biological_process
## 6348 2 5134 0.03895598 biological_process
## 6349 2 5134 0.03895598 biological_process
## 6350 2 5134 0.03895598 biological_process
## 6351 2 5134 0.03895598 biological_process
## 6352 2 5134 0.03895598 biological_process
## 6353 2 5134 0.03895598 biological_process
## 6354 2 5134 0.03895598 biological_process
## 6355 2 5134 0.03895598 biological_process
## 6356 2 5134 0.03895598 biological_process
## 6357 2 5134 0.03895598 biological_process
## 6358 2 5134 0.03895598 biological_process
## 6359 2 5134 0.03895598 biological_process
## 6360 2 5134 0.03895598 biological_process
## 6361 2 5134 0.03895598 biological_process
## 6362 2 5134 0.03895598 biological_process
## 6363 2 5134 0.03895598 biological_process
## 6364 2 5134 0.03895598 biological_process
## 6365 2 5134 0.03895598 biological_process
## 6366 2 5134 0.03895598 biological_process
## 6367 2 5134 0.03895598 biological_process
## 6368 2 5134 0.03895598 biological_process
## 6369 2 5134 0.03895598 biological_process
## 6370 2 5134 0.03895598 biological_process
## 6371 2 5134 0.03895598 biological_process
## 6372 2 5134 0.03895598 biological_process
## 6373 2 5134 0.03895598 biological_process
## 6374 2 5134 0.03895598 biological_process
## 6375 2 5134 0.03895598 biological_process
## 6376 2 5134 0.03895598 biological_process
## 6377 2 5134 0.03895598 biological_process
## 6378 2 5134 0.03895598 biological_process
## 6379 2 5134 0.03895598 biological_process
## 6380 2 5134 0.03895598 biological_process
## 6381 2 5134 0.03895598 biological_process
## 6382 2 5134 0.03895598 biological_process
## 6383 2 5134 0.03895598 biological_process
## 6384 2 5134 0.03895598 biological_process
## 6385 2 5134 0.03895598 biological_process
## 6386 2 5134 0.03895598 biological_process
## 6387 2 5134 0.03895598 biological_process
## 6388 2 5134 0.03895598 biological_process
## 6389 2 5134 0.03895598 biological_process
## 6390 2 5134 0.03895598 biological_process
## 6391 2 5134 0.03895598 biological_process
## 6392 2 5134 0.03895598 biological_process
## 6393 2 5134 0.03895598 biological_process
## 6394 2 5134 0.03895598 biological_process
## 6395 2 5134 0.03895598 biological_process
## 6396 2 5134 0.03895598 biological_process
## 6397 2 5134 0.03895598 biological_process
## 6398 2 5134 0.03895598 biological_process
## 6399 2 5134 0.03895598 biological_process
## 6400 2 5134 0.03895598 biological_process
## 6401 2 5134 0.03895598 biological_process
## 6402 2 5134 0.03895598 biological_process
## 6403 2 5134 0.03895598 biological_process
## 6404 2 5134 0.03895598 biological_process
## 6405 2 5134 0.03895598 biological_process
## 6406 2 5134 0.03895598 biological_process
## 6407 2 5134 0.03895598 biological_process
## 6408 2 5134 0.03895598 biological_process
## 6409 2 5134 0.03895598 biological_process
## 6410 2 5134 0.03895598 biological_process
## 6411 2 5134 0.03895598 biological_process
## 6412 2 5134 0.03895598 biological_process
## 6413 2 5134 0.03895598 biological_process
## 6414 2 5134 0.03895598 biological_process
## 6415 2 5134 0.03895598 biological_process
## 6416 2 5134 0.03895598 biological_process
## 6417 2 5134 0.03895598 biological_process
## 6418 2 5134 0.03895598 biological_process
## 6419 2 5134 0.03895598 biological_process
## 6420 2 5134 0.03895598 biological_process
## 6421 2 5134 0.03895598 biological_process
## 6422 2 5134 0.03895598 biological_process
## 6423 2 5134 0.03895598 biological_process
## 6424 2 5134 0.03895598 biological_process
## 6425 2 5134 0.03895598 biological_process
## 6426 2 5134 0.03895598 biological_process
## 6427 2 5134 0.03895598 biological_process
## 6428 2 5134 0.03895598 biological_process
## 6429 2 5134 0.03895598 biological_process
## 6430 2 5134 0.03895598 biological_process
## 6431 2 5134 0.03895598 biological_process
## 6432 2 5134 0.03895598 biological_process
## 6433 2 5134 0.03895598 biological_process
## 6434 2 5134 0.03895598 biological_process
## 6435 2 5134 0.03895598 biological_process
## 6436 2 5134 0.03895598 biological_process
## 6437 2 5134 0.03895598 biological_process
## 6438 2 5134 0.03895598 biological_process
## 6439 2 5134 0.03895598 biological_process
## 6440 2 5134 0.03895598 biological_process
## 6441 2 5134 0.03895598 biological_process
## 6442 2 5134 0.03895598 biological_process
## 6443 2 5134 0.03895598 biological_process
## 6444 2 5134 0.03895598 biological_process
## 6445 2 5134 0.03895598 biological_process
## 6446 2 5134 0.03895598 biological_process
## 6447 2 5134 0.03895598 biological_process
## 6448 2 5134 0.03895598 biological_process
## 6449 2 5134 0.03895598 biological_process
## 6450 2 5134 0.03895598 biological_process
## 6451 2 5134 0.03895598 biological_process
## 6452 2 5134 0.03895598 biological_process
## 6453 2 5134 0.03895598 biological_process
## 6454 2 5134 0.03895598 biological_process
## 6455 2 5134 0.03895598 biological_process
## 6456 2 5134 0.03895598 biological_process
## 6457 2 5134 0.03895598 biological_process
## 6458 2 5134 0.03895598 biological_process
## 6459 2 5134 0.03895598 biological_process
## 6460 2 5134 0.03895598 biological_process
## 6461 2 5134 0.03895598 biological_process
## 6462 2 5134 0.03895598 biological_process
## 6463 2 5134 0.03895598 biological_process
## 6464 2 5134 0.03895598 biological_process
## 6465 2 5134 0.03895598 biological_process
## 6466 2 5134 0.03895598 biological_process
## 6467 2 5134 0.03895598 biological_process
## 6468 2 5134 0.03895598 biological_process
## 6469 2 5134 0.03895598 biological_process
## 6470 2 5134 0.03895598 biological_process
## 6471 2 5134 0.03895598 biological_process
## 6472 2 5134 0.03895598 biological_process
## 6473 2 5134 0.03895598 biological_process
## 6474 2 5134 0.03895598 biological_process
## 6475 2 5134 0.03895598 biological_process
## 6476 2 5134 0.03895598 biological_process
## 6477 2 5134 0.03895598 biological_process
## 6478 2 5134 0.03895598 biological_process
## 6479 2 5134 0.03895598 biological_process
## 6480 2 5134 0.03895598 biological_process
## 6481 2 5134 0.03895598 biological_process
## 6482 2 5134 0.03895598 biological_process
## 6483 2 5134 0.03895598 biological_process
## 6484 2 5134 0.03895598 biological_process
## 6485 2 5134 0.03895598 biological_process
## 6486 2 5134 0.03895598 biological_process
## 6487 2 5134 0.03895598 biological_process
## 6488 2 5134 0.03895598 biological_process
## 6489 2 5134 0.03895598 biological_process
## 6490 2 5134 0.03895598 biological_process
## 6491 2 5134 0.03895598 biological_process
## 6492 2 5134 0.03895598 biological_process
## 6493 2 5134 0.03895598 biological_process
## 6494 2 5134 0.03895598 biological_process
## 6495 2 5134 0.03895598 biological_process
## 6496 2 5134 0.03895598 biological_process
## 6497 2 5134 0.03895598 biological_process
## 6498 2 5134 0.03895598 biological_process
## 6499 2 5134 0.03895598 biological_process
## 6500 2 5134 0.03895598 biological_process
## 6501 2 5134 0.03895598 biological_process
## 6502 2 5134 0.03895598 biological_process
## 6503 2 5134 0.03895598 biological_process
## 6504 2 5134 0.03895598 biological_process
## 6505 2 5134 0.03895598 cellular_component
## 6506 2 5134 0.03895598 cellular_component
## 6507 2 5134 0.03895598 molecular_function
## 6508 2 5134 0.03895598 biological_process
## 6509 2 5134 0.03895598 biological_process
## 6510 2 5134 0.03895598 biological_process
## 6511 2 5134 0.03895598 molecular_function
## 6512 2 5134 0.03895598 biological_process
## 6513 2 5134 0.03895598 biological_process
## 6514 2 5134 0.03895598 biological_process
## 6515 2 5134 0.03895598 biological_process
## 6516 2 5134 0.03895598 biological_process
## 6517 2 5134 0.03895598 biological_process
## 6518 2 5134 0.03895598 biological_process
## 6519 2 5134 0.03895598 biological_process
## 6520 2 5134 0.03895598 cellular_component
## 6521 2 5134 0.03895598 biological_process
## 6522 2 5134 0.03895598 molecular_function
## 6523 2 5134 0.03895598 biological_process
## 6524 2 5134 0.03895598 biological_process
## 6525 2 5134 0.03895598 biological_process
## 6526 2 5134 0.03895598 molecular_function
## 6527 2 5134 0.03895598 biological_process
## 6528 2 5134 0.03895598 biological_process
## 6529 2 5134 0.03895598 biological_process
## 6530 2 5134 0.03895598 molecular_function
## 6531 2 5134 0.03895598 biological_process
## 6532 2 5134 0.03895598 molecular_function
## 6533 2 5134 0.03895598 biological_process
## 6534 2 5134 0.03895598 cellular_component
## 6535 2 5134 0.03895598 molecular_function
## 6536 2 5134 0.03895598 cellular_component
## 6537 2 5134 0.03895598 biological_process
## 6538 2 5134 0.03895598 cellular_component
## 6539 2 5134 0.03895598 biological_process
## 6540 2 5134 0.03895598 biological_process
## 6541 2 5134 0.03895598 biological_process
## 6542 2 5134 0.03895598 biological_process
## 6543 2 5134 0.03895598 cellular_component
## 6544 2 5134 0.03895598 cellular_component
## 6545 2 5134 0.03895598 biological_process
## 6546 2 5134 0.03895598 cellular_component
## 6547 2 5134 0.03895598 cellular_component
## 6548 2 5134 0.03895598 biological_process
## 6549 2 5134 0.03895598 cellular_component
## 6550 2 5134 0.03895598 cellular_component
## 6551 2 5134 0.03895598 cellular_component
## 6552 2 5134 0.03895598 biological_process
## 6553 2 5134 0.03895598 cellular_component
## 6554 2 5134 0.03895598 molecular_function
## 6555 2 5134 0.03895598 molecular_function
## 6556 2 5134 0.03895598 biological_process
## 6557 2 5134 0.03895598 molecular_function
## 6558 2 5134 0.03895598 biological_process
## 6559 2 5134 0.03895598 molecular_function
## 6560 2 5134 0.03895598 molecular_function
## 6561 2 5134 0.03895598 biological_process
## 6562 2 5134 0.03895598 biological_process
## 6563 2 5134 0.03895598 cellular_component
## 6564 2 5134 0.03895598 biological_process
## 6565 2 5134 0.03895598 biological_process
## 6566 2 5134 0.03895598 biological_process
## 6567 2 5134 0.03895598 molecular_function
## 6568 2 5134 0.03895598 molecular_function
## 6569 2 5134 0.03895598 biological_process
## 6570 2 5134 0.03895598 biological_process
## 6571 2 5134 0.03895598 molecular_function
## 6572 2 5134 0.03895598 molecular_function
## 6573 2 5134 0.03895598 molecular_function
## 6574 2 5134 0.03895598 biological_process
## 6575 2 5134 0.03895598 biological_process
## 6576 2 5134 0.03895598 biological_process
## 6577 2 5134 0.03895598 biological_process
## 6578 2 5134 0.03895598 cellular_component
## 6579 2 5134 0.03895598 biological_process
## 6580 2 5134 0.03895598 molecular_function
## 6581 2 5134 0.03895598 biological_process
## 6582 2 5134 0.03895598 biological_process
## 6583 2 5134 0.03895598 biological_process
## 6584 2 5134 0.03895598 biological_process
## 6585 2 5134 0.03895598 biological_process
## 6586 2 5134 0.03895598 cellular_component
## 6587 2 5134 0.03895598 molecular_function
## 6588 2 5134 0.03895598 biological_process
## 6589 2 5134 0.03895598 molecular_function
## 6590 2 5134 0.03895598 biological_process
## 6591 2 5134 0.03895598 biological_process
## 6592 2 5134 0.03895598 molecular_function
## 6593 2 5134 0.03895598 molecular_function
## 6594 2 5134 0.03895598 molecular_function
## 6595 2 5134 0.03895598 molecular_function
## 6596 2 5134 0.03895598 molecular_function
## 6597 2 5134 0.03895598 cellular_component
## 6598 2 5134 0.03895598 molecular_function
## 6599 2 5134 0.03895598 molecular_function
## 6600 2 5134 0.03895598 molecular_function
## 6601 2 5134 0.03895598 cellular_component
## 6602 2 5134 0.03895598 biological_process
## 6603 2 5134 0.03895598 biological_process
## 6604 2 5134 0.03895598 biological_process
## 6605 2 5134 0.03895598 cellular_component
## 6606 2 5134 0.03895598 biological_process
## 6607 2 5134 0.03895598 cellular_component
## 6608 2 5134 0.03895598 cellular_component
## 6609 2 5134 0.03895598 biological_process
## 6610 2 5134 0.03895598 biological_process
## 6611 2 5134 0.03895598 biological_process
## 6612 2 5134 0.03895598 biological_process
## 6613 2 5134 0.03895598 molecular_function
## 6614 2 5134 0.03895598 molecular_function
## 6615 2 5134 0.03895598 molecular_function
## 6616 2 5134 0.03895598 molecular_function
## 6617 2 5134 0.03895598 molecular_function
## 6618 2 5134 0.03895598 molecular_function
## 6619 2 5134 0.03895598 molecular_function
## 6620 2 5134 0.03895598 biological_process
## 6621 2 5134 0.03895598 biological_process
## 6622 2 5134 0.03895598 biological_process
## 6623 2 5134 0.03895598 biological_process
## 6624 2 5134 0.03895598 biological_process
## 6625 2 5134 0.03895598 biological_process
## 6626 2 5134 0.03895598 biological_process
## 6627 2 5134 0.03895598 biological_process
## 6628 2 5134 0.03895598 biological_process
## 6629 2 5134 0.03895598 molecular_function
## 6630 2 5134 0.03895598 biological_process
## 6631 2 5134 0.03895598 cellular_component
## 6632 2 5134 0.03895598 cellular_component
## 6633 2 5134 0.03895598 cellular_component
## 6634 2 5134 0.03895598 biological_process
## 6635 2 5134 0.03895598 molecular_function
## 6636 2 5134 0.03895598 biological_process
## 6637 2 5134 0.03895598 molecular_function
## 6638 2 5134 0.03895598 biological_process
## 6639 2 5134 0.03895598 biological_process
## 6640 2 5134 0.03895598 biological_process
## 6641 2 5134 0.03895598 molecular_function
## 6642 2 5134 0.03895598 biological_process
## 6643 2 5134 0.03895598 molecular_function
## 6644 2 5134 0.03895598 biological_process
## 6645 2 5134 0.03895598 molecular_function
## 6646 2 5134 0.03895598 molecular_function
## 6647 2 5134 0.03895598 molecular_function
## 6648 2 5134 0.03895598 biological_process
## 6649 2 5134 0.03895598 molecular_function
## 6650 2 5134 0.03895598 cellular_component
## 6651 2 5134 0.03895598 molecular_function
## 6652 2 5134 0.03895598 biological_process
## 6653 2 5134 0.03895598 molecular_function
## 6654 2 5134 0.03895598 molecular_function
## 6655 2 5134 0.03895598 molecular_function
## 6656 2 5134 0.03895598 molecular_function
## 6657 2 5134 0.03895598 molecular_function
## 6658 2 5134 0.03895598 molecular_function
## 6659 2 5134 0.03895598 biological_process
## 6660 2 5134 0.03895598 molecular_function
## 6661 2 5134 0.03895598 biological_process
## 6662 2 5134 0.03895598 biological_process
## 6663 2 5134 0.03895598 molecular_function
## 6664 2 5134 0.03895598 molecular_function
## 6665 2 5134 0.03895598 cellular_component
## 6666 2 5134 0.03895598 cellular_component
## 6667 2 5134 0.03895598 molecular_function
## 6668 2 5134 0.03895598 cellular_component
## 6669 2 5134 0.03895598 biological_process
## 6670 2 5134 0.03895598 biological_process
## 6671 2 5134 0.03895598 biological_process
## 6672 2 5134 0.03895598 biological_process
## 6673 2 5134 0.03895598 cellular_component
## 6674 2 5134 0.03895598 biological_process
## 6675 2 5134 0.03895598 biological_process
## 6676 2 5134 0.03895598 molecular_function
## 6677 2 5134 0.03895598 biological_process
## 6678 2 5134 0.03895598 biological_process
## 6679 2 5134 0.03895598 molecular_function
## 6680 2 5134 0.03895598 biological_process
## 6681 2 5134 0.03895598 biological_process
## 6682 2 5134 0.03895598 biological_process
## 6683 2 5134 0.03895598 biological_process
## 6684 2 5134 0.03895598 biological_process
## 6685 2 5134 0.03895598 biological_process
## 6686 2 5134 0.03895598 biological_process
## 6687 2 5134 0.03895598 biological_process
## 6688 2 5134 0.03895598 biological_process
## 6689 2 5134 0.03895598 biological_process
## 6690 2 5134 0.03895598 biological_process
## 6691 2 5134 0.03895598 biological_process
## 6692 2 5134 0.03895598 biological_process
## 6693 2 5134 0.03895598 biological_process
## 6694 2 5134 0.03895598 biological_process
## 6695 2 5134 0.03895598 biological_process
## 6696 2 5134 0.03895598 biological_process
## 6697 2 5134 0.03895598 biological_process
## 6698 2 5134 0.03895598 biological_process
## 6699 2 5134 0.03895598 biological_process
## 6700 2 5134 0.03895598 biological_process
## 6701 2 5134 0.03895598 biological_process
## 6702 2 5134 0.03895598 biological_process
## 6703 2 5134 0.03895598 biological_process
## 6704 2 5134 0.03895598 biological_process
## 6705 2 5134 0.03895598 biological_process
## 6706 2 5134 0.03895598 biological_process
## 6707 2 5134 0.03895598 biological_process
## 6708 2 5134 0.03895598 biological_process
## 6709 2 5134 0.03895598 biological_process
## 6710 2 5134 0.03895598 biological_process
## 6711 2 5134 0.03895598 biological_process
## 6712 2 5134 0.03895598 biological_process
## 6713 2 5134 0.03895598 biological_process
## 6714 2 5134 0.03895598 biological_process
## 6715 2 5134 0.03895598 biological_process
## 6716 2 5134 0.03895598 biological_process
## 6717 2 5134 0.03895598 biological_process
## 6718 2 5134 0.03895598 biological_process
## 6719 2 5134 0.03895598 biological_process
## 6720 2 5134 0.03895598 biological_process
## 6721 2 5134 0.03895598 biological_process
## 6722 2 5134 0.03895598 biological_process
## 6723 2 5134 0.03895598 biological_process
## 6724 2 5134 0.03895598 biological_process
## 6725 2 5134 0.03895598 biological_process
## 6726 2 5134 0.03895598 biological_process
## 6727 2 5134 0.03895598 biological_process
## 6728 2 5134 0.03895598 biological_process
## 6729 2 5134 0.03895598 biological_process
## 6730 2 5134 0.03895598 biological_process
## 6731 2 5134 0.03895598 biological_process
## 6732 2 5134 0.03895598 biological_process
## 6733 2 5134 0.03895598 biological_process
## 6734 2 5134 0.03895598 biological_process
## 6735 2 5134 0.03895598 biological_process
## 6736 2 5134 0.03895598 biological_process
## 6737 2 5134 0.03895598 biological_process
## 6738 2 5134 0.03895598 biological_process
## 6739 2 5134 0.03895598 biological_process
## 6740 2 5134 0.03895598 biological_process
## 6741 2 5134 0.03895598 biological_process
## 6742 2 5134 0.03895598 biological_process
## 6743 2 5134 0.03895598 biological_process
## 6744 2 5134 0.03895598 biological_process
## 6745 2 5134 0.03895598 biological_process
## 6746 2 5134 0.03895598 biological_process
## 6747 2 5134 0.03895598 biological_process
## 6748 2 5134 0.03895598 biological_process
## 6749 2 5134 0.03895598 biological_process
## 6750 2 5134 0.03895598 biological_process
## 6751 2 5134 0.03895598 biological_process
## 6752 2 5134 0.03895598 biological_process
## 6753 2 5134 0.03895598 biological_process
## 6754 2 5134 0.03895598 biological_process
## 6755 2 5134 0.03895598 biological_process
## 6756 2 5134 0.03895598 biological_process
## 6757 2 5134 0.03895598 biological_process
## 6758 2 5134 0.03895598 biological_process
## 6759 2 5134 0.03895598 biological_process
## 6760 2 5134 0.03895598 biological_process
## 6761 2 5134 0.03895598 biological_process
## 6762 2 5134 0.03895598 biological_process
## 6763 2 5134 0.03895598 biological_process
## 6764 2 5134 0.03895598 biological_process
## 6765 2 5134 0.03895598 biological_process
## 6766 2 5134 0.03895598 biological_process
## 6767 2 5134 0.03895598 biological_process
## 6768 2 5134 0.03895598 biological_process
## 6769 2 5134 0.03895598 biological_process
## 6770 2 5134 0.03895598 biological_process
## 6771 2 5134 0.03895598 biological_process
## 6772 2 5134 0.03895598 biological_process
## 6773 2 5134 0.03895598 biological_process
## 6774 2 5134 0.03895598 biological_process
## 6775 2 5134 0.03895598 biological_process
## 6776 2 5134 0.03895598 biological_process
## 6777 2 5134 0.03895598 biological_process
## 6778 2 5134 0.03895598 biological_process
## 6779 2 5134 0.03895598 biological_process
## 6780 2 5134 0.03895598 biological_process
## 6781 2 5134 0.03895598 biological_process
## 6782 2 5134 0.03895598 biological_process
## 6783 2 5134 0.03895598 biological_process
## 6784 2 5134 0.03895598 biological_process
## 6785 2 5134 0.03895598 biological_process
## 6786 2 5134 0.03895598 biological_process
## 6787 2 5134 0.03895598 biological_process
## 6788 2 5134 0.03895598 biological_process
## 6789 2 5134 0.03895598 biological_process
## 6790 2 5134 0.03895598 biological_process
## 6791 2 5134 0.03895598 biological_process
## 6792 2 5134 0.03895598 biological_process
## 6793 2 5134 0.03895598 biological_process
## 6794 2 5134 0.03895598 biological_process
## 6795 2 5134 0.03895598 biological_process
## 6796 2 5134 0.03895598 biological_process
## 6797 2 5134 0.03895598 biological_process
## 6798 2 5134 0.03895598 biological_process
## 6799 2 5134 0.03895598 biological_process
## 6800 2 5134 0.03895598 biological_process
## 6801 2 5134 0.03895598 biological_process
## 6802 2 5134 0.03895598 biological_process
## 6803 2 5134 0.03895598 biological_process
## 6804 2 5134 0.03895598 biological_process
## 6805 2 5134 0.03895598 biological_process
## 6806 2 5134 0.03895598 biological_process
## 6807 2 5134 0.03895598 biological_process
## 6808 2 5134 0.03895598 biological_process
## 6809 2 5134 0.03895598 biological_process
## 6810 2 5134 0.03895598 biological_process
## 6811 2 5134 0.03895598 biological_process
## 6812 2 5134 0.03895598 biological_process
## 6813 2 5134 0.03895598 biological_process
## 6814 2 5134 0.03895598 biological_process
## 6815 2 5134 0.03895598 biological_process
## 6816 2 5134 0.03895598 biological_process
## 6817 2 5134 0.03895598 biological_process
## 6818 2 5134 0.03895598 biological_process
## 6819 2 5134 0.03895598 biological_process
## 6820 2 5134 0.03895598 biological_process
## 6821 2 5134 0.03895598 biological_process
## 6822 2 5134 0.03895598 biological_process
## 6823 2 5134 0.03895598 biological_process
## 6824 2 5134 0.03895598 biological_process
## 6825 2 5134 0.03895598 biological_process
## 6826 2 5134 0.03895598 biological_process
## 6827 2 5134 0.03895598 biological_process
## 6828 2 5134 0.03895598 biological_process
## 6829 2 5134 0.03895598 biological_process
## 6830 2 5134 0.03895598 biological_process
## 6831 2 5134 0.03895598 biological_process
## 6832 2 5134 0.03895598 biological_process
## 6833 2 5134 0.03895598 biological_process
## 6834 2 5134 0.03895598 biological_process
## 6835 2 5134 0.03895598 biological_process
## 6836 2 5134 0.03895598 biological_process
## 6837 2 5134 0.03895598 biological_process
## 6838 2 5134 0.03895598 biological_process
## 6839 2 5134 0.03895598 biological_process
## 6840 2 5134 0.03895598 biological_process
## 6841 2 5134 0.03895598 biological_process
## 6842 2 5134 0.03895598 biological_process
## 6843 2 5134 0.03895598 biological_process
## 6844 2 5134 0.03895598 biological_process
## 6845 2 5134 0.03895598 biological_process
## 6846 2 5134 0.03895598 biological_process
## 6847 2 5134 0.03895598 biological_process
## 6848 2 5134 0.03895598 biological_process
## 6849 2 5134 0.03895598 biological_process
## 6850 2 5134 0.03895598 biological_process
## 6851 2 5134 0.03895598 biological_process
## 6852 2 5134 0.03895598 biological_process
## 6853 2 5134 0.03895598 biological_process
## 6854 2 5134 0.03895598 biological_process
## 6855 2 5134 0.03895598 biological_process
## 6856 2 5134 0.03895598 biological_process
## 6857 2 5134 0.03895598 biological_process
## 6858 2 5134 0.03895598 biological_process
## 6859 2 5134 0.03895598 biological_process
## 6860 2 5134 0.03895598 biological_process
## 6861 2 5134 0.03895598 biological_process
## 6862 2 5134 0.03895598 biological_process
## 6863 2 5134 0.03895598 biological_process
## 6864 2 5134 0.03895598 biological_process
## 6865 2 5134 0.03895598 biological_process
## 6866 2 5134 0.03895598 biological_process
## 6867 2 5134 0.03895598 biological_process
## 6868 2 5134 0.03895598 biological_process
## 6869 2 5134 0.03895598 biological_process
## 6870 2 5134 0.03895598 biological_process
## 6871 2 5134 0.03895598 biological_process
## 6872 2 5134 0.03895598 biological_process
## 6873 2 5134 0.03895598 biological_process
## 6874 2 5134 0.03895598 biological_process
## 6875 2 5134 0.03895598 biological_process
## 6876 2 5134 0.03895598 biological_process
## 6877 2 5134 0.03895598 biological_process
## 6878 2 5134 0.03895598 biological_process
## 6879 2 5134 0.03895598 biological_process
## 6880 2 5134 0.03895598 biological_process
## 6881 2 5134 0.03895598 biological_process
## 6882 2 5134 0.03895598 biological_process
## 6883 2 5134 0.03895598 cellular_component
## 6884 2 5134 0.03895598 cellular_component
## 6885 2 5134 0.03895598 cellular_component
## 6886 2 5134 0.03895598 molecular_function
## 6887 2 5134 0.03895598 molecular_function
## 6888 2 5134 0.03895598 molecular_function
## 6889 2 5134 0.03895598 molecular_function
## 6890 2 5134 0.03895598 cellular_component
## 6891 2 5134 0.03895598 biological_process
## 6892 2 5134 0.03895598 molecular_function
## 6893 2 5134 0.03895598 biological_process
## 6894 2 5134 0.03895598 cellular_component
## 6895 2 5134 0.03895598 biological_process
## 6896 2 5134 0.03895598 biological_process
## 6897 2 5134 0.03895598 biological_process
## 6898 2 5134 0.03895598 biological_process
## 6899 2 5134 0.03895598 biological_process
## 6900 2 5134 0.03895598 biological_process
## 6901 2 5134 0.03895598 molecular_function
## 6902 2 5134 0.03895598 biological_process
## 6903 2 5134 0.03895598 molecular_function
## 6904 2 5134 0.03895598 biological_process
## 6905 2 5134 0.03895598 biological_process
## 6906 2 5134 0.03895598 biological_process
## 6907 2 5134 0.03895598 biological_process
## 6908 2 5134 0.03895598 biological_process
## 6909 2 5134 0.03895598 molecular_function
## 6910 2 5134 0.03895598 biological_process
## 6911 2 5134 0.03895598 biological_process
## 6912 2 5134 0.03895598 biological_process
## 6913 2 5134 0.03895598 molecular_function
## 6914 2 5134 0.03895598 biological_process
## 6915 2 5134 0.03895598 biological_process
## 6916 2 5134 0.03895598 biological_process
## 6917 2 5134 0.03895598 biological_process
## 6918 2 5134 0.03895598 biological_process
## 6919 2 5134 0.03895598 biological_process
## 6920 2 5134 0.03895598 biological_process
## 6921 2 5134 0.03895598 biological_process
## 6922 2 5134 0.03895598 biological_process
## 6923 2 5134 0.03895598 biological_process
## 6924 2 5134 0.03895598 biological_process
## 6925 2 5134 0.03895598 biological_process
## 6926 2 5134 0.03895598 biological_process
## 6927 2 5134 0.03895598 biological_process
## 6928 2 5134 0.03895598 biological_process
## 6929 2 5134 0.03895598 biological_process
## 6930 2 5134 0.03895598 biological_process
## 6931 2 5134 0.03895598 biological_process
## 6932 2 5134 0.03895598 biological_process
## 6933 2 5134 0.03895598 biological_process
## 6934 2 5134 0.03895598 biological_process
## 6935 2 5134 0.03895598 biological_process
## 6936 2 5134 0.03895598 biological_process
## 6937 2 5134 0.03895598 molecular_function
## 6938 2 5134 0.03895598 biological_process
## 6939 2 5134 0.03895598 biological_process
## 6940 2 5134 0.03895598 biological_process
## 6941 2 5134 0.03895598 molecular_function
## 6942 2 5134 0.03895598 cellular_component
## 6943 2 5134 0.03895598 molecular_function
## 6944 2 5134 0.03895598 biological_process
## 6945 2 5134 0.03895598 molecular_function
## 6946 2 5134 0.03895598 biological_process
## 6947 2 5134 0.03895598 cellular_component
## 6948 2 5134 0.03895598 molecular_function
## 6949 2 5134 0.03895598 biological_process
## 6950 2 5134 0.03895598 molecular_function
## 6951 2 5134 0.03895598 molecular_function
## 6952 2 5134 0.03895598 biological_process
## 6953 2 5134 0.03895598 biological_process
## 6954 2 5134 0.03895598 molecular_function
## 6955 2 5134 0.03895598 molecular_function
## 6956 2 5134 0.03895598 molecular_function
## 6957 2 5134 0.03895598 molecular_function
## 6958 2 5134 0.03895598 cellular_component
## 6959 2 5134 0.03895598 biological_process
## 6960 2 5134 0.03895598 molecular_function
## 6961 2 5134 0.03895598 biological_process
## 6962 2 5134 0.03895598 biological_process
## 6963 2 5134 0.03895598 biological_process
## 6964 2 5134 0.03895598 biological_process
## 6965 2 5134 0.03895598 molecular_function
## 6966 2 5134 0.03895598 molecular_function
## 6967 2 5134 0.03895598 biological_process
## 6968 2 5134 0.03895598 biological_process
## 6969 2 5134 0.03895598 cellular_component
## 6970 2 5134 0.03895598 biological_process
## 6971 2 5134 0.03895598 biological_process
## 6972 2 5134 0.03895598 biological_process
## 6973 2 5134 0.03895598 molecular_function
## 6974 2 5134 0.03895598 biological_process
## 6975 2 5134 0.03895598 biological_process
## 6976 2 5134 0.03895598 molecular_function
## 6977 2 5134 0.03895598 biological_process
## 6978 2 5134 0.03895598 molecular_function
## 6979 2 5134 0.03895598 cellular_component
## 6980 2 5134 0.03895598 biological_process
## 6981 2 5134 0.03895598 cellular_component
## 6982 2 5134 0.03895598 cellular_component
## 6983 2 5134 0.03895598 molecular_function
## 6984 2 5134 0.03895598 cellular_component
## 6985 2 5134 0.03895598 biological_process
## 6986 2 5134 0.03895598 biological_process
## 6987 2 5134 0.03895598 biological_process
## 6988 2 5134 0.03895598 biological_process
## 6989 2 5134 0.03895598 biological_process
## 6990 2 5134 0.03895598 biological_process
## 6991 2 5134 0.03895598 biological_process
## 6992 2 5134 0.03895598 biological_process
## 6993 2 5134 0.03895598 biological_process
## 6994 2 5134 0.03895598 biological_process
## 6995 2 5134 0.03895598 biological_process
## 6996 2 5134 0.03895598 biological_process
## 6997 2 5134 0.03895598 biological_process
## 6998 2 5134 0.03895598 biological_process
## 6999 2 5134 0.03895598 biological_process
## 7000 2 5134 0.03895598 biological_process
## 7001 2 5134 0.03895598 biological_process
## 7002 2 5134 0.03895598 biological_process
## 7003 2 5134 0.03895598 biological_process
## 7004 2 5134 0.03895598 biological_process
## 7005 2 5134 0.03895598 biological_process
## 7006 2 5134 0.03895598 biological_process
## 7007 2 5134 0.03895598 biological_process
## 7008 2 5134 0.03895598 biological_process
## 7009 2 5134 0.03895598 biological_process
## 7010 2 5134 0.03895598 biological_process
## 7011 2 5134 0.03895598 biological_process
## 7012 2 5134 0.03895598 biological_process
## 7013 2 5134 0.03895598 biological_process
## 7014 2 5134 0.03895598 biological_process
## 7015 2 5134 0.03895598 biological_process
## 7016 2 5134 0.03895598 biological_process
## 7017 2 5134 0.03895598 biological_process
## 7018 2 5134 0.03895598 biological_process
## 7019 2 5134 0.03895598 biological_process
## 7020 2 5134 0.03895598 biological_process
## 7021 2 5134 0.03895598 biological_process
## 7022 2 5134 0.03895598 biological_process
## 7023 2 5134 0.03895598 biological_process
## 7024 2 5134 0.03895598 biological_process
## 7025 2 5134 0.03895598 biological_process
## 7026 2 5134 0.03895598 biological_process
## 7027 2 5134 0.03895598 biological_process
## 7028 2 5134 0.03895598 biological_process
## 7029 2 5134 0.03895598 biological_process
## 7030 2 5134 0.03895598 biological_process
## 7031 2 5134 0.03895598 biological_process
## 7032 2 5134 0.03895598 biological_process
## 7033 2 5134 0.03895598 biological_process
## 7034 2 5134 0.03895598 biological_process
## 7035 2 5134 0.03895598 biological_process
## 7036 2 5134 0.03895598 biological_process
## 7037 2 5134 0.03895598 biological_process
## 7038 2 5134 0.03895598 biological_process
## 7039 2 5134 0.03895598 biological_process
## 7040 2 5134 0.03895598 biological_process
## 7041 2 5134 0.03895598 biological_process
## 7042 2 5134 0.03895598 biological_process
## 7043 2 5134 0.03895598 biological_process
## 7044 2 5134 0.03895598 biological_process
## 7045 2 5134 0.03895598 biological_process
## 7046 2 5134 0.03895598 biological_process
## 7047 2 5134 0.03895598 biological_process
## 7048 2 5134 0.03895598 biological_process
## 7049 2 5134 0.03895598 biological_process
## 7050 2 5134 0.03895598 biological_process
## 7051 2 5134 0.03895598 biological_process
## 7052 2 5134 0.03895598 biological_process
## 7053 2 5134 0.03895598 biological_process
## 7054 2 5134 0.03895598 biological_process
## 7055 2 5134 0.03895598 biological_process
## 7056 2 5134 0.03895598 biological_process
## 7057 2 5134 0.03895598 biological_process
## 7058 2 5134 0.03895598 biological_process
## 7059 2 5134 0.03895598 biological_process
## 7060 2 5134 0.03895598 biological_process
## 7061 2 5134 0.03895598 biological_process
## 7062 2 5134 0.03895598 biological_process
## 7063 2 5134 0.03895598 biological_process
## 7064 2 5134 0.03895598 biological_process
## 7065 2 5134 0.03895598 biological_process
## 7066 2 5134 0.03895598 biological_process
## 7067 2 5134 0.03895598 biological_process
## 7068 2 5134 0.03895598 biological_process
## 7069 2 5134 0.03895598 biological_process
## 7070 2 5134 0.03895598 biological_process
## 7071 2 5134 0.03895598 biological_process
## 7072 2 5134 0.03895598 biological_process
## 7073 2 5134 0.03895598 biological_process
## 7074 2 5134 0.03895598 biological_process
## 7075 2 5134 0.03895598 biological_process
## 7076 2 5134 0.03895598 biological_process
## 7077 2 5134 0.03895598 biological_process
## 7078 2 5134 0.03895598 biological_process
## 7079 2 5134 0.03895598 biological_process
## 7080 2 5134 0.03895598 biological_process
## 7081 2 5134 0.03895598 biological_process
## 7082 2 5134 0.03895598 biological_process
## 7083 2 5134 0.03895598 biological_process
## 7084 2 5134 0.03895598 biological_process
## 7085 2 5134 0.03895598 biological_process
## 7086 2 5134 0.03895598 biological_process
## 7087 2 5134 0.03895598 biological_process
## 7088 2 5134 0.03895598 biological_process
## 7089 2 5134 0.03895598 biological_process
## 7090 2 5134 0.03895598 biological_process
## 7091 2 5134 0.03895598 biological_process
## 7092 2 5134 0.03895598 biological_process
## 7093 2 5134 0.03895598 biological_process
## 7094 2 5134 0.03895598 biological_process
## 7095 2 5134 0.03895598 biological_process
## 7096 2 5134 0.03895598 biological_process
## 7097 2 5134 0.03895598 biological_process
## 7098 2 5134 0.03895598 biological_process
## 7099 2 5134 0.03895598 biological_process
## 7100 2 5134 0.03895598 biological_process
## 7101 2 5134 0.03895598 biological_process
## 7102 2 5134 0.03895598 biological_process
## 7103 2 5134 0.03895598 biological_process
## 7104 2 5134 0.03895598 biological_process
## 7105 2 5134 0.03895598 biological_process
## 7106 2 5134 0.03895598 biological_process
## 7107 2 5134 0.03895598 biological_process
## 7108 2 5134 0.03895598 biological_process
## 7109 2 5134 0.03895598 biological_process
## 7110 2 5134 0.03895598 biological_process
## 7111 2 5134 0.03895598 biological_process
## 7112 2 5134 0.03895598 biological_process
## 7113 2 5134 0.03895598 biological_process
## 7114 2 5134 0.03895598 biological_process
## 7115 2 5134 0.03895598 biological_process
## 7116 2 5134 0.03895598 biological_process
## 7117 2 5134 0.03895598 biological_process
## 7118 2 5134 0.03895598 biological_process
## 7119 2 5134 0.03895598 biological_process
## 7120 2 5134 0.03895598 biological_process
## 7121 2 5134 0.03895598 biological_process
## 7122 2 5134 0.03895598 biological_process
## 7123 2 5134 0.03895598 biological_process
## 7124 2 5134 0.03895598 biological_process
## 7125 2 5134 0.03895598 biological_process
## 7126 2 5134 0.03895598 biological_process
## 7127 2 5134 0.03895598 biological_process
## 7128 2 5134 0.03895598 biological_process
## 7129 2 5134 0.03895598 biological_process
## 7130 2 5134 0.03895598 biological_process
## 7131 2 5134 0.03895598 biological_process
## 7132 2 5134 0.03895598 biological_process
## 7133 2 5134 0.03895598 biological_process
## 7134 2 5134 0.03895598 biological_process
## 7135 2 5134 0.03895598 biological_process
## 7136 2 5134 0.03895598 biological_process
## 7137 2 5134 0.03895598 biological_process
## 7138 2 5134 0.03895598 biological_process
## 7139 2 5134 0.03895598 biological_process
## 7140 2 5134 0.03895598 molecular_function
## 7141 2 5134 0.03895598 molecular_function
## 7142 2 5134 0.03895598 biological_process
## 7143 2 5134 0.03895598 cellular_component
## 7144 2 5134 0.03895598 cellular_component
## 7145 2 5134 0.03895598 biological_process
## 7146 2 5134 0.03895598 biological_process
## 7147 2 5134 0.03895598 biological_process
## 7148 2 5134 0.03895598 biological_process
## 7149 2 5134 0.03895598 biological_process
## 7150 2 5134 0.03895598 biological_process
## 7151 2 5134 0.03895598 biological_process
## 7152 2 5134 0.03895598 biological_process
## 7153 2 5134 0.03895598 biological_process
## 7154 2 5134 0.03895598 biological_process
## 7155 2 5134 0.03895598 biological_process
## 7156 2 5134 0.03895598 biological_process
## 7157 2 5134 0.03895598 biological_process
## 7158 2 5134 0.03895598 biological_process
## 7159 2 5134 0.03895598 biological_process
## 7160 2 5134 0.03895598 biological_process
## 7161 2 5134 0.03895598 biological_process
## 7162 2 5134 0.03895598 biological_process
## 7163 2 5134 0.03895598 biological_process
## 7164 2 5134 0.03895598 biological_process
## 7165 2 5134 0.03895598 biological_process
## 7166 2 5134 0.03895598 biological_process
## 7167 2 5134 0.03895598 biological_process
## 7168 2 5134 0.03895598 biological_process
## 7169 2 5134 0.03895598 biological_process
## 7170 2 5134 0.03895598 biological_process
## 7171 2 5134 0.03895598 biological_process
## 7172 2 5134 0.03895598 biological_process
## 7173 2 5134 0.03895598 biological_process
## 7174 2 5134 0.03895598 biological_process
## 7175 2 5134 0.03895598 biological_process
## 7176 2 5134 0.03895598 biological_process
## 7177 2 5134 0.03895598 biological_process
## 7178 2 5134 0.03895598 biological_process
## 7179 2 5134 0.03895598 biological_process
## 7180 2 5134 0.03895598 biological_process
## 7181 2 5134 0.03895598 biological_process
## 7182 2 5134 0.03895598 biological_process
## 7183 2 5134 0.03895598 biological_process
## 7184 2 5134 0.03895598 biological_process
## 7185 2 5134 0.03895598 biological_process
## 7186 2 5134 0.03895598 biological_process
## 7187 2 5134 0.03895598 biological_process
## 7188 2 5134 0.03895598 biological_process
## 7189 2 5134 0.03895598 biological_process
## 7190 2 5134 0.03895598 biological_process
## 7191 2 5134 0.03895598 biological_process
## 7192 2 5134 0.03895598 biological_process
## 7193 2 5134 0.03895598 biological_process
## 7194 2 5134 0.03895598 biological_process
## 7195 2 5134 0.03895598 molecular_function
## 7196 2 5134 0.03895598 molecular_function
## 7197 2 5134 0.03895598 molecular_function
## 7198 2 5134 0.03895598 biological_process
## 7199 2 5134 0.03895598 biological_process
## 7200 2 5134 0.03895598 molecular_function
## 7201 2 5134 0.03895598 biological_process
## 7202 2 5134 0.03895598 molecular_function
## 7203 2 5134 0.03895598 molecular_function
## 7204 2 5134 0.03895598 biological_process
## 7205 2 5134 0.03895598 molecular_function
## 7206 2 5134 0.03895598 cellular_component
## 7207 2 5134 0.03895598 biological_process
## 7208 2 5134 0.03895598 molecular_function
## 7209 2 5134 0.03895598 cellular_component
## 7210 2 5134 0.03895598 biological_process
## 7211 2 5134 0.03895598 biological_process
## 7212 2 5134 0.03895598 biological_process
## 7213 2 5134 0.03895598 biological_process
## 7214 2 5134 0.03895598 biological_process
## 7215 2 5134 0.03895598 molecular_function
## 7216 2 5134 0.03895598 biological_process
## 7217 2 5134 0.03895598 cellular_component
## 7218 2 5134 0.03895598 biological_process
## 7219 2 5134 0.03895598 biological_process
## 7220 2 5134 0.03895598 molecular_function
## 7221 2 5134 0.03895598 molecular_function
## 7222 2 5134 0.03895598 molecular_function
## 7223 2 5134 0.03895598 molecular_function
## 7224 2 5134 0.03895598 molecular_function
## 7225 2 5134 0.03895598 molecular_function
## 7226 2 5134 0.03895598 molecular_function
## 7227 2 5134 0.03895598 cellular_component
## 7228 2 5134 0.03895598 molecular_function
## 7229 2 5134 0.03895598 molecular_function
## 7230 2 5134 0.03895598 molecular_function
## 7231 2 5134 0.03895598 biological_process
## 7232 2 5134 0.03895598 molecular_function
## 7233 2 5134 0.03895598 biological_process
## 7234 2 5134 0.03895598 molecular_function
## 7235 2 5134 0.03895598 cellular_component
## 7236 2 5134 0.03895598 cellular_component
## 7237 2 5134 0.03895598 cellular_component
## 7238 2 5134 0.03895598 biological_process
## 7239 2 5134 0.03895598 biological_process
## 7240 2 5134 0.03895598 cellular_component
## 7241 2 5134 0.03895598 cellular_component
## 7242 2 5134 0.03895598 biological_process
## 7243 2 5134 0.03895598 biological_process
## 7244 2 5134 0.03895598 biological_process
## 7245 2 5134 0.03895598 biological_process
## 7246 2 5134 0.03895598 biological_process
## 7247 2 5134 0.03895598 biological_process
## 7248 2 5134 0.03895598 biological_process
## 7249 2 5134 0.03895598 biological_process
## 7250 2 5134 0.03895598 biological_process
## 7251 2 5134 0.03895598 molecular_function
## 7252 2 5134 0.03895598 cellular_component
## 7253 2 5134 0.03895598 biological_process
## 7254 2 5134 0.03895598 molecular_function
## 7255 2 5134 0.03895598 molecular_function
## 7256 2 5134 0.03895598 biological_process
## 7257 2 5134 0.03895598 biological_process
## 7258 2 5134 0.03895598 cellular_component
## 7259 2 5134 0.03895598 biological_process
## 7260 2 5134 0.03895598 biological_process
## 7261 2 5134 0.03895598 cellular_component
## 7262 2 5134 0.03895598 cellular_component
## 7263 2 5134 0.03895598 cellular_component
## 7264 2 5134 0.03895598 cellular_component
## 7265 2 5134 0.03895598 cellular_component
## 7266 2 5134 0.03895598 biological_process
## 7267 2 5134 0.03895598 biological_process
## 7268 2 5134 0.03895598 molecular_function
## 7269 2 5134 0.03895598 molecular_function
## 7270 2 5134 0.03895598 molecular_function
## 7271 2 5134 0.03895598 molecular_function
## 7272 2 5134 0.03895598 molecular_function
## 7273 2 5134 0.03895598 biological_process
## 7274 2 5134 0.03895598 biological_process
## 7275 2 5134 0.03895598 molecular_function
## 7276 2 5134 0.03895598 biological_process
## 7277 2 5134 0.03895598 biological_process
## 7278 2 5134 0.03895598 biological_process
## 7279 2 5134 0.03895598 biological_process
## 7280 2 5134 0.03895598 biological_process
## 7281 2 5134 0.03895598 molecular_function
## 7282 2 5134 0.03895598 biological_process
## 7283 2 5134 0.03895598 cellular_component
## 7284 2 5134 0.03895598 biological_process
## 7285 2 5134 0.03895598 biological_process
## 7286 2 5134 0.03895598 biological_process
## 7287 2 5134 0.03895598 biological_process
## 7288 2 5134 0.03895598 molecular_function
## 7289 2 5134 0.03895598 molecular_function
## 7290 2 5134 0.03895598 biological_process
## 7291 2 5134 0.03895598 molecular_function
## 7292 2 5134 0.03895598 molecular_function
## 7293 2 5134 0.03895598 molecular_function
## 7294 2 5134 0.03895598 biological_process
## 7295 2 5134 0.03895598 cellular_component
## 7296 2 5134 0.03895598 biological_process
## 7297 2 5134 0.03895598 biological_process
## 7298 2 5134 0.03895598 biological_process
## 7299 2 5134 0.03895598 biological_process
## 7300 2 5134 0.03895598 cellular_component
## 7301 2 5134 0.03895598 molecular_function
## 7302 2 5134 0.03895598 biological_process
## 7303 2 5134 0.03895598 biological_process
## 7304 2 5134 0.03895598 biological_process
## 7305 2 5134 0.03895598 molecular_function
## 7306 2 5134 0.03895598 molecular_function
## 7307 2 5134 0.03895598 molecular_function
## 7308 2 5134 0.03895598 biological_process
## 7309 2 5134 0.03895598 molecular_function
## 7310 2 5134 0.03895598 biological_process
## 7311 2 5134 0.03895598 biological_process
## 7312 2 5134 0.03895598 biological_process
## 7313 2 5134 0.03895598 cellular_component
## 7314 2 5134 0.03895598 molecular_function
## 7315 2 5134 0.03895598 molecular_function
## 7316 2 5134 0.03895598 molecular_function
## 7317 2 5134 0.03895598 biological_process
## 7318 2 5134 0.03895598 molecular_function
## 7319 2 5134 0.03895598 molecular_function
## 7320 2 5134 0.03895598 biological_process
## 7321 2 5134 0.03895598 molecular_function
## 7322 2 5134 0.03895598 biological_process
## 7323 2 5134 0.03895598 molecular_function
## 7324 2 5134 0.03895598 biological_process
## 7325 2 5134 0.03895598 biological_process
## 7326 2 5134 0.03895598 molecular_function
## 7327 2 5134 0.03895598 molecular_function
## 7328 2 5134 0.03895598 molecular_function
## 7329 2 5134 0.03895598 molecular_function
## 7330 2 5134 0.03895598 biological_process
## 7331 2 5134 0.03895598 biological_process
## 7332 2 5134 0.03895598 biological_process
## 7333 2 5134 0.03895598 biological_process
## 7334 2 5134 0.03895598 biological_process
## 7335 2 5134 0.03895598 biological_process
## 7336 2 5134 0.03895598 biological_process
## 7337 2 5134 0.03895598 cellular_component
## 7338 2 5134 0.03895598 cellular_component
## 7339 2 5134 0.03895598 biological_process
## 7340 2 5134 0.03895598 biological_process
## 7341 2 5134 0.03895598 biological_process
## 7342 2 5134 0.03895598 biological_process
## 7343 2 5134 0.03895598 biological_process
## 7344 2 5134 0.03895598 biological_process
## 7345 2 5134 0.03895598 biological_process
## 7346 2 5134 0.03895598 biological_process
## 7347 2 5134 0.03895598 biological_process
## 7348 2 5134 0.03895598 biological_process
## 7349 2 5134 0.03895598 biological_process
## 7350 2 5134 0.03895598 cellular_component
## 7351 2 5134 0.03895598 molecular_function
## 7352 2 5134 0.03895598 biological_process
## 7353 2 5134 0.03895598 biological_process
## 7354 2 5134 0.03895598 molecular_function
## 7355 2 5134 0.03895598 biological_process
## 7356 2 5134 0.03895598 biological_process
## 7357 2 5134 0.03895598 molecular_function
## 7358 2 5134 0.03895598 molecular_function
## 7359 2 5134 0.03895598 cellular_component
## 7360 2 5134 0.03895598 molecular_function
## 7361 2 5134 0.03895598 biological_process
## 7362 2 5134 0.03895598 biological_process
## 7363 2 5134 0.03895598 molecular_function
## 7364 2 5134 0.03895598 molecular_function
## 7365 2 5134 0.03895598 molecular_function
## 7366 2 5134 0.03895598 molecular_function
## 7367 2 5134 0.03895598 molecular_function
## 7368 2 5134 0.03895598 biological_process
## 7369 2 5134 0.03895598 biological_process
## 7370 2 5134 0.03895598 biological_process
## 7371 2 5134 0.03895598 molecular_function
## 7372 2 5134 0.03895598 biological_process
## 7373 2 5134 0.03895598 biological_process
## 7374 2 5134 0.03895598 biological_process
## 7375 2 5134 0.03895598 cellular_component
## 7376 2 5134 0.03895598 molecular_function
## 7377 2 5134 0.03895598 biological_process
## 7378 2 5134 0.03895598 biological_process
## 7379 2 5134 0.03895598 biological_process
## 7380 2 5134 0.03895598 biological_process
## 7381 2 5134 0.03895598 biological_process
## 7382 2 5134 0.03895598 biological_process
## 7383 2 5134 0.03895598 molecular_function
## 7384 2 5134 0.03895598 biological_process
## 7385 2 5134 0.03895598 cellular_component
## 7386 2 5134 0.03895598 molecular_function
## 7387 2 5134 0.03895598 biological_process
## 7388 2 5134 0.03895598 cellular_component
## 7389 2 5134 0.03895598 molecular_function
## 7390 2 5134 0.03895598 biological_process
## 7391 2 5134 0.03895598 molecular_function
## 7392 2 5134 0.03895598 cellular_component
## 7393 2 5134 0.03895598 biological_process
## 7394 2 5134 0.03895598 cellular_component
## 7395 2 5134 0.03895598 biological_process
## 7396 2 5134 0.03895598 biological_process
## 7397 2 5134 0.03895598 biological_process
## 7398 2 5134 0.03895598 molecular_function
## 7399 2 5134 0.03895598 molecular_function
## 7400 2 5134 0.03895598 molecular_function
## 7401 2 5134 0.03895598 biological_process
## 7402 2 5134 0.03895598 molecular_function
## 7403 2 5134 0.03895598 biological_process
## 7404 2 5134 0.03895598 cellular_component
## 7405 2 5134 0.03895598 cellular_component
## 7406 2 5134 0.03895598 biological_process
## 7407 2 5134 0.03895598 biological_process
## 7408 2 5134 0.03895598 molecular_function
## 7409 2 5134 0.03895598 molecular_function
## 7410 2 5134 0.03895598 molecular_function
## 7411 2 5134 0.03895598 molecular_function
## 7412 2 5134 0.03895598 biological_process
## 7413 2 5134 0.03895598 biological_process
## 7414 2 5134 0.03895598 biological_process
## 7415 2 5134 0.03895598 biological_process
## 7416 2 5134 0.03895598 cellular_component
## 7417 2 5134 0.03895598 molecular_function
## 7418 2 5134 0.03895598 biological_process
## 7419 2 5134 0.03895598 cellular_component
## 7420 2 5134 0.03895598 cellular_component
## 7421 2 5134 0.03895598 biological_process
## 7422 2 5134 0.03895598 molecular_function
## 7423 2 5134 0.03895598 molecular_function
## 7424 2 5134 0.03895598 molecular_function
## 7425 2 5134 0.03895598 biological_process
## 7426 2 5134 0.03895598 molecular_function
## 7427 2 5134 0.03895598 molecular_function
## 7428 2 5134 0.03895598 biological_process
## 7429 2 5134 0.03895598 molecular_function
## 7430 2 5134 0.03895598 biological_process
## 7431 2 5134 0.03895598 cellular_component
## 7432 2 5134 0.03895598 molecular_function
## 7433 2 5134 0.03895598 cellular_component
## 7434 2 5134 0.03895598 molecular_function
## 7435 2 5134 0.03895598 molecular_function
## 7436 2 5134 0.03895598 biological_process
## 7437 2 5134 0.03895598 molecular_function
## 7438 2 5134 0.03895598 molecular_function
## 7439 2 5134 0.03895598 biological_process
## 7440 2 5134 0.03895598 molecular_function
## 7441 2 5134 0.03895598 molecular_function
## 7442 2 5134 0.03895598 molecular_function
## 7443 2 5134 0.03895598 molecular_function
## 7444 2 5134 0.03895598 biological_process
## 7445 2 5134 0.03895598 biological_process
## 7446 2 5134 0.03895598 molecular_function
## 7447 2 5134 0.03895598 molecular_function
## 7448 2 5134 0.03895598 molecular_function
## 7449 2 5134 0.03895598 molecular_function
## 7450 2 5134 0.03895598 biological_process
## 7451 2 5134 0.03895598 biological_process
## 7452 2 5134 0.03895598 molecular_function
## 7453 2 5134 0.03895598 biological_process
## 7454 2 5134 0.03895598 molecular_function
## 7455 2 5134 0.03895598 biological_process
## 7456 2 5134 0.03895598 biological_process
## 7457 2 5134 0.03895598 biological_process
## 7458 2 5134 0.03895598 biological_process
## 7459 2 5134 0.03895598 biological_process
## 7460 2 5134 0.03895598 biological_process
## 7461 2 5134 0.03895598 biological_process
## 7462 2 5134 0.03895598 molecular_function
## 7463 2 5134 0.03895598 molecular_function
## 7464 2 5134 0.03895598 molecular_function
## 7465 2 5134 0.03895598 biological_process
## 7466 2 5134 0.03895598 biological_process
## 7467 2 5134 0.03895598 biological_process
## 7468 2 5134 0.03895598 biological_process
## 7469 2 5134 0.03895598 biological_process
## 7470 2 5134 0.03895598 biological_process
## 7471 2 5134 0.03895598 biological_process
## 7472 2 5134 0.03895598 biological_process
## 7473 2 5134 0.03895598 molecular_function
## 7474 2 5134 0.03895598 biological_process
## 7475 2 5134 0.03895598 molecular_function
## 7476 2 5134 0.03895598 cellular_component
## 7477 2 5134 0.03895598 molecular_function
## 7478 2 5134 0.03895598 molecular_function
## 7479 2 5134 0.03895598 cellular_component
## 7480 2 5134 0.03895598 molecular_function
## 7481 2 5134 0.03895598 cellular_component
## 7482 2 5134 0.03895598 biological_process
## 7483 2 5134 0.03895598 biological_process
## 7484 2 5134 0.03895598 cellular_component
## 7485 2 5134 0.03895598 biological_process
## 7486 2 5134 0.03895598 biological_process
## 7487 2 5134 0.03895598 biological_process
## 7488 2 5134 0.03895598 biological_process
## 7489 2 5134 0.03895598 biological_process
## 7490 2 5134 0.03895598 cellular_component
## 7491 1 5134 0.01947799 biological_process
## 7492 1 5134 0.01947799 biological_process
## 7493 1 5134 0.01947799 biological_process
## 7494 1 5134 0.01947799 biological_process
## 7495 1 5134 0.01947799 biological_process
## 7496 1 5134 0.01947799 biological_process
## 7497 1 5134 0.01947799 molecular_function
## 7498 1 5134 0.01947799 molecular_function
## 7499 1 5134 0.01947799 molecular_function
## 7500 1 5134 0.01947799 molecular_function
## 7501 1 5134 0.01947799 molecular_function
## 7502 1 5134 0.01947799 molecular_function
## 7503 1 5134 0.01947799 molecular_function
## 7504 1 5134 0.01947799 molecular_function
## 7505 1 5134 0.01947799 molecular_function
## 7506 1 5134 0.01947799 molecular_function
## 7507 1 5134 0.01947799 molecular_function
## 7508 1 5134 0.01947799 molecular_function
## 7509 1 5134 0.01947799 molecular_function
## 7510 1 5134 0.01947799 molecular_function
## 7511 1 5134 0.01947799 molecular_function
## 7512 1 5134 0.01947799 molecular_function
## 7513 1 5134 0.01947799 molecular_function
## 7514 1 5134 0.01947799 molecular_function
## 7515 1 5134 0.01947799 biological_process
## 7516 1 5134 0.01947799 molecular_function
## 7517 1 5134 0.01947799 molecular_function
## 7518 1 5134 0.01947799 molecular_function
## 7519 1 5134 0.01947799 molecular_function
## 7520 1 5134 0.01947799 biological_process
## 7521 1 5134 0.01947799 molecular_function
## 7522 1 5134 0.01947799 molecular_function
## 7523 1 5134 0.01947799 molecular_function
## 7524 1 5134 0.01947799 molecular_function
## 7525 1 5134 0.01947799 molecular_function
## 7526 1 5134 0.01947799 molecular_function
## 7527 1 5134 0.01947799 molecular_function
## 7528 1 5134 0.01947799 biological_process
## 7529 1 5134 0.01947799 molecular_function
## 7530 1 5134 0.01947799 molecular_function
## 7531 1 5134 0.01947799 molecular_function
## 7532 1 5134 0.01947799 molecular_function
## 7533 1 5134 0.01947799 molecular_function
## 7534 1 5134 0.01947799 molecular_function
## 7535 1 5134 0.01947799 molecular_function
## 7536 1 5134 0.01947799 molecular_function
## 7537 1 5134 0.01947799 molecular_function
## 7538 1 5134 0.01947799 molecular_function
## 7539 1 5134 0.01947799 cellular_component
## 7540 1 5134 0.01947799 molecular_function
## 7541 1 5134 0.01947799 molecular_function
## 7542 1 5134 0.01947799 molecular_function
## 7543 1 5134 0.01947799 molecular_function
## 7544 1 5134 0.01947799 molecular_function
## 7545 1 5134 0.01947799 molecular_function
## 7546 1 5134 0.01947799 molecular_function
## 7547 1 5134 0.01947799 molecular_function
## 7548 1 5134 0.01947799 molecular_function
## 7549 1 5134 0.01947799 molecular_function
## 7550 1 5134 0.01947799 molecular_function
## 7551 1 5134 0.01947799 molecular_function
## 7552 1 5134 0.01947799 biological_process
## 7553 1 5134 0.01947799 molecular_function
## 7554 1 5134 0.01947799 molecular_function
## 7555 1 5134 0.01947799 molecular_function
## 7556 1 5134 0.01947799 molecular_function
## 7557 1 5134 0.01947799 molecular_function
## 7558 1 5134 0.01947799 molecular_function
## 7559 1 5134 0.01947799 molecular_function
## 7560 1 5134 0.01947799 molecular_function
## 7561 1 5134 0.01947799 molecular_function
## 7562 1 5134 0.01947799 molecular_function
## 7563 1 5134 0.01947799 molecular_function
## 7564 1 5134 0.01947799 molecular_function
## 7565 1 5134 0.01947799 molecular_function
## 7566 1 5134 0.01947799 molecular_function
## 7567 1 5134 0.01947799 biological_process
## 7568 1 5134 0.01947799 molecular_function
## 7569 1 5134 0.01947799 molecular_function
## 7570 1 5134 0.01947799 molecular_function
## 7571 1 5134 0.01947799 molecular_function
## 7572 1 5134 0.01947799 molecular_function
## 7573 1 5134 0.01947799 molecular_function
## 7574 1 5134 0.01947799 molecular_function
## 7575 1 5134 0.01947799 molecular_function
## 7576 1 5134 0.01947799 molecular_function
## 7577 1 5134 0.01947799 biological_process
## 7578 1 5134 0.01947799 biological_process
## 7579 1 5134 0.01947799 molecular_function
## 7580 1 5134 0.01947799 molecular_function
## 7581 1 5134 0.01947799 molecular_function
## 7582 1 5134 0.01947799 molecular_function
## 7583 1 5134 0.01947799 molecular_function
## 7584 1 5134 0.01947799 molecular_function
## 7585 1 5134 0.01947799 cellular_component
## 7586 1 5134 0.01947799 biological_process
## 7587 1 5134 0.01947799 molecular_function
## 7588 1 5134 0.01947799 biological_process
## 7589 1 5134 0.01947799 molecular_function
## 7590 1 5134 0.01947799 biological_process
## 7591 1 5134 0.01947799 molecular_function
## 7592 1 5134 0.01947799 molecular_function
## 7593 1 5134 0.01947799 cellular_component
## 7594 1 5134 0.01947799 biological_process
## 7595 1 5134 0.01947799 biological_process
## 7596 1 5134 0.01947799 molecular_function
## 7597 1 5134 0.01947799 molecular_function
## 7598 1 5134 0.01947799 biological_process
## 7599 1 5134 0.01947799 molecular_function
## 7600 1 5134 0.01947799 molecular_function
## 7601 1 5134 0.01947799 biological_process
## 7602 1 5134 0.01947799 molecular_function
## 7603 1 5134 0.01947799 molecular_function
## 7604 1 5134 0.01947799 molecular_function
## 7605 1 5134 0.01947799 molecular_function
## 7606 1 5134 0.01947799 molecular_function
## 7607 1 5134 0.01947799 biological_process
## 7608 1 5134 0.01947799 molecular_function
## 7609 1 5134 0.01947799 molecular_function
## 7610 1 5134 0.01947799 molecular_function
## 7611 1 5134 0.01947799 molecular_function
## 7612 1 5134 0.01947799 cellular_component
## 7613 1 5134 0.01947799 biological_process
## 7614 1 5134 0.01947799 biological_process
## 7615 1 5134 0.01947799 cellular_component
## 7616 1 5134 0.01947799 biological_process
## 7617 1 5134 0.01947799 biological_process
## 7618 1 5134 0.01947799 biological_process
## 7619 1 5134 0.01947799 biological_process
## 7620 1 5134 0.01947799 molecular_function
## 7621 1 5134 0.01947799 cellular_component
## 7622 1 5134 0.01947799 biological_process
## 7623 1 5134 0.01947799 biological_process
## 7624 1 5134 0.01947799 molecular_function
## 7625 1 5134 0.01947799 biological_process
## 7626 1 5134 0.01947799 biological_process
## 7627 1 5134 0.01947799 biological_process
## 7628 1 5134 0.01947799 molecular_function
## 7629 1 5134 0.01947799 molecular_function
## 7630 1 5134 0.01947799 molecular_function
## 7631 1 5134 0.01947799 biological_process
## 7632 1 5134 0.01947799 molecular_function
## 7633 1 5134 0.01947799 molecular_function
## 7634 1 5134 0.01947799 biological_process
## 7635 1 5134 0.01947799 biological_process
## 7636 1 5134 0.01947799 molecular_function
## 7637 1 5134 0.01947799 biological_process
## 7638 1 5134 0.01947799 biological_process
## 7639 1 5134 0.01947799 molecular_function
## 7640 1 5134 0.01947799 biological_process
## 7641 1 5134 0.01947799 biological_process
## 7642 1 5134 0.01947799 molecular_function
## 7643 1 5134 0.01947799 molecular_function
## 7644 1 5134 0.01947799 molecular_function
## 7645 1 5134 0.01947799 biological_process
## 7646 1 5134 0.01947799 molecular_function
## 7647 1 5134 0.01947799 molecular_function
## 7648 1 5134 0.01947799 biological_process
## 7649 1 5134 0.01947799 biological_process
## 7650 1 5134 0.01947799 molecular_function
## 7651 1 5134 0.01947799 biological_process
## 7652 1 5134 0.01947799 molecular_function
## 7653 1 5134 0.01947799 biological_process
## 7654 1 5134 0.01947799 molecular_function
## 7655 1 5134 0.01947799 molecular_function
## 7656 1 5134 0.01947799 molecular_function
## 7657 1 5134 0.01947799 molecular_function
## 7658 1 5134 0.01947799 molecular_function
## 7659 1 5134 0.01947799 biological_process
## 7660 1 5134 0.01947799 molecular_function
## 7661 1 5134 0.01947799 biological_process
## 7662 1 5134 0.01947799 molecular_function
## 7663 1 5134 0.01947799 biological_process
## 7664 1 5134 0.01947799 biological_process
## 7665 1 5134 0.01947799 biological_process
## 7666 1 5134 0.01947799 cellular_component
## 7667 1 5134 0.01947799 molecular_function
## 7668 1 5134 0.01947799 molecular_function
## 7669 1 5134 0.01947799 biological_process
## 7670 1 5134 0.01947799 molecular_function
## 7671 1 5134 0.01947799 molecular_function
## 7672 1 5134 0.01947799 molecular_function
## 7673 1 5134 0.01947799 molecular_function
## 7674 1 5134 0.01947799 molecular_function
## 7675 1 5134 0.01947799 molecular_function
## 7676 1 5134 0.01947799 molecular_function
## 7677 1 5134 0.01947799 molecular_function
## 7678 1 5134 0.01947799 molecular_function
## 7679 1 5134 0.01947799 molecular_function
## 7680 1 5134 0.01947799 molecular_function
## 7681 1 5134 0.01947799 molecular_function
## 7682 1 5134 0.01947799 molecular_function
## 7683 1 5134 0.01947799 molecular_function
## 7684 1 5134 0.01947799 molecular_function
## 7685 1 5134 0.01947799 molecular_function
## 7686 1 5134 0.01947799 molecular_function
## 7687 1 5134 0.01947799 molecular_function
## 7688 1 5134 0.01947799 molecular_function
## 7689 1 5134 0.01947799 molecular_function
## 7690 1 5134 0.01947799 molecular_function
## 7691 1 5134 0.01947799 molecular_function
## 7692 1 5134 0.01947799 biological_process
## 7693 1 5134 0.01947799 biological_process
## 7694 1 5134 0.01947799 molecular_function
## 7695 1 5134 0.01947799 molecular_function
## 7696 1 5134 0.01947799 molecular_function
## 7697 1 5134 0.01947799 biological_process
## 7698 1 5134 0.01947799 molecular_function
## 7699 1 5134 0.01947799 molecular_function
## 7700 1 5134 0.01947799 molecular_function
## 7701 1 5134 0.01947799 molecular_function
## 7702 1 5134 0.01947799 molecular_function
## 7703 1 5134 0.01947799 biological_process
## 7704 1 5134 0.01947799 cellular_component
## 7705 1 5134 0.01947799 cellular_component
## 7706 1 5134 0.01947799 cellular_component
## 7707 1 5134 0.01947799 molecular_function
## 7708 1 5134 0.01947799 molecular_function
## 7709 1 5134 0.01947799 molecular_function
## 7710 1 5134 0.01947799 molecular_function
## 7711 1 5134 0.01947799 molecular_function
## 7712 1 5134 0.01947799 biological_process
## 7713 1 5134 0.01947799 biological_process
## 7714 1 5134 0.01947799 molecular_function
## 7715 1 5134 0.01947799 molecular_function
## 7716 1 5134 0.01947799 molecular_function
## 7717 1 5134 0.01947799 biological_process
## 7718 1 5134 0.01947799 biological_process
## 7719 1 5134 0.01947799 biological_process
## 7720 1 5134 0.01947799 molecular_function
## 7721 1 5134 0.01947799 biological_process
## 7722 1 5134 0.01947799 biological_process
## 7723 1 5134 0.01947799 cellular_component
## 7724 1 5134 0.01947799 cellular_component
## 7725 1 5134 0.01947799 molecular_function
## 7726 1 5134 0.01947799 biological_process
## 7727 1 5134 0.01947799 biological_process
## 7728 1 5134 0.01947799 biological_process
## 7729 1 5134 0.01947799 molecular_function
## 7730 1 5134 0.01947799 molecular_function
## 7731 1 5134 0.01947799 cellular_component
## 7732 1 5134 0.01947799 molecular_function
## 7733 1 5134 0.01947799 biological_process
## 7734 1 5134 0.01947799 molecular_function
## 7735 1 5134 0.01947799 biological_process
## 7736 1 5134 0.01947799 biological_process
## 7737 1 5134 0.01947799 biological_process
## 7738 1 5134 0.01947799 biological_process
## 7739 1 5134 0.01947799 biological_process
## 7740 1 5134 0.01947799 biological_process
## 7741 1 5134 0.01947799 biological_process
## 7742 1 5134 0.01947799 biological_process
## 7743 1 5134 0.01947799 biological_process
## 7744 1 5134 0.01947799 biological_process
## 7745 1 5134 0.01947799 biological_process
## 7746 1 5134 0.01947799 biological_process
## 7747 1 5134 0.01947799 biological_process
## 7748 1 5134 0.01947799 biological_process
## 7749 1 5134 0.01947799 biological_process
## 7750 1 5134 0.01947799 molecular_function
## 7751 1 5134 0.01947799 cellular_component
## 7752 1 5134 0.01947799 biological_process
## 7753 1 5134 0.01947799 cellular_component
## 7754 1 5134 0.01947799 cellular_component
## 7755 1 5134 0.01947799 molecular_function
## 7756 1 5134 0.01947799 molecular_function
## 7757 1 5134 0.01947799 molecular_function
## 7758 1 5134 0.01947799 cellular_component
## 7759 1 5134 0.01947799 biological_process
## 7760 1 5134 0.01947799 molecular_function
## 7761 1 5134 0.01947799 cellular_component
## 7762 1 5134 0.01947799 molecular_function
## 7763 1 5134 0.01947799 biological_process
## 7764 1 5134 0.01947799 biological_process
## 7765 1 5134 0.01947799 biological_process
## 7766 1 5134 0.01947799 molecular_function
## 7767 1 5134 0.01947799 molecular_function
## 7768 1 5134 0.01947799 molecular_function
## 7769 1 5134 0.01947799 biological_process
## 7770 1 5134 0.01947799 biological_process
## 7771 1 5134 0.01947799 molecular_function
## 7772 1 5134 0.01947799 biological_process
## 7773 1 5134 0.01947799 biological_process
## 7774 1 5134 0.01947799 biological_process
## 7775 1 5134 0.01947799 molecular_function
## 7776 1 5134 0.01947799 molecular_function
## 7777 1 5134 0.01947799 molecular_function
## 7778 1 5134 0.01947799 molecular_function
## 7779 1 5134 0.01947799 molecular_function
## 7780 1 5134 0.01947799 biological_process
## 7781 1 5134 0.01947799 biological_process
## 7782 1 5134 0.01947799 biological_process
## 7783 1 5134 0.01947799 cellular_component
## 7784 1 5134 0.01947799 biological_process
## 7785 1 5134 0.01947799 cellular_component
## 7786 1 5134 0.01947799 biological_process
## 7787 1 5134 0.01947799 cellular_component
## 7788 1 5134 0.01947799 cellular_component
## 7789 1 5134 0.01947799 molecular_function
## 7790 1 5134 0.01947799 cellular_component
## 7791 1 5134 0.01947799 molecular_function
## 7792 1 5134 0.01947799 molecular_function
## 7793 1 5134 0.01947799 molecular_function
## 7794 1 5134 0.01947799 biological_process
## 7795 1 5134 0.01947799 biological_process
## 7796 1 5134 0.01947799 molecular_function
## 7797 1 5134 0.01947799 molecular_function
## 7798 1 5134 0.01947799 molecular_function
## 7799 1 5134 0.01947799 molecular_function
## 7800 1 5134 0.01947799 molecular_function
## 7801 1 5134 0.01947799 molecular_function
## 7802 1 5134 0.01947799 molecular_function
## 7803 1 5134 0.01947799 molecular_function
## 7804 1 5134 0.01947799 molecular_function
## 7805 1 5134 0.01947799 molecular_function
## 7806 1 5134 0.01947799 molecular_function
## 7807 1 5134 0.01947799 biological_process
## 7808 1 5134 0.01947799 biological_process
## 7809 1 5134 0.01947799 biological_process
## 7810 1 5134 0.01947799 biological_process
## 7811 1 5134 0.01947799 biological_process
## 7812 1 5134 0.01947799 biological_process
## 7813 1 5134 0.01947799 biological_process
## 7814 1 5134 0.01947799 biological_process
## 7815 1 5134 0.01947799 biological_process
## 7816 1 5134 0.01947799 cellular_component
## 7817 1 5134 0.01947799 biological_process
## 7818 1 5134 0.01947799 biological_process
## 7819 1 5134 0.01947799 molecular_function
## 7820 1 5134 0.01947799 biological_process
## 7821 1 5134 0.01947799 biological_process
## 7822 1 5134 0.01947799 cellular_component
## 7823 1 5134 0.01947799 biological_process
## 7824 1 5134 0.01947799 biological_process
## 7825 1 5134 0.01947799 biological_process
## 7826 1 5134 0.01947799 biological_process
## 7827 1 5134 0.01947799 biological_process
## 7828 1 5134 0.01947799 biological_process
## 7829 1 5134 0.01947799 biological_process
## 7830 1 5134 0.01947799 biological_process
## 7831 1 5134 0.01947799 cellular_component
## 7832 1 5134 0.01947799 biological_process
## 7833 1 5134 0.01947799 cellular_component
## 7834 1 5134 0.01947799 biological_process
## 7835 1 5134 0.01947799 cellular_component
## 7836 1 5134 0.01947799 biological_process
## 7837 1 5134 0.01947799 biological_process
## 7838 1 5134 0.01947799 biological_process
## 7839 1 5134 0.01947799 cellular_component
## 7840 1 5134 0.01947799 cellular_component
## 7841 1 5134 0.01947799 biological_process
## 7842 1 5134 0.01947799 biological_process
## 7843 1 5134 0.01947799 biological_process
## 7844 1 5134 0.01947799 biological_process
## 7845 1 5134 0.01947799 biological_process
## 7846 1 5134 0.01947799 molecular_function
## 7847 1 5134 0.01947799 molecular_function
## 7848 1 5134 0.01947799 molecular_function
## 7849 1 5134 0.01947799 molecular_function
## 7850 1 5134 0.01947799 molecular_function
## 7851 1 5134 0.01947799 biological_process
## 7852 1 5134 0.01947799 biological_process
## 7853 1 5134 0.01947799 molecular_function
## 7854 1 5134 0.01947799 molecular_function
## 7855 1 5134 0.01947799 biological_process
## 7856 1 5134 0.01947799 molecular_function
## 7857 1 5134 0.01947799 molecular_function
## 7858 1 5134 0.01947799 cellular_component
## 7859 1 5134 0.01947799 molecular_function
## 7860 1 5134 0.01947799 molecular_function
## 7861 1 5134 0.01947799 molecular_function
## 7862 1 5134 0.01947799 molecular_function
## 7863 1 5134 0.01947799 molecular_function
## 7864 1 5134 0.01947799 molecular_function
## 7865 1 5134 0.01947799 molecular_function
## 7866 1 5134 0.01947799 molecular_function
## 7867 1 5134 0.01947799 molecular_function
## 7868 1 5134 0.01947799 molecular_function
## 7869 1 5134 0.01947799 molecular_function
## 7870 1 5134 0.01947799 molecular_function
## 7871 1 5134 0.01947799 molecular_function
## 7872 1 5134 0.01947799 molecular_function
## 7873 1 5134 0.01947799 molecular_function
## 7874 1 5134 0.01947799 molecular_function
## 7875 1 5134 0.01947799 biological_process
## 7876 1 5134 0.01947799 molecular_function
## 7877 1 5134 0.01947799 molecular_function
## 7878 1 5134 0.01947799 biological_process
## 7879 1 5134 0.01947799 biological_process
## 7880 1 5134 0.01947799 molecular_function
## 7881 1 5134 0.01947799 biological_process
## 7882 1 5134 0.01947799 molecular_function
## 7883 1 5134 0.01947799 molecular_function
## 7884 1 5134 0.01947799 molecular_function
## 7885 1 5134 0.01947799 molecular_function
## 7886 1 5134 0.01947799 cellular_component
## 7887 1 5134 0.01947799 biological_process
## 7888 1 5134 0.01947799 biological_process
## 7889 1 5134 0.01947799 biological_process
## 7890 1 5134 0.01947799 biological_process
## 7891 1 5134 0.01947799 biological_process
## 7892 1 5134 0.01947799 biological_process
## 7893 1 5134 0.01947799 biological_process
## 7894 1 5134 0.01947799 biological_process
## 7895 1 5134 0.01947799 molecular_function
## 7896 1 5134 0.01947799 molecular_function
## 7897 1 5134 0.01947799 cellular_component
## 7898 1 5134 0.01947799 molecular_function
## 7899 1 5134 0.01947799 cellular_component
## 7900 1 5134 0.01947799 cellular_component
## 7901 1 5134 0.01947799 biological_process
## 7902 1 5134 0.01947799 biological_process
## 7903 1 5134 0.01947799 biological_process
## 7904 1 5134 0.01947799 molecular_function
## 7905 1 5134 0.01947799 biological_process
## 7906 1 5134 0.01947799 cellular_component
## 7907 1 5134 0.01947799 molecular_function
## 7908 1 5134 0.01947799 biological_process
## 7909 1 5134 0.01947799 biological_process
## 7910 1 5134 0.01947799 biological_process
## 7911 1 5134 0.01947799 biological_process
## 7912 1 5134 0.01947799 biological_process
## 7913 1 5134 0.01947799 molecular_function
## 7914 1 5134 0.01947799 molecular_function
## 7915 1 5134 0.01947799 molecular_function
## 7916 1 5134 0.01947799 molecular_function
## 7917 1 5134 0.01947799 molecular_function
## 7918 1 5134 0.01947799 biological_process
## 7919 1 5134 0.01947799 biological_process
## 7920 1 5134 0.01947799 molecular_function
## 7921 1 5134 0.01947799 biological_process
## 7922 1 5134 0.01947799 molecular_function
## 7923 1 5134 0.01947799 biological_process
## 7924 1 5134 0.01947799 biological_process
## 7925 1 5134 0.01947799 biological_process
## 7926 1 5134 0.01947799 biological_process
## 7927 1 5134 0.01947799 cellular_component
## 7928 1 5134 0.01947799 cellular_component
## 7929 1 5134 0.01947799 molecular_function
## 7930 1 5134 0.01947799 molecular_function
## 7931 1 5134 0.01947799 biological_process
## 7932 1 5134 0.01947799 molecular_function
## 7933 1 5134 0.01947799 molecular_function
## 7934 1 5134 0.01947799 molecular_function
## 7935 1 5134 0.01947799 biological_process
## 7936 1 5134 0.01947799 biological_process
## 7937 1 5134 0.01947799 molecular_function
## 7938 1 5134 0.01947799 biological_process
## 7939 1 5134 0.01947799 molecular_function
## 7940 1 5134 0.01947799 molecular_function
## 7941 1 5134 0.01947799 molecular_function
## 7942 1 5134 0.01947799 molecular_function
## 7943 1 5134 0.01947799 molecular_function
## 7944 1 5134 0.01947799 biological_process
## 7945 1 5134 0.01947799 biological_process
## 7946 1 5134 0.01947799 biological_process
## 7947 1 5134 0.01947799 biological_process
## 7948 1 5134 0.01947799 cellular_component
## 7949 1 5134 0.01947799 molecular_function
## 7950 1 5134 0.01947799 biological_process
## 7951 1 5134 0.01947799 biological_process
## 7952 1 5134 0.01947799 biological_process
## 7953 1 5134 0.01947799 biological_process
## 7954 1 5134 0.01947799 biological_process
## 7955 1 5134 0.01947799 biological_process
## 7956 1 5134 0.01947799 biological_process
## 7957 1 5134 0.01947799 biological_process
## 7958 1 5134 0.01947799 biological_process
## 7959 1 5134 0.01947799 biological_process
## 7960 1 5134 0.01947799 biological_process
## 7961 1 5134 0.01947799 biological_process
## 7962 1 5134 0.01947799 biological_process
## 7963 1 5134 0.01947799 biological_process
## 7964 1 5134 0.01947799 molecular_function
## 7965 1 5134 0.01947799 molecular_function
## 7966 1 5134 0.01947799 molecular_function
## 7967 1 5134 0.01947799 biological_process
## 7968 1 5134 0.01947799 biological_process
## 7969 1 5134 0.01947799 biological_process
## 7970 1 5134 0.01947799 biological_process
## 7971 1 5134 0.01947799 biological_process
## 7972 1 5134 0.01947799 biological_process
## 7973 1 5134 0.01947799 biological_process
## 7974 1 5134 0.01947799 biological_process
## 7975 1 5134 0.01947799 biological_process
## 7976 1 5134 0.01947799 biological_process
## 7977 1 5134 0.01947799 biological_process
## 7978 1 5134 0.01947799 molecular_function
## 7979 1 5134 0.01947799 biological_process
## 7980 1 5134 0.01947799 biological_process
## 7981 1 5134 0.01947799 molecular_function
## 7982 1 5134 0.01947799 biological_process
## 7983 1 5134 0.01947799 biological_process
## 7984 1 5134 0.01947799 molecular_function
## 7985 1 5134 0.01947799 biological_process
## 7986 1 5134 0.01947799 biological_process
## 7987 1 5134 0.01947799 biological_process
## 7988 1 5134 0.01947799 molecular_function
## 7989 1 5134 0.01947799 molecular_function
## 7990 1 5134 0.01947799 biological_process
## 7991 1 5134 0.01947799 cellular_component
## 7992 1 5134 0.01947799 biological_process
## 7993 1 5134 0.01947799 cellular_component
## 7994 1 5134 0.01947799 cellular_component
## 7995 1 5134 0.01947799 biological_process
## 7996 1 5134 0.01947799 cellular_component
## 7997 1 5134 0.01947799 molecular_function
## 7998 1 5134 0.01947799 molecular_function
## 7999 1 5134 0.01947799 molecular_function
## 8000 1 5134 0.01947799 biological_process
## 8001 1 5134 0.01947799 biological_process
## 8002 1 5134 0.01947799 biological_process
## 8003 1 5134 0.01947799 molecular_function
## 8004 1 5134 0.01947799 molecular_function
## 8005 1 5134 0.01947799 biological_process
## 8006 1 5134 0.01947799 biological_process
## 8007 1 5134 0.01947799 biological_process
## 8008 1 5134 0.01947799 biological_process
## 8009 1 5134 0.01947799 biological_process
## 8010 1 5134 0.01947799 molecular_function
## 8011 1 5134 0.01947799 molecular_function
## 8012 1 5134 0.01947799 biological_process
## 8013 1 5134 0.01947799 cellular_component
## 8014 1 5134 0.01947799 biological_process
## 8015 1 5134 0.01947799 biological_process
## 8016 1 5134 0.01947799 biological_process
## 8017 1 5134 0.01947799 biological_process
## 8018 1 5134 0.01947799 biological_process
## 8019 1 5134 0.01947799 biological_process
## 8020 1 5134 0.01947799 biological_process
## 8021 1 5134 0.01947799 biological_process
## 8022 1 5134 0.01947799 biological_process
## 8023 1 5134 0.01947799 cellular_component
## 8024 1 5134 0.01947799 biological_process
## 8025 1 5134 0.01947799 biological_process
## 8026 1 5134 0.01947799 biological_process
## 8027 1 5134 0.01947799 biological_process
## 8028 1 5134 0.01947799 biological_process
## 8029 1 5134 0.01947799 biological_process
## 8030 1 5134 0.01947799 biological_process
## 8031 1 5134 0.01947799 biological_process
## 8032 1 5134 0.01947799 biological_process
## 8033 1 5134 0.01947799 biological_process
## 8034 1 5134 0.01947799 biological_process
## 8035 1 5134 0.01947799 biological_process
## 8036 1 5134 0.01947799 biological_process
## 8037 1 5134 0.01947799 biological_process
## 8038 1 5134 0.01947799 biological_process
## 8039 1 5134 0.01947799 biological_process
## 8040 1 5134 0.01947799 biological_process
## 8041 1 5134 0.01947799 biological_process
## 8042 1 5134 0.01947799 biological_process
## 8043 1 5134 0.01947799 biological_process
## 8044 1 5134 0.01947799 biological_process
## 8045 1 5134 0.01947799 biological_process
## 8046 1 5134 0.01947799 biological_process
## 8047 1 5134 0.01947799 biological_process
## 8048 1 5134 0.01947799 biological_process
## 8049 1 5134 0.01947799 biological_process
## 8050 1 5134 0.01947799 biological_process
## 8051 1 5134 0.01947799 biological_process
## 8052 1 5134 0.01947799 biological_process
## 8053 1 5134 0.01947799 biological_process
## 8054 1 5134 0.01947799 biological_process
## 8055 1 5134 0.01947799 biological_process
## 8056 1 5134 0.01947799 biological_process
## 8057 1 5134 0.01947799 biological_process
## 8058 1 5134 0.01947799 biological_process
## 8059 1 5134 0.01947799 biological_process
## 8060 1 5134 0.01947799 biological_process
## 8061 1 5134 0.01947799 biological_process
## 8062 1 5134 0.01947799 biological_process
## 8063 1 5134 0.01947799 biological_process
## 8064 1 5134 0.01947799 biological_process
## 8065 1 5134 0.01947799 biological_process
## 8066 1 5134 0.01947799 biological_process
## 8067 1 5134 0.01947799 biological_process
## 8068 1 5134 0.01947799 biological_process
## 8069 1 5134 0.01947799 biological_process
## 8070 1 5134 0.01947799 biological_process
## 8071 1 5134 0.01947799 biological_process
## 8072 1 5134 0.01947799 biological_process
## 8073 1 5134 0.01947799 biological_process
## 8074 1 5134 0.01947799 biological_process
## 8075 1 5134 0.01947799 biological_process
## 8076 1 5134 0.01947799 biological_process
## 8077 1 5134 0.01947799 biological_process
## 8078 1 5134 0.01947799 biological_process
## 8079 1 5134 0.01947799 biological_process
## 8080 1 5134 0.01947799 biological_process
## 8081 1 5134 0.01947799 biological_process
## 8082 1 5134 0.01947799 biological_process
## 8083 1 5134 0.01947799 biological_process
## 8084 1 5134 0.01947799 biological_process
## 8085 1 5134 0.01947799 biological_process
## 8086 1 5134 0.01947799 biological_process
## 8087 1 5134 0.01947799 biological_process
## 8088 1 5134 0.01947799 biological_process
## 8089 1 5134 0.01947799 biological_process
## 8090 1 5134 0.01947799 biological_process
## 8091 1 5134 0.01947799 biological_process
## 8092 1 5134 0.01947799 biological_process
## 8093 1 5134 0.01947799 biological_process
## 8094 1 5134 0.01947799 biological_process
## 8095 1 5134 0.01947799 biological_process
## 8096 1 5134 0.01947799 biological_process
## 8097 1 5134 0.01947799 biological_process
## 8098 1 5134 0.01947799 biological_process
## 8099 1 5134 0.01947799 biological_process
## 8100 1 5134 0.01947799 biological_process
## 8101 1 5134 0.01947799 biological_process
## 8102 1 5134 0.01947799 biological_process
## 8103 1 5134 0.01947799 biological_process
## 8104 1 5134 0.01947799 biological_process
## 8105 1 5134 0.01947799 biological_process
## 8106 1 5134 0.01947799 biological_process
## 8107 1 5134 0.01947799 biological_process
## 8108 1 5134 0.01947799 biological_process
## 8109 1 5134 0.01947799 biological_process
## 8110 1 5134 0.01947799 biological_process
## 8111 1 5134 0.01947799 biological_process
## 8112 1 5134 0.01947799 biological_process
## 8113 1 5134 0.01947799 biological_process
## 8114 1 5134 0.01947799 biological_process
## 8115 1 5134 0.01947799 biological_process
## 8116 1 5134 0.01947799 biological_process
## 8117 1 5134 0.01947799 cellular_component
## 8118 1 5134 0.01947799 biological_process
## 8119 1 5134 0.01947799 biological_process
## 8120 1 5134 0.01947799 biological_process
## 8121 1 5134 0.01947799 cellular_component
## 8122 1 5134 0.01947799 biological_process
## 8123 1 5134 0.01947799 cellular_component
## 8124 1 5134 0.01947799 biological_process
## 8125 1 5134 0.01947799 molecular_function
## 8126 1 5134 0.01947799 molecular_function
## 8127 1 5134 0.01947799 molecular_function
## 8128 1 5134 0.01947799 biological_process
## 8129 1 5134 0.01947799 molecular_function
## 8130 1 5134 0.01947799 biological_process
## 8131 1 5134 0.01947799 biological_process
## 8132 1 5134 0.01947799 biological_process
## 8133 1 5134 0.01947799 biological_process
## 8134 1 5134 0.01947799 biological_process
## 8135 1 5134 0.01947799 biological_process
## 8136 1 5134 0.01947799 biological_process
## 8137 1 5134 0.01947799 biological_process
## 8138 1 5134 0.01947799 biological_process
## 8139 1 5134 0.01947799 biological_process
## 8140 1 5134 0.01947799 biological_process
## 8141 1 5134 0.01947799 molecular_function
## 8142 1 5134 0.01947799 biological_process
## 8143 1 5134 0.01947799 molecular_function
## 8144 1 5134 0.01947799 molecular_function
## 8145 1 5134 0.01947799 molecular_function
## 8146 1 5134 0.01947799 cellular_component
## 8147 1 5134 0.01947799 biological_process
## 8148 1 5134 0.01947799 molecular_function
## 8149 1 5134 0.01947799 biological_process
## 8150 1 5134 0.01947799 molecular_function
## 8151 1 5134 0.01947799 biological_process
## 8152 1 5134 0.01947799 molecular_function
## 8153 1 5134 0.01947799 biological_process
## 8154 1 5134 0.01947799 biological_process
## 8155 1 5134 0.01947799 biological_process
## 8156 1 5134 0.01947799 biological_process
## 8157 1 5134 0.01947799 molecular_function
## 8158 1 5134 0.01947799 cellular_component
## 8159 1 5134 0.01947799 biological_process
## 8160 1 5134 0.01947799 molecular_function
## 8161 1 5134 0.01947799 molecular_function
## 8162 1 5134 0.01947799 biological_process
## 8163 1 5134 0.01947799 biological_process
## 8164 1 5134 0.01947799 molecular_function
## 8165 1 5134 0.01947799 molecular_function
## 8166 1 5134 0.01947799 molecular_function
## 8167 1 5134 0.01947799 molecular_function
## 8168 1 5134 0.01947799 biological_process
## 8169 1 5134 0.01947799 biological_process
## 8170 1 5134 0.01947799 biological_process
## 8171 1 5134 0.01947799 biological_process
## 8172 1 5134 0.01947799 molecular_function
## 8173 1 5134 0.01947799 molecular_function
## 8174 1 5134 0.01947799 biological_process
## 8175 1 5134 0.01947799 molecular_function
## 8176 1 5134 0.01947799 molecular_function
## 8177 1 5134 0.01947799 biological_process
## 8178 1 5134 0.01947799 biological_process
## 8179 1 5134 0.01947799 biological_process
## 8180 1 5134 0.01947799 molecular_function
## 8181 1 5134 0.01947799 biological_process
## 8182 1 5134 0.01947799 cellular_component
## 8183 1 5134 0.01947799 biological_process
## 8184 1 5134 0.01947799 biological_process
## 8185 1 5134 0.01947799 biological_process
## 8186 1 5134 0.01947799 biological_process
## 8187 1 5134 0.01947799 biological_process
## 8188 1 5134 0.01947799 biological_process
## 8189 1 5134 0.01947799 molecular_function
## 8190 1 5134 0.01947799 cellular_component
## 8191 1 5134 0.01947799 biological_process
## 8192 1 5134 0.01947799 cellular_component
## 8193 1 5134 0.01947799 biological_process
## 8194 1 5134 0.01947799 biological_process
## 8195 1 5134 0.01947799 biological_process
## 8196 1 5134 0.01947799 molecular_function
## 8197 1 5134 0.01947799 molecular_function
## 8198 1 5134 0.01947799 molecular_function
## 8199 1 5134 0.01947799 molecular_function
## 8200 1 5134 0.01947799 molecular_function
## 8201 1 5134 0.01947799 biological_process
## 8202 1 5134 0.01947799 molecular_function
## 8203 1 5134 0.01947799 biological_process
## 8204 1 5134 0.01947799 biological_process
## 8205 1 5134 0.01947799 biological_process
## 8206 1 5134 0.01947799 cellular_component
## 8207 1 5134 0.01947799 biological_process
## 8208 1 5134 0.01947799 biological_process
## 8209 1 5134 0.01947799 cellular_component
## 8210 1 5134 0.01947799 biological_process
## 8211 1 5134 0.01947799 biological_process
## 8212 1 5134 0.01947799 biological_process
## 8213 1 5134 0.01947799 molecular_function
## 8214 1 5134 0.01947799 biological_process
## 8215 1 5134 0.01947799 biological_process
## 8216 1 5134 0.01947799 biological_process
## 8217 1 5134 0.01947799 molecular_function
## 8218 1 5134 0.01947799 cellular_component
## 8219 1 5134 0.01947799 molecular_function
## 8220 1 5134 0.01947799 molecular_function
## 8221 1 5134 0.01947799 cellular_component
## 8222 1 5134 0.01947799 molecular_function
## 8223 1 5134 0.01947799 biological_process
## 8224 1 5134 0.01947799 biological_process
## 8225 1 5134 0.01947799 molecular_function
## 8226 1 5134 0.01947799 molecular_function
## 8227 1 5134 0.01947799 molecular_function
## 8228 1 5134 0.01947799 biological_process
## 8229 1 5134 0.01947799 molecular_function
## 8230 1 5134 0.01947799 biological_process
## 8231 1 5134 0.01947799 biological_process
## 8232 1 5134 0.01947799 biological_process
## 8233 1 5134 0.01947799 biological_process
## 8234 1 5134 0.01947799 biological_process
## 8235 1 5134 0.01947799 biological_process
## 8236 1 5134 0.01947799 cellular_component
## 8237 1 5134 0.01947799 molecular_function
## 8238 1 5134 0.01947799 molecular_function
## 8239 1 5134 0.01947799 molecular_function
## 8240 1 5134 0.01947799 biological_process
## 8241 1 5134 0.01947799 molecular_function
## 8242 1 5134 0.01947799 biological_process
## 8243 1 5134 0.01947799 cellular_component
## 8244 1 5134 0.01947799 molecular_function
## 8245 1 5134 0.01947799 biological_process
## 8246 1 5134 0.01947799 biological_process
## 8247 1 5134 0.01947799 biological_process
## 8248 1 5134 0.01947799 biological_process
## 8249 1 5134 0.01947799 biological_process
## 8250 1 5134 0.01947799 biological_process
## 8251 1 5134 0.01947799 biological_process
## 8252 1 5134 0.01947799 biological_process
## 8253 1 5134 0.01947799 biological_process
## 8254 1 5134 0.01947799 molecular_function
## 8255 1 5134 0.01947799 cellular_component
## 8256 1 5134 0.01947799 molecular_function
## 8257 1 5134 0.01947799 molecular_function
## 8258 1 5134 0.01947799 biological_process
## 8259 1 5134 0.01947799 biological_process
## 8260 1 5134 0.01947799 cellular_component
## 8261 1 5134 0.01947799 cellular_component
## 8262 1 5134 0.01947799 cellular_component
## 8263 1 5134 0.01947799 molecular_function
## 8264 1 5134 0.01947799 biological_process
## 8265 1 5134 0.01947799 biological_process
## 8266 1 5134 0.01947799 cellular_component
## 8267 1 5134 0.01947799 cellular_component
## 8268 1 5134 0.01947799 biological_process
## 8269 1 5134 0.01947799 molecular_function
## 8270 1 5134 0.01947799 molecular_function
## 8271 1 5134 0.01947799 molecular_function
## 8272 1 5134 0.01947799 molecular_function
## 8273 1 5134 0.01947799 cellular_component
## 8274 1 5134 0.01947799 biological_process
## 8275 1 5134 0.01947799 cellular_component
## 8276 1 5134 0.01947799 molecular_function
## 8277 1 5134 0.01947799 biological_process
## 8278 1 5134 0.01947799 molecular_function
## 8279 1 5134 0.01947799 biological_process
## 8280 1 5134 0.01947799 molecular_function
## 8281 1 5134 0.01947799 biological_process
## 8282 1 5134 0.01947799 cellular_component
## 8283 1 5134 0.01947799 cellular_component
## 8284 1 5134 0.01947799 cellular_component
## 8285 1 5134 0.01947799 biological_process
## 8286 1 5134 0.01947799 molecular_function
## 8287 1 5134 0.01947799 biological_process
## 8288 1 5134 0.01947799 biological_process
## 8289 1 5134 0.01947799 molecular_function
## 8290 1 5134 0.01947799 molecular_function
## 8291 1 5134 0.01947799 molecular_function
## 8292 1 5134 0.01947799 biological_process
## 8293 1 5134 0.01947799 molecular_function
## 8294 1 5134 0.01947799 molecular_function
## 8295 1 5134 0.01947799 biological_process
## 8296 1 5134 0.01947799 biological_process
## 8297 1 5134 0.01947799 biological_process
## 8298 1 5134 0.01947799 cellular_component
## 8299 1 5134 0.01947799 biological_process
## 8300 1 5134 0.01947799 biological_process
## 8301 1 5134 0.01947799 cellular_component
## 8302 1 5134 0.01947799 cellular_component
## 8303 1 5134 0.01947799 cellular_component
## 8304 1 5134 0.01947799 biological_process
## 8305 1 5134 0.01947799 cellular_component
## 8306 1 5134 0.01947799 cellular_component
## 8307 1 5134 0.01947799 cellular_component
## 8308 1 5134 0.01947799 cellular_component
## 8309 1 5134 0.01947799 biological_process
## 8310 1 5134 0.01947799 molecular_function
## 8311 1 5134 0.01947799 biological_process
## 8312 1 5134 0.01947799 cellular_component
## 8313 1 5134 0.01947799 molecular_function
## 8314 1 5134 0.01947799 molecular_function
## 8315 1 5134 0.01947799 biological_process
## 8316 1 5134 0.01947799 molecular_function
## 8317 1 5134 0.01947799 molecular_function
## 8318 1 5134 0.01947799 molecular_function
## 8319 1 5134 0.01947799 biological_process
## 8320 1 5134 0.01947799 biological_process
## 8321 1 5134 0.01947799 molecular_function
## 8322 1 5134 0.01947799 molecular_function
## 8323 1 5134 0.01947799 molecular_function
## 8324 1 5134 0.01947799 biological_process
## 8325 1 5134 0.01947799 biological_process
## 8326 1 5134 0.01947799 biological_process
## 8327 1 5134 0.01947799 biological_process
## 8328 1 5134 0.01947799 molecular_function
## 8329 1 5134 0.01947799 biological_process
## 8330 1 5134 0.01947799 molecular_function
## 8331 1 5134 0.01947799 cellular_component
## 8332 1 5134 0.01947799 cellular_component
## 8333 1 5134 0.01947799 biological_process
## 8334 1 5134 0.01947799 molecular_function
## 8335 1 5134 0.01947799 biological_process
## 8336 1 5134 0.01947799 molecular_function
## 8337 1 5134 0.01947799 molecular_function
## 8338 1 5134 0.01947799 molecular_function
## 8339 1 5134 0.01947799 molecular_function
## 8340 1 5134 0.01947799 biological_process
## 8341 1 5134 0.01947799 molecular_function
## 8342 1 5134 0.01947799 cellular_component
## 8343 1 5134 0.01947799 molecular_function
## 8344 1 5134 0.01947799 molecular_function
## 8345 1 5134 0.01947799 molecular_function
## 8346 1 5134 0.01947799 molecular_function
## 8347 1 5134 0.01947799 molecular_function
## 8348 1 5134 0.01947799 molecular_function
## 8349 1 5134 0.01947799 cellular_component
## 8350 1 5134 0.01947799 cellular_component
## 8351 1 5134 0.01947799 cellular_component
## 8352 1 5134 0.01947799 biological_process
## 8353 1 5134 0.01947799 biological_process
## 8354 1 5134 0.01947799 biological_process
## 8355 1 5134 0.01947799 biological_process
## 8356 1 5134 0.01947799 biological_process
## 8357 1 5134 0.01947799 biological_process
## 8358 1 5134 0.01947799 molecular_function
## 8359 1 5134 0.01947799 molecular_function
## 8360 1 5134 0.01947799 molecular_function
## 8361 1 5134 0.01947799 molecular_function
## 8362 1 5134 0.01947799 biological_process
## 8363 1 5134 0.01947799 molecular_function
## 8364 1 5134 0.01947799 molecular_function
## 8365 1 5134 0.01947799 molecular_function
## 8366 1 5134 0.01947799 biological_process
## 8367 1 5134 0.01947799 biological_process
## 8368 1 5134 0.01947799 biological_process
## 8369 1 5134 0.01947799 biological_process
## 8370 1 5134 0.01947799 biological_process
## 8371 1 5134 0.01947799 molecular_function
## 8372 1 5134 0.01947799 molecular_function
## 8373 1 5134 0.01947799 biological_process
## 8374 1 5134 0.01947799 biological_process
## 8375 1 5134 0.01947799 biological_process
## 8376 1 5134 0.01947799 biological_process
## 8377 1 5134 0.01947799 biological_process
## 8378 1 5134 0.01947799 biological_process
## 8379 1 5134 0.01947799 biological_process
## 8380 1 5134 0.01947799 biological_process
## 8381 1 5134 0.01947799 biological_process
## 8382 1 5134 0.01947799 biological_process
## 8383 1 5134 0.01947799 biological_process
## 8384 1 5134 0.01947799 biological_process
## 8385 1 5134 0.01947799 biological_process
## 8386 1 5134 0.01947799 biological_process
## 8387 1 5134 0.01947799 biological_process
## 8388 1 5134 0.01947799 biological_process
## 8389 1 5134 0.01947799 biological_process
## 8390 1 5134 0.01947799 biological_process
## 8391 1 5134 0.01947799 biological_process
## 8392 1 5134 0.01947799 biological_process
## 8393 1 5134 0.01947799 biological_process
## 8394 1 5134 0.01947799 biological_process
## 8395 1 5134 0.01947799 biological_process
## 8396 1 5134 0.01947799 biological_process
## 8397 1 5134 0.01947799 biological_process
## 8398 1 5134 0.01947799 biological_process
## 8399 1 5134 0.01947799 biological_process
## 8400 1 5134 0.01947799 biological_process
## 8401 1 5134 0.01947799 biological_process
## 8402 1 5134 0.01947799 biological_process
## 8403 1 5134 0.01947799 biological_process
## 8404 1 5134 0.01947799 biological_process
## 8405 1 5134 0.01947799 biological_process
## 8406 1 5134 0.01947799 biological_process
## 8407 1 5134 0.01947799 biological_process
## 8408 1 5134 0.01947799 biological_process
## 8409 1 5134 0.01947799 molecular_function
## 8410 1 5134 0.01947799 biological_process
## 8411 1 5134 0.01947799 biological_process
## 8412 1 5134 0.01947799 biological_process
## 8413 1 5134 0.01947799 biological_process
## 8414 1 5134 0.01947799 biological_process
## 8415 1 5134 0.01947799 biological_process
## 8416 1 5134 0.01947799 biological_process
## 8417 1 5134 0.01947799 biological_process
## 8418 1 5134 0.01947799 biological_process
## 8419 1 5134 0.01947799 biological_process
## 8420 1 5134 0.01947799 molecular_function
## 8421 1 5134 0.01947799 molecular_function
## 8422 1 5134 0.01947799 biological_process
## 8423 1 5134 0.01947799 biological_process
## 8424 1 5134 0.01947799 biological_process
## 8425 1 5134 0.01947799 biological_process
## 8426 1 5134 0.01947799 biological_process
## 8427 1 5134 0.01947799 biological_process
## 8428 1 5134 0.01947799 biological_process
## 8429 1 5134 0.01947799 molecular_function
## 8430 1 5134 0.01947799 molecular_function
## 8431 1 5134 0.01947799 molecular_function
## 8432 1 5134 0.01947799 molecular_function
## 8433 1 5134 0.01947799 molecular_function
## 8434 1 5134 0.01947799 molecular_function
## 8435 1 5134 0.01947799 molecular_function
## 8436 1 5134 0.01947799 molecular_function
## 8437 1 5134 0.01947799 molecular_function
## 8438 1 5134 0.01947799 molecular_function
## 8439 1 5134 0.01947799 cellular_component
## 8440 1 5134 0.01947799 molecular_function
## 8441 1 5134 0.01947799 molecular_function
## 8442 1 5134 0.01947799 biological_process
## 8443 1 5134 0.01947799 biological_process
## 8444 1 5134 0.01947799 molecular_function
## 8445 1 5134 0.01947799 molecular_function
## 8446 1 5134 0.01947799 molecular_function
## 8447 1 5134 0.01947799 molecular_function
## 8448 1 5134 0.01947799 biological_process
## 8449 1 5134 0.01947799 biological_process
## 8450 1 5134 0.01947799 molecular_function
## 8451 1 5134 0.01947799 biological_process
## 8452 1 5134 0.01947799 biological_process
## 8453 1 5134 0.01947799 molecular_function
## 8454 1 5134 0.01947799 biological_process
## 8455 1 5134 0.01947799 biological_process
## 8456 1 5134 0.01947799 biological_process
## 8457 1 5134 0.01947799 molecular_function
## 8458 1 5134 0.01947799 biological_process
## 8459 1 5134 0.01947799 cellular_component
## 8460 1 5134 0.01947799 cellular_component
## 8461 1 5134 0.01947799 biological_process
## 8462 1 5134 0.01947799 biological_process
## 8463 1 5134 0.01947799 biological_process
## 8464 1 5134 0.01947799 biological_process
## 8465 1 5134 0.01947799 cellular_component
## 8466 1 5134 0.01947799 cellular_component
## 8467 1 5134 0.01947799 molecular_function
## 8468 1 5134 0.01947799 biological_process
## 8469 1 5134 0.01947799 biological_process
## 8470 1 5134 0.01947799 biological_process
## 8471 1 5134 0.01947799 biological_process
## 8472 1 5134 0.01947799 biological_process
## 8473 1 5134 0.01947799 biological_process
## 8474 1 5134 0.01947799 biological_process
## 8475 1 5134 0.01947799 biological_process
## 8476 1 5134 0.01947799 biological_process
## 8477 1 5134 0.01947799 molecular_function
## 8478 1 5134 0.01947799 molecular_function
## 8479 1 5134 0.01947799 cellular_component
## 8480 1 5134 0.01947799 molecular_function
## 8481 1 5134 0.01947799 molecular_function
## 8482 1 5134 0.01947799 molecular_function
## 8483 1 5134 0.01947799 molecular_function
## 8484 1 5134 0.01947799 molecular_function
## 8485 1 5134 0.01947799 cellular_component
## 8486 1 5134 0.01947799 molecular_function
## 8487 1 5134 0.01947799 biological_process
## 8488 1 5134 0.01947799 biological_process
## 8489 1 5134 0.01947799 biological_process
## 8490 1 5134 0.01947799 molecular_function
## 8491 1 5134 0.01947799 molecular_function
## 8492 1 5134 0.01947799 molecular_function
## 8493 1 5134 0.01947799 molecular_function
## 8494 1 5134 0.01947799 biological_process
## 8495 1 5134 0.01947799 molecular_function
## 8496 1 5134 0.01947799 molecular_function
## 8497 1 5134 0.01947799 molecular_function
## 8498 1 5134 0.01947799 biological_process
## 8499 1 5134 0.01947799 molecular_function
## 8500 1 5134 0.01947799 biological_process
## 8501 1 5134 0.01947799 biological_process
## 8502 1 5134 0.01947799 biological_process
## 8503 1 5134 0.01947799 molecular_function
## 8504 1 5134 0.01947799 biological_process
## 8505 1 5134 0.01947799 biological_process
## 8506 1 5134 0.01947799 biological_process
## 8507 1 5134 0.01947799 biological_process
## 8508 1 5134 0.01947799 biological_process
## 8509 1 5134 0.01947799 biological_process
## 8510 1 5134 0.01947799 molecular_function
## 8511 1 5134 0.01947799 cellular_component
## 8512 1 5134 0.01947799 biological_process
## 8513 1 5134 0.01947799 cellular_component
## 8514 1 5134 0.01947799 cellular_component
## 8515 1 5134 0.01947799 biological_process
## 8516 1 5134 0.01947799 biological_process
## 8517 1 5134 0.01947799 biological_process
## 8518 1 5134 0.01947799 biological_process
## 8519 1 5134 0.01947799 molecular_function
## 8520 1 5134 0.01947799 biological_process
## 8521 1 5134 0.01947799 biological_process
## 8522 1 5134 0.01947799 biological_process
## 8523 1 5134 0.01947799 molecular_function
## 8524 1 5134 0.01947799 cellular_component
## 8525 1 5134 0.01947799 biological_process
## 8526 1 5134 0.01947799 molecular_function
## 8527 1 5134 0.01947799 biological_process
## 8528 1 5134 0.01947799 biological_process
## 8529 1 5134 0.01947799 biological_process
## 8530 1 5134 0.01947799 biological_process
## 8531 1 5134 0.01947799 biological_process
## 8532 1 5134 0.01947799 biological_process
## 8533 1 5134 0.01947799 biological_process
## 8534 1 5134 0.01947799 biological_process
## 8535 1 5134 0.01947799 biological_process
## 8536 1 5134 0.01947799 biological_process
## 8537 1 5134 0.01947799 molecular_function
## 8538 1 5134 0.01947799 biological_process
## 8539 1 5134 0.01947799 biological_process
## 8540 1 5134 0.01947799 biological_process
## 8541 1 5134 0.01947799 biological_process
## 8542 1 5134 0.01947799 biological_process
## 8543 1 5134 0.01947799 biological_process
## 8544 1 5134 0.01947799 biological_process
## 8545 1 5134 0.01947799 biological_process
## 8546 1 5134 0.01947799 biological_process
## 8547 1 5134 0.01947799 molecular_function
## 8548 1 5134 0.01947799 biological_process
## 8549 1 5134 0.01947799 biological_process
## 8550 1 5134 0.01947799 cellular_component
## 8551 1 5134 0.01947799 cellular_component
## 8552 1 5134 0.01947799 molecular_function
## 8553 1 5134 0.01947799 molecular_function
## 8554 1 5134 0.01947799 biological_process
## 8555 1 5134 0.01947799 cellular_component
## 8556 1 5134 0.01947799 biological_process
## 8557 1 5134 0.01947799 biological_process
## 8558 1 5134 0.01947799 biological_process
## 8559 1 5134 0.01947799 biological_process
## 8560 1 5134 0.01947799 molecular_function
## 8561 1 5134 0.01947799 biological_process
## 8562 1 5134 0.01947799 biological_process
## 8563 1 5134 0.01947799 biological_process
## 8564 1 5134 0.01947799 biological_process
## 8565 1 5134 0.01947799 biological_process
## 8566 1 5134 0.01947799 biological_process
## 8567 1 5134 0.01947799 molecular_function
## 8568 1 5134 0.01947799 biological_process
## 8569 1 5134 0.01947799 biological_process
## 8570 1 5134 0.01947799 biological_process
## 8571 1 5134 0.01947799 biological_process
## 8572 1 5134 0.01947799 biological_process
## 8573 1 5134 0.01947799 biological_process
## 8574 1 5134 0.01947799 biological_process
## 8575 1 5134 0.01947799 biological_process
## 8576 1 5134 0.01947799 biological_process
## 8577 1 5134 0.01947799 biological_process
## 8578 1 5134 0.01947799 biological_process
## 8579 1 5134 0.01947799 biological_process
## 8580 1 5134 0.01947799 biological_process
## 8581 1 5134 0.01947799 biological_process
## 8582 1 5134 0.01947799 biological_process
## 8583 1 5134 0.01947799 biological_process
## 8584 1 5134 0.01947799 molecular_function
## 8585 1 5134 0.01947799 biological_process
## 8586 1 5134 0.01947799 biological_process
## 8587 1 5134 0.01947799 biological_process
## 8588 1 5134 0.01947799 biological_process
## 8589 1 5134 0.01947799 biological_process
## 8590 1 5134 0.01947799 biological_process
## 8591 1 5134 0.01947799 biological_process
## 8592 1 5134 0.01947799 biological_process
## 8593 1 5134 0.01947799 biological_process
## 8594 1 5134 0.01947799 biological_process
## 8595 1 5134 0.01947799 biological_process
## 8596 1 5134 0.01947799 biological_process
## 8597 1 5134 0.01947799 biological_process
## 8598 1 5134 0.01947799 biological_process
## 8599 1 5134 0.01947799 biological_process
## 8600 1 5134 0.01947799 biological_process
## 8601 1 5134 0.01947799 biological_process
## 8602 1 5134 0.01947799 biological_process
## 8603 1 5134 0.01947799 biological_process
## 8604 1 5134 0.01947799 biological_process
## 8605 1 5134 0.01947799 biological_process
## 8606 1 5134 0.01947799 biological_process
## 8607 1 5134 0.01947799 biological_process
## 8608 1 5134 0.01947799 biological_process
## 8609 1 5134 0.01947799 biological_process
## 8610 1 5134 0.01947799 biological_process
## 8611 1 5134 0.01947799 biological_process
## 8612 1 5134 0.01947799 biological_process
## 8613 1 5134 0.01947799 biological_process
## 8614 1 5134 0.01947799 biological_process
## 8615 1 5134 0.01947799 molecular_function
## 8616 1 5134 0.01947799 molecular_function
## 8617 1 5134 0.01947799 molecular_function
## 8618 1 5134 0.01947799 molecular_function
## 8619 1 5134 0.01947799 biological_process
## 8620 1 5134 0.01947799 molecular_function
## 8621 1 5134 0.01947799 biological_process
## 8622 1 5134 0.01947799 cellular_component
## 8623 1 5134 0.01947799 molecular_function
## 8624 1 5134 0.01947799 cellular_component
## 8625 1 5134 0.01947799 cellular_component
## 8626 1 5134 0.01947799 biological_process
## 8627 1 5134 0.01947799 biological_process
## 8628 1 5134 0.01947799 biological_process
## 8629 1 5134 0.01947799 biological_process
## 8630 1 5134 0.01947799 molecular_function
## 8631 1 5134 0.01947799 biological_process
## 8632 1 5134 0.01947799 biological_process
## 8633 1 5134 0.01947799 biological_process
## 8634 1 5134 0.01947799 molecular_function
## 8635 1 5134 0.01947799 biological_process
## 8636 1 5134 0.01947799 cellular_component
## 8637 1 5134 0.01947799 biological_process
## 8638 1 5134 0.01947799 biological_process
## 8639 1 5134 0.01947799 molecular_function
## 8640 1 5134 0.01947799 cellular_component
## 8641 1 5134 0.01947799 cellular_component
## 8642 1 5134 0.01947799 cellular_component
## 8643 1 5134 0.01947799 cellular_component
## 8644 1 5134 0.01947799 cellular_component
## 8645 1 5134 0.01947799 cellular_component
## 8646 1 5134 0.01947799 cellular_component
## 8647 1 5134 0.01947799 cellular_component
## 8648 1 5134 0.01947799 cellular_component
## 8649 1 5134 0.01947799 cellular_component
## 8650 1 5134 0.01947799 biological_process
## 8651 1 5134 0.01947799 molecular_function
## 8652 1 5134 0.01947799 biological_process
## 8653 1 5134 0.01947799 biological_process
## 8654 1 5134 0.01947799 biological_process
## 8655 1 5134 0.01947799 molecular_function
## 8656 1 5134 0.01947799 molecular_function
## 8657 1 5134 0.01947799 biological_process
## 8658 1 5134 0.01947799 molecular_function
## 8659 1 5134 0.01947799 cellular_component
## 8660 1 5134 0.01947799 biological_process
## 8661 1 5134 0.01947799 biological_process
## 8662 1 5134 0.01947799 molecular_function
## 8663 1 5134 0.01947799 molecular_function
## 8664 1 5134 0.01947799 biological_process
## 8665 1 5134 0.01947799 molecular_function
## 8666 1 5134 0.01947799 biological_process
## 8667 1 5134 0.01947799 biological_process
## 8668 1 5134 0.01947799 biological_process
## 8669 1 5134 0.01947799 biological_process
## 8670 1 5134 0.01947799 biological_process
## 8671 1 5134 0.01947799 molecular_function
## 8672 1 5134 0.01947799 molecular_function
## 8673 1 5134 0.01947799 molecular_function
## 8674 1 5134 0.01947799 molecular_function
## 8675 1 5134 0.01947799 cellular_component
## 8676 1 5134 0.01947799 biological_process
## 8677 1 5134 0.01947799 biological_process
## 8678 1 5134 0.01947799 molecular_function
## 8679 1 5134 0.01947799 molecular_function
## 8680 1 5134 0.01947799 molecular_function
## 8681 1 5134 0.01947799 molecular_function
## 8682 1 5134 0.01947799 molecular_function
## 8683 1 5134 0.01947799 biological_process
## 8684 1 5134 0.01947799 biological_process
## 8685 1 5134 0.01947799 molecular_function
## 8686 1 5134 0.01947799 molecular_function
## 8687 1 5134 0.01947799 biological_process
## 8688 1 5134 0.01947799 biological_process
## 8689 1 5134 0.01947799 biological_process
## 8690 1 5134 0.01947799 biological_process
## 8691 1 5134 0.01947799 biological_process
## 8692 1 5134 0.01947799 biological_process
## 8693 1 5134 0.01947799 biological_process
## 8694 1 5134 0.01947799 biological_process
## 8695 1 5134 0.01947799 biological_process
## 8696 1 5134 0.01947799 molecular_function
## 8697 1 5134 0.01947799 biological_process
## 8698 1 5134 0.01947799 molecular_function
## 8699 1 5134 0.01947799 molecular_function
## 8700 1 5134 0.01947799 molecular_function
## 8701 1 5134 0.01947799 biological_process
## 8702 1 5134 0.01947799 molecular_function
## 8703 1 5134 0.01947799 biological_process
## 8704 1 5134 0.01947799 molecular_function
## 8705 1 5134 0.01947799 molecular_function
## 8706 1 5134 0.01947799 biological_process
## 8707 1 5134 0.01947799 molecular_function
## 8708 1 5134 0.01947799 molecular_function
## 8709 1 5134 0.01947799 biological_process
## 8710 1 5134 0.01947799 molecular_function
## 8711 1 5134 0.01947799 molecular_function
## 8712 1 5134 0.01947799 biological_process
## 8713 1 5134 0.01947799 biological_process
## 8714 1 5134 0.01947799 biological_process
## 8715 1 5134 0.01947799 molecular_function
## 8716 1 5134 0.01947799 molecular_function
## 8717 1 5134 0.01947799 molecular_function
## 8718 1 5134 0.01947799 molecular_function
## 8719 1 5134 0.01947799 molecular_function
## 8720 1 5134 0.01947799 cellular_component
## 8721 1 5134 0.01947799 cellular_component
## 8722 1 5134 0.01947799 molecular_function
## 8723 1 5134 0.01947799 molecular_function
## 8724 1 5134 0.01947799 biological_process
## 8725 1 5134 0.01947799 biological_process
## 8726 1 5134 0.01947799 molecular_function
## 8727 1 5134 0.01947799 cellular_component
## 8728 1 5134 0.01947799 biological_process
## 8729 1 5134 0.01947799 molecular_function
## 8730 1 5134 0.01947799 biological_process
## 8731 1 5134 0.01947799 molecular_function
## 8732 1 5134 0.01947799 biological_process
## 8733 1 5134 0.01947799 molecular_function
## 8734 1 5134 0.01947799 molecular_function
## 8735 1 5134 0.01947799 biological_process
## 8736 1 5134 0.01947799 molecular_function
## 8737 1 5134 0.01947799 biological_process
## 8738 1 5134 0.01947799 molecular_function
## 8739 1 5134 0.01947799 molecular_function
## 8740 1 5134 0.01947799 molecular_function
## 8741 1 5134 0.01947799 cellular_component
## 8742 1 5134 0.01947799 molecular_function
## 8743 1 5134 0.01947799 biological_process
## 8744 1 5134 0.01947799 molecular_function
## 8745 1 5134 0.01947799 molecular_function
## 8746 1 5134 0.01947799 molecular_function
## 8747 1 5134 0.01947799 molecular_function
## 8748 1 5134 0.01947799 biological_process
## 8749 1 5134 0.01947799 molecular_function
## 8750 1 5134 0.01947799 molecular_function
## 8751 1 5134 0.01947799 biological_process
## 8752 1 5134 0.01947799 biological_process
## 8753 1 5134 0.01947799 biological_process
## 8754 1 5134 0.01947799 molecular_function
## 8755 1 5134 0.01947799 molecular_function
## 8756 1 5134 0.01947799 molecular_function
## 8757 1 5134 0.01947799 biological_process
## 8758 1 5134 0.01947799 molecular_function
## 8759 1 5134 0.01947799 biological_process
## 8760 1 5134 0.01947799 biological_process
## 8761 1 5134 0.01947799 molecular_function
## 8762 1 5134 0.01947799 molecular_function
## 8763 1 5134 0.01947799 molecular_function
## 8764 1 5134 0.01947799 molecular_function
## 8765 1 5134 0.01947799 molecular_function
## 8766 1 5134 0.01947799 biological_process
## 8767 1 5134 0.01947799 biological_process
## 8768 1 5134 0.01947799 biological_process
## 8769 1 5134 0.01947799 cellular_component
## 8770 1 5134 0.01947799 biological_process
## 8771 1 5134 0.01947799 biological_process
## 8772 1 5134 0.01947799 biological_process
## 8773 1 5134 0.01947799 biological_process
## 8774 1 5134 0.01947799 molecular_function
## 8775 1 5134 0.01947799 biological_process
## 8776 1 5134 0.01947799 biological_process
## 8777 1 5134 0.01947799 biological_process
## 8778 1 5134 0.01947799 biological_process
## 8779 1 5134 0.01947799 biological_process
## 8780 1 5134 0.01947799 biological_process
## 8781 1 5134 0.01947799 molecular_function
## 8782 1 5134 0.01947799 biological_process
## 8783 1 5134 0.01947799 biological_process
## 8784 1 5134 0.01947799 biological_process
## 8785 1 5134 0.01947799 molecular_function
## 8786 1 5134 0.01947799 molecular_function
## 8787 1 5134 0.01947799 molecular_function
## 8788 1 5134 0.01947799 molecular_function
## 8789 1 5134 0.01947799 cellular_component
## 8790 1 5134 0.01947799 biological_process
## 8791 1 5134 0.01947799 molecular_function
## 8792 1 5134 0.01947799 molecular_function
## 8793 1 5134 0.01947799 biological_process
## 8794 1 5134 0.01947799 molecular_function
## 8795 1 5134 0.01947799 molecular_function
## 8796 1 5134 0.01947799 biological_process
## 8797 1 5134 0.01947799 biological_process
## 8798 1 5134 0.01947799 biological_process
## 8799 1 5134 0.01947799 biological_process
## 8800 1 5134 0.01947799 molecular_function
## 8801 1 5134 0.01947799 molecular_function
## 8802 1 5134 0.01947799 cellular_component
## 8803 1 5134 0.01947799 molecular_function
## 8804 1 5134 0.01947799 molecular_function
## 8805 1 5134 0.01947799 molecular_function
## 8806 1 5134 0.01947799 biological_process
## 8807 1 5134 0.01947799 molecular_function
## 8808 1 5134 0.01947799 biological_process
## 8809 1 5134 0.01947799 biological_process
## 8810 1 5134 0.01947799 cellular_component
## 8811 1 5134 0.01947799 molecular_function
## 8812 1 5134 0.01947799 molecular_function
## 8813 1 5134 0.01947799 biological_process
## 8814 1 5134 0.01947799 molecular_function
## 8815 1 5134 0.01947799 molecular_function
## 8816 1 5134 0.01947799 molecular_function
## 8817 1 5134 0.01947799 biological_process
## 8818 1 5134 0.01947799 molecular_function
## 8819 1 5134 0.01947799 biological_process
## 8820 1 5134 0.01947799 molecular_function
## 8821 1 5134 0.01947799 molecular_function
## 8822 1 5134 0.01947799 molecular_function
## 8823 1 5134 0.01947799 molecular_function
## 8824 1 5134 0.01947799 biological_process
## 8825 1 5134 0.01947799 biological_process
## 8826 1 5134 0.01947799 biological_process
## 8827 1 5134 0.01947799 molecular_function
## 8828 1 5134 0.01947799 molecular_function
## 8829 1 5134 0.01947799 biological_process
## 8830 1 5134 0.01947799 molecular_function
## 8831 1 5134 0.01947799 molecular_function
## 8832 1 5134 0.01947799 molecular_function
## 8833 1 5134 0.01947799 molecular_function
## 8834 1 5134 0.01947799 molecular_function
## 8835 1 5134 0.01947799 biological_process
## 8836 1 5134 0.01947799 molecular_function
## 8837 1 5134 0.01947799 biological_process
## 8838 1 5134 0.01947799 biological_process
## 8839 1 5134 0.01947799 biological_process
## 8840 1 5134 0.01947799 cellular_component
## 8841 1 5134 0.01947799 biological_process
## 8842 1 5134 0.01947799 molecular_function
## 8843 1 5134 0.01947799 biological_process
## 8844 1 5134 0.01947799 molecular_function
## 8845 1 5134 0.01947799 biological_process
## 8846 1 5134 0.01947799 cellular_component
## 8847 1 5134 0.01947799 molecular_function
## 8848 1 5134 0.01947799 biological_process
## 8849 1 5134 0.01947799 molecular_function
## 8850 1 5134 0.01947799 molecular_function
## 8851 1 5134 0.01947799 biological_process
## 8852 1 5134 0.01947799 biological_process
## 8853 1 5134 0.01947799 biological_process
## 8854 1 5134 0.01947799 molecular_function
## 8855 1 5134 0.01947799 molecular_function
## 8856 1 5134 0.01947799 molecular_function
## 8857 1 5134 0.01947799 molecular_function
## 8858 1 5134 0.01947799 biological_process
## 8859 1 5134 0.01947799 molecular_function
## 8860 1 5134 0.01947799 biological_process
## 8861 1 5134 0.01947799 molecular_function
## 8862 1 5134 0.01947799 molecular_function
## 8863 1 5134 0.01947799 biological_process
## 8864 1 5134 0.01947799 biological_process
## 8865 1 5134 0.01947799 molecular_function
## 8866 1 5134 0.01947799 biological_process
## 8867 1 5134 0.01947799 biological_process
## 8868 1 5134 0.01947799 molecular_function
## 8869 1 5134 0.01947799 molecular_function
## 8870 1 5134 0.01947799 molecular_function
## 8871 1 5134 0.01947799 biological_process
## 8872 1 5134 0.01947799 biological_process
## 8873 1 5134 0.01947799 cellular_component
## 8874 1 5134 0.01947799 biological_process
## 8875 1 5134 0.01947799 cellular_component
## 8876 1 5134 0.01947799 biological_process
## 8877 1 5134 0.01947799 cellular_component
## 8878 1 5134 0.01947799 biological_process
## 8879 1 5134 0.01947799 biological_process
## 8880 1 5134 0.01947799 biological_process
## 8881 1 5134 0.01947799 molecular_function
## 8882 1 5134 0.01947799 biological_process
## 8883 1 5134 0.01947799 molecular_function
## 8884 1 5134 0.01947799 cellular_component
## 8885 1 5134 0.01947799 biological_process
## 8886 1 5134 0.01947799 biological_process
## 8887 1 5134 0.01947799 biological_process
## 8888 1 5134 0.01947799 biological_process
## 8889 1 5134 0.01947799 cellular_component
## 8890 1 5134 0.01947799 cellular_component
## 8891 1 5134 0.01947799 biological_process
## 8892 1 5134 0.01947799 molecular_function
## 8893 1 5134 0.01947799 biological_process
## 8894 1 5134 0.01947799 molecular_function
## 8895 1 5134 0.01947799 molecular_function
## 8896 1 5134 0.01947799 cellular_component
## 8897 1 5134 0.01947799 molecular_function
## 8898 1 5134 0.01947799 biological_process
## 8899 1 5134 0.01947799 biological_process
## 8900 1 5134 0.01947799 biological_process
## 8901 1 5134 0.01947799 biological_process
## 8902 1 5134 0.01947799 molecular_function
## 8903 1 5134 0.01947799 biological_process
## 8904 1 5134 0.01947799 molecular_function
## 8905 1 5134 0.01947799 molecular_function
## 8906 1 5134 0.01947799 molecular_function
## 8907 1 5134 0.01947799 molecular_function
## 8908 1 5134 0.01947799 cellular_component
## 8909 1 5134 0.01947799 cellular_component
## 8910 1 5134 0.01947799 molecular_function
## 8911 1 5134 0.01947799 biological_process
## 8912 1 5134 0.01947799 biological_process
## 8913 1 5134 0.01947799 biological_process
## 8914 1 5134 0.01947799 biological_process
## 8915 1 5134 0.01947799 biological_process
## 8916 1 5134 0.01947799 biological_process
## 8917 1 5134 0.01947799 biological_process
## 8918 1 5134 0.01947799 biological_process
## 8919 1 5134 0.01947799 biological_process
## 8920 1 5134 0.01947799 biological_process
## 8921 1 5134 0.01947799 biological_process
## 8922 1 5134 0.01947799 biological_process
## 8923 1 5134 0.01947799 biological_process
## 8924 1 5134 0.01947799 molecular_function
## 8925 1 5134 0.01947799 molecular_function
## 8926 1 5134 0.01947799 molecular_function
## 8927 1 5134 0.01947799 biological_process
## 8928 1 5134 0.01947799 molecular_function
## 8929 1 5134 0.01947799 biological_process
## 8930 1 5134 0.01947799 biological_process
## 8931 1 5134 0.01947799 biological_process
## 8932 1 5134 0.01947799 biological_process
## 8933 1 5134 0.01947799 biological_process
## 8934 1 5134 0.01947799 biological_process
## 8935 1 5134 0.01947799 molecular_function
## 8936 1 5134 0.01947799 molecular_function
## 8937 1 5134 0.01947799 cellular_component
## 8938 1 5134 0.01947799 molecular_function
## 8939 1 5134 0.01947799 molecular_function
## 8940 1 5134 0.01947799 molecular_function
## 8941 1 5134 0.01947799 molecular_function
## 8942 1 5134 0.01947799 biological_process
## 8943 1 5134 0.01947799 biological_process
## 8944 1 5134 0.01947799 cellular_component
## 8945 1 5134 0.01947799 cellular_component
## 8946 1 5134 0.01947799 biological_process
## 8947 1 5134 0.01947799 biological_process
## 8948 1 5134 0.01947799 molecular_function
## 8949 1 5134 0.01947799 molecular_function
## 8950 1 5134 0.01947799 biological_process
## 8951 1 5134 0.01947799 biological_process
## 8952 1 5134 0.01947799 biological_process
## 8953 1 5134 0.01947799 biological_process
## 8954 1 5134 0.01947799 molecular_function
## 8955 1 5134 0.01947799 biological_process
## 8956 1 5134 0.01947799 molecular_function
## 8957 1 5134 0.01947799 molecular_function
## 8958 1 5134 0.01947799 molecular_function
## 8959 1 5134 0.01947799 molecular_function
## 8960 1 5134 0.01947799 molecular_function
## 8961 1 5134 0.01947799 molecular_function
## 8962 1 5134 0.01947799 molecular_function
## 8963 1 5134 0.01947799 biological_process
## 8964 1 5134 0.01947799 biological_process
## 8965 1 5134 0.01947799 biological_process
## 8966 1 5134 0.01947799 biological_process
## 8967 1 5134 0.01947799 biological_process
## 8968 1 5134 0.01947799 biological_process
## 8969 1 5134 0.01947799 biological_process
## 8970 1 5134 0.01947799 biological_process
## 8971 1 5134 0.01947799 biological_process
## 8972 1 5134 0.01947799 cellular_component
## 8973 1 5134 0.01947799 biological_process
## 8974 1 5134 0.01947799 biological_process
## 8975 1 5134 0.01947799 biological_process
## 8976 1 5134 0.01947799 biological_process
## 8977 1 5134 0.01947799 biological_process
## 8978 1 5134 0.01947799 biological_process
## 8979 1 5134 0.01947799 biological_process
## 8980 1 5134 0.01947799 biological_process
## 8981 1 5134 0.01947799 biological_process
## 8982 1 5134 0.01947799 molecular_function
## 8983 1 5134 0.01947799 molecular_function
## 8984 1 5134 0.01947799 molecular_function
## 8985 1 5134 0.01947799 molecular_function
## 8986 1 5134 0.01947799 cellular_component
## 8987 1 5134 0.01947799 molecular_function
## 8988 1 5134 0.01947799 molecular_function
## 8989 1 5134 0.01947799 molecular_function
## 8990 1 5134 0.01947799 molecular_function
## 8991 1 5134 0.01947799 molecular_function
## 8992 1 5134 0.01947799 molecular_function
## 8993 1 5134 0.01947799 molecular_function
## 8994 1 5134 0.01947799 molecular_function
## 8995 1 5134 0.01947799 biological_process
## 8996 1 5134 0.01947799 biological_process
## 8997 1 5134 0.01947799 molecular_function
## 8998 1 5134 0.01947799 biological_process
## 8999 1 5134 0.01947799 biological_process
## 9000 1 5134 0.01947799 biological_process
## 9001 1 5134 0.01947799 molecular_function
## 9002 1 5134 0.01947799 biological_process
## 9003 1 5134 0.01947799 molecular_function
## 9004 1 5134 0.01947799 cellular_component
## 9005 1 5134 0.01947799 cellular_component
## 9006 1 5134 0.01947799 biological_process
## 9007 1 5134 0.01947799 biological_process
## 9008 1 5134 0.01947799 molecular_function
## 9009 1 5134 0.01947799 biological_process
## 9010 1 5134 0.01947799 biological_process
## 9011 1 5134 0.01947799 biological_process
## 9012 1 5134 0.01947799 molecular_function
## 9013 1 5134 0.01947799 molecular_function
## 9014 1 5134 0.01947799 molecular_function
## 9015 1 5134 0.01947799 molecular_function
## 9016 1 5134 0.01947799 biological_process
## 9017 1 5134 0.01947799 molecular_function
## 9018 1 5134 0.01947799 molecular_function
## 9019 1 5134 0.01947799 molecular_function
## 9020 1 5134 0.01947799 molecular_function
## 9021 1 5134 0.01947799 molecular_function
## 9022 1 5134 0.01947799 molecular_function
## 9023 1 5134 0.01947799 biological_process
## 9024 1 5134 0.01947799 molecular_function
## 9025 1 5134 0.01947799 biological_process
## 9026 1 5134 0.01947799 biological_process
## 9027 1 5134 0.01947799 molecular_function
## 9028 1 5134 0.01947799 molecular_function
## 9029 1 5134 0.01947799 molecular_function
## 9030 1 5134 0.01947799 biological_process
## 9031 1 5134 0.01947799 molecular_function
## 9032 1 5134 0.01947799 molecular_function
## 9033 1 5134 0.01947799 biological_process
## 9034 1 5134 0.01947799 molecular_function
## 9035 1 5134 0.01947799 molecular_function
## 9036 1 5134 0.01947799 biological_process
## 9037 1 5134 0.01947799 biological_process
## 9038 1 5134 0.01947799 biological_process
## 9039 1 5134 0.01947799 biological_process
## 9040 1 5134 0.01947799 cellular_component
## 9041 1 5134 0.01947799 cellular_component
## 9042 1 5134 0.01947799 biological_process
## 9043 1 5134 0.01947799 biological_process
## 9044 1 5134 0.01947799 molecular_function
## 9045 1 5134 0.01947799 biological_process
## 9046 1 5134 0.01947799 biological_process
## 9047 1 5134 0.01947799 biological_process
## 9048 1 5134 0.01947799 biological_process
## 9049 1 5134 0.01947799 biological_process
## 9050 1 5134 0.01947799 biological_process
## 9051 1 5134 0.01947799 biological_process
## 9052 1 5134 0.01947799 biological_process
## 9053 1 5134 0.01947799 biological_process
## 9054 1 5134 0.01947799 biological_process
## 9055 1 5134 0.01947799 biological_process
## 9056 1 5134 0.01947799 molecular_function
## 9057 1 5134 0.01947799 cellular_component
## 9058 1 5134 0.01947799 biological_process
## 9059 1 5134 0.01947799 molecular_function
## 9060 1 5134 0.01947799 biological_process
## 9061 1 5134 0.01947799 biological_process
## 9062 1 5134 0.01947799 biological_process
## 9063 1 5134 0.01947799 biological_process
## 9064 1 5134 0.01947799 biological_process
## 9065 1 5134 0.01947799 cellular_component
## 9066 1 5134 0.01947799 cellular_component
## 9067 1 5134 0.01947799 biological_process
## 9068 1 5134 0.01947799 biological_process
## 9069 1 5134 0.01947799 biological_process
## 9070 1 5134 0.01947799 biological_process
## 9071 1 5134 0.01947799 molecular_function
## 9072 1 5134 0.01947799 molecular_function
## 9073 1 5134 0.01947799 biological_process
## 9074 1 5134 0.01947799 molecular_function
## 9075 1 5134 0.01947799 molecular_function
## 9076 1 5134 0.01947799 molecular_function
## 9077 1 5134 0.01947799 molecular_function
## 9078 1 5134 0.01947799 molecular_function
## 9079 1 5134 0.01947799 molecular_function
## 9080 1 5134 0.01947799 molecular_function
## 9081 1 5134 0.01947799 biological_process
## 9082 1 5134 0.01947799 molecular_function
## 9083 1 5134 0.01947799 molecular_function
## 9084 1 5134 0.01947799 molecular_function
## 9085 1 5134 0.01947799 biological_process
## 9086 1 5134 0.01947799 biological_process
## 9087 1 5134 0.01947799 cellular_component
## 9088 1 5134 0.01947799 molecular_function
## 9089 1 5134 0.01947799 molecular_function
## 9090 1 5134 0.01947799 cellular_component
## 9091 1 5134 0.01947799 cellular_component
## 9092 1 5134 0.01947799 cellular_component
## 9093 1 5134 0.01947799 cellular_component
## 9094 1 5134 0.01947799 biological_process
## 9095 1 5134 0.01947799 biological_process
## 9096 1 5134 0.01947799 cellular_component
## 9097 1 5134 0.01947799 cellular_component
## 9098 1 5134 0.01947799 cellular_component
## 9099 1 5134 0.01947799 cellular_component
## 9100 1 5134 0.01947799 cellular_component
## 9101 1 5134 0.01947799 cellular_component
## 9102 1 5134 0.01947799 cellular_component
## 9103 1 5134 0.01947799 cellular_component
## 9104 1 5134 0.01947799 cellular_component
## 9105 1 5134 0.01947799 cellular_component
## 9106 1 5134 0.01947799 cellular_component
## 9107 1 5134 0.01947799 cellular_component
## 9108 1 5134 0.01947799 cellular_component
## 9109 1 5134 0.01947799 cellular_component
## 9110 1 5134 0.01947799 cellular_component
## 9111 1 5134 0.01947799 cellular_component
## 9112 1 5134 0.01947799 molecular_function
## 9113 1 5134 0.01947799 molecular_function
## 9114 1 5134 0.01947799 molecular_function
## 9115 1 5134 0.01947799 molecular_function
## 9116 1 5134 0.01947799 molecular_function
## 9117 1 5134 0.01947799 biological_process
## 9118 1 5134 0.01947799 cellular_component
## 9119 1 5134 0.01947799 biological_process
## 9120 1 5134 0.01947799 molecular_function
## 9121 1 5134 0.01947799 molecular_function
## 9122 1 5134 0.01947799 molecular_function
## 9123 1 5134 0.01947799 molecular_function
## 9124 1 5134 0.01947799 cellular_component
## 9125 1 5134 0.01947799 molecular_function
## 9126 1 5134 0.01947799 molecular_function
## 9127 1 5134 0.01947799 cellular_component
## 9128 1 5134 0.01947799 molecular_function
## 9129 1 5134 0.01947799 cellular_component
## 9130 1 5134 0.01947799 cellular_component
## 9131 1 5134 0.01947799 molecular_function
## 9132 1 5134 0.01947799 molecular_function
## 9133 1 5134 0.01947799 molecular_function
## 9134 1 5134 0.01947799 cellular_component
## 9135 1 5134 0.01947799 molecular_function
## 9136 1 5134 0.01947799 biological_process
## 9137 1 5134 0.01947799 cellular_component
## 9138 1 5134 0.01947799 cellular_component
## 9139 1 5134 0.01947799 biological_process
## 9140 1 5134 0.01947799 biological_process
## 9141 1 5134 0.01947799 biological_process
## 9142 1 5134 0.01947799 biological_process
## 9143 1 5134 0.01947799 cellular_component
## 9144 1 5134 0.01947799 biological_process
## 9145 1 5134 0.01947799 biological_process
## 9146 1 5134 0.01947799 molecular_function
## 9147 1 5134 0.01947799 biological_process
## 9148 1 5134 0.01947799 biological_process
## 9149 1 5134 0.01947799 biological_process
## 9150 1 5134 0.01947799 molecular_function
## 9151 1 5134 0.01947799 biological_process
## 9152 1 5134 0.01947799 biological_process
## 9153 1 5134 0.01947799 cellular_component
## 9154 1 5134 0.01947799 cellular_component
## 9155 1 5134 0.01947799 cellular_component
## 9156 1 5134 0.01947799 molecular_function
## 9157 1 5134 0.01947799 biological_process
## 9158 1 5134 0.01947799 molecular_function
## 9159 1 5134 0.01947799 molecular_function
## 9160 1 5134 0.01947799 cellular_component
## 9161 1 5134 0.01947799 biological_process
## 9162 1 5134 0.01947799 biological_process
## 9163 1 5134 0.01947799 biological_process
## 9164 1 5134 0.01947799 biological_process
## 9165 1 5134 0.01947799 biological_process
## 9166 1 5134 0.01947799 molecular_function
## 9167 1 5134 0.01947799 molecular_function
## 9168 1 5134 0.01947799 molecular_function
## 9169 1 5134 0.01947799 biological_process
## 9170 1 5134 0.01947799 biological_process
## 9171 1 5134 0.01947799 biological_process
## 9172 1 5134 0.01947799 biological_process
## 9173 1 5134 0.01947799 biological_process
## 9174 1 5134 0.01947799 molecular_function
## 9175 1 5134 0.01947799 cellular_component
## 9176 1 5134 0.01947799 molecular_function
## 9177 1 5134 0.01947799 biological_process
## 9178 1 5134 0.01947799 biological_process
## 9179 1 5134 0.01947799 molecular_function
## 9180 1 5134 0.01947799 biological_process
## 9181 1 5134 0.01947799 cellular_component
## 9182 1 5134 0.01947799 molecular_function
## 9183 1 5134 0.01947799 cellular_component
## 9184 1 5134 0.01947799 molecular_function
## 9185 1 5134 0.01947799 biological_process
## 9186 1 5134 0.01947799 molecular_function
## 9187 1 5134 0.01947799 biological_process
## 9188 1 5134 0.01947799 biological_process
## 9189 1 5134 0.01947799 biological_process
## 9190 1 5134 0.01947799 molecular_function
## 9191 1 5134 0.01947799 molecular_function
## 9192 1 5134 0.01947799 cellular_component
## 9193 1 5134 0.01947799 biological_process
## 9194 1 5134 0.01947799 molecular_function
## 9195 1 5134 0.01947799 biological_process
## 9196 1 5134 0.01947799 molecular_function
## 9197 1 5134 0.01947799 biological_process
## 9198 1 5134 0.01947799 molecular_function
## 9199 1 5134 0.01947799 biological_process
## 9200 1 5134 0.01947799 biological_process
## 9201 1 5134 0.01947799 molecular_function
## 9202 1 5134 0.01947799 molecular_function
## 9203 1 5134 0.01947799 biological_process
## 9204 1 5134 0.01947799 biological_process
## 9205 1 5134 0.01947799 molecular_function
## 9206 1 5134 0.01947799 biological_process
## 9207 1 5134 0.01947799 biological_process
## 9208 1 5134 0.01947799 cellular_component
## 9209 1 5134 0.01947799 molecular_function
## 9210 1 5134 0.01947799 biological_process
## 9211 1 5134 0.01947799 molecular_function
## 9212 1 5134 0.01947799 molecular_function
## 9213 1 5134 0.01947799 molecular_function
## 9214 1 5134 0.01947799 molecular_function
## 9215 1 5134 0.01947799 biological_process
## 9216 1 5134 0.01947799 molecular_function
## 9217 1 5134 0.01947799 molecular_function
## 9218 1 5134 0.01947799 biological_process
## 9219 1 5134 0.01947799 biological_process
## 9220 1 5134 0.01947799 biological_process
## 9221 1 5134 0.01947799 molecular_function
## 9222 1 5134 0.01947799 molecular_function
## 9223 1 5134 0.01947799 molecular_function
## 9224 1 5134 0.01947799 molecular_function
## 9225 1 5134 0.01947799 molecular_function
## 9226 1 5134 0.01947799 molecular_function
## 9227 1 5134 0.01947799 biological_process
## 9228 1 5134 0.01947799 molecular_function
## 9229 1 5134 0.01947799 molecular_function
## 9230 1 5134 0.01947799 molecular_function
## 9231 1 5134 0.01947799 molecular_function
## 9232 1 5134 0.01947799 biological_process
## 9233 1 5134 0.01947799 molecular_function
## 9234 1 5134 0.01947799 biological_process
## 9235 1 5134 0.01947799 biological_process
## 9236 1 5134 0.01947799 molecular_function
## 9237 1 5134 0.01947799 molecular_function
## 9238 1 5134 0.01947799 biological_process
## 9239 1 5134 0.01947799 biological_process
## 9240 1 5134 0.01947799 molecular_function
## 9241 1 5134 0.01947799 molecular_function
## 9242 1 5134 0.01947799 molecular_function
## 9243 1 5134 0.01947799 molecular_function
## 9244 1 5134 0.01947799 biological_process
## 9245 1 5134 0.01947799 biological_process
## 9246 1 5134 0.01947799 molecular_function
## 9247 1 5134 0.01947799 molecular_function
## 9248 1 5134 0.01947799 biological_process
## 9249 1 5134 0.01947799 biological_process
## 9250 1 5134 0.01947799 biological_process
## 9251 1 5134 0.01947799 molecular_function
## 9252 1 5134 0.01947799 biological_process
## 9253 1 5134 0.01947799 molecular_function
## 9254 1 5134 0.01947799 biological_process
## 9255 1 5134 0.01947799 molecular_function
## 9256 1 5134 0.01947799 cellular_component
## 9257 1 5134 0.01947799 cellular_component
## 9258 1 5134 0.01947799 cellular_component
## 9259 1 5134 0.01947799 cellular_component
## 9260 1 5134 0.01947799 molecular_function
## 9261 1 5134 0.01947799 cellular_component
## 9262 1 5134 0.01947799 biological_process
## 9263 1 5134 0.01947799 cellular_component
## 9264 1 5134 0.01947799 biological_process
## 9265 1 5134 0.01947799 cellular_component
## 9266 1 5134 0.01947799 molecular_function
## 9267 1 5134 0.01947799 molecular_function
## 9268 1 5134 0.01947799 biological_process
## 9269 1 5134 0.01947799 molecular_function
## 9270 1 5134 0.01947799 biological_process
## 9271 1 5134 0.01947799 biological_process
## 9272 1 5134 0.01947799 molecular_function
## 9273 1 5134 0.01947799 biological_process
## 9274 1 5134 0.01947799 molecular_function
## 9275 1 5134 0.01947799 molecular_function
## 9276 1 5134 0.01947799 molecular_function
## 9277 1 5134 0.01947799 biological_process
## 9278 1 5134 0.01947799 biological_process
## 9279 1 5134 0.01947799 biological_process
## 9280 1 5134 0.01947799 molecular_function
## 9281 1 5134 0.01947799 biological_process
## 9282 1 5134 0.01947799 molecular_function
## 9283 1 5134 0.01947799 biological_process
## 9284 1 5134 0.01947799 biological_process
## 9285 1 5134 0.01947799 biological_process
## 9286 1 5134 0.01947799 biological_process
## 9287 1 5134 0.01947799 biological_process
## 9288 1 5134 0.01947799 biological_process
## 9289 1 5134 0.01947799 biological_process
## 9290 1 5134 0.01947799 molecular_function
## 9291 1 5134 0.01947799 molecular_function
## 9292 1 5134 0.01947799 biological_process
## 9293 1 5134 0.01947799 molecular_function
## 9294 1 5134 0.01947799 molecular_function
## 9295 1 5134 0.01947799 molecular_function
## 9296 1 5134 0.01947799 biological_process
## 9297 1 5134 0.01947799 molecular_function
## 9298 1 5134 0.01947799 molecular_function
## 9299 1 5134 0.01947799 molecular_function
## 9300 1 5134 0.01947799 molecular_function
## 9301 1 5134 0.01947799 biological_process
## 9302 1 5134 0.01947799 molecular_function
## 9303 1 5134 0.01947799 molecular_function
## 9304 1 5134 0.01947799 molecular_function
## 9305 1 5134 0.01947799 molecular_function
## 9306 1 5134 0.01947799 molecular_function
## 9307 1 5134 0.01947799 molecular_function
## 9308 1 5134 0.01947799 biological_process
## 9309 1 5134 0.01947799 biological_process
## 9310 1 5134 0.01947799 cellular_component
## 9311 1 5134 0.01947799 biological_process
## 9312 1 5134 0.01947799 biological_process
## 9313 1 5134 0.01947799 molecular_function
## 9314 1 5134 0.01947799 molecular_function
## 9315 1 5134 0.01947799 biological_process
## 9316 1 5134 0.01947799 biological_process
## 9317 1 5134 0.01947799 biological_process
## 9318 1 5134 0.01947799 molecular_function
## 9319 1 5134 0.01947799 molecular_function
## 9320 1 5134 0.01947799 molecular_function
## 9321 1 5134 0.01947799 molecular_function
## 9322 1 5134 0.01947799 molecular_function
## 9323 1 5134 0.01947799 molecular_function
## 9324 1 5134 0.01947799 molecular_function
## 9325 1 5134 0.01947799 molecular_function
## 9326 1 5134 0.01947799 molecular_function
## 9327 1 5134 0.01947799 biological_process
## 9328 1 5134 0.01947799 biological_process
## 9329 1 5134 0.01947799 biological_process
## 9330 1 5134 0.01947799 molecular_function
## 9331 1 5134 0.01947799 biological_process
## 9332 1 5134 0.01947799 molecular_function
## 9333 1 5134 0.01947799 molecular_function
## 9334 1 5134 0.01947799 cellular_component
## 9335 1 5134 0.01947799 biological_process
## 9336 1 5134 0.01947799 molecular_function
## 9337 1 5134 0.01947799 biological_process
## 9338 1 5134 0.01947799 cellular_component
## 9339 1 5134 0.01947799 biological_process
## 9340 1 5134 0.01947799 biological_process
## 9341 1 5134 0.01947799 biological_process
## 9342 1 5134 0.01947799 biological_process
## 9343 1 5134 0.01947799 molecular_function
## 9344 1 5134 0.01947799 biological_process
## 9345 1 5134 0.01947799 biological_process
## 9346 1 5134 0.01947799 biological_process
## 9347 1 5134 0.01947799 biological_process
## 9348 1 5134 0.01947799 biological_process
## 9349 1 5134 0.01947799 molecular_function
## 9350 1 5134 0.01947799 cellular_component
## 9351 1 5134 0.01947799 biological_process
## 9352 1 5134 0.01947799 cellular_component
## 9353 1 5134 0.01947799 cellular_component
## 9354 1 5134 0.01947799 cellular_component
## 9355 1 5134 0.01947799 biological_process
## 9356 1 5134 0.01947799 molecular_function
## 9357 1 5134 0.01947799 molecular_function
## 9358 1 5134 0.01947799 biological_process
## 9359 1 5134 0.01947799 biological_process
## 9360 1 5134 0.01947799 molecular_function
## 9361 1 5134 0.01947799 cellular_component
## 9362 1 5134 0.01947799 biological_process
## 9363 1 5134 0.01947799 biological_process
## 9364 1 5134 0.01947799 biological_process
## 9365 1 5134 0.01947799 biological_process
## 9366 1 5134 0.01947799 biological_process
## 9367 1 5134 0.01947799 biological_process
## 9368 1 5134 0.01947799 biological_process
## 9369 1 5134 0.01947799 biological_process
## 9370 1 5134 0.01947799 biological_process
## 9371 1 5134 0.01947799 biological_process
## 9372 1 5134 0.01947799 biological_process
## 9373 1 5134 0.01947799 molecular_function
## 9374 1 5134 0.01947799 molecular_function
## 9375 1 5134 0.01947799 biological_process
## 9376 1 5134 0.01947799 biological_process
## 9377 1 5134 0.01947799 biological_process
## 9378 1 5134 0.01947799 biological_process
## 9379 1 5134 0.01947799 biological_process
## 9380 1 5134 0.01947799 biological_process
## 9381 1 5134 0.01947799 molecular_function
## 9382 1 5134 0.01947799 biological_process
## 9383 1 5134 0.01947799 biological_process
## 9384 1 5134 0.01947799 biological_process
## 9385 1 5134 0.01947799 molecular_function
## 9386 1 5134 0.01947799 molecular_function
## 9387 1 5134 0.01947799 cellular_component
## 9388 1 5134 0.01947799 biological_process
## 9389 1 5134 0.01947799 biological_process
## 9390 1 5134 0.01947799 biological_process
## 9391 1 5134 0.01947799 biological_process
## 9392 1 5134 0.01947799 biological_process
## 9393 1 5134 0.01947799 biological_process
## 9394 1 5134 0.01947799 biological_process
## 9395 1 5134 0.01947799 molecular_function
## 9396 1 5134 0.01947799 molecular_function
## 9397 1 5134 0.01947799 biological_process
## 9398 1 5134 0.01947799 molecular_function
## 9399 1 5134 0.01947799 molecular_function
## 9400 1 5134 0.01947799 molecular_function
## 9401 1 5134 0.01947799 cellular_component
## 9402 1 5134 0.01947799 biological_process
## 9403 1 5134 0.01947799 biological_process
## 9404 1 5134 0.01947799 cellular_component
## 9405 1 5134 0.01947799 biological_process
## 9406 1 5134 0.01947799 biological_process
## 9407 1 5134 0.01947799 biological_process
## 9408 1 5134 0.01947799 biological_process
## 9409 1 5134 0.01947799 biological_process
## 9410 1 5134 0.01947799 biological_process
## 9411 1 5134 0.01947799 molecular_function
## 9412 1 5134 0.01947799 biological_process
## 9413 1 5134 0.01947799 biological_process
## 9414 1 5134 0.01947799 molecular_function
## 9415 1 5134 0.01947799 biological_process
## 9416 1 5134 0.01947799 molecular_function
## 9417 1 5134 0.01947799 biological_process
## 9418 1 5134 0.01947799 biological_process
## 9419 1 5134 0.01947799 biological_process
## 9420 1 5134 0.01947799 biological_process
## 9421 1 5134 0.01947799 biological_process
## 9422 1 5134 0.01947799 biological_process
## 9423 1 5134 0.01947799 biological_process
## 9424 1 5134 0.01947799 biological_process
## 9425 1 5134 0.01947799 biological_process
## 9426 1 5134 0.01947799 biological_process
## 9427 1 5134 0.01947799 cellular_component
## 9428 1 5134 0.01947799 cellular_component
## 9429 1 5134 0.01947799 molecular_function
## 9430 1 5134 0.01947799 biological_process
## 9431 1 5134 0.01947799 molecular_function
## 9432 1 5134 0.01947799 biological_process
## 9433 1 5134 0.01947799 cellular_component
## 9434 1 5134 0.01947799 biological_process
## 9435 1 5134 0.01947799 biological_process
## 9436 1 5134 0.01947799 biological_process
## 9437 1 5134 0.01947799 biological_process
## 9438 1 5134 0.01947799 biological_process
## 9439 1 5134 0.01947799 biological_process
## 9440 1 5134 0.01947799 biological_process
## 9441 1 5134 0.01947799 cellular_component
## 9442 1 5134 0.01947799 biological_process
## 9443 1 5134 0.01947799 biological_process
## 9444 1 5134 0.01947799 biological_process
## 9445 1 5134 0.01947799 biological_process
## 9446 1 5134 0.01947799 biological_process
## 9447 1 5134 0.01947799 cellular_component
## 9448 1 5134 0.01947799 biological_process
## 9449 1 5134 0.01947799 biological_process
## 9450 1 5134 0.01947799 biological_process
## 9451 1 5134 0.01947799 biological_process
## 9452 1 5134 0.01947799 biological_process
## 9453 1 5134 0.01947799 biological_process
## 9454 1 5134 0.01947799 biological_process
## 9455 1 5134 0.01947799 biological_process
## 9456 1 5134 0.01947799 biological_process
## 9457 1 5134 0.01947799 biological_process
## 9458 1 5134 0.01947799 biological_process
## 9459 1 5134 0.01947799 biological_process
## 9460 1 5134 0.01947799 biological_process
## 9461 1 5134 0.01947799 molecular_function
## 9462 1 5134 0.01947799 biological_process
## 9463 1 5134 0.01947799 biological_process
## 9464 1 5134 0.01947799 biological_process
## 9465 1 5134 0.01947799 biological_process
## 9466 1 5134 0.01947799 biological_process
## 9467 1 5134 0.01947799 biological_process
## 9468 1 5134 0.01947799 biological_process
## 9469 1 5134 0.01947799 biological_process
## 9470 1 5134 0.01947799 biological_process
## 9471 1 5134 0.01947799 biological_process
## 9472 1 5134 0.01947799 biological_process
## 9473 1 5134 0.01947799 biological_process
## 9474 1 5134 0.01947799 biological_process
## 9475 1 5134 0.01947799 molecular_function
## 9476 1 5134 0.01947799 molecular_function
## 9477 1 5134 0.01947799 molecular_function
## 9478 1 5134 0.01947799 molecular_function
## 9479 1 5134 0.01947799 biological_process
## 9480 1 5134 0.01947799 molecular_function
## 9481 1 5134 0.01947799 molecular_function
## 9482 1 5134 0.01947799 molecular_function
## 9483 1 5134 0.01947799 cellular_component
## 9484 1 5134 0.01947799 molecular_function
## 9485 1 5134 0.01947799 molecular_function
## 9486 1 5134 0.01947799 molecular_function
## 9487 1 5134 0.01947799 biological_process
## 9488 1 5134 0.01947799 biological_process
## 9489 1 5134 0.01947799 biological_process
## 9490 1 5134 0.01947799 molecular_function
## 9491 1 5134 0.01947799 molecular_function
## 9492 1 5134 0.01947799 molecular_function
## 9493 1 5134 0.01947799 molecular_function
## 9494 1 5134 0.01947799 molecular_function
## 9495 1 5134 0.01947799 molecular_function
## 9496 1 5134 0.01947799 biological_process
## 9497 1 5134 0.01947799 biological_process
## 9498 1 5134 0.01947799 biological_process
## 9499 1 5134 0.01947799 molecular_function
## 9500 1 5134 0.01947799 biological_process
## 9501 1 5134 0.01947799 molecular_function
## 9502 1 5134 0.01947799 biological_process
## 9503 1 5134 0.01947799 cellular_component
## 9504 1 5134 0.01947799 biological_process
## 9505 1 5134 0.01947799 biological_process
## 9506 1 5134 0.01947799 cellular_component
## 9507 1 5134 0.01947799 molecular_function
## 9508 1 5134 0.01947799 molecular_function
## 9509 1 5134 0.01947799 biological_process
## 9510 1 5134 0.01947799 biological_process
## 9511 1 5134 0.01947799 biological_process
## 9512 1 5134 0.01947799 biological_process
## 9513 1 5134 0.01947799 biological_process
## 9514 1 5134 0.01947799 biological_process
## 9515 1 5134 0.01947799 molecular_function
## 9516 1 5134 0.01947799 biological_process
## 9517 1 5134 0.01947799 cellular_component
## 9518 1 5134 0.01947799 cellular_component
## 9519 1 5134 0.01947799 molecular_function
## 9520 1 5134 0.01947799 biological_process
## 9521 1 5134 0.01947799 molecular_function
## 9522 1 5134 0.01947799 biological_process
## 9523 1 5134 0.01947799 biological_process
## 9524 1 5134 0.01947799 biological_process
## 9525 1 5134 0.01947799 biological_process
## 9526 1 5134 0.01947799 biological_process
## 9527 1 5134 0.01947799 biological_process
## 9528 1 5134 0.01947799 cellular_component
## 9529 1 5134 0.01947799 biological_process
## 9530 1 5134 0.01947799 cellular_component
## 9531 1 5134 0.01947799 cellular_component
## 9532 1 5134 0.01947799 cellular_component
## 9533 1 5134 0.01947799 biological_process
## 9534 1 5134 0.01947799 cellular_component
## 9535 1 5134 0.01947799 biological_process
## 9536 1 5134 0.01947799 cellular_component
## 9537 1 5134 0.01947799 biological_process
## 9538 1 5134 0.01947799 biological_process
## 9539 1 5134 0.01947799 biological_process
## 9540 1 5134 0.01947799 biological_process
## 9541 1 5134 0.01947799 biological_process
## 9542 1 5134 0.01947799 biological_process
## 9543 1 5134 0.01947799 biological_process
## 9544 1 5134 0.01947799 biological_process
## 9545 1 5134 0.01947799 biological_process
## 9546 1 5134 0.01947799 biological_process
## 9547 1 5134 0.01947799 cellular_component
## 9548 1 5134 0.01947799 biological_process
## 9549 1 5134 0.01947799 cellular_component
## 9550 1 5134 0.01947799 biological_process
## 9551 1 5134 0.01947799 biological_process
## 9552 1 5134 0.01947799 biological_process
## 9553 1 5134 0.01947799 biological_process
## 9554 1 5134 0.01947799 biological_process
## 9555 1 5134 0.01947799 biological_process
## 9556 1 5134 0.01947799 molecular_function
## 9557 1 5134 0.01947799 biological_process
## 9558 1 5134 0.01947799 biological_process
## 9559 1 5134 0.01947799 biological_process
## 9560 1 5134 0.01947799 biological_process
## 9561 1 5134 0.01947799 biological_process
## 9562 1 5134 0.01947799 molecular_function
## 9563 1 5134 0.01947799 cellular_component
## 9564 1 5134 0.01947799 cellular_component
## 9565 1 5134 0.01947799 biological_process
## 9566 1 5134 0.01947799 biological_process
## 9567 1 5134 0.01947799 biological_process
## 9568 1 5134 0.01947799 biological_process
## 9569 1 5134 0.01947799 biological_process
## 9570 1 5134 0.01947799 biological_process
## 9571 1 5134 0.01947799 biological_process
## 9572 1 5134 0.01947799 biological_process
## 9573 1 5134 0.01947799 biological_process
## 9574 1 5134 0.01947799 molecular_function
## 9575 1 5134 0.01947799 biological_process
## 9576 1 5134 0.01947799 biological_process
## 9577 1 5134 0.01947799 molecular_function
## 9578 1 5134 0.01947799 biological_process
## 9579 1 5134 0.01947799 molecular_function
## 9580 1 5134 0.01947799 molecular_function
## 9581 1 5134 0.01947799 biological_process
## 9582 1 5134 0.01947799 biological_process
## 9583 1 5134 0.01947799 cellular_component
## 9584 1 5134 0.01947799 biological_process
## 9585 1 5134 0.01947799 biological_process
## 9586 1 5134 0.01947799 molecular_function
## 9587 1 5134 0.01947799 biological_process
## 9588 1 5134 0.01947799 biological_process
## 9589 1 5134 0.01947799 biological_process
## 9590 1 5134 0.01947799 biological_process
## 9591 1 5134 0.01947799 biological_process
## 9592 1 5134 0.01947799 molecular_function
## 9593 1 5134 0.01947799 molecular_function
## 9594 1 5134 0.01947799 molecular_function
## 9595 1 5134 0.01947799 biological_process
## 9596 1 5134 0.01947799 molecular_function
## 9597 1 5134 0.01947799 molecular_function
## 9598 1 5134 0.01947799 molecular_function
## 9599 1 5134 0.01947799 biological_process
## 9600 1 5134 0.01947799 biological_process
## 9601 1 5134 0.01947799 molecular_function
## 9602 1 5134 0.01947799 biological_process
## 9603 1 5134 0.01947799 biological_process
## 9604 1 5134 0.01947799 cellular_component
## 9605 1 5134 0.01947799 cellular_component
## 9606 1 5134 0.01947799 biological_process
## 9607 1 5134 0.01947799 biological_process
## 9608 1 5134 0.01947799 biological_process
## 9609 1 5134 0.01947799 cellular_component
## 9610 1 5134 0.01947799 biological_process
## 9611 1 5134 0.01947799 biological_process
## 9612 1 5134 0.01947799 molecular_function
## 9613 1 5134 0.01947799 cellular_component
## 9614 1 5134 0.01947799 cellular_component
## 9615 1 5134 0.01947799 biological_process
## 9616 1 5134 0.01947799 cellular_component
## 9617 1 5134 0.01947799 biological_process
## 9618 1 5134 0.01947799 biological_process
## 9619 1 5134 0.01947799 cellular_component
## 9620 1 5134 0.01947799 cellular_component
## 9621 1 5134 0.01947799 molecular_function
## 9622 1 5134 0.01947799 biological_process
## 9623 1 5134 0.01947799 biological_process
## 9624 1 5134 0.01947799 biological_process
## 9625 1 5134 0.01947799 biological_process
## 9626 1 5134 0.01947799 biological_process
## 9627 1 5134 0.01947799 biological_process
## 9628 1 5134 0.01947799 molecular_function
## 9629 1 5134 0.01947799 molecular_function
## 9630 1 5134 0.01947799 biological_process
## 9631 1 5134 0.01947799 biological_process
## 9632 1 5134 0.01947799 biological_process
## 9633 1 5134 0.01947799 biological_process
## 9634 1 5134 0.01947799 biological_process
## 9635 1 5134 0.01947799 biological_process
## 9636 1 5134 0.01947799 molecular_function
## 9637 1 5134 0.01947799 molecular_function
## 9638 1 5134 0.01947799 molecular_function
## 9639 1 5134 0.01947799 cellular_component
## 9640 1 5134 0.01947799 cellular_component
## 9641 1 5134 0.01947799 molecular_function
## 9642 1 5134 0.01947799 molecular_function
## 9643 1 5134 0.01947799 molecular_function
## 9644 1 5134 0.01947799 molecular_function
## 9645 1 5134 0.01947799 biological_process
## 9646 1 5134 0.01947799 molecular_function
## 9647 1 5134 0.01947799 molecular_function
## 9648 1 5134 0.01947799 molecular_function
## 9649 1 5134 0.01947799 molecular_function
## 9650 1 5134 0.01947799 molecular_function
## 9651 1 5134 0.01947799 molecular_function
## 9652 1 5134 0.01947799 molecular_function
## 9653 1 5134 0.01947799 biological_process
## 9654 1 5134 0.01947799 molecular_function
## 9655 1 5134 0.01947799 molecular_function
## 9656 1 5134 0.01947799 molecular_function
## 9657 1 5134 0.01947799 biological_process
## 9658 1 5134 0.01947799 biological_process
## 9659 1 5134 0.01947799 molecular_function
## 9660 1 5134 0.01947799 biological_process
## 9661 1 5134 0.01947799 molecular_function
## 9662 1 5134 0.01947799 molecular_function
## 9663 1 5134 0.01947799 molecular_function
## 9664 1 5134 0.01947799 molecular_function
## 9665 1 5134 0.01947799 molecular_function
## 9666 1 5134 0.01947799 molecular_function
## 9667 1 5134 0.01947799 biological_process
## 9668 1 5134 0.01947799 biological_process
## 9669 1 5134 0.01947799 molecular_function
## 9670 1 5134 0.01947799 molecular_function
## 9671 1 5134 0.01947799 biological_process
## 9672 1 5134 0.01947799 biological_process
## 9673 1 5134 0.01947799 biological_process
## 9674 1 5134 0.01947799 biological_process
## 9675 1 5134 0.01947799 biological_process
## 9676 1 5134 0.01947799 biological_process
## 9677 1 5134 0.01947799 biological_process
## 9678 1 5134 0.01947799 biological_process
## 9679 1 5134 0.01947799 biological_process
## 9680 1 5134 0.01947799 biological_process
## 9681 1 5134 0.01947799 biological_process
## 9682 1 5134 0.01947799 biological_process
## 9683 1 5134 0.01947799 biological_process
## 9684 1 5134 0.01947799 biological_process
## 9685 1 5134 0.01947799 molecular_function
## 9686 1 5134 0.01947799 molecular_function
## 9687 1 5134 0.01947799 molecular_function
## 9688 1 5134 0.01947799 molecular_function
## 9689 1 5134 0.01947799 molecular_function
## 9690 1 5134 0.01947799 molecular_function
## 9691 1 5134 0.01947799 molecular_function
## 9692 1 5134 0.01947799 biological_process
## 9693 1 5134 0.01947799 biological_process
## 9694 1 5134 0.01947799 molecular_function
## 9695 1 5134 0.01947799 molecular_function
## 9696 1 5134 0.01947799 molecular_function
## 9697 1 5134 0.01947799 molecular_function
## 9698 1 5134 0.01947799 molecular_function
## 9699 1 5134 0.01947799 molecular_function
## 9700 1 5134 0.01947799 molecular_function
## 9701 1 5134 0.01947799 molecular_function
## 9702 1 5134 0.01947799 molecular_function
## 9703 1 5134 0.01947799 molecular_function
## 9704 1 5134 0.01947799 biological_process
## 9705 1 5134 0.01947799 molecular_function
## 9706 1 5134 0.01947799 biological_process
## 9707 1 5134 0.01947799 molecular_function
## 9708 1 5134 0.01947799 biological_process
## 9709 1 5134 0.01947799 molecular_function
## 9710 1 5134 0.01947799 molecular_function
## 9711 1 5134 0.01947799 biological_process
## 9712 1 5134 0.01947799 biological_process
## 9713 1 5134 0.01947799 biological_process
## 9714 1 5134 0.01947799 molecular_function
## 9715 1 5134 0.01947799 biological_process
## 9716 1 5134 0.01947799 biological_process
## 9717 1 5134 0.01947799 biological_process
## 9718 1 5134 0.01947799 biological_process
## 9719 1 5134 0.01947799 molecular_function
## 9720 1 5134 0.01947799 molecular_function
## 9721 1 5134 0.01947799 molecular_function
## 9722 1 5134 0.01947799 biological_process
## 9723 1 5134 0.01947799 biological_process
## 9724 1 5134 0.01947799 biological_process
## 9725 1 5134 0.01947799 biological_process
## 9726 1 5134 0.01947799 biological_process
## 9727 1 5134 0.01947799 biological_process
## 9728 1 5134 0.01947799 biological_process
## 9729 1 5134 0.01947799 biological_process
## 9730 1 5134 0.01947799 biological_process
## 9731 1 5134 0.01947799 biological_process
## 9732 1 5134 0.01947799 biological_process
## 9733 1 5134 0.01947799 biological_process
## 9734 1 5134 0.01947799 biological_process
## 9735 1 5134 0.01947799 biological_process
## 9736 1 5134 0.01947799 biological_process
## 9737 1 5134 0.01947799 biological_process
## 9738 1 5134 0.01947799 biological_process
## 9739 1 5134 0.01947799 biological_process
## 9740 1 5134 0.01947799 biological_process
## 9741 1 5134 0.01947799 biological_process
## 9742 1 5134 0.01947799 biological_process
## 9743 1 5134 0.01947799 biological_process
## 9744 1 5134 0.01947799 biological_process
## 9745 1 5134 0.01947799 biological_process
## 9746 1 5134 0.01947799 biological_process
## 9747 1 5134 0.01947799 biological_process
## 9748 1 5134 0.01947799 biological_process
## 9749 1 5134 0.01947799 biological_process
## 9750 1 5134 0.01947799 biological_process
## 9751 1 5134 0.01947799 biological_process
## 9752 1 5134 0.01947799 biological_process
## 9753 1 5134 0.01947799 biological_process
## 9754 1 5134 0.01947799 biological_process
## 9755 1 5134 0.01947799 biological_process
## 9756 1 5134 0.01947799 biological_process
## 9757 1 5134 0.01947799 biological_process
## 9758 1 5134 0.01947799 biological_process
## 9759 1 5134 0.01947799 biological_process
## 9760 1 5134 0.01947799 biological_process
## 9761 1 5134 0.01947799 biological_process
## 9762 1 5134 0.01947799 biological_process
## 9763 1 5134 0.01947799 biological_process
## 9764 1 5134 0.01947799 biological_process
## 9765 1 5134 0.01947799 biological_process
## 9766 1 5134 0.01947799 biological_process
## 9767 1 5134 0.01947799 biological_process
## 9768 1 5134 0.01947799 biological_process
## 9769 1 5134 0.01947799 biological_process
## 9770 1 5134 0.01947799 biological_process
## 9771 1 5134 0.01947799 biological_process
## 9772 1 5134 0.01947799 biological_process
## 9773 1 5134 0.01947799 biological_process
## 9774 1 5134 0.01947799 biological_process
## 9775 1 5134 0.01947799 biological_process
## 9776 1 5134 0.01947799 biological_process
## 9777 1 5134 0.01947799 biological_process
## 9778 1 5134 0.01947799 biological_process
## 9779 1 5134 0.01947799 biological_process
## 9780 1 5134 0.01947799 biological_process
## 9781 1 5134 0.01947799 biological_process
## 9782 1 5134 0.01947799 biological_process
## 9783 1 5134 0.01947799 biological_process
## 9784 1 5134 0.01947799 biological_process
## 9785 1 5134 0.01947799 biological_process
## 9786 1 5134 0.01947799 biological_process
## 9787 1 5134 0.01947799 biological_process
## 9788 1 5134 0.01947799 biological_process
## 9789 1 5134 0.01947799 biological_process
## 9790 1 5134 0.01947799 biological_process
## 9791 1 5134 0.01947799 biological_process
## 9792 1 5134 0.01947799 biological_process
## 9793 1 5134 0.01947799 biological_process
## 9794 1 5134 0.01947799 biological_process
## 9795 1 5134 0.01947799 biological_process
## 9796 1 5134 0.01947799 biological_process
## 9797 1 5134 0.01947799 biological_process
## 9798 1 5134 0.01947799 biological_process
## 9799 1 5134 0.01947799 biological_process
## 9800 1 5134 0.01947799 biological_process
## 9801 1 5134 0.01947799 biological_process
## 9802 1 5134 0.01947799 biological_process
## 9803 1 5134 0.01947799 biological_process
## 9804 1 5134 0.01947799 biological_process
## 9805 1 5134 0.01947799 biological_process
## 9806 1 5134 0.01947799 biological_process
## 9807 1 5134 0.01947799 biological_process
## 9808 1 5134 0.01947799 biological_process
## 9809 1 5134 0.01947799 biological_process
## 9810 1 5134 0.01947799 biological_process
## 9811 1 5134 0.01947799 biological_process
## 9812 1 5134 0.01947799 biological_process
## 9813 1 5134 0.01947799 biological_process
## 9814 1 5134 0.01947799 biological_process
## 9815 1 5134 0.01947799 biological_process
## 9816 1 5134 0.01947799 biological_process
## 9817 1 5134 0.01947799 biological_process
## 9818 1 5134 0.01947799 biological_process
## 9819 1 5134 0.01947799 biological_process
## 9820 1 5134 0.01947799 biological_process
## 9821 1 5134 0.01947799 biological_process
## 9822 1 5134 0.01947799 biological_process
## 9823 1 5134 0.01947799 biological_process
## 9824 1 5134 0.01947799 biological_process
## 9825 1 5134 0.01947799 biological_process
## 9826 1 5134 0.01947799 biological_process
## 9827 1 5134 0.01947799 biological_process
## 9828 1 5134 0.01947799 biological_process
## 9829 1 5134 0.01947799 biological_process
## 9830 1 5134 0.01947799 biological_process
## 9831 1 5134 0.01947799 biological_process
## 9832 1 5134 0.01947799 biological_process
## 9833 1 5134 0.01947799 biological_process
## 9834 1 5134 0.01947799 biological_process
## 9835 1 5134 0.01947799 biological_process
## 9836 1 5134 0.01947799 biological_process
## 9837 1 5134 0.01947799 biological_process
## 9838 1 5134 0.01947799 biological_process
## 9839 1 5134 0.01947799 biological_process
## 9840 1 5134 0.01947799 biological_process
## 9841 1 5134 0.01947799 biological_process
## 9842 1 5134 0.01947799 biological_process
## 9843 1 5134 0.01947799 biological_process
## 9844 1 5134 0.01947799 biological_process
## 9845 1 5134 0.01947799 biological_process
## 9846 1 5134 0.01947799 biological_process
## 9847 1 5134 0.01947799 biological_process
## 9848 1 5134 0.01947799 biological_process
## 9849 1 5134 0.01947799 biological_process
## 9850 1 5134 0.01947799 biological_process
## 9851 1 5134 0.01947799 biological_process
## 9852 1 5134 0.01947799 biological_process
## 9853 1 5134 0.01947799 biological_process
## 9854 1 5134 0.01947799 biological_process
## 9855 1 5134 0.01947799 biological_process
## 9856 1 5134 0.01947799 biological_process
## 9857 1 5134 0.01947799 biological_process
## 9858 1 5134 0.01947799 biological_process
## 9859 1 5134 0.01947799 biological_process
## 9860 1 5134 0.01947799 biological_process
## 9861 1 5134 0.01947799 biological_process
## 9862 1 5134 0.01947799 biological_process
## 9863 1 5134 0.01947799 biological_process
## 9864 1 5134 0.01947799 biological_process
## 9865 1 5134 0.01947799 biological_process
## 9866 1 5134 0.01947799 biological_process
## 9867 1 5134 0.01947799 biological_process
## 9868 1 5134 0.01947799 biological_process
## 9869 1 5134 0.01947799 biological_process
## 9870 1 5134 0.01947799 biological_process
## 9871 1 5134 0.01947799 biological_process
## 9872 1 5134 0.01947799 biological_process
## 9873 1 5134 0.01947799 biological_process
## 9874 1 5134 0.01947799 biological_process
## 9875 1 5134 0.01947799 biological_process
## 9876 1 5134 0.01947799 biological_process
## 9877 1 5134 0.01947799 biological_process
## 9878 1 5134 0.01947799 biological_process
## 9879 1 5134 0.01947799 biological_process
## 9880 1 5134 0.01947799 biological_process
## 9881 1 5134 0.01947799 biological_process
## 9882 1 5134 0.01947799 biological_process
## 9883 1 5134 0.01947799 biological_process
## 9884 1 5134 0.01947799 biological_process
## 9885 1 5134 0.01947799 biological_process
## 9886 1 5134 0.01947799 biological_process
## 9887 1 5134 0.01947799 biological_process
## 9888 1 5134 0.01947799 biological_process
## 9889 1 5134 0.01947799 biological_process
## 9890 1 5134 0.01947799 biological_process
## 9891 1 5134 0.01947799 biological_process
## 9892 1 5134 0.01947799 biological_process
## 9893 1 5134 0.01947799 biological_process
## 9894 1 5134 0.01947799 biological_process
## 9895 1 5134 0.01947799 biological_process
## 9896 1 5134 0.01947799 biological_process
## 9897 1 5134 0.01947799 biological_process
## 9898 1 5134 0.01947799 biological_process
## 9899 1 5134 0.01947799 biological_process
## 9900 1 5134 0.01947799 biological_process
## 9901 1 5134 0.01947799 biological_process
## 9902 1 5134 0.01947799 biological_process
## 9903 1 5134 0.01947799 biological_process
## 9904 1 5134 0.01947799 biological_process
## 9905 1 5134 0.01947799 biological_process
## 9906 1 5134 0.01947799 biological_process
## 9907 1 5134 0.01947799 biological_process
## 9908 1 5134 0.01947799 biological_process
## 9909 1 5134 0.01947799 biological_process
## 9910 1 5134 0.01947799 biological_process
## 9911 1 5134 0.01947799 biological_process
## 9912 1 5134 0.01947799 biological_process
## 9913 1 5134 0.01947799 biological_process
## 9914 1 5134 0.01947799 biological_process
## 9915 1 5134 0.01947799 biological_process
## 9916 1 5134 0.01947799 biological_process
## 9917 1 5134 0.01947799 biological_process
## 9918 1 5134 0.01947799 biological_process
## 9919 1 5134 0.01947799 biological_process
## 9920 1 5134 0.01947799 biological_process
## 9921 1 5134 0.01947799 biological_process
## 9922 1 5134 0.01947799 biological_process
## 9923 1 5134 0.01947799 biological_process
## 9924 1 5134 0.01947799 biological_process
## 9925 1 5134 0.01947799 biological_process
## 9926 1 5134 0.01947799 biological_process
## 9927 1 5134 0.01947799 biological_process
## 9928 1 5134 0.01947799 biological_process
## 9929 1 5134 0.01947799 biological_process
## 9930 1 5134 0.01947799 biological_process
## 9931 1 5134 0.01947799 biological_process
## 9932 1 5134 0.01947799 biological_process
## 9933 1 5134 0.01947799 biological_process
## 9934 1 5134 0.01947799 biological_process
## 9935 1 5134 0.01947799 biological_process
## 9936 1 5134 0.01947799 biological_process
## 9937 1 5134 0.01947799 biological_process
## 9938 1 5134 0.01947799 biological_process
## 9939 1 5134 0.01947799 biological_process
## 9940 1 5134 0.01947799 biological_process
## 9941 1 5134 0.01947799 biological_process
## 9942 1 5134 0.01947799 biological_process
## 9943 1 5134 0.01947799 biological_process
## 9944 1 5134 0.01947799 biological_process
## 9945 1 5134 0.01947799 biological_process
## 9946 1 5134 0.01947799 biological_process
## 9947 1 5134 0.01947799 biological_process
## 9948 1 5134 0.01947799 biological_process
## 9949 1 5134 0.01947799 biological_process
## 9950 1 5134 0.01947799 biological_process
## 9951 1 5134 0.01947799 biological_process
## 9952 1 5134 0.01947799 biological_process
## 9953 1 5134 0.01947799 biological_process
## 9954 1 5134 0.01947799 biological_process
## 9955 1 5134 0.01947799 biological_process
## 9956 1 5134 0.01947799 biological_process
## 9957 1 5134 0.01947799 biological_process
## 9958 1 5134 0.01947799 biological_process
## 9959 1 5134 0.01947799 biological_process
## 9960 1 5134 0.01947799 biological_process
## 9961 1 5134 0.01947799 biological_process
## 9962 1 5134 0.01947799 biological_process
## 9963 1 5134 0.01947799 biological_process
## 9964 1 5134 0.01947799 biological_process
## 9965 1 5134 0.01947799 biological_process
## 9966 1 5134 0.01947799 biological_process
## 9967 1 5134 0.01947799 biological_process
## 9968 1 5134 0.01947799 biological_process
## 9969 1 5134 0.01947799 biological_process
## 9970 1 5134 0.01947799 biological_process
## 9971 1 5134 0.01947799 biological_process
## 9972 1 5134 0.01947799 biological_process
## 9973 1 5134 0.01947799 biological_process
## 9974 1 5134 0.01947799 biological_process
## 9975 1 5134 0.01947799 biological_process
## 9976 1 5134 0.01947799 biological_process
## 9977 1 5134 0.01947799 biological_process
## 9978 1 5134 0.01947799 biological_process
## 9979 1 5134 0.01947799 biological_process
## 9980 1 5134 0.01947799 biological_process
## 9981 1 5134 0.01947799 biological_process
## 9982 1 5134 0.01947799 biological_process
## 9983 1 5134 0.01947799 biological_process
## 9984 1 5134 0.01947799 biological_process
## 9985 1 5134 0.01947799 biological_process
## 9986 1 5134 0.01947799 biological_process
## 9987 1 5134 0.01947799 biological_process
## 9988 1 5134 0.01947799 biological_process
## 9989 1 5134 0.01947799 biological_process
## 9990 1 5134 0.01947799 biological_process
## 9991 1 5134 0.01947799 biological_process
## 9992 1 5134 0.01947799 biological_process
## 9993 1 5134 0.01947799 biological_process
## 9994 1 5134 0.01947799 biological_process
## 9995 1 5134 0.01947799 biological_process
## 9996 1 5134 0.01947799 biological_process
## 9997 1 5134 0.01947799 biological_process
## 9998 1 5134 0.01947799 biological_process
## 9999 1 5134 0.01947799 biological_process
## 10000 1 5134 0.01947799 biological_process
## 10001 1 5134 0.01947799 biological_process
## 10002 1 5134 0.01947799 biological_process
## 10003 1 5134 0.01947799 biological_process
## 10004 1 5134 0.01947799 biological_process
## 10005 1 5134 0.01947799 biological_process
## 10006 1 5134 0.01947799 biological_process
## 10007 1 5134 0.01947799 biological_process
## 10008 1 5134 0.01947799 biological_process
## 10009 1 5134 0.01947799 biological_process
## 10010 1 5134 0.01947799 biological_process
## 10011 1 5134 0.01947799 biological_process
## 10012 1 5134 0.01947799 biological_process
## 10013 1 5134 0.01947799 biological_process
## 10014 1 5134 0.01947799 biological_process
## 10015 1 5134 0.01947799 biological_process
## 10016 1 5134 0.01947799 biological_process
## 10017 1 5134 0.01947799 biological_process
## 10018 1 5134 0.01947799 biological_process
## 10019 1 5134 0.01947799 biological_process
## 10020 1 5134 0.01947799 biological_process
## 10021 1 5134 0.01947799 biological_process
## 10022 1 5134 0.01947799 biological_process
## 10023 1 5134 0.01947799 biological_process
## 10024 1 5134 0.01947799 biological_process
## 10025 1 5134 0.01947799 biological_process
## 10026 1 5134 0.01947799 biological_process
## 10027 1 5134 0.01947799 biological_process
## 10028 1 5134 0.01947799 biological_process
## 10029 1 5134 0.01947799 biological_process
## 10030 1 5134 0.01947799 biological_process
## 10031 1 5134 0.01947799 biological_process
## 10032 1 5134 0.01947799 biological_process
## 10033 1 5134 0.01947799 biological_process
## 10034 1 5134 0.01947799 biological_process
## 10035 1 5134 0.01947799 biological_process
## 10036 1 5134 0.01947799 biological_process
## 10037 1 5134 0.01947799 biological_process
## 10038 1 5134 0.01947799 biological_process
## 10039 1 5134 0.01947799 biological_process
## 10040 1 5134 0.01947799 biological_process
## 10041 1 5134 0.01947799 biological_process
## 10042 1 5134 0.01947799 biological_process
## 10043 1 5134 0.01947799 biological_process
## 10044 1 5134 0.01947799 biological_process
## 10045 1 5134 0.01947799 biological_process
## 10046 1 5134 0.01947799 biological_process
## 10047 1 5134 0.01947799 biological_process
## 10048 1 5134 0.01947799 biological_process
## 10049 1 5134 0.01947799 biological_process
## 10050 1 5134 0.01947799 biological_process
## 10051 1 5134 0.01947799 biological_process
## 10052 1 5134 0.01947799 biological_process
## 10053 1 5134 0.01947799 biological_process
## 10054 1 5134 0.01947799 biological_process
## 10055 1 5134 0.01947799 biological_process
## 10056 1 5134 0.01947799 biological_process
## 10057 1 5134 0.01947799 biological_process
## 10058 1 5134 0.01947799 biological_process
## 10059 1 5134 0.01947799 biological_process
## 10060 1 5134 0.01947799 biological_process
## 10061 1 5134 0.01947799 biological_process
## 10062 1 5134 0.01947799 biological_process
## 10063 1 5134 0.01947799 biological_process
## 10064 1 5134 0.01947799 biological_process
## 10065 1 5134 0.01947799 biological_process
## 10066 1 5134 0.01947799 biological_process
## 10067 1 5134 0.01947799 biological_process
## 10068 1 5134 0.01947799 biological_process
## 10069 1 5134 0.01947799 biological_process
## 10070 1 5134 0.01947799 biological_process
## 10071 1 5134 0.01947799 biological_process
## 10072 1 5134 0.01947799 biological_process
## 10073 1 5134 0.01947799 biological_process
## 10074 1 5134 0.01947799 biological_process
## 10075 1 5134 0.01947799 biological_process
## 10076 1 5134 0.01947799 biological_process
## 10077 1 5134 0.01947799 biological_process
## 10078 1 5134 0.01947799 biological_process
## 10079 1 5134 0.01947799 biological_process
## 10080 1 5134 0.01947799 biological_process
## 10081 1 5134 0.01947799 biological_process
## 10082 1 5134 0.01947799 biological_process
## 10083 1 5134 0.01947799 biological_process
## 10084 1 5134 0.01947799 cellular_component
## 10085 1 5134 0.01947799 cellular_component
## 10086 1 5134 0.01947799 biological_process
## 10087 1 5134 0.01947799 biological_process
## 10088 1 5134 0.01947799 cellular_component
## 10089 1 5134 0.01947799 cellular_component
## 10090 1 5134 0.01947799 biological_process
## 10091 1 5134 0.01947799 biological_process
## 10092 1 5134 0.01947799 biological_process
## 10093 1 5134 0.01947799 biological_process
## 10094 1 5134 0.01947799 cellular_component
## 10095 1 5134 0.01947799 biological_process
## 10096 1 5134 0.01947799 molecular_function
## 10097 1 5134 0.01947799 biological_process
## 10098 1 5134 0.01947799 molecular_function
## 10099 1 5134 0.01947799 biological_process
## 10100 1 5134 0.01947799 biological_process
## 10101 1 5134 0.01947799 biological_process
## 10102 1 5134 0.01947799 biological_process
## 10103 1 5134 0.01947799 biological_process
## 10104 1 5134 0.01947799 biological_process
## 10105 1 5134 0.01947799 molecular_function
## 10106 1 5134 0.01947799 molecular_function
## 10107 1 5134 0.01947799 biological_process
## 10108 1 5134 0.01947799 biological_process
## 10109 1 5134 0.01947799 biological_process
## 10110 1 5134 0.01947799 cellular_component
## 10111 1 5134 0.01947799 molecular_function
## 10112 1 5134 0.01947799 biological_process
## 10113 1 5134 0.01947799 molecular_function
## 10114 1 5134 0.01947799 biological_process
## 10115 1 5134 0.01947799 molecular_function
## 10116 1 5134 0.01947799 biological_process
## 10117 1 5134 0.01947799 biological_process
## 10118 1 5134 0.01947799 biological_process
## 10119 1 5134 0.01947799 biological_process
## 10120 1 5134 0.01947799 molecular_function
## 10121 1 5134 0.01947799 biological_process
## 10122 1 5134 0.01947799 biological_process
## 10123 1 5134 0.01947799 cellular_component
## 10124 1 5134 0.01947799 cellular_component
## 10125 1 5134 0.01947799 biological_process
## 10126 1 5134 0.01947799 cellular_component
## 10127 1 5134 0.01947799 cellular_component
## 10128 1 5134 0.01947799 biological_process
## 10129 1 5134 0.01947799 biological_process
## 10130 1 5134 0.01947799 molecular_function
## 10131 1 5134 0.01947799 biological_process
## 10132 1 5134 0.01947799 molecular_function
## 10133 1 5134 0.01947799 biological_process
## 10134 1 5134 0.01947799 biological_process
## 10135 1 5134 0.01947799 biological_process
## 10136 1 5134 0.01947799 biological_process
## 10137 1 5134 0.01947799 biological_process
## 10138 1 5134 0.01947799 molecular_function
## 10139 1 5134 0.01947799 cellular_component
## 10140 1 5134 0.01947799 biological_process
## 10141 1 5134 0.01947799 biological_process
## 10142 1 5134 0.01947799 biological_process
## 10143 1 5134 0.01947799 biological_process
## 10144 1 5134 0.01947799 cellular_component
## 10145 1 5134 0.01947799 biological_process
## 10146 1 5134 0.01947799 biological_process
## 10147 1 5134 0.01947799 biological_process
## 10148 1 5134 0.01947799 cellular_component
## 10149 1 5134 0.01947799 biological_process
## 10150 1 5134 0.01947799 cellular_component
## 10151 1 5134 0.01947799 cellular_component
## 10152 1 5134 0.01947799 biological_process
## 10153 1 5134 0.01947799 biological_process
## 10154 1 5134 0.01947799 biological_process
## 10155 1 5134 0.01947799 cellular_component
## 10156 1 5134 0.01947799 cellular_component
## 10157 1 5134 0.01947799 cellular_component
## 10158 1 5134 0.01947799 biological_process
## 10159 1 5134 0.01947799 biological_process
## 10160 1 5134 0.01947799 molecular_function
## 10161 1 5134 0.01947799 biological_process
## 10162 1 5134 0.01947799 biological_process
## 10163 1 5134 0.01947799 biological_process
## 10164 1 5134 0.01947799 biological_process
## 10165 1 5134 0.01947799 cellular_component
## 10166 1 5134 0.01947799 cellular_component
## 10167 1 5134 0.01947799 biological_process
## 10168 1 5134 0.01947799 biological_process
## 10169 1 5134 0.01947799 biological_process
## 10170 1 5134 0.01947799 molecular_function
## 10171 1 5134 0.01947799 molecular_function
## 10172 1 5134 0.01947799 cellular_component
## 10173 1 5134 0.01947799 biological_process
## 10174 1 5134 0.01947799 biological_process
## 10175 1 5134 0.01947799 biological_process
## 10176 1 5134 0.01947799 molecular_function
## 10177 1 5134 0.01947799 cellular_component
## 10178 1 5134 0.01947799 molecular_function
## 10179 1 5134 0.01947799 biological_process
## 10180 1 5134 0.01947799 molecular_function
## 10181 1 5134 0.01947799 molecular_function
## 10182 1 5134 0.01947799 molecular_function
## 10183 1 5134 0.01947799 biological_process
## 10184 1 5134 0.01947799 molecular_function
## 10185 1 5134 0.01947799 molecular_function
## 10186 1 5134 0.01947799 biological_process
## 10187 1 5134 0.01947799 biological_process
## 10188 1 5134 0.01947799 biological_process
## 10189 1 5134 0.01947799 biological_process
## 10190 1 5134 0.01947799 molecular_function
## 10191 1 5134 0.01947799 molecular_function
## 10192 1 5134 0.01947799 molecular_function
## 10193 1 5134 0.01947799 biological_process
## 10194 1 5134 0.01947799 cellular_component
## 10195 1 5134 0.01947799 cellular_component
## 10196 1 5134 0.01947799 cellular_component
## 10197 1 5134 0.01947799 biological_process
## 10198 1 5134 0.01947799 biological_process
## 10199 1 5134 0.01947799 molecular_function
## 10200 1 5134 0.01947799 cellular_component
## 10201 1 5134 0.01947799 biological_process
## 10202 1 5134 0.01947799 biological_process
## 10203 1 5134 0.01947799 molecular_function
## 10204 1 5134 0.01947799 molecular_function
## 10205 1 5134 0.01947799 biological_process
## 10206 1 5134 0.01947799 molecular_function
## 10207 1 5134 0.01947799 molecular_function
## 10208 1 5134 0.01947799 molecular_function
## 10209 1 5134 0.01947799 biological_process
## 10210 1 5134 0.01947799 biological_process
## 10211 1 5134 0.01947799 biological_process
## 10212 1 5134 0.01947799 molecular_function
## 10213 1 5134 0.01947799 biological_process
## 10214 1 5134 0.01947799 biological_process
## 10215 1 5134 0.01947799 biological_process
## 10216 1 5134 0.01947799 biological_process
## 10217 1 5134 0.01947799 biological_process
## 10218 1 5134 0.01947799 molecular_function
## 10219 1 5134 0.01947799 biological_process
## 10220 1 5134 0.01947799 biological_process
## 10221 1 5134 0.01947799 biological_process
## 10222 1 5134 0.01947799 molecular_function
## 10223 1 5134 0.01947799 molecular_function
## 10224 1 5134 0.01947799 molecular_function
## 10225 1 5134 0.01947799 biological_process
## 10226 1 5134 0.01947799 biological_process
## 10227 1 5134 0.01947799 biological_process
## 10228 1 5134 0.01947799 biological_process
## 10229 1 5134 0.01947799 cellular_component
## 10230 1 5134 0.01947799 cellular_component
## 10231 1 5134 0.01947799 cellular_component
## 10232 1 5134 0.01947799 biological_process
## 10233 1 5134 0.01947799 cellular_component
## 10234 1 5134 0.01947799 cellular_component
## 10235 1 5134 0.01947799 biological_process
## 10236 1 5134 0.01947799 biological_process
## 10237 1 5134 0.01947799 biological_process
## 10238 1 5134 0.01947799 biological_process
## 10239 1 5134 0.01947799 biological_process
## 10240 1 5134 0.01947799 biological_process
## 10241 1 5134 0.01947799 molecular_function
## 10242 1 5134 0.01947799 molecular_function
## 10243 1 5134 0.01947799 biological_process
## 10244 1 5134 0.01947799 biological_process
## 10245 1 5134 0.01947799 biological_process
## 10246 1 5134 0.01947799 molecular_function
## 10247 1 5134 0.01947799 molecular_function
## 10248 1 5134 0.01947799 molecular_function
## 10249 1 5134 0.01947799 molecular_function
## 10250 1 5134 0.01947799 molecular_function
## 10251 1 5134 0.01947799 molecular_function
## 10252 1 5134 0.01947799 molecular_function
## 10253 1 5134 0.01947799 molecular_function
## 10254 1 5134 0.01947799 molecular_function
## 10255 1 5134 0.01947799 molecular_function
## 10256 1 5134 0.01947799 biological_process
## 10257 1 5134 0.01947799 biological_process
## 10258 1 5134 0.01947799 molecular_function
## 10259 1 5134 0.01947799 molecular_function
## 10260 1 5134 0.01947799 molecular_function
## 10261 1 5134 0.01947799 molecular_function
## 10262 1 5134 0.01947799 molecular_function
## 10263 1 5134 0.01947799 molecular_function
## 10264 1 5134 0.01947799 cellular_component
## 10265 1 5134 0.01947799 cellular_component
## 10266 1 5134 0.01947799 cellular_component
## 10267 1 5134 0.01947799 biological_process
## 10268 1 5134 0.01947799 biological_process
## 10269 1 5134 0.01947799 molecular_function
## 10270 1 5134 0.01947799 molecular_function
## 10271 1 5134 0.01947799 molecular_function
## 10272 1 5134 0.01947799 biological_process
## 10273 1 5134 0.01947799 biological_process
## 10274 1 5134 0.01947799 biological_process
## 10275 1 5134 0.01947799 biological_process
## 10276 1 5134 0.01947799 cellular_component
## 10277 1 5134 0.01947799 biological_process
## 10278 1 5134 0.01947799 cellular_component
## 10279 1 5134 0.01947799 molecular_function
## 10280 1 5134 0.01947799 biological_process
## 10281 1 5134 0.01947799 cellular_component
## 10282 1 5134 0.01947799 cellular_component
## 10283 1 5134 0.01947799 cellular_component
## 10284 1 5134 0.01947799 cellular_component
## 10285 1 5134 0.01947799 biological_process
## 10286 1 5134 0.01947799 biological_process
## 10287 1 5134 0.01947799 cellular_component
## 10288 1 5134 0.01947799 biological_process
## 10289 1 5134 0.01947799 biological_process
## 10290 1 5134 0.01947799 molecular_function
## 10291 1 5134 0.01947799 molecular_function
## 10292 1 5134 0.01947799 biological_process
## 10293 1 5134 0.01947799 biological_process
## 10294 1 5134 0.01947799 biological_process
## 10295 1 5134 0.01947799 biological_process
## 10296 1 5134 0.01947799 biological_process
## 10297 1 5134 0.01947799 molecular_function
## 10298 1 5134 0.01947799 biological_process
## 10299 1 5134 0.01947799 molecular_function
## 10300 1 5134 0.01947799 biological_process
## 10301 1 5134 0.01947799 biological_process
## 10302 1 5134 0.01947799 biological_process
## 10303 1 5134 0.01947799 molecular_function
## 10304 1 5134 0.01947799 molecular_function
## 10305 1 5134 0.01947799 molecular_function
## 10306 1 5134 0.01947799 molecular_function
## 10307 1 5134 0.01947799 molecular_function
## 10308 1 5134 0.01947799 biological_process
## 10309 1 5134 0.01947799 molecular_function
## 10310 1 5134 0.01947799 biological_process
## 10311 1 5134 0.01947799 biological_process
## 10312 1 5134 0.01947799 biological_process
## 10313 1 5134 0.01947799 biological_process
## 10314 1 5134 0.01947799 biological_process
## 10315 1 5134 0.01947799 biological_process
## 10316 1 5134 0.01947799 molecular_function
## 10317 1 5134 0.01947799 biological_process
## 10318 1 5134 0.01947799 biological_process
## 10319 1 5134 0.01947799 biological_process
## 10320 1 5134 0.01947799 molecular_function
## 10321 1 5134 0.01947799 biological_process
## 10322 1 5134 0.01947799 biological_process
## 10323 1 5134 0.01947799 molecular_function
## 10324 1 5134 0.01947799 biological_process
## 10325 1 5134 0.01947799 biological_process
## 10326 1 5134 0.01947799 biological_process
## 10327 1 5134 0.01947799 biological_process
## 10328 1 5134 0.01947799 biological_process
## 10329 1 5134 0.01947799 biological_process
## 10330 1 5134 0.01947799 biological_process
## 10331 1 5134 0.01947799 biological_process
## 10332 1 5134 0.01947799 biological_process
## 10333 1 5134 0.01947799 molecular_function
## 10334 1 5134 0.01947799 molecular_function
## 10335 1 5134 0.01947799 biological_process
## 10336 1 5134 0.01947799 biological_process
## 10337 1 5134 0.01947799 biological_process
## 10338 1 5134 0.01947799 biological_process
## 10339 1 5134 0.01947799 molecular_function
## 10340 1 5134 0.01947799 molecular_function
## 10341 1 5134 0.01947799 biological_process
## 10342 1 5134 0.01947799 biological_process
## 10343 1 5134 0.01947799 cellular_component
## 10344 1 5134 0.01947799 biological_process
## 10345 1 5134 0.01947799 biological_process
## 10346 1 5134 0.01947799 biological_process
## 10347 1 5134 0.01947799 molecular_function
## 10348 1 5134 0.01947799 molecular_function
## 10349 1 5134 0.01947799 biological_process
## 10350 1 5134 0.01947799 molecular_function
## 10351 1 5134 0.01947799 molecular_function
## 10352 1 5134 0.01947799 biological_process
## 10353 1 5134 0.01947799 molecular_function
## 10354 1 5134 0.01947799 cellular_component
## 10355 1 5134 0.01947799 biological_process
## 10356 1 5134 0.01947799 molecular_function
## 10357 1 5134 0.01947799 biological_process
## 10358 1 5134 0.01947799 biological_process
## 10359 1 5134 0.01947799 cellular_component
## 10360 1 5134 0.01947799 biological_process
## 10361 1 5134 0.01947799 biological_process
## 10362 1 5134 0.01947799 biological_process
## 10363 1 5134 0.01947799 biological_process
## 10364 1 5134 0.01947799 molecular_function
## 10365 1 5134 0.01947799 biological_process
## 10366 1 5134 0.01947799 biological_process
## 10367 1 5134 0.01947799 molecular_function
## 10368 1 5134 0.01947799 cellular_component
## 10369 1 5134 0.01947799 molecular_function
## 10370 1 5134 0.01947799 molecular_function
## 10371 1 5134 0.01947799 molecular_function
## 10372 1 5134 0.01947799 molecular_function
## 10373 1 5134 0.01947799 molecular_function
## 10374 1 5134 0.01947799 molecular_function
## 10375 1 5134 0.01947799 molecular_function
## 10376 1 5134 0.01947799 biological_process
## 10377 1 5134 0.01947799 molecular_function
## 10378 1 5134 0.01947799 cellular_component
## 10379 1 5134 0.01947799 cellular_component
## 10380 1 5134 0.01947799 cellular_component
## 10381 1 5134 0.01947799 molecular_function
## 10382 1 5134 0.01947799 molecular_function
## 10383 1 5134 0.01947799 molecular_function
## 10384 1 5134 0.01947799 molecular_function
## 10385 1 5134 0.01947799 molecular_function
## 10386 1 5134 0.01947799 molecular_function
## 10387 1 5134 0.01947799 molecular_function
## 10388 1 5134 0.01947799 molecular_function
## 10389 1 5134 0.01947799 biological_process
## 10390 1 5134 0.01947799 biological_process
## 10391 1 5134 0.01947799 biological_process
## 10392 1 5134 0.01947799 molecular_function
## 10393 1 5134 0.01947799 molecular_function
## 10394 1 5134 0.01947799 molecular_function
## 10395 1 5134 0.01947799 biological_process
## 10396 1 5134 0.01947799 biological_process
## 10397 1 5134 0.01947799 molecular_function
## 10398 1 5134 0.01947799 molecular_function
## 10399 1 5134 0.01947799 molecular_function
## 10400 1 5134 0.01947799 molecular_function
## 10401 1 5134 0.01947799 molecular_function
## 10402 1 5134 0.01947799 molecular_function
## 10403 1 5134 0.01947799 molecular_function
## 10404 1 5134 0.01947799 biological_process
## 10405 1 5134 0.01947799 biological_process
## 10406 1 5134 0.01947799 molecular_function
## 10407 1 5134 0.01947799 molecular_function
## 10408 1 5134 0.01947799 molecular_function
## 10409 1 5134 0.01947799 molecular_function
## 10410 1 5134 0.01947799 cellular_component
## 10411 1 5134 0.01947799 biological_process
## 10412 1 5134 0.01947799 molecular_function
## 10413 1 5134 0.01947799 molecular_function
## 10414 1 5134 0.01947799 molecular_function
## 10415 1 5134 0.01947799 molecular_function
## 10416 1 5134 0.01947799 molecular_function
## 10417 1 5134 0.01947799 molecular_function
## 10418 1 5134 0.01947799 molecular_function
## 10419 1 5134 0.01947799 molecular_function
## 10420 1 5134 0.01947799 molecular_function
## 10421 1 5134 0.01947799 molecular_function
## 10422 1 5134 0.01947799 molecular_function
## 10423 1 5134 0.01947799 biological_process
## 10424 1 5134 0.01947799 biological_process
## 10425 1 5134 0.01947799 cellular_component
## 10426 1 5134 0.01947799 cellular_component
## 10427 1 5134 0.01947799 biological_process
## 10428 1 5134 0.01947799 molecular_function
## 10429 1 5134 0.01947799 molecular_function
## 10430 1 5134 0.01947799 biological_process
## 10431 1 5134 0.01947799 biological_process
## 10432 1 5134 0.01947799 cellular_component
## 10433 1 5134 0.01947799 biological_process
## 10434 1 5134 0.01947799 cellular_component
## 10435 1 5134 0.01947799 molecular_function
## 10436 1 5134 0.01947799 molecular_function
## 10437 1 5134 0.01947799 biological_process
## 10438 1 5134 0.01947799 biological_process
## 10439 1 5134 0.01947799 biological_process
## 10440 1 5134 0.01947799 biological_process
## 10441 1 5134 0.01947799 biological_process
## 10442 1 5134 0.01947799 cellular_component
## 10443 1 5134 0.01947799 cellular_component
## 10444 1 5134 0.01947799 biological_process
## 10445 1 5134 0.01947799 biological_process
## 10446 1 5134 0.01947799 biological_process
## 10447 1 5134 0.01947799 molecular_function
## 10448 1 5134 0.01947799 biological_process
## 10449 1 5134 0.01947799 biological_process
## 10450 1 5134 0.01947799 biological_process
## 10451 1 5134 0.01947799 molecular_function
## 10452 1 5134 0.01947799 molecular_function
## 10453 1 5134 0.01947799 cellular_component
## 10454 1 5134 0.01947799 cellular_component
## 10455 1 5134 0.01947799 biological_process
## 10456 1 5134 0.01947799 molecular_function
## 10457 1 5134 0.01947799 biological_process
## 10458 1 5134 0.01947799 cellular_component
## 10459 1 5134 0.01947799 biological_process
## 10460 1 5134 0.01947799 biological_process
## 10461 1 5134 0.01947799 cellular_component
## 10462 1 5134 0.01947799 biological_process
## 10463 1 5134 0.01947799 cellular_component
## 10464 1 5134 0.01947799 biological_process
## 10465 1 5134 0.01947799 molecular_function
## 10466 1 5134 0.01947799 biological_process
## 10467 1 5134 0.01947799 molecular_function
## 10468 1 5134 0.01947799 biological_process
## 10469 1 5134 0.01947799 biological_process
## 10470 1 5134 0.01947799 biological_process
## 10471 1 5134 0.01947799 molecular_function
## 10472 1 5134 0.01947799 biological_process
## 10473 1 5134 0.01947799 cellular_component
## 10474 1 5134 0.01947799 biological_process
## 10475 1 5134 0.01947799 molecular_function
## 10476 1 5134 0.01947799 biological_process
## 10477 1 5134 0.01947799 molecular_function
## 10478 1 5134 0.01947799 molecular_function
## 10479 1 5134 0.01947799 biological_process
## 10480 1 5134 0.01947799 biological_process
## 10481 1 5134 0.01947799 molecular_function
## 10482 1 5134 0.01947799 molecular_function
## 10483 1 5134 0.01947799 biological_process
## 10484 1 5134 0.01947799 biological_process
## 10485 1 5134 0.01947799 biological_process
## 10486 1 5134 0.01947799 biological_process
## 10487 1 5134 0.01947799 biological_process
## 10488 1 5134 0.01947799 biological_process
## 10489 1 5134 0.01947799 biological_process
## 10490 1 5134 0.01947799 biological_process
## 10491 1 5134 0.01947799 biological_process
## 10492 1 5134 0.01947799 biological_process
## 10493 1 5134 0.01947799 biological_process
## 10494 1 5134 0.01947799 biological_process
## 10495 1 5134 0.01947799 biological_process
## 10496 1 5134 0.01947799 biological_process
## 10497 1 5134 0.01947799 biological_process
## 10498 1 5134 0.01947799 biological_process
## 10499 1 5134 0.01947799 biological_process
## 10500 1 5134 0.01947799 biological_process
## 10501 1 5134 0.01947799 biological_process
## 10502 1 5134 0.01947799 biological_process
## 10503 1 5134 0.01947799 biological_process
## 10504 1 5134 0.01947799 biological_process
## 10505 1 5134 0.01947799 biological_process
## 10506 1 5134 0.01947799 biological_process
## 10507 1 5134 0.01947799 biological_process
## 10508 1 5134 0.01947799 biological_process
## 10509 1 5134 0.01947799 biological_process
## 10510 1 5134 0.01947799 biological_process
## 10511 1 5134 0.01947799 biological_process
## 10512 1 5134 0.01947799 biological_process
## 10513 1 5134 0.01947799 biological_process
## 10514 1 5134 0.01947799 biological_process
## 10515 1 5134 0.01947799 biological_process
## 10516 1 5134 0.01947799 biological_process
## 10517 1 5134 0.01947799 biological_process
## 10518 1 5134 0.01947799 biological_process
## 10519 1 5134 0.01947799 biological_process
## 10520 1 5134 0.01947799 biological_process
## 10521 1 5134 0.01947799 biological_process
## 10522 1 5134 0.01947799 biological_process
## 10523 1 5134 0.01947799 biological_process
## 10524 1 5134 0.01947799 biological_process
## 10525 1 5134 0.01947799 biological_process
## 10526 1 5134 0.01947799 biological_process
## 10527 1 5134 0.01947799 biological_process
## 10528 1 5134 0.01947799 biological_process
## 10529 1 5134 0.01947799 biological_process
## 10530 1 5134 0.01947799 biological_process
## 10531 1 5134 0.01947799 biological_process
## 10532 1 5134 0.01947799 biological_process
## 10533 1 5134 0.01947799 biological_process
## 10534 1 5134 0.01947799 biological_process
## 10535 1 5134 0.01947799 biological_process
## 10536 1 5134 0.01947799 biological_process
## 10537 1 5134 0.01947799 biological_process
## 10538 1 5134 0.01947799 biological_process
## 10539 1 5134 0.01947799 biological_process
## 10540 1 5134 0.01947799 biological_process
## 10541 1 5134 0.01947799 biological_process
## 10542 1 5134 0.01947799 biological_process
## 10543 1 5134 0.01947799 biological_process
## 10544 1 5134 0.01947799 biological_process
## 10545 1 5134 0.01947799 biological_process
## 10546 1 5134 0.01947799 biological_process
## 10547 1 5134 0.01947799 biological_process
## 10548 1 5134 0.01947799 biological_process
## 10549 1 5134 0.01947799 biological_process
## 10550 1 5134 0.01947799 biological_process
## 10551 1 5134 0.01947799 biological_process
## 10552 1 5134 0.01947799 biological_process
## 10553 1 5134 0.01947799 biological_process
## 10554 1 5134 0.01947799 biological_process
## 10555 1 5134 0.01947799 biological_process
## 10556 1 5134 0.01947799 biological_process
## 10557 1 5134 0.01947799 biological_process
## 10558 1 5134 0.01947799 biological_process
## 10559 1 5134 0.01947799 biological_process
## 10560 1 5134 0.01947799 biological_process
## 10561 1 5134 0.01947799 biological_process
## 10562 1 5134 0.01947799 biological_process
## 10563 1 5134 0.01947799 biological_process
## 10564 1 5134 0.01947799 biological_process
## 10565 1 5134 0.01947799 biological_process
## 10566 1 5134 0.01947799 biological_process
## 10567 1 5134 0.01947799 biological_process
## 10568 1 5134 0.01947799 biological_process
## 10569 1 5134 0.01947799 biological_process
## 10570 1 5134 0.01947799 biological_process
## 10571 1 5134 0.01947799 biological_process
## 10572 1 5134 0.01947799 biological_process
## 10573 1 5134 0.01947799 biological_process
## 10574 1 5134 0.01947799 biological_process
## 10575 1 5134 0.01947799 biological_process
## 10576 1 5134 0.01947799 biological_process
## 10577 1 5134 0.01947799 biological_process
## 10578 1 5134 0.01947799 biological_process
## 10579 1 5134 0.01947799 biological_process
## 10580 1 5134 0.01947799 biological_process
## 10581 1 5134 0.01947799 biological_process
## 10582 1 5134 0.01947799 biological_process
## 10583 1 5134 0.01947799 biological_process
## 10584 1 5134 0.01947799 biological_process
## 10585 1 5134 0.01947799 biological_process
## 10586 1 5134 0.01947799 biological_process
## 10587 1 5134 0.01947799 biological_process
## 10588 1 5134 0.01947799 biological_process
## 10589 1 5134 0.01947799 biological_process
## 10590 1 5134 0.01947799 biological_process
## 10591 1 5134 0.01947799 biological_process
## 10592 1 5134 0.01947799 biological_process
## 10593 1 5134 0.01947799 biological_process
## 10594 1 5134 0.01947799 biological_process
## 10595 1 5134 0.01947799 biological_process
## 10596 1 5134 0.01947799 biological_process
## 10597 1 5134 0.01947799 biological_process
## 10598 1 5134 0.01947799 biological_process
## 10599 1 5134 0.01947799 biological_process
## 10600 1 5134 0.01947799 biological_process
## 10601 1 5134 0.01947799 biological_process
## 10602 1 5134 0.01947799 biological_process
## 10603 1 5134 0.01947799 biological_process
## 10604 1 5134 0.01947799 biological_process
## 10605 1 5134 0.01947799 biological_process
## 10606 1 5134 0.01947799 biological_process
## 10607 1 5134 0.01947799 biological_process
## 10608 1 5134 0.01947799 biological_process
## 10609 1 5134 0.01947799 biological_process
## 10610 1 5134 0.01947799 biological_process
## 10611 1 5134 0.01947799 biological_process
## 10612 1 5134 0.01947799 biological_process
## 10613 1 5134 0.01947799 biological_process
## 10614 1 5134 0.01947799 biological_process
## 10615 1 5134 0.01947799 biological_process
## 10616 1 5134 0.01947799 biological_process
## 10617 1 5134 0.01947799 biological_process
## 10618 1 5134 0.01947799 biological_process
## 10619 1 5134 0.01947799 biological_process
## 10620 1 5134 0.01947799 biological_process
## 10621 1 5134 0.01947799 biological_process
## 10622 1 5134 0.01947799 biological_process
## 10623 1 5134 0.01947799 biological_process
## 10624 1 5134 0.01947799 biological_process
## 10625 1 5134 0.01947799 biological_process
## 10626 1 5134 0.01947799 biological_process
## 10627 1 5134 0.01947799 biological_process
## 10628 1 5134 0.01947799 biological_process
## 10629 1 5134 0.01947799 biological_process
## 10630 1 5134 0.01947799 biological_process
## 10631 1 5134 0.01947799 biological_process
## 10632 1 5134 0.01947799 biological_process
## 10633 1 5134 0.01947799 biological_process
## 10634 1 5134 0.01947799 biological_process
## 10635 1 5134 0.01947799 biological_process
## 10636 1 5134 0.01947799 biological_process
## 10637 1 5134 0.01947799 biological_process
## 10638 1 5134 0.01947799 biological_process
## 10639 1 5134 0.01947799 biological_process
## 10640 1 5134 0.01947799 biological_process
## 10641 1 5134 0.01947799 biological_process
## 10642 1 5134 0.01947799 biological_process
## 10643 1 5134 0.01947799 biological_process
## 10644 1 5134 0.01947799 biological_process
## 10645 1 5134 0.01947799 biological_process
## 10646 1 5134 0.01947799 biological_process
## 10647 1 5134 0.01947799 biological_process
## 10648 1 5134 0.01947799 biological_process
## 10649 1 5134 0.01947799 biological_process
## 10650 1 5134 0.01947799 biological_process
## 10651 1 5134 0.01947799 biological_process
## 10652 1 5134 0.01947799 biological_process
## 10653 1 5134 0.01947799 biological_process
## 10654 1 5134 0.01947799 biological_process
## 10655 1 5134 0.01947799 biological_process
## 10656 1 5134 0.01947799 biological_process
## 10657 1 5134 0.01947799 biological_process
## 10658 1 5134 0.01947799 biological_process
## 10659 1 5134 0.01947799 biological_process
## 10660 1 5134 0.01947799 biological_process
## 10661 1 5134 0.01947799 biological_process
## 10662 1 5134 0.01947799 biological_process
## 10663 1 5134 0.01947799 biological_process
## 10664 1 5134 0.01947799 biological_process
## 10665 1 5134 0.01947799 biological_process
## 10666 1 5134 0.01947799 biological_process
## 10667 1 5134 0.01947799 biological_process
## 10668 1 5134 0.01947799 biological_process
## 10669 1 5134 0.01947799 biological_process
## 10670 1 5134 0.01947799 biological_process
## 10671 1 5134 0.01947799 biological_process
## 10672 1 5134 0.01947799 biological_process
## 10673 1 5134 0.01947799 biological_process
## 10674 1 5134 0.01947799 biological_process
## 10675 1 5134 0.01947799 biological_process
## 10676 1 5134 0.01947799 biological_process
## 10677 1 5134 0.01947799 biological_process
## 10678 1 5134 0.01947799 biological_process
## 10679 1 5134 0.01947799 biological_process
## 10680 1 5134 0.01947799 biological_process
## 10681 1 5134 0.01947799 biological_process
## 10682 1 5134 0.01947799 biological_process
## 10683 1 5134 0.01947799 biological_process
## 10684 1 5134 0.01947799 biological_process
## 10685 1 5134 0.01947799 biological_process
## 10686 1 5134 0.01947799 biological_process
## 10687 1 5134 0.01947799 biological_process
## 10688 1 5134 0.01947799 biological_process
## 10689 1 5134 0.01947799 biological_process
## 10690 1 5134 0.01947799 biological_process
## 10691 1 5134 0.01947799 biological_process
## 10692 1 5134 0.01947799 biological_process
## 10693 1 5134 0.01947799 biological_process
## 10694 1 5134 0.01947799 biological_process
## 10695 1 5134 0.01947799 biological_process
## 10696 1 5134 0.01947799 biological_process
## 10697 1 5134 0.01947799 biological_process
## 10698 1 5134 0.01947799 biological_process
## 10699 1 5134 0.01947799 biological_process
## 10700 1 5134 0.01947799 biological_process
## 10701 1 5134 0.01947799 biological_process
## 10702 1 5134 0.01947799 biological_process
## 10703 1 5134 0.01947799 biological_process
## 10704 1 5134 0.01947799 biological_process
## 10705 1 5134 0.01947799 biological_process
## 10706 1 5134 0.01947799 biological_process
## 10707 1 5134 0.01947799 biological_process
## 10708 1 5134 0.01947799 biological_process
## 10709 1 5134 0.01947799 biological_process
## 10710 1 5134 0.01947799 biological_process
## 10711 1 5134 0.01947799 biological_process
## 10712 1 5134 0.01947799 biological_process
## 10713 1 5134 0.01947799 biological_process
## 10714 1 5134 0.01947799 biological_process
## 10715 1 5134 0.01947799 biological_process
## 10716 1 5134 0.01947799 biological_process
## 10717 1 5134 0.01947799 biological_process
## 10718 1 5134 0.01947799 biological_process
## 10719 1 5134 0.01947799 biological_process
## 10720 1 5134 0.01947799 biological_process
## 10721 1 5134 0.01947799 biological_process
## 10722 1 5134 0.01947799 biological_process
## 10723 1 5134 0.01947799 biological_process
## 10724 1 5134 0.01947799 biological_process
## 10725 1 5134 0.01947799 biological_process
## 10726 1 5134 0.01947799 biological_process
## 10727 1 5134 0.01947799 biological_process
## 10728 1 5134 0.01947799 biological_process
## 10729 1 5134 0.01947799 biological_process
## 10730 1 5134 0.01947799 biological_process
## 10731 1 5134 0.01947799 biological_process
## 10732 1 5134 0.01947799 biological_process
## 10733 1 5134 0.01947799 biological_process
## 10734 1 5134 0.01947799 biological_process
## 10735 1 5134 0.01947799 biological_process
## 10736 1 5134 0.01947799 biological_process
## 10737 1 5134 0.01947799 biological_process
## 10738 1 5134 0.01947799 biological_process
## 10739 1 5134 0.01947799 biological_process
## 10740 1 5134 0.01947799 biological_process
## 10741 1 5134 0.01947799 biological_process
## 10742 1 5134 0.01947799 biological_process
## 10743 1 5134 0.01947799 biological_process
## 10744 1 5134 0.01947799 biological_process
## 10745 1 5134 0.01947799 biological_process
## 10746 1 5134 0.01947799 biological_process
## 10747 1 5134 0.01947799 biological_process
## 10748 1 5134 0.01947799 biological_process
## 10749 1 5134 0.01947799 biological_process
## 10750 1 5134 0.01947799 biological_process
## 10751 1 5134 0.01947799 biological_process
## 10752 1 5134 0.01947799 biological_process
## 10753 1 5134 0.01947799 biological_process
## 10754 1 5134 0.01947799 biological_process
## 10755 1 5134 0.01947799 biological_process
## 10756 1 5134 0.01947799 biological_process
## 10757 1 5134 0.01947799 biological_process
## 10758 1 5134 0.01947799 biological_process
## 10759 1 5134 0.01947799 biological_process
## 10760 1 5134 0.01947799 biological_process
## 10761 1 5134 0.01947799 biological_process
## 10762 1 5134 0.01947799 biological_process
## 10763 1 5134 0.01947799 biological_process
## 10764 1 5134 0.01947799 biological_process
## 10765 1 5134 0.01947799 biological_process
## 10766 1 5134 0.01947799 biological_process
## 10767 1 5134 0.01947799 biological_process
## 10768 1 5134 0.01947799 biological_process
## 10769 1 5134 0.01947799 biological_process
## 10770 1 5134 0.01947799 biological_process
## 10771 1 5134 0.01947799 biological_process
## 10772 1 5134 0.01947799 biological_process
## 10773 1 5134 0.01947799 biological_process
## 10774 1 5134 0.01947799 biological_process
## 10775 1 5134 0.01947799 biological_process
## 10776 1 5134 0.01947799 biological_process
## 10777 1 5134 0.01947799 biological_process
## 10778 1 5134 0.01947799 biological_process
## 10779 1 5134 0.01947799 biological_process
## 10780 1 5134 0.01947799 biological_process
## 10781 1 5134 0.01947799 biological_process
## 10782 1 5134 0.01947799 biological_process
## 10783 1 5134 0.01947799 biological_process
## 10784 1 5134 0.01947799 biological_process
## 10785 1 5134 0.01947799 biological_process
## 10786 1 5134 0.01947799 biological_process
## 10787 1 5134 0.01947799 biological_process
## 10788 1 5134 0.01947799 biological_process
## 10789 1 5134 0.01947799 biological_process
## 10790 1 5134 0.01947799 biological_process
## 10791 1 5134 0.01947799 biological_process
## 10792 1 5134 0.01947799 biological_process
## 10793 1 5134 0.01947799 biological_process
## 10794 1 5134 0.01947799 biological_process
## 10795 1 5134 0.01947799 biological_process
## 10796 1 5134 0.01947799 biological_process
## 10797 1 5134 0.01947799 biological_process
## 10798 1 5134 0.01947799 biological_process
## 10799 1 5134 0.01947799 biological_process
## 10800 1 5134 0.01947799 biological_process
## 10801 1 5134 0.01947799 biological_process
## 10802 1 5134 0.01947799 biological_process
## 10803 1 5134 0.01947799 biological_process
## 10804 1 5134 0.01947799 biological_process
## 10805 1 5134 0.01947799 biological_process
## 10806 1 5134 0.01947799 biological_process
## 10807 1 5134 0.01947799 biological_process
## 10808 1 5134 0.01947799 biological_process
## 10809 1 5134 0.01947799 biological_process
## 10810 1 5134 0.01947799 biological_process
## 10811 1 5134 0.01947799 biological_process
## 10812 1 5134 0.01947799 biological_process
## 10813 1 5134 0.01947799 biological_process
## 10814 1 5134 0.01947799 biological_process
## 10815 1 5134 0.01947799 biological_process
## 10816 1 5134 0.01947799 biological_process
## 10817 1 5134 0.01947799 biological_process
## 10818 1 5134 0.01947799 biological_process
## 10819 1 5134 0.01947799 biological_process
## 10820 1 5134 0.01947799 biological_process
## 10821 1 5134 0.01947799 biological_process
## 10822 1 5134 0.01947799 biological_process
## 10823 1 5134 0.01947799 biological_process
## 10824 1 5134 0.01947799 biological_process
## 10825 1 5134 0.01947799 biological_process
## 10826 1 5134 0.01947799 biological_process
## 10827 1 5134 0.01947799 biological_process
## 10828 1 5134 0.01947799 biological_process
## 10829 1 5134 0.01947799 biological_process
## 10830 1 5134 0.01947799 biological_process
## 10831 1 5134 0.01947799 biological_process
## 10832 1 5134 0.01947799 biological_process
## 10833 1 5134 0.01947799 biological_process
## 10834 1 5134 0.01947799 biological_process
## 10835 1 5134 0.01947799 biological_process
## 10836 1 5134 0.01947799 biological_process
## 10837 1 5134 0.01947799 biological_process
## 10838 1 5134 0.01947799 biological_process
## 10839 1 5134 0.01947799 biological_process
## 10840 1 5134 0.01947799 biological_process
## 10841 1 5134 0.01947799 biological_process
## 10842 1 5134 0.01947799 biological_process
## 10843 1 5134 0.01947799 biological_process
## 10844 1 5134 0.01947799 biological_process
## 10845 1 5134 0.01947799 biological_process
## 10846 1 5134 0.01947799 biological_process
## 10847 1 5134 0.01947799 biological_process
## 10848 1 5134 0.01947799 biological_process
## 10849 1 5134 0.01947799 biological_process
## 10850 1 5134 0.01947799 biological_process
## 10851 1 5134 0.01947799 biological_process
## 10852 1 5134 0.01947799 biological_process
## 10853 1 5134 0.01947799 biological_process
## 10854 1 5134 0.01947799 biological_process
## 10855 1 5134 0.01947799 biological_process
## 10856 1 5134 0.01947799 biological_process
## 10857 1 5134 0.01947799 biological_process
## 10858 1 5134 0.01947799 biological_process
## 10859 1 5134 0.01947799 biological_process
## 10860 1 5134 0.01947799 biological_process
## 10861 1 5134 0.01947799 biological_process
## 10862 1 5134 0.01947799 biological_process
## 10863 1 5134 0.01947799 biological_process
## 10864 1 5134 0.01947799 biological_process
## 10865 1 5134 0.01947799 biological_process
## 10866 1 5134 0.01947799 biological_process
## 10867 1 5134 0.01947799 biological_process
## 10868 1 5134 0.01947799 biological_process
## 10869 1 5134 0.01947799 biological_process
## 10870 1 5134 0.01947799 biological_process
## 10871 1 5134 0.01947799 biological_process
## 10872 1 5134 0.01947799 biological_process
## 10873 1 5134 0.01947799 biological_process
## 10874 1 5134 0.01947799 biological_process
## 10875 1 5134 0.01947799 biological_process
## 10876 1 5134 0.01947799 biological_process
## 10877 1 5134 0.01947799 biological_process
## 10878 1 5134 0.01947799 biological_process
## 10879 1 5134 0.01947799 biological_process
## 10880 1 5134 0.01947799 biological_process
## 10881 1 5134 0.01947799 biological_process
## 10882 1 5134 0.01947799 biological_process
## 10883 1 5134 0.01947799 biological_process
## 10884 1 5134 0.01947799 biological_process
## 10885 1 5134 0.01947799 biological_process
## 10886 1 5134 0.01947799 biological_process
## 10887 1 5134 0.01947799 biological_process
## 10888 1 5134 0.01947799 biological_process
## 10889 1 5134 0.01947799 biological_process
## 10890 1 5134 0.01947799 biological_process
## 10891 1 5134 0.01947799 biological_process
## 10892 1 5134 0.01947799 biological_process
## 10893 1 5134 0.01947799 biological_process
## 10894 1 5134 0.01947799 biological_process
## 10895 1 5134 0.01947799 biological_process
## 10896 1 5134 0.01947799 biological_process
## 10897 1 5134 0.01947799 biological_process
## 10898 1 5134 0.01947799 biological_process
## 10899 1 5134 0.01947799 biological_process
## 10900 1 5134 0.01947799 biological_process
## 10901 1 5134 0.01947799 biological_process
## 10902 1 5134 0.01947799 biological_process
## 10903 1 5134 0.01947799 biological_process
## 10904 1 5134 0.01947799 biological_process
## 10905 1 5134 0.01947799 biological_process
## 10906 1 5134 0.01947799 biological_process
## 10907 1 5134 0.01947799 biological_process
## 10908 1 5134 0.01947799 biological_process
## 10909 1 5134 0.01947799 biological_process
## 10910 1 5134 0.01947799 biological_process
## 10911 1 5134 0.01947799 biological_process
## 10912 1 5134 0.01947799 biological_process
## 10913 1 5134 0.01947799 biological_process
## 10914 1 5134 0.01947799 biological_process
## 10915 1 5134 0.01947799 biological_process
## 10916 1 5134 0.01947799 biological_process
## 10917 1 5134 0.01947799 biological_process
## 10918 1 5134 0.01947799 biological_process
## 10919 1 5134 0.01947799 biological_process
## 10920 1 5134 0.01947799 biological_process
## 10921 1 5134 0.01947799 biological_process
## 10922 1 5134 0.01947799 biological_process
## 10923 1 5134 0.01947799 biological_process
## 10924 1 5134 0.01947799 biological_process
## 10925 1 5134 0.01947799 biological_process
## 10926 1 5134 0.01947799 biological_process
## 10927 1 5134 0.01947799 biological_process
## 10928 1 5134 0.01947799 biological_process
## 10929 1 5134 0.01947799 biological_process
## 10930 1 5134 0.01947799 biological_process
## 10931 1 5134 0.01947799 biological_process
## 10932 1 5134 0.01947799 biological_process
## 10933 1 5134 0.01947799 biological_process
## 10934 1 5134 0.01947799 biological_process
## 10935 1 5134 0.01947799 biological_process
## 10936 1 5134 0.01947799 biological_process
## 10937 1 5134 0.01947799 biological_process
## 10938 1 5134 0.01947799 biological_process
## 10939 1 5134 0.01947799 biological_process
## 10940 1 5134 0.01947799 biological_process
## 10941 1 5134 0.01947799 biological_process
## 10942 1 5134 0.01947799 biological_process
## 10943 1 5134 0.01947799 biological_process
## 10944 1 5134 0.01947799 biological_process
## 10945 1 5134 0.01947799 biological_process
## 10946 1 5134 0.01947799 biological_process
## 10947 1 5134 0.01947799 biological_process
## 10948 1 5134 0.01947799 biological_process
## 10949 1 5134 0.01947799 biological_process
## 10950 1 5134 0.01947799 biological_process
## 10951 1 5134 0.01947799 biological_process
## 10952 1 5134 0.01947799 biological_process
## 10953 1 5134 0.01947799 cellular_component
## 10954 1 5134 0.01947799 biological_process
## 10955 1 5134 0.01947799 cellular_component
## 10956 1 5134 0.01947799 cellular_component
## 10957 1 5134 0.01947799 cellular_component
## 10958 1 5134 0.01947799 cellular_component
## 10959 1 5134 0.01947799 biological_process
## 10960 1 5134 0.01947799 biological_process
## 10961 1 5134 0.01947799 cellular_component
## 10962 1 5134 0.01947799 biological_process
## 10963 1 5134 0.01947799 cellular_component
## 10964 1 5134 0.01947799 biological_process
## 10965 1 5134 0.01947799 biological_process
## 10966 1 5134 0.01947799 molecular_function
## 10967 1 5134 0.01947799 molecular_function
## 10968 1 5134 0.01947799 molecular_function
## 10969 1 5134 0.01947799 cellular_component
## 10970 1 5134 0.01947799 biological_process
## 10971 1 5134 0.01947799 biological_process
## 10972 1 5134 0.01947799 molecular_function
## 10973 1 5134 0.01947799 biological_process
## 10974 1 5134 0.01947799 molecular_function
## 10975 1 5134 0.01947799 biological_process
## 10976 1 5134 0.01947799 cellular_component
## 10977 1 5134 0.01947799 biological_process
## 10978 1 5134 0.01947799 cellular_component
## 10979 1 5134 0.01947799 biological_process
## 10980 1 5134 0.01947799 biological_process
## 10981 1 5134 0.01947799 biological_process
## 10982 1 5134 0.01947799 biological_process
## 10983 1 5134 0.01947799 molecular_function
## 10984 1 5134 0.01947799 molecular_function
## 10985 1 5134 0.01947799 molecular_function
## 10986 1 5134 0.01947799 molecular_function
## 10987 1 5134 0.01947799 molecular_function
## 10988 1 5134 0.01947799 molecular_function
## 10989 1 5134 0.01947799 biological_process
## 10990 1 5134 0.01947799 biological_process
## 10991 1 5134 0.01947799 molecular_function
## 10992 1 5134 0.01947799 biological_process
## 10993 1 5134 0.01947799 biological_process
## 10994 1 5134 0.01947799 molecular_function
## 10995 1 5134 0.01947799 biological_process
## 10996 1 5134 0.01947799 biological_process
## 10997 1 5134 0.01947799 molecular_function
## 10998 1 5134 0.01947799 molecular_function
## 10999 1 5134 0.01947799 molecular_function
## 11000 1 5134 0.01947799 biological_process
## 11001 1 5134 0.01947799 molecular_function
## 11002 1 5134 0.01947799 biological_process
## 11003 1 5134 0.01947799 molecular_function
## 11004 1 5134 0.01947799 molecular_function
## 11005 1 5134 0.01947799 molecular_function
## 11006 1 5134 0.01947799 molecular_function
## 11007 1 5134 0.01947799 biological_process
## 11008 1 5134 0.01947799 biological_process
## 11009 1 5134 0.01947799 biological_process
## 11010 1 5134 0.01947799 biological_process
## 11011 1 5134 0.01947799 cellular_component
## 11012 1 5134 0.01947799 cellular_component
## 11013 1 5134 0.01947799 molecular_function
## 11014 1 5134 0.01947799 biological_process
## 11015 1 5134 0.01947799 biological_process
## 11016 1 5134 0.01947799 molecular_function
## 11017 1 5134 0.01947799 biological_process
## 11018 1 5134 0.01947799 biological_process
## 11019 1 5134 0.01947799 biological_process
## 11020 1 5134 0.01947799 molecular_function
## 11021 1 5134 0.01947799 molecular_function
## 11022 1 5134 0.01947799 molecular_function
## 11023 1 5134 0.01947799 biological_process
## 11024 1 5134 0.01947799 molecular_function
## 11025 1 5134 0.01947799 biological_process
## 11026 1 5134 0.01947799 biological_process
## 11027 1 5134 0.01947799 biological_process
## 11028 1 5134 0.01947799 biological_process
## 11029 1 5134 0.01947799 biological_process
## 11030 1 5134 0.01947799 biological_process
## 11031 1 5134 0.01947799 biological_process
## 11032 1 5134 0.01947799 biological_process
## 11033 1 5134 0.01947799 molecular_function
## 11034 1 5134 0.01947799 biological_process
## 11035 1 5134 0.01947799 biological_process
## 11036 1 5134 0.01947799 biological_process
## 11037 1 5134 0.01947799 biological_process
## 11038 1 5134 0.01947799 biological_process
## 11039 1 5134 0.01947799 cellular_component
## 11040 1 5134 0.01947799 cellular_component
## 11041 1 5134 0.01947799 cellular_component
## 11042 1 5134 0.01947799 biological_process
## 11043 1 5134 0.01947799 biological_process
## 11044 1 5134 0.01947799 biological_process
## 11045 1 5134 0.01947799 biological_process
## 11046 1 5134 0.01947799 biological_process
## 11047 1 5134 0.01947799 biological_process
## 11048 1 5134 0.01947799 biological_process
## 11049 1 5134 0.01947799 biological_process
## 11050 1 5134 0.01947799 biological_process
## 11051 1 5134 0.01947799 biological_process
## 11052 1 5134 0.01947799 biological_process
## 11053 1 5134 0.01947799 biological_process
## 11054 1 5134 0.01947799 biological_process
## 11055 1 5134 0.01947799 biological_process
## 11056 1 5134 0.01947799 biological_process
## 11057 1 5134 0.01947799 biological_process
## 11058 1 5134 0.01947799 biological_process
## 11059 1 5134 0.01947799 biological_process
## 11060 1 5134 0.01947799 biological_process
## 11061 1 5134 0.01947799 biological_process
## 11062 1 5134 0.01947799 biological_process
## 11063 1 5134 0.01947799 biological_process
## 11064 1 5134 0.01947799 biological_process
## 11065 1 5134 0.01947799 biological_process
## 11066 1 5134 0.01947799 biological_process
## 11067 1 5134 0.01947799 biological_process
## 11068 1 5134 0.01947799 biological_process
## 11069 1 5134 0.01947799 biological_process
## 11070 1 5134 0.01947799 biological_process
## 11071 1 5134 0.01947799 biological_process
## 11072 1 5134 0.01947799 biological_process
## 11073 1 5134 0.01947799 biological_process
## 11074 1 5134 0.01947799 cellular_component
## 11075 1 5134 0.01947799 biological_process
## 11076 1 5134 0.01947799 biological_process
## 11077 1 5134 0.01947799 biological_process
## 11078 1 5134 0.01947799 biological_process
## 11079 1 5134 0.01947799 biological_process
## 11080 1 5134 0.01947799 biological_process
## 11081 1 5134 0.01947799 molecular_function
## 11082 1 5134 0.01947799 biological_process
## 11083 1 5134 0.01947799 biological_process
## 11084 1 5134 0.01947799 biological_process
## 11085 1 5134 0.01947799 biological_process
## 11086 1 5134 0.01947799 biological_process
## 11087 1 5134 0.01947799 biological_process
## 11088 1 5134 0.01947799 biological_process
## 11089 1 5134 0.01947799 molecular_function
## 11090 1 5134 0.01947799 biological_process
## 11091 1 5134 0.01947799 molecular_function
## 11092 1 5134 0.01947799 molecular_function
## 11093 1 5134 0.01947799 molecular_function
## 11094 1 5134 0.01947799 biological_process
## 11095 1 5134 0.01947799 molecular_function
## 11096 1 5134 0.01947799 molecular_function
## 11097 1 5134 0.01947799 biological_process
## 11098 1 5134 0.01947799 biological_process
## 11099 1 5134 0.01947799 molecular_function
## 11100 1 5134 0.01947799 molecular_function
## 11101 1 5134 0.01947799 molecular_function
## 11102 1 5134 0.01947799 molecular_function
## 11103 1 5134 0.01947799 molecular_function
## 11104 1 5134 0.01947799 molecular_function
## 11105 1 5134 0.01947799 cellular_component
## 11106 1 5134 0.01947799 molecular_function
## 11107 1 5134 0.01947799 molecular_function
## 11108 1 5134 0.01947799 molecular_function
## 11109 1 5134 0.01947799 molecular_function
## 11110 1 5134 0.01947799 molecular_function
## 11111 1 5134 0.01947799 biological_process
## 11112 1 5134 0.01947799 cellular_component
## 11113 1 5134 0.01947799 biological_process
## 11114 1 5134 0.01947799 biological_process
## 11115 1 5134 0.01947799 cellular_component
## 11116 1 5134 0.01947799 cellular_component
## 11117 1 5134 0.01947799 biological_process
## 11118 1 5134 0.01947799 molecular_function
## 11119 1 5134 0.01947799 biological_process
## 11120 1 5134 0.01947799 biological_process
## 11121 1 5134 0.01947799 biological_process
## 11122 1 5134 0.01947799 biological_process
## 11123 1 5134 0.01947799 molecular_function
## 11124 1 5134 0.01947799 molecular_function
## 11125 1 5134 0.01947799 biological_process
## 11126 1 5134 0.01947799 biological_process
## 11127 1 5134 0.01947799 molecular_function
## 11128 1 5134 0.01947799 biological_process
## 11129 1 5134 0.01947799 molecular_function
## 11130 1 5134 0.01947799 biological_process
## 11131 1 5134 0.01947799 biological_process
## 11132 1 5134 0.01947799 biological_process
## 11133 1 5134 0.01947799 biological_process
## 11134 1 5134 0.01947799 biological_process
## 11135 1 5134 0.01947799 biological_process
## 11136 1 5134 0.01947799 molecular_function
## 11137 1 5134 0.01947799 biological_process
## 11138 1 5134 0.01947799 molecular_function
## 11139 1 5134 0.01947799 molecular_function
## 11140 1 5134 0.01947799 molecular_function
## 11141 1 5134 0.01947799 molecular_function
## 11142 1 5134 0.01947799 biological_process
## 11143 1 5134 0.01947799 molecular_function
## 11144 1 5134 0.01947799 biological_process
## 11145 1 5134 0.01947799 molecular_function
## 11146 1 5134 0.01947799 biological_process
## 11147 1 5134 0.01947799 molecular_function
## 11148 1 5134 0.01947799 biological_process
## 11149 1 5134 0.01947799 molecular_function
## 11150 1 5134 0.01947799 biological_process
## 11151 1 5134 0.01947799 biological_process
## 11152 1 5134 0.01947799 molecular_function
## 11153 1 5134 0.01947799 cellular_component
## 11154 1 5134 0.01947799 molecular_function
## 11155 1 5134 0.01947799 cellular_component
## 11156 1 5134 0.01947799 cellular_component
## 11157 1 5134 0.01947799 biological_process
## 11158 1 5134 0.01947799 cellular_component
## 11159 1 5134 0.01947799 biological_process
## 11160 1 5134 0.01947799 biological_process
## 11161 1 5134 0.01947799 molecular_function
## 11162 1 5134 0.01947799 biological_process
## 11163 1 5134 0.01947799 biological_process
## 11164 1 5134 0.01947799 molecular_function
## 11165 1 5134 0.01947799 biological_process
## 11166 1 5134 0.01947799 biological_process
## 11167 1 5134 0.01947799 biological_process
## 11168 1 5134 0.01947799 molecular_function
## 11169 1 5134 0.01947799 molecular_function
## 11170 1 5134 0.01947799 biological_process
## 11171 1 5134 0.01947799 molecular_function
## 11172 1 5134 0.01947799 molecular_function
## 11173 1 5134 0.01947799 biological_process
## 11174 1 5134 0.01947799 cellular_component
## 11175 1 5134 0.01947799 biological_process
## 11176 1 5134 0.01947799 biological_process
## 11177 1 5134 0.01947799 biological_process
## 11178 1 5134 0.01947799 molecular_function
## 11179 1 5134 0.01947799 biological_process
## 11180 1 5134 0.01947799 biological_process
## 11181 1 5134 0.01947799 biological_process
## 11182 1 5134 0.01947799 biological_process
## 11183 1 5134 0.01947799 biological_process
## 11184 1 5134 0.01947799 biological_process
## 11185 1 5134 0.01947799 biological_process
## 11186 1 5134 0.01947799 biological_process
## 11187 1 5134 0.01947799 biological_process
## 11188 1 5134 0.01947799 biological_process
## 11189 1 5134 0.01947799 biological_process
## 11190 1 5134 0.01947799 biological_process
## 11191 1 5134 0.01947799 biological_process
## 11192 1 5134 0.01947799 biological_process
## 11193 1 5134 0.01947799 biological_process
## 11194 1 5134 0.01947799 biological_process
## 11195 1 5134 0.01947799 biological_process
## 11196 1 5134 0.01947799 biological_process
## 11197 1 5134 0.01947799 biological_process
## 11198 1 5134 0.01947799 biological_process
## 11199 1 5134 0.01947799 biological_process
## 11200 1 5134 0.01947799 biological_process
## 11201 1 5134 0.01947799 biological_process
## 11202 1 5134 0.01947799 biological_process
## 11203 1 5134 0.01947799 biological_process
## 11204 1 5134 0.01947799 biological_process
## 11205 1 5134 0.01947799 biological_process
## 11206 1 5134 0.01947799 biological_process
## 11207 1 5134 0.01947799 biological_process
## 11208 1 5134 0.01947799 biological_process
## 11209 1 5134 0.01947799 biological_process
## 11210 1 5134 0.01947799 biological_process
## 11211 1 5134 0.01947799 biological_process
## 11212 1 5134 0.01947799 biological_process
## 11213 1 5134 0.01947799 biological_process
## 11214 1 5134 0.01947799 biological_process
## 11215 1 5134 0.01947799 biological_process
## 11216 1 5134 0.01947799 biological_process
## 11217 1 5134 0.01947799 biological_process
## 11218 1 5134 0.01947799 biological_process
## 11219 1 5134 0.01947799 biological_process
## 11220 1 5134 0.01947799 biological_process
## 11221 1 5134 0.01947799 biological_process
## 11222 1 5134 0.01947799 biological_process
## 11223 1 5134 0.01947799 biological_process
## 11224 1 5134 0.01947799 biological_process
## 11225 1 5134 0.01947799 biological_process
## 11226 1 5134 0.01947799 biological_process
## 11227 1 5134 0.01947799 biological_process
## 11228 1 5134 0.01947799 biological_process
## 11229 1 5134 0.01947799 biological_process
## 11230 1 5134 0.01947799 biological_process
## 11231 1 5134 0.01947799 biological_process
## 11232 1 5134 0.01947799 biological_process
## 11233 1 5134 0.01947799 biological_process
## 11234 1 5134 0.01947799 biological_process
## 11235 1 5134 0.01947799 biological_process
## 11236 1 5134 0.01947799 biological_process
## 11237 1 5134 0.01947799 biological_process
## 11238 1 5134 0.01947799 biological_process
## 11239 1 5134 0.01947799 biological_process
## 11240 1 5134 0.01947799 biological_process
## 11241 1 5134 0.01947799 biological_process
## 11242 1 5134 0.01947799 biological_process
## 11243 1 5134 0.01947799 biological_process
## 11244 1 5134 0.01947799 biological_process
## 11245 1 5134 0.01947799 biological_process
## 11246 1 5134 0.01947799 biological_process
## 11247 1 5134 0.01947799 biological_process
## 11248 1 5134 0.01947799 biological_process
## 11249 1 5134 0.01947799 biological_process
## 11250 1 5134 0.01947799 biological_process
## 11251 1 5134 0.01947799 biological_process
## 11252 1 5134 0.01947799 biological_process
## 11253 1 5134 0.01947799 biological_process
## 11254 1 5134 0.01947799 biological_process
## 11255 1 5134 0.01947799 biological_process
## 11256 1 5134 0.01947799 biological_process
## 11257 1 5134 0.01947799 biological_process
## 11258 1 5134 0.01947799 biological_process
## 11259 1 5134 0.01947799 biological_process
## 11260 1 5134 0.01947799 biological_process
## 11261 1 5134 0.01947799 biological_process
## 11262 1 5134 0.01947799 biological_process
## 11263 1 5134 0.01947799 biological_process
## 11264 1 5134 0.01947799 biological_process
## 11265 1 5134 0.01947799 biological_process
## 11266 1 5134 0.01947799 biological_process
## 11267 1 5134 0.01947799 biological_process
## 11268 1 5134 0.01947799 biological_process
## 11269 1 5134 0.01947799 biological_process
## 11270 1 5134 0.01947799 biological_process
## 11271 1 5134 0.01947799 biological_process
## 11272 1 5134 0.01947799 biological_process
## 11273 1 5134 0.01947799 biological_process
## 11274 1 5134 0.01947799 biological_process
## 11275 1 5134 0.01947799 biological_process
## 11276 1 5134 0.01947799 biological_process
## 11277 1 5134 0.01947799 biological_process
## 11278 1 5134 0.01947799 biological_process
## 11279 1 5134 0.01947799 biological_process
## 11280 1 5134 0.01947799 biological_process
## 11281 1 5134 0.01947799 biological_process
## 11282 1 5134 0.01947799 biological_process
## 11283 1 5134 0.01947799 biological_process
## 11284 1 5134 0.01947799 biological_process
## 11285 1 5134 0.01947799 biological_process
## 11286 1 5134 0.01947799 biological_process
## 11287 1 5134 0.01947799 biological_process
## 11288 1 5134 0.01947799 biological_process
## 11289 1 5134 0.01947799 biological_process
## 11290 1 5134 0.01947799 biological_process
## 11291 1 5134 0.01947799 biological_process
## 11292 1 5134 0.01947799 biological_process
## 11293 1 5134 0.01947799 biological_process
## 11294 1 5134 0.01947799 biological_process
## 11295 1 5134 0.01947799 biological_process
## 11296 1 5134 0.01947799 biological_process
## 11297 1 5134 0.01947799 biological_process
## 11298 1 5134 0.01947799 biological_process
## 11299 1 5134 0.01947799 biological_process
## 11300 1 5134 0.01947799 biological_process
## 11301 1 5134 0.01947799 biological_process
## 11302 1 5134 0.01947799 biological_process
## 11303 1 5134 0.01947799 biological_process
## 11304 1 5134 0.01947799 biological_process
## 11305 1 5134 0.01947799 biological_process
## 11306 1 5134 0.01947799 biological_process
## 11307 1 5134 0.01947799 biological_process
## 11308 1 5134 0.01947799 biological_process
## 11309 1 5134 0.01947799 biological_process
## 11310 1 5134 0.01947799 biological_process
## 11311 1 5134 0.01947799 biological_process
## 11312 1 5134 0.01947799 biological_process
## 11313 1 5134 0.01947799 biological_process
## 11314 1 5134 0.01947799 biological_process
## 11315 1 5134 0.01947799 biological_process
## 11316 1 5134 0.01947799 biological_process
## 11317 1 5134 0.01947799 biological_process
## 11318 1 5134 0.01947799 biological_process
## 11319 1 5134 0.01947799 biological_process
## 11320 1 5134 0.01947799 biological_process
## 11321 1 5134 0.01947799 biological_process
## 11322 1 5134 0.01947799 biological_process
## 11323 1 5134 0.01947799 biological_process
## 11324 1 5134 0.01947799 biological_process
## 11325 1 5134 0.01947799 biological_process
## 11326 1 5134 0.01947799 biological_process
## 11327 1 5134 0.01947799 biological_process
## 11328 1 5134 0.01947799 biological_process
## 11329 1 5134 0.01947799 biological_process
## 11330 1 5134 0.01947799 biological_process
## 11331 1 5134 0.01947799 biological_process
## 11332 1 5134 0.01947799 biological_process
## 11333 1 5134 0.01947799 biological_process
## 11334 1 5134 0.01947799 biological_process
## 11335 1 5134 0.01947799 biological_process
## 11336 1 5134 0.01947799 biological_process
## 11337 1 5134 0.01947799 biological_process
## 11338 1 5134 0.01947799 biological_process
## 11339 1 5134 0.01947799 biological_process
## 11340 1 5134 0.01947799 biological_process
## 11341 1 5134 0.01947799 biological_process
## 11342 1 5134 0.01947799 biological_process
## 11343 1 5134 0.01947799 biological_process
## 11344 1 5134 0.01947799 biological_process
## 11345 1 5134 0.01947799 biological_process
## 11346 1 5134 0.01947799 biological_process
## 11347 1 5134 0.01947799 biological_process
## 11348 1 5134 0.01947799 biological_process
## 11349 1 5134 0.01947799 biological_process
## 11350 1 5134 0.01947799 biological_process
## 11351 1 5134 0.01947799 biological_process
## 11352 1 5134 0.01947799 biological_process
## 11353 1 5134 0.01947799 biological_process
## 11354 1 5134 0.01947799 biological_process
## 11355 1 5134 0.01947799 biological_process
## 11356 1 5134 0.01947799 biological_process
## 11357 1 5134 0.01947799 biological_process
## 11358 1 5134 0.01947799 biological_process
## 11359 1 5134 0.01947799 biological_process
## 11360 1 5134 0.01947799 biological_process
## 11361 1 5134 0.01947799 biological_process
## 11362 1 5134 0.01947799 biological_process
## 11363 1 5134 0.01947799 biological_process
## 11364 1 5134 0.01947799 biological_process
## 11365 1 5134 0.01947799 biological_process
## 11366 1 5134 0.01947799 biological_process
## 11367 1 5134 0.01947799 biological_process
## 11368 1 5134 0.01947799 biological_process
## 11369 1 5134 0.01947799 biological_process
## 11370 1 5134 0.01947799 biological_process
## 11371 1 5134 0.01947799 biological_process
## 11372 1 5134 0.01947799 biological_process
## 11373 1 5134 0.01947799 biological_process
## 11374 1 5134 0.01947799 biological_process
## 11375 1 5134 0.01947799 biological_process
## 11376 1 5134 0.01947799 biological_process
## 11377 1 5134 0.01947799 biological_process
## 11378 1 5134 0.01947799 biological_process
## 11379 1 5134 0.01947799 biological_process
## 11380 1 5134 0.01947799 biological_process
## 11381 1 5134 0.01947799 biological_process
## 11382 1 5134 0.01947799 biological_process
## 11383 1 5134 0.01947799 biological_process
## 11384 1 5134 0.01947799 biological_process
## 11385 1 5134 0.01947799 biological_process
## 11386 1 5134 0.01947799 biological_process
## 11387 1 5134 0.01947799 biological_process
## 11388 1 5134 0.01947799 biological_process
## 11389 1 5134 0.01947799 biological_process
## 11390 1 5134 0.01947799 biological_process
## 11391 1 5134 0.01947799 biological_process
## 11392 1 5134 0.01947799 biological_process
## 11393 1 5134 0.01947799 biological_process
## 11394 1 5134 0.01947799 biological_process
## 11395 1 5134 0.01947799 biological_process
## 11396 1 5134 0.01947799 biological_process
## 11397 1 5134 0.01947799 biological_process
## 11398 1 5134 0.01947799 biological_process
## 11399 1 5134 0.01947799 biological_process
## 11400 1 5134 0.01947799 biological_process
## 11401 1 5134 0.01947799 biological_process
## 11402 1 5134 0.01947799 biological_process
## 11403 1 5134 0.01947799 biological_process
## 11404 1 5134 0.01947799 biological_process
## 11405 1 5134 0.01947799 biological_process
## 11406 1 5134 0.01947799 biological_process
## 11407 1 5134 0.01947799 biological_process
## 11408 1 5134 0.01947799 biological_process
## 11409 1 5134 0.01947799 biological_process
## 11410 1 5134 0.01947799 biological_process
## 11411 1 5134 0.01947799 biological_process
## 11412 1 5134 0.01947799 biological_process
## 11413 1 5134 0.01947799 biological_process
## 11414 1 5134 0.01947799 biological_process
## 11415 1 5134 0.01947799 biological_process
## 11416 1 5134 0.01947799 biological_process
## 11417 1 5134 0.01947799 biological_process
## 11418 1 5134 0.01947799 biological_process
## 11419 1 5134 0.01947799 biological_process
## 11420 1 5134 0.01947799 biological_process
## 11421 1 5134 0.01947799 biological_process
## 11422 1 5134 0.01947799 biological_process
## 11423 1 5134 0.01947799 biological_process
## 11424 1 5134 0.01947799 biological_process
## 11425 1 5134 0.01947799 biological_process
## 11426 1 5134 0.01947799 biological_process
## 11427 1 5134 0.01947799 biological_process
## 11428 1 5134 0.01947799 biological_process
## 11429 1 5134 0.01947799 biological_process
## 11430 1 5134 0.01947799 biological_process
## 11431 1 5134 0.01947799 biological_process
## 11432 1 5134 0.01947799 biological_process
## 11433 1 5134 0.01947799 biological_process
## 11434 1 5134 0.01947799 biological_process
## 11435 1 5134 0.01947799 biological_process
## 11436 1 5134 0.01947799 biological_process
## 11437 1 5134 0.01947799 biological_process
## 11438 1 5134 0.01947799 biological_process
## 11439 1 5134 0.01947799 biological_process
## 11440 1 5134 0.01947799 biological_process
## 11441 1 5134 0.01947799 biological_process
## 11442 1 5134 0.01947799 biological_process
## 11443 1 5134 0.01947799 biological_process
## 11444 1 5134 0.01947799 biological_process
## 11445 1 5134 0.01947799 biological_process
## 11446 1 5134 0.01947799 biological_process
## 11447 1 5134 0.01947799 biological_process
## 11448 1 5134 0.01947799 biological_process
## 11449 1 5134 0.01947799 biological_process
## 11450 1 5134 0.01947799 biological_process
## 11451 1 5134 0.01947799 biological_process
## 11452 1 5134 0.01947799 biological_process
## 11453 1 5134 0.01947799 biological_process
## 11454 1 5134 0.01947799 biological_process
## 11455 1 5134 0.01947799 biological_process
## 11456 1 5134 0.01947799 biological_process
## 11457 1 5134 0.01947799 biological_process
## 11458 1 5134 0.01947799 biological_process
## 11459 1 5134 0.01947799 biological_process
## 11460 1 5134 0.01947799 biological_process
## 11461 1 5134 0.01947799 biological_process
## 11462 1 5134 0.01947799 biological_process
## 11463 1 5134 0.01947799 biological_process
## 11464 1 5134 0.01947799 biological_process
## 11465 1 5134 0.01947799 biological_process
## 11466 1 5134 0.01947799 biological_process
## 11467 1 5134 0.01947799 biological_process
## 11468 1 5134 0.01947799 biological_process
## 11469 1 5134 0.01947799 biological_process
## 11470 1 5134 0.01947799 biological_process
## 11471 1 5134 0.01947799 biological_process
## 11472 1 5134 0.01947799 biological_process
## 11473 1 5134 0.01947799 biological_process
## 11474 1 5134 0.01947799 biological_process
## 11475 1 5134 0.01947799 biological_process
## 11476 1 5134 0.01947799 biological_process
## 11477 1 5134 0.01947799 biological_process
## 11478 1 5134 0.01947799 biological_process
## 11479 1 5134 0.01947799 biological_process
## 11480 1 5134 0.01947799 biological_process
## 11481 1 5134 0.01947799 biological_process
## 11482 1 5134 0.01947799 biological_process
## 11483 1 5134 0.01947799 biological_process
## 11484 1 5134 0.01947799 biological_process
## 11485 1 5134 0.01947799 biological_process
## 11486 1 5134 0.01947799 biological_process
## 11487 1 5134 0.01947799 biological_process
## 11488 1 5134 0.01947799 biological_process
## 11489 1 5134 0.01947799 biological_process
## 11490 1 5134 0.01947799 biological_process
## 11491 1 5134 0.01947799 biological_process
## 11492 1 5134 0.01947799 biological_process
## 11493 1 5134 0.01947799 biological_process
## 11494 1 5134 0.01947799 biological_process
## 11495 1 5134 0.01947799 biological_process
## 11496 1 5134 0.01947799 biological_process
## 11497 1 5134 0.01947799 biological_process
## 11498 1 5134 0.01947799 biological_process
## 11499 1 5134 0.01947799 biological_process
## 11500 1 5134 0.01947799 biological_process
## 11501 1 5134 0.01947799 biological_process
## 11502 1 5134 0.01947799 biological_process
## 11503 1 5134 0.01947799 biological_process
## 11504 1 5134 0.01947799 biological_process
## 11505 1 5134 0.01947799 biological_process
## 11506 1 5134 0.01947799 biological_process
## 11507 1 5134 0.01947799 biological_process
## 11508 1 5134 0.01947799 biological_process
## 11509 1 5134 0.01947799 biological_process
## 11510 1 5134 0.01947799 biological_process
## 11511 1 5134 0.01947799 biological_process
## 11512 1 5134 0.01947799 biological_process
## 11513 1 5134 0.01947799 biological_process
## 11514 1 5134 0.01947799 biological_process
## 11515 1 5134 0.01947799 biological_process
## 11516 1 5134 0.01947799 biological_process
## 11517 1 5134 0.01947799 biological_process
## 11518 1 5134 0.01947799 biological_process
## 11519 1 5134 0.01947799 biological_process
## 11520 1 5134 0.01947799 biological_process
## 11521 1 5134 0.01947799 biological_process
## 11522 1 5134 0.01947799 biological_process
## 11523 1 5134 0.01947799 biological_process
## 11524 1 5134 0.01947799 biological_process
## 11525 1 5134 0.01947799 biological_process
## 11526 1 5134 0.01947799 biological_process
## 11527 1 5134 0.01947799 biological_process
## 11528 1 5134 0.01947799 biological_process
## 11529 1 5134 0.01947799 biological_process
## 11530 1 5134 0.01947799 biological_process
## 11531 1 5134 0.01947799 biological_process
## 11532 1 5134 0.01947799 biological_process
## 11533 1 5134 0.01947799 biological_process
## 11534 1 5134 0.01947799 biological_process
## 11535 1 5134 0.01947799 biological_process
## 11536 1 5134 0.01947799 biological_process
## 11537 1 5134 0.01947799 biological_process
## 11538 1 5134 0.01947799 biological_process
## 11539 1 5134 0.01947799 biological_process
## 11540 1 5134 0.01947799 biological_process
## 11541 1 5134 0.01947799 biological_process
## 11542 1 5134 0.01947799 biological_process
## 11543 1 5134 0.01947799 biological_process
## 11544 1 5134 0.01947799 biological_process
## 11545 1 5134 0.01947799 biological_process
## 11546 1 5134 0.01947799 biological_process
## 11547 1 5134 0.01947799 biological_process
## 11548 1 5134 0.01947799 biological_process
## 11549 1 5134 0.01947799 biological_process
## 11550 1 5134 0.01947799 biological_process
## 11551 1 5134 0.01947799 biological_process
## 11552 1 5134 0.01947799 biological_process
## 11553 1 5134 0.01947799 biological_process
## 11554 1 5134 0.01947799 biological_process
## 11555 1 5134 0.01947799 biological_process
## 11556 1 5134 0.01947799 biological_process
## 11557 1 5134 0.01947799 biological_process
## 11558 1 5134 0.01947799 biological_process
## 11559 1 5134 0.01947799 biological_process
## 11560 1 5134 0.01947799 biological_process
## 11561 1 5134 0.01947799 biological_process
## 11562 1 5134 0.01947799 biological_process
## 11563 1 5134 0.01947799 biological_process
## 11564 1 5134 0.01947799 biological_process
## 11565 1 5134 0.01947799 biological_process
## 11566 1 5134 0.01947799 biological_process
## 11567 1 5134 0.01947799 biological_process
## 11568 1 5134 0.01947799 biological_process
## 11569 1 5134 0.01947799 biological_process
## 11570 1 5134 0.01947799 biological_process
## 11571 1 5134 0.01947799 biological_process
## 11572 1 5134 0.01947799 biological_process
## 11573 1 5134 0.01947799 biological_process
## 11574 1 5134 0.01947799 biological_process
## 11575 1 5134 0.01947799 biological_process
## 11576 1 5134 0.01947799 biological_process
## 11577 1 5134 0.01947799 biological_process
## 11578 1 5134 0.01947799 biological_process
## 11579 1 5134 0.01947799 biological_process
## 11580 1 5134 0.01947799 biological_process
## 11581 1 5134 0.01947799 biological_process
## 11582 1 5134 0.01947799 biological_process
## 11583 1 5134 0.01947799 biological_process
## 11584 1 5134 0.01947799 biological_process
## 11585 1 5134 0.01947799 biological_process
## 11586 1 5134 0.01947799 biological_process
## 11587 1 5134 0.01947799 biological_process
## 11588 1 5134 0.01947799 biological_process
## 11589 1 5134 0.01947799 biological_process
## 11590 1 5134 0.01947799 biological_process
## 11591 1 5134 0.01947799 biological_process
## 11592 1 5134 0.01947799 biological_process
## 11593 1 5134 0.01947799 biological_process
## 11594 1 5134 0.01947799 biological_process
## 11595 1 5134 0.01947799 biological_process
## 11596 1 5134 0.01947799 biological_process
## 11597 1 5134 0.01947799 biological_process
## 11598 1 5134 0.01947799 biological_process
## 11599 1 5134 0.01947799 biological_process
## 11600 1 5134 0.01947799 biological_process
## 11601 1 5134 0.01947799 biological_process
## 11602 1 5134 0.01947799 biological_process
## 11603 1 5134 0.01947799 biological_process
## 11604 1 5134 0.01947799 biological_process
## 11605 1 5134 0.01947799 biological_process
## 11606 1 5134 0.01947799 biological_process
## 11607 1 5134 0.01947799 biological_process
## 11608 1 5134 0.01947799 biological_process
## 11609 1 5134 0.01947799 biological_process
## 11610 1 5134 0.01947799 biological_process
## 11611 1 5134 0.01947799 biological_process
## 11612 1 5134 0.01947799 biological_process
## 11613 1 5134 0.01947799 biological_process
## 11614 1 5134 0.01947799 biological_process
## 11615 1 5134 0.01947799 biological_process
## 11616 1 5134 0.01947799 biological_process
## 11617 1 5134 0.01947799 cellular_component
## 11618 1 5134 0.01947799 biological_process
## 11619 1 5134 0.01947799 biological_process
## 11620 1 5134 0.01947799 biological_process
## 11621 1 5134 0.01947799 biological_process
## 11622 1 5134 0.01947799 biological_process
## 11623 1 5134 0.01947799 biological_process
## 11624 1 5134 0.01947799 biological_process
## 11625 1 5134 0.01947799 biological_process
## 11626 1 5134 0.01947799 biological_process
## 11627 1 5134 0.01947799 biological_process
## 11628 1 5134 0.01947799 biological_process
## 11629 1 5134 0.01947799 biological_process
## 11630 1 5134 0.01947799 biological_process
## 11631 1 5134 0.01947799 biological_process
## 11632 1 5134 0.01947799 biological_process
## 11633 1 5134 0.01947799 biological_process
## 11634 1 5134 0.01947799 biological_process
## 11635 1 5134 0.01947799 biological_process
## 11636 1 5134 0.01947799 biological_process
## 11637 1 5134 0.01947799 biological_process
## 11638 1 5134 0.01947799 biological_process
## 11639 1 5134 0.01947799 biological_process
## 11640 1 5134 0.01947799 biological_process
## 11641 1 5134 0.01947799 biological_process
## 11642 1 5134 0.01947799 biological_process
## 11643 1 5134 0.01947799 biological_process
## 11644 1 5134 0.01947799 biological_process
## 11645 1 5134 0.01947799 biological_process
## 11646 1 5134 0.01947799 biological_process
## 11647 1 5134 0.01947799 biological_process
## 11648 1 5134 0.01947799 biological_process
## 11649 1 5134 0.01947799 biological_process
## 11650 1 5134 0.01947799 biological_process
## 11651 1 5134 0.01947799 biological_process
## 11652 1 5134 0.01947799 biological_process
## 11653 1 5134 0.01947799 biological_process
## 11654 1 5134 0.01947799 biological_process
## 11655 1 5134 0.01947799 biological_process
## 11656 1 5134 0.01947799 biological_process
## 11657 1 5134 0.01947799 biological_process
## 11658 1 5134 0.01947799 biological_process
## 11659 1 5134 0.01947799 biological_process
## 11660 1 5134 0.01947799 biological_process
## 11661 1 5134 0.01947799 biological_process
## 11662 1 5134 0.01947799 biological_process
## 11663 1 5134 0.01947799 biological_process
## 11664 1 5134 0.01947799 biological_process
## 11665 1 5134 0.01947799 biological_process
## 11666 1 5134 0.01947799 biological_process
## 11667 1 5134 0.01947799 biological_process
## 11668 1 5134 0.01947799 biological_process
## 11669 1 5134 0.01947799 biological_process
## 11670 1 5134 0.01947799 biological_process
## 11671 1 5134 0.01947799 biological_process
## 11672 1 5134 0.01947799 biological_process
## 11673 1 5134 0.01947799 biological_process
## 11674 1 5134 0.01947799 biological_process
## 11675 1 5134 0.01947799 biological_process
## 11676 1 5134 0.01947799 biological_process
## 11677 1 5134 0.01947799 biological_process
## 11678 1 5134 0.01947799 biological_process
## 11679 1 5134 0.01947799 biological_process
## 11680 1 5134 0.01947799 biological_process
## 11681 1 5134 0.01947799 biological_process
## 11682 1 5134 0.01947799 biological_process
## 11683 1 5134 0.01947799 biological_process
## 11684 1 5134 0.01947799 biological_process
## 11685 1 5134 0.01947799 biological_process
## 11686 1 5134 0.01947799 biological_process
## 11687 1 5134 0.01947799 biological_process
## 11688 1 5134 0.01947799 biological_process
## 11689 1 5134 0.01947799 biological_process
## 11690 1 5134 0.01947799 biological_process
## 11691 1 5134 0.01947799 biological_process
## 11692 1 5134 0.01947799 molecular_function
## 11693 1 5134 0.01947799 biological_process
## 11694 1 5134 0.01947799 biological_process
## 11695 1 5134 0.01947799 biological_process
## 11696 1 5134 0.01947799 molecular_function
## 11697 1 5134 0.01947799 molecular_function
## 11698 1 5134 0.01947799 biological_process
## 11699 1 5134 0.01947799 biological_process
## 11700 1 5134 0.01947799 biological_process
## 11701 1 5134 0.01947799 biological_process
## 11702 1 5134 0.01947799 cellular_component
## 11703 1 5134 0.01947799 molecular_function
## 11704 1 5134 0.01947799 biological_process
## 11705 1 5134 0.01947799 cellular_component
## 11706 1 5134 0.01947799 molecular_function
## 11707 1 5134 0.01947799 molecular_function
## 11708 1 5134 0.01947799 molecular_function
## 11709 1 5134 0.01947799 biological_process
## 11710 1 5134 0.01947799 molecular_function
## 11711 1 5134 0.01947799 molecular_function
## 11712 1 5134 0.01947799 molecular_function
## 11713 1 5134 0.01947799 molecular_function
## 11714 1 5134 0.01947799 cellular_component
## 11715 1 5134 0.01947799 biological_process
## 11716 1 5134 0.01947799 biological_process
## 11717 1 5134 0.01947799 biological_process
## 11718 1 5134 0.01947799 molecular_function
## 11719 1 5134 0.01947799 cellular_component
## 11720 1 5134 0.01947799 molecular_function
## 11721 1 5134 0.01947799 biological_process
## 11722 1 5134 0.01947799 molecular_function
## 11723 1 5134 0.01947799 cellular_component
## 11724 1 5134 0.01947799 molecular_function
## 11725 1 5134 0.01947799 biological_process
## 11726 1 5134 0.01947799 biological_process
## 11727 1 5134 0.01947799 molecular_function
## 11728 1 5134 0.01947799 biological_process
## 11729 1 5134 0.01947799 biological_process
## 11730 1 5134 0.01947799 molecular_function
## 11731 1 5134 0.01947799 molecular_function
## 11732 1 5134 0.01947799 cellular_component
## 11733 1 5134 0.01947799 molecular_function
## 11734 1 5134 0.01947799 molecular_function
## 11735 1 5134 0.01947799 molecular_function
## 11736 1 5134 0.01947799 cellular_component
## 11737 1 5134 0.01947799 molecular_function
## 11738 1 5134 0.01947799 cellular_component
## 11739 1 5134 0.01947799 molecular_function
## 11740 1 5134 0.01947799 molecular_function
## 11741 1 5134 0.01947799 biological_process
## 11742 1 5134 0.01947799 molecular_function
## 11743 1 5134 0.01947799 molecular_function
## 11744 1 5134 0.01947799 molecular_function
## 11745 1 5134 0.01947799 cellular_component
## 11746 1 5134 0.01947799 cellular_component
## 11747 1 5134 0.01947799 biological_process
## 11748 1 5134 0.01947799 molecular_function
## 11749 1 5134 0.01947799 biological_process
## 11750 1 5134 0.01947799 molecular_function
## 11751 1 5134 0.01947799 molecular_function
## 11752 1 5134 0.01947799 molecular_function
## 11753 1 5134 0.01947799 biological_process
## 11754 1 5134 0.01947799 biological_process
## 11755 1 5134 0.01947799 biological_process
## 11756 1 5134 0.01947799 biological_process
## 11757 1 5134 0.01947799 biological_process
## 11758 1 5134 0.01947799 cellular_component
## 11759 1 5134 0.01947799 molecular_function
## 11760 1 5134 0.01947799 biological_process
## 11761 1 5134 0.01947799 molecular_function
## 11762 1 5134 0.01947799 biological_process
## 11763 1 5134 0.01947799 biological_process
## 11764 1 5134 0.01947799 biological_process
## 11765 1 5134 0.01947799 molecular_function
## 11766 1 5134 0.01947799 molecular_function
## 11767 1 5134 0.01947799 molecular_function
## 11768 1 5134 0.01947799 molecular_function
## 11769 1 5134 0.01947799 molecular_function
## 11770 1 5134 0.01947799 molecular_function
## 11771 1 5134 0.01947799 molecular_function
## 11772 1 5134 0.01947799 biological_process
## 11773 1 5134 0.01947799 biological_process
## 11774 1 5134 0.01947799 molecular_function
## 11775 1 5134 0.01947799 biological_process
## 11776 1 5134 0.01947799 biological_process
## 11777 1 5134 0.01947799 biological_process
## 11778 1 5134 0.01947799 molecular_function
## 11779 1 5134 0.01947799 cellular_component
## 11780 1 5134 0.01947799 biological_process
## 11781 1 5134 0.01947799 cellular_component
## 11782 1 5134 0.01947799 biological_process
## 11783 1 5134 0.01947799 biological_process
## 11784 1 5134 0.01947799 cellular_component
## 11785 1 5134 0.01947799 biological_process
## 11786 1 5134 0.01947799 cellular_component
## 11787 1 5134 0.01947799 cellular_component
## 11788 1 5134 0.01947799 biological_process
## 11789 1 5134 0.01947799 molecular_function
## 11790 1 5134 0.01947799 biological_process
## 11791 1 5134 0.01947799 biological_process
## 11792 1 5134 0.01947799 cellular_component
## 11793 1 5134 0.01947799 biological_process
## 11794 1 5134 0.01947799 cellular_component
## 11795 1 5134 0.01947799 cellular_component
## 11796 1 5134 0.01947799 molecular_function
## 11797 1 5134 0.01947799 molecular_function
## 11798 1 5134 0.01947799 biological_process
## 11799 1 5134 0.01947799 biological_process
## 11800 1 5134 0.01947799 biological_process
## 11801 1 5134 0.01947799 molecular_function
## 11802 1 5134 0.01947799 biological_process
## 11803 1 5134 0.01947799 biological_process
## 11804 1 5134 0.01947799 biological_process
## 11805 1 5134 0.01947799 biological_process
## 11806 1 5134 0.01947799 biological_process
## 11807 1 5134 0.01947799 biological_process
## 11808 1 5134 0.01947799 biological_process
## 11809 1 5134 0.01947799 biological_process
## 11810 1 5134 0.01947799 cellular_component
## 11811 1 5134 0.01947799 biological_process
## 11812 1 5134 0.01947799 molecular_function
## 11813 1 5134 0.01947799 biological_process
## 11814 1 5134 0.01947799 biological_process
## 11815 1 5134 0.01947799 biological_process
## 11816 1 5134 0.01947799 biological_process
## 11817 1 5134 0.01947799 molecular_function
## 11818 1 5134 0.01947799 molecular_function
## 11819 1 5134 0.01947799 biological_process
## 11820 1 5134 0.01947799 biological_process
## 11821 1 5134 0.01947799 molecular_function
## 11822 1 5134 0.01947799 biological_process
## 11823 1 5134 0.01947799 biological_process
## 11824 1 5134 0.01947799 cellular_component
## 11825 1 5134 0.01947799 molecular_function
## 11826 1 5134 0.01947799 cellular_component
## 11827 1 5134 0.01947799 biological_process
## 11828 1 5134 0.01947799 cellular_component
## 11829 1 5134 0.01947799 molecular_function
## 11830 1 5134 0.01947799 biological_process
## 11831 1 5134 0.01947799 molecular_function
## 11832 1 5134 0.01947799 biological_process
## 11833 1 5134 0.01947799 molecular_function
## 11834 1 5134 0.01947799 cellular_component
## 11835 1 5134 0.01947799 molecular_function
## 11836 1 5134 0.01947799 molecular_function
## 11837 1 5134 0.01947799 biological_process
## 11838 1 5134 0.01947799 molecular_function
## 11839 1 5134 0.01947799 molecular_function
## 11840 1 5134 0.01947799 molecular_function
## 11841 1 5134 0.01947799 molecular_function
## 11842 1 5134 0.01947799 biological_process
## 11843 1 5134 0.01947799 biological_process
## 11844 1 5134 0.01947799 biological_process
## 11845 1 5134 0.01947799 molecular_function
## 11846 1 5134 0.01947799 biological_process
## 11847 1 5134 0.01947799 biological_process
## 11848 1 5134 0.01947799 molecular_function
## 11849 1 5134 0.01947799 molecular_function
## 11850 1 5134 0.01947799 molecular_function
## 11851 1 5134 0.01947799 biological_process
## 11852 1 5134 0.01947799 biological_process
## 11853 1 5134 0.01947799 biological_process
## 11854 1 5134 0.01947799 biological_process
## 11855 1 5134 0.01947799 biological_process
## 11856 1 5134 0.01947799 cellular_component
## 11857 1 5134 0.01947799 biological_process
## 11858 1 5134 0.01947799 biological_process
## 11859 1 5134 0.01947799 cellular_component
## 11860 1 5134 0.01947799 cellular_component
## 11861 1 5134 0.01947799 molecular_function
## 11862 1 5134 0.01947799 molecular_function
## 11863 1 5134 0.01947799 biological_process
## 11864 1 5134 0.01947799 cellular_component
## 11865 1 5134 0.01947799 biological_process
## 11866 1 5134 0.01947799 biological_process
## 11867 1 5134 0.01947799 biological_process
## 11868 1 5134 0.01947799 biological_process
## 11869 1 5134 0.01947799 biological_process
## 11870 1 5134 0.01947799 molecular_function
## 11871 1 5134 0.01947799 molecular_function
## 11872 1 5134 0.01947799 molecular_function
## 11873 1 5134 0.01947799 biological_process
## 11874 1 5134 0.01947799 biological_process
## 11875 1 5134 0.01947799 biological_process
## 11876 1 5134 0.01947799 biological_process
## 11877 1 5134 0.01947799 biological_process
## 11878 1 5134 0.01947799 biological_process
## 11879 1 5134 0.01947799 biological_process
## 11880 1 5134 0.01947799 biological_process
## 11881 1 5134 0.01947799 biological_process
## 11882 1 5134 0.01947799 cellular_component
## 11883 1 5134 0.01947799 cellular_component
## 11884 1 5134 0.01947799 biological_process
## 11885 1 5134 0.01947799 biological_process
## 11886 1 5134 0.01947799 molecular_function
## 11887 1 5134 0.01947799 molecular_function
## 11888 1 5134 0.01947799 cellular_component
## 11889 1 5134 0.01947799 molecular_function
## 11890 1 5134 0.01947799 biological_process
## 11891 1 5134 0.01947799 biological_process
## 11892 1 5134 0.01947799 biological_process
## 11893 1 5134 0.01947799 biological_process
## 11894 1 5134 0.01947799 biological_process
## 11895 1 5134 0.01947799 biological_process
## 11896 1 5134 0.01947799 biological_process
## 11897 1 5134 0.01947799 biological_process
## 11898 1 5134 0.01947799 biological_process
## 11899 1 5134 0.01947799 biological_process
## 11900 1 5134 0.01947799 cellular_component
## 11901 1 5134 0.01947799 cellular_component
## 11902 1 5134 0.01947799 cellular_component
## 11903 1 5134 0.01947799 biological_process
## 11904 1 5134 0.01947799 biological_process
## 11905 1 5134 0.01947799 biological_process
## 11906 1 5134 0.01947799 molecular_function
## 11907 1 5134 0.01947799 biological_process
## 11908 1 5134 0.01947799 biological_process
## 11909 1 5134 0.01947799 biological_process
## 11910 1 5134 0.01947799 biological_process
## 11911 1 5134 0.01947799 molecular_function
## 11912 1 5134 0.01947799 biological_process
## 11913 1 5134 0.01947799 biological_process
## 11914 1 5134 0.01947799 biological_process
## 11915 1 5134 0.01947799 biological_process
## 11916 1 5134 0.01947799 biological_process
## 11917 1 5134 0.01947799 molecular_function
## 11918 1 5134 0.01947799 biological_process
## 11919 1 5134 0.01947799 molecular_function
## 11920 1 5134 0.01947799 molecular_function
## 11921 1 5134 0.01947799 biological_process
## 11922 1 5134 0.01947799 molecular_function
## 11923 1 5134 0.01947799 molecular_function
## 11924 1 5134 0.01947799 biological_process
## 11925 1 5134 0.01947799 biological_process
## 11926 1 5134 0.01947799 molecular_function
## 11927 1 5134 0.01947799 molecular_function
## 11928 1 5134 0.01947799 molecular_function
## 11929 1 5134 0.01947799 biological_process
## 11930 1 5134 0.01947799 biological_process
## 11931 1 5134 0.01947799 cellular_component
## 11932 1 5134 0.01947799 biological_process
## 11933 1 5134 0.01947799 biological_process
## 11934 1 5134 0.01947799 cellular_component
## 11935 1 5134 0.01947799 biological_process
## 11936 1 5134 0.01947799 biological_process
## 11937 1 5134 0.01947799 biological_process
## 11938 1 5134 0.01947799 cellular_component
## 11939 1 5134 0.01947799 molecular_function
## 11940 1 5134 0.01947799 cellular_component
## 11941 1 5134 0.01947799 biological_process
## 11942 1 5134 0.01947799 molecular_function
## 11943 1 5134 0.01947799 biological_process
## 11944 1 5134 0.01947799 molecular_function
## 11945 1 5134 0.01947799 cellular_component
## 11946 1 5134 0.01947799 cellular_component
## 11947 1 5134 0.01947799 biological_process
## 11948 1 5134 0.01947799 cellular_component
## 11949 1 5134 0.01947799 cellular_component
## 11950 1 5134 0.01947799 molecular_function
## 11951 1 5134 0.01947799 molecular_function
## 11952 1 5134 0.01947799 molecular_function
## 11953 1 5134 0.01947799 molecular_function
## 11954 1 5134 0.01947799 molecular_function
## 11955 1 5134 0.01947799 biological_process
## 11956 1 5134 0.01947799 biological_process
## 11957 1 5134 0.01947799 cellular_component
## 11958 1 5134 0.01947799 biological_process
## 11959 1 5134 0.01947799 biological_process
## 11960 1 5134 0.01947799 biological_process
## 11961 1 5134 0.01947799 biological_process
## 11962 1 5134 0.01947799 biological_process
## 11963 1 5134 0.01947799 cellular_component
## 11964 1 5134 0.01947799 molecular_function
## 11965 1 5134 0.01947799 molecular_function
## 11966 1 5134 0.01947799 molecular_function
## 11967 1 5134 0.01947799 molecular_function
## 11968 1 5134 0.01947799 molecular_function
## 11969 1 5134 0.01947799 molecular_function
## 11970 1 5134 0.01947799 molecular_function
## 11971 1 5134 0.01947799 molecular_function
## 11972 1 5134 0.01947799 cellular_component
## 11973 1 5134 0.01947799 biological_process
## 11974 1 5134 0.01947799 biological_process
## 11975 1 5134 0.01947799 biological_process
## 11976 1 5134 0.01947799 molecular_function
## 11977 1 5134 0.01947799 molecular_function
## 11978 1 5134 0.01947799 cellular_component
## 11979 1 5134 0.01947799 molecular_function
## 11980 1 5134 0.01947799 biological_process
## 11981 1 5134 0.01947799 biological_process
## 11982 1 5134 0.01947799 biological_process
## 11983 1 5134 0.01947799 biological_process
## 11984 1 5134 0.01947799 molecular_function
## 11985 1 5134 0.01947799 molecular_function
## 11986 1 5134 0.01947799 biological_process
## 11987 1 5134 0.01947799 biological_process
## 11988 1 5134 0.01947799 molecular_function
## 11989 1 5134 0.01947799 molecular_function
## 11990 1 5134 0.01947799 biological_process
## 11991 1 5134 0.01947799 molecular_function
## 11992 1 5134 0.01947799 molecular_function
## 11993 1 5134 0.01947799 biological_process
## 11994 1 5134 0.01947799 biological_process
## 11995 1 5134 0.01947799 biological_process
## 11996 1 5134 0.01947799 biological_process
## 11997 1 5134 0.01947799 cellular_component
## 11998 1 5134 0.01947799 biological_process
## 11999 1 5134 0.01947799 cellular_component
## 12000 1 5134 0.01947799 cellular_component
## 12001 1 5134 0.01947799 biological_process
## 12002 1 5134 0.01947799 biological_process
## 12003 1 5134 0.01947799 biological_process
## 12004 1 5134 0.01947799 cellular_component
## 12005 1 5134 0.01947799 biological_process
## 12006 1 5134 0.01947799 biological_process
## 12007 1 5134 0.01947799 biological_process
## 12008 1 5134 0.01947799 biological_process
## 12009 1 5134 0.01947799 biological_process
## 12010 1 5134 0.01947799 biological_process
## 12011 1 5134 0.01947799 biological_process
## 12012 1 5134 0.01947799 biological_process
## 12013 1 5134 0.01947799 biological_process
## 12014 1 5134 0.01947799 biological_process
## 12015 1 5134 0.01947799 biological_process
## 12016 1 5134 0.01947799 molecular_function
## 12017 1 5134 0.01947799 molecular_function
## 12018 1 5134 0.01947799 cellular_component
## 12019 1 5134 0.01947799 biological_process
## 12020 1 5134 0.01947799 biological_process
## 12021 1 5134 0.01947799 biological_process
## 12022 1 5134 0.01947799 biological_process
## 12023 1 5134 0.01947799 biological_process
## 12024 1 5134 0.01947799 biological_process
## 12025 1 5134 0.01947799 biological_process
## 12026 1 5134 0.01947799 biological_process
## 12027 1 5134 0.01947799 biological_process
## 12028 1 5134 0.01947799 cellular_component
## 12029 1 5134 0.01947799 molecular_function
## 12030 1 5134 0.01947799 molecular_function
## 12031 1 5134 0.01947799 biological_process
## 12032 1 5134 0.01947799 biological_process
## 12033 1 5134 0.01947799 molecular_function
## 12034 1 5134 0.01947799 molecular_function
## 12035 1 5134 0.01947799 cellular_component
## 12036 1 5134 0.01947799 biological_process
## 12037 1 5134 0.01947799 biological_process
## 12038 1 5134 0.01947799 biological_process
## 12039 1 5134 0.01947799 biological_process
## 12040 1 5134 0.01947799 biological_process
## 12041 1 5134 0.01947799 biological_process
## 12042 1 5134 0.01947799 biological_process
## 12043 1 5134 0.01947799 biological_process
## 12044 1 5134 0.01947799 biological_process
## 12045 1 5134 0.01947799 biological_process
## 12046 1 5134 0.01947799 cellular_component
## 12047 1 5134 0.01947799 biological_process
## 12048 1 5134 0.01947799 molecular_function
## 12049 1 5134 0.01947799 biological_process
## 12050 1 5134 0.01947799 biological_process
## 12051 1 5134 0.01947799 molecular_function
## 12052 1 5134 0.01947799 biological_process
## 12053 1 5134 0.01947799 biological_process
## 12054 1 5134 0.01947799 molecular_function
## 12055 1 5134 0.01947799 biological_process
## 12056 1 5134 0.01947799 biological_process
## 12057 1 5134 0.01947799 biological_process
## 12058 1 5134 0.01947799 molecular_function
## 12059 1 5134 0.01947799 biological_process
## 12060 1 5134 0.01947799 molecular_function
## 12061 1 5134 0.01947799 biological_process
## 12062 1 5134 0.01947799 molecular_function
## 12063 1 5134 0.01947799 molecular_function
## 12064 1 5134 0.01947799 molecular_function
## 12065 1 5134 0.01947799 molecular_function
## 12066 1 5134 0.01947799 biological_process
## 12067 1 5134 0.01947799 biological_process
## 12068 1 5134 0.01947799 molecular_function
## 12069 1 5134 0.01947799 biological_process
## 12070 1 5134 0.01947799 molecular_function
## 12071 1 5134 0.01947799 biological_process
## 12072 1 5134 0.01947799 biological_process
## 12073 1 5134 0.01947799 molecular_function
## 12074 1 5134 0.01947799 biological_process
## 12075 1 5134 0.01947799 molecular_function
## 12076 1 5134 0.01947799 molecular_function
## 12077 1 5134 0.01947799 molecular_function
## 12078 1 5134 0.01947799 biological_process
## 12079 1 5134 0.01947799 biological_process
## 12080 1 5134 0.01947799 biological_process
## 12081 1 5134 0.01947799 molecular_function
## 12082 1 5134 0.01947799 biological_process
## 12083 1 5134 0.01947799 biological_process
## 12084 1 5134 0.01947799 biological_process
## 12085 1 5134 0.01947799 cellular_component
## 12086 1 5134 0.01947799 biological_process
## 12087 1 5134 0.01947799 molecular_function
## 12088 1 5134 0.01947799 molecular_function
## 12089 1 5134 0.01947799 biological_process
## 12090 1 5134 0.01947799 biological_process
## 12091 1 5134 0.01947799 biological_process
## 12092 1 5134 0.01947799 molecular_function
## 12093 1 5134 0.01947799 biological_process
## 12094 1 5134 0.01947799 biological_process
## 12095 1 5134 0.01947799 biological_process
## 12096 1 5134 0.01947799 biological_process
## 12097 1 5134 0.01947799 biological_process
## 12098 1 5134 0.01947799 cellular_component
## 12099 1 5134 0.01947799 cellular_component
## 12100 1 5134 0.01947799 cellular_component
## 12101 1 5134 0.01947799 biological_process
## 12102 1 5134 0.01947799 biological_process
## 12103 1 5134 0.01947799 molecular_function
## 12104 1 5134 0.01947799 biological_process
## 12105 1 5134 0.01947799 biological_process
## 12106 1 5134 0.01947799 biological_process
## 12107 1 5134 0.01947799 biological_process
## 12108 1 5134 0.01947799 molecular_function
## 12109 1 5134 0.01947799 cellular_component
## 12110 1 5134 0.01947799 biological_process
## 12111 1 5134 0.01947799 biological_process
## 12112 1 5134 0.01947799 biological_process
## 12113 1 5134 0.01947799 biological_process
## 12114 1 5134 0.01947799 biological_process
## 12115 1 5134 0.01947799 molecular_function
## 12116 1 5134 0.01947799 molecular_function
## 12117 1 5134 0.01947799 molecular_function
## 12118 1 5134 0.01947799 biological_process
## 12119 1 5134 0.01947799 molecular_function
## 12120 1 5134 0.01947799 biological_process
## 12121 1 5134 0.01947799 biological_process
## 12122 1 5134 0.01947799 molecular_function
## 12123 1 5134 0.01947799 biological_process
## 12124 1 5134 0.01947799 biological_process
## 12125 1 5134 0.01947799 cellular_component
## 12126 1 5134 0.01947799 cellular_component
## 12127 1 5134 0.01947799 biological_process
## 12128 1 5134 0.01947799 molecular_function
## 12129 1 5134 0.01947799 cellular_component
## 12130 1 5134 0.01947799 biological_process
## 12131 1 5134 0.01947799 biological_process
## 12132 1 5134 0.01947799 biological_process
## 12133 1 5134 0.01947799 biological_process
## 12134 1 5134 0.01947799 biological_process
## 12135 1 5134 0.01947799 biological_process
## 12136 1 5134 0.01947799 biological_process
## 12137 1 5134 0.01947799 biological_process
## 12138 1 5134 0.01947799 molecular_function
## 12139 1 5134 0.01947799 molecular_function
## 12140 1 5134 0.01947799 molecular_function
## 12141 1 5134 0.01947799 molecular_function
## 12142 1 5134 0.01947799 biological_process
## 12143 1 5134 0.01947799 molecular_function
## 12144 1 5134 0.01947799 molecular_function
## 12145 1 5134 0.01947799 molecular_function
## 12146 1 5134 0.01947799 cellular_component
## 12147 1 5134 0.01947799 molecular_function
## 12148 1 5134 0.01947799 biological_process
## 12149 1 5134 0.01947799 biological_process
## 12150 1 5134 0.01947799 biological_process
## 12151 1 5134 0.01947799 biological_process
## 12152 1 5134 0.01947799 biological_process
## 12153 1 5134 0.01947799 molecular_function
## 12154 1 5134 0.01947799 biological_process
## 12155 1 5134 0.01947799 biological_process
## 12156 1 5134 0.01947799 molecular_function
## 12157 1 5134 0.01947799 molecular_function
## 12158 1 5134 0.01947799 molecular_function
## 12159 1 5134 0.01947799 biological_process
## 12160 1 5134 0.01947799 biological_process
## 12161 1 5134 0.01947799 biological_process
## 12162 1 5134 0.01947799 biological_process
## 12163 1 5134 0.01947799 biological_process
## 12164 1 5134 0.01947799 biological_process
## 12165 1 5134 0.01947799 biological_process
## 12166 1 5134 0.01947799 biological_process
## 12167 1 5134 0.01947799 molecular_function
## 12168 1 5134 0.01947799 molecular_function
## 12169 1 5134 0.01947799 molecular_function
## 12170 1 5134 0.01947799 molecular_function
## 12171 1 5134 0.01947799 biological_process
## 12172 1 5134 0.01947799 molecular_function
## 12173 1 5134 0.01947799 biological_process
## 12174 1 5134 0.01947799 biological_process
## 12175 1 5134 0.01947799 biological_process
## 12176 1 5134 0.01947799 biological_process
## 12177 1 5134 0.01947799 cellular_component
## 12178 1 5134 0.01947799 molecular_function
## 12179 1 5134 0.01947799 cellular_component
## 12180 1 5134 0.01947799 molecular_function
## 12181 1 5134 0.01947799 molecular_function
## 12182 1 5134 0.01947799 molecular_function
## 12183 1 5134 0.01947799 molecular_function
## 12184 1 5134 0.01947799 biological_process
## 12185 1 5134 0.01947799 biological_process
## 12186 1 5134 0.01947799 molecular_function
## 12187 1 5134 0.01947799 molecular_function
## 12188 1 5134 0.01947799 biological_process
## 12189 1 5134 0.01947799 biological_process
## 12190 1 5134 0.01947799 biological_process
## 12191 1 5134 0.01947799 biological_process
## 12192 1 5134 0.01947799 molecular_function
## 12193 1 5134 0.01947799 cellular_component
## 12194 1 5134 0.01947799 biological_process
## 12195 1 5134 0.01947799 molecular_function
## 12196 1 5134 0.01947799 biological_process
## 12197 1 5134 0.01947799 biological_process
## 12198 1 5134 0.01947799 molecular_function
## 12199 1 5134 0.01947799 cellular_component
## 12200 1 5134 0.01947799 biological_process
## 12201 1 5134 0.01947799 molecular_function
## 12202 1 5134 0.01947799 cellular_component
## 12203 1 5134 0.01947799 biological_process
## 12204 1 5134 0.01947799 biological_process
## 12205 1 5134 0.01947799 biological_process
## 12206 1 5134 0.01947799 molecular_function
## 12207 1 5134 0.01947799 biological_process
## 12208 1 5134 0.01947799 biological_process
## 12209 1 5134 0.01947799 molecular_function
## 12210 1 5134 0.01947799 molecular_function
## 12211 1 5134 0.01947799 biological_process
## 12212 1 5134 0.01947799 biological_process
## 12213 1 5134 0.01947799 molecular_function
## 12214 1 5134 0.01947799 molecular_function
## 12215 1 5134 0.01947799 biological_process
## 12216 1 5134 0.01947799 molecular_function
## 12217 1 5134 0.01947799 biological_process
## 12218 1 5134 0.01947799 biological_process
## 12219 1 5134 0.01947799 molecular_function
## 12220 1 5134 0.01947799 molecular_function
## 12221 1 5134 0.01947799 molecular_function
## 12222 1 5134 0.01947799 biological_process
## 12223 1 5134 0.01947799 molecular_function
## 12224 1 5134 0.01947799 molecular_function
## 12225 1 5134 0.01947799 molecular_function
## 12226 1 5134 0.01947799 biological_process
## 12227 1 5134 0.01947799 molecular_function
## 12228 1 5134 0.01947799 cellular_component
## 12229 1 5134 0.01947799 molecular_function
## 12230 1 5134 0.01947799 molecular_function
## 12231 1 5134 0.01947799 molecular_function
## 12232 1 5134 0.01947799 biological_process
## 12233 1 5134 0.01947799 molecular_function
## 12234 1 5134 0.01947799 molecular_function
## 12235 1 5134 0.01947799 molecular_function
## 12236 1 5134 0.01947799 biological_process
## 12237 1 5134 0.01947799 biological_process
## 12238 1 5134 0.01947799 biological_process
## 12239 1 5134 0.01947799 molecular_function
## 12240 1 5134 0.01947799 biological_process
## 12241 1 5134 0.01947799 biological_process
## 12242 1 5134 0.01947799 biological_process
## 12243 1 5134 0.01947799 biological_process
## 12244 1 5134 0.01947799 molecular_function
## 12245 1 5134 0.01947799 biological_process
## 12246 1 5134 0.01947799 molecular_function
## 12247 1 5134 0.01947799 biological_process
## 12248 1 5134 0.01947799 biological_process
## 12249 1 5134 0.01947799 biological_process
## 12250 1 5134 0.01947799 molecular_function
## 12251 1 5134 0.01947799 molecular_function
## 12252 1 5134 0.01947799 biological_process
## 12253 1 5134 0.01947799 molecular_function
## 12254 1 5134 0.01947799 biological_process
## 12255 1 5134 0.01947799 cellular_component
## 12256 1 5134 0.01947799 molecular_function
## 12257 1 5134 0.01947799 biological_process
## 12258 1 5134 0.01947799 biological_process
## 12259 1 5134 0.01947799 cellular_component
## 12260 1 5134 0.01947799 biological_process
## 12261 1 5134 0.01947799 biological_process
## 12262 1 5134 0.01947799 biological_process
## 12263 1 5134 0.01947799 biological_process
## 12264 1 5134 0.01947799 biological_process
## 12265 1 5134 0.01947799 biological_process
## 12266 1 5134 0.01947799 molecular_function
## 12267 1 5134 0.01947799 biological_process
## 12268 1 5134 0.01947799 biological_process
## 12269 1 5134 0.01947799 biological_process
## 12270 1 5134 0.01947799 biological_process
## 12271 1 5134 0.01947799 biological_process
## 12272 1 5134 0.01947799 biological_process
## 12273 1 5134 0.01947799 biological_process
## 12274 1 5134 0.01947799 biological_process
## 12275 1 5134 0.01947799 molecular_function
## 12276 1 5134 0.01947799 biological_process
## 12277 1 5134 0.01947799 biological_process
## 12278 1 5134 0.01947799 molecular_function
## 12279 1 5134 0.01947799 cellular_component
## 12280 1 5134 0.01947799 biological_process
## 12281 1 5134 0.01947799 biological_process
## 12282 1 5134 0.01947799 biological_process
## 12283 1 5134 0.01947799 biological_process
## 12284 1 5134 0.01947799 biological_process
## 12285 1 5134 0.01947799 biological_process
## 12286 1 5134 0.01947799 biological_process
## 12287 1 5134 0.01947799 biological_process
## 12288 1 5134 0.01947799 biological_process
## 12289 1 5134 0.01947799 biological_process
## 12290 1 5134 0.01947799 biological_process
## 12291 1 5134 0.01947799 molecular_function
## 12292 1 5134 0.01947799 molecular_function
## 12293 1 5134 0.01947799 biological_process
## 12294 1 5134 0.01947799 biological_process
## 12295 1 5134 0.01947799 molecular_function
## 12296 1 5134 0.01947799 biological_process
## 12297 1 5134 0.01947799 molecular_function
## 12298 1 5134 0.01947799 biological_process
## 12299 1 5134 0.01947799 biological_process
## 12300 1 5134 0.01947799 molecular_function
## 12301 1 5134 0.01947799 molecular_function
## 12302 1 5134 0.01947799 molecular_function
## 12303 1 5134 0.01947799 biological_process
## 12304 1 5134 0.01947799 biological_process
## 12305 1 5134 0.01947799 molecular_function
## 12306 1 5134 0.01947799 molecular_function
## 12307 1 5134 0.01947799 biological_process
## 12308 1 5134 0.01947799 biological_process
## 12309 1 5134 0.01947799 biological_process
## 12310 1 5134 0.01947799 cellular_component
## 12311 1 5134 0.01947799 biological_process
## 12312 1 5134 0.01947799 cellular_component
## 12313 1 5134 0.01947799 molecular_function
## 12314 1 5134 0.01947799 biological_process
## 12315 1 5134 0.01947799 cellular_component
## 12316 1 5134 0.01947799 cellular_component
## 12317 1 5134 0.01947799 biological_process
## 12318 1 5134 0.01947799 biological_process
## 12319 1 5134 0.01947799 cellular_component
## 12320 1 5134 0.01947799 biological_process
## 12321 NA NA NA molecular_function
go_plot[1:20,] %>%
ggplot(aes(x = reorder(name_1006, -perc), y = perc, fill = namespace_1003)) +
geom_bar(stat = "identity", width = 0.6) +
scale_fill_manual(values = c("maroon", "navy", "forest green")) +
coord_cartesian(y = c(0,100)) +
theme_minimal() +
theme(axis.text.x = element_text(angle = 45, hjust = 1), legend.position = "bottom") +
scale_y_continuous(breaks = seq(0, 100, 10)) +
labs(title = "Top 20 GO Terms", subtitle = "For DEGs at adjpval <= 0.05", x = "GO Term", y = "Percentage of DEGs assoc. with GO Term")library(clusterProfiler)##
## clusterProfiler v3.18.1 For help: https://guangchuangyu.github.io/software/clusterProfiler
##
## If you use clusterProfiler in published research, please cite:
## Guangchuang Yu, Li-Gen Wang, Yanyan Han, Qing-Yu He. clusterProfiler: an R package for comparing biological themes among gene clusters. OMICS: A Journal of Integrative Biology. 2012, 16(5):284-287.
##
## Attaching package: 'clusterProfiler'
## The following object is masked from 'package:biomaRt':
##
## select
## The following object is masked from 'package:purrr':
##
## simplify
## The following object is masked from 'package:stats':
##
## filter
k <- enrichKEGG(gene = genes, organism = "hsa")## Reading KEGG annotation online:
## Reading KEGG annotation online:
## --> No gene can be mapped....
## --> Expected input gene ID: 3906,54659,387712,2181,1892,93432
## --> return NULL...
hgnc_to_entrez## hgnc_symbol entrezgene_id
## 1 AAMP 14
## 2 AATF 26574
## 3 AATK 9625
## 4 ABCA1 19
## 5 ABCA13 154664
## 6 ABCC4 10257
## 7 ABCD4 5826
## 8 ABCF3 55324
## 9 ABCG1 9619
## 10 ABHD13 84945
## 11 ABHD14B 84836
## 12 ABHD17A 81926
## 13 ABHD3 171586
## 14 ABHD4 63874
## 15 ABHD5 51099
## 16 ABI1 10006
## 17 ABI3 51225
## 18 ABLIM3 22885
## 19 ABRACL 58527
## 20 ABTB1 80325
## 21 ACAA1 30
## 22 ACADM 34
## 23 ACADVL 37
## 24 ACAP1 9744
## 25 ACAP2 23527
## 26 ACAP3 116983
## 27 ACBD3 64746
## 28 ACLY 47
## 29 ACP5 54
## 30 ACSS2 55902
## 31 ACTB 60
## 32 ACTG1 71
## 33 ACTR1A 10121
## 34 ACTR1B 10120
## 35 ADAM17 6868
## 36 ADAM8 101
## 37 ADAM9 8754
## 38 ADAP1 11033
## 39 ADAR 103
## 40 ADCY7 113
## 41 ADD3 120
## 42 ADIPOR2 79602
## 43 ADNP 23394
## 44 ADORA2A 135
## 45 ADPGK 83440
## 46 ADPRS 54936
## 47 ADRM1 11047
## 48 ADSS2 159
## 49 AFF1 4299
## 50 AFF4 27125
## 51 AFTPH 54812
## 52 AGAP3 116988
## 53 AGO1 26523
## 54 AGO2 27161
## 55 AGO3 192669
## 56 AGPAT2 10555
## 57 AGPS 8540
## 58 AGTRAP 57085
## 59 AHCTF1 25909
## 60 AIF1 199
## 61 AIP 9049
## 62 AKAP10 11216
## 63 AKAP13 11214
## 64 AKAP8L 26993
## 65 AKAP9 10142
## 66 AKIRIN1 79647
## 67 AKR1A1 10327
## 68 AKR1B1 231
## 69 AKR7A2 8574
## 70 AKT1 207
## 71 AKT1S1 84335
## 72 AKT2 208
## 73 ALAS1 211
## 74 ALDH16A1 126133
## 75 ALDH3B1 221
## 76 ALDOA 226
## 77 ALPL 249
## 78 AMD1 262
## 79 AMFR 267
## 80 AMN1 196394
## 81 AMPD2 271
## 82 ANAPC1 64682
## 83 ANAPC11 51529
## 84 ANAPC13 25847
## 85 ANAPC15 25906
## 86 ANKFY1 51479
## 87 ANKIB1 54467
## 88 ANKRD12 23253
## 89 ANKRD13A 88455
## 90 ANKRD13D 338692
## 91 ANKRD17 26057
## 92 ANKRD28 23243
## 93 ANKZF1 55139
## 94 ANO6 196527
## 95 ANO9 338440
## 96 ANP32B 10541
## 97 ANP32E 81611
## 98 ANXA11 311
## 99 ANXA2 302
## 100 ANXA2R 389289
## 101 ANXA4 307
## 102 ANXA6 309
## 103 AP1B1 162
## 104 AP1G1 164
## 105 AP1G2 8906
## 106 AP1M1 8907
## 107 AP2A1 160
## 108 AP2M1 1173
## 109 AP2S1 1175
## 110 AP3B1 8546
## 111 AP5B1 91056
## 112 AP5M1 55745
## 113 AP5Z1 9907
## 114 APAF1 317
## 115 APBB1 322
## 116 APC 324
## 117 APEH 327
## 118 APEX1 328
## 119 APOBR 55911
## 120 APOL6 80830
## 121 APP 351
## 122 APPBP2 10513
## 123 APPL2 55198
## 124 APRT 353
## 125 AQR 9716
## 126 ARAF 369
## 127 ARAP1 116985
## 128 ARAP2 116984
## 129 ARCN1 372
## 130 ARF4 378
## 131 ARF5 381
## 132 ARFGAP1 55738
## 133 ARFGAP2 84364
## 134 ARFGEF1 10565
## 135 ARFGEF2 10564
## 136 ARFRP1 10139
## 137 ARHGAP1 392
## 138 ARHGAP15 55843
## 139 ARHGAP21 57584
## 140 ARHGAP4 393
## 141 ARHGAP45 23526
## 142 ARHGDIA 396
## 143 ARHGEF1 9138
## 144 ARHGEF1 100505585
## 145 ARHGEF12 23365
## 146 ARHGEF18 23370
## 147 ARHGEF6 9459
## 148 ARID1A 8289
## 149 ARID1B 57492
## 150 ARID4A 5926
## 151 ARID4B 51742
## 152 ARID5A 10865
## 153 ARID5B 84159
## 154 ARIH1 25820
## 155 ARL5A 26225
## 156 ARL5B 221079
## 157 ARL6IP1 23204
## 158 ARL6IP4 51329
## 159 ARL6IP6 151188
## 160 ARMC7 79637
## 161 ARMC8 25852
## 162 ARNT 405
## 163 ARNTL 406
## 164 ARPC1B 10095
## 165 ARPC4 10093
## 166 ARPC4-TTLL3 100526693
## 167 ARPP19 10776
## 168 ARRB1 408
## 169 ARRB2 409
## 170 ARRDC1 92714
## 171 ARSA 410
## 172 ARSB 411
## 173 ASB7 140460
## 174 ASGR2 433
## 175 ASH1L 55870
## 176 ASL 435
## 177 ASMTL 8623
## 178 ATAD2 29028
## 179 ATAD2B 54454
## 180 ATF2 1386
## 181 ATF6B 1388
## 182 ATF7 11016
## 183 ATF7IP 55729
## 184 ATG101 60673
## 185 ATG13 9776
## 186 ATG16L2 89849
## 187 ATG2B 55102
## 188 ATG4B 23192
## 189 ATG7 10533
## 190 ATM 472
## 191 ATOX1 475
## 192 ATP11A 23250
## 193 ATP13A1 57130
## 194 ATP1A1 476
## 195 ATP2A2 488
## 196 ATP2A3 489
## 197 ATP2C1 27032
## 198 ATP5F1D 513
## 199 ATP5F1E 514
## 200 ATP5MC2 517
## 201 ATP5ME 521
## 202 ATP5PO 539
## 203 ATP6AP1 537
## 204 ATP6V0A1 535
## 205 ATP6V0D1 9114
## 206 ATP6V0E2 155066
## 207 ATP6V1A 523
## 208 ATP6V1F 9296
## 209 ATP8A1 10396
## 210 ATP8B4 79895
## 211 ATRAID 51374
## 212 ATRX 546
## 213 ATXN1L 342371
## 214 ATXN7 6314
## 215 AUP1 550
## 216 AURKAIP1 54998
## 217 AVL9 23080
## 218 AZI2 64343
## 219 B2M 567
## 220 B3GALT4 8705
## 221 B3GALT6 126792
## 222 B3GAT3 26229
## 223 B3GNT2 10678
## 224 B3GNT8 374907
## 225 B4GALT1 2683
## 226 B4GALT4 8702
## 227 B4GALT5 9334
## 228 BABAM1 29086
## 229 BABAM2 9577
## 230 BACH1 571
## 231 BACH1 100379661
## 232 BAG1 573
## 233 BAG6 7917
## 234 BANF1 8815
## 235 BAP1 8314
## 236 BAX 581
## 237 BAZ1B 9031
## 238 BAZ2A 11176
## 239 BAZ2B 29994
## 240 BBX 56987
## 241 BCAP31 10134
## 242 BCKDHA 593
## 243 BCKDK 10295
## 244 BCL7B 9275
## 245 BCL7C 9274
## 246 BDP1 55814
## 247 BICRAL 23506
## 248 BID 637
## 249 BIN1 274
## 250 BIN3 55909
## 251 BIRC2 329
## 252 BIRC6 57448
## 253 BLOC1S1 2647
## 254 BLVRB 645
## 255 BLZF1 8548
## 256 BMPR2 659
## 257 BOD1L1 259282
## 258 BORCS6 54785
## 259 BORCS8 729991
## 260 BPI 671
## 261 BPTF 2186
## 262 BRAF 673
## 263 BRAT1 221927
## 264 BRD2 6046
## 265 BRD7 29117
## 266 BRK1 55845
## 267 BRMS1 25855
## 268 BRPF3 27154
## 269 BRWD1 54014
## 270 BRWD3 254065
## 271 BSG 682
## 272 BTAF1 9044
## 273 BTBD1 53339
## 274 BTBD2 55643
## 275 BTF3 689
## 276 BTN2A1 11120
## 277 BTN2A2 10385
## 278 BTN3A1 11119
## 279 BTN3A2 11118
## 280 BTN3A3 10384
## 281 BUB1 699
## 282 C11orf68 83638
## 283 C11orf98 102288414
## 284 C12orf57 113246
## 285 C12orf75 387882
## 286 C15orf39 56905
## 287 C17orf49 124944
## 288 C18orf25 147339
## 289 C19orf25 148223
## 290 C19orf38 255809
## 291 C19orf53 28974
## 292 C1GALT1 56913
## 293 C1orf162 128346
## 294 C1QA 712
## 295 C20orf27 54976
## 296 C21orf91 54149
## 297 C2CD3 26005
## 298 C2CD5 9847
## 299 C2orf88 84281
## 300 C5AR2 27202
## 301 C5orf51 285636
## 302 C6orf47 57827
## 303 C6orf89 221477
## 304 C7orf50 84310
## 305 C9orf16 79095
## 306 C9orf72 203228
## 307 CABIN1 23523
## 308 CALCOCO2 10241
## 309 CALM1 801
## 310 CALU 813
## 311 CAMK1 8536
## 312 CAMK2G 818
## 313 CANX 821
## 314 CAPG 822
## 315 CAPN1 823
## 316 CAPN2 824
## 317 CAPNS1 826
## 318 CAPRIN1 4076
## 319 CAPZB 832
## 320 CARD19 84270
## 321 CARD6 84674
## 322 CARMIL2 146206
## 323 CARS2 79587
## 324 CASP10 843
## 325 CASP3 836
## 326 CAVIN2 8436
## 327 CBX1 10951
## 328 CBX6 23466
## 329 CCAR2 57805
## 330 CCDC107 203260
## 331 CCDC115 84317
## 332 CCDC12 151903
## 333 CCDC125 202243
## 334 CCDC186 55088
## 335 CCDC22 28952
## 336 CCDC47 57003
## 337 CCDC71 64925
## 338 CCDC82 79780
## 339 CCDC88B 283234
## 340 CCDC9 26093
## 341 CCDC93 54520
## 342 CCM2 83605
## 343 CCND2 894
## 344 CCNK 8812
## 345 CCNT1 904
## 346 CCNT2 905
## 347 CCR7 1236
## 348 CCS 9973
## 349 CCSER2 54462
## 350 CCT3 7203
## 351 CCT4 10575
## 352 CD14 929
## 353 CD164 8763
## 354 CD1D 912
## 355 CD2 914
## 356 CD22 933
## 357 CD226 10666
## 358 CD24 100133941
## 359 CD244 51744
## 360 CD2BP2 10421
## 361 CD300C 10871
## 362 CD300LF 146722
## 363 CD37 951
## 364 CD38 952
## 365 CD3D 915
## 366 CD3E 916
## 367 CD4 920
## 368 CD46 4179
## 369 CD48 962
## 370 CD5 921
## 371 CD52 1043
## 372 CD6 923
## 373 CD68 968
## 374 CD7 924
## 375 CD74 972
## 376 CD79A 973
## 377 CD79B 974
## 378 CD81 975
## 379 CD82 3732
## 380 CD8B 926
## 381 CD99L2 83692
## 382 CDC14B 8555
## 383 CDC26 246184
## 384 CDC27 996
## 385 CDC34 997
## 386 CDC37 11140
## 387 CDC42EP2 10435
## 388 CDC42SE1 56882
## 389 CDC73 79577
## 390 CDCA7L 55536
## 391 CDIP1 29965
## 392 CDIPT 10423
## 393 CDK10 8558
## 394 CDK11B 984
## 395 CDK12 51755
## 396 CDK13 8621
## 397 CDK14 5218
## 398 CDK16 5127
## 399 CDK17 5128
## 400 CDK19 23097
## 401 CDK2AP2 10263
## 402 CDK5RAP3 80279
## 403 CDK9 1025
## 404 CDKN2D 1032
## 405 CDS2 8760
## 406 CEACAM6 4680
## 407 CEACAM8 1088
## 408 CEBPA 1050
## 409 CEBPB 1051
## 410 CEBPZOS 100505876
## 411 CELF1 10658
## 412 CELF2 10659
## 413 CEMIP2 23670
## 414 CENPB 1059
## 415 CENPT 80152
## 416 CEP170 9859
## 417 CEP170 645455
## 418 CEP19 84984
## 419 CEP192 55125
## 420 CEP350 9857
## 421 CEP63 80254
## 422 CEP85L 387119
## 423 CEP97 79598
## 424 CERK 64781
## 425 CERS5 91012
## 426 CES1 1066
## 427 CFD 1675
## 428 CFL1 1072
## 429 CFLAR 8837
## 430 CFP 5199
## 431 CGGBP1 8545
## 432 CHD1 1105
## 433 CHD2 1106
## 434 CHD3 1107
## 435 CHD7 55636
## 436 CHD8 57680
## 437 CHIT1 1118
## 438 CHKB 1120
## 439 CHMP1A 5119
## 440 CHMP1B 57132
## 441 CHMP2A 27243
## 442 CHMP4A 29082
## 443 CHMP4B 128866
## 444 CHMP5 51510
## 445 CHMP6 79643
## 446 CHMP7 91782
## 447 CHPF2 54480
## 448 CHPT1 56994
## 449 CHST2 9435
## 450 CHSY1 22856
## 451 CHTOP 26097
## 452 CHUK 1147
## 453 CIAO2B 51647
## 454 CIB1 10519
## 455 CIC 23152
## 456 CINP 51550
## 457 CIRBP 1153
## 458 CISD3 284106
## 459 CISH 1154
## 460 CIZ1 25792
## 461 CKAP5 9793
## 462 CLASP1 23332
## 463 CLASRP 11129
## 464 CLCN3 1182
## 465 CLCN7 1186
## 466 CLDND1 56650
## 467 CLEC10A 10462
## 468 CLEC5A 23601
## 469 CLEC7A 64581
## 470 CLIC1 1192
## 471 CLIC4 25932
## 472 CLINT1 9685
## 473 CLIP1 6249
## 474 CLN3 1201
## 475 CLN6 54982
## 476 CLNS1A 1207
## 477 CLPX 10845
## 478 CLTA 1211
## 479 CLTB 1212
## 480 CMPK2 129607
## 481 CMTM3 123920
## 482 CMTM7 112616
## 483 CNEP1R1 255919
## 484 CNN2 1265
## 485 CNOT1 23019
## 486 CNOT6 57472
## 487 CNOT7 29883
## 488 CNPPD1 27013
## 489 CNPY3 10695
## 490 CNST 163882
## 491 CNTRL 11064
## 492 COA3 28958
## 493 COASY 80347
## 494 COG3 83548
## 495 COL18A1 80781
## 496 COLGALT1 79709
## 497 COMMD5 28991
## 498 COMMD6 170622
## 499 COMMD7 149951
## 500 COMMD9 29099
## 501 COMT 1312
## 502 COPA 1314
## 503 COPB1 1315
## 504 COPB2 9276
## 505 COPE 11316
## 506 COPS2 9318
## 507 COPS6 10980
## 508 COPS7A 50813
## 509 COPS9 150678
## 510 COPZ1 22818
## 511 COQ8A 56997
## 512 COQ8B 79934
## 513 CORO1A 11151
## 514 CORO1B 57175
## 515 CORO1C 23603
## 516 CORO2A 7464
## 517 CORO7 79585
## 518 COTL1 23406
## 519 COX4I1 1327
## 520 COX5B 1329
## 521 COX6A1 1337
## 522 COX6B1 1340
## 523 COX6C 1345
## 524 COX7C 1350
## 525 COX8A 1351
## 526 CPD 1362
## 527 CPEB2 132864
## 528 CPEB4 80315
## 529 CPNE1 8904
## 530 CPNE3 8895
## 531 CPSF1 29894
## 532 CPSF2 53981
## 533 CPVL 54504
## 534 CREB1 1385
## 535 CREB3L2 64764
## 536 CREB5 9586
## 537 CREBBP 1387
## 538 CREBRF 153222
## 539 CREG1 8804
## 540 CRIP1 1396
## 541 CRISPLD2 83716
## 542 CRKL 1399
## 543 CRLF3 51379
## 544 CRTAP 10491
## 545 CRTC2 200186
## 546 CS 1431
## 547 CSF1R 1436
## 548 CSGALNACT1 55790
## 549 CSGALNACT2 55454
## 550 CSK 1445
## 551 CSNK1A1 1452
## 552 CSNK1G1 53944
## 553 CSNK1G2 1455
## 554 CSNK2B 1460
## 555 CSRP1 1465
## 556 CST3 1471
## 557 CST7 8530
## 558 CTBP1 1487
## 559 CTDNEP1 23399
## 560 CTDP1 9150
## 561 CTDSP1 58190
## 562 CTDSP2 10106
## 563 CTNNBL1 56259
## 564 CTSC 1075
## 565 CTSD 1509
## 566 CTSH 1512
## 567 CTSZ 1522
## 568 CUEDC1 404093
## 569 CUEDC2 79004
## 570 CUL1 8454
## 571 CUTA 51596
## 572 CWF19L1 55280
## 573 CXCR5 643
## 574 CXXC1 30827
## 575 CYB561A3 220002
## 576 CYB5R1 51706
## 577 CYB5R3 1727
## 578 CYBA 1535
## 579 CYBC1 79415
## 580 CYC1 1537
## 581 CYCS 54205
## 582 CYHR1 50626
## 583 CYLD 1540
## 584 CYP4F3 4051
## 585 CYSTM1 84418
## 586 CYTH4 27128
## 587 CYTIP 9595
## 588 DAD1 1603
## 589 DAGLB 221955
## 590 DAZAP1 26528
## 591 DBI 1622
## 592 DBNL 28988
## 593 DCAF10 79269
## 594 DCAF15 90379
## 595 DCAF5 8816
## 596 DCAF7 10238
## 597 DCK 1633
## 598 DCTN1 1639
## 599 DCTN3 11258
## 600 DCTN4 51164
## 601 DCUN1D1 54165
## 602 DCXR 51181
## 603 DDRGK1 65992
## 604 DDX17 10521
## 605 DDX21 9188
## 606 DDX39B 7919
## 607 DDX3X 1654
## 608 DDX41 51428
## 609 DDX46 9879
## 610 DDX49 54555
## 611 DDX56 54606
## 612 DDX58 23586
## 613 DDX6 1656
## 614 DDX60 55601
## 615 DDX60L 91351
## 616 DEDD2 162989
## 617 DEF6 50619
## 618 DEF8 54849
## 619 DEGS1 8560
## 620 DEK 7913
## 621 DENND1B 163486
## 622 DENND1C 79958
## 623 DENND4A 10260
## 624 DENND4B 9909
## 625 DENND4C 55667
## 626 DENND5A 23258
## 627 DERL2 51009
## 628 DERPC 113455421
## 629 DGAT1 8694
## 630 DGCR2 9993
## 631 DGCR6L 85359
## 632 DGKH 160851
## 633 DGKQ 1609
## 634 DGKZ 8525
## 635 DGLUCY 80017
## 636 DGUOK 1716
## 637 DHCR24 1718
## 638 DHFR 1719
## 639 DHPS 1725
## 640 DHRS13 147015
## 641 DHRS4 10901
## 642 DHRS4 728635
## 643 DHRS4L2 317749
## 644 DHTKD1 55526
## 645 DHX15 1665
## 646 DHX36 170506
## 647 DHX40 79665
## 648 DHX8 1659
## 649 DHX9 1660
## 650 DICER1 23405
## 651 DIP2A 23181
## 652 DIP2B 57609
## 653 DMAP1 55929
## 654 DMTF1 9988
## 655 DMXL1 1657
## 656 DMXL2 23312
## 657 DNAJB14 79982
## 658 DNAJB2 3300
## 659 DNAJC13 23317
## 660 DNAJC14 85406
## 661 DNAJC4 3338
## 662 DNAJC7 7266
## 663 DNAJC8 22826
## 664 DNPEP 23549
## 665 DOCK11 139818
## 666 DOCK2 1794
## 667 DOCK4 9732
## 668 DOCK8 81704
## 669 DOK1 1796
## 670 DOK2 9046
## 671 DPH7 92715
## 672 DPM2 8818
## 673 DPP7 29952
## 674 DPP8 54878
## 675 DPYD 1806
## 676 DPYSL2 1808
## 677 DR1 1810
## 678 DRAM2 128338
## 679 DRAP1 10589
## 680 DTX2 113878
## 681 DTX3L 151636
## 682 DUS1L 64118
## 683 DYNC1LI2 1783
## 684 DYNLL1 8655
## 685 DYRK1A 1859
## 686 E2F1 1869
## 687 E2F3 1871
## 688 E2F4 1874
## 689 EAF1 85403
## 690 ECH1 1891
## 691 ECHDC1 55862
## 692 ECHS1 1892
## 693 ECPAS 23392
## 694 EDC4 23644
## 695 EDEM1 9695
## 696 EDEM3 80267
## 697 EDF1 8721
## 698 EEF1A1 1915
## 699 EEF1B2 1933
## 700 EEF1D 1936
## 701 EEF1G 1937
## 702 EEF2 1938
## 703 EFCAB14 9813
## 704 EFHD2 79180
## 705 EFR3A 23167
## 706 EFTUD2 9343
## 707 EGF 1950
## 708 EGLN2 112398
## 709 EHBP1L1 254102
## 710 EHD1 10938
## 711 EHD3 30845
## 712 EID1 23741
## 713 EIF2AK1 27102
## 714 EIF2AK2 5610
## 715 EIF2B4 8890
## 716 EIF3A 8661
## 717 EIF3B 8662
## 718 EIF3C 8663
## 719 EIF3D 8664
## 720 EIF3F 8665
## 721 EIF3G 8666
## 722 EIF3H 8667
## 723 EIF3I 8668
## 724 EIF3K 27335
## 725 EIF3L 51386
## 726 EIF3M 10480
## 727 EIF4A1 1973
## 728 EIF4E 1977
## 729 EIF4E2 9470
## 730 EIF4EBP1 1978
## 731 EIF4EBP3 8637
## 732 EIF4G2 1982
## 733 EIF4G3 8672
## 734 EIF5 1983
## 735 EIF5A 1984
## 736 EIF6 3692
## 737 ELF1 1997
## 738 ELF2 1998
## 739 ELL2 22936
## 740 ELOB 6923
## 741 ELOF1 84337
## 742 ELOVL1 64834
## 743 EMC10 284361
## 744 EMG1 10436
## 745 EML3 256364
## 746 EMP3 2014
## 747 ENDOD1 23052
## 748 ENG 2022
## 749 ENGASE 64772
## 750 ENO1 2023
## 751 ENTPD4 9583
## 752 ENTPD6 955
## 753 EP300 2033
## 754 EPB41 2035
## 755 EPC1 80314
## 756 EPC2 26122
## 757 EPG5 57724
## 758 EPHB6 2051
## 759 EPN1 29924
## 760 EPRS1 2058
## 761 EPS15 2060
## 762 EPSTI1 94240
## 763 ERAP1 51752
## 764 ERBIN 55914
## 765 ERCC1 2067
## 766 ERF 2077
## 767 ERGIC3 51614
## 768 ERLEC1 27248
## 769 ERLIN1 10613
## 770 ERP29 10961
## 771 ESRRA 2101
## 772 ESYT1 23344
## 773 ESYT2 57488
## 774 ETFB 2109
## 775 ETHE1 23474
## 776 ETNK1 55500
## 777 EVI2B 2124
## 778 EVL 51466
## 779 EWSR1 2130
## 780 EXOC3 11336
## 781 EXOC5 10640
## 782 EXOC7 23265
## 783 EXOC8 149371
## 784 EXOSC4 54512
## 785 EZH1 2145
## 786 F13A1 2162
## 787 F2R 2149
## 788 FAM102A 399665
## 789 FAM110A 83541
## 790 FAM111A 63901
## 791 FAM120A 23196
## 792 FAM126B 285172
## 793 FAM13B 51306
## 794 FAM160B1 57700
## 795 FAM168A 23201
## 796 FAM193B 54540
## 797 FAM199X 139231
## 798 FAM214A 56204
## 799 FAM214B 80256
## 800 FAM234A 83986
## 801 FAM241A 132720
## 802 FAM32A 26017
## 803 FAM3A 60343
## 804 FAM50A 9130
## 805 FAM53B 9679
## 806 FAM76B 143684
## 807 FAM78A 286336
## 808 FAM89B 23625
## 809 FAM8A1 51439
## 810 FAM91A1 157769
## 811 FAR2 55711
## 812 FASTK 10922
## 813 FASTKD5 60493
## 814 FAU 2197
## 815 FAXDC2 10826
## 816 FBH1 84893
## 817 FBL 2091
## 818 FBP1 2203
## 819 FBRS 64319
## 820 FBRSL1 57666
## 821 FBXL20 84961
## 822 FBXL3 26224
## 823 FBXO34 55030
## 824 FBXO38 81545
## 825 FBXO44 93611
## 826 FBXO9 26268
## 827 FBXW11 23291
## 828 FBXW4 6468
## 829 FBXW5 54461
## 830 FCER2 2208
## 831 FCGR3A 2214
## 832 FCGR3B 2215
## 833 FCGRT 2217
## 834 FCHO1 23149
## 835 FCHO2 115548
## 836 FCHSD2 9873
## 837 FCMR 9214
## 838 FCN1 2219
## 839 FEM1B 10116
## 840 FERMT3 83706
## 841 FES 2242
## 842 FGD3 89846
## 843 FGFR1OP2 26127
## 844 FHOD1 29109
## 845 FIBP 9158
## 846 FIS1 51024
## 847 FKBP2 2286
## 848 FKBP4 2288
## 849 FKBP5 2289
## 850 FKBP8 23770
## 851 FLCN 201163
## 852 FLI1 2313
## 853 FLII 2314
## 854 FLNA 2316
## 855 FLOT2 2319
## 856 FLT3 2322
## 857 FLT3LG 2323
## 858 FMR1 2332
## 859 FNBP4 23360
## 860 FNDC3A 22862
## 861 FNDC3B 64778
## 862 FNIP1 96459
## 863 FOXJ3 22887
## 864 FOXN2 3344
## 865 FOXO4 4303
## 866 FPGS 2356
## 867 FRG1 2483
## 868 FRMD3 257019
## 869 FRY 10129
## 870 FRYL 285527
## 871 FTH1 2495
## 872 FTL 2512
## 873 FUBP1 8880
## 874 FUNDC2 65991
## 875 FUS 2521
## 876 FUT4 2526
## 877 FUT7 2529
## 878 FXYD5 53827
## 879 FYTTD1 84248
## 880 FZR1 51343
## 881 G3BP2 9908
## 882 G6PC3 92579
## 883 G6PD 2539
## 884 GAA 2548
## 885 GABARAP 11337
## 886 GABBR1 2550
## 887 GABPA 2551
## 888 GADD45GIP1 90480
## 889 GAK 2580
## 890 GALK1 2584
## 891 GALM 130589
## 892 GALNT10 55568
## 893 GALNT2 2590
## 894 GALNT7 51809
## 895 GAPDH 2597
## 896 GAPVD1 26130
## 897 GATAD2B 57459
## 898 GATD3A 8209
## 899 GBGT1 26301
## 900 GBP1 2633
## 901 GBP3 2635
## 902 GBP4 115361
## 903 GCC1 79571
## 904 GCC2 9648
## 905 GCNT1 2650
## 906 GET3 439
## 907 GET4 51608
## 908 GFI1 2672
## 909 GFUS 7264
## 910 GGA1 26088
## 911 GGT1 2678
## 912 GIGYF1 64599
## 913 GIGYF2 26058
## 914 GIMAP1 170575
## 915 GIMAP1-GIMAP5 100527949
## 916 GIMAP5 55340
## 917 GIT1 28964
## 918 GIT2 9815
## 919 GLCCI1 113263
## 920 GLE1 2733
## 921 GLS 2744
## 922 GLYR1 84656
## 923 GNA13 10672
## 924 GNA15 2769
## 925 GNAI2 2771
## 926 GNAS 2778
## 927 GNB2 2783
## 928 GNL1 2794
## 929 GNL3L 54552
## 930 GNPTAB 79158
## 931 GNPTG 84572
## 932 GOLGA2 2801
## 933 GOLGA4 2803
## 934 GOLGA5 9950
## 935 GOLGB1 2804
## 936 GOLPH3 64083
## 937 GON4L 54856
## 938 GP1BB 2812
## 939 GPAA1 8733
## 940 GPANK1 7918
## 941 GPATCH2L 55668
## 942 GPATCH8 23131
## 943 GPBAR1 151306
## 944 GPBP1 65056
## 945 GPBP1L1 60313
## 946 GPD2 2820
## 947 GPR107 57720
## 948 GPR108 56927
## 949 GPR132 29933
## 950 GPR141 353345
## 951 GPR162 27239
## 952 GPR27 2850
## 953 GPS1 2873
## 954 GPS2 2874
## 955 GPSM3 63940
## 956 GPX1 2876
## 957 GPX4 2879
## 958 GRAP 10750
## 959 GRHPR 9380
## 960 GRK2 156
## 961 GRK6 2870
## 962 GSDMD 79792
## 963 GSTK1 373156
## 964 GSTO1 9446
## 965 GSTP1 2950
## 966 GTF2A1 2957
## 967 GTF2F1 2962
## 968 GTF2H2 2966
## 969 GTF2H2 728340
## 970 GTF2H2C 728340
## 971 GTF2H2C_2 730394
## 972 GTF3A 2971
## 973 GTF3C5 9328
## 974 GTPBP6 8225
## 975 GUK1 2987
## 976 GYPC 2995
## 977 H1-10 8971
## 978 H2AJ 55766
## 979 H2BC12 85236
## 980 H2BC21 8349
## 981 H2BC4 8347
## 982 H2BC5 3017
## 983 HACD4 401494
## 984 HADHA 3030
## 985 HAGH 3029
## 986 HAX1 10456
## 987 HBA1 3039
## 988 HBA2 3040
## 989 HBP1 26959
## 990 HCK 3055
## 991 HCST 10870
## 992 HDAC10 83933
## 993 HDAC3 8841
## 994 HDAC5 10014
## 995 HDAC7 51564
## 996 HDGFL2 84717
## 997 HDHD5 27440
## 998 HDLBP 3069
## 999 HEATR5B 54497
## 1000 HECA 51696
## 1001 HECTD1 25831
## 1002 HELZ 9931
## 1003 HERC1 8925
## 1004 HERC2 8924
## 1005 HERC3 8916
## 1006 HERC4 26091
## 1007 HERC5 51191
## 1008 HERPUD2 64224
## 1009 HEXIM1 10614
## 1010 HGS 9146
## 1011 HIF1A 3091
## 1012 HIF1AN 55662
## 1013 HIGD2A 192286
## 1014 HINT3 135114
## 1015 HIPK1 204851
## 1016 HIPK2 28996
## 1017 HIRA 7290
## 1018 HK3 3101
## 1019 HLA-DMA 3108
## 1020 HLA-DMB 3109
## 1021 HLA-DPA1 3113
## 1022 HLA-DPB1 3115
## 1023 HLA-DQA1 3117
## 1024 HLA-DQB1 3119
## 1025 HLA-DRA 3122
## 1026 HLA-DRB1 3123
## 1027 HM13 81502
## 1028 HMG20B 10362
## 1029 HMGB2 3148
## 1030 HMGCL 3155
## 1031 HMGCR 3156
## 1032 HMGN3 9324
## 1033 HMGN4 10473
## 1034 HMOX1 3162
## 1035 HMOX2 3163
## 1036 HNMT 3176
## 1037 HNRNPA0 10949
## 1038 HNRNPH3 3189
## 1039 HNRNPK 3190
## 1040 HNRNPLL 92906
## 1041 HNRNPM 4670
## 1042 HNRNPR 10236
## 1043 HP1BP3 50809
## 1044 HPS1 3257
## 1045 HPS3 84343
## 1046 HPS6 79803
## 1047 HPSE 10855
## 1048 HS1BP3 64342
## 1049 HSBP1 3281
## 1050 HSD17B10 3028
## 1051 HSD17B4 3295
## 1052 HSP90B1 7184
## 1053 HSPA13 6782
## 1054 HSPA1A 3303
## 1055 HSPA1B 3304
## 1056 HSPB1 3315
## 1057 HSPD1 3329
## 1058 HVCN1 84329
## 1059 HYPK 25764
## 1060 IARS1 3376
## 1061 ICAM2 3384
## 1062 ICAM3 3385
## 1063 IDH1 3417
## 1064 IDH3B 3420
## 1065 IDH3G 3421
## 1066 IFFO1 25900
## 1067 IFI16 3428
## 1068 IFI27 3429
## 1069 IFI27L2 83982
## 1070 IFI30 10437
## 1071 IFI44 10561
## 1072 IFI44L 10964
## 1073 IFIH1 64135
## 1074 IFIT2 3433
## 1075 IFIT3 3437
## 1076 IFIT5 24138
## 1077 IFITM2 10581
## 1078 IGBP1 3476
## 1079 IGF2R 3482
## 1080 IGFLR1 79713
## 1081 IGHG1 NA
## 1082 IGKC NA
## 1083 IGSF6 10261
## 1084 IKBKE 9641
## 1085 IKBKG 8517
## 1086 IKZF1 10320
## 1087 IL11RA 3590
## 1088 IL18R1 8809
## 1089 IL1R1 3554
## 1090 IL27RA 9466
## 1091 IL32 9235
## 1092 IL6ST 3572
## 1093 IMPA2 3613
## 1094 IMPDH1 3614
## 1095 IMPDH2 3615
## 1096 ING3 54556
## 1097 INO80D 54891
## 1098 INO80E 283899
## 1099 INPP4A 3631
## 1100 INPP5D 3635
## 1101 INPP5K 51763
## 1102 INTS1 26173
## 1103 INTS11 54973
## 1104 INTS6 26512
## 1105 INTS8 55656
## 1106 IP6K2 51447
## 1107 IPO7 10527
## 1108 IQGAP2 10788
## 1109 IRAK1 3654
## 1110 IRAK2 3656
## 1111 IRAK3 11213
## 1112 IREB2 3658
## 1113 IRF2 3660
## 1114 IRF3 3661
## 1115 IRF4 3662
## 1116 IRF5 3663
## 1117 IRF8 3394
## 1118 ISY1 57461
## 1119 ITCH 83737
## 1120 ITFG1 81533
## 1121 ITGB1 3688
## 1122 ITGB2 3689
## 1123 ITGB3 3690
## 1124 ITM2C 81618
## 1125 ITPA 3704
## 1126 ITPR2 3709
## 1127 ITSN2 50618
## 1128 IVNS1ABP 10625
## 1129 JADE1 79960
## 1130 JAK1 3716
## 1131 JAK2 3717
## 1132 JAML 120425
## 1133 JARID2 3720
## 1134 JCHAIN 3512
## 1135 JDP2 122953
## 1136 JMJD1C 221037
## 1137 JMJD8 339123
## 1138 JPT1 51155
## 1139 JTB 10899
## 1140 JUNB 3726
## 1141 KANSL1 284058
## 1142 KAT2B 8850
## 1143 KAT5 10524
## 1144 KAT6A 7994
## 1145 KAZN 23254
## 1146 KBTBD2 25948
## 1147 KBTBD6 89890
## 1148 KCNAB2 8514
## 1149 KCNK6 9424
## 1150 KCNN4 3783
## 1151 KCNQ1 3784
## 1152 KCTD20 222658
## 1153 KDELR1 10945
## 1154 KDM1B 221656
## 1155 KDM2A 22992
## 1156 KDM3B 51780
## 1157 KDM4B 23030
## 1158 KDM5A 5927
## 1159 KDM5B 10765
## 1160 KDM5C 8242
## 1161 KDM6A 7403
## 1162 KDM7A 80853
## 1163 KEAP1 9817
## 1164 KHDRBS1 10657
## 1165 KHNYN 23351
## 1166 KIAA0040 9674
## 1167 KIAA0232 9778
## 1168 KIAA0319L 79932
## 1169 KIAA0930 23313
## 1170 KIAA1109 84162
## 1171 KIAA1958 158405
## 1172 KIAA2026 158358
## 1173 KIDINS220 57498
## 1174 KIF1B 23095
## 1175 KIF27 55582
## 1176 KIF2A 3796
## 1177 KIF5B 3799
## 1178 KIFC2 90990
## 1179 KLF16 83855
## 1180 KLF2 10365
## 1181 KLF3 51274
## 1182 KLF6 1316
## 1183 KLF7 8609
## 1184 KLHDC3 116138
## 1185 KLHL24 54800
## 1186 KLHL6 89857
## 1187 KLHL8 57563
## 1188 KLRB1 3820
## 1189 KMT2C 58508
## 1190 KMT2D 8085
## 1191 KMT2E 55904
## 1192 KPNA2 3838
## 1193 KPNA5 3841
## 1194 KPNA6 23633
## 1195 KPNB1 3837
## 1196 KRAS 3845
## 1197 KRI1 65095
## 1198 KRTCAP2 200185
## 1199 KTN1 3895
## 1200 KXD1 79036
## 1201 LAMP1 3916
## 1202 LAMP2 3920
## 1203 LAMTOR1 55004
## 1204 LAMTOR2 28956
## 1205 LAMTOR4 389541
## 1206 LAPTM5 7805
## 1207 LARP1 23367
## 1208 LARP7 51574
## 1209 LAT 27040
## 1210 LATS1 9113
## 1211 LATS2 26524
## 1212 LCK 3932
## 1213 LCOR 84458
## 1214 LCP2 3937
## 1215 LDB1 8861
## 1216 LDLR 3949
## 1217 LEMD2 221496
## 1218 LEMD3 23592
## 1219 LEPROT 54741
## 1220 LFNG 3955
## 1221 LGALS1 3956
## 1222 LGALS9 3965
## 1223 LGALSL 29094
## 1224 LHFPL2 10184
## 1225 LIG4 3981
## 1226 LILRA1 11024
## 1227 LILRA2 11027
## 1228 LILRA3 11026
## 1229 LILRA5 353514
## 1230 LILRB1 10859
## 1231 LILRB2 10288
## 1232 LILRB3 11025
## 1233 LILRB3 102725035
## 1234 LILRB3 107987425
## 1235 LILRB3 107987462
## 1236 LILRB4 11006
## 1237 LIMD2 80774
## 1238 LIME1 54923
## 1239 LIMS1 3987
## 1240 LMAN1 3998
## 1241 LMAN2 10960
## 1242 LMBR1L 55716
## 1243 LMF2 91289
## 1244 LMNA 4000
## 1245 LMTK2 22853
## 1246 LNPEP 4012
## 1247 LONP1 9361
## 1248 LONP2 83752
## 1249 LPAR2 9170
## 1250 LPAR6 10161
## 1251 LPCAT1 79888
## 1252 LPCAT4 254531
## 1253 LPIN2 9663
## 1254 LPP 4026
## 1255 LRBA 987
## 1256 LRCH4 4034
## 1257 LRP1 4035
## 1258 LRPAP1 4043
## 1259 LRRC25 126364
## 1260 LRRC59 55379
## 1261 LRRC75A 388341
## 1262 LRRC8D 55144
## 1263 LRRK2 120892
## 1264 LSM10 84967
## 1265 LSM14A 26065
## 1266 LSM2 57819
## 1267 LSM4 25804
## 1268 LSM6 11157
## 1269 LSM7 51690
## 1270 LSM8 51691
## 1271 LSMEM1 286006
## 1272 LSP1 4046
## 1273 LST1 7940
## 1274 LTB 4050
## 1275 LTBP1 4052
## 1276 LTBR 4055
## 1277 LTF 4057
## 1278 LTN1 26046
## 1279 LUC7L 55692
## 1280 LY86 9450
## 1281 LYL1 4066
## 1282 LYPLA2 11313
## 1283 LYSMD3 116068
## 1284 LYST 1130
## 1285 LZTR1 8216
## 1286 MACIR 90355
## 1287 MAD1L1 8379
## 1288 MAD2L1BP 9587
## 1289 MAD2L2 10459
## 1290 MAF1 84232
## 1291 MAL 4118
## 1292 MAML1 9794
## 1293 MAML2 84441
## 1294 MAN1A1 4121
## 1295 MAN1A2 10905
## 1296 MAN1B1 11253
## 1297 MAN2A1 4124
## 1298 MAN2A2 4122
## 1299 MAN2B1 4125
## 1300 MAN2C1 4123
## 1301 MANSC1 54682
## 1302 MAP2K1 5604
## 1303 MAP2K2 5605
## 1304 MAP2K3 5606
## 1305 MAP2K4 6416
## 1306 MAP3K1 4214
## 1307 MAP3K11 4296
## 1308 MAP3K14 9020
## 1309 MAP3K2 10746
## 1310 MAP3K5 4217
## 1311 MAP4K1 11184
## 1312 MAP4K4 9448
## 1313 MAP7D1 55700
## 1314 MAPK13 5603
## 1315 MAPK1IP1L 93487
## 1316 MAPK3 5595
## 1317 MAPK8IP3 23162
## 1318 MAPKAPK3 7867
## 1319 MARCHF2 51257
## 1320 MARCHF5 54708
## 1321 MARCKSL1 65108
## 1322 MARCO 8685
## 1323 MARF1 9665
## 1324 MARK3 4140
## 1325 MARS1 4141
## 1326 MAT2A 4144
## 1327 MAT2B 27430
## 1328 MATK 4145
## 1329 MAZ 4150
## 1330 MBD3 53615
## 1331 MBNL1 4154
## 1332 MBOAT7 79143
## 1333 MCFD2 90411
## 1334 MCM4 4173
## 1335 MCM6 4175
## 1336 MCMBP 79892
## 1337 MCRIP1 348262
## 1338 MCRS1 10445
## 1339 MCTP1 79772
## 1340 MCU 90550
## 1341 MDH2 4191
## 1342 MDM1 56890
## 1343 MDM2 4193
## 1344 MDM4 4194
## 1345 ME2 4200
## 1346 MEA1 4201
## 1347 MED1 5469
## 1348 MED11 400569
## 1349 MED12 9968
## 1350 MED13 9969
## 1351 MED13L 23389
## 1352 MED15 51586
## 1353 MED16 10025
## 1354 MED22 6837
## 1355 MED23 9439
## 1356 MEFV 4210
## 1357 MEGF9 1955
## 1358 MEPCE 56257
## 1359 METRNL 284207
## 1360 METTL26 84326
## 1361 MFAP3 4238
## 1362 MFN2 9927
## 1363 MFNG 4242
## 1364 MFSD10 10227
## 1365 MFSD12 126321
## 1366 MFSD14A 64645
## 1367 MFSD14B 84641
## 1368 MFSD5 84975
## 1369 MGAT1 4245
## 1370 MGAT4A 11320
## 1371 MGAT5 4249
## 1372 MIA2 4253
## 1373 MIA3 375056
## 1374 MIB1 57534
## 1375 MICAL1 64780
## 1376 MICB 4277
## 1377 MICOS13 125988
## 1378 MICU1 10367
## 1379 MIDEAS 91748
## 1380 MIDN 90007
## 1381 MIER1 57708
## 1382 MIF4GD 57409
## 1383 MIGA2 84895
## 1384 MIIP 60672
## 1385 MINDY2 54629
## 1386 MINK1 50488
## 1387 MIS18BP1 55320
## 1388 MKI67 4288
## 1389 MKLN1 4289
## 1390 MLF2 8079
## 1391 MLLT1 4298
## 1392 MMD 23531
## 1393 MME 4311
## 1394 MMP24OS 101410538
## 1395 MMP25 64386
## 1396 MNT 4335
## 1397 MOB1A 55233
## 1398 MOB2 81532
## 1399 MOB3A 126308
## 1400 MOGS 7841
## 1401 MON2 23041
## 1402 MORC3 23515
## 1403 MORF4L2 9643
## 1404 MOSPD3 64598
## 1405 MPDU1 9526
## 1406 MPG 4350
## 1407 MPHOSPH8 54737
## 1408 MPI 4351
## 1409 MPND 84954
## 1410 MPO 4353
## 1411 MPP7 143098
## 1412 MR1 3140
## 1413 MRFAP1 93621
## 1414 MRFAP1L1 114932
## 1415 MRPL11 65003
## 1416 MRPL20 55052
## 1417 MRPL23 6150
## 1418 MRPL23 107987373
## 1419 MRPL24 79590
## 1420 MRPL28 10573
## 1421 MRPL38 64978
## 1422 MRPL52 122704
## 1423 MRPL54 116541
## 1424 MRPS18A 55168
## 1425 MRPS21 54460
## 1426 MRPS34 65993
## 1427 MRTFA 57591
## 1428 MS4A3 932
## 1429 MSL1 339287
## 1430 MSN 4478
## 1431 MSRA 4482
## 1432 MTA2 9219
## 1433 MTARC1 64757
## 1434 MTCH1 23787
## 1435 MTDH 92140
## 1436 MTF1 4520
## 1437 MTHFD2 10797
## 1438 MTMR10 54893
## 1439 MTMR3 8897
## 1440 MTMR4 9110
## 1441 MTMR6 9107
## 1442 MTOR 2475
## 1443 MTPN 136319
## 1444 MTPN 767558
## 1445 MTRNR2L10 100463488
## 1446 MTRNR2L3 100462983
## 1447 MTRNR2L6 100463482
## 1448 MTURN 222166
## 1449 MTX1 4580
## 1450 MVP 9961
## 1451 MXD1 4084
## 1452 MXD4 10608
## 1453 MYBL2 4605
## 1454 MYC 4609
## 1455 MYCBP2 23077
## 1456 MYCL 4610
## 1457 MYG1 60314
## 1458 MYL6 4637
## 1459 MYLIP 29116
## 1460 MYLK 4638
## 1461 MYO15B 80022
## 1462 MYO1F 4542
## 1463 MYO1G 64005
## 1464 MYO9B 4650
## 1465 MYSM1 114803
## 1466 NAA10 8260
## 1467 NAA38 84316
## 1468 NAA50 80218
## 1469 NAA60 79903
## 1470 NAAA 27163
## 1471 NAB1 4664
## 1472 NACA 4666
## 1473 NACC1 112939
## 1474 NADSYN1 55191
## 1475 NAGA 4668
## 1476 NANS 54187
## 1477 NAP1L1 4673
## 1478 NAPRT 93100
## 1479 NAPSA 9476
## 1480 NARF 26502
## 1481 NAXE 128240
## 1482 NBN 4683
## 1483 NBPF10 100132406
## 1484 NBPF14 25832
## 1485 NBPF19 101060226
## 1486 NBR1 4077
## 1487 NCAPD2 9918
## 1488 NCF1 653361
## 1489 NCF4 4689
## 1490 NCK1 4690
## 1491 NCK2 8440
## 1492 NCLN 56926
## 1493 NCOA1 8648
## 1494 NCOA2 10499
## 1495 NCOA3 8202
## 1496 NCOA6 23054
## 1497 NCOA7 135112
## 1498 NCOR1 9611
## 1499 NDE1 54820
## 1500 NDOR1 27158
## 1501 NDRG3 57446
## 1502 NDST1 3340
## 1503 NDUFA1 4694
## 1504 NDUFA11 126328
## 1505 NDUFA13 51079
## 1506 NDUFA2 4695
## 1507 NDUFA3 4696
## 1508 NDUFB10 4716
## 1509 NDUFB11 54539
## 1510 NDUFB2 4708
## 1511 NDUFB5 4711
## 1512 NDUFB7 4713
## 1513 NDUFB8 4714
## 1514 NDUFB9 4715
## 1515 NDUFC2 4718
## 1516 NDUFS1 4719
## 1517 NDUFS3 4722
## 1518 NDUFS6 4726
## 1519 NDUFV1 4723
## 1520 NECAP1 25977
## 1521 NECAP2 55707
## 1522 NEDD8 4738
## 1523 NEDD9 4739
## 1524 NEK7 140609
## 1525 NEK9 91754
## 1526 NELFB 25920
## 1527 NELFE 7936
## 1528 NEMF 9147
## 1529 NENF 29937
## 1530 NF1 4763
## 1531 NFAM1 150372
## 1532 NFAT5 10725
## 1533 NFE2L2 4780
## 1534 NFIL3 4783
## 1535 NFKBIE 4794
## 1536 NFYA 4800
## 1537 NHP2 55651
## 1538 NHSL2 340527
## 1539 NHSL2 392490
## 1540 NIBAN2 64855
## 1541 NIN 51199
## 1542 NINJ1 4814
## 1543 NINJ2 4815
## 1544 NIPA2 81614
## 1545 NIPBL 25836
## 1546 NISCH 11188
## 1547 NKTR 4820
## 1548 NLRC5 84166
## 1549 NLRP12 91662
## 1550 NLRX1 79671
## 1551 NME2 4831
## 1552 NMRAL1 57407
## 1553 NNT 23530
## 1554 NOC2L 26155
## 1555 NOD2 64127
## 1556 NOP53 29997
## 1557 NOSIP 51070
## 1558 NOTCH2 4853
## 1559 NPC2 10577
## 1560 NPEPL1 79716
## 1561 NPEPPS 9520
## 1562 NPLOC4 55666
## 1563 NPTN 27020
## 1564 NR1H2 7376
## 1565 NR2C2 7182
## 1566 NRAS 4893
## 1567 NRIP1 8204
## 1568 NRM 11270
## 1569 NSA2 10412
## 1570 NSD1 64324
## 1571 NSD3 54904
## 1572 NSF 4905
## 1573 NSMCE1 197370
## 1574 NSMF 26012
## 1575 NT5C 30833
## 1576 NT5C2 22978
## 1577 NT5C3A 51251
## 1578 NTNG2 84628
## 1579 NUBP2 10101
## 1580 NUCB1 4924
## 1581 NUCB2 4925
## 1582 NUDC 10726
## 1583 NUDT16L1 84309
## 1584 NUDT22 84304
## 1585 NUDT4 11163
## 1586 NUDT4B 440672
## 1587 NUFIP2 57532
## 1588 NUMA1 4926
## 1589 NUP153 9972
## 1590 NUP58 9818
## 1591 NUS1 116150
## 1592 NUSAP1 51203
## 1593 NXPE3 91775
## 1594 OAS1 4938
## 1595 OAS2 4939
## 1596 OAS3 4940
## 1597 OASL 8638
## 1598 OAZ1 4946
## 1599 ODC1 4953
## 1600 OGA 10724
## 1601 OGFR 11054
## 1602 OGT 8473
## 1603 OPA1 4976
## 1604 ORAI1 84876
## 1605 ORC4 5000
## 1606 OSBPL11 114885
## 1607 OSBPL8 114882
## 1608 OSBPL9 114883
## 1609 OSCAR 126014
## 1610 OSGEP 55644
## 1611 OSGIN2 734
## 1612 OSTM1 28962
## 1613 OTUB1 55611
## 1614 OTUD4 54726
## 1615 OTULIN 90268
## 1616 OVCA2 124641
## 1617 OXA1L 5018
## 1618 OXLD1 339229
## 1619 OXR1 55074
## 1620 OXSR1 9943
## 1621 PABPC1 26986
## 1622 PACS1 55690
## 1623 PAFAH1B1 5048
## 1624 PAG1 55824
## 1625 PAGR1 79447
## 1626 PAICS 10606
## 1627 PAK2 5062
## 1628 PALM2AKAP2 445815
## 1629 PAM 5066
## 1630 PAN3 255967
## 1631 PANK3 79646
## 1632 PAPOLA 10914
## 1633 PAPOLG 64895
## 1634 PARK7 11315
## 1635 PARL 55486
## 1636 PARP14 54625
## 1637 PARP15 165631
## 1638 PARP4 143
## 1639 PARP6 56965
## 1640 PARP8 79668
## 1641 PARP9 83666
## 1642 PARVG 64098
## 1643 PATL1 219988
## 1644 PATL2 197135
## 1645 PAXX 286257
## 1646 PBRM1 55193
## 1647 PBXIP1 57326
## 1648 PCED1A 64773
## 1649 PCED1B 91523
## 1650 PCF11 51585
## 1651 PCGF5 84333
## 1652 PCIF1 63935
## 1653 PCMTD1 115294
## 1654 PCNA 5111
## 1655 PCNP 57092
## 1656 PCNX1 22990
## 1657 PCNX3 399909
## 1658 PCNX4 64430
## 1659 PDAP1 11333
## 1660 PDE7A 5150
## 1661 PDIA6 10130
## 1662 PDK1 5163
## 1663 PDLIM2 64236
## 1664 PDLIM7 9260
## 1665 PDPK1 5170
## 1666 PDS5A 23244
## 1667 PDXDC1 23042
## 1668 PDZD4 57595
## 1669 PDZD8 118987
## 1670 PDZK1IP1 10158
## 1671 PEA15 8682
## 1672 PECAM1 5175
## 1673 PEF1 553115
## 1674 PELATON NA
## 1675 PELI1 57162
## 1676 PELI2 57161
## 1677 PELP1 27043
## 1678 PES1 23481
## 1679 PET100 100131801
## 1680 PEX16 9409
## 1681 PEX6 5190
## 1682 PFDN5 5204
## 1683 PFKL 5211
## 1684 PFN1 5216
## 1685 PGAP6 58986
## 1686 PGGHG 80162
## 1687 PGLS 25796
## 1688 PGPEP1 54858
## 1689 PGRMC1 10857
## 1690 PHACTR2 9749
## 1691 PHB 5245
## 1692 PHB2 11331
## 1693 PHC3 80012
## 1694 PHF1 5252
## 1695 PHF12 57649
## 1696 PHF2 5253
## 1697 PHF20L1 51105
## 1698 PHF3 23469
## 1699 PHIP 55023
## 1700 PHKB 5257
## 1701 PHKG2 5261
## 1702 PHPT1 29085
## 1703 PI4KB 5298
## 1704 PIAS1 8554
## 1705 PICALM 8301
## 1706 PIEZO1 9780
## 1707 PIGT 51604
## 1708 PIH1D1 55011
## 1709 PIK3AP1 118788
## 1710 PIK3C2A 5286
## 1711 PIK3CA 5290
## 1712 PIK3CB 5291
## 1713 PIK3CG 5294
## 1714 PIK3R5 23533
## 1715 PIKFYVE 200576
## 1716 PIM2 11040
## 1717 PIM3 415116
## 1718 PIN1 5300
## 1719 PIP4K2A 5305
## 1720 PIP4K2C 79837
## 1721 PIP4P2 55529
## 1722 PITPNB 23760
## 1723 PITPNC1 26207
## 1724 PITPNM1 9600
## 1725 PKN1 5585
## 1726 PKN2 5586
## 1727 PLA2G15 23659
## 1728 PLAAT4 5920
## 1729 PLB1 151056
## 1730 PLCL2 23228
## 1731 PLD2 5338
## 1732 PLD3 23646
## 1733 PLEC 5339
## 1734 PLEK 5341
## 1735 PLEKHA2 59339
## 1736 PLEKHJ1 55111
## 1737 PLEKHM2 23207
## 1738 PLEKHM3 389072
## 1739 PLEKHO1 51177
## 1740 PLEKHO2 80301
## 1741 PLIN3 10226
## 1742 PLIN5 440503
## 1743 PLSCR1 5359
## 1744 PLSCR3 57048
## 1745 PLXDC2 84898
## 1746 PLXNB2 23654
## 1747 PLXND1 23129
## 1748 PMM1 5372
## 1749 PMVK 10654
## 1750 PNISR 25957
## 1751 PNKD 25953
## 1752 PNN 5411
## 1753 PNPLA1 285848
## 1754 PNPLA2 57104
## 1755 PNPLA6 10908
## 1756 PNPT1 87178
## 1757 PNRC2 55629
## 1758 POGZ 23126
## 1759 POLD4 57804
## 1760 POLE4 56655
## 1761 POLL 27343
## 1762 POLM 27434
## 1763 POLR1D 51082
## 1764 POLR1H 30834
## 1765 POLR2B 5431
## 1766 POLR2C 5432
## 1767 POLR2E 5434
## 1768 POLR2G 5436
## 1769 POLR2J 5439
## 1770 POLR2L 5441
## 1771 POLRMT 5442
## 1772 POR 5447
## 1773 POU2AF1 5450
## 1774 POU2F2 5452
## 1775 PPCDC 60490
## 1776 PPCS 79717
## 1777 PPDPF 79144
## 1778 PPFIA1 8500
## 1779 PPIE 10450
## 1780 PPIL2 23759
## 1781 PPM1A 5494
## 1782 PPM1B 5495
## 1783 PPM1F 9647
## 1784 PPM1G 5496
## 1785 PPM1K 152926
## 1786 PPM1M 132160
## 1787 PPP1CA 5499
## 1788 PPP1R12A 4659
## 1789 PPP1R12B 4660
## 1790 PPP1R12C 54776
## 1791 PPP1R14B 26472
## 1792 PPP1R15B 84919
## 1793 PPP1R21 129285
## 1794 PPP1R35 221908
## 1795 PPP1R7 5510
## 1796 PPP1R9B 84687
## 1797 PPP2CB 5516
## 1798 PPP2R1A 5518
## 1799 PPP2R2A 5520
## 1800 PPP2R5A 5525
## 1801 PPP2R5C 5527
## 1802 PPP4C 5531
## 1803 PPP4R2 151987
## 1804 PPP6C 5537
## 1805 PPP6R1 22870
## 1806 PPP6R2 9701
## 1807 PPTC7 160760
## 1808 PQBP1 10084
## 1809 PRAM1 84106
## 1810 PRCC 5546
## 1811 PRDM1 639
## 1812 PRDM2 7799
## 1813 PRDX5 25824
## 1814 PRELID1 27166
## 1815 PRELID3B 51012
## 1816 PRKAA1 5562
## 1817 PRKAR2B 5577
## 1818 PRKCB 5579
## 1819 PRKCSH 5589
## 1820 PRKD2 25865
## 1821 PRKRIP1 79706
## 1822 PRMT1 3276
## 1823 PRMT2 3275
## 1824 PRPF19 27339
## 1825 PRPF31 26121
## 1826 PRPF38B 55119
## 1827 PRPF40A 55660
## 1828 PRPF4B 8899
## 1829 PRPF6 24148
## 1830 PRR14 78994
## 1831 PRR14L 253143
## 1832 PRRC2C 23215
## 1833 PRRG4 79056
## 1834 PRUNE1 58497
## 1835 PSAP 5660
## 1836 PSENEN 55851
## 1837 PSMA7 5688
## 1838 PSMB1 5689
## 1839 PSMB10 5699
## 1840 PSMB3 5691
## 1841 PSMB4 5692
## 1842 PSMB6 5694
## 1843 PSMC3 5702
## 1844 PSMC5 5705
## 1845 PSMD13 5719
## 1846 PSMD4 5710
## 1847 PSMD8 5714
## 1848 PSMD9 5715
## 1849 PSME3 10197
## 1850 PSME4 23198
## 1851 PSMF1 9491
## 1852 PSMG3 84262
## 1853 PSTPIP1 9051
## 1854 PSTPIP2 9050
## 1855 PTAFR 5724
## 1856 PTAR1 375743
## 1857 PTBP1 5725
## 1858 PTBP2 58155
## 1859 PTBP3 9991
## 1860 PTGES2 80142
## 1861 PTGS1 5742
## 1862 PTMA 5757
## 1863 PTOV1 53635
## 1864 PTP4A1 7803
## 1865 PTPA 5524
## 1866 PTPN11 5781
## 1867 PTPN12 5782
## 1868 PTPN18 26469
## 1869 PTPN22 26191
## 1870 PTPN6 5777
## 1871 PTPRA 5786
## 1872 PTPRCAP 5790
## 1873 PTPRE 5791
## 1874 PTX3 5806
## 1875 PUF60 22827
## 1876 PUM1 9698
## 1877 PUM2 23369
## 1878 PURB 5814
## 1879 PXK 54899
## 1880 PXN 5829
## 1881 PXYLP1 92370
## 1882 PYCARD 29108
## 1883 PYGB 5834
## 1884 PYM1 84305
## 1885 QARS1 5859
## 1886 QKI 9444
## 1887 QSOX1 5768
## 1888 R3HDM2 22864
## 1889 R3HDM4 91300
## 1890 RAB11A 8766
## 1891 RAB11B 9230
## 1892 RAB11FIP1 80223
## 1893 RAB11FIP4 84440
## 1894 RAB14 51552
## 1895 RAB1A 5861
## 1896 RAB1B 81876
## 1897 RAB21 23011
## 1898 RAB31 11031
## 1899 RAB33B 83452
## 1900 RAB34 83871
## 1901 RAB3GAP2 25782
## 1902 RAB4B 53916
## 1903 RAB5C 5878
## 1904 RAB6A 5870
## 1905 RAB8B 51762
## 1906 RABAC1 10567
## 1907 RABEP1 9135
## 1908 RABL6 55684
## 1909 RACK1 10399
## 1910 RAD21 5885
## 1911 RAD23A 5886
## 1912 RAD23B 5887
## 1913 RAF1 5894
## 1914 RALGAPA2 57186
## 1915 RALGAPB 57148
## 1916 RALY 22913
## 1917 RANBP2 5903
## 1918 RANBP3 8498
## 1919 RANBP9 10048
## 1920 RANGAP1 5905
## 1921 RANGRF 29098
## 1922 RAP2C 57826
## 1923 RAPGEF2 9693
## 1924 RAPGEF6 51735
## 1925 RARA 5914
## 1926 RASA1 5921
## 1927 RASA2 5922
## 1928 RASA4 10156
## 1929 RASA4B 100271927
## 1930 RASAL3 64926
## 1931 RASGEF1A 221002
## 1932 RASGRP2 10235
## 1933 RASGRP4 115727
## 1934 RASSF1 11186
## 1935 RASSF2 9770
## 1936 RASSF4 83937
## 1937 RASSF7 8045
## 1938 RAVER1 125950
## 1939 RB1 5925
## 1940 RB1CC1 9821
## 1941 RBBP4 5928
## 1942 RBBP5 5929
## 1943 RBBP6 5930
## 1944 RBIS 401466
## 1945 RBL2 5934
## 1946 RBM10 8241
## 1947 RBM12 10137
## 1948 RBM15B 29890
## 1949 RBM25 58517
## 1950 RBM27 54439
## 1951 RBM3 5935
## 1952 RBM33 155435
## 1953 RBM4 5936
## 1954 RBM42 79171
## 1955 RBMS1 5937
## 1956 RC3H1 149041
## 1957 RC3H2 54542
## 1958 RCBTB1 55213
## 1959 RCHY1 25898
## 1960 RCN3 57333
## 1961 RCOR1 23186
## 1962 RCOR3 55758
## 1963 RECQL 5965
## 1964 REEP3 221035
## 1965 REEP5 7905
## 1966 REL 5966
## 1967 RELB 5971
## 1968 RELCH 57614
## 1969 RELT 84957
## 1970 RENBP 5973
## 1971 REPIN1 29803
## 1972 RER1 11079
## 1973 RESF1 55196
## 1974 REST 5978
## 1975 RETREG3 162427
## 1976 REV3L 5980
## 1977 RFFL 117584
## 1978 RFNG 5986
## 1979 RFTN1 23180
## 1980 RFX5 5993
## 1981 RFXANK 8625
## 1982 RGS14 10636
## 1983 RGS18 64407
## 1984 RGS19 10287
## 1985 RGS3 5998
## 1986 RHBDD2 57414
## 1987 RHOC 389
## 1988 RHOF 54509
## 1989 RHOG 391
## 1990 RHOT1 55288
## 1991 RHOT2 89941
## 1992 RIC1 57589
## 1993 RIC8A 60626
## 1994 RICTOR 253260
## 1995 RIF1 55183
## 1996 RING1 6015
## 1997 RIOK3 8780
## 1998 RIPK3 11035
## 1999 RIPOR1 79567
## 2000 RIPOR2 9750
## 2001 RLF 6018
## 2002 RMND5A 64795
## 2003 RNASE1 6035
## 2004 RNASE2 6036
## 2005 RNASE3 6037
## 2006 RNASEK 440400
## 2007 RNF11 26994
## 2008 RNF111 54778
## 2009 RNF114 55905
## 2010 RNF145 153830
## 2011 RNF167 26001
## 2012 RNF169 254225
## 2013 RNF181 51255
## 2014 RNF187 149603
## 2015 RNF19A 25897
## 2016 RNF213 57674
## 2017 RNF220 55182
## 2018 RNF24 11237
## 2019 RNF31 55072
## 2020 RNF38 152006
## 2021 RNF40 9810
## 2022 RNF6 6049
## 2023 RNFT1 51136
## 2024 RNH1 6050
## 2025 RNPEPL1 57140
## 2026 RNPS1 10921
## 2027 RO60 6738
## 2028 ROCK1 6093
## 2029 ROCK2 9475
## 2030 ROGDI 79641
## 2031 RP2 6102
## 2032 RPAP2 79871
## 2033 RPH3A 22895
## 2034 RPL10 6134
## 2035 RPL10A 4736
## 2036 RPL11 6135
## 2037 RPL12 6136
## 2038 RPL13 6137
## 2039 RPL13A 23521
## 2040 RPL14 9045
## 2041 RPL15 6138
## 2042 RPL17 6139
## 2043 RPL18 6141
## 2044 RPL18A 6142
## 2045 RPL19 6143
## 2046 RPL21 6144
## 2047 RPL22 6146
## 2048 RPL23 9349
## 2049 RPL23A 6147
## 2050 RPL24 6152
## 2051 RPL26 6154
## 2052 RPL27 6155
## 2053 RPL27A 6157
## 2054 RPL28 6158
## 2055 RPL29 6159
## 2056 RPL3 6122
## 2057 RPL30 6156
## 2058 RPL31 6160
## 2059 RPL32 6161
## 2060 RPL34 6164
## 2061 RPL35 11224
## 2062 RPL35A 6165
## 2063 RPL36 25873
## 2064 RPL36A 6173
## 2065 RPL36AL 6166
## 2066 RPL37 6167
## 2067 RPL37A 6168
## 2068 RPL38 6169
## 2069 RPL39 6170
## 2070 RPL4 6124
## 2071 RPL41 6171
## 2072 RPL5 6125
## 2073 RPL6 6128
## 2074 RPL7 6129
## 2075 RPL7A 6130
## 2076 RPL8 6132
## 2077 RPL9 6133
## 2078 RPLP0 6175
## 2079 RPLP1 6176
## 2080 RPLP2 6181
## 2081 RPN1 6184
## 2082 RPRD2 23248
## 2083 RPS10 6204
## 2084 RPS11 6205
## 2085 RPS12 6206
## 2086 RPS13 6207
## 2087 RPS14 6208
## 2088 RPS15 6209
## 2089 RPS15A 6210
## 2090 RPS16 6217
## 2091 RPS17 6218
## 2092 RPS18 6222
## 2093 RPS19 6223
## 2094 RPS19BP1 91582
## 2095 RPS2 6187
## 2096 RPS20 6224
## 2097 RPS21 6227
## 2098 RPS23 6228
## 2099 RPS24 6229
## 2100 RPS25 6230
## 2101 RPS26 6231
## 2102 RPS27 6232
## 2103 RPS27A 6233
## 2104 RPS28 6234
## 2105 RPS29 6235
## 2106 RPS3 6188
## 2107 RPS3A 6189
## 2108 RPS4X 6191
## 2109 RPS5 6193
## 2110 RPS6 6194
## 2111 RPS6KA1 6195
## 2112 RPS6KA4 8986
## 2113 RPS6KB2 6199
## 2114 RPS7 6201
## 2115 RPS8 6202
## 2116 RPS9 6203
## 2117 RPSA 3921
## 2118 RPSAP58 NA
## 2119 RRAGD 58528
## 2120 RRAS 6237
## 2121 RRM2 6241
## 2122 RRP12 23223
## 2123 RRP7A 27341
## 2124 RSBN1 54665
## 2125 RSBN1L 222194
## 2126 RSF1 51773
## 2127 RSL1D1 26156
## 2128 RSU1 6251
## 2129 RTF1 23168
## 2130 RTL8C 8933
## 2131 RTRAF 51637
## 2132 RUBCN 9711
## 2133 RUFY1 80230
## 2134 RUNX2 860
## 2135 RUVBL2 10856
## 2136 RWDD1 51389
## 2137 RXRA 6256
## 2138 S100A10 6281
## 2139 S100A6 6277
## 2140 S1PR4 8698
## 2141 SACM1L 22908
## 2142 SAMD8 142891
## 2143 SAMD9 54809
## 2144 SAMD9L 219285
## 2145 SAP25 100316904
## 2146 SAP30 8819
## 2147 SAP30BP 29115
## 2148 SARNP 84324
## 2149 SARS1 6301
## 2150 SART1 9092
## 2151 SASH3 54440
## 2152 SAT2 112483
## 2153 SATB1 6304
## 2154 SBF1 6305
## 2155 SBF2 81846
## 2156 SBNO1 55206
## 2157 SCAF11 9169
## 2158 SCAF8 22828
## 2159 SCAMP2 10066
## 2160 SCAP 22937
## 2161 SCARB2 950
## 2162 SCP2 6342
## 2163 SCRN2 90507
## 2164 SCYL1 57410
## 2165 SCYL2 55681
## 2166 SDE2 163859
## 2167 SDF4 51150
## 2168 SDR39U1 56948
## 2169 SEC13 6396
## 2170 SEC23A 10484
## 2171 SEC23B 10483
## 2172 SEC24A 10802
## 2173 SEC24B 10427
## 2174 SEC24D 9871
## 2175 SEC31A 22872
## 2176 SEC63 11231
## 2177 SECISBP2L 9728
## 2178 SECTM1 6398
## 2179 SEL1L 6400
## 2180 SEL1L3 23231
## 2181 SELENOH 280636
## 2182 SELENON 57190
## 2183 SELENOO 83642
## 2184 SELENOW 6415
## 2185 SELL 6402
## 2186 SEM1 7979
## 2187 SEMA4D 10507
## 2188 SENP2 59343
## 2189 SENP7 57337
## 2190 SEPTIN1 1731
## 2191 SEPTIN2 4735
## 2192 SEPTIN7 989
## 2193 SEPTIN9 10801
## 2194 SERF2 10169
## 2195 SERINC1 57515
## 2196 SERINC3 10955
## 2197 SERPINB6 5269
## 2198 SERTAD3 29946
## 2199 SESTD1 91404
## 2200 SETD2 29072
## 2201 SETD5 55209
## 2202 SETX 23064
## 2203 SF3A1 10291
## 2204 SF3A2 8175
## 2205 SF3B4 10262
## 2206 SF3B5 83443
## 2207 SGSH 6448
## 2208 SGSM2 9905
## 2209 SGSM3 27352
## 2210 SGTA 6449
## 2211 SH2B1 25970
## 2212 SH2D3C 10044
## 2213 SH3BGRL2 83699
## 2214 SH3BGRL3 83442
## 2215 SH3BP1 23616
## 2216 SH3BP2 6452
## 2217 SH3BP5L 80851
## 2218 SH3GL1 6455
## 2219 SH3GLB2 56904
## 2220 SH3TC1 54436
## 2221 SHARPIN 81858
## 2222 SHOC2 8036
## 2223 SIDT2 51092
## 2224 SIGIRR 59307
## 2225 SIGLEC10 89790
## 2226 SIGLEC7 27036
## 2227 SIGLEC9 27180
## 2228 SIK3 23387
## 2229 SIKE1 80143
## 2230 SIL1 64374
## 2231 SIN3B 23309
## 2232 SIPA1 6494
## 2233 SIPA1L1 26037
## 2234 SIPA1L2 57568
## 2235 SIRT1 23411
## 2236 SIRT2 22933
## 2237 SIRT5 23408
## 2238 SIRT6 51548
## 2239 SIRT7 51547
## 2240 SKAP1 8631
## 2241 SKIL 6498
## 2242 SKP1 6500
## 2243 SLA2 84174
## 2244 SLAIN2 57606
## 2245 SLBP 7884
## 2246 SLC12A6 9990
## 2247 SLC12A9 56996
## 2248 SLC15A3 51296
## 2249 SLC15A4 121260
## 2250 SLC16A3 9123
## 2251 SLC19A1 6573
## 2252 SLC22A15 55356
## 2253 SLC25A1 6576
## 2254 SLC25A11 8402
## 2255 SLC25A28 81894
## 2256 SLC25A29 123096
## 2257 SLC25A3 5250
## 2258 SLC25A6 293
## 2259 SLC26A8 116369
## 2260 SLC27A1 376497
## 2261 SLC29A1 2030
## 2262 SLC2A4RG 56731
## 2263 SLC2A5 6518
## 2264 SLC2A6 11182
## 2265 SLC30A1 7779
## 2266 SLC35A1 10559
## 2267 SLC35A4 113829
## 2268 SLC35F5 80255
## 2269 SLC37A2 219855
## 2270 SLC38A1 81539
## 2271 SLC38A10 124565
## 2272 SLC38A2 54407
## 2273 SLC39A1 27173
## 2274 SLC39A13 91252
## 2275 SLC39A9 55334
## 2276 SLC43A2 124935
## 2277 SLC44A1 23446
## 2278 SLC66A2 80148
## 2279 SLC6A6 6533
## 2280 SLC7A7 9056
## 2281 SLC8B1 80024
## 2282 SLC9A3R1 9368
## 2283 SLC9A8 23315
## 2284 SLCO4C1 353189
## 2285 SLFN11 91607
## 2286 SLFN13 146857
## 2287 SLFN5 162394
## 2288 SLTM 79811
## 2289 SLX1A 548593
## 2290 SMAD2 4087
## 2291 SMAD4 4089
## 2292 SMARCA5 8467
## 2293 SMARCC2 6601
## 2294 SMARCD2 6603
## 2295 SMC1A 8243
## 2296 SMC3 9126
## 2297 SMC4 10051
## 2298 SMC5 23137
## 2299 SMCHD1 23347
## 2300 SMCO4 56935
## 2301 SMCR8 140775
## 2302 SMDT1 91689
## 2303 SMG1 23049
## 2304 SMG7 9887
## 2305 SMIM12 113444
## 2306 SMIM29 221491
## 2307 SMIM3 85027
## 2308 SMURF2 64750
## 2309 SND1 27044
## 2310 SNF8 11267
## 2311 SNN 8303
## 2312 SNRK 54861
## 2313 SNRNP200 23020
## 2314 SNRNP35 11066
## 2315 SNRNP70 6625
## 2316 SNRPA 6626
## 2317 SNRPB 6628
## 2318 SNRPD2 6633
## 2319 SNRPD3 6634
## 2320 SNRPN 6638
## 2321 SNTB1 6641
## 2322 SNTB2 6645
## 2323 SNU13 4809
## 2324 SNX1 6642
## 2325 SNX17 9784
## 2326 SNX19 399979
## 2327 SNX27 81609
## 2328 SOCS5 9655
## 2329 SOD1 6647
## 2330 SON 6651
## 2331 SOS1 6654
## 2332 SOS2 6655
## 2333 SP1 6667
## 2334 SP100 6672
## 2335 SP110 3431
## 2336 SP140 11262
## 2337 SP3 6670
## 2338 SPAG7 9552
## 2339 SPAG9 9043
## 2340 SPARC 6678
## 2341 SPCS1 28972
## 2342 SPCS2 9789
## 2343 SPCS3 60559
## 2344 SPEN 23013
## 2345 SPG11 80208
## 2346 SPG7 6687
## 2347 SPI1 6688
## 2348 SPINT2 10653
## 2349 SPNS1 83985
## 2350 SPOCK2 9806
## 2351 SPOPL 339745
## 2352 SPOUT1 51490
## 2353 SPRYD3 84926
## 2354 SPSB3 90864
## 2355 SPTBN1 6711
## 2356 SPTLC1 10558
## 2357 SPTLC2 9517
## 2358 SPTY2D1 144108
## 2359 SRBD1 55133
## 2360 SREBF1 6720
## 2361 SREBF2 6721
## 2362 SRF 6722
## 2363 SRGAP2 23380
## 2364 SRGAP2B 647135
## 2365 SRGAP2C 653464
## 2366 SRI 6717
## 2367 SRP54 6729
## 2368 SRP72 6731
## 2369 SRPK2 6733
## 2370 SRPRA 6734
## 2371 SRRT 51593
## 2372 SRSF4 6429
## 2373 SRSF9 8683
## 2374 SSH1 54434
## 2375 SSH2 85464
## 2376 SSNA1 8636
## 2377 SSR1 6745
## 2378 SSR2 6746
## 2379 ST13 6767
## 2380 ST14 6768
## 2381 ST3GAL1 6482
## 2382 ST6GAL1 6480
## 2383 ST6GALNAC6 30815
## 2384 STAB1 23166
## 2385 STAG1 10274
## 2386 STAG2 10735
## 2387 STAM2 10254
## 2388 STARD3 10948
## 2389 STARD7 56910
## 2390 STAT1 6772
## 2391 STAT2 6773
## 2392 STAT3 6774
## 2393 STAT5A 6776
## 2394 STAU1 6780
## 2395 STBD1 8987
## 2396 STEAP4 79689
## 2397 STIM1 6786
## 2398 STING1 340061
## 2399 STK10 6793
## 2400 STK11 6794
## 2401 STK11IP 114790
## 2402 STK17B 9262
## 2403 STK24 8428
## 2404 STK25 10494
## 2405 STK26 51765
## 2406 STK35 140901
## 2407 STK38 11329
## 2408 STK4 6789
## 2409 STK40 83931
## 2410 STMN1 3925
## 2411 STMN3 50861
## 2412 STRN 6801
## 2413 STRN4 29888
## 2414 STT3A 3703
## 2415 STT3B 201595
## 2416 STUB1 10273
## 2417 STX10 8677
## 2418 STX16 8675
## 2419 STX17 55014
## 2420 STX4 6810
## 2421 STX5 6811
## 2422 STX8 9482
## 2423 STXBP2 6813
## 2424 STXBP3 6814
## 2425 STXBP5 134957
## 2426 STYXL1 51657
## 2427 SUDS3 64426
## 2428 SUGP1 57794
## 2429 SUGP2 10147
## 2430 SULT1A3 6818
## 2431 SUMF1 285362
## 2432 SUMF1 100130207
## 2433 SUMF2 25870
## 2434 SUMO3 6612
## 2435 SUN2 25777
## 2436 SUPT16H 11198
## 2437 SUPT20H 55578
## 2438 SUPT5H 6829
## 2439 SURF1 6834
## 2440 SURF4 6836
## 2441 SUZ12 23512
## 2442 SVIL 6840
## 2443 SYMPK 8189
## 2444 SYNE1 23345
## 2445 SYNGR2 9144
## 2446 SYNJ1 8867
## 2447 SYNRG 11276
## 2448 SYTL1 84958
## 2449 SZRD1 26099
## 2450 TAB1 10454
## 2451 TAB2 23118
## 2452 TAB3 257397
## 2453 TACC1 6867
## 2454 TACC3 10460
## 2455 TADA3 10474
## 2456 TAF1 6872
## 2457 TAF10 6881
## 2458 TAF15 8148
## 2459 TAF8 129685
## 2460 TAGAP 117289
## 2461 TAGLN 6876
## 2462 TALDO1 6888
## 2463 TANK 10010
## 2464 TAOK1 57551
## 2465 TAOK3 51347
## 2466 TAP1 6890
## 2467 TAP2 6891
## 2468 TAPBP 6892
## 2469 TAPBPL 55080
## 2470 TARDBP 23435
## 2471 TARS1 6897
## 2472 TATDN2 9797
## 2473 TAX1BP3 30851
## 2474 TAZ 6901
## 2475 TBC1D1 23216
## 2476 TBC1D10A 83874
## 2477 TBC1D10B 26000
## 2478 TBC1D10C 374403
## 2479 TBC1D20 128637
## 2480 TBC1D22A 25771
## 2481 TBC1D23 55773
## 2482 TBC1D5 9779
## 2483 TBCA 6902
## 2484 TBCB 1155
## 2485 TBCD 6904
## 2486 TBK1 29110
## 2487 TCEA1 6917
## 2488 TCF20 6942
## 2489 TCF25 22980
## 2490 TCF7 6932
## 2491 TCIRG1 10312
## 2492 TCN1 6947
## 2493 TCOF1 6949
## 2494 TCP11L2 255394
## 2495 TDRD7 23424
## 2496 TECPR1 25851
## 2497 TECR 9524
## 2498 TENT5A 55603
## 2499 TENT5C 54855
## 2500 TEPSIN 146705
## 2501 TES 26136
## 2502 TESC 54997
## 2503 TESPA1 9840
## 2504 TET3 200424
## 2505 TEX2 55852
## 2506 TEX264 51368
## 2507 TFDP1 7027
## 2508 TFEB 7942
## 2509 TFEC 22797
## 2510 TGFB1 7040
## 2511 TGFBI 7045
## 2512 THAP11 57215
## 2513 THEMIS2 9473
## 2514 THOC5 8563
## 2515 THOC6 79228
## 2516 THRAP3 9967
## 2517 THYN1 29087
## 2518 TIA1 7072
## 2519 TIAF1 9220
## 2520 TIMM13 26517
## 2521 TIMM17B 10245
## 2522 TIMM8B 26521
## 2523 TIMP1 7076
## 2524 TINF2 26277
## 2525 TKT 7086
## 2526 TLE4 7091
## 2527 TLE5 166
## 2528 TLK1 9874
## 2529 TLK2 11011
## 2530 TLR10 81793
## 2531 TLR2 7097
## 2532 TM9SF3 56889
## 2533 TMC6 11322
## 2534 TMC8 147138
## 2535 TMCC3 57458
## 2536 TMED2 10959
## 2537 TMED3 23423
## 2538 TMED5 50999
## 2539 TMED7 51014
## 2540 TMED8 283578
## 2541 TMEM101 84336
## 2542 TMEM109 79073
## 2543 TMEM115 11070
## 2544 TMEM120A 83862
## 2545 TMEM123 114908
## 2546 TMEM129 92305
## 2547 TMEM141 85014
## 2548 TMEM154 201799
## 2549 TMEM170B 100113407
## 2550 TMEM179B 374395
## 2551 TMEM203 94107
## 2552 TMEM205 374882
## 2553 TMEM208 29100
## 2554 TMEM219 124446
## 2555 TMEM222 84065
## 2556 TMEM250 90120
## 2557 TMEM256 254863
## 2558 TMEM259 91304
## 2559 TMEM50A 23585
## 2560 TMF1 7110
## 2561 TMOD2 29767
## 2562 TMOD3 29766
## 2563 TMOD3 112268148
## 2564 TMPO 7112
## 2565 TMSB10 9168
## 2566 TMX1 81542
## 2567 TMX3 54495
## 2568 TMX4 56255
## 2569 TNFAIP6 7130
## 2570 TNFAIP8L2 79626
## 2571 TNFRSF10C 8794
## 2572 TNFRSF14 8764
## 2573 TNFRSF1B 7133
## 2574 TNFRSF8 943
## 2575 TNFSF12 8742
## 2576 TNFSF13 8741
## 2577 TNFSF14 8740
## 2578 TNFSF8 944
## 2579 TNIP2 79155
## 2580 TNK2 10188
## 2581 TNKS2 80351
## 2582 TNNI2 7136
## 2583 TNPO1 3842
## 2584 TNPO3 23534
## 2585 TNRC6B 23112
## 2586 TOLLIP 54472
## 2587 TOM1 10043
## 2588 TOMM20 9804
## 2589 TOMM22 56993
## 2590 TOMM6 100188893
## 2591 TOMM7 54543
## 2592 TOP1 7150
## 2593 TOP2A 7153
## 2594 TOPBP1 11073
## 2595 TOPORS 10210
## 2596 TOR1AIP2 163590
## 2597 TOR1B 27348
## 2598 TOR2A 27433
## 2599 TOR4A 54863
## 2600 TOX4 9878
## 2601 TP53BP2 7159
## 2602 TP53I11 9537
## 2603 TP53I13 90313
## 2604 TP53INP1 94241
## 2605 TPCN1 53373
## 2606 TPI1 7167
## 2607 TPP1 1200
## 2608 TPP2 7174
## 2609 TPPP3 51673
## 2610 TPR 7175
## 2611 TPST1 8460
## 2612 TPT1 7178
## 2613 TRABD 80305
## 2614 TRADD 8717
## 2615 TRAF1 7185
## 2616 TRAF3IP3 80342
## 2617 TRAF7 84231
## 2618 TRAFD1 10906
## 2619 TRAK2 66008
## 2620 TRAM1 23471
## 2621 TRAM2 9697
## 2622 TRANK1 9881
## 2623 TRAPPC1 58485
## 2624 TRAPPC10 7109
## 2625 TRAPPC11 60684
## 2626 TRAPPC12 51112
## 2627 TRAPPC2L 51693
## 2628 TRAPPC4 51399
## 2629 TRAPPC5 126003
## 2630 TRAPPC8 22878
## 2631 TREX1 11277
## 2632 TRIM22 10346
## 2633 TRIM25 7706
## 2634 TRIM26 7726
## 2635 TRIM28 10155
## 2636 TRIM33 51592
## 2637 TRIM38 10475
## 2638 TRIM5 85363
## 2639 TRIM56 81844
## 2640 TRIM58 25893
## 2641 TRIM8 81603
## 2642 TRIP12 9320
## 2643 TRIR 79002
## 2644 TRMT1 55621
## 2645 TRMT112 51504
## 2646 TRMT2A 27037
## 2647 TRPM6 140803
## 2648 TRPM7 54822
## 2649 TRPV2 51393
## 2650 TSC2 7249
## 2651 TSC22D1 8848
## 2652 TSC22D4 81628
## 2653 TSEN34 79042
## 2654 TSPAN17 26262
## 2655 TSPAN2 10100
## 2656 TSPAN33 340348
## 2657 TSPO 706
## 2658 TSR3 115939
## 2659 TSSC4 10078
## 2660 TTC17 55761
## 2661 TTC37 9652
## 2662 TTC9 23508
## 2663 TTN 7273
## 2664 TTPAL 79183
## 2665 TTYH3 80727
## 2666 TUBA1A 7846
## 2667 TUBB1 81027
## 2668 TUBB4B 10383
## 2669 TUBGCP2 10844
## 2670 TUBGCP6 85378
## 2671 TUFM 7284
## 2672 TUT7 79670
## 2673 TWF1 5756
## 2674 TWF2 11344
## 2675 TXN2 25828
## 2676 TXNDC11 51061
## 2677 TXNDC5 81567
## 2678 TXNIP 10628
## 2679 TXNL4A 10907
## 2680 TYK2 7297
## 2681 TYMP 1890
## 2682 TYMS 7298
## 2683 TYROBP 7305
## 2684 U2SURP 23350
## 2685 UAP1 6675
## 2686 UBA1 7317
## 2687 UBA52 7311
## 2688 UBAC2 337867
## 2689 UBALD2 283991
## 2690 UBAP2L 9898
## 2691 UBC 7316
## 2692 UBE2G1 7326
## 2693 UBE2J2 118424
## 2694 UBE2K 3093
## 2695 UBE2M 9040
## 2696 UBE3B 89910
## 2697 UBE3C 9690
## 2698 UBE4A 9354
## 2699 UBE4B 10277
## 2700 UBL5 59286
## 2701 UBL7 84993
## 2702 UBN1 29855
## 2703 UBQLN1 29979
## 2704 UBR1 197131
## 2705 UBR2 23304
## 2706 UBR3 130507
## 2707 UBR4 23352
## 2708 UBR5 51366
## 2709 UBTF 7343
## 2710 UBXN1 51035
## 2711 UBXN11 91544
## 2712 UBXN4 23190
## 2713 UBXN6 80700
## 2714 UBXN7 26043
## 2715 UCP2 7351
## 2716 UGCG 7357
## 2717 UGGT1 56886
## 2718 UHMK1 127933
## 2719 UHRF1BP1L 23074
## 2720 UHRF2 115426
## 2721 UNC119 9094
## 2722 UNC13D 201294
## 2723 UNC93B1 81622
## 2724 UPF2 26019
## 2725 UPK3BL1 100134938
## 2726 UQCR10 29796
## 2727 UQCR11 10975
## 2728 UQCRB 7381
## 2729 UQCRC1 7384
## 2730 UQCRFS1 7386
## 2731 URM1 81605
## 2732 USF2 7392
## 2733 USF3 205717
## 2734 USO1 8615
## 2735 USP1 7398
## 2736 USP15 9958
## 2737 USP16 10600
## 2738 USP20 10868
## 2739 USP24 23358
## 2740 USP25 29761
## 2741 USP3 9960
## 2742 USP32 84669
## 2743 USP33 23032
## 2744 USP34 9736
## 2745 USP38 84640
## 2746 USP4 7375
## 2747 USP4 107986084
## 2748 USP47 55031
## 2749 USP48 84196
## 2750 USP5 8078
## 2751 USP7 7874
## 2752 USP8 9101
## 2753 USP9X 8239
## 2754 UTRN 7402
## 2755 UXT 8409
## 2756 VAMP1 6843
## 2757 VAMP2 6844
## 2758 VAMP7 6845
## 2759 VAMP8 8673
## 2760 VASH1 22846
## 2761 VASP 7408
## 2762 VAV3 10451
## 2763 VCL 7414
## 2764 VCPIP1 80124
## 2765 VDAC3 7419
## 2766 VEGFA 7422
## 2767 VEGFB 7423
## 2768 VEZF1 7716
## 2769 VIM 7431
## 2770 VIRMA 25962
## 2771 VKORC1 79001
## 2772 VNN3 55350
## 2773 VOPP1 81552
## 2774 VPS13A 23230
## 2775 VPS13B 157680
## 2776 VPS13C 54832
## 2777 VPS13D 55187
## 2778 VPS18 57617
## 2779 VPS25 84313
## 2780 VPS26C 10311
## 2781 VPS28 51160
## 2782 VPS39 23339
## 2783 VPS4A 27183
## 2784 VPS51 738
## 2785 VPS54 51542
## 2786 VPS9D1 9605
## 2787 VRK3 51231
## 2788 VSIR 64115
## 2789 VWA8 23078
## 2790 WAC 51322
## 2791 WAPL 23063
## 2792 WAS 7454
## 2793 WASHC1 100287171
## 2794 WASHC2A 387680
## 2795 WASHC2C 253725
## 2796 WASHC4 23325
## 2797 WBP1 23559
## 2798 WDFY1 57590
## 2799 WDFY3 23001
## 2800 WDR13 64743
## 2801 WDR26 80232
## 2802 WDR45 11152
## 2803 WDR46 9277
## 2804 WDR47 22911
## 2805 WDR48 57599
## 2806 WDR6 11180
## 2807 WDR74 54663
## 2808 WDR81 124997
## 2809 WDR82 80335
## 2810 WDR83OS 51398
## 2811 WIPF1 7456
## 2812 WIPF2 147179
## 2813 WLS 79971
## 2814 WNK1 65125
## 2815 WWC3 55841
## 2816 XAB2 56949
## 2817 XAF1 54739
## 2818 XBP1 7494
## 2819 XK 7504
## 2820 XPNPEP1 7511
## 2821 XPO1 7514
## 2822 XPO7 23039
## 2823 XPOT 11260
## 2824 XRCC1 7515
## 2825 XRCC5 7520
## 2826 XRN1 54464
## 2827 XRRA1 143570
## 2828 YBX1 4904
## 2829 YEATS2 55689
## 2830 YIF1B 90522
## 2831 YIPF3 25844
## 2832 YME1L1 10730
## 2833 YOD1 55432
## 2834 YPEL2 388403
## 2835 YTHDF3 253943
## 2836 YWHAG 7532
## 2837 YWHAH 7533
## 2838 YY1 7528
## 2839 ZAP70 7535
## 2840 ZBTB11 27107
## 2841 ZBTB16 7704
## 2842 ZBTB22 9278
## 2843 ZBTB34 403341
## 2844 ZBTB37 84614
## 2845 ZBTB38 253461
## 2846 ZBTB44 29068
## 2847 ZBTB48 3104
## 2848 ZBTB7A 51341
## 2849 ZC3H11A 9877
## 2850 ZC3H13 23091
## 2851 ZC3H15 55854
## 2852 ZC3H7A 29066
## 2853 ZC3HAV1 56829
## 2854 ZCCHC2 54877
## 2855 ZDHHC12 84885
## 2856 ZDHHC17 23390
## 2857 ZDHHC19 131540
## 2858 ZDHHC2 51201
## 2859 ZDHHC5 25921
## 2860 ZEB1 6935
## 2861 ZEB2 9839
## 2862 ZER1 10444
## 2863 ZFAND2B 130617
## 2864 ZFAND5 7763
## 2865 ZFC3H1 196441
## 2866 ZFP91 80829
## 2867 ZFR 51663
## 2868 ZFX 7543
## 2869 ZFYVE16 9765
## 2870 ZFYVE26 23503
## 2871 ZGPAT 84619
## 2872 ZKSCAN1 7586
## 2873 ZMAT5 55954
## 2874 ZMIZ2 83637
## 2875 ZMPSTE24 10269
## 2876 ZNF106 64397
## 2877 ZNF148 7707
## 2878 ZNF200 7752
## 2879 ZNF207 7756
## 2880 ZNF217 7764
## 2881 ZNF24 7572
## 2882 ZNF281 23528
## 2883 ZNF292 23036
## 2884 ZNF316 100131017
## 2885 ZNF32 7580
## 2886 ZNF333 84449
## 2887 ZNF33A 7581
## 2888 ZNF385A 25946
## 2889 ZNF445 353274
## 2890 ZNF467 168544
## 2891 ZNF493 284443
## 2892 ZNF518A 9849
## 2893 ZNF524 147807
## 2894 ZNF581 51545
## 2895 ZNF608 57507
## 2896 ZNF622 90441
## 2897 ZNF638 27332
## 2898 ZNF652 22834
## 2899 ZNF655 79027
## 2900 ZNF664 144348
## 2901 ZNF672 79894
## 2902 ZNF692 55657
## 2903 ZNF710 374655
## 2904 ZNF770 54989
## 2905 ZNF865 100507290
## 2906 ZNFX1 57169
## 2907 ZNHIT1 10467
## 2908 ZRANB1 54764
## 2909 ZRSR2 8233
## 2910 ZSCAN29 146050
## 2911 ZSWIM6 57688
## 2912 ZYX 7791
## 2913 ZZEF1 23140
## 2914 A1BG 1
## 2915 AAAS 8086
## 2916 AAMDC 28971
## 2917 AAR2 25980
## 2918 AARSD1 80755
## 2919 AASDHPPT 60496
## 2920 AASS 10157
## 2921 ABCA5 23461
## 2922 ABCB10 23456
## 2923 ABCB7 22
## 2924 ABCB8 11194
## 2925 ABCC2 1244
## 2926 ABCC6 368
## 2927 ABCD1 215
## 2928 ABCE1 6059
## 2929 ABHD10 55347
## 2930 ABHD11 83451
## 2931 ABHD12 26090
## 2932 ABHD14A 25864
## 2933 ABHD17B 51104
## 2934 ABHD18 80167
## 2935 ABHD8 79575
## 2936 ABI2 10152
## 2937 ABITRAM 54942
## 2938 ABL2 27
## 2939 ABRAXAS2 23172
## 2940 ABT1 29777
## 2941 ACAA2 10449
## 2942 ACACA 31
## 2943 ACAD9 28976
## 2944 ACADS 35
## 2945 ACBD4 79777
## 2946 ACBD5 91452
## 2947 ACBD7 414149
## 2948 ACD 65057
## 2949 ACO1 48
## 2950 ACOT11 26027
## 2951 ACOT8 10005
## 2952 ACP2 53
## 2953 ACSF2 80221
## 2954 ACSF3 197322
## 2955 ACTL6A 86
## 2956 ACTR5 79913
## 2957 ACTR8 93973
## 2958 ACVR1 90
## 2959 ACVR2A 92
## 2960 ACVRL1 94
## 2961 ACY1 95
## 2962 ADAP2 55803
## 2963 ADAT1 23536
## 2964 ADCK1 57143
## 2965 ADCK2 90956
## 2966 ADCK5 203054
## 2967 ADGRL1 22859
## 2968 ADRB2 154
## 2969 ADSS1 122622
## 2970 AEBP1 165
## 2971 AFAP1L2 84632
## 2972 AFF2 2334
## 2973 AGAP5 729092
## 2974 AGFG2 3268
## 2975 AGPAT5 55326
## 2976 AHSA1 10598
## 2977 AIFM3 150209
## 2978 AK1 203
## 2979 AK3 50808
## 2980 AK4 205
## 2981 AK5 26289
## 2982 AK9 221264
## 2983 AKAP7 9465
## 2984 ALDH18A1 5832
## 2985 ALDOC 230
## 2986 ALG10 84920
## 2987 ALG11 440138
## 2988 ALG12 79087
## 2989 ALG3 10195
## 2990 ALKBH2 121642
## 2991 ALKBH3 221120
## 2992 ALKBH4 54784
## 2993 ALKBH7 84266
## 2994 ALMS1 7840
## 2995 ALPK3 57538
## 2996 ALS2 57679
## 2997 ALS2CL 259173
## 2998 ALYREF 10189
## 2999 AMDHD1 144193
## 3000 AMDHD2 51005
## 3001 AMIGO2 347902
## 3002 AMIGO3 386724
## 3003 AMMECR1 9949
## 3004 AMMECR1L 83607
## 3005 ANAPC2 29882
## 3006 ANGEL2 90806
## 3007 ANKMY1 51281
## 3008 ANKMY2 57037
## 3009 ANKRA2 57763
## 3010 ANKRD16 54522
## 3011 ANKRD26 22852
## 3012 ANKRD27 84079
## 3013 ANKRD33B 651746
## 3014 ANKRD36B 57730
## 3015 ANKRD36C 400986
## 3016 ANKRD39 51239
## 3017 ANKRD40 91369
## 3018 ANKRD52 283373
## 3019 ANKRD54 129138
## 3020 ANKRD55 79722
## 3021 ANKRD6 22881
## 3022 ANKS3 124401
## 3023 ANKS6 203286
## 3024 ANO5 203859
## 3025 ANO5 102723370
## 3026 ANXA9 8416
## 3027 AP1S1 1174
## 3028 AP1S3 130340
## 3029 AP2A2 161
## 3030 AP3D1 8943
## 3031 AP3M1 26985
## 3032 AP4E1 23431
## 3033 AP4M1 9179
## 3034 APBA3 9546
## 3035 APEX2 27301
## 3036 APPL1 26060
## 3037 ARFIP2 23647
## 3038 ARG2 384
## 3039 ARHGAP11A 9824
## 3040 ARHGAP18 93663
## 3041 ARHGAP32 9743
## 3042 ARHGAP5 394
## 3043 ARHGAP6 395
## 3044 ARHGEF10L 55160
## 3045 ARHGEF19 128272
## 3046 ARHGEF5 7984
## 3047 ARID2 196528
## 3048 ARL14EP 120534
## 3049 ARL15 54622
## 3050 ARL16 339231
## 3051 ARL17B 51326
## 3052 ARL17B 100506084
## 3053 ARL17B 100996709
## 3054 ARL2 402
## 3055 ARL3 403
## 3056 ARMC5 79798
## 3057 ARMC6 93436
## 3058 ARMCX3 51566
## 3059 ARMH1 339541
## 3060 ARMT1 79624
## 3061 ARNTL2 56938
## 3062 ARV1 64801
## 3063 ASB1 51665
## 3064 ASB13 79754
## 3065 ASB3 51130
## 3066 ASB3 100302652
## 3067 ASB6 140459
## 3068 ASCC1 51008
## 3069 ASCC3 10973
## 3070 ASCL2 430
## 3071 ASGR1 432
## 3072 ASIC3 9311
## 3073 ASPM 259266
## 3074 ASPSCR1 79058
## 3075 ASTN2 23245
## 3076 ATAD1 84896
## 3077 ATAD3A 55210
## 3078 ATAD3B 83858
## 3079 ATAD5 79915
## 3080 ATE1 11101
## 3081 ATF1 466
## 3082 ATF5 22809
## 3083 ATG16L1 55054
## 3084 ATG4A 115201
## 3085 ATG4D 84971
## 3086 ATL1 51062
## 3087 ATP10D 57205
## 3088 ATP11C 286410
## 3089 ATP13A2 23400
## 3090 ATP6V0A2 23545
## 3091 ATP8B3 148229
## 3092 ATP9B 374868
## 3093 ATPAF2 91647
## 3094 ATR 545
## 3095 ATRIP 84126
## 3096 ATXN10 25814
## 3097 ATXN2 6311
## 3098 ATXN3 4287
## 3099 ATXN7L3B 552889
## 3100 AUH 549
## 3101 AURKA 6790
## 3102 AURKB 9212
## 3103 AXIN1 8312
## 3104 AZIN2 113451
## 3105 B3GALNT2 148789
## 3106 B3GLCT 145173
## 3107 B3GNTL1 146712
## 3108 B4GALNT2 124872
## 3109 B4GALT7 11285
## 3110 B4GAT1 11041
## 3111 B9D2 80776
## 3112 BAD 572
## 3113 BAG2 9532
## 3114 BAG3 9531
## 3115 BAG5 9529
## 3116 BAHD1 22893
## 3117 BAIAP2 10458
## 3118 BAMBI 25805
## 3119 BANP 54971
## 3120 BARD1 580
## 3121 BATF3 55509
## 3122 BBC3 27113
## 3123 BBOF1 80127
## 3124 BBS10 79738
## 3125 BBS12 166379
## 3126 BBS5 129880
## 3127 BBS7 55212
## 3128 BCAS4 55653
## 3129 BCAT2 587
## 3130 BCL11A 53335
## 3131 BCL2L13 23786
## 3132 BCL2L15 440603
## 3133 BCL2L2 599
## 3134 BCLAF3 256643
## 3135 BCOR 54880
## 3136 BCS1L 617
## 3137 BEND5 79656
## 3138 BEND7 222389
## 3139 BET1L 51272
## 3140 BEX2 84707
## 3141 BEX5 340542
## 3142 BFAR 51283
## 3143 BICDL1 92558
## 3144 BICRA 29998
## 3145 BIRC5 332
## 3146 BLM 641
## 3147 BLOC1S3 388552
## 3148 BLOC1S4 55330
## 3149 BMP1 649
## 3150 BMP6 654
## 3151 BMP8B 656
## 3152 BNIPL 149428
## 3153 BOD1 91272
## 3154 BOLA2B 552900
## 3155 BOLA2B 654483
## 3156 BOP1 23246
## 3157 BORA 79866
## 3158 BPHL 670
## 3159 BPNT2 54928
## 3160 BRAP 8315
## 3161 BRCA1 672
## 3162 BRCA2 675
## 3163 BRD1 23774
## 3164 BRD3OS 266655
## 3165 BRD9 65980
## 3166 BRF1 2972
## 3167 BRICD5 283870
## 3168 BRIP1 83990
## 3169 BTBD3 22903
## 3170 BTBD6 90135
## 3171 BTBD7 55727
## 3172 BTG3 10950
## 3173 BTLA 151888
## 3174 BTRC 8945
## 3175 BUB1B 701
## 3176 BUD13 84811
## 3177 C10orf143 387723
## 3178 C11orf1 64776
## 3179 C11orf49 79096
## 3180 C12orf4 57102
## 3181 C12orf45 121053
## 3182 C12orf73 728568
## 3183 C12orf76 400073
## 3184 C14orf28 122525
## 3185 C15orf61 145853
## 3186 C16orf74 404550
## 3187 C16orf86 388284
## 3188 C16orf87 388272
## 3189 C16orf91 283951
## 3190 C17orf80 55028
## 3191 C18orf21 83608
## 3192 C18orf54 162681
## 3193 C19orf47 126526
## 3194 C1orf109 54955
## 3195 C1orf112 55732
## 3196 C1orf116 79098
## 3197 C1orf159 54991
## 3198 C1orf198 84886
## 3199 C1orf35 79169
## 3200 C1orf50 79078
## 3201 C1orf54 79630
## 3202 C1QTNF6 114904
## 3203 C21orf58 54058
## 3204 C21orf62 56245
## 3205 C22orf34 348645
## 3206 C22orf39 128977
## 3207 C2orf49 79074
## 3208 C2orf69 205327
## 3209 C3orf14 57415
## 3210 C4orf46 201725
## 3211 C5 727
## 3212 C5orf22 55322
## 3213 C5orf24 134553
## 3214 C6orf120 387263
## 3215 C6orf136 221545
## 3216 C6orf226 441150
## 3217 C7orf26 79034
## 3218 C7orf31 136895
## 3219 C8orf33 65265
## 3220 C8orf58 541565
## 3221 C8orf82 414919
## 3222 C9orf139 NA
## 3223 C9orf40 55071
## 3224 C9orf64 84267
## 3225 CA11 770
## 3226 CA13 377677
## 3227 CA8 767
## 3228 CABLES2 81928
## 3229 CABP4 57010
## 3230 CACFD1 11094
## 3231 CACNA1I 8911
## 3232 CACNB1 782
## 3233 CACTIN 58509
## 3234 CACYBP 27101
## 3235 CALHM2 51063
## 3236 CALHM5 254228
## 3237 CAMLG 819
## 3238 CAMTA1 23261
## 3239 CAND1 55832
## 3240 CAPN10 11132
## 3241 CAPN15 6650
## 3242 CAPN7 23473
## 3243 CAPS 828
## 3244 CARD9 64170
## 3245 CARMIL1 55604
## 3246 CARNMT1 138199
## 3247 CASP6 839
## 3248 CASP7 840
## 3249 CASP8AP2 9994
## 3250 CASR 846
## 3251 CASTOR1 652968
## 3252 CATIP 375307
## 3253 CATSPER1 117144
## 3254 CATSPERG 57828
## 3255 CAV2 858
## 3256 CBFA2T2 9139
## 3257 CBFA2T3 863
## 3258 CBFB 865
## 3259 CBLL1 79872
## 3260 CBR3 874
## 3261 CBWD2 150472
## 3262 CBX5 23468
## 3263 CBX8 57332
## 3264 CBY1 25776
## 3265 CC2D1A 54862
## 3266 CC2D2B 387707
## 3267 CCDC106 29903
## 3268 CCDC117 150275
## 3269 CCDC124 115098
## 3270 CCDC127 133957
## 3271 CCDC130 81576
## 3272 CCDC134 79879
## 3273 CCDC137 339230
## 3274 CCDC138 165055
## 3275 CCDC142 84865
## 3276 CCDC15 80071
## 3277 CCDC153 283152
## 3278 CCDC18 343099
## 3279 CCDC189 90835
## 3280 CCDC28B 79140
## 3281 CCDC30 728621
## 3282 CCDC32 90416
## 3283 CCDC57 284001
## 3284 CCDC61 729440
## 3285 CCDC65 85478
## 3286 CCDC77 84318
## 3287 CCDC80 151887
## 3288 CCDC86 79080
## 3289 CCDC96 257236
## 3290 CCDC9B 388115
## 3291 CCL24 6369
## 3292 CCL3 6348
## 3293 CCNA2 890
## 3294 CCNB1 891
## 3295 CCNB1IP1 57820
## 3296 CCNB2 9133
## 3297 CCNE1 898
## 3298 CCNF 899
## 3299 CCNJ 54619
## 3300 CCNQ 92002
## 3301 CCNYL1 151195
## 3302 CCP110 9738
## 3303 CD160 11126
## 3304 CD1C 911
## 3305 CD2AP 23607
## 3306 CD40 958
## 3307 CD72 971
## 3308 CDC20 991
## 3309 CDC23 8697
## 3310 CDC25A 993
## 3311 CDC42BPA 8476
## 3312 CDC45 8318
## 3313 CDC6 990
## 3314 CDC7 8317
## 3315 CDCA2 157313
## 3316 CDCA5 113130
## 3317 CDCA7 83879
## 3318 CDCA8 55143
## 3319 CDH13 1012
## 3320 CDHR1 92211
## 3321 CDIN1 84529
## 3322 CDK1 983
## 3323 CDK2 1017
## 3324 CDK20 23552
## 3325 CDK3 1018
## 3326 CDK5 1020
## 3327 CDK5RAP1 51654
## 3328 CDK6 1021
## 3329 CDK7 1022
## 3330 CDKL1 8814
## 3331 CDKL5 6792
## 3332 CDKN1C 1028
## 3333 CDKN2AIP 55602
## 3334 CDKN3 1033
## 3335 CDPF1 150383
## 3336 CDR2 1039
## 3337 CDT1 81620
## 3338 CDYL 9425
## 3339 CDYL2 124359
## 3340 CELF3 11189
## 3341 CEMP1 752014
## 3342 CENPA 1058
## 3343 CENPBD1 92806
## 3344 CENPC 1060
## 3345 CENPE 1062
## 3346 CENPF 1063
## 3347 CENPJ 55835
## 3348 CENPK 64105
## 3349 CENPL 91687
## 3350 CENPM 79019
## 3351 CENPN 55839
## 3352 CENPO 79172
## 3353 CENPQ 55166
## 3354 CENPS 378708
## 3355 CENPU 79682
## 3356 CENPX 201254
## 3357 CEP104 9731
## 3358 CEP120 153241
## 3359 CEP128 145508
## 3360 CEP131 22994
## 3361 CEP135 9662
## 3362 CEP152 22995
## 3363 CEP162 22832
## 3364 CEP20 123811
## 3365 CEP295 85459
## 3366 CEP44 80817
## 3367 CEP55 55165
## 3368 CEP57 9702
## 3369 CEP57L1 285753
## 3370 CEP76 79959
## 3371 CEP83 51134
## 3372 CEP85 64793
## 3373 CERS6 253782
## 3374 CES2 8824
## 3375 CES4A 283848
## 3376 CFAP251 144406
## 3377 CFAP36 112942
## 3378 CFAP410 755
## 3379 CFDP1 10428
## 3380 CHAC2 494143
## 3381 CHAF1B 8208
## 3382 CHAMP1 283489
## 3383 CHCHD1 118487
## 3384 CHCHD10 400916
## 3385 CHCHD5 84269
## 3386 CHCHD6 84303
## 3387 CHD1L 9557
## 3388 CHD9 80205
## 3389 CHEK1 1111
## 3390 CHERP 10523
## 3391 CHID1 66005
## 3392 CHORDC1 26973
## 3393 CHRNA10 57053
## 3394 CHRNE 1145
## 3395 CHST14 113189
## 3396 CHST7 56548
## 3397 CIAO3 64428
## 3398 CILK1 22858
## 3399 CIP2A 57650
## 3400 CISD1 55847
## 3401 CIT 11113
## 3402 CKAP2 26586
## 3403 CKB 1152
## 3404 CLASP2 23122
## 3405 CLCC1 23155
## 3406 CLCF1 23529
## 3407 CLDN12 9069
## 3408 CLIP4 79745
## 3409 CLK2 1196
## 3410 CLOCK 9575
## 3411 CLPP 8192
## 3412 CLPTM1 1209
## 3413 CLSPN 63967
## 3414 CLTCL1 8218
## 3415 CLUAP1 23059
## 3416 CLUH 23277
## 3417 CMAS 55907
## 3418 CMC1 152100
## 3419 CMC2 56942
## 3420 CMC4 100272147
## 3421 CNOT3 4849
## 3422 CNOT9 9125
## 3423 CNPY4 245812
## 3424 CNTLN 54875
## 3425 COA1 55744
## 3426 COA4 51287
## 3427 COA6 388753
## 3428 COA7 65260
## 3429 COA8 84334
## 3430 COBLL1 22837
## 3431 COG6 57511
## 3432 COG8 84342
## 3433 COIL 8161
## 3434 COL8A2 1296
## 3435 COLEC12 81035
## 3436 COMMD4 54939
## 3437 COMTD1 118881
## 3438 COPS7B 64708
## 3439 COQ10A 93058
## 3440 COQ2 27235
## 3441 COQ4 51117
## 3442 COQ9 57017
## 3443 COX14 84987
## 3444 COX17 10063
## 3445 COX18 285521
## 3446 COX19 90639
## 3447 CPEB3 22849
## 3448 CPED1 79974
## 3449 CPLANE2 79363
## 3450 CPNE8 144402
## 3451 CPSF3 51692
## 3452 CPSF4 10898
## 3453 CPTP 80772
## 3454 CRACR2A 84766
## 3455 CRAMP1 57585
## 3456 CRCP 27297
## 3457 CREB3 10488
## 3458 CRELD1 78987
## 3459 CROCC 9696
## 3460 CRTC1 23373
## 3461 CRYGS 1427
## 3462 CRYL1 51084
## 3463 CRYM 1428
## 3464 CSE1L 1434
## 3465 CSF1 1435
## 3466 CSNK1G3 1456
## 3467 CSPP1 79848
## 3468 CSRNP2 81566
## 3469 CTCF 10664
## 3470 CTDSPL 10217
## 3471 CTDSPL2 51496
## 3472 CTNNAL1 8727
## 3473 CTNNBIP1 56998
## 3474 CTPS1 1503
## 3475 CTSF 8722
## 3476 CTU1 90353
## 3477 CTU2 348180
## 3478 CUL2 8453
## 3479 CUL4A 8451
## 3480 CUL5 8065
## 3481 CWC22 57703
## 3482 CXXC5 51523
## 3483 CYB5D1 124637
## 3484 CYP51A1 1595
## 3485 CYREN 78996
## 3486 CZIB 54987
## 3487 D2HGDH 728294
## 3488 DAAM1 23002
## 3489 DAB2 1601
## 3490 DAB2 112267931
## 3491 DAGLA 747
## 3492 DALRD3 55152
## 3493 DAPK3 1613
## 3494 DARS1 1615
## 3495 DARS2 55157
## 3496 DBF4 10926
## 3497 DBP 1628
## 3498 DBT 1629
## 3499 DCAF17 80067
## 3500 DCAF6 55827
## 3501 DCLRE1A 9937
## 3502 DCLRE1B 64858
## 3503 DCP1A 55802
## 3504 DCUN1D3 123879
## 3505 DDA1 79016
## 3506 DDB2 1643
## 3507 DDHD1 80821
## 3508 DDI2 84301
## 3509 DDT 1652
## 3510 DDT 100037417
## 3511 DDX18 8886
## 3512 DDX19B 11269
## 3513 DDX28 55794
## 3514 DDX51 317781
## 3515 DDX52 11056
## 3516 DDX54 79039
## 3517 DEAF1 10522
## 3518 DECR2 26063
## 3519 DELE1 9812
## 3520 DENND1A 57706
## 3521 DENND5B 160518
## 3522 DENND6B 414918
## 3523 DENR 8562
## 3524 DERA 51071
## 3525 DESI2 51029
## 3526 DEXI 28955
## 3527 DGKG 1608
## 3528 DHFR2 200895
## 3529 DHODH 1723
## 3530 DHRS1 115817
## 3531 DHRS11 79154
## 3532 DHRS3 9249
## 3533 DHRS7B 25979
## 3534 DHRSX 207063
## 3535 DHX29 54505
## 3536 DHX30 22907
## 3537 DHX33 56919
## 3538 DHX37 57647
## 3539 DHX38 9785
## 3540 DIABLO 56616
## 3541 DIMT1 27292
## 3542 DIPK1A 388650
## 3543 DIS3 22894
## 3544 DIS3L 115752
## 3545 DLAT 1737
## 3546 DLG1 1739
## 3547 DLGAP4 22839
## 3548 DLGAP5 9787
## 3549 DLST 1743
## 3550 DMAC1 90871
## 3551 DNA2 1763
## 3552 DNAAF4 161582
## 3553 DNAAF5 54919
## 3554 DNAH1 25981
## 3555 DNAJB4 11080
## 3556 DNAJC17 55192
## 3557 DNAJC18 202052
## 3558 DNAJC19 131118
## 3559 DNAJC27 51277
## 3560 DNAJC30 84277
## 3561 DNAJC9 23234
## 3562 DNAL1 83544
## 3563 DNAL4 10126
## 3564 DNLZ 728489
## 3565 DNM1L 10059
## 3566 DNM3 26052
## 3567 DNPH1 10591
## 3568 DOCK7 85440
## 3569 DOK4 55715
## 3570 DOLK 22845
## 3571 DONSON 29980
## 3572 DOP1A 23033
## 3573 DOP1B 9980
## 3574 DOT1L 84444
## 3575 DPH1 1801
## 3576 DPH2 1802
## 3577 DPH3P1 NA
## 3578 DPH5 51611
## 3579 DPM3 54344
## 3580 DPY19L1 23333
## 3581 DPY19L4 286148
## 3582 DRG2 1819
## 3583 DSCC1 79075
## 3584 DSN1 79980
## 3585 DSTN 11034
## 3586 DSTYK 25778
## 3587 DTL 51514
## 3588 DTNBP1 84062
## 3589 DTWD2 285605
## 3590 DTX1 1840
## 3591 DTX3 196403
## 3592 DUS2 54920
## 3593 DUS3L 56931
## 3594 DUSP12 11266
## 3595 DUSP13 51207
## 3596 DUSP18 150290
## 3597 DUSP23 54935
## 3598 DUSP7 1849
## 3599 DVL1 1855
## 3600 DVL2 1856
## 3601 DVL3 1857
## 3602 DYRK1B 9149
## 3603 E2F5 1875
## 3604 E2F6 1876
## 3605 E4F1 1877
## 3606 EBPL 84650
## 3607 ECHDC2 55268
## 3608 ECI1 1632
## 3609 ECI2 10455
## 3610 ECSIT 51295
## 3611 ECT2 1894
## 3612 EDC3 80153
## 3613 EDRF1 26098
## 3614 EEA1 8411
## 3615 EEF2KMT 196483
## 3616 EEFSEC 60678
## 3617 EEPD1 80820
## 3618 EFCAB11 90141
## 3619 EFCAB12 90288
## 3620 EFCAB7 84455
## 3621 EFEMP2 30008
## 3622 EFNA3 1944
## 3623 EFNA4 1945
## 3624 EFNB1 1947
## 3625 EGFL8 80864
## 3626 EHBP1 23301
## 3627 EHD4 30844
## 3628 EHMT2 10919
## 3629 EID2B 126272
## 3630 EIF2AK3 9451
## 3631 EIF2AK4 440275
## 3632 EIF5A2 56648
## 3633 ELAC1 55520
## 3634 ELK3 2004
## 3635 ELK4 2005
## 3636 ELMO3 79767
## 3637 ELOA 6924
## 3638 ELOVL3 83401
## 3639 ELOVL6 79071
## 3640 ELOVL7 79993
## 3641 ELP5 23587
## 3642 ELP6 54859
## 3643 EMC6 83460
## 3644 EMC8 10328
## 3645 EMD 2010
## 3646 EME1 146956
## 3647 EML6 400954
## 3648 EMSY 56946
## 3649 ENDOG 2021
## 3650 ENDOV 284131
## 3651 ENKD1 84080
## 3652 ENO3 2027
## 3653 ENPP4 22875
## 3654 ENTPD5 957
## 3655 ENTR1 10807
## 3656 EOGT 285203
## 3657 EOLA1 91966
## 3658 EOLA2 541578
## 3659 EPAS1 2034
## 3660 EPB41L5 57669
## 3661 EPDR1 54749
## 3662 EPHB1 2047
## 3663 EPHX2 2053
## 3664 EPS8L2 64787
## 3665 ERC1 23085
## 3666 ERCC2 2068
## 3667 ERCC3 2071
## 3668 ERCC4 2072
## 3669 ERCC6 2074
## 3670 ERCC6L 54821
## 3671 ERI2 112479
## 3672 ERI3 79033
## 3673 ERMAP 114625
## 3674 ERMARD 55780
## 3675 ERMP1 79956
## 3676 ERO1B 56605
## 3677 ESCO1 114799
## 3678 ESD 2098
## 3679 ESF1 51575
## 3680 ESPL1 9700
## 3681 ESS2 8220
## 3682 ETFBKMT 254013
## 3683 ETV3 2117
## 3684 EVA1B 55194
## 3685 EVI5L 115704
## 3686 EXO5 64789
## 3687 EXOC2 55770
## 3688 EXOSC1 51013
## 3689 EXOSC5 56915
## 3690 EXOSC7 23016
## 3691 EXTL2 2135
## 3692 EYA3 2140
## 3693 EZH2 2146
## 3694 F12 2161
## 3695 FAAH 2166
## 3696 FAAP100 80233
## 3697 FAAP20 199990
## 3698 FAAP24 91442
## 3699 FADS1 3992
## 3700 FADS3 3995
## 3701 FAF2 23197
## 3702 FAHD1 81889
## 3703 FAHD2A 51011
## 3704 FAHD2B 151313
## 3705 FAM102B 284611
## 3706 FAM104B 90736
## 3707 FAM114A2 10827
## 3708 FAM120AOS 158293
## 3709 FAM124B 79843
## 3710 FAM126A 84668
## 3711 FAM149B1 317662
## 3712 FAM151B 167555
## 3713 FAM156A 29057
## 3714 FAM160B2 64760
## 3715 FAM174C 55009
## 3716 FAM185A 222234
## 3717 FAM189B 10712
## 3718 FAM193A 8603
## 3719 FAM207A 85395
## 3720 FAM20B 9917
## 3721 FAM20C 56975
## 3722 FAM216A 29902
## 3723 FAM3C 10447
## 3724 FAM43A 131583
## 3725 FAM71F2 346653
## 3726 FAM83H 286077
## 3727 FAM86B1 85002
## 3728 FAM98A 25940
## 3729 FAM98C 147965
## 3730 FANCD2 2177
## 3731 FANCE 2178
## 3732 FANCG 2189
## 3733 FANCI 55215
## 3734 FANCL 55120
## 3735 FANCM 57697
## 3736 FARP1 10160
## 3737 FARS2 10667
## 3738 FARSA 2193
## 3739 FASTKD1 79675
## 3740 FBF1 85302
## 3741 FBLN5 10516
## 3742 FBN2 2201
## 3743 FBXL13 222235
## 3744 FBXL15 79176
## 3745 FBXL18 80028
## 3746 FBXL19 54620
## 3747 FBXL4 26235
## 3748 FBXL6 26233
## 3749 FBXL8 55336
## 3750 FBXO10 26267
## 3751 FBXO25 26260
## 3752 FBXO28 23219
## 3753 FBXO31 79791
## 3754 FBXO45 200933
## 3755 FBXO5 26271
## 3756 FBXO8 26269
## 3757 FBXW8 26259
## 3758 FBXW9 84261
## 3759 FCGBP 8857
## 3760 FCRLB 127943
## 3761 FCSK 197258
## 3762 FDX2 112812
## 3763 FDXR 2232
## 3764 FEM1A 55527
## 3765 FEN1 2237
## 3766 FER 2241
## 3767 FFAR3 2865
## 3768 FGFR1 2260
## 3769 FGFRL1 53834
## 3770 FHIT 2272
## 3771 FHL1 2273
## 3772 FHL2 2274
## 3773 FIGNL1 63979
## 3774 FIP1L1 81608
## 3775 FIZ1 84922
## 3776 FKBP14 55033
## 3777 FKBP3 2287
## 3778 FKBP9 11328
## 3779 FKBPL 63943
## 3780 FKRP 79147
## 3781 FLAD1 80308
## 3782 FLT1 2321
## 3783 FLYWCH1 84256
## 3784 FLYWCH2 114984
## 3785 FN3K 64122
## 3786 FN3KRP 79672
## 3787 FNBP1L 54874
## 3788 FNIP2 57600
## 3789 FOCAD 54914
## 3790 FOLR2 2350
## 3791 FOXJ2 55810
## 3792 FOXM1 2305
## 3793 FOXP3 50943
## 3794 FOXP4 116113
## 3795 FRA10AC1 118924
## 3796 FRK 2444
## 3797 FRMD4A 55691
## 3798 FRS2 10818
## 3799 FRS3 10817
## 3800 FSCN1 6624
## 3801 FUCA1 2517
## 3802 FUOM 282969
## 3803 FUT10 84750
## 3804 FUT11 170384
## 3805 FUT8 2530
## 3806 FUZ 80199
## 3807 FZD2 2535
## 3808 FZD3 7976
## 3809 FZD5 7855
## 3810 G2E3 55632
## 3811 GABPB1 2553
## 3812 GABRR2 2570
## 3813 GALE 2582
## 3814 GALK2 2585
## 3815 GALNT12 79695
## 3816 GALNT6 11226
## 3817 GALT 2592
## 3818 GAMT 2593
## 3819 GAN 8139
## 3820 GANC 2595
## 3821 GART 2618
## 3822 GATA2 2624
## 3823 GATA3 2625
## 3824 GATAD1 57798
## 3825 GATB 5188
## 3826 GATD1 347862
## 3827 GBE1 2632
## 3828 GBF1 8729
## 3829 GCDH 2639
## 3830 GCHFR 2644
## 3831 GCLC 2729
## 3832 GCM1 8521
## 3833 GCSH 2653
## 3834 GDPD5 81544
## 3835 GDPGP1 390637
## 3836 GEMIN6 79833
## 3837 GEMIN7 79760
## 3838 GEMIN8 54960
## 3839 GEN1 348654
## 3840 GET1 7485
## 3841 GFER 2671
## 3842 GFM2 84340
## 3843 GFOD1 54438
## 3844 GFPT1 2673
## 3845 GGCX 2677
## 3846 GGH 8836
## 3847 GGT6 124975
## 3848 GGT7 2686
## 3849 GHDC 84514
## 3850 GID4 79018
## 3851 GINS1 9837
## 3852 GINS2 51659
## 3853 GINS3 64785
## 3854 GINS4 84296
## 3855 GIPC1 10755
## 3856 GKAP1 80318
## 3857 GLI1 2735
## 3858 GLI4 2738
## 3859 GLIPR1L2 144321
## 3860 GLT8D1 55830
## 3861 GLYCTK 132158
## 3862 GMEB1 10691
## 3863 GMEB2 26205
## 3864 GMNN 51053
## 3865 GMPPA 29926
## 3866 GNB1L 54584
## 3867 GNE 10020
## 3868 GNG7 2788
## 3869 GNGT2 2793
## 3870 GNL3 26354
## 3871 GNPAT 8443
## 3872 GOLGA6L4 643707
## 3873 GOLGA7B 401647
## 3874 GOLGA8H 728498
## 3875 GOLGA8N 643699
## 3876 GOLIM4 27333
## 3877 GOLPH3L 55204
## 3878 GOLT1B 51026
## 3879 GON7 84520
## 3880 GOPC 57120
## 3881 GP9 2815
## 3882 GPAM 57678
## 3883 GPATCH1 55094
## 3884 GPATCH11 253635
## 3885 GPATCH3 63906
## 3886 GPD1L 23171
## 3887 GPER1 2852
## 3888 GPKOW 27238
## 3889 GPLD1 2822
## 3890 GPN2 54707
## 3891 GPR137 56834
## 3892 GPR137B 7107
## 3893 GPR180 160897
## 3894 GPR35 2859
## 3895 GPR68 8111
## 3896 GPR82 27197
## 3897 GPRC5C 55890
## 3898 GPRIN1 114787
## 3899 GPX3 2878
## 3900 GRAMD1C 54762
## 3901 GRAMD2B 65983
## 3902 GRAMD4 23151
## 3903 GRB14 2888
## 3904 GRK5 2869
## 3905 GRWD1 83743
## 3906 GSE1 23199
## 3907 GSS 2937
## 3908 GSTM4 2948
## 3909 GSTZ1 2954
## 3910 GTF2E1 2960
## 3911 GTF2H3 2967
## 3912 GTF3C3 9330
## 3913 GTF3C4 9329
## 3914 GTPBP3 84705
## 3915 GTSE1 51512
## 3916 GUCY1A1 2982
## 3917 GUCY1B1 2983
## 3918 H2BC11 8970
## 3919 H2BC15 8341
## 3920 H2BC8 8339
## 3921 H3C6 8353
## 3922 H4C8 8365
## 3923 HAAO 23498
## 3924 HABP4 22927
## 3925 HACD2 201562
## 3926 HACD3 51495
## 3927 HACE1 57531
## 3928 HAPLN3 145864
## 3929 HARBI1 283254
## 3930 HARS1 3035
## 3931 HAUS2 55142
## 3932 HAUS5 23354
## 3933 HAUS6 54801
## 3934 HAUS7 55559
## 3935 HBS1L 10767
## 3936 HCFC1R1 54985
## 3937 HCFC2 29915
## 3938 HDAC11 79885
## 3939 HDDC2 51020
## 3940 HDGFL3 50810
## 3941 HDHD2 84064
## 3942 HDHD3 81932
## 3943 HEATR1 55127
## 3944 HEBP1 50865
## 3945 HECTD3 79654
## 3946 HECTD4 283450
## 3947 HELB 92797
## 3948 HELLS 3070
## 3949 HEMK1 51409
## 3950 HENMT1 113802
## 3951 HEXD 284004
## 3952 HGH1 51236
## 3953 HIBCH 26275
## 3954 HIKESHI 51501
## 3955 HILPDA 29923
## 3956 HINT2 84681
## 3957 HIP1R 9026
## 3958 HIVEP1 3096
## 3959 HJURP 55355
## 3960 HLA-DOA 3111
## 3961 HLA-DOB 3112
## 3962 HMBOX1 79618
## 3963 HMG20A 10363
## 3964 HMGB3 3149
## 3965 HMGCS1 3157
## 3966 HMGXB4 10042
## 3967 HNRNPAB 3182
## 3968 HOMER3 9454
## 3969 HOOK2 29911
## 3970 HOOK3 84376
## 3971 HPF1 54969
## 3972 HPS5 11234
## 3973 HRAS 3265
## 3974 HS6ST1 9394
## 3975 HSCB 150274
## 3976 HSD17B1 3292
## 3977 HSD17B12 51144
## 3978 HSD17B13 345275
## 3979 HSD17B7 51478
## 3980 HSD17B8 7923
## 3981 HSD3B7 80270
## 3982 HSF1 3297
## 3983 HSF4 3299
## 3984 HSPA4 3308
## 3985 HSPA4L 22824
## 3986 HSPBP1 23640
## 3987 HYAL2 8692
## 3988 IARS2 55699
## 3989 ICE1 23379
## 3990 ICOSLG 23308
## 3991 ID3 3399
## 3992 IDE 3416
## 3993 IDUA 3425
## 3994 IER5L 389792
## 3995 IFI27L1 122509
## 3996 IFNLR1 163702
## 3997 IFRD2 7866
## 3998 IFT122 55764
## 3999 IFT140 9742
## 4000 IFT27 11020
## 4001 IFT43 112752
## 4002 IFT80 57560
## 4003 IGFBP2 3485
## 4004 IGFBP4 3487
## 4005 IGFL4 444882
## 4006 IGHMBP2 3508
## 4007 IGSF8 93185
## 4008 IKZF4 64375
## 4009 IL17RC 84818
## 4010 IL18BP 10068
## 4011 IL21R 50615
## 4012 IL23A 51561
## 4013 IL24 11009
## 4014 ILKAP 80895
## 4015 ILVBL 10994
## 4016 IMP3 55272
## 4017 IMP4 92856
## 4018 IMPA1 3612
## 4019 INAFM1 255783
## 4020 INCENP 3619
## 4021 INF2 64423
## 4022 ING5 84289
## 4023 INO80 54617
## 4024 INO80B 83444
## 4025 INO80C 125476
## 4026 INPP5B 3633
## 4027 INPP5E 56623
## 4028 INSR 3643
## 4029 INTS10 55174
## 4030 INTS12 57117
## 4031 INTS13 55726
## 4032 INTS2 57508
## 4033 INTS4 92105
## 4034 INTS5 80789
## 4035 INTS6L 203522
## 4036 INTS7 25896
## 4037 INTS9 55756
## 4038 INTU 27152
## 4039 INVS 27130
## 4040 IPO13 9670
## 4041 IPO9 55705
## 4042 IPPK 64768
## 4043 IQCB1 9657
## 4044 IQCE 23288
## 4045 IRF2BP1 26145
## 4046 ISCA2 122961
## 4047 ISG20L2 81875
## 4048 ISOC1 51015
## 4049 ITGA1 3672
## 4050 ITGA9 3680
## 4051 ITGAV 3685
## 4052 ITPRIPL2 162073
## 4053 IWS1 55677
## 4054 IZUMO4 113177
## 4055 JADE3 9767
## 4056 JAG1 182
## 4057 JMJD4 65094
## 4058 JMJD7 100137047
## 4059 JOSD2 126119
## 4060 JUN 3725
## 4061 KANSL1L 151050
## 4062 KANSL3 55683
## 4063 KAT2A 2648
## 4064 KAT6B 23522
## 4065 KATNA1 11104
## 4066 KATNAL1 84056
## 4067 KATNB1 10300
## 4068 KATNIP 23247
## 4069 KBTBD3 143879
## 4070 KCNA2 3737
## 4071 KCNA3 3738
## 4072 KCNC4 3749
## 4073 KCND1 3750
## 4074 KCNE1 3753
## 4075 KCNIP2 30819
## 4076 KCNK5 8645
## 4077 KCNMB1 3779
## 4078 KCNMB3 27094
## 4079 KCNMB4 27345
## 4080 KCNN3 3782
## 4081 KCNQ5 56479
## 4082 KCTD11 147040
## 4083 KCTD13 253980
## 4084 KCTD15 79047
## 4085 KCTD17 79734
## 4086 KCTD18 130535
## 4087 KCTD3 51133
## 4088 KCTD5 54442
## 4089 KCTD9 54793
## 4090 KDM4A 9682
## 4091 KDM8 79831
## 4092 KHDC4 22889
## 4093 KHK 3795
## 4094 KIAA0319 9856
## 4095 KIAA1191 57179
## 4096 KIAA1586 57691
## 4097 KIAA1614 57710
## 4098 KIAA1841 84542
## 4099 KIF11 3832
## 4100 KIF13B 23303
## 4101 KIF15 56992
## 4102 KIF18B 146909
## 4103 KIF20B 9585
## 4104 KIF23 9493
## 4105 KIF24 347240
## 4106 KIF2C 11004
## 4107 KIFAP3 22920
## 4108 KIFC1 3833
## 4109 KIZ 55857
## 4110 KLC4 89953
## 4111 KLF5 688
## 4112 KLHDC10 23008
## 4113 KLHDC4 54758
## 4114 KLHL11 55175
## 4115 KLHL17 339451
## 4116 KLHL18 23276
## 4117 KLHL20 27252
## 4118 KLHL22 84861
## 4119 KLHL25 64410
## 4120 KLHL26 55295
## 4121 KLHL28 54813
## 4122 KMT5C 84787
## 4123 KNL1 57082
## 4124 KNSTRN 90417
## 4125 KNTC1 9735
## 4126 KPNA3 3839
## 4127 KRBA1 84626
## 4128 KRBA2 124751
## 4129 KRIT1 889
## 4130 KRR1 11103
## 4131 KRT18 3875
## 4132 KRTCAP3 200634
## 4133 L3MBTL2 83746
## 4134 L3MBTL4 91133
## 4135 LAGE3 8270
## 4136 LAMB3 3914
## 4137 LAMC1 3915
## 4138 LANCL3 347404
## 4139 LAPTM4B 55353
## 4140 LARP1B 55132
## 4141 LARP4 113251
## 4142 LARS2 23395
## 4143 LAS1L 81887
## 4144 LAX1 54900
## 4145 LCLAT1 253558
## 4146 LCMT1 51451
## 4147 LCORL 254251
## 4148 LDLRAD3 143458
## 4149 LDOC1 23641
## 4150 LENG1 79165
## 4151 LENG9 94059
## 4152 LEPR 3953
## 4153 LETM2 137994
## 4154 LHPP 64077
## 4155 LHX4 89884
## 4156 LIAS 11019
## 4157 LIG3 3980
## 4158 LILRB5 10990
## 4159 LIMS2 55679
## 4160 LIN37 55957
## 4161 LIN52 91750
## 4162 LIN54 132660
## 4163 LIN7C 55327
## 4164 LIN9 286826
## 4165 LIPH 200879
## 4166 LIPT1 51601
## 4167 LIPT2 387787
## 4168 LLGL1 3996
## 4169 LLGL2 3993
## 4170 LMAN2L 81562
## 4171 LMBR1 64327
## 4172 LMBRD2 92255
## 4173 LMF1 64788
## 4174 LMLN 89782
## 4175 LMOD3 56203
## 4176 LNX2 222484
## 4177 LONRF3 79836
## 4178 LOXHD1 125336
## 4179 LRCH1 23143
## 4180 LRCH3 84859
## 4181 LRFN1 57622
## 4182 LRFN4 78999
## 4183 LRMDA 83938
## 4184 LRP12 29967
## 4185 LRP6 4040
## 4186 LRP8 7804
## 4187 LRRC14 9684
## 4188 LRRC23 10233
## 4189 LRRC27 80313
## 4190 LRRC29 26231
## 4191 LRRC34 151827
## 4192 LRRC37A3 374819
## 4193 LRRC37B 114659
## 4194 LRRC40 55631
## 4195 LRRC45 201255
## 4196 LRRC46 90506
## 4197 LRRC47 57470
## 4198 LRRC58 116064
## 4199 LRRC61 65999
## 4200 LRRC7 57554
## 4201 LRRC8B 23507
## 4202 LRRCC1 85444
## 4203 LRRN2 10446
## 4204 LRSAM1 90678
## 4205 LSM11 134353
## 4206 LSM5 23658
## 4207 LSR 51599
## 4208 LSS 4047
## 4209 LTA 4049
## 4210 LTB4R2 56413
## 4211 LTBP3 4054
## 4212 LTBP4 8425
## 4213 LTK 4058
## 4214 LTO1 220064
## 4215 LYPLAL1 127018
## 4216 LYRM4 57128
## 4217 LYRM9 201229
## 4218 LZTS2 84445
## 4219 M1AP 130951
## 4220 MAB21L3 126868
## 4221 MACROH2A2 55506
## 4222 MAD2L1 4085
## 4223 MAFK 7975
## 4224 MAGI3 260425
## 4225 MALSU1 115416
## 4226 MAMDC4 158056
## 4227 MAN1C1 57134
## 4228 MAN2B2 23324
## 4229 MANBAL 63905
## 4230 MANEA 79694
## 4231 MANEAL 149175
## 4232 MAP1A 4130
## 4233 MAP1S 55201
## 4234 MAP2K5 5607
## 4235 MAP2K7 5609
## 4236 MAP3K10 4294
## 4237 MAP3K13 9175
## 4238 MAP3K21 84451
## 4239 MAP3K6 9064
## 4240 MAP4K5 11183
## 4241 MAP6D1 79929
## 4242 MAPK11 5600
## 4243 MAPK6 5597
## 4244 MAPK7 5598
## 4245 MAPK9 5601
## 4246 MAPRE2 10982
## 4247 MARCHF9 92979
## 4248 MARS2 92935
## 4249 MASTL 84930
## 4250 MB21D2 151963
## 4251 MBD1 4152
## 4252 MBD5 55777
## 4253 MBTD1 54799
## 4254 MBTPS2 51360
## 4255 MC1R 4157
## 4256 MCAT 27349
## 4257 MCC 4163
## 4258 MCCC2 64087
## 4259 MCF2L 23263
## 4260 MCM2 4171
## 4261 MCM3 4172
## 4262 MCM8 84515
## 4263 MCM9 254394
## 4264 MCUB 55013
## 4265 MCUR1 63933
## 4266 MDN1 23195
## 4267 MDP1 145553
## 4268 ME3 10873
## 4269 MECR 51102
## 4270 MED10 84246
## 4271 MED12L 116931
## 4272 MED14 9282
## 4273 MED17 9440
## 4274 MED18 54797
## 4275 MED19 219541
## 4276 MED21 9412
## 4277 MED27 9442
## 4278 MED6 10001
## 4279 MED7 9443
## 4280 MED9 55090
## 4281 MEF2B 4207
## 4282 MEF2B 100271849
## 4283 MEGF8 1954
## 4284 MEI1 150365
## 4285 MEIS1 4211
## 4286 MELK 9833
## 4287 MEN1 4221
## 4288 MEOX1 4222
## 4289 METAP1 23173
## 4290 METTL14 57721
## 4291 METTL3 56339
## 4292 METTL4 64863
## 4293 MEX3C 51320
## 4294 MFN1 55669
## 4295 MFSD11 79157
## 4296 MFSD3 113655
## 4297 MFSD6 54842
## 4298 MGA 23269
## 4299 MGMT 4255
## 4300 MIB2 142678
## 4301 MIEF1 54471
## 4302 MIEF2 125170
## 4303 MIER2 54531
## 4304 MIER3 166968
## 4305 MIF 4282
## 4306 MIGA1 374986
## 4307 MINDY3 80013
## 4308 MITF 4286
## 4309 MKS1 54903
## 4310 MLH1 4292
## 4311 MLLT10 8028
## 4312 MLLT11 10962
## 4313 MLST8 64223
## 4314 MLYCD 23417
## 4315 MMAB 326625
## 4316 MMP14 4323
## 4317 MMP17 4326
## 4318 MMP19 4327
## 4319 MMS19 64210
## 4320 MMS22L 253714
## 4321 MMUT 4594
## 4322 MND1 84057
## 4323 MOB1B 92597
## 4324 MOB3B 79817
## 4325 MON1A 84315
## 4326 MORN2 729967
## 4327 MORN3 283385
## 4328 MPHOSPH9 10198
## 4329 MPP5 64398
## 4330 MPP6 51678
## 4331 MPST 4357
## 4332 MPV17L 255027
## 4333 MPV17L2 84769
## 4334 MRAS 22808
## 4335 MRE11 4361
## 4336 MREG 55686
## 4337 MRGBP 55257
## 4338 MRM1 79922
## 4339 MRM2 29960
## 4340 MRM3 55178
## 4341 MROH1 727957
## 4342 MROH6 642475
## 4343 MRPL12 6182
## 4344 MRPL14 64928
## 4345 MRPL16 54948
## 4346 MRPL17 63875
## 4347 MRPL19 9801
## 4348 MRPL2 51069
## 4349 MRPL33 9553
## 4350 MRPL4 51073
## 4351 MRPL41 64975
## 4352 MRPL42 28977
## 4353 MRPL43 84545
## 4354 MRPL45 84311
## 4355 MRPL46 26589
## 4356 MRPL48 51642
## 4357 MRPL49 740
## 4358 MRPL53 116540
## 4359 MRPL55 128308
## 4360 MRPL57 78988
## 4361 MRPS11 64963
## 4362 MRPS12 6183
## 4363 MRPS16 51021
## 4364 MRPS17 51373
## 4365 MRPS2 51116
## 4366 MRPS23 51649
## 4367 MRPS24 64951
## 4368 MRPS25 64432
## 4369 MRPS26 64949
## 4370 MRPS28 28957
## 4371 MRPS35 60488
## 4372 MRPS5 64969
## 4373 MRPS6 64968
## 4374 MRPS9 64965
## 4375 MRTO4 51154
## 4376 MSH2 4436
## 4377 MSH6 2956
## 4378 MSI2 124540
## 4379 MSMO1 6307
## 4380 MSRB3 253827
## 4381 MST1L 11223
## 4382 MTA1 9112
## 4383 MTCP1 4515
## 4384 MTERF2 80298
## 4385 MTERF4 130916
## 4386 MTF2 22823
## 4387 MTFR1 9650
## 4388 MTFR2 113115
## 4389 MTG1 92170
## 4390 MTHFD1 4522
## 4391 MTHFD1L 25902
## 4392 MTHFD2L 441024
## 4393 MTHFSD 64779
## 4394 MTLN 205251
## 4395 MTM1 4534
## 4396 MTMR11 10903
## 4397 MTMR2 8898
## 4398 MTMR9 66036
## 4399 MTRES1 51250
## 4400 MTREX 23517
## 4401 MTRF1 9617
## 4402 MTRF1L 54516
## 4403 MUS81 80198
## 4404 MUSTN1 389125
## 4405 MUTYH 4595
## 4406 MVB12A 93343
## 4407 MVD 4597
## 4408 MVK 4598
## 4409 MYB 4602
## 4410 MYBBP1A 10514
## 4411 MYH10 4628
## 4412 MYL5 4636
## 4413 MYNN 55892
## 4414 MYO1A 4640
## 4415 MYO1D 4642
## 4416 MYO9A 4649
## 4417 MYORG 57462
## 4418 MYZAP 100820829
## 4419 MZF1 7593
## 4420 MZT2A 653784
## 4421 MZT2B 80097
## 4422 N4BP2 55728
## 4423 NAA15 80155
## 4424 NAA16 79612
## 4425 NAA30 122830
## 4426 NAA35 60560
## 4427 NAA80 24142
## 4428 NAALADL1 10004
## 4429 NADK2 133686
## 4430 NAE1 8883
## 4431 NAGLU 4669
## 4432 NAGPA 51172
## 4433 NAGS 162417
## 4434 NANP 140838
## 4435 NAPB 63908
## 4436 NAPG 8774
## 4437 NAT1 9
## 4438 NAT14 57106
## 4439 NAT9 26151
## 4440 NAV1 89796
## 4441 NAXD 55739
## 4442 NBDY 550643
## 4443 NBEAL1 65065
## 4444 NBPF1 55672
## 4445 NBPF11 200030
## 4446 NBPF12 149013
## 4447 NBPF3 84224
## 4448 NCAPD3 23310
## 4449 NCAPG 64151
## 4450 NCAPG2 54892
## 4451 NCAPH 23397
## 4452 NCBP1 4686
## 4453 NCBP2AS2 152217
## 4454 NCBP3 55421
## 4455 NCKAP1 10787
## 4456 NCKAP5L 57701
## 4457 NCOR2 9612
## 4458 NCR1 9437
## 4459 NCR3 259197
## 4460 NDC1 55706
## 4461 NDC80 10403
## 4462 NDRG2 57447
## 4463 NDUFA7 4701
## 4464 NDUFA8 4702
## 4465 NDUFAB1 4706
## 4466 NDUFAF2 91942
## 4467 NDUFAF7 55471
## 4468 NDUFAF8 284184
## 4469 NDUFC1 4717
## 4470 NDUFS7 374291
## 4471 NDUFS8 4728
## 4472 NDUFV3 4731
## 4473 NECAB2 54550
## 4474 NECAB3 63941
## 4475 NEGR1 257194
## 4476 NEIL2 252969
## 4477 NEIL3 55247
## 4478 NEK1 4750
## 4479 NEK2 4751
## 4480 NEK4 6787
## 4481 NEK8 284086
## 4482 NELFA 7469
## 4483 NEMP1 23306
## 4484 NEMP2 100131211
## 4485 NEO1 4756
## 4486 NET1 10276
## 4487 NETO2 81831
## 4488 NEURL4 84461
## 4489 NEXN 91624
## 4490 NF2 4771
## 4491 NFATC1 4772
## 4492 NFATC2IP 84901
## 4493 NFIC 4782
## 4494 NFKBIB 4793
## 4495 NFKBID 84807
## 4496 NFKBIL1 4795
## 4497 NFS1 9054
## 4498 NFX1 4799
## 4499 NGLY1 55768
## 4500 NGRN 51335
## 4501 NHLRC2 374354
## 4502 NHLRC4 283948
## 4503 NIBAN3 199786
## 4504 NIFK 84365
## 4505 NIP7 51388
## 4506 NIPA1 123606
## 4507 NIPAL3 57185
## 4508 NIPSNAP1 8508
## 4509 NKAIN3 286183
## 4510 NKD1 85407
## 4511 NLE1 54475
## 4512 NLGN3 54413
## 4513 NME3 4832
## 4514 NME4 4833
## 4515 NMT2 9397
## 4516 NOB1 28987
## 4517 NOC4L 79050
## 4518 NOL12 79159
## 4519 NOL8 55035
## 4520 NOP14 8602
## 4521 NOP16 51491
## 4522 NOP9 161424
## 4523 NOTCH4 4855
## 4524 NPAT 4863
## 4525 NPDC1 56654
## 4526 NPFF 8620
## 4527 NPHP3 27031
## 4528 NPIPA7 101059938
## 4529 NPIPB11 728888
## 4530 NPIPB5 100132247
## 4531 NPRL2 10641
## 4532 NPRL3 8131
## 4533 NPTXR 23467
## 4534 NR1D1 9572
## 4535 NR1H3 10062
## 4536 NR2C2AP 126382
## 4537 NR4A1 3164
## 4538 NR6A1 2649
## 4539 NRDE2 55051
## 4540 NREP 9315
## 4541 NRF1 4899
## 4542 NRG1 3084
## 4543 NRL 4901
## 4544 NRROS 375387
## 4545 NSD2 7468
## 4546 NSDHL 50814
## 4547 NSG1 27065
## 4548 NSMCE3 56160
## 4549 NSRP1 84081
## 4550 NSUN2 54888
## 4551 NSUN3 63899
## 4552 NT5C3B 115024
## 4553 NT5DC3 51559
## 4554 NTAQ1 55093
## 4555 NTMT1 28989
## 4556 NUBP1 4682
## 4557 NUDCD1 84955
## 4558 NUDT1 4521
## 4559 NUDT13 25961
## 4560 NUDT14 256281
## 4561 NUDT17 200035
## 4562 NUDT18 79873
## 4563 NUDT2 318
## 4564 NUDT21 11051
## 4565 NUF2 83540
## 4566 NUGGC 389643
## 4567 NUP107 57122
## 4568 NUP155 9631
## 4569 NUP160 23279
## 4570 NUP205 23165
## 4571 NUP43 348995
## 4572 NUP85 79902
## 4573 NUP93 9688
## 4574 NUTM2D 728130
## 4575 NWD1 284434
## 4576 OAF 220323
## 4577 OBSCN 84033
## 4578 OCEL1 79629
## 4579 OCIAD2 132299
## 4580 OCRL 4952
## 4581 ODF2L 57489
## 4582 ODF3B 440836
## 4583 ODR4 54953
## 4584 OGFOD2 79676
## 4585 OGFOD3 79701
## 4586 OIP5 11339
## 4587 OLFM2 93145
## 4588 OMG 4974
## 4589 OMG 101927057
## 4590 OPLAH 26873
## 4591 OR1F1 4992
## 4592 ORC1 4998
## 4593 ORC2 4999
## 4594 ORC3 23595
## 4595 ORC6 23594
## 4596 OSBP 5007
## 4597 OSBPL7 114881
## 4598 OSGIN1 29948
## 4599 OTUD3 23252
## 4600 OTUD6B 51633
## 4601 OXCT1 5019
## 4602 OXER1 165140
## 4603 P2RX4 5025
## 4604 P2RY12 64805
## 4605 P3H1 64175
## 4606 P3H4 10609
## 4607 P4HTM 54681
## 4608 PACS2 23241
## 4609 PAFAH1B3 5050
## 4610 PAK4 10298
## 4611 PALB2 79728
## 4612 PANX1 24145
## 4613 PAOX 196743
## 4614 PAPLN 89932
## 4615 PAPSS2 9060
## 4616 PAQR7 164091
## 4617 PARD3 56288
## 4618 PARD6A 50855
## 4619 PARD6G 84552
## 4620 PARG 8505
## 4621 PARP11 57097
## 4622 PARP2 10038
## 4623 PARP3 10039
## 4624 PARPBP 55010
## 4625 PASK 23178
## 4626 PATZ1 23598
## 4627 PAWR 5074
## 4628 PAXBP1 94104
## 4629 PAXIP1 22976
## 4630 PBDC1 51260
## 4631 PBLD 64081
## 4632 PBX3 5090
## 4633 PCBD1 5092
## 4634 PCBP4 57060
## 4635 PCDH12 51294
## 4636 PCDHA4 56144
## 4637 PCGF1 84759
## 4638 PCGF6 84108
## 4639 PCK2 5106
## 4640 PCLAF 9768
## 4641 PCOLCE 5118
## 4642 PCYOX1 51449
## 4643 PCYOX1L 78991
## 4644 PCYT1B 9468
## 4645 PCYT2 5833
## 4646 PDCD2 5134
## 4647 PDE1B 5153
## 4648 PDE2A 5138
## 4649 PDE3A 5139
## 4650 PDE5A 8654
## 4651 PDE6B 5158
## 4652 PDE6D 5147
## 4653 PDE6G 5148
## 4654 PDHX 8050
## 4655 PDIA5 10954
## 4656 PDIK1L 149420
## 4657 PDK2 5164
## 4658 PDLIM5 10611
## 4659 PDP2 57546
## 4660 PDRG1 81572
## 4661 PDS5B 23047
## 4662 PEAK1 79834
## 4663 PEAK3 374872
## 4664 PEAR1 375033
## 4665 PELI3 246330
## 4666 PEMT 10400
## 4667 PEPD 5184
## 4668 PER2 8864
## 4669 PERP 64065
## 4670 PET117 100303755
## 4671 PEX1 5189
## 4672 PEX10 5192
## 4673 PEX11B 8799
## 4674 PEX13 5194
## 4675 PEX14 5195
## 4676 PEX19 5824
## 4677 PEX5 5830
## 4678 PFDN6 10471
## 4679 PFKM 5213
## 4680 PFN2 5217
## 4681 PGAP1 80055
## 4682 PGAP3 93210
## 4683 PGM3 5238
## 4684 PGP 283871
## 4685 PHACTR4 65979
## 4686 PHETA1 144717
## 4687 PHETA2 150368
## 4688 PHF14 9678
## 4689 PHF6 84295
## 4690 PHLDB3 653583
## 4691 PHLPP1 23239
## 4692 PHRF1 57661
## 4693 PHTF2 57157
## 4694 PHYH 5264
## 4695 PI16 221476
## 4696 PI4K2B 55300
## 4697 PIAS3 10401
## 4698 PICK1 9463
## 4699 PIDD1 55367
## 4700 PIF1 80119
## 4701 PIGB 9488
## 4702 PIGBOS1 101928527
## 4703 PIGC 5279
## 4704 PIGF 5281
## 4705 PIGN 23556
## 4706 PIGQ 9091
## 4707 PIGW 284098
## 4708 PIGZ 80235
## 4709 PIK3R2 5296
## 4710 PIK3R4 30849
## 4711 PIK3R6 146850
## 4712 PIN4 5303
## 4713 PINX1 54984
## 4714 PIP5K1C 23396
## 4715 PIWIL4 143689
## 4716 PKD2 5311
## 4717 PKHD1L1 93035
## 4718 PKIG 11142
## 4719 PKP4 8502
## 4720 PLA2G12A 81579
## 4721 PLA2G4B 100137049
## 4722 PLA2G6 8398
## 4723 PLA2G7 7941
## 4724 PLAG1 5324
## 4725 PLCB3 5331
## 4726 PLCD1 5333
## 4727 PLCD3 113026
## 4728 PLCE1 51196
## 4729 PLCH2 9651
## 4730 PLD1 5337
## 4731 PLD6 201164
## 4732 PLEKHA3 65977
## 4733 PLEKHA8 84725
## 4734 PLEKHB1 58473
## 4735 PLEKHF1 79156
## 4736 PLEKHG4 25894
## 4737 PLK1 5347
## 4738 PLK2 10769
## 4739 PLK4 10733
## 4740 PLOD3 8985
## 4741 PLPP3 8613
## 4742 PLXNA1 5361
## 4743 PLXNA3 55558
## 4744 PM20D2 135293
## 4745 PMPCA 23203
## 4746 PNKP 11284
## 4747 PNMA1 9240
## 4748 PNMA3 29944
## 4749 PNPLA7 375775
## 4750 POGLUT3 143888
## 4751 POLA1 5422
## 4752 POLD1 5424
## 4753 POLD2 5425
## 4754 POLE2 5427
## 4755 POLG2 11232
## 4756 POLH 5429
## 4757 POLK 51426
## 4758 POLR1C 9533
## 4759 POLR1E 64425
## 4760 POLR2F 5435
## 4761 POLR2H 5437
## 4762 POLR2I 5438
## 4763 POLR2J2 246721
## 4764 POLR3B 55703
## 4765 POLR3G 10622
## 4766 POLR3H 171568
## 4767 POMGNT1 55624
## 4768 POMT1 10585
## 4769 POP4 10775
## 4770 POP5 51367
## 4771 POP7 10248
## 4772 PORCN 64840
## 4773 POU2F1 5451
## 4774 POU5F1 5460
## 4775 PPA2 27068
## 4776 PPAN 56342
## 4777 PPARA 5465
## 4778 PPARD 5467
## 4779 PPAT 5471
## 4780 PPEF1 5475
## 4781 PPIH 10465
## 4782 PPM1H 57460
## 4783 PPM1J 333926
## 4784 PPM1L 151742
## 4785 PPP1R13B 23368
## 4786 PPP1R16A 84988
## 4787 PPP1R32 220004
## 4788 PPP1R37 284352
## 4789 PPP1R3F 89801
## 4790 PPP1R8 5511
## 4791 PPP2R1B 5519
## 4792 PPP2R3B 28227
## 4793 PPP2R5E 5529
## 4794 PRADC1 84279
## 4795 PRC1 9055
## 4796 PRDM10 56980
## 4797 PRDM4 11108
## 4798 PRICKLE3 4007
## 4799 PRIM1 5557
## 4800 PRIM2 5558
## 4801 PRKAB2 5565
## 4802 PRKCE 5581
## 4803 PRKCI 5584
## 4804 PRKD3 23683
## 4805 PRMT3 10196
## 4806 PRMT7 54496
## 4807 PRMT9 90826
## 4808 PROCA1 147011
## 4809 PROSER3 148137
## 4810 PRPF4 9128
## 4811 PRPF40B 25766
## 4812 PRPS2 5634
## 4813 PRPSAP1 5635
## 4814 PRR11 55771
## 4815 PRR12 57479
## 4816 PRR29 92340
## 4817 PRR3 80742
## 4818 PRR5 55615
## 4819 PRRC1 133619
## 4820 PRRT4 401399
## 4821 PRSS36 146547
## 4822 PRTFDC1 56952
## 4823 PRX 57716
## 4824 PRXL2B 127281
## 4825 PSAT1 29968
## 4826 PSD3 23362
## 4827 PSKH1 5681
## 4828 PSMC3IP 29893
## 4829 PSMC4 5704
## 4830 PSMD11 5717
## 4831 PSMD3 5709
## 4832 PSMD5 5711
## 4833 PSMG2 56984
## 4834 PSMG4 389362
## 4835 PSPH 5723
## 4836 PSRC1 84722
## 4837 PSTK 118672
## 4838 PTDSS2 81490
## 4839 PTGIR 5739
## 4840 PTK2 5747
## 4841 PTK6 5753
## 4842 PTPMT1 114971
## 4843 PTPRS 5802
## 4844 PTRHD1 391356
## 4845 PTTG1 9232
## 4846 PUS1 80324
## 4847 PUS10 150962
## 4848 PUS7 54517
## 4849 PUS7L 83448
## 4850 PUSL1 126789
## 4851 PVRIG 79037
## 4852 PWWP2A 114825
## 4853 PWWP2B 170394
## 4854 PWWP3A 84939
## 4855 PXMP4 11264
## 4856 PYCR1 5831
## 4857 PYCR2 29920
## 4858 PYCR3 65263
## 4859 PYROXD1 79912
## 4860 QPRT 23475
## 4861 QSER1 79832
## 4862 QTRT1 81890
## 4863 R3HCC1 203069
## 4864 R3HDM1 23518
## 4865 RAB11FIP2 22841
## 4866 RAB11FIP3 9727
## 4867 RAB19 401409
## 4868 RAB27B 5874
## 4869 RAB2B 84932
## 4870 RAB30 27314
## 4871 RAB39B 116442
## 4872 RAB3A 5864
## 4873 RAB3IP 117177
## 4874 RAB40C 57799
## 4875 RABEP2 79874
## 4876 RABEPK 10244
## 4877 RABGAP1 23637
## 4878 RABGGTA 5875
## 4879 RABL2A 11159
## 4880 RABL3 285282
## 4881 RACGAP1 29127
## 4882 RAD17 5884
## 4883 RAD18 56852
## 4884 RAD50 10111
## 4885 RAD51 5888
## 4886 RAD51AP1 10635
## 4887 RAD51D 5892
## 4888 RAD54B 25788
## 4889 RAI1 10743
## 4890 RALGDS 5900
## 4891 RALGPS1 9649
## 4892 RAP1GDS1 5910
## 4893 RARG 5916
## 4894 RARS1 5917
## 4895 RASGRP3 25780
## 4896 RBBP8 5932
## 4897 RBBP9 10741
## 4898 RBFA 79863
## 4899 RBL1 5933
## 4900 RBM11 54033
## 4901 RBM12B 389677
## 4902 RBM14 10432
## 4903 RBM15 64783
## 4904 RBM18 92400
## 4905 RBM41 55285
## 4906 RBM43 375287
## 4907 RBM44 375316
## 4908 RBMX2 51634
## 4909 RBMXL1 494115
## 4910 RCC1L 81554
## 4911 RCE1 9986
## 4912 RCL1 10171
## 4913 RCN1 5954
## 4914 RDH10 157506
## 4915 RDX 5962
## 4916 RECQL5 9400
## 4917 REEP4 80346
## 4918 RELL2 285613
## 4919 RETSAT 54884
## 4920 REV1 51455
## 4921 REX1BD 55049
## 4922 REXO1 57455
## 4923 REXO4 57109
## 4924 REXO5 81691
## 4925 RFC1 5981
## 4926 RFC3 5983
## 4927 RFC4 5984
## 4928 RFC5 5985
## 4929 RFWD3 55159
## 4930 RFX1 5989
## 4931 RFXAP 5994
## 4932 RGPD8 727851
## 4933 RGS12 6002
## 4934 RGS16 6004
## 4935 RGS6 9628
## 4936 RHBDD3 25807
## 4937 RHD 6007
## 4938 RHOBTB1 9886
## 4939 RHOBTB2 23221
## 4940 RHPN1 114822
## 4941 RIMKLB 57494
## 4942 RIMS3 9783
## 4943 RIN1 9610
## 4944 RINL 126432
## 4945 RINT1 60561
## 4946 RIOX1 79697
## 4947 RITA1 84934
## 4948 RMC1 29919
## 4949 RMI1 80010
## 4950 RMI2 116028
## 4951 RMND5B 64777
## 4952 RNASEH1 246243
## 4953 RNF113A 7737
## 4954 RNF126 55658
## 4955 RNF144A 9781
## 4956 RNF168 165918
## 4957 RNF25 64320
## 4958 RNGTT 8732
## 4959 RNPC3 55599
## 4960 ROM1 6094
## 4961 ROMO1 140823
## 4962 RORC 6097
## 4963 RP9 6100
## 4964 RPAIN 84268
## 4965 RPF1 80135
## 4966 RPP21 79897
## 4967 RPP21 202658
## 4968 RPP25 54913
## 4969 RPP25L 138716
## 4970 RPRD1A 55197
## 4971 RPRD1B 58490
## 4972 RPS6KB1 6198
## 4973 RPS6KC1 26750
## 4974 RPUSD1 113000
## 4975 RPUSD2 27079
## 4976 RPUSD3 285367
## 4977 RREB1 6239
## 4978 RRM1 6240
## 4979 RRP1 8568
## 4980 RRP36 88745
## 4981 RRP8 23378
## 4982 RRP9 9136
## 4983 RRS1 23212
## 4984 RSAD1 55316
## 4985 RSKR 124923
## 4986 RSPRY1 89970
## 4987 RTEL1 51750
## 4988 RTL8A 26071
## 4989 RTN1 6252
## 4990 RTN2 6253
## 4991 RUFY2 55680
## 4992 RUSC1 23623
## 4993 RUSF1 64755
## 4994 RYR1 6261
## 4995 S100A13 6284
## 4996 S100PBP 64766
## 4997 S1PR2 9294
## 4998 SAC3D1 29901
## 4999 SACS 26278
## 5000 SAMD1 90378
## 5001 SAMD10 140700
## 5002 SAMD4B 55095
## 5003 SAMM50 25813
## 5004 SAPCD1 401251
## 5005 SARS2 54938
## 5006 SART3 9733
## 5007 SASS6 163786
## 5008 SAV1 60485
## 5009 SC5D 6309
## 5010 SCAF1 58506
## 5011 SCAF4 57466
## 5012 SCAMP1 9522
## 5013 SCAMP3 10067
## 5014 SCAMP4 113178
## 5015 SCAND1 51282
## 5016 SCAPER 49855
## 5017 SCARB1 949
## 5018 SCCPDH 51097
## 5019 SCD 6319
## 5020 SCFD2 152579
## 5021 SCIN 85477
## 5022 SCLY 51540
## 5023 SCML2 10389
## 5024 SCN9A 6335
## 5025 SCOC 60592
## 5026 SCRIB 23513
## 5027 SCRN3 79634
## 5028 SCUBE1 80274
## 5029 SCYL3 57147
## 5030 SDHAF1 644096
## 5031 SDHAF4 135154
## 5032 SEC14L5 9717
## 5033 SEC23IP 11196
## 5034 SECISBP2 79048
## 5035 SELENOI 85465
## 5036 SEMA3E 9723
## 5037 SEMA4C 54910
## 5038 SEMA6B 10501
## 5039 SEMA7A 8482
## 5040 SENP1 29843
## 5041 SENP5 205564
## 5042 SENP8 123228
## 5043 SEPHS1 22929
## 5044 SEPSECS 51091
## 5045 SEPTIN11 55752
## 5046 SERAC1 84947
## 5047 SERGEF 26297
## 5048 SERPINE1 5054
## 5049 SERPINF1 5176
## 5050 SERPINF2 5345
## 5051 SERPINH1 871
## 5052 SERTAD1 29950
## 5053 SETBP1 26040
## 5054 SETD1A 9739
## 5055 SETD6 79918
## 5056 SFI1 9814
## 5057 SFN 2810
## 5058 SFXN3 81855
## 5059 SFXN5 94097
## 5060 SGF29 112869
## 5061 SGMS1 259230
## 5062 SGO1 151648
## 5063 SGO2 151246
## 5064 SH2B2 10603
## 5065 SH2D2A 9047
## 5066 SH2D3A 10045
## 5067 SH2D4A 63898
## 5068 SH3D21 79729
## 5069 SH3TC2 79628
## 5070 SHCBP1 79801
## 5071 SHISA4 149345
## 5072 SHISA9 729993
## 5073 SHISAL2A 348378
## 5074 SHLD3 112441434
## 5075 SHMT1 6470
## 5076 SHROOM4 57477
## 5077 SIAE 54414
## 5078 SIMC1 375484
## 5079 SINHCAF 58516
## 5080 SIRPG 55423
## 5081 SIT1 27240
## 5082 SIVA1 10572
## 5083 SKA1 220134
## 5084 SKA2 348235
## 5085 SKA3 221150
## 5086 SLAIN1 122060
## 5087 SLC10A3 8273
## 5088 SLC10A7 84068
## 5089 SLC12A2 6558
## 5090 SLC15A2 6565
## 5091 SLC16A1 6566
## 5092 SLC16A7 9194
## 5093 SLC17A5 26503
## 5094 SLC1A4 6509
## 5095 SLC22A1 6580
## 5096 SLC22A16 85413
## 5097 SLC22A18 5002
## 5098 SLC23A2 9962
## 5099 SLC24A3 57419
## 5100 SLC25A19 60386
## 5101 SLC25A20 788
## 5102 SLC25A22 79751
## 5103 SLC25A25 114789
## 5104 SLC25A26 115286
## 5105 SLC25A30 253512
## 5106 SLC25A32 81034
## 5107 SLC25A38 54977
## 5108 SLC25A45 283130
## 5109 SLC25A51 92014
## 5110 SLC26A11 284129
## 5111 SLC26A2 1836
## 5112 SLC27A2 11001
## 5113 SLC27A4 10999
## 5114 SLC27A5 10998
## 5115 SLC29A3 55315
## 5116 SLC2A11 66035
## 5117 SLC2A13 114134
## 5118 SLC2A8 29988
## 5119 SLC30A5 64924
## 5120 SLC30A6 55676
## 5121 SLC30A7 148867
## 5122 SLC33A1 9197
## 5123 SLC35A3 23443
## 5124 SLC35B3 51000
## 5125 SLC35C1 55343
## 5126 SLC35D1 23169
## 5127 SLC35E1 79939
## 5128 SLC35E3 55508
## 5129 SLC35E4 339665
## 5130 SLC35F2 54733
## 5131 SLC37A1 54020
## 5132 SLC38A6 145389
## 5133 SLC39A14 23516
## 5134 SLC39A6 25800
## 5135 SLC45A3 85414
## 5136 SLC46A2 57864
## 5137 SLC48A1 55652
## 5138 SLC49A3 84179
## 5139 SLC4A2 6522
## 5140 SLC4A5 57835
## 5141 SLC4A7 9497
## 5142 SLC52A2 79581
## 5143 SLC5A3 6526
## 5144 SLC66A1 54896
## 5145 SLC66A3 130814
## 5146 SLC6A16 28968
## 5147 SLC6A4 6532
## 5148 SLC7A1 6541
## 5149 SLC9A3 6550
## 5150 SLC9A6 10479
## 5151 SLF1 84250
## 5152 SLF2 55719
## 5153 SLFN12 55106
## 5154 SLFN14 342618
## 5155 SLIT1 6585
## 5156 SLX4IP 128710
## 5157 SMAD5 4090
## 5158 SMAP1 60682
## 5159 SMARCA4 6597
## 5160 SMARCAD1 56916
## 5161 SMARCAL1 50485
## 5162 SMARCD1 6602
## 5163 SMC2 10592
## 5164 SMC6 79677
## 5165 SMG6 23293
## 5166 SMG9 56006
## 5167 SMIM13 221710
## 5168 SMIM19 114926
## 5169 SMIM4 440957
## 5170 SMIM5 643008
## 5171 SMIM7 79086
## 5172 SMIM8 57150
## 5173 SMIM8 63914
## 5174 SMN1 6606
## 5175 SMPD2 6610
## 5176 SMPD3 55512
## 5177 SMU1 55234
## 5178 SMURF1 57154
## 5179 SMYD5 10322
## 5180 SNAI3 333929
## 5181 SNAP47 116841
## 5182 SNAPC2 6618
## 5183 SNAPC4 6621
## 5184 SNAPC5 10302
## 5185 SNAPIN 23557
## 5186 SNIP1 79753
## 5187 SNRNP27 11017
## 5188 SNRNP48 154007
## 5189 SNRPA1 6627
## 5190 SNRPB2 6629
## 5191 SNRPC 6631
## 5192 SNRPF 6636
## 5193 SNTA1 6640
## 5194 SNUPN 10073
## 5195 SNX16 64089
## 5196 SNX21 90203
## 5197 SNX22 79856
## 5198 SNX25 83891
## 5199 SNX33 257364
## 5200 SNX8 29886
## 5201 SOCS4 122809
## 5202 SORBS3 10174
## 5203 SORD 6652
## 5204 SOWAHD 347454
## 5205 SOX12 6666
## 5206 SP4 6671
## 5207 SPAG1 6674
## 5208 SPAG16 79582
## 5209 SPAG5 10615
## 5210 SPATA20 64847
## 5211 SPATA2L 124044
## 5212 SPATA33 124045
## 5213 SPATA5L1 79029
## 5214 SPATA7 55812
## 5215 SPATS2 65244
## 5216 SPC24 147841
## 5217 SPC25 57405
## 5218 SPDL1 54908
## 5219 SPHK2 56848
## 5220 SPIB 6689
## 5221 SPICE1 152185
## 5222 SPIN1 10927
## 5223 SPIN2B 474343
## 5224 SPIN4 139886
## 5225 SPNS3 201305
## 5226 SPPL2B 56928
## 5227 SPRTN 83932
## 5228 SPSB1 80176
## 5229 SPSB2 84727
## 5230 SPSB2 105369632
## 5231 SPTBN5 51332
## 5232 SQLE 6713
## 5233 SRD5A3 79644
## 5234 SREK1 140890
## 5235 SRRM1 10250
## 5236 SS18 6760
## 5237 SS18L1 26039
## 5238 SS18L2 51188
## 5239 SSBP2 23635
## 5240 SSBP4 170463
## 5241 SSC4D 136853
## 5242 SSPN 8082
## 5243 SSX2IP 117178
## 5244 ST7 7982
## 5245 ST7 93655
## 5246 ST8SIA6 338596
## 5247 STAM 8027
## 5248 STAMBP 10617
## 5249 STARD4 134429
## 5250 STARD5 80765
## 5251 STAU2 27067
## 5252 STIL 6491
## 5253 STK19 8859
## 5254 STK32C 282974
## 5255 STON1 11037
## 5256 STON2 85439
## 5257 STRADA 92335
## 5258 STRBP 55342
## 5259 STRIP1 85369
## 5260 STRN3 29966
## 5261 STX18 53407
## 5262 STX1A 6804
## 5263 SUCLA2 8803
## 5264 SUCNR1 56670
## 5265 SUCO 51430
## 5266 SUGT1 10910
## 5267 SURF2 6835
## 5268 SUV39H2 79723
## 5269 SWI5 375757
## 5270 SWSAP1 126074
## 5271 SWT1 54823
## 5272 SYCP2 10388
## 5273 SYNJ2 8871
## 5274 SYTL4 94121
## 5275 TACO1 51204
## 5276 TACSTD2 4070
## 5277 TAF13 6884
## 5278 TAF1B 9014
## 5279 TAF1C 9013
## 5280 TAF1D 79101
## 5281 TAF2 6873
## 5282 TAF4B 6875
## 5283 TAF5 6877
## 5284 TAFA2 338811
## 5285 TANC2 26115
## 5286 TAPT1 202018
## 5287 TARBP2 6895
## 5288 TASOR2 54906
## 5289 TBC1D13 54662
## 5290 TBC1D17 79735
## 5291 TBC1D22B 55633
## 5292 TBC1D25 4943
## 5293 TBCEL 219899
## 5294 TBCK 93627
## 5295 TBL2 26608
## 5296 TBL3 10607
## 5297 TBP 6908
## 5298 TBPL1 9519
## 5299 TBRG4 9238
## 5300 TCEA2 6919
## 5301 TCEA3 6920
## 5302 TCEAL4 79921
## 5303 TCEANC2 127428
## 5304 TCERG1 10915
## 5305 TCF12 6938
## 5306 TCF19 6941
## 5307 TCF4 6925
## 5308 TCHP 84260
## 5309 TDG 6996
## 5310 TDRD12 91646
## 5311 TEC 7006
## 5312 TEDC1 283643
## 5313 TEF 7008
## 5314 TELO2 9894
## 5315 TEN1 100134934
## 5316 TENT4B 64282
## 5317 TESK1 7016
## 5318 TESK2 10420
## 5319 TEX10 54881
## 5320 TEX22 647310
## 5321 TFAM 7019
## 5322 TFAP4 7023
## 5323 TFPT 29844
## 5324 TG 7038
## 5325 TGFBRAP1 9392
## 5326 TGIF2 60436
## 5327 TGS1 96764
## 5328 THAP3 90326
## 5329 THAP4 51078
## 5330 THAP6 152815
## 5331 THAP7 80764
## 5332 THAP9 79725
## 5333 THEM6 51337
## 5334 THG1L 54974
## 5335 THOC1 9984
## 5336 THOC2 57187
## 5337 THSD1 55901
## 5338 TICAM1 148022
## 5339 TIGAR 57103
## 5340 TIGD3 220359
## 5341 TIGD5 84948
## 5342 TIMELESS 8914
## 5343 TIMM23B 100652748
## 5344 TIMM44 10469
## 5345 TIMM50 92609
## 5346 TIMM9 26520
## 5347 TIMMDC1 51300
## 5348 TIPIN 54962
## 5349 TIRAP 114609
## 5350 TJAP1 93643
## 5351 TJP2 9414
## 5352 TK1 7083
## 5353 TKFC 26007
## 5354 TLCD4 148534
## 5355 TLNRD1 59274
## 5356 TM2D2 83877
## 5357 TM7SF2 7108
## 5358 TM7SF3 51768
## 5359 TM9SF1 10548
## 5360 TMCO6 55374
## 5361 TMED1 11018
## 5362 TMED4 222068
## 5363 TMEM102 284114
## 5364 TMEM104 54868
## 5365 TMEM106C 79022
## 5366 TMEM107 84314
## 5367 TMEM120B 144404
## 5368 TMEM128 85013
## 5369 TMEM134 80194
## 5370 TMEM138 51524
## 5371 TMEM147 10430
## 5372 TMEM150A 129303
## 5373 TMEM159 57146
## 5374 TMEM160 54958
## 5375 TMEM161A 54929
## 5376 TMEM170A 124491
## 5377 TMEM175 84286
## 5378 TMEM18 129787
## 5379 TMEM184C 55751
## 5380 TMEM186 25880
## 5381 TMEM187 8269
## 5382 TMEM192 201931
## 5383 TMEM204 79652
## 5384 TMEM209 84928
## 5385 TMEM212 389177
## 5386 TMEM218 219854
## 5387 TMEM223 79064
## 5388 TMEM234 56063
## 5389 TMEM241 85019
## 5390 TMEM243 79161
## 5391 TMEM245 23731
## 5392 TMEM252 169693
## 5393 TMEM35B 100506144
## 5394 TMEM38B 55151
## 5395 TMEM39A 55254
## 5396 TMEM39B 55116
## 5397 TMEM42 131616
## 5398 TMEM44 93109
## 5399 TMEM45A 55076
## 5400 TMEM53 79639
## 5401 TMEM60 85025
## 5402 TMEM62 80021
## 5403 TMEM64 169200
## 5404 TMEM68 137695
## 5405 TMEM69 51249
## 5406 TMEM80 283232
## 5407 TMEM86A 144110
## 5408 TMEM86B 255043
## 5409 TMEM87A 25963
## 5410 TMEM88 92162
## 5411 TMEM8B 51754
## 5412 TMEM9 252839
## 5413 TMEM94 9772
## 5414 TMEM97 27346
## 5415 TMIGD2 126259
## 5416 TMIGD3 57413
## 5417 TMPRSS13 84000
## 5418 TMUB1 83590
## 5419 TNF 7124
## 5420 TNFAIP8L1 126282
## 5421 TNFRSF10A 8797
## 5422 TNFRSF13C 115650
## 5423 TNFRSF25 8718
## 5424 TNFSF4 7292
## 5425 TNIK 23043
## 5426 TNK1 8711
## 5427 TNKS 8658
## 5428 TNKS1BP1 85456
## 5429 TNNC2 7125
## 5430 TNPO2 30000
## 5431 TNRC18 84629
## 5432 TOGARAM1 23116
## 5433 TOM1L2 146691
## 5434 TOMM40 10452
## 5435 TOMM5 401505
## 5436 TOP1MT 116447
## 5437 TOP3B 8940
## 5438 TP53BP1 7158
## 5439 TP53RK 112858
## 5440 TPD52 7163
## 5441 TPM2 7169
## 5442 TPRN 286262
## 5443 TPX2 22974
## 5444 TRABD2A 129293
## 5445 TRABD2A 105374836
## 5446 TRAF2 7186
## 5447 TRAF4 9618
## 5448 TRAF6 7189
## 5449 TRAP1 10131
## 5450 TRAPPC2 6399
## 5451 TRAPPC2B 10597
## 5452 TRAPPC6A 79090
## 5453 TRAPPC9 83696
## 5454 TRDMT1 1787
## 5455 TRIAP1 51499
## 5456 TRIM11 81559
## 5457 TRIM24 8805
## 5458 TRIM3 10612
## 5459 TRIM46 80128
## 5460 TRIM59 286827
## 5461 TRIM65 201292
## 5462 TRIM68 55128
## 5463 TRIP11 9321
## 5464 TRIP13 9319
## 5465 TRIP6 7205
## 5466 TRIT1 54802
## 5467 TRMT10A 93587
## 5468 TRMT13 54482
## 5469 TRMT1L 81627
## 5470 TRMT61A 115708
## 5471 TRMU 55687
## 5472 TRNAU1AP 54952
## 5473 TRNT1 51095
## 5474 TRPM4 54795
## 5475 TRPT1 83707
## 5476 TRRAP 8295
## 5477 TRUB1 142940
## 5478 TSC1 7248
## 5479 TSEN54 283989
## 5480 TSNARE1 203062
## 5481 TSPAN15 23555
## 5482 TSPAN32 10077
## 5483 TSPAN4 7106
## 5484 TSPYL4 23270
## 5485 TSR2 90121
## 5486 TST 7263
## 5487 TTBK2 146057
## 5488 TTC19 54902
## 5489 TTC21B 79809
## 5490 TTC27 55622
## 5491 TTC33 23548
## 5492 TTC7B 145567
## 5493 TTF1 7270
## 5494 TTF2 8458
## 5495 TTI1 9675
## 5496 TTK 7272
## 5497 TTLL1 25809
## 5498 TTLL12 23170
## 5499 TTLL5 23093
## 5500 TTYH2 94015
## 5501 TUBGCP4 27229
## 5502 TUFT1 7286
## 5503 TUT1 64852
## 5504 TUT4 23318
## 5505 TVP23B 51030
## 5506 TWSG1 57045
## 5507 TXLNG 55787
## 5508 TXNDC16 57544
## 5509 TXNL1 9352
## 5510 TXNRD2 10587
## 5511 TYSND1 219743
## 5512 U2AF1L4 199746
## 5513 UACA 55075
## 5514 UBA5 79876
## 5515 UBALD1 124402
## 5516 UBASH3A 53347
## 5517 UBE2C 11065
## 5518 UBE2D4 51619
## 5519 UBE2E1 7324
## 5520 UBE2E2 7325
## 5521 UBE2T 29089
## 5522 UBFD1 56061
## 5523 UBN2 254048
## 5524 UBOX5 22888
## 5525 UBQLN4 56893
## 5526 UBR7 55148
## 5527 UBTD1 80019
## 5528 UBTD2 92181
## 5529 UBXN2A 165324
## 5530 UCHL5 51377
## 5531 UCK1 83549
## 5532 UCK2 7371
## 5533 UCKL1 54963
## 5534 UEVLD 55293
## 5535 UFL1 23376
## 5536 UFSP1 402682
## 5537 UGDH 7358
## 5538 UGT8 7368
## 5539 UHRF1 29128
## 5540 UHRF1BP1 54887
## 5541 ULK3 25989
## 5542 UMAD1 729852
## 5543 UNC13B 10497
## 5544 UNC50 25972
## 5545 UNC5A 90249
## 5546 UNC5CL 222643
## 5547 UNK 85451
## 5548 UPF3B 65109
## 5549 UQCC3 790955
## 5550 URGCP 55665
## 5551 UROS 7390
## 5552 USE1 55850
## 5553 USP12 219333
## 5554 USP28 57646
## 5555 USP31 57478
## 5556 USP49 25862
## 5557 USP53 54532
## 5558 USP54 159195
## 5559 USP6NL 9712
## 5560 UTP18 51096
## 5561 UTP3 57050
## 5562 UVRAG 7405
## 5563 VAC14 55697
## 5564 VANGL1 81839
## 5565 VAPB 9217
## 5566 VAV2 7410
## 5567 VDAC2 7417
## 5568 VENTX 27287
## 5569 VEPH1 79674
## 5570 VGLL4 9686
## 5571 VMA21 203547
## 5572 VPS33A 65082
## 5573 VPS36 51028
## 5574 VPS37A 137492
## 5575 VPS37C 55048
## 5576 VPS45 11311
## 5577 VPS52 6293
## 5578 VPS53 55275
## 5579 VPS72 6944
## 5580 VRK1 7443
## 5581 VRK2 7444
## 5582 VSIG10 54621
## 5583 VTI1A 143187
## 5584 WASF1 8936
## 5585 WASHC5 9897
## 5586 WASL 8976
## 5587 WDHD1 11169
## 5588 WDR12 55759
## 5589 WDR18 57418
## 5590 WDR20 91833
## 5591 WDR24 84219
## 5592 WDR25 79446
## 5593 WDR33 55339
## 5594 WDR36 134430
## 5595 WDR44 54521
## 5596 WDR54 84058
## 5597 WDR62 284403
## 5598 WDR7 23335
## 5599 WDR70 55100
## 5600 WDR76 79968
## 5601 WDR77 79084
## 5602 WDR83 84292
## 5603 WDR91 29062
## 5604 WDR97 340390
## 5605 WEE1 7465
## 5606 WHAMM 123720
## 5607 WIZ 58525
## 5608 WNT10B 7480
## 5609 WRAP53 55135
## 5610 WRN 7486
## 5611 WTIP 126374
## 5612 WWC2 80014
## 5613 XPA 7507
## 5614 XPNPEP3 63929
## 5615 XPO4 64328
## 5616 XPR1 9213
## 5617 XRCC2 7516
## 5618 XXYLT1 152002
## 5619 XYLT2 64132
## 5620 YAE1 57002
## 5621 YAF2 10138
## 5622 YBEY 54059
## 5623 YDJC 150223
## 5624 YIF1A 10897
## 5625 YIPF2 78992
## 5626 YIPF6 286451
## 5627 YJU2 55702
## 5628 YLPM1 56252
## 5629 YPEL1 29799
## 5630 YRDC 79693
## 5631 YTHDF2 51441
## 5632 ZBED4 9889
## 5633 ZBTB17 7709
## 5634 ZBTB2 57621
## 5635 ZBTB20 26137
## 5636 ZBTB21 49854
## 5637 ZBTB26 57684
## 5638 ZBTB32 27033
## 5639 ZBTB33 10009
## 5640 ZBTB39 9880
## 5641 ZBTB42 100128927
## 5642 ZBTB45 84878
## 5643 ZBTB46 140685
## 5644 ZBTB47 92999
## 5645 ZBTB6 10773
## 5646 ZC3H10 84872
## 5647 ZC3H12C 85463
## 5648 ZC3H6 376940
## 5649 ZCCHC14 23174
## 5650 ZCWPW1 55063
## 5651 ZDHHC13 54503
## 5652 ZDHHC14 79683
## 5653 ZDHHC21 340481
## 5654 ZDHHC23 254887
## 5655 ZDHHC6 64429
## 5656 ZDHHC8 29801
## 5657 ZFAND4 93550
## 5658 ZFP41 286128
## 5659 ZFP64 55734
## 5660 ZFP69B 65243
## 5661 ZFP82 284406
## 5662 ZFPL1 7542
## 5663 ZFPM1 161882
## 5664 ZFYVE19 84936
## 5665 ZFYVE21 79038
## 5666 ZFYVE28 57732
## 5667 ZGLP1 100125288
## 5668 ZGRF1 55345
## 5669 ZHX1 11244
## 5670 ZKSCAN3 80317
## 5671 ZKSCAN7 55888
## 5672 ZKSCAN8 7745
## 5673 ZMAT3 64393
## 5674 ZMYM4 9202
## 5675 ZMYM5 9205
## 5676 ZMYND15 84225
## 5677 ZMYND19 116225
## 5678 ZMYND8 23613
## 5679 ZNF100 163227
## 5680 ZNF131 7690
## 5681 ZNF132 7691
## 5682 ZNF133 7692
## 5683 ZNF135 7694
## 5684 ZNF136 7695
## 5685 ZNF143 7702
## 5686 ZNF19 7567
## 5687 ZNF197 10168
## 5688 ZNF197 110354863
## 5689 ZNF211 10520
## 5690 ZNF212 7988
## 5691 ZNF213 7760
## 5692 ZNF219 51222
## 5693 ZNF22 7570
## 5694 ZNF223 7766
## 5695 ZNF224 7767
## 5696 ZNF226 7769
## 5697 ZNF232 7775
## 5698 ZNF236 7776
## 5699 ZNF250 58500
## 5700 ZNF263 10127
## 5701 ZNF277 11179
## 5702 ZNF28 7576
## 5703 ZNF280C 55609
## 5704 ZNF280D 54816
## 5705 ZNF287 57336
## 5706 ZNF324B 388569
## 5707 ZNF329 79673
## 5708 ZNF335 63925
## 5709 ZNF341 84905
## 5710 ZNF346 23567
## 5711 ZNF358 140467
## 5712 ZNF362 149076
## 5713 ZNF367 195828
## 5714 ZNF383 163087
## 5715 ZNF384 171017
## 5716 ZNF385D 79750
## 5717 ZNF395 55893
## 5718 ZNF397 84307
## 5719 ZNF407 55628
## 5720 ZNF408 79797
## 5721 ZNF414 84330
## 5722 ZNF416 55659
## 5723 ZNF419 79744
## 5724 ZNF425 155054
## 5725 ZNF428 126299
## 5726 ZNF430 80264
## 5727 ZNF436 80818
## 5728 ZNF440 126070
## 5729 ZNF444 55311
## 5730 ZNF446 55663
## 5731 ZNF45 7596
## 5732 ZNF451 26036
## 5733 ZNF460 10794
## 5734 ZNF468 90333
## 5735 ZNF48 197407
## 5736 ZNF480 147657
## 5737 ZNF497 162968
## 5738 ZNF500 26048
## 5739 ZNF506 440515
## 5740 ZNF507 22847
## 5741 ZNF511 118472
## 5742 ZNF512B 57473
## 5743 ZNF513 130557
## 5744 ZNF526 116115
## 5745 ZNF540 163255
## 5746 ZNF547 284306
## 5747 ZNF563 147837
## 5748 ZNF568 374900
## 5749 ZNF574 64763
## 5750 ZNF576 79177
## 5751 ZNF578 147660
## 5752 ZNF580 51157
## 5753 ZNF582 147948
## 5754 ZNF587 84914
## 5755 ZNF596 169270
## 5756 ZNF597 146434
## 5757 ZNF598 90850
## 5758 ZNF606 80095
## 5759 ZNF609 23060
## 5760 ZNF611 81856
## 5761 ZNF615 284370
## 5762 ZNF616 90317
## 5763 ZNF619 285267
## 5764 ZNF620 253639
## 5765 ZNF621 285268
## 5766 ZNF623 9831
## 5767 ZNF629 23361
## 5768 ZNF653 115950
## 5769 ZNF654 55279
## 5770 ZNF66 7617
## 5771 ZNF668 79759
## 5772 ZNF669 79862
## 5773 ZNF671 79891
## 5774 ZNF684 127396
## 5775 ZNF688 146542
## 5776 ZNF691 51058
## 5777 ZNF697 90874
## 5778 ZNF699 374879
## 5779 ZNF707 286075
## 5780 ZNF707 101928160
## 5781 ZNF71 58491
## 5782 ZNF714 148206
## 5783 ZNF726 730087
## 5784 ZNF74 7625
## 5785 ZNF747 65988
## 5786 ZNF75D 7626
## 5787 ZNF76 7629
## 5788 ZNF761 388561
## 5789 ZNF761 110116772
## 5790 ZNF764 92595
## 5791 ZNF765 91661
## 5792 ZNF768 79724
## 5793 ZNF775 285971
## 5794 ZNF777 27153
## 5795 ZNF778 197320
## 5796 ZNF783 100289678
## 5797 ZNF784 147808
## 5798 ZNF787 126208
## 5799 ZNF788P NA
## 5800 ZNF791 163049
## 5801 ZNF799 90576
## 5802 ZNF8 7554
## 5803 ZNF808 388558
## 5804 ZNF81 347344
## 5805 ZNF835 90485
## 5806 ZNF836 162962
## 5807 ZNF841 284371
## 5808 ZNF844 284391
## 5809 ZNF846 162993
## 5810 ZNF846 100505555
## 5811 ZNF850 342892
## 5812 ZNF852 285346
## 5813 ZNF853 54753
## 5814 ZNF875 284459
## 5815 ZNF888 388559
## 5816 ZNHIT3 9326
## 5817 ZNRD2 10534
## 5818 ZNRF1 84937
## 5819 ZP3 7784
## 5820 ZPR1 8882
## 5821 ZRANB3 84083
## 5822 ZSCAN12 9753
## 5823 ZSCAN18 65982
## 5824 ZSCAN2 54993
## 5825 ZSCAN30 100101467
## 5826 ZSCAN32 54925
## 5827 ZSCAN9 7746
## 5828 ZSWIM7 125150
## 5829 ZSWIM9 374920
## 5830 ZWILCH 55055
## 5831 ZWINT 11130
k <- enrichKEGG(gene = hgnc_to_entrez$entrezgene_id, organism = "hsa")
head(k)## ID Description GeneRatio BgRatio
## hsa03010 hsa03010 Ribosome 103/2447 158/8108
## hsa04110 hsa04110 Cell cycle 75/2447 124/8108
## hsa05171 hsa05171 Coronavirus disease - COVID-19 119/2447 232/8108
## hsa03460 hsa03460 Fanconi anemia pathway 35/2447 54/8108
## hsa05166 hsa05166 Human T-cell leukemia virus 1 infection 102/2447 219/8108
## hsa05161 hsa05161 Hepatitis B 78/2447 162/8108
## pvalue p.adjust qvalue
## hsa03010 5.186795e-20 1.706456e-17 1.255750e-17
## hsa04110 1.958128e-12 3.221120e-10 2.370365e-10
## hsa05171 7.752225e-12 8.501607e-10 6.256182e-10
## hsa03460 1.431251e-07 1.113522e-05 8.194210e-06
## hsa05166 1.692282e-07 1.113522e-05 8.194210e-06
## hsa05161 9.502232e-07 5.210391e-05 3.834234e-05
## geneID
## hsa03010 2197/65003/55052/6150/79590/10573/55168/54460/6134/4736/6135/6136/6137/23521/9045/6138/6139/6141/6142/6143/6144/6146/9349/6147/6152/6154/6155/6157/6158/6159/6122/6156/6160/6161/6164/11224/6165/25873/6173/6166/6167/6168/6169/6170/6124/6171/6125/6128/6129/6130/6132/6133/6175/6176/6181/6204/6205/6206/6207/6208/6209/6210/6217/6218/6222/6223/6187/6224/6227/6228/6229/6230/6231/6232/6233/6234/6235/6188/6189/6191/6193/6194/6201/6202/6203/3921/7311/6182/64928/54948/63875/9801/51069/9553/51073/64963/6183/51021/51373/51116/64969/64968/64965
## hsa04110 64682/51529/25847/472/699/894/8555/246184/996/1032/1387/8454/1869/1871/1874/2033/51343/8379/10459/4173/4175/4193/4609/5000/5111/5885/5925/5934/6500/4087/4089/8243/9126/10274/10735/7027/7040/7532/7533/29882/545/701/890/891/9133/898/991/8697/993/8318/990/8317/983/1017/1021/1022/1028/1111/10926/1875/9700/4085/4171/4172/4998/4999/23595/23594/5347/9232/5933/2810/7272/7465/7709
## hsa05171 6868/103/712/1675/1147/23586/5610/2162/2197/64135/9641/8517/3572/3654/3661/3716/5603/5595/4938/4939/4940/5290/5291/5579/6134/4736/6135/6136/6137/23521/9045/6138/6139/6141/6142/6143/6144/6146/9349/6147/6152/6154/6155/6157/6158/6159/6122/6156/6160/6161/6164/11224/6165/25873/6173/6166/6167/6168/6169/6170/6124/6171/6125/6128/6129/6130/6132/6133/6175/6176/6181/6204/6205/6206/6207/6208/6209/6210/6217/6218/6222/6223/6187/6224/6227/6228/6229/6230/6231/6232/6233/6234/6235/6188/6189/6191/6193/6194/6201/6202/6203/3921/6772/6773/6774/340061/23118/29110/7097/7297/7311/727/3725/5600/5601/4793/5296/7124/7189
## hsa03460 2067/5980/548593/7398/57599/545/84126/641/672/675/83990/378708/201254/146956/2072/80233/91442/2177/2178/2189/55215/55120/57697/4292/80198/79728/5429/51426/5888/51455/80010/116028/9894/8940/29089
## hsa05166 113/207/208/64682/51529/1386/1388/472/567/581/821/894/915/916/920/246184/996/1147/1385/64764/9586/1387/200186/1869/1871/2033/2874/3108/3109/3113/3115/3117/3119/3122/3123/8517/3554/3689/3716/8850/10524/3845/3932/4055/8379/5604/5605/6416/4214/9020/5595/4609/4893/5290/5291/8498/5925/5971/293/4087/4089/6688/6722/6776/7040/706/7419/7514/29882/545/701/890/9133/898/958/991/8697/1017/1111/10488/23373/1739/2005/9700/3111/3112/3265/3725/2648/4049/4085/5601/4772/5296/9232/6908/9519/7124/115650/8295/55697/7417
## hsa05161 207/208/317/369/1386/1388/537/581/637/673/843/836/1147/1385/64764/9586/1387/54205/1654/23586/1869/1871/2033/64135/9641/8517/3654/3661/3716/3717/3845/5604/5605/5606/6416/4214/5603/5595/4609/4893/5111/5290/5291/5579/5894/5925/4089/6654/6655/6772/6773/6774/6776/10454/23118/29110/7040/7097/7297/7419/572/332/890/898/1017/10488/1643/3265/3725/5609/5600/5601/4772/5296/148022/114609/7124/7189
## Count
## hsa03010 103
## hsa04110 75
## hsa05171 119
## hsa03460 35
## hsa05166 102
## hsa05161 78